| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391 |
- ; FBX 7.5.0 project file
- ; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors.
- ; All rights reserved.
- ; ----------------------------------------------------
- FBXHeaderExtension: {
- FBXHeaderVersion: 1003
- FBXVersion: 7500
- CreationTimeStamp: {
- Version: 1000
- Year: 2020
- Month: 9
- Day: 28
- Hour: 18
- Minute: 7
- Second: 52
- Millisecond: 878
- }
- Creator: "FBX SDK/FBX Plugins version 2016.1.2"
- SceneInfo: "SceneInfo::GlobalInfo", "UserData" {
- Type: "UserData"
- Version: 100
- MetaData: {
- Version: 100
- Title: ""
- Subject: ""
- Author: ""
- Keywords: ""
- Revision: ""
- Comment: ""
- }
- Properties70: {
- P: "DocumentUrl", "KString", "Url", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\SM_Wall_Thick_Ruined_05.fbx"
- P: "SrcDocumentUrl", "KString", "Url", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\SM_Wall_Thick_Ruined_05.fbx"
- P: "Original", "Compound", "", ""
- P: "Original|ApplicationVendor", "KString", "", "", "Autodesk"
- P: "Original|ApplicationName", "KString", "", "", "Maya LT"
- P: "Original|ApplicationVersion", "KString", "", "", "2016"
- P: "Original|DateTime_GMT", "DateTime", "", "", "28/09/2020 15:07:52.878"
- P: "Original|FileName", "KString", "", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\SM_Wall_Thick_Ruined_05.fbx"
- P: "LastSaved", "Compound", "", ""
- P: "LastSaved|ApplicationVendor", "KString", "", "", "Autodesk"
- P: "LastSaved|ApplicationName", "KString", "", "", "Maya LT"
- P: "LastSaved|ApplicationVersion", "KString", "", "", "2016"
- P: "LastSaved|DateTime_GMT", "DateTime", "", "", "28/09/2020 15:07:52.878"
- P: "Original|ApplicationActiveProject", "KString", "", "", "A:\Lordenfel\Unity\UPDATE FBX 01"
- P: "Original|ApplicationNativeFile", "KString", "", "", "A:\Lordenfel\Maya\Lordenfel_08.mlt"
- }
- }
- }
- GlobalSettings: {
- Version: 1000
- Properties70: {
- P: "UpAxis", "int", "Integer", "",1
- P: "UpAxisSign", "int", "Integer", "",1
- P: "FrontAxis", "int", "Integer", "",2
- P: "FrontAxisSign", "int", "Integer", "",1
- P: "CoordAxis", "int", "Integer", "",0
- P: "CoordAxisSign", "int", "Integer", "",1
- P: "OriginalUpAxis", "int", "Integer", "",1
- P: "OriginalUpAxisSign", "int", "Integer", "",1
- P: "UnitScaleFactor", "double", "Number", "",1
- P: "OriginalUnitScaleFactor", "double", "Number", "",1
- P: "AmbientColor", "ColorRGB", "Color", "",0,0,0
- P: "DefaultCamera", "KString", "", "", "Producer Perspective"
- P: "TimeMode", "enum", "", "",6
- P: "TimeProtocol", "enum", "", "",2
- P: "SnapOnFrameMode", "enum", "", "",0
- P: "TimeSpanStart", "KTime", "Time", "",1539538600
- P: "TimeSpanStop", "KTime", "Time", "",92372316000
- P: "CustomFrameRate", "double", "Number", "",-1
- P: "TimeMarker", "Compound", "", ""
- P: "CurrentTimeMarker", "int", "Integer", "",-1
- }
- }
- ; Documents Description
- ;------------------------------------------------------------------
- Documents: {
- Count: 1
- Document: 2330976302688, "", "Scene" {
- Properties70: {
- P: "SourceObject", "object", "", ""
- P: "ActiveAnimStackName", "KString", "", "", "Take 001"
- }
- RootNode: 0
- }
- }
- ; Document References
- ;------------------------------------------------------------------
- References: {
- }
- ; Object definitions
- ;------------------------------------------------------------------
- Definitions: {
- Version: 100
- Count: 37
- ObjectType: "GlobalSettings" {
- Count: 1
- }
- ObjectType: "AnimationStack" {
- Count: 1
- PropertyTemplate: "FbxAnimStack" {
- Properties70: {
- P: "Description", "KString", "", "", ""
- P: "LocalStart", "KTime", "Time", "",0
- P: "LocalStop", "KTime", "Time", "",0
- P: "ReferenceStart", "KTime", "Time", "",0
- P: "ReferenceStop", "KTime", "Time", "",0
- }
- }
- }
- ObjectType: "AnimationLayer" {
- Count: 1
- PropertyTemplate: "FbxAnimLayer" {
- Properties70: {
- P: "Weight", "Number", "", "A",100
- P: "Mute", "bool", "", "",0
- P: "Solo", "bool", "", "",0
- P: "Lock", "bool", "", "",0
- P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
- P: "BlendMode", "enum", "", "",0
- P: "RotationAccumulationMode", "enum", "", "",0
- P: "ScaleAccumulationMode", "enum", "", "",0
- P: "BlendModeBypass", "ULongLong", "", "",0
- }
- }
- }
- ObjectType: "NodeAttribute" {
- Count: 2
- PropertyTemplate: "FbxNull" {
- Properties70: {
- P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
- P: "Size", "double", "Number", "",100
- P: "Look", "enum", "", "",1
- }
- }
- }
- ObjectType: "Model" {
- Count: 9
- PropertyTemplate: "FbxNode" {
- Properties70: {
- P: "QuaternionInterpolate", "enum", "", "",0
- P: "RotationOffset", "Vector3D", "Vector", "",0,0,0
- P: "RotationPivot", "Vector3D", "Vector", "",0,0,0
- P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0
- P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0
- P: "TranslationActive", "bool", "", "",0
- P: "TranslationMin", "Vector3D", "Vector", "",0,0,0
- P: "TranslationMax", "Vector3D", "Vector", "",0,0,0
- P: "TranslationMinX", "bool", "", "",0
- P: "TranslationMinY", "bool", "", "",0
- P: "TranslationMinZ", "bool", "", "",0
- P: "TranslationMaxX", "bool", "", "",0
- P: "TranslationMaxY", "bool", "", "",0
- P: "TranslationMaxZ", "bool", "", "",0
- P: "RotationOrder", "enum", "", "",0
- P: "RotationSpaceForLimitOnly", "bool", "", "",0
- P: "RotationStiffnessX", "double", "Number", "",0
- P: "RotationStiffnessY", "double", "Number", "",0
- P: "RotationStiffnessZ", "double", "Number", "",0
- P: "AxisLen", "double", "Number", "",10
- P: "PreRotation", "Vector3D", "Vector", "",0,0,0
- P: "PostRotation", "Vector3D", "Vector", "",0,0,0
- P: "RotationActive", "bool", "", "",0
- P: "RotationMin", "Vector3D", "Vector", "",0,0,0
- P: "RotationMax", "Vector3D", "Vector", "",0,0,0
- P: "RotationMinX", "bool", "", "",0
- P: "RotationMinY", "bool", "", "",0
- P: "RotationMinZ", "bool", "", "",0
- P: "RotationMaxX", "bool", "", "",0
- P: "RotationMaxY", "bool", "", "",0
- P: "RotationMaxZ", "bool", "", "",0
- P: "InheritType", "enum", "", "",0
- P: "ScalingActive", "bool", "", "",0
- P: "ScalingMin", "Vector3D", "Vector", "",0,0,0
- P: "ScalingMax", "Vector3D", "Vector", "",1,1,1
- P: "ScalingMinX", "bool", "", "",0
- P: "ScalingMinY", "bool", "", "",0
- P: "ScalingMinZ", "bool", "", "",0
- P: "ScalingMaxX", "bool", "", "",0
- P: "ScalingMaxY", "bool", "", "",0
- P: "ScalingMaxZ", "bool", "", "",0
- P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0
- P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0
- P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1
- P: "MinDampRangeX", "double", "Number", "",0
- P: "MinDampRangeY", "double", "Number", "",0
- P: "MinDampRangeZ", "double", "Number", "",0
- P: "MaxDampRangeX", "double", "Number", "",0
- P: "MaxDampRangeY", "double", "Number", "",0
- P: "MaxDampRangeZ", "double", "Number", "",0
- P: "MinDampStrengthX", "double", "Number", "",0
- P: "MinDampStrengthY", "double", "Number", "",0
- P: "MinDampStrengthZ", "double", "Number", "",0
- P: "MaxDampStrengthX", "double", "Number", "",0
- P: "MaxDampStrengthY", "double", "Number", "",0
- P: "MaxDampStrengthZ", "double", "Number", "",0
- P: "PreferedAngleX", "double", "Number", "",0
- P: "PreferedAngleY", "double", "Number", "",0
- P: "PreferedAngleZ", "double", "Number", "",0
- P: "LookAtProperty", "object", "", ""
- P: "UpVectorProperty", "object", "", ""
- P: "Show", "bool", "", "",1
- P: "NegativePercentShapeSupport", "bool", "", "",1
- P: "DefaultAttributeIndex", "int", "Integer", "",-1
- P: "Freeze", "bool", "", "",0
- P: "LODBox", "bool", "", "",0
- P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0
- P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0
- P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1
- P: "Visibility", "Visibility", "", "A",1
- P: "Visibility Inheritance", "Visibility Inheritance", "", "",1
- }
- }
- }
- ObjectType: "Geometry" {
- Count: 7
- PropertyTemplate: "FbxMesh" {
- Properties70: {
- P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
- P: "BBoxMin", "Vector3D", "Vector", "",0,0,0
- P: "BBoxMax", "Vector3D", "Vector", "",0,0,0
- P: "Primary Visibility", "bool", "", "",1
- P: "Casts Shadows", "bool", "", "",1
- P: "Receive Shadows", "bool", "", "",1
- }
- }
- }
- ObjectType: "Material" {
- Count: 4
- PropertyTemplate: "FbxSurfacePhong" {
- Properties70: {
- P: "ShadingModel", "KString", "", "", "Phong"
- P: "MultiLayer", "bool", "", "",0
- P: "EmissiveColor", "Color", "", "A",0,0,0
- P: "EmissiveFactor", "Number", "", "A",1
- P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2
- P: "AmbientFactor", "Number", "", "A",1
- P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8
- P: "DiffuseFactor", "Number", "", "A",1
- P: "Bump", "Vector3D", "Vector", "",0,0,0
- P: "NormalMap", "Vector3D", "Vector", "",0,0,0
- P: "BumpFactor", "double", "Number", "",1
- P: "TransparentColor", "Color", "", "A",0,0,0
- P: "TransparencyFactor", "Number", "", "A",0
- P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0
- P: "DisplacementFactor", "double", "Number", "",1
- P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0
- P: "VectorDisplacementFactor", "double", "Number", "",1
- P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2
- P: "SpecularFactor", "Number", "", "A",1
- P: "ShininessExponent", "Number", "", "A",20
- P: "ReflectionColor", "Color", "", "A",0,0,0
- P: "ReflectionFactor", "Number", "", "A",1
- }
- }
- }
- ObjectType: "Texture" {
- Count: 6
- PropertyTemplate: "FbxFileTexture" {
- Properties70: {
- P: "TextureTypeUse", "enum", "", "",0
- P: "Texture alpha", "Number", "", "A",1
- P: "CurrentMappingType", "enum", "", "",0
- P: "WrapModeU", "enum", "", "",0
- P: "WrapModeV", "enum", "", "",0
- P: "UVSwap", "bool", "", "",0
- P: "PremultiplyAlpha", "bool", "", "",1
- P: "Translation", "Vector", "", "A",0,0,0
- P: "Rotation", "Vector", "", "A",0,0,0
- P: "Scaling", "Vector", "", "A",1,1,1
- P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0
- P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0
- P: "CurrentTextureBlendMode", "enum", "", "",1
- P: "UVSet", "KString", "", "", "default"
- P: "UseMaterial", "bool", "", "",0
- P: "UseMipMap", "bool", "", "",0
- }
- }
- }
- ObjectType: "Video" {
- Count: 6
- PropertyTemplate: "FbxVideo" {
- Properties70: {
- P: "ImageSequence", "bool", "", "",0
- P: "ImageSequenceOffset", "int", "Integer", "",0
- P: "FrameRate", "double", "Number", "",0
- P: "LastFrame", "int", "Integer", "",0
- P: "Width", "int", "Integer", "",0
- P: "Height", "int", "Integer", "",0
- P: "Path", "KString", "XRefUrl", "", ""
- P: "StartFrame", "int", "Integer", "",0
- P: "StopFrame", "int", "Integer", "",0
- P: "PlaySpeed", "double", "Number", "",0
- P: "Offset", "KTime", "Time", "",0
- P: "InterlaceMode", "enum", "", "",0
- P: "FreeRunning", "bool", "", "",0
- P: "Loop", "bool", "", "",0
- P: "AccessMode", "enum", "", "",0
- }
- }
- }
- }
- ; Object properties
- ;------------------------------------------------------------------
- Objects: {
- NodeAttribute: 2328201239520, "NodeAttribute::", "Null" {
- Properties70: {
- P: "Look", "enum", "", "",0
- }
- TypeFlags: "Null"
- }
- NodeAttribute: 2332448495600, "NodeAttribute::", "LodGroup" {
- Properties70: {
- P: "WorldSpace", "bool", "", "",1
- P: "Thresholds|Level0", "Distance", "", "",100, "cm"
- P: "Thresholds|Level1", "Distance", "", "",100, "cm"
- P: "Thresholds|Level2", "Distance", "", "",100, "cm"
- P: "DisplayLevels|Level0", "enum", "", "",1
- P: "DisplayLevels|Level1", "enum", "", "",1
- P: "DisplayLevels|Level2", "enum", "", "",1
- P: "DisplayLevels|Level3", "enum", "", "",1
- }
- }
- Geometry: 2333008471216, "Geometry::", "Mesh" {
- Vertices: *3321 {
- a: 0,-9.5367431640625e-007,62.5,400,0,62.5,0,600,62.5,100,0,62.5,200,0,62.5,300,0,62.5,0,500,62.5,100,400,62.5,0,400,62.5,200,300,62.5,100,300,62.5,0,300,62.5,200,200,62.5,100,200,62.5,0,200,62.5,300,100,62.5,200,100,62.5,100,100,62.5,0,100,62.5,65.044921875,600,62.5,96.2578125,500,62.5,97.15625,479.647277832031,62.5,144.75390625,398.891235351563,62.5,76.13671875,524.715270996094,62.5,137.19921875,469.079315185547,62.5,200,340.321441650391,62.5,240.259765625,300,62.5,252.61328125,200,62.5,300,135.316314697266,62.5,344.5,112.942993164063,62.5,326.953125,133.717742919922,62.5,400,103.328262329102,62.5,242.26953125,282.794342041016,62.5,250.68359375,280.736938476563,62.5,231.5078125,325.923522949219,62.5,255.71484375,242.456924438477,62.5,158.640625,397.285522460938,62.5,162.37890625,373.6220703125,62.5,259.12109375,142.456451416016,62.5,0,600,-62.5,113.41796875,600,-62.5,118.037109375,537.757568359375,-62.5,133.78515625,500,-62.5,147.421875,472.648742675781,-62.5,161.775390625,400,-62.5,186.66796875,327.667724609375,-62.5,216.52734375,300,-62.5,259.345703125,296.403564453125,-62.5,318.53125,148.033187866211,-62.5,300.2109375,200.000015258789,-62.5,400,-3.57627868652344e-007,-62.5,400,109.991096496582,-62.5,374.578125,112.765922546387,-62.5,264.923828125,283.886322021484,-62.5,280.98046875,266.660858154297,-62.5,295.83203125,217.137634277344,-62.5,175.109375,370.678375244141,-62.5,0,-4.76837158203125e-007,-62.5,100,0,-62.5,100,600,-62.5,200,0,-62.5,300,0,-62.5,0,500,-62.5,0,400,-62.5,0,300,-62.5,0,200,-62.5,0,100,-62.5,100,500,-62.5,100,400,-62.5,100,300,-62.5,200,300,-62.5,100,200,-62.5,200,200,-62.5,292.53125,200,-62.5,100,100,-62.5,200,100,-62.5,300,100,-62.5,150.447265625,438.91552734375,-62.5,88.169921875,600,21.8890380859375,104.099609375,528.580383300781,25.5064697265625,114.9375,502.646697998047,31.41357421875,131.484375,482.7548828125,31.12744140625,136.478515625,469.105865478516,34.8505859375,155.5078125,399.945983886719,31.4761962890625,188.087890625,389.277801513672,35.260986328125,200,336.540649414063,25.201416015625,
- 229.02734375,318.721801757813,27.829833984375,246.0625,298.945495605469,25.8994140625,266.2421875,283.606689453125,29.80859375,262.80859375,248.42822265625,29.150146484375,273.77734375,204.147796630859,28.40283203125,305.9375,165.807113647461,27.565673828125,308.857421875,149.227142333984,28.7459716796875,364.69921875,119.945304870605,32.45703125,400,104.276443481445,11.056640625,155.53125,472.37109375,-33.876220703125,142.611328125,502.536651611328,-37.0489501953125,124.763671875,535.298583984375,-39.010986328125,119.52734375,600,-39.9803466796875,173.84765625,405.193115234375,-31.614013671875,189.60546875,391.189849853516,-35.8101806640625,204.62109375,333.194396972656,-33.095947265625,227.203125,308.128173828125,-31.830322265625,269.341796875,289.232055664063,-33.5025634765625,280.31640625,280.803344726563,-33.05712890625,298.15625,270.193084716797,-32.3050537109375,307.728515625,215.282333374023,-29.294677734375,309.1328125,198.585510253906,-34.73876953125,336.375,147.02897644043,-31.487060546875,382.15625,133.025451660156,-32.21533203125,400,109.163009643555,-31.608154296875,236.3984375,307.74951171875,-0.7901611328125,216.62109375,344.011047363281,-10.479736328125,174.77734375,406.790924072266,-2.3404541015625,184.6484375,384.160308837891,7.779052734375,158.568359375,470.712768554688,8.158935546875,119.796875,600,-11.2371826171875,130.0234375,533.583801269531,-16.99072265625,137.779296875,502.579864501953,6.1063232421875,292.046875,271.44580078125,4.7901611328125,294.09765625,208.191986083984,2.265625,319.134765625,181.603256225586,-1.184326171875,332.70703125,145.823013305664,7.70947265625,366.2265625,130.514984130859,7.17333984375,400,111.945777893066,3.815185546875,151.662109375,448.764190673828,64.62646484375,84.900390625,480.443084716797,63.8084716796875,151.662109375,480.10498046875,63.8084716796875,84.19921875,480.274047851563,33.03955078125,151.662109375,479.935882568359,30.87109375,84.19921875,448.087921142578,33.36669921875,143.22265625,447.792083740234,31.1982421875,151.662109375,457.167175292969,31.1025390625,
- 151.662109375,447.979095458984,38.7547607421875,117.9296875,480.10498046875,30.87109375,113.7109375,447.940002441406,31.1982421875,86.927734375,450.409790039063,64.62646484375,84.900390625,469.218933105469,63.874267578125,84.19921875,449.979156494141,58.090576171875,97.9404296875,427.374816894531,63.611572265625,143.8369140625,427.545532226563,63.611572265625,96.5791015625,449.419036865234,38.968017578125,143.5341796875,449.604309082031,39.4732666015625,130.8583984375,449.557159423828,64.705078125,143.5791015625,446.330261230469,64.5428466796875,143.5341796875,449.604309082031,58.406982421875,134.1552734375,427.507354736328,39.369140625,143.7607421875,433.040588378906,39.4732666015625,143.8369140625,427.545532226563,43.661865234375,100.6865234375,427.375305175781,39.009033203125,96.6650390625,443.249969482422,38.968017578125,97.0341796875,427.362365722656,42.50732421875,101.1904296875,449.44677734375,64.705078125,97.6962890625,445.230041503906,64.496826171875,97.4873046875,449.431488037109,61.0328369140625,150.2734375,400.879425048828,63.57470703125,149.421875,428.059936523438,63.7230224609375,149.40625,428.519653320313,31.3916015625,104.619140625,399.036743164063,31.539794921875,103.12109375,427.195281982422,63.805908203125,108.06640625,427.777618408203,31.3916015625,103.51953125,419.917999267578,31.4326171875,103.109375,427.589111328125,34.8184814453125,147.16015625,400.628204345703,31.539794921875,150.12890625,405.477966308594,31.5145263671875,150.279296875,400.74755859375,35.9730224609375,104.609375,399.350250244141,57.0010986328125,109.6875,399.593170166016,63.6483154296875,104.33203125,404.552459716797,63.6849365234375,228.36328125,313.022430419922,-30.0440673828125,174.814453125,311.618896484375,-30.0440673828125,230.712890625,283.480285644531,-64.50146484375,175.9296875,282.030212402344,-63.7950439453125,190.71875,282.417816162109,-28.51513671875,175.765625,286.421875,-28.7420654296875,175.9296875,282.030212402344,-37.3211669921875,186.109375,311.917846679688,-63.940673828125,175.09375,304.248046875,-63.7950439453125,
- 174.814453125,311.618896484375,-57.9384765625,225.16015625,312.951507568359,-64.4443359375,230.400390625,291.755249023438,-64.50146484375,229.419921875,313.062316894531,-59.5526123046875,225.333984375,283.325134277344,-28.51513671875,229.265625,289.072143554688,-28.806396484375,229.654296875,283.440368652344,-33.64990234375,10.671875,479.239379882813,27.653076171875,100.5859375,519.568481445313,28.6356201171875,9.7265625,516.878173828125,28.6356201171875,101.54296875,519.389404296875,65.599365234375,9.732421875,516.675109863281,68.204345703125,102.515625,480.735412597656,65.206298828125,22.1875,478.360656738281,67.8115234375,10.419921875,489.330932617188,67.9263916015625,10.697265625,478.296539306641,58.7333984375,55.63671875,518.0322265625,68.204345703125,62.3515625,479.548034667969,67.8115234375,98.73046875,483.430541992188,27.653076171875,100.923828125,506.088806152344,28.556640625,102.45703125,483.006713867188,35.5047607421875,188.04296875,373.548278808594,34.898193359375,143.02734375,372.990844726563,34.891357421875,189.080078125,399.931274414063,64.7161865234375,143.02734375,399.382568359375,64.10498046875,155.4609375,399.971252441406,33.935791015625,143.02734375,395.835632324219,34.075927734375,143.02734375,399.708740234375,41.464599609375,152.5234375,372.688110351563,63.880126953125,143.02734375,379.253051757813,63.8416748046875,143.02734375,372.647155761719,58.746337890625,185.349609375,373.079223632813,64.3175048828125,189.080078125,392.434143066406,64.617919921875,188.9296875,373.184631347656,60.1337890625,184.55859375,400.33154296875,33.9412841796875,188.04296875,395.262634277344,34.1231689453125,188.19140625,400.311462402344,38.33154296875,153.359375,342.623077392578,27.841796875,153.359375,373.032806396484,28.6199951171875,153.359375,372.372833251953,65.7108154296875,205.78125,341.003753662109,64.5640869140625,206.484375,373.695556640625,28.5452880859375,200.79296875,372.995452880859,65.73046875,206.291015625,364.373443603516,65.414794921875,206.484375,373.083343505859,61.800048828125,156.94140625,341.288208007813,64.5716552734375,
- 153.359375,346.602630615234,64.7667236328125,153.359375,341.473114013672,59.489013671875,205.78125,342.279174804688,35.377197265625,199.951171875,342.61376953125,27.7572021484375,205.912109375,348.345153808594,27.8936767578125,247.60546875,311.184265136719,65.3404541015625,184.453125,341.151031494141,64.4140625,247.60546875,340.831176757813,64.4140625,183.7890625,340.991088867188,29.559814453125,247.60546875,340.671234130859,27.103271484375,183.7890625,310.544555664063,29.9302978515625,239.625,310.264709472656,27.473876953125,247.60546875,319.133087158203,27.365478515625,247.60546875,310.441619873047,36.03369140625,215.69921875,340.831176757813,27.103271484375,211.70703125,310.404632568359,27.473876953125,186.37109375,312.740905761719,65.3404541015625,184.453125,330.533508300781,64.488525390625,183.7890625,312.333557128906,57.93701171875,224.34375,311.076995849609,64.41015625,224.34375,285.054779052734,64.552001953125,224.34375,284.614654541016,33.6136474609375,268.06640625,311.467132568359,33.7554931640625,268.65234375,284.490142822266,64.63134765625,263.90625,284.081787109375,33.6136474609375,268.490234375,291.46240234375,33.65283203125,268.65234375,284.113098144531,36.8929443359375,227.328125,311.223693847656,33.7554931640625,224.34375,306.674438476563,33.7313232421875,224.34375,311.203247070313,37.997802734375,268.06640625,311.1669921875,58.11962890625,263.203125,311.087249755859,64.480712890625,268.173828125,306.183074951172,64.515625,229.17578125,265.1083984375,66.455322265625,264.587890625,264.701354980469,66.455322265625,228.359375,284.684448242188,44.267822265625,264.587890625,284.277404785156,44.7227783203125,254.80859375,284.389831542969,67.4398193359375,264.587890625,281.371856689453,67.293701171875,264.587890625,284.277404785156,61.7694091796875,257.1171875,264.785278320313,44.6290283203125,264.587890625,269.577941894531,44.7227783203125,264.587890625,264.701354980469,48.493896484375,231.29296875,265.075439453125,44.3046875,228.359375,279.209716796875,44.267822265625,228.4765625,265.1083984375,47.4544677734375,
- 231.916015625,284.652954101563,67.4398193359375,229.17578125,280.954040527344,67.252197265625,229.05859375,284.684448242188,64.133544921875,208.068359375,243.527923583984,40.11962890625,261.939453125,264.499389648438,40.7532958984375,208.068359375,264.275543212891,40.7525634765625,262.50390625,264.387481689453,64.58740234375,208.068359375,264.163635253906,66.26708984375,262.50390625,243.080230712891,64.33349609375,214.876953125,242.884414672852,66.0137939453125,208.068359375,249.090682983398,66.0877685546875,208.068359375,243.008193969727,60.1605224609375,235.28515625,264.275543212891,66.26708984375,238.69140625,242.982315063477,66.0145263671875,260.302734375,244.617294311523,40.11962890625,261.939453125,257.069000244141,40.7021484375,262.50390625,244.332229614258,45.1817626953125,265.267578125,240.775512695313,24.64697265625,168.6328125,206.865463256836,28.699951171875,264.16015625,204.273361206055,25.5994873046875,168.87890625,207.05485534668,64.56494140625,265.49609375,204.428726196289,63.957275390625,170.0390625,244.540908813477,64.1839599609375,254.578125,242.242919921875,63.9681396484375,266.314453125,230.946685791016,63.687744140625,266.33984375,241.657241821289,54.776123046875,217.23046875,205.740417480469,65.523681640625,212.3515625,243.390548706055,65.3387451171875,172.59375,241.754211425781,27.6533203125,169.0390625,219.937774658203,28.6234130859375,168.97265625,242.36946105957,35.391357421875,219.79296875,179.318389892578,33.0224609375,219.79296875,204.70133972168,32.8841552734375,219.79296875,205.130645751953,63.0626220703125,269.9765625,178.93782043457,62.925048828125,270.65234375,203.974563598633,32.807373046875,265.203125,204.372863769531,63.0626220703125,270.46484375,197.173583984375,63.024169921875,270.65234375,204.342361450195,59.86376953125,223.21875,179.175262451172,62.9241943359375,219.79296875,183.612777709961,62.9482421875,219.79296875,179.195220947266,58.785888671875,269.9765625,179.230575561523,39.1591796875,264.396484375,179.308380126953,32.95458984375,270.1015625,184.092086791992,32.91943359375,
- 275.8046875,178.500961303711,63.6380615234375,209,179.151565551758,63.6776123046875,277.34375,149.927520751953,19.9599609375,209,150.522445678711,20.85595703125,227.44921875,147.561279296875,63.61572265625,209,152.403045654297,63.6341552734375,209,148.435256958008,52.95068359375,223.08984375,181.689834594727,22.5758056640625,209,174.017822265625,22.2861328125,209,181.35075378418,29.8607177734375,271.806640625,181.265777587891,21.9371337890625,277.34375,158.678268432617,20.49267578125,277.123046875,180.827423095703,27.864013671875,270.6328125,147.140716552734,63.590087890625,275.8046875,153.075958251953,63.596923828125,276.0234375,147.495178222656,57.3621826171875,229.34765625,120.74535369873,30.0015869140625,295.154296875,147.396820068359,33.23681640625,229.65625,147.925384521484,30.794677734375,294.63671875,147.268005371094,63.449462890625,228.3671875,147.807067871094,63.109130859375,294.298828125,119.355323791504,63.138671875,236.30859375,119.827171325684,63.1077880859375,228.12890625,128.061370849609,62.889892578125,228.328125,120.086723327637,55.384521484375,261.4609375,147.538482666016,64.343017578125,265.26171875,119.592185974121,64.187255859375,292.87109375,121.375602722168,32.3701171875,295.03515625,137.662994384766,33.17626953125,295.28515625,120.97420501709,38.8814697265625,364.341796875,82.3696136474609,65.33154296875,279.8828125,119.283309936523,64.405517578125,364.341796875,118.889312744141,64.405517578125,278.99609375,119.11498260498,28.5535888671875,364.341796875,118.722991943359,26.0263671875,278.99609375,81.6107330322266,28.906982421875,353.666015625,81.2680358886719,26.3787841796875,364.341796875,92.1921691894531,26.2767333984375,364.341796875,81.4789123535156,35.1849365234375,321.669921875,118.919998168945,26.0263671875,316.33203125,81.4403991699219,26.3787841796875,282.44921875,84.2870864868164,65.3323974609375,279.8828125,106.204635620117,64.47265625,278.99609375,83.7914199829102,57.7176513671875,335.66015625,119.532104492188,64.081298828125,335.66015625,140.79377746582,64.197265625,335.66015625,141.153381347656,38.9188232421875,
- 294.875,119.213333129883,39.0347900390625,294.328125,141.255126953125,64.2620849609375,298.7578125,141.588760375977,38.9188232421875,294.48046875,135.558380126953,38.950927734375,294.328125,141.563201904297,41.5982666015625,332.875,119.412239074707,39.0347900390625,335.66015625,123.129249572754,39.014892578125,335.66015625,119.42894744873,42.5008544921875,294.875,119.458572387695,58.9417724609375,299.412109375,119.523735046387,64.138916015625,294.775390625,123.530731201172,64.16748046875,363.939453125,84.4204025268555,35.7186279296875,363.939453125,110.139747619629,35.5870361328125,363.939453125,110.574745178223,64.2978515625,400.564453125,84.034797668457,64.1669921875,401.0546875,110.697822570801,35.5133056640625,397.078125,111.101409912109,64.2978515625,400.919921875,103.806716918945,64.26123046875,401.0546875,111.070487976074,61.254638671875,366.439453125,84.2754058837891,64.166259765625,363.939453125,88.7717132568359,64.188232421875,363.939453125,84.2956237792969,60.2291259765625,400.564453125,84.3314514160156,41.55712890625,396.490234375,84.4102783203125,35.654052734375,400.654296875,89.2573776245117,35.6204833984375,55.724609375,544.002319335938,64.2552490234375,55.724609375,519.521423339844,64.3887939453125,55.724609375,519.107360839844,35.2828369140625,96.857421875,544.369384765625,35.4163818359375,97.41015625,518.990234375,64.46337890625,92.943359375,518.606079101563,35.2828369140625,97.2578125,525.549499511719,35.31982421875,97.41015625,518.635498046875,38.367919921875,58.533203125,544.140319824219,35.4163818359375,55.724609375,539.860534667969,35.3936767578125,55.724609375,544.12109375,39.4073486328125,96.857421875,544.086975097656,58.33740234375,92.28125,544.011962890625,64.3216552734375,96.958984375,539.398254394531,64.3544921875,34.587890625,544.313110351563,64.83740234375,82.046875,543.767639160156,64.83740234375,33.4921875,570.547973632813,35.10302734375,82.046875,570.00244140625,35.7125244140625,68.9375,570.153137207031,66.1568603515625,82.046875,566.108581542969,65.9610595703125,82.046875,570.00244140625,58.5577392578125,
- 72.03515625,543.880126953125,35.5869140625,82.046875,550.302978515625,35.7125244140625,82.046875,543.767639160156,40.766357421875,37.42578125,544.268920898438,35.15234375,33.4921875,563.210998535156,35.10302734375,33.650390625,544.313110351563,39.373291015625,38.26171875,570.505737304688,66.1568603515625,34.587890625,565.548645019531,65.9053955078125,34.431640625,570.547973632813,61.7259521484375,38.28125,570.221008300781,28.176025390625,38.28125,600.209289550781,28.0125732421875,38.28125,600.716491699219,63.666259765625,88.66796875,569.771423339844,63.5037841796875,89.34375,600.859985351563,27.9210205078125,83.875,601.330505371094,63.666259765625,89.158203125,592.825073242188,63.6209716796875,89.34375,601.294494628906,59.88720703125,41.72265625,570.052001953125,63.5029296875,38.28125,575.294616699219,63.5302734375,38.28125,570.075561523438,58.6136474609375,88.66796875,570.117370605469,35.42626953125,83.064453125,570.209228515625,28.095703125,88.79296875,575.86083984375,28.05419921875,76.91796875,572.413452148438,-30.3282470703125,128.94921875,571.815368652344,-30.3282470703125,75.71875,601.176025390625,-63.7998046875,128.94921875,600.578002929688,-63.1136474609375,114.578125,600.7431640625,-28.8431396484375,128.94921875,596.308959960938,-29.0635986328125,128.94921875,600.578002929688,-37.3973388671875,117.97265625,571.938720703125,-63.2552490234375,128.94921875,578.98046875,-63.1136474609375,128.94921875,571.815368652344,-57.4246826171875,80.03125,572.364990234375,-63.744384765625,75.71875,593.132141113281,-63.7998046875,75.890625,572.413452148438,-58.992919921875,80.9453125,601.129760742188,-28.8431396484375,76.91796875,595.695068359375,-29.126220703125,76.74609375,601.176025390625,-33.8310546875,131.77734375,544.399353027344,-32.833251953125,61.6796875,573.749084472656,-33.611328125,131.77734375,573.435791015625,-33.611328125,60.943359375,573.592407226563,-62.8804931640625,131.77734375,573.279174804688,-64.9434814453125,60.943359375,543.772827148438,-62.5693359375,122.91796875,543.498718261719,-64.6322021484375,
- 131.77734375,552.184509277344,-64.7232666015625,131.77734375,543.671997070313,-57.44384765625,96.359375,573.435791015625,-64.9434814453125,91.9296875,543.6357421875,-64.6322021484375,63.806640625,545.923950195313,-32.833251953125,61.6796875,563.350158691406,-33.5487060546875,60.943359375,545.525024414063,-39.050537109375,141,516.407409667969,-31.780029296875,141,542.486206054688,-31.6339111328125,141,542.92724609375,-63.468994140625,97.181640625,516.016418457031,-63.322998046875,96.59375,543.052062988281,-31.55224609375,101.3515625,543.461303710938,-63.468994140625,96.755859375,536.064636230469,-63.4285888671875,96.59375,543.429931640625,-60.094482421875,138.0078125,516.260375976563,-63.322998046875,141,520.819519042969,-63.347900390625,141,516.280883789063,-58.957763671875,97.181640625,516.317199707031,-38.2525634765625,102.0546875,516.397094726563,-31.707275390625,97.07421875,521.311950683594,-31.67138671875,152.66796875,479.787109375,-63.767822265625,86.869140625,479.030822753906,-63.767822265625,154.18359375,516.160522460938,-21.4393310546875,86.869140625,515.404235839844,-22.30615234375,105.041015625,515.613159179688,-65.6456298828125,86.869140625,510.005615234375,-65.366943359375,86.869140625,515.404235839844,-54.82763671875,100.75,479.186828613281,-22.128173828125,86.869140625,488.091796875,-22.30615234375,86.869140625,479.030822753906,-29.5008544921875,148.73046875,479.725830078125,-21.5087890625,154.18359375,505.988159179688,-21.4393310546875,153.966796875,479.787109375,-27.5177001953125,147.57421875,516.101989746094,-65.6456298828125,152.66796875,509.229187011719,-65.28759765625,152.8828125,516.160522460938,-59.33837890625,118.42578125,450.570617675781,-63.3265380859375,118.42578125,478.9560546875,-63.4859619140625,118.42578125,479.436157226563,-28.8343505859375,166.119140625,450.14501953125,-28.99267578125,166.7578125,479.571960449219,-63.5736083984375,161.58203125,480.017395019531,-28.83544921875,166.58203125,471.966552734375,-28.878662109375,166.7578125,479.983276367188,-32.507568359375,121.68359375,450.410583496094,-28.9937744140625,
- 118.42578125,455.372985839844,-28.96630859375,118.42578125,450.432922363281,-33.7451171875,166.119140625,450.472473144531,-56.281005859375,160.814453125,450.559448242188,-63.40478515625,166.23828125,455.908996582031,-63.44482421875,160.06640625,449.92138671875,-38.57373046875,119.935546875,450.412536621094,-38.57373046875,160.990234375,426.300933837891,-64.389404296875,119.935546875,426.792083740234,-63.8604736328125,131.01953125,426.656402587891,-37.428466796875,119.935546875,430.297912597656,-37.5987548828125,119.935546875,426.792083740234,-44.0260009765625,128.40234375,450.311248779297,-63.969482421875,119.935546875,444.528411865234,-63.8604736328125,119.935546875,450.412536621094,-59.4725341796875,157.6640625,449.961181640625,-64.3468017578125,160.990234375,432.906768798828,-64.389404296875,160.857421875,449.92138671875,-60.6822509765625,156.958984375,426.338989257813,-37.428466796875,160.06640625,430.802062988281,-37.646728515625,160.197265625,426.300933837891,-41.275146484375,185.67578125,397.731872558594,-63.487548828125,135.140625,397.133819580078,-63.487548828125,186.841796875,426.494476318359,-30.01611328125,135.140625,425.896392822266,-30.7020263671875,149.09765625,426.061584472656,-64.97265625,135.140625,421.627349853516,-64.75244140625,135.140625,425.896392822266,-56.4178466796875,145.80078125,397.257141113281,-30.561279296875,135.140625,404.298889160156,-30.7020263671875,135.140625,397.133819580078,-36.391357421875,182.65234375,397.683441162109,-30.071533203125,186.841796875,418.450561523438,-30.01611328125,186.673828125,397.731872558594,-34.82275390625,181.765625,426.448181152344,-64.97265625,185.67578125,421.013488769531,-64.6904296875,185.84375,426.494476318359,-59.9857177734375,136.4140625,342.438049316406,-63.9896240234375,204.3203125,371.321411132813,-63.1787109375,137.171875,372.682800292969,-63.1796875,205.01953125,371.140563964844,-32.6824951171875,137.16796875,372.519653320313,-30.5333251953125,204.23828125,340.080017089844,-33.0064697265625,144.875,341.28662109375,-30.8572998046875,136.6171875,350.547119140625,-30.7626953125,
- 136.39453125,341.680419921875,-38.3468017578125,171.09375,371.830139160156,-30.5333251953125,174.556640625,340.683349609375,-30.8564453125,201.55078125,342.3896484375,-63.9896240234375,204.046875,360.489807128906,-63.2442626953125,204.28515625,341.905090332031,-57.512451171875,140.71484375,373.309967041016,-37.1771240234375,183.33203125,372.820098876953,-37.1771240234375,139.732421875,396.869079589844,-64.5933837890625,183.33203125,396.379211425781,-64.0313720703125,171.5625,396.514526367188,-35.960693359375,183.33203125,392.882507324219,-36.141357421875,183.33203125,396.379211425781,-42.96728515625,174.34375,372.921112060547,-64.1473388671875,183.33203125,378.688903808594,-64.0313720703125,183.33203125,372.820098876953,-59.3714599609375,143.265625,373.270263671875,-64.5478515625,139.732421875,390.280395507813,-64.5933837890625,139.873046875,373.309967041016,-60.6558837890625,144.01171875,396.831176757813,-35.960693359375,140.71484375,392.379669189453,-36.192626953125,140.57421875,396.869079589844,-40.046142578125,157.853515625,341.332733154297,-62.84765625,211.40234375,341.948303222656,-62.84765625,156.619140625,311.730438232422,-28.399169921875,211.40234375,312.345977783203,-29.1051025390625,196.61328125,312.175994873047,-64.376220703125,211.40234375,316.739654541016,-64.149658203125,211.40234375,312.345977783203,-55.5716552734375,200.107421875,341.821380615234,-28.9603271484375,211.40234375,334.574035644531,-29.1051025390625,211.40234375,341.948303222656,-34.96044921875,161.056640625,341.382629394531,-28.4560546875,156.619140625,320.009185791016,-28.399169921875,156.796875,341.332733154297,-33.3460693359375,161.998046875,311.778137207031,-64.376220703125,157.853515625,317.371490478516,-64.085693359375,157.677734375,311.730438232422,-59.24267578125,277.623046875,283.296234130859,-34.815185546875,277.623046875,307.430053710938,-34.6800537109375,277.623046875,307.838226318359,-64.1409912109375,231.53515625,282.934387207031,-64.0057373046875,230.91796875,307.953735351563,-34.6044921875,235.921875,308.332427978516,-64.1409912109375,
- 231.08984375,301.487426757813,-64.103515625,230.91796875,308.303405761719,-61.0181884765625,274.4765625,283.16015625,-64.0057373046875,277.623046875,287.379302978516,-64.02880859375,277.623046875,283.179138183594,-59.9661865234375,231.53515625,283.212738037109,-40.80517578125,236.662109375,283.286712646484,-34.748046875,231.421875,287.835021972656,-34.7147216796875,257.8125,261.631561279297,-37.9417724609375,300.5703125,261.173858642578,-37.9244384765625,256.828125,282.670776367188,-64.382080078125,300.5703125,282.233032226563,-63.83935546875,288.76171875,283.355285644531,-37.6170654296875,300.5703125,279.955413818359,-37.658203125,300.5703125,282.980316162109,-44.1588134765625,291.55078125,260.311431884766,-63.127197265625,300.5703125,265.704528808594,-63.2203369140625,300.5703125,260.386474609375,-58.6610107421875,260.37109375,260.623474121094,-63.51318359375,256.828125,276.514831542969,-64.151123046875,256.96875,260.798614501953,-59.87841796875,261.123046875,283.651184082031,-37.6279296875,257.8125,279.483795166016,-37.689208984375,257.671875,283.541656494141,-41.44677734375,314.73828125,206.753189086914,-22.4300537109375,230.97265625,244.345596313477,-26.2236328125,314.771484375,243.944351196289,-23.426025390625,231.36328125,244.144989013672,-63.7210693359375,316.12890625,243.743728637695,-63.5347900390625,231.34765625,205.95068359375,-63.32275390625,305.5234375,205.599609375,-63.489990234375,316.119140625,216.724746704102,-63.2530517578125,315.8046875,205.821548461914,-53.9346923828125,273.7890625,243.944351196289,-64.9482421875,268.48046875,205.775146484375,-64.726806640625,233.484375,208.705963134766,-25.142822265625,230.970703125,231.026245117188,-26.1435546875,230.330078125,208.194961547852,-33.2158203125,268.744140625,244.123596191406,-63.47509765625,269.150390625,260.290679931641,-63.565673828125,269.15625,260.564117431641,-43.82373046875,295.90234375,243.198333740234,-43.91357421875,296.6875,259.949462890625,-63.6158447265625,293.744140625,260.277282714844,-43.82373046875,296.4765625,255.620300292969,-43.8487548828125,
- 296.693359375,260.183715820313,-45.9161376953125,270.595703125,243.985778808594,-43.914306640625,268.8125,246.858764648438,-43.8984375,268.7421875,244.045135498047,-46.620849609375,295.90625,243.384826660156,-59.46044921875,292.88671875,243.510314941406,-63.51953125,296.05078125,246.479553222656,-63.5419921875,251.14453125,205.15998840332,-63.443603515625,309.337890625,205.77522277832,-63.466796875,249.802734375,176.87873840332,-27.902099609375,309.337890625,177.467178344727,-28.631591796875,293.265625,175.958602905273,-63.8800048828125,309.337890625,180.528793334961,-63.82470703125,309.337890625,176.462661743164,-55.086669921875,297.0625,206.934524536133,-29.5889892578125,309.337890625,199.685012817383,-29.4638671875,309.337890625,206.833633422852,-35.592529296875,254.625,206.515090942383,-29.070068359375,249.802734375,185.153671264648,-28.2125244140625,249.99609375,206.279647827148,-33.9561767578125,255.6484375,175.560897827148,-63.865478515625,251.14453125,181.162734985352,-63.7830810546875,250.953125,175.708114624023,-58.7320556640625,292.630859375,175.647094726563,-33.5555419921875,292.630859375,147.893402099609,-33.4169921875,292.630859375,147.423980712891,-63.62451171875,334.20703125,176.063201904297,-63.4866943359375,334.765625,147.291198730469,-33.340087890625,330.251953125,146.855682373047,-63.62451171875,334.611328125,154.727355957031,-63.5859375,334.765625,146.889038085938,-60.422607421875,295.46875,175.803558349609,-63.4859619140625,292.630859375,170.951629638672,-63.510009765625,292.630859375,175.781768798828,-59.3443603515625,334.20703125,175.743103027344,-39.6982421875,329.583984375,175.658020019531,-33.487548828125,334.310546875,170.427551269531,-33.4530029296875,270.796875,118.312057495117,-63.7684326171875,331.99609375,147.273559570313,-62.928466796875,270.03125,147.562530517578,-62.929443359375,332.638671875,147.104507446289,-31.3370361328125,270.03125,147.393463134766,-29.11083984375,332.638671875,116.799667358398,-31.672607421875,278.533203125,117.339950561523,-29.446533203125,270.796875,126.715026855469,-29.348388671875,
- 270.796875,117.526977539063,-37.204833984375,301.71875,148.18962097168,-29.11083984375,305.5859375,116.024673461914,-29.4454345703125,330.13671875,119.121536254883,-63.7684326171875,331.99609375,135.422332763672,-62.996337890625,332.638671875,118.69091796875,-57.0587158203125,332.052734375,147.968322753906,-63.3997802734375,378.02734375,148.583557128906,-63.4228515625,330.9921875,119.687072753906,-27.858154296875,378.02734375,120.275512695313,-28.587646484375,365.330078125,118.766937255859,-63.8363037109375,378.02734375,123.337127685547,-63.7808837890625,378.02734375,119.27099609375,-55.042724609375,368.328125,149.742858886719,-29.545166015625,378.02734375,142.493347167969,-29.419921875,378.02734375,149.641967773438,-35.5487060546875,334.802734375,149.323425292969,-29.0262451171875,330.9921875,127.962005615234,-28.168701171875,331.14453125,149.087982177734,-33.912353515625,335.611328125,118.369232177734,-63.82177734375,332.052734375,123.971069335938,-63.7391357421875,331.90234375,118.516448974609,-58.6881103515625,322.0859375,117.602165222168,-22.7470703125,403.484375,80.0203399658203,-26.512939453125,321.826171875,81.8345184326172,-23.7410888671875,403.056640625,80.2232818603516,-63.94140625,320.44921875,82.0434265136719,-63.7763671875,403.306640625,117.89289855957,-63.543701171875,331.017578125,118.697547912598,-63.7291259765625,320.62109375,107.65771484375,-63.4951171875,321.009765625,118.53889465332,-54.19384765625,361.705078125,80.6833801269531,-65.1768798828125,367.1171875,118.295501708984,-64.954345703125,401.259765625,115.155426025391,-25.4346923828125,403.5703125,93.3152465820313,-26.4329833984375,404.326171875,115.646240234375,-33.4920654296875,293.2890625,245.987365722656,0.6563720703125,249.03515625,250.722229003906,0.209228515625,297.02734375,271.355285644531,28.8543701171875,251.7578125,276.204406738281,27.814208984375,264.265625,274.551940917969,-1.17578125,251.595703125,272.128601074219,-1.075439453125,251.97265625,275.945739746094,5.9683837890625,258.09765625,250.052185058594,28.27490234375,249.509765625,257.317810058594,27.99951171875,
- 248.810546875,250.994812011719,23.227783203125,290.36328125,246.595764160156,29.01708984375,296.1875,264.320983886719,28.92333984375,293.92578125,246.172058105469,25.0164794921875,292.87109375,271.491271972656,-0.88671875,295.724609375,266.334533691406,-0.565185546875,296.400390625,271.157775878906,3.3858642578125,252.6484375,222.908706665039,21.7322998046875,295.265625,222.418838500977,21.7322998046875,251.666015625,246.467834472656,-3.7117919921875,295.265625,245.977951049805,-3.190185546875,283.49609375,246.113250732422,22.8612060546875,295.265625,242.481231689453,22.693603515625,295.265625,245.977951049805,16.358642578125,286.27734375,222.51985168457,-3.297607421875,295.265625,228.287658691406,-3.190185546875,295.265625,222.418838500977,1.134521484375,255.197265625,222.869003295898,-3.66943359375,251.666015625,239.879150390625,-3.7117919921875,251.806640625,222.908706665039,-0.0574951171875,255.9453125,246.429901123047,22.8612060546875,252.6484375,241.978408813477,22.6461181640625,252.5078125,246.467834472656,19.0697021484375,257.1875,198.618392944336,3.6058349609375,312.068359375,221.961639404297,4.25927734375,257.802734375,223.061920166016,4.258544921875,312.634765625,221.815490722656,28.833251953125,257.798828125,222.930068969727,30.5650634765625,312.00390625,196.712646484375,28.5721435546875,264.02734375,197.687805175781,30.303955078125,257.353515625,205.172088623047,30.380126953125,257.171875,198.006088256836,24.2689208984375,285.216796875,222.372787475586,30.5650634765625,288.015625,197.200241088867,30.3046875,309.833984375,198.57926940918,3.6058349609375,311.849609375,213.207626342773,4.2064208984375,312.041015625,198.187683105469,8.8251953125,262.74609375,196.561050415039,2.1492919921875,313.28125,195.888977050781,2.1492919921875,260.859375,167.836837768555,33.61181640625,312.55859375,167.135482788086,32.967041015625,298.6015625,167.321090698242,0.753173828125,312.6640625,171.403182983398,0.960205078125,312.55859375,167.135482788086,8.794677734375,302.62109375,196.033584594727,33.099365234375,313.1015625,188.726181030273,32.967041015625,
- 313.28125,195.888977050781,27.6192626953125,265.76953125,196.533493041992,33.559814453125,261.060546875,175.878204345703,33.61181640625,261.75,196.586135864258,29.0936279296875,265.93359375,167.75553894043,0.753173828125,262.162109375,173.28678894043,1.0185546875,261.859375,167.81169128418,5.44091796875,324.505859375,165.621627807617,39.8876953125,277.791015625,168.50553894043,40.1124267578125,324.150390625,140.415420532227,14.1007080078125,276.359375,143.339553833008,14.849365234375,289.3984375,141.846145629883,40.6932373046875,276.689453125,146.48127746582,40.659912109375,276.4609375,142.816604614258,34.2889404296875,287.513671875,168.569381713867,15.1748046875,277.337890625,162.737075805664,15.20947265625,277.68359375,169.056564331055,19.629638671875,321.578125,166.485092163086,14.64111328125,324.513671875,147.63996887207,14.2349853515625,325.314453125,166.158187866211,18.215087890625,319.595703125,139.981887817383,40.5479736328125,323.45703125,144.687088012695,40.4080810546875,323.345703125,139.85237121582,36.759521484375,202.34375,373.073822021484,-28.718505859375,155.03125,372.526794433594,-23.490234375,206.759765625,399.382110595703,2.35595703125,158.2890625,398.835083007813,7.0660400390625,167.94921875,398.986206054688,-26.318115234375,154.904296875,394.930328369141,-24.6685791015625,155.732421875,398.835083007813,-16.9014892578125,168.28125,372.639587402344,6.09423828125,158.2890625,379.080444335938,7.0660400390625,157.72265625,372.526794433594,1.763671875,202.83203125,373.029479980469,2.7381591796875,206.759765625,392.024597167969,2.35595703125,206.125,373.073822021484,-2.106201171875,198.533203125,399.339752197266,-29.69775390625,202.22265625,394.368804931641,-29.8385009765625,202.845703125,399.382110595703,-25.47119140625,178.78515625,336.323059082031,-29.390625,178.77734375,356.436645507813,-29.5107421875,180.23046875,356.77685546875,-3.40380859375,220.6484375,336.021484375,-5.27734375,219.73828125,356.873046875,-31.3544921875,216.80859375,357.188720703125,-4.991943359375,221.04296875,351.483947753906,-5.20849609375,
- 221.04296875,357.16455078125,-7.948974609375,182.984375,336.209655761719,-3.6435546875,180.2265625,339.725952148438,-3.5032958984375,180.025390625,336.225463867188,-7.1036376953125,219.50390625,336.253479003906,-25.836669921875,214.70703125,336.315124511719,-31.0086669921875,219.30078125,340.105773925781,-31.23828125,164.583984375,407.780181884766,29.6131591796875,169.24609375,430.497497558594,29.48095703125,168.837890625,429.30029296875,1.650146484375,126.04296875,415.008117675781,2.0089111328125,130.66796875,438.930816650391,29.8863525390625,134.3984375,436.854553222656,1.9471435546875,129.07421875,431.233551025391,2.09228515625,130.28125,437.706329345703,4.9730224609375,161.6484375,407.921020507813,1.695068359375,165.068359375,411.357147216797,1.6044921875,164.30078125,407.440734863281,5.538818359375,126.337890625,415.481567382813,24.21435546875,130.66015625,414.735015869141,29.974609375,127.19921875,419.907196044922,29.9952392578125,146.537109375,339.071105957031,-14.437744140625,106.408203125,339.562255859375,-14.437744140625,147.462890625,315.450653076172,-36.138671875,106.408203125,315.941802978516,-35.694091796875,117.490234375,315.806121826172,-13.4749755859375,106.408203125,319.447631835938,-13.6181640625,106.408203125,315.941802978516,-19.02099609375,114.873046875,339.460968017578,-35.7855224609375,106.408203125,333.678131103516,-35.694091796875,106.408203125,339.562255859375,-32.0054931640625,144.13671875,339.110900878906,-36.102783203125,147.462890625,322.056488037109,-36.138671875,147.330078125,339.071105957031,-33.0224609375,143.4296875,315.488708496094,-13.4749755859375,146.537109375,319.951782226563,-13.658447265625,146.66796875,315.450653076172,-16.70849609375,241.19921875,308.865936279297,-30.09765625,190.6640625,308.309967041016,-30.11328125,242.392578125,332.811431884766,-1.2222900390625,190.69140625,332.275573730469,-1.814208984375,204.62109375,335.245880126953,-30.6044921875,190.6640625,331.1171875,-30.535400390625,190.6640625,334.841339111328,-23.4210205078125,201.32421875,307.458740234375,-2.445556640625,
- 190.69140625,312.197723388672,-2.379150390625,190.6640625,307.515106201172,-7.34716796875,238.17578125,307.840698242188,-2.0228271484375,242.392578125,325.33349609375,-1.4327392578125,242.197265625,308.025085449219,-6.0135498046875,237.2890625,335.605255126953,-30.59423828125,241.19921875,330.544708251953,-30.499267578125,241.3671875,335.502014160156,-26.403076171875,308.265625,243.887451171875,-5.3778076171875,263.755859375,270.886352539063,-3.518310546875,310.7421875,265.098876953125,-5.99609375,261.796875,269.2421875,-27.97265625,309.19140625,263.4091796875,-32.203369140625,259.474609375,249.228759765625,-27.766357421875,300.9296875,244.126831054688,-31.6839599609375,307.619140625,249.768432617188,-32.06396484375,307.18359375,243.5068359375,-25.98046875,285.451171875,266.33203125,-30.9512939453125,280.16015625,246.68408203125,-30.589111328125,262.8125,250.390869140625,-2.9730224609375,262.859375,263.291259765625,-3.476806640625,260.59765625,250.364624023438,-8.075927734375,262.8984375,270.94775390625,-15.7557373046875,310.087890625,265.137573242188,-19.110107421875,279.416015625,200.072799682617,-26.2281494140625,321.990234375,202.06494140625,-26.2281494140625,279.265625,176.49365234375,1.60986328125,322.8203125,178.520477294922,1.03955078125,311.0625,177.970275878906,-27.46337890625,322.697265625,182.015029907227,-27.2801513671875,322.8203125,178.520477294922,-20.348876953125,313.0078125,201.647048950195,1.15673828125,322.197265625,196.199783325195,1.03955078125,321.990234375,202.06494140625,-3.6922607421875,281.962890625,200.202331542969,1.5634765625,279.03125,183.078231811523,1.60986328125,278.57421875,200.043121337891,-2.38818359375,283.54296875,176.682495117188,-27.46337890625,280.08984375,181.014938354492,-27.2279052734375,280.10546875,176.523376464844,-23.314697265625,353.08203125,125.215866088867,-28.7205810546875,352.3515625,150.990325927734,21.8780517578125,352.353515625,152.205215454102,-28.1536865234375,324.95703125,150.828948974609,22.3997802734375,323.025390625,152.059616088867,-28.1566162109375,325.24609375,123.111633300781,21.818359375,
- 323.31640625,124.188354492188,-22.4146728515625,323.23046875,132.452133178711,-28.5684814453125,330.044921875,124.539779663086,-28.734375,323.025390625,151.444305419922,-2.87841796875,323.31640625,123.650009155273,-0.298095703125,353.08203125,125.172653198242,19.8165283203125,352.412109375,141.324584960938,21.67578125,347.26171875,124.740295410156,21.8525390625,318.20703125,176.785659790039,2.9970703125,318.296875,178.408264160156,-30.883544921875,345.244140625,153.615234375,3.2857666015625,344.783203125,155.265075683594,-31.3779296875,317.037109375,154.859802246094,-22.071044921875,317.244140625,158.736587524414,-31.347900390625,323.98046875,155.297256469727,-31.4161376953125,344.912109375,178.027038574219,-23.6875,344.80859375,172.612243652344,-30.970458984375,340.21484375,178.374359130859,-30.8433837890625,345.2421875,176.851028442383,1.0205078125,345.25390625,160.076126098633,3.437744140625,341.390625,176.72721862793,3.708984375,316.9765625,153.810913085938,-0.1697998046875,317.203125,158.087310791016,2.5556640625,321.00390625,153.675354003906,2.570556640625,126.408203125,450.028930664063,-3.71630859375,131.044921875,471.149780273438,-5.31494140625,125.970703125,475.330688476563,21.624755859375,164.6484375,444.688842773438,29.680908203125,175.158203125,462.669555664063,1.331787109375,165.349609375,467.790649414063,27.617919921875,168.599609375,460.866577148438,28.70068359375,170.603515625,466.403442382813,25.4849853515625,124.23828125,453.096313476563,23.463134765625,122.076171875,457.396362304688,22.772216796875,121.986328125,453.190307617188,19.3101806640625,168.76171875,441.921752929688,8.42919921875,165.005859375,442.181030273438,2.140625,170.818359375,445.158325195313,2.5885009765625,167.9765625,339.460327148438,-4.2335205078125,226.748046875,348.115600585938,-4.1806640625,172.8828125,360.325805664063,-4.3248291015625,227.76171875,350.698120117188,24.4163818359375,173.3515625,363.144897460938,26.2967529296875,222.4921875,327.926879882813,25.1397705078125,174.88671875,338.829956054688,27.038818359375,169.62109375,347.036010742188,26.80859375,
- 168.0546875,340.167114257813,19.955078125,200.56640625,356.974243164063,26.369140625,198.69921875,333.431518554688,27.1024169921875,220.421875,328.552612304688,-4.1357421875,225.140625,341.508911132813,-4.0303955078125,222.6015625,328.058227539063,1.987548828125,267.9453125,304.926879882813,-33.416748046875,239.7421875,305.019653320313,-30.7391357421875,239.08203125,270.213012695313,-32.6513671875,273.5546875,267.229614257813,4.0841064453125,244.56640625,301.850708007813,9.333251953125,243.359375,267.306762695313,3.1260986328125,251.921875,267.032348632813,6.511474609375,243.99609375,270.646606445313,7.6171875,268.291015625,270.222778320313,-32.6759033203125,262.994140625,270.403442382813,-34.9061279296875,267.927734375,275.213989257813,-35.1005859375,273.37109375,294.637817382813,5.65625,272.7265625,302.151489257813,1.6749267578125,268.01953125,301.813598632813,6.6697998046875,111.5703125,550.175598144531,-25.2152099609375,154.15625,550.042724609375,-25.4033203125,110.35546875,524.832824707031,0.390380859375,153.91796875,524.724060058594,-0.3602294921875,142.0390625,526.679748535156,-28.136474609375,153.8515625,530.116149902344,-27.775390625,153.828125,526.1640625,-21.2423095703125,145.2890625,548.229248046875,1.373779296875,154.18359375,542.357055664063,0.8251953125,154.25,548.525451660156,-3.4010009765625,114.234375,548.306884765625,1.9080810546875,110.453125,531.400207519531,0.8316650390625,110.83203125,548.582824707031,-1.9351806640625,114.51171875,526.765686035156,-28.0152587890625,111.283203125,531.234985351563,-27.4693603515625,111.091796875,526.498718261719,-23.9493408203125,161.59375,488.270294189453,13.5125732421875,105.5859375,514.83642578125,13.7254638671875,161.57421875,514.552856445313,13.7254638671875,105.01953125,514.694641113281,-14.355712890625,161.59375,514.411071777344,-16.26904296875,105.01953125,487.703155517578,-14.067138671875,154.515625,487.455078125,-15.98046875,161.4921875,495.004699707031,-17.4451904296875,161.59375,487.611907958984,-9.3134765625,133.3046875,514.552856445313,-16.26904296875,
- 129.767578125,487.5791015625,-15.98046875,107.306640625,489.650299072266,13.5125732421875,105.59765625,505.247497558594,14.6458740234375,105.01953125,489.289184570313,7.746337890625,161.5,505.035797119141,-17.9127197265625,161.58203125,501.235290527344,14.9486083984375,105.03125,501.198913574219,-15.470947265625,131.4453125,501.237731933594,-17.870361328125,116.21484375,520.399230957031,33.060791015625,117.26953125,540.484924316406,33.3109130859375,117.541015625,542.976989746094,5.902099609375,78.95703125,522.185607910156,5.950439453125,79.5078125,543.104553222656,33.3138427734375,83.826171875,545.340454101563,5.8426513671875,79.560546875,539.267150878906,5.86767578125,79.771484375,545.541870117188,8.728515625,113.7109375,520.427490234375,6.0125732421875,116.4765625,524.163269042969,5.9970703125,116.25,520.299560546875,9.7591552734375,78.931640625,522.434204101563,27.4447021484375,83.07421875,522.265625,33.063720703125,79.0703125,526.68798828125,33.0892333984375,117.505859375,542.784606933594,19.5489501953125,79.740234375,545.376831054688,20.963623046875,65.55859375,574.272705078125,-3.3126220703125,65.55859375,600.348815917969,-3.6920166015625,65.55859375,601.10888671875,26.2352294921875,109.375,574.197875976563,26.3492431640625,109.962890625,600.913818359375,-3.774169921875,105.20703125,601.642822265625,26.229736328125,109.80078125,594.246154785156,26.2607421875,109.962890625,601.577697753906,23.058349609375,68.55078125,574.441833496094,26.3455810546875,65.55859375,579.001037597656,26.327392578125,65.55859375,574.418579101563,22.2412109375,109.375,574.247436523438,2.774658203125,104.501953125,574.26171875,-3.380126953125,109.484375,579.176025390625,-3.4603271484375,127.0234375,440.217895507813,-0.757080078125,172.80078125,436.344360351563,-0.6259765625,127.41796875,458.977233886719,-29.31103515625,174.25390625,455.042846679688,-28.606201171875,161.61328125,456.441162109375,-0.152587890625,174.01171875,452.109924316406,-0.1932373046875,174.26171875,455.145751953125,-7.2283935546875,163.0390625,435.204284667969,-28.03271484375,
- 173.10546875,439.857055664063,-28.0665283203125,172.693359375,434.54296875,-23.1588134765625,129.654296875,438.008605957031,-28.535888671875,126.9609375,452.843017578125,-29.11083984375,126.009765625,438.442687988281,-24.596435546875,132.01953125,458.945129394531,-0.237548828125,128.1640625,455.057678222656,-0.34619140625,128.328125,459.124633789063,-4.39404296875,174.328125,456.666320800781,-17.9146728515625,172.68359375,434.900085449219,-11.89599609375,126.453125,438.786804199219,-12.680419921875,127.943359375,460.622924804688,-16.85009765625,117.794921875,547.073791503906,29.24365234375,76.171875,567.660522460938,26.827880859375,119.22265625,564.369140625,27.0777587890625,75.890625,568.122497558594,3.549072265625,119.39453125,564.704650878906,2.1656494140625,74.388671875,547.385192871094,4.5477294921875,112.453125,544.386962890625,3.132568359375,118.33203125,550.034912109375,2.8721923828125,117.88671875,544.335205078125,8.863525390625,97.64453125,566.382019042969,2.038818359375,93.423828125,545.8544921875,3.021728515625,76.10546875,550.994934082031,28.974853515625,75.55078125,561.482971191406,28.0223388671875,74.248046875,549.360168457031,24.087890625,76.08203125,568.608703613281,15.1624755859375,119.359375,565.238708496094,14.59619140625,117.873046875,544.964965820313,18.619873046875,74.40234375,548.354736328125,13.85791015625,260.2265625,306.800201416016,22.402587890625,204.271484375,326.642974853516,21.251220703125,260.98046875,324.200408935547,21.53369140625,203.8046875,327.667388916016,-0.42138671875,261.12109375,325.167266845703,-1.6640625,203.033203125,308.158477783203,0.1109619140625,253.177734375,305.966827392578,-1.168212890625,260.57421875,311.366424560547,-1.287841796875,260.3203125,305.916473388672,4.187744140625,232.46875,326.400299072266,-1.806396484375,228.109375,307.045562744141,-1.293701171875,205.26953125,309.967437744141,22.116943359375,204,321.427398681641,21.4033203125,202.970703125,309.694793701172,17.5068359375,204.0390625,327.949371337891,10.4149169921875,261.05078125,325.478057861328,9.934814453125,
- 387.03515625,130.071701049805,-5.26220703125,387.3046875,132.955612182617,33.7440185546875,356.15234375,104.865493774414,-4.9661865234375,357.048828125,107.789627075195,34.9393310546875,388,106.29621887207,24.0517578125,387.958984375,110.931350708008,34.66455078125,380.330078125,107.266677856445,34.8544921875,357.439453125,133.019454956055,25.624755859375,357.48046875,127.187149047852,34.123046875,362.7734375,133.506637573242,33.8336181640625,356.798828125,130.935165405273,-2.818359375,356.3125,112.090042114258,-5.2694091796875,361.080078125,130.608261108398,-5.93896484375,387.826171875,104.43196105957,-1.1622314453125,387.658203125,109.137161254883,-4.3870849609375,383.2890625,104.302444458008,-4.2943115234375
- }
- PolygonVertexIndex: *3444 {
- a: 0,3,17,-19,4,16,17,-4,5,15,16,-5,11,10,7,-9,12,9,10,-14,14,13,10,-12,16,12,13,-18,18,17,13,-15,6,20,23,19,-3,8,7,21,20,-7,22,24,21,-8,9,25,37,36,22,7,-11,26,34,25,-10,27,35,33,32,26,9,-13,15,28,38,27,12,-17,15,29,30,-29,1,31,29,15,-6,116,117,97,-99,117,118,96,-98,80,81,115,-119,95,99,44,77,-44,101,102,46,-46,107,108,48,-50,108,109,52,-49,109,110,51,-53,103,104,53,-48,104,105,54,-54,102,103,47,-47,105,106,55,-55,99,100,56,-45,100,101,45,-57,106,107,49,-56,66,74,58,-58,50,61,76,52,-52,61,60,75,-77,60,58,74,-76,67,62,39,-60,67,59,40,41,-43,62,67,68,-64,68,67,42,43,77,-45,69,64,63,-69,69,68,44,56,45,-71,70,45,-47,64,69,71,-66,71,69,70,-73,72,70,46,47,53,54,55,-74,55,49,-74,74,66,65,-72,74,71,72,-76,75,72,73,-77,49,48,52,76,-74,18,66,57,-1,62,6,2,-40,6,62,63,-9,64,11,8,-64,11,64,65,-15,66,18,14,-66,3,0,57,-59,4,3,58,-61,5,4,60,-62,50,1,5,-62,51,110,124,94,31,1,-51,19,78,116,98,40,59,39,-3,19,23,79,-79,23,20,80,-80,20,21,81,-81,21,24,82,-82,24,22,83,-83,22,36,-84,36,37,84,-84,37,25,85,-85,25,34,86,-86,34,26,87,-87,26,32,88,-88,32,33,-89,33,35,89,-89,35,27,90,-90,27,38,91,-91,38,28,92,-92,28,30,-93,30,29,93,-93,93,29,31,-95,96,95,43,-43,97,96,42,-42,98,97,41,-41,82,83,113,-116,113,114,100,-100,100,112,-102,85,111,-113,86,87,103,-112,87,88,-104,88,119,104,-104,119,105,-105,89,120,106,-120,120,121,107,-107,121,108,-108,122,123,109,-109,123,124,110,-110,111,103,-103,85,86,-112,112,111,102,-102,84,85,-115,83,84,114,-114,114,112,-101,114,85,-113,81,82,-116,115,113,99,-96,78,79,117,-117,79,118,-118,118,115,95,-97,79,80,-119,88,89,-120,119,106,-106,89,90,-121,90,91,121,-121,121,122,-109,92,93,123,-123,124,123,93,-95,91,92,122,-122,126,127,129,134,-129,128,134,135,-131,130,135,131,133,125,136,-139,125,133,132,129,-128,130,138,137,126,-129,133,131,-133,135,134,129,132,-132,137,136,125,127,-127,138,136,-138,139,140,144,143,152,-154,141,142,147,146,149,-151,140,148,147,142,145,-145,145,143,-145,148,146,-148,151,149,146,148,140,-140,150,151,139,153,154,-142,151,150,-150,154,152,143,145,142,-142,154,153,-153,158,163,
- 165,155,167,-167,155,165,164,157,-157,158,166,168,159,162,-162,159,156,157,160,-163,156,159,168,167,-156,161,160,157,164,163,-159,162,160,-162,164,165,-164,168,166,-168,169,170,174,173,182,-184,171,172,177,176,179,-181,170,178,177,172,175,-175,175,173,-175,178,176,-178,181,179,176,178,170,-170,180,181,169,183,184,-172,181,180,-180,184,182,173,175,172,-172,184,183,-183,186,187,189,194,-189,188,194,195,-191,190,195,191,193,185,196,-199,185,193,192,189,-188,190,198,197,186,-189,193,191,-193,195,194,189,192,-192,197,196,185,187,-187,198,196,-198,199,200,204,203,212,-214,201,202,207,206,209,-211,200,208,207,202,205,-205,205,203,-205,208,206,-208,211,209,206,208,200,-200,210,211,199,213,214,-202,211,210,-210,214,212,203,205,202,-202,214,213,-213,218,223,225,215,227,-227,215,225,224,217,-217,218,226,228,219,222,-222,219,216,217,220,-223,216,219,228,227,-216,221,220,217,224,223,-219,222,220,-222,224,225,-224,228,226,-228,230,231,233,238,-233,232,238,239,-235,234,239,235,237,229,240,-243,229,237,236,233,-232,234,242,241,230,-233,237,235,-237,239,238,233,236,-236,241,240,229,231,-231,242,240,-242,246,251,253,243,255,-255,243,253,252,245,-245,246,254,256,247,250,-250,247,244,245,248,-251,244,247,256,255,-244,249,248,245,252,251,-247,250,248,-250,252,253,-252,256,254,-256,257,258,262,261,270,-272,259,260,265,264,267,-269,258,266,265,260,263,-263,263,261,-263,266,264,-266,269,267,264,266,258,-258,268,269,257,271,272,-260,269,268,-268,272,270,261,263,260,-260,272,271,-271,274,275,277,282,-277,276,282,283,-279,278,283,279,281,273,284,-287,273,281,280,277,-276,278,286,285,274,-277,281,279,-281,283,282,277,280,-280,285,284,273,275,-275,286,284,-286,288,289,291,296,-291,290,296,297,-293,292,297,293,295,287,298,-301,287,295,294,291,-290,292,300,299,288,-291,295,293,-295,297,296,291,294,-294,299,298,287,289,-289,300,298,-300,304,309,311,301,313,-313,301,311,310,303,-303,304,312,314,305,308,-308,305,302,303,306,-309,302,305,314,313,-302,307,306,303,310,309,-305,308,306,-308,310,311,-310,314,312,-314,315,316,320,319,328,-330,317,318,323,
- 322,325,-327,316,324,323,318,321,-321,321,319,-321,324,322,-324,327,325,322,324,316,-316,326,327,315,329,330,-318,327,326,-326,330,328,319,321,318,-318,330,329,-329,332,333,335,340,-335,334,340,341,-337,336,341,337,339,331,342,-345,331,339,338,335,-334,336,344,343,332,-335,339,337,-339,341,340,335,338,-338,343,342,331,333,-333,344,342,-344,346,347,349,354,-349,348,354,355,-351,350,355,351,353,345,356,-359,345,353,352,349,-348,350,358,357,346,-349,353,351,-353,355,354,349,352,-352,357,356,345,347,-347,358,356,-358,362,367,369,359,371,-371,359,369,368,361,-361,362,370,372,363,366,-366,363,360,361,364,-367,360,363,372,371,-360,365,364,361,368,367,-363,366,364,-366,368,369,-368,372,370,-372,376,381,383,373,385,-385,373,383,382,375,-375,376,384,386,377,380,-380,377,374,375,378,-381,374,377,386,385,-374,379,378,375,382,381,-377,380,378,-380,382,383,-382,386,384,-386,390,395,397,387,399,-399,387,397,396,389,-389,390,398,400,391,394,-394,391,388,389,392,-395,388,391,400,399,-388,393,392,389,396,395,-391,394,392,-394,396,397,-396,400,398,-400,401,402,406,405,414,-416,403,404,409,408,411,-413,402,410,409,404,407,-407,407,405,-407,410,408,-410,413,411,408,410,402,-402,412,413,401,415,416,-404,413,412,-412,416,414,405,407,404,-404,416,415,-415,420,425,427,417,429,-429,417,427,426,419,-419,420,428,430,421,424,-424,421,418,419,422,-425,418,421,430,429,-418,423,422,419,426,425,-421,424,422,-424,426,427,-426,430,428,-430,431,432,436,435,444,-446,433,434,439,438,441,-443,432,440,439,434,437,-437,437,435,-437,440,438,-440,443,441,438,440,432,-432,442,443,431,445,446,-434,443,442,-442,446,444,435,437,434,-434,446,445,-445,448,449,451,456,-451,450,456,457,-453,452,457,453,455,447,458,-461,447,455,454,451,-450,452,460,459,448,-451,455,453,-455,457,456,451,454,-454,459,458,447,449,-449,460,458,-460,464,469,471,461,473,-473,461,471,470,463,-463,464,472,474,465,468,-468,465,462,463,466,-469,462,465,474,473,-462,467,466,463,470,469,-465,468,466,-468,470,471,-470,474,472,-474,475,476,480,479,488,-490,477,478,483,482,485,-487,476,484,483,478,
- 481,-481,481,479,-481,484,482,-484,487,485,482,484,476,-476,486,487,475,489,490,-478,487,486,-486,490,488,479,481,478,-478,490,489,-489,494,499,501,491,503,-503,491,501,500,493,-493,494,502,504,495,498,-498,495,492,493,496,-499,492,495,504,503,-492,497,496,493,500,499,-495,498,496,-498,500,501,-500,504,502,-504,505,506,510,509,518,-520,507,508,513,512,515,-517,506,514,513,508,511,-511,511,509,-511,514,512,-514,517,515,512,514,506,-506,516,517,505,519,520,-508,517,516,-516,520,518,509,511,508,-508,520,519,-519,521,522,526,525,534,-536,523,524,529,528,531,-533,522,530,529,524,527,-527,527,525,-527,530,528,-530,533,531,528,530,522,-522,532,533,521,535,536,-524,533,532,-532,536,534,525,527,524,-524,536,535,-535,538,539,541,546,-541,540,546,547,-543,542,547,543,545,537,548,-551,537,545,544,541,-540,542,550,549,538,-541,545,543,-545,547,546,541,544,-544,549,548,537,539,-539,550,548,-550,551,552,556,555,564,-566,553,554,559,558,561,-563,552,560,559,554,557,-557,557,555,-557,560,558,-560,563,561,558,560,552,-552,562,563,551,565,566,-554,563,562,-562,566,564,555,557,554,-554,566,565,-565,567,568,572,571,580,-582,569,570,575,574,577,-579,568,576,575,570,573,-573,573,571,-573,576,574,-576,579,577,574,576,568,-568,578,579,567,581,582,-570,579,578,-578,582,580,571,573,570,-570,582,581,-581,586,591,593,583,595,-595,583,593,592,585,-585,586,594,596,587,590,-590,587,584,585,588,-591,584,587,596,595,-584,589,588,585,592,591,-587,590,588,-590,592,593,-592,596,594,-596,597,598,602,601,610,-612,599,600,605,604,607,-609,598,606,605,600,603,-603,603,601,-603,606,604,-606,609,607,604,606,598,-598,608,609,597,611,612,-600,609,608,-608,612,610,601,603,600,-600,612,611,-611,614,615,617,622,-617,616,622,623,-619,618,623,619,621,613,624,-627,613,621,620,617,-616,618,626,625,614,-617,621,619,-621,623,622,617,620,-620,625,624,613,615,-615,626,624,-626,630,635,637,627,639,-639,627,637,636,629,-629,630,638,640,631,634,-634,631,628,629,632,-635,628,631,640,639,-628,633,632,629,636,635,-631,634,632,-634,636,637,-636,640,638,-640,641,642,646,645,654,
- -656,643,644,649,648,651,-653,642,650,649,644,647,-647,647,645,-647,650,648,-650,653,651,648,650,642,-642,652,653,641,655,656,-644,653,652,-652,656,654,645,647,644,-644,656,655,-655,660,665,667,657,669,-669,657,667,666,659,-659,660,668,670,661,664,-664,661,658,659,662,-665,658,661,670,669,-658,663,662,659,666,665,-661,664,662,-664,666,667,-666,670,668,-670,672,673,675,680,-675,674,680,681,-677,676,681,677,679,671,682,-685,671,679,678,675,-674,676,684,683,672,-675,679,677,-679,681,680,675,678,-678,683,682,671,673,-673,684,682,-684,685,686,690,689,698,-700,687,688,693,692,695,-697,686,694,693,688,691,-691,691,689,-691,694,692,-694,697,695,692,694,686,-686,696,697,685,699,700,-688,697,696,-696,700,698,689,691,688,-688,700,699,-699,702,703,705,710,-705,704,710,711,-707,706,711,707,709,701,712,-715,701,709,708,705,-704,706,714,713,702,-705,709,707,-709,711,710,705,708,-708,713,712,701,703,-703,714,712,-714,715,716,720,719,728,-730,717,718,723,722,725,-727,716,724,723,718,721,-721,721,719,-721,724,722,-724,727,725,722,724,716,-716,726,727,715,729,730,-718,727,726,-726,730,728,719,721,718,-718,730,729,-729,731,732,736,735,744,-746,733,734,739,738,741,-743,732,740,739,734,737,-737,737,735,-737,740,738,-740,743,741,738,740,732,-732,742,743,731,745,746,-734,743,742,-742,746,744,735,737,734,-734,746,745,-745,748,749,751,756,-751,750,756,757,-753,752,757,753,755,747,758,-761,747,755,754,751,-750,752,760,759,748,-751,755,753,-755,757,756,751,754,-754,759,758,747,749,-749,760,758,-760,761,762,766,765,774,-776,763,764,769,768,771,-773,762,770,769,764,767,-767,767,765,-767,770,768,-770,773,771,768,770,762,-762,772,773,761,775,776,-764,773,772,-772,776,774,765,767,764,-764,776,775,-775,777,778,782,781,790,-792,779,780,785,784,787,-789,778,786,785,780,783,-783,783,781,-783,786,784,-786,789,787,784,786,778,-778,788,789,777,791,792,-780,789,788,-788,792,790,781,783,780,-780,792,791,-791,793,794,798,797,806,-808,795,796,801,800,803,-805,794,802,801,796,799,-799,799,797,-799,802,800,-802,805,803,800,802,794,-794,804,805,793,807,808,-796,
- 805,804,-804,808,806,797,799,796,-796,808,807,-807,812,817,819,809,821,-821,809,819,818,811,-811,812,820,822,813,816,-816,813,810,811,814,-817,810,813,822,821,-810,815,814,811,818,817,-813,816,814,-816,818,819,-818,822,820,-822,826,831,833,823,835,-835,823,833,832,825,-825,826,834,836,827,830,-830,827,824,825,828,-831,824,827,836,835,-824,829,828,825,832,831,-827,830,828,-830,832,833,-832,836,834,-836,837,838,842,841,850,-852,839,840,845,844,847,-849,838,846,845,840,843,-843,843,841,-843,846,844,-846,849,847,844,846,838,-838,848,849,837,851,852,-840,849,848,-848,852,850,841,843,840,-840,852,851,-851,853,854,858,857,866,-868,855,856,861,860,863,-865,854,862,861,856,859,-859,859,857,-859,862,860,-862,865,863,860,862,854,-854,864,865,853,867,868,-856,865,864,-864,868,866,857,859,856,-856,868,867,-867,883,884,873,878,-873,872,878,879,-875,874,879,875,877,869,880,-883,869,877,876,873,884,-872,874,882,881,870,883,-873,877,875,-877,879,878,873,876,-876,881,880,869,871,-871,882,880,-882,870,871,884,-884,885,886,890,889,898,-900,887,888,893,892,895,-897,886,894,893,888,891,-891,891,889,-891,894,892,-894,897,895,892,894,886,-886,896,897,885,899,900,-888,897,896,-896,900,898,889,891,888,-888,900,899,-899,902,903,905,910,-905,904,910,911,-907,906,911,907,909,901,912,-915,901,909,908,905,-904,906,914,913,902,-905,909,907,-909,911,910,905,908,-908,913,912,901,903,-903,914,912,-914,915,916,920,919,928,-930,917,918,923,922,925,-927,916,924,923,918,921,-921,921,919,-921,924,922,-924,927,925,922,924,916,-916,926,927,915,929,930,-918,927,926,-926,930,928,919,921,918,-918,930,929,-929,934,939,941,931,943,-943,931,941,940,933,-933,934,942,944,935,938,-938,935,932,933,936,-939,932,935,944,943,-932,937,936,933,940,939,-935,938,936,-938,940,941,-940,944,942,-944,946,947,949,954,-949,948,954,955,-951,950,955,951,953,945,956,-959,945,953,952,949,-948,950,958,957,946,-949,953,951,-953,955,954,949,952,-952,957,956,945,947,-947,958,956,-958,962,967,969,959,971,-971,959,969,968,961,-961,962,970,972,963,966,-966,963,960,961,964,-967,960,963,972,
- 971,-960,965,964,961,968,967,-963,966,964,-966,968,969,-968,972,970,-972,973,974,978,977,986,-988,975,976,981,980,983,-985,974,982,981,976,979,-979,979,977,-979,982,980,-982,985,983,980,982,974,-974,984,985,973,987,988,-976,985,984,-984,988,986,977,979,976,-976,988,987,-987,990,991,993,998,-993,1005,1006,999,-995,994,999,995,997,989,1000,-1003,989,997,996,1003,-1005,1005,994,1002,-1002,997,995,-997,999,1006,1003,996,-996,1001,1004,991,-991,1001,1002,-1001,1004,1003,993,-992,992,998,1006,-1006,1003,1006,998,-994,1005,1001,990,-993,1001,1000,989,-1005,1010,1015,1017,1007,1019,-1019,1007,1017,1016,1009,1021,-1009,1010,1018,1020,1011,1022,1014,-1014,1011,1008,1021,-1023,1008,1011,1020,1019,-1008,1013,1012,1009,1016,1015,-1011,1014,1012,-1014,1016,1017,-1016,1020,1018,-1020,1022,1021,1009,1012,-1015,1026,1031,1033,1023,1035,-1035,1023,1033,1032,1025,-1025,1026,1034,1036,1027,1030,-1030,1027,1024,1025,1028,-1031,1024,1027,1036,1035,-1024,1029,1028,1025,1032,1031,-1027,1030,1028,-1030,1032,1033,-1032,1036,1034,-1036,1037,1038,1042,1041,1050,-1052,1039,1040,1045,1044,1047,-1049,1053,1054,1046,1045,-1041,1043,1041,-1043,1046,1044,-1046,1049,1047,1044,1046,1054,-1056,1048,1049,1055,1056,-1040,1049,1048,-1048,1056,1053,1040,-1040,1052,1051,-1051,1038,1054,1053,1043,-1043,1055,1054,1038,-1038,1056,1055,1037,1051,-1053,1052,1050,1041,1043,1053,-1057,1071,1072,1061,1066,-1061,1060,1066,1067,-1063,1062,1067,1063,1065,1073,-1075,1072,1073,1065,1064,-1062,1062,1074,1071,-1061,1065,1063,-1065,1067,1066,1061,1064,-1064,1069,1068,1057,1059,-1059,1070,1068,-1070,1058,1059,1072,-1072,1057,1073,1072,-1060,1074,1073,1057,1068,-1071,1071,1074,1070,1069,-1059,1089,1090,1079,1084,-1079,1078,1084,1085,-1081,1080,1085,1081,1083,1075,1086,-1089,1075,1083,1082,1079,1090,-1078,1080,1088,1087,1076,1089,-1079,1083,1081,-1083,1085,1084,1079,1082,-1082,1087,1086,1075,1077,-1077,1088,1086,-1088,1076,1077,1090,-1090,1091,1092,1096,1095,1104,-1106,1093,1094,1099,1098,1101,-1103,1092,1100,1099,1094,1097,-1097,1097,1095,-1097,1100,1098,-1100,1103,1101,1098,
- 1100,1092,-1092,1102,1103,1091,1105,1106,-1094,1103,1102,-1102,1106,1104,1095,1097,1094,-1094,1106,1105,-1105
- }
- Edges: *1722 {
- a: 0,35,3,7,11,78,36,13,41,14,15,16,18,17,12,24,26,23,19,20,31,8,4,1,9,5,2,32,38,45,34,33,39,43,42,49,46,56,54,63,60,65,64,70,74,72,71,75,59,58,53,57,48,47,66,231,272,281,163,285,164,289,172,293,297,301,308,312,98,316,320,339,335,102,261,268,148,343,106,346,110,324,114,327,118,122,331,126,304,130,134,138,159,142,158,153,162,149,144,169,177,192,209,143,160,167,157,165,179,168,175,190,195,176,185,188,211,214,218,191,196,204,206,141,150,145,140,155,151,146,184,94,93,203,227,229,235,237,243,225,252,260,273,443,90,88,368,366,424,378,382,380,384,386,396,463,466,475,473,282,286,87,294,298,305,309,313,317,321,328,332,336,340,347,352,95,356,353,360,85,275,81,92,129,99,97,115,113,117,125,103,101,105,109,91,128,132,96,120,112,116,124,136,100,104,108,414,381,376,374,377,373,372,370,369,429,423,441,367,82,80,84,79,83,89,446,387,390,395,394,398,393,397,401,407,405,266,404,408,267,469,256,484,487,491,504,488,485,492,502,499,496,511,495,501,486,494,490,497,507,518,498,506,526,532,531,527,537,533,541,528,544,542,538,534,547,539,535,555,536,550,556,529,560,530,565,559,574,584,583,582,579,588,591,577,593,590,601,589,594,576,575,581,604,587,578,586,598,616,622,621,617,627,623,631,618,634,632,628,624,637,629,625,645,626,640,646,619,650,620,655,649,664,667,671,684,668,665,672,682,679,676,691,675,681,666,674,670,677,687,698,678,686,706,712,711,707,717,713,721,708,724,722,718,714,727,719,715,735,716,730,736,709,740,710,745,739,754,764,763,762,759,768,771,757,773,770,781,769,774,756,755,761,784,767,758,766,778,796,799,803,816,800,797,804,814,811,808,823,807,813,798,806,802,809,819,830,810,818,838,848,847,846,843,852,855,841,857,854,865,853,858,840,839,845,868,851,842,850,862,880,886,885,881,891,887,895,882,898,896,892,888,901,893,889,909,890,904,910,883,914,884,919,913,928,931,935,948,932,929,936,946,943,940,955,939,945,930,938,934,941,951,962,942,950,970,973,977,990,974,971,978,988,985,982,997,981,987,972,980,976,983,993,1004,984,992,1012,1022,1021,1020,1017,1026,1029,1015,1031,1028,1039,1027,1032,1014,1013,1019,1042,1025,
- 1016,1024,1036,1054,1060,1059,1055,1065,1061,1069,1056,1072,1070,1066,1062,1075,1067,1063,1083,1064,1078,1084,1057,1088,1058,1093,1087,1102,1105,1109,1122,1106,1103,1110,1120,1117,1114,1129,1113,1119,1104,1112,1108,1115,1125,1136,1116,1124,1144,1147,1151,1164,1148,1145,1152,1162,1159,1156,1171,1155,1161,1146,1154,1150,1157,1167,1178,1158,1166,1186,1196,1195,1194,1191,1200,1203,1189,1205,1202,1213,1201,1206,1188,1187,1193,1216,1199,1190,1198,1210,1228,1238,1237,1236,1233,1242,1245,1231,1247,1244,1255,1243,1248,1230,1229,1235,1258,1241,1232,1240,1252,1270,1280,1279,1278,1275,1284,1287,1273,1289,1286,1297,1285,1290,1272,1271,1277,1300,1283,1274,1282,1294,1312,1318,1317,1313,1323,1319,1327,1314,1330,1328,1324,1320,1333,1325,1321,1341,1322,1336,1342,1315,1346,1316,1351,1345,1360,1370,1369,1368,1365,1374,1377,1363,1379,1376,1387,1375,1380,1362,1361,1367,1390,1373,1364,1372,1384,1402,1408,1407,1403,1413,1409,1417,1404,1420,1418,1414,1410,1423,1415,1411,1431,1412,1426,1432,1405,1436,1406,1441,1435,1450,1453,1457,1470,1454,1451,1458,1468,1465,1462,1477,1461,1467,1452,1460,1456,1463,1473,1484,1464,1472,1492,1502,1501,1500,1497,1506,1509,1495,1511,1508,1519,1507,1512,1494,1493,1499,1522,1505,1496,1504,1516,1534,1540,1539,1535,1545,1541,1549,1536,1552,1550,1546,1542,1555,1547,1543,1563,1544,1558,1564,1537,1568,1538,1573,1567,1582,1592,1591,1590,1587,1596,1599,1585,1601,1598,1609,1597,1602,1584,1583,1589,1612,1595,1586,1594,1606,1624,1630,1629,1625,1635,1631,1639,1626,1642,1640,1636,1632,1645,1637,1633,1653,1634,1648,1654,1627,1658,1628,1663,1657,1672,1678,1677,1673,1683,1679,1687,1674,1690,1688,1684,1680,1693,1685,1681,1701,1682,1696,1702,1675,1706,1676,1711,1705,1720,1723,1727,1740,1724,1721,1728,1738,1735,1732,1747,1731,1737,1722,1730,1726,1733,1743,1754,1734,1742,1762,1768,1767,1763,1773,1769,1777,1764,1780,1778,1774,1770,1783,1775,1771,1791,1772,1786,1792,1765,1796,1766,1801,1795,1810,1816,1815,1811,1821,1817,1825,1812,1828,1826,1822,1818,1831,1823,1819,1839,1820,1834,1840,1813,1844,1814,1849,1843,1858,1868,1867,1866,1863,
- 1872,1875,1861,1877,1874,1885,1873,1878,1860,1859,1865,1888,1871,1862,1870,1882,1900,1906,1905,1901,1911,1907,1915,1902,1918,1916,1912,1908,1921,1913,1909,1929,1910,1924,1930,1903,1934,1904,1939,1933,1948,1951,1955,1968,1952,1949,1956,1966,1963,1960,1975,1959,1965,1950,1958,1954,1961,1971,1982,1962,1970,1990,2000,1999,1998,1995,2004,2007,1993,2009,2006,2017,2005,2010,1992,1991,1997,2020,2003,1994,2002,2014,2032,2038,2037,2033,2043,2039,2047,2034,2050,2048,2044,2040,2053,2045,2041,2061,2042,2056,2062,2035,2066,2036,2071,2065,2080,2090,2089,2088,2085,2094,2097,2083,2099,2096,2107,2095,2100,2082,2081,2087,2110,2093,2084,2092,2104,2122,2125,2129,2142,2126,2123,2130,2140,2137,2134,2149,2133,2139,2124,2132,2128,2135,2145,2156,2136,2144,2164,2170,2169,2165,2175,2171,2179,2166,2182,2180,2176,2172,2185,2177,2173,2193,2174,2188,2194,2167,2198,2168,2203,2197,2212,2215,2219,2232,2216,2213,2220,2230,2227,2224,2239,2223,2229,2214,2222,2218,2225,2235,2246,2226,2234,2254,2260,2259,2255,2265,2261,2269,2256,2272,2270,2266,2262,2275,2267,2263,2283,2264,2278,2284,2257,2288,2258,2293,2287,2302,2308,2307,2303,2313,2309,2317,2304,2320,2318,2314,2310,2323,2315,2311,2331,2312,2326,2332,2305,2336,2306,2341,2335,2350,2353,2357,2370,2354,2351,2358,2368,2365,2362,2377,2361,2367,2352,2360,2356,2363,2373,2384,2364,2372,2392,2398,2397,2393,2403,2399,2407,2394,2410,2408,2404,2400,2413,2405,2401,2421,2402,2416,2422,2395,2426,2396,2431,2425,2440,2446,2445,2441,2451,2447,2455,2442,2458,2456,2452,2448,2461,2453,2449,2469,2450,2464,2470,2443,2474,2444,2479,2473,2488,2494,2493,2489,2499,2495,2503,2490,2506,2504,2500,2496,2509,2501,2497,2517,2498,2512,2518,2491,2522,2492,2527,2521,2536,2546,2545,2544,2541,2550,2553,2539,2555,2552,2563,2551,2556,2538,2537,2543,2566,2549,2540,2548,2560,2578,2588,2587,2586,2583,2592,2595,2581,2597,2594,2605,2593,2598,2580,2579,2585,2608,2591,2582,2590,2602,2620,2626,2625,2621,2631,2627,2635,2622,2638,2636,2632,2628,2641,2633,2629,2649,2630,2644,2650,2623,2654,2624,2659,2653,2668,2674,2673,2669,2679,2675,2683,2670,2686,2684,
- 2680,2676,2689,2681,2677,2697,2678,2692,2698,2671,2702,2672,2707,2701,2755,2719,2723,2737,2741,2736,2724,2734,2731,2728,2745,2727,2733,2718,2726,2722,2729,2740,2752,2730,2739,2720,2717,2716,2764,2770,2769,2765,2775,2771,2779,2766,2782,2780,2776,2772,2785,2777,2773,2793,2774,2788,2794,2767,2798,2768,2803,2797,2812,2815,2819,2832,2816,2813,2820,2830,2827,2824,2839,2823,2829,2814,2822,2818,2825,2835,2846,2826,2834,2854,2860,2859,2855,2865,2861,2869,2856,2872,2870,2866,2862,2875,2867,2863,2883,2864,2878,2884,2857,2888,2858,2893,2887,2902,2912,2911,2910,2907,2916,2919,2905,2921,2918,2929,2917,2922,2904,2903,2909,2932,2915,2906,2914,2926,2944,2947,2951,2964,2948,2945,2952,2962,2959,2956,2971,2955,2961,2946,2954,2950,2957,2967,2978,2958,2966,2986,2996,2995,2994,2991,3000,3003,2989,3005,3002,3013,3001,3006,2988,2987,2993,3016,2999,2990,2998,3010,3028,3034,3033,3029,3039,3035,3043,3030,3046,3044,3040,3036,3049,3041,3037,3057,3038,3052,3058,3031,3062,3032,3067,3061,3076,3079,3083,3096,3080,3077,3123,3117,3091,3088,3102,3087,3093,3078,3086,3121,3089,3090,3099,3094,3110,3112,3084,3082,3095,3081,3105,3115,3100,3109,3136,3147,3146,3144,3141,3151,3155,3139,3165,3154,3164,3153,3170,3138,3137,3143,3167,3150,3140,3149,3161,3145,3152,3157,3184,3194,3193,3192,3189,3198,3201,3187,3203,3200,3211,3199,3204,3186,3185,3191,3214,3197,3188,3196,3208,3226,3232,3231,3227,3237,3233,3272,3228,3243,3245,3239,3234,3246,3240,3235,3254,3236,3249,3255,3229,3283,3230,3269,3267,3242,3270,3278,3258,3238,3253,3257,3263,3325,3293,3297,3324,3333,3331,3298,3308,3304,3302,3315,3301,3307,3292,3300,3296,3323,3326,3322,3327,3329,3294,3291,3334,3342,3290,3305,3303,3311,3387,3351,3355,3369,3373,3368,3356,3366,3363,3360,3377,3359,3365,3350,3358,3354,3361,3372,3384,3362,3371,3352,3349,3348,3396,3402,3401,3397,3407,3403,3411,3398,3414,3412,3408,3404,3417,3409,3405,3425,3406,3420,3426,3399,3430,3400,3435,3429
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *10332 {
- a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-2.35435280160345e-008,0,1,-1.21912480111064e-008,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1.43085570059043e-008,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.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,1.43085570059043e-008,0,1,1.56858188660181e-008,0,1,0,0,0.999999940395355,0,0,1,2.06441761463338e-008,0,1,1.35804526735228e-007,0,0.999999940395355,1.56858188660181e-008,0,1,1.43085570059043e-008,0,1,0,0,1,0,0,1,0,0,1,0,0,1,2.06441761463338e-008,0,1,1.43085570059043e-008,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,-1.21912480111064e-008,0,1,2.5726974328677e-008,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1.21912480111064e-008,0,1,-3.42758816884725e-008,0,0.999999940395355,2.32131213806497e-007,0,1,2.5726974328677e-008,0,1,-4.54658817261588e-008,0,1,-4.54658781734452e-008,0,1,-3.42758816884725e-008,0,0.999999940395355,-1.21912480111064e-008,0,1,-2.35435280160345e-008,0,1,0.898368954658508,0.141933411359787,0.415677934885025,0.919408679008484,0.238079264760017,0.313059121370316,0.961046576499939,0.219837561249733,-0.167513936758041,0.978503525257111,0.097654677927494,-0.181643679738045,0.919408679008484,0.238079264760017,0.313059121370316,0.822261095046997,0.493868738412857,0.282808005809784,0.899032950401306,0.423413008451462,-0.111630000174046,0.961046576499939,0.219837561249733,-0.167513936758041,0.694980502128601,0.426710933446884,0.578722596168518,0.635542869567871,0.566892743110657,0.52413535118103,0.911838591098785,0.294982254505157,0.285544842481613,0.822261095046997,0.493868738412857,0.282808005809784,0.933720767498016,0.311478078365326,-0.176484853029251,0.917010843753815,0.330182760953903,-0.22376437485218,0.852404475212097,0.295052945613861,-0.431683301925659,0.901849269866943,0.205490618944168,-0.380054503679276,0.897733211517334,0.261218279600143,-0.354739278554916,0.774007558822632,0.388775706291199,-0.499765545129776,0.555881083011627,0.77730131149292,-0.294616609811783,
- 0.488437741994858,0.817048311233521,-0.306366950273514,0.764857530593872,0.364857733249664,-0.530916035175323,0.900402009487152,0.39405158162117,-0.184390097856522,0.602097153663635,0.766889274120331,-0.222170636057854,0.703287661075592,0.577982127666473,-0.41391184926033,0.876902759075165,0.322485208511353,-0.356433302164078,0.602097153663635,0.766889274120331,-0.222170636057854,0.479810893535614,0.867525458335876,-0.131076574325562,0.425682127475739,0.816242337226868,-0.390567660331726,0.703287661075592,0.577982127666473,-0.41391184926033,0.479810893535614,0.867525458335876,-0.131076574325562,0.596938729286194,0.800894796848297,-0.0472403466701508,0.500323593616486,0.805407345294952,-0.317797660827637,0.425682127475739,0.816242337226868,-0.390567660331726,0.496821731328964,0.866955518722534,-0.0394501872360706,0.585819363594055,0.806339263916016,-0.0814414247870445,0.684918284416199,0.670314729213715,-0.285596162080765,0.345283150672913,0.929916799068451,-0.126626923680305,0.585819363594055,0.806339263916016,-0.0814414247870445,0.910241842269897,0.351111710071564,-0.219500482082367,0.834425091743469,0.373743891716003,-0.405031204223633,0.684918284416199,0.670314729213715,-0.285596162080765,0.555881083011627,0.77730131149292,-0.294616609811783,0.496821731328964,0.866955518722534,-0.0394501872360706,0.345283150672913,0.929916799068451,-0.126626923680305,0.488437741994858,0.817048311233521,-0.306366950273514,0.910241842269897,0.351111710071564,-0.219500482082367,0.972858130931854,0.206566140055656,0.104295767843723,0.89827287197113,0.198698759078979,-0.39194992184639,0.834425091743469,0.373743891716003,-0.405031204223633,0.917010843753815,0.330182760953903,-0.22376437485218,0.838015377521515,0.444859504699707,-0.315959274768829,0.783912062644959,0.270772486925125,-0.558716416358948,0.852404475212097,0.295052945613861,-0.431683301925659,0.838015377521515,0.444859504699707,-0.315959274768829,0.774007558822632,0.388775706291199,-0.499765545129776,0.764857530593872,0.364857733249664,-0.530916035175323,0.783912062644959,0.270772486925125,-0.558716416358948,
- 0.972858130931854,0.206566140055656,0.104295767843723,0.900402009487152,0.39405158162117,-0.184390097856522,0.876902759075165,0.322485208511353,-0.356433302164078,0.89827287197113,0.198698759078979,-0.39194992184639,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,-6.34433783286426e-010,0,-1,-5.07095421209414e-010,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,-6.34433783286426e-010,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,-3.69762886975877e-009,0,-1,0,0,-1,-3.69762886975877e-009,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,-1.08454623060084e-008,0,-1,-3.20661719399595e-009,0,-1,0,0,-1,0,0,-1,-3.69762886975877e-009,0,-1,-3.20661719399595e-009,0,-1,-3.69762886975877e-009,0,-1,-1.08454623060084e-008,0,-1,-1.51297072648049e-008,0,-1,-1.5075574566481e-008,0,-1,1.44083234232539e-009,0,-1,1.44083234232539e-009,0,-1,-1.5075574566481e-008,0,-1,1.48523540133283e-008,0,-0.999999940395355,0,0,-1,-3.20661719399595e-009,0,-1,0,0,-1,0,0,-1,0,0,-1,-3.20661719399595e-009,0,-1,1.44083234232539e-009,0,-1,3.23026094761758e-009,0,-0.999999940395355,3.23026094761758e-009,0,-0.999999940395355,1.44083234232539e-009,0,-1,1.48523540133283e-008,0,-0.999999940395355,1.49540237970314e-008,0,-1,1.49540255733882e-008,0,-1,1.49540255733882e-008,0,-1,1.49340895205796e-008,0,-1,5.19903231577246e-009,0,-1,1.49340895205796e-008,0,-1,-7.56930695899882e-009,0,-1,5.19903231577246e-009,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,3.23026094761758e-009,0,-0.999999940395355,0,0,-1,0,0,-1,3.23026094761758e-009,0,-0.999999940395355,5.19903231577246e-009,0,-1,-6.34433783286426e-010,0,-1,-7.56930695899882e-009,0,-1,-7.68496200009849e-009,0,-0.999999940395355,-5.07095421209414e-010,0,-1,-6.34433783286426e-010,0,-1,5.19903231577246e-009,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,-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,3.57627860658738e-009,-1,-9.53674139658744e-010,7.15255721317476e-009,-1,-1.90734827931749e-009,
- 7.15255721317476e-009,-1,-1.90734827931749e-009,3.57627860658738e-009,-1,-9.53674139658744e-010,0,-1,0,3.57627860658738e-009,-1,-9.53674139658744e-010,3.57627860658738e-009,-1,-9.53674139658744e-010,0,-1,0,-8.94069651646845e-010,-1,7.15255743521936e-010,0,-1,0,0,-1,0,-8.94069651646845e-010,-1,7.15255743521936e-010,-1.78813930329369e-009,-1,1.43051148704387e-009,-1.78813930329369e-009,-1,1.43051148704387e-009,-8.94069651646845e-010,-1,7.15255743521936e-010,-8.94069651646845e-010,-1,7.15255743521936e-010,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,0.820085465908051,0.164565861225128,0.548067331314087,0.80160653591156,0.237611830234528,0.54860508441925,0.787430644035339,0.230334550142288,0.571750700473785,0.803771376609802,0.153022781014442,0.574922263622284,0.80160653591156,0.237611830234528,0.54860508441925,0.707230091094971,0.41865873336792,0.569693326950073,0.694980502128601,0.426710933446884,0.578722596168518,0.787430644035339,0.230334550142288,0.571750700473785,0.707230091094971,0.41865873336792,0.569693326950073,0.658348977565765,0.511138677597046,0.552552103996277,0.635542869567871,0.566892743110657,0.52413535118103,0.694980502128601,0.426710933446884,0.578722596168518,0.658348977565765,0.511138677597046,0.552552103996277,0.891258895397186,0.396472245454788,0.22015281021595,0.860569596290588,0.315785139799118,0.399624317884445,0.635542869567871,0.566892743110657,0.52413535118103,0.891258895397186,0.396472245454788,0.22015281021595,0.951993763446808,0.254376262426376,0.170295566320419,0.856482744216919,0.329461991786957,0.397356331348419,0.860569596290588,0.315785139799118,0.399624317884445,0.951993763446808,0.254376262426376,0.170295566320419,0.520300984382629,0.761905610561371,0.385728746652603,0.856482744216919,0.329461991786957,0.397356331348419,0.520300984382629,0.761905610561371,0.385728746652603,0.754293024539948,0.505520343780518,0.418916881084442,0.787870764732361,0.547995448112488,0.280999809503555,0.856482744216919,0.329461991786957,0.397356331348419,0.754293024539948,0.505520343780518,0.418916881084442,
- 0.732471525669098,0.651953995227814,0.196065038442612,0.756964981555939,0.615323603153229,0.219956576824188,0.787870764732361,0.547995448112488,0.280999809503555,0.732471525669098,0.651953995227814,0.196065038442612,0.65393328666687,0.749855577945709,-0.100438065826893,0.642840802669525,0.76144677400589,-0.0833944156765938,0.756964981555939,0.615323603153229,0.219956576824188,0.65393328666687,0.749855577945709,-0.100438065826893,0.838498294353485,0.52900367975235,0.130674511194229,0.717257738113403,0.690080761909485,0.0965910479426384,0.642840802669525,0.76144677400589,-0.0833944156765938,0.838498294353485,0.52900367975235,0.130674511194229,0.722786724567413,0.613119900226593,0.318846821784973,0.831432640552521,0.440099328756332,0.339164137840271,0.717257738113403,0.690080761909485,0.0965910479426384,0.722786724567413,0.613119900226593,0.318846821784973,0.930637240409851,0.143378004431725,0.336685419082642,0.831432640552521,0.440099328756332,0.339164137840271,0.930637240409851,0.143378004431725,0.336685419082642,0.927941918373108,0.055223673582077,0.368610858917236,0.868196249008179,0.0309534035623074,0.495254635810852,0.831432640552521,0.440099328756332,0.339164137840271,0.927941918373108,0.055223673582077,0.368610858917236,0.754530668258667,0.195398077368736,0.62650066614151,0.737239062786102,0.255381435155869,0.62550687789917,0.868196249008179,0.0309534035623074,0.495254635810852,0.754530668258667,0.195398077368736,0.62650066614151,0.587544679641724,0.353652775287628,0.727819263935089,0.616910338401794,0.412215083837509,0.670447945594788,0.737239062786102,0.255381435155869,0.62550687789917,0.587544679641724,0.353652775287628,0.727819263935089,0.279679775238037,0.752520143985748,0.596232056617737,0.487285703420639,0.693035423755646,0.531276285648346,0.616910338401794,0.412215083837509,0.670447945594788,0.279679775238037,0.752520143985748,0.596232056617737,0.466367691755295,0.825973808765411,0.316652029752731,0.487285703420639,0.693035423755646,0.531276285648346,0.466367691755295,0.825973808765411,0.316652029752731,
- 0.436292737722397,0.865823805332184,0.244944408535957,0.393836051225662,0.881817936897278,0.259404063224792,0.487285703420639,0.693035423755646,0.531276285648346,0.393836051225662,0.881817936897278,0.259404063224792,0.436292737722397,0.865823805332184,0.244944408535957,0.300667315721512,0.939143002033234,0.166161462664604,0.392550379037857,0.877627491950989,0.27508932352066,0.899032950401306,0.423413008451462,-0.111630000174046,0.933720767498016,0.311478078365326,-0.176484853029251,0.897733211517334,0.261218279600143,-0.354739278554916,0.8724644780159,0.398264408111572,-0.283180385828018,0.961046576499939,0.219837561249733,-0.167513936758041,0.899032950401306,0.423413008451462,-0.111630000174046,0.8724644780159,0.398264408111572,-0.283180385828018,0.94297581911087,0.191024705767632,-0.272591561079025,0.978503525257111,0.097654677927494,-0.181643679738045,0.961046576499939,0.219837561249733,-0.167513936758041,0.94297581911087,0.191024705767632,-0.272591561079025,0.96166980266571,0.0726415067911148,-0.264413326978683,0.860569596290588,0.315785139799118,0.399624317884445,0.856482744216919,0.329461991786957,0.397356331348419,0.909394562244415,0.349593997001648,0.225356802344322,0.911838591098785,0.294982254505157,0.285544842481613,0.909394562244415,0.349593997001648,0.225356802344322,0.799447417259216,0.582741439342499,0.145931839942932,0.838015377521515,0.444859504699707,-0.315959274768829,0.917010843753815,0.330182760953903,-0.22376437485218,0.838015377521515,0.444859504699707,-0.315959274768829,0.875446915626526,0.483167082071304,-0.0119261182844639,0.774007558822632,0.388775706291199,-0.499765545129776,0.756964981555939,0.615323603153229,0.219956576824188,0.669431269168854,0.741380870342255,-0.047077864408493,0.875446915626526,0.483167082071304,-0.0119261182844639,0.642840802669525,0.76144677400589,-0.0833944156765938,0.717257738113403,0.690080761909485,0.0965910479426384,0.496821731328964,0.866955518722534,-0.0394501872360706,0.669431269168854,0.741380870342255,-0.047077864408493,0.717257738113403,0.690080761909485,0.0965910479426384,
- 0.831432640552521,0.440099328756332,0.339164137840271,0.496821731328964,0.866955518722534,-0.0394501872360706,0.831432640552521,0.440099328756332,0.339164137840271,0.830985546112061,0.334109634160995,0.444785118103027,0.585819363594055,0.806339263916016,-0.0814414247870445,0.496821731328964,0.866955518722534,-0.0394501872360706,0.830985546112061,0.334109634160995,0.444785118103027,0.910241842269897,0.351111710071564,-0.219500482082367,0.585819363594055,0.806339263916016,-0.0814414247870445,0.868196249008179,0.0309534035623074,0.495254635810852,0.782823324203491,0.240616008639336,0.573839485645294,0.972858130931854,0.206566140055656,0.104295767843723,0.830985546112061,0.334109634160995,0.444785118103027,0.782823324203491,0.240616008639336,0.573839485645294,0.802025318145752,0.479122191667557,0.356647491455078,0.900402009487152,0.39405158162117,-0.184390097856522,0.972858130931854,0.206566140055656,0.104295767843723,0.802025318145752,0.479122191667557,0.356647491455078,0.602097153663635,0.766889274120331,-0.222170636057854,0.900402009487152,0.39405158162117,-0.184390097856522,0.539052903652191,0.783616065979004,0.308816969394684,0.448878705501556,0.861355423927307,0.237854763865471,0.479810893535614,0.867525458335876,-0.131076574325562,0.602097153663635,0.766889274120331,-0.222170636057854,0.448878705501556,0.861355423927307,0.237854763865471,0.5961674451828,0.760830223560333,0.256362438201904,0.596938729286194,0.800894796848297,-0.0472403466701508,0.479810893535614,0.867525458335876,-0.131076574325562,0.669431269168854,0.741380870342255,-0.047077864408493,0.496821731328964,0.866955518722534,-0.0394501872360706,0.555881083011627,0.77730131149292,-0.294616609811783,0.756964981555939,0.615323603153229,0.219956576824188,0.642840802669525,0.76144677400589,-0.0833944156765938,0.669431269168854,0.741380870342255,-0.047077864408493,0.875446915626526,0.483167082071304,-0.0119261182844639,0.669431269168854,0.741380870342255,-0.047077864408493,0.555881083011627,0.77730131149292,-0.294616609811783,0.774007558822632,0.388775706291199,-0.499765545129776,
- 0.787870764732361,0.547995448112488,0.280999809503555,0.756964981555939,0.615323603153229,0.219956576824188,0.799447417259216,0.582741439342499,0.145931839942932,0.856482744216919,0.329461991786957,0.397356331348419,0.787870764732361,0.547995448112488,0.280999809503555,0.799447417259216,0.582741439342499,0.145931839942932,0.909394562244415,0.349593997001648,0.225356802344322,0.799447417259216,0.582741439342499,0.145931839942932,0.875446915626526,0.483167082071304,-0.0119261182844639,0.838015377521515,0.444859504699707,-0.315959274768829,0.799447417259216,0.582741439342499,0.145931839942932,0.756964981555939,0.615323603153229,0.219956576824188,0.875446915626526,0.483167082071304,-0.0119261182844639,0.635542869567871,0.566892743110657,0.52413535118103,0.860569596290588,0.315785139799118,0.399624317884445,0.911838591098785,0.294982254505157,0.285544842481613,0.911838591098785,0.294982254505157,0.285544842481613,0.909394562244415,0.349593997001648,0.225356802344322,0.917010843753815,0.330182760953903,-0.22376437485218,0.933720767498016,0.311478078365326,-0.176484853029251,0.803771376609802,0.153022781014442,0.574922263622284,0.787430644035339,0.230334550142288,0.571750700473785,0.919408679008484,0.238079264760017,0.313059121370316,0.898368954658508,0.141933411359787,0.415677934885025,0.787430644035339,0.230334550142288,0.571750700473785,0.822261095046997,0.493868738412857,0.282808005809784,0.919408679008484,0.238079264760017,0.313059121370316,0.822261095046997,0.493868738412857,0.282808005809784,0.911838591098785,0.294982254505157,0.285544842481613,0.933720767498016,0.311478078365326,-0.176484853029251,0.899032950401306,0.423413008451462,-0.111630000174046,0.787430644035339,0.230334550142288,0.571750700473785,0.694980502128601,0.426710933446884,0.578722596168518,0.822261095046997,0.493868738412857,0.282808005809784,0.831432640552521,0.440099328756332,0.339164137840271,0.868196249008179,0.0309534035623074,0.495254635810852,0.830985546112061,0.334109634160995,0.444785118103027,0.830985546112061,0.334109634160995,0.444785118103027,
- 0.972858130931854,0.206566140055656,0.104295767843723,0.910241842269897,0.351111710071564,-0.219500482082367,0.868196249008179,0.0309534035623074,0.495254635810852,0.737239062786102,0.255381435155869,0.62550687789917,0.782823324203491,0.240616008639336,0.573839485645294,0.737239062786102,0.255381435155869,0.62550687789917,0.616910338401794,0.412215083837509,0.670447945594788,0.802025318145752,0.479122191667557,0.356647491455078,0.782823324203491,0.240616008639336,0.573839485645294,0.802025318145752,0.479122191667557,0.356647491455078,0.539052903652191,0.783616065979004,0.308816969394684,0.602097153663635,0.766889274120331,-0.222170636057854,0.487285703420639,0.693035423755646,0.531276285648346,0.393836051225662,0.881817936897278,0.259404063224792,0.448878705501556,0.861355423927307,0.237854763865471,0.539052903652191,0.783616065979004,0.308816969394684,0.5961674451828,0.760830223560333,0.256362438201904,0.448878705501556,0.861355423927307,0.237854763865471,0.393836051225662,0.881817936897278,0.259404063224792,0.392550379037857,0.877627491950989,0.27508932352066,0.616910338401794,0.412215083837509,0.670447945594788,0.487285703420639,0.693035423755646,0.531276285648346,0.539052903652191,0.783616065979004,0.308816969394684,0.802025318145752,0.479122191667557,0.356647491455078,0.00495261279866099,0.999973773956299,-0.00527246063575149,0.00495261372998357,0.999973833560944,-0.00527246110141277,0.00495261372998357,0.999973893165588,-0.00527246110141277,0.00495261326432228,0.999973893165588,-0.00527246156707406,0.00495261326432228,0.999973773956299,-0.00527246110141277,-0.0684426799416542,-0.00565661257132888,-0.997639060020447,-0.0300421230494976,-0.00819318927824497,-0.999514997005463,-0.0355034880340099,-0.00783335603773594,-0.999338746070862,-0.0684426799416542,-0.00565661210566759,-0.997639060020447,-0.0142646469175816,-0.998555064201355,0.0518081821501255,-0.0142646478489041,-0.998555183410645,0.0518081858754158,-0.0142646469175816,-0.998555183410645,0.0518081784248352,-0.0142646469175816,-0.998555123806,0.0518081821501255,
- -0.0142646478489041,-0.998555183410645,0.0518081784248352,-0.014264645986259,-0.998555064201355,0.0518081746995449,-0.0142646469175816,-0.998555183410645,0.0518081784248352,1,5.01763281590684e-007,0,1,5.01763281590684e-007,0,1,5.01763281590684e-007,0,1,5.01763281590684e-007,0,1,5.01763224747265e-007,0,-0.999821186065674,0.00978807918727398,0.0161799378693104,-0.999821245670319,0.00978808011859655,0.0161799378693104,-0.999821126461029,0.00978808011859655,0.0161799360066652,-0.999821186065674,0.00978808011859655,0.0161799378693104,-0.999821245670319,0.00978808011859655,0.0161799378693104,0.574669778347015,-0.523736834526062,-0.628851652145386,0.574669778347015,-0.523736834526062,-0.628851652145386,0.574669718742371,-0.523736834526062,-0.628851652145386,-0.0355034880340099,-0.00783335603773594,-0.999338746070862,-0.0300421230494976,-0.00819318927824497,-0.999514997005463,-5.0762013415806e-005,-0.0101638017222285,-0.999948382377625,-5.0762013415806e-005,-0.010163800790906,-0.999948382377625,-5.07620097778272e-005,-0.0101637998595834,-0.99994832277298,-0.00137591257225722,0.02654311619699,0.999646723270416,-0.00137591257225722,0.0265431143343449,0.999646663665771,-0.0013759124558419,0.02654311619699,0.999646723270416,-0.00137591257225722,0.02654311619699,0.999646663665771,-0.0013759124558419,0.0265431143343449,0.999646604061127,-0.917637646198273,-0.0833675265312195,0.388575583696365,-0.917637646198273,-0.0833675339818001,0.388575613498688,-0.917637646198273,-0.0833675414323807,0.38857564330101,0.000184941891347989,-0.0495098009705544,0.998773634433746,0.000184941876796074,-0.0495097935199738,0.998773634433746,0.000184941862244159,-0.0495097935199738,0.998773634433746,0.000184941876796074,-0.0495097935199738,0.998773634433746,0.000184941905899905,-0.0495098009705544,0.998773694038391,0.000184941862244159,-0.0495097935199738,0.998773574829102,0.0107588618993759,0.000145067271660082,-0.999942064285278,0.0107588618993759,0.000145067257108167,-0.999942123889923,0.0107588628306985,0.000145067257108167,-0.999942064285278,0.0107588628306985,0.000145067271660082,-0.999942064285278,
- 0.0107588628306985,0.000145067286211997,-0.999942183494568,0.0107588628306985,0.000145067271660082,-0.999942123889923,0.9999058842659,0.0137198520824313,-1.57767899509054e-005,0.999905824661255,0.0137198511511087,-1.57767899509054e-005,0.9999058842659,0.0137198520824313,-1.57767899509054e-005,0.999905824661255,0.0137198511511087,-1.57767899509054e-005,0.999905824661255,0.0137198520824313,-1.57767899509054e-005,0.999905824661255,0.0137198511511087,-1.5776788131916e-005,0.22411984205246,0.860496640205383,0.457510441541672,0.22411984205246,0.860496640205383,0.457510501146317,0.22411984205246,0.860496640205383,0.457510441541672,0.33542674779892,-0.568144917488098,-0.751465260982513,0.335426777601242,-0.568144977092743,-0.751465380191803,0.335426777601242,-0.568144977092743,-0.751465380191803,0.00382985803298652,-0.999992609024048,0.000215649444726296,0.00382985803298652,-0.999992609024048,0.000215649473830126,0.00382985873147845,-0.999992668628693,0.000215649488382041,0.00382985873147845,-0.999992668628693,0.000215649488382041,0.00382985849864781,-0.999992609024048,0.000215649473830126,0.00382985826581717,-0.999992549419403,0.000215649459278211,-0.999010562896729,-0.014786253683269,0.0419437512755394,-0.999010562896729,-0.014786253683269,0.0419437475502491,-0.999010503292084,-0.0147862527519464,0.0419437475502491,-0.999010503292084,-0.0147862527519464,0.0419437475502491,-0.999010562896729,-0.0147862527519464,0.0419437475502491,-0.999010562896729,-0.0147862564772367,0.0419437550008297,-0.680803537368774,-0.17430417239666,-0.71142441034317,-0.68080347776413,-0.174304157495499,-0.711424350738525,-0.68080347776413,-0.174304157495499,-0.711424350738525,-0.00383782130666077,0.999992549419403,-0.000210939906537533,-0.00383782153949142,0.999992609024048,-0.000210939906537533,-0.00383782130666077,0.999992609024048,-0.000210939906537533,-0.00383782107383013,0.999992609024048,-0.000210939891985618,-0.00383782107383013,0.999992549419403,-0.000210939891985618,-0.00383782130666077,0.999992609024048,-0.000210939891985618,-0.618131875991821,0.481520682573318,0.6213299036026,
- -0.618131816387177,0.481520712375641,0.6213299036026,-0.618131875991821,0.481520712375641,0.6213299036026,0.0343784168362617,-0.999374687671661,0.00825377646833658,0.034378420561552,-0.999374806880951,0.00825377646833658,0.034378420561552,-0.999374806880951,0.00825377739965916,0.0343784168362617,-0.999374747276306,0.00825377553701401,0.034378420561552,-0.999374806880951,0.00825377739965916,0.034378420561552,-0.999374806880951,0.00825377739965916,0.999507963657379,0.0313675105571747,-1.84952477866318e-005,0.999507963657379,0.0313675105571747,-1.84952477866318e-005,0.999507963657379,0.0313675105571747,-1.84952496056212e-005,0.999507904052734,0.0313675068318844,-1.84952477866318e-005,0.999507904052734,0.0313675068318844,-1.84952459676424e-005,-0.998589992523193,-0.0530856028199196,-9.93616704363376e-005,-0.998589992523193,-0.0530855990946293,-9.93616558844224e-005,-0.998589873313904,-0.0530855916440487,-9.93616558844224e-005,-0.998589932918549,-0.0530855990946293,-9.936166316038e-005,-0.998589932918549,-0.053085595369339,-9.936166316038e-005,-0.998589992523193,-0.053085595369339,-9.93616558844224e-005,-0.018810560926795,0.999715924263,0.0146421454846859,-0.0188105590641499,0.999715864658356,0.0146421436220407,-0.018810560926795,0.999715805053711,0.0146421445533633,-0.018810560926795,0.999715864658356,0.0146421436220407,-0.0188105646520853,0.999715924263,0.0146421464160085,0.0019355007680133,-0.00531826913356781,0.9999840259552,0.0019355007680133,-0.0053182695992291,0.999983966350555,0.00193550100084394,-0.00531827006489038,0.9999840259552,0.00193550065159798,-0.00531826913356781,0.999983966350555,0.00193550088442862,-0.00531826913356781,0.999983966350555,0.000135789610794745,-0.00524599524214864,-0.999986171722412,0.000135789625346661,-0.00524599570780993,-0.999986231327057,0.000135789610794745,-0.00524599570780993,-0.999986231327057,0.000135789610794745,-0.00524599617347121,-0.999986290931702,0.000135789625346661,-0.00524599617347121,-0.999986231327057,0.000135789625346661,-0.00524599570780993,-0.999986290931702,-0.548104465007782,0.31303596496582,-0.775622367858887,
- -0.548104524612427,0.313035905361176,-0.775622308254242,-0.548104465007782,0.313035905361176,-0.775622308254242,0.734996199607849,-0.452551603317261,-0.504953026771545,0.734996259212494,-0.452551573514938,-0.50495308637619,0.734996199607849,-0.452551573514938,-0.50495308637619,-0.594982981681824,-0.646043717861176,0.478145241737366,-0.594982981681824,-0.646043598651886,0.478145241737366,-0.594982981681824,-0.646043658256531,0.478145182132721,-0.00135213229805231,0.0515531823039055,0.998669326305389,-0.00135213253088295,0.0515531897544861,0.998669445514679,-0.00135213218163699,0.0515531785786152,0.998669266700745,-0.00135213229805231,0.0515531785786152,0.998669326305389,-0.00135213241446763,0.0515531897544861,0.998669385910034,-0.00135213229805231,0.0515531823039055,0.998669326305389,-0.0128818536177278,-0.000486506731249392,-0.999916851520538,-0.0128818545490503,-0.000486506760353222,-0.999916911125183,-0.0128818526864052,-0.000486506673041731,-0.999916851520538,-0.0128818545490503,-0.000486506760353222,-0.999916911125183,-0.0128818526864052,-0.000486506702145562,-0.999916851520538,-0.0128818536177278,-0.000486506731249392,-0.999916851520538,-0.999290347099304,-0.0376659035682678,-2.48858412987829e-007,-0.999290347099304,-0.0376659035682678,-2.48858412987829e-007,-0.999290347099304,-0.0376659072935581,-2.48858441409539e-007,-0.999290406703949,-0.0376659072935581,-2.48858441409539e-007,-0.999290406703949,-0.0376659072935581,-2.48858412987829e-007,-0.999290406703949,-0.0376659072935581,-2.48858412987829e-007,-0.23862586915493,-0.866273462772369,0.438894003629684,-0.238625913858414,-0.866273522377014,0.438894033432007,-0.23862586915493,-0.866273462772369,0.438894033432007,-0.400052577257156,0.560803651809692,-0.724884331226349,-0.400052547454834,0.560803592205048,-0.724884331226349,-0.400052607059479,0.560803651809692,-0.724884271621704,-0.0263281427323818,0.999653398990631,0.000207997567486018,-0.0263281408697367,0.999653398990631,0.000207997567486018,-0.0263281408697367,0.999653339385986,0.000207997567486018,-0.0263281371444464,0.999653339385986,0.000207997552934103,
- -0.0263281390070915,0.999653279781342,0.000207997538382187,-0.0263281390070915,0.999653279781342,0.000207997538382187,0.998641788959503,0.0385839678347111,0.0350105315446854,0.998641788959503,0.0385839641094208,0.0350105278193951,0.998641788959503,0.0385839678347111,0.0350105315446854,0.998641848564148,0.0385839678347111,0.0350105315446854,0.998641788959503,0.0385839678347111,0.0350105315446854,0.998641908168793,0.0385839678347111,0.0350105315446854,0.739123523235321,0.184476256370544,-0.647815465927124,0.739123523235321,0.184476256370544,-0.647815525531769,0.739123523235321,0.184476286172867,-0.647815525531769,0.0263361781835556,-0.999653100967407,-0.000203234885702841,0.0263361781835556,-0.999653160572052,-0.000203234885702841,0.0263361744582653,-0.999653160572052,-0.000203234856599011,0.0263361744582653,-0.999653041362762,-0.000203234856599011,0.0263361763209105,-0.999653160572052,-0.000203234871150926,0.0263361744582653,-0.999653100967407,-0.000203234871150926,0.690672516822815,-0.443548977375031,0.571170568466187,0.69067245721817,-0.443549036979675,0.571170508861542,0.69067245721817,-0.443549007177353,0.571170568466187,-0.0294978618621826,0.999550938606262,0.00527268368750811,-0.0294978599995375,0.999550938606262,0.00527268322184682,-0.0294978618621826,0.999550938606262,0.00527268368750811,-0.0294978599995375,0.999550879001617,0.00527268322184682,-0.0294978599995375,0.999550879001617,0.00527268275618553,0.0605449564754963,-0.00413544708862901,0.9981569647789,0.0263709779828787,-0.0075544249266386,0.999623656272888,0.0318612568080425,-0.00700595462694764,0.999467730522156,0.0605449452996254,-0.00413544662296772,0.998156905174255,0.0376770161092281,-0.99794590473175,-0.0518095642328262,0.0376770198345184,-0.997945964336395,-0.0518095679581165,0.0376770161092281,-0.997945964336395,-0.0518095679581165,0.0376770198345184,-0.997945964336395,-0.0518095642328262,0.0376770161092281,-0.99794602394104,-0.0518095716834068,0.0376770161092281,-0.99794602394104,-0.0518095716834068,0.0376770198345184,-0.99794602394104,-0.0518095716834068,
- -0.99968421459198,-0.0251255594193935,3.25465189234819e-005,-0.99968433380127,-0.0251255631446838,3.25465225614607e-005,-0.999684393405914,-0.0251255631446838,3.25465225614607e-005,-0.999684274196625,-0.0251255575567484,3.25465225614607e-005,-0.999684274196625,-0.0251255594193935,3.25465225614607e-005,0.999177038669586,0.0361864343285561,-0.018322104588151,0.999177157878876,0.0361864380538464,-0.0183221064507961,0.999177098274231,0.0361864380538464,-0.0183221064507961,0.999177098274231,0.0361864417791367,-0.0183221083134413,0.999177038669586,0.0361864343285561,-0.0183221064507961,-0.512928426265717,-0.557045638561249,0.653149664402008,-0.512928426265717,-0.557045638561249,0.653149724006653,-0.512928307056427,-0.557045638561249,0.653149664402008,0.0318612568080425,-0.00700595462694764,0.999467730522156,0.0263709779828787,-0.0075544249266386,0.999623656272888,0.000299486651783809,-0.0101546915248036,0.999948501586914,0.000299486622679979,-0.0101546915248036,0.999948382377625,0.000299486651783809,-0.0101546924561262,0.999948501586914,0.000546797993592918,0.0265614837408066,-0.999647080898285,0.000546797935385257,0.0265614800155163,-0.99964702129364,0.000546797993592918,0.0265614837408066,-0.99964702129364,0.000546798051800579,0.0265614874660969,-0.99964714050293,0.000546797993592918,0.0265614818781614,-0.99964702129364,0.899732410907745,-0.0699160546064377,-0.430805385112762,0.89973247051239,-0.0699160546064377,-0.43080535531044,0.899732530117035,-0.0699160620570183,-0.430805444717407,0.000596273224800825,-0.0356536172330379,-0.999363958835602,0.000596273283008486,-0.0356536172330379,-0.999364018440247,0.000596273224800825,-0.0356536172330379,-0.999363958835602,0.000596273341216147,-0.0356536209583282,-0.999364078044891,0.000596273283008486,-0.0356536172330379,-0.999364018440247,0.000596273341216147,-0.0356536209583282,-0.999364078044891,-0.0131245972588658,-0.0130594437941909,0.999828636646271,-0.0131245963275433,-0.0130594428628683,0.999828517436981,-0.0131245953962207,-0.0130594428628683,0.999828517436981,-0.0131245981901884,-0.0130594447255135,0.999828636646271,
- -0.0131245963275433,-0.0130594437941909,0.999828577041626,-0.0131245972588658,-0.0130594447255135,0.999828636646271,-1,3.81610334443394e-007,0,-1,3.81610334443394e-007,0,-1,3.81610334443394e-007,0,-1,3.81610362865104e-007,0,-1,3.81610362865104e-007,0,-1,3.81610362865104e-007,0,-0.287195801734924,0.8483766913414,-0.444719642400742,-0.287195771932602,0.8483766913414,-0.444719672203064,-0.287195801734924,0.8483766913414,-0.444719702005386,-0.391482591629028,-0.562007248401642,0.728621423244476,-0.391482621431351,-0.562007248401642,0.728621482849121,-0.391482621431351,-0.562007248401642,0.728621482849121,0.012246361002326,-0.999818086624146,-0.0146261770278215,0.0122463619336486,-0.999818027019501,-0.014626176096499,0.0122463600710034,-0.999818027019501,-0.0146261751651764,0.0122463619336486,-0.999818086624146,-0.0146261779591441,0.012246361002326,-0.999818086624146,-0.0146261770278215,0.012246361002326,-0.999818027019501,-0.014626176096499,0.999409139156342,-0.000461566000012681,-0.0343667529523373,0.999409139156342,-0.00046156591270119,-0.0343667455017567,0.999409139156342,-0.00046156594180502,-0.034366749227047,0.999409198760986,-0.000461566000012681,-0.034366749227047,0.999409198760986,-0.00046156594180502,-0.034366749227047,0.999409198760986,-0.00046156594180502,-0.034366749227047,0.752536654472351,-0.154979765415192,0.640054523944855,0.752536714076996,-0.154979780316353,0.640054523944855,0.752536654472351,-0.154979765415192,0.640054523944855,-0.0122379995882511,0.99981826543808,0.0146196726709604,-0.0122379986569285,0.99981826543808,0.0146196717396379,-0.0122379995882511,0.999818205833435,0.0146196717396379,-0.0122379995882511,0.999818325042725,0.0146196717396379,-0.0122379995882511,0.999818205833435,0.0146196726709604,-0.012237997725606,0.99981826543808,0.0146196708083153,0.688027143478394,0.452593952417374,-0.567254245281219,0.688027203083038,0.452593982219696,-0.567254245281219,0.688027143478394,0.452593952417374,-0.567254245281219,-0.00289550423622131,-0.999207437038422,-0.0396979004144669,-0.0028955047018826,-0.999207496643066,-0.0396979078650475,
- -0.0028955047018826,-0.999207556247711,-0.0396979078650475,-0.00289550446905196,-0.999207496643066,-0.0396979041397572,-0.00289550446905196,-0.999207437038422,-0.0396979041397572,-0.0028955047018826,-0.999207556247711,-0.0396979078650475,-0.999999940395355,2.17531578527996e-007,0,-1,2.17531592738851e-007,0,-1,2.17531592738851e-007,0,-0.999999940395355,2.17531592738851e-007,0,-1,2.17531606949706e-007,0,0.999752163887024,-0.0222527794539928,-0.000620725273620337,0.999752223491669,-0.0222527794539928,-0.000620725273620337,0.999752163887024,-0.0222527775913477,-0.000620725215412676,0.999752104282379,-0.0222527757287025,-0.000620725215412676,0.999752283096313,-0.022252781316638,-0.000620725331827998,0.999752163887024,-0.022252781316638,-0.000620725273620337,-0.0122855398803949,0.999773442745209,0.0173808485269547,-0.0122855417430401,0.999773442745209,0.0173808503895998,-0.0122855408117175,0.999773383140564,0.0173808485269547,-0.0122855408117175,0.999773442745209,0.0173808485269547,-0.0122855436056852,0.999773502349854,0.0173808541148901,-0.00176944292616099,0.0256546437740326,-0.999669253826141,-0.00176944292616099,0.0256546437740326,-0.999669373035431,-0.00176944292616099,0.0256546437740326,-0.999669313430786,-0.00176944292616099,0.0256546419113874,-0.999669313430786,-0.00176944280974567,0.0256546437740326,-0.999669194221497,1.85436201718403e-005,-0.0365234538912773,0.999332785606384,1.85436219908297e-005,-0.0365234576165676,0.999332785606384,1.85436201718403e-005,-0.0365234538912773,0.999332785606384,1.85436201718403e-005,-0.0365234538912773,0.999332785606384,1.85436201718403e-005,-0.036523450165987,0.999332785606384,1.85436201718403e-005,-0.0365234576165676,0.999332845211029,0.536360204219818,0.313330918550491,0.783671796321869,0.536360204219818,0.313330948352814,0.783671855926514,0.536360144615173,0.313330888748169,0.783671796321869,-0.716109573841095,-0.500530958175659,0.486473053693771,-0.716109454631805,-0.50053083896637,0.486472994089127,-0.71610951423645,-0.500530898571014,0.486473023891449,0.608811557292938,-0.621457040309906,-0.493091762065887,
- 0.608811616897583,-0.621457159519196,-0.493091821670532,0.608811616897583,-0.621457099914551,-0.493091732263565,0.00495260022580624,0.999978065490723,-0.00440201256424189,0.00495259929448366,0.999977946281433,-0.00440201163291931,0.00495260022580624,0.999978005886078,-0.0044020120985806,0.00495260022580624,0.999978065490723,-0.0044020120985806,0.00495260069146752,0.999978065490723,-0.00440201256424189,-0.0818743631243706,-0.00676371389999986,-0.996619760990143,-0.0359657779335976,-0.00980835687369108,-0.999304831027985,-0.0425078384578228,-0.00937607139348984,-0.999052107334137,-0.0818743482232094,-0.00676371343433857,-0.996619641780853,-0.0142701575532556,-0.99896103143692,0.0432804375886917,-0.0142701575532556,-0.998960971832275,0.0432804338634014,-0.0142701584845781,-0.99896103143692,0.0432804338634014,-0.0142701594159007,-0.99896103143692,0.0432804338634014,-0.0142701584845781,-0.998960971832275,0.0432804301381111,-0.0142701575532556,-0.998960971832275,0.0432804338634014,-0.0142701603472233,-0.99896115064621,0.0432804375886917,1,2.37623524412811e-007,0,1,2.37623510201956e-007,0,1,2.37623510201956e-007,0,0.999999940395355,2.37623495991102e-007,0,1,2.37623524412811e-007,0,-0.999860465526581,0.00979993678629398,0.0135280201211572,-0.999860525131226,0.00979993771761656,0.0135280201211572,-0.999860405921936,0.00979993678629398,0.0135280191898346,-0.999860465526581,0.00979993678629398,0.0135280191898346,-0.999860465526581,0.00979993771761656,0.0135280210524797,0.612624704837799,-0.558127760887146,-0.55962872505188,0.612624764442444,-0.558127760887146,-0.55962872505188,0.612624824047089,-0.558127760887146,-0.55962872505188,-0.0425078384578228,-0.00937607139348984,-0.999052107334137,-0.0359657779335976,-0.00980835687369108,-0.999304831027985,-6.04611595917959e-005,-0.0121715776622295,-0.999925971031189,-6.04611705057323e-005,-0.0121715795248747,-0.999925971031189,-6.04611595917959e-005,-0.0121715776622295,-0.999925971031189,-0.00164752244018018,0.0317731909453869,0.999493718147278,-0.00164752267301083,0.0317731946706772,0.999493777751923,
- -0.00164752232376486,0.0317731909453869,0.999493777751923,-0.00164752244018018,0.0317731909453869,0.999493718147278,-0.00164752232376486,0.0317731909453869,0.999493658542633,-0.939307868480682,-0.0853442698717117,0.33229061961174,-0.939307928085327,-0.0853442698717117,0.332290649414063,-0.939307868480682,-0.0853442698717117,0.332290589809418,-0.00297002680599689,0.999961495399475,0.00825460813939571,-0.00297002657316625,0.99996143579483,0.00825460720807314,-0.00297002703882754,0.99996155500412,0.00825460813939571,-0.00297002703882754,0.99996155500412,0.00825460813939571,-0.00297002680599689,0.999961495399475,0.00825460720807314,-0.00297002657316625,0.999961495399475,0.00825460813939571,-1,-8.57474802273828e-008,0,-1,-8.57474802273828e-008,0,-1,-8.57474731219554e-008,0,-1,-8.57474873328101e-008,0,-1,-8.57474731219554e-008,0,0.999764680862427,0.0216908790171146,-7.35458306735381e-005,0.999764740467072,0.0216908808797598,-7.35458306735381e-005,0.999764680862427,0.0216908808797598,-7.35458306735381e-005,0.999764740467072,0.0216908808797598,-7.35458233975805e-005,0.999764740467072,0.0216908790171146,-7.35458306735381e-005,0.999764680862427,0.0216908790171146,-7.35458161216229e-005,-0.0126001555472612,-0.999813437461853,0.0146422786638141,-0.0126001546159387,-0.999813377857208,0.0146422768011689,-0.0126001546159387,-0.999813377857208,0.0146422768011689,-0.0126001546159387,-0.999813377857208,0.0146422786638141,-0.0126001546159387,-0.999813377857208,0.0146422768011689,-0.00176800147164613,0.00537168001756072,0.9999840259552,-0.00176800147164613,0.00537168001756072,0.999983966350555,-0.00176800147164613,0.00537168001756072,0.999983966350555,-0.00176800135523081,0.00537167908623815,0.999983966350555,-0.00176800158806145,0.00537168048322201,0.9999840259552,2.79287287412444e-005,0.00524921854957938,-0.999986171722412,2.79287305602338e-005,0.00524921901524067,-0.999986171722412,2.79287305602338e-005,0.00524921901524067,-0.999986171722412,2.79287323792232e-005,0.00524921948090196,-0.999986231327057,2.79287287412444e-005,0.00524921901524067,-0.999986171722412,
- 2.79287287412444e-005,0.00524921901524067,-0.999986112117767,0.538067996501923,-0.330066621303558,-0.775589346885681,0.538067996501923,-0.330066621303558,-0.775589346885681,0.538068056106567,-0.330066621303558,-0.775589346885681,-0.720624923706055,0.47542205452919,-0.504651725292206,-0.720624983310699,0.475422114133835,-0.504651844501495,-0.720624923706055,0.47542205452919,-0.504651784896851,0.615133285522461,0.626882314682007,0.478152275085449,0.615133285522461,0.626882255077362,0.478152275085449,0.615133285522461,0.626882314682007,0.478152215480804,-0.000577821454498917,-0.050227414816618,0.998737633228302,-0.000577821454498917,-0.0502274110913277,0.998737573623657,-0.000577821454498917,-0.0502274110913277,0.998737573623657,-0.000577821454498917,-0.0502274110913277,0.998737692832947,-0.000577821454498917,-0.0502274110913277,0.998737633228302,-0.000577821454498917,-0.0502274110913277,0.998737633228302,0.0125569356605411,-2.20790707317065e-006,-0.999921143054962,0.0125569356605411,-2.20790730054432e-006,-0.999921202659607,0.0125569347292185,-2.20790684579697e-006,-0.999921143054962,0.0125569347292185,-2.20790684579697e-006,-0.999921143054962,0.0125569347292185,-2.20790684579697e-006,-0.999921143054962,0.0125569365918636,-2.20790707317065e-006,-0.999921202659607,1,1.82678419946569e-007,0,1,1.82678405735714e-007,0,1,1.82678419946569e-007,0,1,1.82678405735714e-007,0,1,1.8267839152486e-007,0,1,1.82678405735714e-007,0,0.269710302352905,0.852254152297974,0.448240250349045,0.269710242748261,0.852254092693329,0.448240220546722,0.269710272550583,0.852254152297974,0.4482401907444,0.373286902904511,-0.567517518997192,-0.733880519866943,0.373286902904511,-0.567517578601837,-0.733880579471588,0.373286902904511,-0.567517578601837,-0.733880519866943,-0.0113672399893403,-0.999935269355774,0.000214450192288496,-0.0113672418519855,-0.999935388565063,0.000214450206840411,-0.0113672390580177,-0.999935328960419,0.000214450163184665,-0.0113672418519855,-0.999935448169708,0.000214450206840411,-0.0113672399893403,-0.999935328960419,0.00021445017773658,
- -0.0113672409206629,-0.999935328960419,0.000214450192288496,-0.999353468418121,-0.000957498326897621,0.0359401106834412,-0.999353528022766,-0.000957498326897621,0.0359401106834412,-0.999353528022766,-0.000957498385105282,0.0359401144087315,-0.999353408813477,-0.000957498326897621,0.0359401069581509,-0.999353528022766,-0.000957498443312943,0.0359401181340218,-0.999353408813477,-0.00095749826868996,0.0359401069581509,-0.737280607223511,-0.154738828539848,-0.657626926898956,-0.737280666828156,-0.15473884344101,-0.657626986503601,-0.737280607223511,-0.15473884344101,-0.657626986503601,0.0113585526123643,0.999935567378998,-0.000209096004255116,0.0113585526123643,0.999935507774353,-0.000209095989703201,0.0113585526123643,0.999935448169708,-0.000209095989703201,0.0113585526123643,0.999935448169708,-0.00020909596059937,0.0113585535436869,0.999935507774353,-0.000209095975151286,0.0113585526123643,0.999935448169708,-0.000209095989703201,-0.667596995830536,0.465076148509979,0.581393539905548,-0.667596995830536,0.465076178312302,0.581393480300903,-0.667597055435181,0.465076208114624,0.581393539905548,-0.00406329287216067,0.999981641769409,0.00450364127755165,-0.0040632919408381,0.999981582164764,0.00450364127755165,-0.00406329287216067,0.999981582164764,0.00450364174321294,-0.00406329240649939,0.999981582164764,0.00450364127755165,-0.00406329287216067,0.999981582164764,0.00450364174321294,0.0657393336296082,-0.00660648103803396,0.997814953327179,0.0282393284142017,-0.00961977802217007,0.999554812908173,0.0347026884555817,-0.0091016199439764,0.999356210231781,0.0657393336296082,-0.00660648150369525,0.997815012931824,0.0117067927494645,-0.998950004577637,-0.0442908592522144,0.0117067936807871,-0.998950123786926,-0.044290866702795,0.0117067936807871,-0.998950064182281,-0.0442908592522144,0.0117067927494645,-0.998950123786926,-0.0442908592522144,0.0117067918181419,-0.998950004577637,-0.0442908555269241,0.0117067927494645,-0.998950123786926,-0.0442908629775047,0.0117067918181419,-0.998950004577637,-0.0442908592522144,-1,-3.5049663438258e-007,0,
- -1,-3.50496577539161e-007,0,-1,-3.50496605960871e-007,0,-1,-3.50496605960871e-007,0,-1,-3.50496662804289e-007,0,0.9997878074646,0.0119026200845838,-0.0168142169713974,0.9997878074646,0.0119026200845838,-0.0168142169713974,0.9997878074646,0.0119026191532612,-0.0168142151087523,0.99978768825531,0.0119026182219386,-0.0168142151087523,0.999787747859955,0.0119026210159063,-0.0168142151087523,-0.532057702541351,-0.590923428535461,0.606402635574341,-0.532057702541351,-0.590923368930817,0.606402575969696,-0.532057702541351,-0.590923368930817,0.606402635574341,0.0347026884555817,-0.0091016199439764,0.999356210231781,0.0282393284142017,-0.00961977802217007,0.999554812908173,3.32130657625385e-005,-0.0118751721456647,0.999929547309875,3.32130584865808e-005,-0.0118751702830195,0.999929487705231,3.32130621245597e-005,-0.0118751721456647,0.999929547309875,0.00132615235634148,0.0310381222516298,-0.999517381191254,0.00132615235634148,0.0310381222516298,-0.999517381191254,0.00132615223992616,0.0310381203889847,-0.999517321586609,0.00132615212351084,0.0310381203889847,-0.999517261981964,0.00132615223992616,0.0310381203889847,-0.999517321586609,0.910287082195282,-0.100871466100216,-0.401500314474106,0.910287022590637,-0.100871443748474,-0.401500254869461,0.910287022590637,-0.100871451199055,-0.401500284671783,-0.0270489137619734,-0.999620914459229,0.00512925023213029,-0.0270489156246185,-0.999620974063873,0.00512925023213029,-0.0270489156246185,-0.999620974063873,0.00512925023213029,-0.0270489137619734,-0.999620914459229,0.005129249766469,-0.0270489118993282,-0.999620854854584,0.005129249766469,-0.0231313053518534,0.00638487702235579,0.99971204996109,0.00876943860203028,0.00796674843877554,0.999929785728455,0.00323639204725623,0.00769293028861284,0.999965190887451,-0.0231313053518534,0.00638487748801708,0.99971204996109,0.017928970977664,0.998518288135529,-0.0513777807354927,0.0179289691150188,0.998518288135529,-0.0513777732849121,0.0179289691150188,0.998518288135529,-0.0513777807354927,0.017928970977664,0.998518407344818,-0.051377784460783,
- 0.0179289691150188,0.998518288135529,-0.0513777732849121,0.017928970977664,0.998518407344818,-0.051377784460783,0.0179289691150188,0.998518288135529,-0.0513777732849121,0.998912453651428,-0.0311962757259607,-0.0346501395106316,0.998912453651428,-0.0311962738633156,-0.0346501395106316,0.998912572860718,-0.0311962775886059,-0.0346501469612122,0.998912572860718,-0.0311962813138962,-0.0346501469612122,0.998912513256073,-0.0311962720006704,-0.0346501432359219,-0.999704718589783,0.0192768424749374,0.0147957531735301,-0.999704658985138,0.0192768406122923,0.0147957522422075,-0.999704718589783,0.0192768424749374,0.0147957531735301,-0.999704658985138,0.0192768406122923,0.0147957522422075,-0.999704658985138,0.0192768406122923,0.0147957522422075,0.534936666488647,0.539642512798309,0.650099039077759,0.534936666488647,0.539642453193665,0.650099039077759,0.534936726093292,0.539642512798309,0.650099098682404,0.00323639204725623,0.00769293028861284,0.999965190887451,0.00876943860203028,0.00796674843877554,0.999929785728455,0.0326855778694153,0.0091476421803236,0.999423742294312,0.0326855815947056,0.0091476421803236,0.999423801898956,0.0326855778694153,0.00914764311164618,0.999423801898956,-0.0343485437333584,-0.0254805479198694,-0.999085009098053,-0.0343485362827778,-0.0254805441945791,-0.999085009098053,-0.0343485362827778,-0.0254805460572243,-0.999085009098053,-0.0343485437333584,-0.0254805479198694,-0.999085068702698,-0.0343485400080681,-0.0254805460572243,-0.999085128307343,-0.894530951976776,0.126689314842224,-0.428677469491959,-0.894530892372131,0.126689299941063,-0.428677380084991,-0.894530832767487,0.126689314842224,-0.428677409887314,-0.00252414843998849,-0.999962687492371,-0.00825520977377892,-0.00252414890564978,-0.999962747097015,-0.00825521070510149,-0.00252414843998849,-0.999962687492371,-0.00825520977377892,-0.00252414843998849,-0.999962687492371,-0.00825520977377892,-0.00252414820715785,-0.999962687492371,-0.00825520977377892,-0.00252414867281914,-0.99996280670166,-0.00825521070510149,-1,-2.30306255843971e-007,0,-1,-2.30306270054825e-007,0,
- -1,-2.30306241633116e-007,0,-1,-2.30306255843971e-007,0,-1,-2.30306241633116e-007,0,0.999635636806488,-0.0269916132092476,-0.000152915148646571,0.999635636806488,-0.0269916169345379,-0.000152915177750401,0.999635696411133,-0.0269916169345379,-0.000152915148646571,0.999635696411133,-0.0269916169345379,-0.000152915163198486,0.999635636806488,-0.0269916150718927,-0.000152915163198486,0.999635696411133,-0.026991618797183,-0.000152915177750401,0.0145499957725406,0.999817669391632,-0.0123646631836891,0.0145499939098954,0.999817669391632,-0.0123646631836891,0.014549994841218,0.999817669391632,-0.0123646631836891,0.014549994841218,0.999817728996277,-0.0123646641150117,0.0145499957725406,0.999817728996277,-0.0123646641150117,-0.00155389553401619,-0.00551381101831794,-0.999983549118042,-0.00155389553401619,-0.00551381101831794,-0.999983549118042,-0.00155389565043151,-0.00551381055265665,-0.999983608722687,-0.00155389553401619,-0.00551381101831794,-0.999983549118042,-0.00155389565043151,-0.00551381101831794,-0.999983549118042,-6.38876372249797e-005,-0.00538142072036862,0.99998551607132,-6.38876445009373e-005,-0.0053814216516912,0.99998551607132,-6.38876299490221e-005,-0.00538142072036862,0.999985456466675,-6.38876372249797e-005,-0.00538142072036862,0.99998551607132,-6.38876372249797e-005,-0.00538142072036862,0.99998551607132,-6.38876372249797e-005,-0.00538142025470734,0.99998551607132,0.476761013269424,0.344126671552658,0.808873116970062,0.476761013269424,0.344126671552658,0.808873057365417,0.476761013269424,0.34412670135498,0.808873057365417,-0.661974608898163,-0.514004170894623,0.545517444610596,-0.661974608898163,-0.514004230499268,0.545517444610596,-0.661974608898163,-0.514004170894623,0.545517444610596,0.552621841430664,-0.662773668766022,-0.505312085151672,0.552621841430664,-0.662773668766022,-0.505312144756317,0.552621841430664,-0.662773609161377,-0.505312085151672,0.000575016660150141,-0.00162351445760578,0.999998450279236,0.000575016718357801,-0.0016235145740211,0.999998569488525,0.000575016660150141,-0.0016235145740211,0.999998509883881,
- 0.000575016718357801,-0.00162351445760578,0.999998509883881,0.000575016660150141,-0.0016235145740211,0.999998569488525,0.000575016718357801,-0.00162351469043642,0.999998509883881,-0.0125558283179998,0.0607514083385468,-0.998073935508728,-0.0125558292493224,0.0607514083385468,-0.998073935508728,-0.0125558273866773,0.0607514083385468,-0.998073935508728,-0.0125558283179998,0.0607514046132565,-0.998073935508728,-0.0125558292493224,0.0607514120638371,-0.998073995113373,-0.0125558283179998,0.0607514120638371,-0.998073995113373,-1,3.86969475130172e-007,0,-1,3.86969446708463e-007,0,-1,3.86969475130172e-007,0,-1,3.86969475130172e-007,0,-0.999999940395355,3.86969446708463e-007,0,-1,3.86969475130172e-007,0,-0.238576650619507,-0.910365700721741,0.338105767965317,-0.238576650619507,-0.910365700721741,0.338105767965317,-0.238576650619507,-0.910365700721741,0.338105767965317,-0.352693259716034,0.672305285930634,-0.650855541229248,-0.352693289518356,0.672305345535278,-0.650855660438538,-0.352693229913712,0.672305345535278,-0.650855600833893,0.00964901223778725,0.997833847999573,0.065073162317276,0.00964901130646467,0.997833847999573,0.065073162317276,0.00964901130646467,0.997833847999573,0.065073162317276,0.00964901130646467,0.997833847999573,0.065073162317276,0.00964901130646467,0.997833847999573,0.065073162317276,0.00964901130646467,0.997833788394928,0.065073162317276,0.999353885650635,-0.0010973650496453,0.0359218567609787,0.999354004859924,-0.00109736516606063,0.035921860486269,0.999354004859924,-0.00109736528247595,0.035921860486269,0.999354064464569,-0.00109736516606063,0.0359218642115593,0.999354064464569,-0.00109736528247595,0.0359218642115593,0.999354004859924,-0.00109736516606063,0.035921860486269,0.734064042568207,0.221010982990265,-0.642109155654907,0.734064102172852,0.221010982990265,-0.642109155654907,0.734064042568207,0.221010953187943,-0.642109036445618,-0.00964208412915468,-0.997834205627441,-0.0650685504078865,-0.00964208506047726,-0.997834265232086,-0.0650685653090477,-0.00964208412915468,-0.997834146022797,-0.0650685578584671,
- -0.00964208506047726,-0.997834265232086,-0.0650685653090477,-0.00964208319783211,-0.997834205627441,-0.0650685578584671,-0.00964208412915468,-0.997834205627441,-0.0650685504078865,0.641941487789154,-0.559980571269989,0.523767948150635,0.641941487789154,-0.559980571269989,0.52376800775528,0.641941428184509,-0.559980571269989,0.523767948150635,0.00801575277000666,0.999959409236908,0.00410348596051335,0.00801575277000666,0.999959528446198,0.00410348642617464,0.00801575277000666,0.999959409236908,0.00410348549485207,0.00801575277000666,0.999959409236908,0.00410348596051335,0.00801575277000666,0.999959468841553,0.00410348596051335,0.0311494693160057,-0.00641703326255083,0.999494194984436,-0.00770635902881622,-0.00882163271307945,0.999931395053864,-0.00147060723975301,-0.00843658484518528,0.999963343143463,0.0311494693160057,-0.00641703279688954,0.999494135379791,0.00175327563192695,-0.998991370201111,-0.044867280870676,0.00175327563192695,-0.998991429805756,-0.044867280870676,0.00175327563192695,-0.998991310596466,-0.044867280870676,0.00175327574834228,-0.9989914894104,-0.0448672845959663,0.00175327539909631,-0.998991370201111,-0.044867280870676,0.00175327574834228,-0.9989914894104,-0.0448672883212566,0.00175327574834228,-0.9989914894104,-0.0448672920465469,-0.999129116535187,0.0125037198886275,-0.0398082099854946,-0.999129056930542,0.012503718957305,-0.0398082062602043,-0.999129235744476,0.0125037208199501,-0.0398082099854946,-0.999129116535187,0.0125037198886275,-0.0398082062602043,-0.999129116535187,0.012503718957305,-0.039808202534914,0.999718844890594,-0.00149484479334205,0.0236630588769913,0.99971878528595,-0.00149484444409609,0.023663055151701,0.999718904495239,-0.00149484479334205,0.0236630588769913,0.99971878528595,-0.00149484456051141,0.0236630570143461,0.999718844890594,-0.00149484467692673,0.0236630570143461,-0.583557903766632,-0.564241290092468,0.584030747413635,-0.583557903766632,-0.564241290092468,0.58403080701828,-0.583557903766632,-0.564241290092468,0.58403080701828,-0.00147060723975301,-0.00843658484518528,0.999963343143463,
- -0.00770635902881622,-0.00882163271307945,0.999931395053864,-0.0373415090143681,-0.0106471050530672,0.999245882034302,-0.0373415090143681,-0.0106471041217446,0.999245882034302,-0.0373415090143681,-0.0106471041217446,0.999245822429657,0.0389978587627411,0.0291955806314945,-0.998812675476074,0.0389978550374508,0.0291955824941397,-0.998812615871429,0.0389978513121605,0.0291955806314945,-0.998812615871429,0.0389978587627411,0.02919558621943,-0.998812735080719,0.0389978550374508,0.0291955806314945,-0.998812675476074,0.930179715156555,-0.106198772788048,-0.35140797495842,0.93017965555191,-0.106198780238628,-0.351408004760742,0.93017965555191,-0.106198780238628,-0.351408034563065,0.00456171529367566,0.999979615211487,-0.00447250856086612,0.00456171575933695,0.999979615211487,-0.0044725090265274,0.00456171529367566,0.999979555606842,-0.00447250856086612,0.00456171575933695,0.999979555606842,-0.0044725090265274,0.00456171529367566,0.999979555606842,-0.00447250856086612,-0.0630808547139168,-0.00490343198180199,-0.99799633026123,-0.0274457447230816,-0.00744934333488345,-0.999595522880554,-0.032938327640295,-0.00705771613866091,-0.999432504177094,-0.0630808621644974,-0.00490343291312456,-0.99799644947052,-0.0131383826956153,-0.998611688613892,0.0510104112327099,-0.0131383836269379,-0.998611748218536,0.0510104149580002,-0.0131383817642927,-0.998611688613892,0.0510104112327099,-0.0131383836269379,-0.998611748218536,0.0510104186832905,-0.0131383826956153,-0.998611748218536,0.0510104186832905,-0.0131383817642927,-0.998611688613892,0.0510104149580002,-0.0131383826956153,-0.998611629009247,0.0510104112327099,1,-6.61903030163558e-008,0,1,-6.61902959109284e-008,0,1,-6.61903030163558e-008,0,1,-6.61903030163558e-008,0,1,-6.61902959109284e-008,0,-0.999789357185364,0.0106101641431451,0.0175683163106442,-0.999789357185364,0.0106101650744677,0.0175683163106442,-0.999789357185364,0.0106101641431451,0.0175683163106442,-0.999789357185364,0.0106101641431451,0.0175683181732893,-0.999789357185364,0.0106101650744677,0.0175683181732893,0.543146848678589,-0.536827087402344,-0.645606875419617,
- 0.543146789073944,-0.536827087402344,-0.645606875419617,0.543146848678589,-0.536827087402344,-0.645606875419617,-0.032938327640295,-0.00705771613866091,-0.999432504177094,-0.0274457447230816,-0.00744934333488345,-0.999595522880554,-3.1231356842909e-005,-0.00939976144582033,-0.999955832958221,-3.1231356842909e-005,-0.00939976330846548,-0.999955832958221,-3.12313604808878e-005,-0.00939976423978806,-0.999955892562866,-0.00127083191182464,0.0257967803627253,0.999666452407837,-0.00127083191182464,0.0257967803627253,0.999666452407837,-0.00127083191182464,0.0257967785000801,0.999666452407837,-0.00127083191182464,0.0257967785000801,0.999666392803192,-0.00127083191182464,0.025796776637435,0.999666392803192,-0.904858946800232,-0.0896299481391907,0.416169017553329,-0.904859006404877,-0.0896299555897713,0.416169047355652,-0.904859006404877,-0.0896299630403519,0.416169017553329,0.00260151643306017,-0.999962508678436,0.00825538951903582,0.00260151643306017,-0.999962568283081,0.00825538951903582,0.00260151689872146,-0.999962627887726,0.00825539045035839,0.00260151666589081,-0.999962568283081,0.00825538951903582,0.00260151620022953,-0.999962449073792,0.00825538951903582,0.00260151620022953,-0.999962449073792,0.00825538858771324,1,1.17740648875042e-006,0,1,1.17740648875042e-006,0,0.999999940395355,1.17740637506358e-006,0,1,1.17740637506358e-006,0,1,1.17740637506358e-006,0,-0.999693036079407,-0.0247759167104959,-9.24730702536181e-005,-0.999693036079407,-0.0247759167104959,-9.24730629776604e-005,-0.999693036079407,-0.0247759148478508,-9.24730702536181e-005,-0.999693036079407,-0.0247759167104959,-9.24730775295757e-005,-0.999693036079407,-0.0247759148478508,-9.24730629776604e-005,-0.999693036079407,-0.0247759185731411,-9.24730702536181e-005,0.0110370488837361,0.999831914901733,0.0146426651626825,0.0110370479524136,0.999831855297089,0.01464266423136,0.0110370460897684,0.999831795692444,0.0146426623687148,0.011037047021091,0.999831855297089,0.0146426623687148,0.011037047021091,0.999831914901733,0.01464266423136,0.00154830212704837,-0.00537544582039118,0.999984323978424,
- 0.0015483022434637,-0.00537544628605247,0.999984323978424,0.00154830212704837,-0.00537544628605247,0.999984323978424,0.00154830212704837,-0.00537544628605247,0.999984383583069,0.0015483022434637,-0.00537544675171375,0.999984383583069,-2.69507054326823e-005,-0.00525204697623849,-0.999986231327057,-2.69507036136929e-005,-0.00525204697623849,-0.999986231327057,-2.69507036136929e-005,-0.00525204697623849,-0.999986171722412,-2.69507072516717e-005,-0.00525204744189978,-0.999986231327057,-2.69507054326823e-005,-0.00525204697623849,-0.999986231327057,-2.69507017947035e-005,-0.00525204604491591,-0.999986171722412,-0.487845361232758,0.341749101877213,-0.803252458572388,-0.487845301628113,0.341749101877213,-0.803252458572388,-0.487845361232758,0.341749101877213,-0.803252458572388,0.673017978668213,-0.507167220115662,-0.538357019424438,0.673017978668213,-0.507167160511017,-0.538357019424438,0.673018038272858,-0.507167220115662,-0.538357019424438,-0.564196467399597,-0.65643310546875,0.500777423381805,-0.564196407794952,-0.656433045864105,0.500777363777161,-0.564196467399597,-0.65643310546875,0.500777363777161,-0.00350422784686089,-0.999955117702484,-0.0087925037369132,-0.00350422831252217,-0.999955236911774,-0.00879250559955835,-0.00350422761403024,-0.999955177307129,-0.0087925037369132,-0.0035042273811996,-0.999955117702484,-0.0087925037369132,-0.0035042273811996,-0.999955236911774,-0.00879250280559063,-0.00350422761403024,-0.999955177307129,-0.0087925037369132,-1,2.12947284694565e-007,0,-1,2.1294727048371e-007,0,-1,2.12947284694565e-007,0,-1,2.12947256272855e-007,0,-1,2.12947284694565e-007,0,0.999831438064575,-0.018363431096077,4.99095876875799e-005,0.999831318855286,-0.018363431096077,4.99095913255587e-005,0.99983137845993,-0.0183634329587221,4.99095986015163e-005,0.99983137845993,-0.018363431096077,4.99095949635375e-005,0.99983137845993,-0.018363431096077,4.99095949635375e-005,0.999831438064575,-0.0183634329587221,4.99095986015163e-005,-0.0148669425398111,0.999767899513245,-0.0155936945229769,-0.014866940677166,0.999767780303955,-0.0155936935916543,
- -0.0148669416084886,0.9997678399086,-0.0155936945229769,-0.0148669425398111,0.999767899513245,-0.0155936954542995,-0.0148669425398111,0.9997678399086,-0.0155936926603317,-0.00196130969561636,-0.00506072537973523,-0.999985218048096,-0.00196130969561636,-0.00506072537973523,-0.99998527765274,-0.00196130992844701,-0.00506072584539652,-0.999985218048096,-0.00196130969561636,-0.00506072537973523,-0.999985218048096,-0.00196130969561636,-0.00506072537973523,-0.999985218048096,2.113898335665e-005,-0.00491410912945867,0.999987900257111,2.11389815376606e-005,-0.00491410866379738,0.999987840652466,2.113898335665e-005,-0.00491410912945867,0.999987959861755,2.11389797186712e-005,-0.00491410866379738,0.999987900257111,2.113898335665e-005,-0.00491410959511995,0.999987959861755,2.113898335665e-005,-0.00491410866379738,0.999987900257111,0.580824851989746,0.302097827196121,0.755896389484406,0.580824851989746,0.302097827196121,0.755896389484406,0.580824851989746,0.302097827196121,0.755896329879761,-0.764239370822906,-0.427283942699432,0.483080387115479,-0.764239370822906,-0.427283972501755,0.483080446720123,-0.764239311218262,-0.427283942699432,0.483080387115479,0.668331325054169,-0.577397406101227,-0.46898353099823,0.668331325054169,-0.577397346496582,-0.468983501195908,0.668331265449524,-0.577397346496582,-0.468983471393585,-0.00297029060311615,0.99996155500412,0.00825572665780783,-0.00297029013745487,0.99996143579483,0.00825572572648525,-0.00297029037028551,0.99996143579483,0.00825572665780783,-0.00297029037028551,0.999961495399475,0.00825572572648525,-0.00297029060311615,0.99996155500412,0.00825572665780783,-0.00297029060311615,0.99996155500412,0.00825572665780783,-1,-4.77695678569035e-008,0,-1,-4.77695643041898e-008,0,-1,-4.77695643041898e-008,0,-1,-4.77695607514761e-008,0,-1,-4.77695643041898e-008,0,0.999763369560242,0.0217500440776348,-6.7270033468958e-005,0.999763369560242,0.0217500478029251,-6.72700480208732e-005,0.999763429164886,0.0217500496655703,-6.72700407449156e-005,0.999763429164886,0.0217500496655703,-6.72700407449156e-005,
- 0.999763429164886,0.0217500478029251,-6.7270033468958e-005,0.999763429164886,0.02175004594028,-6.72700407449156e-005,-0.012599871493876,-0.999813377857208,0.0146449534222484,-0.0125998705625534,-0.999813377857208,0.0146449524909258,-0.0125998677685857,-0.999813377857208,0.0146449524909258,-0.0125998705625534,-0.999813377857208,0.0146449524909258,-0.0125998696312308,-0.999813377857208,0.0146449534222484,-0.00176750670652837,0.00537384347990155,0.9999840259552,-0.00176750682294369,0.00537384301424026,0.999983966350555,-0.00176750670652837,0.00537384301424026,0.999983966350555,-0.00176750670652837,0.00537384301424026,0.9999840259552,-0.00176750670652837,0.00537384347990155,0.999983966350555,2.85362766589969e-005,0.00525305839255452,-0.999986231327057,2.85362730210181e-005,0.00525305839255452,-0.999986171722412,2.85362748400075e-005,0.00525305792689323,-0.999986231327057,2.85362748400075e-005,0.00525305839255452,-0.999986231327057,2.85362730210181e-005,0.00525305792689323,-0.999986171722412,2.85362748400075e-005,0.00525305839255452,-0.999986231327057,0.537915408611298,-0.330113589763641,-0.775675117969513,0.537915468215942,-0.330113619565964,-0.775675237178802,0.537915468215942,-0.330113589763641,-0.775675237178802,-0.720498025417328,0.475503176450729,-0.504756808280945,-0.720498025417328,0.475503206253052,-0.504756808280945,-0.720497965812683,0.475503146648407,-0.5047567486763,0.615028083324432,0.626964867115021,0.4781793653965,0.615028083324432,0.626964867115021,0.4781793653965,0.615028023719788,0.626964867115021,0.478179305791855,-0.000577967264689505,-0.0502308122813702,0.998737454414368,-0.000577967322897166,-0.0502308160066605,0.998737514019012,-0.000577967322897166,-0.0502308122813702,0.998737454414368,-0.000577967264689505,-0.0502308122813702,0.998737454414368,-0.000577967322897166,-0.0502308122813702,0.998737454414368,-0.000577967264689505,-0.0502308085560799,0.998737454414368,0.012552441097796,-2.20986109411569e-007,-0.999921202659607,0.0125524429604411,-2.20986123622424e-007,-0.999921262264252,0.0125524429604411,-2.20986137833279e-007,-0.999921202659607,
- 0.012552441097796,-2.20986095200715e-007,-0.999921202659607,0.0125524429604411,-2.20986123622424e-007,-0.999921262264252,0.0125524429604411,-2.20986123622424e-007,-0.999921262264252,1,-8.13710343550156e-008,0,1,-8.13710414604429e-008,0,0.999999940395355,-8.13710343550156e-008,0,1,-8.13710414604429e-008,0,1,-8.13710343550156e-008,0,0.999999940395355,-8.13710485658703e-008,0,0.269639790058136,0.852267146110535,0.448257714509964,0.269639849662781,0.852267265319824,0.448257744312286,0.269639790058136,0.852267205715179,0.448257684707642,0.373286187648773,-0.567513346672058,-0.733884274959564,0.373286128044128,-0.567513346672058,-0.733884215354919,0.373286128044128,-0.567513346672058,-0.733884215354919,-0.0113661838695407,-0.999935388565063,0.000214280909858644,-0.0113661848008633,-0.999935448169708,0.000214280938962474,-0.0113661838695407,-0.999935388565063,0.000214280909858644,-0.0113661857321858,-0.999935388565063,0.000214280924410559,-0.0113661829382181,-0.999935388565063,0.000214280909858644,-0.0113661829382181,-0.999935328960419,0.000214280895306729,-0.999351859092712,-0.000957012351136655,0.0359841994941235,-0.999351918697357,-0.000957012467551976,0.0359842106699944,-0.999351918697357,-0.000957012351136655,0.0359842032194138,-0.999351799488068,-0.000957012351136655,0.0359841994941235,-0.999351978302002,-0.000957012467551976,0.0359842069447041,-0.999351918697357,-0.000957012351136655,0.0359842032194138,-0.737169504165649,-0.154795840382576,-0.657738029956818,-0.737169444561005,-0.154795840382576,-0.657738029956818,-0.737169504165649,-0.154795855283737,-0.657738089561462,0.0113588673993945,0.999935507774353,-0.000208738536457531,0.0113588673993945,0.999935507774353,-0.000208738536457531,0.0113588664680719,0.999935448169708,-0.000208738507353701,0.0113588673993945,0.999935507774353,-0.000208738536457531,0.0113588683307171,0.999935507774353,-0.000208738536457531,0.0113588673993945,0.999935448169708,-0.000208738507353701,-0.667498707771301,0.465205609798431,0.581402719020844,-0.667498707771301,0.465205639600754,0.581402719020844,
- -0.667498707771301,0.465205609798431,0.581402719020844,-0.00296944985166192,-0.99996155500412,-0.00825367588549852,-0.00296944961883128,-0.999961495399475,-0.00825367588549852,-0.00296944985166192,-0.99996155500412,-0.00825367588549852,-0.00296944961883128,-0.999961495399475,-0.00825367495417595,-0.00296944961883128,-0.999961495399475,-0.00825367495417595,-0.00296944938600063,-0.99996155500412,-0.00825367588549852,-1,4.6631640771011e-008,0,-1,4.6631640771011e-008,0,-1,4.6631640771011e-008,0,-0.999999940395355,4.66316372182973e-008,0,-1,4.6631640771011e-008,0,0.999764382839203,-0.0217066574841738,6.86205239617266e-005,0.999764323234558,-0.0217066574841738,6.86205239617266e-005,0.999764442443848,-0.0217066574841738,6.86205312376842e-005,0.999764323234558,-0.0217066574841738,6.8620516685769e-005,0.999764323234558,-0.0217066574841738,6.86205239617266e-005,0.999764442443848,-0.0217066593468189,6.86205239617266e-005,-0.0125999487936497,0.999813377857208,-0.0146410940214992,-0.0125999497249722,0.999813437461853,-0.0146410940214992,-0.0125999487936497,0.999813377857208,-0.0146410930901766,-0.0125999497249722,0.999813437461853,-0.0146410940214992,-0.0125999487936497,0.999813377857208,-0.0146410930901766,-0.0017699811141938,-0.00538898957893252,-0.999983906745911,-0.0017699811141938,-0.00538898911327124,-0.999983906745911,-0.00176998123060912,-0.00538898957893252,-0.999983966350555,-0.00176998099777848,-0.00538898911327124,-0.999983906745911,-0.00176998134702444,-0.00538898957893252,-0.999983966350555,1.8464881577529e-005,-0.00523209851235151,0.999986231327057,1.84648852155078e-005,-0.00523209944367409,0.999986350536346,1.84648852155078e-005,-0.00523209944367409,0.999986350536346,1.8464881577529e-005,-0.00523209851235151,0.999986290931702,1.84648833965184e-005,-0.00523209851235151,0.999986290931702,1.84648833965184e-005,-0.0052320989780128,0.999986290931702,0.538097500801086,0.330112934112549,0.775549113750458,0.538097500801086,0.330112934112549,0.775549173355103,0.538097560405731,0.330112934112549,0.775549113750458,-0.720433533191681,-0.47554749250412,0.504806995391846,
- -0.720433592796326,-0.475547462701797,0.504806995391846,-0.720433592796326,-0.475547462701797,0.504806995391846,0.615108072757721,-0.626989781856537,-0.478043854236603,0.615108013153076,-0.626989722251892,-0.47804382443428,0.615108072757721,-0.626989722251892,-0.478043854236603,-0.000593180942814797,-0.051564197987318,0.998669505119324,-0.000593180942814797,-0.051564197987318,0.998669445514679,-0.000593180884607136,-0.0515641942620277,0.998669505119324,-0.000593180942814797,-0.0515641942620277,0.998669505119324,-0.000593181001022458,-0.0515642017126083,0.998669564723969,-0.000593180942814797,-0.0515641942620277,0.998669505119324,0.0128902969881892,4.33881450589979e-006,-0.999916911125183,0.0128902960568666,4.33881496064714e-006,-0.999916970729828,0.0128902960568666,4.33881450589979e-006,-0.999916970729828,0.0128902951255441,4.33881450589979e-006,-0.999916911125183,0.0128902969881892,4.33881496064714e-006,-0.999916911125183,0.0128902969881892,4.33881450589979e-006,-0.999916911125183,1,1.1538315902726e-007,0,1,1.1538315902726e-007,0,1,1.15383144816406e-007,0,1,1.15383151921833e-007,0,1,1.15383151921833e-007,0,1,1.15383151921833e-007,0,0.271067827939987,0.856701195240021,0.43884551525116,0.271067798137665,0.856701195240021,0.438845455646515,0.271067798137665,0.856701135635376,0.438845485448837,0.378574162721634,-0.575539410114288,-0.724869728088379,0.378574192523956,-0.575539469718933,-0.724869668483734,0.378574162721634,-0.575539410114288,-0.724869668483734,-0.0113673871383071,-0.999935388565063,0.00020710684475489,-0.0113673871383071,-0.999935388565063,0.00020710687385872,-0.0113673880696297,-0.999935388565063,0.00020710687385872,-0.0113673871383071,-0.999935388565063,0.00020710687385872,-0.0113673862069845,-0.999935328960419,0.000207106830202974,-0.0113673871383071,-0.999935388565063,0.00020710684475489,-0.999386847019196,-0.000948804372455925,0.0349996834993362,-0.999386787414551,-0.000948804256040603,0.0349996834993362,-0.999386787414551,-0.000948804256040603,0.0349996834993362,-0.999386847019196,-0.000948804314248264,0.0349996834993362,
- -0.999386847019196,-0.000948804430663586,0.0349996834993362,-0.999386847019196,-0.000948804314248264,0.0349996834993362,-0.745403826236725,-0.156519308686256,-0.647977471351624,-0.745403826236725,-0.156519308686256,-0.647977471351624,-0.745403826236725,-0.156519323587418,-0.647977471351624,0.0113578122109175,0.999935567378998,-0.000203769843210466,0.0113578112795949,0.999935448169708,-0.000203769843210466,0.0113578122109175,0.999935507774353,-0.000203769857762381,0.0113578112795949,0.999935448169708,-0.000203769843210466,0.0113578122109175,0.999935388565063,-0.000203769843210466,0.0113578112795949,0.999935448169708,-0.000203769843210466,-0.673390507698059,0.469254821538925,0.571266233921051,-0.673390507698059,0.469254851341248,0.571266174316406,-0.673390567302704,0.469254851341248,0.571266293525696,0.00436993595212698,0.999977231025696,-0.0051341918297112,0.00436993595212698,0.999977290630341,-0.0051341918297112,0.00436993641778827,0.999977350234985,-0.00513419229537249,0.00436993595212698,0.999977290630341,-0.00513419229537249,0.00436993548646569,0.999977231025696,-0.0051341918297112,-0.0620390251278877,-0.00581037951633334,-0.998056769371033,-0.0268751662224531,-0.00844035390764475,-0.999603152275085,-0.0325234718620777,-0.0080187851563096,-0.99943882226944,-0.0620390363037586,-0.00581037998199463,-0.998056828975677,-0.0125881740823388,-0.99864661693573,0.0504626929759979,-0.0125881740823388,-0.998646557331085,0.0504626892507076,-0.0125881722196937,-0.998646557331085,0.0504626855254173,-0.0125881731510162,-0.998646557331085,0.0504626855254173,-0.0125881750136614,-0.99864661693573,0.0504626892507076,-0.012588175944984,-0.99864661693573,0.0504626967012882,-0.0125881740823388,-0.99864661693573,0.0504626892507076,1,-1.10467283320759e-007,0,1,-1.10467276215331e-007,0,1,-1.10467290426186e-007,0,1,-1.10467276215331e-007,0,1,-1.10467269109904e-007,0,-0.999778866767883,0.0110940784215927,0.0178610142320395,-0.999778985977173,0.0110940802842379,0.0178610160946846,-0.999778985977173,0.0110940802842379,0.0178610160946846,-0.999778866767883,0.0110940784215927,0.0178610142320395,
- -0.999778985977173,0.0110940802842379,0.0178610160946846,0.532653570175171,-0.550042569637299,-0.643220961093903,0.532653629779816,-0.550042629241943,-0.643221020698547,0.532653629779816,-0.550042629241943,-0.643220961093903,-0.0325234718620777,-0.0080187851563096,-0.99943882226944,-0.0268751662224531,-0.00844035390764475,-0.999603152275085,-4.58326212537941e-005,-0.0104382280260324,-0.999945461750031,-4.58326212537941e-005,-0.0104382298886776,-0.999945521354675,-4.58326176158153e-005,-0.010438228957355,-0.999945521354675,-0.00124617991968989,0.0272511448711157,0.999627888202667,-0.00124617991968989,0.0272511448711157,0.999627888202667,-0.00124617991968989,0.0272511392831802,0.999627828598022,-0.00124617991968989,0.0272511430084705,0.999627828598022,-0.00124617991968989,0.0272511411458254,0.999627828598022,-0.902109324932098,-0.0928050652146339,0.421409577131271,-0.902109324932098,-0.0928050726652145,0.421409606933594,-0.902109324932098,-0.0928050652146339,0.421409606933594,0.00297035276889801,-0.999963223934174,0.00803644303232431,0.00297035300172865,-0.999963343143463,0.00803644396364689,0.00297035253606737,-0.999963223934174,0.00803644303232431,0.0029703532345593,-0.999963283538818,0.00803644396364689,0.0029703532345593,-0.999963343143463,0.00803644489496946,0.00297035346738994,-0.999963402748108,0.00803644489496946,1,1.47825147678304e-007,0,1,1.47825147678304e-007,0,0.999999940395355,1.4782513346745e-007,0,1,1.47825147678304e-007,0,1,1.47825147678304e-007,0,-0.999764144420624,-0.0217182077467442,-5.70737647649366e-005,-0.999764144420624,-0.0217182040214539,-5.7073757488979e-005,-0.999764144420624,-0.0217182040214539,-5.7073757488979e-005,-0.999764144420624,-0.0217182021588087,-5.7073757488979e-005,-0.999764144420624,-0.0217182021588087,-5.70737611269578e-005,-0.999764144420624,-0.0217182040214539,-5.70737647649366e-005,0.0126002570614219,0.999818921089172,0.0142594315111637,0.0126002561300993,0.999818921089172,0.0142594296485186,0.0126002551987767,0.999818980693817,0.014259428717196,0.0126002561300993,0.999818921089172,0.0142594296485186,
- 0.0126002561300993,0.999818980693817,0.0142594315111637,0.00181676691863686,-0.0055187433026731,0.999983131885529,0.00181676691863686,-0.0055187433026731,0.999983131885529,0.00181676680222154,-0.0055187433026731,0.999983072280884,0.00181676703505218,-0.0055187433026731,0.999983131885529,0.00181676691863686,-0.00551874283701181,0.999983131885529,-2.9841752620996e-005,-0.00539092812687159,-0.99998539686203,-2.9841752620996e-005,-0.00539092859253287,-0.99998551607132,-2.98417544399854e-005,-0.00539092859253287,-0.99998551607132,-2.98417544399854e-005,-0.0053909276612103,-0.99998539686203,-2.98417544399854e-005,-0.00539092812687159,-0.999985456466675,-2.98417562589748e-005,-0.00539092812687159,-0.99998551607132,-0.546487927436829,0.335352540016174,-0.767391383647919,-0.546487927436829,0.335352569818497,-0.767391443252563,-0.546487927436829,0.335352540016174,-0.767391383647919,0.725241899490356,-0.478683441877365,-0.494859904050827,0.725241959095001,-0.478683441877365,-0.494859933853149,0.725241959095001,-0.478683441877365,-0.494859904050827,-0.618855953216553,-0.63053971529007,0.46844094991684,-0.618856012821198,-0.63053971529007,0.468440979719162,-0.618856012821198,-0.630539774894714,0.468440979719162,0.000594338169321418,-0.0515569970011711,-0.998669922351837,0.000594338111113757,-0.0515569895505905,-0.998669862747192,0.000594338111113757,-0.0515569895505905,-0.998669803142548,0.000594338111113757,-0.0515569895505905,-0.998669862747192,0.000594338111113757,-0.0515569895505905,-0.998669862747192,0.000594338169321418,-0.0515569895505905,-0.998669862747192,-0.0128819206729531,-1.45627461733966e-006,0.999917030334473,-0.0128819225355983,-1.45627461733966e-006,0.999917030334473,-0.0128819216042757,-1.4562747310265e-006,0.999917030334473,-0.0128819225355983,-1.4562747310265e-006,0.999916970729828,-0.0128819197416306,-1.45627450365282e-006,0.999916970729828,-0.0128819216042757,-1.45627484471333e-006,0.999917030334473,-1,2.0613613926912e-008,0,-1,2.06136157032688e-008,0,-0.999999940395355,2.0613613926912e-008,0,-1,2.0613613926912e-008,0,
- -0.999999940395355,2.06136121505551e-008,0,-1,2.06136121505551e-008,0,-0.271094232797623,0.856701910495758,-0.438827663660049,-0.2710942029953,0.856701910495758,-0.438827633857727,-0.2710942029953,0.856701970100403,-0.438827633857727,-0.378538072109222,-0.575568556785584,0.724865317344666,-0.378538072109222,-0.575568556785584,0.724865317344666,-0.378538072109222,-0.575568556785584,0.724865317344666,0.0113666178658605,-0.999935388565063,-0.000207699427846819,0.0113666178658605,-0.999935448169708,-0.000207699427846819,0.011366618797183,-0.999935388565063,-0.000207699427846819,0.0113666178658605,-0.999935328960419,-0.000207699442398734,0.0113666169345379,-0.999935388565063,-0.000207699398742989,0.0113666178658605,-0.999935328960419,-0.000207699413294904,0.999387264251709,-0.000906499742995948,-0.0349877364933491,0.999387264251709,-0.000906499684788287,-0.0349877402186394,0.999387383460999,-0.000906499684788287,-0.0349877364933491,0.999387323856354,-0.000906499742995948,-0.0349877439439297,0.999387323856354,-0.000906499742995948,-0.0349877402186394,0.999387383460999,-0.000906499742995948,-0.0349877402186394,0.745410859584808,-0.156491637229919,0.647975981235504,0.745410859584808,-0.156491637229919,0.647976040840149,0.745410859584808,-0.156491637229919,0.647976040840149,-0.0113583356142044,0.999935448169708,0.00020439967920538,-0.0113583374768496,0.999935507774353,0.000204399693757296,-0.011358336545527,0.999935448169708,0.000204399693757296,-0.0113583384081721,0.999935507774353,0.000204399708309211,-0.0113583393394947,0.999935567378998,0.000204399737413041,-0.0113583374768496,0.999935507774353,0.000204399708309211,0.67342346906662,0.469351917505264,-0.571147561073303,0.67342346906662,0.469351917505264,-0.571147620677948,0.67342346906662,0.469351917505264,-0.571147561073303,-0.0029701276216656,-0.999963283538818,-0.00804075878113508,-0.00297012738883495,-0.999963283538818,-0.00804075878113508,-0.0029701276216656,-0.999963283538818,-0.00804075878113508,-0.00297012738883495,-0.999963223934174,-0.00804075784981251,-0.00297012738883495,-0.999963223934174,-0.00804075784981251,
- -0.00297012738883495,-0.999963223934174,-0.00804075784981251,-1,-7.79841702325257e-009,0,-1,-7.79841613507415e-009,0,-1,-7.79841791143099e-009,0,-0.999999940395355,-7.79841702325257e-009,0,-1,-7.79841702325257e-009,0,0.99976521730423,-0.021668640896678,8.79668441484682e-005,0.999765157699585,-0.0216686427593231,8.79668514244258e-005,0.999765157699585,-0.0216686427593231,8.79668587003835e-005,0.99976521730423,-0.0216686427593231,8.79668514244258e-005,0.999765157699585,-0.0216686427593231,8.79668514244258e-005,0.99976521730423,-0.021668640896678,8.79668441484682e-005,-0.0126002989709377,0.999818921089172,-0.0142611861228943,-0.0126002999022603,0.999818921089172,-0.0142611851915717,-0.0126002989709377,0.999818921089172,-0.0142611851915717,-0.0126002980396152,0.999818801879883,-0.0142611833289266,-0.0126002989709377,0.999818861484528,-0.0142611851915717,-0.00180397287476808,-0.00552690867334604,-0.999983012676239,-0.0018039729911834,-0.00552690913900733,-0.999983131885529,-0.00180397287476808,-0.00552690867334604,-0.999983072280884,-0.00180397310759872,-0.0055269100703299,-0.999983072280884,-0.00180397310759872,-0.00552690960466862,-0.999983131885529,2.92406748485519e-005,-0.00537086604163051,0.999985575675964,2.92406748485519e-005,-0.00537086650729179,0.999985575675964,2.92406712105731e-005,-0.00537086604163051,0.999985575675964,2.92406712105731e-005,-0.00537086604163051,0.99998551607132,2.92406748485519e-005,-0.00537086604163051,0.999985575675964,2.92406730295625e-005,-0.00537086604163051,0.99998551607132,0.546604454517365,0.33535248041153,0.767308533191681,0.546604454517365,0.335352450609207,0.767308473587036,0.546604454517365,0.335352450609207,0.767308473587036,-0.725124478340149,-0.478781700134277,0.494936972856522,-0.725124478340149,-0.478781670331955,0.494936943054199,-0.725124478340149,-0.478781700134277,0.494936913251877,0.61866819858551,-0.630766034126282,-0.468384385108948,0.61866819858551,-0.630766034126282,-0.468384355306625,0.61866819858551,-0.630766034126282,-0.468384325504303,0.000589002156630158,0.0484272576868534,0.998826563358307,
- 0.000589002156630158,0.0484272539615631,0.998826563358307,0.000589002098422498,0.0484272502362728,0.998826503753662,0.000589002098422498,0.0484272576868534,0.998826563358307,0.000589002156630158,0.0484272539615631,0.998826563358307,0.000589002156630158,0.0484272576868534,0.998826622962952,-0.0128852427005768,-2.93146194962901e-006,-0.999916970729828,-0.0128852417692542,-2.93146217700269e-006,-0.999916970729828,-0.0128852408379316,-2.93146240437636e-006,-0.999916911125183,-0.0128852417692542,-2.93146217700269e-006,-0.999916970729828,-0.0128852427005768,-2.93146263175004e-006,-0.999916970729828,-0.0128852427005768,-2.93146285912371e-006,-0.999916970729828,-1,-2.7325350515639e-007,0,-1,-2.7325350515639e-007,0,-1,-2.73253533578099e-007,0,-1,-2.7325350515639e-007,0,-1,-2.7325350515639e-007,0,-1,-2.7325350515639e-007,0,-0.283630102872849,-0.841836452484131,0.459200829267502,-0.283630073070526,-0.841836392879486,0.459200799465179,-0.283630102872849,-0.841836452484131,0.459200829267502,-0.386153608560562,0.551438629627228,-0.739459812641144,-0.38615357875824,0.551438629627228,-0.739459872245789,-0.386153608560562,0.551438570022583,-0.739459812641144,0.012103334069252,0.999926745891571,0.000221554990275763,0.0121033350005746,0.999926745891571,0.000221554990275763,0.0121033350005746,0.999926745891571,0.000221555004827678,0.0121033359318972,0.999926805496216,0.000221555019379593,0.0121033350005746,0.999926745891571,0.000221555004827678,0.012103334069252,0.999926686286926,0.000221554990275763,0.99938839673996,0.000864062341861427,0.0349581241607666,0.999388456344604,0.000864062400069088,0.0349581241607666,0.999388337135315,0.000864062341861427,0.0349581241607666,0.99938839673996,0.000864062400069088,0.0349581204354763,0.99938839673996,0.000864062400069088,0.0349581241607666,0.999388456344604,0.00086406251648441,0.0349581278860569,0.746490597724915,0.147210657596588,-0.64890730381012,0.746490657329559,0.147210672497749,-0.648907363414764,0.746490657329559,0.147210657596588,-0.64890730381012,-0.0120942993089557,-0.999926805496216,-0.000217299078940414,
- -0.0120942983776331,-0.999926745891571,-0.000217299035284668,-0.0120943011716008,-0.999926805496216,-0.000217299078940414,-0.0120942993089557,-0.999926805496216,-0.000217299049836583,-0.0120943002402782,-0.999926865100861,-0.000217299093492329,-0.0120943002402782,-0.999926805496216,-0.000217299064388499,0.682258665561676,-0.446714520454407,0.578765153884888,0.682258725166321,-0.446714580059052,0.578765273094177,0.682258725166321,-0.446714580059052,0.578765213489532,0.000604529457632452,-0.051566731184721,-0.998669445514679,0.000604529515840113,-0.0515667349100113,-0.998669385910034,0.000604529399424791,-0.0515667274594307,-0.998669385910034,0.000604529399424791,-0.051566731184721,-0.998669326305389,0.000604529399424791,-0.0515667274594307,-0.998669326305389,0.000604529457632452,-0.0515667349100113,-0.998669385910034,-0.0132685229182243,-9.14463998924475e-006,0.999912023544312,-0.0132685229182243,-9.14463998924475e-006,0.999911963939667,-0.0132685219869018,-9.14463907975005e-006,0.999911844730377,-0.0132685247808695,-9.14464089873945e-006,0.999911963939667,-0.0132685229182243,-9.14463998924475e-006,0.999911963939667,-0.0132685219869018,-9.14463998924475e-006,0.999911904335022,-0.999999940395355,1.15382839283029e-007,0,-1,1.15382832177602e-007,0,-1,1.15382853493884e-007,0,-1,1.15382832177602e-007,0,-1,1.15382832177602e-007,0,-1,1.15382846388457e-007,0,-0.278492480516434,0.85482794046402,-0.437848299741745,-0.278492450714111,0.854827880859375,-0.437848299741745,-0.278492480516434,0.854828000068665,-0.437848389148712,-0.388100653886795,-0.573101878166199,0.721756279468536,-0.388100653886795,-0.573101878166199,0.721756339073181,-0.388100653886795,-0.573101818561554,0.721756279468536,0.0117033096030355,-0.999931573867798,-0.000209122139494866,0.0117033086717129,-0.999931514263153,-0.000209122110391036,0.0117033096030355,-0.999931573867798,-0.000209122139494866,0.0117033077403903,-0.999931454658508,-0.000209122081287205,0.0117033077403903,-0.999931454658508,-0.00020912209583912,0.0117033077403903,-0.999931454658508,-0.00020912209583912,
- 0.999420702457428,-0.000954651623032987,-0.0340190716087818,0.999420762062073,-0.00095465179765597,-0.0340190753340721,0.999420762062073,-0.000954651739448309,-0.0340190753340721,0.999420762062073,-0.000954651681240648,-0.0340190716087818,0.999420762062073,-0.00095465179765597,-0.0340190753340721,0.999420702457428,-0.000954651681240648,-0.0340190753340721,0.754957318305969,-0.15400268137455,0.637434363365173,0.754957318305969,-0.154002666473389,0.637434422969818,0.754957377910614,-0.15400268137455,0.637434422969818,-0.0116948317736387,0.999931573867798,0.00020299237803556,-0.0116948308423162,0.999931514263153,0.00020299234893173,-0.0116948327049613,0.999931573867798,0.00020299237803556,-0.0116948327049613,0.999931633472443,0.00020299237803556,-0.0116948336362839,0.999931693077087,0.00020299237803556,-0.0116948327049613,0.999931573867798,0.00020299237803556,0.684072911739349,0.462900817394257,-0.563708484172821,0.684072852134705,0.462900787591934,-0.563708424568176,0.684072911739349,0.462900787591934,-0.563708424568176,0.0203774683177471,0.999779164791107,0.00513345235958695,0.0203774701803923,0.999779164791107,0.00513345282524824,0.0203774701803923,0.999779164791107,0.00513345282524824,0.0203774683177471,0.999779164791107,0.00513345282524824,0.0203774683177471,0.999779164791107,0.00513345282524824,0.0672824829816818,-0.00747794937342405,0.997705936431885,0.0292564500123262,-0.00913807842880487,0.999530136585236,0.034889493137598,-0.00889310706406832,0.999351501464844,0.0672824904322624,-0.00747794890776277,0.997705936431885,-0.0114110019057989,-0.998660922050476,-0.0504608117043972,-0.0114110019057989,-0.998660862445831,-0.0504608117043972,-0.0114110028371215,-0.998660922050476,-0.0504608117043972,-0.0114110019057989,-0.998660802841187,-0.0504608154296875,-0.0114110019057989,-0.998660802841187,-0.0504608079791069,-0.0114110019057989,-0.998660862445831,-0.0504608117043972,-0.0114110019057989,-0.998660802841187,-0.0504608154296875,-0.999686002731323,0.0250607170164585,-1.09580719254154e-006,-0.999685943126678,0.0250607188791037,-1.09580719254154e-006,
- -0.999685943126678,0.0250607170164585,-1.09580719254154e-006,-0.999685943126678,0.0250607170164585,-1.09580719254154e-006,-0.999685943126678,0.0250607170164585,-1.0958070788547e-006,0.999753832817078,-0.0149555988609791,-0.0163848958909512,0.999753892421722,-0.0149556007236242,-0.0163848958909512,0.999753892421722,-0.0149556016549468,-0.0163848958909512,0.999753952026367,-0.0149556016549468,-0.0163848996162415,0.999753892421722,-0.0149556007236242,-0.0163848958909512,-0.578128457069397,-0.521935999393463,0.627176463603973,-0.578128457069397,-0.521935999393463,0.627176523208618,-0.578128397464752,-0.521935999393463,0.627176463603973,0.034889493137598,-0.00889310706406832,0.999351501464844,0.0292564500123262,-0.00913807842880487,0.999530136585236,-0.000226628122618422,-0.010414850898087,0.999945759773254,-0.000226628122618422,-0.010414850898087,0.999945759773254,-0.000226628108066507,-0.010414850898087,0.999945759773254,0.00204517156817019,0.0271984525024891,-0.999628007411957,0.00204517156817019,0.0271984562277794,-0.999627947807312,0.00204517156817019,0.0271984525024891,-0.999627947807312,0.00204517133533955,0.0271984487771988,-0.999627828598022,0.00204517156817019,0.0271984543651342,-0.999628007411957,0.912748754024506,-0.109667561948299,-0.393525958061218,0.91274881362915,-0.109667584300041,-0.393525987863541,0.912748694419861,-0.10966756939888,-0.393525958061218,-0.000592899799812585,-0.0515635162591934,0.998669564723969,-0.000592899799812585,-0.0515635199844837,0.998669564723969,-0.000592899741604924,-0.0515635162591934,0.998669505119324,-0.000592899916227907,-0.051563523709774,0.998669624328613,-0.000592899799812585,-0.0515635125339031,0.998669505119324,-0.000592899799812585,-0.0515635199844837,0.998669505119324,0.0128890126943588,2.38248367168126e-006,-0.999916911125183,0.012889014557004,2.38248389905493e-006,-0.999916911125183,0.0128890136256814,2.38248389905493e-006,-0.999916851520538,0.0128890154883266,2.38248412642861e-006,-0.999916970729828,0.0128890136256814,2.38248367168126e-006,-0.999916911125183,0.012889014557004,2.38248389905493e-006,-0.999916911125183,
- 0.999999940395355,-5.40511848612368e-007,0,1,-5.40511848612368e-007,0,0.999999940395355,-5.40511848612368e-007,0,1,-5.40511848612368e-007,0,1,-5.40511791768949e-007,0,1,-5.40511905455787e-007,0,0.271105349063873,0.856687128543854,0.438849627971649,0.271105349063873,0.856687188148499,0.438849627971649,0.271105349063873,0.856687128543854,0.438849598169327,0.378667324781418,-0.575526416301727,-0.724831223487854,0.378667324781418,-0.575526416301727,-0.724831283092499,0.37866735458374,-0.575526416301727,-0.724831283092499,-0.0113672455772758,-0.999935328960419,0.000207137709367089,-0.0113672446459532,-0.999935328960419,0.000207137694815174,-0.0113672455772758,-0.999935448169708,0.000207137723919004,-0.0113672465085983,-0.999935388565063,0.000207137723919004,-0.0113672437146306,-0.999935328960419,0.000207137694815174,-0.0113672446459532,-0.999935388565063,0.000207137709367089,-0.999386548995972,-0.000940175086725503,0.035008292645216,-0.999386608600616,-0.000940175144933164,0.035008292645216,-0.999386548995972,-0.000940175086725503,0.0350082889199257,-0.999386489391327,-0.000940175144933164,0.0350082889199257,-0.999386668205261,-0.000940175203140825,0.0350082963705063,-0.999386489391327,-0.000940175144933164,0.035008292645216,-0.745309114456177,-0.156543239951134,-0.648080766201019,-0.745308995246887,-0.156543210148811,-0.648080706596375,-0.745309054851532,-0.156543225049973,-0.648080706596375,0.0113587258383632,0.999935388565063,-0.000202233568415977,0.0113587267696857,0.999935448169708,-0.000202233568415977,0.0113587277010083,0.999935507774353,-0.000202233582967892,0.0113587249070406,0.999935448169708,-0.000202233553864062,0.0113587249070406,0.999935388565063,-0.000202233553864062,0.0113587249070406,0.999935448169708,-0.000202233568415977,-0.673600018024445,0.469122231006622,0.571128129959106,-0.673600077629089,0.469122260808945,0.571128189563751,-0.673600077629089,0.469122260808945,0.571128129959106,-0.000588500872254372,0.0515705309808254,-0.998669147491455,-0.000588500872254372,0.0515705309808254,-0.998669147491455,
- -0.000588500814046711,0.0515705272555351,-0.9986692070961,-0.000588500814046711,0.0515705272555351,-0.9986692070961,-0.00058850075583905,0.0515705272555351,-0.998669147491455,-0.000588500872254372,0.0515705309808254,-0.9986692070961,0.01288868393749,8.44003898237133e-006,0.999917030334473,0.0128886830061674,8.44003898237133e-006,0.999916970729828,0.0128886830061674,8.44003898237133e-006,0.999916911125183,0.0128886830061674,8.44003807287663e-006,0.999916970729828,0.0128886830061674,8.44003898237133e-006,0.999916911125183,0.0128886848688126,8.44003898237133e-006,0.999916970729828,1,6.22454834342534e-008,0,1,6.22454976451081e-008,0,1,6.22454834342534e-008,0,1,6.22454834342534e-008,0,1,6.22454905396808e-008,0,0.999999940395355,6.22454834342534e-008,0,0.271089047193527,-0.856712222099304,-0.438810646533966,0.27108907699585,-0.856712341308594,-0.438810706138611,0.27108907699585,-0.856712281703949,-0.438810676336288,0.378590732812881,0.575548350811005,0.724853813648224,0.378590732812881,0.575548350811005,0.724853873252869,0.378590732812881,0.575548350811005,0.724853813648224,-0.0113682392984629,0.999935388565063,-0.000208009281777777,-0.0113682383671403,0.999935328960419,-0.000208009267225862,-0.0113682402297854,0.999935388565063,-0.000208009267225862,-0.0113682402297854,0.999935328960419,-0.000208009281777777,-0.0113682383671403,0.999935328960419,-0.000208009267225862,-0.0113682402297854,0.999935328960419,-0.000208009267225862,-0.99938702583313,0.000942768936511129,-0.0349977612495422,-0.99938690662384,0.000942768820095807,-0.0349977575242519,-0.99938690662384,0.000942768820095807,-0.0349977575242519,-0.99938690662384,0.000942768820095807,-0.0349977575242519,-0.99938690662384,0.000942768761888146,-0.0349977575242519,-0.99938702583313,0.000942768936511129,-0.0349977612495422,-0.745525777339935,0.156508386135101,0.647839844226837,-0.74552583694458,0.156508401036263,0.647839725017548,-0.745525777339935,0.15650837123394,0.647839725017548,0.0113591924309731,-0.999935448169708,0.000202406066819094,0.0113591924309731,-0.999935507774353,0.000202406095922925,
- 0.0113591924309731,-0.999935448169708,0.000202406095922925,0.0113591924309731,-0.999935388565063,0.000202406081371009,0.0113591914996505,-0.999935448169708,0.000202406081371009,0.0113591924309731,-0.999935388565063,0.000202406081371009,-0.67344605922699,-0.469339698553085,-0.571130931377411,-0.67344605922699,-0.469339698553085,-0.571130990982056,-0.67344605922699,-0.469339698553085,-0.571130931377411,0.00261361314915121,-0.99996417760849,0.00804041232913733,0.00261361384764314,-0.99996429681778,0.0080404132604599,0.00261361338198185,-0.99996429681778,0.00804041232913733,0.00261361338198185,-0.999964237213135,0.0080404132604599,0.00261361338198185,-0.99996417760849,0.00804041232913733,0.00261361338198185,-0.999964237213135,0.00804041232913733,1,1.24064357009956e-007,0,1,1.24064357009956e-007,0,1,1.24064357009956e-007,0,1,1.24064357009956e-007,0,1,1.24064357009956e-007,0,-0.999696671962738,-0.0246308371424675,-0.000103570295323152,-0.999696731567383,-0.0246308390051126,-0.00010357030259911,-0.999696552753448,-0.0246308334171772,-0.000103570295323152,-0.999696612358093,-0.0246308352798224,-0.000103570288047194,-0.999696671962738,-0.0246308352798224,-0.00010357030259911,-0.999696612358093,-0.0246308315545321,-0.000103570288047194,0.01108686812222,0.99983686208725,0.0142606142908335,0.0110868671908975,0.999836802482605,0.0142606124281883,0.0110868671908975,0.999836921691895,0.014260615222156,0.0110868671908975,0.999836802482605,0.0142606142908335,0.0110868671908975,0.99983686208725,0.0142606142908335,0.00159736361820251,-0.00551889929920435,0.999983429908752,0.00159736373461783,-0.00551890023052692,0.999983489513397,0.00159736373461783,-0.00551889976486564,0.999983489513397,0.00159736373461783,-0.00551889976486564,0.999983489513397,0.00159736373461783,-0.00551889976486564,0.999983489513397,-2.69075644609984e-005,-0.00539666833356023,-0.99998539686203,-2.69075644609984e-005,-0.00539666833356023,-0.99998539686203,-2.69075680989772e-005,-0.0053966692648828,-0.999985456466675,-2.69075662799878e-005,-0.00539666879922152,-0.999985456466675,
- -2.6907571736956e-005,-0.00539667019620538,-0.99998551607132,-2.69075680989772e-005,-0.0053966692648828,-0.999985456466675,-0.497949719429016,0.347162842750549,-0.794684827327728,-0.497949749231339,0.347162872552872,-0.794684827327728,-0.497949749231339,0.347162872552872,-0.794684946537018,0.679825663566589,-0.509876787662506,-0.527126848697662,0.679825663566589,-0.509876787662506,-0.527126789093018,0.679825723171234,-0.509876847267151,-0.527126908302307,-0.56956684589386,-0.659802794456482,0.490157037973404,-0.56956672668457,-0.659802794456482,0.490157037973404,-0.569566786289215,-0.659802734851837,0.490157067775726,-0.000562398170586675,-0.0141604449599981,0.999899566173553,-0.000562398228794336,-0.0141604449599981,0.999899566173553,-0.000562398228794336,-0.0141604458913207,0.999899625778198,-0.000562398170586675,-0.0141604449599981,0.999899566173553,-0.000562398170586675,-0.014160443097353,0.999899566173553,-0.000562398228794336,-0.014160443097353,0.999899566173553,0.0120125086978078,-0.0374272279441357,-0.999227166175842,0.0120125086978078,-0.037427231669426,-0.999227225780487,0.0120125086978078,-0.037427231669426,-0.999227166175842,0.0120125086978078,-0.037427231669426,-0.999227106571198,0.0120125077664852,-0.037427231669426,-0.999227106571198,0.0120125096291304,-0.037427231669426,-0.999227166175842,1,-7.02596594237548e-007,0,1,-7.02596594237548e-007,0,1,-7.02596594237548e-007,0,1,-7.02596651080967e-007,0,1,-7.02596537394129e-007,0,1,-7.02596594237548e-007,0,0.253905147314072,0.876937031745911,0.408060878515244,0.253905147314072,0.876936972141266,0.408060848712921,0.253905177116394,0.876937031745911,0.408060878515244,0.356309294700623,-0.608152389526367,-0.709361970424652,0.356309324502945,-0.608152389526367,-0.709361910820007,0.356309294700623,-0.608152389526367,-0.709361910820007,-0.0105937784537673,-0.99921590089798,0.0381474904716015,-0.0105937784537673,-0.999215960502625,0.0381474904716015,-0.0105937784537673,-0.999216020107269,0.0381474941968918,-0.0105937793850899,-0.999215960502625,0.0381474941968918,
- -0.0105937784537673,-0.999216020107269,0.0381474941968918,-0.0105937784537673,-0.999215960502625,0.0381474904716015,-0.99929541349411,0.000409631757065654,0.0375298149883747,-0.99929541349411,0.000409631786169484,0.0375298149883747,-0.999295473098755,0.000409631757065654,0.0375298149883747,-0.99929541349411,0.000409631757065654,0.0375298112630844,-0.999295473098755,0.000409631757065654,0.0375298149883747,-0.999295353889465,0.000409631727961823,0.0375298112630844,-0.721592247486115,-0.18763042986393,-0.666407883167267,-0.72159218788147,-0.18763042986393,-0.666407942771912,-0.721592247486115,-0.18763042986393,-0.666407942771912,0.0105859348550439,0.999216198921204,-0.0381430387496948,0.0105859357863665,0.999216258525848,-0.0381430387496948,0.0105859348550439,0.999216198921204,-0.0381430312991142,0.010585936717689,0.999216258525848,-0.0381430387496948,0.0105859339237213,0.999216198921204,-0.0381430350244045,0.0105859348550439,0.999216139316559,-0.0381430350244045,-0.64720493555069,0.505745232105255,0.570392429828644,-0.64720493555069,0.505745232105255,0.570392429828644,-0.64720493555069,0.505745232105255,0.570392429828644,0.00484832469373941,0.999975919723511,-0.00497322576120496,0.0048483251594007,0.999975919723511,-0.00497322529554367,0.00484832469373941,0.999975919723511,-0.00497322576120496,0.00484832469373941,0.999975860118866,-0.00497322529554367,0.0048483251594007,0.999975919723511,-0.00497322576120496,-0.0330814607441425,-0.00580470357090235,-0.999435842037201,0.00438272766768932,-0.00842125341296196,-0.99995493888855,-0.00124750775285065,-0.00802876055240631,-0.999966979026794,-0.0330814644694328,-0.00580470403656363,-0.999435842037201,-0.0151555296033621,-0.998635292053223,0.0499778427183628,-0.0151555296033621,-0.998635351657867,0.0499778464436531,-0.0151555305346847,-0.998635351657867,0.0499778464436531,-0.0151555296033621,-0.998635351657867,0.0499778389930725,-0.0151555286720395,-0.998635351657867,0.0499778464436531,-0.0151555286720395,-0.998635351657867,0.0499778389930725,-0.0151555296033621,-0.998635351657867,0.0499778427183628,
- 0.99942809343338,1.48343469845713e-005,0.0338169932365417,0.99942809343338,1.48343469845713e-005,0.033816996961832,0.99942809343338,1.48343469845713e-005,0.033816996961832,0.999428033828735,1.48343469845713e-005,0.033816996961832,0.999427974224091,1.48343460750766e-005,0.0338169932365417,-0.999799013137817,0.0103619899600744,-0.017168065533042,-0.999798953533173,0.0103619890287519,-0.0171680636703968,-0.999798953533173,0.0103619890287519,-0.0171680636703968,-0.999798893928528,0.0103619899600744,-0.0171680636703968,-0.999798834323883,0.0103619880974293,-0.0171680618077517,0.579623162746429,-0.53902405500412,-0.61113828420639,0.579623222351074,-0.539024174213409,-0.61113828420639,0.579623162746429,-0.53902405500412,-0.611138343811035,-0.00124750775285065,-0.00802876055240631,-0.999966979026794,0.00438272766768932,-0.00842125341296196,-0.99995493888855,0.0333149507641792,-0.0104340817779303,-0.999390363693237,0.0333149544894695,-0.0104340836405754,-0.999390423297882,0.0333149507641792,-0.0104340817779303,-0.999390423297882,-0.0346885286271572,0.0272473990917206,0.999026656150818,-0.0346885286271572,0.0272474009543657,0.999026656150818,-0.0346885323524475,0.0272474009543657,0.999026596546173,-0.0346885286271572,0.0272474009543657,0.999026656150818,-0.0346885323524475,0.0272474009543657,0.999026715755463,-0.925932466983795,-0.0878083407878876,0.367340296506882,-0.92593240737915,-0.0878083258867264,0.367340236902237,-0.92593240737915,-0.0878083184361458,0.367340266704559,-0.02809820137918,-0.999572813510895,-0.00804218370467424,-0.0280981976538897,-0.999572813510895,-0.00804218370467424,-0.0280981957912445,-0.99957275390625,-0.00804218370467424,-0.0280981976538897,-0.999572813510895,-0.00804218370467424,-0.02809820137918,-0.999572813510895,-0.00804218370467424,-0.0280981957912445,-0.999572813510895,-0.00804218370467424,-0.999685168266296,0.025089094415307,-3.09677852783352e-005,-0.999685227870941,0.025089094415307,-3.09677852783352e-005,-0.999685168266296,0.025089094415307,-3.09677816403564e-005,-0.999685168266296,0.0250890925526619,-3.09677816403564e-005,
- -0.999685287475586,0.0250890962779522,-3.09677852783352e-005,0.998903393745422,-0.0468182861804962,8.40648062876426e-005,0.998903393745422,-0.0468182861804962,8.40648062876426e-005,0.998903393745422,-0.0468182861804962,8.40648135636002e-005,0.998903393745422,-0.0468182899057865,8.4064799011685e-005,0.998903393745422,-0.0468182861804962,8.4064799011685e-005,0.998903453350067,-0.0468182973563671,8.40648208395578e-005,0.0125295137986541,0.999819755554199,-0.0142615763470531,0.0125295147299767,0.999819815158844,-0.0142615782096982,0.0125295137986541,0.999819695949554,-0.0142615744844079,0.0125295137986541,0.999819755554199,-0.0142615763470531,0.0125295156612992,0.999819815158844,-0.0142615772783756,-0.00193704012781382,-0.00547793740406632,-0.999983072280884,-0.00193704036064446,-0.00547793786972761,-0.999983131885529,-0.00193704036064446,-0.00547793786972761,-0.999983131885529,-0.00193704036064446,-0.00547793740406632,-0.999983072280884,-0.00193704036064446,-0.00547793786972761,-0.999983131885529,-0.000108397558506113,-0.00537069840356708,0.999985635280609,-0.000108397543954197,-0.00537069793790579,0.999985575675964,-0.000108397543954197,-0.00537069793790579,0.999985575675964,-0.00010839756578207,-0.00537069886922836,0.999985635280609,-0.000108397558506113,-0.00537069840356708,0.999985635280609,-0.000108397558506113,-0.00537069840356708,0.999985575675964,0.554706573486328,0.32134422659874,0.767488420009613,0.554706573486328,0.32134422659874,0.767488479614258,0.554706573486328,0.321344196796417,0.767488420009613,-0.737154424190521,-0.460269749164581,0.494727253913879,-0.737154483795166,-0.460269749164581,0.494727253913879,-0.737154483795166,-0.460269719362259,0.494727283716202,0.602817535400391,-0.645917356014252,-0.468403458595276,0.602817535400391,-0.645917296409607,-0.468403398990631,0.602817535400391,-0.645917415618896,-0.468403458595276,-0.000554049154743552,0.0141607709228992,-0.999899566173553,-0.000554049154743552,0.0141607718542218,-0.999899625778198,-0.000554049212951213,0.0141607718542218,-0.999899685382843,
- -0.000554049096535891,0.0141607709228992,-0.999899566173553,-0.000554049096535891,0.0141607699915767,-0.999899566173553,-0.000554049154743552,0.0141607709228992,-0.999899625778198,0.0118653178215027,0.0374291129410267,0.999228835105896,0.011865315027535,0.0374291129410267,0.999228775501251,0.0118653168901801,0.0374291129410267,0.999228835105896,0.0118653178215027,0.037429116666317,0.999228894710541,0.0118653178215027,0.0374291129410267,0.999228835105896,0.0118653178215027,0.0374291129410267,0.999228835105896,1,1.63312435574881e-007,0,1,1.63312435574881e-007,0,1,1.63312435574881e-007,0,0.999999940395355,1.63312421364026e-007,0,1,1.63312435574881e-007,0,0.999999940395355,1.63312421364026e-007,0,0.250961303710938,-0.877628922462463,-0.408394128084183,0.250961303710938,-0.877628922462463,-0.408394157886505,0.25096133351326,-0.877628982067108,-0.40839421749115,0.352475076913834,0.609097719192505,0.710465490818024,0.352475076913834,0.60909777879715,0.710465490818024,0.352475106716156,0.60909777879715,0.710465550422668,-0.0104627534747124,0.999217331409454,-0.0381487309932709,-0.0104627534747124,0.999217331409454,-0.0381487272679806,-0.0104627534747124,0.999217212200165,-0.0381487272679806,-0.0104627544060349,0.999217331409454,-0.0381487309932709,-0.0104627534747124,0.99921727180481,-0.0381487309932709,-0.0104627544060349,0.999217331409454,-0.0381487309932709,-0.999276280403137,-0.000392039015423507,-0.0380397364497185,-0.999276161193848,-0.000392038957215846,-0.0380397364497185,-0.999276101589203,-0.000392038957215846,-0.0380397327244282,-0.999276101589203,-0.000392038957215846,-0.0380397327244282,-0.999276161193848,-0.000392038928112015,-0.0380397327244282,-0.999276220798492,-0.000392038957215846,-0.0380397364497185,-0.717417895793915,0.188872769474983,0.670551121234894,-0.717417895793915,0.188872739672661,0.670551121234894,-0.71741783618927,0.188872754573822,0.670551121234894,0.0104551967233419,-0.999217569828033,0.038143839687109,0.0104551976546645,-0.999217569828033,0.0381438434123993,0.0104551967233419,-0.999217569828033,0.0381438359618187,
- 0.0104551976546645,-0.999217510223389,0.038143839687109,0.0104551967233419,-0.999217510223389,0.0381438359618187,0.0104551967233419,-0.999217450618744,0.0381438359618187,-0.642676174640656,-0.508284151554108,-0.573249101638794,-0.642676174640656,-0.508284091949463,-0.573249161243439,-0.642676115036011,-0.508284091949463,-0.573249101638794,-0.00333110638894141,0.999953806400299,0.00901799183338881,-0.00333110638894141,0.999953746795654,0.00901799090206623,-0.00333110662177205,0.99995368719101,0.00901799090206623,-0.00333110638894141,0.999953806400299,0.00901799090206623,-0.00333110638894141,0.99995368719101,0.00901799090206623,-0.00333110685460269,0.999953866004944,0.00901799183338881,-1,4.57458071423389e-009,0,-1,4.57458027014468e-009,0,-1,4.57458071423389e-009,0,-1,4.57458027014468e-009,0,-1,4.57458027014468e-009,0,0.999812066555023,0.0193860195577145,-8.63016684888862e-005,0.999812006950378,0.0193860158324242,-8.63016612129286e-005,0.999812066555023,0.0193860176950693,-8.63016612129286e-005,0.999812126159668,0.0193860176950693,-8.63016684888862e-005,0.999812066555023,0.0193860195577145,-8.63016757648438e-005,0.999812066555023,0.0193860176950693,-8.63016684888862e-005,-0.0141313374042511,-0.999772250652313,0.015994006767869,-0.0141313383355737,-0.999772250652313,0.015994006767869,-0.0141313392668962,-0.999772310256958,0.015994006767869,-0.0141313383355737,-0.999772250652313,0.015994006767869,-0.0141313355416059,-0.999772191047668,0.0159940049052238,-0.00180230382829905,0.00492646731436253,0.999986171722412,-0.00180230417754501,0.00492646778002381,0.999986290931702,-0.00180230394471437,0.00492646731436253,0.999986290931702,-0.00180230382829905,0.00492646778002381,0.999986290931702,-0.00180230406112969,0.00492646778002381,0.999986290931702,3.11027506540995e-005,0.00479421857744455,-0.999988496303558,3.11027470161207e-005,0.00479421811178327,-0.999988436698914,3.11027506540995e-005,0.00479421811178327,-0.999988496303558,3.11027542920783e-005,0.00479421904310584,-0.999988555908203,3.11027506540995e-005,0.00479421904310584,-0.999988555908203,
- 3.11027542920783e-005,0.00479421857744455,-0.999988496303558,0.552977323532104,-0.302431643009186,-0.776370465755463,0.552977323532104,-0.302431643009186,-0.776370465755463,0.552977383136749,-0.302431672811508,-0.776370525360107,-0.743014752864838,0.437102466821671,-0.5068239569664,-0.743014752864838,0.437102466821671,-0.506824016571045,-0.743014812469482,0.437102466821671,-0.506824016571045,0.645708680152893,0.58672696352005,0.488683819770813,0.645708620548248,0.586726903915405,0.488683819770813,0.645708620548248,0.586726903915405,0.488683789968491,0.00422251177951694,0.999948799610138,-0.00919676851481199,0.00422251224517822,0.999948799610138,-0.00919676851481199,0.00422251177951694,0.999948740005493,-0.00919676851481199,0.00422251131385565,0.999948740005493,-0.00919676851481199,0.00422251224517822,0.999948859214783,-0.00919676944613457,0.0765597298741341,-0.00595672568306327,0.997047185897827,0.0334737189114094,-0.00871242489665747,0.999401569366455,0.039831068366766,-0.00830709654837847,0.999171912670136,0.0765597224235535,-0.00595672428607941,0.997047185897827,0.00126958743203431,-0.998069584369659,-0.0620922669768333,0.00126958754844964,-0.998069584369659,-0.0620922707021236,0.00126958766486496,-0.998069643974304,-0.0620922707021236,0.00126958766486496,-0.998069643974304,-0.0620922744274139,0.00126958754844964,-0.998069643974304,-0.0620922669768333,0.00126958754844964,-0.998069643974304,-0.0620922707021236,0.00126958754844964,-0.998069584369659,-0.062092263251543,-0.999635875225067,-0.0267906375229359,0.00323277758434415,-0.999635875225067,-0.0267906356602907,0.00323277781717479,-0.999635756015778,-0.0267906337976456,0.00323277781717479,-0.999635815620422,-0.0267906337976456,0.00323277781717479,-0.999635815620422,-0.0267906337976456,0.00323277781717479,0.999844670295715,0.0095028867945075,-0.0148381078615785,0.99984472990036,0.00950288865715265,-0.014838108792901,0.999844670295715,0.00950288772583008,-0.014838108792901,0.999844789505005,0.0095028867945075,-0.014838108792901,0.999844789505005,0.00950288772583008,-0.0148381097242236,
- -0.614001572132111,-0.512957453727722,0.599897384643555,-0.614001631736755,-0.512957394123077,0.599897384643555,-0.614001512527466,-0.512957334518433,0.59989732503891,0.039831068366766,-0.00830709654837847,0.999171912670136,0.0334737189114094,-0.00871242489665747,0.999401569366455,-0.000205218777409755,-0.0108523648232222,0.999941051006317,-0.000205218806513585,-0.0108523666858673,0.999941110610962,-0.000205218777409755,-0.0108523648232222,0.999941110610962,0.00217848969623446,0.0290907062590122,-0.999574422836304,0.00217848946340382,0.0290907025337219,-0.999574422836304,0.00217848969623446,0.0290907025337219,-0.999574422836304,0.00217848946340382,0.0290907025337219,-0.999574363231659,0.00217848969623446,0.0290907043963671,-0.999574422836304,0.931323349475861,-0.0895123705267906,-0.353021860122681,0.931323349475861,-0.0895123705267906,-0.353021830320358,0.931323289871216,-0.0895123779773712,-0.353021830320358,-0.000701576296705753,0.0141662145033479,-0.999899387359619,-0.000701576238498092,0.0141662126407027,-0.999899327754974,-0.000701576296705753,0.0141662154346704,-0.999899446964264,-0.000701576296705753,0.0141662145033479,-0.999899446964264,-0.000701576238498092,0.0141662135720253,-0.999899446964264,-0.000701576296705753,0.0141662145033479,-0.999899387359619,0.0150161236524582,0.0374315828084946,0.999186336994171,0.0150161255151033,0.0374315902590752,0.999186336994171,0.0150161236524582,0.0374315828084946,0.999186396598816,0.0150161227211356,0.0374315828084946,0.999186336994171,0.0150161245837808,0.0374315865337849,0.999186336994171,0.0150161245837808,0.0374315865337849,0.999186396598816,1,2.17749573039328e-007,0,1,2.17749587250182e-007,0,1,2.17749587250182e-007,0,1,2.17749573039328e-007,0,0.999999940395355,2.17749544617618e-007,0,1,2.17749573039328e-007,0,0.311814069747925,-0.861444532871246,-0.40085580945015,0.311814039945602,-0.861444473266602,-0.40085580945015,0.311814069747925,-0.861444473266602,-0.40085580945015,0.430296421051025,0.587538480758667,0.685305416584015,0.430296391248703,0.587538480758667,0.685305535793304,
- 0.430296421051025,0.587538480758667,0.68530547618866,-0.0132428724318743,0.999184250831604,-0.0381484217941761,-0.0132428733631969,0.999184250831604,-0.0381484217941761,-0.0132428742945194,0.999184370040894,-0.0381484217941761,-0.0132428733631969,0.999184310436249,-0.0381484217941761,-0.0132428733631969,0.999184310436249,-0.0381484217941761,-0.0132428724318743,0.999184310436249,-0.0381484217941761,-0.999547362327576,-0.000336649944074452,-0.0300815142691135,-0.99954742193222,-0.000336649973178282,-0.0300815161317587,-0.999547362327576,-0.000336649973178282,-0.0300815142691135,-0.99954742193222,-0.000336650002282113,-0.0300815142691135,-0.999547362327576,-0.000336649973178282,-0.0300815161317587,-0.999547362327576,-0.000336649914970621,-0.0300815142691135,-0.793322563171387,0.16504342854023,0.586003482341766,-0.793322503566742,0.165043443441391,0.586003422737122,-0.793322503566742,0.165043443441391,0.586003482341766,0.0132335284724832,-0.999184608459473,0.0381422601640224,0.0132335284724832,-0.999184608459473,0.0381422601640224,0.0132335294038057,-0.999184668064117,0.0381422638893127,0.0132335294038057,-0.999184727668762,0.0381422601640224,0.0132335294038057,-0.999184727668762,0.0381422638893127,0.0132335284724832,-0.999184668064117,0.0381422564387321,-0.727997660636902,-0.454898089170456,-0.512920439243317,-0.727997660636902,-0.454898059368134,-0.512920379638672,-0.727997660636902,-0.454898029565811,-0.512920379638672,-0.0221905224025249,-0.99975323677063,0.00103656190913171,-0.0221905224025249,-0.99975323677063,0.00103656190913171,-0.0221905224025249,-0.99975323677063,0.00103656179271638,-0.0221905205398798,-0.99975323677063,0.00103656179271638,-0.0221905224025249,-0.99975323677063,0.00103656190913171,0.0341680757701397,0.00566410832107067,-0.999400079250336,-0.00368884322233498,0.00859007705003023,-0.99995630979538,0.00178365816827863,0.00816784705966711,-0.999965071678162,0.0341680720448494,0.00566410832107067,-0.999400079250336,0.0217835865914822,0.998513758182526,0.0499575436115265,0.0217835884541273,0.998513758182526,0.0499575510621071,
- 0.0217835865914822,0.998513698577881,0.0499575436115265,0.021783584728837,0.998513698577881,0.0499575436115265,0.0217835884541273,0.998513758182526,0.0499575473368168,0.0217835884541273,0.99851381778717,0.0499575473368168,0.0217835865914822,0.998513698577881,0.0499575436115265,-0.999388515949249,0.00631195539608598,0.0343948230147362,-0.99938839673996,0.0063119544647634,0.0343948155641556,-0.99938839673996,0.00631195493042469,0.0343948192894459,-0.999388456344604,0.00631195493042469,0.0343948192894459,-0.999388456344604,0.0063119544647634,0.0343948192894459,0.999700784683228,-0.0165019538253546,-0.0180555321276188,0.999700725078583,-0.0165019519627094,-0.0180555302649736,0.999700784683228,-0.0165019519627094,-0.0180555321276188,0.999700844287872,-0.0165019519627094,-0.0180555339902639,0.999700784683228,-0.0165019519627094,-0.0180555339902639,-0.58563494682312,0.538668632507324,-0.605696141719818,-0.585634887218475,0.538668692111969,-0.605696141719818,-0.585634887218475,0.538668632507324,-0.605696082115173,0.00178365816827863,0.00816784705966711,-0.999965071678162,-0.00368884322233498,0.00859007705003023,-0.99995630979538,-0.0337348878383636,0.0109038157388568,-0.999371290206909,-0.0337348878383636,0.0109038166701794,-0.999371290206909,-0.0337348915636539,0.0109038176015019,-0.999371349811554,0.0349825248122215,-0.0281646996736526,0.998991012573242,0.0349825210869312,-0.0281646959483624,0.998991012573242,0.0349825248122215,-0.0281646978110075,0.998990952968597,0.0349825248122215,-0.0281646996736526,0.998991012573242,0.0349825248122215,-0.0281646978110075,0.998990952968597,0.929791629314423,0.0819628238677979,0.358844935894012,0.929791629314423,0.0819628238677979,0.358844965696335,0.929791569709778,0.0819628238677979,0.358844935894012,0.00362485810182989,-0.060335174202919,-0.998171627521515,0.00362485786899924,-0.0603351704776287,-0.99817156791687,0.00362485810182989,-0.0603351704776287,-0.998171627521515,0.00362485786899924,-0.0603351630270481,-0.998171508312225,0.00362485810182989,-0.060335174202919,-0.99817168712616,
- 0.00362485856749117,-0.0603351704776287,-0.998171627521515,-0.0216478928923607,0.0123789431527257,0.999689042568207,-0.0216478947550058,0.0123789431527257,0.999689042568207,-0.0216478928923607,0.0123789431527257,0.999689042568207,-0.0216478928923607,0.0123789440840483,0.999688982963562,-0.0216478910297155,0.0123789431527257,0.999688982963562,-0.0216478928923607,0.0123789440840483,0.999689042568207,-0.992935478687286,0.118136063218117,-0.0110859032720327,-0.992935538291931,0.118136078119278,-0.0110859051346779,-0.992935478687286,0.118136078119278,-0.0110859051346779,-0.992935419082642,0.118136055767536,-0.0110859023407102,-0.992935478687286,0.118136070668697,-0.0110859042033553,-0.992935597896576,0.118136078119278,-0.0110859051346779,-0.170098096132278,0.870173037052155,-0.462455868721008,-0.17009811103344,0.870173037052155,-0.462455898523331,-0.17009811103344,0.870173096656799,-0.462455898523331,-0.45108687877655,-0.505294322967529,0.735661804676056,-0.45108687877655,-0.505294322967529,0.735661804676056,-0.45108687877655,-0.505294263362885,0.735661745071411,-0.106610879302025,-0.994245171546936,0.0105193369090557,-0.106610894203186,-0.994245171546936,0.0105193369090557,-0.106610894203186,-0.994245231151581,0.0105193387717009,-0.106610901653767,-0.994245231151581,0.0105193387717009,-0.106610886752605,-0.994245171546936,0.0105193369090557,-0.106610901653767,-0.994245231151581,0.0105193378403783,0.992558479309082,-0.119348876178265,-0.024154718965292,0.992558479309082,-0.119348876178265,-0.0241547171026468,0.992558479309082,-0.119348883628845,-0.024154718965292,0.992558538913727,-0.119348861277103,-0.0241547171026468,0.992558598518372,-0.119348883628845,-0.0241547208279371,0.992558598518372,-0.119348891079426,-0.0241547208279371,0.71428918838501,-0.231211155653,0.660554647445679,0.714289128780365,-0.231211155653,0.660554647445679,0.714289128780365,-0.231211155653,0.660554647445679,0.106620840728283,0.994244039058685,-0.010524476878345,0.106620840728283,0.994244039058685,-0.010524476878345,0.106620855629444,0.99424409866333,-0.0105244778096676,
- 0.106620848178864,0.99424409866333,-0.0105244778096676,0.106620855629444,0.994244158267975,-0.0105244778096676,0.106620855629444,0.99424409866333,-0.0105244787409902,0.730653643608093,0.368474185466766,-0.57477992773056,0.730653643608093,0.368474245071411,-0.57477992773056,0.730653643608093,0.368474215269089,-0.57477992773056,-0.000549130141735077,-0.0478629171848297,0.998853802680969,-0.000549130141735077,-0.04786292091012,0.998853802680969,-0.000549130199942738,-0.0478629246354103,0.998853802680969,-0.000549130141735077,-0.0478629246354103,0.998853802680969,-0.000549130083527416,-0.0478629134595394,0.998853743076324,-0.000549130083527416,-0.0478629171848297,0.998853743076324,0.0119619984179735,-4.27871691499604e-006,-0.999928534030914,0.0119619974866509,-4.27871691499604e-006,-0.99992847442627,0.0119619974866509,-4.27871646024869e-006,-0.99992847442627,0.0119619974866509,-4.27871691499604e-006,-0.99992847442627,0.0119619974866509,-4.27871691499604e-006,-0.99992847442627,0.0119619965553284,-4.27871646024869e-006,-0.999928414821625,1,-5.29460777443092e-008,0,1,-5.29460777443092e-008,0,1,-5.29460777443092e-008,0,1,-5.29460812970228e-008,0,1,-5.29460741915955e-008,0,1,-5.29460777443092e-008,0,0.266994476318359,0.843704044818878,0.465700924396515,0.266994476318359,0.843704104423523,0.465700924396515,0.266994506120682,0.843704104423523,0.465700924396515,0.363585263490677,-0.552629113197327,-0.749937891960144,0.363585233688354,-0.552629172801971,-0.749937891960144,0.363585233688354,-0.552629053592682,-0.749937891960144,-0.0113672092556953,-0.999935328960419,0.000224230359890498,-0.0113672083243728,-0.999935328960419,0.000224230345338583,-0.0113672101870179,-0.999935388565063,0.000224230359890498,-0.0113672101870179,-0.999935388565063,0.000224230359890498,-0.0113672083243728,-0.999935269355774,0.000224230330786668,-0.0113672092556953,-0.999935388565063,0.000224230359890498,-0.999288022518158,-0.000940591678954661,0.0377179123461246,-0.999287962913513,-0.000940591678954661,0.0377179123461246,-0.999287962913513,-0.000940591620747,0.0377179086208344,
- -0.999288022518158,-0.000940591737162322,0.0377179123461246,-0.999288082122803,-0.000940591678954661,0.0377179160714149,-0.999287962913513,-0.000940591620747,0.0377179123461246,-0.721509039402008,-0.151467204093933,-0.675634801387787,-0.721509039402008,-0.151467218995094,-0.675634801387787,-0.721509039402008,-0.151467218995094,-0.675634801387787,0.0113590862601995,0.999935507774353,-0.000217110748053528,0.0113590871915221,0.999935448169708,-0.000217110748053528,0.011359085328877,0.999935388565063,-0.000217110718949698,0.0113590871915221,0.999935448169708,-0.000217110748053528,0.0113590862601995,0.999935448169708,-0.000217110733501613,0.011359085328877,0.999935328960419,-0.000217110689845867,-0.656568765640259,0.457286089658737,0.599839150905609,-0.656568706035614,0.457286089658737,0.599839091300964,-0.656568706035614,0.45728611946106,0.599839150905609,0.0203785207122564,0.999779045581818,0.00514903943985701,0.0203785225749016,0.999779105186462,0.00514903943985701,0.0203785225749016,0.999779105186462,0.00514903943985701,0.0203785244375467,0.999779045581818,0.00514903990551829,0.0203785244375467,0.999779105186462,0.00514903990551829,0.067086361348629,-0.00745599204674363,0.99771922826767,0.029169550165534,-0.00911203119903803,0.99953293800354,0.0347865410149097,-0.0088676530867815,0.999355494976044,0.0670863687992096,-0.00745599204674363,0.997719407081604,-0.0114105651155114,-0.998653292655945,-0.0506095066666603,-0.011410566046834,-0.99865335226059,-0.0506095066666603,-0.011410566046834,-0.998653292655945,-0.0506095066666603,-0.0114105669781566,-0.99865335226059,-0.0506095103919506,-0.011410566046834,-0.998653292655945,-0.0506095066666603,-0.0114105651155114,-0.998653292655945,-0.0506095103919506,-0.0114105651155114,-0.99865335226059,-0.0506095103919506,-0.999683737754822,0.0251481384038925,1.14419517558417e-005,-0.999683737754822,0.0251481365412474,1.1441950846347e-005,-0.999683678150177,0.0251481346786022,1.1441950846347e-005,-0.999683797359467,0.0251481365412474,1.14419535748311e-005,-0.999683737754822,0.0251481365412474,1.14419526653364e-005,
- 0.999753534793854,-0.0149184977635741,-0.0164384208619595,0.999753594398499,-0.0149184996262193,-0.0164384245872498,0.999753654003143,-0.0149184986948967,-0.0164384227246046,0.999753534793854,-0.014918495900929,-0.0164384208619595,0.999753534793854,-0.0149184977635741,-0.0164384208619595,-0.577399075031281,-0.521270573139191,0.628400504589081,-0.577399134635925,-0.521270632743835,0.628400564193726,-0.577399075031281,-0.521270573139191,0.628400504589081,0.0347865410149097,-0.0088676530867815,0.999355494976044,0.029169550165534,-0.00911203119903803,0.99953293800354,-0.000228024655370973,-0.0103856846690178,0.999945998191834,-0.000228024611715227,-0.0103856846690178,0.999946057796478,-0.000228024626267143,-0.0103856856003404,0.999946057796478,0.00203837244771421,0.0271198861300945,-0.999630093574524,0.00203837244771421,0.0271198898553848,-0.999630093574524,0.00203837244771421,0.0271198898553848,-0.999630093574524,0.00203837244771421,0.0271198879927397,-0.999630093574524,0.00203837268054485,0.0271198935806751,-0.999630153179169,0.91252189874649,-0.109556525945663,-0.394082725048065,0.91252189874649,-0.109556518495083,-0.394082695245743,0.912521958351135,-0.109556533396244,-0.394082754850388,0.000649638939648867,0.0484831146895885,-0.998823821544647,0.000649638939648867,0.0484831184148788,-0.998823761940002,0.000649638997856528,0.0484831146895885,-0.998823821544647,0.000649638997856528,0.0484831146895885,-0.998823761940002,0.000649638997856528,0.0484831184148788,-0.998823761940002,0.000649638939648867,0.0484831146895885,-0.998823761940002,0.0124696372076869,-0.000306071917293593,0.999922215938568,0.0124696372076869,-0.000306071946397424,0.999922156333923,0.0124696372076869,-0.000306071888189763,0.999922215938568,0.0124696372076869,-0.000306071917293593,0.999922215938568,0.0124696372076869,-0.000306071917293593,0.999922156333923,0.0124696372076869,-0.000306071917293593,0.999922215938568,0.99968409538269,-0.025132842361927,-3.50977170455735e-005,0.999684035778046,-0.0251328404992819,-3.50977170455735e-005,0.999684154987335,-0.0251328404992819,-3.50977206835523e-005,
- 0.99968409538269,-0.0251328404992819,-3.50977170455735e-005,0.999684154987335,-0.0251328404992819,-3.50977206835523e-005,0.999684035778046,-0.0251328404992819,-3.50977170455735e-005,0.253759026527405,-0.850849151611328,-0.460067540407181,0.253759026527405,-0.850849151611328,-0.460067540407181,0.253759026527405,-0.850849151611328,-0.460067540407181,0.389228135347366,0.544790804386139,0.742768108844757,0.389228165149689,0.544790863990784,0.742768049240112,0.389228135347366,0.544790863990784,0.742768108844757,0.0134284719824791,0.999909818172455,-0.000221197347855195,0.0134284738451242,0.9999098777771,-0.000221197391510941,0.0134284710511565,0.99990975856781,-0.000221197347855195,0.0134284719824791,0.99990975856781,-0.000221197347855195,0.0134284710511565,0.99990975856781,-0.00022119733330328,0.0134284729138017,0.999909818172455,-0.000221197347855195,-0.999007225036621,0.0259938538074493,-0.036178857088089,-0.999007284641266,0.0259938538074493,-0.0361788608133793,-0.999007165431976,0.0259938519448042,-0.0361788533627987,-0.999007225036621,0.0259938538074493,-0.036178857088089,-0.999007284641266,0.0259938519448042,-0.036178857088089,-0.999007284641266,0.0259938519448042,-0.036178857088089,-0.731684267520905,0.168473795056343,0.66049587726593,-0.731684148311615,0.168473780155182,0.660495817661285,-0.73168420791626,0.168473795056343,0.660495817661285,-0.0134368762373924,-0.999909698963165,0.000215721636777744,-0.0134368762373924,-0.999909698963165,0.000215721651329659,-0.0134368753060699,-0.999909698963165,0.000215721636777744,-0.0134368762373924,-0.99990975856781,0.000215721636777744,-0.0134368734434247,-0.999909639358521,0.000215721622225828,-0.0134368762373924,-0.999909639358521,0.000215721636777744,-0.681619822978973,-0.436593234539032,-0.587180316448212,-0.681619882583618,-0.436593294143677,-0.587180316448212,-0.681619822978973,-0.436593234539032,-0.587180256843567,0.00632402114570141,0.0245328824967146,0.999679028987885,0.0063240216113627,0.0245328862220049,0.999679028987885,0.00632402114570141,0.0245328824967146,0.999679028987885,
- 0.0063240216113627,0.0245328843593597,0.999679028987885,0.00632402068004012,0.0245328806340694,0.99967896938324,0.00632402114570141,0.0245328843593597,0.999679028987885,-0.014478025957942,0.0192953683435917,-0.999708950519562,-0.0144780268892646,0.0192953683435917,-0.999709010124207,-0.0144780278205872,0.0192953702062368,-0.999709069728851,-0.014478025957942,0.0192953683435917,-0.999708950519562,-0.014478025957942,0.0192953683435917,-0.999709010124207,-0.014478025957942,0.0192953664809465,-0.999709010124207,-0.998717129230499,0.0502051785588264,0.00660324795171618,-0.998717069625854,0.0502051785588264,0.00660324841737747,-0.998717069625854,0.0502051748335361,0.00660324795171618,-0.998717069625854,0.0502051748335361,0.00660324795171618,-0.99871701002121,0.0502051748335361,0.00660324795171618,-0.998717069625854,0.0502051711082459,0.00660324795171618,-0.301029980182648,-0.821911334991455,0.483572870492935,-0.301030039787292,-0.821911334991455,0.483572870492935,-0.30103000998497,-0.8219113945961,0.483572840690613,-0.32050746679306,0.554634809494019,-0.76789003610611,-0.320507526397705,0.554634869098663,-0.767890095710754,-0.320507496595383,0.554634869098663,-0.767890095710754,0.0615977048873901,0.997742116451263,0.026764152571559,0.061597716063261,0.997742176055908,0.0267641544342041,0.0615977048873901,0.997742116451263,0.0267641544342041,0.061597716063261,0.997742176055908,0.0267641562968493,0.0615977011620998,0.997742176055908,0.0267641507089138,0.0615977048873901,0.997742116451263,0.026764152571559,0.998136460781097,-0.0499362871050835,0.0350727252662182,0.998136401176453,-0.0499362759292126,0.0350727215409279,0.998136401176453,-0.0499362871050835,0.0350727252662182,0.998136401176453,-0.0499362833797932,0.0350727289915085,0.998136401176453,-0.0499362833797932,0.0350727252662182,0.998136401176453,-0.0499362833797932,0.0350727252662182,0.69157874584198,0.123067729175091,-0.711739540100098,0.69157874584198,0.123067729175091,-0.711739480495453,0.69157874584198,0.123067729175091,-0.711739480495453,-0.0615881346166134,-0.99774295091629,-0.0267575420439243,
- -0.0615881271660328,-0.99774295091629,-0.0267575457692146,-0.0615881271660328,-0.997742891311646,-0.0267575420439243,-0.0615881308913231,-0.997742891311646,-0.0267575439065695,-0.0615881346166134,-0.997742891311646,-0.0267575457692146,-0.0615881308913231,-0.99774295091629,-0.0267575420439243,0.613279759883881,-0.48474332690239,0.623628079891205,0.613279759883881,-0.484743356704712,0.62362802028656,0.613279759883881,-0.484743297100067,0.623627960681915,-0.109079472720623,-0.0528319329023361,-0.99262809753418,-0.109079457819462,-0.0528319291770458,-0.992628037929535,-0.109079472720623,-0.0528319254517555,-0.99262809753418,-0.109079465270042,-0.0528319254517555,-0.99262809753418,-0.109079450368881,-0.0528319217264652,-0.99262797832489,-0.109079465270042,-0.0528319291770458,-0.99262809753418,0.096712052822113,-6.76055833537248e-006,0.995312452316284,0.0967120453715324,-6.76055788062513e-006,0.995312392711639,0.0967120379209518,-6.76055788062513e-006,0.995312392711639,0.0967120379209518,-6.76055742587778e-006,0.995312452316284,0.0967120453715324,-6.76055788062513e-006,0.995312392711639,0.0967120379209518,-6.76055833537248e-006,0.995312333106995,-0.99436229467392,-1.02863623396843e-005,0.106036283075809,-0.994362235069275,-1.02863614301896e-005,0.106036283075809,-0.994362354278564,-1.0286363249179e-005,0.106036297976971,-0.99436229467392,-1.02863614301896e-005,0.106036275625229,-0.994362354278564,-1.02863623396843e-005,0.10603629052639,-0.99436229467392,-1.02863623396843e-005,0.106036275625229,-0.317876994609833,0.86027729511261,-0.398594081401825,-0.31787696480751,0.86027729511261,-0.398594081401825,-0.31787696480751,0.860277235507965,-0.398594051599503,-0.302829056978226,-0.583496809005737,0.753542363643646,-0.302829056978226,-0.583496809005737,0.753542363643646,-0.302829056978226,-0.583496809005737,0.753542363643646,0.0112785324454308,-0.999935388565063,-0.00140522955916822,0.0112785315141082,-0.999935328960419,-0.00140522932633758,0.0112785324454308,-0.999935448169708,-0.00140522955916822,0.0112785315141082,-0.999935448169708,-0.0014052294427529,
- 0.0112785315141082,-0.999935448169708,-0.00140522955916822,0.0112785333767533,-0.999935448169708,-0.00140522955916822,0.990159332752228,-0.000915838580112904,-0.139941662549973,0.990159273147583,-0.000915838580112904,-0.139941662549973,0.990159273147583,-0.000915838638320565,-0.139941677451134,0.990159273147583,-0.000915838696528226,-0.139941677451134,0.990159273147583,-0.000915838580112904,-0.139941647648811,0.990159332752228,-0.000915838696528226,-0.139941677451134,0.817323565483093,-0.157853335142136,0.554133892059326,0.817323684692383,-0.157853335142136,0.554133951663971,0.817323625087738,-0.157853320240974,0.554133892059326,-0.0112705770879984,0.999935567378998,0.00140140054281801,-0.0112705752253532,0.999935448169708,0.00140140042640269,-0.0112705770879984,0.999935507774353,0.00140140054281801,-0.0112705752253532,0.999935507774353,0.00140140054281801,-0.0112705761566758,0.999935448169708,0.00140140054281801,-0.0112705752253532,0.999935448169708,0.00140140042640269,0.614081025123596,0.473652064800262,-0.631314754486084,0.614081025123596,0.473652005195618,-0.631314694881439,0.614081025123596,0.47365203499794,-0.631314754486084,-0.00280469981953502,-0.999968647956848,-0.00740655977278948,-0.00280469981953502,-0.999968528747559,-0.00740655977278948,-0.00280470005236566,-0.999968707561493,-0.00740656023845077,-0.00280469981953502,-0.999968647956848,-0.00740655977278948,-0.00280469958670437,-0.999968588352203,-0.00740655930712819,-0.00280469981953502,-0.999968647956848,-0.00740655977278948,-0.998453795909882,-5.15144311066251e-005,0.0555875599384308,-0.998453795909882,-5.15144347446039e-005,0.0555875636637211,-0.998453795909882,-5.15144311066251e-005,0.0555875636637211,-0.998453855514526,-5.15144383825827e-005,0.0555875599384308,-0.998453795909882,-5.15144311066251e-005,0.0555875562131405,0.998121321201324,-0.0259417686611414,-0.0555062107741833,0.99812126159668,-0.0259417686611414,-0.0555062107741833,0.998121321201324,-0.0259417686611414,-0.0555062033236027,0.998121321201324,-0.0259417686611414,-0.0555062144994736,
- 0.998121321201324,-0.0259417686611414,-0.0555062107741833,0.998121321201324,-0.0259417705237865,-0.0555062144994736,-0.0110895931720734,0.99985659122467,-0.0127964336425066,-0.0110895931720734,0.999856650829315,-0.0127964355051517,-0.0110895931720734,0.99985659122467,-0.0127964336425066,-0.0110895922407508,0.999856531620026,-0.0127964336425066,-0.0110895922407508,0.99985659122467,-0.0127964336425066,-0.0449588969349861,-0.00588599499315023,-0.998971521854401,-0.0449589043855667,-0.00588599499315023,-0.998971521854401,-0.0449588969349861,-0.00588599406182766,-0.998971462249756,-0.0449589043855667,-0.00588599545881152,-0.998971581459045,-0.0449589043855667,-0.00588599499315023,-0.998971521854401,0.0433821938931942,-0.00571531290188432,0.999042212963104,0.0433821938931942,-0.0057153133675456,0.999042212963104,0.0433821976184845,-0.0057153133675456,0.999042212963104,0.0433821976184845,-0.0057153133675456,0.999042212963104,0.0433821976184845,-0.00571531383320689,0.999042153358459,0.0433821976184845,-0.00571531290188432,0.999042093753815,0.533917605876923,0.367393642663956,0.761547029018402,0.533917546272278,0.367393672466278,0.761547088623047,0.533917665481567,0.367393672466278,0.761547088623047,-0.646238088607788,-0.528790891170502,0.550233006477356,-0.646238148212433,-0.528790950775146,0.550233125686646,-0.646238148212433,-0.528790950775146,0.550233066082001,0.534617900848389,-0.678407967090607,-0.503930866718292,0.534617841243744,-0.678407907485962,-0.503930807113647,0.534617900848389,-0.678407967090607,-0.503930866718292,-0.197958588600159,-0.980015397071838,0.0195501260459423,-0.197958588600159,-0.980015456676483,0.0195501260459423,-0.197958558797836,-0.980015397071838,0.0195501241832972,-0.197958573698998,-0.980015397071838,0.0195501241832972,-0.197958588600159,-0.980015337467194,0.0195501260459423,-0.197958573698998,-0.980015456676483,0.0195501241832972,0.97917628288269,-0.202876135706902,-0.00742490543052554,0.97917628288269,-0.202876150608063,-0.00742490636184812,0.97917628288269,-0.202876150608063,-0.00742490636184812,
- 0.97917628288269,-0.202876150608063,-0.0074249068275094,0.979176342487335,-0.202876165509224,-0.00742490636184812,-0.983437061309814,0.181094244122505,0.00751747796311975,-0.98343700170517,0.181094229221344,0.00751747703179717,-0.983437061309814,0.181094244122505,0.00751747749745846,-0.983437061309814,0.181094244122505,0.00751747703179717,-0.983437061309814,0.181094259023666,0.00751747749745846,-0.98343700170517,0.181094214320183,0.0075174761004746,0.211016848683357,0.97645103931427,-0.0448915772140026,0.211016848683357,0.976451098918915,-0.0448915846645832,0.211016863584518,0.97645103931427,-0.0448915846645832,0.21101687848568,0.976451098918915,-0.0448915883898735,0.211016848683357,0.976451098918915,-0.0448915846645832,0.0113373035565019,0.0035740933381021,0.999929368495941,0.0113373026251793,0.00357409310527146,0.999929249286652,0.0113373035565019,0.00357409357093275,0.999929308891296,0.0113373026251793,0.00357409310527146,0.999929308891296,0.0113373016938567,0.00357409357093275,0.999929308891296,-0.0106493467465043,0.00137072103098035,-0.999942362308502,-0.0106493476778269,0.00137072103098035,-0.999942362308502,-0.0106493467465043,0.00137072103098035,-0.999942362308502,-0.0106493458151817,0.00137072091456503,-0.999942302703857,-0.0106493467465043,0.00137072114739567,-0.999942362308502,-0.0106493458151817,0.00137072103098035,-0.999942302703857,-0.475119680166245,0.43021422624588,-0.767578721046448,-0.475119709968567,0.430214196443558,-0.767578721046448,-0.475119680166245,0.43021422624588,-0.767578661441803,0.608400702476501,-0.618633210659027,-0.497133284807205,0.608400583267212,-0.618633270263672,-0.497133255004883,0.608400702476501,-0.618633270263672,-0.497133284807205,-0.727148711681366,-0.48849168419838,0.482318073511124,-0.727148711681366,-0.488491743803024,0.482318043708801,-0.727148652076721,-0.488491654396057,0.482317984104156,0.000494788575451821,0.0407243259251118,0.999170243740082,0.000494788633659482,0.0407243296504021,0.999170362949371,0.000494788575451821,0.0407243296504021,0.999170243740082,0.000494788575451821,0.0407243259251118,0.999170243740082,
- 0.000494788575451821,0.0407243296504021,0.999170362949371,0.000494788633659482,0.0407243296504021,0.999170303344727,-0.0108302664011717,2.51584606303368e-006,-0.999941349029541,-0.0108302673324943,2.51584651778103e-006,-0.999941468238831,-0.0108302664011717,2.51584606303368e-006,-0.999941349029541,-0.0108302664011717,2.51584629040735e-006,-0.999941408634186,-0.0108302673324943,2.51584651778103e-006,-0.999941468238831,-0.0108302654698491,2.51584606303368e-006,-0.999941229820251,-0.999999940395355,1.70272059563104e-007,0,-1,1.70272073773958e-007,0,-1,1.70272087984813e-007,0,-1,1.70272073773958e-007,0,-0.999999940395355,1.70272059563104e-007,0,-1,1.70272087984813e-007,0,-0.272021800279617,-0.8072350025177,0.523808896541595,-0.272021770477295,-0.8072350025177,0.523808896541595,-0.272021770477295,-0.807235062122345,0.523808836936951,-0.348661154508591,0.497810363769531,-0.794116020202637,-0.348661124706268,0.497810393571854,-0.794115960597992,-0.348661094903946,0.497810363769531,-0.794115960597992,0.0121035370975733,0.999926745891571,0.000265363050857559,0.0121035361662507,0.999926745891571,0.000265363021753728,0.0121035370975733,0.999926745891571,0.000265363021753728,0.0121035361662507,0.999926745891571,0.000265363021753728,0.0121035361662507,0.999926805496216,0.000265363021753728,0.0121035361662507,0.999926745891571,0.000265363021753728,0.999131083488464,0.000852461147587746,0.0416698567569256,0.99913102388382,0.000852461089380085,0.0416698567569256,0.999131143093109,0.000852461205795407,0.0416698604822159,0.99913102388382,0.000852461089380085,0.0416698530316353,0.99913102388382,0.000852461147587746,0.0416698604822159,0.999130964279175,0.000852461089380085,0.0416698567569256,0.688696563243866,0.135817185044289,-0.712215483188629,0.688696503639221,0.135817185044289,-0.712215483188629,0.688696503639221,0.135817185044289,-0.71221536397934,-0.0120945777744055,-0.999926805496216,-0.000257966108620167,-0.0120945787057281,-0.999926805496216,-0.000257966137723997,-0.0120945796370506,-0.999926865100861,-0.000257966137723997,-0.0120945796370506,-0.999926865100861,-0.000257966137723997,
- -0.0120945768430829,-0.999926805496216,-0.000257966108620167,-0.0120945787057281,-0.999926805496216,-0.000257966108620167,0.639248192310333,-0.418555676937103,0.645114660263062,0.639248251914978,-0.418555676937103,0.645114541053772,0.639248192310333,-0.418555676937103,0.645114600658417,0.000509214529301971,-0.018498171120882,-0.99982875585556,0.00050921447109431,-0.0184981729835272,-0.99982875585556,0.000509214529301971,-0.0184981729835272,-0.999828815460205,0.000509214529301971,-0.018498171120882,-0.99982875585556,0.000509214587509632,-0.0184981748461723,-0.999828815460205,0.000509214529301971,-0.018498171120882,-0.999828696250916,-0.0108723351731896,-0.0299752913415432,0.999491453170776,-0.0108723351731896,-0.0299752932041883,0.999491512775421,-0.0108723370358348,-0.0299752950668335,0.999491512775421,-0.0108723351731896,-0.0299752950668335,0.999491512775421,-0.0108723351731896,-0.0299752913415432,0.999491453170776,-0.0108723342418671,-0.0299752913415432,0.999491453170776,-0.999999582767487,0.00029853027081117,0.000913167896214873,-0.999999582767487,0.00029853027081117,0.000913167896214873,-0.999999582767487,0.00029853027081117,0.000913168012630194,-0.999999582767487,0.00029853024170734,0.000913167896214873,-0.999999523162842,0.00029853024170734,0.000913167779799551,-0.999999582767487,0.00029853027081117,0.000913167896214873,-0.25559264421463,0.856527030467987,-0.448368102312088,-0.255592614412308,0.856526911258698,-0.448368042707443,-0.255592674016953,0.856527030467987,-0.44836813211441,-0.304473996162415,-0.692312777042389,0.654216110706329,-0.304474025964737,-0.692312717437744,0.654216110706329,-0.304473996162415,-0.692312657833099,0.654216110706329,0.0108841899782419,-0.999323785305023,-0.0351187586784363,0.0108841909095645,-0.999323904514313,-0.0351187586784363,0.0108841927722096,-0.999323904514313,-0.0351187624037266,0.0108841918408871,-0.999323844909668,-0.0351187624037266,0.0108841899782419,-0.999323785305023,-0.035118754953146,0.0108841909095645,-0.999323904514313,-0.0351187624037266,0.999153435230255,-0.000277339393505827,-0.0411387234926224,
- 0.99915337562561,-0.000277339393505827,-0.0411387197673321,0.99915337562561,-0.000277339393505827,-0.0411387197673321,0.99915337562561,-0.000277339422609657,-0.0411387272179127,0.99915337562561,-0.000277339393505827,-0.0411387234926224,0.99915337562561,-0.000277339393505827,-0.0411387234926224,0.695807456970215,-0.191083922982216,0.69234299659729,0.69580751657486,-0.191083937883377,0.692343056201935,0.69580751657486,-0.191083922982216,0.692343056201935,-0.00932038854807615,0.994985044002533,0.0995888561010361,-0.0093203904107213,0.994985103607178,0.0995888710021973,-0.00932038947939873,0.994985044002533,0.0995888561010361,-0.00932038854807615,0.994985044002533,0.0995888635516167,-0.0093203904107213,0.994985044002533,0.0995888784527779,-0.00932038947939873,0.994985044002533,0.0995888635516167,0.634921848773956,0.479213386774063,-0.605994164943695,0.634921848773956,0.479213416576386,-0.60599410533905,0.634921848773956,0.479213356971741,-0.605994164943695,0.116205841302872,0.990597665309906,-0.0721976011991501,0.11613442003727,0.990547120571136,-0.0730022192001343,0.110147669911385,0.984360158443451,-0.137487009167671,0.110147655010223,0.984360098838806,-0.137487009167671,0.110147655010223,0.984360098838806,-0.137487009167671,-0.128462865948677,0.010445605032146,-0.991659283638,-0.085923045873642,0.00221509113907814,-0.99629932641983,-0.0927001312375069,0.00352447549812496,-0.995687901973724,-0.128462851047516,0.0104456041008234,-0.991659283638,-0.128655910491943,-0.990736246109009,0.0434678047895432,-0.128655895590782,-0.990736186504364,0.0434678010642529,-0.128655895590782,-0.990736246109009,0.0434678010642529,-0.128655880689621,-0.990736186504364,0.0434677973389626,-0.128655895590782,-0.990736186504364,0.0434677973389626,-0.128655895590782,-0.990736186504364,0.0434678010642529,-0.128655895590782,-0.990736246109009,0.0434678010642529,0.99186646938324,-0.116901837289333,-0.0503483191132545,0.991866409778595,-0.116901837289333,-0.050348311662674,0.991866409778595,-0.116901844739914,-0.050348311662674,0.99186646938324,-0.116901837289333,-0.0503483153879642,
- 0.991866409778595,-0.116901829838753,-0.0503483079373837,0.99186646938324,-0.116901852190495,-0.0503483191132545,-0.989762783050537,0.127137541770935,0.0648506805300713,-0.989762842655182,0.127137556672096,0.0648506879806519,-0.989762783050537,0.127137556672096,0.0648506879806519,-0.989762842655182,0.127137541770935,0.0648506879806519,-0.989762842655182,0.127137556672096,0.0648506879806519,-0.989762783050537,0.127137556672096,0.0648506805300713,0.491833716630936,-0.624085485935211,-0.607138276100159,0.49183377623558,-0.624085485935211,-0.607138335704803,0.491833746433258,-0.624085485935211,-0.607138335704803,-0.0927001312375069,0.00352447549812496,-0.995687901973724,-0.085923045873642,0.00221509113907814,-0.99629932641983,-0.0531706735491753,-0.00410322053357959,-0.998577058315277,-0.0531706772744656,-0.0041032200679183,-0.998577058315277,-0.053170669823885,-0.00410322053357959,-0.998577058315277,0.0538270995020866,0.0233693588525057,0.998276770114899,0.0538270957767963,0.0233693569898605,0.998276710510254,0.0538271032273769,0.0233693569898605,0.998276829719543,0.0538270995020866,0.0233693569898605,0.998276829719543,0.0538271069526672,0.0233693588525057,0.998276770114899,-0.917192757129669,0.018878361210227,0.39799639582634,-0.917192757129669,0.018878361210227,0.39799639582634,-0.917192757129669,0.0188783630728722,0.397996425628662,0.122020222246647,0.99252188205719,-0.00335746584460139,0.122020237147808,0.99252188205719,-0.00335746607743204,0.11613442003727,0.990547120571136,-0.0730022192001343,0.116205841302872,0.990597665309906,-0.0721976011991501,-0.0024499548599124,0.052305705845356,-0.998628079891205,-0.0024499548599124,0.0523057095706463,-0.99862813949585,-0.0024499548599124,0.0523057095706463,-0.998628079891205,-0.00244995509274304,0.0523057095706463,-0.99862813949585,-0.00244995509274304,0.0523057132959366,-0.99862813949585,-0.0024499548599124,0.0523057095706463,-0.99862813949585,0.0130701903253794,0.000473253807285801,0.999914467334747,0.0130701912567019,0.000473253807285801,0.999914526939392,0.0130701912567019,0.00047325377818197,0.999914467334747,
- 0.0130701903253794,0.000473253807285801,0.999914467334747,0.0130701912567019,0.00047325377818197,0.999914467334747,0.0130701903253794,0.00047325377818197,0.999914467334747,0.999379098415375,0.0352340675890446,-1.7905111917571e-006,0.999379098415375,0.0352340638637543,-1.7905111917571e-006,0.99937903881073,0.0352340638637543,-1.79051085069659e-006,0.99937903881073,0.0352340675890446,-1.79051096438343e-006,0.99937903881073,0.0352340638637543,-1.79051096438343e-006,0.99937915802002,0.0352340638637543,-1.79051107807027e-006,0.302002400159836,-0.849070489406586,-0.433444231748581,0.302002370357513,-0.849070489406586,-0.433444231748581,0.302002400159836,-0.849070429801941,-0.433444231748581,0.36085644364357,0.593276143074036,0.719587445259094,0.36085644364357,0.593276143074036,0.719587385654449,0.36085644364357,0.59327620267868,0.719587445259094,-0.0466145947575569,0.998912930488586,-0.00020556291565299,-0.0466145947575569,0.998912990093231,-0.000205562930204906,-0.0466145947575569,0.998912930488586,-0.000205562901101075,-0.0466145984828472,0.998912990093231,-0.000205562930204906,-0.0466145947575569,0.998912930488586,-0.00020556291565299,-0.0466145947575569,0.998912930488586,-0.00020556291565299,-0.998814225196838,-0.0343175046145916,-0.0345309935510159,-0.998814284801483,-0.0343175046145916,-0.0345309935510159,-0.998814225196838,-0.0343175008893013,-0.0345309898257256,-0.998814225196838,-0.0343175008893013,-0.0345309898257256,-0.998814284801483,-0.0343175008893013,-0.0345309935510159,-0.998814225196838,-0.0343175046145916,-0.0345309898257256,-0.755168616771698,0.131026208400726,0.642302513122559,-0.755168616771698,0.131026193499565,0.642302453517914,-0.755168676376343,0.131026208400726,0.642302513122559,0.0466073453426361,-0.9989133477211,0.000199590474949218,0.0466073453426361,-0.99891322851181,0.000199590474949218,0.0466073453426361,-0.998913288116455,0.000199590474949218,0.0466073490679264,-0.998913288116455,0.000199590489501134,0.0466073490679264,-0.998913288116455,0.000199590489501134,0.0466073378920555,-0.998913168907166,0.000199590445845388,
- -0.659636080265045,-0.495013147592545,-0.565546035766602,-0.6596360206604,-0.495013147592545,-0.565546035766602,-0.659636080265045,-0.495013117790222,-0.565546035766602,-0.00509931752458215,0.999689221382141,0.024403240531683,-0.00509931799024343,0.999689221382141,0.0244032423943281,-0.00509931659325957,0.999689161777496,0.0244032368063927,-0.00509931752458215,0.999689221382141,0.024403240531683,-0.00509931705892086,0.999689161777496,0.024403240531683,-0.996684372425079,-0.00749785313382745,0.0810191705822945,-0.999322593212128,-0.00917790830135345,0.035638976842165,-0.999090313911438,-0.00895505119115114,0.0416924469172955,-0.996684372425079,-0.00749785359948874,0.0810191780328751,0.0501226186752319,-0.998649597167969,-0.0136637855321169,0.0501226149499416,-0.998649597167969,-0.0136637836694717,0.0501226149499416,-0.998649656772614,-0.0136637855321169,0.0501226149499416,-0.998649597167969,-0.0136637846007943,0.0501226112246513,-0.998649537563324,-0.0136637827381492,0.0501226149499416,-0.998649656772614,-0.0136637846007943,0.0501226149499416,-0.998649597167969,-0.0136637836694717,-5.46800765732769e-006,0.0209939274936914,-0.999779641628265,-5.46800720258034e-006,0.0209939256310463,-0.999779641628265,-5.46800765732769e-006,0.0209939274936914,-0.999779641628265,-5.46800765732769e-006,0.0209939274936914,-0.999779641628265,-5.46800720258034e-006,0.0209939256310463,-0.999779641628265,0.0135957952588797,-0.0124607551842928,0.999829947948456,0.0135957961902022,-0.0124607561156154,0.999830007553101,0.0135957952588797,-0.0124607561156154,0.999829947948456,0.0135957971215248,-0.0124607570469379,0.999830007553101,0.0135957943275571,-0.0124607542529702,0.999829947948456,-0.583500266075134,-0.488936692476273,-0.648435354232788,-0.583500325679779,-0.48893666267395,-0.648435354232788,-0.583500266075134,-0.488936632871628,-0.648435294628143,-0.999090313911438,-0.00895505119115114,0.0416924469172955,-0.999322593212128,-0.00917790830135345,0.035638976842165,-0.999944865703583,-0.0104908738285303,-0.000240143766859546,-0.999944925308228,-0.0104908747598529,-0.000240143781411462,
- -0.999944806098938,-0.0104908738285303,-0.000240143766859546,0.999620497226715,0.0274363961070776,0.00246827839873731,0.999620497226715,0.0274363961070776,0.00246827839873731,0.99962043762207,0.0274363942444324,0.00246827839873731,0.999620616436005,0.0274363961070776,0.00246827863156796,0.999620378017426,0.0274363961070776,0.00246827839873731,0.334945023059845,-0.0940277054905891,0.937534332275391,0.334945023059845,-0.0940276980400085,0.937534332275391,0.334945023059845,-0.0940277054905891,0.937534391880035,-0.998570919036865,0.0534423887729645,-0.000144348276080564,-0.998571038246155,0.0534423887729645,-0.000144348276080564,-0.998570919036865,0.0534423887729645,-0.000144348276080564,-0.99857097864151,0.0534423962235451,-0.000144348290632479,-0.99857097864151,0.0534423924982548,-0.000144348290632479,-0.99857097864151,0.0534423924982548,-0.000144348276080564,0.999909937381744,-0.00117898941971362,-0.0133741199970245,0.9999098777771,-0.00117898953612894,-0.0133741209283471,0.999909818172455,-0.00117898941971362,-0.013374119065702,0.999909818172455,-0.00117898953612894,-0.0133741181343794,0.999909818172455,-0.00117898941971362,-0.0133741199970245,0.999909937381744,-0.00117898965254426,-0.0133741209283471,0.00186547578778118,0.0234956797212362,-0.999722182750702,0.00186547578778118,0.0234956834465265,-0.999722182750702,0.00186547578778118,0.0234956797212362,-0.999722182750702,0.0018654759041965,0.0234956834465265,-0.999722242355347,0.0018654759041965,0.0234956815838814,-0.999722182750702,0.0018654759041965,0.0234956815838814,-0.999722182750702,-0.427683591842651,-0.830593883991241,-0.356651693582535,-0.427683651447296,-0.830593943595886,-0.356651723384857,-0.427683651447296,-0.830593883991241,-0.356651693582535,0.700444459915161,0.56794673204422,-0.432219982147217,0.700444459915161,0.567946672439575,-0.432220011949539,0.700444459915161,0.56794661283493,-0.432219952344894,0.00125184329226613,0.998861730098724,0.0476846247911453,0.00125184317585081,0.99886167049408,0.047684621065855,0.00125184305943549,0.998861610889435,0.0476846136152744,
- 0.00125184329226613,0.998861730098724,0.047684621065855,0.00125184329226613,0.99886167049408,0.0476846136152744,0.00125184305943549,0.998861610889435,0.0476846173405647,-0.0301036164164543,-0.0226771887391806,0.999289453029633,-0.0301036182790995,-0.0226771887391806,0.999289512634277,-0.0301036145538092,-0.0226771887391806,0.999289453029633,-0.0301036182790995,-0.0226771906018257,0.999289572238922,-0.0301036182790995,-0.0226771887391806,0.999289512634277,-0.030103612691164,-0.0226771868765354,0.999289453029633,0.565822303295136,0.117985926568508,0.816041946411133,0.56582236289978,0.117985926568508,0.816041946411133,0.565822303295136,0.117985911667347,0.816041886806488,-0.00125672365538776,-0.998862206935883,-0.047674085944891,-0.00125672365538776,-0.998862147331238,-0.0476740822196007,-0.00125672365538776,-0.998862147331238,-0.0476740822196007,-0.00125672365538776,-0.998862206935883,-0.047674085944891,-0.00125672353897244,-0.998862087726593,-0.0476740822196007,-0.00125672353897244,-0.998862206935883,-0.0476740822196007,-0.514961957931519,-0.441147923469543,0.734984755516052,-0.514961957931519,-0.441147893667221,0.734984815120697,-0.514962017536163,-0.441147923469543,0.734984815120697,-0.21360756456852,-0.972838819026947,0.0891989096999168,-0.213607534766197,-0.972838759422302,0.0891988947987556,-0.213607579469681,-0.972838819026947,0.0891989022493362,-0.213607579469681,-0.972838878631592,0.0891989096999168,-0.213607579469681,-0.972838878631592,0.0891989096999168,-0.213607549667358,-0.972838819026947,0.0891989022493362,-0.958027362823486,0.194408297538757,-0.210687071084976,-0.958027303218842,0.194408297538757,-0.210687071084976,-0.958027303218842,0.194408282637596,-0.210687056183815,-0.958027422428131,0.194408297538757,-0.210687085986137,-0.958027362823486,0.194408312439919,-0.210687085986137,0.951855540275574,-0.220174387097359,0.213293582201004,0.951855540275574,-0.220174387097359,0.213293582201004,0.951855659484863,-0.220174387097359,0.213293582201004,0.951855659484863,-0.22017440199852,0.213293597102165,0.951855599880219,-0.22017440199852,0.213293597102165,
- 0.951855540275574,-0.220174372196198,0.213293582201004,0.2040895819664,0.972424507141113,-0.112862832844257,0.204089567065239,0.972424447536469,-0.112862825393677,0.2040895819664,0.972424507141113,-0.112862840294838,0.204089567065239,0.972424447536469,-0.112862832844257,0.2040895819664,0.972424507141113,-0.112862832844257,0.128792300820351,-0.102838300168514,-0.986324906349182,0.128792300820351,-0.102838307619095,-0.986324965953827,0.128792315721512,-0.102838307619095,-0.986324906349182,0.128792285919189,-0.102838300168514,-0.986324846744537,0.128792300820351,-0.102838300168514,-0.986324846744537,-0.132626071572304,0.0920459404587746,0.986882925033569,-0.132626056671143,0.092045933008194,0.986882865428925,-0.132626056671143,0.092045933008194,0.986882925033569,-0.132626056671143,0.0920459181070328,0.986882865428925,-0.13262602686882,0.0920459255576134,0.98688280582428,-0.132626056671143,0.0920459255576134,0.986882865428925,0.428812772035599,0.332623332738876,0.839929401874542,0.428812772035599,0.332623332738876,0.839929342269897,0.428812772035599,0.332623362541199,0.839929461479187,-0.828189969062805,-0.345522165298462,0.441266059875488,-0.828189969062805,-0.345522195100784,0.441266119480133,-0.828189969062805,-0.345522165298462,0.441266059875488,0.452691346406937,-0.837910652160645,-0.304919868707657,0.452691346406937,-0.837910711765289,-0.304919868707657,0.452691346406937,-0.837910711765289,-0.304919868707657,0.21964667737484,0.971100509166718,-0.0933769047260284,0.21964667737484,0.971100449562073,-0.0933768972754478,0.219646647572517,0.971100449562073,-0.0933768898248672,0.219646662473679,0.971100449562073,-0.0933768972754478,0.219646662473679,0.971100509166718,-0.0933768972754478,0.0808869004249573,0.0188790392130613,0.996544480323792,0.0374536439776421,0.0256534777581692,0.998969078063965,0.0444881580770016,0.024560421705246,0.998707950115204,0.0808869004249573,0.0188790392130613,0.996544420719147,-0.213186040520668,-0.97693133354187,0.0125263137742877,-0.213186055421829,-0.97693133354187,0.0125263156369329,-0.213186025619507,-0.976931214332581,0.0125263128429651,
- -0.213186040520668,-0.976931273937225,0.0125263147056103,-0.213186040520668,-0.976931273937225,0.0125263147056103,-0.213186025619507,-0.976931273937225,0.0125263128429651,-0.213186055421829,-0.97693133354187,0.0125263147056103,-0.973844826221466,0.227163657546043,-0.00477067520841956,-0.973844945430756,0.227163657546043,-0.00477067520841956,-0.973844885826111,0.227163672447205,-0.00477067520841956,-0.973844885826111,0.227163642644882,-0.00477067474275827,-0.973844945430756,0.227163687348366,-0.00477067567408085,0.976216852664948,-0.21653151512146,-0.010715514421463,0.976216852664948,-0.21653151512146,-0.0107155153527856,0.976216793060303,-0.216531500220299,-0.0107155134901404,0.976216733455658,-0.216531500220299,-0.0107155134901404,0.976216793060303,-0.216531500220299,-0.0107155134901404,-0.689967095851898,-0.426321774721146,0.584974348545074,-0.689967155456543,-0.426321804523468,0.584974408149719,-0.689967155456543,-0.426321893930435,0.584974408149719,0.0444881580770016,0.024560421705246,0.998707950115204,0.0374536439776421,0.0256534777581692,0.998969078063965,0.00431034155189991,0.0307819861918688,0.999516844749451,0.00431034155189991,0.0307819880545139,0.999516844749451,0.00431034155189991,0.0307819843292236,0.999516785144806,0.0026030670851469,-0.00414056889712811,-0.9999880194664,0.0026030670851469,-0.00414056889712811,-0.999987959861755,0.0026030670851469,-0.00414056889712811,-0.999988079071045,0.00260306731797755,-0.00414056936278939,-0.9999880194664,0.00260306755080819,-0.00414056982845068,-0.999988079071045,0.884335935115814,-0.319309294223785,-0.340575307607651,0.884335875511169,-0.319309294223785,-0.340575277805328,0.884335935115814,-0.319309294223785,-0.340575277805328,0.990469455718994,0.0105391833931208,-0.1373281031847,0.990469455718994,0.0105391824617982,-0.137328118085861,0.990469515323639,0.0105391833931208,-0.137328118085861,0.990469574928284,0.0105391852557659,-0.137328147888184,0.990469515323639,0.0105391833931208,-0.137328118085861,0.990469574928284,0.0105391833931208,-0.137328118085861,-0.0941757261753082,0.0563894361257553,-0.993957281112671,
- -0.0941757187247276,0.0563894398510456,-0.993957340717316,-0.0941757187247276,0.0563894361257553,-0.993957281112671,-0.0941757410764694,0.0563894473016262,-0.99395740032196,-0.0941757187247276,0.0563894435763359,-0.993957340717316,0.112293623387814,-0.0564519986510277,0.992070138454437,0.112293608486652,-0.0564519949257374,0.992070198059082,0.112293615937233,-0.0564519949257374,0.992070198059082,0.112293615937233,-0.0564519986510277,0.992070257663727,0.112293615937233,-0.0564519949257374,0.992070257663727,0.112293630838394,-0.056452002376318,0.992070257663727,-0.992606222629547,0.0125740300863981,0.120725564658642,-0.992606282234192,0.0125740310177207,0.120725557208061,-0.992606222629547,0.0125740300863981,0.120725564658642,-0.992606282234192,0.0125740300863981,0.120725557208061,-0.992606401443481,0.0125740310177207,0.120725579559803,0.010523522272706,0.996938288211823,0.0774823799729347,0.0105235204100609,0.996938169002533,0.0774823799729347,0.0105235213413835,0.996938169002533,0.0774823725223541,0.0105235204100609,0.996938228607178,0.0774823874235153,0.0105235204100609,0.996938109397888,0.0774823725223541,0.000141838972922415,-0.996707677841187,-0.0810788124799728,0.00014183898747433,-0.996707737445831,-0.0810788199305534,0.000141838958370499,-0.996707677841187,-0.0810788050293922,0.00014183898747433,-0.996707737445831,-0.0810788199305534,0.000141838972922415,-0.996707677841187,-0.0810788199305534,0.00014183898747433,-0.996707677841187,-0.0810788124799728,-0.261304169893265,-0.756450057029724,0.599585950374603,-0.261304199695587,-0.756450116634369,0.599586069583893,-0.261304199695587,-0.756450116634369,0.599586009979248,0.346097558736801,-0.389450550079346,-0.853548347949982,0.346097528934479,-0.389450520277023,-0.853548288345337,0.346097558736801,-0.389450520277023,-0.853548407554626,0.654358923435211,0.397117614746094,0.643515348434448,0.654358923435211,0.397117644548416,0.643515288829803,0.654358863830566,0.397117614746094,0.643515288829803,-0.00402323296293616,0.118256367743015,-0.992974936962128,-0.00402323342859745,0.118256375193596,-0.992974936962128,
- -0.00402323342859745,0.118256367743015,-0.992974936962128,-0.00402323342859745,0.118256375193596,-0.992974936962128,-0.00402323342859745,0.118256382644176,-0.992974996566772,-0.00402323296293616,0.118256375193596,-0.992974936962128,0.017014104872942,-0.0673278495669365,0.997585773468018,0.017014104872942,-0.0673278495669365,0.997585833072662,0.0170141085982323,-0.0673278644680977,0.997585833072662,0.0170141067355871,-0.0673278570175171,0.997585833072662,0.017014104872942,-0.0673278495669365,0.997585773468018,0.0170141067355871,-0.0673278495669365,0.997585773468018,0.999878525733948,-0.0146472854539752,-0.00531737226992846,0.999878585338593,-0.0146472863852978,-0.00531737320125103,0.999878585338593,-0.0146472854539752,-0.00531737320125103,0.999878525733948,-0.0146472835913301,-0.00531737226992846,0.999878585338593,-0.0146472854539752,-0.00531737320125103,0.999878525733948,-0.0146472845226526,-0.00531737226992846,0.256008297204971,-0.827515780925751,-0.499677270650864,0.256008297204971,-0.827515840530396,-0.499677330255508,0.256008297204971,-0.827515840530396,-0.499677300453186,0.388888895511627,0.517861604690552,0.761961102485657,0.388888865709305,0.517861545085907,0.761961162090302,0.38888892531395,0.517861604690552,0.761961221694946,0.00354294409044087,0.997639894485474,0.0685712322592735,0.00354294362477958,0.997639894485474,0.0685712322592735,0.00354294432327151,0.997640013694763,0.0685712397098541,0.00354294409044087,0.997639954090118,0.0685712322592735,0.00354294409044087,0.997639894485474,0.0685712248086929,0.00354294409044087,0.997639954090118,0.0685712397098541,-0.999397575855255,0.0179037619382143,-0.0297321453690529,-0.99939751625061,0.0179037619382143,-0.029732147231698,-0.999397456645966,0.017903758212924,-0.0297321435064077,-0.99939751625061,0.017903758212924,-0.0297321435064077,-0.99939751625061,0.017903758212924,-0.0297321435064077,-0.999397456645966,0.017903758212924,-0.0297321435064077,-0.738664150238037,0.123008444905281,0.662755012512207,-0.738664150238037,0.123008444905281,0.662754952907562,-0.738664150238037,0.123008452355862,0.662755012512207,
- -0.00355150154791772,-0.997639536857605,-0.0685771629214287,-0.00355150108225644,-0.99763947725296,-0.0685771629214287,-0.00355150131508708,-0.997639417648315,-0.0685771629214287,-0.00355150084942579,-0.997639417648315,-0.0685771554708481,-0.00355150131508708,-0.997639536857605,-0.0685771554708481,-0.00355150154791772,-0.997639536857605,-0.0685771629214287,-0.681220054626465,-0.418751657009125,-0.600488424301147,-0.681219935417175,-0.418751627206802,-0.600488424301147,-0.681220054626465,-0.418751657009125,-0.600488424301147,0.00495545985177159,0.9999760389328,-0.00484975287690759,0.00495545892044902,0.999975919723511,-0.0048497524112463,0.00495545892044902,0.999975979328156,-0.00484975194558501,0.00495546031743288,0.9999760389328,-0.00484975334256887,0.00495545938611031,0.999975919723511,-0.00484975194558501,-0.0812222957611084,-0.00179705489426851,-0.996694326400757,-0.0418665818870068,-0.0114913387224078,-0.999057114124298,-0.0422648154199123,-0.116415202617645,-0.992300927639008,-0.0836318507790565,-0.114861510694027,-0.98985481262207,-0.0142664182931185,-0.998684585094452,0.0492495559155941,-0.0142664201557636,-0.998684644699097,0.049249567091465,-0.0142664201557636,-0.998684585094452,0.0492495559155941,-0.0142664182931185,-0.998684585094452,0.0492495559155941,-0.0142664192244411,-0.998684585094452,0.0492495633661747,-0.0142664182931185,-0.998684644699097,0.0492495596408844,-0.0142664192244411,-0.998684585094452,0.0492495596408844,0.99999338388443,0.00277350936084986,-0.0023628247436136,0.999993324279785,0.00277350912801921,-0.00236282404512167,0.99999326467514,0.00277350912801921,-0.00236282404512167,0.999998331069946,-0.000209878533496521,-0.00183836044743657,0.999998211860657,0.000134165195049718,-0.00189884239807725,-0.999859631061554,0.0099333543330431,0.0134992087259889,-0.999791741371155,0.0183591116219759,0.00891284085810184,-0.99979168176651,0.0183591097593308,0.00891283992677927,-0.999861538410187,0.00695839338004589,0.0151181444525719,0.547411262989044,-0.615802884101868,-0.566681325435638,0.547411262989044,-0.615802824497223,-0.566681265830994,
- 0.547411322593689,-0.615802884101868,-0.566681385040283,-0.0422648154199123,-0.116415202617645,-0.992300927639008,-0.0418665818870068,-0.0114913387224078,-0.999057114124298,-0.0073331268504262,0.00233643967658281,-0.999970436096191,-0.00524161569774151,-0.117634102702141,-0.993043184280396,-0.00524161523208022,-0.117634102702141,-0.99304324388504,-0.00321075250394642,-3.54339063051157e-005,0.999994933605194,-0.00372671545483172,-0.0118294628337026,0.99992311000824,0.000882629188708961,0.0931718051433563,0.995649695396423,0.0008826291305013,0.0931718051433563,0.995649635791779,-0.919160902500153,-0.127783626317978,0.372578382492065,-0.919160842895508,-0.127783611416817,0.372578412294388,-0.919160842895508,-0.127783611416817,0.372578382492065,0.999998211860657,0.000134165195049718,-0.00189884239807725,0.999998331069946,-0.000209878533496521,-0.00183836044743657,0.999992191791534,-0.00376445427536964,-0.00121346220839769,0.99999213218689,-0.00376445380970836,-0.00121346197556704,-0.0779614150524139,0.105816319584847,-0.991324841976166,-0.0428540706634521,0.124715127050877,-0.991266667842865,-0.0418665818870068,-0.0114913387224078,-0.999057114124298,-0.0812222957611084,-0.00179705489426851,-0.996694326400757,-0.0073331268504262,0.00233643967658281,-0.999970436096191,-0.0418665818870068,-0.0114913387224078,-0.999057114124298,-0.0428540706634521,0.124715127050877,-0.991266667842865,-0.00964114908128977,0.142378509044647,-0.989765286445618,-0.999859631061554,0.0099333543330431,0.0134992087259889,-0.999861538410187,0.00695839338004589,0.0151181444525719,-0.999808192253113,-0.00118023308459669,0.0195459686219692,-0.999808251857758,-0.00118023320101202,0.0195459704846144,-0.00321075250394642,-3.54339063051157e-005,0.999994933605194,-0.00713596446439624,-0.090018130838871,0.995914459228516,-0.00713596493005753,-0.0900181382894516,0.99591451883316,-0.00372671545483172,-0.0118294628337026,0.99992311000824,-0.0535376369953156,-0.998537302017212,0.00755226379260421,-0.0535376332700253,-0.998537242412567,0.00755226286128163,-0.0535376332700253,-0.998537242412567,0.00755226379260421,
- -0.0535376369953156,-0.998537242412567,0.0075522642582655,-0.0535376332700253,-0.998537182807922,0.00755226379260421,-0.0535376407206059,-0.998537302017212,0.0075522642582655,0.998448073863983,-0.0555894747376442,0.0033325704280287,0.998448133468628,-0.0555894747376442,0.00333257019519806,0.998448133468628,-0.0555894747376442,0.00333257066085935,0.998448133468628,-0.0555894784629345,0.00333257066085935,0.998448193073273,-0.0555894784629345,0.0033325704280287,0.998448193073273,-0.0555894821882248,0.00333257066085935,-0.999430596828461,0.0335157923400402,-0.00389655167236924,-0.99943071603775,0.0335157960653305,-0.00389655190519989,-0.999430537223816,0.0335157886147499,-0.00389655120670795,-0.999430596828461,0.0335157960653305,-0.00389655190519989,-0.999430596828461,0.0335157960653305,-0.00389655190519989,-0.999430596828461,0.0335157886147499,-0.0038965514395386,-0.999430596828461,0.0335157923400402,-0.0038965514395386,0.0710375979542732,0.982309997081757,0.173265188932419,0.071037583053112,0.982309937477112,0.173265159130096,0.070164293050766,0.993494510650635,0.0896962732076645,0.0702187493443489,0.99311101436615,0.0938080623745918,-0.00104209454730153,-0.0123183755204082,0.999923586845398,-0.00104209454730153,-0.0123183755204082,0.999923586845398,-0.00104209454730153,-0.0123183764517307,0.999923586845398,-0.00104209454730153,-0.0123183755204082,0.999923586845398,-0.00104209454730153,-0.0123183755204082,0.999923586845398,0.00145125284325331,-0.00505038537085056,-0.999986171722412,0.00145125295966864,-0.00505038583651185,-0.999986171722412,0.00145125295966864,-0.00505038630217314,-0.999986171722412,0.00145125295966864,-0.00505038537085056,-0.999986231327057,0.00145125295966864,-0.00505038583651185,-0.999986171722412,0.00145125295966864,-0.00505038583651185,-0.999986231327057,-0.52720183134079,0.367126315832138,-0.766339659690857,-0.527201890945435,0.36712634563446,-0.766339600086212,-0.527201890945435,0.367126375436783,-0.766339659690857,0.698989152908325,-0.5195072889328,-0.491453230381012,0.698989152908325,-0.5195072889328,-0.491453260183334,
- 0.698989152908325,-0.5195072889328,-0.491453289985657,-0.654952526092529,-0.595660328865051,0.465001136064529,-0.654952526092529,-0.595660269260406,0.465001076459885,-0.654952526092529,-0.595660328865051,0.465001106262207,0.0702187493443489,0.99311101436615,0.0938080623745918,0.070164293050766,0.993494510650635,0.0896962732076645,0.0689767301082611,0.997501313686371,0.0152765344828367,0.0689767226576805,0.997501254081726,0.0152765326201916,0.0689767375588417,0.997501254081726,0.0152765335515141,-0.0029696892015636,-0.99999338388443,0.00210687424987555,-0.0029696892015636,-0.99999338388443,0.00210687424987555,-0.0029696892015636,-0.999993324279785,0.0021068740170449,-0.00296968943439424,-0.99999338388443,0.0021068740170449,-0.0029696892015636,-0.999993324279785,0.00210687424987555,-0.0029696892015636,-0.999993324279785,0.0021068740170449,-1,1.40021285233161e-007,0,-1,1.40021285233161e-007,0,-1,1.40021271022306e-007,0,-1,1.40021285233161e-007,0,-1,1.40021285233161e-007,0,0.999764382839203,-0.0217082630842924,0.000325463333865628,0.999764323234558,-0.0217082612216473,0.000325463333865628,0.999764323234558,-0.0217082649469376,0.000325463333865628,0.999764263629913,-0.0217082630842924,0.000325463333865628,0.999764263629913,-0.0217082630842924,0.000325463333865628,0.999764323234558,-0.0217082649469376,0.000325463333865628,-0.0125996237620711,0.999587178230286,-0.0258188154548407,-0.0125996274873614,0.999587297439575,-0.025818819180131,-0.0125996237620711,0.999587178230286,-0.0258188154548407,-0.0125996265560389,0.99958723783493,-0.0258188173174858,-0.0125996265560389,0.999587297439575,-0.025818819180131,-0.00170819810591638,-0.0144863910973072,-0.999893546104431,-0.00170819798950106,-0.0144863910973072,-0.999893605709076,-0.00170819798950106,-0.0144863920286298,-0.999893546104431,-0.00170819810591638,-0.0144863920286298,-0.999893605709076,-0.00170819810591638,-0.0144863910973072,-0.999893605709076,2.87994353129761e-005,0.00425294740125537,0.999990940093994,2.87994353129761e-005,0.00425294740125537,0.999990880489349,2.87994371319655e-005,0.00425294740125537,0.999990940093994,
- 2.87994389509549e-005,0.00425294740125537,0.999990940093994,2.87994407699443e-005,0.00425294833257794,0.999990999698639,2.87994371319655e-005,0.00425294786691666,0.999990999698639,0.526764690876007,0.330433666706085,0.783155500888824,0.526764750480652,0.33043372631073,0.783155560493469,0.526764690876007,0.330433696508408,0.783155500888824,-0.713591814041138,-0.46624282002449,0.522880911827087,-0.713591814041138,-0.466242849826813,0.522880971431732,-0.713591754436493,-0.466242790222168,0.522880911827087,0.610276341438293,-0.626643598079681,-0.484644770622253,0.610276401042938,-0.626643598079681,-0.484644800424576,0.610276341438293,-0.626643657684326,-0.484644740819931,-0.00507153011858463,-0.0264878459274769,0.999636292457581,-0.00507153011858463,-0.0264878440648317,0.999636292457581,-0.00507153011858463,-0.0264878459274769,0.999636232852936,-0.00507153011858463,-0.0264878440648317,0.999636292457581,-0.00507152965292335,-0.0264878422021866,0.999636173248291,-0.00507153011858463,-0.0264878440648317,0.999636292457581,0.0123197780922055,-0.0357294343411922,-0.999285578727722,0.0123197780922055,-0.0357294343411922,-0.999285519123077,0.0123197780922055,-0.0357294380664825,-0.999285519123077,0.0123197762295604,-0.0357294343411922,-0.999285519123077,0.0123197808861732,-0.0357294417917728,-0.999285578727722,0.0123197790235281,-0.0357294380664825,-0.999285578727722,0.997133433818817,-0.0756500363349915,0.00145935092587024,0.997106611728668,-0.0760130286216736,0.000658287899568677,0.997200667858124,-0.0746857672929764,0.0035867637488991,0.997200727462769,-0.074685774743557,0.00358676421456039,0.997200667858124,-0.0746857672929764,0.0035867637488991,0.305305153131485,0.870329141616821,0.386414349079132,0.305305153131485,0.870329082012177,0.38641431927681,0.305305153131485,0.870329141616821,0.386414378881454,0.30239599943161,-0.659246325492859,-0.688440978527069,0.302395969629288,-0.659246265888214,-0.688440978527069,0.30239599943161,-0.659246325492859,-0.688440978527069,-0.0842055603861809,-0.99594384431839,0.0317076630890369,
- -0.0842055380344391,-0.995943784713745,0.0317076556384563,-0.0842055454850197,-0.99594384431839,0.0317076593637466,-0.0842055454850197,-0.995943784713745,0.0317076593637466,-0.0844771713018417,-0.993792951107025,0.0723818466067314,-0.084467239677906,-0.993935346603394,0.0704121738672256,-0.996612310409546,0.0751944482326508,0.0333113931119442,-0.996612370014191,0.0751944556832314,0.0333113931119442,-0.996481716632843,0.0755427554249763,0.0362958125770092,-0.99650639295578,0.0754791423678398,0.0357502102851868,-0.996612310409546,0.0751944556832314,0.0333113893866539,-0.733398139476776,-0.15877540409565,-0.66099739074707,-0.733398139476776,-0.15877540409565,-0.66099739074707,-0.733398079872131,-0.15877540409565,-0.660997331142426,0.0868857651948929,0.996139824390411,-0.0124970888718963,0.0868688821792603,0.996132552623749,-0.0131769115105271,0.0829569548368454,0.986465036869049,-0.141439199447632,0.0829569324851036,0.986464858055115,-0.141439184546471,-0.597901582717896,0.577448666095734,0.555937707424164,-0.597901582717896,0.577448666095734,0.555937707424164,-0.59790164232254,0.577448666095734,0.555937707424164,0.997027695178986,-0.0770272091031075,-0.00158059410750866,0.997106611728668,-0.0760130286216736,0.000658287899568677,0.997133433818817,-0.0756500363349915,0.00145935092587024,0.997027814388275,-0.0770272091031075,-0.0015805943403393,0.997027695178986,-0.0770271942019463,-0.00158059387467802,-0.084467239677906,-0.993935346603394,0.0704121738672256,-0.0844771713018417,-0.993792951107025,0.0723818466067314,-0.0846207216382027,-0.988533556461334,0.125062644481659,-0.0846207290887833,-0.988533675670624,0.12506265938282,-0.99650639295578,0.0754791423678398,0.0357502102851868,-0.996481716632843,0.0755427554249763,0.0362958125770092,-0.996363520622253,0.0758387371897697,0.0388362146914005,-0.996363520622253,0.0758387446403503,0.0388362184166908,-0.996363580226898,0.0758387520909309,0.0388362184166908,0.0888695046305656,0.992514252662659,0.083770863711834,0.0888695120811462,0.992514312267303,0.0837708711624146,0.0888695046305656,0.992514252662659,0.0837708711624146,
- 0.0888695195317268,0.992514371871948,0.0837708711624146,0.0868688821792603,0.996132552623749,-0.0131769115105271,0.0868857651948929,0.996139824390411,-0.0124970888718963,0.0771071687340736,0.996906459331512,0.0152310309931636,0.0771069005131722,0.996916830539703,0.0145449144765735,0.0769567266106606,0.996123313903809,-0.0426160208880901,0.0769567117094994,0.996123254299164,-0.0426160097122192,0.0769567117094994,0.996123254299164,-0.0426160097122192,-0.0771438479423523,-0.0371461063623428,-0.996327757835388,-0.0326726473867893,-0.0434184372425079,-0.998522579669952,-0.0390021689236164,-0.0425316318869591,-0.99833357334137,-0.0771438404917717,-0.0371461063623428,-0.996327817440033,-0.0808030068874359,-0.993687093257904,0.0778265595436096,-0.0808030068874359,-0.993687033653259,0.0778265595436096,-0.0808030068874359,-0.993687033653259,0.0778265595436096,-0.0808029919862747,-0.993686974048615,0.077826552093029,-0.0821060836315155,-0.987309098243713,0.135937884449959,-0.0819759219884872,-0.988179743289948,0.129540488123894,0.997283279895782,-0.0731428265571594,0.00872604828327894,0.997256100177765,-0.0734308734536171,0.00938340742141008,0.997393310070038,-0.071912981569767,0.00592035846784711,0.997393250465393,-0.0719129741191864,0.00592035800218582,0.997393429279327,-0.071912981569767,0.00592035939916968,-0.996994137763977,0.0773516967892647,0.00439060525968671,-0.99636322259903,0.0851934626698494,0.00151029066182673,-0.996266543865204,0.0863246470689774,0.00109461776446551,-0.996994197368622,0.0773517042398453,0.004390605725348,0.56842714548111,-0.616771996021271,-0.54450249671936,0.568427085876465,-0.616771936416626,-0.54450249671936,0.56842714548111,-0.616771996021271,-0.544502437114716,-0.0390021689236164,-0.0425316318869591,-0.99833357334137,-0.0326726473867893,-0.0434184372425079,-0.998522579669952,0.00210231356322765,-0.0482556782662869,-0.998832821846008,0.00210231333039701,-0.0482556708157063,-0.998832821846008,0.00210231309756637,-0.0482556745409966,-0.998832702636719,0.00913347490131855,0.125772729516029,0.992017030715942,
- 0.00913347396999598,0.125772729516029,0.992017030715942,0.00913347583264112,0.125772744417191,0.992017090320587,0.00913347490131855,0.125772729516029,0.992017090320587,0.00913347396999598,0.125772729516029,0.992016971111298,-0.932770609855652,-0.0166294369846582,0.360086649656296,-0.932770609855652,-0.0166294351220131,0.360086649656296,-0.932770609855652,-0.0166294369846582,0.360086679458618,0.0769913494586945,0.994207620620728,0.074990876019001,0.0769913494586945,0.994207561016083,0.074990876019001,0.0771069005131722,0.996916830539703,0.0145449144765735,0.0771071687340736,0.996906459331512,0.0152310309931636,0.997083723545074,-0.0751472562551498,0.0133019974455237,0.997256100177765,-0.0734308734536171,0.00938340742141008,0.997283279895782,-0.0731428265571594,0.00872604828327894,0.997083604335785,-0.0751472562551498,0.0133019955828786,-0.0819759219884872,-0.988179743289948,0.129540488123894,-0.0821060836315155,-0.987309098243713,0.135937884449959,-0.0829968824982643,-0.979188203811646,0.185208022594452,-0.0829968750476837,-0.979188144207001,0.185208007693291,-0.0829968824982643,-0.979188144207001,0.185208022594452,-0.996266543865204,0.0863246470689774,0.00109461776446551,-0.99636322259903,0.0851934626698494,0.00151029066182673,-0.99555492401123,0.0941650792956352,-0.00178784993477166,-0.99555504322052,0.0941650792956352,-0.0017878501676023,-0.995554983615875,0.0941650792956352,-0.00178784993477166,0.0431631356477737,0.998184502124786,0.0420073196291924,0.0431631952524185,0.998179793357849,0.0421194843947887,0.0430279932916164,0.998721122741699,-0.0265463106334209,0.0430279970169067,0.998721122741699,-0.0265463106334209,0.0430279895663261,0.998721122741699,-0.0265463087707758,-0.0527086965739727,-0.019888561218977,-0.998411893844604,-0.0200221501290798,-0.0242239665240049,-0.999506056308746,-0.0264291744679213,-0.0233764722943306,-0.999377310276031,-0.0527086965739727,-0.019888561218977,-0.998411893844604,-0.0498287007212639,-0.996532738208771,0.0666302517056465,-0.0498287007212639,-0.996532797813416,0.0666302517056465,
- -0.0498286969959736,-0.996532738208771,0.0666302517056465,-0.0498287007212639,-0.996532797813416,0.0666302517056465,-0.0498286969959736,-0.996532738208771,0.0666302517056465,-0.0498286932706833,-0.996532678604126,0.0666302442550659,-0.0498286969959736,-0.996532738208771,0.0666302517056465,0.999171376228333,-0.0402962937951088,0.00571581209078431,0.999171495437622,-0.0402962975203991,0.00571581302210689,0.999171376228333,-0.0402962975203991,0.00571581209078431,0.999171435832977,-0.0402963012456894,0.00571581302210689,0.999171376228333,-0.0402962937951088,0.00571581162512302,0.999171376228333,-0.0402962937951088,0.0057158125564456,-0.9984290599823,0.0546205788850784,0.0124949859455228,-0.998429000377655,0.0546205714344978,0.0124949840828776,-0.998429000377655,0.0546205714344978,0.0124949850142002,-0.9984290599823,0.0546205826103687,0.0124949859455228,-0.998429000377655,0.0546205714344978,0.0124949850142002,-0.998429000377655,0.0546205714344978,0.0124949850142002,0.457736223936081,-0.640678584575653,-0.616448283195496,0.457736194133759,-0.640678584575653,-0.616448283195496,0.457736223936081,-0.640678584575653,-0.616448283195496,-0.0264291744679213,-0.0233764722943306,-0.999377310276031,-0.0200221501290798,-0.0242239665240049,-0.999506056308746,0.00380868720822036,-0.0273663699626923,-0.999618232250214,0.00380868744105101,-0.0273663681000471,-0.999618172645569,0.00380868697538972,-0.0273663681000471,-0.999618172645569,-0.00354893715120852,0.0507640466094017,0.998704373836517,-0.00354893715120852,0.050764050334692,0.998704373836517,-0.00354893691837788,0.0507640428841114,0.998704314231873,-0.00354893738403916,0.0507640540599823,0.998704373836517,-0.00354893761686981,0.050764050334692,0.998704373836517,-0.890987575054169,-0.0707759484648705,0.448477417230606,-0.890987515449524,-0.0707759484648705,0.448477387428284,-0.890987575054169,-0.0707759559154511,0.448477447032928,0.0430860854685307,0.992545247077942,0.114007450640202,0.043086089193821,0.992545127868652,0.114007450640202,0.0431631952524185,0.998179793357849,0.0421194843947887,
- 0.0431631356477737,0.998184502124786,0.0420073196291924,0.99952757358551,0.0293692201375961,-0.00906151533126831,0.99952757358551,0.0293692201375961,-0.00906151533126831,0.999527633190155,0.0293692220002413,-0.00906151533126831,0.99952757358551,0.0293692201375961,-0.00906151533126831,0.99952757358551,0.0293692201375961,-0.00906151439994574,0.99952757358551,0.029369218274951,-0.00906151533126831,-0.999516904354095,0.0231105722486973,0.0207810048013926,-0.99951696395874,0.0231105759739876,0.0207810066640377,-0.999516844749451,0.0231105741113424,0.0207810029387474,-0.999516844749451,0.0231105741113424,0.0207810048013926,-0.999516844749451,0.0231105722486973,0.0207810029387474,-0.999516904354095,0.0231105741113424,0.0207810048013926,0.00460337055847049,0.0419355966150761,0.999109745025635,0.00460337055847049,0.0419355966150761,0.999109745025635,0.00460337055847049,0.0419355966150761,0.99910980463028,0.00460337055847049,0.0419356003403664,0.999109745025635,0.00460337055847049,0.0419356003403664,0.99910980463028,0.0046033700928092,0.0419355966150761,0.99910968542099,0.4102942943573,-0.835140407085419,0.366331905126572,0.410294264554977,-0.835140407085419,0.366331905126572,0.410294264554977,-0.835140347480774,0.366331905126572,-0.689030706882477,0.595990359783173,0.412349760532379,-0.689030647277832,0.595990359783173,0.412349760532379,-0.689030587673187,0.595990300178528,0.412349700927734,0.0223339758813381,0.99702912569046,-0.073716901242733,0.0223339758813381,0.99702912569046,-0.073716901242733,0.0223339777439833,0.99702912569046,-0.073716901242733,0.022333974018693,0.997029006481171,-0.0737168937921524,0.022333974018693,0.997029066085815,-0.073716901242733,0.022333974018693,0.99702912569046,-0.073716901242733,0.0244914814829826,-0.0417260937392712,-0.998828828334808,0.0244914796203375,-0.0417260900139809,-0.998828828334808,0.0244914814829826,-0.0417261011898518,-0.998828887939453,0.0244914814829826,-0.0417260974645615,-0.998828768730164,0.0244914833456278,-0.0417260974645615,-0.998828887939453,0.0244914814829826,-0.0417261011898518,-0.998828887939453,
- -0.578794121742249,0.119848243892193,-0.806618750095367,-0.578794121742249,0.119848228991032,-0.806618750095367,-0.578794121742249,0.119848228991032,-0.806618750095367,-0.0223268643021584,-0.997030079364777,0.0737057700753212,-0.0223268624395132,-0.997030019760132,0.0737057626247406,-0.0223268605768681,-0.997030019760132,0.0737057626247406,-0.0223268624395132,-0.997030019760132,0.0737057700753212,-0.0223268605768681,-0.997030019760132,0.0737057626247406,-0.0223268643021584,-0.997030079364777,0.07370575517416,0.509335517883301,-0.474070757627487,-0.718216061592102,0.509335517883301,-0.47407078742981,-0.718216061592102,0.509335458278656,-0.474070757627487,-0.718216001987457
- }
- NormalsW: *3444 {
- 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,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *10332 {
- a: -7.75103004002631e-009,1,0,-0.000383848353521898,0.999999940395355,0,-0.000561547349207103,0.999999940395355,0,-0.00102284702006727,0.999999523162842,0,2.86280577022069e-009,1,-0,-0.000283345114439726,1,0,-0.000561547349207103,0.999999940395355,0,-0.000383848353521898,0.999999940395355,0,-3.45182306773495e-005,1,-8.12680922990944e-013,-1.30147745949216e-005,1,-1.58666347204947e-013,-0.000283345114439726,1,0,2.86280577022069e-009,1,-0,-0.00102197763044387,0.999999523162842,0,9.78897660388611e-005,1,-0,0.0078117148950696,0.999969482421875,-1.11774367539397e-010,0.000751309504266828,0.999999761581421,-0,-0.00232380582019687,0.999997317790985,0,-0.00370591040700674,0.999993205070496,0,9.78897660388611e-005,1,-0,-0.000100350145658012,1,0,-0.00255655241198838,0.999996721744537,0,-0.000100350145658012,1,0,9.78897660388611e-005,1,-0,-0.00102197763044387,0.999999523162842,0,-0.000283345114439726,1,0,-0.00232380582019687,0.999997317790985,0,-0.000100350145658012,1,0,-0.000561547349207103,0.999999940395355,0,-0.00102284702006727,0.999999523162842,0,-0.000561547349207103,0.999999940395355,0,-0.000100350145658012,1,0,-0.00255655241198838,0.999996721744537,0,0.00654528941959143,0.999978601932526,-0,0.00373092037625611,0.999993026256561,-0,0.00510835601016879,0.999987006187439,-0,0.00318725127726793,0.999994933605194,-0,0.00394448172301054,0.999992191791534,-0,0.000751309504266828,0.999999761581421,-0,0.0078117148950696,0.999969482421875,-1.11774367539397e-010,-0.000809329387266189,0.999999701976776,1.26949943612953e-011,0.00373092037625611,0.999993026256561,-0,0.00654528941959143,0.999978601932526,-0,-0.000421625270973891,1,8.70410601233607e-012,0.010128359310329,0.999948799610138,-1.37547717660169e-009,-0.000809329387266189,0.999999701976776,1.26949943612953e-011,0.0078117148950696,0.999969482421875,-1.11774367539397e-010,-0.00370591040700674,0.999993205070496,0,-0.00327139883302152,0.999994695186615,0,-0.0145176816731691,0.999894618988037,0,-0.0255334246903658,0.999673962593079,0,-0.000421625270973891,1,8.70410601233607e-012,
- 0.0078117148950696,0.999969482421875,-1.11774367539397e-010,9.78897660388611e-005,1,-0,-0.0103964516893029,0.999946057796478,0,-0.00767135014757514,0.999970555305481,0,-0.00327139883302152,0.999994695186615,0,-0.00370591040700674,0.999993205070496,0,9.0850312517432e-007,1,-0,-0.00225989543832839,0.999997496604919,0,-0.00262569589540362,0.999996542930603,0,-0.0063063558191061,0.999980092048645,0,-0.0103964516893029,0.999946057796478,0,-0.00370591040700674,0.999993205070496,0,-0.00232380582019687,0.999997317790985,0,-1.30147745949216e-005,1,-1.58666347204947e-013,1.16151511520002e-007,1,-2.98822699406948e-015,-0.000660876743495464,0.99999988079071,0,9.0850312517432e-007,1,-0,-0.00232380582019687,0.999997317790985,0,-0.000283345114439726,1,0,-1.30147745949216e-005,1,-1.58666347204947e-013,-6.07998554187361e-005,1,-2.08396884818218e-012,-2.20824094867567e-005,1,5.12601636484811e-012,1.16151511520002e-007,1,-2.98822699406948e-015,-1.03776303106429e-008,1,-4.71828109504542e-016,-5.20745452377014e-005,1,-2.36761500162219e-012,-6.07998554187361e-005,1,-2.08396884818218e-012,-1.30147745949216e-005,1,-1.58666347204947e-013,-3.45182306773495e-005,1,-8.12680922990944e-013,-0.206988677382469,0.971485912799835,0.115632548928261,-0.277649462223053,0.956653952598572,0.0878871157765388,-0.213861092925072,0.975417256355286,0.053147129714489,-0.0904902219772339,0.994771540164948,0.047340415418148,-0.277649462223053,0.956653952598572,0.0878871157765388,-0.513639867305756,0.857991874217987,-0.00491242855787277,-0.424394190311432,0.905336141586304,0.0160058587789536,-0.213861092925072,0.975417256355286,0.053147129714489,-0.55641120672226,0.828951478004456,0.0569742769002914,-0.641447186470032,0.76552414894104,-0.0501834079623222,-0.319763362407684,0.946506679058075,0.0433203838765621,-0.513639867305756,0.857991874217987,-0.00491242855787277,-0.321450263261795,0.946441292762756,-0.0303089991211891,-0.338718473911285,0.940887749195099,0.000252120196819305,-0.363758355379105,0.92767858505249,-0.0842167362570763,-0.220945596694946,0.975281536579132,0.00303001748397946,
- -0.286674022674561,0.957815766334534,-0.0201776642352343,-0.479383051395416,0.875454664230347,-0.06140998005867,-0.800378918647766,0.596194267272949,0.0628175511956215,-0.835041999816895,0.53955465555191,0.107636205852032,-0.458017528057098,0.887541711330414,-0.0498981177806854,-0.406525582075119,0.913007497787476,-0.0339736863970757,-0.782124519348145,0.622448742389679,0.0289611965417862,-0.624255895614624,0.780665695667267,0.0294248200953007,-0.362805843353271,0.930483460426331,-0.0507200136780739,-0.782124519348145,0.622448742389679,0.0289611965417862,-0.870450019836426,0.489412486553192,0.0528424866497517,-0.858391582965851,0.500821471214294,0.111094005405903,-0.624255895614624,0.780665695667267,0.0294248200953007,-0.870450019836426,0.489412486553192,0.0528424866497517,-0.798339486122131,0.598804950714111,0.0639287009835243,-0.825147271156311,0.554729402065277,0.106805354356766,-0.858391582965851,0.500821471214294,0.111094005405903,-0.867390394210815,0.497527301311493,0.0100289573892951,-0.80203378200531,0.591244697570801,0.0846859291195869,-0.683541893959045,0.726856470108032,0.0667104423046112,-0.928382277488709,0.358195304870605,0.0990080386400223,-0.80203378200531,0.591244697570801,0.0846859291195869,-0.363375008106232,0.931490361690521,-0.0168655440211296,-0.417518079280853,0.908404290676117,-0.0219168365001678,-0.683541893959045,0.726856470108032,0.0667104423046112,-0.800378918647766,0.596194267272949,0.0628175511956215,-0.867390394210815,0.497527301311493,0.0100289573892951,-0.928382277488709,0.358195304870605,0.0990080386400223,-0.835041999816895,0.53955465555191,0.107636205852032,-0.363375008106232,0.931490361690521,-0.0168655440211296,-0.207591533660889,0.978215098381042,-0.00104507803916931,-0.247175484895706,0.965922117233276,-0.076804481446743,-0.417518079280853,0.908404290676117,-0.0219168365001678,-0.338718473911285,0.940887749195099,0.000252120196819305,-0.474527359008789,0.880023777484894,-0.0195413734763861,-0.390375733375549,0.914714992046356,-0.104418963193893,-0.363758355379105,0.92767858505249,-0.0842167362570763,
- -0.474527359008789,0.880023777484894,-0.0195413734763861,-0.479383051395416,0.875454664230347,-0.06140998005867,-0.458017528057098,0.887541711330414,-0.0498981177806854,-0.390375733375549,0.914714992046356,-0.104418963193893,-0.207591533660889,0.978215098381042,-0.00104507803916931,-0.406525582075119,0.913007497787476,-0.0339736863970757,-0.362805843353271,0.930483460426331,-0.0507200136780739,-0.247175484895706,0.965922117233276,-0.076804481446743,-0.00102127762511373,0.999999523162842,0,-0.000612742733210325,0.999999821186066,0,1.83092652150663e-008,1,0,-0.000766545010264963,0.999999761581421,0,1.43743750236069e-009,1,0,0.000120767152111512,1,0,4.34376488556154e-005,1,-2.75583118066088e-014,0.000210175465326756,1,-1.06579018342972e-013,0.000172734435182065,1,0,0.000120767152111512,1,0,-8.27864776731246e-010,1,0,-0.000469596969196573,0.999999940395355,0,4.34376488556154e-005,1,-2.75583118066088e-014,-8.27864776731246e-010,1,0,1.83092652150663e-008,1,0,-0.000612742733210325,0.999999821186066,0,-0.000469596969196573,0.999999940395355,0,-0.00108076713513583,0.999999403953552,0,0.00177768827416003,0.999998450279236,0,0,1,0,-8.669777889736e-005,1,0,-0.00108076713513583,0.999999403953552,0,-8.669777889736e-005,1,0,-0.0009137685992755,0.999999582767487,0,-0.00188075436744839,0.999998331069946,0,-0.00266145402565598,0.999996542930603,0,0.00177768827416003,0.999998450279236,0,-0.00108076713513583,0.999999403953552,0,-0.00123580917716026,0.999999284744263,4.56956347760773e-012,0.000895032833795995,0.999999642372131,0,-0.00123580917716026,0.999999284744263,4.56956347760773e-012,-0.00108076713513583,0.999999403953552,0,-0.00266145402565598,0.999996542930603,0,-0.00283225276507437,0.999996066093445,0,-0.00219176313839853,0.999997675418854,0,0,1,0,-0.00071517942706123,0.999999821186066,2.29330660364568e-012,0,1,0,0.000895032833795995,0.999999642372131,0,-0.00123580917716026,0.999999284744263,4.56956347760773e-012,-0.00071517942706123,0.999999821186066,2.29330660364568e-012,-0.00123580917716026,0.999999284744263,4.56956347760773e-012,
- 0,1,0,-0.000797219050582498,0.999999761581421,1.20616910556648e-011,-0.00872764457017183,0.999961912631989,1.31574251494015e-010,-0.0120102623477578,0.999927878379822,-1.73047739332466e-011,-0.0120102623477578,0.999927878379822,-1.73047739332466e-011,-0.00872764457017183,0.999961912631989,1.31574251494015e-010,-0.0190213415771723,0.999819159507751,-2.82511736227065e-010,0,1,0,-0.00071517942706123,0.999999821186066,2.29330660364568e-012,-0.000355188036337495,0.999999940395355,0,0,1,0,-0.000355188036337495,0.999999940395355,0,-0.00071517942706123,0.999999821186066,2.29330660364568e-012,-0.0120102623477578,0.999927878379822,-1.73047739332466e-011,-0.00131554866675287,0.999999225139618,-4.24956597688819e-012,-0.00131554866675287,0.999999225139618,-4.24956597688819e-012,-0.0120102623477578,0.999927878379822,-1.73047739332466e-011,-0.0190213415771723,0.999819159507751,-2.82511736227065e-010,-3.48506569025631e-006,1,-5.2115755287685e-014,-1.15521424959297e-006,1,-1.72751031280458e-014,1.66765476024011e-005,1,2.49381515871755e-013,2.5784316676436e-005,1,3.8506529779006e-013,-0.0034360399004072,0.999994099140167,-1.78640817416476e-011,2.5784316676436e-005,1,3.8506529779006e-013,1.29268109958502e-005,1,-9.78470031235724e-014,-0.0034360399004072,0.999994099140167,-1.78640817416476e-011,-0.000612742733210325,0.999999821186066,0,-0.00102127762511373,0.999999523162842,0,0,1,0,-0.000355188036337495,0.999999940395355,0,-0.000612742733210325,0.999999821186066,0,-0.000355188036337495,0.999999940395355,0,-0.00131554866675287,0.999999225139618,-4.24956597688819e-012,-0.000469596969196573,0.999999940395355,0,-0.000469596969196573,0.999999940395355,0,-0.00131554866675287,0.999999225139618,-4.24956597688819e-012,-0.0034360399004072,0.999994099140167,-1.78640817416476e-011,4.34376488556154e-005,1,-2.75583118066088e-014,1.29268109958502e-005,1,-9.78470031235724e-014,7.3342802352272e-005,1,-5.63636702415049e-013,0.000210175465326756,1,-1.06579018342972e-013,4.34376488556154e-005,1,-2.75583118066088e-014,-0.0034360399004072,0.999994099140167,-1.78640817416476e-011,
- 0,1,0.000274709425866604,0,0.999999940395355,0.000308600720018148,0,1,-0.000138651928864419,0,1,0.000196916051208973,0,1,-0.000205742951948196,0,1,-0.000205621239729226,0,1,3.65154562587122e-007,0,1,-0.000152875785715878,0,1,-0.000205621239729226,0,1,-0.000205742951948196,0,1,0,0,1,-0.000103704041976016,0,1,-8.01327114459127e-005,0,1,0,0,1,-0.000103704041976016,0,1,0,0,1,0,0,1,-8.01327114459127e-005,0,1,1.70820185303455e-005,0,1,-0.000160241354024038,0,0.999999940395355,0.000308600720018148,0,1,0.000274709425866604,0,1,-0.000160241354024038,0,1,1.70820185303455e-005,3.03164837787012e-018,-9.53674139658744e-010,1,1.36424177004156e-017,-1.90734827931749e-009,1,9.09494513361037e-018,-1.90734827931749e-009,1,4.54747256680519e-018,-9.53674139658744e-010,1,0,0,1,3.03164837787012e-018,-9.53674139658744e-010,1,4.54747256680519e-018,-9.53674139658744e-010,1,0,0,1,-0,7.15255743521936e-010,1,0,0,1,0,0,1,6.39488471878647e-019,7.15255743521936e-010,1,5.11590777502918e-018,1.43051148704387e-009,1,2.55795388751459e-018,1.43051148704387e-009,1,-0,7.15255743521936e-010,1,6.39488471878647e-019,7.15255743521936e-010,1,-0,1,0.000133016626932658,0,0.99999988079071,-0.000622057472355664,0,0.999977111816406,-0.0067753354087472,0,0.999989807605743,-0.00451292935758829,-0,0.999997138977051,0.00239454745315015,0,0.999996244907379,-0.0027562458999455,-0,1,0.000132080866023898,-0.00184225582052022,0,0.999998331069946,-0.000991581124253571,0,0.999999523162842,0.00404982315376401,-0,0.999991774559021,0.0031031456310302,-0,0.999995231628418,-0.000164455064805225,0,1,0.000711845466867089,-0,0.999999821186066,2.03881791094318e-005,-0,1,2.39748987951316e-005,-0,1,-0.280593723058701,0.950356364250183,0.134499207139015,-0.355641484260559,0.927131533622742,0.118094280362129,-0.354840397834778,0.927838563919067,0.114908322691917,-0.279442489147186,0.950228452682495,0.137759938836098,-0.355641484260559,0.927131533622742,0.118094280362129,-0.547631680965424,0.834039270877838,0.0669198259711266,-0.55641120672226,0.828951478004456,0.0569742769002914,-0.354840397834778,0.927838563919067,0.114908322691917,
- -0.547631680965424,0.834039270877838,0.0669198259711266,-0.632439494132996,0.773685336112976,0.0378342904150486,-0.641447186470032,0.76552414894104,-0.0501834079623222,-0.55641120672226,0.828951478004456,0.0569742769002914,-0.632439494132996,0.773685336112976,0.0378342904150486,-0.421655595302582,0.903176784515381,0.0804885700345039,-0.361153364181519,0.931578695774078,0.0415863692760468,-0.641447186470032,0.76552414894104,-0.0501834079623222,-0.421655595302582,0.903176784515381,0.0804885700345039,-0.265748649835587,0.962880730628967,0.047312293201685,-0.353738754987717,0.935254216194153,-0.0129847098141909,-0.361153364181519,0.931578695774078,0.0415863692760468,-0.265748649835587,0.962880730628967,0.047312293201685,-0.757620096206665,0.620254933834076,-0.203213512897491,-0.353738754987717,0.935254216194153,-0.0129847098141909,-0.757620096206665,0.620254933834076,-0.203213512897491,-0.539101898670197,0.841076850891113,-0.0442585907876492,-0.548210203647614,0.831969261169434,-0.08539729565382,-0.353738754987717,0.935254216194153,-0.0129847098141909,-0.539101898670197,0.841076850891113,-0.0442585907876492,-0.652256667613983,0.754545152187347,-0.072268508374691,-0.615936160087585,0.78428316116333,-0.0743139237165451,-0.548210203647614,0.831969261169434,-0.08539729565382,-0.652256667613983,0.754545152187347,-0.072268508374691,-0.754690647125244,0.655857622623444,-0.0171126294881105,-0.76586639881134,0.640940010547638,-0.0514246746897697,-0.615936160087585,0.78428316116333,-0.0743139237165451,-0.754690647125244,0.655857622623444,-0.0171126294881105,-0.528266429901123,0.84798276424408,-0.0431261882185936,-0.68711906671524,0.723492085933685,-0.0665329173207283,-0.76586639881134,0.640940010547638,-0.0514246746897697,-0.528266429901123,0.84798276424408,-0.0431261882185936,-0.628447413444519,0.775065422058105,-0.0657826662063599,-0.462112486362457,0.886645138263702,-0.0176802575588226,-0.68711906671524,0.723492085933685,-0.0665329173207283,-0.628447413444519,0.775065422058105,-0.0657826662063599,-0.201056569814682,0.969076931476593,0.143060579895973,
- -0.462112486362457,0.886645138263702,-0.0176802575588226,-0.201056569814682,0.969076931476593,0.143060579895973,-0.15437650680542,0.957092046737671,0.245240494608879,-0.162658154964447,0.960661649703979,0.225103303790092,-0.462112486362457,0.886645138263702,-0.0176802575588226,-0.15437650680542,0.957092046737671,0.245240494608879,-0.372184813022614,0.913684546947479,0.163276225328445,-0.414266586303711,0.902222573757172,0.119906961917877,-0.162658154964447,0.960661649703979,0.225103303790092,-0.372184813022614,0.913684546947479,0.163276225328445,-0.553853690624237,0.831499099731445,0.0430763699114323,-0.558317840099335,0.829619169235229,0.00365504622459412,-0.414266586303711,0.902222573757172,0.119906961917877,-0.553853690624237,0.831499099731445,0.0430763699114323,-0.832039773464203,0.499837696552277,-0.24056613445282,-0.761246740818024,0.635214686393738,-0.130406022071838,-0.558317840099335,0.829619169235229,0.00365504622459412,-0.832039773464203,0.499837696552277,-0.24056613445282,-0.838051497936249,0.527132868766785,-0.140715345740318,-0.761246740818024,0.635214686393738,-0.130406022071838,-0.838051497936249,0.527132868766785,-0.140715345740318,-0.870042502880096,0.475364148616791,-0.130594283342361,-0.888379812240601,0.437610864639282,-0.138845592737198,-0.761246740818024,0.635214686393738,-0.130406022071838,-0.888379812240601,0.437610864639282,-0.138845592737198,-0.870042502880096,0.475364148616791,-0.130594283342361,-0.934624314308167,0.324835330247879,-0.144773930311203,-0.893574118614197,0.434751063585281,-0.111878663301468,-0.424394190311432,0.905336141586304,0.0160058587789536,-0.321450263261795,0.946441292762756,-0.0303089991211891,-0.286674022674561,0.957815766334534,-0.0201776642352343,-0.402664989233017,0.914231598377228,0.0451833046972752,-0.213861092925072,0.975417256355286,0.053147129714489,-0.424394190311432,0.905336141586304,0.0160058587789536,-0.402664989233017,0.914231598377228,0.0451833046972752,-0.182723149657249,0.981581330299377,0.0557712279260159,-0.0904902219772339,0.994771540164948,0.047340415418148,
- -0.213861092925072,0.975417256355286,0.053147129714489,-0.182723149657249,0.981581330299377,0.0557712279260159,-0.0710575133562088,0.997350811958313,0.0155635196715593,-0.361153364181519,0.931578695774078,0.0415863692760468,-0.353738754987717,0.935254216194153,-0.0129847098141909,-0.363768637180328,0.931195914745331,0.0233793333172798,-0.319763362407684,0.946506679058075,0.0433203838765621,-0.363768637180328,0.931195914745331,0.0233793333172798,-0.57820075750351,0.81232076883316,-0.076281301677227,-0.474527359008789,0.880023777484894,-0.0195413734763861,-0.338718473911285,0.940887749195099,0.000252120196819305,-0.474527359008789,0.880023777484894,-0.0195413734763861,-0.483240604400635,0.874616265296936,-0.0390502996742725,-0.479383051395416,0.875454664230347,-0.06140998005867,-0.615936160087585,0.78428316116333,-0.0743139237165451,-0.74256443977356,0.665977597236633,-0.0712180882692337,-0.483240604400635,0.874616265296936,-0.0390502996742725,-0.76586639881134,0.640940010547638,-0.0514246746897697,-0.68711906671524,0.723492085933685,-0.0665329173207283,-0.867390394210815,0.497527301311493,0.0100289573892951,-0.74256443977356,0.665977597236633,-0.0712180882692337,-0.68711906671524,0.723492085933685,-0.0665329173207283,-0.462112486362457,0.886645138263702,-0.0176802575588226,-0.867390394210815,0.497527301311493,0.0100289573892951,-0.462112486362457,0.886645138263702,-0.0176802575588226,-0.373193800449371,0.927753329277039,0.00033123791217804,-0.80203378200531,0.591244697570801,0.0846859291195869,-0.867390394210815,0.497527301311493,0.0100289573892951,-0.373193800449371,0.927753329277039,0.00033123791217804,-0.363375008106232,0.931490361690521,-0.0168655440211296,-0.80203378200531,0.591244697570801,0.0846859291195869,-0.162658154964447,0.960661649703979,0.225103303790092,-0.325159877538681,0.944462537765503,0.0475567281246185,-0.207591533660889,0.978215098381042,-0.00104507803916931,-0.373193800449371,0.927753329277039,0.00033123791217804,-0.325159877538681,0.944462537765503,0.0475567281246185,-0.513792395591736,0.857909679412842,0.00289063132368028,
- -0.406525582075119,0.913007497787476,-0.0339736863970757,-0.207591533660889,0.978215098381042,-0.00104507803916931,-0.513792395591736,0.857909679412842,0.00289063132368028,-0.782124519348145,0.622448742389679,0.0289611965417862,-0.406525582075119,0.913007497787476,-0.0339736863970757,-0.797596335411072,0.592736780643463,-0.111818440258503,-0.880278408527374,0.472015559673309,-0.0480753257870674,-0.870450019836426,0.489412486553192,0.0528424866497517,-0.782124519348145,0.622448742389679,0.0289611965417862,-0.880278408527374,0.472015559673309,-0.0480753257870674,-0.79392284154892,0.606180727481842,0.0472390577197075,-0.798339486122131,0.598804950714111,0.0639287009835243,-0.870450019836426,0.489412486553192,0.0528424866497517,-0.74256443977356,0.665977597236633,-0.0712180882692337,-0.867390394210815,0.497527301311493,0.0100289573892951,-0.800378918647766,0.596194267272949,0.0628175511956215,-0.615936160087585,0.78428316116333,-0.0743139237165451,-0.76586639881134,0.640940010547638,-0.0514246746897697,-0.74256443977356,0.665977597236633,-0.0712180882692337,-0.483240604400635,0.874616265296936,-0.0390502996742725,-0.74256443977356,0.665977597236633,-0.0712180882692337,-0.800378918647766,0.596194267272949,0.0628175511956215,-0.479383051395416,0.875454664230347,-0.06140998005867,-0.548210203647614,0.831969261169434,-0.08539729565382,-0.615936160087585,0.78428316116333,-0.0743139237165451,-0.57820075750351,0.81232076883316,-0.076281301677227,-0.353738754987717,0.935254216194153,-0.0129847098141909,-0.548210203647614,0.831969261169434,-0.08539729565382,-0.57820075750351,0.81232076883316,-0.076281301677227,-0.363768637180328,0.931195914745331,0.0233793333172798,-0.57820075750351,0.81232076883316,-0.076281301677227,-0.483240604400635,0.874616265296936,-0.0390502996742725,-0.474527359008789,0.880023777484894,-0.0195413734763861,-0.57820075750351,0.81232076883316,-0.076281301677227,-0.615936160087585,0.78428316116333,-0.0743139237165451,-0.483240604400635,0.874616265296936,-0.0390502996742725,-0.641447186470032,0.76552414894104,-0.0501834079623222,
- -0.361153364181519,0.931578695774078,0.0415863692760468,-0.319763362407684,0.946506679058075,0.0433203838765621,-0.319763362407684,0.946506679058075,0.0433203838765621,-0.363768637180328,0.931195914745331,0.0233793333172798,-0.338718473911285,0.940887749195099,0.000252120196819305,-0.321450263261795,0.946441292762756,-0.0303089991211891,-0.279442489147186,0.950228452682495,0.137759938836098,-0.354840397834778,0.927838563919067,0.114908322691917,-0.277649462223053,0.956653952598572,0.0878871157765388,-0.206988677382469,0.971485912799835,0.115632548928261,-0.354840397834778,0.927838563919067,0.114908322691917,-0.513639867305756,0.857991874217987,-0.00491242855787277,-0.277649462223053,0.956653952598572,0.0878871157765388,-0.513639867305756,0.857991874217987,-0.00491242855787277,-0.319763362407684,0.946506679058075,0.0433203838765621,-0.321450263261795,0.946441292762756,-0.0303089991211891,-0.424394190311432,0.905336141586304,0.0160058587789536,-0.354840397834778,0.927838563919067,0.114908322691917,-0.55641120672226,0.828951478004456,0.0569742769002914,-0.513639867305756,0.857991874217987,-0.00491242855787277,-0.462112486362457,0.886645138263702,-0.0176802575588226,-0.162658154964447,0.960661649703979,0.225103303790092,-0.373193800449371,0.927753329277039,0.00033123791217804,-0.373193800449371,0.927753329277039,0.00033123791217804,-0.207591533660889,0.978215098381042,-0.00104507803916931,-0.363375008106232,0.931490361690521,-0.0168655440211296,-0.162658154964447,0.960661649703979,0.225103303790092,-0.414266586303711,0.902222573757172,0.119906961917877,-0.325159877538681,0.944462537765503,0.0475567281246185,-0.414266586303711,0.902222573757172,0.119906961917877,-0.558317840099335,0.829619169235229,0.00365504622459412,-0.513792395591736,0.857909679412842,0.00289063132368028,-0.325159877538681,0.944462537765503,0.0475567281246185,-0.513792395591736,0.857909679412842,0.00289063132368028,-0.797596335411072,0.592736780643463,-0.111818440258503,-0.782124519348145,0.622448742389679,0.0289611965417862,-0.761246740818024,0.635214686393738,-0.130406022071838,
- -0.888379812240601,0.437610864639282,-0.138845592737198,-0.880278408527374,0.472015559673309,-0.0480753257870674,-0.797596335411072,0.592736780643463,-0.111818440258503,-0.79392284154892,0.606180727481842,0.0472390577197075,-0.880278408527374,0.472015559673309,-0.0480753257870674,-0.888379812240601,0.437610864639282,-0.138845592737198,-0.893574118614197,0.434751063585281,-0.111878663301468,-0.558317840099335,0.829619169235229,0.00365504622459412,-0.761246740818024,0.635214686393738,-0.130406022071838,-0.797596335411072,0.592736780643463,-0.111818440258503,-0.513792395591736,0.857909679412842,0.00289063132368028,0.0103657059371471,0.0052209054119885,0.999932646751404,-0.00027247125399299,0.00527387531474233,0.999986052513123,-0.00553199462592602,0.00529984291642904,0.999970734119415,0.00506656337529421,0.00524736614897847,0.999973475933075,0.0157440528273582,0.0051938989199698,0.999862611293793,-0.0349907502532005,0.999382317066193,-0.00326596829108894,-0.0192625354975462,0.999785482883453,-0.00761643843725324,-0.031746219843626,0.999473512172699,-0.00670656468719244,-0.0288300663232803,0.999577522277832,-0.003689726581797,0.0246553122997284,-0.0521489754319191,-0.998335003852844,0.0366138368844986,-0.0523003488779068,-0.997960031032562,0.0252414345741272,-0.0521565526723862,-0.998319923877716,0.0206697508692741,-0.0520968697965145,-0.998428165912628,0.0215164702385664,-0.052107997238636,-0.998409688472748,0.0316321738064289,-0.0522381849586964,-0.998133659362793,0.0395910516381264,-0.0523368678987026,-0.997844398021698,1.35795957811879e-010,-0.000270637508947402,1,1.4328482844661e-010,-0.000285562593489885,1,2.06286721038396e-009,-0.00411123596131802,0.999991536140442,3.97493105097624e-009,-0.00792192481458187,0.999968647956848,1.42050948781502e-009,-0.00283103529363871,0.999996066093445,0.0159918870776892,-0.0189946424216032,0.999691665172577,0.0160302519798279,-0.0151825184002519,0.999756217002869,0.016061769798398,-0.0120332278311253,0.999798655509949,0.0160551480948925,-0.0126962754875422,0.999790489673615,0.0160385612398386,-0.0143537782132626,0.999768376350403,
- 0.454460024833679,-0.434811502695084,0.777434945106506,0.454460024833679,-0.434811502695084,0.777434945106506,0.454460024833679,-0.434811502695084,0.777434945106506,-0.031746219843626,0.999473512172699,-0.00670656468719244,-0.0192625354975462,0.999785482883453,-0.00761643843725324,-0.00247943680733442,0.999945282936096,-0.0101636443287134,-0.00541351409628987,0.99993371963501,-0.0101633770391345,-0.0165752284228802,0.999811053276062,-0.0101615637540817,0.00175055745057762,-0.999646186828613,0.0265455115586519,0.00235183094628155,-0.999644875526428,0.0265463050454855,0.00354347401298583,-0.999641299247742,0.0265478491783142,0.0023481969255954,-0.999644815921783,0.02654629945755,0.00234093004837632,-0.999644935131073,0.0265462920069695,0.387255012989044,0.0321312062442303,0.921412646770477,0.387254983186722,0.03213120251894,0.921412587165833,0.387255012989044,0.0321312099695206,0.921412587165833,0.0452976636588573,0.997748911380768,0.0494506135582924,0.0101863462477922,0.998721897602081,0.0495053417980671,0.0509359464049339,0.99747771024704,0.0494361259043217,0.0265662260353565,0.998421430587769,0.0494874157011509,0.0396453365683556,0.997988820075989,0.0494635552167892,0.117629267275333,0.991840898990631,0.0491443537175655,-0.067574255168438,-0.997713923454285,-0.000871808268129826,-0.0678385868668556,-0.997695982456207,-0.000874649675097317,-0.068065457046032,-0.99768054485321,-0.00087708851788193,-0.0680270716547966,-0.997683167457581,-0.000876675941981375,-0.068026140332222,-0.997683227062225,-0.000876665813848376,-0.0679328218102455,-0.997689485549927,-0.000875662721227854,-0.00176546035800129,0.127526611089706,-0.991833567619324,-0.00196386640891433,0.141988769173622,-0.989866375923157,-0.00198195758275688,0.143307462334633,-0.989676237106323,-0.00199805642478168,0.144480958580971,-0.989505648612976,-0.00204130075871944,0.147633120417595,-0.989040195941925,-0.00196287175640464,0.141916245222092,-0.989876747131348,-0.0302999764680862,0.475378155708313,-0.879259645938873,-0.0302999690175056,0.475378215312958,-0.879259645938873,
- -0.0302999764680862,0.475378155708313,-0.879259645938873,0.175232604146004,-0.746128916740417,0.642327845096588,0.175232619047165,-0.746129035949707,0.642327904701233,0.175232619047165,-0.746129035949707,0.642327904701233,-0.00574714597314596,0.000193636587937362,0.999983549118042,-0.00258743274025619,0.000205740798264742,0.999996721744537,0.00414729304611683,0.000231532860198058,0.999991357326508,0.0107903368771076,0.000256964267464355,0.999941766262054,0.0138583462685347,0.000268706266069785,0.999904036521912,0.00410154415294528,0.00023135771334637,0.999991595745087,-0.0423514656722546,0.02843277156353,-0.998698174953461,-0.0422931089997292,0.0241646338254213,-0.998813033103943,-0.0422551594674587,0.0214180592447519,-0.998877346515656,-0.0422933287918568,0.0241802800446749,-0.998812675476074,-0.0423447117209435,0.0279359556734562,-0.998712480068207,-0.0424094647169113,0.0327316746115685,-0.998564004898071,0.680570244789124,0.208552956581116,-0.702374398708344,0.680570304393768,0.208552986383438,-0.702374398708344,0.680570304393768,0.208552986383438,-0.702374398708344,-0.0503928661346436,-0.00040407371125184,-0.998729407787323,-0.0326078534126282,-0.000335973338223994,-0.999468207359314,-0.044112354516983,-0.000380032695829868,-0.999026477336884,-0.0556660741567612,-0.000424252386437729,-0.998449444770813,-0.0566709749400616,-0.000428097147960216,-0.998392879962921,-0.0576207675039768,-0.000431730790296569,-0.998338460922241,-0.509956777095795,0.355877876281738,-0.78313159942627,-0.509956777095795,0.355877876281738,-0.78313159942627,-0.509956777095795,0.355877846479416,-0.78313159942627,-0.00894343014806509,0.00795069523155689,0.999928414821625,-0.0219116620719433,0.0075029656291008,0.999731838703156,-0.00851484760642052,0.00796546973288059,0.999932050704956,-0.00973465200513601,0.00792341772466898,0.999921262264252,-0.0221753735095263,0.00749384704977274,0.999726057052612,-0.0292197149246931,0.00725004123523831,0.999546706676483,-8.38995620142668e-005,0.00208378257229924,-0.999997854232788,-0.000133414534502663,0.00366155197843909,-0.99999326467514,
- -0.00010080861102324,0.00262258062139153,-0.999996602535248,-1.86873348866357e-005,5.83060318604112e-006,-1,-9.51722540776245e-005,0.00244298088364303,-0.999997079372406,0.00123761349823326,-0.0214093755930662,-0.999770104885101,0.00113853707443923,-0.0195455867797136,-0.999808311462402,0.00126869173254818,-0.0219940133392811,-0.999757349491119,0.000833706406410784,-0.0138112539425492,-0.999904274940491,0.00138330634217709,-0.0241501145064831,-0.999707400798798,0.00140331266447902,-0.0245264694094658,-0.999698221683502,-0.0104196099564433,0.0144479274749756,-0.999841332435608,0.00372570753097534,0.0147147197276354,-0.999884784221649,0.0131181739270687,0.0148902535438538,-0.999803066253662,0.0107981059700251,0.0148470140993595,-0.999831557273865,-0.000970858498476446,0.0146264657378197,-0.99989253282547,-0.0204370580613613,0.999776840209961,0.00535672390833497,-0.0241931695491076,0.999692916870117,0.00536354817450047,-0.0106833791360259,0.999928653240204,0.00533865345641971,-0.0185584649443626,0.999813497066498,0.00535328267142177,-0.0399367958307266,0.999187648296356,0.00539133278653026,0.0408529751002789,-0.999151468276978,0.00524716358631849,0.0335649438202381,-0.999422788619995,0.00524759758263826,0.0323158502578735,-0.99946391582489,0.00524764414876699,0.0336293093860149,-0.999420642852783,0.00524759571999311,0.0388830080628395,-0.999230086803436,0.00524730933830142,0.0482674911618233,-0.998820722103119,0.00524643529206514,0.662567734718323,-0.403463304042816,-0.631047904491425,0.662567675113678,-0.403463274240494,-0.631047904491425,0.662567734718323,-0.403463363647461,-0.631047904491425,-0.429972231388092,0.264766901731491,-0.863146901130676,-0.429972231388092,0.264766901731491,-0.863146781921387,-0.429972231388092,0.264766901731491,-0.863146781921387,-0.0779552757740021,0.638482332229614,0.765678346157074,-0.0779552385210991,0.638482391834259,0.765678346157074,-0.0779552832245827,0.638482391834259,0.765678405761719,-0.0301140509545803,-0.998219430446625,0.0514891855418682,0.0101822959259152,-0.998617768287659,0.0515643060207367,
- -0.0366351306438446,-0.998002469539642,0.0514691583812237,-0.00859529711306095,-0.998634040355682,0.0515397191047668,-0.0235724523663521,-0.998394429683685,0.051507081836462,-0.113184526562691,-0.992260754108429,0.0510691180825233,0.0557469874620438,0.998444259166718,-0.00120397447608411,0.0560487359762192,0.998427391052246,-0.00120785366743803,0.0563080571591854,0.998412787914276,-0.00121118722017854,0.0562625303864479,0.998415291309357,-0.00121060211677104,0.0562594309449196,0.998415529727936,-0.00121056218631566,0.0561556331813335,0.998421370983124,-0.00120922783389688,0.00500105507671833,-0.132673293352127,-0.99114727973938,0.00556764518842101,-0.147705152630806,-0.989015877246857,0.00561923952773213,-0.14907394349575,-0.988810062408447,0.00566505827009678,-0.150289550423622,-0.988625824451447,0.00578867876902223,-0.153569251298904,-0.988121032714844,0.00556476088240743,-0.147628620266914,-0.989027261734009,0.054036520421505,-0.463094592094421,-0.884660184383392,0.054036520421505,-0.463094592094421,-0.884660124778748,0.0540365129709244,-0.463094621896744,-0.884660184383392,-0.198242008686066,0.719258725643158,0.665858149528503,-0.198242023587227,0.719258725643158,0.665858089923859,-0.198242038488388,0.719258666038513,0.665858209133148,0.00681856740266085,-2.84823872789275e-005,0.999976813793182,0.00307072000578046,-0.000127194332890213,0.999995350837708,-0.00496163638308644,-0.0003387430915609,0.999987661838531,-0.0129189705476165,-0.000548302661627531,0.999916434288025,-0.0165917556732893,-0.00064502254826948,0.999862194061279,-0.00492428382858634,-0.000337759323883802,0.999987840652466,0.0361362658441067,-0.0288753844797611,-0.998929619789124,0.0359692648053169,-0.024440186098218,-0.999054074287415,0.0358617268502712,-0.0215937588363886,-0.999123454093933,0.0359700806438923,-0.0244618747383356,-0.999053418636322,0.036116898059845,-0.028360191732645,-0.998945116996765,0.0363041684031487,-0.0333534069359303,-0.998784005641937,-0.620406270027161,-0.188051402568817,-0.761401832103729,-0.620406329631805,-0.188051417469978,-0.761401832103729,
- -0.620406329631805,-0.188051402568817,-0.761401772499084,0.060308039188385,0.00179176940582693,-0.99817818403244,0.0390380881726742,0.00123162101954222,-0.999237060546875,0.0527967102825642,0.00159396731760353,-0.998603999614716,0.0666111186146736,0.00195774412713945,-0.997777163982391,0.0678152516484261,0.00198945100419223,-0.997695922851563,0.0689534991979599,0.00201942259445786,-0.997617840766907,0.498704463243485,-0.279838174581528,-0.82035630941391,0.49870440363884,-0.279838144779205,-0.82035630941391,0.498704463243485,-0.279838174581528,-0.82035630941391,-0.00454945303499699,0.00514066917821765,-0.999976456165314,-0.00448404438793659,0.00514260027557611,-0.999976754188538,0.000184596137842163,0.00528042670339346,-0.999986112117767,-0.00458215828984976,0.00513970293104649,-0.999976396560669,-0.0140171414241195,0.00486081000417471,-0.999889969825745,0.00578180700540543,0.999976098537445,0.00379227846860886,-0.0081291850656271,0.999936819076538,0.00777124706655741,0.00289532192982733,0.999971926212311,0.00691719120368361,0.000339083926519379,0.999991476535797,0.00412247981876135,-0.0204353015869856,-0.0526049956679344,0.99840635061264,-0.0309864282608032,-0.0529881902039051,0.998114347457886,-0.0209629479795694,-0.0526243038475513,0.998394429683685,-0.0169314760714769,-0.0524764582514763,0.998478651046753,-0.0176737327128649,-0.0525037422776222,0.998464345932007,-0.026597211137414,-0.05282948538661,0.998249351978302,-0.0336114503443241,-0.0530826225876808,0.998024344444275,-2.56486182479421e-005,-0.000274859514320269,-1,-2.5399185688002e-005,-0.000284783804090694,-1,7.07199433236383e-005,-0.00410911673679948,-0.999991536140442,0.000166588579304516,-0.00792346522212029,-0.999968588352203,3.85969942726661e-005,-0.00283102947287261,-0.999996066093445,-0.0176267586648464,-0.0194421354681253,-0.999655604362488,-0.0177636779844761,-0.015693660825491,-0.999719083309174,-0.0178783256560564,-0.0125495046377182,-0.999761402606964,-0.0178562980145216,-0.0131540400907397,-0.999754011631012,-0.0177945662289858,-0.014847126789391,-0.999731481075287,
- -0.431545555591583,-0.490405350923538,-0.757146775722504,-0.431545555591583,-0.490405321121216,-0.757146656513214,-0.431545555591583,-0.490405350923538,-0.757146716117859,0.00289532192982733,0.999971926212311,0.00691719120368361,-0.0081291850656271,0.999936819076538,0.00777124706655741,-0.02294079400599,0.999685168266296,0.0101588889956474,-0.0203536488115788,0.999741315841675,0.0101586850360036,-0.0105055337771773,0.999893307685852,0.0101572787389159,0.0235768835991621,-0.999369621276855,-0.0265412125736475,0.0230466332286596,-0.999382078647614,-0.0265418328344822,0.0219955928623676,-0.999405741691589,-0.0265430435538292,0.023049796000123,-0.999381959438324,-0.026541830971837,0.0230561159551144,-0.999381840229034,-0.0265418216586113,-0.429748862981796,0.0302833132445812,-0.902440547943115,-0.429748773574829,0.0302833076566458,-0.90244048833847,-0.429748833179474,0.0302833132445812,-0.90244048833847,-0.0728562101721764,0.996706783771515,-0.0356022864580154,-0.0295865088701248,0.998926162719727,-0.0356556475162506,-0.0798906460404396,0.996168196201324,-0.0355872735381126,-0.0497391074895859,0.998126208782196,-0.0356391370296478,-0.0657940953969955,0.997197508811951,-0.0356155820190907,-0.161810398101807,0.986191093921661,-0.0352802015841007,0.100473277270794,-0.994871318340302,-0.0116757955402136,0.100796483457088,-0.994838654994965,-0.011671126820147,0.101071633398533,-0.994810819625854,-0.011667151004076,0.101025439798832,-0.994815409183502,-0.011667818762362,0.101027332246304,-0.994815289974213,-0.0116677917540073,0.10091096162796,-0.994827032089233,-0.0116694727912545,4.294965449958e-008,0.11254845559597,0.993646264076233,4.83997020239713e-008,0.126830160617828,0.991924524307251,4.88914757568182e-008,0.128118842840195,0.99175888299942,4.93242602317423e-008,0.129252940416336,0.991611659526825,5.05222281788065e-008,0.132392182946205,0.991197407245636,4.8370239369433e-008,0.126752942800522,0.991934418678284,0.0247796177864075,0.470703810453415,0.881943345069885,0.0247796028852463,0.470703780651093,0.881943345069885,
- 0.0247795842587948,0.470703810453415,0.881943225860596,-0.196719363331795,-0.722399115562439,-0.662903547286987,-0.196719348430634,-0.722399115562439,-0.662903547286987,-0.196719348430634,-0.722399115562439,-0.662903547286987,0.00667148595675826,0.0147086465731263,-0.999869585037231,0.00300075090490282,0.0146639542654157,-0.999888002872467,-0.00507422909140587,0.0145649453625083,-0.999881088733673,-0.0132014360278845,0.0144643355160952,-0.999808251857758,-0.0169243570417166,0.0144179239869118,-0.999752879142761,-0.00510051008313894,0.0145646240562201,-0.999881029129028,0.0343697853386402,0.0154784712940454,0.999289333820343,0.034369770437479,0.0113223679363728,0.999345123767853,0.0343694537878037,0.00860859546810389,0.999372184276581,0.0343697741627693,0.0113473366945982,0.999344825744629,0.034369807690382,0.0150143122300506,0.999296486377716,0.0343691743910313,0.0196842383593321,0.999215364456177,-0.624064862728119,0.142564222216606,0.768256843090057,-0.624064803123474,0.142564207315445,0.768256783485413,-0.624064862728119,0.142564222216606,0.768256843090057,0.0614106394350529,-0.0138416485860944,0.998016655445099,0.0397236086428165,-0.0141231026500463,0.99911093711853,0.0537541508674622,-0.0139418048784137,0.998456954956055,0.0678409934043884,-0.0137568656355143,0.997601330280304,0.0690627619624138,-0.0137406894937158,0.997517704963684,0.070217527449131,-0.0137253766879439,0.997437298297882,0.498894959688187,0.272654801607132,0.822656154632568,0.498894900083542,0.27265477180481,0.822656154632568,0.498894959688187,0.272654801607132,0.822656154632568,0.00871668476611376,0.0396713465452194,-0.999174773693085,0.0216762833297253,0.0396260358393192,-0.998979449272156,0.00824710633605719,0.0396728627383709,-0.999178767204285,0.0094842528924346,0.0396688431501389,-0.999167859554291,0.0219321176409721,0.0396250747144222,-0.998973965644836,0.0290092118084431,0.0395974367856979,-0.998794615268707,-6.31619689883678e-009,-0.0290357675403357,0.999578416347504,-5.96373572747666e-009,-0.0274154916405678,0.999624133110046,-6.19240925203712e-009,-0.0284667126834393,0.999594748020172,
- -6.77351552624827e-009,-0.0311380755156279,0.999515175819397,-6.23367313323797e-009,-0.0286564007401466,0.999589383602142,-0.000561751017812639,-0.0530927628278732,0.998589515686035,-0.000645634834654629,-0.056855633854866,0.998382270336151,-0.000473345106001943,-0.0491266064345837,0.99879252910614,-0.000389007036574185,-0.0453425422310829,0.998971462249756,-0.00058806233573705,-0.0542730800807476,0.998525977134705,-0.000689611188136041,-0.0588281713426113,0.998267889022827,0.00998056679964066,-0.0172586869448423,0.999801218509674,-0.00418407749384642,-0.0174334123730659,0.999839305877686,-0.0135677978396416,-0.0175472367554903,0.999754011631012,-0.0112661058083177,-0.0175194572657347,0.999783098697662,0.000508131284732372,-0.0173759199678898,0.999848902225494,-0.0107040563598275,0.999613106250763,0.0256721507757902,-0.00703982729464769,0.999645829200745,0.0256665013730526,-0.0202127639204264,0.999465703964233,0.0256851948797703,-0.0125365173444152,0.999591827392578,0.025674844160676,0.00831460952758789,0.999636709690094,0.0256390944123268,-0.00921138096600771,-0.999290406703949,-0.0365217365324497,-0.00209980271756649,-0.999330580234528,-0.0365233384072781,-0.000882434833329171,-0.99933248758316,-0.0365234278142452,-0.00216209678910673,-0.999330461025238,-0.0365233272314072,-0.00728816678747535,-0.999306321144104,-0.0365223474800587,-0.016447065398097,-0.999197721481323,-0.0365182124078274,-0.64275324344635,-0.45012503862381,0.61988365650177,-0.642753303050995,-0.45012503862381,0.61988365650177,-0.642753303050995,-0.450125068426132,0.61988365650177,0.415499418973923,0.254330515861511,0.873313307762146,0.415499478578568,0.254330515861511,0.873313426971436,0.415499448776245,0.254330515861511,0.873313426971436,0.0697240307927132,0.661070048809052,-0.747077643871307,0.0697240680456162,0.661070048809052,-0.747077703475952,0.0697240680456162,0.661069989204407,-0.747077643871307,0.0124050108715892,0.00434029055759311,0.99991363286972,-0.000336176832206547,0.00440373085439205,0.999990284442902,-0.00663471501320601,0.00443482864648104,0.999968230724335,
- 0.00605859234929085,0.00437197973951697,0.99997216463089,0.018847132101655,0.00430794199928641,0.999813079833984,-0.0350862741470337,0.999376654624939,-0.00390001502819359,-0.0193103514611721,0.999771952629089,-0.00911794696003199,-0.0318755693733692,0.999459624290466,-0.00802364852279425,-0.0289456732571125,0.999571323394775,-0.00440579885616899,0.0294835586100817,-0.0436864122748375,-0.998610198497772,0.0438508614897728,-0.0438684299588203,-0.998074471950531,0.0304319784045219,-0.0436986982822418,-0.998581171035767,0.025163808837533,-0.0436299294233322,-0.998730897903442,0.0262381862848997,-0.0436440482735634,-0.998702585697174,0.0381003580987453,-0.0437966510653496,-0.998313665390015,0.0473893694579601,-0.0439118891954422,-0.997910857200623,7.86828865950717e-011,-0.000331124145304784,0.999999940395355,8.2619196206668e-011,-0.000347689492627978,0.999999940395355,1.17021470291689e-009,-0.00492465868592262,0.999987959861755,2.25384932939221e-009,-0.00948495883494616,0.999955058097839,8.06370081818386e-010,-0.00339347752742469,0.999994337558746,0.013302244246006,-0.0227486491203308,0.999652802944183,0.0133490702137351,-0.0181012377142906,0.999747097492218,0.0133868474513292,-0.0143306348472834,0.999807715415955,0.0133780753239989,-0.0152078261598945,0.999794840812683,0.0133587531745434,-0.01713677495718,0.999763965606689,0.402089357376099,-0.389499932527542,0.828621864318848,0.402089267969131,-0.389499843120575,0.828621745109558,0.402089238166809,-0.389499843120575,0.828621745109558,-0.0318755693733692,0.999459624290466,-0.00802364852279425,-0.0193103514611721,0.999771952629089,-0.00911794696003199,-0.00248046312481165,0.999922871589661,-0.0121713895350695,-0.00541456323117018,0.999911308288574,-0.0121710738167167,-0.0165755860507488,0.999788582324982,-0.0121689029037952,0.00171904556918889,-0.999493539333344,0.0317760184407234,0.00232468382455409,-0.999492347240448,0.0317769832909107,0.00355200655758381,-0.999488592147827,0.0317788794636726,0.00233003380708396,-0.999492347240448,0.031776987016201,0.00234073400497437,-0.999492347240448,0.0317770093679428,
- 0.33124765753746,0.0265202615410089,0.943171083927155,0.331247687339783,0.0265202634036541,0.943171143531799,0.331247627735138,0.0265202596783638,0.943171083927155,0.00868870783597231,-0.00822852738201618,0.999928414821625,0.0216761995106936,-0.00818832777440548,0.999731540679932,0.00826422497630119,-0.0082298181951046,0.999931991100311,0.00947718974202871,-0.0082261273637414,0.999921321868896,0.0219390019774437,-0.00818749982863665,0.999725818634033,0.0289884433150291,-0.00816508289426565,0.999546468257904,1.78555725760532e-010,-0.00208234367892146,-0.999997854232788,3.13512910077307e-010,-0.00365623459219933,-0.999993324279785,2.24418178484953e-010,-0.00261719874106348,-0.999996662139893,3.65500354591528e-013,-4.26251972385217e-006,-1,2.0913062948047e-010,-0.00243891309946775,-0.999997019767761,-0.000538778258487582,0.0214432328939438,-0.999769985675812,-0.000498087028972805,0.019567584618926,-0.999808490276337,-0.000551180099137127,0.0220148954540491,-0.999757587909698,-0.000373673043213785,0.0138328326866031,-0.999904334545136,-0.000598071725107729,0.0241763722151518,-0.999707639217377,-0.000606208690442145,0.0245514456182718,-0.999698460102081,0.00996166281402111,-0.0147682297974825,-0.999841332435608,-0.00418320531025529,-0.0145906051620841,-0.999884843826294,-0.0135790556669235,-0.0144709954038262,-0.999803066253662,-0.0112553462386131,-0.0145007008686662,-0.99983161687851,0.000515067775268108,-0.0146499294787645,-0.99989265203476,-0.0109777050092816,-0.999925434589386,0.00535195646807551,-0.00721891550347209,-0.999959588050842,0.00535878585651517,-0.0207306686788797,-0.999770879745483,0.00533388275653124,-0.0128574725240469,-0.999903082847595,0.0053485119715333,0.00852957274764776,-0.999949097633362,0.00538657326251268,-0.00944817811250687,0.99994158744812,0.00524872029200196,-0.00215482409112155,0.999983966350555,0.00524914730340242,-0.00090565683785826,0.999985873699188,0.00524919200688601,-0.0022184222470969,0.999983727931976,0.0052491445094347,-0.00747584132477641,0.999958336353302,0.00524886418133974,
- -0.0168682094663382,0.999843955039978,0.00524800131097436,-0.649586737155914,0.423986405134201,-0.631088554859161,-0.649586737155914,0.423986405134201,-0.631088554859161,-0.649586617946625,0.423986375331879,-0.631088554859161,0.421226501464844,-0.277923941612244,-0.863323032855988,0.421226501464844,-0.277923941612244,-0.863322973251343,0.421226501464844,-0.277923941612244,-0.863322973251343,0.0578281357884407,-0.640706717967987,0.765604853630066,0.0578281208872795,-0.640706777572632,0.765604972839355,0.0578281804919243,-0.640706717967987,0.765604972839355,0.0677145645022392,0.996443450450897,0.0501512102782726,0.0274622738361359,0.998360395431519,0.0502243340015411,0.0742209255695343,0.995980978012085,0.0501317232847214,0.0462274737656116,0.997668743133545,0.0502003952860832,0.0611861348152161,0.996864855289459,0.0501686260104179,0.150499597191811,0.987357974052429,0.049742192029953,-0.0933407619595528,-0.995633542537689,-0.00116996793076396,-0.0936415493488312,-0.99560534954071,-0.00117374514229596,-0.0938976481556892,-0.995581209659576,-0.00117696134839207,-0.093853697180748,-0.995585322380066,-0.00117640919052064,-0.0938544198870659,-0.995585262775421,-0.00117641827091575,-0.0937476307153702,-0.995595335960388,-0.00117507739923894,-2.36325909952484e-008,0.129367172718048,-0.991596758365631,-2.63118309362653e-008,0.14403361082077,-0.989572823047638,-2.65563286916404e-008,0.145372003316879,-0.98937714099884,-2.67735345005349e-008,0.146561026573181,-0.989201724529266,-2.73574549680689e-008,0.149757474660873,-0.988722801208496,-2.62982027265934e-008,0.143959015607834,-0.989583671092987,-0.0302869156002998,0.472768276929855,-0.880666196346283,-0.0302869193255901,0.472768306732178,-0.880666255950928,-0.0302869379520416,0.472768247127533,-0.880666196346283,0.178504034876823,-0.732342064380646,0.657123565673828,0.178504064679146,-0.732342064380646,0.657123625278473,0.178504034876823,-0.732342064380646,0.657123625278473,-0.00665369583293796,0.000290098367258906,0.999977886676788,-0.00299366074614227,0.000248494965489954,0.999995470046997,
- 0.00484045967459679,0.000159435308887623,0.999988317489624,0.0125933894887567,7.12857290636748e-005,0.999920785427094,0.0161721967160702,3.05909088638145e-005,0.999869287014008,0.00480001140385866,0.00015989517851267,0.999988555908203,-0.0359527207911015,0.029430853202939,-0.998920083045959,-0.0359528213739395,0.0251080803573132,-0.99903804063797,-0.0359525345265865,0.0223241951316595,-0.999104142189026,-0.0359528250992298,0.025130582973361,-0.999037504196167,-0.0359527729451656,0.0289328284561634,-0.99893456697464,-0.0359519347548485,0.0337980650365353,-0.998781859874725,0.636764764785767,0.166057482361794,-0.752964615821838,0.636764764785767,0.166057482361794,-0.752964556217194,0.636764764785767,0.166057467460632,-0.752964496612549,-0.05876849219203,0.000458819937193766,-0.998271584510803,-0.0380388088524342,0.000223135546548292,-0.999276280403137,-0.051448680460453,0.000375587755115703,-0.998675644397736,-0.064913421869278,0.000528701697476208,-0.997890770435333,-0.0660844817757607,0.00054202025057748,-0.997813880443573,-0.0671913102269173,0.000554608413949609,-0.997739970684052,-0.495877355337143,0.304734319448471,-0.813168406486511,-0.495877265930176,0.304734230041504,-0.813168346881866,-0.495877295732498,0.304734259843826,-0.813168406486511,-0.00479627214372158,0.00448413798585534,-0.999978482723236,-0.0047160373069346,0.00448446627706289,-0.99997889995575,0.000358773133484647,0.0045051365159452,-0.999989867210388,-0.00483639119192958,0.00448397407308221,-0.999978244304657,-0.0151058472692966,0.00444178562611341,-0.999876022338867,0.0288399159908295,0.999572992324829,0.00471805222332478,0.0158467032015324,0.999832391738892,0.00917474925518036,0.0261583551764488,0.999624252319336,0.00819571129977703,0.0237914677709341,0.999704241752625,0.00505152996629477,-0.0235912464559078,-0.0445574931800365,0.998728275299072,-0.0351278819143772,-0.0446774214506149,0.998383641242981,-0.024394117295742,-0.0445660315454006,0.998708665370941,-0.0201357901096344,-0.0445204265415668,0.998805522918701,-0.020997665822506,-0.0445297174155712,0.998787403106689,
- -0.0305166225880384,-0.044630192220211,0.998537421226501,-0.0379348583519459,-0.0447057001292706,0.998279750347137,1.22881760322713e-010,-0.000350593269104138,-0.999999940395355,1.31119448631978e-010,-0.000374096242012456,-0.999999940395355,1.69378111536389e-009,-0.00483251782134175,-0.999988317489624,3.24817195362925e-009,-0.0092673422768712,-0.999957084655762,1.1701474234016e-009,-0.00333854113705456,-0.999994516372681,-0.0165470242500305,-0.0222015790641308,-0.999616622924805,-0.0166014693677425,-0.0177526921033859,-0.999704658985138,-0.0166463125497103,-0.0140676284208894,-0.99976247549057,-0.016637034714222,-0.0148318000137806,-0.999751627445221,-0.0166133381426334,-0.0167790707200766,-0.99972128868103,-0.393976897001266,-0.461154967546463,-0.795058727264404,-0.393976897001266,-0.461154937744141,-0.795058727264404,-0.393976926803589,-0.461154997348785,-0.795058727264404,0.0261583551764488,0.999624252319336,0.00819571129977703,0.0158467032015324,0.999832391738892,0.00917474925518036,0.00203583599068224,0.999927461147308,0.0118750790134072,0.00444112531840801,0.999919712543488,0.0118749067187309,0.0135984225198627,0.999837040901184,0.011873621493578,-0.00141353846993297,-0.999517202377319,-0.0310399904847145,-0.00191020267084241,-0.999516308307648,-0.0310406237840652,-0.00291313068009913,-0.999513924121857,-0.031041881069541,-0.00191340304445475,-0.999516308307648,-0.0310406293720007,-0.00191980379167944,-0.999516248703003,-0.031040633097291,-0.399449020624161,0.0406658723950386,-0.915853083133698,-0.399448961019516,0.040665864944458,-0.915853023529053,-0.399448990821838,0.0406658686697483,-0.915853023529053,-0.0241489503532648,-0.00447619706392288,-0.999698340892792,-0.0327961258590221,-0.00424095243215561,-0.999453067779541,-0.0370703004300594,-0.00412453291937709,-0.999304234981537,-0.0284566227346659,-0.00435905577614903,-0.999585509300232,-0.0197760760784149,-0.00459501333534718,-0.999793887138367,-0.0595901794731617,-0.998210430145264,0.00499649113044143,-0.0466502234339714,-0.99887627363205,0.00836747977882624,
- -0.0568271912634373,-0.998353123664856,0.00786444917321205,-0.0545717254281044,-0.998496830463409,0.00511443754658103,0.0540322512388229,0.0503433384001255,0.997269332408905,0.0637584552168846,0.0501396544277668,0.996705055236816,0.0545106716454029,0.0503334291279316,0.997243821620941,0.0507943816483021,0.0504100508987904,0.997436106204987,0.0514818243682384,0.0503959283232689,0.997401654720306,0.0597091279923916,0.0502250455319881,0.996951460838318,0.0661806240677834,0.0500881709158421,0.996549725532532,-0.0346247181296349,0.0013549659634009,-0.999399542808533,-0.034624382853508,0.00136571587063372,-0.999399542808533,-0.0345047265291214,0.00518799712881446,-0.999391138553619,-0.0343848951160908,0.00899945199489594,-0.999368131160736,-0.0345447733998299,0.00391031941398978,-0.999395489692688,-0.0144206434488297,0.019454937428236,-0.99970680475235,-0.0144937047734857,0.015715541318059,-0.999771475791931,-0.0145549885928631,0.0125709185376763,-0.999815106391907,-0.01454340480268,0.0131659097969532,-0.999807596206665,-0.0145102832466364,0.0148656703531742,-0.999784231185913,0.424430072307587,0.493676006793976,-0.759040951728821,0.424430072307587,0.493676036596298,-0.759040951728821,0.424430072307587,0.493676036596298,-0.759040832519531,-0.0568271912634373,-0.998353123664856,0.00786444917321205,-0.0466502234339714,-0.99887627363205,0.00836747977882624,-0.0329298079013824,-0.999405384063721,0.010224424302578,-0.0353138148784637,-0.999323189258575,0.0103016383945942,-0.0443849675357342,-0.998958349227905,0.0105949677526951,0.0317969359457493,0.999140977859497,-0.0265751536935568,0.0322859548032284,0.999124944210052,-0.0265915542840958,0.0332548581063747,0.999092221260071,-0.0266240313649178,0.0322829224169254,0.999125003814697,-0.0265914518386126,0.0322768576443195,0.999125242233276,-0.0265912488102913,0.424324005842209,-0.0609434582293034,-0.903457343578339,0.424323976039886,-0.0609434582293034,-0.903457403182983,0.424324005842209,-0.0609434545040131,-0.903457343578339,0.00740263750776649,0.00823632627725601,-0.999938726425171,
- 0.0184431690722704,0.00820728205144405,-0.999796271324158,0.00705167045816779,0.00823723245412111,-0.999941229820251,0.00807528104633093,0.00823458470404148,-0.999933481216431,0.0186673700809479,0.00820668134838343,-0.999792158603668,0.0246505849063396,0.00819050800055265,-0.999662578105927,-4.79076112114285e-010,0.00208016973920166,0.999997854232788,-8.32301061404195e-010,0.00361388805322349,0.999993503093719,-5.95425653227011e-010,0.00258536473847926,0.999996721744537,-5.32340794709429e-012,2.31144731515087e-005,1,-5.56642287818931e-010,0.00241696578450501,0.999997079372406,-0.000465110380901024,-0.0228891838341951,0.999737977981567,-0.000548281706869602,-0.0259690079838037,0.999662637710571,-0.00034106126986444,-0.0182955525815487,0.999832570552826,-0.000245693372562528,-0.0147639308124781,0.999891042709351,-0.000475149136036634,-0.0232609193772078,0.99972939491272,-0.000604207336436957,-0.0280398968607187,0.999606668949127,0.00878810230642557,0.0122376251965761,0.999886572360992,-0.0032588520552963,0.0124133247882128,0.999917685985565,-0.0111654810607433,0.0125276641920209,0.999859213829041,-0.00928216241300106,0.0125005003064871,0.999878823757172,0.000694668444339186,0.012355862185359,0.999923467636108,0.0189386922866106,0.999805271625519,-0.00554225686937571,-0.0311343632638454,0.999500274658203,-0.00546276569366455,-0.119241632521153,0.992851197719574,-0.00528919138014317,-0.056191798299551,0.998405396938324,-0.00541779119521379,0.0130111575126648,0.999900102615356,-0.00553356902673841,-0.0181244127452374,-0.999821245670319,-0.00538169499486685,-0.0249414034187794,-0.999674499034882,-0.00538134109228849,-0.028890959918499,-0.999568164348602,-0.00538102071732283,-0.0261527094990015,-0.999643504619598,-0.00538125121966004,-0.0198877677321434,-0.9997878074646,-0.00538162747398019,-0.0137297809123993,-0.99989128112793,-0.00538179045543075,-0.642717123031616,-0.491284728050232,0.587838411331177,-0.642717123031616,-0.491284757852554,0.587838470935822,-0.642717123031616,-0.491284757852554,0.587838470935822,0.430926531553268,0.334502160549164,0.838099539279938,
- 0.430926471948624,0.334502130746841,0.838099479675293,0.430926531553268,0.334502160549164,0.838099539279938,0.0549775958061218,0.633971393108368,-0.771399974822998,0.0549775883555412,0.633971393108368,-0.771399796009064,0.0549775958061218,0.633971393108368,-0.771399974822998,-0.0576068907976151,-0.998338103294373,-0.00158769392874092,-0.023318799212575,-0.999726831912994,-0.00160966464318335,-0.0631218329071999,-0.998004615306854,-0.00158398132771254,-0.0393274500966072,-0.99922513961792,-0.00159964500926435,-0.0520784147083759,-0.998641729354858,-0.00159136566799134,-0.128181874752045,-0.99174952507019,-0.00153641542419791,0.0792785733938217,0.995070993900299,0.0595712997019291,0.0795344933867455,0.995050847530365,0.0595668479800224,0.0797540843486786,0.995033442974091,0.0595630295574665,0.0797158479690552,0.995036542415619,0.0595636963844299,0.0797139406204224,0.995036602020264,0.0595637261867523,0.0796251744031906,0.995043635368347,0.0595652684569359,-3.54081066689105e-008,-0.0915010347962379,-0.995804965496063,-4.20640056120192e-008,-0.108701109886169,-0.994074583053589,-4.26742268189173e-008,-0.110278010368347,-0.993900775909424,-4.32137454708936e-008,-0.111672230064869,-0.993745088577271,-4.46629577766089e-008,-0.115417271852493,-0.993317127227783,-4.20286951907656e-008,-0.108609847724438,-0.994084537029266,0.0616965740919113,-0.361664742231369,-0.930264592170715,0.0616965740919113,-0.361664742231369,-0.930264592170715,0.0616965740919113,-0.361664742231369,-0.930264592170715,-0.114656649529934,0.65926194190979,0.743120193481445,-0.114656664431095,0.65926194190979,0.743120133876801,-0.114656656980515,0.659261882305145,0.743120193481445,0.00664687342941761,-0.0651387572288513,0.997854173183441,0.00296859978698194,-0.0651044920086861,0.997874081134796,-0.0048804460093379,-0.0650284290313721,0.997871518135071,-0.0126332826912403,-0.0649493485689163,0.997808635234833,-0.0162153095006943,-0.0649115070700645,0.997759342193604,-0.00483248941600323,-0.0650289058685303,0.997871696949005,0.0359382666647434,0.026078337803483,-0.999013781547546,
- 0.0359386131167412,0.0311642345041037,-0.998868048191071,0.0359383448958397,0.0344399996101856,-0.998760461807251,0.0359386131167412,0.0311405919492245,-0.998868703842163,0.0359383523464203,0.0266658533364534,-0.998998165130615,0.0359369702637196,0.0209444761276245,-0.999134540557861,-0.62591826915741,-0.146549105644226,-0.765995979309082,-0.625918209552765,-0.146549090743065,-0.765995979309082,-0.62591814994812,-0.146549075841904,-0.765996038913727,0.0588198974728584,0.0643929243087769,-0.996189594268799,0.0380863584578037,0.0646579042077065,-0.997180461883545,0.0514986589550972,0.0644897148013115,-0.996588706970215,0.0649658143520355,0.0643090084195137,-0.995813131332397,0.066137321293354,0.0642927214503288,-0.995737075805664,0.0672446042299271,0.064277246594429,-0.995664000511169,0.453186124563217,-0.273915231227875,-0.848288238048553,0.453186124563217,-0.273915261030197,-0.848288118839264,0.453186064958572,-0.273915261030197,-0.848288178443909,0.0269565302878618,0.00388604472391307,-0.999629080295563,0.0375886261463165,0.0037994091399014,-0.99928605556488,0.0428437031805515,0.00375641672872007,-0.999074816703796,0.0322532169520855,0.00384294311515987,-0.999472379684448,0.0215797647833824,0.00392968021333218,-0.999759435653687,0.0433785356581211,0.99904590845108,0.00506225321441889,0.029267868027091,0.999530673027039,0.00904366094619036,0.0403743796050549,0.999148607254028,0.00848908815532923,0.0379330478608608,0.999266684055328,0.00523338001221418,-0.0623788014054298,-0.0448892302811146,0.997042596340179,-0.0743463113903999,-0.0448733977973461,0.99622243642807,-0.0631550550460815,-0.0448884032666683,0.996993720531464,-0.0587221942842007,-0.044892780482769,0.997264444828033,-0.0595912113785744,-0.044891994446516,0.997213006019592,-0.0695280432701111,-0.0448805578052998,0.996569991111755,-0.0772912204265594,-0.0448685176670551,0.995998442173004,0.0397969000041485,-0.00115217245183885,-0.999207139015198,0.0397969000041485,-0.00115226197522134,-0.999207198619843,0.039741899818182,-0.00550741655752063,-0.999194800853729,
- 0.0396861545741558,-0.00986237730830908,-0.999163508415222,0.0397603139281273,-0.0040556681342423,-0.999201059341431,0.0236241444945335,-0.0221660882234573,-0.999475121498108,0.023632749915123,-0.0177913699299097,-0.999562382698059,0.02363939024508,-0.014248157851398,-0.999619007110596,0.0236378610134125,-0.0150800021365285,-0.999606907367706,0.0236344747245312,-0.0168875884264708,-0.999578058719635,-0.385205656290054,-0.440793544054031,-0.81075131893158,-0.385205686092377,-0.440793573856354,-0.81075131893158,-0.385205686092377,-0.440793573856354,-0.81075131893158,0.0403743796050549,0.999148607254028,0.00848908815532923,0.029267868027091,0.999530673027039,0.00904366094619036,0.0143206873908639,0.999834895133972,0.0111885406076908,0.0169102512300015,0.999793350696564,0.0112848682329059,0.0267621148377657,0.999573945999146,0.0116506926715374,-0.0129615692421794,-0.999474227428436,-0.0297209937125444,-0.0134945679455996,-0.999466598033905,-0.0297415852546692,-0.0145670957863331,-0.999450266361237,-0.0297829806804657,-0.0134967472404242,-0.99946653842926,-0.0297416672110558,-0.0135011058300734,-0.999466419219971,-0.0297418311238289,-0.349110782146454,0.0401160381734371,-0.93622237443924,-0.349110811948776,0.0401160456240177,-0.93622237443924,-0.349110841751099,0.040116049349308,-0.93622237443924,0.00954980868846178,0.00442878762260079,0.999944567680359,-0.000254818791290745,0.00447371788322926,0.999990046024323,-0.00509929098188877,0.00449575902894139,0.999976933002472,0.00466684671118855,0.00445121806114912,0.999979197978973,0.0145097244530916,0.00440589524805546,0.999885082244873,-0.0322560369968414,0.999475538730621,-0.00287187611684203,-0.0177466906607151,0.999818325042725,-0.00696373544633389,-0.0292506087571383,0.999553561210632,-0.00609455816447735,-0.0265784990042448,0.999641478061676,-0.00323155475780368,0.0226742625236511,-0.0512992367148399,-0.998425900936127,0.033666804432869,-0.0514276847243309,-0.99810916185379,0.0232722479850054,-0.0513063855469227,-0.998411774635315,0.0190632715821266,-0.0512557029724121,-0.998503565788269,
- 0.0198282822966576,-0.0512649826705456,-0.998488306999207,0.0291137453168631,-0.0513752363622189,-0.998255014419556,0.0363772585988045,-0.0514584109187126,-0.998012483119965,-6.70448419004543e-011,-0.00101291027385741,0.999999463558197,-6.84557341368297e-011,-0.00103422615211457,0.999999463558197,-3.21205839703964e-010,-0.00485276291146874,0.999988198280334,-5.72540403975808e-010,-0.0086499135941267,0.999962568283081,-2.3648547009536e-010,-0.00357281183823943,0.999993681907654,0.0173565056174994,-0.0197356734424829,0.999654591083527,0.0173978935927153,-0.0159464851021767,0.999721467494965,0.0174321662634611,-0.0127911055460572,0.999766230583191,0.0174252949655056,-0.0134251415729523,0.999758064746857,0.0174070429056883,-0.0151060447096825,0.999734461307526,0.448067456483841,-0.464960157871246,0.763575553894043,0.448067456483841,-0.464960157871246,0.763575553894043,0.448067456483841,-0.464960157871246,0.763575553894043,-0.0292506087571383,0.999553561210632,-0.00609455816447735,-0.0177466906607151,0.999818325042725,-0.00696373544633389,-0.00228453706949949,0.999953210353851,-0.00939966551959515,-0.00498642632737756,0.999943435192108,-0.00939949136227369,-0.0152672650292516,0.999839305877686,-0.0093981921672821,0.00161169888451695,-0.999665856361389,0.0257988143712282,0.00216578296385705,-0.999664843082428,0.0257994923740625,0.0032638602424413,-0.999661803245544,0.0258008074015379,0.00216242042370141,-0.999664843082428,0.0257994867861271,0.00215569441206753,-0.999664783477783,0.0257994756102562,0.414524018764496,0.0371363312005997,0.909280359745026,0.414524048566818,0.0371363312005997,0.90928041934967,0.414524018764496,0.0371363312005997,0.90928041934967,-0.00761087564751506,0.0082353800535202,0.999937176704407,-0.0189772341400385,0.00820456258952618,0.99978631734848,-0.0072301933541894,0.00823639240115881,0.999939918518066,-0.00830222107470036,0.00823353603482246,0.999931693077087,-0.0192076656967402,0.00820392835885286,0.999781847000122,-0.0253866165876389,0.00818671565502882,0.99964427947998,-2.4556714439683e-009,0.00208566151559353,-0.999997854232788,
- -4.30797042483277e-009,0.00365886418148875,-0.99999338388443,-3.08521808101148e-009,0.00262035080231726,-0.999996662139893,-1.01567972782268e-011,8.62641627463745e-006,-1,-2.87536838783353e-009,0.00244212057441473,-0.999997019767761,0.000623802479822189,-0.0214385278522968,-0.999769985675812,0.000577643106225878,-0.019575884565711,-0.999808192253113,0.000638170633465052,-0.0220183227211237,-0.999757409095764,0.00043517627636902,-0.0138270743191242,-0.999904334545136,0.000691513530910015,-0.0241708643734455,-0.999707698822021,0.000701038632541895,-0.0245552267879248,-0.999698281288147,-0.0087255546823144,0.0147392991930246,-0.999853312969208,0.00366129190661013,0.0146030513569713,-0.999886691570282,0.011895396746695,0.0145112359896302,-0.999823987483978,0.0098545178771019,0.0145340850576758,-0.999845921993256,-0.000455994624644518,0.0146485865116119,-0.999892592430115,0.00961667019873858,0.999939441680908,0.0053603146225214,0.00632330449298024,0.999965667724609,0.00536555517464876,0.0181600768119097,0.999820828437805,0.00534644955769181,0.0112636042758822,0.999922215938568,0.00535767199471593,-0.00747105153277516,0.999957621097565,0.00538687035441399,0.00827569700777531,-0.999951958656311,0.00525164417922497,0.00188723206520081,-0.999984502792358,0.00525198690593243,0.000793446146417409,-0.999985873699188,0.00525202415883541,0.00194333528634161,-0.999984323978424,0.00525198550894856,0.0065481998026371,-0.999964773654938,0.00525175780057907,0.0147760193794966,-0.999877095222473,0.00525107514113188,0.645035862922668,-0.478870332241058,-0.595493078231812,0.645035862922668,-0.478870332241058,-0.595493018627167,0.645035862922668,-0.478870332241058,-0.595493078231812,-0.429955333471298,0.323985606431961,-0.842716932296753,-0.429955333471298,0.323985636234283,-0.842716872692108,-0.429955333471298,0.323985636234283,-0.842716932296753,-0.055515930056572,0.635321021080017,0.770250082015991,-0.0555159673094749,0.635321021080017,0.770250141620636,-0.0555159747600555,0.635321021080017,0.770250082015991,0.00965443905442953,0.00875831861048937,-0.999915063381195,
- 0.0134090315550566,0.00874478183686733,-0.999871850013733,0.025431003421545,0.00870060082525015,-0.999638736248016,0.0105271693319082,0.00875518377870321,-0.999906361103058,0.0295648854225874,0.00868511479347944,-0.999525189399719,0.025140168145299,0.00870168581604958,-0.999646127223969,4.16013473669707e-010,0.00195359834469855,0.999998092651367,7.32746474607637e-010,0.0034409761428833,0.999994158744812,5.23135312846534e-010,0.00245664245449007,0.999997019767761,-3.21038421541298e-012,-1.50759597090655e-005,1,4.87427931350481e-010,0.00228896061889827,0.99999737739563,-0.000418803218053654,-0.0200851950794458,0.999798238277435,-0.000385620456654578,-0.0182783994823694,0.999832928180695,-0.000428978994023055,-0.0206392593681812,0.999786972999573,-0.000288688257569447,-0.0130005227401853,0.999915480613709,-0.000467249192297459,-0.022723076865077,0.999741733074188,-0.000472346204333007,-0.0230006128549576,0.999735355377197,0.0110102724283934,0.0157581605017185,0.999815285205841,-0.004656997974962,0.0155260153114796,0.999868631362915,-0.0150723205879331,0.0153695698827505,0.999768257141113,-0.0124902306124568,0.0154085122048855,0.999803304672241,0.000551137491129339,0.0156036084517837,0.999878108501434,-0.012949226424098,0.999903500080109,-0.00503491424024105,-0.00851664878427982,0.999951004981995,-0.00504384795203805,-0.0244552996009588,0.999688446521759,-0.00501125864684582,-0.0151661261916161,0.999872386455536,-0.00503040850162506,0.0100651364773512,0.999936521053314,-0.00508021982386708,-0.00876164995133877,-0.999949634075165,-0.00491373566910625,-0.00187962781637907,-0.999986171722412,-0.00491406070068479,-0.00106859812512994,-0.999987363815308,-0.00491408351808786,-0.00248367735184729,-0.999984920024872,-0.00491404114291072,-0.011797122657299,-0.999918341636658,-0.00491351820528507,-0.0199017021805048,-0.999789953231812,-0.00491271540522575,-0.660970568656921,-0.366986274719238,0.654552519321442,-0.660970568656921,-0.366986274719238,0.654552519321442,-0.660970568656921,-0.366986274719238,0.654552578926086,0.421592116355896,0.235853269696236,0.875576019287109,
- 0.421592175960541,0.235853299498558,0.875576019287109,0.421592175960541,0.235853299498558,0.875576078891754,0.028281182050705,0.649737060070038,-0.75963282585144,0.0282811857759953,0.649737060070038,-0.759632885456085,0.0282811857759953,0.649737060070038,-0.75963282585144,0.00868897140026093,-0.00822964310646057,0.99992847442627,0.0216711908578873,-0.00818945653736591,0.999731659889221,0.00825969036668539,-0.00823094975203276,0.999932050704956,0.0094766654074192,-0.00822724401950836,0.999921262264252,0.0219337344169617,-0.00818862859159708,0.999725937843323,0.0289852023124695,-0.00816620327532291,0.999546587467194,9.9669654474166e-011,-0.00208646757528186,-0.999997794628143,1.75080533404426e-010,-0.00366510637104511,-0.999993324279785,1.25193841404858e-010,-0.00262078689411283,-0.999996542930603,-1.0413079496981e-013,2.17985666495224e-006,-1,1.16685772155734e-010,-0.00244268006645143,-0.999997079372406,-0.000533745682332665,0.0214420165866613,-0.999769985675812,-0.000493022205773741,0.0195699986070395,-0.999808371067047,-0.000546324299648404,0.0220202393829823,-0.999757468700409,-0.000368198787327856,0.013832064345479,-0.999904274940491,-0.00059333659010008,0.024181367829442,-0.999707460403442,-0.000601500098127872,0.0245566423982382,-0.999698340892792,0.00995984207838774,-0.0147708812728524,-0.999841392040253,-0.00418290682137012,-0.0145932864397764,-0.999884843826294,-0.0135792894288898,-0.0144736710935831,-0.999803066253662,-0.0112539865076542,-0.0145033923909068,-0.99983149766922,0.000515633379109204,-0.0146526107564569,-0.99989253282547,-0.010976629331708,-0.999925494194031,0.00535412738099694,-0.00721859745681286,-0.999959588050842,0.0053609530441463,-0.0207291338592768,-0.999770939350128,0.00533605879172683,-0.0128560168668628,-0.999903082847595,0.00535068428143859,0.0085297292098403,-0.999949157238007,0.00538873299956322,-0.00944793876260519,0.99994158744812,0.00525255454704165,-0.00215383153408766,0.999983966350555,0.00525298528373241,-0.000906306144315749,0.999985814094543,0.00525302952155471,-0.00221803062595427,0.999983727931976,0.0052529820241034,
- -0.00747520290315151,0.999958336353302,0.00525269843637943,-0.0168699212372303,0.999843895435333,0.00525182951241732,-0.649566411972046,0.424174785614014,-0.630982756614685,-0.649566471576691,0.424174845218658,-0.630982756614685,-0.649566471576691,0.424174785614014,-0.63098281621933,0.421265780925751,-0.278055012226105,-0.863261640071869,0.421265751123428,-0.278054982423782,-0.863261580467224,0.421265810728073,-0.278055012226105,-0.863261699676514,0.0578391253948212,-0.640675663948059,0.765630006790161,0.0578391253948212,-0.640675663948059,0.765630006790161,0.0578391626477242,-0.640675723552704,0.765630066394806,0.0676920637488365,0.996444821357727,0.0501546747982502,0.0274608265608549,0.998360216617584,0.0502277314662933,0.074207603931427,0.995981872081757,0.0501351691782475,0.0462127886712551,0.997669279575348,0.0502038300037384,0.0611544363200665,0.996866524219513,0.0501721017062664,0.150440886616707,0.987366616725922,0.0497459806501865,-0.0933357700705528,-0.995634019374847,-0.00117146398406476,-0.0936361849308014,-0.995605826377869,-0.00117523537483066,-0.0938928574323654,-0.99558162689209,-0.00117845763452351,-0.0938490703701973,-0.995585739612579,-0.00117790780495852,-0.0938490331172943,-0.995585799217224,-0.00117790733929724,-0.0937426388263702,-0.995595812797546,-0.00117657170630991,1.05271347194957e-008,0.129372015595436,-0.991596102714539,1.17207301641997e-008,0.144040554761887,-0.989571869373322,1.18293961293148e-008,0.145375981926918,-0.989376544952393,1.19259242481462e-008,0.14656226336956,-0.989201545715332,1.21863870106154e-008,0.149763211607933,-0.988721907138824,1.17146683464853e-008,0.143966034054756,-0.989582657814026,-0.0302743874490261,0.472771853208542,-0.880664765834808,-0.0302743948996067,0.472771793603897,-0.880664646625519,-0.0302744060754776,0.472771793603897,-0.880664706230164,0.178508624434471,-0.732344329357147,0.657119870185852,0.17850860953331,-0.732344269752502,0.657119929790497,0.17850860953331,-0.732344269752502,0.657119929790497,-0.00671551609411836,0.000290624651825055,0.99997740983963,
- -0.00302323745563626,0.000248658703640103,0.999995410442352,0.00484342081472278,0.000159237461048178,0.999988257884979,0.0125947818160057,7.11139000486583e-005,0.999920725822449,0.0161717273294926,3.04440472973511e-005,0.999869227409363,0.00478592002764344,0.000159891147632152,0.999988615512848,-0.0359967760741711,0.0294374730437994,-0.998918235301971,-0.0359968990087509,0.025116479024291,-0.999036252498627,-0.0359966047108173,0.0223268456757069,-0.999102473258972,-0.03599688783288,0.025136498734355,-0.999035716056824,-0.0359968282282352,0.0289403032511473,-0.998932778835297,-0.0359959863126278,0.033797949552536,-0.998780250549316,0.636854410171509,0.16615392267704,-0.75286740064621,0.636854410171509,0.16615392267704,-0.752867341041565,0.636854469776154,0.16615392267704,-0.75286740064621,-0.0587685033679008,0.00045919552212581,-0.998271524906158,-0.038043811917305,0.000223561626626179,-0.999276101589203,-0.0514498986303806,0.000375974806956947,-0.998675584793091,-0.0649108290672302,0.000529049371834844,-0.997890949249268,-0.0660832896828651,0.000542384164873511,-0.997813999652863,-0.0671915784478188,0.000554989266674966,-0.997740030288696,-0.495820283889771,0.304843991994858,-0.813161969184875,-0.495820313692093,0.304844051599503,-0.81316202878952,-0.495820283889771,0.304843991994858,-0.813161969184875,0.00870727095752954,0.00822754483669996,-0.999928295612335,0.0217057429254055,0.00818731635808945,-0.999730944633484,0.00830261595547199,0.00822877511382103,-0.999931693077087,0.00949888117611408,0.00822513457387686,-0.999921143054962,0.0219695884734392,0.00818648468703032,-0.999725162982941,0.0290052127093077,0.0081641124561429,-0.999545931816101,9.70852079285045e-011,0.00208195997402072,0.999997854232788,1.70641611951794e-010,0.00365935266017914,0.99999338388443,1.21854165646695e-010,0.0026131218764931,0.999996602535248,-4.9009478116438e-013,-1.05099188658642e-005,1,1.13597818651723e-010,0.00243606744334102,0.999997019767761,-0.000533139274921268,-0.0213947668671608,0.999770998954773,-0.000491526559926569,-0.0194780454039574,0.99981015920639,
- -0.000545846822205931,-0.0219800919294357,0.999758243560791,-0.000369127519661561,-0.0138402953743935,0.999904215335846,-0.000593813019804657,-0.0241894759237766,0.999707281589508,-0.000600511266384274,-0.0244980081915855,0.999699771404266,0.00996379088610411,0.0147670703008771,0.999841332435608,-0.00418390985578299,0.0145894140005112,0.999884903430939,-0.013578568585217,0.0144698200747371,0.999803066253662,-0.0112574640661478,0.0144994901493192,0.999831557273865,0.000513769628014416,0.0146487290039659,0.99989265203476,-0.0109776640310884,0.999925315380096,-0.00536924367770553,-0.00721890619024634,0.999959528446198,-0.00537608051672578,-0.020730122923851,0.999770820140839,-0.00535114854574203,-0.012857417576015,0.99990302324295,-0.00536579545587301,0.00852859951555729,0.999949097633362,-0.00540389725938439,-0.00944782141596079,-0.999941766262054,-0.00523169105872512,-0.00215505948290229,-0.9999840259552,-0.0052320477552712,-0.000907096546143293,-0.999985933303833,-0.00523208035156131,-0.00221982831135392,-0.999983906745911,-0.00523204496130347,-0.00747606065124273,-0.999958455562592,-0.00523181492462754,-0.0168696027249098,-0.999844014644623,-0.00523104285821319,-0.649527072906494,-0.42400461435318,0.631137669086456,-0.649527072906494,-0.424004584550858,0.631137609481812,-0.649527013301849,-0.424004554748535,0.631137728691101,0.421236306428909,0.278190761804581,0.863232254981995,0.421236336231232,0.278190761804581,0.863232254981995,0.421236336231232,0.278190761804581,0.863232254981995,0.0578623712062836,0.640576720237732,-0.765711069107056,0.057862363755703,0.640576779842377,-0.765711069107056,0.0578623265028,0.640576720237732,-0.765711069107056,0.06770309060812,0.996376276016235,0.0514860078692436,0.027462488040328,0.998292207717896,0.0515610314905643,0.0742150098085403,0.99591338634491,0.0514659658074379,0.0462185554206371,0.997601091861725,0.0515364781022072,0.0611690543591976,0.996797800064087,0.0515038929879665,0.150471478700638,0.987294614315033,0.0510662533342838,-0.0933377891778946,-0.995633840560913,-0.00120757194235921,
- -0.0936384946107864,-0.99560558795929,-0.00121144822333008,-0.0938945636153221,-0.995581388473511,-0.00121474917978048,-0.0938524007797241,-0.995585441589355,-0.0012142057530582,-0.0938548594713211,-0.995585203170776,-0.00121423765085638,-0.0937454476952553,-0.995595514774323,-0.00121282716281712,-1.53186761053803e-008,0.132763534784317,-0.991147756576538,-1.70543472677309e-008,0.147806212306023,-0.98901641368866,-1.72127485598139e-008,0.149179056286812,-0.988810181617737,-1.73530345648487e-008,0.15039487183094,-0.988626003265381,-1.77315442329018e-008,0.153675332665443,-0.988121509552002,-1.70452967296342e-008,0.147727772593498,-0.98902815580368,-0.0365581102669239,0.464748829603195,-0.884687483310699,-0.0365581288933754,0.464748799800873,-0.884687602519989,-0.0365581139922142,0.464748829603195,-0.884687542915344,0.170937910676003,-0.726212084293365,0.665880084037781,0.170937865972519,-0.726212024688721,0.665880143642426,0.170937895774841,-0.726212084293365,0.665880143642426,-0.00689534423872828,0.000285502435872331,0.999976217746735,-0.00310352398082614,0.000242400506976992,0.999995231628418,0.00497048813849688,0.000150612584548071,0.999987661838531,0.0129285147413611,6.01300125708804e-005,0.999916434288025,0.0166043117642403,1.83318643394159e-005,0.999862194061279,0.00491265533491969,0.000151270069181919,0.999987900257111,-0.0350123718380928,0.0302253104746342,-0.998929798603058,-0.0350125133991241,0.0257828310132027,-0.999054253101349,-0.0350122414529324,0.0229181423783302,-0.999124109745026,-0.0350125171244144,0.0257990937680006,-0.99905389547348,-0.035012423992157,0.0297101531177759,-0.998945236206055,-0.0350115261971951,0.0346997082233429,-0.998784303665161,0.627196490764618,0.164626389741898,-0.761263966560364,0.627196490764618,0.164626389741898,-0.761263966560364,0.627196431159973,0.164626374840736,-0.761263906955719,-0.0603335089981556,0.000481889117509127,-0.99817818403244,-0.0390592776238918,0.000240029054111801,-0.999236941337585,-0.0528203994035721,0.000396464340155944,-0.998603999614716,-0.0666373148560524,0.000553572841454297,-0.997777163982391,
- -0.0678424909710884,0.000567278533708304,-0.997695982456207,-0.0689817443490028,0.000580234744120389,-0.997617781162262,-0.487856596708298,0.298529058694839,-0.820290446281433,-0.487856566905975,0.298528999090195,-0.820290446281433,-0.487856656312943,0.298529088497162,-0.820290446281433,0.00939337909221649,0.00509296637028456,0.999942898750305,-0.000248102674959227,0.00513532524928451,0.99998676776886,-0.00501323211938143,0.0051560839638114,0.999974191188812,0.00459124334156513,0.00511412415653467,0.999976456165314,0.0142695028334856,0.00507136154919863,0.999885320663452,-0.0309236347675323,0.999514162540436,-0.00389665644615889,-0.0170092359185219,0.999823451042175,-0.00798490643501282,-0.0280399490147829,0.999581575393677,-0.00710746180266142,-0.0254829954355955,0.999666273593903,-0.00423573143780231,0.0223307311534882,-0.050734881311655,-0.998462557792664,0.0331809371709824,-0.0508560910820961,-0.998154640197754,0.0229003690183163,-0.0507413819432259,-0.998449265956879,0.0187850166112185,-0.050693966448307,-0.998537540435791,0.0195565223693848,-0.0507029220461845,-0.998522281646729,0.0286960769444704,-0.0508067086338997,-0.998296141624451,0.035877950489521,-0.0508852899074554,-0.998059868812561,-3.08641306956403e-011,-0.000279396132100374,1,-3.18802415022468e-011,-0.000288594426820055,1,-4.6558601418667e-010,-0.00421469565480947,0.999991178512573,-8.98268404103675e-010,-0.00813153386116028,0.99996691942215,-3.20678428256116e-010,-0.00290292710997164,0.999995827674866,0.0176423639059067,-0.0195035841315985,0.999654173851013,0.0176864489912987,-0.0156387854367495,0.999721348285675,0.0177231468260288,-0.012403754517436,0.999766051769257,0.0177160147577524,-0.013033757917583,0.999758183956146,0.0176963172852993,-0.0147704482078552,0.999734282493591,0.43667870759964,-0.472415000200272,0.765595138072968,0.436678677797318,-0.472415000200272,0.765595078468323,0.43667870759964,-0.472415000200272,0.765595197677612,-0.0280399490147829,0.999581575393677,-0.00710746180266142,-0.0170092359185219,0.999823451042175,-0.00798490643501282,
- -0.00218923320062459,0.999943196773529,-0.0104381032288074,-0.00477809086441994,0.999934196472168,-0.0104378927499056,-0.0146266128867865,0.999838590621948,-0.0104364426806569,0.00154077354818583,-0.999627470970154,0.0272530540823936,0.002072126371786,-0.999626398086548,0.0272536873817444,0.00312765128910542,-0.999623715877533,0.0272549260407686,0.00206973333843052,-0.999626457691193,0.0272536855190992,0.00206494657322764,-0.999626517295837,0.0272536799311638,0.419519543647766,0.0399705655872822,0.906865894794464,0.419519573450089,0.0399705693125725,0.906865894794464,0.419519573450089,0.0399705693125725,0.906865894794464,-0.00891866628080606,0.00800966937094927,0.99992823600769,-0.0222486518323421,0.00796840526163578,0.999720811843872,-0.00848056096583605,0.00801100116223097,0.999932050704956,-0.00972624588757753,0.00800721067935228,0.999920725822449,-0.0225178189575672,0.00796755868941545,0.99971479177475,-0.0297552905976772,0.00794453918933868,0.999525666236877,-3.1697419689003e-010,0.00214425078593194,-0.999997675418854,-5.55430257342948e-010,0.00375734618864954,-0.999992966651917,-3.97243238303702e-010,0.00268725072965026,-0.999996423721313,-5.98743385600564e-013,4.05034870709642e-006,-1,-3.70486863410235e-010,0.00250625051558018,-0.999996900558472,0.000535307277459651,-0.0220147594809532,-0.999757528305054,0.000616635254118592,-0.0257588066160679,-0.999668002128601,0.000448375591076911,-0.0180127844214439,-0.999837696552277,0.000365556043107063,-0.0142001546919346,-0.999899208545685,0.000560059968847781,-0.0231542829424143,-0.999731779098511,0.000659355660900474,-0.0277255102992058,-0.999615371227264,-0.0102380616590381,0.0143888173624873,-0.999844133853912,0.00427961396053433,0.0142065100371838,-0.999889969825745,0.0139317912980914,0.0140836350619793,-0.999803721904755,0.0115381330251694,0.0141142327338457,-0.999833822250366,-0.000546852243132889,0.0142674520611763,-0.999898135662079,0.0109789781272411,0.999924719333649,0.00549847399815917,0.00721905753016472,0.99995881319046,0.00550549384206533,0.0207326412200928,0.999770104885101,0.00547990063205361,
- 0.0128593081608415,0.999902248382568,0.00549493357539177,-0.00852969847619534,0.99994832277298,0.00553404726088047,0.00944822002202272,-0.999940931797028,0.0053904065862298,0.00215426995418966,-0.999983191490173,0.00539085175842047,0.000904869753867388,-0.999985098838806,0.00539089925587177,0.00221756822429597,-0.999983012676239,0.00539084849879146,0.00747556053102016,-0.999957501888275,0.00539055420085788,0.0168682467192411,-0.999843239784241,0.00538965780287981,0.642400085926056,-0.420012652873993,-0.641023874282837,0.642400085926056,-0.420012593269348,-0.641023874282837,0.642400085926056,-0.420012652873993,-0.641023874282837,-0.413000077009201,0.272611916065216,-0.868972778320313,-0.413000106811523,0.272611945867538,-0.868972837924957,-0.413000077009201,0.272611916065216,-0.868972837924957,-0.0706149265170097,0.638600409030914,0.766291737556458,-0.0706149041652679,0.638600468635559,0.766291737556458,-0.0706149414181709,0.638600409030914,0.766291797161102,-0.0676967203617096,0.996377050876617,-0.0514789149165154,-0.0274617839604616,0.998292565345764,-0.0515538528561592,-0.074219599366188,0.99591338634491,-0.0514588542282581,-0.0462230853736401,0.997601211071014,-0.0515293292701244,-0.0611517168581486,0.996799230575562,-0.0514968112111092,-0.15043793618679,0.987300038337708,-0.051059540361166,0.0933399125933647,-0.995633602142334,0.00120104709640145,0.0936406999826431,-0.995605409145355,0.00120492232963443,0.0938973799347878,-0.995581150054932,0.00120822910685092,0.0938541069626808,-0.995585262775421,0.00120767171029001,0.0938549041748047,-0.995585203170776,0.00120768160559237,0.0937474071979523,-0.995595335960388,0.00120629696175456,2.73665912153831e-009,0.132759794592857,0.991148233413696,3.04661051941935e-009,0.147796019911766,0.989017903804779,3.07499314899928e-009,0.1491729170084,0.988811135292053,3.10021963656482e-009,0.150396704673767,0.988625705242157,3.16763215657545e-009,0.153666988015175,0.988122761249542,3.04503378067977e-009,0.14771956205368,0.989029347896576,0.0365648679435253,0.464736491441727,0.88469386100769,
- 0.036564864218235,0.464736431837082,0.884693801403046,0.0365648604929447,0.464736372232437,0.884693741798401,-0.17096845805645,-0.726186335086823,-0.665900349617004,-0.17096845805645,-0.726186335086823,-0.665900349617004,-0.17096845805645,-0.726186335086823,-0.665900349617004,0.0068807858042419,0.000285924237687141,-0.999976277351379,0.0031046534422785,0.000243003538344055,-0.999995231628418,-0.00497672380879521,0.000151138097862713,-0.999987602233887,-0.0129433441907167,6.05639070272446e-005,-0.999916255474091,-0.0166046861559153,1.89328857231885e-005,-0.999862134456635,-0.00491950567811728,0.000151788583025336,-0.999987959861755,0.0349991507828236,0.0302351526916027,0.998929917812347,0.0349994823336601,0.025804540142417,0.999054133892059,0.034999318420887,0.0229070298373699,0.999124765396118,0.0349994860589504,0.0258219838142395,0.999053716659546,0.0349992215633392,0.029735678806901,0.998944938182831,0.0349981188774109,0.0347000472247601,0.998784780502319,-0.627194225788116,0.164632797241211,0.761264383792877,-0.627194285392761,0.164632812142372,0.761264383792877,-0.627194285392761,0.164632812142372,0.761264383792877,0.0603436455130577,0.000481407274492085,0.998177587985992,0.0390548929572105,0.000239370318013243,0.999237060546875,0.0528255738317966,0.000395921873860061,0.998603761196136,0.0666520148515701,0.00055314670316875,0.99777615070343,0.0678575709462166,0.000566857343073934,0.997694849967957,0.0689972415566444,0.000579818733967841,0.997616767883301,0.487727046012878,0.298512667417526,0.82037353515625,0.487727046012878,0.298512667417526,0.82037341594696,0.487727046012878,0.298512667417526,0.82037353515625,0.00894389301538467,0.00801390968263149,-0.999927937984467,0.0222567319869995,0.00797269959002733,-0.999720573425293,0.00850061699748039,0.00801525730639696,-0.999931812286377,0.00974869076162577,0.0080114584416151,-0.99992048740387,0.0225249733775854,0.00797185394912958,-0.999714493751526,0.0297585763037205,0.00794884748756886,-0.999525487422943,-1.68267604711003e-011,0.00215771491639316,0.999997675418854,
- -2.92185754757757e-011,0.00374673190526664,0.999993026256561,-2.07965918791464e-011,0.00266677071340382,0.999996423721313,1.72865888948106e-014,-2.21667892219557e-006,1,-1.94733135866487e-011,0.00249708537012339,0.999996900558472,-0.000564189627766609,-0.0219723787158728,0.999758422374725,-0.000645627500489354,-0.0257301833480597,0.999668717384338,-0.000478281290270388,-0.0180083457380533,0.999837756156921,-0.000396544521208853,-0.0142368618398905,0.999898672103882,-0.000589754607062787,-0.0231520179659128,0.999731838703156,-0.000688432483002543,-0.0277053732424974,0.999615967273712,0.0102125601842999,0.0143902553245425,0.999844372272491,-0.00430843373760581,0.0142078995704651,0.99988979101181,-0.0139063447713852,0.0140857184305787,0.999804139137268,-0.0115686086937785,0.0141155989840627,0.999833464622498,0.000490898499265313,0.0142685016617179,0.999898076057434,-0.0109768407419324,0.999924659729004,-0.00550678418949246,-0.00721920654177666,0.99995881319046,-0.00551375141367316,-0.0207289382815361,0.999770104885101,-0.00548833655193448,-0.0128560289740562,0.999902248382568,-0.00550327077507973,0.00852870661765337,0.99994832277298,-0.00554210273548961,-0.00944725796580315,-0.999940991401672,-0.00537035055458546,-0.00215401011519134,-0.999983251094818,-0.00537079107016325,-0.000906321685761213,-0.999985158443451,-0.00537083717063069,-0.00221872422844172,-0.999983131885529,-0.00537078874185681,-0.0074752070941031,-0.999957740306854,-0.00537049816921353,-0.0168694164603949,-0.99984335899353,-0.00536960922181606,-0.642438948154449,-0.419798940420151,0.641124904155731,-0.642438948154449,-0.419798970222473,0.641124904155731,-0.642438948154449,-0.419798970222473,0.641124904155731,0.413056343793869,0.272666573524475,0.868928849697113,0.413056373596191,0.272666573524475,0.868928909301758,0.413056343793869,0.272666573524475,0.868928968906403,0.0706604793667793,0.63842910528183,-0.76643031835556,0.0706604421138763,0.638429045677185,-0.766430377960205,0.0706604868173599,0.638429045677185,-0.766430377960205,-0.0719976648688316,-0.996232569217682,0.0483439527451992,
- -0.0292380787432194,-0.998398840427399,0.0484237559139729,-0.0789625346660614,-0.995705723762512,0.0483225099742413,-0.0491647571325302,-0.997617483139038,0.0483976304531097,-0.0650060176849365,-0.996712207794189,0.0483630709350109,-0.15989276766777,-0.985971689224243,0.0478982850909233,0.0993272140622139,0.995054006576538,-0.00128287868574262,0.0996461734175682,0.995022177696228,-0.00128698884509504,0.0999164655804634,0.994995057582855,-0.00129047164227813,0.0998734533786774,0.994999289512634,-0.00128991750534624,0.099879115819931,0.994998753070831,-0.00128999049775302,0.0997598245739937,0.995010793209076,-0.00128845334984362,3.41016921368009e-008,-0.124798737466335,-0.992182075977325,3.79804987460375e-008,-0.138993635773659,-0.990293323993683,3.83332903197697e-008,-0.140284702181816,-0.990111231803894,3.86483733905152e-008,-0.14143779873848,-0.989947140216827,3.94942283321598e-008,-0.144533291459084,-0.989499926567078,3.79616800216809e-008,-0.138924762606621,-0.990302979946136,0.0229443311691284,-0.484686642885208,-0.87438690662384,0.0229443479329348,-0.484686672687531,-0.874386966228485,0.0229443311691284,-0.484686642885208,-0.87438690662384,-0.196824878454208,0.733921051025391,0.65009218454361,-0.196824908256531,0.733921110630035,0.65009218454361,-0.196824878454208,0.733921051025391,0.65009218454361,0.00694523053243756,-0.000305632507661358,0.999975919723511,0.0031293265055865,-0.000259448192082345,0.999995052814484,-0.00497009046375752,-0.000161409436259419,0.999987661838531,-0.0129289012402296,-6.50584333925508e-005,0.999916434288025,-0.0166041646152735,-2.05602282221662e-005,0.999862253665924,-0.00489994743838906,-0.000162258525961079,0.999988079071045,0.0349685624241829,-0.0283966585993767,-0.99898499250412,0.0349687971174717,-0.0242353621870279,-0.999094486236572,0.034968625754118,-0.0215201489627361,-0.999156713485718,0.0349687971174717,-0.0242524743080139,-0.999094128608704,0.0349686183035374,-0.0279259793460369,-0.99899822473526,0.0349677130579948,-0.0325916633009911,-0.998856902122498,-0.630470275878906,-0.155315726995468,-0.760515868663788,
- -0.630470275878906,-0.155315726995468,-0.760515809059143,-0.630470216274261,-0.155315726995468,-0.760515809059143,0.0603385381400585,-0.000512886792421341,-0.998177886009216,0.0390560030937195,-0.000255240447586402,-0.99923700094223,0.0528227090835571,-0.000421888951677829,-0.998603880405426,0.066645160317421,-0.000589253846555948,-0.997776567935944,0.0678502321243286,-0.000603846972808242,-0.99769538640976,0.0689894109964371,-0.000617642654106021,-0.997617244720459,0.501880943775177,-0.289478093385696,-0.815057158470154,0.501880943775177,-0.289478123188019,-0.815057039260864,0.501880884170532,-0.289478093385696,-0.815057039260864,-0.0696970671415329,0.996238887310028,-0.0514834187924862,-0.0282742381095886,0.998269498348236,-0.0515632033348084,-0.0763925164937973,0.995748937129974,-0.0514621734619141,-0.0475721396505833,0.99753737449646,-0.0515370853245258,-0.0629775375127792,0.996685266494751,-0.0515024028718472,-0.154888197779655,0.986612796783447,-0.0510379485785961,0.0960742607712746,-0.995373427867889,0.00126577261835337,0.0963829979300499,-0.995343565940857,0.00126986985560507,0.0966465920209885,-0.995317935943604,0.00127336790319532,0.0966029912233353,-0.995322287082672,0.00127278931904584,0.0966045036911964,-0.995322048664093,0.00127280922606587,0.0964929908514023,-0.995332896709442,0.00127132935449481,1.53197099450608e-008,0.132772848010063,0.991146564483643,1.7050917122674e-008,0.147776901721954,0.989020824432373,1.72104854812005e-008,0.149159818887711,0.988813161849976,1.7352688175265e-008,0.150392293930054,0.988626420497894,1.77276575641372e-008,0.153642073273659,0.988126575946808,1.70422520540114e-008,0.147701784968376,0.989031970500946,0.0374822616577148,0.465209871530533,0.884406507015228,0.0374822653830051,0.465209931135178,0.884406566619873,0.0374822430312634,0.465209901332855,0.884406447410584,-0.17438343167305,-0.723329722881317,-0.668120205402374,-0.174383446574211,-0.723329722881317,-0.668120145797729,-0.17438343167305,-0.723329722881317,-0.668120145797729,0.00716260960325599,0.000292963057290763,-0.999974310398102,
- 0.00323526724241674,0.000247001269599423,-0.999994814395905,-0.00511937215924263,0.000149216008139774,-0.999986886978149,-0.0133210923522711,5.32063422724605e-005,-0.999911308288574,-0.0170954763889313,9.01855037227506e-006,-0.999853909015656,-0.00504308799281716,0.000150108928210102,-0.999987363815308,0.0340323820710182,0.0302332360297441,0.998963356018066,0.0340323857963085,0.0258105788379908,0.999087452888489,0.0340320244431496,0.0229574497789145,0.999157011508942,0.0340323820710182,0.0258326455950737,0.999086856842041,0.0340324193239212,0.0297247041016817,0.998978674411774,0.0340317152440548,0.0346994213759899,0.998818278312683,-0.617878615856171,0.158596098423004,0.770112633705139,-0.617878615856171,0.158596098423004,0.77011251449585,-0.617878615856171,0.158596098423004,0.770112574100494,0.0621253848075867,0.000523981521837413,0.99806821346283,0.040202658623457,0.000267353374511003,0.999191522598267,0.0543879680335522,0.000433395907748491,0.998519837856293,0.0686300694942474,0.000600144558120519,0.997642040252686,0.0698582977056503,0.000614526739809662,0.997556746006012,0.0710186362266541,0.000628114270512015,0.997474789619446,0.485771775245667,0.287388443946838,0.825489938259125,0.485771775245667,0.287388443946838,0.82548999786377,0.485771775245667,0.287388443946838,0.82548999786377,-0.00479792105033994,0.00523224798962474,-0.99997478723526,-0.00471535325050354,0.00523056788370013,-0.999975204467773,0.000491631915792823,0.00512449815869331,-0.99998676776886,-0.00483920658007264,0.00523308897390962,-0.999974608421326,-0.0153764802962542,0.00544730667024851,-0.999867022037506,0.0587078630924225,0.998269081115723,0.00352307735010982,0.043610580265522,0.999017715454102,0.00785690266638994,0.055592205375433,0.998429417610168,0.00694405939429998,0.0528034493327141,0.998597264289856,0.00392371276393533,-0.0255345534533262,-0.0501566119492054,0.998414874076843,-0.037306260317564,-0.0500037707388401,0.998052000999451,-0.0261812247335911,-0.0501484014093876,0.99839860200882,-0.0216907318681479,-0.0502050220966339,0.998503446578979,
- -0.0225363597273827,-0.0501944273710251,0.998485207557678,-0.0324421674013138,-0.0500677824020386,0.998218834400177,-0.0402009226381779,-0.0499651283025742,0.997941613197327,-6.5470376284793e-006,-0.000304891087580472,-1,-7.04804369888734e-006,-0.000324876455124468,-1,-0.000105165228887927,-0.00423882529139519,-0.999990999698639,-0.000202779861865565,-0.00813272595405579,-0.99996691942215,-7.22924669389613e-005,-0.00292751262895763,-0.999995708465576,-0.0166693739593029,-0.0190992895513773,-0.999678671360016,-0.0166117157787085,-0.015170082449913,-0.999746978282928,-0.0165637638419867,-0.0119154201820493,-0.999791860580444,-0.0165737234055996,-0.0125901931896806,-0.999783456325531,-0.0165990628302097,-0.0143101252615452,-0.9997598528862,-0.455183118581772,-0.43162676692009,-0.778785347938538,-0.455183148384094,-0.431626796722412,-0.778785347938538,-0.455183148384094,-0.431626737117767,-0.778785347938538,0.055592205375433,0.998429417610168,0.00694405939429998,0.043610580265522,0.999017715454102,0.00785690266638994,0.0275065712630749,0.999567329883575,0.0104171438142657,0.0303204003721476,0.999485969543457,0.0104169333353639,0.041025135666132,0.999103903770447,0.010415380820632,-0.0267942305654287,-0.999269723892212,-0.027243522927165,-0.0273728594183922,-0.999254047870636,-0.0272442847490311,-0.0285216439515352,-0.999221861362457,-0.0272457543760538,-0.0273700430989265,-0.999254047870636,-0.0272442754358053,-0.0273644085973501,-0.99925422668457,-0.0272442698478699,-0.391087412834167,0.043836448341608,-0.919309079647064,-0.391087383031845,0.0438364520668983,-0.919309020042419,-0.391087412834167,0.0438364520668983,-0.919309020042419,0.0677271336317062,0.996374666690826,0.0514852367341518,0.0274627692997456,0.998292207717896,0.0515603385865688,0.0742224678397179,0.995912849903107,0.0514652468264103,0.0462270155549049,0.997600674629211,0.0515357740223408,0.0612097233533859,0.996795356273651,0.0515030883252621,0.150549799203873,0.987282752990723,0.0510649792850018,-0.0933407917618752,-0.995633482933044,-0.00120554282329977,
- -0.0936410650610924,-0.99560534954071,-0.00120941351633519,-0.0938992500305176,-0.995581030845642,-0.00121274136472493,-0.0938546881079674,-0.995585203170776,-0.00121216720435768,-0.0938522070646286,-0.995585381984711,-0.00121213507372886,-0.0937478616833687,-0.995595216751099,-0.00121079024393111,7.17578032549682e-008,0.132758975028992,-0.991148412227631,7.98902561882642e-008,0.147804826498032,-0.989016652107239,8.06311177825592e-008,0.149175465106964,-0.988810777664185,8.12907146041653e-008,0.150395810604095,-0.988625884056091,8.30635542570235e-008,0.153675749897957,-0.988121330738068,7.98496841980523e-008,0.147729739546776,-0.989027798175812,-0.0365627147257328,0.464760541915894,-0.884681284427643,-0.0365627221763134,0.464760541915894,-0.884681284427643,-0.0365627221763134,0.464760512113571,-0.884681284427643,0.17096246778965,-0.726178407669067,0.665910542011261,0.170962482690811,-0.726178407669067,0.665910482406616,0.170962497591972,-0.726178407669067,0.665910542011261,-0.00685880146920681,0.000285116955637932,0.999976515769959,-0.00308313919231296,0.000242199166677892,0.999995291233063,0.00496953539550304,0.000150654974277131,0.999987661838531,0.0129256304353476,6.0195496189408e-005,0.99991649389267,0.0166046731173992,1.83609827217879e-005,0.999862194061279,0.0049214051105082,0.000151202169945464,0.999987959861755,-0.0350207164883614,0.0302199814468622,-0.998929679393768,-0.035020899027586,0.0257837679237127,-0.999053955078125,-0.0350206457078457,0.0229146834462881,-0.999123930931091,-0.0350208953022957,0.0258058868348598,-0.999053359031677,-0.0350207723677158,0.0297122821211815,-0.998944878578186,-0.0350198298692703,0.0346998125314713,-0.998784065246582,0.627289533615112,0.164677351713181,-0.761176288127899,0.627289533615112,0.164677351713181,-0.761176288127899,0.627289474010468,0.164677351713181,-0.761176228523254,-0.0603340864181519,0.000483484473079443,-0.998178124427795,-0.0390538945794106,0.000241538829868659,-0.999237060546875,-0.0528190657496452,0.000398031756049022,-0.99860405921936,-0.0666400343179703,0.000555197650101036,-0.997776985168457,
- -0.0678449794650078,0.000568901654332876,-0.997695744037628,-0.0689840242266655,0.000581856351345778,-0.997617602348328,-0.487817525863647,0.298327654600143,-0.82038688659668,-0.487817496061325,0.298327654600143,-0.82038688659668,-0.487817496061325,0.298327654600143,-0.820387005805969,0.0677115619182587,-0.996375322341919,-0.0514919832348824,0.0274637080729008,-0.998291909694672,-0.0515672378242016,0.0742205306887627,-0.995912730693817,-0.0514719188213348,0.0462233535945416,-0.997600555419922,-0.0515425801277161,0.0611804984509945,-0.996796727180481,-0.0515098869800568,0.150494366884232,-0.987290799617767,-0.0510716438293457,-0.0933414548635483,0.9956334233284,0.00119474437087774,-0.0936417728662491,0.995605230331421,0.00119861564598978,-0.093898706138134,0.995581090450287,0.00120192766189575,-0.0938537940382957,0.995585322380066,0.00120134872850031,-0.0938522964715958,0.995585501194,0.00120132951997221,-0.0937477797269821,0.995595276355743,0.00119998236186802,8.26492474459428e-009,-0.132779508829117,0.991145610809326,9.19863207826666e-009,-0.147779881954193,0.989020347595215,9.28466370453407e-009,-0.149162039160728,0.988812744617462,9.36122024342012e-009,-0.150391966104507,0.988626480102539,9.56356771553146e-009,-0.153642743825912,0.988126516342163,9.19389897546807e-009,-0.147703856229782,0.989031672477722,-0.0365664660930634,-0.464718371629715,0.884703159332275,-0.0365664698183537,-0.464718371629715,0.884703159332275,-0.036566473543644,-0.464718401432037,0.88470321893692,0.170999571681023,0.726171970367432,-0.665907979011536,0.170999571681023,0.726172029972076,-0.665907979011536,0.170999571681023,0.726171970367432,-0.665907979011536,-0.00693820277228951,-0.000286897935438901,-0.999975919723511,-0.00313593633472919,-0.000243674076045863,-0.999995052814484,0.00497288163751364,-0.000151483589434065,-0.999987721443176,0.0129420310258865,-6.08676782576367e-005,-0.999916315078735,0.0166045948863029,-1.92168517969549e-005,-0.999862134456635,0.00490320846438408,-0.000152275766595267,-0.999987959861755,-0.0350102633237839,-0.0302310660481453,0.998929679393768,
- -0.0350104346871376,-0.0257776789367199,0.999054491519928,-0.0350101813673973,-0.0229564402252436,0.999123334884644,-0.0350104346871376,-0.0257854871451855,0.999054253101349,-0.0350103192031384,-0.0296921581029892,0.998945772647858,-0.035009391605854,-0.0346994623541832,0.998784482479095,0.627068877220154,-0.164571732282639,0.761380791664124,0.627068817615509,-0.164571717381477,0.761380970478058,0.627068817615509,-0.164571732282639,0.761380910873413,-0.0603420697152615,-0.000483431183965877,0.998177707195282,-0.0390582755208015,-0.00024143437622115,0.999236881732941,-0.0528271570801735,-0.000397976080421358,0.998603641986847,-0.0666518881917,-0.00055519153829664,0.997776210308075,-0.0678528472781181,-0.000568850664421916,0.997695207595825,-0.0689878240227699,-0.000581759726628661,0.997617363929749,-0.487812101840973,-0.298354238271713,0.820380449295044,-0.487812131643295,-0.298354297876358,0.820380449295044,-0.487812101840973,-0.298354238271713,0.820380449295044,-0.00784703902900219,0.00801968481391668,0.999937057495117,-0.0195735543966293,0.00798774417489767,0.999776542186737,-0.0074580698274076,0.00802072416990995,0.999940037727356,-0.00856272410601377,0.00801776722073555,0.999931216239929,-0.0198120959103107,0.00798708293586969,0.9997718334198,-0.0261834561824799,0.00796925183385611,0.999625384807587,-2.65565514023791e-010,0.00214054645039141,-0.999997735023499,-4.66786387320894e-010,0.00376245356164873,-0.999992966651917,-3.33892857806717e-010,0.00269128754734993,-0.999996423721313,2.22822126960502e-013,-1.79602045591309e-006,-1,-3.1111702103459e-010,0.00250770663842559,-0.999996900558472,0.000645961379632354,-0.0220138803124428,-0.999757528305054,0.000738173257559538,-0.0257568769156933,-0.999668002128601,0.000547232921235263,-0.0180064290761948,-0.999837815761566,0.000453412620117888,-0.014198268763721,-0.999899089336395,0.000674000533763319,-0.023152019828558,-0.999731719493866,0.000786733697168529,-0.0277280360460281,-0.99961519241333,-0.00900834891945124,0.0143607836216688,-0.999856412410736,0.00376755162142217,0.0142196211963892,-0.999891877174377,
- 0.0122589031234384,0.0141245126724243,-0.999825119972229,0.0101552847772837,0.0141481719911098,-0.999848425388336,-0.000478380505228415,0.014266793616116,-0.999898195266724,0.00966022256761789,0.999938249588013,0.00550321908667684,0.0063524441793561,0.999964654445648,0.00550864916294813,0.0182421840727329,0.999818623065948,0.00548885017633438,0.0113143660128117,0.999920845031738,0.00550048053264618,-0.00750462058931589,0.999956548213959,0.00553073873743415,0.00831260066479445,-0.99995094537735,0.00539625901728868,0.00189627939835191,-0.999983668327332,0.00539660779759288,0.00079678138718009,-0.999985158443451,0.00539664644747972,0.001952936174348,-0.999983608722687,0.00539660640060902,0.0065780901350081,-0.999963819980621,0.00539637636393309,0.0148418769240379,-0.99987530708313,0.0053956750780344,0.638959944248199,-0.472692221403122,-0.606870889663696,0.638959944248199,-0.472692221403122,-0.606870949268341,0.638959944248199,-0.472692221403122,-0.606870889663696,-0.421695232391357,0.316284418106079,-0.849786639213562,-0.421695172786713,0.316284388303757,-0.849786639213562,-0.42169526219368,0.316284447908401,-0.849786579608917,-0.0680537223815918,0.632145643234253,0.771855354309082,-0.06805370002985,0.632145643234253,0.771855413913727,-0.0680536702275276,0.632145702838898,0.771855354309082,0.0631438717246056,0.997903943061829,0.0141676990315318,0.0255944523960352,0.999571979045868,0.0141702005639672,0.0692130252718925,0.997501373291016,0.014165410771966,0.0431154109537601,0.998969614505768,0.0141715249046683,0.057056836783886,0.998270452022552,0.0141694629564881,0.14039234817028,0.989995658397675,0.0140991499647498,-0.0870329514145851,-0.995545983314514,0.0362430512905121,-0.0873135402798653,-0.995521545410156,0.0362387672066689,-0.0875533446669579,-0.99550062417984,0.0362351015210152,-0.0875121802091599,-0.995504260063171,0.0362357310950756,-0.0875117853283882,-0.995504319667816,0.0362357422709465,-0.0874128639698029,-0.995512902736664,0.0362372472882271,6.71624320602859e-008,0.0955917462706566,-0.995420634746552,7.77546276253815e-008,0.110667526721954,-0.993857562541962,
- 7.87249234690535e-008,0.112048536539078,-0.99370276927948,7.9590677160013e-008,0.113280743360519,-0.993562996387482,8.1893198000671e-008,0.116557933390141,-0.993183970451355,7.77024027343032e-008,0.110593199729919,-0.993865847587585,-0.0344582423567772,0.429819792509079,-0.902256965637207,-0.0344582460820675,0.429819822311401,-0.902257025241852,-0.0344582498073578,0.429819792509079,-0.902256965637207,0.16263635456562,-0.707233488559723,0.688019096851349,0.16263635456562,-0.707233428955078,0.688019096851349,0.162636339664459,-0.707233488559723,0.688019096851349,-0.00644143670797348,0.0382170379161835,0.999248743057251,-0.00288832536898553,0.03818004950881,0.999266684055328,0.00462979590520263,0.0381002128124237,0.999263286590576,0.0120353018864989,0.0380194596946239,0.999204576015472,0.0154757648706436,0.0379812307655811,0.999158620834351,0.00457361666485667,0.0381008163094521,0.999263465404511,-0.0375317968428135,-0.00721378158777952,-0.999269485473633,-0.0375320427119732,-0.011625905521214,-0.99922788143158,-0.0375318117439747,-0.0144970715045929,-0.999190330505371,-0.0375320352613926,-0.0116068376228213,-0.999228000640869,-0.0375318601727486,-0.00771469576284289,-0.999265730381012,-0.0375308059155941,-0.00276337726972997,-0.999291718006134,0.648893237113953,0.152244910597801,-0.745492517948151,0.648893237113953,0.152244910597801,-0.745492458343506,0.648893296718597,0.152244925498962,-0.745492517948151,-0.0562486127018929,-0.0374897345900536,-0.997712671756744,-0.0364217236638069,-0.0377345681190491,-0.998623847961426,-0.0492472313344479,-0.0375779010355473,-0.998079538345337,-0.0621260143816471,-0.037414263933897,-0.997366845607758,-0.0632466673851013,-0.0373997241258621,-0.997296929359436,-0.06430584192276,-0.0373859368264675,-0.997229754924774,-0.491498380899429,0.295113086700439,-0.819352030754089,-0.491498380899429,0.295113086700439,-0.819352030754089,-0.491498380899429,0.295113086700439,-0.819352030754089,-0.0233144368976355,0.00508496817201376,0.999715268611908,-0.0336307287216187,0.00513352314010262,0.999421179294586,
- -0.0387294329702854,0.00515732541680336,0.999236404895782,-0.028453566133976,0.00510922214016318,0.999582052230835,-0.0180970896035433,0.00506020989269018,0.999823451042175,-0.0329535938799381,0.999445796012878,-0.00471399305388331,-0.0179366059601307,0.999803006649017,-0.00849858950823545,-0.0297684613615274,0.999524891376495,-0.00798807386308908,-0.0271211322396994,0.999620139598846,-0.00490806112065911,0.0572112388908863,-0.0507677830755711,-0.997070491313934,0.0688059777021408,-0.0509067066013813,-0.996330380439758,0.0578189268708229,-0.0507752299308777,-0.997035026550293,0.0534163154661655,-0.0507208369672298,-0.997283339500427,0.0542471669614315,-0.0507311820983887,-0.997237980365753,0.0640115365386009,-0.0508500710129738,-0.996652781963348,0.0716829970479012,-0.0509401261806488,-0.996125817298889,-0.0338169895112515,-0.000281557790003717,0.99942809343338,-0.0338169932365417,-0.000295531062874943,0.99942809343338,-0.0338166318833828,-0.00422342028468847,0.999419152736664,-0.033815760165453,-0.00813727080821991,0.999394953250885,-0.0338168069720268,-0.00290946406312287,0.999423801898956,-0.0173677932471037,-0.0195032134652138,0.999658942222595,-0.0173284783959389,-0.0155951920896769,0.999728202819824,-0.0172957740724087,-0.012363619171083,0.999773979187012,-0.0173026397824287,-0.0130403051152825,0.999765336513519,-0.0173198767006397,-0.0147435693070292,0.999741315841675,0.416780471801758,-0.448357909917831,0.790739715099335,0.416780412197113,-0.448357820510864,0.79073965549469,0.41678050160408,-0.448357969522476,0.790739715099335,-0.0297684613615274,0.999524891376495,-0.00798807386308908,-0.0179366059601307,0.999803006649017,-0.00849858950823545,-0.00199439818970859,0.999942898750305,-0.0105063337832689,-0.00476497551426291,0.999932467937469,-0.0105985850095749,-0.0153053747490048,0.999822974205017,-0.0109488070011139,0.000739778683055192,-0.999627292156219,0.027289466932416,0.00130824162624776,-0.999626159667969,0.02730917558074,0.0024380455724895,-0.99962306022644,0.0273483227938414,0.00130586815066636,-0.999626278877258,0.0273090973496437,
- 0.0013011209666729,-0.999626278877258,0.0273089297115803,0.365671873092651,0.0349719636142254,0.930086553096771,0.365671843290329,0.0349719636142254,0.930086612701416,0.365671873092651,0.0349719673395157,0.930086612701416,0.00914585683494806,0.00778794893994927,-0.999927937984467,0.0224387999624014,0.00741261523216963,-0.999720752239227,0.00865547172725201,0.00780176836997271,-0.999932169914246,0.00995348859578371,0.00776518508791924,-0.99992036819458,0.0227079875767231,0.00740499934181571,-0.99971479177475,0.0299792066216469,0.00719907460734248,-0.999524593353271,2.27809014177183e-005,0.00214202422648668,0.999997794628143,6.3562263676431e-005,0.00376696838065982,0.999992966651917,3.70978341379669e-005,0.00271248607896268,0.999996423721313,-3.01480813504895e-005,3.30499133269768e-005,1,3.23255117109511e-005,0.00252233189530671,0.999996900558472,-0.00111246528103948,-0.0219401642680168,0.999758720397949,-0.00128870247863233,-0.0257004778832197,0.999668955802917,-0.000926141859963536,-0.017964668571949,0.999838292598724,-0.000749101978726685,-0.0141872800886631,0.99989914894104,-0.00116759864613414,-0.0231165215373039,0.999732136726379,-0.00138146360404789,-0.0276796966791153,0.999615967273712,0.0105794668197632,0.0141293471679091,0.999844253063202,-0.00394074805080891,0.0143119618296623,0.999889850616455,-0.013573388569057,0.0144314458593726,0.999803781509399,-0.0112005639821291,0.014402138069272,0.999833643436432,0.000875936646480113,0.0142517173662782,0.999898135662079,0.0141533724963665,0.999884724617004,-0.00550481490790844,0.017912320792675,0.999824404716492,-0.00551176583394408,0.00439934525638819,0.999975264072418,-0.00548641663044691,0.0122733935713768,0.999909639358521,-0.00550130940973759,0.0336556024849415,0.999418139457703,-0.00554003659635782,-0.0345703326165676,-0.999387800693512,-0.00537123484537005,-0.0272831358015537,-0.999613344669342,-0.00537165626883507,-0.0260356459766626,-0.999646604061127,-0.00537169957533479,-0.0273485165089369,-0.999611556529999,-0.00537165440618992,-0.0326007604598999,-0.999454081058502,-0.00537137733772397,
- -0.0419863946735859,-0.999103844165802,-0.00537051446735859,-0.65291953086853,-0.403649926185608,0.640907824039459,-0.652919590473175,-0.40364995598793,0.640907824039459,-0.65291953086853,-0.403649926185608,0.640907824039459,0.419712543487549,0.261909335851669,0.869048357009888,0.419712483882904,0.261909306049347,0.869048357009888,0.419712513685226,0.261909335851669,0.869048297405243,0.0866651013493538,0.636594295501709,-0.766313791275024,0.0866650938987732,0.636594295501709,-0.766313791275024,0.0866651311516762,0.636594295501709,-0.766313850879669,0.0623886846005917,-0.997951447963715,-0.014167751185596,0.0252787470817566,-0.999580085277557,-0.014170253649354,0.0683652386069298,-0.997559785842896,-0.0141655150800943,0.0425881817936897,-0.998992204666138,-0.0141715183854103,0.0563949197530746,-0.998308002948761,-0.0141694778576493,0.138754203915596,-0.99022650718689,-0.014100662432611,-0.0859654098749161,0.995637655258179,-0.0362737998366356,-0.0862422734498978,0.995613873004913,-0.036269623786211,-0.0864790007472038,0.995593369007111,-0.0362660437822342,-0.0864377990365028,0.995597004890442,-0.0362666696310043,-0.0864367187023163,0.995597004890442,-0.0362666845321655,-0.0863400399684906,0.99560546875,-0.0362681485712528,1.56114712268618e-008,-0.0955926701426506,0.995420515537262,1.807418215094e-008,-0.110672414302826,0.993856966495514,1.8298694115515e-008,-0.112047158181667,0.993702948093414,1.84990582852151e-008,-0.113274037837982,0.993563830852509,1.90357400953189e-008,-0.116560257971287,0.993183612823486,1.80621206880005e-008,-0.11059857159853,0.993865251541138,-0.0340805016458035,-0.429645299911499,0.90235447883606,-0.0340804979205132,-0.429645329713821,0.902354419231415,-0.0340804904699326,-0.429645359516144,0.90235435962677,0.161184534430504,0.708329319953918,-0.687232971191406,0.161184519529343,0.708329319953918,-0.687233030796051,0.161184534430504,0.708329319953918,-0.687233030796051,-0.00631733937188983,-0.0382161103188992,-0.999249577522278,-0.0028312299400568,-0.0381802618503571,-0.999266862869263,0.00457122037187219,-0.0381026230752468,-0.999263405799866,
- 0.0118871768936515,-0.038023829460144,-0.999206125736237,0.0152867631986737,-0.0379865318536758,-0.99916136264801,0.00452809827402234,-0.0381030850112438,-0.999263644218445,-0.0380415767431259,0.00721686379984021,0.999250173568726,-0.0380417257547379,0.0116326697170734,0.999208509922028,-0.0380414202809334,0.0144986556842923,0.999171018600464,-0.0380417220294476,0.0116113359108567,0.999208688735962,-0.0380416251718998,0.00771922152489424,0.999246418476105,-0.0380406752228737,0.00275824777781963,0.999272465705872,0.652450442314148,-0.15520404279232,0.741768181324005,0.652450561523438,-0.155204072594643,0.74176824092865,0.652450561523438,-0.155204057693481,0.741768181324005,-0.0555559210479259,0.0375065468251705,0.997750878334045,-0.03597442060709,0.0377453677356243,0.998639643192291,-0.0486407838761806,0.0375925600528717,0.998108744621277,-0.0613599568605423,0.0374329462647438,0.997413575649261,-0.0624678581953049,0.0374187454581261,0.997345387935638,-0.0635150447487831,0.0374052785336971,0.997279644012451,-0.491930365562439,-0.29984438419342,0.817372560501099,-0.491930395364761,-0.299844413995743,0.817372441291809,-0.491930425167084,-0.299844443798065,0.817372560501099,0.00895014870911837,-0.00898786727339029,0.999919593334198,0.0222556944936514,-0.00894167460501194,0.999712347984314,0.00847398024052382,-0.00898949149996042,0.999923706054688,0.00975551921874285,-0.00898511707782745,0.999912083148956,0.0225241277366877,-0.00894072651863098,0.999706327915192,0.0297870710492134,-0.00891481898725033,0.999516546726227,-8.72940348478624e-012,-0.00190824118908495,-0.999998152256012,-1.53449752904322e-011,-0.00335440062917769,-0.999994397163391,-1.10275278492056e-011,-0.00241060950793326,-0.999997138977051,-9.44746193711106e-014,-2.06520853680559e-005,-1,-1.02614843705551e-011,-0.00224315328523517,-0.999997556209564,-0.000466071593109518,0.0195862203836441,-0.999808132648468,-0.00043266240390949,0.0178630407899618,-0.999840438365936,-0.000476873421575874,0.0201433654874563,-0.99979704618454,-0.000331928604282439,0.0126674538478255,-0.999919772148132,
- -0.000515683030243963,0.022145114839077,-0.99975460767746,-0.000521583016961813,0.0224494319409132,-0.9997478723526,0.0101771531626582,-0.0161385890096426,-0.999818027019501,-0.00432998035103083,-0.015934269875288,-0.999863743782043,-0.0139811551198363,-0.0157964713871479,-0.999777495861053,-0.0115832258015871,-0.0158308483660221,-0.99980765581131,0.000495986198075116,-0.0160026103258133,-0.999871850013733,-0.0123087810352445,-0.999912321567535,0.0049039195291698,-0.0080945985391736,-0.999955236911774,0.00491172540932894,-0.0232461467385292,-0.999717891216278,0.00488324789330363,-0.0144163928925991,-0.999884068965912,0.00489998096600175,0.00956786330789328,-0.999942064285278,0.00494349468499422,-0.0083278464153409,0.999953806400299,0.00479379342868924,-0.00178655236959457,0.999986886978149,0.00479415524750948,-0.00101639004424214,0.999988079071045,0.00479418458417058,-0.00236013252288103,0.999985754489899,0.00479413196444511,-0.0112133948132396,0.999925673007965,0.00479356897994876,-0.0189188327640295,0.999809622764587,0.00479277223348618,-0.671116769313812,0.390540927648544,-0.630142867565155,-0.671116769313812,0.390540927648544,-0.630142867565155,-0.671116769313812,0.390540897846222,-0.630142867565155,0.436876982450485,-0.256922215223312,-0.862049579620361,0.436877012252808,-0.256922245025635,-0.862049579620361,0.436877012252808,-0.256922245025635,-0.862049639225006,0.0157986115664244,-0.650115549564362,0.759671151638031,0.0157985538244247,-0.650115489959717,0.759671151638031,0.0157985966652632,-0.650115549564362,0.759671092033386,-0.00564535474404693,-0.00917286798357964,-0.999942004680634,-0.0054551181383431,-0.0091736800968647,-0.99994307756424,0.000492674065753818,-0.00919893104583025,-0.999957621097565,-0.00574047910049558,-0.00917246099561453,-0.999941468238831,-0.0179205574095249,-0.00911970715969801,-0.999797880649567,0.0455356538295746,0.998959720134735,0.00247162976302207,0.0465817973017693,0.998888909816742,0.00714775547385216,0.0574627295136452,0.99832957983017,0.00600939430296421,0.0062995171174407,0.999965071678162,0.00549043947830796,
- -0.0261603724211454,-0.0621042251586914,0.997726857662201,-0.0412621833384037,-0.0620917305350304,0.997217237949371,-0.030203353613615,-0.0621022619307041,0.997612714767456,-0.0236613284796476,-0.0621049255132675,0.997789204120636,-0.0247267130762339,-0.0621046684682369,0.997763335704803,-0.0362381599843502,-0.0620974600315094,0.997412085533142,-0.0429888069629669,-0.0620893873274326,0.997144401073456,-0.00322289508767426,-0.000412050751037896,-0.99999475479126,-0.00322308437898755,-0.000404990365495905,-0.99999475479126,-0.00310701900161803,-0.00473444955423474,-0.999983966350555,-0.00299070542678237,-0.00907088071107864,-0.999954462051392,-0.0031456514261663,-0.00329364789649844,-0.999989688396454,-0.0146386837586761,-0.020722197368741,-0.999678075313568,-0.0146763138473034,-0.0168751589953899,-0.999749898910522,-0.0147171663120389,-0.0126731479540467,-0.999811470508575,-0.0147205991670489,-0.012318417429924,-0.999815762042999,-0.0146911116316915,-0.0153562752529979,-0.999774217605591,-0.450177758932114,-0.396707653999329,-0.799976825714111,-0.450177788734436,-0.396707653999329,-0.799976825714111,-0.450177848339081,-0.396707713603973,-0.799976944923401,0.0574627295136452,0.99832957983017,0.00600939430296421,0.0465817973017693,0.998888909816742,0.00714775547385216,-0.0178726632148027,0.999781489372253,0.0108469650149345,0.0101715894415975,0.999889433383942,0.0108538931235671,0.0594536550343037,0.998172223567963,0.0108453677967191,-0.0442959405481815,-0.998592853546143,-0.0291586797684431,-0.0139285046607256,-0.999478995800018,-0.0291182808578014,-0.0335707068443298,-0.999011218547821,-0.0291474759578705,-0.012118567712605,-0.999502599239349,-0.0291150249540806,-0.0433917604386806,-0.998632550239563,-0.0291578620672226,-0.351739823818207,0.0302415490150452,-0.935609221458435,-0.351739794015884,0.0302415490150452,-0.935609221458435,-0.351739823818207,0.0302415490150452,-0.93560928106308,0.0786846280097961,-0.996798813343048,-0.0141774965450168,0.0319909974932671,-0.999387621879578,-0.0141814090311527,0.0863190293312073,-0.99616676568985,-0.0141738979145885,
- 0.0537259578704834,-0.998455047607422,-0.0141834486275911,0.0710151195526123,-0.997374415397644,-0.0141802681609988,0.174603387713432,-0.984538376331329,-0.0140710948035121,-0.108561091125011,0.993452727794647,-0.0355852954089642,-0.108909092843533,0.99341481924057,-0.035578653216362,-0.10920538008213,0.993382513523102,-0.0355729833245277,-0.109156504273415,0.993387877941132,-0.0355739183723927,-0.109159335494041,0.993387579917908,-0.0355738662183285,-0.109032794833183,0.993401288986206,-0.0355762839317322,2.08162216353003e-008,-0.0955970734357834,0.995420098304749,2.40979485255366e-008,-0.110668174922466,0.993857443332672,2.43973001801123e-008,-0.112042918801308,0.993703424930573,2.46653719671031e-008,-0.113274030387402,0.993563771247864,2.5379710777429e-008,-0.116554588079453,0.993184387683868,2.40823325725614e-008,-0.110596463084221,0.993865489959717,-0.0415604785084724,-0.433852016925812,0.900025129318237,-0.0415604673326015,-0.433852046728134,0.900025188922882,-0.0415604561567307,-0.433852016925812,0.900025129318237,0.188441604375839,0.68399053812027,-0.70473176240921,0.188441604375839,0.68399053812027,-0.704731643199921,0.188441604375839,0.68399053812027,-0.704731702804565,-0.00799280498176813,-0.0382563322782516,-0.999236047267914,-0.00358195370063186,-0.0381989330053329,-0.999263823032379,0.00578534184023738,-0.0380745641887188,-0.999258160591125,0.0150456642732024,-0.0379483290016651,-0.999166429042816,0.0193494781851768,-0.0378885455429554,-0.999094665050507,0.00573210790753365,-0.0380752794444561,-0.999258458614349,-0.0300831645727158,0.00723953871056437,0.999521195888519,-0.0300833974033594,0.0116345901042223,0.999479711055756,-0.0300832372158766,0.0144917815923691,0.999442398548126,-0.0300833936780691,0.0116084925830364,0.999480009078979,-0.0300832223147154,0.00773473363369703,0.999517500400543,-0.0300823412835598,0.00279214978218079,0.999543607234955,0.576677918434143,-0.104819729924202,0.810219407081604,0.576677918434143,-0.104819729924202,0.810219466686249,0.576677918434143,-0.104819722473621,0.810219347476959,
- -0.0702474862337112,0.0371223278343678,0.996838688850403,-0.0455166473984718,0.0375041030347347,0.998259305953979,-0.0615159682929516,0.0372597984969616,0.997410416603088,-0.0775760114192963,0.037004679441452,0.99629944562912,-0.0789725109934807,0.0369820296764374,0.996190667152405,-0.0802923440933228,0.0369605496525764,0.996085941791534,-0.471784830093384,-0.210426509380341,0.856235802173615,-0.471784800291061,-0.210426494479179,0.856235861778259,-0.471784830093384,-0.210426509380341,0.856235861778259,0.0236581284552813,0.000511411635670811,0.999719977378845,0.0342304483056068,0.000276431179372594,0.999413907527924,0.0394533686339855,0.000160303447046317,0.999221503734589,0.028924060985446,0.000394385366234928,0.999581575393677,0.0183089897036552,0.000630257534794509,0.999832212924957,0.02701136469841,-0.999623894691467,-0.00474189640954137,0.00801884662359953,-0.999930799007416,-0.00861943885684013,0.0237893126904964,-0.999683976173401,-0.00812311749905348,0.0211110804229975,-0.999764978885651,-0.00494441855698824,-0.0580222234129906,0.0511478260159492,-0.997004151344299,-0.0698932558298111,0.05136813595891,-0.996231079101563,-0.0586429089307785,0.0511595271527767,-0.996967256069183,-0.054136723279953,0.0510741919279099,-0.997226536273956,-0.0549844279885292,0.0510903224349022,-0.997179329395294,-0.0649845451116562,0.0512778908014297,-0.996567904949188,-0.0728417038917542,0.0514217503368855,-0.996017098426819,0.0343959964811802,7.82924835220911e-005,0.999408304691315,0.034396056085825,8.78005812410265e-005,0.999408304691315,0.0344218388199806,0.00422317162156105,0.999398469924927,0.034446969628334,0.00834896229207516,0.999371647834778,0.034413293004036,0.00284154270775616,0.999403715133667,0.0183782875537872,0.0196208562701941,0.999638557434082,0.0183147415518761,0.0156938787549734,0.999709188938141,0.0182603243738413,0.0123448939993978,0.99975711107254,0.0182697344571352,0.0129231307655573,0.999749600887299,0.0182997528463602,0.0147703029215336,0.999723434448242,-0.415176421403885,0.442441314458847,0.794905304908752,
- -0.415176421403885,0.442441314458847,0.794905304908752,-0.415176391601563,0.442441314458847,0.794905304908752,0.0237893126904964,-0.999683976173401,-0.00812311749905348,0.00801884662359953,-0.999930799007416,-0.00861943885684013,-0.0264026653021574,-0.999601244926453,-0.0100150732323527,-0.00910207722336054,-0.999902427196503,-0.0106023605912924,0.0126011790707707,-0.999856412410736,-0.0113344760611653,0.014888621866703,0.999506592750549,0.0276578664779663,0.00931258127093315,0.999568581581116,0.027854872867465,0.00482138758525252,0.999595940113068,0.0280129183083773,0.0115330079570413,0.999547719955444,0.0277765337377787,0.0159736387431622,0.999490976333618,0.0276194307953119,-0.357434689998627,-0.0317838080227375,0.933397173881531,-0.357434719800949,-0.0317838117480278,0.933397173881531,-0.357434689998627,-0.0317838080227375,0.933397114276886,0.0490741766989231,0.996986269950867,-0.0600853115320206,0.0904148072004318,0.994109630584717,-0.0597613006830215,0.0423417314887047,0.997292220592499,-0.0601282492280006,0.0711702033877373,0.99566251039505,-0.0599250495433807,0.0558253936469555,0.996633768081665,-0.0600394830107689,-0.0365734696388245,0.997502386569977,-0.0604275353252888,-0.0222855433821678,-0.999680936336517,0.011896257288754,-0.0219773557037115,-0.999687671661377,0.0119030149653554,-0.0217151250690222,-0.999693334102631,0.0119087640196085,-0.0217591188848019,-0.999692320823669,0.0119078001007438,-0.0217571537941694,-0.999692440032959,0.0119078438729048,-0.0218682382255793,-0.999690055847168,0.0119054084643722,0.00538094015792012,0.138165637850761,0.990394592285156,0.00711543764919043,0.152544841170311,0.988270998001099,0.0072756614536047,0.153872102499008,0.988064050674438,0.00741871632635593,0.155056983232498,0.987877726554871,0.00779434479773045,0.158167585730553,0.98738157749176,0.00710685644298792,0.152473732829094,0.988282024860382,0.0768913552165031,0.479584187269211,0.874120533466339,0.0768913626670837,0.479584217071533,0.874120533466339,0.0768913775682449,0.479584217071533,0.874120593070984,-0.264168798923492,-0.711758434772491,-0.650856971740723,
- -0.264168798923492,-0.711758434772491,-0.650856971740723,-0.264168798923492,-0.711758494377136,-0.650856912136078,0.015748443081975,-0.0122667895630002,-0.999800741672516,0.011977968737483,-0.0118630947545171,-0.999857902526855,0.00396182714030147,-0.0110043222084641,-0.999931693077087,-0.00390598503872752,-0.010160768404603,-0.999940812587738,-0.00752817979082465,-0.00977218896150589,-0.999924004077911,0.00403611781075597,-0.0110122812911868,-0.999931216239929,0.0286111496388912,0.0357679910957813,0.99895054101944,0.0281069949269295,0.031543530523777,0.999107182025909,0.0277786385267973,0.0287940911948681,0.999199330806732,0.0281093548983335,0.0315632931888103,0.999106526374817,0.028554055839777,0.0352894105017185,0.99896913766861,0.0291194915771484,0.0400313138961792,0.998774111270905,-0.615205526351929,0.242517337203026,0.750138342380524,-0.615205526351929,0.242517337203026,0.750138282775879,-0.615205526351929,0.242517337203026,0.750138282775879,0.0507481917738914,0.00512948678806424,0.99869829416275,0.0297023449093103,0.00739522371441126,0.999531507492065,0.0433208234608173,0.00592964002862573,0.999043703079224,0.0569962710142136,0.0044559221714735,0.998364508152008,0.0581720359623432,0.00432912167161703,0.998297154903412,0.0592826344072819,0.00420933915302157,0.998232364654541,0.520592927932739,0.244004935026169,0.818196058273315,0.520592868328094,0.244004905223846,0.818195998668671,0.520592927932739,0.244004920125008,0.818196058273315,0.0677208751440048,0.996559143066406,0.0477901920676231,0.0274619292467833,0.998476505279541,0.0478599369525909,0.074213020503521,0.996097564697266,0.0477716512978077,0.0462227240204811,0.997785091400146,0.0478371232748032,0.0612066872417927,0.996979594230652,0.0478067584335804,0.150534361600876,0.987467765808105,0.0474000833928585,-0.0933433696627617,-0.9956334233284,-0.00111239263787866,-0.0936435461044312,-0.995605230331421,-0.00111598370131105,-0.0939013957977295,-0.995580852031708,-0.00111906847450882,-0.0938543826341629,-0.995585381984711,-0.00111850607208908,-0.0938496589660645,-0.995585739612579,-0.00111844949424267,
- -0.0937489569187164,-0.995595216751099,-0.0011172448284924,6.53153797713912e-009,0.123362071812153,-0.992361724376678,7.27387750032449e-009,0.137382745742798,-0.990518093109131,7.34141014646639e-009,0.138658240437508,-0.990340352058411,7.40168060175961e-009,0.139796569943428,-0.990180253982544,7.56358264908386e-009,0.142854452133179,-0.989743709564209,7.27025062374764e-009,0.13731424510479,-0.99052757024765,-0.0189920905977488,0.487756431102753,-0.872773230075836,-0.0189920868724585,0.487756371498108,-0.872773170471191,-0.0189920887351036,0.487756371498108,-0.872773170471191,0.19189578294754,-0.743337690830231,0.640800416469574,0.191895753145218,-0.743337690830231,0.640800476074219,0.191895812749863,-0.743337690830231,0.640800356864929,-0.00638479553163052,0.000296822283416986,0.999979674816132,-0.00287289917469025,0.000256902887485921,0.999995887279511,0.00461567798629403,0.000171771695022471,0.999989330768585,0.0120016308501363,8.77948186825961e-005,0.999927997589111,0.015410871244967,4.9028305511456e-005,0.999881267547607,0.00456449389457703,0.000172353611560538,0.999989628791809,-0.0377294532954693,0.0280490033328533,-0.998894333839417,-0.0377296209335327,0.0239251796156168,-0.999001622200012,-0.0377293862402439,0.021267032250762,-0.999061644077301,-0.0377296209335327,0.0239437557756901,-0.999001085758209,-0.0377295091748238,0.0275727733969688,-0.998907566070557,-0.0377286337316036,0.0322094969451427,-0.99876880645752,0.654561758041382,0.168966308236122,-0.736884891986847,0.654561758041382,0.168966308236122,-0.736884891986847,0.654561758041382,0.168966308236122,-0.736884891986847,-0.0560098327696323,0.000419477699324489,-0.998430132865906,-0.0362481661140919,0.000194790583918802,-0.999342799186707,-0.0490309447050095,0.000340118975145742,-0.998797237873077,-0.061866819858551,0.000486087112221867,-0.998084306716919,-0.0629854202270508,0.000498809386044741,-0.998014330863953,-0.0640428140759468,0.000510835845489055,-0.997947096824646,-0.510474920272827,0.316060155630112,-0.799700736999512,-0.510474979877472,0.316060185432434,-0.799700856208801,
- -0.510474979877472,0.316060185432434,-0.799700736999512,-0.0100426357239485,0.00535454321652651,-0.999935269355774,0.000405064492952079,0.0051418524235487,-0.99998676776886,0.00556433899328113,0.00503661390393972,-0.999971866607666,-0.0048403930850327,0.00524870865046978,-0.999974608421326,-0.0153307700529695,0.00546198291704059,-0.999867558479309,0.0587067268788815,0.998269140720367,0.00351267820224166,0.0436113886535168,0.999017953872681,0.00783461704850197,0.055590782314539,0.998429656028748,0.00692437961697578,0.0528015270829201,0.99859744310379,0.00391219416633248,-0.0254649985581636,-0.0503061711788177,0.998409152030945,-0.0372119173407555,-0.0501536503434181,0.998048067092896,-0.0261072516441345,-0.0502980165183544,0.998392999172211,-0.0216250568628311,-0.0503545142710209,0.998497307300568,-0.0224685575813055,-0.0503439642488956,0.998479247093201,-0.0323559530079365,-0.0502175539731979,0.998214066028595,-0.0401016138494015,-0.0501150637865067,0.997938096523285,-1.90231985470746e-005,-0.000301224354188889,-0.999999940395355,-1.96214677998796e-005,-0.000325006694765761,-0.999999940395355,-0.000117743293230888,-0.00422553019598126,-0.999991118907928,-0.000215265070437454,-0.00810220744460821,-0.999967217445374,-8.48365816636942e-005,-0.00291742687113583,-0.999995827674866,-0.0167212933301926,-0.0190386977046728,-0.99967896938324,-0.0166640002280474,-0.0151244001463056,-0.999746799468994,-0.0166163221001625,-0.0118803372606635,-0.999791324138641,-0.016626188531518,-0.0125507982447743,-0.999782979488373,-0.0166514087468386,-0.014266537502408,-0.999759554862976,-0.456108391284943,-0.432428807020187,-0.777798533439636,-0.45610836148262,-0.432428777217865,-0.777798473834991,-0.456108391284943,-0.432428807020187,-0.777798533439636,0.055590782314539,0.998429656028748,0.00692437961697578,0.0436113886535168,0.999017953872681,0.00783461704850197,0.0275079272687435,0.999567687511444,0.0103880278766155,0.0303226672112942,0.999486267566681,0.0103878239169717,0.0410269685089588,0.999104082584381,0.0103862965479493,-0.0267965123057365,-0.999271810054779,-0.0271648075431585,
- -0.0273732729256153,-0.999256134033203,-0.027165561914444,-0.0285198539495468,-0.999224007129669,-0.0271670296788216,-0.027370972558856,-0.999256253242493,-0.0271655600517988,-0.027366366237402,-0.999256312847137,-0.0271655563265085,-0.391643404960632,0.0438733473420143,-0.919070482254028,-0.39164337515831,0.0438733473420143,-0.919070482254028,-0.391643434762955,0.0438733510673046,-0.919070541858673,0.0446393303573132,-0.997829794883728,-0.0484058298170567,0.00317435129545629,-0.998819172382355,-0.0484808348119259,0.0513376966118813,-0.997508585453033,-0.0483858808875084,0.0224867034703493,-0.99857223033905,-0.0484562814235687,0.0379180014133453,-0.998106896877289,-0.0484236590564251,0.130053743720055,-0.990345060825348,-0.0479869693517685,-0.071033664047718,0.997473239898682,0.00119115528650582,-0.0713421553373337,0.99745124578476,0.00119499559514225,-0.0716051012277603,0.997432291507721,0.00119826884474605,-0.07156091183424,0.997435510158539,0.00119771878235042,-0.0715622380375862,0.997435450553894,0.00119773542974144,-0.0714515373110771,0.997443377971649,0.00119635718874633,-0.00310520292259753,-0.124898113310337,0.992164790630341,-0.00346096139401197,-0.139046147465706,0.990279912948608,-0.00349371368065476,-0.14034865796566,0.990095973014832,-0.00352287455461919,-0.14150832593441,0.989930808544159,-0.00360002019442618,-0.144576266407967,0.989487111568451,-0.00345916789956391,-0.138974815607071,0.990289866924286,-0.0346670113503933,-0.483330845832825,0.874751091003418,-0.0346670113503933,-0.483330845832825,0.874751091003418,-0.0346670113503933,-0.483330845832825,0.874751091003418,0.210700497031212,0.732322216033936,-0.647541224956512,0.210700452327728,0.732322096824646,-0.647541224956512,0.210700482130051,0.732322156429291,-0.647541224956512,-0.0067094094119966,-0.000131107080960646,-0.99997752904892,-0.00303338025696576,-0.000180478993570432,-0.999995470046997,0.00480705825611949,-0.000285772024653852,-0.999988496303558,0.0125176645815372,-0.000389308261219412,-0.99992161989212,0.0160638280212879,-0.000436920847278088,-0.999870896339417,
- 0.00474228663370013,-0.000284902227576822,-0.999988794326782,-0.0368921048939228,-0.0275045353919268,0.998940706253052,-0.0367878824472427,-0.0233461894094944,0.999050378799438,-0.036720272153616,-0.0206621829420328,0.999112010002136,-0.0367884337902069,-0.0233681816607714,0.999049842357636,-0.0368801802396774,-0.0270276945084333,0.998954117298126,-0.0369967855513096,-0.0317063815891743,0.998812317848206,0.636443078517914,-0.178126469254494,0.750474035739899,0.636443078517914,-0.178126469254494,0.750474035739899,0.636443018913269,-0.178126454353333,0.750473976135254,-0.0584064722061157,0.00100024417042732,0.99829238653183,-0.0377864129841328,0.000723364180885255,0.999285578727722,-0.0511290766298771,0.000902535917703062,0.99869167804718,-0.0645263940095901,0.0010824027704075,0.99791544675827,-0.0656801238656044,0.00109789043199271,0.997840166091919,-0.066770002245903,0.00111252092756331,0.997767865657806,-0.511882483959198,-0.288899213075638,0.809020102024078,-0.511882483959198,-0.288899213075638,0.809020161628723,-0.511882483959198,-0.288899213075638,0.809020221233368,-0.11753922700882,-0.992750883102417,0.0251064207404852,-0.0774250105023384,-0.996686041355133,0.0249492302536964,-0.124000936746597,-0.991963982582092,0.0251279845833778,-0.0961288809776306,-0.995054244995117,0.0250275060534477,-0.111053429543972,-0.993497908115387,0.0250837225466967,-0.199796378612518,-0.979510724544525,0.0253018606454134,0.143130153417587,0.989557385444641,0.017026586458087,0.143430948257446,0.9895139336586,0.0170213915407658,0.143691390752792,0.989476263523102,0.0170168932527304,0.143647536635399,0.989482581615448,0.0170176513493061,0.143644064664841,0.989483118057251,0.0170177109539509,0.143539249897003,0.989498257637024,0.0170195195823908,-0.0112535580992699,-0.0929158851504326,-0.995610415935516,-0.0118854679167271,-0.105654411017895,-0.994331955909729,-0.0119430627673864,-0.106816560029984,-0.99420702457428,-0.011994656175375,-0.107857763767242,-0.99409407377243,-0.0121320383623242,-0.110630981624126,-0.993787586688995,-0.011882470920682,-0.105593971908093,-0.994338393211365,
- -0.031577467918396,-0.498225092887878,-0.866472542285919,-0.0315774716436863,-0.498225092887878,-0.866472542285919,-0.0315774418413639,-0.498225033283234,-0.866472542285919,-0.176414802670479,0.761521816253662,0.623668432235718,-0.176414787769318,0.761521875858307,0.623668491840363,-0.176414787769318,0.761521875858307,0.623668491840363,0.00890194810926914,-0.027363196015358,0.99958598613739,0.00573822902515531,-0.0271686371415854,0.999614417552948,-0.00102241395507008,-0.0267519894987345,0.99964165687561,-0.0077049876563251,-0.0263389367610216,0.999623417854309,-0.0107906330376863,-0.0261477995663881,0.999599814414978,-0.000983402132987976,-0.026754392310977,0.999641597270966,0.0346843078732491,-0.00862396787852049,-0.999361157417297,0.0348714478313923,-0.00489640701562166,-0.999379813671112,0.0349922254681587,-0.00248561194166541,-0.999384522438049,0.0348707512021065,-0.0049105160869658,-0.999379813671112,0.0347058959305286,-0.00819444097578526,-0.999364018440247,0.0344952568411827,-0.0123796239495277,-0.999328196048737,-0.700347781181335,-0.126840814948082,-0.702441811561584,-0.700347721576691,-0.126840800046921,-0.702441811561584,-0.700347721576691,-0.126840800046921,-0.702441811561584,0.0475118607282639,0.0238473620265722,-0.998585939407349,0.0296380780637264,0.0249684490263462,-0.999248862266541,0.0412004925310612,0.0242442116141319,-0.998856723308563,0.0528127066791058,0.0235132314264774,-0.998327612876892,0.0538209155201912,0.0234495922923088,-0.998275220394135,0.0547737628221512,0.0233894214034081,-0.998224854469299,0.517544090747833,-0.349828749895096,-0.780876457691193,0.517544031143188,-0.349828690290451,-0.780876398086548,0.517544031143188,-0.349828690290451,-0.780876517295837,-0.0730897933244705,0.996309876441956,-0.0449960865080357,-0.0330934189260006,0.99822610616684,-0.0494932644069195,-0.0795498639345169,0.995847761631012,-0.0442615896463394,-0.0517339482903481,0.997535049915314,-0.0474080704152584,-0.0666075423359871,0.996730744838715,-0.0457308143377304,-0.155331626534462,0.987225234508514,-0.0354750417172909,
- 0.0928956344723701,-0.995634913444519,-0.00903320219367743,0.0931948199868202,-0.995606660842896,-0.00906227249652147,0.0934522375464439,-0.995582401752472,-0.00908728502690792,0.0934072658419609,-0.995586574077606,-0.00908291433006525,0.093404084444046,-0.995586931705475,-0.00908260606229305,0.0933010429143906,-0.995596647262573,-0.00907259341329336,0.105050005018711,0.135978192090988,0.985126614570618,0.104813039302826,0.151361405849457,0.982905924320221,0.104790061712265,0.152768835425377,0.982690513134003,0.104769349098206,0.154025956988335,0.982496559619904,0.104713447391987,0.157368749380112,0.981972634792328,0.104814238846302,0.151286333799362,0.982917308807373,0.139410480856895,0.458238780498505,0.877828001976013,0.139410495758057,0.458238780498505,0.877827942371368,0.139410480856895,0.458238810300827,0.877828001976013,-0.236690357327461,-0.719850778579712,-0.652527809143066,-0.236690357327461,-0.719850778579712,-0.652527809143066,-0.236690357327461,-0.719850778579712,-0.652527809143066,-0.102796986699104,0.000238401466049254,-0.994702339172363,-0.106657534837723,0.000194285923498683,-0.99429589509964,-0.114903837442398,9.99820040306076e-005,-0.993376612663269,-0.123008944094181,7.19772651791573e-006,-0.992405593395233,-0.126727178692818,-3.53988689312246e-005,-0.991937577724457,-0.114837132394314,0.000100745121017098,-0.99338436126709,0.139902651309967,0.0309781860560179,0.989680588245392,0.139916762709618,0.0264430809766054,0.989810109138489,0.139924436807632,0.0234880950301886,0.989883601665497,0.139916732907295,0.0264620538800955,0.989809691905975,0.139904394745827,0.0304640531539917,0.989696264266968,0.139885529875755,0.0355505906045437,0.989529371261597,-0.531749308109283,0.163680493831635,0.830934107303619,-0.531749308109283,0.163680493831635,0.830934107303619,-0.531749308109283,0.163680478930473,0.830934166908264,0.171052172780037,0.000547145493328571,0.985261857509613,0.149508014321327,0.000299411272862926,0.988760530948639,0.163449332118034,0.000459644012153149,0.986551642417908,0.177424550056458,0.000620550417806953,0.984134316444397,
- 0.178644075989723,0.000634605763480067,0.983913540840149,0.179796904325485,0.00064789381576702,0.98370361328125,0.566982865333557,0.291695296764374,0.770353436470032,0.566982805728912,0.291695266962051,0.770353436470032,0.566982805728912,0.291695296764374,0.770353436470032,-0.0354158096015453,0.007501270622015,-0.999344527721405,-0.0235763024538755,0.00747065432369709,-0.999694168567657,-0.0357937328517437,0.00750223128125072,-0.999331057071686,-0.0346930138766766,0.00749943125993013,-0.999369859695435,-0.0233352668583393,0.00747001869603992,-0.999699771404266,-0.0169145409017801,0.00745296850800514,-0.999829173088074,0.0555872954428196,0.00230114278383553,0.998451173305511,0.0555869229137897,0.00399408675730228,0.998445928096771,0.0555872023105621,0.00284298555925488,0.998449862003326,0.0555875599384308,-1.07077607935935e-006,0.998453855514526,0.0555872283875942,0.00266237091273069,0.998450338840485,0.054895393550396,-0.0236932598054409,0.998210966587067,0.054785568267107,-0.0277105756103992,0.998113572597504,0.0550093501806259,-0.0194896589964628,0.998295664787292,0.055117055773735,-0.0154835702851415,0.998359858989716,0.0548604764044285,-0.0249744318425655,0.998181760311127,0.054727591574192,-0.0298180002719164,0.998055994510651,0.0327632203698158,0.0131536740809679,0.999376654624939,0.0521750301122665,0.0133583787828684,0.998548626899719,0.0413874089717865,0.013245215639472,0.999055445194244,0.0230523962527514,0.0130494581535459,0.999649167060852,0.0155085176229477,0.0129676628857851,0.999795734882355,-0.00941848568618298,0.999940752983093,-0.00546782510355115,-0.0062795989215374,0.999964594841003,-0.0056092320010066,-0.0175579059869051,0.999832928180695,-0.00510087329894304,-0.0109881442040205,0.999925076961517,-0.00539708975702524,0.00686118984594941,0.999957263469696,-0.00620059203356504,-0.00813228450715542,-0.999952554702759,-0.00536738615483046,-0.00204601255245507,-0.999982118606567,-0.00563184451311827,-0.00100394547916949,-0.999983429908752,-0.00567710259929299,-0.0020990283228457,-0.999981939792633,-0.00562954181805253,
- -0.00648622354492545,-0.999964237213135,-0.00543893268331885,-0.0143242767080665,-0.999884426593781,-0.00509811704978347,-0.59084814786911,-0.482163280248642,0.646851658821106,-0.590848207473755,-0.482163339853287,0.646851599216461,-0.590848088264465,-0.482163280248642,0.646851658821106,0.446008682250977,0.323350340127945,0.834578275680542,0.446008712053299,0.32335039973259,0.834578216075897,0.446008682250977,0.323350340127945,0.834578216075897,0.05892214179039,0.624773383140564,-0.778579771518707,0.0589221492409706,0.624773323535919,-0.778579831123352,0.05892214179039,0.624773383140564,-0.778579771518707,0.00362564157694578,0.019212618470192,0.999808847904205,-0.00938875321298838,0.0218396428972483,0.999717473983765,0.00406325189396739,0.0191242210566998,0.999808847904205,0.00283413729630411,0.0193724874407053,0.999808371067047,-0.00965260434895754,0.0218928698450327,0.999713838100433,-0.016730098053813,0.0233199764043093,0.999588072299957,-0.00755411293357611,0.000137449707835913,-0.999971508979797,-0.00577389076352119,0.00872869044542313,-0.999945223331451,-0.00556000415235758,0.00976070389151573,-0.999936938285828,-0.00688947178423405,0.00334530090913177,-0.999970674514771,-0.00912000704556704,-0.00742177665233612,-0.999930858612061,-0.00974054448306561,-0.0113895311951637,-0.999887764453888,-0.0119832195341587,-0.0235782954841852,-0.999650239944458,-0.0118128899484873,-0.0226523466408253,-0.999673664569855,-0.0119159780442715,-0.0232127569615841,-0.999659597873688,-0.0127079766243696,-0.027518667280674,-0.999540507793427,-0.0121199302375317,-0.0243215207010508,-0.999630808830261,-0.0278517752885818,-0.039900828152895,-0.998815357685089,-0.0151707734912634,-0.0426486097276211,-0.998974919319153,-0.00462557794526219,-0.0449277050793171,-0.998979568481445,-0.0088292583823204,-0.0440198220312595,-0.998991727828979,-0.0204428639262915,-0.0415071696043015,-0.998929142951965,0.211763054132462,0.977303326129913,-0.00589421158656478,0.208089172840118,0.97809237241745,-0.00585537683218718,0.221285045146942,0.975190758705139,-0.00599462259560823,
- 0.213599324226379,0.976903438568115,-0.00591360218822956,0.192660376429558,0.981249034404755,-0.00569172715768218,-0.178550690412521,-0.983930587768555,0.000552785873878747,-0.181266337633133,-0.983433961868286,0.000582388311158866,-0.201135247945786,-0.979563176631927,0.000799297238700092,-0.186002522706985,-0.982549130916595,0.000634041323792189,-0.175976827740669,-0.984394192695618,0.000524738570675254,-0.185310482978821,-0.982679903507233,0.000626491673756391,0.538920044898987,-0.547299265861511,-0.640334904193878,0.538920044898987,-0.547299265861511,-0.640334904193878,0.538919985294342,-0.547299206256866,-0.640334904193878,-0.360138326883316,0.342988729476929,-0.867559313774109,-0.360138326883316,0.342988669872284,-0.867559313774109,-0.360138326883316,0.342988699674606,-0.867559313774109,0.0692009925842285,0.646857082843781,0.759465098381042,0.0692009404301643,0.646857082843781,0.759464979171753,0.0692009553313255,0.646857082843781,0.759465098381042,-0.0719865784049034,-0.996576726436615,0.0406542681157589,-0.0292378589510918,-0.998742699623108,0.0407213792204857,-0.0789538249373436,-0.996049761772156,0.0406362488865852,-0.049165565520525,-0.997961163520813,0.0406993925571442,-0.0649925991892815,-0.997056603431702,0.0406703650951386,-0.159847542643547,-0.986319601535797,0.0402797162532806,0.0993320941925049,0.995053768157959,-0.00107335252687335,0.099651075899601,0.995021939277649,-0.00107680750079453,0.0999235212802887,0.994994521141052,-0.0010797583963722,0.0998772904276848,0.99499922990799,-0.0010792575776577,0.0998775362968445,0.994999170303345,-0.00107926037162542,0.0997641906142235,0.995010614395142,-0.00107803265564144,-1.79037460412701e-008,-0.105147875845432,-0.994456648826599,-1.85173050226695e-008,-0.108751274645329,-0.994069039821625,-2.08798045520098e-008,-0.122626110911369,-0.99245297908783,-2.03040482205097e-008,-0.119244739413261,-0.992864906787872,-2.17535873758834e-008,-0.127757802605629,-0.991805374622345,-2.00804350924955e-008,-0.117931455373764,-0.993021726608276,-0.0180609449744225,-0.539956510066986,-0.841499149799347,
- -0.0180609449744225,-0.539956510066986,-0.841499149799347,-0.0180609300732613,-0.539956450462341,-0.841499209403992,-0.242901653051376,0.770340919494629,0.589553773403168,-0.242901653051376,0.770340979099274,0.589553833007813,-0.242901667952538,0.770340979099274,0.589553773403168,0.00588124804198742,-0.00033656699815765,0.99998265504837,0.00265301368199289,-0.000297494727419689,0.999996483325958,-0.00418234523385763,-0.000214755287743174,0.999991297721863,-0.0108746662735939,-0.00013373521505855,0.999940872192383,-0.0139598418027163,-9.63807833613828e-005,0.999902606010437,-0.00411092210561037,-0.000215619889786467,0.999991595745087,0.0416783317923546,-0.0238800197839737,-0.998845756053925,0.0416785776615143,-0.0203731767833233,-0.998923420906067,0.041678462177515,-0.0180772058665752,-0.998967528343201,0.041678573936224,-0.0203839335590601,-0.998923122882843,0.0416783876717091,-0.0234835315495729,-0.998855113983154,0.0416775681078434,-0.0274080783128738,-0.998755216598511,-0.6931312084198,-0.16491761803627,-0.701691746711731,-0.693131268024445,-0.16491761803627,-0.701691687107086,-0.6931312084198,-0.164917603135109,-0.701691746711731,0.0507541969418526,-0.000356243079295382,-0.998711109161377,0.0328387655317783,-0.00013935420429334,-0.999460697174072,0.0444273166358471,-0.000279638741631061,-0.999012589454651,0.0560653172433376,-0.000420556840253994,-0.998427033424377,0.0570786222815514,-0.000432827975600958,-0.998369574546814,0.0580364614725113,-0.000444427772890776,-0.998314440250397,0.555573701858521,-0.328655749559402,-0.763756036758423,0.555573701858521,-0.328655689954758,-0.763756155967712,0.555573642253876,-0.32865571975708,-0.763756036758423,-0.0648918971419334,0.997721016407013,-0.0184922255575657,-0.026300348341465,0.999482870101929,-0.0185051672160625,-0.0711026638746262,0.997297704219818,-0.0184875559061766,-0.044289268553257,0.998847424983978,-0.0185025706887245,-0.0586617738008499,0.998106598854065,-0.0184961874037981,-0.144299909472466,0.989363312721252,-0.0183780398219824,0.0893556252121925,-0.995580911636353,-0.0288860127329826,
- 0.0896431431174278,-0.995555102825165,-0.028882110491395,0.105716295540333,-0.993983268737793,-0.0286601334810257,0.101983495056629,-0.994371652603149,-0.0287123844027519,0.0824524238705635,-0.996173679828644,-0.0289788842201233,0.0958145707845688,-0.994982600212097,-0.0287978108972311,0.000936792173888534,0.0921504124999046,0.995744705200195,0.000940394354984164,0.109643787145615,0.993970572948456,0.000940899131819606,0.112210884690285,0.993683993816376,0.000939863792154938,0.106978103518486,0.994260966777802,0.000941359321586788,0.114579558372498,0.993413686752319,0.000939615652896464,0.105742499232292,0.994393169879913,0.0132955461740494,0.466842770576477,0.884240448474884,0.0132955405861139,0.466842770576477,0.884240448474884,0.0132955238223076,0.466842800378799,0.884240448474884,-0.0778802633285522,-0.666432678699493,-0.741486430168152,-0.0778802782297134,-0.666432738304138,-0.741486430168152,-0.077880285680294,-0.666432738304138,-0.741486370563507,0.00594323128461838,0.0351848751306534,-0.99936318397522,0.00264531536959112,0.0351494923233986,-0.999378621578217,-0.00437707453966141,0.0350728929042816,-0.999375224113464,-0.0112750176340342,0.0349959619343281,-0.999323904514313,-0.0144484620541334,0.034960001707077,-0.999284327030182,-0.0043149571865797,0.0350735783576965,-0.999375462532043,0.0411384627223015,-0.000879824568983167,0.999153077602386,0.0411360785365105,-0.00645020743831992,0.999132752418518,0.041135560721159,-0.00737540377303958,0.999126434326172,0.0411371029913425,-0.00442469399422407,0.999143779277802,0.0411390848457813,0.00144277699291706,0.999152481555939,0.0411394126713276,0.00325916218571365,0.999148190021515,-0.669704675674438,0.175690963864326,0.721545815467834,-0.669704675674438,0.175690963864326,0.721545815467834,-0.669704675674438,0.175690963864326,0.721545815467834,0.0530559048056602,-0.0989608392119408,0.993675947189331,0.034517914056778,-0.0992136970162392,0.994467258453369,0.0464336201548576,-0.0990551114082336,0.993998050689697,0.0583944357931614,-0.0988816469907761,0.99338436126709,
- 0.0596753880381584,-0.0988622382283211,0.993310213088989,0.0609045326709747,-0.0988434329628944,0.993237495422363,0.519183695316315,0.316203385591507,0.794017493724823,0.51918363571167,0.316203385591507,0.794017553329468,0.519183695316315,0.316203415393829,0.794017493724823,0.0689194872975349,0.0644727125763893,0.995536744594574,0.0620752461254597,0.0661173164844513,0.995879173278809,0.0619720220565796,0.131257712841034,0.989409387111664,0.0733660683035851,0.129898935556412,0.988809287548065,0.0850535854697227,0.128486111760139,0.988057374954224,0.0869360342621803,0.996213674545288,-0.000768407364375889,0.0889676213264465,0.996019542217255,-0.00545829441398382,0.0895515158772469,0.995970606803894,-0.00481191324070096,0.0923079177737236,0.995729506015778,-0.00146939815022051,-0.0295032560825348,-0.0399887822568417,-0.998764514923096,-0.0161581207066774,-0.0417320132255554,-0.998998165130615,-0.0286396667361259,-0.0401018261909485,-0.998785078525543,-0.0335818082094193,-0.0394544191658497,-0.998656988143921,-0.0325669273734093,-0.0395874530076981,-0.998685300350189,-0.0215349588543177,-0.0410306081175804,-0.998925864696503,-0.0128956343978643,-0.0421569757163525,-0.999027848243713,0.0497813671827316,-0.00776640232652426,0.998730003833771,0.0495098605751991,-0.0100669832900167,0.998722970485687,0.0489594973623753,-0.0147232990711927,0.998692214488983,0.0484109073877335,-0.0193554367870092,0.99864000082016,0.0490533374249935,-0.0139300860464573,0.998699069023132,0.0495112650096416,-0.0100550539791584,0.998722970485687,0.0609725005924702,-0.0341660343110561,0.9975546002388,0.0620543956756592,-0.0258371978998184,0.997738301753998,0.0624221339821815,-0.0229981951415539,0.997784912586212,0.0623222589492798,-0.0237696468830109,0.997773051261902,0.0625032559037209,-0.0223712921142578,0.997794032096863,0.0618202984333038,-0.0276423431932926,0.997704446315765,0.397124022245407,-0.459761738777161,0.794299483299255,0.397124081850052,-0.459761768579483,0.794299483299255,0.397124052047729,-0.459761768579483,0.794299483299255,0.0895515158772469,0.995970606803894,-0.00481191324070096,
- 0.0889676213264465,0.996019542217255,-0.00545829441398382,0.115330949425697,0.993274569511414,-0.0102223949506879,0.0894078612327576,0.995955765247345,-0.00885309930890799,0.0794988349080086,0.996800243854523,-0.00832894910126925,-0.114192761480808,-0.993023335933685,0.0294036529958248,-0.113618321716785,-0.993090212345123,0.0293742455542088,-0.112457595765591,-0.993224084377289,0.0293147880584002,-0.113614417612553,-0.993090629577637,0.0293740406632423,-0.113606609404087,-0.993091464042664,0.0293736439198256,0.397673010826111,-0.0187329351902008,0.917335987091064,0.397673010826111,-0.0187329351902008,0.917335987091064,0.397673040628433,-0.0187329351902008,0.917335987091064,0.0577273666858673,-0.00371988001279533,0.99832546710968,0.0577335990965366,-0.00372064812108874,0.998325109481812,0.0620752461254597,0.0661173164844513,0.995879173278809,0.0689194872975349,0.0644727125763893,0.995536744594574,0.102804556488991,-0.993326723575592,-0.052280243486166,0.0626405701041222,-0.996661961078644,-0.0523564033210278,0.109287150204182,-0.992635548114777,-0.0522599518299103,0.081367589533329,-0.995309352874756,-0.0523315034806728,0.0962984412908554,-0.993977665901184,-0.0522983856499195,0.185234665870667,-0.981325328350067,-0.0518538691103458,-0.128391891717911,0.991722822189331,0.00120887323282659,-0.128685876727104,0.991684675216675,0.00121273403055966,-0.12893383204937,0.991652548313141,0.0012159903999418,-0.128895297646523,0.991657435894012,0.00121548434253782,-0.128902807831764,0.991656482219696,0.00121558306273073,-0.128790602087975,0.991671144962311,0.00121410936117172,0.00475061265751719,-0.134696021676064,0.990875601768494,0.00528770033270121,-0.149930119514465,0.988682448863983,0.00533669721335173,-0.151319861412048,0.988470494747162,0.00538053922355175,-0.152563378214836,0.988279044628143,0.00549738295376301,-0.155877575278282,0.98776113986969,0.00528512615710497,-0.149857103824615,0.988693535327911,-0.0239701867103577,-0.461293816566467,0.886923670768738,-0.0239701867103577,-0.461293816566467,0.886923611164093,-0.0239701680839062,-0.461293876171112,0.886923670768738,
- 0.140914425253868,0.728032350540161,-0.670903980731964,0.140914410352707,0.728032290935516,-0.670903980731964,0.140914425253868,0.728032350540161,-0.670904040336609,-0.00700238952413201,-0.000532550329808146,-0.999975383281708,-0.00314742280170321,-0.000352661096258089,-0.999994993209839,0.0050562834367156,3.01691034110263e-005,-0.999987244606018,0.0131274163722992,0.000406826206017286,-0.99991375207901,0.0168497711420059,0.000580542662646621,-0.9998579621315,0.00499016419053078,2.70835735136643e-005,-0.999987542629242,-0.0334395058453083,-0.0318864360451698,0.998932063579559,-0.0335993096232414,-0.0273647792637348,0.999060690402985,-0.0337008759379387,-0.0244803614914417,0.999132096767426,-0.0335987620055676,-0.0273802205920219,0.999060332775116,-0.0334584638476372,-0.0313509106636047,0.998948276042938,-0.0332779064774513,-0.0364383086562157,0.998781681060791,0.626958847045898,-0.141757935285568,0.766046583652496,0.626958787441254,-0.141757920384407,0.766046583652496,0.626958787441254,-0.141757920384407,0.766046524047852,-0.0612033307552338,-0.00265619554556906,0.998121857643127,-0.0396295338869095,-0.00164938648231328,0.99921315908432,-0.0535820536315441,-0.00230051414109766,0.998560786247253,-0.0675908625125885,-0.00295430817641318,0.997708797454834,-0.0688202828168869,-0.00301168742589653,0.997624576091766,-0.0699828341603279,-0.00306594558060169,0.997543573379517,-0.472693771123886,-0.311777949333191,0.824230074882507,-0.472693741321564,-0.311777949333191,0.824230074882507,-0.472693771123886,-0.311777949333191,0.824230074882507,0.99996954202652,0.00524212373420596,-0.00579154351726174,0.999970257282257,0.00523902475833893,-0.00566442077979445,0.999986886978149,0.00508615048602223,0.00060156115796417,0.999969124794006,0.00524367298930883,-0.00585510907694697,0.999812066555023,0.00555341923609376,-0.0185767896473408,-0.00180439557880163,0.997537076473236,0.0701188743114471,-0.00731016602367163,0.998610556125641,0.0521884262561798,-0.00616852473467588,0.997767984867096,0.0664904713630676,-0.00238120974972844,0.998006522655487,0.0630664527416229,
- -0.998288810253143,-0.0496825575828552,-0.0308392029255629,-0.997759878635406,-0.0494616739451885,-0.0450426749885082,-0.998267829418182,-0.0496720522642136,-0.0315297245979309,-0.998419225215912,-0.0497533120214939,-0.0261460542678833,-0.998392760753632,-0.0497380271553993,-0.0271666701883078,-0.998003959655762,-0.0495545938611031,-0.0391465425491333,-0.997595906257629,-0.0494048073887825,-0.0485973544418812,1,-0.000274247548077255,-1.12280149551225e-005,1,-0.000271590077318251,-1.11722110887058e-005,0.999990940093994,-0.00425380747765303,-9.47929656831548e-005,0.999966084957123,-0.00823861546814442,-0.000178468049853109,0.999995768070221,-0.00292728585191071,-6.6937951487489e-005,0.999715447425842,-0.0194321759045124,-0.0138364182785153,0.99978631734848,-0.0153999300673604,-0.0137871280312538,0.999833524227142,-0.0120004955679178,-0.0137454057112336,0.999825656414032,-0.0126335527747869,-0.0137531887739897,0.999800324440002,-0.0144778126850724,-0.0137758273631334,0.812010824680328,-0.363921850919724,-0.456288754940033,0.812010765075684,-0.363921910524368,-0.456288784742355,0.812010824680328,-0.363921880722046,-0.456288814544678,-0.00616852473467588,0.997767984867096,0.0664904713630676,-0.00731016602367163,0.998610556125641,0.0521884262561798,-0.0104930913075805,0.999402403831482,0.0329380333423615,-0.0104926778003573,0.999285697937012,0.0363060757517815,-0.0104900086298585,0.99873811006546,0.0491137616336346,0.027501517906785,-0.999106764793396,-0.0320838503539562,0.0275026094168425,-0.999084293842316,-0.0327754281461239,0.0275047402828932,-0.999038219451904,-0.0341508463025093,0.0275026019662619,-0.999084413051605,-0.0327728651463985,0.027502603828907,-0.99908459186554,-0.032767727971077,0.942233264446259,0.0303677469491959,-0.333578109741211,0.942233264446259,0.0303677450865507,-0.333578109741211,0.942233324050903,0.0303677450865507,-0.333578109741211,-0.0532111413776875,-0.994493901729584,-0.0902807861566544,-0.053310502320528,-0.996289253234863,-0.0675699859857559,-0.053007185459137,-0.990775942802429,-0.124713204801083,
- -0.0533056929707527,-0.99620258808136,-0.0688404813408852,-0.0534416548907757,-0.998565912246704,-0.00320061249658465,-0.0534366518259048,-0.99849671125412,-0.0122034316882491,0.00314636318944395,0.988974392414093,0.148053824901581,0.00315117044374347,0.988919734954834,0.148418009281158,0.00315526453778148,0.98887312412262,0.148728221654892,0.00315458490513265,0.98888087272644,0.148676723241806,0.00315461819991469,0.988880515098572,0.148679226636887,0.00315287755802274,0.988900244235992,0.148547366261482,0.99082338809967,-0.135156154632568,-0.00132759753614664,0.988645970821381,-0.150254458189011,-0.00168650457635522,0.988437414169312,-0.151619791984558,-0.00171898142434657,0.988247692584991,-0.152851030230522,-0.00174827256705612,0.987732589244843,-0.156144559383392,-0.0018266390543431,0.988656163215637,-0.150187537074089,-0.00168491248041391,0.882923305034637,-0.468417882919312,0.0321132093667984,0.882923245429993,-0.468417882919312,0.0321132056415081,0.882923245429993,-0.468417912721634,0.032113179564476,-0.68241423368454,0.710310697555542,-0.172538608312607,-0.68241423368454,0.710310757160187,-0.17253865301609,-0.682414174079895,0.710310757160187,-0.172538667917252,-0.999984204769135,0.000988845713436604,0.00553854648023844,-0.99999874830246,0.00120315025560558,0.00104983430355787,-0.999960362911224,0.00167080841492862,-0.00874732621014118,-0.999824583530426,0.00214143050834537,-0.0186091270297766,-0.999728977680206,0.00235867733135819,-0.0231623649597168,-0.999960064888,0.00167237129062414,-0.00878007151186466,0.999036490917206,-0.0326240807771683,0.0293556489050388,0.99916934967041,-0.0281546786427498,0.0294610746204853,0.999239265918732,-0.0254824608564377,0.0295238215476274,0.999168753623962,-0.0281763896346092,0.0294605642557144,0.999055087566376,-0.0320394299924374,0.0293694753199816,0.998882114887238,-0.0371362417936325,0.0292485989630222,0.824088752269745,-0.11319725215435,-0.555035293102264,0.824088752269745,-0.113197259604931,-0.555035352706909,0.82408881187439,-0.113197267055511,-0.555035352706909,0.996991872787476,-0.00494607863947749,0.0773482620716095,
- 0.998687446117401,-0.00369474967010319,0.0510858558118343,0.997670233249664,-0.00450423965230584,0.0680730193853378,0.996356427669525,-0.00531627982854843,0.0851214304566383,0.996227264404297,-0.00538742635399103,0.0866154730319977,0.996103048324585,-0.00545470416545868,0.0880283713340759,0.856681406497955,-0.234659254550934,0.459382146596909,0.8566814661026,-0.234659284353256,0.459382146596909,0.8566814661026,-0.234659299254417,0.459382206201553,0.13424851000309,-0.119671449065208,-0.983695149421692,0.145291313529015,-0.121926710009575,-0.9818474650383,0.134033530950546,-0.119627423584461,-0.983729839324951,0.13505120575428,-0.119835771620274,-0.983565211296082,0.145558446645737,-0.121981114149094,-0.98180103302002,0.151421308517456,-0.123173430562019,-0.980765044689178,-0.191666185855865,0.112159997224808,0.975030422210693,-0.191316738724709,0.113756164908409,0.974914133548737,-0.191553398966789,0.112675443291664,0.974993109703064,-0.192138627171516,0.109998039901257,0.975183725357056,-0.191591024398804,0.11250364780426,0.975005626678467,-0.19803774356842,0.0894453823566437,0.976104855537415,-0.198946580290794,0.0856657028198242,0.976259052753448,-0.197052523493767,0.0935270115733147,0.975921630859375,-0.196122482419014,0.0973657295107841,0.975733578205109,-0.198311701416969,0.0883074477314949,0.976152777671814,-0.199428781867027,0.0836545452475548,0.976334989070892,-0.114171668887138,0.138146191835403,0.983809232711792,-0.126143157482147,0.140450969338417,0.982019126415253,-0.134113594889641,0.141975656151772,0.980742812156677,-0.132121756672859,0.141595378518105,0.981068193912506,-0.122154600918293,0.139685034751892,0.982632339000702,0.200653836131096,0.976737976074219,-0.0756377577781677,0.203614711761475,0.976159572601318,-0.0751908347010612,0.192946180701256,0.978199362754822,-0.0767965838313103,0.199172496795654,0.977023780345917,-0.0758609995245934,0.216030389070511,0.973630905151367,-0.0733059644699097,-0.215221345424652,-0.974596679210663,0.0619766637682915,-0.209476053714752,-0.975791156291962,0.0628601685166359,
- -0.208503857254982,-0.975989758968353,0.0630093440413475,-0.209526672959328,-0.97578090429306,0.0628523975610733,-0.213664516806602,-0.974923968315125,0.0622164011001587,-0.221060007810593,-0.973345935344696,0.0610753446817398,-0.792821168899536,-0.30714875459671,0.526397407054901,-0.792821168899536,-0.307148724794388,0.526397407054901,-0.792821228504181,-0.307148724794388,0.526397466659546,0.338826835155487,0.31848132610321,0.88530570268631,0.338826864957809,0.31848132610321,0.88530558347702,0.338826835155487,0.31848132610321,0.88530570268631,0.331764400005341,0.475693494081497,-0.814646065235138,0.331764400005341,0.475693434476852,-0.814646005630493,0.331764400005341,0.475693434476852,-0.814646005630493,-0.0295318122953177,-0.0890520215034485,-0.995589077472687,-0.0177890863269567,-0.0917116403579712,-0.99562668800354,-0.0120089510455728,-0.093015693128109,-0.99559223651886,-0.0236916355788708,-0.090376503765583,-0.995625853538513,-0.0354939214885235,-0.0876963287591934,-0.995514690876007,0.256012618541718,0.965883255004883,-0.0390780493617058,0.242032915353775,0.969673097133636,-0.0339755304157734,0.253056526184082,0.966816484928131,-0.0350487232208252,0.250840216875076,0.967255294322968,-0.0386842116713524,-0.0270458497107029,0.0187171138823032,0.999458968639374,-0.0403325520455837,0.0216100495308638,0.998952686786652,-0.0281401462852955,0.0189554654061794,0.999424278736115,-0.0234253015369177,0.0179283954203129,0.99956488609314,-0.0244474485516548,0.018151082098484,0.999536335468292,-0.0352015271782875,0.0204931423068047,0.999170124530792,-0.0435605309903622,0.0223125200718641,0.998801589012146,-0.00451902579516172,-0.0403566770255566,-0.999175131320953,-0.00475485622882843,-0.0413667857646942,-0.999132752418518,-0.00632529705762863,-0.0480927117168903,-0.998822867870331,-0.00765968859195709,-0.0538069047033787,-0.998521983623505,-0.00572323938831687,-0.0455143190920353,-0.998947262763977,-0.0229573007673025,-0.0540997944772244,-0.998271584510803,-0.0222632959485054,-0.0509619638323784,-0.998452425003052,-0.0218607615679502,-0.0491422303020954,-0.998552620410919,
- -0.0233042296022177,-0.0556685626506805,-0.998177349567413,-0.0251485966145992,-0.0640107318758965,-0.997632384300232,-0.466618418693542,-0.355856508016586,-0.809711992740631,-0.466618418693542,-0.355856508016586,-0.809711933135986,-0.46661838889122,-0.355856537818909,-0.809711992740631,0.253056526184082,0.966816484928131,-0.0350487232208252,0.242032915353775,0.969673097133636,-0.0339755304157734,0.227510094642639,0.973283648490906,-0.0309552066028118,0.230005145072937,0.972697257995605,-0.0309479106217623,0.239517629146576,0.970399677753448,-0.0309181716293097,-0.214569479227066,-0.976702570915222,0.00348560698330402,-0.214885100722313,-0.976633131504059,0.00348449824377894,-0.226993888616562,-0.973890125751495,0.003441619919613,-0.218715101480484,-0.975782632827759,0.00347100710496306,-0.226364359259605,-0.974036633968353,0.00344386603683233,-0.336953192949295,0.0683740749955177,-0.939035475254059,-0.336953163146973,0.0683740526437759,-0.939035415649414,-0.336953163146973,0.0683740600943565,-0.939035475254059,0.00209932611323893,0.995797157287598,0.0915632471442223,0.00266974535770714,0.99541175365448,0.0956477597355843,0.00451024435460567,0.994051516056061,0.108817853033543,0.00223363167606294,0.995707869529724,0.0925250574946404,0.00514530902728438,0.993540823459625,0.113359019160271,0.00446549244225025,0.994086623191834,0.108497783541679,-0.00511373113840818,-0.998408913612366,-0.056157473474741,-0.00677456520497799,-0.998407781124115,-0.056000042706728,-0.00567443110048771,-0.998408854007721,-0.056104339659214,-0.00291343731805682,-0.998405933380127,-0.0563657768070698,-0.00548753188923001,-0.998408854007721,-0.0561220571398735,0.0194887965917587,-0.998067855834961,-0.0589992478489876,0.0232328716665506,-0.997962892055511,-0.0594170652329922,0.0155137050896883,-0.99816370010376,-0.0585547462105751,0.0118000116199255,-0.998238861560822,-0.0581386685371399,0.0206702426075935,-0.99803626537323,-0.0591311678290367,0.0252356119453907,-0.997900903224945,-0.0596402361989021,-0.0238291993737221,-0.995451331138611,-0.0922437310218811,
- -0.0207071341574192,-0.997581422328949,-0.0663522481918335,-0.022447481751442,-0.996479451656342,-0.080776147544384,-0.0253841914236546,-0.994130611419678,-0.10516645014286,-0.0265827253460884,-0.992993593215942,-0.115139231085777,-0.992020010948181,0.000672714726533741,0.126078858971596,-0.994836270809174,0.002615847857669,0.101459734141827,-0.999425113201141,0.00798886362463236,0.0329503156244755,-0.996015608310699,0.00358835561200976,0.0891069769859314,-0.990772485733032,-7.54334032535553e-005,0.135535553097725,0.989729166030884,0.0117305628955364,-0.142473220825195,0.990695595741272,0.0111746387556195,-0.135637521743774,0.990804612636566,0.0111101120710373,-0.134844124317169,0.990614295005798,0.0112224640324712,-0.136225566267967,0.98928689956665,0.0119761107489467,-0.145492538809776,0.988056421279907,0.0126333143562078,-0.153573751449585,0.27302011847496,-0.653723120689392,-0.705766379833221,0.27302011847496,-0.653723239898682,-0.705766320228577,0.27302011847496,-0.653723120689392,-0.705766379833221,-0.182785928249359,-0.92033052444458,0.345805197954178,-0.182785928249359,-0.920330464839935,0.345805168151855,-0.182785913348198,-0.920330464839935,0.345805168151855,-0.646837770938873,0.734747886657715,0.204319521784782,-0.646837830543518,0.734747886657715,0.204319506883621,-0.646837770938873,0.734747886657715,0.204319477081299,0.05262316390872,-0.991582155227661,-0.118303708732128,0.0123633909970522,-0.99290132522583,-0.118297696113586,0.0591486766934395,-0.991216361522675,-0.118286587297916,0.0311347506940365,-0.992486834526062,-0.118324391543865,0.0460761561989784,-0.991906404495239,-0.118315808475018,0.135490089654922,-0.983761787414551,-0.117708116769791,-0.0785053446888924,0.994560122489929,0.0684625804424286,-0.078803688287735,0.994536340236664,0.0684660524129868,-0.0790580585598946,0.994515836238861,0.0684690251946449,-0.0790115669369698,0.994519591331482,0.0684684738516808,-0.079009048640728,0.994519889354706,0.068468451499939,-0.0789076313376427,0.994527995586395,0.0684672668576241,0.00230649090372026,-0.198363274335861,0.980125904083252,
- 0.00207360601052642,-0.213133707642555,0.977020859718323,0.00205237953923643,-0.214476063847542,0.976727068424225,0.00203351583331823,-0.215668454766274,0.976464629173279,0.00198250007815659,-0.218890637159348,0.975747406482697,0.00207478902302682,-0.213058844208717,0.977037191390991,-0.0382823348045349,-0.525176763534546,0.850131690502167,-0.0382823385298252,-0.525176763534546,0.850131630897522,-0.0382823459804058,-0.525176763534546,0.850131630897522,0.180547639727592,0.768186926841736,-0.614240646362305,0.180547639727592,0.768186867237091,-0.614240527153015,0.180547654628754,0.768186926841736,-0.61424058675766,-0.0110627105459571,0.0686065778136253,-0.9975825548172,-0.00727679021656513,0.0685955733060837,-0.997618019580841,0.000744652817957103,0.0685690194368362,-0.997646152973175,0.00864983256906271,0.068538524210453,-0.997611045837402,0.0123194912448525,0.0685229152441025,-0.997573554515839,0.000686544401105493,0.068569228053093,-0.99764609336853,-0.0313257426023483,-0.0965288206934929,0.9948371052742,-0.0312598496675491,-0.0921589583158493,0.995253503322601,-0.031216774135828,-0.0893229693174362,0.995513439178467,-0.031260222196579,-0.0921837836503983,0.995251297950745,-0.0313183106482029,-0.096033863723278,0.994885325431824,-0.0313917770981789,-0.100946441292763,0.994396507740021,0.629758417606354,-0.22467765212059,0.743588805198669,0.629758358001709,-0.224677622318268,0.743588805198669,0.629758417606354,-0.22467765212059,0.743588805198669,-0.0558262504637241,-0.0682728439569473,0.996103584766388,-0.0346738062798977,-0.0684135034680367,0.9970543384552,-0.048356406390667,-0.06832604855299,0.99649053812027,-0.062095433473587,-0.0682252421975136,0.995735704898834,-0.0632922723889351,-0.0682158321142197,0.995660960674286,-0.0644235536456108,-0.0682068690657616,0.995589077472687,-0.49084809422493,-0.347301572561264,0.799030661582947,-0.490848034620285,-0.347301572561264,0.799030542373657,-0.49084809422493,-0.347301572561264,0.799030661582947,0.0101113235577941,0.00479945773258805,0.999937355518341,-0.000300293759210035,0.00485129980370402,0.999988198280334,
- -0.00601146789267659,0.00487951328977942,0.999970078468323,0.00473715737462044,0.00482628354802728,0.999977171421051,0.0148115353658795,0.00477588223293424,0.999879002571106,-0.0364927388727665,0.999333262443542,0.00117204175330698,-0.0237630680203438,0.999662518501282,-0.010502484627068,-0.0382378287613392,0.992649257183075,-0.114827409386635,-0.0374066419899464,0.992996454238892,-0.112065613269806,0.0259240977466106,-0.049607440829277,-0.998432278633118,0.0385164692997932,-0.0497669018805027,-0.998017907142639,0.0266145970672369,-0.0496163927018642,-0.998413741588593,0.0218616239726543,-0.0495543330907822,-0.998532116413116,0.0227691978216171,-0.0495662875473499,-0.998511373996735,0.0333379916846752,-0.0497022680938244,-0.998207569122314,0.0416373759508133,-0.0498052053153515,-0.997890651226044,0.00271586235612631,-0.135095775127411,0.99082887172699,0.00244755740277469,-0.0309559646993876,0.999517738819122,0.00222508888691664,0.0486553460359573,0.998813211917877,0.00182966818101704,-0.0358007624745369,0.999357283115387,0.00189811072777957,0.00525877298787236,0.999984443187714,0.0130419172346592,-0.044743612408638,0.9989133477211,0.0102965701371431,0.07670958340168,0.997000336647034,0.00878420099616051,-0.0070755872875452,0.999936461448669,0.0147899817675352,-0.0450148396193981,0.998876869678497,0.480084955692291,-0.323561877012253,0.81536877155304,0.480084955692291,-0.323561817407608,0.81536877155304,0.480084985494614,-0.323561877012253,0.81536877155304,-0.0382378287613392,0.992649257183075,-0.114827409386635,-0.0237630680203438,0.999662518501282,-0.010502484627068,-0.0081480210646987,0.999963998794556,0.00239617680199444,-0.00273133651353419,0.993054866790771,-0.117621071636677,-0.0112251341342926,0.993001163005829,-0.117569863796234,0.00147779029794037,-0.999998986721039,-3.06892070511822e-005,0.00168105401098728,-0.999928712844849,-0.0118232639506459,0.00230064755305648,-0.995647609233856,0.0931695699691772,0.00253533222712576,-0.995647072792053,0.093169316649437,0.383404314517975,-0.0735343247652054,0.920648634433746,
- 0.383404344320297,-0.0735343247652054,0.920648574829102,0.38340437412262,-0.073534332215786,0.920648694038391,0.00189811072777957,0.00525877298787236,0.999984443187714,0.00182966818101704,-0.0358007624745369,0.999357283115387,0.000478998408652842,-0.18927900493145,0.981923222541809,0.000963294878602028,-0.0657592415809631,0.997835099697113,-0.0320393964648247,0.993571758270264,0.108575858175755,-0.0153507795184851,0.991978883743286,0.125468373298645,-0.0237630680203438,0.999662518501282,-0.010502484627068,-0.0364927388727665,0.999333262443542,0.00117204175330698,-0.0081480210646987,0.999963998794556,0.00239617680199444,-0.0237630680203438,0.999662518501282,-0.010502484627068,-0.0153507795184851,0.991978883743286,0.125468373298645,-0.00250363722443581,0.989804804325104,0.142408579587936,0.0130419172346592,-0.044743612408638,0.9989133477211,0.0147899817675352,-0.0450148396193981,0.998876869678497,0.0193999372422695,0.0759383589029312,0.996923804283142,0.0195671059191227,-0.0218571443110704,0.999569654464722,0.00147779029794037,-0.999998986721039,-3.06892070511822e-005,0.00209067156538367,-0.995939075946808,-0.0900053754448891,0.00321220676414669,-0.995936870574951,-0.0899971425533295,0.00168105401098728,-0.999928712844849,-0.0118232639506459,-0.0103113474324346,0.00811553001403809,0.999913990497589,-0.0236721057444811,0.0088301170617342,0.999680817127228,-0.00983963999897242,0.00809027627110481,0.999918878078461,-0.0111316991969943,0.00815944466739893,0.999904751777649,-0.0239455234259367,0.00884472765028477,0.999674141407013,-0.0312339961528778,0.00923395901918411,0.999469518661499,0.00380542082712054,0.00840241741389036,-0.99995756149292,0.00353800458833575,0.00359755288809538,-0.999987304210663,0.00345983169972897,0.00219321623444557,-0.999991655349731,0.0033535840921104,0.000284730514977127,-0.999994337558746,0.00338737200945616,0.000891628966201097,-0.999993920326233,0.00352397351525724,0.00334547879174352,-0.999988257884979,0.00316605227999389,-0.0218211971223354,-0.999756872653961,0.00313367927446961,-0.0227840598672628,-0.999735534191132,
- 0.00342947128228843,-0.0139823509380221,-0.999896466732025,0.00359853846020997,-0.0089474581182003,-0.999953508377075,0.00339639885351062,-0.0149669153615832,-0.999882221221924,0.00305415131151676,-0.0251490138471127,-0.999679088592529,0.00297200120985508,-0.0275912284851074,-0.999614894390106,0.00300625618547201,0.173492401838303,-0.984830677509308,0.0110191889107227,0.17292058467865,-0.984874188899994,0.0164751559495926,0.088751494884491,-0.995917618274689,0.00797957554459572,0.0934779718518257,-0.995589435100555,0.0800644084811211,0.996713101863861,0.0123622659593821,0.0643115565180779,0.997853338718414,0.0123598957434297,0.0957015678286552,0.995333313941956,0.0123615646734834,0.0879394188523293,0.996049106121063,0.0123622929677367,0.0487464144825935,0.998734831809998,0.012354533188045,-0.0470643937587738,-0.998879492282867,0.00497649284079671,-0.0543472208082676,-0.99850982427597,0.00496405689045787,-0.0555924996733665,-0.998441278934479,0.00496190367266536,-0.0542819611728191,-0.998513281345367,0.00496416864916682,-0.049033597111702,-0.998784780502319,0.00497315730899572,-0.0396484583616257,-0.999201238155365,0.00498888082802296,0.617302119731903,-0.454291105270386,-0.642306566238403,0.617302000522614,-0.454291075468063,-0.642306685447693,0.617302119731903,-0.454291105270386,-0.642306685447693,-0.393568307161331,0.294333010911942,-0.870903074741364,-0.393568336963654,0.294333040714264,-0.870903074741364,-0.393568366765976,0.294333040714264,-0.870903074741364,-0.0386640280485153,0.640958428382874,0.766601204872131,-0.0386640466749668,0.640958487987518,0.766601264476776,-0.0386640429496765,0.640958428382874,0.766601204872131,0.00797957554459572,0.0934779718518257,-0.995589435100555,0.0164751559495926,0.088751494884491,-0.995917618274689,0.0166123732924461,0.0141624137759209,-0.999761700630188,0.0150194186717272,0.014272928237915,-0.999785423278809,0.0106756528839469,0.0145740872249007,-0.99983686208725,0.00841832533478737,-0.00213180878199637,-0.999962329864502,0.0209434479475021,-0.00216861721128225,-0.999778389930725,
- 0.00798932090401649,-0.00213054241612554,-0.999965906143188,0.00916615780442953,-0.00213401555083692,-0.999955713748932,0.0211927015334368,-0.00216934620402753,-0.99977308511734,0.0280087236315012,-0.00218923413194716,-0.999605298042297,1.5817049892064e-009,0.0112961754202843,0.99993622303009,1.78873660328094e-009,0.0127747477963567,0.999918401241302,1.65056612821957e-009,0.011787966825068,0.999930500984192,1.30535859899084e-009,0.00932257249951363,0.999956548213959,1.62761260025235e-009,0.0116240372881293,0.999932467937469,-0.000571602315176278,-0.0113332513719797,0.999935686588287,-0.00053206633310765,-0.00951215717941523,0.999954700469971,-0.000585128145758063,-0.0119562847539783,0.999928414821625,-0.000413850648328662,-0.00406722957268357,0.999991655349731,-0.000631426111795008,-0.0140889342874289,0.999900579452515,-0.000637705554254353,-0.0143781919032335,0.999896466732025,0.00959005858749151,0.0259404815733433,0.999617576599121,-0.00409096200019121,0.025769118219614,0.999659538269043,-0.0131285851821303,0.0256532672792673,0.99958473443985,-0.0109312022104859,0.0256816279143095,0.999610364437103,0.000428164261393249,0.0258262567222118,0.999666392803192,-0.0109758237376809,0.999835193157196,-0.0144667942076921,-0.0072157378308475,0.999869227409363,-0.0144737111404538,-0.0207292791455984,0.999680817127228,-0.014447895810008,-0.0128562385216355,0.999812722206116,-0.0144632570445538,0.00853243842720985,0.999858558177948,-0.0145004605874419,-0.00944818183779716,-0.999946355819702,0.00425302982330322,-0.00215622549876571,-0.999988675117493,0.00425300002098084,-0.000907274079509079,-0.99999064207077,0.0042529720813036,-0.00222114310599864,-0.999988555908203,0.00425300095230341,-0.00747711770236492,-0.999963045120239,0.00425304472446442,-0.0168694537132978,-0.99984872341156,0.00425282865762711,-0.65880012512207,-0.423490285873413,0.621802568435669,-0.658800065517426,-0.423490256071091,0.621802568435669,-0.65880012512207,-0.423490256071091,0.621802568435669,0.432817846536636,0.293481320142746,0.852371573448181,0.432817846536636,0.293481379747391,0.852371573448181,
- 0.432817906141281,0.293481349945068,0.852371633052826,0.040987640619278,0.63593727350235,-0.770651519298553,0.040987640619278,0.635937333106995,-0.770651578903198,0.0409876853227615,0.635937213897705,-0.770651578903198,0.0838239565491676,0.996119618415833,0.026819933205843,0.0958415493369102,0.995034337043762,0.0268521439284086,0.144932225346565,0.98907470703125,0.0269432868808508,0.124225683510304,0.99188894033432,0.0269128028303385,0.0224427562206984,0.999394357204437,0.0265952944755554,-0.00930539425462484,0.999607086181641,0.0264398623257875,-0.154971227049828,-0.987354516983032,0.0333922617137432,-0.1380834877491,-0.989847481250763,0.0336896032094955,-0.106099560856819,-0.993766367435455,0.0342240445315838,-0.128714397549629,-0.991103887557983,0.0338500328361988,-0.145581811666489,-0.988776981830597,0.0335588902235031,-0.147438064217567,-0.98850291967392,0.0335262008011341,0.0115427765995264,0.133025795221329,-0.991045355796814,0.0109211644157767,0.134678423404694,-0.990829229354858,0.0132054695859551,0.128697648644447,-0.991595983505249,0.0135587397962809,0.133444875478745,-0.990963518619537,0.0139066521078348,0.138121202588081,-0.990317702293396,-0.0172828435897827,0.41078644990921,-0.911567807197571,-0.0172828529030085,0.410786479711533,-0.911567866802216,-0.0172828361392021,0.410786479711533,-0.911567807197571,0.0780823156237602,-0.702695190906525,0.707193553447723,0.0780823230743408,-0.702695190906525,0.707193493843079,0.0780823156237602,-0.702695190906525,0.707193553447723,-0.00667769461870193,0.0323839783668518,0.999453246593475,-0.00312338210642338,0.0320843234658241,0.999480247497559,0.00341706047765911,0.0315318703651428,0.99949699640274,0.00752277206629515,0.0311843752861023,0.999485433101654,0.0146252922713757,0.07139702886343,0.997340738773346,0.00690463138744235,0.0700791776180267,0.997517645359039,-0.033180445432663,0.00299043767154217,-0.999444961547852,-0.033550038933754,-0.00191242713481188,-0.999435305595398,-0.0366612784564495,-0.00345626845955849,-0.999321758747101,-0.0358322598040104,0.000267315161181614,-0.99935781955719,
- -0.0328277871012688,0.00765855144709349,-0.999431669712067,0.647768139839172,0.131730601191521,-0.750362277030945,0.647768139839172,0.131730601191521,-0.750362277030945,0.647768139839172,0.131730601191521,-0.75036233663559,-0.067418560385704,-0.00663628475740552,-0.997702777385712,-0.0621312707662582,-0.00778388464823365,-0.998037695884705,-0.073897086083889,-0.135448440909386,-0.988024771213531,-0.0745601281523705,-0.135386765003204,-0.987983405590057,-0.443484544754028,0.339429765939713,-0.82952344417572,-0.443484544754028,0.339429765939713,-0.82952344417572,-0.443484485149384,0.339429706335068,-0.829523384571075,0.00873723439872265,0.133429005742073,-0.991019904613495,0.0109211644157767,0.134678423404694,-0.990829229354858,0.0115427765995264,0.133025795221329,-0.991045355796814,0.0088128475472331,0.13440503180027,-0.99088728427887,0.0082926619797945,0.127690151333809,-0.991779446601868,0.00690463138744235,0.0700791776180267,0.997517645359039,0.0146252922713757,0.07139702886343,0.997340738773346,0.0234381705522537,0.123503357172012,0.992067337036133,0.0204102899879217,0.123766861855984,0.992101430892944,-0.0358322598040104,0.000267315161181614,-0.99935781955719,-0.0366612784564495,-0.00345626845955849,-0.999321758747101,-0.039453599601984,-0.00665900204330683,-0.999199211597443,-0.0392611473798752,-0.0041196602396667,-0.999220490455627,-0.0391254387795925,-0.00233104638755322,-0.999231576919556,-0.11321897059679,0.0936244353652,-0.989149153232574,-0.0708989799022675,0.0901936888694763,-0.993397533893585,-0.0472501143813133,0.0882098004221916,-0.994980692863464,-0.0600895509123802,0.0892928019165993,-0.994191229343414,-0.0621312707662582,-0.00778388464823365,-0.998037695884705,-0.067418560385704,-0.00663628475740552,-0.997702777385712,0.00192644144408405,-0.0154254520311952,0.99987918138504,-0.00542390998452902,-0.0141687048599124,0.999884963035584,-0.00901124253869057,0.0434359312057495,0.99901556968689,0.00338939786888659,0.0424811467528343,0.999091506004334,0.0163556803017855,0.0414757430553436,0.999005615711212,
- 0.0372088365256786,0.998502314090729,-0.0401081927120686,0.0528526492416859,0.997583031654358,-0.0451069734990597,0.0403787791728973,0.998210668563843,-0.0441038832068443,0.0433630123734474,0.998235166072845,-0.040574736893177,0.0306478776037693,-0.080521933734417,-0.996281623840332,0.0334461182355881,-0.0807410404086113,-0.996173858642578,0.0310408342629671,-0.0805527418851852,-0.996266901493073,0.0267402604222298,-0.0802149474620819,-0.996418952941895,0.0196992605924606,-0.137979537248611,-0.990239202976227,0.0242603048682213,-0.131917998194695,-0.990963757038116,-0.006394665222615,0.0320481844246387,0.999465942382813,-0.00566359190270305,0.0507026091217995,0.998697817325592,-0.00352860544808209,0.0333406180143356,0.999437928199768,-0.00373186310753226,0.0305288787931204,0.999526977539063,-0.00397010101005435,0.0272324252873659,0.999621331691742,0.00546268094331026,0.0136536117643118,0.999891936779022,0.00314537365920842,0.0190616250038147,0.999813437461853,0.00657655671238899,0.0632449835538864,0.997976362705231,0.00558762019500136,0.0152653269469738,0.999867916107178,0.376680135726929,-0.393283635377884,0.838713407516479,0.376680195331573,-0.393283694982529,0.838713407516479,0.376680076122284,-0.393283605575562,0.838713407516479,0.0403787791728973,0.998210668563843,-0.0441038832068443,0.0528526492416859,0.997583031654358,-0.0451069734990597,0.0696097761392593,0.996419191360474,-0.0479925572872162,0.0666863098740578,0.996618330478668,-0.0480083227157593,0.0555453039705753,0.997298657894135,-0.0480646528303623,-0.0696534737944603,-0.989568710327148,0.126103609800339,-0.0690940767526627,-0.989607989788055,0.126103445887566,-0.0688148736953735,-0.989627480506897,0.126103341579437,-0.0693739578127861,-0.989588379859924,0.126103520393372,-0.0699336975812912,-0.989549040794373,0.126103714108467,0.359181761741638,0.0415149964392185,0.932343900203705,0.359181761741638,0.0415149964392185,0.932343900203705,0.359181791543961,0.0415150001645088,0.932343900203705,-0.00573613913729787,-0.0747711881995201,0.997184216976166,-0.00588680850341916,-0.0747595280408859,0.997184216976166,
- -0.00542390998452902,-0.0141687048599124,0.999884963035584,0.00192644144408405,-0.0154254520311952,0.99987918138504,-0.0068452674895525,0.0855338275432587,0.996311783790588,-0.00566359190270305,0.0507026091217995,0.998697817325592,-0.006394665222615,0.0320481844246387,0.999465942382813,-0.00881033577024937,0.0597898252308369,0.998172163963318,0.0242603048682213,-0.131917998194695,-0.990963757038116,0.0196992605924606,-0.137979537248611,-0.990239202976227,0.0182437635958195,-0.187311038374901,-0.982131242752075,0.0160197913646698,-0.187136173248291,-0.982203423976898,0.0131561048328877,-0.186909645795822,-0.982289016246796,0.00657655671238899,0.0632449835538864,0.997976362705231,0.00314537365920842,0.0190616250038147,0.999813437461853,0.0015912736998871,0.0357977971434593,0.999357879161835,0.00814202520996332,0.104961931705475,0.994442999362946,0.0137823177501559,0.164438828825951,0.986290991306305,0.000293236342258751,-0.042059164494276,0.999115109443665,-0.00496402429416776,-0.0419439896941185,0.999107718467712,-0.00843328796327114,0.0269330479204655,0.999601662158966,0.00037729274481535,0.0265546757727861,0.999647378921509,0.0095952320843935,0.0261565912514925,0.999611794948578,0.0147871719673276,0.999676465988159,-0.0206944048404694,0.025836069136858,0.999360144138336,-0.0247379820793867,0.0170262958854437,0.999571084976196,-0.0238312762230635,0.0192136242985725,0.999596416950226,-0.0209264941513538,0.0225894395262003,-0.0678205490112305,-0.99744176864624,0.0325422659516335,-0.0682976394891739,-0.99713408946991,0.0232583079487085,-0.0678528249263763,-0.997424244880676,0.0195233542472124,-0.0676722377538681,-0.997516572475433,0.0202417261898518,-0.0677070468664169,-0.997499942779541,0.0285214744508266,-0.0681056976318359,-0.997270405292511,0.0349577106535435,-0.0684124231338501,-0.997044444084167,-0.0050468547269702,0.0166832022368908,0.999848127365112,-0.00518184900283813,0.0133429579436779,0.999897539615631,-0.00532749388366938,0.00973739288747311,0.999938488006592,-0.00545973284170032,0.00646212371066213,0.99996429681778,
- -0.00531947566196322,0.00993592292070389,0.999936521053314,-0.00517517421394587,0.0135081587359309,0.999895393848419,0.0121264653280377,-0.00707313884049654,0.999901473522186,0.0124376891180873,-0.00138880976010114,0.99992173910141,0.0125654963776469,0.000947682186961174,0.999920606613159,0.0125339729711413,0.000371251197066158,0.999921441078186,0.0125734247267246,0.00109266478102654,0.99992036819458,0.0123579846695066,-0.00284527987241745,0.999919652938843,0.352180153131485,-0.505977511405945,0.787372767925262,0.35218021273613,-0.50597757101059,0.787372827529907,0.352180153131485,-0.505977511405945,0.787372767925262,0.0170262958854437,0.999571084976196,-0.0238312762230635,0.025836069136858,0.999360144138336,-0.0247379820793867,0.0377704873681068,0.998916149139404,-0.0272032376378775,0.0356790311634541,0.998992800712585,-0.0272133052349091,0.0277153607457876,0.999244391918182,-0.0272505339235067,-0.0526883974671364,-0.997332990169525,0.0505071096122265,-0.0525022223591805,-0.997342705726624,0.0505082719027996,-0.0388062857091427,-0.997965455055237,0.0505885891616344,-0.0480617843568325,-0.997565269470215,0.0505353659391403,-0.0391788631677628,-0.997950911521912,0.0505865290760994,0.445905953645706,0.0495912358164787,0.893705010414124,0.445905983448029,0.0495912358164787,0.893705070018768,0.445905983448029,0.049591239541769,0.893705010414124,-0.00587132945656776,-0.113859884440899,0.993479490280151,-0.00577346049249172,-0.113864168524742,0.993479609489441,-0.00496402429416776,-0.0419439896941185,0.999107718467712,0.000293236342258751,-0.042059164494276,0.999115109443665,0.0303491167724133,-0.989690601825714,0.13996958732605,0.0300825741142035,-0.995254993438721,0.0925339534878731,0.0303866248577833,-0.988549530506134,0.147805362939835,0.030214661732316,-0.992958188056946,0.114547967910767,0.0303095337003469,-0.990773975849152,0.132092148065567,0.0306805297732353,-0.970998227596283,0.237110018730164,0.019227271899581,0.985123336315155,-0.1707703769207,0.0192184709012508,0.985061764717102,-0.171125441789627,0.0192109309136868,0.985009074211121,-0.17142941057682,
- 0.0192121379077435,0.985017538070679,-0.171380773186684,0.0192120764404535,0.98501718044281,-0.171383231878281,0.0192153044044971,0.985039710998535,-0.171253114938736,-0.993744611740112,-0.111292906105518,0.00924994423985481,-0.991913139820099,-0.126533627510071,0.00988120399415493,-0.99173492193222,-0.127918466925621,0.00993850734084845,-0.991578102111816,-0.129124522209167,0.00998840760439634,-0.991135239601135,-0.132470518350601,0.0101268086582422,-0.991924583911896,-0.126444309949875,0.00987750850617886,-0.895255148410797,-0.445374608039856,-0.0126449335366488,-0.895255148410797,-0.445374608039856,-0.0126449484378099,-0.895255088806152,-0.445374548435211,-0.0126449186354876,0.695861756801605,0.703049421310425,0.146621659398079,0.69586181640625,0.703049421310425,0.146621629595757,0.695861756801605,0.703049421310425,0.146621629595757,0.999640882015228,-0.0233629811555147,-0.0131260957568884,0.999695837497711,-0.0230434741824865,-0.00878810975700617,0.999750196933746,-0.0223385971039534,0.000761923962272704,0.999712586402893,-0.0216289237141609,0.0103489141911268,0.999664604663849,-0.0213043801486492,0.0147238420322537,0.999750196933746,-0.0223372243344784,0.000780436617787927,-0.999666035175323,-0.00926521513611078,-0.0241249557584524,-0.999692976474762,-0.00478981388732791,-0.0243125762790442,-0.999699652194977,-0.00190960033796728,-0.024433059617877,-0.999692738056183,-0.00483285868540406,-0.0243107732385397,-0.999670028686523,-0.00876216683536768,-0.0241460669785738,-0.999618053436279,-0.0138265173882246,-0.0239332299679518,-0.815471589565277,-0.0873087495565414,0.57217413187027,-0.815471649169922,-0.0873087495565414,0.572174191474915,-0.815471649169922,-0.0873087495565414,0.572174191474915,-0.997586190700531,0.0173691231757402,-0.0672326236963272,-0.998943746089935,0.0192864462733269,-0.0417079031467438,-0.998140573501587,0.0180476624518633,-0.0582218430936337,-0.997057259082794,0.0167979579418898,-0.0747986659407616,-0.996950089931488,0.0166892502456903,-0.0762366726994514,-0.996846914291382,0.0165864787995815,-0.077595666050911,
- -0.859339118003845,-0.235595196485519,-0.453906804323196,-0.8593390583992,-0.235595196485519,-0.453906744718552,-0.859339118003845,-0.235595196485519,-0.453906744718552
- }
- BinormalsW: *3444 {
- 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,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *10332 {
- a: 1,7.75103004002631e-009,-0,0.999999940395355,0.000383848353521898,-0,0.999999821186066,0.000561547290999442,0,0.999999403953552,0.00102284690365195,0,1,-2.86280577022069e-009,-0,1,0.000283345114439726,-0,0.999999821186066,0.000561547290999442,0,0.999999940395355,0.000383848353521898,-0,1,3.45182306773495e-005,2.35435280160345e-008,1,1.30147745949216e-005,1.21912488992848e-008,1,0.000283345114439726,-0,1,-2.86280577022069e-009,-0,0.999999403953552,0.00102197751402855,0,1,-9.78897660388611e-005,0,0.999969482421875,-0.0078117148950696,-1.43081209103002e-008,0.999999761581421,-0.000751309504266828,0,0.999997317790985,0.00232380582019687,-0,0.999993085861206,0.00370590994134545,-0,1,-9.78897660388611e-005,0,1,0.000100350145658012,0,0.999996602535248,0.00255655217915773,0,1,0.000100350145658012,0,1,-9.78897660388611e-005,0,0.999999403953552,0.00102197751402855,0,1,0.000283345114439726,-0,0.999997317790985,0.00232380582019687,-0,1,0.000100350145658012,0,0.999999821186066,0.000561547290999442,0,0.999999403953552,0.00102284690365195,0,0.999999821186066,0.000561547290999442,0,1,0.000100350145658012,0,0.999996602535248,0.00255655217915773,0,0.999978601932526,-0.00654528941959143,0,0.999992966651917,-0.00373092014342546,0,0.999987006187439,-0.00510835601016879,-0,0.999994933605194,-0.00318725127726793,-0,0.999992311000824,-0.00394448218867183,-0,0.999999761581421,-0.000751309504266828,0,0.999969482421875,-0.0078117148950696,-1.43081209103002e-008,0.999999701976776,0.000809329387266189,-1.56858135369475e-008,0.999992966651917,-0.00373092014342546,0,0.999978601932526,-0.00654528941959143,0,0.99999988079071,0.00042162521276623,-2.0644174369977e-008,0.999948740005493,-0.010128359310329,-1.35797549205563e-007,0.999999701976776,0.000809329387266189,-1.56858135369475e-008,0.999969482421875,-0.0078117148950696,-1.43081209103002e-008,0.999993085861206,0.00370590994134545,-0,0.999994695186615,0.00327139883302152,-0,0.999894618988037,0.0145176816731691,-0,0.999673962593079,0.0255334246903658,-0,0.99999988079071,0.00042162521276623,-2.0644174369977e-008,
- 0.999969482421875,-0.0078117148950696,-1.43081209103002e-008,1,-9.78897660388611e-005,0,0.999945938587189,0.0103964507579803,-0,0.999970674514771,0.00767135107889771,-0,0.999994695186615,0.00327139883302152,-0,0.999993085861206,0.00370590994134545,-0,1,-9.0850312517432e-007,-0,0.999997496604919,0.00225989543832839,-0,0.999996542930603,0.00262569589540362,-0,0.999980211257935,0.00630635675042868,-0,0.999945938587189,0.0103964507579803,-0,0.999993085861206,0.00370590994134545,-0,0.999997317790985,0.00232380582019687,-0,1,1.30147745949216e-005,1.21912488992848e-008,1,-1.16151511520002e-007,-2.5726974328677e-008,0.999999761581421,0.000660876685287803,-0,1,-9.0850312517432e-007,-0,0.999997317790985,0.00232380582019687,-0,1,0.000283345114439726,-0,1,1.30147745949216e-005,1.21912488992848e-008,1,6.07998517807573e-005,3.42758781357588e-008,1,2.20824094867567e-005,-2.32131213806497e-007,1,-1.16151511520002e-007,-2.5726974328677e-008,1,1.03776303106429e-008,4.54658817261588e-008,1,5.20745452377014e-005,4.54658781734452e-008,1,6.07998517807573e-005,3.42758781357588e-008,1,1.30147745949216e-005,1.21912488992848e-008,1,3.45182306773495e-005,2.35435280160345e-008,0.387413144111633,0.189921319484711,-0.902131378650665,0.278565108776093,0.16772486269474,-0.945658445358276,-0.175079733133316,0.0152521515265107,-0.98443615436554,-0.18531696498394,0.0298857875168324,-0.982224225997925,0.278565108776093,0.16772486269474,-0.945658445358276,0.245073050260544,0.141222164034843,-0.959163963794708,-0.107839748263359,-0.0329853259027004,-0.993620932102203,-0.175079733133316,0.0152521515265107,-0.98443615436554,0.455421417951584,0.361603796482086,-0.813531875610352,0.42968687415123,0.304311454296112,-0.850155055522919,0.257491320371628,0.130807965993881,-0.957385718822479,0.245073050260544,0.141222164034843,-0.959163963794708,-0.157591968774796,-0.0850312486290932,-0.983836650848389,-0.210620403289795,-0.0755619257688522,-0.974643230438232,-0.375614851713181,-0.228815078735352,-0.898085176944733,-0.371282756328583,-0.0812387466430664,-0.924959123134613,
- -0.334504097700119,-0.119808696210384,-0.934747517108917,-0.413647353649139,-0.287110894918442,-0.863980948925018,-0.224476903676987,-0.200885847210884,-0.953548610210419,-0.253245711326599,-0.203255698084831,-0.945808589458466,-0.453004390001297,-0.281333804130554,-0.845954120159149,-0.154962182044983,-0.105549275875092,-0.982265830039978,-0.160499885678291,-0.156327664852142,-0.974577605724335,-0.340133756399155,-0.237692788243294,-0.909841299057007,-0.315298855304718,-0.173792615532875,-0.932943046092987,-0.160499885678291,-0.156327664852142,-0.974577605724335,-0.109992705285549,-0.0887411907315254,-0.989962875843048,-0.286284297704697,-0.287969261407852,-0.913846254348755,-0.340133756399155,-0.237692788243294,-0.909841299057007,-0.109992705285549,-0.0887411907315254,-0.989962875843048,-0.0794879123568535,0.000447678321506828,-0.996835708618164,-0.262313514947891,-0.208792626857758,-0.942123830318451,-0.286284297704697,-0.287969261407852,-0.913846254348755,-0.0283222012221813,-0.0292361043393612,-0.999171137809753,-0.116437382996082,-0.0157081075012684,-0.993073761463165,-0.252304404973984,-0.149525731801987,-0.956025421619415,-0.137426391243935,-0.0833723768591881,-0.986997008323669,-0.116437382996082,-0.0157081075012684,-0.993073761463165,-0.198540851473808,-0.0951127037405968,-0.97546660900116,-0.359740793704987,-0.187395811080933,-0.914040148258209,-0.252304404973984,-0.149525731801987,-0.956025421619415,-0.224476903676987,-0.200885847210884,-0.953548610210419,-0.0283222012221813,-0.0292361043393612,-0.999171137809753,-0.137426391243935,-0.0833723768591881,-0.986997008323669,-0.253245711326599,-0.203255698084831,-0.945808589458466,-0.198540851473808,-0.0951127037405968,-0.97546660900116,0.102239564061165,0.0206342041492462,-0.994545757770538,-0.363332122564316,-0.165871784090996,-0.916774988174438,-0.359740793704987,-0.187395811080933,-0.914040148258209,-0.210620403289795,-0.0755619257688522,-0.974643230438232,-0.269358545541763,-0.16630731523037,-0.948571562767029,-0.482792496681213,-0.299964606761932,-0.822759091854095,
- -0.375614851713181,-0.228815078735352,-0.898085176944733,-0.269358545541763,-0.16630731523037,-0.948571562767029,-0.413647353649139,-0.287110894918442,-0.863980948925018,-0.453004390001297,-0.281333804130554,-0.845954120159149,-0.482792496681213,-0.299964606761932,-0.822759091854095,0.102239564061165,0.0206342041492462,-0.994545757770538,-0.154962182044983,-0.105549275875092,-0.982265830039978,-0.315298855304718,-0.173792615532875,-0.932943046092987,-0.363332122564316,-0.165871784090996,-0.916774988174438,-0.999999403953552,-0.0010212775086984,0,-0.999999821186066,-0.000612742733210325,0,-1,1.83092652150663e-008,0,-0.999999761581421,-0.000766545010264963,0,-1,1.43743750236069e-009,0,-1,0.000120767144835554,0,-1,4.34376488556154e-005,6.34433783286426e-010,-1,0.000210175465326756,5.07095421209414e-010,-1,0.000172734435182065,0,-1,0.000120767144835554,0,-1,-8.27864776731246e-010,0,-0.999999821186066,-0.000469596910988912,0,-1,4.34376488556154e-005,6.34433783286426e-010,-1,-8.27864776731246e-010,0,-1,1.83092652150663e-008,0,-0.999999821186066,-0.000612742733210325,0,-0.999999821186066,-0.000469596910988912,0,-0.999999403953552,-0.00108076713513583,0,-0.999998450279236,0.00177768827416003,0,-1,0,0,-1,-8.669777889736e-005,0,-0.999999403953552,-0.00108076713513583,0,-1,-8.669777889736e-005,0,-0.999999582767487,-0.0009137685992755,0,-0.999998211860657,-0.00188075413461775,0,-0.999996542930603,-0.00266145402565598,0,-0.999998450279236,0.00177768827416003,0,-0.999999403953552,-0.00108076713513583,0,-0.999999284744263,-0.00123580917716026,3.69762620522351e-009,-0.999999523162842,0.000895032717380673,0,-0.999999284744263,-0.00123580917716026,3.69762620522351e-009,-0.999999403953552,-0.00108076713513583,0,-0.999996542930603,-0.00266145402565598,0,-0.999996066093445,-0.00283225276507437,0,-0.999997615814209,-0.00219176313839853,0,-1,-0,1.08454623060084e-008,-0.999999701976776,-0.000715179368853569,3.20661630581753e-009,-1,0,0,-0.999999523162842,0.000895032717380673,0,-0.999999284744263,-0.00123580917716026,3.69762620522351e-009,
- -0.999999701976776,-0.000715179368853569,3.20661630581753e-009,-0.999999284744263,-0.00123580917716026,3.69762620522351e-009,-1,-0,1.08454623060084e-008,-0.999999761581421,-0.000797219050582498,1.51297019357344e-008,-0.999961912631989,-0.00872764457017183,1.50750008032219e-008,-0.999927878379822,-0.0120102623477578,-1.44072853647259e-009,-0.999927878379822,-0.0120102623477578,-1.44072853647259e-009,-0.999961912631989,-0.00872764457017183,1.50750008032219e-008,-0.999818980693817,-0.0190213397145271,-1.4849663720895e-008,-1,0,0,-0.999999701976776,-0.000715179368853569,3.20661630581753e-009,-0.999999940395355,-0.000355188036337495,0,-1,0,0,-0.999999940395355,-0.000355188036337495,0,-0.999999701976776,-0.000715179368853569,3.20661630581753e-009,-0.999927878379822,-0.0120102623477578,-1.44072853647259e-009,-0.999999165534973,-0.00131554866675287,-3.23025806103772e-009,-0.999999165534973,-0.00131554866675287,-3.23025806103772e-009,-0.999927878379822,-0.0120102623477578,-1.44072853647259e-009,-0.999818980693817,-0.0190213397145271,-1.4849663720895e-008,-1,-3.48506569025631e-006,-1.49540237970314e-008,-1,-1.15521424959297e-006,-1.49540255733882e-008,-1,1.66765476024011e-005,-1.49540255733882e-008,-1,2.5784316676436e-005,-1.49340895205796e-008,-0.999994099140167,-0.0034360399004072,-5.19900167361698e-009,-1,2.5784316676436e-005,-1.49340895205796e-008,-1,1.29268109958502e-005,7.56930695899882e-009,-0.999994099140167,-0.0034360399004072,-5.19900167361698e-009,-0.999999821186066,-0.000612742733210325,0,-0.999999403953552,-0.0010212775086984,0,-1,0,0,-0.999999940395355,-0.000355188036337495,0,-0.999999821186066,-0.000612742733210325,0,-0.999999940395355,-0.000355188036337495,0,-0.999999165534973,-0.00131554866675287,-3.23025806103772e-009,-0.999999821186066,-0.000469596910988912,0,-0.999999821186066,-0.000469596910988912,0,-0.999999165534973,-0.00131554866675287,-3.23025806103772e-009,-0.999994099140167,-0.0034360399004072,-5.19900167361698e-009,-1,4.34376488556154e-005,6.34433783286426e-010,-1,1.29268109958502e-005,7.56930695899882e-009,
- -1,7.3342802352272e-005,7.68496111192007e-009,-1,0.000210175465326756,5.07095421209414e-010,-1,4.34376488556154e-005,6.34433783286426e-010,-0.999994099140167,-0.0034360399004072,-5.19900167361698e-009,0,-0.000274709396762773,0.999999940395355,0,-0.000308600720018148,0.999999940395355,0,0.000138651928864419,1,0,-0.000196916051208973,1,0,0.000205742951948196,1,0,0.000205621239729226,1,0,-3.65154562587122e-007,1,0,0.000152875785715878,1,0,0.000205621239729226,1,0,0.000205742951948196,1,0,-0,1,0,0.000103704041976016,1,0,8.01327114459127e-005,1,0,-0,1,0,0.000103704041976016,1,0,-0,1,0,-0,1,0,8.01327114459127e-005,1,0,-1.70820185303455e-005,1,0,0.000160241354024038,1,0,-0.000308600720018148,0.999999940395355,0,-0.000274709396762773,0.999999940395355,0,0.000160241354024038,1,0,-1.70820185303455e-005,1,-1,-3.57627860658738e-009,-3.78955995534977e-019,-1,-7.15255721317476e-009,2.06795153138257e-025,-1,-7.15255721317476e-009,-4.54747256680519e-018,-1,-3.57627860658738e-009,1.13686834849645e-018,-1,0,0,-1,-3.57627860658738e-009,-3.78955995534977e-019,-1,-3.57627860658738e-009,1.13686834849645e-018,-1,0,0,-1,8.94069651646845e-010,-6.39488471878647e-019,-1,0,0,-1,0,0,-1,8.94069651646845e-010,2.58493941422821e-026,-1,1.78813930329369e-009,2.55795388751459e-018,-1,1.78813930329369e-009,0,-1,8.94069651646845e-010,-6.39488471878647e-019,-1,8.94069651646845e-010,2.58493941422821e-026,-0,0.000133016626932658,-1,0,-0.000622057414148003,-0.999999761581421,0,-0.0067753354087472,-0.999977111816406,0,-0.00451292935758829,-0.999989807605743,-0,0.00239454745315015,-0.999997138977051,0,-0.0027562458999455,-0.999996244907379,-0,0.000132080866023898,-1,-0.999998331069946,0,-0.00184225582052022,-0.999999523162842,0,-0.000991581124253571,-0.999991893768311,-0,0.0040498236194253,-0.999995231628418,0,0.0031031456310302,-1,0,-0.000164455064805225,-0.999999701976776,0,0.000711845408659428,-1,-0,2.03881791094318e-005,-1,-0,2.39748987951316e-005,0.498725295066834,0.264085114002228,-0.825549602508545,0.480568498373032,0.289771884679794,-0.827699363231659,
- 0.504025101661682,0.293362617492676,-0.812340557575226,0.525227069854736,0.271385192871094,-0.806527495384216,0.480568498373032,0.289771884679794,-0.827699363231659,0.447129964828491,0.359309762716293,-0.819128334522247,0.455421417951584,0.361603796482086,-0.813531875610352,0.504025101661682,0.293362617492676,-0.812340557575226,0.447129964828491,0.359309762716293,-0.819128334522247,0.408162862062454,0.374363929033279,-0.832619190216064,0.42968687415123,0.304311454296112,-0.850155055522919,0.455421417951584,0.361603796482086,-0.813531875610352,0.408162862062454,0.374363929033279,-0.832619190216064,0.16692541539669,0.164564818143845,-0.972139120101929,0.359149187803268,0.180113673210144,-0.915735244750977,0.42968687415123,0.304311454296112,-0.850155055522919,0.16692541539669,0.164564818143845,-0.972139120101929,0.151939168572426,0.0902968123555183,-0.984256505966187,0.375907123088837,0.129439160227776,-0.917572498321533,0.359149187803268,0.180113673210144,-0.915735244750977,0.151939168572426,0.0902968123555183,-0.984256505966187,0.394079655408859,0.186503633856773,-0.899954199790955,0.375907123088837,0.129439160227776,-0.917572498321533,0.394079655408859,0.186503633856773,-0.899954199790955,0.374714881181717,0.192454904317856,-0.906945407390594,0.280580520629883,0.0867649093270302,-0.955900847911835,0.375907123088837,0.129439160227776,-0.917572498321533,0.374714881181717,0.192454904317856,-0.906945407390594,0.195055678486824,0.0749501064419746,-0.977924227714539,0.218235358595848,0.079226166009903,-0.972674965858459,0.280580520629883,0.0867649093270302,-0.955900847911835,0.195055678486824,0.0749501064419746,-0.977924227714539,-0.0530410744249821,-0.0869901776313782,-0.99479603767395,-0.0142936566844583,-0.0969268605113029,-0.995188891887665,0.218235358595848,0.079226166009903,-0.972674965858459,-0.0530410744249821,-0.0869901776313782,-0.99479603767395,0.133623644709587,0.0328697301447392,-0.990486919879913,0.115795940160751,0.01864830031991,-0.993097901344299,-0.0142936566844583,-0.0969268605113029,-0.995188891887665,
- 0.133623644709587,0.0328697301447392,-0.990486919879913,0.287459850311279,0.152831643819809,-0.945520758628845,0.308499306440353,0.142032042145729,-0.94056111574173,0.115795940160751,0.01864830031991,-0.993097901344299,0.287459850311279,0.152831643819809,-0.945520758628845,0.30576229095459,0.200830295681953,-0.930686056613922,0.308499306440353,0.142032042145729,-0.94056111574173,0.30576229095459,0.200830295681953,-0.930686056613922,0.339251428842545,0.284473776817322,-0.896651029586792,0.46880441904068,0.275991052389145,-0.839077711105347,0.308499306440353,0.142032042145729,-0.94056111574173,0.339251428842545,0.284473776817322,-0.896651029586792,0.540520131587982,0.356370955705643,-0.762127161026001,0.533724427223206,0.347526699304581,-0.770949721336365,0.46880441904068,0.275991052389145,-0.839077711105347,0.540520131587982,0.356370955705643,-0.762127161026001,0.589946925640106,0.428414642810822,-0.684414744377136,0.554709732532501,0.376577854156494,-0.741947591304779,0.533724427223206,0.347526699304581,-0.770949721336365,0.589946925640106,0.428414642810822,-0.684414744377136,0.479050099849701,0.428807288408279,-0.765921175479889,0.427850484848022,0.34088733792305,-0.837102055549622,0.554709732532501,0.376577854156494,-0.741947591304779,0.479050099849701,0.428807288408279,-0.765921175479889,0.28314483165741,0.199745565652847,-0.938046157360077,0.427850484848022,0.34088733792305,-0.837102055549622,0.28314483165741,0.199745565652847,-0.938046157360077,0.229509457945824,0.156134724617004,-0.960701584815979,0.235954537987709,0.17576690018177,-0.955736041069031,0.427850484848022,0.34088733792305,-0.837102055549622,0.235954537987709,0.17576690018177,-0.955736041069031,0.229509457945824,0.156134724617004,-0.960701584815979,0.189938515424728,0.111769743263721,-0.975413203239441,0.217783153057098,0.20189468562603,-0.954886853694916,-0.107839748263359,-0.0329853259027004,-0.993620932102203,-0.157591968774796,-0.0850312486290932,-0.983836650848389,-0.334504097700119,-0.119808696210384,-0.934747517108917,-0.276887357234955,-0.0746059939265251,-0.958001673221588,
- -0.175079733133316,0.0152521515265107,-0.98443615436554,-0.107839748263359,-0.0329853259027004,-0.993620932102203,-0.276887357234955,-0.0746059939265251,-0.958001673221588,-0.278224468231201,0.00278212176635861,-0.960511982440948,-0.18531696498394,0.0298857875168324,-0.982224225997925,-0.175079733133316,0.0152521515265107,-0.98443615436554,-0.278224468231201,0.00278212176635861,-0.960511982440948,-0.26484340429306,-0.00382158719003201,-0.964283883571625,0.359149187803268,0.180113673210144,-0.915735244750977,0.375907123088837,0.129439160227776,-0.917572498321533,0.201678037643433,0.103238761425018,-0.973995745182037,0.257491320371628,0.130807965993881,-0.957385718822479,0.201678037643433,0.103238761425018,-0.973995745182037,0.162995755672455,0.0233950242400169,-0.986349284648895,-0.269358545541763,-0.16630731523037,-0.948571562767029,-0.210620403289795,-0.0755619257688522,-0.974643230438232,-0.269358545541763,-0.16630731523037,-0.948571562767029,0.00843704026192427,-0.0399496518075466,-0.999166071414948,-0.413647353649139,-0.287110894918442,-0.863980948925018,0.218235358595848,0.079226166009903,-0.972674965858459,0.0214469190686941,-0.0826339572668076,-0.996349215507507,0.00843704026192427,-0.0399496518075466,-0.999166071414948,-0.0142936566844583,-0.0969268605113029,-0.995188891887665,0.115795940160751,0.01864830031991,-0.993097901344299,-0.0283222012221813,-0.0292361043393612,-0.999171137809753,0.0214469190686941,-0.0826339572668076,-0.996349215507507,0.115795940160751,0.01864830031991,-0.993097901344299,0.308499306440353,0.142032042145729,-0.94056111574173,-0.0283222012221813,-0.0292361043393612,-0.999171137809753,0.308499306440353,0.142032042145729,-0.94056111574173,0.412540197372437,0.166266292333603,-0.895637273788452,-0.116437382996082,-0.0157081075012684,-0.993073761463165,-0.0283222012221813,-0.0292361043393612,-0.999171137809753,0.412540197372437,0.166266292333603,-0.895637273788452,-0.198540851473808,-0.0951127037405968,-0.97546660900116,-0.116437382996082,-0.0157081075012684,-0.993073761463165,0.46880441904068,0.275991052389145,-0.839077711105347,
- 0.53052693605423,0.223818063735962,-0.817585825920105,0.102239564061165,0.0206342041492462,-0.994545757770538,0.412540197372437,0.166266292333603,-0.895637273788452,0.53052693605423,0.223818063735962,-0.817585825920105,0.304586380720139,0.185561135411263,-0.934234619140625,-0.154962182044983,-0.105549275875092,-0.982265830039978,0.102239564061165,0.0206342041492462,-0.994545757770538,0.304586380720139,0.185561135411263,-0.934234619140625,-0.160499885678291,-0.156327664852142,-0.974577605724335,-0.154962182044983,-0.105549275875092,-0.982265830039978,0.270669877529144,0.186035215854645,-0.944525718688965,0.153681084513664,0.187798395752907,-0.970110297203064,-0.109992705285549,-0.0887411907315254,-0.989962875843048,-0.160499885678291,-0.156327664852142,-0.974577605724335,0.153681084513664,0.187798395752907,-0.970110297203064,0.119461074471474,0.231694400310516,-0.965425729751587,-0.0794879123568535,0.000447678321506828,-0.996835708618164,-0.109992705285549,-0.0887411907315254,-0.989962875843048,0.0214469190686941,-0.0826339572668076,-0.996349215507507,-0.0283222012221813,-0.0292361043393612,-0.999171137809753,-0.224476903676987,-0.200885847210884,-0.953548610210419,0.218235358595848,0.079226166009903,-0.972674965858459,-0.0142936566844583,-0.0969268605113029,-0.995188891887665,0.0214469190686941,-0.0826339572668076,-0.996349215507507,0.00843704026192427,-0.0399496518075466,-0.999166071414948,0.0214469190686941,-0.0826339572668076,-0.996349215507507,-0.224476903676987,-0.200885847210884,-0.953548610210419,-0.413647353649139,-0.287110894918442,-0.863980948925018,0.280580520629883,0.0867649093270302,-0.955900847911835,0.218235358595848,0.079226166009903,-0.972674965858459,0.162995755672455,0.0233950242400169,-0.986349284648895,0.375907123088837,0.129439160227776,-0.917572498321533,0.280580520629883,0.0867649093270302,-0.955900847911835,0.162995755672455,0.0233950242400169,-0.986349284648895,0.201678037643433,0.103238761425018,-0.973995745182037,0.162995755672455,0.0233950242400169,-0.986349284648895,0.00843704026192427,-0.0399496518075466,-0.999166071414948,
- -0.269358545541763,-0.16630731523037,-0.948571562767029,0.162995755672455,0.0233950242400169,-0.986349284648895,0.218235358595848,0.079226166009903,-0.972674965858459,0.00843704026192427,-0.0399496518075466,-0.999166071414948,0.42968687415123,0.304311454296112,-0.850155055522919,0.359149187803268,0.180113673210144,-0.915735244750977,0.257491320371628,0.130807965993881,-0.957385718822479,0.257491320371628,0.130807965993881,-0.957385718822479,0.201678037643433,0.103238761425018,-0.973995745182037,-0.210620403289795,-0.0755619257688522,-0.974643230438232,-0.157591968774796,-0.0850312486290932,-0.983836650848389,0.525227069854736,0.271385192871094,-0.806527495384216,0.504025101661682,0.293362617492676,-0.812340557575226,0.278565108776093,0.16772486269474,-0.945658445358276,0.387413144111633,0.189921319484711,-0.902131378650665,0.504025101661682,0.293362617492676,-0.812340557575226,0.245073050260544,0.141222164034843,-0.959163963794708,0.278565108776093,0.16772486269474,-0.945658445358276,0.245073050260544,0.141222164034843,-0.959163963794708,0.257491320371628,0.130807965993881,-0.957385718822479,-0.157591968774796,-0.0850312486290932,-0.983836650848389,-0.107839748263359,-0.0329853259027004,-0.993620932102203,0.504025101661682,0.293362617492676,-0.812340557575226,0.455421417951584,0.361603796482086,-0.813531875610352,0.245073050260544,0.141222164034843,-0.959163963794708,0.308499306440353,0.142032042145729,-0.94056111574173,0.46880441904068,0.275991052389145,-0.839077711105347,0.412540197372437,0.166266292333603,-0.895637273788452,0.412540197372437,0.166266292333603,-0.895637273788452,0.102239564061165,0.0206342041492462,-0.994545757770538,-0.198540851473808,-0.0951127037405968,-0.97546660900116,0.46880441904068,0.275991052389145,-0.839077711105347,0.533724427223206,0.347526699304581,-0.770949721336365,0.53052693605423,0.223818063735962,-0.817585825920105,0.533724427223206,0.347526699304581,-0.770949721336365,0.554709732532501,0.376577854156494,-0.741947591304779,0.304586380720139,0.185561135411263,-0.934234619140625,
- 0.53052693605423,0.223818063735962,-0.817585825920105,0.304586380720139,0.185561135411263,-0.934234619140625,0.270669877529144,0.186035215854645,-0.944525718688965,-0.160499885678291,-0.156327664852142,-0.974577605724335,0.427850484848022,0.34088733792305,-0.837102055549622,0.235954537987709,0.17576690018177,-0.955736041069031,0.153681084513664,0.187798395752907,-0.970110297203064,0.270669877529144,0.186035215854645,-0.944525718688965,0.119461074471474,0.231694400310516,-0.965425729751587,0.153681084513664,0.187798395752907,-0.970110297203064,0.235954537987709,0.17576690018177,-0.955736041069031,0.217783153057098,0.20189468562603,-0.954886853694916,0.554709732532501,0.376577854156494,-0.741947591304779,0.427850484848022,0.34088733792305,-0.837102055549622,0.270669877529144,0.186035215854645,-0.944525718688965,0.304586380720139,0.185561135411263,-0.934234619140625,-0.999934077262878,0.00500693265348673,0.0103395776823163,-0.999987721443176,0.00495110778138042,-0.000298583589028567,-0.999972462654114,0.00492330081760883,-0.00555809773504734,-0.99997490644455,0.00497919414192438,0.00504044257104397,-0.999863803386688,0.00503494264557958,0.0157179161906242,-0.99704122543335,-0.0346846058964729,0.0685983300209045,-0.999363124370575,-0.0190243814140558,0.0301935002207756,-0.998865187168121,-0.0314871221780777,0.0357334800064564,-0.997238397598267,-0.0285094622522593,0.068576842546463,-0.999594330787659,0.0129635483026505,-0.0253635756671429,-0.999227702617645,0.0123386513441801,-0.0373069830238819,-0.999579668045044,0.012932968325913,-0.0259489603340626,-0.999684572219849,0.0131713636219502,-0.0213830284774303,-0.999666750431061,0.0131272319704294,-0.0222286842763424,-0.999397873878479,0.0125992204993963,-0.0323316305875778,-0.999114155769348,0.0121827581897378,-0.0402804128825665,-5.01763338434102e-007,1,0.000270637508947402,-5.01763338434102e-007,1,0.000285562593489885,-5.01759018334269e-007,0.999991536140442,0.00411123596131802,-5.01747535963659e-007,0.999968647956848,0.00792192481458187,-5.01761235227605e-007,0.999995946884155,0.00283103506080806,
- -0.0100923934951425,-0.999771654605865,-0.0188347157090902,-0.0100313471630216,-0.999836921691895,-0.0150228990241885,-0.00998080708086491,-0.999879717826843,-0.0118738617748022,-0.00999145489186049,-0.999871492385864,-0.0125368563458323,-0.0100180553272367,-0.999849081039429,-0.0141942240297794,0.680603206157684,0.732556283473969,0.0118555761873722,0.680603206157684,0.732556283473969,0.0118555761873722,0.680603265762329,0.732556283473969,0.0118555510416627,-0.998865187168121,-0.0314871221780777,0.0357334800064564,-0.999363124370575,-0.0190243814140558,0.0301935002207756,-0.999997019767761,-0.00247879303060472,7.59597460273653e-005,-0.999985337257385,-0.00541271828114986,0.000105780512967613,-0.999862730503082,-0.0165738575160503,0.00021921974257566,-0.999997496604919,-0.00178646307904273,-0.00132896017748863,-0.999996304512024,-0.00238752528093755,-0.00131299917120487,-0.999992787837982,-0.00357874971814454,-0.00128136400599033,-0.999996244907379,-0.00238389265723526,-0.00131309544667602,-0.999996304512024,-0.00237662810832262,-0.00131328811403364,0.0893012881278992,-0.996000707149506,-0.00279968604445457,0.0893012955784798,-0.996000707149506,-0.0027996888384223,0.0893013030290604,-0.996000707149506,-0.00279969163239002,0.998973548412323,-0.045232966542244,-0.0024272040463984,0.99994820356369,-0.0101646995171905,-0.000689029460772872,0.998701870441437,-0.0508643314242363,-0.00270630302838981,0.999646961688995,-0.0265244897454977,-0.0014999380800873,0.999213755130768,-0.0395875684916973,-0.00214740238152444,0.993057668209076,-0.117475919425488,-0.00600723410025239,0.997656226158142,-0.0675797164440155,0.0107244635000825,0.997638344764709,-0.067844070494175,0.010724232532084,0.997622847557068,-0.0680709481239319,0.0107240341603756,0.997625470161438,-0.0680325627326965,0.0107240676879883,0.997625529766083,-0.0680316314101219,0.0107240667566657,0.997631967067719,-0.067938320338726,0.0107241505756974,0.013605797663331,-0.991740226745605,-0.127538830041885,0.0135785788297653,-0.989773154258728,-0.142002329230309,0.0135759506374598,-0.989583134651184,-0.14332115650177,
- 0.0135735906660557,-0.989412486553192,-0.144494757056236,0.0135671533644199,-0.988946974277496,-0.147647202014923,0.0135787231847644,-0.989783644676209,-0.141929820179939,0.974090456962585,-0.183196976780891,-0.132614701986313,0.974090456962585,-0.183196976780891,-0.132614701986313,0.974090456962585,-0.183196976780891,-0.132614701986313,0.925625383853912,0.347135215997696,0.150714114308357,0.925625443458557,0.347135215997696,0.150714099407196,0.925625443458557,0.347135215997696,0.150714099407196,0.99997615814209,0.00383103429339826,0.00574636179953814,0.999989330768585,0.00383040308952332,0.00258662551641464,0.99998414516449,0.00382893136702478,-0.00414814939722419,0.999934434890747,0.00382730830460787,-0.0107912411913276,0.999896645545959,0.00382650224491954,-0.0138592720031738,0.999984264373779,0.0038289416115731,-0.00410240003839135,-0.0135744279250503,0.99948638677597,0.0290308576077223,-0.0137551464140415,0.999598562717438,0.0247660782188177,-0.0138712991029024,0.999661266803741,0.0220216624438763,-0.0137544851750135,0.999598264694214,0.0247817132622004,-0.0135954767465591,0.999500393867493,0.0285344328731298,-0.0133921336382627,0.999354779720306,0.0333263650536537,-0.270796447992325,0.962353229522705,0.0233573708683252,-0.270796447992325,0.962353229522705,0.0233573690056801,-0.270796447992325,0.962353229522705,0.0233573690056801,0.998722195625305,0.00382231525145471,-0.0503940470516682,0.999460875988007,0.00382890226319432,-0.0326089039444923,0.999019324779511,0.00382478069514036,-0.0441134944558144,0.998442053794861,0.00382012780755758,-0.0556672811508179,0.998385548591614,0.00381969916634262,-0.0566721931099892,0.998331189155579,0.00381929008290172,-0.0576219968497753,0.598211586475372,0.800929963588715,-0.0255752708762884,0.598211646080017,0.80092990398407,-0.0255753081291914,0.598211586475372,0.800929963588715,-0.0255752857774496,0.999368846416473,0.0344497784972191,0.00866450648754835,0.999168574810028,0.0345500484108925,0.0216400194913149,0.999372601509094,0.0344463624060154,0.0082356845960021,0.999361574649811,0.0344560630619526,0.00945617165416479,
- 0.99916285276413,0.0345520302653313,0.0219038836658001,0.998981714248657,0.0346040092408657,0.0289522055536509,0.031367402523756,-0.999505758285522,-0.00208538887090981,0.0313672311604023,-0.999501287937164,-0.00366393546573818,0.0313673540949821,-0.999504506587982,-0.00262445211410522,0.0313675105571747,-0.999508023262024,-6.41391034150729e-006,0.031367365270853,-0.999504923820496,-0.00244476390071213,-0.0530712641775608,0.998360455036163,-0.0214448869228363,-0.0530734769999981,0.998398721218109,-0.019578468054533,-0.0530705265700817,0.998347759246826,-0.0220303498208523,-0.0530791468918324,0.998494446277618,-0.0138360373675823,-0.0530676655471325,0.998297929763794,-0.0241894964128733,-0.0530671328306198,0.998288750648499,-0.0245663821697235,0.999768793582916,0.018960140645504,-0.0101448753848672,0.999816060066223,0.0187538377940655,0.00400144094601274,0.999737024307251,0.0186147782951593,0.0133945401757956,0.999764800071716,0.0186492819339037,0.0110743185505271,0.999822616577148,0.0188227593898773,-0.00069545058067888,0.999789297580719,0.0204470977187157,-0.00182637898251414,0.99970543384552,0.0242031626403332,-0.00180624064523727,0.999941110610962,0.0106935407966375,-0.00187854573596269,0.999825835227966,0.0185685269534588,-0.00183644075877965,0.999200344085693,0.0399465933442116,-0.00172153406310827,0.999165296554565,0.0408531278371811,-7.8640143328812e-005,0.999436557292938,0.0335651934146881,-4.03703088522889e-005,0.999477684497833,0.0323161147534847,-3.38119716616347e-005,0.999434471130371,0.0336295627057552,-4.07082952733617e-005,0.99924373626709,0.0388831831514835,-6.82950194459409e-005,0.998834431171417,0.0482675358653069,-0.000117581541417167,0.510475814342499,0.859782457351685,-0.0137325162068009,0.510475814342499,0.859782576560974,-0.0137325823307037,0.510475814342499,0.859782457351685,-0.0137325571849942,-0.52431333065033,-0.85152542591095,-1.80383958650054e-005,-0.524313271045685,-0.85152542591095,-1.80669903784292e-005,-0.52431333065033,-0.85152542591095,-1.8051208826364e-005,0.799948930740356,-0.418291598558426,0.430248618125916,
- 0.799948871135712,-0.418291628360748,0.430248647928238,0.799948871135712,-0.418291628360748,0.430248647928238,-0.999545574188232,0.0300043597817421,-0.00290219997987151,-0.999947249889374,-0.0102384677156806,-0.000825333700049669,-0.999327838420868,0.0365167856216431,-0.00323808891698718,-0.999962210655212,0.00851417146623135,-0.0017934002680704,-0.999721229076386,0.0234714392572641,-0.00256519624963403,-0.993573069572449,0.112964853644371,-0.00717668980360031,-0.998361825942993,0.055757861584425,0.0128346914425492,-0.998345017433167,0.0560596361756325,0.0128343282267451,-0.998330354690552,0.0563189759850502,0.0128340125083923,-0.998332917690277,0.0562734492123127,0.0128340683877468,-0.998333096504211,0.0562703460454941,0.0128340711817145,-0.998338937759399,0.0561665408313274,0.0128341969102621,-0.0373324230313301,0.990443885326386,-0.132767513394356,-0.0372521355748177,0.988313972949982,-0.147810041904449,-0.0372443944215775,0.988108515739441,-0.149179846048355,-0.0372374504804611,0.98792427778244,-0.150396287441254,-0.0372184328734875,0.987419724464417,-0.153678297996521,-0.0372525714337826,0.988325417041779,-0.147733464837074,-0.969606995582581,0.187386482954025,-0.157316744327545,-0.969606995582581,0.187386512756348,-0.157316759228706,-0.969606995582581,0.187386482954025,-0.157316744327545,-0.894795000553131,-0.410080760717392,0.176566436886787,-0.894795000553131,-0.410080760717392,0.176566436886787,-0.894794940948486,-0.410080790519714,0.17656646668911,-0.999630212783813,-0.0263289511203766,0.00681545445695519,-0.999648630619049,-0.0263286530971527,0.00306630646809936,-0.999641060829163,-0.0263267830014229,-0.00496883457526565,-0.999569892883301,-0.0263232514262199,-0.0129289273172617,-0.999515652656555,-0.0263210590928793,-0.016602985560894,-0.999641299247742,-0.0263267997652292,-0.00493146944791079,0.0375317297875881,-0.998838186264038,0.030230451375246,0.0376918017864227,-0.998956441879272,0.0257948264479637,0.0377941392362118,-0.999022006988525,0.0229481179267168,0.0376910269260406,-0.998955965042114,0.0258165244013071,
- 0.0375503599643707,-0.998852789402008,0.0297152064740658,0.037369329482317,-0.998698592185974,0.0347088649868965,0.262283176183701,-0.964678823947906,0.0245429873466492,0.262283176183701,-0.964678823947906,0.024542985484004,0.262283235788345,-0.964678883552551,0.0245429705828428,-0.997832298278809,-0.0262759421020746,-0.0603343062102795,-0.998890578746796,-0.0263081472367048,-0.0390569753944874,-0.998257994651794,-0.0262886807322502,-0.0528203807771206,-0.997431397438049,-0.0262640956789255,-0.0666395649313927,-0.997350335121155,-0.0262617133557796,-0.0678441226482391,-0.997272193431854,-0.0262594241648912,-0.0689827650785446,-0.523703575134277,-0.851442933082581,-0.0279233083128929,-0.523703634738922,-0.851442933082581,-0.0279233548790216,-0.523703634738922,-0.851442933082581,-0.0279233399778605,0.999554514884949,0.029521157965064,-0.0043957713060081,0.999554812908173,0.0295208171010017,-0.00433033518493176,0.99956488609314,0.0294964797794819,0.000340274535119534,0.999554395675659,0.0295213256031275,-0.0044284900650382,0.99946665763855,0.0295685268938541,-0.0138674639165401,0.998148798942566,-0.00554154766723514,-0.0605674162507057,0.99961918592453,0.00833106134086847,-0.0263078995049,0.999488115310669,-0.00267339055426419,-0.031880646944046,0.998165428638458,-8.88636786839925e-005,-0.0605458281934261,0.999081015586853,0.0365582257509232,0.022375326603651,0.998809397220612,0.0360005758702755,0.0329192169010639,0.999070107936859,0.0365304425358772,0.0229026153683662,0.999146580696106,0.0367424935102463,0.018873855471611,0.999133765697479,0.0367034897208214,0.0196156185120344,0.998935997486115,0.0362330637872219,0.0285330377519131,0.998724579811096,0.0358611866831779,0.035542406141758,-0.0251255687326193,0.999684274196625,-0.000274128280580044,-0.0251255705952644,0.999684274196625,-0.000284055713564157,-0.0251254811882973,0.999675869941711,-0.00410959636792541,-0.0251250267028809,0.999652922153473,-0.00792514998465776,-0.0251255519688129,0.999680280685425,-0.00283110537566245,0.0365301929414272,-0.999155938625336,0.0187882874161005,
- 0.0364638119935989,-0.999221920967102,0.0150379426777363,0.0364077389240265,-0.999266266822815,0.0118922246620059,0.0364185534417629,-0.999258577823639,0.012497060932219,0.036448746919632,-0.999234855175018,0.0141909876838326,-0.742073357105255,0.670225918292999,-0.0111522590741515,-0.742073357105255,0.670225918292999,-0.0111522590741515,-0.7420734167099,0.670225858688354,-0.0111522013321519,0.999488115310669,-0.00267339055426419,-0.031880646944046,0.99961918592453,0.00833106134086847,-0.0263078995049,0.999736785888672,0.0229426510632038,-6.64356994093396e-005,0.999792814254761,0.0203556399792433,-9.2724098067265e-005,0.999944865703583,0.0105080334469676,-0.000192774241440929,0.999721884727478,0.0235540512949228,0.00117269018664956,0.999734282493591,0.0230239853262901,0.00115861278027296,0.999757945537567,0.0219733137637377,0.00113070849329233,0.999734163284302,0.0230271462351084,0.00115869671572,0.999734044075012,0.0230334643274546,0.00115886458661407,-0.0761413052678108,-0.997093200683594,0.00279946462251246,-0.0761412978172302,-0.997093200683594,0.00279946252703667,-0.0761413052678108,-0.997093200683594,0.00279946369118989,-0.997342348098755,-0.0728311091661453,0.00200327811762691,-0.99956202507019,-0.0295889507979155,0.0004592330660671,-0.996803462505341,-0.0798610597848892,0.00225440226495266,-0.99876207113266,-0.0497287251055241,0.00117822317406535,-0.997833073139191,-0.0657734796404839,0.00175119494087994,-0.986821711063385,-0.161728516221046,0.00518108671531081,-0.99485319852829,-0.100302807986736,-0.0143694086000323,-0.994820594787598,-0.100626036524773,-0.0143732037395239,-0.994792580604553,-0.100901171565056,-0.0143764279782772,-0.994797348976135,-0.100855000317097,-0.0143758896738291,-0.994797170162201,-0.100856885313988,-0.0143759110942483,-0.994808971881866,-0.100740514695644,-0.0143745457753539,-3.79185678411886e-007,-0.993646264076233,0.11254845559597,-3.78528625333274e-007,-0.991924405097961,0.126830145716667,-3.7846547229492e-007,-0.99175888299942,0.128118842840195,-3.78409282575376e-007,-0.991611659526825,0.129252940416336,
- -3.78251201027524e-007,-0.991197407245636,0.132392182946205,-3.78532376998919e-007,-0.991934299468994,0.126752927899361,-0.957551419734955,-0.242270454764366,0.156206607818604,-0.95755136013031,-0.242270395159721,0.156206578016281,-0.957551419734955,-0.242270454764366,0.156206592917442,-0.898912072181702,0.402849107980728,-0.172248974442482,-0.898912072181702,0.402849137783051,-0.172248989343643,-0.898912072181702,0.402849137783051,-0.172248989343643,-0.999902844429016,-0.0121471863240004,-0.0068504000082612,-0.999920547008514,-0.0122011015191674,-0.00317978486418724,-0.999912202358246,-0.0123191205784678,0.00489493831992149,-0.999837875366211,-0.0124370995908976,0.0130218984559178,-0.999781787395477,-0.0124908713623881,0.0167447086423635,-0.999912023544312,-0.0123195042833686,0.00492121791467071,-7.07068465999328e-005,0.999880194664001,-0.0154851907864213,7.21506949048489e-005,0.999935746192932,-0.0113315414637327,0.00016542682715226,0.999962866306305,-0.00861937180161476,7.12924374965951e-005,0.999935507774353,-0.0113564962521195,-5.47519157407805e-005,0.999887228012085,-0.0150213055312634,-0.000215279491385445,0.99980616569519,-0.0196884721517563,0.210313156247139,0.977577090263367,-0.0105673689395189,0.210313156247139,0.977577090263367,-0.0105673680081964,0.210313156247139,0.977577090263367,-0.0105673689395189,-0.998037576675415,-0.013111530803144,0.061230082064867,-0.999135851860046,-0.01280786562711,0.0395435504615307,-0.998479187488556,-0.0130049828439951,0.0535737536847591,-0.997621178627014,-0.0132004581391811,0.0676603093743324,-0.99753725528717,-0.0132172964513302,0.068882055580616,-0.997456610202789,-0.0132331913337111,0.0700367912650108,-0.526993811130524,0.849010050296783,0.0382029414176941,-0.526993811130524,0.849010050296783,0.0382029376924038,-0.526993811130524,0.849010050296783,0.0382029414176941,-0.999957919120789,0.00323915015906096,-0.00859490875154734,-0.999760806560516,0.0037530530244112,-0.0215443670749664,-0.999961853027344,0.0032205197494477,-0.00812569726258516,-0.99995094537735,0.00326960044912994,-0.00936187617480755,
- -0.999755203723907,0.00376319233328104,-0.021799998357892,-0.999574899673462,0.00404361868277192,-0.0288715641945601,-2.17439875882519e-007,-0.999578475952148,-0.0290357694029808,-2.1744982348082e-007,-0.999624133110046,-0.0274154916405678,-2.17443428596198e-007,-0.999594748020172,-0.0284667126834393,-2.17426091353445e-007,-0.999515116214752,-0.0311380736529827,-2.17442263306111e-007,-0.999589264392853,-0.0286563970148563,0.0222543459385633,0.998341619968414,0.0530920997262001,0.0222520679235458,0.99813437461853,0.0568559095263481,0.0222564022988081,0.998544752597809,0.0491249673068523,0.0222580339759588,0.99872362613678,0.0453399606049061,0.0222536660730839,0.998278200626373,0.0542727187275887,0.0222507547587156,0.998020112514496,0.0588289387524128,-0.999874830245972,-0.012456570751965,0.00976627506315708,-0.999915719032288,-0.0122108440846205,-0.00439730798825622,-0.999832570552826,-0.0120467012748122,-0.0137803023681045,-0.999861121177673,-0.0120870620012283,-0.0114787891507149,-0.99992448091507,-0.0122925192117691,0.000294543540803716,-0.999941229820251,-0.0107459425926209,0.00149414967745543,-0.999973654747009,-0.0070829140022397,0.0015882117440924,-0.999794244766235,-0.0202515292912722,0.00124994642101228,-0.999919831752777,-0.0125778000801802,0.00144710065796971,-0.999963879585266,0.00826649274677038,0.00198210845701396,-0.999957621097565,0.00920455809682608,0.000354961928678676,-0.999997794628143,0.00209772447124124,9.52232658164576e-005,-0.999999701976776,0.000881168816704303,5.07608128827997e-005,-0.999997675418854,0.0021599770989269,9.74984504864551e-005,-0.99997341632843,0.00728262588381767,0.000284719717456028,-0.999864757061005,0.0164354145526886,0.000619232363533229,-0.546979010105133,0.836188495159149,0.040034681558609,-0.546979010105133,0.836188495159149,0.0400346592068672,-0.546979010105133,0.836188495159149,0.0400346741080284,0.560845255851746,-0.82751727104187,-0.025841822847724,0.560845255851746,-0.82751727104187,-0.0258418079465628,0.560845255851746,-0.82751727104187,-0.0258418153971434,-0.790244996547699,-0.42044922709465,-0.445797652006149,
- -0.790244936943054,-0.420449167490005,-0.445797592401505,-0.790244877338409,-0.420449197292328,-0.445797622203827,-0.999910771846771,0.0050067794509232,0.0123832430690527,-0.999987721443176,0.00495107192546129,-0.00035797935561277,-0.999965727329254,0.00492323655635118,-0.00665653264150023,-0.99996942281723,0.00497913220897317,0.00603680638596416,-0.999810099601746,0.00503464043140411,0.0188253838568926,-0.996024966239929,-0.0346483625471592,0.0820606425404549,-0.999166488647461,-0.0189689956605434,0.0361469797790051,-0.998587548732758,-0.031504288315773,0.0427837409079075,-0.996222257614136,-0.028487104922533,0.0820350348949432,-0.999463498592377,0.0129742650315166,-0.0300763379782438,-0.998936176300049,0.0123447952792048,-0.0444313138723373,-0.999435007572174,0.0129328025504947,-0.0310239493846893,-0.999581515789032,0.0131629481911659,-0.0257602669298649,-0.999553978443146,0.0131160477176309,-0.0268337372690439,-0.99917197227478,0.0125970933586359,-0.0386857576668262,-0.998774528503418,0.0121893156319857,-0.0479667596518993,-2.37623510201956e-007,0.999999940395355,0.000331124145304784,-2.37623495991102e-007,0.999999940395355,0.000347689492627978,-2.37620653820159e-007,0.999987959861755,0.00492465868592262,-2.37612823639211e-007,0.999955117702484,0.00948495976626873,-2.37622145959904e-007,0.999994218349457,0.00339347706176341,-0.0101042771711946,-0.999693155288696,-0.0226151123642921,-0.0100423321127892,-0.999788165092468,-0.0179678909480572,-0.00999191962182522,-0.999849379062653,-0.014197445474565,-0.0100036580115557,-0.999836325645447,-0.0150746004655957,-0.0100294509902596,-0.999805212020874,-0.0170034691691399,0.680452167987823,0.732654929161072,0.0142000513151288,0.680452167987823,0.732654988765717,0.0142000764608383,0.680452167987823,0.732654988765717,0.0142000988125801,-0.998587548732758,-0.031504288315773,0.0427837409079075,-0.999166488647461,-0.0189689956605434,0.0361469797790051,-0.999997019767761,-0.00247954344376922,9.06476416275837e-005,-0.999985337257385,-0.00541342608630657,0.000126359576825053,-0.999862730503082,-0.0165736246854067,0.000262199435383081,
- -0.999997198581696,-0.00177052710205317,-0.00159206858370453,-0.9999960064888,-0.00237586023285985,-0.00157282350119203,-0.999992430210114,-0.00360256526619196,-0.00153382157441229,-0.999995946884155,-0.002381207421422,-0.00157265341840684,-0.9999960064888,-0.0023919022642076,-0.00157231325283647,0.0893066823482513,-0.995998501777649,-0.00335940043441951,0.0893066748976707,-0.995998501777649,-0.00335939857177436,0.0893066823482513,-0.995998501777649,-0.00335940043441951,-0.999957859516144,-0.00304153631441295,0.00866393465548754,-0.999760627746582,-0.00314815761521459,0.0216510444879532,-0.99996143579483,-0.00303804292343557,0.00823946390300989,-0.999950706958771,-0.00304802367463708,0.009452392347157,-0.999754965305328,-0.00315031013451517,0.0219138413667679,-0.999575316905975,-0.00320796761661768,0.0289630740880966,-8.57472954862715e-008,0.999997854232788,-0.00208234367892146,-8.57469046877668e-008,0.999993324279785,-0.00365623459219933,-8.57471889048611e-008,0.999996662139893,-0.00261719874106348,-8.57474873328101e-008,1,-4.26251972385217e-006,-8.57472244319979e-008,0.999997019767761,-0.00243891309946775,0.0216843113303185,-0.999534726142883,-0.0214498732239008,0.0216852854937315,-0.999573230743408,-0.0195737835019827,0.0216840002685785,-0.99952220916748,-0.0220216661691666,0.0216877870261669,-0.999669015407562,-0.0138376820832491,0.0216827560216188,-0.999472320079803,-0.024183651432395,0.0216825325042009,-0.999463200569153,-0.0245588161051273,-0.999871015548706,0.0124522941187024,-0.0101458849385381,-0.999911844730377,0.0126599548384547,0.00399858085438609,-0.999828517436981,0.0127965034916997,0.0133941872045398,-0.999857306480408,0.0127628371119499,0.0110705336555839,-0.99992048740387,0.0125912586227059,-0.000699562951922417,-0.999938189983368,0.0109680667519569,-0.00182683835737407,-0.999972403049469,0.00720932614058256,-0.00180670781992376,-0.999783575534821,0.0207209065556526,-0.00187895493581891,-0.999915778636932,0.0128478091210127,-0.00183689629193395,-0.999962151050568,-0.00853896047919989,-0.00172209367156029,
- -0.999955415725708,-0.00944790150970221,-7.75226508267224e-005,-0.999997675418854,-0.00215464760549366,-3.9239432226168e-005,-0.999999582767487,-0.000905497698113322,-3.26823319483083e-005,-0.999997615814209,-0.00221824529580772,-3.95732640754431e-005,-0.9999720454216,-0.00747559126466513,-6.7169894464314e-005,-0.999857723712921,-0.0168678313493729,-0.000116469302156474,-0.537140548229218,-0.84338104724884,-0.0137266116216779,-0.537140548229218,-0.84338104724884,-0.0137266116216779,-0.537140548229218,-0.84338104724884,-0.0137266367673874,0.55069762468338,0.8347048163414,-1.85579883691389e-005,0.55069762468338,0.8347048163414,-1.85494445759105e-005,0.55069762468338,0.8347048163414,-1.85579883691389e-005,-0.786299645900726,0.443298429250717,0.430371522903442,-0.786299526691437,0.443298399448395,0.43037149310112,-0.786299526691437,0.443298399448395,0.43037149310112,0.9977046251297,-0.0676580667495728,-0.00282536144368351,0.999622702598572,-0.0274566244333982,-0.000802484806627035,0.997241675853729,-0.0741561949253082,-0.00315242563374341,0.998930811882019,-0.0461981259286404,-0.00174541200976819,0.998126149177551,-0.0611378774046898,-0.00249721086584032,0.988609910011292,-0.150338336825371,-0.00698868744075298,0.99555516242981,-0.0933481007814407,0.0125023145228624,0.995526790618896,-0.0936488956212997,0.0125019568949938,0.995502710342407,-0.0939050242304802,0.0125016551464796,0.995506823062897,-0.0938610658049583,0.0125017073005438,0.995506763458252,-0.0938617885112762,0.0125017063692212,0.995516896247864,-0.0937549993395805,0.0125018358230591,1.81143334998524e-007,-0.991596758365631,-0.129367172718048,1.80773596980544e-007,-0.989572823047638,-0.14403361082077,1.8073787089179e-007,-0.98937714099884,-0.145372003316879,1.80705811203552e-007,-0.989201724529266,-0.146561026573181,1.80618300760216e-007,-0.988722801208496,-0.149757474660873,1.80775572289349e-007,-0.989583671092987,-0.143959015607834,0.962465107440948,-0.223948910832405,-0.153322607278824,0.962465107440948,-0.223948866128922,-0.153322592377663,0.962465107440948,-0.223948895931244,-0.153322607278824,
- 0.910380780696869,0.376296281814575,0.172069549560547,0.910380899906158,0.37629634141922,0.172069534659386,0.910380780696869,0.376296281814575,0.172069534659386,0.999913275241852,-0.0113655617460608,0.00665656290948391,0.99993097782135,-0.0113665489479899,0.00299629219807684,0.999923765659332,-0.0113681461662054,-0.0048383348621428,0.999856114387512,-0.0113690411671996,-0.012591764330864,0.999804615974426,-0.0113692218437791,-0.0161708015948534,0.999923884868622,-0.0113681396469474,-0.00479788333177567,0.000101283760159276,0.999566435813904,0.0294462516903877,-5.41900044481736e-005,0.999684274196625,0.0251262728124857,-0.000154306428157724,0.999750435352325,0.0223441869020462,-5.33809361513704e-005,0.999683737754822,0.0251487586647272,8.33709273138084e-005,0.999580919742584,0.0289485491812229,0.000258374173427001,0.999428331851959,0.0338106378912926,-0.225716754794121,0.973899900913239,0.0238987300544977,-0.225716754794121,0.973899900913239,0.0238987281918526,-0.225716754794121,0.973899900913239,0.0238987188786268,0.998207092285156,-0.0113512063398957,-0.0587699115276337,0.999211728572845,-0.0113582853227854,-0.0380388870835304,0.998611092567444,-0.0113542666658759,-0.0514496304094791,0.997826278209686,-0.0113481674343348,-0.0649152398109436,0.997749388217926,-0.0113475387915969,-0.0660863742232323,0.997675478458405,-0.0113469315692782,-0.0671932771801949,0.555355727672577,0.831168591976166,-0.0271810069680214,0.555355727672577,0.831168591976166,-0.0271810218691826,0.555355727672577,0.831168591976166,-0.0271810162812471,0.999980270862579,0.004084805957973,-0.00477796327322721,0.999980628490448,0.00408444553613663,-0.00469772843644023,0.999991774559021,0.00406163604930043,0.000377072254195809,0.999980092048645,0.0040849857032299,-0.0048180827870965,0.999877750873566,0.00413082120940089,-0.0150875225663185,0.997420012950897,-0.0284667387604713,-0.0659017935395241,0.999475598335266,-0.0155805610120296,-0.0283870361745358,0.99905526638031,-0.0258570984005928,-0.0349277295172215,0.997553169727325,-0.0234073959290981,-0.0658770576119423,
- 0.999653160572052,0.0106470268219709,0.0240881014615297,0.999314308166504,0.0101320277899504,0.0356140322983265,0.99963390827179,0.0106112388893962,0.0248902272433043,0.999728798866272,0.0108009781688452,0.0206358414143324,0.999711096286774,0.010762594640255,0.0214969217777252,0.999465763568878,0.01033806335181,0.031007057055831,0.999211668968201,0.0100064845755696,0.038418386131525,-3.50496605960871e-007,0.999999940395355,-0.000350593269104138,-3.50496549117452e-007,0.999999940395355,-0.000374096242012456,-3.50492513234713e-007,0.999988317489624,-0.00483251782134175,-3.50481542454872e-007,0.999957084655762,-0.0092673422768712,-3.50494673284629e-007,0.999994397163391,-0.00333854067139328,0.0122713586315513,-0.999682664871216,0.0219999141991138,0.0121976006776094,-0.999771595001221,0.0175513215363026,0.0121363289654255,-0.99983024597168,0.0138665093109012,0.0121490452438593,-0.999819159507751,0.0146306278184056,0.0121814282611012,-0.999788343906403,0.0165777653455734,-0.749464392662048,0.661925733089447,-0.0125508736819029,-0.749464392662048,0.661925792694092,-0.012550899758935,-0.749464392662048,0.661925792694092,-0.0125508988276124,0.99905526638031,-0.0258570984005928,-0.0349277295172215,0.999475598335266,-0.0155805610120296,-0.0283870361745358,0.999998033046722,-0.0020352981518954,-5.73865581827704e-005,0.999990224838257,-0.0044404175132513,-8.59495048644021e-005,0.999907612800598,-0.0135970711708069,-0.000194691267097369,0.999998211860657,-0.00145402003545314,0.00128163839690387,0.99999737739563,-0.00195044535212219,0.00126622174866498,0.999994874000549,-0.00295289070345461,0.00123508938122541,0.99999725818634,-0.0019536439795047,0.00126612221356481,0.99999737739563,-0.00196004193276167,0.0012659237254411,-0.108710788190365,-0.994068026542664,0.00327538861893117,-0.108710780739784,-0.994068026542664,0.0032753823325038,-0.108710780739784,-0.994068026542664,0.00327538512647152,-0.999342441558838,0.0271646250039339,0.0240187216550112,-0.999096035957336,0.0272023417055607,0.0326689854264259,-0.99894654750824,0.0272202361375093,0.0369446836411953,
- -0.99922901391983,0.0271836649626493,0.0283279288560152,-0.999438583850861,0.0271447785198689,0.0196442920714617,-0.997954905033112,0.0594574436545372,-0.0234703850001097,-0.998872756958008,0.0467203259468079,0.00838793441653252,-0.998378813266754,0.0568506643176079,0.00279389461502433,-0.998241901397705,0.0544377006590366,-0.0234449673444033,-0.998378336429596,0.0206560734659433,0.0530495904386044,-0.997804224491119,0.0211456622928381,0.0627650320529938,-0.998352289199829,0.0206801947206259,0.0535274818539619,-0.998548269271851,0.0204927064478397,0.0498153232038021,-0.998513102531433,0.0205274056643248,0.0505020022392273,-0.9980548620224,0.0209420379251242,0.0587201789021492,-0.997646629810333,0.0212673265486956,0.0651845410466194,-0.0312244929373264,-0.999512374401093,-0.000273330078925937,-0.0312248654663563,-0.999512434005737,-0.00028407879290171,-0.0313570462167263,-0.999499917030334,-0.00410593580454588,-0.0314883999526501,-0.999472737312317,-0.00791698414832354,-0.0313129089772701,-0.999505698680878,-0.00282839918509126,0.0195590388029814,0.999624907970428,0.0191712081432343,0.0195049606263638,0.999690711498261,0.0154315084218979,0.0194592736661434,0.999735236167908,0.012286632321775,0.0194679331034422,0.999727487564087,0.012881669215858,0.0194926299154758,0.999703645706177,0.0145815666764975,0.730549037456512,-0.68196040391922,-0.0350449047982693,0.730549037456512,-0.68196040391922,-0.0350449308753014,0.730549037456512,-0.68196040391922,-0.0350449308753014,-0.998378813266754,0.0568506643176079,0.00279389461502433,-0.998872756958008,0.0467203259468079,0.00838793441653252,-0.998923063278198,0.0332450270652771,0.0323649160563946,-0.998841643333435,0.0356301851570606,0.0323404222726822,-0.998479664325714,0.0447057001292706,0.032245509326458,-0.99890398979187,0.0326806604862213,0.0335088334977627,-0.998888254165649,0.0331697911024094,0.0334958136081696,-0.998856484889984,0.0341389290988445,0.0334700047969818,-0.998888373374939,0.0331667624413967,0.0334958992898464,-0.998888552188873,0.0331606939435005,0.033496055752039,
- 0.140583455562592,0.990068554878235,-0.000758496345952153,0.140583455562592,0.990068554878235,-0.000758499081712216,0.140583470463753,0.990068554878235,-0.000758489186409861,-0.99996942281723,0.00258510443381965,-0.00738157099112868,-0.999826669692993,0.00267588696442544,-0.0184217635542154,-0.9999720454216,0.00258221314288676,-0.00703061604872346,-0.999964237213135,0.00259064370766282,-0.00805419590324163,-0.999822497367859,0.00267772632651031,-0.0186459571123123,-0.999692916870117,0.002726792357862,-0.0246289912611246,2.30305758464056e-007,-0.999997854232788,0.00208016973920166,2.30304763704225e-007,-0.999993503093719,0.00361388805322349,2.30305488457816e-007,-0.999996721744537,0.00258536473847926,2.30306255843971e-007,-1,2.31144731515087e-005,2.3030555951209e-007,-0.999997079372406,0.00241696578450501,0.0269880387932062,0.999373555183411,0.0228933952748775,0.0269864797592163,0.999298214912415,0.0259743425995111,0.02698989585042,0.999468326568604,0.0182980932295322,0.0269909296184778,0.999526619911194,0.0147651825100183,0.0269878637045622,0.999364972114563,0.0232652667909861,0.0269852876663208,0.999242424964905,0.028045991435647,-0.999855637550354,0.0146570084616542,0.00860844273120165,-0.999888777732849,0.0145085006952286,-0.00343887135386467,-0.999831795692444,0.014409888535738,-0.0113457227125764,-0.999851107597351,0.0144334603101015,-0.00946235191076994,-0.999894022941589,0.0145574724301696,0.000514764047693461,-0.999819457530975,0.0189469940960407,0.00144916865974665,-0.999513924121857,-0.0311253610998392,0.00172478787135333,-0.992864072322845,-0.119231455028057,0.00220026285387576,-0.998418807983398,-0.0561824515461922,0.00186124863103032,-0.999914228916168,0.0130195431411266,0.00148199952673167,-0.999835729598999,0.0181244947016239,3.36588745994959e-005,-0.999688863754272,0.0249413829296827,7.03533587511629e-005,-0.999582588672638,0.0288908835500479,9.16143617359921e-005,-0.999657988548279,0.0261526741087437,7.68738609622233e-005,-0.99980217218399,0.0198878217488527,4.3150364945177e-005,-0.99990576505661,0.0137299261987209,1.00050338005531e-005,
- -0.599677920341492,0.80013507604599,0.0130492988973856,-0.599677920341492,0.80013507604599,0.0130492998287082,-0.599677920341492,0.80013507604599,0.0130492802709341,0.613263368606567,-0.789878487586975,-6.60913501633331e-005,0.613263428211212,-0.789878487586975,-6.61170342937112e-005,0.613263368606567,-0.789878487586975,-6.60913501633331e-005,-0.831616878509521,-0.398511558771133,-0.386784106492996,-0.831616878509521,-0.398511528968811,-0.386784076690674,-0.831616878509521,-0.398511558771133,-0.386784106492996,-0.998339176177979,0.0576058886945248,0.000667586748022586,-0.99972802400589,0.0233178399503231,0.000612718053162098,-0.99800568819046,0.0631208345293999,0.000676348514389247,-0.999226272106171,0.039326474070549,0.000638419878669083,-0.998642921447754,0.0520774275064468,0.00065878574969247,-0.991750538349152,0.128180801868439,0.000778377696406096,-0.996773421764374,0.0783779099583626,0.0173102244734764,-0.996753096580505,0.0786333978176117,0.017325522378087,-0.996735572814941,0.0788526087999344,0.0173386428505182,-0.99673867225647,0.0788144394755363,0.0173363592475653,-0.996738791465759,0.0788125395774841,0.0173362456262112,-0.996745884418488,0.0787239223718643,0.017330938950181,3.85346197617764e-007,0.995805084705353,-0.0915010422468185,3.84676440035037e-007,0.994074463844299,-0.108701094985008,3.84609307957362e-007,0.993900895118713,-0.110278025269508,3.84549082355079e-007,0.99374520778656,-0.11167224496603,3.84383326945681e-007,0.993317067623138,-0.115417264401913,3.84680333809229e-007,0.994084417819977,-0.108609832823277,-0.969161868095398,0.201079428195953,-0.142451196908951,-0.969161868095398,0.201079428195953,-0.142451196908951,-0.969161868095398,0.201079428195953,-0.142451196908951,-0.928687930107117,-0.336718410253525,0.155432969331741,-0.928687930107117,-0.336718410253525,0.15543295443058,-0.928687989711761,-0.336718380451202,0.155432924628258,-0.999931335449219,0.00919577293097973,0.00726099917665124,-0.999949097633362,0.00943532213568687,0.00359036331064999,-0.99994158744812,0.009946059435606,-0.00424241414293647,
- -0.999873638153076,0.0104499533772469,-0.0119792195037007,-0.999821960926056,0.0106825716793537,-0.0155538506805897,-0.999941825866699,0.00994294136762619,-0.00419455720111728,-0.000159500617883168,-0.999659359455109,-0.0261009279638529,2.33542468777159e-005,-0.999513626098633,-0.0311835370957851,0.000141143682412803,-0.999406158924103,-0.0344571843743324,2.25042822421528e-005,-0.99951446056366,-0.0311599150300026,-0.00013837858568877,-0.999643802642822,-0.0266880672425032,-0.000344050873536617,-0.999780058860779,-0.02097038179636,0.26339402794838,-0.964197874069214,-0.0307583790272474,0.263393998146057,-0.964197874069214,-0.0307583678513765,0.263393998146057,-0.964197874069214,-0.0307583622634411,-0.99822211265564,0.0134326703846455,-0.0580716282129288,-0.999227941036224,0.0120931221172214,-0.0373804308474064,-0.998626589775085,0.0129601377993822,-0.0507653132081032,-0.997841000556946,0.0138289481401443,-0.0642050430178642,-0.997763991355896,0.0139044420793653,-0.0653741657733917,-0.99768990278244,0.0139757841825485,-0.0664791986346245,-0.618492901325226,-0.781915724277496,-0.0779378488659859,-0.618492901325226,-0.781915724277496,-0.0779378488659859,-0.618492960929871,-0.781915724277496,-0.0779378712177277,0.999604463577271,-0.00812339596450329,0.0269242860376835,0.999261140823364,-0.00816427450627089,0.0375566482543945,0.999049723148346,-0.00818414613604546,0.04281185567379,0.999447584152222,-0.00814387388527393,0.0322211012244225,0.999735116958618,-0.00810237694531679,0.0215473920106888,0.998573064804077,-0.0431989058852196,-0.0313981100916862,0.999541938304901,-0.0293355565518141,0.00744455214589834,0.999183535575867,-0.0403853803873062,0.00112873350735754,0.998794674873352,-0.0377508364617825,-0.0313700400292873,0.99805098772049,-0.00105067796539515,0.0623945854604244,0.997230887413025,-0.00158906390424818,0.0743499994277954,0.998002290725708,-0.0010855917353183,0.0631700679659843,0.998272895812988,-0.00088622682960704,0.0587416812777519,0.998221337795258,-0.000925305590499192,0.0596098117530346,0.99757844209671,-0.00137227203231305,0.0695365965366364,
- 0.997007071971893,-0.0017215859843418,0.0772919356822968,0.0125396735966206,0.999921262264252,-0.000653559749480337,0.0125396773219109,0.999921262264252,-0.0006536491564475,0.0127128940075636,0.999906778335571,-0.00500569911673665,0.0128858657553792,0.999873280525208,-0.00935756415128708,0.0126551780849695,0.99991363286972,-0.0035549842286855,-0.00201857858337462,-0.999753296375275,0.022124545648694,-0.00191518815699965,-0.999840676784515,0.0177510417997837,-0.00183143082540482,-0.999897480010986,0.0142088169232011,-0.00185109779704362,-0.999885201454163,0.0150404265150428,-0.00189382594544441,-0.999856233596802,0.0168475098907948,-0.714896380901337,0.698092341423035,-0.0398796126246452,-0.714896380901337,0.698092341423035,-0.0398796088993549,-0.714896380901337,0.698092341423035,-0.0398796088993549,0.999183535575867,-0.0403853803873062,0.00112873350735754,0.999541938304901,-0.0293355565518141,0.00744455214589834,0.99919992685318,-0.014727683737874,0.0371828675270081,0.999159574508667,-0.0173188932240009,0.037153746932745,0.998944222927094,-0.0271769873797894,0.0370406620204449,0.999155282974243,-0.0141052342951298,0.0385989360511303,0.999148190021515,-0.0146384024992585,0.0385830700397491,0.999133110046387,-0.0157112702727318,0.0385511182248592,0.99914813041687,-0.0146405827254057,0.0385830067098141,0.999148190021515,-0.0146449459716678,0.0385828800499439,-0.11352277547121,-0.993535459041595,-0.000239991844864562,-0.113522790372372,-0.993535459041595,-0.000239986868109554,-0.113522790372372,-0.993535459041595,-0.000239986868109554,-0.999944090843201,0.00460417475551367,0.00952941179275513,-0.999989628791809,0.00456053111702204,-0.000275221420451999,-0.999976575374603,0.00453880336135626,-0.00511969532817602,-0.999978721141815,0.00458249356597662,0.00464644655585289,-0.999884426593781,0.00462608644738793,0.0144893303513527,-0.997487008571625,-0.0320102460682392,0.0632059425115585,-0.999465823173523,-0.0175483878701925,0.0275729596614838,-0.999029159545898,-0.0290332585573196,0.033130057156086,-0.997654438018799,-0.0263213980942965,0.0631885677576065,
- -0.999656677246094,0.0119610801339149,-0.0233167745172977,-0.999346792697906,0.0113961827009916,-0.034295741468668,-0.999642848968506,0.0119303883984685,-0.0239140223711729,-0.99973201751709,0.0121462969109416,-0.019710224121809,-0.999717175960541,0.0121070714667439,-0.0204742942005396,-0.999489784240723,0.0116303507238626,-0.0297483149915934,-0.999251842498779,0.0112566510215402,-0.0370028354227543,6.61902745946463e-008,0.999999582767487,0.00101291039027274,6.61902603837916e-008,0.999999463558197,0.00103422615211457,6.61895285247738e-008,0.999988317489624,0.00485276337713003,6.61878303276353e-008,0.999962687492371,0.00864991452544928,6.61898695852869e-008,0.999993681907654,0.00357281183823943,-0.0109532214701176,-0.999748945236206,-0.0195473618805408,-0.0108873629942536,-0.999816536903381,-0.0157585311681032,-0.0108324028551579,-0.9998619556427,-0.012603453360498,-0.0108434539288282,-0.999853610992432,-0.0132374288514256,-0.0108727337792516,-0.999829590320587,-0.0149181699380279,0.710089504718781,0.704009056091309,0.0120068769901991,0.710089504718781,0.704009056091309,0.0120068499818444,0.710089504718781,0.704009056091309,0.0120068769901991,-0.999029159545898,-0.0290332585573196,0.033130057156086,-0.999465823173523,-0.0175483878701925,0.0275729596614838,-0.99999737739563,-0.0022841424215585,5.2703995606862e-005,-0.999987602233887,-0.00498591223731637,7.81008129706606e-005,-0.999883532524109,-0.0152662973850966,0.000174735017935745,-0.999997973442078,-0.00164394732564688,-0.00122883066069335,-0.999996840953827,-0.00219784723594785,-0.00121453544124961,-0.999993860721588,-0.00329555966891348,-0.00118620519060642,-0.999996781349182,-0.00219448562711477,-0.00121462240349501,-0.999996960163116,-0.00218776240944862,-0.00121479609515518,0.0969537571072578,-0.995282649993896,-0.00355062913149595,0.0969537571072578,-0.995282649993896,-0.00355062982998788,0.0969537645578384,-0.995282649993896,-0.00355063308961689,0.999967753887177,0.00266418419778347,0.00758916651830077,0.999816477298737,0.00275762449018657,0.0189551766961813,
- 0.999970495700836,0.00266104913316667,0.00720849586650729,0.999962151050568,0.00266987690702081,0.00828049052506685,0.999812126159668,0.00275951530784369,0.0191856045275927,0.999674379825592,0.00281016761437058,0.0253643654286861,1.17740387395315e-006,-0.999997854232788,-0.00208566151559353,1.17739864435862e-006,-0.99999338388443,-0.00365886418148875,1.17740228233743e-006,-0.999996602535248,-0.00262035080231726,1.17740637506358e-006,-1,-8.62641627463745e-006,1.17740285077161e-006,-0.999997019767761,-0.00244212057441473,-0.0247682351619005,0.999463140964508,-0.0214474033564329,-0.0247693564742804,0.999501407146454,-0.0195841882377863,-0.0247678644955158,0.999450445175171,-0.0220273733139038,-0.0247722677886486,0.999597430229187,-0.013833612203598,-0.0247664358466864,0.999400734901428,-0.0241805743426085,-0.0247661713510752,0.999391436576843,-0.0245650578290224,0.999901115894318,-0.0109076648950577,-0.00888676661998034,0.99993234872818,-0.011089407838881,0.00349950138479471,0.999868333339691,-0.0112092839553952,0.011733234860003,0.999890565872192,-0.0111796427518129,0.00969244726002216,0.99993908405304,-0.0110291866585612,-0.000617595156654716,0.999952495098114,-0.00960822030901909,-0.00159990217071027,0.99997889995575,-0.00631489837542176,-0.00158223987091333,0.999833941459656,-0.0181515160948038,-0.00164564338047057,0.999935328960419,-0.0112551329657435,-0.00160872843116522,0.99997091293335,0.00747927511110902,-0.00150807632599026,0.999965846538544,0.00827544182538986,-7.04137564753182e-005,0.999998152256012,0.00188706419430673,-3.68621113011613e-005,0.999999701976776,0.000793293642345816,-3.11175426759291e-005,0.999998211860657,0.00194316718261689,-3.71567730326205e-005,0.999978542327881,0.00654796790331602,-6.13412048551254e-005,0.999890923500061,0.0147756738588214,-0.000104551727417856,0.588162958621979,0.808635115623474,-0.013174251653254,0.588162958621979,0.808635115623474,-0.0131742237135768,0.588162958621979,0.808635115623474,-0.013174251653254,-0.601818263530731,-0.79863303899765,1.109928052756e-005,-0.601818263530731,-0.798633098602295,1.10736536953482e-005,
- -0.601818263530731,-0.79863303899765,1.10799692265573e-005,0.823772013187408,-0.406771212816238,0.394888341426849,0.823772013187408,-0.406771212816238,0.394888341426849,0.823772013187408,-0.406771242618561,0.394888371229172,-0.999947249889374,0.00358881778083742,-0.00962331518530846,-0.999904036521912,0.00362167833372951,-0.0133777884766459,-0.999670386314392,0.00372656341642141,-0.0253993719816208,-0.999938547611237,0.00359645928256214,-0.0104960175231099,-0.999556660652161,0.00376251270063221,-0.0295331217348576,-0.999677777290344,0.0037240325473249,-0.0251085460186005,-2.12946872579778e-007,-0.999998092651367,0.00195359834469855,-2.12946019928495e-007,-0.999994158744812,0.0034409761428833,-2.12946645206102e-007,-0.999997019767761,0.00245664245449007,-2.12947256272855e-007,-1,-1.50759597090655e-005,-2.12946730471231e-007,-0.99999737739563,0.00228896061889827,0.0183587223291397,0.999629616737366,0.0200894977897406,0.0183594506233931,0.999664306640625,0.0182823985815048,0.0183584913611412,0.999618291854858,0.0206436552107334,0.0183612294495106,0.999746859073639,0.0130036314949393,0.018357552587986,0.999573171138763,0.0227278266102076,0.0183574240654707,0.999566853046417,0.0230054091662169,-0.99982887506485,-0.0146925039589405,0.0112419920042157,-0.999878644943237,-0.0149376085028052,-0.00442509260028601,-0.999775886535645,-0.0150985307991505,-0.0148403234779835,-0.999811470508575,-0.0150587856769562,-0.0122582539916039,-0.999889373779297,-0.014856536872685,0.00078298756852746,-0.999914288520813,-0.0129391606897116,0.00202665315009654,-0.999961912631989,-0.00850663147866726,0.00200431421399117,-0.999698996543884,-0.0244451090693474,0.00208446057513356,-0.999883055686951,-0.0151560362428427,0.00203781109303236,-0.999947428703308,0.0100749516859651,0.00191024830564857,-0.999961614608765,0.0087614394724369,6.4193613070529e-005,-0.999998331069946,0.00187950138933957,3.03753986372612e-005,-0.999999523162842,0.00106848147697747,2.63899219135055e-005,-0.999996900558472,0.00248354324139655,3.33437201334164e-005,-0.999930500984192,0.0117968786507845,7.91096244938672e-005,
- -0.999801933765411,0.019901355728507,0.000118933654448483,-0.475142568349838,0.879805743694305,0.0134769808501005,-0.475142568349838,0.879805743694305,0.0134769808501005,-0.475142568349838,0.879805743694305,0.0134769808501005,0.488055646419525,-0.872812509536743,0.000108818203443661,0.488055676221848,-0.872812509536743,0.000108805637864862,0.488055676221848,-0.872812509536743,0.000108804153569508,-0.74332594871521,-0.494422972202301,-0.450569063425064,-0.743325889110565,-0.494423002004623,-0.450569093227386,-0.74332594871521,-0.494422972202301,-0.450569063425064,-0.999957859516144,-0.00304181128740311,0.00866419263184071,-0.999760746955872,-0.00314840488135815,0.0216460302472115,-0.999961495399475,-0.00303827784955502,0.00823492370545864,-0.999950706958771,-0.00304829305969179,0.00945186335593462,-0.999755024909973,-0.00315055553801358,0.0219085663557053,-0.99957537651062,-0.00320823676884174,0.0289598256349564,-4.77694719336341e-008,0.999997913837433,-0.0020864678081125,-4.77692481126724e-008,0.999993324279785,-0.00366510637104511,-4.77694044320742e-008,0.999996662139893,-0.00262078712694347,-4.77695607514761e-008,1,2.17985666495224e-006,-4.77694186429289e-008,0.999996960163116,-0.00244267983362079,0.0217435993254185,-0.999533474445343,-0.02144855260849,0.0217445660382509,-0.999571919441223,-0.0195760931819677,0.0217432901263237,-0.999520897865295,-0.0220269113779068,0.021747037768364,-0.999667763710022,-0.0138368010520935,0.0217420589178801,-0.999471008777618,-0.0241885520517826,0.0217418316751719,-0.999461770057678,-0.0245639123022556,-0.999871134757996,0.0124520119279623,-0.0101440949365497,-0.999911844730377,0.0126596763730049,0.00399825209751725,-0.999828517436981,0.0127962557598948,0.013394390232861,-0.999857306480408,0.0127625614404678,0.0110691450536251,-0.999920606613159,0.0125909643247724,-0.000700158183462918,-0.999938249588013,0.0109669901430607,-0.00182636152021587,-0.999972403049469,0.00720900669693947,-0.00180622702464461,-0.999783635139465,0.0207193698734045,-0.00187849684152752,-0.999915719032288,0.0128463516011834,-0.0018364213174209,
- -0.999962151050568,-0.008539117872715,-0.0017215795814991,-0.999955475330353,-0.00944765936583281,-7.81651833676733e-005,-0.999997675418854,-0.00215365178883076,-3.98500196752138e-005,-0.999999582767487,-0.00090614368673414,-3.32967429130804e-005,-0.999997615814209,-0.00221785018220544,-4.01872566726524e-005,-0.9999720454216,-0.00747494911774993,-6.78027572575957e-005,-0.999857783317566,-0.0168695412576199,-0.00011715052096406,-0.537317872047424,-0.843267917633057,-0.0137394592165947,-0.537317872047424,-0.843267917633057,-0.0137394638732076,-0.537317872047424,-0.843268036842346,-0.0137394843623042,0.550833761692047,0.834614992141724,-2.48543074121699e-005,0.550833761692047,0.834614992141724,-2.48417527473066e-005,0.550833761692047,0.834614992141724,-2.48502910835668e-005,-0.786381006240845,0.443226456642151,0.430296659469604,-0.786381006240845,0.443226456642151,0.430296659469604,-0.786381006240845,0.443226456642151,0.430296659469604,0.997706174850464,-0.0676355957984924,-0.00282431533560157,0.999622821807861,-0.0274551883339882,-0.000802360125817358,0.99724268913269,-0.0741428881883621,-0.00315186311490834,0.998931467533112,-0.0461834594607353,-0.00174468557815999,0.998128116130829,-0.0611062273383141,-0.00249568093568087,0.988618850708008,-0.150279700756073,-0.00698610208928585,0.995555579662323,-0.093343123793602,0.0124976579099894,0.995527446269989,-0.0936435684561729,0.0124973058700562,0.995503187179565,-0.0939002558588982,0.0124970022588968,0.995507299900055,-0.09385646879673,0.0124970525503159,0.995507299900055,-0.0938564240932465,0.0124970534816384,0.995517432689667,-0.0937500298023224,0.0124971801415086,-8.06872080261201e-008,-0.991596221923828,-0.129372030496597,-8.05224900091162e-008,-0.989571869373322,-0.144040554761887,-8.05065809572625e-008,-0.989376485347748,-0.145375981926918,-8.04923558916926e-008,-0.989201545715332,-0.14656226336956,-8.04533257792173e-008,-0.988721907138824,-0.149763211607933,-8.05233852929632e-008,-0.989582717418671,-0.143966048955917,0.962485253810883,-0.223891526460648,-0.153279975056648,
- 0.962485253810883,-0.223891541361809,-0.153279989957809,0.962485253810883,-0.223891511559486,-0.153279975056648,0.910380184650421,0.376298427581787,0.17206797003746,0.910380244255066,0.376298397779465,0.172067940235138,0.910380244255066,0.376298397779465,0.172067940235138,0.999912858009338,-0.0113644879311323,0.00671838549897075,0.999930918216705,-0.0113654844462872,0.0030258686747402,0.999923765659332,-0.0113670900464058,-0.00484129833057523,0.999856114387512,-0.0113679831847548,-0.0125931594520807,0.999804615974426,-0.0113681619986892,-0.0161703359335661,0.999923944473267,-0.0113670788705349,-0.00478379288688302,0.000103306876553688,0.999566197395325,0.029452845454216,-5.22934424225241e-005,0.99968409538269,0.0251346491277218,-0.000152739623445086,0.999750375747681,0.0223468262702227,-5.15728243044578e-005,0.999683558940887,0.0251546557992697,8.54026948218234e-005,0.999580681324005,0.0289559978991747,0.000260347180301324,0.999428331851959,0.0338104963302612,-0.225826531648636,0.973874390125275,0.0239011943340302,-0.225826546549797,0.973874390125275,0.0239011850208044,-0.225826546549797,0.973874390125275,0.0239011850208044,0.998207092285156,-0.0113515006378293,-0.0587699301540852,0.999211609363556,-0.011358586139977,-0.0380439013242722,0.998611032962799,-0.0113545628264546,-0.051450852304697,0.997826516628265,-0.0113484608009458,-0.0649126544594765,0.99774956703186,-0.0113478321582079,-0.0660851895809174,0.99767541885376,-0.0113472212105989,-0.0671935379505157,0.55552464723587,0.831055879592896,-0.0271753929555416,0.555524706840515,0.831055819988251,-0.0271754078567028,0.55552464723587,0.831055879592896,-0.0271753929555416,-0.999957680702209,0.0030411034822464,-0.0086825042963028,-0.99975997209549,0.00314780278131366,-0.0216805953532457,-0.999961137771606,0.00303777423687279,-0.00827786140143871,-0.999950468540192,0.0030476157553494,-0.00947409123182297,-0.999754190444946,0.00314996321685612,-0.0219444334506989,-0.999574840068817,0.00320750032551587,-0.0289798527956009,-4.6631541295028e-008,-0.999997854232788,0.00208195997402072,
- -4.6631331684921e-008,-0.99999338388443,0.00365935266017914,-4.66314808988955e-008,-0.999996602535248,0.0026131218764931,-4.66316336655836e-008,-1,-1.05099188658642e-005,-4.66314986624639e-008,-0.999997019767761,0.00243606744334102,0.0217002183198929,0.999535441398621,0.021401297301054,0.0217012017965317,0.999574661254883,0.0194841250777245,0.0216998998075724,0.999522745609283,0.0219867620617151,0.0217036288231611,0.999668598175049,0.0138450460508466,0.0216986443847418,0.999471724033356,0.0241966638714075,0.0216984581202269,0.999464213848114,0.0245052687823772,-0.999871075153351,-0.0124520706012845,0.0101479962468147,-0.999911844730377,-0.0126597555354238,-0.00399930262938142,-0.999828517436981,-0.0127962753176689,-0.0133937187492847,-0.999857306480408,-0.0127626489847898,-0.0110726710408926,-0.99992048740387,-0.0125910732895136,0.000698246993124485,-0.999938189983368,-0.0109679847955704,0.00182900740765035,-0.999972403049469,-0.00720927445217967,0.00180881202686578,-0.999783635139465,-0.0207203179597855,0.00188128999434412,-0.999915719032288,-0.0128477113321424,0.00183909747283906,-0.999962091445923,0.00853802636265755,0.00172393047250807,-0.999955415725708,0.00944759603589773,6.78957439959049e-005,-0.999997675418854,0.00215493328869343,2.97400711133378e-005,-0.999999582767487,0.000906987523194402,2.32106394832954e-005,-0.999997615814209,0.00221970141865313,3.00789488392184e-005,-0.9999720454216,0.00747586088255048,5.75795929762535e-005,-0.999857723712921,0.0168692748993635,0.000106725427031051,-0.537183105945587,0.843353748321533,0.0137385167181492,-0.537183105945587,0.843353748321533,0.0137385157868266,-0.537183105945587,0.843353748321533,0.0137385409325361,0.550940573215485,-0.834544479846954,0.000100067351013422,0.55094051361084,-0.834544539451599,0.000100096476671752,0.55094051361084,-0.834544539451599,0.000100096476671752,-0.786316752433777,-0.44333428144455,-0.430303007364273,-0.786316752433777,-0.44333428144455,-0.430303007364273,-0.786316752433777,-0.443334311246872,-0.430303007364273,0.997705340385437,-0.0676435455679893,-0.00290002371184528,
- 0.999622762203217,-0.0274565350264311,-0.000823913258500397,0.997242093086243,-0.0741467997431755,-0.00323608051985502,0.998931229114532,-0.0461876317858696,-0.00179146439768374,0.998127162456512,-0.0611182115972042,-0.00256285141222179,0.988614201545715,-0.150301560759544,-0.00717329606413841,0.99555104970932,-0.0933455899357796,0.0128336101770401,0.995522856712341,-0.0936463251709938,0.0128332441672683,0.995498776435852,-0.0939024239778519,0.0128329321742058,0.995502769947052,-0.0938602536916733,0.01283298432827,0.995502531528473,-0.0938627123832703,0.0128329833969474,0.995512843132019,-0.0937532931566238,0.012833115644753,1.14361753844605e-007,-0.991147756576538,-0.132763534784317,1.14115820792904e-007,-0.98901629447937,-0.147806197404861,1.14092038927538e-007,-0.988810300827026,-0.149179071187973,1.14070800805166e-007,-0.98862612247467,-0.150394886732101,1.14012564722543e-007,-0.988121390342712,-0.153675317764282,1.14117170824102e-007,-0.989028036594391,-0.147727757692337,0.961865782737732,-0.223766952753067,-0.157297819852829,0.961865782737732,-0.223766937851906,-0.157297819852829,0.961865782737732,-0.223766937851906,-0.157297819852829,0.909649312496185,0.375992685556412,0.176543593406677,0.909649312496185,0.375992685556412,0.176543608307838,0.909649312496185,0.375992685556412,0.176543608307838,0.999911725521088,-0.0113656893372536,0.00689814472571015,0.999930620193481,-0.0113666905090213,0.00310607883147895,0.999923050403595,-0.0113682765513659,-0.0049684545956552,0.999851822853088,-0.0113691156730056,-0.0129269957542419,0.999797523021698,-0.0113692581653595,-0.0166030284017324,0.999923408031464,-0.0113682691007853,-0.00491061853244901,0.000110087305074558,0.999542653560638,0.0302399955689907,-4.55161716672592e-005,0.999667108058929,0.0258002411574125,-0.000145845653605647,0.999736905097961,0.0229373089969158,-4.49466169811785e-005,0.999666690826416,0.0258164927363396,9.20422826311551e-005,0.99955815076828,0.029725156724453,0.000266827904852107,0.999397337436676,0.0347116515040398,-0.22582671046257,0.97385835647583,0.0245447717607021,
- -0.22582671046257,0.97385835647583,0.0245447717607021,-0.225826725363731,0.97385835647583,0.0245447624474764,0.998113691806793,-0.0113494144752622,-0.0603350922465324,0.999172449111938,-0.0113571044057608,-0.0390594862401485,0.998539447784424,-0.0113527188077569,-0.0528214909136295,0.9977126121521,-0.0113461427390575,-0.0666392967104912,0.997631430625916,-0.0113454693928361,-0.0678445547819138,0.997553288936615,-0.0113448109477758,-0.0689838901162148,0.555464804172516,0.831071794033051,-0.0279024504125118,0.555464804172516,0.831071794033051,-0.027902465313673,0.555464804172516,0.831071794033051,-0.0279024448245764,-0.999946355819702,0.00441791443154216,0.00937091000378132,-0.999990522861481,0.00436860462650657,-0.000270538090262562,-0.999977886676788,0.0043440843001008,-0.00503564951941371,-0.999979853630066,0.004393404815346,0.00456879008561373,-0.99988865852356,0.00444269692525268,0.0142470169812441,-0.9975945353508,-0.0306217987090349,0.0621885657310486,-0.999494135379791,-0.0167878903448582,0.0270139873027802,-0.999077558517456,-0.027793051674962,0.0327347069978714,-0.997748374938965,-0.0251706968992949,0.0621663965284824,-0.999671399593353,0.011441950686276,-0.0229391660541296,-0.999370038509369,0.0108905443921685,-0.0337762124836445,-0.999658584594727,0.0114130387082696,-0.0235081184655428,-0.999744355678558,0.0116218235343695,-0.0193977393209934,-0.999729514122009,0.0115826986730099,-0.02016831189394,-0.999508917331696,0.0111186467111111,-0.0292968042194843,-0.99927693605423,0.0107532544061542,-0.0364699438214302,1.10467290426186e-007,1,0.000279396132100374,1.10467283320759e-007,1,0.000288594426820055,1.10466316982638e-007,0.999991178512573,0.00421469565480947,1.10463638236524e-007,0.999967038631439,0.00813153479248285,1.10466785940844e-007,0.999995708465576,0.002902926877141,-0.011438594199717,-0.999748229980469,-0.019303547218442,-0.011370312422514,-0.999816179275513,-0.015439111739397,-0.0113130277022719,-0.999861598014832,-0.012204390950501,-0.0113241914659739,-0.999853610992432,-0.0128343338146806,-0.0113549483940005,-0.999829411506653,-0.0145708592608571,
- 0.724977135658264,0.688677906990051,0.0114416619762778,0.724977135658264,0.688677906990051,0.0114416629076004,0.724977135658264,0.688677906990051,0.011441663838923,-0.999077558517456,-0.027793051674962,0.0327347069978714,-0.999494135379791,-0.0167878903448582,0.0270139873027802,-0.999997615814209,-0.00218863552436233,6.86817365931347e-005,-0.999988675117493,-0.00477735232561827,9.57044176175259e-005,-0.999893069267273,-0.0146253379061818,0.000198501147679053,-0.999998092651367,-0.00157416227739304,-0.00120372767560184,-0.999997138977051,-0.00210531847551465,-0.00118924642447382,-0.999994337558746,-0.0031604515388608,-0.00116047880146652,-0.999997019767761,-0.00210292567498982,-0.00118931173346937,-0.999997079372406,-0.00209814100526273,-0.00118944223504514,0.101005725562572,-0.994881689548492,-0.00287571921944618,0.101005733013153,-0.994881689548492,-0.00287572224624455,0.101005725562572,-0.994881689548492,-0.00287571921944618,0.999955832958221,0.00304181431420147,0.00889454688876867,0.99974799156189,0.00314832315780222,0.0222241617739201,0.999959707260132,0.0030383039265871,0.00845645368099213,0.999948382377625,0.00304828234948218,0.00970210414379835,0.999741971492767,0.00315046869218349,0.0224933233112097,0.999552845954895,0.00320807029493153,0.0297306012362242,1.47824820828646e-007,-0.999997794628143,-0.00214425101876259,1.4782411028591e-007,-0.999992966651917,-0.00375734618864954,1.4782459345497e-007,-0.999996483325958,-0.0026872509624809,1.47825147678304e-007,-1,-4.05034870709642e-006,1.47824678720099e-007,-0.999996900558472,-0.00250625051558018,-0.0217116847634315,0.999521732330322,-0.0220211911946535,-0.0217095240950584,0.999432265758514,-0.0257661230862141,-0.021713649854064,0.9996018409729,-0.0180182736366987,-0.0217151995748281,0.999663293361664,-0.0142047423869371,-0.0217110551893711,0.999495983123779,-0.0231609847396612,-0.0217082686722279,0.999379634857178,-0.0277332905679941,0.999868214130402,-0.0124523034319282,-0.0104175098240376,0.999911427497864,-0.0126598924398422,0.00409983284771442,0.999823570251465,-0.0127964410930872,0.0137518122792244,
- 0.99985408782959,-0.0127626890316606,0.0113582005724311,0.99992048740387,-0.0125911729410291,-0.000726526719518006,0.999938070774078,-0.0109688024967909,-0.00187722023110837,0.999972283840179,-0.00720893312245607,-0.00185653218068182,0.999783396720886,-0.0207223333418369,-0.00193076720461249,0.999915659427643,-0.0128491083160043,-0.00188755639828742,0.999961972236633,0.00853960867971182,-0.00176959973759949,0.999955415725708,0.00944792106747627,-8.07746619102545e-005,0.999997675418854,0.002154077636078,-4.14547612308525e-005,0.999999582767487,0.000904695654753596,-3.47193890775088e-005,0.999997615814209,0.00221737520769238,-4.17960072809365e-005,0.9999720454216,0.00747529091313481,-7.01406970620155e-005,0.999857723712921,0.0168678387999535,-0.000120772565423977,0.53728312253952,0.84328418970108,-0.0141013534739614,0.53728312253952,0.84328418970108,-0.0141013339161873,0.53728312253952,0.84328418970108,-0.0141013534739614,-0.55086761713028,-0.834592640399933,-1.32782370201312e-005,-0.550867557525635,-0.834592700004578,-1.32944851429784e-005,-0.550867557525635,-0.834592700004578,-1.32944851429784e-005,0.782324075698853,-0.441145360469818,0.439727246761322,0.782323956489563,-0.441145330667496,0.439727216959,0.782324075698853,-0.441145360469818,0.439727246761322,-0.997705817222595,-0.0676372721791267,0.00289805512875319,-0.999622702598572,-0.02745589800179,0.000822523725219071,-0.997241795063019,-0.0741514712572098,0.00323463045060635,-0.998930990695953,-0.0461922287940979,0.00179021072108299,-0.998128294944763,-0.0611009746789932,0.00256036245264113,-0.988619387149811,-0.150268211960793,0.00716933840885758,-0.995550990104675,-0.0933476388454437,-0.0128258084878325,-0.995522797107697,-0.0936484485864639,-0.0128254480659962,-0.995498538017273,-0.0939051508903503,-0.0128251351416111,-0.995502710342407,-0.0938618779182434,-0.0128251910209656,-0.995502531528473,-0.0938626602292061,-0.0128251854330301,-0.995512723922729,-0.0937551632523537,-0.0128253186121583,-2.04311465523688e-008,-0.991148233413696,0.132759794592857,-2.03872314585851e-008,-0.98901778459549,0.147796005010605,
- -2.03829717548842e-008,-0.988811194896698,0.149172931909561,-2.03791490349658e-008,-0.988625705242157,0.150396704673767,-2.03687751110238e-008,-0.988122701644897,0.153666988015175,-2.03874677140448e-008,-0.989029347896576,0.14771956205368,-0.961858034133911,-0.22378970682621,0.157312572002411,-0.961858093738556,-0.223789677023888,0.15731255710125,-0.961858093738556,-0.223789677023888,0.157312542200089,-0.909658551216125,0.375997722148895,-0.176485121250153,-0.909658551216125,0.375997722148895,-0.176485121250153,-0.909658551216125,0.375997722148895,-0.176485121250153,-0.999911725521088,-0.0113649191334844,-0.00688359094783664,-0.999930620193481,-0.0113659175112844,-0.0031072145793587,-0.99992311000824,-0.0113675137981772,0.00497468467801809,-0.999851703643799,-0.0113683557137847,0.0129418205469847,-0.999797523021698,-0.0113684982061386,0.016603397205472,-0.999923288822174,-0.0113675026223063,0.00491746235638857,-0.000152330001583323,0.999542474746704,-0.0302483569830656,2.79974051409226e-006,0.999666571617126,-0.0258204564452171,0.000104241065855604,0.999737203121185,-0.0229247231036425,2.18902118831465e-006,0.999666213989258,-0.0258378908038139,-0.000134840898681432,0.999557435512543,-0.0297491867095232,-0.000308677961584181,0.999397337436676,-0.0347105115652084,0.225809648633003,0.973861694335938,-0.0245684180408716,0.225809648633003,0.973861694335938,-0.0245684180408716,0.225809648633003,0.973861694335938,-0.0245684180408716,-0.998112976551056,-0.0113499695435166,0.0603452138602734,-0.999172627925873,-0.0113576548174024,0.0390550941228867,-0.9985391497612,-0.0113532748073339,0.0528266541659832,-0.997711658477783,-0.0113467015326023,0.0666539967060089,-0.99763035774231,-0.0113460244610906,0.0678596347570419,-0.997552216053009,-0.0113453697413206,0.0689993724226952,-0.555538654327393,0.83102285861969,0.0278901681303978,-0.555538654327393,0.83102285861969,0.0278901662677526,-0.555538654327393,0.83102285861969,0.0278901681303978,-0.999955594539642,0.00304182898253202,-0.00891976244747639,-0.999747812747955,0.003148257965222,-0.0222322307527065,
- -0.999959528446198,0.0030382766854018,-0.008476497605443,-0.999948084354401,0.00304827769286931,-0.00972453691065311,-0.999741792678833,0.00315039721317589,-0.022500466555357,-0.999552726745605,0.0032079997472465,-0.0297338757663965,7.79839925968417e-009,-0.999997675418854,0.00215771491639316,7.79836284436897e-009,-0.999993026256561,0.00374673190526664,7.7983912660784e-009,-0.999996542930603,0.00266677094623446,7.79841613507415e-009,-1,-2.21667892219557e-006,7.79839215425682e-009,-0.999996900558472,0.00249708537012339,0.0216614753007889,0.999523818492889,0.0219794455915689,0.021659204736352,0.999434113502502,0.0257381331175566,0.0216635446995497,0.999603033065796,0.0180144812911749,0.0216651931405067,0.999663829803467,0.0142421089112759,0.0216607954353094,0.999497056007385,0.0231593605130911,0.0216578841209412,0.999381363391876,0.0277137849479914,-0.999868452548981,-0.0124526936560869,0.0103920316323638,-0.999911367893219,-0.0126603543758392,-0.00412862934172153,-0.999823927879334,-0.0127961514517665,-0.0137263424694538,-0.999853730201721,-0.0127631835639477,-0.0113886538892984,-0.999920547008514,-0.0125920157879591,0.000670597015414387,-0.999938070774078,-0.0109667191281915,0.00186450488399714,-0.999972343444824,-0.0072091375477612,0.00184379843994975,-0.999783575534821,-0.0207186862826347,0.0019181250827387,-0.999915659427643,-0.0128458822146058,0.0018748507136479,-0.999962031841278,0.0085385600104928,0.00175674236379564,-0.999955415725708,0.00944696459919214,7.99789122538641e-005,-0.999997675418854,0.00215382198803127,4.08090854762122e-005,-0.999999582767487,0.000906151602976024,3.41079685313161e-005,-0.999997615814209,0.00221853540278971,4.11566616094206e-005,-0.9999720454216,0.00747494166716933,6.93877736921422e-005,-0.999857723712921,0.0168690141290426,0.000119839452963788,-0.537118077278137,0.84339052438736,0.0140204923227429,-0.537118077278137,0.84339052438736,0.014020511880517,-0.537118077278137,0.84339052438736,0.014020511880517,0.550979971885681,-0.834518432617188,-4.66266210423782e-005,0.550979971885681,-0.834518432617188,-4.66143137600739e-005,
- 0.550979971885681,-0.834518432617188,-4.66266246803571e-005,-0.782468497753143,-0.441069841384888,-0.439546018838882,-0.782468378543854,-0.441069811582565,-0.439545959234238,-0.782468378543854,-0.441069811582565,-0.43954598903656,-0.9974045753479,0.0719416439533234,-0.00289986561983824,-0.999572396278381,0.0292322933673859,-0.000827860843855888,-0.996877372264862,0.0788983330130577,-0.00323746539652348,-0.998790442943573,0.0491355620324612,-0.00179331516847014,-0.997884750366211,0.0649582296609879,-0.00256099761463702,-0.987134218215942,0.159733340144157,-0.00716242752969265,-0.994971394538879,0.0993354991078377,0.01282122079283,-0.994939565658569,0.0996544882655144,0.012820809148252,-0.994912385940552,0.0999247878789902,0.0128204580396414,-0.994916677474976,0.0998817831277847,0.0128205139189959,-0.994916141033173,0.0998874455690384,0.0128205073997378,-0.994928181171417,0.0997681468725204,0.0128206638619304,-2.71117244210473e-007,0.992182075977325,-0.124798737466335,-2.70601105967216e-007,0.990293323993683,-0.138993635773659,-2.70551396397423e-007,0.990111231803894,-0.140284702181816,-2.70506518518232e-007,0.989947140216827,-0.14143779873848,-2.70384305167681e-007,0.989499926567078,-0.144533291459084,-2.70603749186193e-007,0.990302979946136,-0.138924762606621,-0.95865923166275,0.237466380000114,-0.156787097454071,-0.95865923166275,0.237466365098953,-0.156787097454071,-0.95865923166275,0.237466380000114,-0.156787097454071,-0.901191174983978,-0.396579593420029,0.174869433045387,-0.901191115379334,-0.396579504013062,0.174869403243065,-0.901191174983978,-0.396579593420029,0.17486946284771,-0.999902725219727,0.0121015040203929,0.00694842077791691,-0.999921917915344,0.0121025834232569,0.00313223758712411,-0.999914407730103,0.0121042868122458,-0.0049677724018693,-0.999843239784241,0.0121051874011755,-0.0129271671175957,-0.999788880348206,0.0121053447946906,-0.0166026968508959,-0.999914765357971,0.0121042747050524,-0.00489762425422668,-0.000129508422105573,-0.999596357345581,0.0284095015376806,1.60572071763454e-005,-0.999705851078033,0.024250753223896,
- 0.000111029781692196,-0.999768137931824,0.0215372033417225,1.54588342411444e-005,-0.99970555305481,0.0242678560316563,-0.000113042944576591,-0.999609589576721,0.027939110994339,-0.000276268488960341,-0.999468386173248,0.0326019413769245,0.212741553783417,-0.976834714412689,0.0231297928839922,0.212741553783417,-0.976834714412689,0.023129791021347,0.212741538882256,-0.976834714412689,0.0231298003345728,-0.998104691505432,0.0120853735134006,-0.0603403225541115,-0.999163806438446,0.0120935579761863,-0.039056234061718,-0.998530745506287,0.0120888939127326,-0.0528239496052265,-0.997703552246094,0.0120818931609392,-0.0666474252939224,-0.99762225151062,0.0120811713859439,-0.067852571606636,-0.997544169425964,0.0120804756879807,-0.0689918398857117,-0.531637668609619,-0.84655100107193,-0.0266985427588224,-0.531637728214264,-0.846550941467285,-0.0266985520720482,-0.531637728214264,-0.846550941467285,-0.0266985539346933,-0.997568011283875,-0.0696354433894157,0.00299179344438016,-0.999600112438202,-0.0282677877694368,0.000854526704642922,-0.997077584266663,-0.076321966946125,0.00333735207095742,-0.998867571353912,-0.0475399866700172,0.0018500987207517,-0.998014807701111,-0.062924861907959,0.00264501920901239,-0.987931847572327,-0.154712945222855,0.00739064160734415,-0.995285749435425,-0.0960825979709625,-0.0132080120965838,-0.995255947113037,-0.0963913649320602,-0.0132076209411025,-0.995230317115784,-0.0966549813747406,-0.0132072838023305,-0.995234549045563,-0.0966113656759262,-0.0132073406130075,-0.995234429836273,-0.0966128930449486,-0.0132073368877172,-0.995245218276978,-0.0965013578534126,-0.0132074784487486,-1.14361291991827e-007,-0.991146504878998,0.132772848010063,-1.14116012639442e-007,-0.989020705223084,0.147776886820793,-1.14092081560102e-007,-0.988813161849976,0.149159818887711,-1.14070516588072e-007,-0.988626420497894,0.150392293930054,-1.14012834728783e-007,-0.988126575946808,0.153642073273659,-1.14117327143504e-007,-0.989031970500946,0.147701784968376,-0.959706723690033,-0.229889005422592,0.161598339676857,-0.959706723690033,-0.229889005422592,0.161598339676857,
- -0.959706723690033,-0.229888990521431,0.161598324775696,-0.904968678951263,0.385160207748413,-0.180785268545151,-0.904968678951263,0.385160207748413,-0.18078525364399,-0.904968678951263,0.385160207748413,-0.180785283446312,-0.9999058842659,-0.0117015102878213,-0.0071655479259789,-0.999926328659058,-0.0117025701329112,-0.00323793618008494,-0.999918460845947,-0.0117042269557714,0.00511727528646588,-0.999842882156372,-0.0117050567641854,0.0133195575326681,-0.999785363674164,-0.0117051731795073,0.0170941986143589,-0.999918818473816,-0.0117042139172554,0.00504098553210497,-7.48446545912884e-005,0.999542474746704,-0.030248211696744,7.57285743020475e-005,0.999666452407837,-0.0258281156420708,0.000172855667187832,0.99973601102829,-0.022976640611887,7.49773535062559e-005,0.999665856361389,-0.0258501693606377,-5.75300909986254e-005,0.999557614326477,-0.0297399684786797,-0.000226918709813617,0.999397337436676,-0.0347118079662323,0.219694003462791,0.975259184837341,-0.0245783161371946,0.21969398856163,0.975259184837341,-0.0245783254504204,0.21969398856163,0.975259184837341,-0.0245783235877752,-0.997999846935272,-0.0116848517209291,0.0621272623538971,-0.999123096466064,-0.01169353723526,0.0402030348777771,-0.998451352119446,-0.0116885621100664,0.0543893091380596,-0.997573733329773,-0.0116811878979206,0.0686324015259743,-0.997488379478455,-0.0116804400458932,0.0698607042431831,-0.997406423091888,-0.0116797173395753,0.0710211247205734,-0.544123232364655,0.8385289311409,0.0282694902271032,-0.544123232364655,0.8385289311409,0.0282694958150387,-0.544123232364655,0.8385289311409,0.0282694771885872,0.999780833721161,-0.0203523244708776,-0.00490348134189844,0.999781250953674,-0.0203527584671974,-0.00482089770957828,0.999792277812958,-0.0203797239810228,0.000387099018553272,0.999780774116516,-0.0203521102666855,-0.0049447757191956,0.999674201011658,-0.020295824855566,-0.015484088100493,0.996005237102509,-0.0583361349999905,-0.0676050260663033,0.99862015247345,-0.0433602258563042,-0.029626227915287,0.99784380197525,-0.0553138852119446,-0.0353290885686874,
- 0.996335744857788,-0.0524183213710785,-0.0675829723477364,0.999608814716339,-0.0126814059913158,0.0249280240386724,0.999238789081573,-0.0132712787017226,0.0366857089102268,0.999592185020447,-0.012713854201138,0.0255739223212004,0.999699592590332,-0.0124884555116296,0.0210887938737869,0.999680995941162,-0.0125309200957417,0.021933414041996,0.999408543109894,-0.0130277359858155,0.0318273976445198,0.999126434326172,-0.0134160863235593,0.0395769327878952,0.0250607151538134,0.999685883522034,-0.000304959365166724,0.0250607170164585,0.999685883522034,-0.000324951048241928,0.0250604972243309,0.999677002429962,-0.00424013007432222,0.0250598955899477,0.999652862548828,-0.00813525356352329,0.025060610845685,0.99968159198761,-0.00292840483598411,-0.0146378548815846,-0.999705731868744,0.019343888387084,-0.0147032551467419,-0.999773144721985,0.0154147874563932,-0.0147572550922632,-0.999817192554474,0.0121602090075612,-0.0147460708394647,-0.99980890750885,0.0128349643200636,-0.0147175397723913,-0.999785780906677,0.0145548526197672,-0.677182257175446,0.735718131065369,-0.0119592538103461,-0.677182257175446,0.735718131065369,-0.0119592538103461,-0.677182257175446,0.735718131065369,-0.0119592286646366,0.99784380197525,-0.0553138852119446,-0.0353290885686874,0.99862015247345,-0.0433602258563042,-0.029626227915287,0.999621689319611,-0.0275074429810047,-5.9946771216346e-005,0.999540209770203,-0.0303211156278849,-8.92708194442093e-005,0.999158143997192,-0.0410252660512924,-0.000200845606741495,0.999638915061951,-0.0268399771302938,0.00131491641514003,0.99962329864502,-0.0274183955043554,0.00129914644639939,0.999591112136841,-0.0285667553544044,0.00126783538144082,0.99962329864502,-0.0274155791848898,0.0012992232805118,0.999623537063599,-0.0274099502712488,0.00129937683232129,-0.118069157004356,-0.993001222610474,0.00287793413735926,-0.118069171905518,-0.993001222610474,0.002877940190956,-0.118069171905518,-0.993001222610474,0.00287793995812535,0.997703671455383,-0.0676675364375114,-0.00290149822831154,0.999622762203217,-0.0274568051099777,-0.000824189919512719,
- 0.99724155664444,-0.0741542354226112,-0.00323669542558491,0.998930811882019,-0.0461960695683956,-0.00179215043317527,0.998124778270721,-0.0611588172614574,-0.00256518856622279,0.988602340221405,-0.150379776954651,-0.00717751821503043,0.995550811290741,-0.0933485776185989,0.0128325102850795,0.995522677898407,-0.093648873269558,0.0128321498632431,0.995498299598694,-0.0939070731401443,0.0128318341448903,0.995502591133118,-0.0938625261187553,0.0128318909555674,0.995502829551697,-0.0938600525259972,0.0128318928182125,0.995512545108795,-0.0937556847929955,0.0128320185467601,-5.35727394890273e-007,-0.991148352622986,-0.132758975028992,-5.34575121946546e-007,-0.989016532897949,-0.14780481159687,-5.34463936219254e-007,-0.988810837268829,-0.149175480008125,-5.34364005488897e-007,-0.988625884056091,-0.150395810604095,-5.34091157078365e-007,-0.988121330738068,-0.153675749897957,-5.34581261035783e-007,-0.989027798175812,-0.147729739546776,0.961854994297028,-0.223796278238297,-0.157321870326996,0.961854994297028,-0.223796263337135,-0.157321870326996,0.961854994297028,-0.223796278238297,-0.157321870326996,0.909605920314789,0.376077502965927,0.176586613059044,0.909605920314789,0.376077502965927,0.176586613059044,0.909605979919434,0.376077562570572,0.176586642861366,0.999911963939667,-0.0113655580207706,0.00686159962788224,0.999930620193481,-0.0113665517419577,0.00308569264598191,0.99992311000824,-0.0113681340590119,-0.00496750185266137,0.999851882457733,-0.0113689741119742,-0.0129241105169058,0.999797523021698,-0.0113691166043282,-0.0166033897548914,0.999923348426819,-0.0113681266084313,-0.00491936830803752,0.000118781288620085,0.999542832374573,0.0302343685179949,-3.66398962796666e-005,0.999667108058929,0.0258008781820536,-0.000137147624627687,0.999737083911896,0.022933553904295,-3.58653378498275e-005,0.999666631221771,0.0258229840546846,0.000100993165688124,0.99955803155899,0.0297269783914089,0.000275749596767128,0.999397337436676,0.0347114540636539,-0.225881233811378,0.973845899105072,0.0245375987142324,-0.225881218910217,0.973845899105072,0.0245376024395227,
- -0.225881233811378,0.973845899105072,0.0245376005768776,0.998113572597504,-0.0113502331078053,-0.0603356808423996,0.999172568321228,-0.0113579593598843,-0.0390541180968285,0.998539566993713,-0.0113535523414612,-0.0528201833367348,0.997712433338165,-0.0113469511270523,-0.0666420310735703,0.997631311416626,-0.0113462740555406,-0.0678470656275749,0.997553110122681,-0.0113456146791577,-0.0689861848950386,0.555245041847229,0.831218957901001,-0.0278925038874149,0.555245041847229,0.831218957901001,-0.0278924982994795,0.555245041847229,0.831218957901001,-0.0278924982994795,0.997704744338989,0.0676517486572266,0.00290555320680141,0.999622642993927,0.0274575036019087,0.000828822259791195,0.997241735458374,0.0741520449519157,0.00324149616062641,0.998930990695953,0.0461921691894531,0.00179667375050485,0.998126566410065,0.0611293911933899,0.00256849476136267,0.988610684871674,0.150324136018753,0.00718005234375596,0.995550751686096,0.0933490991592407,-0.0128331910818815,0.995522618293762,0.0936494469642639,-0.0128328315913677,0.995498418807983,0.09390639513731,-0.0128325223922729,0.995502591133118,0.0938614755868912,-0.0128325745463371,0.995502710342407,0.0938599705696106,-0.0128325773403049,0.995512545108795,0.0937554538249969,-0.012832704000175,-6.16943367504064e-008,0.991145610809326,0.132779508829117,-6.15620621147173e-008,0.989020347595215,0.147779881954193,-6.15491373423538e-008,0.988812863826752,0.14916205406189,-6.15375341794788e-008,0.988626480102539,0.150391966104507,-6.15064053022252e-008,0.988126397132874,0.153642728924751,-6.15627442357436e-008,0.989031612873077,0.147703856229782,0.961859464645386,0.223787590861321,0.157307028770447,0.961859464645386,0.223787590861321,0.157307013869286,0.961859464645386,0.223787605762482,0.157307028770447,0.90963077545166,-0.376056283712387,-0.176503479480743,0.90963077545166,-0.376056283712387,-0.176503464579582,0.90963077545166,-0.376056283712387,-0.176503479480743,0.999911308288574,0.0113665219396353,-0.00694101536646485,0.999930500984192,0.0113675305619836,-0.00313850399106741,
- 0.99992299079895,0.0113691352307796,0.00497083738446236,0.999851703643799,0.011369981803,0.0129405036568642,0.999797523021698,0.0113701252266765,0.0166033022105694,0.999923408031464,0.0113691240549088,0.0049011604860425,0.000116259565402288,-0.999542593955994,-0.0302455406636,-3.97164767491631e-005,-0.999667227268219,-0.0257948786020279,-0.000138518487801775,-0.999736130237579,-0.0229753740131855,-3.94430244341493e-005,-0.999667108058929,-0.0258026868104935,9.73840360529721e-005,-0.999558687210083,-0.0297069624066353,0.00027278033667244,-0.999397456645966,-0.0347111970186234,-0.225778639316559,-0.973869323730469,-0.0245509315282106,-0.225778639316559,-0.973869323730469,-0.0245509315282106,-0.225778624415398,-0.973869323730469,-0.0245509427040815,0.998113095760345,0.0113507052883506,0.0603436604142189,0.999172389507294,0.0113584296777844,0.0390584990382195,0.998539090156555,0.0113540226593614,0.0528282672166824,0.997711658477783,0.0113474223762751,0.0666538923978806,0.997630715370178,0.0113467453047633,0.0678549334406853,0.997552931308746,0.0113460924476385,0.068989984691143,0.555436491966248,-0.8310866355896,0.0280240904539824,0.555436491966248,-0.8310866355896,0.0280240904539824,0.555436491966248,-0.8310866355896,0.0280240904539824,0.999965906143188,0.00267654284834862,0.00782579928636551,0.99980503320694,0.00277040922082961,0.0195519775152206,0.999968767166138,0.00267342268489301,0.00743683986365795,0.999959945678711,0.00268228142522275,0.00854146294295788,0.999800264835358,0.00277231424115598,0.0197905134409666,0.9996537566185,0.0028231602627784,0.0261616911739111,1.24064072792862e-007,-0.999997735023499,-0.00214054645039141,1.24063475936964e-007,-0.999992966651917,-0.00376245356164873,1.2406391647346e-007,-0.999996423721313,-0.00269128754734993,1.24064357009956e-007,-1,1.79602045591309e-006,1.24063959106024e-007,-0.999996900558472,-0.00250770663842559,-0.0246225818991661,0.999454200267792,-0.0220231097191572,-0.0246199872344732,0.999364793300629,-0.0257672443985939,-0.0246249735355377,0.999534487724304,-0.0180144440382719,
- -0.0246268827468157,0.999595880508423,-0.0142051307484508,-0.0246218275278807,0.999428510665894,-0.0231615975499153,-0.0246184840798378,0.999312102794647,-0.027739005163312,0.999897956848145,-0.0109568098559976,-0.00916609447449446,0.999931454658508,-0.0111393947154284,0.00360928568989038,0.999863505363464,-0.0112597476691008,0.0121003072708845,0.999886989593506,-0.011230006814003,0.00999676901847124,0.999938488006592,-0.011078916490078,-0.000636476499494165,0.999951958656311,-0.00965127162635326,-0.00165057857520878,0.999978542327881,-0.00634354026988149,-0.00163236574735492,0.999832332134247,-0.0182331148535013,-0.00169775064568967,0.999934732913971,-0.0113053927198052,-0.00165968027431518,0.999970555305481,0.00751333124935627,-0.00155587703920901,0.99996554851532,0.00831233430653811,-7.17665971023962e-005,0.999998152256012,0.00189610640518367,-3.71407186321449e-005,0.999999701976776,0.000796624575741589,-3.12071315420326e-005,0.999998152256012,0.00195276248268783,-3.74464689230081e-005,0.999978423118591,0.00657784985378385,-6.2406383221969e-005,0.999889850616455,0.014841515570879,-0.00010700090933824,0.586324393749237,0.80996298789978,-0.0135538280010223,0.586324393749237,0.80996298789978,-0.0135538224130869,0.586324393749237,0.80996298789978,-0.0135538214817643,-0.600008487701416,-0.799993634223938,-5.64479978493182e-006,-0.600008487701416,-0.799993634223938,-5.64480023967917e-006,-0.600008487701416,-0.799993634223938,-5.63851563128992e-006,0.819122910499573,-0.406266182661057,0.404951214790344,0.819122970104218,-0.406266123056412,0.404951155185699,0.819122910499573,-0.406266152858734,0.404951184988022,0.998004257678986,-0.0631454885005951,-0.000332925963448361,0.99967223405838,-0.0255998503416777,0.000199728689040057,0.997601747512817,-0.0692140311002731,-0.000419094110839069,0.999069929122925,-0.0431190505623817,-4.87146353407297e-005,0.998370826244354,-0.0570590756833553,-0.000246524694375694,0.990095794200897,-0.140386164188385,-0.00143124593887478,0.996133029460907,-0.0865303203463554,0.0152164064347744,0.996108531951904,-0.0868107452988625,0.0152266155928373,
- 0.996087431907654,-0.0870504081249237,0.0152353383600712,0.99609112739563,-0.0870092660188675,0.0152338445186615,0.996091067790985,-0.0870088636875153,0.0152338268235326,0.996099770069122,-0.0869100019335747,0.0152302291244268,-6.99379143043188e-007,-0.995420634746552,-0.0955917462706566,-6.98280985034216e-007,-0.993857562541962,-0.110667526721954,-6.98172243573936e-007,-0.99370276927948,-0.112048536539078,-6.98074131832982e-007,-0.993563115596771,-0.113280758261681,-6.97807593041944e-007,-0.993183851242065,-0.116557918488979,-6.98286669376103e-007,-0.993865728378296,-0.110593184828758,0.96661514043808,-0.215026617050171,-0.139351159334183,0.96661514043808,-0.215026631951332,-0.139351174235344,0.96661514043808,-0.215026631951332,-0.139351174235344,0.920105040073395,0.360515654087067,0.153086170554161,0.920104920864105,0.360515654087067,0.153086185455322,0.920105040073395,0.360515654087067,0.153086185455322,0.999923229217529,-0.0103400964289904,0.00684124976396561,0.999939799308777,-0.01047582924366,0.00329053215682507,0.999933183193207,-0.010762588120997,-0.00422254065051675,0.999871492385864,-0.0110444696620107,-0.0116230957210064,0.999824106693268,-0.0111752254888415,-0.0150612657889724,0.999933481216431,-0.0107604479417205,-0.00416639912873507,0.000138600618811324,0.999973893165588,-0.00722407223656774,-2.70026339421747e-005,0.999932408332825,-0.011633088812232,-0.000134772213641554,0.999894857406616,-0.0145022310316563,-2.62869143625721e-005,0.999932646751404,-0.0116140358150005,0.000119799813546706,0.999970197677612,-0.00772463390603662,0.00030563268228434,0.99999612569809,-0.0027768041472882,-0.241334304213524,0.970369279384613,-0.0118933748453856,-0.241334289312363,0.970369160175323,-0.0118933822959661,-0.241334304213524,0.970369279384613,-0.011893373914063,0.998360633850098,-0.0127072148025036,-0.0558076649904251,0.999280452728271,-0.0119606023654342,-0.0359937213361263,0.998730480670929,-0.0124440426006913,-0.0488108284771442,0.998012185096741,-0.0129277361556888,-0.061681255698204,0.997941851615906,-0.0129697397351265,-0.0628011897206306,
- 0.997874200344086,-0.013009431771934,-0.063859686255455,0.582713663578033,0.810635685920715,-0.0575742907822132,0.582713663578033,0.810635685920715,-0.0575742907822132,0.582713663578033,0.810635685920715,-0.0575742907822132,-0.999716520309448,0.00473099621012807,-0.0233385302126408,-0.999422669410706,0.0046782661229372,-0.0336548089981079,-0.999237954616547,0.00465201213955879,-0.0387535020709038,-0.99958336353302,0.00470479251816869,-0.0284776519984007,-0.999824464321136,0.00475746812298894,-0.0181211847811937,-0.99890923500061,-0.0327790528535843,0.0332544110715389,-0.999829649925232,-0.0179730467498302,-0.00423081638291478,-0.999556064605713,-0.0297575145959854,0.00148591923061758,-0.999084711074829,-0.0269434675574303,0.0332263298332691,-0.998247146606445,0.0122518381103873,-0.0579025819897652,-0.99751490354538,0.0116611402481794,-0.0694836005568504,-0.998212158679962,0.012220929376781,-0.0585095547139645,-0.998457312583923,0.0124447252601385,-0.0541121177375317,-0.998412609100342,0.0124025130644441,-0.05494200065732,-0.997834146022797,0.0119056422263384,-0.0646948516368866,-0.997312366962433,0.0115142529830337,-0.0723572075366974,-2.43473004957195e-005,1,0.000280895095784217,-2.48198339249939e-005,1,0.000294860365102068,-0.000157649104949087,0.999991178512573,0.00422050291672349,-0.000290003430563957,0.99996691942215,0.00813211500644684,-0.000113215115561616,0.999995708465576,0.0029072982724756,-0.0100236246362329,-0.999756097793579,-0.0196792557835579,-0.0100914342328906,-0.99982476234436,-0.0157716143876314,-0.0101473880931735,-0.999869883060455,-0.0125403515994549,-0.010135680437088,-0.999861299991608,-0.0132169714197516,-0.0101061891764402,-0.999837577342987,-0.0149200726300478,0.700236439704895,0.713041603565216,0.0352239385247231,0.700236439704895,0.713041543960571,0.0352239087224007,0.700236439704895,0.713041603565216,0.0352239347994328,-0.999556064605713,-0.0297575145959854,0.00148591923061758,-0.999829649925232,-0.0179730467498302,-0.00423081638291478,-0.999442934989929,-0.00234320037998259,-0.0332922376692295,
- -0.999433636665344,-0.00511516304686666,-0.0332629904150963,-0.999327778816223,-0.0156608037650585,-0.033149354159832,-0.999397993087769,-0.00168569025117904,-0.0346554443240166,-0.999397397041321,-0.00225428375415504,-0.0346399210393429,-0.999395310878754,-0.00338434614241123,-0.034609030932188,-0.999397277832031,-0.00225190934725106,-0.0346399806439877,-0.999397337436676,-0.00224716123193502,-0.0346401110291481,0.0945159643888474,-0.9955233335495,0.000272639357717708,0.0945159569382668,-0.9955233335495,0.000272642762865871,0.0945159494876862,-0.9955233335495,0.000272645469522104,-0.999563336372375,0.0281697269529104,-0.00892312172800303,-0.999353289604187,0.0282708052545786,-0.0222209338098764,-0.999567687511444,0.0281658992171288,-0.00843255780637264,-0.999555706977844,0.0281760096549988,-0.0097310496494174,-0.999347150325775,0.0282728057354689,-0.0224902182817459,-0.999155521392822,0.0283259358257055,-0.0297641195356846,-0.0250891037285328,-0.999682903289795,0.00214192131534219,-0.0250890329480171,-0.999678134918213,0.00376737723127007,-0.0250890851020813,-0.999681532382965,0.00271256291307509,-0.025089094415307,-0.999685227870941,3.22831256198697e-005,-0.0250890925526619,-0.999682009220123,0.00252234865911305,0.0468051433563232,0.99866247177124,0.021968187764287,0.0468006245791912,0.998572766780853,0.0257326271384954,0.0468092039227486,0.998741865158081,0.0179883278906345,0.0468123741447926,0.998802661895752,0.0142067922279239,0.0468038022518158,0.99863588809967,0.0231458358466625,0.0467979870736599,0.998519897460938,0.0277140196412802,-0.999865531921387,0.0126784425228834,0.0104005262255669,-0.99991363286972,0.0124719329178333,-0.0041193594224751,-0.999829471111298,0.0123334797099233,-0.0137517629191279,-0.999858796596527,0.0123676918447018,-0.0113789970055223,-0.999921202659607,0.0125407315790653,0.000697211653459817,-0.999897956848145,0.014163794927299,0.00185928551945835,-0.999837696552277,0.0179226938635111,0.00183857756201178,-0.999988555908203,0.00440989900380373,0.00191289326176047,-0.999922811985016,0.0122838411480188,0.00186963228043169,
- -0.999431729316711,0.033665768802166,0.00175155012402684,-0.999402284622192,0.0345704182982445,7.73356296122074e-005,-0.999627768993378,0.0272833239287138,3.8173846405698e-005,-0.999661028385162,0.0260358527302742,3.14703574986197e-005,-0.999626040458679,0.0273487064987421,3.85251842089929e-005,-0.999468445777893,0.0326008722186089,6.67504646116868e-005,-0.999118268489838,0.0419863723218441,0.000117195864731912,-0.515748739242554,0.856624066829681,0.014095364138484,-0.515748739242554,0.856624066829681,0.0140953632071614,-0.515748739242554,0.856624066829681,0.0140953836962581,0.529570400714874,-0.848266124725342,-0.000113351859909017,0.529570281505585,-0.848266065120697,-0.000113336231152061,0.529570281505585,-0.848266065120697,-0.000113323716504965,-0.79315847158432,-0.421353220939636,-0.439728736877441,-0.793158352375031,-0.421353220939636,-0.439728707075119,-0.79315847158432,-0.421353220939636,-0.439728736877441,0.998051762580872,0.0623902603983879,0.000330557668348774,0.999680280685425,0.0252840593457222,-0.000195849890587851,0.997660219669342,0.068366214632988,0.00041540723759681,0.999092519283295,0.042591754347086,4.95907188451383e-005,0.998408377170563,0.0563971064984798,0.000245483766775578,0.990326702594757,0.138748079538345,0.00141623220406473,0.996227443218231,0.0854687094688416,-0.0150311654433608,0.996203601360321,0.0857454165816307,-0.0150412451475859,0.996183037757874,0.0859820023179054,-0.0150498636066914,0.99618661403656,0.0859408229589462,-0.0150483632460237,0.996186792850494,0.0859397500753403,-0.0150483259931207,0.996195077896118,0.0858431160449982,-0.015044804662466,-1.62564546712929e-007,0.995420515537262,0.0955926701426506,-1.62309206075406e-007,0.993856966495514,0.110672414302826,-1.6228405286256e-007,0.993702948093414,0.112047158181667,-1.62261301284161e-007,0.993563771247864,0.113274030387402,-1.62199228270765e-007,0.993183612823486,0.116560257971287,-1.62310527684895e-007,0.993865191936493,0.110598564147949,0.967396974563599,0.212537780404091,0.13773438334465,0.967397093772888,0.212537795305252,0.137734398245811,
- 0.967396974563599,0.212537780404091,0.13773438334465,0.921835601329803,-0.356748551130295,-0.151491314172745,0.921835601329803,-0.356748521327972,-0.151491299271584,0.921835601329803,-0.356748551130295,-0.151491299271584,0.999925315380096,0.01021390222013,-0.00671224016696215,0.999941349029541,0.0103470757603645,-0.0032284848857671,0.999934792518616,0.0106294332072139,0.00416898401454091,0.999874651432037,0.0109079293906689,0.0114800408482552,0.999828517436981,0.0110371503978968,0.0148773547261953,0.999935030937195,0.0106277903541923,0.00412589078769088,0.000117217226943467,-0.999973952770233,0.00722655327990651,-5.07750337419566e-005,-0.999932289123535,0.0116391628980637,-0.000159811126650311,-0.999894917011261,0.0145030757412314,-4.99634443258401e-005,-0.999932527542114,0.0116178449243307,9.81063421932049e-005,-0.999970078468323,0.00772854639217258,0.000286830530967563,-0.99999612569809,0.00277116429060698,-0.244172066450119,-0.969659209251404,0.0118839759379625,-0.244172051548958,-0.969659209251404,0.0118839563801885,-0.244172066450119,-0.969659209251404,0.0118839759379625,0.998400926589966,0.0125507982447743,0.0551203191280365,0.99929803609848,0.0118131777271628,0.0355516374111176,0.998761594295502,0.0122907673940063,0.0482096821069717,0.998060941696167,0.0127686597406864,0.0609205737709999,0.997992277145386,0.01281020604074,0.0620277561247349,0.997926115989685,0.0128494640812278,0.0630742684006691,0.587343037128448,-0.807304501533508,0.0573375597596169,0.587343037128448,-0.807304620742798,0.0573375374078751,0.587343037128448,-0.807304501533508,0.0573375523090363,-0.999954402446747,-0.00341155054047704,0.0089197950437665,-0.999746739864349,-0.00353084993548691,0.0222248788923025,-0.999958574771881,-0.00340727041475475,0.00844364333897829,-0.999946892261505,-0.00341878854669631,0.00972513761371374,-0.999740779399872,-0.00353325065225363,0.0224933046847582,-0.999550700187683,-0.0035981151740998,0.0297559965401888,4.57457272062811e-009,0.999998271465302,-0.00190824142191559,4.57455451297051e-009,0.999994397163391,-0.00335440062917769,
- 4.57456694746838e-009,0.999997138977051,-0.00241060950793326,4.57458027014468e-009,1,-2.06520853680559e-005,4.57456916791443e-009,0.999997556209564,-0.00224315328523517,0.0193806085735559,-0.999620199203491,-0.019591573625803,0.0193813815712929,-0.999652504920959,-0.0178680699318647,0.0193803440779448,-0.999609112739563,-0.0201488230377436,0.019383367151022,-0.999731838703156,-0.0126715069636703,0.0193793531507254,-0.999566912651062,-0.0221509523689747,0.0193791929632425,-0.999560058116913,-0.0224553253501654,-0.999848365783691,0.0139659913256764,-0.0104028945788741,-0.999890744686127,0.0141986655071378,0.00410382077097893,-0.99980241060257,0.0143518075346947,0.0137547459453344,-0.999833166599274,0.0143138822168112,0.01135687623173,-0.999900102615356,0.0141215929761529,-0.000722011493053287,-0.999922573566437,0.0122997714206576,-0.00186278449837118,-0.999965608119965,0.00808563455939293,-0.00184210110455751,-0.999728143215179,0.0232370253652334,-0.00191631657071412,-0.999894499778748,0.0144073646515608,-0.00187311682384461,-0.999952614307404,-0.00957664102315903,-0.00175506365485489,-0.999965310096741,-0.00832760147750378,-7.10268286638893e-005,-0.999998450279236,-0.00178638275247067,-3.96674731746316e-005,-0.999999582767487,-0.00101622915826738,-3.59751757059712e-005,-0.999997198581696,-0.00235995627008379,-4.2417294025654e-005,-0.999937236309052,-0.0112131172791123,-8.48599156597629e-005,-0.99982100725174,-0.0189184658229351,-0.000121797842439264,-0.493779689073563,-0.869490087032318,-0.0129933441057801,-0.493779689073563,-0.869490087032318,-0.0129933441057801,-0.493779629468918,-0.869490027427673,-0.0129933441057801,0.507018327713013,0.861935257911682,6.30186914349906e-005,0.507018327713013,0.861935257911682,6.30186914349906e-005,0.507018327713013,0.861935257911682,6.30033755442128e-005,-0.763420522212982,0.482805758714676,0.429054737091064,-0.763420462608337,0.482805699110031,0.429054647684097,-0.763420522212982,0.482805758714676,0.429054737091064,0.999975144863129,-0.00427418574690819,-0.00560633279383183,0.999976217746735,-0.00427244137972593,-0.0054161031730473,
- 0.999991059303284,-0.00421780068427324,0.000531491474248469,0.99997466802597,-0.00427505886182189,-0.00570145482197404,0.999830603599548,-0.00438646599650383,-0.0178811326622963,0.996024608612061,-0.0452119670808315,-0.076751321554184,0.998353481292725,-0.0463146641850472,-0.0338423699140549,0.997552752494812,-0.0571757815778255,-0.0402418784797192,0.99704521894455,-0.00586057081818581,-0.0765945836901665,0.999656975269318,-0.00035765441134572,0.0261887162923813,0.999147534370422,-0.00129600800573826,0.0412613563239574,0.999543070793152,-0.000608836417086422,0.0302238967269659,0.999719262123108,-0.000202405790332705,0.0236945003271103,0.99969345331192,-0.000268590694759041,0.0247578267008066,0.999342441558838,-0.000983807607553899,0.0362470410764217,0.999074697494507,-0.00140330928843468,0.0429846458137035,-0.0267918277531862,0.999641001224518,-0.000325557281030342,-0.0267918035387993,0.999641001224518,-0.000318494392558932,-0.0268055126070976,0.999629855155945,-0.00464948639273643,-0.0268187373876572,0.999599933624268,-0.00898745376616716,-0.0268010050058365,0.999635636806488,-0.0032081741373986,0.00980730541050434,-0.999740123748779,0.0205798726528883,0.00975090730935335,-0.999812483787537,0.0167330726981163,0.00968914199620485,-0.999874591827393,0.0125313242897391,0.00968391913920641,-0.999879062175751,0.0121766179800034,0.00972859933972359,-0.999836981296539,0.0152142830193043,-0.648337960243225,0.761247456073761,-0.0126570696011186,-0.64833790063858,0.761247515678406,-0.0126571198925376,-0.64833790063858,0.761247515678406,-0.0126571012660861,0.997552752494812,-0.0571757815778255,-0.0402418784797192,0.998353481292725,-0.0463146641850472,-0.0338423699140549,0.999840259552002,0.0178693849593401,0.000399134558392689,0.99994820356369,-0.0101732164621353,9.48102897382341e-005,0.998230993747711,-0.0594523698091507,-0.000440369040006772,0.999016106128693,-0.0443406067788601,0.000886824040208012,0.999900639057159,-0.0139860101044178,0.00177216448355466,0.999433934688568,-0.0336199179291725,0.00119973998516798,0.999924182891846,-0.0121768368408084,0.00182486814446747,
- 0.999055743217468,-0.0434368103742599,0.000913213647436351,-0.0944245234131813,-0.995526492595673,0.00332040525972843,-0.0944245234131813,-0.995526492595673,0.00332040525972843,-0.0944245308637619,-0.995526492595673,0.00332040968351066,0.996899306774139,0.0786866545677185,0.000415332877309993,0.999487936496735,0.0319977290928364,-0.000247955322265625,0.996267199516296,0.0863202810287476,0.000523926864843816,0.998555541038513,0.0537305027246475,6.06009962211829e-005,0.99747496843338,0.0710179209709167,0.000306281232042238,0.984638690948486,0.174595698714256,0.00178274046629667,0.993976354598999,0.107938401401043,-0.018981421366334,0.993938326835632,0.10828623175621,-0.0189938824623823,0.993905782699585,0.108582355082035,-0.0190044827759266,0.993911147117615,0.108533501625061,-0.0190027356147766,0.993910849094391,0.108536325395107,-0.0190028380602598,0.993924796581268,0.108409874141216,-0.0189983081072569,-2.16752297887979e-007,0.995420098304749,0.0955970734357834,-2.16412047393533e-007,0.993857443332672,0.110668174922466,-2.1637852398726e-007,0.993703424930573,0.112042918801308,-2.1634808433646e-007,0.993563771247864,0.113274030387402,-2.16265434005436e-007,0.993184328079224,0.116554580628872,-2.16413766906953e-007,0.993865370750427,0.11059644818306,0.949233770370483,0.263980716466904,0.171083196997643,0.949233770370483,0.263980716466904,0.171083182096481,0.949233770370483,0.263980746269226,0.171083196997643,0.882799386978149,-0.432383567094803,-0.183601975440979,0.882799386978149,-0.43238353729248,-0.183601945638657,0.882799386978149,-0.432383567094803,-0.183601975440979,0.999880373477936,0.0129278432577848,-0.00849290937185287,0.999905943870544,0.013096478767693,-0.00408489536494017,0.999895572662354,0.0134537508711219,0.00527640618383884,0.999799132347107,0.0138058038428426,0.0145308477804065,0.999725103378296,0.0139690358191729,0.018831942230463,0.999895930290222,0.0134517233818769,0.00522320624440908,0.0001187125017168,-0.999973773956299,0.00724638998508453,-1.35112704811036e-005,-0.99993222951889,0.0116394516080618,
- -9.94725050986744e-005,-0.999895036220551,0.014495350420475,-1.27260318549816e-005,-0.999932646751404,0.011613367125392,0.000103815051261336,-0.999969959259033,0.00774135952815413,0.000252504221862182,-0.999996066093445,0.00280101294629276,-0.195146128535271,-0.980700612068176,0.012021042406559,-0.195146143436432,-0.980700612068176,0.0120210582390428,-0.195146143436432,-0.980700612068176,0.0120210582390428,0.997441828250885,0.0158710926771164,0.0696989521384239,0.998875916004181,0.0149466022849083,0.0449832268059254,0.998018324375153,0.0155456187203527,0.0609727315604687,0.996898710727692,0.0161434840410948,0.0770230665802956,0.99678897857666,0.0161953084170818,0.0784187167882919,0.996683597564697,0.0162442643195391,0.0797377675771713,0.497432082891464,-0.865325748920441,0.0614239983260632,0.497432082891464,-0.865325748920441,0.0614239871501923,0.497431993484497,-0.865325689315796,0.0614239647984505,0.999473810195923,-0.0222088322043419,-0.0236409418284893,0.999167680740356,-0.0222129989415407,-0.0342158675193787,0.998974978923798,-0.0222141407430172,-0.0394400730729103,0.999335289001465,-0.0222112163901329,-0.0289081707596779,0.99958610534668,-0.0222057774662972,-0.0182904843240976,0.999051094055176,0.026833139359951,0.0343082211911678,0.999961018562317,0.00805029086768627,-0.0036197048611939,0.999715387821198,0.023773992434144,0.0019774017855525,0.999193131923676,0.0209294725209475,0.0342796146869659,0.998077690601349,-0.0188196804374456,-0.0590501800179482,0.997316658496857,-0.0182097926735878,-0.070908360183239,0.998041391372681,-0.0187878664582968,-0.0596701912581921,0.998295903205872,-0.0190186314284801,-0.0551688373088837,0.998249590396881,-0.01897525601089,-0.0560156367719173,0.997648537158966,-0.0184623561799526,-0.0660049840807915,0.997105598449707,-0.0180578306317329,-0.0738535895943642,-0.00630552694201469,-0.999980092048645,0.00029535056091845,-0.00630519958212972,-0.999980092048645,0.000304853194393218,-0.00616290327161551,-0.999971270561218,0.00443785823881626,-0.00602082721889019,-0.999945223331451,0.00856128428131342,
- -0.00621045520529151,-0.9999760389328,0.00305701955221593,0.0161417257040739,0.999671399593353,-0.0199182666838169,0.0162137914448977,0.999740719795227,-0.015991410240531,0.0162750501185656,0.99978768825531,-0.0126425316557288,0.0162644870579243,0.999780416488647,-0.013220751658082,0.0162307024002075,0.99975460767746,-0.015067863278091,-0.696175456047058,-0.716995000839233,0.0354665853083134,-0.696175515651703,-0.716994941234589,0.0354665368795395,-0.696175515651703,-0.716995000839233,0.0354665629565716,0.999715387821198,0.023773992434144,0.0019774017855525,0.999961018562317,0.00805029086768627,-0.0036197048611939,0.999082028865814,-0.0260482095181942,-0.034009326249361,0.999389410018921,-0.00873868446797132,-0.0338308438658714,0.999351382255554,0.0129756247624755,-0.0335926450788975,0.999277114868164,-0.0139060579240322,-0.0353845991194248,0.99934458732605,-0.00832875166088343,-0.035229716449976,0.99937629699707,-0.00383656029589474,-0.0351041816174984,0.999321341514587,-0.0105496756732464,-0.0352915227413177,0.999260246753693,-0.0149913225322962,-0.0354146063327789,-0.0879093334078789,0.996128559112549,0.000255964900134131,-0.0879093334078789,0.996128559112549,0.000255964900134131,-0.0879093334078789,0.996128559112549,0.000255963037488982,-0.998788595199585,0.0487666465342045,-0.00657483236864209,-0.995897591114044,0.0900328606367111,-0.0090586980804801,-0.999096572399139,0.0420463532209396,-0.00616973778232932,-0.997457563877106,0.0708228498697281,-0.0079032015055418,-0.998434007167816,0.0555056892335415,-0.0069808904081583,-0.999324381351471,-0.036725640296936,-0.00140913832001388,-0.999517261981964,0.0220210831612349,-0.0219168551266193,-0.999524116516113,0.0217128451913595,-0.0219131875783205,-0.999529838562012,0.0214505717158318,-0.0219100620597601,-0.999528884887695,0.0214945748448372,-0.0219105891883373,-0.999528884887695,0.0214926078915596,-0.0219105631113052,-0.999526560306549,0.0216037109494209,-0.0219118874520063,-0.118533007800579,-0.983338236808777,0.13782525062561,-0.118441544473171,-0.98121041059494,0.152307763695717,
- -0.118431828916073,-0.981003284454346,0.153644606471062,-0.11842293292284,-0.980816602706909,0.154838010668755,-0.118398800492287,-0.980319738388062,0.157971009612083,-0.118442058563232,-0.981221437454224,0.15223616361618,-0.982422709465027,-0.113127380609512,0.148485153913498,-0.982422709465027,-0.113127388060093,0.148485168814659,-0.982422709465027,-0.113127380609512,0.148485168814659,-0.852487802505493,0.487931936979294,-0.187581896781921,-0.852487802505493,0.487931936979294,-0.187581896781921,-0.852487802505493,0.487931936979294,-0.187581926584244,-0.994176089763641,0.10642397403717,-0.0169655866920948,-0.994228720664978,0.106469750404358,-0.0131737720221281,-0.994292974472046,0.106561921536922,-0.00511220749467611,-0.99429315328598,0.106645673513412,0.00280025787651539,-0.994272410869598,0.106681980192661,0.00644303485751152,-0.994292676448822,0.106561109423637,-0.00518692005425692,0.118359670042992,0.992207944393158,-0.0389165319502354,0.118480399250984,0.992351174354553,-0.0346633344888687,0.118557825684547,0.992434859275818,-0.0318951718509197,0.118479810655117,0.992350518703461,-0.0346832312643528,0.118373446166515,0.992225050926209,-0.0384347029030323,0.118235617876053,0.992045044898987,-0.043208796530962,0.333636313676834,0.942192614078522,-0.0309851448982954,0.333636343479156,0.942192614078522,-0.0309851318597794,0.333636343479156,0.942192614078522,-0.0309851318597794,-0.993003904819489,0.107016161084175,0.0499091856181622,-0.993856012821198,0.106883481144905,0.0287428926676512,-0.993355572223663,0.106974817812443,0.0424392446875572,-0.992664813995361,0.107046313583851,0.0561931058764458,-0.992596685886383,0.107051528990269,0.0573756322264671,-0.992530882358551,0.107056304812431,0.0584926009178162,-0.441733241081238,0.897044241428375,0.0135419713333249,-0.44173327088356,0.897044241428375,0.0135420020669699,-0.441733241081238,0.897044241428375,0.0135419862344861,0.997704207897186,-0.0676694884896278,-0.00269407778978348,0.999622702598572,-0.0274567324668169,-0.000766114622820169,0.997242271900177,-0.0741541832685471,-0.00300506455823779,
- 0.998930931091309,-0.0461960099637508,-0.00166444072965533,0.998125016689301,-0.0611627846956253,-0.00238205911591649,0.988604605197906,-0.150387838482857,-0.00666276505216956,0.995562136173248,-0.0933499857783318,0.0119101628661156,0.995534002780914,-0.0936501920223236,0.0119098275899887,0.995509624481201,-0.0939080640673637,0.0119095370173454,0.995514154434204,-0.0938610434532166,0.0119095928966999,0.995514512062073,-0.0938563197851181,0.0119095956906676,0.995524048805237,-0.0937556177377701,0.0119097102433443,-5.25416616881103e-008,-0.992361724376678,-0.123362071812153,-5.24440437743579e-008,-0.990517973899841,-0.137382730841637,-5.24346397412501e-008,-0.990340352058411,-0.138658240437508,-5.24261629664124e-008,-0.990180253982544,-0.139796569943428,-5.24030419057908e-008,-0.989743709564209,-0.142854452133179,-5.24445482597002e-008,-0.99052757024765,-0.13731424510479,0.963510870933533,-0.224180996417999,-0.146251976490021,0.963510990142822,-0.22418101131916,-0.146251976490021,0.963510870933533,-0.22418101131916,-0.146251976490021,0.911582112312317,0.376895546913147,0.164219439029694,0.911582052707672,0.37689545750618,0.164219379425049,0.911582112312317,0.376895546913147,0.164219439029694,0.99991500377655,-0.0113655459135771,0.00638775620609522,0.999931335449219,-0.011366518214345,0.0028756340034306,0.999924838542938,-0.0113681247457862,-0.00461342744529247,0.999863386154175,-0.0113690821453929,-0.0119998576119542,0.999816656112671,-0.0113693149760365,-0.0154093177989125,0.999925017356873,-0.0113681154325604,-0.00456223962828517,0.000118398078484461,0.999606132507324,0.0280645173043013,-3.72448630514555e-005,0.99971330165863,0.0239436291158199,-0.000137561044539325,0.999773383140564,0.0212873797863722,-3.65437008440495e-005,0.999712944030762,0.0239621978253126,0.000100423305411823,0.99961930513382,0.0275886263698339,0.000275441532721743,0.999480724334717,0.0322220511734486,-0.22577340900898,0.973913788795471,0.0227660816162825,-0.225773423910141,0.973913788795471,0.0227660704404116,-0.225773423910141,0.973913788795471,0.0227660704404116,
- 0.998365640640259,-0.0113534154370427,-0.0560109876096249,0.999278247356415,-0.0113594923168421,-0.0362480394542217,0.998732686042786,-0.0113560697063804,-0.049031637609005,0.998019814491272,-0.0113507583737373,-0.0618683472275734,0.997949838638306,-0.0113502060994506,-0.0629870221018791,0.997882604598999,-0.0113496724516153,-0.0640444830060005,0.555277287960052,0.831261336803436,-0.0259178467094898,0.555277287960052,0.831261336803436,-0.0259178671985865,0.555277287960052,0.831261336803436,-0.0259178820997477,0.999741971492767,-0.0203254912048578,-0.010149534791708,0.999792277812958,-0.0203803367912769,0.000300191633868963,0.999776840209961,-0.0204065982252359,0.00546047044917941,0.999780595302582,-0.0203530807048082,-0.00494628446176648,0.999674797058105,-0.0202968865633011,-0.0154386898502707,0.996018588542938,-0.058337178081274,-0.0674079656600952,0.998622596263886,-0.0433624871075153,-0.0295382887125015,0.997847437858582,-0.0553140714764595,-0.0352248698472977,0.996349036693573,-0.0524186417460442,-0.0673859491944313,0.999610602855682,-0.0126811852678657,0.0248566847294569,0.99924224615097,-0.0132715683430433,0.0365895256400108,0.99959409236908,-0.0127135058864951,0.0254981648176908,0.999701023101807,-0.0124878538772464,0.0210213605314493,0.999682426452637,-0.0125303342938423,0.0218638461083174,0.999411344528198,-0.0130277080461383,0.0317393727600574,0.999130487442017,-0.0134165594354272,0.0394757688045502,0.0251481346786022,0.999683678150177,-0.000301607477013022,0.0251481309533119,0.999683678150177,-0.000325397355481982,0.0251478627324104,0.999674797058105,-0.00422715442255139,0.0251472163945436,0.999650895595551,-0.00810505822300911,0.0251479968428612,0.999679446220398,-0.00291863735765219,-0.0146007426083088,-0.999707460403442,0.0192834623157978,-0.014666099101305,-0.99977433681488,0.0153692746534944,-0.0147200915962458,-0.99981814622879,0.0121253011748195,-0.0147089445963502,-0.999809920787811,0.0127957435324788,-0.0146803921088576,-0.999786972999573,0.0145114362239838,-0.677182018756866,0.735718965530396,-0.0119281224906445,
- -0.677182018756866,0.735718965530396,-0.0119281196966767,-0.677182018756866,0.735718965530396,-0.0119281224906445,0.997847437858582,-0.0553140714764595,-0.0352248698472977,0.998622596263886,-0.0433624871075153,-0.0295382887125015,0.999621570110321,-0.0275088101625443,-5.7762586948229e-005,0.999540209770203,-0.0303233992308378,-8.70141957420856e-005,0.999158024787903,-0.0410271212458611,-0.000198272842681035,0.999638915061951,-0.0268419738858938,0.00131016981322318,0.99962329864502,-0.0274185221642256,0.00129449611995369,0.999591171741486,-0.0285646822303534,0.00126333523076028,0.99962329864502,-0.0274162199348211,0.00129455875139683,0.999623417854309,-0.0274116154760122,0.0012946838978678,-0.117979906499386,-0.993011951446533,0.00287170358933508,-0.117979906499386,-0.993011951446533,0.00287170079536736,-0.117979906499386,-0.993011951446533,0.00287170382216573,0.999002933502197,0.044555377215147,0.00281248241662979,0.99999475479126,0.00313912238925695,0.000802774215117097,0.9986811876297,0.0512458793818951,0.00313703180290759,0.999746918678284,0.0224287752062082,0.00173893687315285,0.999280691146851,0.0378419421613216,0.00248679216019809,0.99150675535202,0.129869595170021,0.0069487770088017,0.997395992279053,0.0710429921746254,-0.0124163879081607,0.997374057769775,0.0713515058159828,-0.0124160200357437,0.997355222702026,0.0716144815087318,-0.0124157052487135,0.997358322143555,0.0715702772140503,-0.0124157555401325,0.997358202934265,0.0715716034173965,-0.0124157555401325,0.997366189956665,0.0714608952403069,-0.0124158887192607,0.0249403044581413,0.991851210594177,0.124936692416668,0.0248934272676706,0.989967048168182,0.139089211821556,0.024888850748539,0.98978316783905,0.140392139554024,0.0248847398906946,0.989618003368378,0.141552165150642,0.0248736944049597,0.989174425601959,0.144621059298515,0.0248936768621206,0.98997700214386,0.13901786506176,0.966646134853363,0.206026837229729,0.152145966887474,0.966646134853363,0.206026837229729,0.152145966887474,0.966646134853363,0.206026837229729,0.152145966887474,0.896719992160797,-0.408542841672897,-0.170252710580826,
- 0.896719992160797,-0.408542841672897,-0.170252710580826,0.896719992160797,-0.408542811870575,-0.170252680778503,0.999887347221375,-0.0134296538308263,-0.00670704385265708,0.999905288219452,-0.013429082930088,-0.00303068291395903,0.999898314476013,-0.0134272528812289,0.00481046177446842,0.99983149766922,-0.0134246507659554,0.012521761469543,0.999780774116516,-0.013423184864223,0.0160682443529367,0.999898672103882,-0.0134272733703256,0.00474568456411362,-0.0249712355434895,-0.999283671379089,-0.0284361969679594,-0.0251245275139809,-0.999389410018921,-0.0242792684584856,-0.0252232346683741,-0.999448537826538,-0.0215961690992117,-0.0251237209886312,-0.999388933181763,-0.024301253259182,-0.0249888319522142,-0.99929666519165,-0.0279595199972391,-0.0248158760368824,-0.999159157276154,-0.0326365903019905,-0.244086980819702,-0.969477951526642,-0.0231083575636148,-0.244086995720863,-0.969477951526642,-0.0231083501130342,-0.244086995720863,-0.969477951526642,-0.0231083501130342,0.998202443122864,-0.0134013304486871,0.05841463804245,0.999195516109467,-0.0134191252291203,0.0377927199006081,0.998601675033569,-0.0134082650765777,0.0511365868151188,0.997825622558594,-0.0133949471637607,0.0645351186394691,0.997750282287598,-0.0133936842903495,0.0656889453530312,0.99767792224884,-0.0133924791589379,0.0667789205908775,0.522848665714264,-0.852011501789093,0.0265649985522032,0.522848665714264,-0.852011501789093,0.0265650097280741,0.522848665714264,-0.852011501789093,0.0265650004148483,-0.993048071861267,0.117660261690617,0.00339460140094161,-0.996978223323822,0.0775579363107681,0.00440360512584448,-0.992262005805969,0.12412004172802,0.00323110073804855,-0.995348751544952,0.096256285905838,0.00393442576751113,-0.993794322013855,0.111176401376724,0.00355844013392925,-0.979817032814026,0.199892267584801,0.00129286455921829,-0.989597976207733,0.142841994762421,0.0170885883271694,-0.989554405212402,0.143142759799957,0.017093762755394,-0.989516615867615,0.143403202295303,0.0170982405543327,-0.98952305316925,0.143359363079071,0.0170974880456924,
- -0.989523530006409,0.143355876207352,0.0170974265784025,-0.989538788795471,0.143251076340675,0.0170956254005432,0.0493712462484837,0.994407415390015,-0.0933616608381271,0.0492229498922825,0.993134796619415,-0.106115579605103,0.0492090061306953,0.993010461330414,-0.107279136776924,0.0491964519023895,0.992897868156433,-0.108321569859982,0.0491627492010593,0.992592632770538,-0.111098125576973,0.0492236688733101,0.993141233921051,-0.106055073440075,-0.953091740608215,0.276104211807251,-0.12402680516243,-0.95309180021286,0.276104301214218,-0.124026849865913,-0.95309180021286,0.276104241609573,-0.124026827514172,-0.93067330121994,-0.335357576608658,0.146227657794952,-0.93067330121994,-0.335357576608658,0.146227672696114,-0.93067330121994,-0.335357576608658,0.146227657794952,-0.99806147813797,0.061333954334259,0.0105673586949706,-0.998084664344788,0.0614203922450542,0.00739879952743649,-0.998100519180298,0.0616029873490334,0.000627755478490144,-0.998071312904358,0.0617807321250439,-0.00606517260894179,-0.998042821884155,0.0618618614971638,-0.0091556254774332,-0.998100638389587,0.0616019479930401,0.000666827487293631,-0.0502068474888802,-0.998715281486511,0.006875891238451,-0.0500770434737206,-0.998740434646606,0.00314593128859997,-0.0499927289783955,-0.998749315738678,0.000733597844373435,-0.0500775389373302,-0.998740375041962,0.00316004897467792,-0.0501919277012348,-0.998718857765198,0.00644608680158854,-0.0503369234502316,-0.99867570400238,0.0106339883059263,0.176725536584854,-0.984259009361267,0.00153021025471389,0.176725536584854,-0.984259009361267,0.00153021037112921,0.176725536584854,-0.984259009361267,0.00153021037112921,-0.996970236301422,0.06277234852314,-0.0459359139204025,-0.997661530971527,0.0623349025845528,-0.0280334204435349,-0.997250974178314,0.0626201406121254,-0.0396143458783627,-0.996703505516052,0.0628982782363892,-0.0512453690171242,-0.996649503707886,0.0629220306873322,-0.0522552244365215,-0.996597588062286,0.0629444122314453,-0.0532096214592457,-0.596687614917755,-0.801650643348694,-0.036333154886961,
- -0.596687614917755,-0.801650643348694,-0.0363331697881222,-0.596687614917755,-0.801650702953339,-0.0363331437110901,-0.991342306137085,-0.067642830312252,0.112538427114487,-0.993482112884521,-0.0274507571011782,0.110634364187717,-0.99084484577179,-0.0741354003548622,0.112829312682152,-0.992685854434967,-0.0461813174188137,0.111543789505959,-0.991798937320709,-0.0611282214522362,0.112241856753826,-0.981821656227112,-0.150316923856735,0.115892462432384,-0.990967810153961,-0.093333788216114,0.09628926217556,-0.990939795970917,-0.0936343967914581,0.0962865352630615,-0.990915477275848,-0.093893013894558,0.0962841659784317,-0.990919709205627,-0.0938478335738182,0.0962845683097839,-0.990920007228851,-0.0938446298241615,0.0962846130132675,-0.99092972278595,-0.0937411114573479,0.0962855443358421,0.0144287561997771,-0.99071192741394,0.135210514068604,0.0160599108785391,-0.988478541374207,0.150506988167763,0.0162091497331858,-0.988262057304382,0.151906505227089,0.016342444345355,-0.988066792488098,0.153156518936157,0.0166968964040279,-0.987539947032928,0.156480461359024,0.0160519499331713,-0.988490045070648,0.150432363152504,-0.937826693058014,-0.223473116755486,0.265595227479935,-0.937826693058014,-0.223473086953163,0.265595227479935,-0.937826693058014,-0.223473116755486,0.265595227479935,-0.92318594455719,0.3759605884552,-0.0798836648464203,-0.92318594455719,0.3759605884552,-0.0798836648464203,-0.92318594455719,0.3759605884552,-0.0798836648464203,-0.994638442993164,-0.011363236233592,0.102787658572197,-0.994231820106506,-0.0113640762865543,0.106648445129395,-0.993312656879425,-0.0113652963191271,0.114895291626453,-0.992341458797455,-0.0113657331094146,0.123000912368298,-0.991873502731323,-0.0113656800240278,0.126719400286675,-0.993320286273956,-0.0113652907311916,0.114828571677208,-0.00342875090427697,0.9995197057724,-0.0308014675974846,-0.00279398215934634,0.999649941921234,-0.0263110045343637,-0.00238038995303214,0.999723792076111,-0.0233851056545973,-0.0027966380584985,0.999649405479431,-0.0263297893106937,-0.00335678784176707,0.999535501003265,-0.0302923992276192,
- -0.00406875927001238,0.999367475509644,-0.0353288576006889,0.221866637468338,0.973802328109741,-0.0498415231704712,0.221866607666016,0.973802328109741,-0.0498415343463421,0.221866607666016,0.973802328109741,-0.0498415380716324,-0.985197484493256,-0.0113441813737154,0.171047300100327,-0.988696277141571,-0.0113534200936556,0.149501740932465,-0.986487329006195,-0.011348064057529,0.163443967700005,-0.984069883823395,-0.011340401135385,0.177420079708099,-0.983849287033081,-0.011339626275003,0.178639724850655,-0.983639180660248,-0.0113388728350401,0.179792612791061,-0.549030959606171,0.831003963947296,0.0894280448555946,-0.549030959606171,0.831004023551941,0.0894280150532722,-0.549030959606171,0.831003963947296,0.0894280299544334,-0.999368727207184,0.00254055205732584,0.0354357361793518,-0.999718010425568,0.00262922304682434,0.0235965140163898,-0.999355256557465,0.00253771524876356,0.0358136482536793,-0.999394178390503,0.00254597677849233,0.0347129628062248,-0.999723792076111,0.00263102375902236,0.0233554877340794,-0.999853014945984,0.00267894216813147,0.0169349126517773,0.000179349561221898,-0.99999737739563,0.00229472131468356,0.000273455952992663,-0.99999213218689,0.00398504780605435,0.000209469202673063,-0.999995946884155,0.0028357261326164,5.13752602273598e-005,-1,-3.93268192055984e-006,0.000199429283384234,-0.999996423721313,0.00265539065003395,0.027210483327508,0.999382734298706,0.0222246665507555,0.0274309422820807,0.999279320240021,0.0262372810393572,0.0269793495535851,0.999473452568054,0.0180260017514229,0.0267586540430784,0.99954354763031,0.0140246469527483,0.027280829846859,0.999351441860199,0.0235043298453093,0.027546426281333,0.999218702316284,0.0283422525972128,-0.9994016289711,-0.0106634274125099,0.032904390245676,-0.998576402664185,-0.0104058431461453,0.0523156858980656,-0.999081611633301,-0.0105495061725378,0.0415283590555191,-0.999672770500183,-0.0107907131314278,0.0231938045471907,-0.99981826543808,-0.0108888717368245,0.0156500991433859,-0.998944461345673,-0.00916297174990177,0.0450116693973541,-0.998969197273254,-0.00602095620706677,0.0449942760169506,
- -0.998834550380707,-0.0173105169087648,0.045054730027914,-0.998928368091583,-0.0107341948896647,0.0450202077627182,-0.998965263366699,0.00713290460407734,0.0449165962636471,-0.999025464057922,0.00789164658635855,0.0434266105294228,-0.999056398868561,0.00179973093327135,0.0433931089937687,-0.999058067798615,0.000756698660552502,0.0433872155845165,-0.999056339263916,0.00185279594734311,0.0433934107422829,-0.999037504196167,0.00624405778944492,0.0434177219867706,-0.998955965042114,0.014089391566813,0.0434590578079224,-0.604839205741882,0.795324146747589,0.0403616316616535,-0.604839265346527,0.795324087142944,0.0403615832328796,-0.604839205741882,0.795324146747589,0.0403616391122341,0.619235455989838,-0.78474497795105,-0.0268840156495571,0.619235455989838,-0.78474497795105,-0.0268840193748474,0.619235455989838,-0.78474497795105,-0.0268840193748474,-0.843037307262421,-0.386550009250641,-0.373988270759583,-0.843037307262421,-0.386549979448318,-0.373988270759583,-0.843037307262421,-0.386550009250641,-0.373988270759583,0.980203688144684,-0.197991624474525,0.000250118231633678,0.980165541172028,-0.197719097137451,0.013524467125535,0.980201959609985,-0.19800016283989,-0.000196245877305046,0.980206310749054,-0.197976037859917,0.00105745147448033,0.980162799358368,-0.19771321117878,0.0137935811653733,0.980067551136017,-0.197549939155579,0.0210121423006058,-0.202871352434158,-0.979204416275024,0.00139796175062656,-0.202929854393005,-0.979165554046631,-0.0073755425401032,-0.202935814857483,-0.979155778884888,-0.00842945743352175,-0.202895030379295,-0.979198694229126,-0.00187792989891022,-0.202807024121284,-0.97917628288269,0.00911745894700289,0.180988281965256,0.98339980840683,-0.0129648428410292,0.180853605270386,0.983183026313782,-0.0253578573465347,0.180864825844765,0.98320484161377,-0.0244164019823074,0.180858075618744,0.983191788196564,-0.0249861981719732,0.180804163217545,0.983080685138702,-0.0293642189353704,0.180844515562058,0.983164966106415,-0.0261135306209326,0.977085649967194,-0.212017223238945,-0.018776148557663,0.977364718914032,-0.21148157119751,-0.00581394415348768,
- 0.977471590042114,-0.211009204387665,0.00496385293081403,0.977442562580109,-0.211200445890427,0.000667586398776621,0.977268755435944,-0.211708590388298,-0.0112027442082763,0.977255284786224,-0.211814910173416,-0.010323123075068,0.978044152259827,-0.208140835165977,-0.0103452000766993,0.975143313407898,-0.221337378025055,-0.010265139862895,0.976855516433716,-0.21365125477314,-0.0103120263665915,0.981200098991394,-0.192711293697357,-0.0104361306875944,0.983873188495636,-0.17854630947113,-0.0107229622080922,0.983376324176788,-0.181262075901031,-0.0107213938608766,0.979505598545074,-0.201132163405418,-0.0107074081897736,0.982491552829742,-0.185998544096947,-0.0107184629887342,0.984336733818054,-0.175972267985344,-0.010724370367825,0.98262232542038,-0.18530647456646,-0.0107189062982798,0.695576429367065,0.717899262905121,-0.028181578963995,0.695576429367065,0.717899262905121,-0.0281816106289625,0.695576429367065,0.717899262905121,-0.0281815808266401,-0.707212150096893,-0.706860482692719,0.0141189759597182,-0.707212209701538,-0.706860423088074,0.0141190392896533,-0.707212150096893,-0.706860423088074,0.0141189955174923,0.682983160018921,-0.585620880126953,0.43655714392662,0.682983219623566,-0.585620880126953,0.43655714392662,0.682983160018921,-0.585620880126953,0.43655714392662,-0.997405529022217,0.0719469711184502,-0.00243851030245423,-0.999572455883026,0.0292337499558926,-0.000696525617968291,-0.996878087520599,0.0789084061980248,-0.00272250710986555,-0.998790562152863,0.0491449050605297,-0.00150845444295555,-0.997885584831238,0.0649587884545326,-0.00215344713069499,-0.987141609191895,0.159734845161438,-0.00602166401222348,-0.994995415210724,0.0993378907442093,0.0107769472524524,-0.994963586330414,0.0996568948030472,0.0107766026630998,-0.994936287403107,0.0999293699860573,0.0107763083651662,-0.994940936565399,0.0998831242322922,0.0107763577252626,-0.99494081735611,0.0998833701014519,0.0107763567939401,-0.994952261447906,0.0997700095176697,0.0107764797285199,1.69328160382065e-007,0.994456589221954,-0.105147868394852,1.69262222016187e-007,0.994069039821625,-0.108751274645329,
- 1.68987028814627e-007,0.99245297908783,-0.122626110911369,1.69057159382646e-007,0.992864906787872,-0.119244739413261,1.68876752582037e-007,0.99180543422699,-0.12775781750679,1.69083875789511e-007,0.993021726608276,-0.117931455373764,-0.962121605873108,0.238366603851318,-0.132300511002541,-0.962121605873108,0.238366574048996,-0.132300496101379,-0.962121605873108,0.238366574048996,-0.132300481200218,-0.905226051807404,-0.398446589708328,0.14766900241375,-0.905226051807404,-0.398446559906006,0.147668972611427,-0.905226051807404,-0.398446559906006,0.147668957710266,-0.999909460544586,0.0121017657220364,0.00588489044457674,-0.999923348426819,0.0121027901768684,0.00265642022714019,-0.999918043613434,0.0121045410633087,-0.00417943904176354,-0.999867618083954,0.0121057061478496,-0.0108722504228354,-0.999829411506653,0.0121060619130731,-0.0139576531946659,-0.999918341636658,0.0121045252308249,-0.00410801079124212,-0.000143599769216962,-0.999714553356171,0.0238947980105877,2.59594480667147e-006,-0.999792098999023,0.0203910022974014,9.83063073363155e-005,-0.999836325645447,0.0180970281362534,2.14762849282124e-006,-0.999791920185089,0.0204017516225576,-0.000127070394228213,-0.999723970890045,0.0234986562281847,-0.000290690921247005,-0.999624073505402,0.0274197906255722,0.212758660316467,-0.976911425590515,0.0194390621036291,0.212758660316467,-0.97691136598587,0.0194390527904034,0.212758660316467,-0.97691136598587,0.0194390546530485,-0.998638033866882,0.0120920827612281,-0.0507548004388809,-0.999387502670288,0.0120965270325542,-0.0328380465507507,-0.998939514160156,0.0120940981432796,-0.0444274507462978,-0.998353958129883,0.0120900189504027,-0.056066308170557,-0.998296439647675,0.0120895821601152,-0.0570796839892864,-0.998241186141968,0.0120891630649567,-0.0580375827848911,-0.531695067882538,-0.846638381481171,-0.0224459394812584,-0.531695008277893,-0.846638381481171,-0.0224459208548069,-0.531695067882538,-0.846638381481171,-0.0224459413439035,-0.997892141342163,-0.0648901909589767,0.000692327274009585,-0.999654054641724,-0.0263052675873041,-2.24427731154719e-005,
- -0.997468769550323,-0.0710998922586441,0.000807430711574852,-0.999018669128418,-0.0442911051213741,0.000310642819385976,-0.99827778339386,-0.0586611442267895,0.000576885242480785,-0.989533841609955,-0.144284561276436,0.00216548657044768,-0.995940446853638,-0.088996134698391,-0.0135027496144176,-0.995914697647095,-0.0892835482954979,-0.0135110896080732,-0.99433696269989,-0.105350933969021,-0.0139757981523871,-0.994726657867432,-0.101619467139244,-0.0138681260868907,-0.99653571844101,-0.0820954293012619,-0.0133022693917155,-0.995339810848236,-0.0954527407884598,-0.0136898513883352,-0.000213111139601097,-0.995745062828064,0.0921506434679031,-0.000196607055841014,-0.993970930576324,0.109644010663033,-0.000194177322555333,-0.993684470653534,0.112211123108864,-0.000199128015083261,-0.99426132440567,0.106978327035904,-0.000191933664609678,-0.993413984775543,0.114579774439335,-0.000200295806280337,-0.994393527507782,0.105742730200291,-0.966693162918091,-0.220044031739235,0.130709558725357,-0.966693162918091,-0.220044031739235,0.130709558725357,-0.966693162918091,-0.220044061541557,0.130709558725357,-0.94933146238327,0.276713848114014,-0.148993909358978,-0.94933146238327,0.276713877916336,-0.148993939161301,-0.94933146238327,0.276713877916336,-0.148993939161301,-0.99992311000824,-0.0106685403734446,-0.00632217153906822,-0.999937295913696,-0.0107845263555646,-0.00302610034123063,-0.999931216239929,-0.0110311089083552,0.00399237498641014,-0.999877214431763,-0.0112727973610163,0.0108864912763238,-0.999836385250092,-0.0113838128745556,0.0140581810846925,-0.999931454658508,-0.0110289296135306,0.0039302920922637,0.000313299387926236,0.999999582767487,0.000867670343723148,0.000542452151421458,0.999979197978973,0.00643333839252591,0.000580511754378676,0.999972760677338,0.00735775055363774,0.000459128175862134,0.999990165233612,0.00440953858196735,0.000217750275623985,0.999998927116394,-0.00145296496339142,0.000143025303259492,0.99999475479126,-0.00326781254261732,0.259514212608337,0.965722322463989,0.00572271505370736,0.259514212608337,0.965722322463989,0.0057227136567235,
- 0.259514212608337,0.965722322463989,0.00572270387783647,-0.998548090457916,-0.0145452218130231,0.0518674775958061,-0.999360620975494,-0.0127064222469926,0.0334200970828533,-0.998877942562103,-0.0138887194916606,0.0452775210142136,-0.998250186443329,-0.0150741655379534,0.0571799799799919,-0.99817430973053,-0.0152010433375835,0.0584546811878681,-0.998100101947784,-0.0153227727860212,0.0596778392791748,-0.572121202945709,0.818761348724365,0.0480353161692619,-0.572121202945709,0.818761229515076,0.0480353236198425,-0.572121202945709,0.818761348724365,0.0480353012681007,-0.990831136703491,0.120663002133369,0.0607793740928173,-0.99129182100296,0.12018746137619,0.0538099519908428,-0.991981327533722,0.117501474916935,0.0465450547635555,-0.991203725337982,0.119001895189285,0.0579105652868748,-0.990269362926483,0.12052595615387,0.0695709064602852,-0.98789644241333,0.0863096341490746,0.128884553909302,-0.992321491241455,0.089107371866703,0.0857781022787094,-0.991658806800842,0.0896114185452461,0.092642217874527,-0.987408995628357,0.0917267650365829,0.128878459334373,-0.991250455379486,0.129779398441315,0.0240851528942585,-0.991557657718658,0.129229366779327,0.0106393648311496,-0.991275727748871,0.129744499921799,0.0232150219380856,-0.991120636463165,0.129942819476128,0.0281946714967489,-0.991154432296753,0.129902362823486,0.0271720737218857,-0.991455435752869,0.129453763365746,0.0160566307604313,-0.991605460643768,0.129091337323189,0.00735242897644639,0.117144383490086,0.993113100528717,0.00188370025716722,0.11725939810276,0.99309241771698,0.00419730879366398,0.117490269243717,0.993034422397614,0.00888009089976549,0.117717355489731,0.992954850196838,0.0135386837646365,0.117451101541519,0.99304586648941,0.00808236002922058,0.117258824408054,0.993092656135559,0.00418531149625778,-0.129042327404022,-0.991296470165253,-0.0260643754154444,-0.128525570034981,-0.991548478603363,-0.0176832526922226,-0.128347381949425,-0.991618514060974,-0.0148265613242984,-0.128395885229111,-0.991600275039673,-0.0156028149649501,-0.128307893872261,-0.991632759571075,-0.0141957607120276,
- -0.128638342022896,-0.991499900817871,-0.0194996800273657,0.774849712848663,0.631772458553314,-0.0217130146920681,0.774849712848663,0.631772518157959,-0.0217129848897457,0.774849712848663,0.631772458553314,-0.0217129997909069,-0.991658806800842,0.0896114185452461,0.092642217874527,-0.992321491241455,0.089107371866703,0.0857781022787094,-0.991903066635132,0.115710362792015,0.0523398444056511,-0.994574785232544,0.0897513553500175,0.0525887757539749,-0.995415866374969,0.0798285529017448,0.0526743233203888,-0.991999387741089,0.115578711032867,0.050782959908247,-0.99206531047821,0.115003652870655,0.0507999770343304,-0.992197632789612,0.113841742277145,0.0508343130350113,-0.992065727710724,0.114999748766422,0.0508000887930393,-0.992066621780396,0.114991933107376,0.0508003272116184,-0.0247734393924475,-0.999646306037903,-0.00967429578304291,-0.0247734393924475,-0.999646306037903,-0.00967429578304291,-0.0247734412550926,-0.999646306037903,-0.00967429485172033,-0.990847527980804,0.122009731829166,0.057749580591917,-0.990847051143646,0.122009709477425,0.0577558539807796,-0.99129182100296,0.12018746137619,0.0538099519908428,-0.990831136703491,0.120663002133369,0.0607793740928173,0.994698584079742,0.102791607379913,0.00294365943409503,0.998033165931702,0.0626829043030739,0.000834682781714946,0.994007170200348,0.109265245497227,0.00328442989848554,0.996681153774261,0.0813841670751572,0.00181752617936581,0.995349526405334,0.0962944626808167,0.00260175834409893,0.982691287994385,0.185107588768005,0.0072846282273531,0.991637408733368,0.128396704792976,-0.01302276737988,0.991599321365356,0.128690719604492,-0.0130224097520113,0.991567134857178,0.128938689827919,-0.0130221080034971,0.991572141647339,0.128900170326233,-0.0130221536383033,0.991571187973022,0.128907680511475,-0.0130221452564001,0.991585731506348,0.128795444965363,-0.0130222821608186,-0.0349123366177082,0.990260362625122,0.134779766201973,-0.0348350331187248,0.988068580627441,0.150023326277733,-0.0348275601863861,0.98785674571991,0.151413947343826,-0.0348208174109459,0.987665414810181,0.152658239006996,
- -0.0348025560379028,0.987147748470306,0.155974477529526,-0.0348354242742062,0.988079726696014,0.149950280785561,0.953005790710449,0.257463306188583,0.159664213657379,0.953005790710449,0.257463276386261,0.159664198756218,0.953005731105804,0.257463335990906,0.159664213657379,0.921914279460907,-0.343500286340714,-0.179113984107971,0.921914279460907,-0.343500286340714,-0.179113984107971,0.921914279460907,-0.343500286340714,-0.17911396920681,0.998888432979584,0.0466120056807995,-0.00701960222795606,0.998908042907715,0.0466137155890465,-0.00316044082865119,0.998900175094604,0.0466150380671024,0.00505219306796789,0.998826742172241,0.0466132760047913,0.0131321102380753,0.998770833015442,0.0466114319860935,0.0168585143983364,0.998900473117828,0.046615045517683,0.00498600210994482,0.0353819243609905,-0.998902201652527,-0.0307010635733604,0.0352301970124245,-0.999036252498627,-0.0261792857199907,0.0351330488920212,-0.999111115932465,-0.0232948046177626,0.035230714827776,-0.999035835266113,-0.0261947270482779,0.0353639870882034,-0.998919188976288,-0.0301655288785696,0.0355339460074902,-0.998746514320374,-0.0352530889213085,-0.191423639655113,-0.981191515922546,-0.0249030999839306,-0.191423639655113,-0.981191515922546,-0.0249031111598015,-0.191423639655113,-0.981191515922546,-0.0249031074345112,0.997036576271057,0.0465320199728012,0.0612606108188629,0.998126864433289,0.0465785823762417,0.0396633371710777,0.997475266456604,0.0465509667992592,0.0536310523748398,0.996623933315277,0.0465140491724014,0.0676551014184952,0.996539831161499,0.0465103723108768,0.0688858553767204,0.996458828449249,0.0465068183839321,0.0700496733188629,0.584329426288605,-0.81102192401886,0.0283296387642622,0.584329545497894,-0.811021983623505,0.0283296629786491,0.584329426288605,-0.81102192401886,0.0283296257257462,0.00591766787692904,-0.0243729632347822,0.999685406684875,0.00579050974920392,-0.0243736337870359,0.999686241149902,-0.000477255642181262,-0.0244059860706329,0.999702036380768,0.00598125159740448,-0.0243726279586554,0.999684989452362,0.0187065359205008,-0.024303924292326,0.999529600143433,
- 0.0813453570008278,-0.0697401985526085,0.994243085384369,0.0360684357583523,-0.0518925450742245,0.998001158237457,0.0421948209404945,-0.0661728084087372,0.996915638446808,0.0813305228948593,-0.0626644194126129,0.99471527338028,-0.0301187094300985,-0.0151861477643251,0.999431073665619,-0.0443060174584389,-0.0158908329904079,0.998891651630402,-0.0308084357529879,-0.0152204679325223,0.999409437179565,-0.0254309307783842,-0.014952695928514,0.999564826488495,-0.0264503732323647,-0.0150034856051207,0.999537527561188,-0.0384165719151497,-0.0155986361205578,0.999140024185181,-0.0478566661477089,-0.0160667598247528,0.998724937438965,0.000274422811344266,0.999779582023621,0.0209939237684011,0.000271764758508652,0.999779582023621,0.020993921905756,0.00425486033782363,0.999770641326904,0.0209937132894993,0.00824054609984159,0.999745666980743,0.0209931693971157,0.0029280458111316,0.999775350093842,0.0209938194602728,-0.0196012854576111,-0.999733626842499,-0.012193014845252,-0.0155691113322973,-0.999803841114044,-0.0122487200424075,-0.0121697327122092,-0.999850392341614,-0.01229552552104,-0.0128027806058526,-0.999842643737793,-0.012286820448935,-0.0146470069885254,-0.999817550182343,-0.0122614279389381,0.012883479706943,0.792781054973602,-0.609370350837708,0.0128834955394268,0.792781174182892,-0.609370350837708,0.0128834862262011,0.792781054973602,-0.609370350837708,0.0421948209404945,-0.0661728084087372,0.996915638446808,0.0360684357583523,-0.0518925450742245,0.998001158237457,0.000105548504507169,-0.0329387374222279,0.999457359313965,0.000140910255140625,-0.0363065972924232,0.999340772628784,0.000275405560387298,-0.0491135753691196,0.998793184757233,-0.00158580846618861,-0.0321395546197891,0.999482154846191,-0.00156677851919085,-0.0328308753669262,0.999459743499756,-0.00152892805635929,-0.0342057719826698,0.999413669109344,-0.00156684895046055,-0.0328283086419106,0.999459743499756,-0.00156699051149189,-0.0328231789171696,0.99946004152298,-0.00289478083141148,-0.995106339454651,-0.0987675562500954,-0.00289477850310504,-0.995106339454651,-0.0987675487995148,
- -0.00289477896876633,-0.995106339454651,-0.0987675487995148,0.00496837357059121,0.0901440754532814,-0.995916306972504,0.00375491357408464,0.0674657225608826,-0.997714519500732,0.00680798757821321,0.124527312815189,-0.992192804813385,0.00382279977202415,0.0687343999743462,-0.997627675533295,0.00031518962350674,0.00318832416087389,-0.999994874000549,0.000796311884187162,0.0121782794594765,-0.99992561340332,-0.0130521077662706,0.148082569241524,-0.98888897895813,-0.0130509492009878,0.148446783423424,-0.988834321498871,-0.0130499601364136,0.14875702559948,-0.988787770271301,-0.0130501231178641,0.148705527186394,-0.988795518875122,-0.013050114735961,0.148708015680313,-0.988795042037964,-0.0130505356937647,0.148576155304909,-0.988814890384674,0.1351498067379,0.990545690059662,0.0235322006046772,0.15025232732296,0.988368093967438,0.0235092081129551,0.15161806344986,0.988159656524658,0.0235068537294865,0.152849644422531,0.987969994544983,0.0235046967864037,0.156144082546234,0.9874547123909,0.0234987325966358,0.150185391306877,0.988378286361694,0.023509319871664,0.193735092878342,0.301161825656891,-0.933685421943665,0.193735092878342,0.301161825656891,-0.933685421943665,0.193735063076019,0.301161795854568,-0.93368536233902,-0.209017723798752,-0.415806770324707,-0.885108113288879,-0.209017768502235,-0.415806800127029,-0.885108053684235,-0.209017768502235,-0.415806829929352,-0.885108172893524,-0.0054850890301168,0.0476908087730408,-0.998847186565399,-0.000991267501376569,0.0476858764886856,-0.998861908912659,0.00881704036146402,0.0476717799901962,-0.998824238777161,0.0186900589615107,0.0476529598236084,-0.9986891746521,0.0232484713196754,0.0476426929235458,-0.998593866825104,0.00884982291609049,0.0476717241108418,-0.998823940753937,-0.0319352000951767,-0.999210476875305,-0.023637443780899,-0.0274665802717209,-0.999346315860748,-0.0235059093683958,-0.0247948374599218,-0.999418020248413,-0.0234270505607128,-0.0274882894009352,-0.999345779418945,-0.0235065519809723,-0.0313506498932838,-0.999229371547699,-0.0236202627420425,-0.0364465788006783,-0.999052882194519,-0.0237697716802359,
- -0.0268873535096645,-0.986542284488678,0.161280393600464,-0.0268873516470194,-0.986542284488678,0.161280393600464,-0.0268873553723097,-0.986542284488678,0.161280393600464,0.0774960592389107,0.0474334694445133,-0.995863735675812,0.0512038730084896,0.0475473068654537,-0.997555732727051,0.0682102888822556,0.0474774576723576,-0.996540606021881,0.0852780193090439,0.0473934039473534,-0.995229363441467,0.0867737680673599,0.0473853722214699,-0.995100498199463,0.0881882533431053,0.0473776757717133,-0.994976580142975,0.0301844924688339,-0.86621218919754,-0.498763859272003,0.0301844645291567,-0.86621218919754,-0.498763829469681,0.0301844775676727,-0.86621218919754,-0.498763829469681,-0.9676513671875,0.198149889707565,-0.156164884567261,-0.966054916381836,0.196770161390305,-0.167389467358589,-0.967681229114532,0.198176503181458,-0.155946344137192,-0.967539668083191,0.198050558567047,-0.156980887055397,-0.966014802455902,0.196736484766006,-0.167660996317863,-0.96511310338974,0.195992171764374,-0.173619285225868,-0.213184669613838,-0.97448742389679,0.0701908469200134,-0.21349835395813,-0.974302351474762,0.07178795337677,-0.213286012411118,-0.974427878856659,0.0707065910100937,-0.212758973240852,-0.974733829498291,0.0680277869105339,-0.213252246379852,-0.974447727203369,0.0705346837639809,0.23399144411087,0.971351087093353,-0.0415362454950809,0.233219191431999,0.971691608428955,-0.0377384386956692,0.234821647405624,0.970966577529907,-0.0456382930278778,0.235599011182785,0.970589101314545,-0.0494969673454762,0.233759269118309,0.971455156803131,-0.040392778813839,0.232806965708733,0.971866965293884,-0.0357179380953312,-0.972271800041199,0.187899500131607,-0.139217525720596,-0.970791101455688,0.186182990670204,-0.151329278945923,-0.969722092151642,0.185022950172424,-0.159391105175018,-0.969995558261871,0.185314163565636,-0.157376557588577,-0.971301019191742,0.186758324503899,-0.147294387221336,-0.9711594581604,0.188168317079544,-0.146431237459183,-0.970542967319489,0.19114625453949,-0.146661207079887,-0.972720146179199,0.180416837334633,-0.145826831459999,
- -0.971464276313782,0.1866784542799,-0.146315693855286,-0.967855036258698,0.203634902834892,-0.147612363100052,-0.967517495155334,0.204178541898727,-0.149067163467407,-0.968777656555176,0.198391437530518,-0.148696765303612,-0.968987345695496,0.197412207722664,-0.148633599281311,-0.968766748905182,0.198442399501801,-0.148700043559074,-0.96786242723465,0.202610328793526,-0.148967251181602,-0.966200172901154,0.210060134530067,-0.149438709020615,-0.433075338602066,0.891639828681946,-0.132001549005508,-0.433075338602066,0.891639828681946,-0.132001549005508,-0.433075338602066,0.891639828681946,-0.13200156390667,0.44642773270607,-0.882714033126831,0.146690845489502,0.446427762508392,-0.882714033126831,0.146690830588341,0.44642773270607,-0.882714033126831,0.146690845489502,-0.827648997306824,-0.267621666193008,-0.493331283330917,-0.827648997306824,-0.267621636390686,-0.493331283330917,-0.827648997306824,-0.267621636390686,-0.493331283330917,0.975132465362549,-0.221435412764549,-0.00911837909370661,0.97541731595993,-0.220347180962563,0.00286916689947248,0.975505590438843,-0.219799861311913,0.00876868795603514,0.975291788578033,-0.220898136496544,-0.0031560615170747,0.974933624267578,-0.221975788474083,-0.0152059607207775,0.963283360004425,-0.258288860321045,-0.0732940286397934,0.969544947147369,-0.243055894970894,-0.0301088020205498,0.966428101062775,-0.254288822412491,-0.0367967076599598,0.96464329957962,-0.253102481365204,-0.0735026672482491,0.976637303829193,-0.212731942534447,0.0304121691733599,0.976178705692291,-0.212457537651062,0.0440090894699097,0.97660630941391,-0.212710827589035,0.0315320305526257,0.976730823516846,-0.212799862027168,0.0267069954425097,0.976705729961395,-0.212780967354774,0.0277530364692211,0.976377308368683,-0.212568163871765,0.0387583300471306,0.976040124893188,-0.212384939193726,0.0473123677074909,0.2271688580513,0.973020136356354,-0.0403277054429054,0.227163955569267,0.972977638244629,-0.0413649640977383,0.227125704288483,0.972668409347534,-0.0482717230916023,0.227084591984749,0.972369015216827,-0.0541395843029022,
- 0.227141678333282,0.972792446613312,-0.0456240028142929,-0.21557754278183,-0.974775493144989,0.0577841065824032,-0.215650349855423,-0.974944710731506,0.0545706376433373,-0.21569150686264,-0.975038051605225,0.0527070090174675,-0.215540334582329,-0.974687218666077,0.0593906827270985,-0.21533291041851,-0.974174916744232,0.0679338052868843,-0.553364813327789,0.83163446187973,-0.0465997122228146,-0.553364813327789,0.83163446187973,-0.0465997159481049,-0.553364872932434,0.831634402275085,-0.0465996712446213,0.966428101062775,-0.254288822412491,-0.0367967076599598,0.969544947147369,-0.243055894970894,-0.0301088020205498,0.973766207695007,-0.227533593773842,0.00280802790075541,0.973179936408997,-0.230027392506599,0.00288735725916922,0.970882475376129,-0.23953515291214,0.00319007365033031,0.976705312728882,-0.214557856321335,0.00343086197972298,0.976635932922363,-0.214873477816582,0.00343198864720762,0.973892688751221,-0.226982206106186,0.00347498501650989,0.975785255432129,-0.218703433871269,0.00344563298858702,0.974039316177368,-0.226352706551552,0.00347276078537107,-0.323129266500473,-0.945180714130402,0.0471266359090805,-0.323129266500473,-0.945180714130402,0.0471266433596611,-0.323129266500473,-0.945180714130402,0.0471266359090805,-0.137715950608253,0.0909789055585861,-0.986284613609314,-0.137706071138382,0.0951028168201447,-0.985896825790405,-0.137658089399338,0.108400151133537,-0.984530210494995,-0.137713864445686,0.0919499918818474,-0.986194849014282,-0.137635797262192,0.112985238432884,-0.984017550945282,-0.137659519910812,0.108076982200146,-0.984565436840057,0.995542466640472,0.000205839838599786,-0.0943142399191856,0.995532631874084,-0.00145978527143598,-0.09440778195858,0.995539546012878,-0.000356475939042866,-0.0943458527326584,0.995551347732544,0.00241245632059872,-0.0941898971796036,0.995540499687195,-0.000169037404702976,-0.0943353101611137,-0.99348396062851,-0.0259594935923815,0.110976472496986,-0.993403375148773,-0.0297207962721586,0.110753305256367,-0.993553996086121,-0.0219660084694624,0.111211635172367,
- -0.993605017662048,-0.0182350408285856,0.111429706215858,-0.993460118770599,-0.0271463841199875,0.110906213521957,-0.993354558944702,-0.0317327156662941,0.110633306205273,-0.1190165579319,0.0944384932518005,-0.988390803337097,-0.119599252939224,0.0683615431189537,-0.990465939044952,-0.119284875690937,0.0828889012336731,-0.989394068717957,-0.118694610893726,0.107453398406506,-0.987099468708038,-0.118431948125362,0.117497146129608,-0.985985934734344,-0.125640705227852,0.0781908556818962,-0.9889897108078,-0.100946389138699,0.0781499817967415,-0.991817712783813,-0.0322304256260395,0.077784575521946,-0.996449053287506,-0.0885561108589172,0.0781113803386688,-0.993003726005554,-0.135126426815987,0.0781937167048454,-0.987738192081451,-0.142955243587494,0.0802258476614952,-0.986472249031067,-0.136096969246864,0.0803051814436913,-0.987435460090637,-0.135300949215889,0.0803141221404076,-0.987544059753418,-0.136686965823174,0.0802985057234764,-0.987354457378387,-0.145984530448914,0.0801895707845688,-0.986031532287598,-0.15409243106842,0.0800886601209641,-0.984805226325989,-0.925840258598328,0.0207206681370735,-0.37734666466713,-0.925840258598328,0.0207206532359123,-0.37734666466713,-0.925840258598328,0.0207206699997187,-0.37734666466713,0.920220494270325,-0.0363342873752117,0.389710187911987,0.920220494270325,-0.0363342873752117,0.389710187911987,0.920220613479614,-0.0363342985510826,0.38971021771431,0.391682654619217,0.549948334693909,-0.737659513950348,0.391682684421539,0.549948334693909,-0.737659573554993,0.391682714223862,0.549948334693909,-0.737659573554993,0.998606324195862,0.0527294389903545,0.00223365752026439,0.999915480613709,0.0127524752169847,-0.00253262370824814,0.998241066932678,0.0592090412974358,0.00300681218504906,0.999507069587708,0.0313920713961124,-0.000311123847495764,0.998929858207703,0.0462284833192825,0.0014581287978217,0.990770637989044,0.135011851787567,0.0120646674185991,0.996768474578857,0.0794806405901909,-0.0116359544917941,0.996744990348816,0.079778328537941,-0.0116154616698623,0.996724843978882,0.0800321400165558,-0.0115979909896851,
- 0.996728539466858,0.0799857527017593,-0.0116011826321483,0.996728718280792,0.0799832344055176,-0.0116013558581471,0.996736705303192,0.0798820406198502,-0.0116083240136504,0.0154109550639987,0.980019092559814,0.198305398225784,0.0154440132901073,0.976913154125214,0.213077425956726,0.0154468510299921,0.976619482040405,0.214419990777969,0.0154493432492018,0.97635680437088,0.215612471103668,0.0154559733346105,0.975639462471008,0.218835026025772,0.0154438549652696,0.976929545402527,0.213002562522888,0.965916275978088,0.198511943221092,0.166128844022751,0.965916275978088,0.198511928319931,0.166128844022751,0.965916275978088,0.198511928319931,0.166128844022751,0.903420150279999,-0.37644162774086,-0.205240666866302,0.903420269489288,-0.376441657543182,-0.205240681767464,0.903420150279999,-0.37644162774086,-0.205240666866302,0.999932527542114,-0.00277579529210925,-0.0112796705216169,0.999967336654663,-0.00303552648983896,-0.00750264711678028,0.999993443489075,-0.00358566595241427,0.000499959161970764,0.999956369400024,-0.00412760954350233,0.00838658958673477,0.9999178647995,-0.00437910947948694,0.0120476419106126,0.999993562698364,-0.00358168175444007,0.000441987183876336,-0.0149413179606199,-0.995169222354889,-0.0970315337181091,-0.0150787001475692,-0.995583355426788,-0.0926631093025208,-0.0151676693931222,-0.995841801166534,-0.0898280590772629,-0.0150779169052839,-0.995581150054932,-0.0926879271864891,-0.0149568915367126,-0.995217025279999,-0.096536710858345,-0.0148020815104246,-0.994730770587921,-0.101447649300098,-0.240373939275742,-0.966637909412384,-0.0884957239031792,-0.240373939275742,-0.966637909412384,-0.0884957239031792,-0.240373939275742,-0.966637909412384,-0.0884957164525986,0.99843418598175,-0.00736606866121292,0.0554519966244698,0.99939239025116,-0.00591887068003416,0.0343489870429039,0.998823881149292,-0.00685518281534314,0.0479995980858803,0.998063921928406,-0.00779468426480889,0.0617065504193306,0.997988700866699,-0.00787649489939213,0.0629006028175354,0.997916340827942,-0.00795381981879473,0.0640292391180992,
- 0.543145895004272,-0.839064180850983,-0.0310453549027443,0.543145954608917,-0.839064180850983,-0.0310453306883574,0.543145895004272,-0.839064180850983,-0.0310453549027443,-0.999936640262604,0.00500418664887547,0.0100872972980142,-0.999987721443176,0.00495394412428141,-0.000324326974805444,-0.999969661235809,0.0049261562526226,-0.00603550346568227,-0.999976456165314,0.00497832056134939,0.00471312692388892,-0.99987804889679,0.00502669159322977,0.0147875109687448,-0.996027708053589,-0.0364673025906086,0.0812337175011635,-0.998840570449829,-0.0233009550720453,0.0421255193650723,-0.998374462127686,-0.0330902747809887,0.0464056022465229,-0.995794475078583,-0.0276548936963081,0.0873427242040634,-0.999562203884125,0.0129673033952713,-0.02659772336483,-0.999156057834625,0.0123412227258086,-0.0391758009791374,-0.999544024467468,0.0129330325871706,-0.0272874385118485,-0.999659299850464,0.0131688034161925,-0.022539833560586,-0.999638974666595,0.0131238084286451,-0.0234463792294264,-0.999342381954193,0.0125989643856883,-0.0340032130479813,-0.999030947685242,0.0121857030317187,-0.0422931499779224,-0.00242886552587152,0.990828692913055,0.135102406144142,-0.00269902846775949,0.999516904354095,0.0309625491499901,-0.00288518168963492,0.998811721801758,-0.0486488454043865,0.000275558064458892,0.999358892440796,0.0358003154397011,-0.000144148580147885,0.999986231327057,-0.00525850849226117,-0.0105265630409122,-0.99894917011261,-0.0446077771484852,-0.0176203399896622,-0.99688446521759,0.0768826454877853,-0.0184210073202848,-0.999806523323059,-0.0069128442555666,-0.00763111934065819,-0.998962104320526,-0.0449056886136532,0.685462892055511,0.718397200107574,-0.11851628869772,0.685462832450867,0.718397200107574,-0.118516273796558,0.685462832450867,0.718397200107574,-0.118516266345978,-0.998374462127686,-0.0330902747809887,0.0464056022465229,-0.998840570449829,-0.0233009550720453,0.0421255193650723,-0.999939918518066,-0.00816535018384457,0.00731382519006729,-0.999982595443726,-0.0020958106033504,0.00552651006728411,-0.999923288822174,-0.010530786588788,0.00652538752183318,
- -0.999993741512299,-0.00147768401075155,-0.00321080116555095,-0.999991655349731,-0.00163686275482178,-0.00374633562751114,-0.999996960163116,-0.00220840470865369,0.00109314313158393,-0.999996423721313,-0.0024420686531812,0.00111500860657543,0.0902465134859085,-0.989072322845459,-0.116582669317722,0.0902464985847473,-0.989072322845459,-0.116582661867142,0.0902465060353279,-0.989072322845459,-0.116582661867142,-0.000144148580147885,0.999986231327057,-0.00525850849226117,0.000275558064458892,0.999358892440796,0.0358003154397011,0.0039260876365006,0.981916129589081,0.189275711774826,0.00383610022254288,0.997828423976898,0.0657550916075706,-0.996441423892975,-0.0402261763811111,0.0740699619054794,-0.998963356018066,-0.0205935444682837,0.040595855563879,-0.998840570449829,-0.0233009550720453,0.0421255193650723,-0.996027708053589,-0.0364673025906086,0.0812337175011635,-0.999939918518066,-0.00816535018384457,0.00731382519006729,-0.998840570449829,-0.0233009550720453,0.0421255193650723,-0.998963356018066,-0.0205935444682837,0.040595855563879,-0.999950408935547,-0.00385099556297064,0.00918639078736305,-0.0105265630409122,-0.99894917011261,-0.0446077771484852,-0.00763111934065819,-0.998962104320526,-0.0449056886136532,0.00266089104115963,-0.997111797332764,0.0759008973836899,0.000752506137359887,-0.999760448932648,-0.02187604829669,-0.999993741512299,-0.00147768401075155,-0.00321080116555095,-0.999972343444824,-0.00143985508475453,-0.00729518430307508,-0.999969363212585,-0.00255686673335731,-0.00739612709730864,-0.999991655349731,-0.00163686275482178,-0.00374633562751114,0.99851268529892,-0.0534551590681076,0.0107307508587837,0.998285174369812,-0.0533417649567127,0.0241102203726768,0.998517394065857,-0.0534589812159538,0.0102583821862936,0.998503804206848,-0.0534484684467316,0.0115522537380457,0.998278677463531,-0.0533393509685993,0.0243840217590332,0.998077154159546,-0.0532733425498009,0.0316826701164246,-0.0555591210722923,-0.99841845035553,-0.00860091857612133,-0.0555767826735973,-0.998447299003601,-0.00378864584490657,-0.0555817037820816,-0.998451352119446,-0.00238214293494821,
- -0.0555882155895233,-0.998453676700592,-0.000470712635433301,-0.0555861592292786,-0.998453319072723,-0.00107854744419456,-0.055577676743269,-0.998448133468628,-0.0035361829213798,0.0335926711559296,0.99919992685318,-0.0217026583850384,0.0335957072675228,0.999178469181061,-0.0226660575717688,0.033566802740097,0.999340415000916,-0.0138594461604953,0.0335491038858891,0.999398231506348,-0.00882175657898188,0.0335701666772366,0.999326109886169,-0.0148445600643754,0.033603023737669,0.999121785163879,-0.0250323303043842,0.0336103960871696,0.999057292938232,-0.0274759083986282,0.997469127178192,-0.0704808756709099,-0.00937140639871359,0.997412860393524,-0.0718723237514496,-0.00145960075315088,0.99739944934845,-0.0713556185364723,0.0101407915353775,0.997499704360962,-0.0706575885415077,0.00136069778818637,0.99678909778595,-0.0800711661577225,5.24057577422354e-005,0.997929334640503,-0.064319521188736,0.000247643591137603,0.995409607887268,-0.0957071557641029,-0.000141656753839925,0.996125280857086,-0.0879455804824829,-4.52934436907526e-005,0.998810648918152,-0.0487555637955666,0.00044029945274815,0.99889075756073,-0.0470565147697926,0.00168731994926929,0.998521029949188,-0.0543392598628998,0.00172356469556689,0.998452484607697,-0.0555845238268375,0.00172975438181311,0.99852466583252,-0.0542740151286125,0.00172324036248028,0.998796164989471,-0.0490257032215595,0.00169712794013321,0.999212741851807,-0.0396406762301922,0.00165033398661762,0.583949029445648,0.811688363552094,-0.0128752868622541,0.583949029445648,0.811688363552094,-0.0128752952441573,0.583949029445648,0.811688363552094,-0.0128752766177058,-0.597091436386108,-0.802172303199768,-0.00127399433404207,-0.597091436386108,-0.802172303199768,-0.00127399433404207,-0.597091436386108,-0.802172303199768,-0.00127399421762675,0.754680275917053,-0.484108537435532,0.442827969789505,0.754680216312408,-0.484108567237854,0.442827999591827,0.754680275917053,-0.484108537435532,0.442827969789505,0.997499704360962,-0.0706575885415077,0.00136069778818637,0.99739944934845,-0.0713556185364723,0.0101407915353775,
- 0.997479915618896,-0.0692140683531761,0.0155939869582653,0.997505187988281,-0.0691913664340973,0.0139973880723119,0.997561156749725,-0.0691285654902458,0.00964370369911194,-0.99996018409729,0.00295184063725173,-0.00842460058629513,-0.999776184558868,0.00292490539140999,-0.0209497455507517,-0.999963700771332,0.00295275519602001,-0.0079955942928791,-0.99995356798172,0.00295024598017335,-0.00917243398725986,-0.999771058559418,0.00292436499148607,-0.0211990047246218,-0.99960321187973,0.00290950620546937,-0.0280150361359119,-1.40012346605545e-007,-0.99993622303009,0.0112961754202843,-1.4000985970597e-007,-0.999918401241302,0.0127747477963567,-1.40011550797681e-007,-0.999930620193481,0.0117879686877131,-1.40015202987342e-007,-0.999956548213959,0.00932257249951363,-1.40011835014775e-007,-0.999932467937469,0.0116240372881293,0.0217031743377447,0.999700129032135,0.0113429874181747,0.0217041801661253,0.999719142913818,0.00952146481722593,0.0217028167098761,0.999692797660828,0.0119661660864949,0.0217067580670118,0.999756097793579,0.00407525477930903,0.0217015203088522,0.999665141105652,0.0140993213281035,0.0217013377696276,0.999660968780518,0.0143886459991336,-0.999874651432037,-0.0123472008854151,0.00991293974220753,-0.999912261962891,-0.0127009628340602,-0.00376459234394133,-0.999834537506104,-0.0129333585500717,-0.0127999456599355,-0.999860942363739,-0.0128769502043724,-0.0106031121686101,-0.999920606613159,-0.0125843686982989,0.000753388798329979,-0.999938309192657,-0.0109499441459775,0.00186691654380411,-0.999972522258759,-0.00719024613499641,0.00181250460445881,-0.99978369474411,-0.0207023937255144,0.0020079449750483,-0.999915897846222,-0.0128301652148366,0.00189411861356348,-0.999962151050568,0.0085562989115715,0.00158435211051255,-0.999955415725708,0.00944821909070015,-1.13847345346585e-005,-0.999997675418854,0.0021563284099102,1.96288037841441e-005,-0.999999582767487,0.000907388224732131,2.49405784416012e-005,-0.999997615814209,0.00222124555148184,1.93527066585375e-005,-0.9999720454216,0.00747717265039682,-3.00141755360528e-006,
- -0.999857723712921,0.0168694239109755,-4.29498177254573e-005,-0.537123322486877,0.843486666679382,0.0053899884223938,-0.537123322486877,0.843486666679382,0.00538997398689389,-0.537123322486877,0.843486666679382,0.00538996886461973,0.550867915153503,-0.834557592868805,0.00762768229469657,0.550867974758148,-0.83455753326416,0.00762766925618052,0.550867915153503,-0.834557592868805,0.00762767810374498,-0.791127562522888,-0.450445950031281,-0.413782119750977,-0.791127502918243,-0.450445979833603,-0.413782149553299,-0.791127562522888,-0.450445950031281,-0.413782119750977,0.996467649936676,-0.0839294791221619,0.00283153494819999,0.995383679866791,-0.0959428697824478,0.00250771059654653,0.989428639411926,-0.14501616358757,0.00117717985995114,0.992241024971008,-0.124316990375519,0.00173992395866662,0.999735236167908,-0.0225694719702005,0.00447399728000164,0.999943852424622,0.00916791893541813,0.00531601719558239,0.98784214258194,-0.154449120163918,0.0177010223269463,0.990344047546387,-0.137569785118103,0.0171283464878798,0.994279205799103,-0.105602130293846,0.0160338599234819,0.991605162620544,-0.12820540368557,0.0168090704828501,0.989269554615021,-0.145064368844032,0.0173830725252628,0.988994657993317,-0.146919712424278,0.0174460168927908,-0.0747784823179245,-0.988221287727356,-0.133517667651176,-0.0752272754907608,-0.987969577312469,-0.135118886828423,-0.0735964924097061,-0.988867521286011,-0.129323646426201,-0.0735322460532188,-0.988238215446472,-0.134083956480026,-0.0734672322869301,-0.987595319747925,-0.138773187994957,0.952097713947296,-0.271627992391586,-0.140456974506378,0.952097713947296,-0.271627992391586,-0.140456989407539,0.952097713947296,-0.271627992391586,-0.140456974506378,0.949978828430176,0.267607539892197,0.1610167324543,0.949978828430176,0.267607539892197,0.1610167324543,0.949978828430176,0.267607539892197,0.1610167324543,0.996426045894623,-0.0839477777481079,0.00937751960009336,0.996443629264832,-0.084062747657299,0.0058123916387558,0.99644261598587,-0.084271527826786,-0.000748041784390807,0.996420085430145,-0.0844007432460785,-0.0048663611523807,
- 0.996318101882935,-0.0853111445903778,-0.0085030933842063,0.996402323246002,-0.0847437158226967,-0.00094336224719882,0.0752523317933083,0.997164368629456,0.000485321244923398,0.0750882849097252,0.997167110443115,-0.00442872522398829,0.0753660798072815,0.99713659286499,-0.00621360307559371,0.0754402205348015,0.997147440910339,-0.00243820669129491,0.0754068493843079,0.997139573097229,0.00516413990408182,-0.206212654709816,0.978487312793732,-0.00623867148533463,-0.206212654709816,0.978487312793732,-0.00623867148533463,-0.206212654709816,0.978487312793732,-0.00623867986723781,0.993934392929077,-0.0875287130475044,-0.0665817111730576,0.994280397891998,-0.087517112493515,-0.061214804649353,0.993809521198273,-0.0924154669046402,-0.061660498380661,0.993760108947754,-0.0925058126449585,-0.0623196884989738,0.667708933353424,0.742523074150085,-0.0531439669430256,0.667708933353424,0.742523074150085,-0.0531439669430256,0.667708873748779,0.742523074150085,-0.0531439483165741,-0.0765464007854462,-0.988060593605042,-0.13370543718338,-0.0752272754907608,-0.987969577312469,-0.135118886828423,-0.0747784823179245,-0.988221287727356,-0.133517667651176,-0.0765377059578896,-0.987928211688995,-0.134684383869171,-0.0765958204865456,-0.988818526268005,-0.127949386835098,0.996402323246002,-0.0847437158226967,-0.00094336224719882,0.996318101882935,-0.0853111445903778,-0.0085030933842063,0.99613755941391,-0.086880698800087,-0.0127184763550758,0.996204257011414,-0.0865049064159393,-0.00970301497727633,0.0754402205348015,0.997147440910339,-0.00243820669129491,0.0753660798072815,0.99713659286499,-0.00621360307559371,0.0755194053053856,0.997097969055176,-0.00962689891457558,0.0756196454167366,0.997111678123474,-0.00708219641819596,0.0756899490952492,0.997117400169373,-0.00528979394584894,0.989587724208832,-0.0784207284450531,-0.120691806077957,0.993516743183136,-0.0823434740304947,-0.0783837139606476,0.994921922683716,-0.0844652652740479,-0.0547355748713017,0.994229078292847,-0.0833195298910141,-0.067575141787529,0.994280397891998,-0.087517112493515,-0.061214804649353,
- 0.993934392929077,-0.0875287130475044,-0.0665817111730576,-0.997020959854126,0.0770685151219368,0.00310989492572844,-0.99700802564621,0.0771768987178802,-0.00431468151509762,-0.996993720531464,0.0764969438314438,-0.0123189957812428,-0.997028768062592,0.0770312547683716,0.000107048595964443,-0.996900379657745,0.0775772109627724,0.0131004387512803,-0.996325433254242,0.0401662960648537,0.0756461471319199,-0.998067736625671,0.0542483329772949,0.0302989017218351,-0.998422980308533,0.0420316383242607,0.0372150056064129,-0.996076643466949,0.0463338643312454,0.0753969252109528,-0.996258795261383,0.0781173184514046,-0.0369608104228973,-0.996168792247772,0.0778908357024193,-0.0397590920329094,-0.996246695518494,0.0780855640769005,-0.0373537838459015,-0.996371388435364,0.0784325301647186,-0.0330530554056168,-0.996428966522217,0.0786267966032028,-0.0307782236486673,-0.996339023113251,0.0780924782156944,-0.0347876399755478,0.0733834132552147,0.996806502342224,-0.0314933955669403,0.0738110169768333,0.996010720729828,-0.0501476116478443,0.0720699429512024,0.996853530406952,-0.0329999551177025,0.0720597058534622,0.996943712234497,-0.0301809348165989,0.0720469653606415,0.997039079666138,-0.0268759354948998,-0.0772833898663521,-0.996910393238068,0.0140351187437773,-0.0851487666368485,-0.996181964874268,0.0192602649331093,-0.0860807150602341,-0.994257569313049,0.0635765790939331,-0.0772744566202164,-0.996887028217316,0.0156516544520855,0.731438815593719,0.681850671768188,-0.00877264887094498,0.731438815593719,0.681850671768188,-0.00877265073359013,0.731438815593719,0.681850671768188,-0.00877264887094498,-0.998422980308533,0.0420316383242607,0.0372150056064129,-0.998067736625671,0.0542483329772949,0.0302989017218351,-0.997572183609009,0.0694276392459869,-0.00545385293662548,-0.997771859169006,0.0665075555443764,-0.00531319715082645,-0.998454034328461,0.0553794242441654,-0.00477701099589467,-0.99752950668335,0.0702492073178291,0.000277693558018655,-0.997568368911743,0.0696942582726479,0.000348409957950935,-0.997587740421295,0.0694172903895378,0.000383703765692189,
- -0.997548878192902,0.0699719041585922,0.000313030177494511,-0.997509837150574,0.0705271810293198,0.000242267313296907,0.0304533485323191,-0.9989994764328,0.0327509790658951,0.0304533466696739,-0.9989994764328,0.0327509790658951,0.0304533503949642,-0.9989994764328,0.0327509790658951,-0.997015357017517,0.0772047191858292,5.38219464942813e-005,-0.997014403343201,0.0772160142660141,-9.6873140137177e-005,-0.99700802564621,0.0771768987178802,-0.00431468151509762,-0.997020959854126,0.0770685151219368,0.00310989492572844,0.0760078653693199,0.993497312068939,-0.0847699791193008,0.0738110169768333,0.996010720729828,-0.0501476116478443,0.0733834132552147,0.996806502342224,-0.0314933955669403,0.0758052170276642,0.995378315448761,-0.0589533783495426,-0.996339023113251,0.0780924782156944,-0.0347876399755478,-0.996428966522217,0.0786267966032028,-0.0307782236486673,-0.996382772922516,0.0781349390745163,-0.0334103107452393,-0.996421158313751,0.0785528272390366,-0.0312181115150452,-0.996463000774384,0.0790903195738792,-0.0283952243626118,-0.0860807150602341,-0.994257569313049,0.0635765790939331,-0.0851487666368485,-0.996181964874268,0.0192602649331093,-0.0941686108708382,-0.99491274356842,0.0357885099947453,-0.0938294604420662,-0.990008115768433,0.105262070894241,-0.093168169260025,-0.981882393360138,0.165005728602409,-0.999068081378937,0.0431126244366169,0.00210810941644013,-0.999055802822113,0.0433337613940239,-0.00314455223269761,-0.999038279056549,0.0427869819104671,-0.00958137772977352,-0.99907374382019,0.0430228374898434,-0.000765784294344485,-0.999027788639069,0.0432660058140755,0.00845749583095312,-0.998500525951386,0.0158544648438692,0.0523975528776646,-0.999465644359589,0.0263186097145081,0.0193834844976664,-0.999505698680878,0.0176455341279507,0.0260198209434748,-0.9984250664711,0.0202861167490482,0.0523052886128426,-0.998502314090729,0.0481960885226727,-0.0258905254304409,-0.998227417469025,0.0475175939500332,-0.0358326137065887,-0.998486995697021,0.0481506437063217,-0.0265586823225021,-0.998567044734955,0.0484041087329388,-0.0228276811540127,
- -0.998552739620209,0.0483554154634476,-0.0235452968627214,-0.998350441455841,0.0477922856807709,-0.0318161994218826,-0.998145878314972,0.0473521873354912,-0.0382454097270966,0.0403855368494987,0.999048590660095,-0.0164660103619099,0.0403684340417385,0.999098718166351,-0.0131230931729078,0.0403494723141193,0.999140322208405,-0.0095146456733346,0.0403317958116531,0.999166905879974,-0.00623676227405667,0.0403505265712738,0.999138355255127,-0.00971333403140306,0.0403692945837975,0.999096512794495,-0.0132884262129664,-0.0547035820782185,-0.998482227325439,-0.00639967294409871,-0.0546336472034454,-0.998506188392639,-0.000707274186424911,-0.0546043962240219,-0.998506784439087,0.00163252803031355,-0.0546116456389427,-0.998507142066956,0.00105528067797422,-0.0546025708317757,-0.998506605625153,0.0017777158645913,-0.0546517372131348,-0.9985032081604,-0.00216580973938107,0.816361844539642,0.577509880065918,0.00596995139494538,0.816361844539642,0.577509880065918,0.00596993649378419,0.816361844539642,0.577509880065918,0.00596995139494538,-0.999505698680878,0.0176455341279507,0.0260198209434748,-0.999465644359589,0.0263186097145081,0.0193834844976664,-0.999279201030731,0.0376524589955807,-0.00483819982036948,-0.999356031417847,0.0355617590248585,-0.00478125642985106,-0.999608635902405,0.0276009924709797,-0.00456427782773972,-0.998604774475098,0.0524408891797066,-0.00621414836496115,-0.998614549636841,0.0522549487650394,-0.0062047322280705,-0.999240458011627,0.0385764688253403,-0.00551168015226722,-0.998838067054749,0.047820158302784,-0.00598010700196028,-0.999225914478302,0.0389485731720924,-0.00553054315969348,0.0854933634400368,-0.996258735656738,0.0126257557421923,0.0854933634400368,-0.996258735656738,0.0126257538795471,0.0854933708906174,-0.996258735656738,0.012625752016902,-0.999054193496704,0.0434745140373707,-0.000921783328521997,-0.999054789543152,0.043463371694088,-0.000824458140414208,-0.999055802822113,0.0433337613940239,-0.00314455223269761,-0.999068081378937,0.0431126244366169,0.00210810941644013,0.00485729891806841,0.140178442001343,0.990114271640778,
- 0.00630086800083518,0.09276282787323,0.995668292045593,0.00461682816967368,0.14801087975502,0.988974988460541,0.00563352135941386,0.114767625927925,0.99337637424469,0.00509846862405539,0.132304400205612,0.991196036338806,0.00183497881516814,0.237276017665863,0.971440553665161,0.0244184527546167,0.170288309454918,0.985091686248779,0.024425383657217,0.170643404126167,0.985030114650726,0.0244313105940819,0.170947387814522,0.984977245330811,0.0244303643703461,0.170898735523224,0.984985709190369,0.0244304127991199,0.170901194214821,0.9849853515625,0.0244278702884912,0.170771062374115,0.985007882118225,-0.111581735312939,0.99290257692337,-0.0411609522998333,-0.126835346221924,0.99107551574707,-0.041013989597559,-0.128221362829208,0.99089777469635,-0.0410001389682293,-0.129428446292877,0.990741372108459,-0.0409880168735981,-0.132777258753777,0.990299463272095,-0.0409540385007858,-0.126745969057083,0.991086959838867,-0.0410148836672306,-0.173715204000473,0.322772353887558,0.930398344993591,-0.173715204000473,0.322772353887558,0.930398344993591,-0.173715204000473,0.32277238368988,0.930398285388947,0.202517166733742,-0.387965202331543,0.899149477481842,0.202517181634903,-0.387965202331543,0.899149477481842,0.202517166733742,-0.387965202331543,0.899149477481842,0.0148093467578292,0.073397271335125,0.997192919254303,0.0104606952518225,0.0734982043504715,0.997240543365479,0.00088707177201286,0.0737155079841614,0.997278988361359,-0.00872375071048737,0.0739268437027931,0.99722558259964,-0.0131096066907048,0.0740210190415382,0.997170507907867,0.00086851284140721,0.0737159103155136,0.997278869152069,0.00824772473424673,-0.999086201190948,0.0419390797615051,0.00376973510719836,-0.999117612838745,0.0418305918574333,0.000887867645360529,-0.999127268791199,0.0417603366076946,0.00381280528381467,-0.999117493629456,0.0418316498398781,0.00774438492953777,-0.999090731143951,0.0419269278645515,0.0128116821870208,-0.999033391475677,0.0420487895607948,0.00185080885421485,-0.988945782184601,-0.148266643285751,0.00185081723611802,-0.988945722579956,-0.148266613483429,
- 0.00185081723611802,-0.988945722579956,-0.148266613483429,-0.0657527446746826,0.0750289484858513,0.995011210441589,-0.0401625074446201,0.0745591148734093,0.996407508850098,-0.0567187070846558,0.0748686268925667,0.995579063892365,-0.0733384042978287,0.0751588940620422,0.994471073150635,-0.0747801661491394,0.075183093547821,0.994361877441406,-0.076142705976963,0.0752058327198029,0.994256794452667,-0.0459756702184677,-0.848381876945496,0.527384459972382,-0.0459756851196289,-0.848381876945496,0.527384519577026,-0.0459756888449192,-0.848381876945496,0.527384519577026
- }
- TangentsW: *3444 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *6180 {
- a: 0,0,0.249999538064003,4.46428227718343e-010,0.249999687075615,0.249616727232933,0,0.25,0.50000011920929,0,0.500000059604645,0.249616742134094,0.749784827232361,2.5902409106493e-009,0.749784588813782,0.249616742134094,0,0.75,0.249999687075615,0.75,0.25,1,0,1,0.50000011920929,0.499924898147583,0.50000011920929,0.75,0.249999687075615,0.499233514070511,0,0.5,0,1.2568781375885,0.240647360682487,1.25873219966888,0.190343037247658,1.32236194610596,0.162611782550812,1.51858878135681,0,1.5180481672287,0.242891758680344,1.20587408542633,0.361873060464859,0.999332010746002,0.342993021011353,1.17869246006012,0.499961078166962,0.85041743516922,0.405932068824768,0.93459677696228,0.396589487791061,0.994397699832916,0.600541889667511,0.749027669429779,0.578668475151062,0.814113855361938,0.631382882595062,0.499925017356873,0.639141976833344,0.605213165283203,0.626578032970428,0.700766444206238,0.605565190315247,0.705902099609375,0.749601244926453,0.337772190570831,0.64762419462204,0.355595141649246,0.860564768314362,0.281920850276947,0.816810429096222,0.333781898021698,1,0,1,0.257905781269073,2.82969093322754,1.4889612197876,2.82523322105408,1.31913864612579,2.88667798042297,1.32201254367828,2.89571619033813,1.48305094242096,2.75791931152344,1.2337601184845,2.87885761260986,1.22709429264069,2.67100119590759,1.26722252368927,2.67092370986938,1.19490873813629,2.75334095954895,1.13122498989105,2.87074565887451,1.14018929004669,2.85449624061584,0.932061076164246,2.95822143554688,0.936331808567047,2.94031000137329,1.04391157627106,2.9587037563324,1.15586388111115,2.88788223266602,0.695817232131958,2.88123512268066,0.595626533031464,2.97594308853149,0.604820013046265,2.98478770256042,0.709515690803528,2.88347840309143,0.15262833237648,2.87656831741333,-0.0519358143210411,2.99474549293518,-0.0129269361495972,2.98105978965759,0.17215433716774,2.86323308944702,-0.20253299176693,2.96339583396912,-0.224443212151527,2.86745262145996,-0.28656941652298,2.96372818946838,-0.295536756515503,2.88233041763306,0.460416555404663,
- 2.88049221038818,0.421122193336487,2.96904802322388,0.452652752399445,2.96384263038635,0.491923719644547,2.87444424629211,0.367453545331955,2.96811413764954,0.381570786237717,2.86562156677246,0.208724066615105,2.97474026679993,0.228092193603516,2.8656907081604,0.870225727558136,2.97055244445801,0.840152621269226,1,0.25,0.750000357627869,0.249616727232933,0.750000536441803,1.15393161692623e-009,1,0,0,0,0.249999403953552,5.33984856332381e-010,0.249999582767487,0.249616742134094,0.063621386885643,0.281508237123489,0,0.274604678153992,0.50000011920929,0,0.500000059604645,0.249616742134094,0.750000417232513,1.25756788253784,1,1.2568781375885,1,1.5180481672287,0.750000536441803,1.5180481672287,0.716458022594452,1.5180162191391,0.704907476902008,1.35582113265991,0.665539264678955,1.25733482837677,0.750000417232513,1,1,1,0.631447196006775,1.18671989440918,0.623881459236145,1.0997679233551,0.595560789108276,1,0.750000417232513,0.75,1,0.75,0.562223792076111,0.926122665405273,0.533330082893372,0.81814968585968,0.500000059604645,0.75,0.458684116601944,0.748850762844086,0.750000417232513,0.5,1,0.5,0.50000011920929,0.499924898147583,0.351635426282883,0.739873111248016,0.337690085172653,0.708627879619598,0.297550797462463,0.665630161762238,0.260419607162476,0.54201203584671,0.268669158220291,0.49923300743103,0.249474823474884,0.499233424663544,0.203671872615814,0.369515538215637,1,0.25,0.611500024795532,0.249833598732948,0.611270308494568,4.32935739809182e-005,1,0,0.609992146492004,1.25697803497314,1,1.2568781375885,1,1.5180481672287,0.609948217868805,1.51804804801941,0.610768258571625,1,1,1,0.611499667167664,0.75,1,0.75,0.611499190330505,0.500075101852417,1,0.5,0.749996960163116,1.5180481672287,1,1.5180481672287,1,1.09413933753967,0.749623358249664,1.09413933753967,0.49999988079071,1.5180481672287,0.50001460313797,1.09413933753967,0.249994575977325,1.5180481672287,0.25019982457161,1.09413933753967,0,1.09413933753967,0,1.5180481672287,1.25514256954193,0.282913029193878,1.15959060192108,0.280793488025665,1.04801785945892,0.287744015455246,
- 1.02559161186218,0.267938375473022,0.869291186332703,0.265816211700439,0.869262099266052,2.19941139221191e-005,1.25511157512665,-2.01753555302275e-005,0.836979508399963,1.51805424690247,0.780865073204041,1.38018465042114,0.705103695392609,1.268061876297,0.705306828022003,1.1707820892334,0.71985387802124,1.09414148330688,0.749911069869995,1.09414899349213,1,1.09414207935333,1,1.5180481672287,2.61554765701294,1.54672300815582,2.58160948753357,1.36733651161194,2.69291067123413,1.33970534801483,2.72388553619385,1.51800835132599,2.58465003967285,1.29537856578827,2.56363081932068,1.25369083881378,2.58392333984375,1.15519642829895,2.65954947471619,1.15138304233551,2.55977916717529,0.958583533763886,2.6517505645752,0.945384204387665,2.56644034385681,0.918946385383606,2.54465460777283,0.852264761924744,2.65575981140137,0.853788256645203,2.58219742774963,0.71245938539505,2.68872547149658,0.705843806266785,2.58232569694519,0.611100375652313,2.6875855922699,0.604499161243439,2.59005999565125,0.533879816532135,2.70077919960022,0.524778962135315,2.58713340759277,0.485596895217896,2.69764924049377,0.44633823633194,2.5937294960022,0.462107300758362,2.57033896446228,0.355376660823822,2.66591668128967,0.347880303859711,2.53374886512756,0.244249850511551,2.6490113735199,0.216396883130074,2.47904253005981,0.0890329629182816,2.66385078430176,0.0619036816060543,2.54366278648376,-0.0072575812228024,2.65160918235779,0.0108971549198031,2.56571340560913,-0.0754206106066704,2.56350493431091,-0.151628226041794,2.66696119308472,-0.182398915290833,2.59485101699829,-0.306782454252243,2.73813056945801,-0.289962083101273,2.95232844352722,1.22953319549561,2.94952702522278,1.32750225067139,2.94841647148132,1.48325967788696,2.76753997802734,0.936459362506866,2.73520112037659,0.856363892555237,2.8058180809021,0.704092621803284,2.78142690658569,0.572789072990417,2.77905607223511,0.379564553499222,2.75362372398376,0.199649512767792,2.77462124824524,0.0817962512373924,2.73764944076538,-0.0451838970184326,2.74768114089966,-0.163987681269646,2.76421403884888,
- -0.277360796928406,0.255404233932495,0.799993991851807,0.0964959263801575,0.800795078277588,0.096301831305027,0.720257699489594,0.176599144935608,0.720716178417206,0.256433635950089,0.724722266197205,0.25687250494957,0.722593128681183,0.176604777574539,0.718958020210266,0.188421130180359,0.644030213356018,0.258441627025604,0.64637702703476,0.258098483085632,0.949353694915771,0.189212173223495,0.956363499164581,0.118814885616302,0.95854115486145,0.0977336242794991,0.940606355667114,0.0969404429197311,0.878044962882996,0.249899014830589,0.874469459056854,0.256653666496277,0.889456629753113,0.0210041888058186,0.802984952926636,0.019113389775157,0.739589691162109,0.040805995464325,0.720831274986267,0.0938384160399437,0.7198166847229,0.0947793498635292,0.800959765911102,0.334767639636993,0.72661817073822,0.329522550106049,0.786801815032959,0.283602833747864,0.800518929958344,0.25762927532196,0.800006687641144,0.258627533912659,0.724329829216003,0.0187826845794916,0.7382652759552,0.0185350403189659,0.720946133136749,0.0396098792552948,0.720378816127777,0.0961751639842987,0.71835470199585,0.0975309312343597,0.663997650146484,0.118176721036434,0.641973495483398,0.254944205284119,0.828025162220001,0.252015471458435,0.872064054012299,0.0971289947628975,0.876471996307373,0.0967187583446503,0.802744388580322,0.25529408454895,0.801579594612122,0.329053401947021,0.788591086864471,0.328156352043152,0.803140044212341,0.285872519016266,0.801347613334656,0.752156138420105,0.129839822649956,0.894243538379669,0.132140174508095,0.892870306968689,0.199938416481018,0.851999938488007,0.206171497702599,0.75884211063385,0.209945484995842,0.750094950199127,0.193429261445999,0.753413736820221,0.308605253696442,0.897919297218323,0.296862065792084,0.902776002883911,0.354445338249207,0.875003337860107,0.375967890024185,0.772700965404511,0.384365022182465,0.755812406539917,0.330107778310776,0.963598489761353,0.19539687037468,0.974708735942841,0.268219530582428,0.957947790622711,0.286432832479477,0.899144053459167,0.295305162668228,0.891751348972321,
- 0.225860133767128,0.894050538539886,0.200815618038177,0.890483856201172,0.224692091345787,0.854374587535858,0.207031205296516,0.892859220504761,0.2009686678648,0.894144594669342,0.0553645305335522,0.865765273571014,0.0399317778646946,0.898261487483978,0.0316374264657497,0.750205814838409,0.051879309117794,0.761374890804291,0.0390751138329506,0.86416620016098,0.0404560603201389,0.894072771072388,0.0565293803811073,0.894116222858429,0.131019294261932,0.75227963924408,0.128643959760666,0.7298304438591,0.306655019521713,0.674351692199707,0.292142480611801,0.67615419626236,0.214331328868866,0.738640189170837,0.212520331144333,0.751182734966278,0.225779324769974,0.751864194869995,0.307415366172791,0.674359500408173,0.293537795543671,0.725274682044983,0.306745976209641,0.673951804637909,0.305311352014542,0.752699017524719,0.225855380296707,0.758986711502075,0.211066767573357,0.851980090141296,0.207292824983597,0.890470921993256,0.226060435175896,0.897889852523804,0.295383781194687,0.753384351730347,0.307211369276047,0.751638889312744,0.224589318037033,0.740170896053314,0.212162107229233,0.757620751857758,0.210882365703583,0.414587736129761,0.665984988212585,0.526780188083649,0.664963841438293,0.535148143768311,0.677003800868988,0.535829305648804,0.752072989940643,0.429889798164368,0.753320038318634,0.415408164262772,0.736675143241882,0.611593782901764,0.826639175415039,0.611942291259766,0.901619255542755,0.599440515041351,0.913836359977722,0.538544595241547,0.914170503616333,0.537654757499695,0.826390326023102,0.34450426697731,0.913660526275635,0.344044297933578,0.846178650856018,0.356723487377167,0.828278958797455,0.413325190544128,0.82714056968689,0.415371090173721,0.903031885623932,0.397654235363007,0.912756085395813,0.414893358945847,0.8275186419487,0.536207139492035,0.826508045196533,0.537059247493744,0.914043843746185,0.424709618091583,0.912545680999756,0.416660189628601,0.903204560279846,0.536629915237427,0.825338423252106,0.414476692676544,0.826009213924408,0.415541440248489,0.766669094562531,0.429860562086105,0.754395842552185,
- 0.53615391254425,0.753508150577545,0.414373755455017,0.934105753898621,0.424618393182755,0.91391921043396,0.537530481815338,0.915480554103851,0.536883056163788,0.976046741008759,0.528435468673706,0.988451063632965,0.414987742900848,0.987271904945374,0.415991246700287,0.904173731803894,0.423437744379044,0.91299957036972,0.399396628141403,0.913217425346375,0.600854635238647,0.914084076881409,0.612356305122375,0.902884185314178,0.612408339977264,0.914020359516144,0.415546298027039,0.765273034572601,0.415228754281998,0.738267958164215,0.428701013326645,0.75374448299408,0.752156138420105,0.129839822649956,0.894243538379669,0.132140174508095,0.892870306968689,0.199938416481018,0.851999938488007,0.206171497702599,0.75884211063385,0.209945484995842,0.750094950199127,0.193429261445999,0.753413736820221,0.308605253696442,0.897919297218323,0.296862065792084,0.902776002883911,0.354445338249207,0.875003337860107,0.375967890024185,0.772700965404511,0.384365022182465,0.755812406539917,0.330107778310776,0.963598489761353,0.19539687037468,0.974708735942841,0.268219530582428,0.957947790622711,0.286432832479477,0.899144053459167,0.295305162668228,0.891751348972321,0.225860133767128,0.894050538539886,0.200815618038177,0.890483856201172,0.224692091345787,0.854374587535858,0.207031205296516,0.892859220504761,0.2009686678648,0.894144594669342,0.0553645305335522,0.865765273571014,0.0399317778646946,0.898261487483978,0.0316374264657497,0.750205814838409,0.051879309117794,0.761374890804291,0.0390751138329506,0.86416620016098,0.0404560603201389,0.894072771072388,0.0565293803811073,0.894116222858429,0.131019294261932,0.75227963924408,0.128643959760666,0.7298304438591,0.306655019521713,0.674351692199707,0.292142480611801,0.67615419626236,0.214331328868866,0.738640189170837,0.212520331144333,0.751182734966278,0.225779324769974,0.751864194869995,0.307415366172791,0.674359500408173,0.293537795543671,0.725274682044983,0.306745976209641,0.673951804637909,0.305311352014542,0.752699017524719,0.225855380296707,0.758986711502075,0.211066767573357,0.851980090141296,
- 0.207292824983597,0.890470921993256,0.226060435175896,0.897889852523804,0.295383781194687,0.753384351730347,0.307211369276047,0.751638889312744,0.224589318037033,0.740170896053314,0.212162107229233,0.757620751857758,0.210882365703583,0.255404233932495,0.799993991851807,0.0964959263801575,0.800795078277588,0.096301831305027,0.720257699489594,0.176599144935608,0.720716178417206,0.256433635950089,0.724722266197205,0.25687250494957,0.722593128681183,0.176604777574539,0.718958020210266,0.188421130180359,0.644030213356018,0.258441627025604,0.64637702703476,0.258098483085632,0.949353694915771,0.189212173223495,0.956363499164581,0.118814885616302,0.95854115486145,0.0977336242794991,0.940606355667114,0.0969404429197311,0.878044962882996,0.249899014830589,0.874469459056854,0.256653666496277,0.889456629753113,0.0210041888058186,0.802984952926636,0.019113389775157,0.739589691162109,0.040805995464325,0.720831274986267,0.0938384160399437,0.7198166847229,0.0947793498635292,0.800959765911102,0.334767639636993,0.72661817073822,0.329522550106049,0.786801815032959,0.283602833747864,0.800518929958344,0.25762927532196,0.800006687641144,0.258627533912659,0.724329829216003,0.0187826845794916,0.7382652759552,0.0185350403189659,0.720946133136749,0.0396098792552948,0.720378816127777,0.0961751639842987,0.71835470199585,0.0975309312343597,0.663997650146484,0.118176721036434,0.641973495483398,0.254944205284119,0.828025162220001,0.252015471458435,0.872064054012299,0.0971289947628975,0.876471996307373,0.0967187583446503,0.802744388580322,0.25529408454895,0.801579594612122,0.329053401947021,0.788591086864471,0.328156352043152,0.803140044212341,0.285872519016266,0.801347613334656,0.752156138420105,0.129839822649956,0.894243538379669,0.132140174508095,0.892870306968689,0.199938416481018,0.851999938488007,0.206171497702599,0.75884211063385,0.209945484995842,0.750094950199127,0.193429261445999,0.753413736820221,0.308605253696442,0.897919297218323,0.296862065792084,0.902776002883911,0.354445338249207,0.875003337860107,0.375967890024185,0.772700965404511,
- 0.384365022182465,0.755812406539917,0.330107778310776,0.963598489761353,0.19539687037468,0.974708735942841,0.268219530582428,0.957947790622711,0.286432832479477,0.899144053459167,0.295305162668228,0.891751348972321,0.225860133767128,0.894050538539886,0.200815618038177,0.890483856201172,0.224692091345787,0.854374587535858,0.207031205296516,0.892859220504761,0.2009686678648,0.894144594669342,0.0553645305335522,0.865765273571014,0.0399317778646946,0.898261487483978,0.0316374264657497,0.750205814838409,0.051879309117794,0.761374890804291,0.0390751138329506,0.86416620016098,0.0404560603201389,0.894072771072388,0.0565293803811073,0.894116222858429,0.131019294261932,0.75227963924408,0.128643959760666,0.7298304438591,0.306655019521713,0.674351692199707,0.292142480611801,0.67615419626236,0.214331328868866,0.738640189170837,0.212520331144333,0.751182734966278,0.225779324769974,0.751864194869995,0.307415366172791,0.674359500408173,0.293537795543671,0.725274682044983,0.306745976209641,0.673951804637909,0.305311352014542,0.752699017524719,0.225855380296707,0.758986711502075,0.211066767573357,0.851980090141296,0.207292824983597,0.890470921993256,0.226060435175896,0.897889852523804,0.295383781194687,0.753384351730347,0.307211369276047,0.751638889312744,0.224589318037033,0.740170896053314,0.212162107229233,0.757620751857758,0.210882365703583,0.414587736129761,0.665984988212585,0.526780188083649,0.664963841438293,0.535148143768311,0.677003800868988,0.535829305648804,0.752072989940643,0.429889798164368,0.753320038318634,0.415408164262772,0.736675143241882,0.611593782901764,0.826639175415039,0.611942291259766,0.901619255542755,0.599440515041351,0.913836359977722,0.538544595241547,0.914170503616333,0.537654757499695,0.826390326023102,0.34450426697731,0.913660526275635,0.344044297933578,0.846178650856018,0.356723487377167,0.828278958797455,0.413325190544128,0.82714056968689,0.415371090173721,0.903031885623932,0.397654235363007,0.912756085395813,0.414893358945847,0.8275186419487,0.536207139492035,0.826508045196533,0.537059247493744,0.914043843746185,
- 0.424709618091583,0.912545680999756,0.416660189628601,0.903204560279846,0.536629915237427,0.825338423252106,0.414476692676544,0.826009213924408,0.415541440248489,0.766669094562531,0.429860562086105,0.754395842552185,0.53615391254425,0.753508150577545,0.414373755455017,0.934105753898621,0.424618393182755,0.91391921043396,0.537530481815338,0.915480554103851,0.536883056163788,0.976046741008759,0.528435468673706,0.988451063632965,0.414987742900848,0.987271904945374,0.415991246700287,0.904173731803894,0.423437744379044,0.91299957036972,0.399396628141403,0.913217425346375,0.600854635238647,0.914084076881409,0.612356305122375,0.902884185314178,0.612408339977264,0.914020359516144,0.415546298027039,0.765273034572601,0.415228754281998,0.738267958164215,0.428701013326645,0.75374448299408,0.255404233932495,0.799993991851807,0.0964959263801575,0.800795078277588,0.096301831305027,0.720257699489594,0.176599144935608,0.720716178417206,0.256433635950089,0.724722266197205,0.25687250494957,0.722593128681183,0.176604777574539,0.718958020210266,0.188421130180359,0.644030213356018,0.258441627025604,0.64637702703476,0.258098483085632,0.949353694915771,0.189212173223495,0.956363499164581,0.118814885616302,0.95854115486145,0.0977336242794991,0.940606355667114,0.0969404429197311,0.878044962882996,0.249899014830589,0.874469459056854,0.256653666496277,0.889456629753113,0.0210041888058186,0.802984952926636,0.019113389775157,0.739589691162109,0.040805995464325,0.720831274986267,0.0938384160399437,0.7198166847229,0.0947793498635292,0.800959765911102,0.334767639636993,0.72661817073822,0.329522550106049,0.786801815032959,0.283602833747864,0.800518929958344,0.25762927532196,0.800006687641144,0.258627533912659,0.724329829216003,0.0187826845794916,0.7382652759552,0.0185350403189659,0.720946133136749,0.0396098792552948,0.720378816127777,0.0961751639842987,0.71835470199585,0.0975309312343597,0.663997650146484,0.118176721036434,0.641973495483398,0.254944205284119,0.828025162220001,0.252015471458435,0.872064054012299,0.0971289947628975,0.876471996307373,
- 0.0967187583446503,0.802744388580322,0.25529408454895,0.801579594612122,0.329053401947021,0.788591086864471,0.328156352043152,0.803140044212341,0.285872519016266,0.801347613334656,0.414587736129761,0.665984988212585,0.526780188083649,0.664963841438293,0.535148143768311,0.677003800868988,0.535829305648804,0.752072989940643,0.429889798164368,0.753320038318634,0.415408164262772,0.736675143241882,0.611593782901764,0.826639175415039,0.611942291259766,0.901619255542755,0.599440515041351,0.913836359977722,0.538544595241547,0.914170503616333,0.537654757499695,0.826390326023102,0.34450426697731,0.913660526275635,0.344044297933578,0.846178650856018,0.356723487377167,0.828278958797455,0.413325190544128,0.82714056968689,0.415371090173721,0.903031885623932,0.397654235363007,0.912756085395813,0.414893358945847,0.8275186419487,0.536207139492035,0.826508045196533,0.537059247493744,0.914043843746185,0.424709618091583,0.912545680999756,0.416660189628601,0.903204560279846,0.536629915237427,0.825338423252106,0.414476692676544,0.826009213924408,0.415541440248489,0.766669094562531,0.429860562086105,0.754395842552185,0.53615391254425,0.753508150577545,0.414373755455017,0.934105753898621,0.424618393182755,0.91391921043396,0.537530481815338,0.915480554103851,0.536883056163788,0.976046741008759,0.528435468673706,0.988451063632965,0.414987742900848,0.987271904945374,0.415991246700287,0.904173731803894,0.423437744379044,0.91299957036972,0.399396628141403,0.913217425346375,0.600854635238647,0.914084076881409,0.612356305122375,0.902884185314178,0.612408339977264,0.914020359516144,0.415546298027039,0.765273034572601,0.415228754281998,0.738267958164215,0.428701013326645,0.75374448299408,0.752156138420105,0.129839822649956,0.894243538379669,0.132140174508095,0.892870306968689,0.199938416481018,0.851999938488007,0.206171497702599,0.75884211063385,0.209945484995842,0.750094950199127,0.193429261445999,0.753413736820221,0.308605253696442,0.897919297218323,0.296862065792084,0.902776002883911,0.354445338249207,0.875003337860107,0.375967890024185,0.772700965404511,
- 0.384365022182465,0.755812406539917,0.330107778310776,0.963598489761353,0.19539687037468,0.974708735942841,0.268219530582428,0.957947790622711,0.286432832479477,0.899144053459167,0.295305162668228,0.891751348972321,0.225860133767128,0.894050538539886,0.200815618038177,0.890483856201172,0.224692091345787,0.854374587535858,0.207031205296516,0.892859220504761,0.2009686678648,0.894144594669342,0.0553645305335522,0.865765273571014,0.0399317778646946,0.898261487483978,0.0316374264657497,0.750205814838409,0.051879309117794,0.761374890804291,0.0390751138329506,0.86416620016098,0.0404560603201389,0.894072771072388,0.0565293803811073,0.894116222858429,0.131019294261932,0.75227963924408,0.128643959760666,0.7298304438591,0.306655019521713,0.674351692199707,0.292142480611801,0.67615419626236,0.214331328868866,0.738640189170837,0.212520331144333,0.751182734966278,0.225779324769974,0.751864194869995,0.307415366172791,0.674359500408173,0.293537795543671,0.725274682044983,0.306745976209641,0.673951804637909,0.305311352014542,0.752699017524719,0.225855380296707,0.758986711502075,0.211066767573357,0.851980090141296,0.207292824983597,0.890470921993256,0.226060435175896,0.897889852523804,0.295383781194687,0.753384351730347,0.307211369276047,0.751638889312744,0.224589318037033,0.740170896053314,0.212162107229233,0.757620751857758,0.210882365703583,0.255404233932495,0.799993991851807,0.0964959263801575,0.800795078277588,0.096301831305027,0.720257699489594,0.176599144935608,0.720716178417206,0.256433635950089,0.724722266197205,0.25687250494957,0.722593128681183,0.176604777574539,0.718958020210266,0.188421130180359,0.644030213356018,0.258441627025604,0.64637702703476,0.258098483085632,0.949353694915771,0.189212173223495,0.956363499164581,0.118814885616302,0.95854115486145,0.0977336242794991,0.940606355667114,0.0969404429197311,0.878044962882996,0.249899014830589,0.874469459056854,0.256653666496277,0.889456629753113,0.0210041888058186,0.802984952926636,0.019113389775157,0.739589691162109,0.040805995464325,0.720831274986267,0.0938384160399437,
- 0.7198166847229,0.0947793498635292,0.800959765911102,0.334767639636993,0.72661817073822,0.329522550106049,0.786801815032959,0.283602833747864,0.800518929958344,0.25762927532196,0.800006687641144,0.258627533912659,0.724329829216003,0.0187826845794916,0.7382652759552,0.0185350403189659,0.720946133136749,0.0396098792552948,0.720378816127777,0.0961751639842987,0.71835470199585,0.0975309312343597,0.663997650146484,0.118176721036434,0.641973495483398,0.254944205284119,0.828025162220001,0.252015471458435,0.872064054012299,0.0971289947628975,0.876471996307373,0.0967187583446503,0.802744388580322,0.25529408454895,0.801579594612122,0.329053401947021,0.788591086864471,0.328156352043152,0.803140044212341,0.285872519016266,0.801347613334656,0.255404233932495,0.799993991851807,0.0964959263801575,0.800795078277588,0.096301831305027,0.720257699489594,0.176599144935608,0.720716178417206,0.256433635950089,0.724722266197205,0.25687250494957,0.722593128681183,0.176604777574539,0.718958020210266,0.188421130180359,0.644030213356018,0.258441627025604,0.64637702703476,0.258098483085632,0.949353694915771,0.189212173223495,0.956363499164581,0.118814885616302,0.95854115486145,0.0977336242794991,0.940606355667114,0.0969404429197311,0.878044962882996,0.249899014830589,0.874469459056854,0.256653666496277,0.889456629753113,0.0210041888058186,0.802984952926636,0.019113389775157,0.739589691162109,0.040805995464325,0.720831274986267,0.0938384160399437,0.7198166847229,0.0947793498635292,0.800959765911102,0.334767639636993,0.72661817073822,0.329522550106049,0.786801815032959,0.283602833747864,0.800518929958344,0.25762927532196,0.800006687641144,0.258627533912659,0.724329829216003,0.0187826845794916,0.7382652759552,0.0185350403189659,0.720946133136749,0.0396098792552948,0.720378816127777,0.0961751639842987,0.71835470199585,0.0975309312343597,0.663997650146484,0.118176721036434,0.641973495483398,0.254944205284119,0.828025162220001,0.252015471458435,0.872064054012299,0.0971289947628975,0.876471996307373,0.0967187583446503,0.802744388580322,0.25529408454895,
- 0.801579594612122,0.329053401947021,0.788591086864471,0.328156352043152,0.803140044212341,0.285872519016266,0.801347613334656,0.414587736129761,0.665984988212585,0.526780188083649,0.664963841438293,0.535148143768311,0.677003800868988,0.535829305648804,0.752072989940643,0.429889798164368,0.753320038318634,0.415408164262772,0.736675143241882,0.611593782901764,0.826639175415039,0.611942291259766,0.901619255542755,0.599440515041351,0.913836359977722,0.538544595241547,0.914170503616333,0.537654757499695,0.826390326023102,0.34450426697731,0.913660526275635,0.344044297933578,0.846178650856018,0.356723487377167,0.828278958797455,0.413325190544128,0.82714056968689,0.415371090173721,0.903031885623932,0.397654235363007,0.912756085395813,0.414893358945847,0.8275186419487,0.536207139492035,0.826508045196533,0.537059247493744,0.914043843746185,0.424709618091583,0.912545680999756,0.416660189628601,0.903204560279846,0.536629915237427,0.825338423252106,0.414476692676544,0.826009213924408,0.415541440248489,0.766669094562531,0.429860562086105,0.754395842552185,0.53615391254425,0.753508150577545,0.414373755455017,0.934105753898621,0.424618393182755,0.91391921043396,0.537530481815338,0.915480554103851,0.536883056163788,0.976046741008759,0.528435468673706,0.988451063632965,0.414987742900848,0.987271904945374,0.415991246700287,0.904173731803894,0.423437744379044,0.91299957036972,0.399396628141403,0.913217425346375,0.600854635238647,0.914084076881409,0.612356305122375,0.902884185314178,0.612408339977264,0.914020359516144,0.415546298027039,0.765273034572601,0.415228754281998,0.738267958164215,0.428701013326645,0.75374448299408,0.752156138420105,0.129839822649956,0.894243538379669,0.132140174508095,0.892870306968689,0.199938416481018,0.851999938488007,0.206171497702599,0.75884211063385,0.209945484995842,0.750094950199127,0.193429261445999,0.753413736820221,0.308605253696442,0.897919297218323,0.296862065792084,0.902776002883911,0.354445338249207,0.875003337860107,0.375967890024185,0.772700965404511,0.384365022182465,0.755812406539917,0.330107778310776,
- 0.963598489761353,0.19539687037468,0.974708735942841,0.268219530582428,0.957947790622711,0.286432832479477,0.899144053459167,0.295305162668228,0.891751348972321,0.225860133767128,0.894050538539886,0.200815618038177,0.890483856201172,0.224692091345787,0.854374587535858,0.207031205296516,0.892859220504761,0.2009686678648,0.894144594669342,0.0553645305335522,0.865765273571014,0.0399317778646946,0.898261487483978,0.0316374264657497,0.750205814838409,0.051879309117794,0.761374890804291,0.0390751138329506,0.86416620016098,0.0404560603201389,0.894072771072388,0.0565293803811073,0.894116222858429,0.131019294261932,0.75227963924408,0.128643959760666,0.7298304438591,0.306655019521713,0.674351692199707,0.292142480611801,0.67615419626236,0.214331328868866,0.738640189170837,0.212520331144333,0.751182734966278,0.225779324769974,0.751864194869995,0.307415366172791,0.674359500408173,0.293537795543671,0.725274682044983,0.306745976209641,0.673951804637909,0.305311352014542,0.752699017524719,0.225855380296707,0.758986711502075,0.211066767573357,0.851980090141296,0.207292824983597,0.890470921993256,0.226060435175896,0.897889852523804,0.295383781194687,0.753384351730347,0.307211369276047,0.751638889312744,0.224589318037033,0.740170896053314,0.212162107229233,0.757620751857758,0.210882365703583,0.255404233932495,0.799993991851807,0.0964959263801575,0.800795078277588,0.096301831305027,0.720257699489594,0.176599144935608,0.720716178417206,0.256433635950089,0.724722266197205,0.25687250494957,0.722593128681183,0.176604777574539,0.718958020210266,0.188421130180359,0.644030213356018,0.258441627025604,0.64637702703476,0.258098483085632,0.949353694915771,0.189212173223495,0.956363499164581,0.118814885616302,0.95854115486145,0.0977336242794991,0.940606355667114,0.0969404429197311,0.878044962882996,0.249899014830589,0.874469459056854,0.256653666496277,0.889456629753113,0.0210041888058186,0.802984952926636,0.019113389775157,0.739589691162109,0.040805995464325,0.720831274986267,0.0938384160399437,0.7198166847229,0.0947793498635292,0.800959765911102,
- 0.334767639636993,0.72661817073822,0.329522550106049,0.786801815032959,0.283602833747864,0.800518929958344,0.25762927532196,0.800006687641144,0.258627533912659,0.724329829216003,0.0187826845794916,0.7382652759552,0.0185350403189659,0.720946133136749,0.0396098792552948,0.720378816127777,0.0961751639842987,0.71835470199585,0.0975309312343597,0.663997650146484,0.118176721036434,0.641973495483398,0.254944205284119,0.828025162220001,0.252015471458435,0.872064054012299,0.0971289947628975,0.876471996307373,0.0967187583446503,0.802744388580322,0.25529408454895,0.801579594612122,0.329053401947021,0.788591086864471,0.328156352043152,0.803140044212341,0.285872519016266,0.801347613334656,0.255404233932495,0.799993991851807,0.0964959263801575,0.800795078277588,0.096301831305027,0.720257699489594,0.176599144935608,0.720716178417206,0.256433635950089,0.724722266197205,0.25687250494957,0.722593128681183,0.176604777574539,0.718958020210266,0.188421130180359,0.644030213356018,0.258441627025604,0.64637702703476,0.258098483085632,0.949353694915771,0.189212173223495,0.956363499164581,0.118814885616302,0.95854115486145,0.0977336242794991,0.940606355667114,0.0969404429197311,0.878044962882996,0.249899014830589,0.874469459056854,0.256653666496277,0.889456629753113,0.0210041888058186,0.802984952926636,0.019113389775157,0.739589691162109,0.040805995464325,0.720831274986267,0.0938384160399437,0.7198166847229,0.0947793498635292,0.800959765911102,0.334767639636993,0.72661817073822,0.329522550106049,0.786801815032959,0.283602833747864,0.800518929958344,0.25762927532196,0.800006687641144,0.258627533912659,0.724329829216003,0.0187826845794916,0.7382652759552,0.0185350403189659,0.720946133136749,0.0396098792552948,0.720378816127777,0.0961751639842987,0.71835470199585,0.0975309312343597,0.663997650146484,0.118176721036434,0.641973495483398,0.254944205284119,0.828025162220001,0.252015471458435,0.872064054012299,0.0971289947628975,0.876471996307373,0.0967187583446503,0.802744388580322,0.25529408454895,0.801579594612122,0.329053401947021,0.788591086864471,
- 0.328156352043152,0.803140044212341,0.285872519016266,0.801347613334656,0.414587736129761,0.665984988212585,0.526780188083649,0.664963841438293,0.535148143768311,0.677003800868988,0.535829305648804,0.752072989940643,0.429889798164368,0.753320038318634,0.415408164262772,0.736675143241882,0.611593782901764,0.826639175415039,0.611942291259766,0.901619255542755,0.599440515041351,0.913836359977722,0.538544595241547,0.914170503616333,0.537654757499695,0.826390326023102,0.34450426697731,0.913660526275635,0.344044297933578,0.846178650856018,0.356723487377167,0.828278958797455,0.413325190544128,0.82714056968689,0.415371090173721,0.903031885623932,0.397654235363007,0.912756085395813,0.414893358945847,0.8275186419487,0.536207139492035,0.826508045196533,0.537059247493744,0.914043843746185,0.424709618091583,0.912545680999756,0.416660189628601,0.903204560279846,0.536629915237427,0.825338423252106,0.414476692676544,0.826009213924408,0.415541440248489,0.766669094562531,0.429860562086105,0.754395842552185,0.53615391254425,0.753508150577545,0.414373755455017,0.934105753898621,0.424618393182755,0.91391921043396,0.537530481815338,0.915480554103851,0.536883056163788,0.976046741008759,0.528435468673706,0.988451063632965,0.414987742900848,0.987271904945374,0.415991246700287,0.904173731803894,0.423437744379044,0.91299957036972,0.399396628141403,0.913217425346375,0.600854635238647,0.914084076881409,0.612356305122375,0.902884185314178,0.612408339977264,0.914020359516144,0.415546298027039,0.765273034572601,0.415228754281998,0.738267958164215,0.428701013326645,0.75374448299408,0.414587736129761,0.665984988212585,0.526780188083649,0.664963841438293,0.535148143768311,0.677003800868988,0.535829305648804,0.752072989940643,0.429889798164368,0.753320038318634,0.415408164262772,0.736675143241882,0.611593782901764,0.826639175415039,0.611942291259766,0.901619255542755,0.599440515041351,0.913836359977722,0.538544595241547,0.914170503616333,0.537654757499695,0.826390326023102,0.34450426697731,0.913660526275635,0.344044297933578,0.846178650856018,0.356723487377167,
- 0.828278958797455,0.413325190544128,0.82714056968689,0.415371090173721,0.903031885623932,0.397654235363007,0.912756085395813,0.414893358945847,0.8275186419487,0.536207139492035,0.826508045196533,0.537059247493744,0.914043843746185,0.424709618091583,0.912545680999756,0.416660189628601,0.903204560279846,0.536629915237427,0.825338423252106,0.414476692676544,0.826009213924408,0.415541440248489,0.766669094562531,0.429860562086105,0.754395842552185,0.53615391254425,0.753508150577545,0.414373755455017,0.934105753898621,0.424618393182755,0.91391921043396,0.537530481815338,0.915480554103851,0.536883056163788,0.976046741008759,0.528435468673706,0.988451063632965,0.414987742900848,0.987271904945374,0.415991246700287,0.904173731803894,0.423437744379044,0.91299957036972,0.399396628141403,0.913217425346375,0.600854635238647,0.914084076881409,0.612356305122375,0.902884185314178,0.612408339977264,0.914020359516144,0.415546298027039,0.765273034572601,0.415228754281998,0.738267958164215,0.428701013326645,0.75374448299408,0.414587736129761,0.665984988212585,0.526780188083649,0.664963841438293,0.535148143768311,0.677003800868988,0.535829305648804,0.752072989940643,0.429889798164368,0.753320038318634,0.415408164262772,0.736675143241882,0.611593782901764,0.826639175415039,0.611942291259766,0.901619255542755,0.599440515041351,0.913836359977722,0.538544595241547,0.914170503616333,0.537654757499695,0.826390326023102,0.34450426697731,0.913660526275635,0.344044297933578,0.846178650856018,0.356723487377167,0.828278958797455,0.413325190544128,0.82714056968689,0.415371090173721,0.903031885623932,0.397654235363007,0.912756085395813,0.414893358945847,0.8275186419487,0.536207139492035,0.826508045196533,0.537059247493744,0.914043843746185,0.424709618091583,0.912545680999756,0.416660189628601,0.903204560279846,0.536629915237427,0.825338423252106,0.414476692676544,0.826009213924408,0.415541440248489,0.766669094562531,0.429860562086105,0.754395842552185,0.53615391254425,0.753508150577545,0.414373755455017,0.934105753898621,0.424618393182755,0.91391921043396,
- 0.537530481815338,0.915480554103851,0.536883056163788,0.976046741008759,0.528435468673706,0.988451063632965,0.414987742900848,0.987271904945374,0.415991246700287,0.904173731803894,0.423437744379044,0.91299957036972,0.399396628141403,0.913217425346375,0.600854635238647,0.914084076881409,0.612356305122375,0.902884185314178,0.612408339977264,0.914020359516144,0.415546298027039,0.765273034572601,0.415228754281998,0.738267958164215,0.428701013326645,0.75374448299408,0.752156138420105,0.129839822649956,0.894243538379669,0.132140174508095,0.892870306968689,0.199938416481018,0.851999938488007,0.206171497702599,0.75884211063385,0.209945484995842,0.750094950199127,0.193429261445999,0.753413736820221,0.308605253696442,0.897919297218323,0.296862065792084,0.902776002883911,0.354445338249207,0.875003337860107,0.375967890024185,0.772700965404511,0.384365022182465,0.755812406539917,0.330107778310776,0.963598489761353,0.19539687037468,0.974708735942841,0.268219530582428,0.957947790622711,0.286432832479477,0.899144053459167,0.295305162668228,0.891751348972321,0.225860133767128,0.894050538539886,0.200815618038177,0.890483856201172,0.224692091345787,0.854374587535858,0.207031205296516,0.892859220504761,0.2009686678648,0.894144594669342,0.0553645305335522,0.865765273571014,0.0399317778646946,0.898261487483978,0.0316374264657497,0.750205814838409,0.051879309117794,0.761374890804291,0.0390751138329506,0.86416620016098,0.0404560603201389,0.894072771072388,0.0565293803811073,0.894116222858429,0.131019294261932,0.75227963924408,0.128643959760666,0.7298304438591,0.306655019521713,0.674351692199707,0.292142480611801,0.67615419626236,0.214331328868866,0.738640189170837,0.212520331144333,0.751182734966278,0.225779324769974,0.751864194869995,0.307415366172791,0.674359500408173,0.293537795543671,0.725274682044983,0.306745976209641,0.673951804637909,0.305311352014542,0.752699017524719,0.225855380296707,0.758986711502075,0.211066767573357,0.851980090141296,0.207292824983597,0.890470921993256,0.226060435175896,0.897889852523804,0.295383781194687,0.753384351730347,
- 0.307211369276047,0.751638889312744,0.224589318037033,0.740170896053314,0.212162107229233,0.757620751857758,0.210882365703583,0.414587736129761,0.665984988212585,0.526780188083649,0.664963841438293,0.535148143768311,0.677003800868988,0.535829305648804,0.752072989940643,0.429889798164368,0.753320038318634,0.415408164262772,0.736675143241882,0.611593782901764,0.826639175415039,0.611942291259766,0.901619255542755,0.599440515041351,0.913836359977722,0.538544595241547,0.914170503616333,0.537654757499695,0.826390326023102,0.34450426697731,0.913660526275635,0.344044297933578,0.846178650856018,0.356723487377167,0.828278958797455,0.413325190544128,0.82714056968689,0.415371090173721,0.903031885623932,0.397654235363007,0.912756085395813,0.414893358945847,0.8275186419487,0.536207139492035,0.826508045196533,0.537059247493744,0.914043843746185,0.424709618091583,0.912545680999756,0.416660189628601,0.903204560279846,0.536629915237427,0.825338423252106,0.414476692676544,0.826009213924408,0.415541440248489,0.766669094562531,0.429860562086105,0.754395842552185,0.53615391254425,0.753508150577545,0.414373755455017,0.934105753898621,0.424618393182755,0.91391921043396,0.537530481815338,0.915480554103851,0.536883056163788,0.976046741008759,0.528435468673706,0.988451063632965,0.414987742900848,0.987271904945374,0.415991246700287,0.904173731803894,0.423437744379044,0.91299957036972,0.399396628141403,0.913217425346375,0.600854635238647,0.914084076881409,0.612356305122375,0.902884185314178,0.612408339977264,0.914020359516144,0.415546298027039,0.765273034572601,0.415228754281998,0.738267958164215,0.428701013326645,0.75374448299408,0.752156138420105,0.129839822649956,0.894243538379669,0.132140174508095,0.892870306968689,0.199938416481018,0.851999938488007,0.206171497702599,0.75884211063385,0.209945484995842,0.750094950199127,0.193429261445999,0.753413736820221,0.308605253696442,0.897919297218323,0.296862065792084,0.902776002883911,0.354445338249207,0.875003337860107,0.375967890024185,0.772700965404511,0.384365022182465,0.755812406539917,0.330107778310776,
- 0.963598489761353,0.19539687037468,0.974708735942841,0.268219530582428,0.957947790622711,0.286432832479477,0.899144053459167,0.295305162668228,0.891751348972321,0.225860133767128,0.894050538539886,0.200815618038177,0.890483856201172,0.224692091345787,0.854374587535858,0.207031205296516,0.892859220504761,0.2009686678648,0.894144594669342,0.0553645305335522,0.865765273571014,0.0399317778646946,0.898261487483978,0.0316374264657497,0.750205814838409,0.051879309117794,0.761374890804291,0.0390751138329506,0.86416620016098,0.0404560603201389,0.894072771072388,0.0565293803811073,0.894116222858429,0.131019294261932,0.75227963924408,0.128643959760666,0.7298304438591,0.306655019521713,0.674351692199707,0.292142480611801,0.67615419626236,0.214331328868866,0.738640189170837,0.212520331144333,0.751182734966278,0.225779324769974,0.751864194869995,0.307415366172791,0.674359500408173,0.293537795543671,0.725274682044983,0.306745976209641,0.673951804637909,0.305311352014542,0.752699017524719,0.225855380296707,0.758986711502075,0.211066767573357,0.851980090141296,0.207292824983597,0.890470921993256,0.226060435175896,0.897889852523804,0.295383781194687,0.753384351730347,0.307211369276047,0.751638889312744,0.224589318037033,0.740170896053314,0.212162107229233,0.757620751857758,0.210882365703583,0.255404233932495,0.799993991851807,0.0964959263801575,0.800795078277588,0.096301831305027,0.720257699489594,0.176599144935608,0.720716178417206,0.256433635950089,0.724722266197205,0.25687250494957,0.722593128681183,0.176604777574539,0.718958020210266,0.188421130180359,0.644030213356018,0.258441627025604,0.64637702703476,0.258098483085632,0.949353694915771,0.189212173223495,0.956363499164581,0.118814885616302,0.95854115486145,0.0977336242794991,0.940606355667114,0.0969404429197311,0.878044962882996,0.249899014830589,0.874469459056854,0.256653666496277,0.889456629753113,0.0210041888058186,0.802984952926636,0.019113389775157,0.739589691162109,0.040805995464325,0.720831274986267,0.0938384160399437,0.7198166847229,0.0947793498635292,0.800959765911102,
- 0.334767639636993,0.72661817073822,0.329522550106049,0.786801815032959,0.283602833747864,0.800518929958344,0.25762927532196,0.800006687641144,0.258627533912659,0.724329829216003,0.0187826845794916,0.7382652759552,0.0185350403189659,0.720946133136749,0.0396098792552948,0.720378816127777,0.0961751639842987,0.71835470199585,0.0975309312343597,0.663997650146484,0.118176721036434,0.641973495483398,0.254944205284119,0.828025162220001,0.252015471458435,0.872064054012299,0.0971289947628975,0.876471996307373,0.0967187583446503,0.802744388580322,0.25529408454895,0.801579594612122,0.329053401947021,0.788591086864471,0.328156352043152,0.803140044212341,0.285872519016266,0.801347613334656,0.414587736129761,0.665984988212585,0.526780188083649,0.664963841438293,0.535148143768311,0.677003800868988,0.535829305648804,0.752072989940643,0.429889798164368,0.753320038318634,0.415408164262772,0.736675143241882,0.611593782901764,0.826639175415039,0.611942291259766,0.901619255542755,0.599440515041351,0.913836359977722,0.538544595241547,0.914170503616333,0.537654757499695,0.826390326023102,0.34450426697731,0.913660526275635,0.344044297933578,0.846178650856018,0.356723487377167,0.828278958797455,0.413325190544128,0.82714056968689,0.415371090173721,0.903031885623932,0.397654235363007,0.912756085395813,0.414893358945847,0.8275186419487,0.536207139492035,0.826508045196533,0.537059247493744,0.914043843746185,0.424709618091583,0.912545680999756,0.416660189628601,0.903204560279846,0.536629915237427,0.825338423252106,0.414476692676544,0.826009213924408,0.415541440248489,0.766669094562531,0.429860562086105,0.754395842552185,0.53615391254425,0.753508150577545,0.414373755455017,0.934105753898621,0.424618393182755,0.91391921043396,0.537530481815338,0.915480554103851,0.536883056163788,0.976046741008759,0.528435468673706,0.988451063632965,0.414987742900848,0.987271904945374,0.415991246700287,0.904173731803894,0.423437744379044,0.91299957036972,0.399396628141403,0.913217425346375,0.600854635238647,0.914084076881409,0.612356305122375,0.902884185314178,0.612408339977264,
- 0.914020359516144,0.415546298027039,0.765273034572601,0.415228754281998,0.738267958164215,0.428701013326645,0.75374448299408,0.752156138420105,0.129839822649956,0.894243538379669,0.132140174508095,0.892870306968689,0.199938416481018,0.851999938488007,0.206171497702599,0.75884211063385,0.209945484995842,0.750094950199127,0.193429261445999,0.753413736820221,0.308605253696442,0.897919297218323,0.296862065792084,0.902776002883911,0.354445338249207,0.875003337860107,0.375967890024185,0.772700965404511,0.384365022182465,0.755812406539917,0.330107778310776,0.963598489761353,0.19539687037468,0.974708735942841,0.268219530582428,0.957947790622711,0.286432832479477,0.899144053459167,0.295305162668228,0.891751348972321,0.225860133767128,0.894050538539886,0.200815618038177,0.890483856201172,0.224692091345787,0.854374587535858,0.207031205296516,0.892859220504761,0.2009686678648,0.894144594669342,0.0553645305335522,0.865765273571014,0.0399317778646946,0.898261487483978,0.0316374264657497,0.750205814838409,0.051879309117794,0.761374890804291,0.0390751138329506,0.86416620016098,0.0404560603201389,0.894072771072388,0.0565293803811073,0.894116222858429,0.131019294261932,0.75227963924408,0.128643959760666,0.7298304438591,0.306655019521713,0.674351692199707,0.292142480611801,0.67615419626236,0.214331328868866,0.738640189170837,0.212520331144333,0.751182734966278,0.225779324769974,0.751864194869995,0.307415366172791,0.674359500408173,0.293537795543671,0.725274682044983,0.306745976209641,0.673951804637909,0.305311352014542,0.752699017524719,0.225855380296707,0.758986711502075,0.211066767573357,0.851980090141296,0.207292824983597,0.890470921993256,0.226060435175896,0.897889852523804,0.295383781194687,0.753384351730347,0.307211369276047,0.751638889312744,0.224589318037033,0.740170896053314,0.212162107229233,0.757620751857758,0.210882365703583,0.414587736129761,0.665984988212585,0.526780188083649,0.664963841438293,0.535148143768311,0.677003800868988,0.535829305648804,0.752072989940643,0.429889798164368,0.753320038318634,0.415408164262772,0.736675143241882,
- 0.611593782901764,0.826639175415039,0.611942291259766,0.901619255542755,0.599440515041351,0.913836359977722,0.538544595241547,0.914170503616333,0.537654757499695,0.826390326023102,0.34450426697731,0.913660526275635,0.344044297933578,0.846178650856018,0.356723487377167,0.828278958797455,0.413325190544128,0.82714056968689,0.415371090173721,0.903031885623932,0.397654235363007,0.912756085395813,0.414893358945847,0.8275186419487,0.536207139492035,0.826508045196533,0.537059247493744,0.914043843746185,0.424709618091583,0.912545680999756,0.416660189628601,0.903204560279846,0.536629915237427,0.825338423252106,0.414476692676544,0.826009213924408,0.415541440248489,0.766669094562531,0.429860562086105,0.754395842552185,0.53615391254425,0.753508150577545,0.414373755455017,0.934105753898621,0.424618393182755,0.91391921043396,0.537530481815338,0.915480554103851,0.536883056163788,0.976046741008759,0.528435468673706,0.988451063632965,0.414987742900848,0.987271904945374,0.415991246700287,0.904173731803894,0.423437744379044,0.91299957036972,0.399396628141403,0.913217425346375,0.600854635238647,0.914084076881409,0.612356305122375,0.902884185314178,0.612408339977264,0.914020359516144,0.415546298027039,0.765273034572601,0.415228754281998,0.738267958164215,0.428701013326645,0.75374448299408,0.752156138420105,0.129839822649956,0.894243538379669,0.132140174508095,0.892870306968689,0.199938416481018,0.851999938488007,0.206171497702599,0.75884211063385,0.209945484995842,0.750094950199127,0.193429261445999,0.753413736820221,0.308605253696442,0.897919297218323,0.296862065792084,0.902776002883911,0.354445338249207,0.875003337860107,0.375967890024185,0.772700965404511,0.384365022182465,0.755812406539917,0.330107778310776,0.963598489761353,0.19539687037468,0.974708735942841,0.268219530582428,0.957947790622711,0.286432832479477,0.899144053459167,0.295305162668228,0.891751348972321,0.225860133767128,0.894050538539886,0.200815618038177,0.890483856201172,0.224692091345787,0.854374587535858,0.207031205296516,0.892859220504761,0.2009686678648,0.894144594669342,
- 0.0553645305335522,0.865765273571014,0.0399317778646946,0.898261487483978,0.0316374264657497,0.750205814838409,0.051879309117794,0.761374890804291,0.0390751138329506,0.86416620016098,0.0404560603201389,0.894072771072388,0.0565293803811073,0.894116222858429,0.131019294261932,0.75227963924408,0.128643959760666,0.7298304438591,0.306655019521713,0.674351692199707,0.292142480611801,0.67615419626236,0.214331328868866,0.738640189170837,0.212520331144333,0.751182734966278,0.225779324769974,0.751864194869995,0.307415366172791,0.674359500408173,0.293537795543671,0.725274682044983,0.306745976209641,0.673951804637909,0.305311352014542,0.752699017524719,0.225855380296707,0.758986711502075,0.211066767573357,0.851980090141296,0.207292824983597,0.890470921993256,0.226060435175896,0.897889852523804,0.295383781194687,0.753384351730347,0.307211369276047,0.751638889312744,0.224589318037033,0.740170896053314,0.212162107229233,0.757620751857758,0.210882365703583,0.752156138420105,0.129839822649956,0.894243538379669,0.132140174508095,0.892870306968689,0.199938416481018,0.851999938488007,0.206171497702599,0.75884211063385,0.209945484995842,0.750094950199127,0.193429261445999,0.753413736820221,0.308605253696442,0.897919297218323,0.296862065792084,0.902776002883911,0.354445338249207,0.875003337860107,0.375967890024185,0.772700965404511,0.384365022182465,0.755812406539917,0.330107778310776,0.963598489761353,0.19539687037468,0.974708735942841,0.268219530582428,0.957947790622711,0.286432832479477,0.899144053459167,0.295305162668228,0.891751348972321,0.225860133767128,0.894050538539886,0.200815618038177,0.890483856201172,0.224692091345787,0.854374587535858,0.207031205296516,0.892859220504761,0.2009686678648,0.894144594669342,0.0553645305335522,0.865765273571014,0.0399317778646946,0.898261487483978,0.0316374264657497,0.750205814838409,0.051879309117794,0.761374890804291,0.0390751138329506,0.86416620016098,0.0404560603201389,0.894072771072388,0.0565293803811073,0.894116222858429,0.131019294261932,0.75227963924408,0.128643959760666,0.7298304438591,
- 0.306655019521713,0.674351692199707,0.292142480611801,0.67615419626236,0.214331328868866,0.738640189170837,0.212520331144333,0.751182734966278,0.225779324769974,0.751864194869995,0.307415366172791,0.674359500408173,0.293537795543671,0.725274682044983,0.306745976209641,0.673951804637909,0.305311352014542,0.752699017524719,0.225855380296707,0.758986711502075,0.211066767573357,0.851980090141296,0.207292824983597,0.890470921993256,0.226060435175896,0.897889852523804,0.295383781194687,0.753384351730347,0.307211369276047,0.751638889312744,0.224589318037033,0.740170896053314,0.212162107229233,0.757620751857758,0.210882365703583,0.255404233932495,0.799993991851807,0.0964959263801575,0.800795078277588,0.096301831305027,0.720257699489594,0.176599144935608,0.720716178417206,0.256433635950089,0.724722266197205,0.25687250494957,0.722593128681183,0.176604777574539,0.718958020210266,0.188421130180359,0.644030213356018,0.258441627025604,0.64637702703476,0.258098483085632,0.949353694915771,0.189212173223495,0.956363499164581,0.118814885616302,0.95854115486145,0.0977336242794991,0.940606355667114,0.0969404429197311,0.878044962882996,0.249899014830589,0.874469459056854,0.256653666496277,0.889456629753113,0.0210041888058186,0.802984952926636,0.019113389775157,0.739589691162109,0.040805995464325,0.720831274986267,0.0938384160399437,0.7198166847229,0.0947793498635292,0.800959765911102,0.334767639636993,0.72661817073822,0.329522550106049,0.786801815032959,0.283602833747864,0.800518929958344,0.25762927532196,0.800006687641144,0.258627533912659,0.724329829216003,0.0187826845794916,0.7382652759552,0.0185350403189659,0.720946133136749,0.0396098792552948,0.720378816127777,0.0961751639842987,0.71835470199585,0.0975309312343597,0.663997650146484,0.118176721036434,0.641973495483398,0.254944205284119,0.828025162220001,0.252015471458435,0.872064054012299,0.0971289947628975,0.876471996307373,0.0967187583446503,0.802744388580322,0.25529408454895,0.801579594612122,0.329053401947021,0.788591086864471,0.328156352043152,0.803140044212341,0.285872519016266,
- 0.801347613334656,0.752156138420105,0.129839822649956,0.894243538379669,0.132140174508095,0.892870306968689,0.199938416481018,0.851999938488007,0.206171497702599,0.75884211063385,0.209945484995842,0.750094950199127,0.193429261445999,0.753413736820221,0.308605253696442,0.897919297218323,0.296862065792084,0.902776002883911,0.354445338249207,0.875003337860107,0.375967890024185,0.772700965404511,0.384365022182465,0.755812406539917,0.330107778310776,0.963598489761353,0.19539687037468,0.974708735942841,0.268219530582428,0.957947790622711,0.286432832479477,0.899144053459167,0.295305162668228,0.891751348972321,0.225860133767128,0.894050538539886,0.200815618038177,0.890483856201172,0.224692091345787,0.854374587535858,0.207031205296516,0.892859220504761,0.2009686678648,0.894144594669342,0.0553645305335522,0.865765273571014,0.0399317778646946,0.898261487483978,0.0316374264657497,0.750205814838409,0.051879309117794,0.761374890804291,0.0390751138329506,0.86416620016098,0.0404560603201389,0.894072771072388,0.0565293803811073,0.894116222858429,0.131019294261932,0.75227963924408,0.128643959760666,0.7298304438591,0.306655019521713,0.674351692199707,0.292142480611801,0.67615419626236,0.214331328868866,0.738640189170837,0.212520331144333,0.751182734966278,0.225779324769974,0.751864194869995,0.307415366172791,0.674359500408173,0.293537795543671,0.725274682044983,0.306745976209641,0.673951804637909,0.305311352014542,0.752699017524719,0.225855380296707,0.758986711502075,0.211066767573357,0.851980090141296,0.207292824983597,0.890470921993256,0.226060435175896,0.897889852523804,0.295383781194687,0.753384351730347,0.307211369276047,0.751638889312744,0.224589318037033,0.740170896053314,0.212162107229233,0.757620751857758,0.210882365703583,0.752156138420105,0.129839822649956,0.894243538379669,0.132140174508095,0.892870306968689,0.199938416481018,0.851999938488007,0.206171497702599,0.75884211063385,0.209945484995842,0.750094950199127,0.193429261445999,0.753413736820221,0.308605253696442,0.897919297218323,0.296862065792084,0.902776002883911,0.354445338249207,
- 0.875003337860107,0.375967890024185,0.772700965404511,0.384365022182465,0.755812406539917,0.330107778310776,0.963598489761353,0.19539687037468,0.974708735942841,0.268219530582428,0.957947790622711,0.286432832479477,0.899144053459167,0.295305162668228,0.891751348972321,0.225860133767128,0.894050538539886,0.200815618038177,0.890483856201172,0.224692091345787,0.854374587535858,0.207031205296516,0.892859220504761,0.2009686678648,0.894144594669342,0.0553645305335522,0.865765273571014,0.0399317778646946,0.898261487483978,0.0316374264657497,0.750205814838409,0.051879309117794,0.761374890804291,0.0390751138329506,0.86416620016098,0.0404560603201389,0.894072771072388,0.0565293803811073,0.894116222858429,0.131019294261932,0.75227963924408,0.128643959760666,0.7298304438591,0.306655019521713,0.674351692199707,0.292142480611801,0.67615419626236,0.214331328868866,0.738640189170837,0.212520331144333,0.751182734966278,0.225779324769974,0.751864194869995,0.307415366172791,0.674359500408173,0.293537795543671,0.725274682044983,0.306745976209641,0.673951804637909,0.305311352014542,0.752699017524719,0.225855380296707,0.758986711502075,0.211066767573357,0.851980090141296,0.207292824983597,0.890470921993256,0.226060435175896,0.897889852523804,0.295383781194687,0.753384351730347,0.307211369276047,0.751638889312744,0.224589318037033,0.740170896053314,0.212162107229233,0.757620751857758,0.210882365703583,0.414587736129761,0.665984988212585,0.526780188083649,0.664963841438293,0.535148143768311,0.677003800868988,0.535829305648804,0.752072989940643,0.429889798164368,0.753320038318634,0.415408164262772,0.736675143241882,0.611593782901764,0.826639175415039,0.611942291259766,0.901619255542755,0.599440515041351,0.913836359977722,0.538544595241547,0.914170503616333,0.537654757499695,0.826390326023102,0.34450426697731,0.913660526275635,0.344044297933578,0.846178650856018,0.356723487377167,0.828278958797455,0.413325190544128,0.82714056968689,0.415371090173721,0.903031885623932,0.397654235363007,0.912756085395813,0.414893358945847,0.8275186419487,0.536207139492035,
- 0.826508045196533,0.537059247493744,0.914043843746185,0.424709618091583,0.912545680999756,0.416660189628601,0.903204560279846,0.536629915237427,0.825338423252106,0.414476692676544,0.826009213924408,0.415541440248489,0.766669094562531,0.429860562086105,0.754395842552185,0.53615391254425,0.753508150577545,0.414373755455017,0.934105753898621,0.424618393182755,0.91391921043396,0.537530481815338,0.915480554103851,0.536883056163788,0.976046741008759,0.528435468673706,0.988451063632965,0.414987742900848,0.987271904945374,0.415991246700287,0.904173731803894,0.423437744379044,0.91299957036972,0.399396628141403,0.913217425346375,0.600854635238647,0.914084076881409,0.612356305122375,0.902884185314178,0.612408339977264,0.914020359516144,0.415546298027039,0.765273034572601,0.415228754281998,0.738267958164215,0.428701013326645,0.75374448299408,0.752156138420105,0.129839822649956,0.894243538379669,0.132140174508095,0.892870306968689,0.199938416481018,0.851999938488007,0.206171497702599,0.75884211063385,0.209945484995842,0.750094950199127,0.193429261445999,0.753413736820221,0.308605253696442,0.897919297218323,0.296862065792084,0.902776002883911,0.354445338249207,0.875003337860107,0.375967890024185,0.772700965404511,0.384365022182465,0.755812406539917,0.330107778310776,0.963598489761353,0.19539687037468,0.974708735942841,0.268219530582428,0.957947790622711,0.286432832479477,0.899144053459167,0.295305162668228,0.891751348972321,0.225860133767128,0.894050538539886,0.200815618038177,0.890483856201172,0.224692091345787,0.854374587535858,0.207031205296516,0.892859220504761,0.2009686678648,0.894144594669342,0.0553645305335522,0.865765273571014,0.0399317778646946,0.898261487483978,0.0316374264657497,0.750205814838409,0.051879309117794,0.761374890804291,0.0390751138329506,0.86416620016098,0.0404560603201389,0.894072771072388,0.0565293803811073,0.894116222858429,0.131019294261932,0.75227963924408,0.128643959760666,0.7298304438591,0.306655019521713,0.674351692199707,0.292142480611801,0.67615419626236,0.214331328868866,0.738640189170837,0.212520331144333,
- 0.751182734966278,0.225779324769974,0.751864194869995,0.307415366172791,0.674359500408173,0.293537795543671,0.725274682044983,0.306745976209641,0.673951804637909,0.305311352014542,0.752699017524719,0.225855380296707,0.758986711502075,0.211066767573357,0.851980090141296,0.207292824983597,0.890470921993256,0.226060435175896,0.897889852523804,0.295383781194687,0.753384351730347,0.307211369276047,0.751638889312744,0.224589318037033,0.740170896053314,0.212162107229233,0.757620751857758,0.210882365703583,0.255404233932495,0.799993991851807,0.0964959263801575,0.800795078277588,0.096301831305027,0.720257699489594,0.176599144935608,0.720716178417206,0.256433635950089,0.724722266197205,0.25687250494957,0.722593128681183,0.176604777574539,0.718958020210266,0.188421130180359,0.644030213356018,0.258441627025604,0.64637702703476,0.258098483085632,0.949353694915771,0.189212173223495,0.956363499164581,0.118814885616302,0.95854115486145,0.0977336242794991,0.940606355667114,0.0969404429197311,0.878044962882996,0.249899014830589,0.874469459056854,0.256653666496277,0.889456629753113,0.0210041888058186,0.802984952926636,0.019113389775157,0.739589691162109,0.040805995464325,0.720831274986267,0.0938384160399437,0.7198166847229,0.0947793498635292,0.800959765911102,0.334767639636993,0.72661817073822,0.329522550106049,0.786801815032959,0.283602833747864,0.800518929958344,0.25762927532196,0.800006687641144,0.258627533912659,0.724329829216003,0.0187826845794916,0.7382652759552,0.0185350403189659,0.720946133136749,0.0396098792552948,0.720378816127777,0.0961751639842987,0.71835470199585,0.0975309312343597,0.663997650146484,0.118176721036434,0.641973495483398,0.254944205284119,0.828025162220001,0.252015471458435,0.872064054012299,0.0971289947628975,0.876471996307373,0.0967187583446503,0.802744388580322,0.25529408454895,0.801579594612122,0.329053401947021,0.788591086864471,0.328156352043152,0.803140044212341,0.285872519016266,0.801347613334656,0.414587736129761,0.665984988212585,0.526780188083649,0.664963841438293,0.535148143768311,0.677003800868988,
- 0.535829305648804,0.752072989940643,0.429889798164368,0.753320038318634,0.415408164262772,0.736675143241882,0.611593782901764,0.826639175415039,0.611942291259766,0.901619255542755,0.599440515041351,0.913836359977722,0.538544595241547,0.914170503616333,0.537654757499695,0.826390326023102,0.34450426697731,0.913660526275635,0.344044297933578,0.846178650856018,0.356723487377167,0.828278958797455,0.413325190544128,0.82714056968689,0.415371090173721,0.903031885623932,0.397654235363007,0.912756085395813,0.414893358945847,0.8275186419487,0.536207139492035,0.826508045196533,0.537059247493744,0.914043843746185,0.424709618091583,0.912545680999756,0.416660189628601,0.903204560279846,0.536629915237427,0.825338423252106,0.414476692676544,0.826009213924408,0.415541440248489,0.766669094562531,0.429860562086105,0.754395842552185,0.53615391254425,0.753508150577545,0.414373755455017,0.934105753898621,0.424618393182755,0.91391921043396,0.537530481815338,0.915480554103851,0.536883056163788,0.976046741008759,0.528435468673706,0.988451063632965,0.414987742900848,0.987271904945374,0.415991246700287,0.904173731803894,0.423437744379044,0.91299957036972,0.399396628141403,0.913217425346375,0.600854635238647,0.914084076881409,0.612356305122375,0.902884185314178,0.612408339977264,0.914020359516144,0.415546298027039,0.765273034572601,0.415228754281998,0.738267958164215,0.428701013326645,0.75374448299408,0.752156138420105,0.129839822649956,0.894243538379669,0.132140174508095,0.892870306968689,0.199938416481018,0.851999938488007,0.206171497702599,0.75884211063385,0.209945484995842,0.750094950199127,0.193429261445999,0.753413736820221,0.308605253696442,0.897919297218323,0.296862065792084,0.902776002883911,0.354445338249207,0.875003337860107,0.375967890024185,0.772700965404511,0.384365022182465,0.755812406539917,0.330107778310776,0.963598489761353,0.19539687037468,0.974708735942841,0.268219530582428,0.957947790622711,0.286432832479477,0.899144053459167,0.295305162668228,0.891751348972321,0.225860133767128,0.894050538539886,0.200815618038177,0.890483856201172,
- 0.224692091345787,0.854374587535858,0.207031205296516,0.892859220504761,0.2009686678648,0.894144594669342,0.0553645305335522,0.865765273571014,0.0399317778646946,0.898261487483978,0.0316374264657497,0.750205814838409,0.051879309117794,0.761374890804291,0.0390751138329506,0.86416620016098,0.0404560603201389,0.894072771072388,0.0565293803811073,0.894116222858429,0.131019294261932,0.75227963924408,0.128643959760666,0.7298304438591,0.306655019521713,0.674351692199707,0.292142480611801,0.67615419626236,0.214331328868866,0.738640189170837,0.212520331144333,0.751182734966278,0.225779324769974,0.751864194869995,0.307415366172791,0.674359500408173,0.293537795543671,0.725274682044983,0.306745976209641,0.673951804637909,0.305311352014542,0.752699017524719,0.225855380296707,0.758986711502075,0.211066767573357,0.851980090141296,0.207292824983597,0.890470921993256,0.226060435175896,0.897889852523804,0.295383781194687,0.753384351730347,0.307211369276047,0.751638889312744,0.224589318037033,0.740170896053314,0.212162107229233,0.757620751857758,0.210882365703583,0.414587736129761,0.665984988212585,0.526780188083649,0.664963841438293,0.535148143768311,0.677003800868988,0.535829305648804,0.752072989940643,0.429889798164368,0.753320038318634,0.415408164262772,0.736675143241882,0.611593782901764,0.826639175415039,0.611942291259766,0.901619255542755,0.599440515041351,0.913836359977722,0.538544595241547,0.914170503616333,0.537654757499695,0.826390326023102,0.34450426697731,0.913660526275635,0.344044297933578,0.846178650856018,0.356723487377167,0.828278958797455,0.413325190544128,0.82714056968689,0.415371090173721,0.903031885623932,0.397654235363007,0.912756085395813,0.414893358945847,0.8275186419487,0.536207139492035,0.826508045196533,0.537059247493744,0.914043843746185,0.424709618091583,0.912545680999756,0.416660189628601,0.903204560279846,0.536629915237427,0.825338423252106,0.414476692676544,0.826009213924408,0.415541440248489,0.766669094562531,0.429860562086105,0.754395842552185,0.53615391254425,0.753508150577545,0.414373755455017,0.934105753898621,
- 0.424618393182755,0.91391921043396,0.537530481815338,0.915480554103851,0.536883056163788,0.976046741008759,0.528435468673706,0.988451063632965,0.414987742900848,0.987271904945374,0.415991246700287,0.904173731803894,0.423437744379044,0.91299957036972,0.399396628141403,0.913217425346375,0.600854635238647,0.914084076881409,0.612356305122375,0.902884185314178,0.612408339977264,0.914020359516144,0.415546298027039,0.765273034572601,0.415228754281998,0.738267958164215,0.428701013326645,0.75374448299408,0.255404233932495,0.799993991851807,0.0964959263801575,0.800795078277588,0.096301831305027,0.720257699489594,0.176599144935608,0.720716178417206,0.256433635950089,0.724722266197205,0.25687250494957,0.722593128681183,0.176604777574539,0.718958020210266,0.188421130180359,0.644030213356018,0.258441627025604,0.64637702703476,0.258098483085632,0.949353694915771,0.189212173223495,0.956363499164581,0.118814885616302,0.95854115486145,0.0977336242794991,0.940606355667114,0.0969404429197311,0.878044962882996,0.249899014830589,0.874469459056854,0.256653666496277,0.889456629753113,0.0210041888058186,0.802984952926636,0.019113389775157,0.739589691162109,0.040805995464325,0.720831274986267,0.0938384160399437,0.7198166847229,0.0947793498635292,0.800959765911102,0.334767639636993,0.72661817073822,0.329522550106049,0.786801815032959,0.283602833747864,0.800518929958344,0.25762927532196,0.800006687641144,0.258627533912659,0.724329829216003,0.0187826845794916,0.7382652759552,0.0185350403189659,0.720946133136749,0.0396098792552948,0.720378816127777,0.0961751639842987,0.71835470199585,0.0975309312343597,0.663997650146484,0.118176721036434,0.641973495483398,0.254944205284119,0.828025162220001,0.252015471458435,0.872064054012299,0.0971289947628975,0.876471996307373,0.0967187583446503,0.802744388580322,0.25529408454895,0.801579594612122,0.329053401947021,0.788591086864471,0.328156352043152,0.803140044212341,0.285872519016266,0.801347613334656,0.752156138420105,0.129839822649956,0.894243538379669,0.132140174508095,0.892870306968689,0.199938416481018,
- 0.851999938488007,0.206171497702599,0.75884211063385,0.209945484995842,0.750094950199127,0.193429261445999,0.753413736820221,0.308605253696442,0.897919297218323,0.296862065792084,0.902776002883911,0.354445338249207,0.875003337860107,0.375967890024185,0.772700965404511,0.384365022182465,0.755812406539917,0.330107778310776,0.963598489761353,0.19539687037468,0.974708735942841,0.268219530582428,0.957947790622711,0.286432832479477,0.899144053459167,0.295305162668228,0.891751348972321,0.225860133767128,0.894050538539886,0.200815618038177,0.890483856201172,0.224692091345787,0.854374587535858,0.207031205296516,0.892859220504761,0.2009686678648,0.894144594669342,0.0553645305335522,0.865765273571014,0.0399317778646946,0.898261487483978,0.0316374264657497,0.750205814838409,0.051879309117794,0.761374890804291,0.0390751138329506,0.86416620016098,0.0404560603201389,0.894072771072388,0.0565293803811073,0.894116222858429,0.131019294261932,0.75227963924408,0.128643959760666,0.7298304438591,0.306655019521713,0.674351692199707,0.292142480611801,0.67615419626236,0.214331328868866,0.738640189170837,0.212520331144333,0.751182734966278,0.225779324769974,0.751864194869995,0.307415366172791,0.674359500408173,0.293537795543671,0.725274682044983,0.306745976209641,0.673951804637909,0.305311352014542,0.752699017524719,0.225855380296707,0.758986711502075,0.211066767573357,0.851980090141296,0.207292824983597,0.890470921993256,0.226060435175896,0.897889852523804,0.295383781194687,0.753384351730347,0.307211369276047,0.751638889312744,0.224589318037033,0.740170896053314,0.212162107229233,0.757620751857758,0.210882365703583,0.255404233932495,0.799993991851807,0.0964959263801575,0.800795078277588,0.096301831305027,0.720257699489594,0.176599144935608,0.720716178417206,0.256433635950089,0.724722266197205,0.25687250494957,0.722593128681183,0.176604777574539,0.718958020210266,0.188421130180359,0.644030213356018,0.258441627025604,0.64637702703476,0.258098483085632,0.949353694915771,0.189212173223495,0.956363499164581,0.118814885616302,0.95854115486145,0.0977336242794991,
- 0.940606355667114,0.0969404429197311,0.878044962882996,0.249899014830589,0.874469459056854,0.256653666496277,0.889456629753113,0.0210041888058186,0.802984952926636,0.019113389775157,0.739589691162109,0.040805995464325,0.720831274986267,0.0938384160399437,0.7198166847229,0.0947793498635292,0.800959765911102,0.334767639636993,0.72661817073822,0.329522550106049,0.786801815032959,0.283602833747864,0.800518929958344,0.25762927532196,0.800006687641144,0.258627533912659,0.724329829216003,0.0187826845794916,0.7382652759552,0.0185350403189659,0.720946133136749,0.0396098792552948,0.720378816127777,0.0961751639842987,0.71835470199585,0.0975309312343597,0.663997650146484,0.118176721036434,0.641973495483398,0.254944205284119,0.828025162220001,0.252015471458435,0.872064054012299,0.0971289947628975,0.876471996307373,0.0967187583446503,0.802744388580322,0.25529408454895,0.801579594612122,0.329053401947021,0.788591086864471,0.328156352043152,0.803140044212341,0.285872519016266,0.801347613334656,0.752156138420105,0.129839822649956,0.894243538379669,0.132140174508095,0.892870306968689,0.199938416481018,0.851999938488007,0.206171497702599,0.75884211063385,0.209945484995842,0.750094950199127,0.193429261445999,0.753413736820221,0.308605253696442,0.897919297218323,0.296862065792084,0.902776002883911,0.354445338249207,0.875003337860107,0.375967890024185,0.772700965404511,0.384365022182465,0.755812406539917,0.330107778310776,0.963598489761353,0.19539687037468,0.974708735942841,0.268219530582428,0.957947790622711,0.286432832479477,0.899144053459167,0.295305162668228,0.891751348972321,0.225860133767128,0.894050538539886,0.200815618038177,0.890483856201172,0.224692091345787,0.854374587535858,0.207031205296516,0.892859220504761,0.2009686678648,0.894144594669342,0.0553645305335522,0.865765273571014,0.0399317778646946,0.898261487483978,0.0316374264657497,0.750205814838409,0.051879309117794,0.761374890804291,0.0390751138329506,0.86416620016098,0.0404560603201389,0.894072771072388,0.0565293803811073,0.894116222858429,0.131019294261932,0.75227963924408,
- 0.128643959760666,0.7298304438591,0.306655019521713,0.674351692199707,0.292142480611801,0.67615419626236,0.214331328868866,0.738640189170837,0.212520331144333,0.751182734966278,0.225779324769974,0.751864194869995,0.307415366172791,0.674359500408173,0.293537795543671,0.725274682044983,0.306745976209641,0.673951804637909,0.305311352014542,0.752699017524719,0.225855380296707,0.758986711502075,0.211066767573357,0.851980090141296,0.207292824983597,0.890470921993256,0.226060435175896,0.897889852523804,0.295383781194687,0.753384351730347,0.307211369276047,0.751638889312744,0.224589318037033,0.740170896053314,0.212162107229233,0.757620751857758,0.210882365703583,0.752156138420105,0.129839822649956,0.894243538379669,0.132140174508095,0.892870306968689,0.199938416481018,0.851999938488007,0.206171497702599,0.75884211063385,0.209945484995842,0.750094950199127,0.193429261445999,0.753413736820221,0.308605253696442,0.897919297218323,0.296862065792084,0.902776002883911,0.354445338249207,0.875003337860107,0.375967890024185,0.772700965404511,0.384365022182465,0.755812406539917,0.330107778310776,0.963598489761353,0.19539687037468,0.974708735942841,0.268219530582428,0.957947790622711,0.286432832479477,0.899144053459167,0.295305162668228,0.891751348972321,0.225860133767128,0.894050538539886,0.200815618038177,0.890483856201172,0.224692091345787,0.854374587535858,0.207031205296516,0.892859220504761,0.2009686678648,0.894144594669342,0.0553645305335522,0.865765273571014,0.0399317778646946,0.898261487483978,0.0316374264657497,0.750205814838409,0.051879309117794,0.761374890804291,0.0390751138329506,0.86416620016098,0.0404560603201389,0.894072771072388,0.0565293803811073,0.894116222858429,0.131019294261932,0.75227963924408,0.128643959760666,0.7298304438591,0.306655019521713,0.674351692199707,0.292142480611801,0.67615419626236,0.214331328868866,0.738640189170837,0.212520331144333,0.751182734966278,0.225779324769974,0.751864194869995,0.307415366172791,0.674359500408173,0.293537795543671,0.725274682044983,0.306745976209641,0.673951804637909,0.305311352014542,
- 0.752699017524719,0.225855380296707,0.758986711502075,0.211066767573357,0.851980090141296,0.207292824983597,0.890470921993256,0.226060435175896,0.897889852523804,0.295383781194687,0.753384351730347,0.307211369276047,0.751638889312744,0.224589318037033,0.740170896053314,0.212162107229233,0.757620751857758,0.210882365703583,0.255404233932495,0.799993991851807,0.0964959263801575,0.800795078277588,0.096301831305027,0.720257699489594,0.176599144935608,0.720716178417206,0.256433635950089,0.724722266197205,0.25687250494957,0.722593128681183,0.176604777574539,0.718958020210266,0.188421130180359,0.644030213356018,0.258441627025604,0.64637702703476,0.258098483085632,0.949353694915771,0.189212173223495,0.956363499164581,0.118814885616302,0.95854115486145,0.0977336242794991,0.940606355667114,0.0969404429197311,0.878044962882996,0.249899014830589,0.874469459056854,0.256653666496277,0.889456629753113,0.0210041888058186,0.802984952926636,0.019113389775157,0.739589691162109,0.040805995464325,0.720831274986267,0.0938384160399437,0.7198166847229,0.0947793498635292,0.800959765911102,0.334767639636993,0.72661817073822,0.329522550106049,0.786801815032959,0.283602833747864,0.800518929958344,0.25762927532196,0.800006687641144,0.258627533912659,0.724329829216003,0.0187826845794916,0.7382652759552,0.0185350403189659,0.720946133136749,0.0396098792552948,0.720378816127777,0.0961751639842987,0.71835470199585,0.0975309312343597,0.663997650146484,0.118176721036434,0.641973495483398,0.254944205284119,0.828025162220001,0.252015471458435,0.872064054012299,0.0971289947628975,0.876471996307373,0.0967187583446503,0.802744388580322,0.25529408454895,0.801579594612122,0.329053401947021,0.788591086864471,0.328156352043152,0.803140044212341,0.285872519016266,0.801347613334656,0.752156138420105,0.129839822649956,0.894243538379669,0.132140174508095,0.892870306968689,0.199938416481018,0.851999938488007,0.206171497702599,0.75884211063385,0.209945484995842,0.750094950199127,0.193429261445999,0.753413736820221,0.308605253696442,0.897919297218323,0.296862065792084,
- 0.902776002883911,0.354445338249207,0.875003337860107,0.375967890024185,0.772700965404511,0.384365022182465,0.755812406539917,0.330107778310776,0.963598489761353,0.19539687037468,0.974708735942841,0.268219530582428,0.957947790622711,0.286432832479477,0.899144053459167,0.295305162668228,0.891751348972321,0.225860133767128,0.894050538539886,0.200815618038177,0.890483856201172,0.224692091345787,0.854374587535858,0.207031205296516,0.892859220504761,0.2009686678648,0.894144594669342,0.0553645305335522,0.865765273571014,0.0399317778646946,0.898261487483978,0.0316374264657497,0.750205814838409,0.051879309117794,0.761374890804291,0.0390751138329506,0.86416620016098,0.0404560603201389,0.894072771072388,0.0565293803811073,0.894116222858429,0.131019294261932,0.75227963924408,0.128643959760666,0.7298304438591,0.306655019521713,0.674351692199707,0.292142480611801,0.67615419626236,0.214331328868866,0.738640189170837,0.212520331144333,0.751182734966278,0.225779324769974,0.751864194869995,0.307415366172791,0.674359500408173,0.293537795543671,0.725274682044983,0.306745976209641,0.673951804637909,0.305311352014542,0.752699017524719,0.225855380296707,0.758986711502075,0.211066767573357,0.851980090141296,0.207292824983597,0.890470921993256,0.226060435175896,0.897889852523804,0.295383781194687,0.753384351730347,0.307211369276047,0.751638889312744,0.224589318037033,0.740170896053314,0.212162107229233,0.757620751857758,0.210882365703583,0.752156138420105,0.129839822649956,0.894243538379669,0.132140174508095,0.892870306968689,0.199938416481018,0.851999938488007,0.206171497702599,0.75884211063385,0.209945484995842,0.750094950199127,0.193429261445999,0.753413736820221,0.308605253696442,0.897919297218323,0.296862065792084,0.902776002883911,0.354445338249207,0.875003337860107,0.375967890024185,0.772700965404511,0.384365022182465,0.755812406539917,0.330107778310776,0.963598489761353,0.19539687037468,0.974708735942841,0.268219530582428,0.957947790622711,0.286432832479477,0.899144053459167,0.295305162668228,0.891751348972321,0.225860133767128,0.894050538539886,
- 0.200815618038177,0.890483856201172,0.224692091345787,0.854374587535858,0.207031205296516,0.892859220504761,0.2009686678648,0.894144594669342,0.0553645305335522,0.865765273571014,0.0399317778646946,0.898261487483978,0.0316374264657497,0.750205814838409,0.051879309117794,0.761374890804291,0.0390751138329506,0.86416620016098,0.0404560603201389,0.894072771072388,0.0565293803811073,0.894116222858429,0.131019294261932,0.75227963924408,0.128643959760666,0.7298304438591,0.306655019521713,0.674351692199707,0.292142480611801,0.67615419626236,0.214331328868866,0.738640189170837,0.212520331144333,0.751182734966278,0.225779324769974,0.751864194869995,0.307415366172791,0.674359500408173,0.293537795543671,0.725274682044983,0.306745976209641,0.673951804637909,0.305311352014542,0.752699017524719,0.225855380296707,0.758986711502075,0.211066767573357,0.851980090141296,0.207292824983597,0.890470921993256,0.226060435175896,0.897889852523804,0.295383781194687,0.753384351730347,0.307211369276047,0.751638889312744,0.224589318037033,0.740170896053314,0.212162107229233,0.757620751857758,0.210882365703583,0.752156138420105,0.129839822649956,0.894243538379669,0.132140174508095,0.892870306968689,0.199938416481018,0.851999938488007,0.206171497702599,0.75884211063385,0.209945484995842,0.750094950199127,0.193429261445999,0.753413736820221,0.308605253696442,0.897919297218323,0.296862065792084,0.902776002883911,0.354445338249207,0.875003337860107,0.375967890024185,0.772700965404511,0.384365022182465,0.755812406539917,0.330107778310776,0.963598489761353,0.19539687037468,0.974708735942841,0.268219530582428,0.957947790622711,0.286432832479477,0.899144053459167,0.295305162668228,0.891751348972321,0.225860133767128,0.894050538539886,0.200815618038177,0.890483856201172,0.224692091345787,0.854374587535858,0.207031205296516,0.892859220504761,0.2009686678648,0.894144594669342,0.0553645305335522,0.865765273571014,0.0399317778646946,0.898261487483978,0.0316374264657497,0.750205814838409,0.051879309117794,0.761374890804291,0.0390751138329506,0.86416620016098,
- 0.0404560603201389,0.894072771072388,0.0565293803811073,0.894116222858429,0.131019294261932,0.75227963924408,0.128643959760666,0.7298304438591,0.306655019521713,0.674351692199707,0.292142480611801,0.67615419626236,0.214331328868866,0.738640189170837,0.212520331144333,0.751182734966278,0.225779324769974,0.751864194869995,0.307415366172791,0.674359500408173,0.293537795543671,0.725274682044983,0.306745976209641,0.673951804637909,0.305311352014542,0.752699017524719,0.225855380296707,0.758986711502075,0.211066767573357,0.851980090141296,0.207292824983597,0.890470921993256,0.226060435175896,0.897889852523804,0.295383781194687,0.753384351730347,0.307211369276047,0.751638889312744,0.224589318037033,0.740170896053314,0.212162107229233,0.757620751857758,0.210882365703583,0.414587736129761,0.665984988212585,0.526780188083649,0.664963841438293,0.535148143768311,0.677003800868988,0.535829305648804,0.752072989940643,0.429889798164368,0.753320038318634,0.415408164262772,0.736675143241882,0.611593782901764,0.826639175415039,0.611942291259766,0.901619255542755,0.599440515041351,0.913836359977722,0.538544595241547,0.914170503616333,0.537654757499695,0.826390326023102,0.34450426697731,0.913660526275635,0.344044297933578,0.846178650856018,0.356723487377167,0.828278958797455,0.413325190544128,0.82714056968689,0.415371090173721,0.903031885623932,0.397654235363007,0.912756085395813,0.414893358945847,0.8275186419487,0.536207139492035,0.826508045196533,0.537059247493744,0.914043843746185,0.424709618091583,0.912545680999756,0.416660189628601,0.903204560279846,0.536629915237427,0.825338423252106,0.414476692676544,0.826009213924408,0.415541440248489,0.766669094562531,0.429860562086105,0.754395842552185,0.53615391254425,0.753508150577545,0.414373755455017,0.934105753898621,0.424618393182755,0.91391921043396,0.537530481815338,0.915480554103851,0.536883056163788,0.976046741008759,0.528435468673706,0.988451063632965,0.414987742900848,0.987271904945374,0.415991246700287,0.904173731803894,0.423437744379044,0.91299957036972,0.399396628141403,0.913217425346375,
- 0.600854635238647,0.914084076881409,0.612356305122375,0.902884185314178,0.612408339977264,0.914020359516144,0.415546298027039,0.765273034572601,0.415228754281998,0.738267958164215,0.428701013326645,0.75374448299408,0.414587736129761,0.665984988212585,0.526780188083649,0.664963841438293,0.535148143768311,0.677003800868988,0.535829305648804,0.752072989940643,0.429889798164368,0.753320038318634,0.415408164262772,0.736675143241882,0.611593782901764,0.826639175415039,0.611942291259766,0.901619255542755,0.599440515041351,0.913836359977722,0.538544595241547,0.914170503616333,0.537654757499695,0.826390326023102,0.34450426697731,0.913660526275635,0.344044297933578,0.846178650856018,0.356723487377167,0.828278958797455,0.413325190544128,0.82714056968689,0.415371090173721,0.903031885623932,0.397654235363007,0.912756085395813,0.414893358945847,0.8275186419487,0.536207139492035,0.826508045196533,0.537059247493744,0.914043843746185,0.424709618091583,0.912545680999756,0.416660189628601,0.903204560279846,0.536629915237427,0.825338423252106,0.414476692676544,0.826009213924408,0.415541440248489,0.766669094562531,0.429860562086105,0.754395842552185,0.53615391254425,0.753508150577545,0.414373755455017,0.934105753898621,0.424618393182755,0.91391921043396,0.537530481815338,0.915480554103851,0.536883056163788,0.976046741008759,0.528435468673706,0.988451063632965,0.414987742900848,0.987271904945374,0.415991246700287,0.904173731803894,0.423437744379044,0.91299957036972,0.399396628141403,0.913217425346375,0.600854635238647,0.914084076881409,0.612356305122375,0.902884185314178,0.612408339977264,0.914020359516144,0.415546298027039,0.765273034572601,0.415228754281998,0.738267958164215,0.428701013326645,0.75374448299408,0.752156138420105,0.129839822649956,0.894243538379669,0.132140174508095,0.892870306968689,0.199938416481018,0.851999938488007,0.206171497702599,0.75884211063385,0.209945484995842,0.750094950199127,0.193429261445999,0.753413736820221,0.308605253696442,0.897919297218323,0.296862065792084,0.902776002883911,0.354445338249207,0.875003337860107,
- 0.375967890024185,0.772700965404511,0.384365022182465,0.755812406539917,0.330107778310776,0.963598489761353,0.19539687037468,0.974708735942841,0.268219530582428,0.957947790622711,0.286432832479477,0.899144053459167,0.295305162668228,0.891751348972321,0.225860133767128,0.894050538539886,0.200815618038177,0.890483856201172,0.224692091345787,0.854374587535858,0.207031205296516,0.892859220504761,0.2009686678648,0.894144594669342,0.0553645305335522,0.865765273571014,0.0399317778646946,0.898261487483978,0.0316374264657497,0.750205814838409,0.051879309117794,0.761374890804291,0.0390751138329506,0.86416620016098,0.0404560603201389,0.894072771072388,0.0565293803811073,0.894116222858429,0.131019294261932,0.75227963924408,0.128643959760666,0.7298304438591,0.306655019521713,0.674351692199707,0.292142480611801,0.67615419626236,0.214331328868866,0.738640189170837,0.212520331144333,0.751182734966278,0.225779324769974,0.751864194869995,0.307415366172791,0.674359500408173,0.293537795543671,0.725274682044983,0.306745976209641,0.673951804637909,0.305311352014542,0.752699017524719,0.225855380296707,0.758986711502075,0.211066767573357,0.851980090141296,0.207292824983597,0.890470921993256,0.226060435175896,0.897889852523804,0.295383781194687,0.753384351730347,0.307211369276047,0.751638889312744,0.224589318037033,0.740170896053314,0.212162107229233,0.757620751857758,0.210882365703583,0.752156138420105,0.129839822649956,0.894243538379669,0.132140174508095,0.892870306968689,0.199938416481018,0.851999938488007,0.206171497702599,0.75884211063385,0.209945484995842,0.750094950199127,0.193429261445999,0.753413736820221,0.308605253696442,0.897919297218323,0.296862065792084,0.902776002883911,0.354445338249207,0.875003337860107,0.375967890024185,0.772700965404511,0.384365022182465,0.755812406539917,0.330107778310776,0.963598489761353,0.19539687037468,0.974708735942841,0.268219530582428,0.957947790622711,0.286432832479477,0.899144053459167,0.295305162668228,0.891751348972321,0.225860133767128,0.894050538539886,0.200815618038177,0.890483856201172,0.224692091345787,
- 0.854374587535858,0.207031205296516,0.892859220504761,0.2009686678648,0.894144594669342,0.0553645305335522,0.865765273571014,0.0399317778646946,0.898261487483978,0.0316374264657497,0.750205814838409,0.051879309117794,0.761374890804291,0.0390751138329506,0.86416620016098,0.0404560603201389,0.894072771072388,0.0565293803811073,0.894116222858429,0.131019294261932,0.75227963924408,0.128643959760666,0.7298304438591,0.306655019521713,0.674351692199707,0.292142480611801,0.67615419626236,0.214331328868866,0.738640189170837,0.212520331144333,0.751182734966278,0.225779324769974,0.751864194869995,0.307415366172791,0.674359500408173,0.293537795543671,0.725274682044983,0.306745976209641,0.673951804637909,0.305311352014542,0.752699017524719,0.225855380296707,0.758986711502075,0.211066767573357,0.851980090141296,0.207292824983597,0.890470921993256,0.226060435175896,0.897889852523804,0.295383781194687,0.753384351730347,0.307211369276047,0.751638889312744,0.224589318037033,0.740170896053314,0.212162107229233,0.757620751857758,0.210882365703583,0.255922168493271,0.76224148273468,0.0961830168962479,0.760387539863586,0.096301831305027,0.720257699489594,0.176599144935608,0.720716178417206,0.256453901529312,0.724675178527832,0.25687250494957,0.722593128681183,0.176604777574539,0.718958020210266,0.188421130180359,0.644030213356018,0.258441627025604,0.64637702703476,0.258098483085632,0.949353694915771,0.189212173223495,0.956363499164581,0.118814885616302,0.95854115486145,0.0977336242794991,0.940606355667114,0.0969404429197311,0.878044962882996,0.249899014830589,0.874469459056854,0.256653666496277,0.889456629753113,0.0210041888058186,0.802984952926636,0.019113389775157,0.739589691162109,0.040805995464325,0.720831274986267,0.0938384160399437,0.7198166847229,0.0943631008267403,0.760401844978333,0.0947793498635292,0.800959765911102,0.334767639636993,0.72661817073822,0.329522550106049,0.786801815032959,0.283602833747864,0.800518929958344,0.25762927532196,0.800006687641144,0.258212894201279,0.762175858020782,0.258627533912659,0.724329829216003,
- 0.0187826845794916,0.7382652759552,0.0185350403189659,0.720946133136749,0.0396098792552948,0.720378816127777,0.0961751639842987,0.71835470199585,0.0975309312343597,0.663997650146484,0.118176721036434,0.641973495483398,0.254944205284119,0.828025162220001,0.252015471458435,0.872064054012299,0.0971289947628975,0.876471996307373,0.0967187583446503,0.802744388580322,0.25529408454895,0.801579594612122,0.329053401947021,0.788591086864471,0.328156352043152,0.803140044212341,0.285872519016266,0.801347613334656,0.255404233932495,0.799993991851807,0.0964959263801575,0.800795078277588,0.752156138420105,0.129839822649956,0.894243538379669,0.132140174508095,0.892870306968689,0.199938416481018,0.851999938488007,0.206171497702599,0.75884211063385,0.209945484995842,0.750094950199127,0.193429261445999,0.753413736820221,0.308605253696442,0.897919297218323,0.296862065792084,0.902776002883911,0.354445338249207,0.875003337860107,0.375967890024185,0.772700965404511,0.384365022182465,0.755812406539917,0.330107778310776,0.963598489761353,0.19539687037468,0.974708735942841,0.268219530582428,0.957947790622711,0.286432832479477,0.899144053459167,0.295305162668228,0.891751348972321,0.225860133767128,0.894050538539886,0.200815618038177,0.890483856201172,0.224692091345787,0.854374587535858,0.207031205296516,0.892859220504761,0.2009686678648,0.894144594669342,0.0553645305335522,0.865765273571014,0.0399317778646946,0.898261487483978,0.0316374264657497,0.750205814838409,0.051879309117794,0.761374890804291,0.0390751138329506,0.86416620016098,0.0404560603201389,0.894072771072388,0.0565293803811073,0.894116222858429,0.131019294261932,0.75227963924408,0.128643959760666,0.7298304438591,0.306655019521713,0.674351692199707,0.292142480611801,0.67615419626236,0.214331328868866,0.738640189170837,0.212520331144333,0.751182734966278,0.225779324769974,0.751864194869995,0.307415366172791,0.674359500408173,0.293537795543671,0.725274682044983,0.306745976209641,0.673951804637909,0.305311352014542,0.752699017524719,0.225855380296707,0.758986711502075,0.211066767573357,
- 0.851980090141296,0.207292824983597,0.890470921993256,0.226060435175896,0.897889852523804,0.295383781194687,0.753384351730347,0.307211369276047,0.751638889312744,0.224589318037033,0.740170896053314,0.212162107229233,0.757620751857758,0.210882365703583,0.255404233932495,0.799993991851807,0.0964959263801575,0.800795078277588,0.096301831305027,0.720257699489594,0.176599144935608,0.720716178417206,0.256433635950089,0.724722266197205,0.25687250494957,0.722593128681183,0.176604777574539,0.718958020210266,0.188421130180359,0.644030213356018,0.258441627025604,0.64637702703476,0.258098483085632,0.949353694915771,0.189212173223495,0.956363499164581,0.118814885616302,0.95854115486145,0.0977336242794991,0.940606355667114,0.0969404429197311,0.878044962882996,0.249899014830589,0.874469459056854,0.256653666496277,0.889456629753113,0.0210041888058186,0.802984952926636,0.019113389775157,0.739589691162109,0.040805995464325,0.720831274986267,0.0938384160399437,0.7198166847229,0.0947793498635292,0.800959765911102,0.334767639636993,0.72661817073822,0.329522550106049,0.786801815032959,0.283602833747864,0.800518929958344,0.25762927532196,0.800006687641144,0.258627533912659,0.724329829216003,0.0187826845794916,0.7382652759552,0.0185350403189659,0.720946133136749,0.0396098792552948,0.720378816127777,0.0961751639842987,0.71835470199585,0.0975309312343597,0.663997650146484,0.118176721036434,0.641973495483398,0.254944205284119,0.828025162220001,0.252015471458435,0.872064054012299,0.0971289947628975,0.876471996307373,0.0967187583446503,0.802744388580322,0.25529408454895,0.801579594612122,0.329053401947021,0.788591086864471,0.328156352043152,0.803140044212341,0.285872519016266,0.801347613334656,0.752156138420105,0.129839822649956,0.894243538379669,0.132140174508095,0.892870306968689,0.199938416481018,0.851999938488007,0.206171497702599,0.75884211063385,0.209945484995842,0.750094950199127,0.193429261445999,0.753413736820221,0.308605253696442,0.897919297218323,0.296862065792084,0.902776002883911,0.354445338249207,0.875003337860107,0.375967890024185,
- 0.772700965404511,0.384365022182465,0.755812406539917,0.330107778310776,0.963598489761353,0.19539687037468,0.974708735942841,0.268219530582428,0.957947790622711,0.286432832479477,0.899144053459167,0.295305162668228,0.891751348972321,0.225860133767128,0.894050538539886,0.200815618038177,0.890483856201172,0.224692091345787,0.854374587535858,0.207031205296516,0.892859220504761,0.2009686678648,0.894144594669342,0.0553645305335522,0.865765273571014,0.0399317778646946,0.898261487483978,0.0316374264657497,0.750205814838409,0.051879309117794,0.761374890804291,0.0390751138329506,0.86416620016098,0.0404560603201389,0.894072771072388,0.0565293803811073,0.894116222858429,0.131019294261932,0.75227963924408,0.128643959760666,0.7298304438591,0.306655019521713,0.674351692199707,0.292142480611801,0.67615419626236,0.214331328868866,0.738640189170837,0.212520331144333,0.751182734966278,0.225779324769974,0.751864194869995,0.307415366172791,0.674359500408173,0.293537795543671,0.725274682044983,0.306745976209641,0.673951804637909,0.305311352014542,0.752699017524719,0.225855380296707,0.758986711502075,0.211066767573357,0.851980090141296,0.207292824983597,0.890470921993256,0.226060435175896,0.897889852523804,0.295383781194687,0.753384351730347,0.307211369276047,0.751638889312744,0.224589318037033,0.740170896053314,0.212162107229233,0.757620751857758,0.210882365703583,0.414587736129761,0.665984988212585,0.526780188083649,0.664963841438293,0.535148143768311,0.677003800868988,0.535829305648804,0.752072989940643,0.429889798164368,0.753320038318634,0.415408164262772,0.736675143241882,0.611593782901764,0.826639175415039,0.611942291259766,0.901619255542755,0.599440515041351,0.913836359977722,0.538544595241547,0.914170503616333,0.537654757499695,0.826390326023102,0.34450426697731,0.913660526275635,0.344044297933578,0.846178650856018,0.356723487377167,0.828278958797455,0.413325190544128,0.82714056968689,0.415371090173721,0.903031885623932,0.397654235363007,0.912756085395813,0.414893358945847,0.8275186419487,0.536207139492035,0.826508045196533,0.537059247493744,
- 0.914043843746185,0.424709618091583,0.912545680999756,0.416660189628601,0.903204560279846,0.536629915237427,0.825338423252106,0.414476692676544,0.826009213924408,0.415541440248489,0.766669094562531,0.429860562086105,0.754395842552185,0.53615391254425,0.753508150577545,0.414373755455017,0.934105753898621,0.424618393182755,0.91391921043396,0.537530481815338,0.915480554103851,0.536883056163788,0.976046741008759,0.528435468673706,0.988451063632965,0.414987742900848,0.987271904945374,0.415991246700287,0.904173731803894,0.423437744379044,0.91299957036972,0.399396628141403,0.913217425346375,0.600854635238647,0.914084076881409,0.612356305122375,0.902884185314178,0.612408339977264,0.914020359516144,0.415546298027039,0.765273034572601,0.415228754281998,0.738267958164215,0.428701013326645,0.75374448299408,0.255404233932495,0.799993991851807,0.0964959263801575,0.800795078277588,0.096301831305027,0.720257699489594,0.176599144935608,0.720716178417206,0.256433635950089,0.724722266197205,0.25687250494957,0.722593128681183,0.176604777574539,0.718958020210266,0.188421130180359,0.644030213356018,0.258441627025604,0.64637702703476,0.258098483085632,0.949353694915771,0.189212173223495,0.956363499164581,0.118814885616302,0.95854115486145,0.0977336242794991,0.940606355667114,0.0969404429197311,0.878044962882996,0.249899014830589,0.874469459056854,0.256653666496277,0.889456629753113,0.0210041888058186,0.802984952926636,0.019113389775157,0.739589691162109,0.040805995464325,0.720831274986267,0.0938384160399437,0.7198166847229,0.0947793498635292,0.800959765911102,0.334767639636993,0.72661817073822,0.329522550106049,0.786801815032959,0.283602833747864,0.800518929958344,0.25762927532196,0.800006687641144,0.258627533912659,0.724329829216003,0.0187826845794916,0.7382652759552,0.0185350403189659,0.720946133136749,0.0396098792552948,0.720378816127777,0.0961751639842987,0.71835470199585,0.0975309312343597,0.663997650146484,0.118176721036434,0.641973495483398,0.254944205284119,0.828025162220001,0.252015471458435,0.872064054012299,0.0971289947628975,
- 0.876471996307373,0.0967187583446503,0.802744388580322,0.25529408454895,0.801579594612122,0.329053401947021,0.788591086864471,0.328156352043152,0.803140044212341,0.285872519016266,0.801347613334656,0.414587736129761,0.665984988212585,0.526780188083649,0.664963841438293,0.535148143768311,0.677003800868988,0.535829305648804,0.752072989940643,0.429889798164368,0.753320038318634,0.415408164262772,0.736675143241882,0.611593782901764,0.826639175415039,0.611942291259766,0.901619255542755,0.599440515041351,0.913836359977722,0.538544595241547,0.914170503616333,0.537654757499695,0.826390326023102,0.34450426697731,0.913660526275635,0.344044297933578,0.846178650856018,0.356723487377167,0.828278958797455,0.413325190544128,0.82714056968689,0.415371090173721,0.903031885623932,0.397654235363007,0.912756085395813,0.414893358945847,0.8275186419487,0.536207139492035,0.826508045196533,0.537059247493744,0.914043843746185,0.424709618091583,0.912545680999756,0.416660189628601,0.903204560279846,0.536629915237427,0.825338423252106,0.414476692676544,0.826009213924408,0.415541440248489,0.766669094562531,0.429860562086105,0.754395842552185,0.53615391254425,0.753508150577545,0.414373755455017,0.934105753898621,0.424618393182755,0.91391921043396,0.537530481815338,0.915480554103851,0.536883056163788,0.976046741008759,0.528435468673706,0.988451063632965,0.414987742900848,0.987271904945374,0.415991246700287,0.904173731803894,0.423437744379044,0.91299957036972,0.399396628141403,0.913217425346375,0.600854635238647,0.914084076881409,0.612356305122375,0.902884185314178,0.612408339977264,0.914020359516144,0.415546298027039,0.765273034572601,0.415228754281998,0.738267958164215,0.428701013326645,0.75374448299408,0.752156138420105,0.129839822649956,0.894243538379669,0.132140174508095,0.892870306968689,0.199938416481018,0.851999938488007,0.206171497702599,0.75884211063385,0.209945484995842,0.750094950199127,0.193429261445999,0.753413736820221,0.308605253696442,0.897919297218323,0.296862065792084,0.902776002883911,0.354445338249207,0.875003337860107,0.375967890024185,
- 0.772700965404511,0.384365022182465,0.755812406539917,0.330107778310776,0.963598489761353,0.19539687037468,0.974708735942841,0.268219530582428,0.957947790622711,0.286432832479477,0.899144053459167,0.295305162668228,0.891751348972321,0.225860133767128,0.894050538539886,0.200815618038177,0.890483856201172,0.224692091345787,0.854374587535858,0.207031205296516,0.892859220504761,0.2009686678648,0.894144594669342,0.0553645305335522,0.865765273571014,0.0399317778646946,0.898261487483978,0.0316374264657497,0.750205814838409,0.051879309117794,0.761374890804291,0.0390751138329506,0.86416620016098,0.0404560603201389,0.894072771072388,0.0565293803811073,0.894116222858429,0.131019294261932,0.75227963924408,0.128643959760666,0.7298304438591,0.306655019521713,0.674351692199707,0.292142480611801,0.67615419626236,0.214331328868866,0.738640189170837,0.212520331144333,0.751182734966278,0.225779324769974,0.751864194869995,0.307415366172791,0.674359500408173,0.293537795543671,0.725274682044983,0.306745976209641,0.673951804637909,0.305311352014542,0.752699017524719,0.225855380296707,0.758986711502075,0.211066767573357,0.851980090141296,0.207292824983597,0.890470921993256,0.226060435175896,0.897889852523804,0.295383781194687,0.753384351730347,0.307211369276047,0.751638889312744,0.224589318037033,0.740170896053314,0.212162107229233,0.757620751857758,0.210882365703583,0.255404233932495,0.799993991851807,0.0964959263801575,0.800795078277588,0.096301831305027,0.720257699489594,0.176599144935608,0.720716178417206,0.256433635950089,0.724722266197205,0.25816398859024,0.684505343437195,0.182541444897652,0.681613504886627,0.188421130180359,0.644030213356018,0.258441627025604,0.64637702703476,0.258098483085632,0.949353694915771,0.189212173223495,0.956363499164581,0.118814885616302,0.95854115486145,0.0977336242794991,0.940606355667114,0.0969404429197311,0.878044962882996,0.249899014830589,0.874469459056854,0.256653666496277,0.889456629753113,0.0210041888058186,0.802984952926636,0.019113389775157,0.739589691162109,0.040805995464325,0.720831274986267,
- 0.0677055567502975,0.720259368419647,0.0579987950623035,0.802060008049011,0.296608358621597,0.725615859031677,0.334767639636993,0.72661817073822,0.329522550106049,0.786801815032959,0.283602833747864,0.800518929958344,0.0187826845794916,0.7382652759552,0.0185350403189659,0.720946133136749,0.0396098792552948,0.720378816127777,0.0965783223509789,0.691173613071442,0.0975309312343597,0.663997650146484,0.118176721036434,0.641973495483398,0.254944205284119,0.828025162220001,0.0963325724005699,0.839354634284973,0.0967187583446503,0.802744388580322,0.25529408454895,0.801579594612122,0.285872519016266,0.801347613334656,0.329053401947021,0.788591086864471,0.328156352043152,0.803140044212341,0.0938384160399437,0.7198166847229,0.0947793498635292,0.800959765911102,0.25687250494957,0.722593128681183,0.176604777574539,0.718958020210266,0.0961751639842987,0.71835470199585,0.25762927532196,0.800006687641144,0.258627533912659,0.724329829216003,0.252015471458435,0.872064054012299,0.0971289947628975,0.876471996307373,0.414587736129761,0.665984988212585,0.526780188083649,0.664963841438293,0.535148143768311,0.677003800868988,0.535829305648804,0.752072989940643,0.429889798164368,0.753320038318634,0.415408164262772,0.736675143241882,0.611593782901764,0.826639175415039,0.611942291259766,0.901619255542755,0.599440515041351,0.913836359977722,0.538544595241547,0.914170503616333,0.538207411766052,0.870280385017395,0.537654757499695,0.826390326023102,0.34450426697731,0.913660526275635,0.344044297933578,0.846178650856018,0.356723487377167,0.828278958797455,0.413325190544128,0.82714056968689,0.414348125457764,0.865086197853088,0.415371090173721,0.903031885623932,0.397654235363007,0.912756085395813,0.414893358945847,0.8275186419487,0.536207139492035,0.826508045196533,0.536688268184662,0.870280385017395,0.415624380111694,0.865056812763214,0.536629915237427,0.825338423252106,0.414476692676544,0.826009213924408,0.415541440248489,0.766669094562531,0.429860562086105,0.754395842552185,0.53615391254425,0.753508150577545,0.414373755455017,0.934105753898621,
- 0.424618393182755,0.91391921043396,0.537530481815338,0.915480554103851,0.536883056163788,0.976046741008759,0.528435468673706,0.988451063632965,0.414987742900848,0.987271904945374,0.415991246700287,0.904173731803894,0.423437744379044,0.91299957036972,0.399396628141403,0.913217425346375,0.600854635238647,0.914084076881409,0.612356305122375,0.902884185314178,0.612408339977264,0.914020359516144,0.415546298027039,0.765273034572601,0.415228754281998,0.738267958164215,0.428701013326645,0.75374448299408,0.537059247493744,0.914043843746185,0.424709618091583,0.912545680999756,0.416660189628601,0.903204560279846,0.414587736129761,0.665984988212585,0.526780188083649,0.664963841438293,0.535148143768311,0.677003800868988,0.535829305648804,0.752072989940643,0.429889798164368,0.753320038318634,0.415408164262772,0.736675143241882,0.611593782901764,0.826639175415039,0.611942291259766,0.901619255542755,0.599440515041351,0.913836359977722,0.538544595241547,0.914170503616333,0.537654757499695,0.826390326023102,0.34450426697731,0.913660526275635,0.344044297933578,0.846178650856018,0.356723487377167,0.828278958797455,0.413325190544128,0.82714056968689,0.415371090173721,0.903031885623932,0.397654235363007,0.912756085395813,0.414893358945847,0.8275186419487,0.536207139492035,0.826508045196533,0.537059247493744,0.914043843746185,0.424709618091583,0.912545680999756,0.416660189628601,0.903204560279846,0.536629915237427,0.825338423252106,0.414476692676544,0.826009213924408,0.415541440248489,0.766669094562531,0.429860562086105,0.754395842552185,0.53615391254425,0.753508150577545,0.414373755455017,0.934105753898621,0.424618393182755,0.91391921043396,0.537530481815338,0.915480554103851,0.536883056163788,0.976046741008759,0.528435468673706,0.988451063632965,0.414987742900848,0.987271904945374,0.415991246700287,0.904173731803894,0.423437744379044,0.91299957036972,0.399396628141403,0.913217425346375,0.600854635238647,0.914084076881409,0.612356305122375,0.902884185314178,0.612408339977264,0.914020359516144,0.415546298027039,0.765273034572601,0.415228754281998,
- 0.738267958164215,0.428701013326645,0.75374448299408,0.752156138420105,0.129839822649956,0.894243538379669,0.132140174508095,0.892870306968689,0.199938416481018,0.851999938488007,0.206171497702599,0.75884211063385,0.209945484995842,0.750094950199127,0.193429261445999,0.753413736820221,0.308605253696442,0.897919297218323,0.296862065792084,0.902776002883911,0.354445338249207,0.875003337860107,0.375967890024185,0.772700965404511,0.384365022182465,0.755812406539917,0.330107778310776,0.895447671413422,0.260582655668259,0.969153642654419,0.231808200478554,0.974708735942841,0.268219530582428,0.957947790622711,0.286432832479477,0.899144053459167,0.295305162668228,0.890483856201172,0.224692091345787,0.854374587535858,0.207031205296516,0.892859220504761,0.2009686678648,0.894144594669342,0.0553645305335522,0.865765273571014,0.0399317778646946,0.898261487483978,0.0316374264657497,0.750205814838409,0.051879309117794,0.761374890804291,0.0390751138329506,0.86416620016098,0.0404560603201389,0.894072771072388,0.0565293803811073,0.894094526767731,0.0937743335962296,0.751242756843567,0.0902616307139397,0.7298304438591,0.306655019521713,0.674351692199707,0.292142480611801,0.675252914428711,0.253354877233505,0.751524567604065,0.266594529151917,0.751864194869995,0.307415366172791,0.674359500408173,0.293537795543671,0.725274682044983,0.306745976209641,0.673951804637909,0.305311352014542,0.753041744232178,0.266533374786377,0.894180417060852,0.260722100734711,0.897889852523804,0.295383781194687,0.753384351730347,0.307211369276047,0.751638889312744,0.224589318037033,0.740170896053314,0.212162107229233,0.757620751857758,0.210882365703583,0.963598489761353,0.19539687037468,0.891751348972321,0.225860133767128,0.894050538539886,0.200815618038177,0.894116222858429,0.131019294261932,0.75227963924408,0.128643959760666,0.67615419626236,0.214331328868866,0.738640189170837,0.212520331144333,0.751182734966278,0.225779324769974,0.752699017524719,0.225855380296707,0.758986711502075,0.211066767573357,0.851980090141296,0.207292824983597,0.890470921993256,
- 0.226060435175896,0.255922168493271,0.76224148273468,0.0961830168962479,0.760387539863586,0.096301831305027,0.720257699489594,0.176599144935608,0.720716178417206,0.256453901529312,0.724675178527832,0.25687250494957,0.722593128681183,0.176604777574539,0.718958020210266,0.188421130180359,0.644030213356018,0.258441627025604,0.64637702703476,0.258098483085632,0.949353694915771,0.189212173223495,0.956363499164581,0.118814885616302,0.95854115486145,0.0977336242794991,0.940606355667114,0.0971702411770821,0.909501075744629,0.257760494947433,0.919912695884705,0.0943631008267403,0.760401844978333,0.0201175324618816,0.771311461925507,0.019113389775157,0.739589691162109,0.040805995464325,0.720831274986267,0.0938384160399437,0.7198166847229,0.334767639636993,0.72661817073822,0.332231462001801,0.756783425807953,0.258212894201279,0.762175858020782,0.258627533912659,0.724329829216003,0.0187826845794916,0.7382652759552,0.0185350403189659,0.720946133136749,0.0396098792552948,0.720378816127777,0.0961751639842987,0.71835470199585,0.0975309312343597,0.663997650146484,0.118176721036434,0.641973495483398,0.254944205284119,0.828025162220001,0.252015471458435,0.872064054012299,0.0971289947628975,0.876471996307373,0.0967187583446503,0.802744388580322,0.25529408454895,0.801579594612122,0.329053401947021,0.788591086864471,0.328156352043152,0.803140044212341,0.285872519016266,0.801347613334656,0.255404233932495,0.799993991851807,0.0964959263801575,0.800795078277588,0.0210041888058186,0.802984952926636,0.0947793498635292,0.800959765911102,0.0969404429197311,0.878044962882996,0.249899014830589,0.874469459056854,0.256653666496277,0.889456629753113,0.329522550106049,0.786801815032959,0.283602833747864,0.800518929958344,0.25762927532196,0.800006687641144,0.255922168493271,0.76224148273468,0.0961830168962479,0.760387539863586,0.096301831305027,0.720257699489594,0.176599144935608,0.720716178417206,0.256453901529312,0.724675178527832,0.25687250494957,0.722593128681183,0.176604777574539,0.718958020210266,0.188421130180359,0.644030213356018,0.258441627025604,
- 0.64637702703476,0.258098483085632,0.949353694915771,0.189212173223495,0.956363499164581,0.118814885616302,0.95854115486145,0.0977336242794991,0.940606355667114,0.0969404429197311,0.878044962882996,0.249899014830589,0.874469459056854,0.256653666496277,0.889456629753113,0.0210041888058186,0.802984952926636,0.019113389775157,0.739589691162109,0.040805995464325,0.720831274986267,0.0938384160399437,0.7198166847229,0.0943631008267403,0.760401844978333,0.0947793498635292,0.800959765911102,0.334767639636993,0.72661817073822,0.329522550106049,0.786801815032959,0.283602833747864,0.800518929958344,0.25762927532196,0.800006687641144,0.258212894201279,0.762175858020782,0.258627533912659,0.724329829216003,0.0187826845794916,0.7382652759552,0.0185350403189659,0.720946133136749,0.0396098792552948,0.720378816127777,0.0961751639842987,0.71835470199585,0.0975309312343597,0.663997650146484,0.118176721036434,0.641973495483398,0.254944205284119,0.828025162220001,0.252015471458435,0.872064054012299,0.0971289947628975,0.876471996307373,0.0967187583446503,0.802744388580322,0.25529408454895,0.801579594612122,0.329053401947021,0.788591086864471,0.328156352043152,0.803140044212341,0.285872519016266,0.801347613334656,0.255404233932495,0.799993991851807,0.0964959263801575,0.800795078277588,0.752156138420105,0.129839822649956,0.894243538379669,0.132140174508095,0.892870306968689,0.199938416481018,0.851999938488007,0.206171497702599,0.75884211063385,0.209945484995842,0.750094950199127,0.193429261445999,0.753413736820221,0.308605253696442,0.897919297218323,0.296862065792084,0.902776002883911,0.354445338249207,0.875003337860107,0.375967890024185,0.772700965404511,0.384365022182465,0.755812406539917,0.330107778310776,0.963598489761353,0.19539687037468,0.974708735942841,0.268219530582428,0.957947790622711,0.286432832479477,0.899144053459167,0.295305162668228,0.891751348972321,0.225860133767128,0.894050538539886,0.200815618038177,0.890483856201172,0.224692091345787,0.854374587535858,0.207031205296516,0.892859220504761,0.2009686678648,0.894144594669342,
- 0.0553645305335522,0.865765273571014,0.0399317778646946,0.898261487483978,0.0316374264657497,0.750205814838409,0.051879309117794,0.761374890804291,0.0390751138329506,0.86416620016098,0.0404560603201389,0.894072771072388,0.0565293803811073,0.894116222858429,0.131019294261932,0.75227963924408,0.128643959760666,0.7298304438591,0.306655019521713,0.674351692199707,0.292142480611801,0.67615419626236,0.214331328868866,0.738640189170837,0.212520331144333,0.751182734966278,0.225779324769974,0.751864194869995,0.307415366172791,0.674359500408173,0.293537795543671,0.725274682044983,0.306745976209641,0.673951804637909,0.305311352014542,0.752699017524719,0.225855380296707,0.758986711502075,0.211066767573357,0.851980090141296,0.207292824983597,0.890470921993256,0.226060435175896,0.897889852523804,0.295383781194687,0.753384351730347,0.307211369276047,0.751638889312744,0.224589318037033,0.740170896053314,0.212162107229233,0.757620751857758,0.210882365703583
- }
- UVIndex: *3444 {
- a: 0,1,2,3,4,5,2,1,6,7,5,4,8,9,10,11,12,13,9,14,15,14,9,8,5,12,14,2,3,2,14,15,16,17,18,19,20,11,10,21,17,16,22,23,21,10,13,24,25,26,22,10,9,27,28,24,13,29,30,31,32,27,13,12,7,33,34,29,12,5,7,35,36,33,37,38,35,7,6,39,40,41,42,40,43,44,41,45,46,47,43,48,49,50,51,52,53,54,55,56,57,58,59,60,58,61,62,59,61,63,64,62,65,66,67,68,66,69,70,67,54,65,68,55,69,71,72,70,49,73,74,50,73,53,56,74,71,57,60,72,75,76,77,78,79,80,81,82,83,80,84,85,81,84,77,76,85,86,87,88,89,86,89,90,91,92,87,86,93,94,93,86,92,95,96,97,98,99,94,93,98,93,97,100,101,102,102,101,103,99,98,104,105,104,98,102,106,106,102,103,107,108,109,110,111,110,112,111,76,75,105,104,76,104,106,85,85,106,111,81,112,113,82,81,111,114,115,116,117,118,119,120,121,119,118,122,123,124,125,123,122,125,124,126,127,115,114,127,126,128,129,130,131,132,128,131,133,134,132,133,135,136,137,134,135,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,154,157,45,155,157,158,46,45,158,159,160,46,159,161,162,160,161,163,162,163,164,165,162,164,166,167,165,166,168,169,167,168,170,171,169,170,172,173,171,172,174,173,174,175,176,173,175,177,178,176,177,179,180,178,179,181,182,180,181,183,182,183,184,185,182,185,184,186,187,44,48,52,188,41,44,188,189,42,41,189,190,160,162,191,47,191,192,73,49,73,193,53,167,194,193,169,171,65,194,171,173,65,173,195,66,65,195,69,66,176,196,71,195,196,197,57,71,197,58,57,198,199,61,58,199,200,63,61,194,65,54,167,169,194,193,194,54,53,165,167,192,162,165,192,191,192,193,73,192,167,193,46,160,47,47,191,49,48,156,155,40,39,155,43,40,43,47,48,44,155,45,43,173,176,195,195,71,69,176,178,196,178,180,197,196,197,198,58,182,185,199,198,200,199,185,187,180,182,198,197,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,208,207,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,
- 290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,386,385,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,516,515,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,646,645,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,686,685,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,
- 795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,816,815,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,856,855,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1160,1159,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,
- 1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1428,1427,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,
- 1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1654,1653,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1826,1825,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1914,1913,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,
- 2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2050,2049,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2414,2413,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2408,2407,2451,2452,2453,2454,2455,2456,
- 2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2506,2505,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2636,2635,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2766,2765,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2779,2778,2797,2798,2799,2800,2765,2764,2787,2765,2800,2801,2780,2783,2802,2803,2790,2804,2805,2791,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2828,
- 2827,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2907,2906,2939,2940,2922,2921,2941,2942,2926,2925,2943,2944,2945,2946,2947,2948,2949,2932,2931,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2957,2956,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2951,2950,2990,2966,2965,2991,2964,2963,2992,2993,2994,2972,2971,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3005,3004,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,2999,2998,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *1722 {
- a: 0,0,0,0,0,0,0,1,0,1,0,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,1,1,1,1,0,1,1,1,1,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,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,0,0,1,0,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,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,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,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,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,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,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,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,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,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
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "ByPolygon"
- ReferenceInformationType: "IndexToDirect"
- Materials: *747 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2333008480944, "Geometry::", "Mesh" {
- Vertices: *1848 {
- a: 0,-9.5367431640625e-007,62.5,400,0,62.5,0,600,62.5,100,0,62.5,200,0,62.5,300,0,62.5,0,500,62.5,100,400,62.5,0,400,62.5,200,300,62.5,100,300,62.5,0,300,62.5,200,200,62.5,100,200,62.5,0,200,62.5,300,100,62.5,200,100,62.5,100,100,62.5,0,100,62.5,65.044921875,600,62.5,96.2578125,500,62.5,97.15625,479.647277832031,62.5,154.298828125,379.579650878906,62.2646484375,78.03515625,524.471252441406,63.54736328125,137.19921875,469.079315185547,62.5,228.53515625,324.551605224609,62.6005859375,248.03125,291.636444091797,63.1767578125,252.61328125,200,62.5,311.794921875,134.767990112305,63.06982421875,344.5,112.942993164063,62.5,400,103.328262329102,62.5,255.71484375,242.456924438477,62.5,259.12109375,142.456451416016,62.5,0,600,-62.5,113.41796875,600,-62.5,119.9453125,533.917602539063,-62.6416015625,143.93359375,489.501617431641,-63.07421875,157.677734375,408.176727294922,-62.296875,185.88671875,333.994781494141,-62.02587890625,216.52734375,300,-62.5,257.61328125,296.496520996094,-62.5693359375,318.53125,148.033187866211,-62.5,400,-3.57627868652344e-007,-62.5,400.3125,109.051155090332,-61.6806640625,374.578125,112.765922546387,-62.5,281.556640625,263.546539306641,-62.58447265625,0,-4.76837158203125e-007,-62.5,100,0,-62.5,200,0,-62.5,300,0,-62.5,0,500,-62.5,0,400,-62.5,0,300,-62.5,0,200,-62.5,0,100,-62.5,100,500,-62.5,100,400,-62.5,100,300,-62.5,200,300,-62.5,100,200,-62.5,200,200,-62.5,100,100,-62.5,200,100,-62.5,300,100,-62.5,400,104.276443481445,11.056640625,119.796875,600,-11.2373046875,400,111.945777893066,3.8154296875,130.0234375,533.583801269531,-16.990234375,152.107421875,480.794738769531,9.51953125,178.240234375,404.966857910156,-9.068359375,134.625,479.537994384766,31.15234375,189.60546875,391.189849853516,-35.810546875,155.5078125,399.945983886719,31.4765625,184.6484375,384.160308837891,7.779296875,231.9921875,311.702728271484,-3.24072265625,188.087890625,389.277801513672,35.2607421875,200,336.540649414063,25.201171875,272.591796875,287.010009765625,-33.69970703125,290.09765625,272.595886230469,4.97216796875,
- 298.15625,270.193084716797,-32.3046875,308.189453125,204.369781494141,-31.9423828125,262.80859375,248.42822265625,29.150390625,282.349609375,211.924926757813,15.7734375,315.44921875,176.316253662109,13.53857421875,336.375,147.02897644043,-31.4873046875,323.392578125,148.12141418457,16.333984375,382.15625,133.025451660156,-32.21484375,364.708984375,126.437133789063,17.74951171875,102.45703125,483.006713867188,35.5048828125,98.73046875,483.430541992188,27.6533203125,100.662109375,518.985168457031,27.994140625,168.97265625,242.36946105957,35.3916015625,172.59375,241.754211425781,27.6533203125,168.54296875,207.417358398438,28.1171875,277.125,180.827423095703,27.8642578125,277.787109375,150.346313476563,19.640625,271.3046875,181.911026000977,21.40234375,278.99609375,83.7914199829102,57.7177734375,282.44921875,84.2870864868164,65.33203125,279.92578125,118.563362121582,64.830078125,153.96875,479.787109375,-27.517578125,154.61328125,515.700317382813,-21.099609375,148.22265625,478.966827392578,-21.0224609375,230.328125,208.194961547852,-33.2158203125,233.484375,208.705963134766,-25.142578125,231.009765625,243.591400146484,-25.75390625,404.328125,115.646240234375,-33.4921875,401.2578125,115.155426025391,-25.4345703125,403.4453125,80.7837066650391,-26.025390625,151.6640625,480.10498046875,63.80859375,151.59375,479.929565429688,30.2939453125,84.953125,479.793792724609,64.208984375,84.19921875,480.274047851563,33.0390625,150.953125,447.3095703125,30.08203125,84.19921875,448.087921142578,33.3671875,151.6640625,448.764190673828,64.626953125,84.4609375,449.705017089844,62.7861328125,97.609375,449.459991455078,65.240234375,143.8359375,427.545532226563,63.611328125,143.94140625,448.865051269531,62.46875,97.94140625,427.374816894531,63.611328125,97.908203125,426.255035400391,39.0390625,143.53515625,449.604309082031,39.47265625,144.087890625,429.145782470703,40.6787109375,96.240234375,449.140380859375,38.796875,105.93359375,399.830261230469,63.875,149.896484375,400.505584716797,31.794921875,150.2734375,400.879425048828,63.57421875,103.880859375,398.842346191406,31.501953125,
- 149.560546875,428.546203613281,31.2744140625,149.421875,428.059936523438,63.72265625,103.12109375,427.195281982422,63.8056640625,104.275390625,427.872924804688,31.6796875,228.978515625,282.945068359375,-28.2958984375,228.439453125,313.03369140625,-29.8115234375,174.8125,311.618896484375,-30.0439453125,175.47265625,283.00341796875,-31.474609375,228.68359375,314.534210205078,-64.1875,175.9296875,282.030212402344,-63.794921875,174.6015625,309.618133544922,-62.1064453125,231.046875,283.872680664063,-64.7822265625,9.7265625,516.878173828125,28.6357421875,9.765625,516.798400878906,69.0810546875,101.54296875,519.389404296875,65.599609375,102.40625,480.948516845703,65.74609375,10.791015625,478.255432128906,67.85546875,10.671875,479.239379882813,27.6533203125,187.1171875,400.763946533203,33.8203125,188.236328125,373.569152832031,34.70703125,143.02734375,372.990844726563,34.8916015625,142.677734375,398.82958984375,36.3671875,187.94140625,371.816467285156,63.962890625,143.02734375,399.382568359375,64.10546875,142.79296875,374.399505615234,62.37109375,189.34765625,399.577239990234,64.9453125,153.818359375,341.061096191406,64.26953125,204.23828125,343.002197265625,27.5205078125,206.62890625,340.813812255859,64.59765625,153.359375,342.623077392578,27.841796875,153.359375,373.032806396484,28.6201171875,153.177734375,372.394165039063,65.84765625,206.484375,373.695556640625,28.544921875,205.154296875,373.246917724609,65.40234375,247.60546875,340.831176757813,64.4140625,247.521484375,340.66748046875,26.4482421875,184.513671875,340.463989257813,64.94921875,183.7890625,340.991088867188,29.5595703125,246.982421875,309.609222412109,26.435546875,183.7890625,310.544555664063,29.9296875,247.60546875,311.184265136719,65.33984375,183.904296875,312.082366943359,63.1376953125,266.783203125,310.7470703125,64.697265625,224.71875,311.423492431641,34,224.34375,311.076995849609,64.41015625,268.779296875,311.631652832031,33.71875,224.1953125,284.593841552734,33.5009765625,224.34375,285.054779052734,64.5517578125,268.65234375,284.490142822266,64.630859375,
- 267.52734375,283.876373291016,33.890625,229.91796875,284.950775146484,67.5703125,264.5859375,264.701354980469,66.455078125,264.869140625,283.606994628906,65.5302734375,229.0234375,265.119689941406,66.591796875,229.298828125,264.148986816406,44.533203125,264.5859375,284.277404785156,44.72265625,264.779296875,266.038665771484,45.80078125,228.1328125,284.425994873047,44.095703125,208.0703125,264.275543212891,40.751953125,208.103515625,264.191436767578,66.748046875,261.986328125,264.160339355469,40.3154296875,262.50390625,264.387481689453,64.587890625,208.71875,242.48063659668,66.712890625,262.50390625,243.080230712891,64.333984375,262.37109375,244.030700683594,41.044921875,208.0703125,243.527923583984,40.119140625,264.16015625,204.273361206055,25.599609375,265.47265625,204.387115478516,64.689453125,168.87890625,207.05485534668,64.564453125,266.728515625,238.742340087891,60.986328125,265.265625,240.775512695313,24.646484375,170.0390625,244.540908813477,64.18359375,269.7734375,179.185974121094,33.0458984375,269.9765625,178.93782043457,62.9248046875,219.841796875,179.160781860352,62.8837890625,219.79296875,179.318389892578,33.0224609375,219.79296875,204.70133972168,32.884765625,219.79296875,205.130645751953,63.0625,270.36328125,204.287750244141,63.1484375,270.65234375,203.974563598633,32.8076171875,275.05078125,146.939987182617,64.9208984375,275.8046875,178.500961303711,63.638671875,209,179.151565551758,63.677734375,208.46875,148.863815307617,59.810546875,209,150.522445678711,20.85546875,208.619140625,179.601715087891,24.833984375,229.65625,147.925384521484,30.794921875,228.41796875,147.798782348633,63.689453125,295.13671875,146.816009521484,32.8330078125,294.63671875,147.268005371094,63.44921875,228.740234375,119.371841430664,63.783203125,294.296875,119.355323791504,63.138671875,295.15625,120.738426208496,34.1962890625,229.34765625,120.74535369873,30.001953125,364.34375,118.889312744141,64.4052734375,364.259765625,118.711227416992,25.34765625,278.99609375,119.11498260498,28.5537109375,363.390625,80.7103042602539,25.0498046875,
- 278.99609375,81.6107330322266,28.9072265625,364.34375,82.3696136474609,65.33203125,295.001953125,119.437728881836,64.06640625,335.625,119.404762268066,39.0654296875,335.66015625,119.532104492188,64.0810546875,294.875,119.213333129883,39.03515625,335.66015625,140.79377746582,64.197265625,335.66015625,141.153381347656,38.9189453125,294.328125,141.255126953125,64.26171875,294.556640625,141.607238769531,38.830078125,364.17578125,84.0930862426758,63.8271484375,399.390625,84.2230834960938,35.8916015625,400.80078125,84.0995635986328,64.2568359375,363.9375,84.4204025268555,35.71875,363.9375,110.139747619629,35.5869140625,363.83203125,110.587219238281,64.43359375,401.392578125,110.623405456543,35.4326171875,400.076171875,111.236968994141,63.69140625,95.65234375,543.690979003906,64.5263671875,56.080078125,544.328674316406,35.6484375,55.7265625,544.002319335938,64.255859375,97.529296875,544.524353027344,35.3828125,55.5859375,519.087646484375,35.17578125,55.7265625,519.521423339844,64.388671875,97.41015625,518.990234375,64.462890625,96.3515625,518.412353515625,35.54296875,35.583984375,570.903259277344,66.333984375,82.046875,543.767639160156,64.837890625,82.42578125,569.105102539063,63.603515625,34.37890625,544.328491210938,65.0205078125,34.75,543.037475585938,35.451171875,82.046875,570.00244140625,35.712890625,82.3046875,545.556701660156,37.15625,33.19140625,570.205932617188,34.875,38.712890625,569.823486328125,63.22265625,87.19140625,570.598815917969,27.84765625,89.486328125,569.583190917969,63.544921875,38.28125,570.221008300781,28.17578125,38.28125,600.209289550781,28.0126953125,38.109375,600.740173339844,63.794921875,89.34375,600.859985351563,27.9208984375,88.048828125,601.565979003906,63.349609375,77.421875,601.632568359375,-28.630859375,128.94921875,571.815368652344,-30.328125,129.359375,599.616149902344,-31.71875,76.841796875,572.4052734375,-30.1015625,76.5546875,570.956115722656,-63.494140625,128.94921875,600.578002929688,-63.11328125,129.23046875,573.750061035156,-61.47265625,75.376953125,600.807006835938,-64.072265625,
- 131.77734375,573.435791015625,-33.611328125,131.708984375,573.268188476563,-65.501953125,61.62890625,573.2861328125,-33.0859375,60.9453125,573.592407226563,-62.880859375,130.958984375,543.022216796875,-65.69140625,60.9453125,543.772827148438,-62.5693359375,131.77734375,544.399353027344,-32.8330078125,61.12890625,545.15869140625,-33.908203125,98.470703125,516.728637695313,-31.490234375,140.626953125,516.058410644531,-63.064453125,141,516.407409667969,-31.7802734375,96.46875,515.853271484375,-63.359375,141.1484375,542.949279785156,-63.5859375,141,542.486206054688,-31.6337890625,96.59375,543.052062988281,-31.552734375,97.703125,543.673034667969,-63.169921875,152.03125,516.733947753906,-65.916015625,152.763671875,479.77734375,-64.052734375,86.8671875,479.030822753906,-63.767578125,86.353515625,514.189331054688,-62.01953125,86.8671875,515.404235839844,-22.306640625,86.513671875,481.472442626953,-24.37890625,118.830078125,450.191741943359,-29.2734375,164.716796875,450.919097900391,-63.640625,166.890625,449.967712402344,-28.953125,118.42578125,450.570617675781,-63.326171875,118.42578125,478.9560546875,-63.486328125,118.263671875,479.459991455078,-28.70703125,166.7578125,479.571960449219,-63.57421875,165.55078125,480.2470703125,-29.158203125,159.23828125,425.961364746094,-37.3125,160.240234375,449.905242919922,-38.408203125,119.9375,450.412536621094,-38.57421875,119.623046875,427.632934570313,-39.583984375,159.95703125,451.076110839844,-64.0625,119.9375,426.792083740234,-63.8603515625,119.7265625,448.810791015625,-62.630859375,161.240234375,426.610412597656,-64.591796875,185.20703125,426.950469970703,-65.1640625,185.7421875,397.725830078125,-63.716796875,135.140625,397.133819580078,-63.4873046875,134.75,424.928527832031,-62.1337890625,186.0859375,396.280426025391,-30.36328125,135.140625,425.896392822266,-30.7021484375,134.873046875,399.048248291016,-32.337890625,187.16796875,426.121826171875,-29.736328125,137.171875,372.682800292969,-63.1796875,137.23828125,372.510467529297,-29.95703125,204.2578125,370.695556640625,-63.5732421875,
- 205.01953125,371.140563964844,-32.6826171875,137.11328125,340.985748291016,-29.775390625,204.23828125,340.080017089844,-33.005859375,203.984375,341.648895263672,-62.197265625,136.4140625,342.438049316406,-63.990234375,141.12890625,397.244781494141,-35.787109375,183.33203125,372.820098876953,-37.177734375,183.66796875,395.590698242188,-38.3203125,140.65234375,373.302978515625,-36.9921875,140.419921875,372.108459472656,-64.3369140625,183.33203125,396.379211425781,-64.03125,183.5625,374.406890869141,-62.6865234375,139.453125,396.563781738281,-64.818359375,158.375,311.260864257813,-64.5947265625,211.40234375,341.948303222656,-62.84765625,211.822265625,313.335784912109,-61.41796875,157.771484375,341.341156005859,-63.080078125,157.4765625,342.830749511719,-28.7138671875,211.40234375,312.345977783203,-29.10546875,211.69140625,339.957885742188,-30.79296875,156.265625,312.109527587891,-28.119140625,231.673828125,283.182434082031,-34.84375,277.591796875,283.148651123047,-63.962890625,277.625,283.296234130859,-34.8154296875,231.53515625,282.934387207031,-64.005859375,277.625,307.430053710938,-34.6796875,277.625,307.838226318359,-64.140625,230.91796875,307.953735351563,-34.6044921875,231.1640625,308.366302490234,-64.2236328125,257.76953125,283.716461181641,-37.13671875,300.5703125,261.173858642578,-37.923828125,300.921875,282.416595458984,-39.8583984375,257.8125,261.631561279297,-37.94140625,257.6171875,259.548797607422,-63.3359375,300.5703125,282.233032226563,-63.83984375,300.8125,261.790802001953,-61.8046875,256.521484375,282.388366699219,-64.5791015625,314.7734375,243.944351196289,-23.42578125,316.064453125,243.733703613281,-64.24609375,231.36328125,244.144989013672,-63.720703125,315.240234375,204.993530273438,-64.5009765625,231.34765625,205.95068359375,-63.322265625,314.73828125,206.753189086914,-22.4296875,268.97265625,243.898849487305,-44.078125,295.11328125,243.663711547852,-63.65625,296.33984375,243.084609985352,-43.890625,268.7421875,244.123596191406,-63.474609375,269.1484375,260.290679931641,-63.5654296875,269.0625,260.58056640625,-43.75,
- 296.6875,259.949462890625,-63.615234375,296.0078125,260.353546142578,-44.01171875,251.1015625,175.468765258789,-64.53515625,309.3359375,205.77522277832,-63.466796875,309.8125,177.216461181641,-60.861328125,251.14453125,205.15998840332,-63.443359375,250.89453125,207.948135375977,-29.28125,309.3359375,177.467178344727,-28.6318359375,309.666015625,204.941696166992,-31.3662109375,249.38671875,177.251083374023,-27.64453125,332.865234375,175.861480712891,-33.73828125,292.939453125,176.002227783203,-63.146484375,292.6328125,175.647094726563,-33.5556640625,334.490234375,175.992752075195,-63.5732421875,292.6328125,147.893402099609,-33.4169921875,292.50390625,147.410522460938,-63.765625,335.15625,147.377090454102,-33.2568359375,333.6328125,146.710632324219,-63.01171875,270.03125,147.562530517578,-62.9296875,270.056640625,148.130187988281,-28.23828125,331.921875,146.536651611328,-63.435546875,332.640625,147.104507446289,-31.3369140625,332.59375,116.205711364746,-31.08203125,270.833984375,117.645683288574,-29.634765625,270.796875,118.312057495117,-63.7685546875,333.20703125,118.760101318359,-62.201171875,332.384765625,117.854270935059,-63.90234375,378.02734375,148.583557128906,-63.4228515625,378.35546875,120.0634765625,-61.1279296875,332.015625,147.953262329102,-63.6552734375,331.3984375,150.80354309082,-29.513671875,378.02734375,120.275512695313,-28.587890625,378.251953125,147.917236328125,-31.29296875,330.734375,120.098999023438,-27.5546875,321.828125,81.8345184326172,-23.7412109375,320.482421875,81.7288360595703,-64.5478515625,403.0546875,80.2232818603516,-63.94140625,321.587890625,119.381797790527,-64.7236328125,403.3046875,117.89289855957,-63.5439453125,322.0859375,117.602165222168,-22.7470703125,249.03515625,250.722229003906,0.208984375,295.416015625,271.581848144531,-1.015625,293.486328125,245.977752685547,0.478515625,251.568359375,275.057983398438,1.115234375,292.7421875,245.108322143555,28.751953125,251.7578125,276.204406738281,27.814453125,248.744140625,252.767776489258,26.66796875,297.2578125,270.995300292969,29.08203125,
- 253.54296875,246.778213500977,23.0107421875,295.265625,222.418838500977,21.732421875,295.61328125,245.138870239258,20.681640625,252.45703125,222.925064086914,21.88671875,252.84765625,221.774627685547,-3.4453125,295.265625,245.977951049805,-3.1904296875,295.5,224.065414428711,-1.9794921875,251.373046875,246.169784545898,-3.904296875,257.8046875,223.061920166016,4.2587890625,257.853515625,222.922637939453,31.029296875,312.0234375,221.450546264648,3.9365234375,312.6328125,221.815490722656,28.8330078125,257.759765625,197.444549560547,31.1796875,312.00390625,196.712646484375,28.572265625,311.79296875,197.976181030273,5.056640625,257.1875,198.618392944336,3.60546875,263.064453125,167.3779296875,0.5859375,313.28125,195.888977050781,2.1494140625,312.986328125,168.141998291016,3.4130859375,262.525390625,196.547134399414,1.953125,262.962890625,197.944976806641,33.25,312.55859375,167.135482788086,32.966796875,313.50390625,193.910171508789,31.46484375,260.548828125,168.214660644531,33.84765625,322.216796875,139.438537597656,40.6669921875,324.724609375,165.584136962891,40.03515625,277.7890625,168.50553894043,40.1123046875,276.13671875,143.722045898438,38.6318359375,324.087890625,167.52001953125,14.8125,276.359375,143.339553833008,14.849609375,277.298828125,167.274108886719,16.427734375,324.515625,140.711029052734,13.939453125,201.703125,399.79931640625,-30.244140625,202.390625,373.066131591797,-28.9375,155.03125,372.526794433594,-23.490234375,154.8046875,397.973480224609,-22.15625,206.00390625,371.738372802734,2.123046875,158.2890625,398.835083007813,7.06640625,157.869140625,374.274871826172,5.544921875,207.08984375,399.0390625,2.583984375,219.076171875,336.208099365234,-31.0888671875,220.6484375,336.021484375,-5.27734375,180.45703125,336.098602294922,-3.4697265625,178.78515625,336.323059082031,-29.390625,178.77734375,356.436645507813,-29.5107421875,180.23046875,356.77685546875,-3.404296875,220.98046875,357.236358642578,-5.1298828125,219.73828125,356.873046875,-31.3544921875,163.611328125,407.701965332031,1.53515625,127.59765625,415.665740966797,30.1953125,
- 125.69921875,415.010559082031,2.087890625,164.79296875,407.678497314453,29.56640625,169.24609375,430.497497558594,29.48046875,168.8359375,429.30029296875,1.650390625,130.66796875,438.930816650391,29.88671875,130.48046875,437.595947265625,1.7724609375,145.70703125,315.09375,-13.37890625,146.73046875,339.047576904297,-14.306640625,106.40625,339.562255859375,-14.4375,106.060546875,316.912963867188,-15.2666015625,146.23046875,340.171722412109,-35.97265625,106.40625,315.941802978516,-35.6943359375,106.19140625,337.808166503906,-34.7314453125,147.76171875,315.730834960938,-36.27734375,241.255859375,335.772491455078,-31.111328125,241.19921875,308.865936279297,-30.09765625,190.6640625,308.309967041016,-30.11328125,190.16015625,334.0986328125,-28.1669921875,241.35546875,306.743011474609,-2.115234375,190.69140625,332.275573730469,-1.814453125,190.388671875,308.773559570313,-3.919921875,242.7890625,332.466094970703,-1.0185546875,305.671875,243.095977783203,-32.6171875,259.4765625,249.228759765625,-27.7666015625,261.716796875,269.979858398438,-28.1435546875,309.349609375,263.583892822266,-32.8466796875,308.265625,243.887451171875,-5.3779296875,260.904296875,250.132690429688,-4.396484375,310.7421875,265.098876953125,-5.99609375,263.873046875,270.331024169922,-3.3466796875,280.677734375,176.169387817383,-27.638671875,321.9921875,202.06494140625,-26.228515625,323.125,179.309646606445,-25.06640625,279.353515625,200.077743530273,-26.416015625,279.056640625,201.263916015625,1.3330078125,322.8203125,178.520477294922,1.0390625,322.275390625,200.498596191406,-0.333984375,278.9765625,176.791000366211,1.8427734375,352.3515625,152.205215454102,-28.154296875,322.388671875,152.164672851563,-28.1328125,352.771484375,150.381973266602,21.7890625,324.95703125,150.828948974609,22.400390625,324.86328125,123.250228881836,21.755859375,323.560546875,124.014602661133,-28.953125,353.08203125,125.215866088867,-28.720703125,351.595703125,124.796760559082,22.41796875,318.296875,178.408264160156,-30.8837890625,316.9296875,153.337646484375,2.232421875,317.998046875,176.776733398438,3.017578125,
- 319.169921875,156.104049682617,-31.63671875,344.78125,155.265075683594,-31.3779296875,344.810546875,177.925109863281,3.6640625,345.51171875,153.932571411133,3.470703125,343.5078125,176.923355102539,-31.033203125,169.59765625,441.105682373047,3.0009765625,164.6484375,444.688842773438,29.6806640625,121.3515625,453.637390136719,22.9765625,126.40625,450.028930664063,-3.716796875,131.046875,471.149780273438,-5.314453125,125.96875,475.330688476563,21.625,169.837890625,466.898284912109,28.3984375,175.15625,462.669555664063,1.33203125,172.8828125,360.325805664063,-4.32421875,173.4296875,363.162628173828,26.84765625,226.6796875,347.767150878906,-4.6845703125,227.76171875,350.698120117188,24.416015625,168.6171875,339.721160888672,27.84765625,222.4921875,327.926879882813,25.1396484375,222.4765625,327.471740722656,-2.84375,167.9765625,339.460327148438,-4.2333984375,268.142578125,270.858673095703,-35.158203125,272.765625,302.15185546875,4.9873046875,273.75,267.079772949219,4.640625,267.9453125,304.926879882813,-33.4169921875,239.7421875,305.019653320313,-30.7392578125,239.0546875,270.053619384766,-32.7587890625,244.56640625,301.850708007813,9.3330078125,243.66796875,267.813446044922,6.5,111.623046875,526.4072265625,-28.19921875,154.15625,550.042724609375,-25.4033203125,154.15625,527.265258789063,-25.7998046875,111.505859375,550.195983886719,-25.3984375,111.41796875,549.518188476563,1.798828125,153.91796875,524.724060058594,-0.3603515625,154.470703125,546.710327148438,-0.21875,110.078125,525.125427246094,0.634765625,161.57421875,514.552856445313,13.7255859375,105.064453125,514.643432617188,-14.90234375,105.779296875,514.269592285156,14.830078125,162.767578125,514.576599121094,-17.93359375,159.3125,486.972625732422,-15.498046875,104.916015625,487.646087646484,-14.4912109375,161.71484375,488.12353515625,14.107421875,105.4765625,489.044555664063,11.923828125,79.04296875,522.175659179688,32.822265625,78.95703125,522.185607910156,5.9501953125,115.642578125,520.506896972656,5.8984375,116.43359375,520.3154296875,33.02734375,117.60546875,543.378540039063,5.97265625,
- 117.26953125,540.484924316406,33.310546875,79.65625,546.720703125,5.4296875,79.5078125,543.104553222656,33.314453125,65.94140625,574.241821289063,26.119140625,107.943359375,574.048950195313,-3.0927734375,109.734375,574.220764160156,26.43359375,65.55859375,574.272705078125,-3.3125,65.55859375,600.348815917969,-3.69140625,65.408203125,601.129150390625,26.3427734375,110.37109375,600.825500488281,-3.8671875,108.8125,601.838134765625,25.978515625,128.326171875,460.208679199219,1.02734375,172.80078125,436.344360351563,-0.6259765625,174.734375,456.046051025391,-2.87109375,127.0234375,440.217895507813,-0.7568359375,172.3359375,433.600738525391,-28.06640625,127.140625,458.665618896484,-29.4453125,174.25390625,455.042846679688,-28.6064453125,126.265625,437.562835693359,-27.9267578125,116.203125,545.039489746094,2.2587890625,74.265625,547.211547851563,4.5078125,75.83203125,568.697998046875,3.453125,119.498046875,564.870788574219,1.5869140625,118.484375,546.241271972656,29.359375,74.603515625,550.41748046875,27.603515625,119.22265625,564.369140625,27.078125,76.22265625,567.3505859375,27.4921875,261.087890625,324.619232177734,21.6982421875,261.08203125,325.064788818359,-2.08203125,203.73828125,328.084930419922,-0.466796875,204.2734375,326.361694335938,21.447265625,259.59765625,305.337646484375,-1.78125,203.03125,308.158477783203,0.111328125,260.2265625,306.800201416016,22.40234375,203.25,309.577789306641,21.396484375,387.3046875,132.955612182617,33.744140625,387.875,103.829879760742,-3.900390625,387.26171875,130.058456420898,-5.291015625,385.6953125,108.03050994873,35.0673828125,357.046875,107.789627075195,34.939453125,357.24609375,132.054153442383,-5.841796875,355.8671875,105.216987609863,-5.1923828125,359.046875,131.950134277344,34.107421875,253.998046875,242.554794311523,64.8857421875
- }
- PolygonVertexIndex: *2788 {
- a: 0,3,17,-19,4,16,17,-4,5,15,16,-5,11,10,7,-9,12,9,10,-14,14,13,10,-12,16,12,13,-18,18,17,13,-15,6,20,23,19,-3,8,7,21,20,-7,22,24,21,-8,9,25,22,7,-11,26,25,-10,27,31,26,9,-13,15,28,32,27,12,-17,15,29,-29,1,30,29,15,-6,54,61,47,-47,42,49,63,44,-44,49,48,62,-64,48,47,61,-63,55,50,33,-35,55,34,35,-37,50,55,56,-52,56,55,36,-38,57,52,51,-57,57,56,37,38,-59,58,38,-40,52,57,59,-54,59,57,58,-61,63,60,58,39,40,45,41,-45,61,54,53,-60,61,59,60,-63,62,60,-64,18,54,46,-1,50,6,2,-34,6,50,51,-9,52,11,8,-52,11,52,53,-15,54,18,14,-54,3,0,46,-48,4,3,47,-49,5,4,48,-50,42,1,5,-50,43,66,64,30,1,-43,19,65,34,33,-3,65,35,-35,35,65,-68,19,67,-66,67,36,-36,23,67,-20,68,36,-68,23,68,-68,69,36,-69,69,37,-37,23,70,-69,70,69,-69,20,70,-24,21,70,-21,24,70,-22,22,70,-25,71,37,-70,37,71,-39,69,70,-73,70,22,-73,73,71,-70,69,72,-74,71,74,-39,73,74,-72,38,74,-40,74,40,-40,75,73,-73,72,22,-76,75,76,-74,22,76,-76,73,76,-75,25,76,-23,25,74,-77,26,74,-26,77,40,-75,74,26,-78,77,45,-41,26,78,-78,79,45,-78,78,79,-78,80,45,-80,78,80,-80,80,41,-46,26,81,-79,31,81,-27,82,78,-82,31,82,-82,78,82,-81,27,82,-32,32,82,-28,82,32,-84,80,82,-84,28,83,-33,80,84,-42,83,84,-81,84,44,-42,83,28,-86,83,85,-85,29,85,-29,86,44,-85,86,43,-45,86,66,-44,87,84,-86,84,87,-87,85,29,-88,66,86,-88,29,30,-88,87,64,-67,30,64,-88,88,89,-91,91,92,-94,94,95,-97,97,98,-100,100,101,-103,103,104,-106,106,107,-109,109,110,-112,111,110,-113,113,114,-113,113,112,-111,113,115,-117,113,116,-115,109,113,-111,113,109,-116,116,112,-115,112,116,-112,116,115,-112,109,111,-116,117,118,-120,117,120,-119,121,122,-124,122,121,-125,119,118,-124,119,123,-123,121,118,-121,118,121,-124,117,121,-121,121,117,-125,122,117,-120,117,122,-125,125,126,-128,126,125,-129,129,130,-127,126,130,-128,131,128,-126,128,131,-133,130,132,-132,132,130,-130,131,125,-131,130,125,-128,132,126,-129,126,132,-130,133,134,-136,133,135,-137,137,138,-140,138,137,-141,136,135,-140,136,139,-139,137,135,-135,135,137,-140,133,137,-135,137,133,-141,138,133,-137,133,138,-141,141,142,-91,142,143,-91,144,143,-143,142,145,-145,
- 145,141,-147,141,145,-143,143,88,-91,88,143,-145,89,141,-91,141,89,-147,147,148,-150,147,149,-151,151,152,-154,152,151,-155,150,149,-154,150,153,-153,149,151,-154,151,149,-149,151,148,-155,147,154,-149,147,152,-155,152,147,-151,155,156,-158,156,155,-159,155,159,-159,160,159,-156,161,157,-157,161,162,-158,162,159,-161,159,162,-162,161,156,-160,156,158,-160,162,155,-158,155,162,-161,163,164,-166,165,164,-167,167,168,-167,167,166,-165,167,169,-171,167,170,-169,163,167,-165,167,163,-170,170,166,-169,166,170,-166,170,169,-166,163,165,-170,171,172,-174,172,171,-175,175,176,-173,172,176,-174,177,174,-172,174,177,-179,176,178,-178,178,176,-176,177,171,-177,171,173,-177,178,172,-175,172,178,-176,179,180,-182,179,182,-181,183,184,-186,184,183,-187,181,180,-186,181,185,-185,183,180,-183,180,183,-186,179,186,-183,183,182,-187,184,179,-182,179,184,-187,187,188,-190,188,190,-190,191,190,-189,190,191,-193,191,193,-193,191,194,-194,191,187,-195,187,191,-189,190,193,-190,193,190,-193,193,187,-190,187,193,-195,195,196,-94,196,197,-94,198,195,-200,195,198,-197,197,91,-94,91,197,-201,92,195,-94,195,92,-200,201,202,-204,201,203,-205,203,205,-205,205,203,-207,202,201,-208,207,201,-209,207,205,-207,205,207,-209,208,201,-206,201,204,-206,206,203,-208,207,203,-203,209,210,-212,209,211,-213,96,213,-215,96,95,-214,212,211,-215,212,214,-214,210,209,-95,94,209,-96,213,209,-213,209,213,-96,215,216,-218,216,218,-218,216,219,-219,218,219,-221,219,221,-221,219,222,-222,219,215,-223,215,219,-217,218,221,-218,221,218,-221,222,217,-222,217,222,-216,223,224,-100,99,224,-226,226,227,-226,226,225,-225,223,226,-225,226,223,-229,97,225,-228,225,97,-100,98,228,-100,223,99,-229,229,230,-232,229,232,-231,233,230,-235,230,233,-232,229,235,-237,229,236,-233,233,236,-236,236,233,-235,233,229,-232,235,229,-234,236,230,-233,234,230,-237,237,238,-240,238,237,-241,237,241,-241,241,237,-243,243,239,-239,243,244,-240,244,241,-243,241,244,-244,243,238,-242,238,240,-242,244,242,-240,237,239,-243,245,246,-248,246,245,-249,249,250,-247,246,250,-248,251,248,-246,248,251,
- -253,250,252,-252,252,250,-250,251,245,-251,245,247,-251,252,246,-249,246,252,-250,253,254,-256,253,256,-255,257,258,-260,258,257,-261,255,254,-260,255,259,-259,257,254,-257,254,257,-260,253,260,-257,257,256,-261,258,253,-256,253,258,-261,261,262,-264,262,261,-265,261,265,-265,266,265,-262,267,263,-263,267,268,-264,268,265,-267,265,268,-268,267,262,-266,262,264,-266,268,261,-264,261,268,-267,269,270,-272,269,272,-271,273,274,-276,274,273,-277,271,270,-276,271,275,-275,273,270,-273,270,273,-276,269,273,-273,273,269,-277,274,269,-272,269,274,-277,277,278,-280,279,278,-281,281,282,-281,281,280,-279,281,283,-285,281,284,-283,277,281,-279,281,277,-284,284,280,-283,280,284,-280,284,277,-280,277,284,-284,285,286,-288,286,285,-289,289,290,-287,286,290,-288,291,288,-286,288,291,-293,290,292,-292,292,290,-290,290,285,-288,291,285,-291,292,286,-289,286,292,-290,293,294,-296,293,295,-297,102,297,-299,297,102,-102,296,295,-299,296,298,-298,100,293,-102,293,100,-295,293,297,-102,297,293,-297,299,300,-302,300,299,-303,299,303,-303,304,303,-300,305,301,-301,305,306,-302,306,303,-305,303,306,-306,305,300,-304,300,302,-304,306,299,-302,299,306,-305,307,308,-310,307,309,-311,311,312,-314,312,311,-315,310,309,-314,310,313,-313,311,309,-309,309,311,-314,307,314,-309,311,308,-315,312,307,-311,307,312,-315,315,316,-318,315,317,-319,319,320,-322,320,319,-323,318,317,-322,318,321,-321,317,319,-322,319,317,-317,319,315,-323,315,319,-317,315,320,-323,320,315,-319,323,324,-326,324,326,-326,324,327,-327,326,327,-329,327,329,-329,327,330,-330,327,323,-331,323,327,-325,326,329,-326,329,326,-329,330,325,-330,325,330,-324,331,332,-334,331,334,-333,335,336,-338,336,335,-339,333,332,-338,333,337,-337,335,332,-335,332,335,-338,331,335,-335,335,331,-339,336,331,-334,331,336,-339,339,340,-342,339,342,-341,343,344,-346,344,343,-347,341,340,-346,341,345,-345,340,343,-346,343,340,-343,343,339,-347,339,343,-343,339,344,-347,344,339,-342,347,348,-350,347,350,-349,351,348,-353,348,351,-350,347,353,-355,347,354,-351,351,354,-354,354,351,-353,351,347,-350,353,
- 347,-352,354,348,-351,352,348,-355,355,356,-358,355,358,-357,359,360,-362,360,359,-363,357,356,-362,357,361,-361,359,356,-359,356,359,-362,355,359,-359,359,355,-363,360,355,-358,355,360,-363,363,364,-106,105,364,-366,366,367,-366,366,365,-365,363,366,-365,366,363,-369,103,365,-368,365,103,-106,104,368,-106,363,105,-369,369,370,-372,370,369,-373,369,373,-373,374,373,-370,375,371,-371,375,376,-372,376,373,-375,373,376,-376,375,370,-374,370,372,-374,376,369,-372,369,376,-375,377,378,-380,377,380,-379,381,382,-384,382,381,-385,379,378,-384,379,383,-383,378,381,-384,381,378,-381,381,377,-385,377,381,-381,377,382,-385,382,377,-380,385,386,-388,385,388,-387,389,386,-391,386,389,-388,388,385,-392,388,391,-393,389,392,-392,392,389,-391,391,385,-390,385,387,-390,392,390,-389,386,388,-391,393,394,-396,394,396,-396,394,397,-397,394,398,-398,398,399,-398,397,399,-401,398,393,-400,393,398,-395,396,400,-396,400,396,-398,399,395,-401,395,399,-394,401,402,-404,401,404,-403,405,406,-408,406,405,-409,403,402,-408,403,407,-407,402,405,-408,405,402,-405,405,401,-409,401,405,-405,401,406,-409,406,401,-404,409,410,-109,108,410,-412,412,411,-411,411,412,-414,409,412,-411,412,409,-415,106,411,-414,411,106,-109,414,108,-108,108,414,-410,415,416,-418,416,415,-419,419,420,-422,420,419,-423,418,415,-422,418,421,-421,415,419,-422,419,415,-418,419,417,-423,416,422,-418,416,420,-423,420,416,-419,423,424,-426,423,426,-425,427,428,-430,428,427,-431,425,424,-430,425,429,-429,427,424,-427,424,427,-430,423,430,-427,427,426,-431,428,423,-426,423,428,-431,431,432,-434,432,434,-434,432,435,-435,434,435,-437,435,437,-437,435,438,-438,435,431,-439,431,435,-433,434,437,-434,437,434,-437,438,433,-438,433,438,-432,439,440,-442,439,442,-441,443,444,-446,444,443,-447,441,440,-446,441,445,-445,440,443,-446,443,440,-443,443,442,-447,439,446,-443,439,444,-447,444,439,-442,447,448,-450,447,449,-451,451,452,-454,452,451,-455,450,449,-454,450,453,-453,451,449,-449,449,451,-454,447,454,-449,451,448,-455,452,447,-451,447,452,-455,455,456,-458,455,457,-459,459,460,-462,
- 460,459,-463,458,457,-462,458,461,-461,457,459,-462,459,457,-457,459,455,-463,455,459,-457,455,460,-463,460,455,-459,463,464,-466,463,465,-467,465,467,-467,467,465,-469,464,463,-470,469,463,-471,469,467,-469,467,469,-471,470,463,-468,463,466,-468,468,465,-470,469,465,-465,471,472,-474,472,471,-475,475,474,-477,476,474,-472,477,473,-473,478,473,-478,475,478,-478,478,475,-477,475,472,-475,477,472,-476,478,471,-474,471,478,-477,479,480,-482,479,481,-483,483,484,-486,484,483,-487,481,485,-483,482,485,-485,483,481,-481,481,483,-486,479,486,-481,483,480,-487,484,479,-483,479,484,-487,487,488,-490,487,489,-491,491,492,-494,492,491,-495,490,489,-494,490,493,-493,489,491,-494,491,489,-489,491,487,-495,487,491,-489,487,492,-495,492,487,-491,495,496,-498,497,498,-496,495,499,-501,495,500,-497,499,498,-502,498,499,-496,497,500,-503,497,496,-501,500,499,-503,501,502,-500,501,497,-503,497,501,-499,503,504,-506,503,506,-505,507,508,-510,508,507,-511,505,504,-510,505,509,-509,504,507,-510,507,504,-507,507,503,-511,503,507,-507,503,508,-511,508,503,-506,511,512,-514,514,513,-513,514,512,-516,512,516,-516,517,515,-517,515,517,-519,516,511,-518,511,516,-513,518,514,-516,514,518,-514,517,513,-519,513,517,-512,519,520,-522,520,519,-523,523,524,-526,524,523,-527,522,526,-524,522,519,-527,519,524,-527,524,519,-522,524,520,-526,520,524,-522,523,520,-523,520,523,-526,527,528,-530,527,529,-531,529,531,-531,531,529,-533,528,527,-534,527,534,-534,533,531,-533,531,533,-535,527,530,-532,534,527,-532,532,529,-534,533,529,-529,535,536,-538,536,538,-538,536,539,-539,538,539,-541,539,541,-541,539,542,-542,539,535,-543,535,539,-537,538,541,-538,541,538,-541,535,541,-543,541,535,-538,543,544,-546,544,543,-547,543,547,-547,548,547,-544,549,545,-545,545,549,-551,550,547,-549,547,550,-550,549,544,-548,547,544,-547,550,548,-546,543,545,-549,551,552,-554,552,551,-555,555,556,-558,556,555,-559,553,552,-558,553,557,-557,552,555,-558,555,552,-555,555,551,-559,551,555,-555,551,556,-559,556,551,-554,559,560,-562,560,559,-563,563,564,-563,562,564,-561,563,565,
- -567,563,566,-565,565,563,-563,562,559,-566,561,564,-567,561,560,-565,559,561,-566,566,565,-562,567,568,-570,567,569,-571,570,571,-573,571,570,-570,567,573,-569,573,567,-575,572,573,-575,573,572,-572,572,567,-571,574,567,-573,573,569,-569,569,573,-572,575,576,-578,576,575,-579,575,579,-579,580,579,-576,581,577,-577,581,582,-578,582,579,-581,579,582,-582,581,576,-580,576,578,-580,582,575,-578,575,582,-581,583,584,-586,583,586,-585,587,588,-590,587,590,-589,585,587,-590,587,585,-585,590,583,-589,583,590,-587,589,583,-586,583,589,-589,586,587,-585,587,586,-591,591,592,-594,593,594,-592,591,595,-593,595,596,-593,591,594,-596,597,595,-595,596,595,-599,597,598,-596,597,593,-599,593,597,-595,598,592,-597,592,598,-594,599,600,-602,602,599,-602,603,604,-602,601,600,-604,603,605,-607,603,606,-605,599,605,-604,599,603,-601,601,606,-603,601,604,-607,606,599,-603,599,606,-606,607,608,-610,608,607,-611,611,612,-614,612,611,-615,610,607,-615,610,614,-612,612,607,-610,607,612,-615,612,608,-614,608,612,-610,608,611,-614,611,608,-611,145,146,-145,144,146,-90,88,144,-90,615,200,-198,615,197,-197,615,196,-199,96,210,-95,96,211,-211,211,96,-215,226,228,-99,97,226,-99,226,97,-228,295,102,-299,102,295,-295,102,294,-101,366,368,-105,103,366,-105,366,103,-368,412,414,-108,106,412,-108,412,106,-414,199,615,-199,615,199,-93,91,615,-93,615,91,-201
- }
- Edges: *1394 {
- a: 0,35,3,7,11,72,36,13,41,14,15,16,18,17,12,24,26,23,19,20,31,8,4,1,9,5,2,32,38,45,34,33,39,43,42,46,53,58,60,59,65,68,66,69,55,51,54,47,61,151,95,96,116,131,181,187,81,132,80,130,129,112,92,75,91,86,82,77,101,107,121,135,76,93,99,90,97,109,100,105,119,124,106,114,117,137,140,120,125,126,74,83,78,73,88,84,79,113,104,147,149,155,157,163,145,172,180,191,192,185,186,176,196,200,201,202,205,208,211,213,214,217,219,220,223,224,226,229,232,235,238,241,243,245,248,249,251,253,255,257,259,260,262,266,268,271,273,275,277,278,280,284,286,289,292,295,297,299,301,304,305,307,309,310,313,315,316,319,322,323,325,328,330,331,335,337,340,344,345,348,349,352,353,355,358,362,363,365,367,370,372,373,376,379,381,383,386,390,392,394,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,425,426,427,428,429,432,433,434,435,437,439,443,445,449,452,457,458,459,460,461,463,464,465,467,468,470,471,474,475,477,481,485,487,493,494,495,497,498,499,500,501,503,505,507,509,510,511,513,516,518,523,529,530,531,533,534,535,536,537,539,540,542,543,546,547,549,553,557,559,565,566,567,568,569,571,573,574,575,577,578,579,583,588,589,593,595,596,597,599,600,601,602,603,605,606,608,609,612,613,618,620,622,625,631,632,633,635,636,637,638,640,642,643,645,646,647,649,651,654,656,661,667,668,669,671,672,673,674,675,678,679,680,681,683,685,689,691,695,698,703,704,705,707,708,709,710,711,713,715,717,719,720,721,723,726,728,733,739,740,741,742,743,745,746,747,749,750,752,753,756,757,759,763,764,769,775,776,777,778,779,781,783,785,786,787,788,790,791,793,794,799,800,805,811,812,813,814,815,817,818,819,821,823,827,828,829,833,835,836,837,839,840,841,842,845,846,848,849,851,852,853,855,858,860,866,871,872,873,875,876,877,878,879,881,884,885,888,890,891,893,895,901,902,903,904,905,907,908,911,912,913,914,916,917,919,920,925,926,931,937,938,939,941,942,943,944,945,948,949,953,954,955,957,961,962,967,968,969,970,971,973,974,975,977,979,980,981,983,985,987,990,991,997,1003,1004,1005,1007,1008,1009,1010,1013,1014,
- 1015,1017,1018,1019,1021,1023,1026,1028,1034,1039,1040,1041,1043,1044,1045,1046,1047,1049,1051,1053,1055,1056,1057,1059,1062,1064,1069,1075,1076,1077,1078,1079,1081,1082,1083,1085,1086,1088,1089,1092,1093,1095,1099,1100,1105,1111,1112,1113,1115,1116,1117,1118,1120,1122,1123,1125,1126,1127,1129,1131,1134,1136,1141,1147,1148,1149,1150,1151,1153,1154,1155,1157,1158,1160,1161,1164,1165,1167,1171,1175,1177,1183,1184,1185,1187,1188,1189,1190,1191,1194,1195,1196,1197,1199,1201,1205,1207,1211,1213,1219,1220,1221,1223,1224,1225,1226,1227,1229,1231,1233,1235,1236,1237,1239,1242,1243,1249,1255,1256,1257,1259,1260,1261,1262,1263,1266,1268,1269,1272,1273,1274,1277,1279,1285,1286,1287,1289,1290,1291,1292,1294,1296,1297,1299,1300,1301,1303,1305,1308,1310,1315,1321,1322,1323,1325,1326,1327,1328,1329,1331,1332,1334,1335,1338,1339,1341,1345,1346,1351,1357,1358,1359,1361,1362,1363,1364,1365,1367,1368,1370,1371,1374,1375,1380,1381,1382,1387,1393,1394,1395,1396,1397,1399,1400,1403,1404,1405,1406,1408,1409,1411,1412,1417,1418,1423,1429,1430,1431,1432,1433,1435,1436,1437,1439,1440,1442,1443,1446,1447,1449,1453,1457,1459,1465,1466,1467,1468,1469,1471,1472,1473,1475,1476,1478,1479,1482,1483,1488,1489,1490,1495,1501,1502,1503,1504,1505,1507,1508,1509,1511,1513,1514,1515,1517,1519,1521,1524,1525,1531,1537,1538,1539,1540,1541,1543,1544,1545,1547,1548,1550,1551,1554,1555,1557,1561,1565,1567,1573,1574,1575,1577,1578,1579,1580,1581,1584,1585,1589,1590,1591,1593,1597,1598,1603,1604,1605,1607,1608,1609,1610,1612,1614,1615,1617,1618,1619,1621,1623,1626,1628,1633,1639,1640,1641,1642,1643,1645,1646,1647,1649,1650,1652,1653,1656,1657,1662,1663,1664,1669,1675,1676,1677,1678,1679,1681,1682,1683,1685,1688,1689,1691,1692,1693,1695,1698,1700,1706,1711,1712,1713,1714,1715,1717,1718,1720,1721,1723,1724,1727,1728,1729,1730,1735,1736,1741,1747,1748,1749,1750,1751,1753,1754,1755,1757,1758,1760,1761,1764,1765,1770,1771,1772,1777,1783,1784,1785,1787,1788,1789,1791,1793,1794,1795,1799,1800,1801,1803,1807,1809,1813,1814,1815,1817,1818,1819,1820,1821,1823,1824,1826,
- 1827,1830,1831,1836,1838,1840,1843,1849,1850,1851,1852,1853,1855,1856,1857,1859,1860,1862,1863,1866,1867,1869,1873,1874,1879,1885,1886,1887,1888,1889,1891,1892,1895,1896,1897,1898,1900,1901,1903,1904,1909,1910,1915,1921,1922,1923,1924,1925,1927,1928,1929,1931,1932,1934,1935,1938,1939,1944,1946,1948,1951,1957,1958,1959,1961,1962,1963,1964,1965,1967,1968,1970,1971,1974,1975,1977,1981,1982,1987,1993,1994,1995,1997,1998,1999,2000,2001,2003,2004,2006,2007,2010,2011,2016,2017,2018,2023,2029,2030,2031,2033,2034,2035,2036,2039,2040,2042,2043,2045,2046,2047,2049,2052,2054,2060,2065,2066,2067,2069,2070,2071,2072,2073,2076,2077,2079,2080,2082,2083,2085,2088,2089,2095,2101,2102,2103,2105,2106,2107,2108,2109,2111,2112,2113,2114,2118,2119,2121,2125,2126,2131,2137,2138,2139,2141,2142,2143,2144,2145,2147,2148,2150,2151,2154,2155,2160,2161,2162,2167,2173,2174,2175,2176,2177,2179,2180,2181,2183,2185,2186,2187,2191,2192,2193,2198,2200,2203,2209,2210,2211,2212,2213,2215,2216,2217,2219,2220,2222,2223,2226,2227,2232,2233,2234,2239,2245,2246,2247,2248,2250,2252,2253,2254,2255,2257,2259,2261,2262,2263,2264,2269,2273,2275,2281,2282,2283,2285,2286,2287,2288,2289,2291,2292,2293,2295,2297,2299,2304,2305,2306,2311,2317,2318,2319,2321,2322,2323,2324,2327,2328,2330,2331,2332,2333,2335,2337,2340,2343,2348,2353,2354,2355,2356,2357,2359,2360,2363,2364,2365,2366,2368,2369,2371,2372,2377,2378,2383,2389,2390,2391,2393,2394,2395,2396,2398,2400,2401,2403,2405,2406,2407,2409,2412,2414,2420,2425,2426,2427,2429,2430,2431,2432,2433,2435,2436,2438,2439,2442,2443,2448,2449,2450,2455,2461,2462,2463,2465,2466,2467,2468,2469,2471,2473,2474,2475,2477,2481,2483,2485,2487,2492,2497,2498,2499,2501,2502,2503,2504,2505,2508,2509,2510,2513,2514,2515,2517,2520,2521,2527,2533,2534,2535,2537,2538,2539,2540,2542,2544,2545,2547,2548,2549,2551,2553,2556,2558,2563,2569,2570,2571,2572,2573,2575,2576,2577,2578,2579,2581,2583,2586,2587,2588,2591,2593,2599,2605,2606,2607,2608,2609,2611,2612,2614,2615,2618,2620,2622,2624,2625,2626,2629,2630,2635,2641,2642,2643,2644,2646,2647,2648,
- 2649,2651,2653,2654,2655,2657,2659,2661,2665,2666,2671,2677,2678,2679,2681,2682,2683,2684,2685,2687,2688,2690,2691,2694,2695,2697,2701,2702,2707,2714,2718,2722,2724,2727,2730,2731,2734,2742,2743,2749,2754,2760,2761,2769,2770,2776,2781,2782
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *8364 {
- a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.000322104024235159,-0.000310139934299514,0.999999821186066,0,0,1,0,0,1,-2.35435280160345e-008,0,1,-0.000383507489459589,-0.000677263655234128,0.999999642372131,-0.000322104024235159,-0.000310139934299514,0.999999821186066,0,0,1,0,0,1,0.000127010440337472,0.000334121024934575,0.999999940395355,0.0004514635365922,0.000142887409310788,0.99999988079071,0,0,1,-0.000968167325481772,-0.000935419055167586,0.999999105930328,-0.00052702275570482,0.000256011029705405,0.99999988079071,0.000127010440337472,0.000334121024934575,0.999999940395355,0,0,1,0,0,1,0,0,1,0.000127010440337472,0.000334121024934575,0.999999940395355,0,0,1,-0.000322104024235159,-0.000310139934299514,0.999999821186066,-0.000968167325481772,-0.000935419055167586,0.999999105930328,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.00301734148524702,-0.000941799022257328,0.999994933605194,-0.0021317086648196,-0.00066536758095026,0.999997437000275,-0.00694896280765533,-0.00216897134669125,0.999973475933075,-0.00694896280765533,-0.00216897111386061,0.999973475933075,-0.00694896373897791,-0.00216897134669125,0.99997353553772,0,0,1,0.0004514635365922,0.000142887409310788,0.99999988079071,0.000291089992970228,-0.000156748428707942,0.99999988079071,-0.0021317086648196,-0.00066536758095026,0.999997437000275,-0.00301734148524702,-0.000941799022257328,0.999994933605194,0.000796998909208924,0.00115416583139449,0.999998986721039,0.00211977399885654,-0.00114147271960974,0.999997138977051,0.000291089992970228,-0.000156748428707942,0.99999988079071,0.0004514635365922,0.000142887409310788,0.99999988079071,-0.00052702275570482,0.000256011029705405,0.99999988079071,-0.000455383735243231,0.00222690287046134,0.999997437000275,0.000796998909208924,0.00115416583139449,0.999998986721039,0.0004514635365922,0.000142887409310788,0.99999988079071,0.000127010440337472,0.000334121024934575,0.999999940395355,-0.00436203414574265,-0.00289501389488578,0.999986290931702,-0.000455383735243231,0.00222690287046134,0.999997437000275,-0.00052702275570482,0.000256011029705405,0.99999988079071,
- -0.00249140616506338,-0.00240705860778689,0.999993979930878,-0.00385441398248076,-0.00373198511078954,0.999985575675964,-0.00436203414574265,-0.00289501389488578,0.999986290931702,-0.00052702275570482,0.000256011029705405,0.99999988079071,-0.000968167325481772,-0.000935419055167586,0.999999105930328,-0.000383507489459589,-0.000677263655234128,0.999999642372131,-0.00104968075174838,-0.00287430128082633,0.999995350837708,-0.00160136050544679,-0.00154188042506576,0.999997496604919,-0.00249140616506338,-0.00240705860778689,0.999993979930878,-0.000968167325481772,-0.000935419055167586,0.999999105930328,-0.000322104024235159,-0.000310139934299514,0.999999821186066,-0.000383507489459589,-0.000677263655234128,0.999999642372131,0.000109041568066459,-0.000375041679944843,0.999999940395355,-0.00104968075174838,-0.00287430128082633,0.999995350837708,-4.54658817261588e-008,0,1,-4.54658781734452e-008,0,1,0.000109041568066459,-0.000375041679944843,0.999999940395355,-0.000383507489459589,-0.000677263655234128,0.999999642372131,-2.35435280160345e-008,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.00428892346099019,0.000966897583566606,-0.999990344047546,0.00222407421097159,0.000501396658364683,-0.99999737739563,0.000873848388437182,0.000103471851616632,-0.999999582767487,0.00297297863289714,0.000615862023551017,-0.999995410442352,0.00428892392665148,0.000966897699981928,-0.999990403652191,0.00222407421097159,0.000501396658364683,-0.99999737739563,0,0,-1,0,0,-1,0.000873848388437182,0.000103471851616632,-0.999999582767487,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.00122688745614141,-0.000517680600751191,-0.999999046325684,0,0,-1,0,0,-1,-0.000259108695900068,5.26133298990317e-005,-0.999999940395355,-0.00122688745614141,-0.000517680600751191,-0.999999046325684,-0.000259108695900068,5.26133298990317e-005,-0.999999940395355,-0.0108433123677969,0.00220178905874491,-0.999938726425171,-0.00468171108514071,-0.00368737638927996,-0.999982297420502,0,0,-1,-0.00122688745614141,-0.000517680600751191,-0.999999046325684,0.00058851350331679,3.91920693800785e-005,-0.999999821186066,
- 0,0,-1,0.00058851350331679,3.91920693800785e-005,-0.999999821186066,-0.00122688745614141,-0.000517680600751191,-0.999999046325684,-0.00468171108514071,-0.00368737638927996,-0.999982297420502,0.00143142987508327,5.36514817213174e-005,-0.999999046325684,0.000845724483951926,0.000490364152938128,-0.999999523162842,0,0,-1,0,0,-1,0.00058851350331679,3.91920693800785e-005,-0.999999821186066,0.000845724483951926,0.000490364152938128,-0.999999523162842,0.00058851350331679,3.91920693800785e-005,-0.999999821186066,0.00143142987508327,5.36514817213174e-005,-0.999999046325684,0.00390696246176958,0.00231710006482899,-0.999989748001099,0.000515206949785352,0.000435641879448667,-0.999999821186066,0.000515206949785352,0.000435641879448667,-0.999999821186066,0.00390696246176958,0.00231710006482899,-0.999989748001099,-0.000471590436063707,-0.000234965060371906,-0.999999821186066,0,0,-1,0.000845724483951926,0.000490364152938128,-0.999999523162842,0,0,-1,0,0,-1,0,0,-1,0.000845724483951926,0.000490364152938128,-0.999999523162842,0.000515206949785352,0.000435641879448667,-0.999999821186066,-0.000243839880567975,-0.000156224443344399,-1,0.000873848388437182,0.000103471851616632,-0.999999582767487,-0.000243839880567975,-0.000156224443344399,-1,0.000515206949785352,0.000435641879448667,-0.999999821186066,-0.000471590436063707,-0.000234965060371906,-0.999999821186066,-0.000473872903967276,-0.000303603097563609,-0.99999988079071,-0.000473872845759615,-0.000303603068459779,-0.999999821186066,-0.000473872845759615,-0.000303603068459779,-0.999999761581421,0.00297297863289714,0.000615862023551017,-0.999995410442352,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.000243839880567975,-0.000156224443344399,-1,0,0,-1,0,0,-1,-0.000243839880567975,-0.000156224443344399,-1,0.000873848388437182,0.000103471851616632,-0.999999582767487,-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,3.57627860658738e-009,-1,-9.53674139658744e-010,7.15255721317476e-009,-1,-1.90734827931749e-009,
- 7.15255721317476e-009,-1,-1.90734827931749e-009,3.57627860658738e-009,-1,-9.53674139658744e-010,0,-1,0,3.57627860658738e-009,-1,-9.53674139658744e-010,3.57627860658738e-009,-1,-9.53674139658744e-010,0,-1,0,-8.94069651646845e-010,-1,7.15255743521936e-010,0,-1,0,0,-1,0,-8.94069651646845e-010,-1,7.15255743521936e-010,-1.78813930329369e-009,-1,1.43051148704387e-009,-1.78813930329369e-009,-1,1.43051148704387e-009,-8.94069651646845e-010,-1,7.15255743521936e-010,-8.94069651646845e-010,-1,7.15255743521936e-010,0.999998807907104,-0.000773041683714837,0.00130487966816872,0.999998867511749,-0.000773041741922498,0.0013048795517534,0.999998867511749,-0.000773041741922498,0.00130487966816872,0.999998867511749,-0.000773041683714837,0.0013048795517534,0.999998807907104,-0.000773041683714837,0.0013048795517534,0.999998927116394,-0.00077304185833782,0.00130487978458405,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,0,0.920371472835541,0.0948218777775764,0.37937468290329,0.944819748401642,0.272794604301453,-0.181380495429039,0.987588167190552,0.0978129282593727,-0.122891083359718,0.944819748401642,0.272794604301453,-0.181380495429039,0.920371472835541,0.0948218777775764,0.37937468290329,0.900893032550812,0.322476744651794,0.290517777204514,0.816133141517639,0.122592695057392,0.564710199832916,0.900893032550812,0.322476744651794,0.290517777204514,0.920371472835541,0.0948218777775764,0.37937468290329,0.900893032550812,0.322476744651794,0.290517777204514,0.934004724025726,0.329496741294861,-0.138083711266518,0.944819748401642,0.272794604301453,-0.181380495429039,0.796298742294312,0.260868012905121,0.545762062072754,0.900893032550812,0.322476744651794,0.290517777204514,0.816133141517639,0.122592695057392,0.564710199832916,0.887762546539307,0.388279616832733,0.247218012809753,0.934004724025726,0.329496741294861,-0.138083711266518,0.900893032550812,0.322476744651794,0.290517777204514,0.796298742294312,0.260868012905121,0.545762062072754,0.887762546539307,0.388279616832733,0.247218012809753,0.900893032550812,0.322476744651794,0.290517777204514,
- 0.935439705848694,0.345357179641724,0.0753718912601471,0.934004724025726,0.329496741294861,-0.138083711266518,0.887762546539307,0.388279616832733,0.247218012809753,0.935439705848694,0.345357179641724,0.0753718912601471,0.87561446428299,0.234643399715424,-0.42218679189682,0.934004724025726,0.329496741294861,-0.138083711266518,0.796298742294312,0.260868012905121,0.545762062072754,0.821031093597412,0.362817823886871,0.440762221813202,0.887762546539307,0.388279616832733,0.247218012809753,0.821031093597412,0.362817823886871,0.440762221813202,0.935439705848694,0.345357179641724,0.0753718912601471,0.887762546539307,0.388279616832733,0.247218012809753,0.697961211204529,0.362846463918686,0.617407917976379,0.821031093597412,0.362817823886871,0.440762221813202,0.796298742294312,0.260868012905121,0.545762062072754,0.576991319656372,0.439961552619934,0.688124060630798,0.821031093597412,0.362817823886871,0.440762221813202,0.697961211204529,0.362846463918686,0.617407917976379,0.898640155792236,0.432959139347076,0.0706560164690018,0.821031093597412,0.362817823886871,0.440762221813202,0.576991319656372,0.439961552619934,0.688124060630798,0.816200017929077,0.466574668884277,0.340772181749344,0.821031093597412,0.362817823886871,0.440762221813202,0.898640155792236,0.432959139347076,0.0706560164690018,0.830992043018341,0.43756577372551,-0.343494474887848,0.87561446428299,0.234643399715424,-0.42218679189682,0.935439705848694,0.345357179641724,0.0753718912601471,0.87561446428299,0.234643399715424,-0.42218679189682,0.830992043018341,0.43756577372551,-0.343494474887848,0.786293566226959,0.318534821271896,-0.529412865638733,0.935439705848694,0.345357179641724,0.0753718912601471,0.821031093597412,0.362817823886871,0.440762221813202,0.840683579444885,0.379960238933563,0.385851413011551,0.821031093597412,0.362817823886871,0.440762221813202,0.816200017929077,0.466574668884277,0.340772181749344,0.840683579444885,0.379960238933563,0.385851413011551,0.834725618362427,0.524353563785553,0.168186128139496,0.830992043018341,0.43756577372551,-0.343494474887848,
- 0.935439705848694,0.345357179641724,0.0753718912601471,0.935439705848694,0.345357179641724,0.0753718912601471,0.840683579444885,0.379960238933563,0.385851413011551,0.834725618362427,0.524353563785553,0.168186128139496,0.830992043018341,0.43756577372551,-0.343494474887848,0.697984933853149,0.712298512458801,-0.0738089382648468,0.786293566226959,0.318534821271896,-0.529412865638733,0.834725618362427,0.524353563785553,0.168186128139496,0.697984933853149,0.712298512458801,-0.0738089382648468,0.830992043018341,0.43756577372551,-0.343494474887848,0.786293566226959,0.318534821271896,-0.529412865638733,0.697984933853149,0.712298512458801,-0.0738089382648468,0.469928652048111,0.834588170051575,-0.28745374083519,0.697984933853149,0.712298512458801,-0.0738089382648468,0.395070046186447,0.905630946159363,-0.15411750972271,0.469928652048111,0.834588170051575,-0.28745374083519,0.766974151134491,0.408514976501465,0.494839519262314,0.834725618362427,0.524353563785553,0.168186128139496,0.840683579444885,0.379960238933563,0.385851413011551,0.840683579444885,0.379960238933563,0.385851413011551,0.816200017929077,0.466574668884277,0.340772181749344,0.766974151134491,0.408514976501465,0.494839519262314,0.766974151134491,0.408514976501465,0.494839519262314,0.729864776134491,0.672695755958557,0.121563941240311,0.834725618362427,0.524353563785553,0.168186128139496,0.816200017929077,0.466574668884277,0.340772181749344,0.729864776134491,0.672695755958557,0.121563941240311,0.766974151134491,0.408514976501465,0.494839519262314,0.834725618362427,0.524353563785553,0.168186128139496,0.729864776134491,0.672695755958557,0.121563941240311,0.697984933853149,0.712298512458801,-0.0738089382648468,0.700708270072937,0.702124416828156,-0.126607120037079,0.729864776134491,0.672695755958557,0.121563941240311,0.816200017929077,0.466574668884277,0.340772181749344,0.700708270072937,0.702124416828156,-0.126607120037079,0.697984933853149,0.712298512458801,-0.0738089382648468,0.729864776134491,0.672695755958557,0.121563941240311,0.831424295902252,0.52800178527832,0.173054322600365,
- 0.697984933853149,0.712298512458801,-0.0738089382648468,0.700708270072937,0.702124416828156,-0.126607120037079,0.57867032289505,0.815445721149445,-0.013746390119195,0.395070046186447,0.905630946159363,-0.15411750972271,0.697984933853149,0.712298512458801,-0.0738089382648468,0.697984933853149,0.712298512458801,-0.0738089382648468,0.831424295902252,0.52800178527832,0.173054322600365,0.57867032289505,0.815445721149445,-0.013746390119195,0.57867032289505,0.815445721149445,-0.013746390119195,0.853898406028748,0.345607310533524,-0.389118373394012,0.395070046186447,0.905630946159363,-0.15411750972271,0.831424295902252,0.52800178527832,0.173054322600365,0.820625305175781,0.439538806676865,0.365211874246597,0.57867032289505,0.815445721149445,-0.013746390119195,0.921537041664124,0.361777871847153,-0.141018569469452,0.853898406028748,0.345607310533524,-0.389118373394012,0.57867032289505,0.815445721149445,-0.013746390119195,0.820625305175781,0.439538806676865,0.365211874246597,0.921537041664124,0.361777871847153,-0.141018569469452,0.57867032289505,0.815445721149445,-0.013746390119195,0.948663353919983,0.315611839294434,-0.0206638742238283,0.853898406028748,0.345607310533524,-0.389118373394012,0.921537041664124,0.361777871847153,-0.141018569469452,0.820625305175781,0.439538806676865,0.365211874246597,0.948663353919983,0.315611839294434,-0.0206638742238283,0.921537041664124,0.361777871847153,-0.141018569469452,0.948663353919983,0.315611839294434,-0.0206638742238283,0.773599028587341,0.531311273574829,-0.345329999923706,0.853898406028748,0.345607310533524,-0.389118373394012,0.831424295902252,0.52800178527832,0.173054322600365,0.835075378417969,0.0466860122978687,0.548151135444641,0.820625305175781,0.439538806676865,0.365211874246597,0.924312233924866,0.104442775249481,0.367067724466324,0.835075378417969,0.0466860122978687,0.548151135444641,0.831424295902252,0.52800178527832,0.173054322600365,0.773139297962189,0.218024775385857,0.595584273338318,0.820625305175781,0.439538806676865,0.365211874246597,0.835075378417969,0.0466860122978687,0.548151135444641,
- 0.924312233924866,0.104442775249481,0.367067724466324,0.773139297962189,0.218024775385857,0.595584273338318,0.835075378417969,0.0466860122978687,0.548151135444641,0.820625305175781,0.439538806676865,0.365211874246597,0.773139297962189,0.218024775385857,0.595584273338318,0.948663353919983,0.315611839294434,-0.0206638742238283,0.838556110858917,0.0384351201355457,0.543457746505737,0.773139297962189,0.218024775385857,0.595584273338318,0.924312233924866,0.104442775249481,0.367067724466324,0.46900287270546,0.496390968561172,0.730501353740692,0.773139297962189,0.218024775385857,0.595584273338318,0.838556110858917,0.0384351201355457,0.543457746505737,0.773139297962189,0.218024775385857,0.595584273338318,0.46900287270546,0.496390968561172,0.730501353740692,0.67811518907547,0.523803055286407,0.515548467636108,0.948663353919983,0.315611839294434,-0.0206638742238283,0.773139297962189,0.218024775385857,0.595584273338318,0.67811518907547,0.523803055286407,0.515548467636108,0.319138586521149,0.771133005619049,0.550912439823151,0.67811518907547,0.523803055286407,0.515548467636108,0.46900287270546,0.496390968561172,0.730501353740692,0.948663353919983,0.315611839294434,-0.0206638742238283,0.660867869853973,0.741608917713165,-0.115195319056511,0.773599028587341,0.531311273574829,-0.345329999923706,0.67811518907547,0.523803055286407,0.515548467636108,0.660867869853973,0.741608917713165,-0.115195319056511,0.948663353919983,0.315611839294434,-0.0206638742238283,0.660867869853973,0.741608917713165,-0.115195319056511,0.286583006381989,0.817351281642914,-0.499807119369507,0.773599028587341,0.531311273574829,-0.345329999923706,0.67811518907547,0.523803055286407,0.515548467636108,0.319138586521149,0.771133005619049,0.550912439823151,0.703740358352661,0.64848381280899,0.290203899145126,0.67811518907547,0.523803055286407,0.515548467636108,0.703740358352661,0.64848381280899,0.290203899145126,0.660867869853973,0.741608917713165,-0.115195319056511,0.328314036130905,0.865725994110107,0.377794295549393,0.703740358352661,0.64848381280899,0.290203899145126,
- 0.319138586521149,0.771133005619049,0.550912439823151,0.476403295993805,0.874324262142181,-0.092720091342926,0.286583006381989,0.817351281642914,-0.499807119369507,0.660867869853973,0.741608917713165,-0.115195319056511,0.476403295993805,0.874324262142181,-0.092720091342926,0.569056510925293,0.773599028587341,-0.278781473636627,0.286583006381989,0.817351281642914,-0.499807119369507,0.476403295993805,0.874324262142181,-0.092720091342926,0.583245098590851,0.773123919963837,0.249207973480225,0.569056510925293,0.773599028587341,-0.278781473636627,0.382034331560135,0.886709213256836,0.260377943515778,0.660867869853973,0.741608917713165,-0.115195319056511,0.703740358352661,0.64848381280899,0.290203899145126,0.660867869853973,0.741608917713165,-0.115195319056511,0.382034331560135,0.886709213256836,0.260377943515778,0.476403295993805,0.874324262142181,-0.092720091342926,0.703740358352661,0.64848381280899,0.290203899145126,0.328314036130905,0.865725994110107,0.377794295549393,0.382034331560135,0.886709213256836,0.260377943515778,0.583245098590851,0.773123919963837,0.249207973480225,0.476403295993805,0.874324262142181,-0.092720091342926,0.382034331560135,0.886709213256836,0.260377943515778,0.328314036130905,0.865725994110107,0.377794295549393,0.319820582866669,0.920794546604156,0.223276495933533,0.382034331560135,0.886709213256836,0.260377943515778,0.382034331560135,0.886709213256836,0.260377943515778,0.543712615966797,0.831540822982788,0.113650992512703,0.583245098590851,0.773123919963837,0.249207973480225,0.319820582866669,0.920794546604156,0.223276495933533,0.543712615966797,0.831540822982788,0.113650992512703,0.382034331560135,0.886709213256836,0.260377943515778,0.901558578014374,-0.0448553636670113,-0.430325508117676,0.901558637619019,-0.0448553673923016,-0.430325537919998,0.901558637619019,-0.0448553636670113,-0.430325537919998,-0.898102760314941,0.100165404379368,-0.428227037191391,-0.898102760314941,0.100165404379368,-0.428227037191391,-0.898102700710297,0.100165396928787,-0.428226977586746,0.745206356048584,0.188739240169525,-0.63956618309021,
- 0.745206356048584,0.188739255070686,-0.63956618309021,0.745206415653229,0.188739240169525,-0.63956618309021,-0.907548308372498,-0.0607286617159843,0.415533244609833,-0.907548367977142,-0.0607286617159843,0.415533244609833,-0.907548427581787,-0.0607286654412746,0.415533274412155,0.750734865665436,-0.129246860742569,0.647836744785309,0.750734806060791,-0.129246845841408,0.647836744785309,0.750734746456146,-0.129246845841408,0.647836744785309,-0.928426384925842,-0.0594323575496674,0.366731703281403,-0.928426444530487,-0.0594323538243771,0.36673167347908,-0.928426384925842,-0.0594323575496674,0.36673167347908,0.932056188583374,0.0531577803194523,0.358393102884293,0.932056128978729,0.0531577728688717,0.358393043279648,0.932056069374084,0.0531577728688717,0.358393043279648,-0.00469595845788717,0.999975442886353,-0.00522376177832484,-0.00189597543794662,0.999998152256012,0.000277806451776996,0.00254867086187005,0.999956130981445,0.00901059154421091,0.00254867086187005,0.999956130981445,0.00901059154421091,-0.00189597543794662,0.999998152256012,0.000277806451776996,0.00573260383680463,0.999867081642151,0.0152661046013236,-0.0430584959685802,0.00242543034255505,-0.999069631099701,-0.0492692440748215,-0.0101816952228546,-0.998733580112457,-0.0467395484447479,-0.00504454644396901,-0.998894393444061,-0.0430584959685802,0.00242543034255505,-0.999069631099701,-0.0467395484447479,-0.00504454644396901,-0.998894393444061,-0.0406599678099155,0.00728942453861237,-0.999146461486816,-0.0136945191770792,-0.998878538608551,0.0453230477869511,-0.0151463560760021,-0.998986780643463,0.0423796288669109,-0.0110346926376224,-0.998652279376984,0.050713449716568,-0.0136945191770792,-0.998878538608551,0.0453230477869511,-0.0110346926376224,-0.998652279376984,0.050713449716568,-0.00893706083297729,-0.998448491096497,0.0549626499414444,0.999885261058807,-0.00976571906358004,-0.0115813175216317,0.99988579750061,-0.0105202086269856,-0.0108476858586073,0.999805450439453,-0.0196228250861168,-0.00199483404867351,0.99988579750061,-0.0105202086269856,-0.0108476858586073,
- 0.999885261058807,-0.00976571906358004,-0.0115813175216317,0.999788641929626,-0.000536887324415147,-0.0205531679093838,-0.99983674287796,0.00745373498648405,0.0164564792066813,-0.999830305576324,0.00771810580044985,0.0167281031608582,-0.999960541725159,9.07039939193055e-005,0.00889092311263084,-0.999830305576324,0.00771810580044985,0.0167281031608582,-0.99983674287796,0.00745373498648405,0.0164564792066813,-0.999586403369904,0.0151965087279677,0.0244111660867929,-0.0280057899653912,-0.0467601381242275,0.998513460159302,-0.00308998348191381,0.00682652788236737,0.999971926212311,-0.0184347778558731,-0.0261700917035341,0.999487459659576,0.00587786128744483,0.0261022411286831,0.999641954898834,-0.0184347778558731,-0.0261700917035341,0.999487459659576,-0.00308998348191381,0.00682652788236737,0.999971926212311,0.0167510975152254,-0.0389285683631897,0.999101579189301,0.0431181900203228,0.0167031548917294,0.998930394649506,0.0603064224123955,0.053121093660593,0.996765375137329,0.0167510975152254,-0.0389285683631897,0.999101579189301,0.000273589947028086,-0.0735518261790276,0.997291326522827,0.0431181900203228,0.0167031548917294,0.998930394649506,0.0201856940984726,-0.0208828989416361,-0.99957811832428,0.0311658456921577,-0.0423571467399597,-0.998616397380829,0.039034653455019,-0.0577531233429909,-0.997567415237427,0.0311658456921577,-0.0423571467399597,-0.998616397380829,0.0201856940984726,-0.0208828989416361,-0.99957811832428,0.0143800638616085,-0.00953301321715117,-0.999851226806641,0.999953746795654,0.00944025907665491,-0.00182049116119742,0.999933421611786,-0.00437343399971724,0.0106807323172688,0.999929487705231,0.0113435322418809,-0.00354311265982687,0.999953746795654,0.00944025907665491,-0.00182049116119742,0.999929487705231,0.0113435322418809,-0.00354311265982687,0.999520063400269,0.0260125622153282,-0.0168213043361902,0.0211824607104063,-0.99969220161438,0.0129106612876058,0.0451336726546288,-0.998470902442932,-0.0319199897348881,0.0037158508785069,-0.998956620693207,0.0455183535814285,0.0451336726546288,-0.998470902442932,-0.0319199897348881,
- 0.0211824607104063,-0.99969220161438,0.0129106612876058,0.0647592172026634,-0.995529472827911,-0.0687559992074966,-0.998636960983276,-0.0442008078098297,0.027756379917264,-0.9983189702034,-0.0485681593418121,0.0316279493272305,-0.999882578849792,-0.0151834590360522,0.00204299646429718,-0.9983189702034,-0.0485681593418121,0.0316279493272305,-0.998636960983276,-0.0442008078098297,0.027756379917264,-0.99602222442627,-0.0720390230417252,0.0524410828948021,0.00587522983551025,0.999853610992432,0.0160695053637028,-0.00336027517914772,0.999994277954102,-0.000389711727621034,0.0147390998899937,0.999383509159088,0.0318645276129246,-0.00336027517914772,0.999994277954102,-0.000389711727621034,0.00587522983551025,0.999853610992432,0.0160695053637028,-0.00964259915053844,0.999886453151703,-0.0115870041772723,0.0314177721738815,-0.999263763427734,0.0220193807035685,0.0287848524749279,-0.99941611289978,0.0184088051319122,0.0237314980477095,-0.99965238571167,0.0114802271127701,0.0287848524749279,-0.99941611289978,0.0184088051319122,0.0314177721738815,-0.999263763427734,0.0220193807035685,0.0359277725219727,-0.998956322669983,0.0282050129026175,0.999917328357697,0.0120615232735872,0.00445402693003416,0.999743044376373,0.0222483407706022,-0.00433915480971336,0.999788224697113,0.0203970763832331,-0.00274095754139125,0.999788224697113,0.0203970763832331,-0.00274095754139125,0.999743044376373,0.0222483407706022,-0.00433915480971336,0.999432802200317,0.0313801914453506,-0.0122239869087934,-0.998737037181854,-0.0470001995563507,0.0177622400224209,-0.99926620721817,-0.0371954403817654,0.00914415717124939,-0.992604732513428,-0.101849742233753,0.0660479515790939,-0.99926620721817,-0.0371954403817654,0.00914415717124939,-0.998737037181854,-0.0470001995563507,0.0177622400224209,-0.999270379543304,0.0137982722371817,-0.0356131568551064,-0.0162735395133495,0.999721467494965,0.0170935019850731,-0.0171309541910887,0.999685823917389,0.0183022189885378,-0.0186309944838285,0.99961793422699,0.02041688375175,-0.0171309541910887,0.999685823917389,0.0183022189885378,
- -0.0162735395133495,0.999721467494965,0.0170935019850731,-0.0147307468578219,0.999780118465424,0.0149186328053474,0.0017423095414415,0.00271278200671077,0.99999475479126,0.00341273564845324,0.000139339288580231,0.999994158744812,0.00502950558438897,-0.00235149147920311,0.999984562397003,0.00502950558438897,-0.00235149147920311,0.999984562397003,0.00341273564845324,0.000139339288580231,0.999994158744812,0.00690732523798943,-0.00524455914273858,0.999962389469147,0.0011696049477905,-0.00226094271056354,-0.999996781349182,-0.00314302579499781,-0.00944985449314117,-0.999950289726257,0.00614823121577501,0.00603851536288857,-0.999962866306305,-0.00314302579499781,-0.00944985449314117,-0.999950289726257,0.0011696049477905,-0.00226094271056354,-0.999996781349182,-0.00867001432925463,-0.0186626017093658,-0.999788284301758,-0.0219060946255922,0.019555389881134,0.999568819999695,-0.00565308006480336,0.0502063818275929,0.998722791671753,-0.0412661582231522,-0.01705102622509,0.999002695083618,-0.0219060946255922,0.019555389881134,0.999568819999695,-0.0412661582231522,-0.01705102622509,0.999002695083618,-0.0592819824814796,-0.0512101612985134,0.99692690372467,-0.0253823921084404,0.029126675799489,-0.999253392219543,-0.0348130017518997,0.0444427579641342,-0.99840521812439,-0.0437330342829227,0.0589332357048988,-0.997303545475006,-0.0348130017518997,0.0444427579641342,-0.99840521812439,-0.0253823921084404,0.029126675799489,-0.999253392219543,-0.0185073744505644,0.0179635528475046,-0.999667346477509,-0.999418199062347,-0.0340877845883369,-0.0011958081740886,-0.999692320823669,-0.023465609177947,0.00804115273058414,-0.999339699745178,-0.0362100042402744,-0.00304194306954741,-0.999418199062347,-0.0340877845883369,-0.0011958081740886,-0.999339699745178,-0.0362100042402744,-0.00304194306954741,-0.998799681663513,-0.0473071560263634,-0.0126991542056203,-0.0486581958830357,0.998779237270355,0.00850735139101744,-0.0682306215167046,0.997416079044342,-0.0224896129220724,-0.0265361294150352,0.998705089092255,0.0434043072164059,-0.0682306215167046,0.997416079044342,-0.0224896129220724,
- -0.0486581958830357,0.998779237270355,0.00850735139101744,-0.0926995128393173,0.993798911571503,-0.0614044703543186,0.998397648334503,0.0462949611246586,0.0325415655970573,0.997962355613709,0.0517400205135345,0.0373376309871674,0.999801158905029,0.0183110162615776,0.0078998701646924,0.997962355613709,0.0517400205135345,0.0373376309871674,0.998397648334503,0.0462949611246586,0.0325415655970573,0.995430052280426,0.0755914077162743,0.058351319283247,0.0120079834014177,-0.999897301197052,0.00782413315027952,0.0220318902283907,-0.999731600284576,-0.00715953204780817,-0.0028756691608578,-0.999544084072113,0.0300566721707582,0.0220318902283907,-0.999731600284576,-0.00715953204780817,0.0120079834014177,-0.999897301197052,0.00782413315027952,0.0329792164266109,-0.999179005622864,-0.0235330983996391,-0.0231498759239912,0.999730110168457,0.00199403846636415,-0.0244606733322144,0.999700307846069,-0.000907039968296885,-0.0271009504795074,0.999609887599945,-0.00675217201933265,-0.0244606733322144,0.999700307846069,-0.000907039968296885,-0.0286005884408951,0.999540150165558,-0.0100731020793319,-0.0271009504795074,0.999609887599945,-0.00675217201933265,0.0342776477336884,-0.00439239805564284,0.999402642250061,0.0377746857702732,0.00465620122849941,0.999275386333466,0.027424355968833,-0.0220999680459499,0.999379515647888,0.027424355968833,-0.0220999680459499,0.999379515647888,0.0239217933267355,-0.0311369858682156,0.999228835105896,0.0342776477336884,-0.00439239805564284,0.999402642250061,-0.999662220478058,-0.0259394757449627,0.0015869369963184,-0.999663531780243,-0.0258870124816895,0.00163863529451191,-0.999680459499359,-0.0251686163246632,0.00234657316468656,-0.999663531780243,-0.0258870124816895,0.00163863529451191,-0.999662220478058,-0.0259394757449627,0.0015869369963184,-0.999645054340363,-0.026623398065567,0.000912944204173982,0.999277412891388,0.0357585102319717,-0.0128791304305196,0.999353766441345,0.0342160053551197,-0.01101204007864,0.998708784580231,0.0448401048779488,-0.0238753836601973,0.999353766441345,0.0342160053551197,-0.01101204007864,
- 0.999277412891388,0.0357585102319717,-0.0128791304305196,0.999742567539215,0.0224635191261768,0.00320766214281321,-0.0057839173823595,0.0139776337891817,-0.999885499477386,-0.00268466142006218,0.022220691666007,-0.999749422073364,-0.00728629622608423,0.00998095236718655,-0.999923646450043,-0.00268466142006218,0.022220691666007,-0.999749422073364,-0.0057839173823595,0.0139776337891817,-0.999885499477386,-0.0012403727741912,0.0260612703859806,-0.999659478664398,-0.0213950183242559,-0.00459898496046662,-0.999760508537292,-0.00366152846254408,-0.0327392518520355,-0.999457180500031,-0.0392585210502148,0.0237908009439707,-0.998945772647858,-0.0213950183242559,-0.00459898496046662,-0.999760508537292,-0.0392585210502148,0.0237908009439707,-0.998945772647858,-0.0595611594617367,0.0561099797487259,-0.996646463871002,-0.0240768641233444,-0.0443947054445744,0.998723864555359,-0.0310766100883484,-0.05579549446702,0.997958481311798,-0.0390845946967602,-0.0688372999429703,0.996862053871155,-0.0310766100883484,-0.05579549446702,0.997958481311798,-0.0240768641233444,-0.0443947054445744,0.998723864555359,-0.0179726351052523,-0.0344517230987549,0.999244689941406,-0.999994099140167,-0.00305636832490563,0.00156015297397971,-0.999883532524109,-0.0130801042541862,-0.00785756949335337,-0.99999463558197,-0.00189071043860167,0.0026552826166153,-0.999994099140167,-0.00305636832490563,0.00156015297397971,-0.99999463558197,-0.00189071043860167,0.0026552826166153,-0.999886453151703,0.00851679407060146,0.0124325826764107,-0.0317871980369091,-0.999456524848938,0.00873564835637808,-0.011409561149776,-0.999675929546356,-0.022756427526474,-0.0588238388299942,-0.996984839439392,0.050606794655323,-0.011409561149776,-0.999675929546356,-0.022756427526474,-0.0317871980369091,-0.999456524848938,0.00873564835637808,0.012524476274848,-0.998139441013336,-0.0596721656620502,0.998682260513306,-0.050836618989706,0.0070218495093286,0.999379873275757,-0.00182003865484148,-0.0351642370223999,0.999510169029236,-0.00733463792130351,-0.030425775796175,0.996797621250153,0.0387388654053211,-0.0699551105499268,
- 0.999510169029236,-0.00733463792130351,-0.030425775796175,0.999379873275757,-0.00182003865484148,-0.0351642370223999,-0.0172007903456688,0.999640822410584,0.0205530431121588,-0.0277675241231918,0.999601125717163,0.00516959745436907,-0.00489669851958752,0.999248683452606,0.0384457893669605,-0.0277675241231918,0.999601125717163,0.00516959745436907,-0.0172007903456688,0.999640822410584,0.0205530431121588,-0.0445854477584362,0.998818159103394,-0.0193473715335131,0.00241968175396323,-0.998774349689484,-0.0494358688592911,-5.97853613726329e-005,-0.998603582382202,-0.0528290532529354,-0.00431000348180532,-0.99826967716217,-0.058643352240324,-5.97853613726329e-005,-0.998603582382202,-0.0528290532529354,0.00241968175396323,-0.998774349689484,-0.0494358688592911,0.00717326859012246,-0.999052345752716,-0.0429279170930386,-0.999927997589111,-0.0117716137319803,0.00231684045866132,-0.999945104122162,-0.00955393444746733,0.00430597830563784,-0.999920785427094,-0.000322274339850992,0.0125850448384881,-0.999782681465149,-0.0201780386269093,-0.00522430194541812,-0.999945104122162,-0.00955393444746733,0.00430597830563784,-0.999927997589111,-0.0117716137319803,0.00231684045866132,0.999671041965485,-0.0168291702866554,-0.0193565487861633,0.999947130680084,-0.00528482347726822,-0.00882857851684093,0.995165705680847,-0.0705436766147614,-0.0683290511369705,0.999671041965485,-0.0168291702866554,-0.0193565487861633,0.998340666294098,0.0444828495383263,0.0365686938166618,0.999947130680084,-0.00528482347726822,-0.00882857851684093,-0.0139186922460794,0.999808192253113,0.0137790404260159,-0.0147543987259269,0.999779224395752,0.0149554368108511,-0.016255671158433,0.999722123146057,0.0170687604695559,-0.0147543987259269,0.999779224395752,0.0149554368108511,-0.0139186922460794,0.999808192253113,0.0137790404260159,-0.0124568780884147,0.999853670597076,0.0117213167250156,-0.00183240708429366,0.0334910340607166,-0.99943733215332,-0.00330944079905748,0.030991455540061,-0.999514162540436,-0.00483766756951809,0.0284049119800329,-0.99958473443985,-0.00330944079905748,0.030991455540061,-0.999514162540436,
- -0.00650324858725071,0.0255855228751898,-0.999651551246643,-0.00483766756951809,0.0284049119800329,-0.99958473443985,-0.00115758820902556,-0.0333301387727261,0.999443709850311,0.00364284683018923,-0.0409764759242535,0.999153435230255,-0.00632876018062234,-0.0250900685787201,0.999665141105652,0.00364284683018923,-0.0409764759242535,0.999153435230255,-0.00115758820902556,-0.0333301387727261,0.999443709850311,0.00937856175005436,-0.0501087941229343,0.998699724674225,-0.00585620291531086,0.999973595142365,-0.00429853284731507,-0.00218529580160975,0.99999612569809,0.00170866900589317,0.00166581245139241,0.999966502189636,0.00801047775894403,0.00166581245139241,0.999966502189636,0.00801047775894403,-0.00218529580160975,0.99999612569809,0.00170866900589317,0.00579819502308965,0.999874114990234,0.0147722344845533,-0.0505957454442978,-0.0024631863925606,-0.998716115951538,-0.0553835518658161,-0.0121367238461971,-0.998391449451447,-0.0534189641475677,-0.00816596206277609,-0.998538792133331,-0.0505957454442978,-0.0024631863925606,-0.998716115951538,-0.0534189641475677,-0.00816596206277609,-0.998538792133331,-0.0487542152404785,0.00125445087905973,-0.998810052871704,-0.0145962284877896,-0.999001204967499,0.0422293804585934,-0.0154921151697636,-0.999051570892334,0.040692787617445,-0.0134913893416524,-0.998934924602509,0.0441240705549717,-0.0145962284877896,-0.999001204967499,0.0422293804585934,-0.0134913893416524,-0.998934924602509,0.0441240705549717,-0.0122242188081145,-0.998852968215942,0.0462967604398727,0.999919712543488,-0.00779868988320231,-0.00999261252582073,0.999915421009064,-0.0103046419098973,-0.00793205667287111,0.999847114086151,-0.0173512771725655,-0.00213693198747933,0.999915421009064,-0.0103046419098973,-0.00793205667287111,0.999919712543488,-0.00779868988320231,-0.00999261252582073,0.999871969223022,-0.000500541995279491,-0.0159926377236843,-0.999854981899261,0.011059008538723,0.0129522308707237,-0.999895632266998,0.00907377526164055,0.0112433470785618,-0.999994039535522,4.15088652516715e-005,0.00346810161136091,
- -0.999895632266998,0.00907377526164055,0.0112433470785618,-0.999854981899261,0.011059008538723,0.0129522308707237,-0.999581515789032,0.0201372839510441,0.0207664854824543,-0.035366602241993,-0.0629014819860458,0.997392892837524,-0.00324649503454566,0.00634518451988697,0.999974608421326,-0.0230892356485128,-0.0364239178597927,0.999069631099701,0.00829616468399763,0.0312106274068356,0.999478399753571,-0.0230892356485128,-0.0364239178597927,0.999069631099701,-0.00324649503454566,0.00634518451988697,0.999974608421326,-1.52118464029627e-005,0.999756872653961,0.0220512710511684,0.00262664677575231,0.999826669692993,0.018431780859828,0.00769556732848287,0.99990439414978,0.0114858439192176,0.00262664677575231,0.999826669692993,0.018431780859828,-1.52118464029627e-005,0.999756872653961,0.0220512710511684,-0.00454215100035071,0.999590456485748,0.0282523930072784,-0.999801278114319,0.0194219276309013,0.00449119275435805,-0.999948561191559,0.00914827268570662,-0.00437798444181681,-0.999935448169708,0.0110158426687121,-0.00276589277200401,-0.999935448169708,0.0110158426687121,-0.00276589277200401,-0.999948561191559,0.00914827268570662,-0.00437798444181681,-0.999924063682556,-6.66384366923012e-005,-0.0123312333598733,0.999719738960266,0.0156034985557199,0.0178062003105879,0.999941229820251,0.00577728077769279,0.0091796088963747,0.995302796363831,0.0706854537129402,0.0661504939198494,0.999941229820251,0.00577728077769279,0.0091796088963747,0.999719738960266,0.0156034985557199,0.0178062003105879,0.998339772224426,-0.0452538132667542,-0.0356327220797539,-0.015140550211072,-0.999739289283752,0.017098993062973,-0.0142806796357036,-0.999730348587036,0.0183096118271351,-0.0127760367467999,-0.999709665775299,0.0204278044402599,-0.0142806796357036,-0.999730348587036,0.0183096118271351,-0.015140550211072,-0.999739289283752,0.017098993062973,-0.016687473282218,-0.999749422073364,0.014920849353075,-0.00181912654079497,-0.00265857647173107,0.999994874000549,-0.00340505829080939,-3.88908447348513e-005,0.999994218349457,-0.00493998732417822,0.00249659805558622,0.999984622001648,
- -0.00340505829080939,-3.88908447348513e-005,0.999994218349457,-0.0067226467654109,0.00544136390089989,0.999962627887726,-0.00493998732417822,0.00249659805558622,0.999984622001648,-0.00109688425436616,0.00226582959294319,-0.999996840953827,0.0034576109610498,0.00934336241334677,-0.999950408935547,-0.00635509891435504,-0.00590560911223292,-0.999962449073792,0.0034576109610498,0.00934336241334677,-0.999950408935547,-0.00109688425436616,0.00226582959294319,-0.999996840953827,0.00929522141814232,0.0184144023805857,-0.999787211418152,0.020187770947814,-0.0204898603260517,0.999586224555969,0.0406656935811043,0.0145980156958103,0.999066114425659,0.0600365735590458,0.0478731170296669,0.997047603130341,0.020187770947814,-0.0204898603260517,0.999586224555969,0.00325839896686375,-0.0494289845228195,0.998772382736206,0.0406656935811043,0.0145980156958103,0.999066114425659,0.0229441151022911,-0.030818086117506,-0.999261558055878,0.0309993717819452,-0.0449468716979027,-0.998508274555206,0.0387563854455948,-0.0585549138486385,-0.997531533241272,0.0309993717819452,-0.0449468716979027,-0.998508274555206,0.0229441151022911,-0.030818086117506,-0.999261558055878,0.0171088296920061,-0.0205846484750509,-0.999641716480255,0.999992787837982,-0.0035177068784833,-0.00142084655817598,0.999858558177948,-0.0145643688738346,0.00841730181127787,0.999994039535522,-0.00174887629691511,-0.00299607496708632,0.999992787837982,-0.0035177068784833,-0.00142084655817598,0.999994039535522,-0.00174887629691511,-0.00299607496708632,0.99986344575882,0.00981373433023691,-0.0132924932986498,0.0100064184516668,-0.999908685684204,0.00908930692821741,0.0307735670357943,-0.999229550361633,-0.02435596100986,-0.0115828411653638,-0.998972475528717,0.0438171960413456,0.0307735670357943,-0.999229550361633,-0.02435596100986,0.0100064184516668,-0.999908685684204,0.00908930692821741,0.0553550571203232,-0.996413767337799,-0.0639948770403862,-0.996341526508331,0.0412508733570576,0.0748460218310356,-0.999479532241821,-0.0106116980314255,0.0304620377719402,-0.999296367168427,-0.00249169324524701,0.0374233350157738,
- -0.998289167881012,-0.0576202347874641,-0.00992759689688683,-0.999296367168427,-0.00249169324524701,0.0374233350157738,-0.999479532241821,-0.0106116980314255,0.0304620377719402,0.0255014002323151,0.999632179737091,0.00923335365951061,0.0150625836104155,0.99986469745636,-0.00661299237981439,0.0402431413531303,0.998689115047455,0.0316297486424446,0.0150625836104155,0.99986469745636,-0.00661299237981439,0.0255014002323151,0.999632179737091,0.00923335365951061,0.00446533178910613,0.999732673168182,-0.0226890034973621,0.00216288305819035,0.999992370605469,0.00323144625872374,0.000566339702345431,0.99999988079071,-2.2574320610147e-005,-0.00216284766793251,0.999982118606567,-0.00558507489040494,0.000566339702345431,0.99999988079071,-2.2574320610147e-005,-0.00397176621481776,0.999949038028717,-0.0092719029635191,-0.00216284766793251,0.999982118606567,-0.00558507489040494,0.0407507009804249,-0.00312971230596304,0.999164402484894,0.0431581474840641,-0.00905341934412718,0.999027192592621,0.0396788492798805,-0.000493617029860616,0.999212384223938,0.0431581474840641,-0.00905341934412718,0.999027192592621,0.0407507009804249,-0.00312971230596304,0.999164402484894,0.0443160273134708,-0.0119038866832852,0.998946607112885,0.00978786870837212,-0.999156534671783,-0.0398789197206497,0.00952298194169998,-0.999136924743652,-0.0404325649142265,0.00933229643851519,-0.999122440814972,-0.0408311001956463,0.00978786870837212,-0.999156534671783,-0.0398789197206497,0.00992638245224953,-0.99916672706604,-0.039589386433363,0.00952298194169998,-0.999136924743652,-0.0404325649142265,-0.999801158905029,-0.0166186634451151,0.0110213812440634,-0.99981677532196,-0.0128923719748855,0.0141501976177096,-0.999703288078308,-0.000744018994737417,0.0243465732783079,-0.99981677532196,-0.0128923719748855,0.0141501976177096,-0.999801158905029,-0.0166186634451151,0.0110213812440634,-0.999597907066345,-0.0283286981284618,0.00118508620653301,0.999883472919464,0.00829155463725328,-0.0128102069720626,0.999849915504456,0.0099081126973033,-0.0142079871147871,0.999601185321808,0.0183266568928957,-0.021486783400178,
- 0.999849915504456,0.0099081126973033,-0.0142079871147871,0.999883472919464,0.00829155463725328,-0.0128102069720626,0.999983727931976,6.8844688939862e-005,-0.00569992512464523,-0.00215277401730418,-0.0202424209564924,-0.999792814254761,0.0112843886017799,0.0157985687255859,-0.99981153011322,-0.00816843193024397,-0.0363706089556217,-0.999304950237274,0.0112843886017799,0.0157985687255859,-0.99981153011322,-0.00215277401730418,-0.0202424209564924,-0.999792814254761,0.0167565308511257,0.0304820220917463,-0.99939489364624,-0.0327576324343681,-0.999455273151398,0.00400747638195753,-0.0316055603325367,-0.999499917030334,0.000950706365983933,-0.0289117675274611,-0.999562740325928,-0.0061932485550642,-0.0316055603325367,-0.999499917030334,0.000950706365983933,-0.0275937970727682,-0.999572277069092,-0.00968676153570414,-0.0289117675274611,-0.999562740325928,-0.0061932485550642,0.998651146888733,-0.0359509363770485,-0.0374629348516464,0.998650848865509,-0.0356017984449863,-0.0378030128777027,0.998627960681915,-0.0313386023044586,-0.0419540479779243,0.998650848865509,-0.0356017984449863,-0.0378030128777027,0.998651146888733,-0.0359509363770485,-0.0374629348516464,0.998636484146118,-0.0401065610349178,-0.0334139503538609,-0.999636948108673,0.0186891984194517,0.0194109659641981,-0.999566256999969,0.0202870927751064,0.0213455185294151,-0.999903082847595,0.0103533249348402,0.00931913964450359,-0.999566256999969,0.0202870927751064,0.0213455185294151,-0.999636948108673,0.0186891984194517,0.0194109659641981,-0.998910665512085,0.0312674269080162,0.0346398428082466,-0.0280455369502306,-0.0137488562613726,-0.999512076377869,-0.0313469730317593,-0.021827595308423,-0.99927020072937,-0.0266596153378487,-0.0103587005287409,-0.999590873718262,-0.0313469730317593,-0.021827595308423,-0.99927020072937,-0.0280455369502306,-0.0137488562613726,-0.999512076377869,-0.0326835699379444,-0.0250994935631752,-0.999150574207306,-0.00382908643223345,-0.999966382980347,-0.00725191179662943,-0.00444027502089739,-0.999955892562866,-0.0082738883793354,-0.00326329679228365,-0.999974727630615,-0.00630584638565779,
- -0.00382908643223345,-0.999966382980347,-0.00725191179662943,-0.00326329679228365,-0.999974727630615,-0.00630584638565779,-0.0026468310970813,-0.999982595443726,-0.00527504412457347,-0.999999165534973,-0.00105469615664333,0.000729603751096874,-0.999999344348907,-0.000867430935613811,0.000889226968865842,-0.99999862909317,7.73057672631694e-006,0.00163520558271557,-0.999999344348907,-0.000867430935613811,0.000889226968865842,-0.999999165534973,-0.00105469615664333,0.000729603751096874,-0.999998211860657,-0.00187925959471613,2.67517789325211e-005,0.999860644340515,-0.0151915522292256,-0.00692349206656218,0.999648928642273,-0.0263875406235456,0.00241663493216038,0.999710500240326,-0.0240550637245178,0.000470447936095297,0.999710500240326,-0.0240550637245178,0.000470447936095297,0.999648928642273,-0.0263875406235456,0.00241663493216038,0.999326527118683,-0.0353369116783142,0.00988554395735264,0.0150889651849866,0.999819457530975,-0.0115492725744843,0.0158512145280838,0.999792098999023,-0.0128238471224904,0.0166879612952471,0.999759614467621,-0.0142230270430446,0.0158512145280838,0.999792098999023,-0.0128238471224904,0.0150889651849866,0.999819457530975,-0.0115492725744843,0.0142722716554999,0.999846339225769,-0.0101836938410997,-0.00165333540644497,-0.0095534659922123,-0.999952971935272,-0.00103385699912906,-0.008340067230165,-0.999964714050293,-0.000162854223162867,-0.00663397461175919,-0.999977946281433,-0.00103385699912906,-0.008340067230165,-0.999964714050293,0.00045453873462975,-0.00542463082820177,-0.999985158443451,-0.000162854223162867,-0.00663397461175919,-0.999977946281433,-0.00181405188050121,-0.00688471691682935,0.999974608421326,-0.00153775908984244,-0.0074401032179594,0.999971091747284,-0.00115479866508394,-0.00820989906787872,0.999965608119965,-0.00115479866508394,-0.00820989906787872,0.999965608119965,-0.00153775908984244,-0.0074401032179594,0.999971091747284,-0.000857051345519722,-0.00880840141326189,0.999960839748383,-0.0205315127968788,-0.00351502164267004,0.999782979488373,0.000979268806986511,0.040570106357336,0.999176204204559,
- -0.0565923564136028,-0.077629067003727,0.995374858379364,-0.0205315127968788,-0.00351502164267004,0.999782979488373,-0.0565923564136028,-0.077629067003727,0.995374858379364,-0.0795152261853218,-0.124879918992519,0.98898047208786,-0.0266695842146873,0.0703111290931702,-0.997168600559235,-0.0453861951828003,0.107393093407154,-0.993180155754089,-0.0591063089668751,0.134556427598,-0.989141583442688,-0.0266695842146873,0.0703111290931702,-0.997168600559235,-0.0175006985664368,0.0521343536674976,-0.998486697673798,-0.0453861951828003,0.107393093407154,-0.993180155754089,-0.999986171722412,0.00524274352937937,0.000307564478134736,-0.999817848205566,0.0162613298743963,0.00999156013131142,-0.999992609024048,0.000537548854481429,-0.00382744730450213,-0.999986171722412,0.00524274352937937,0.000307564478134736,-0.999992609024048,0.000537548854481429,-0.00382744730450213,-0.999838173389435,-0.0111644510179758,-0.0141106462106109,0.999120891094208,-0.0224289540201426,0.035415705293417,0.99879378080368,-0.00819577090442181,0.0484127029776573,0.99862003326416,-0.00385230826213956,0.0523747876286507,0.99862003326416,-0.00385230826213956,0.0523747876286507,0.99879378080368,-0.00819577090442181,0.0484127029776573,0.998140871524811,0.00530010601505637,0.0607172511518002,-0.0164020974189043,-0.998263776302338,-0.0565719157457352,-0.0101831573992968,-0.997777342796326,-0.065854050219059,-0.0255674105137587,-0.998753368854523,-0.0428736656904221,-0.0101831573992968,-0.997777342796326,-0.065854050219059,-0.0164020974189043,-0.998263776302338,-0.0565719157457352,-0.0038822281640023,-0.997157275676727,-0.0752482190728188,0.0168000571429729,0.99984884262085,0.00447983806952834,0.0144273554906249,0.999895751476288,-0.000651630514767021,0.0106646465137601,0.999904632568359,-0.00878718495368958,0.0144273554906249,0.999895751476288,-0.000651630514767021,0.00796130858361721,0.999861240386963,-0.0146306389942765,0.0106646465137601,0.999904632568359,-0.00878718495368958,0.00365469604730606,0.00333931855857372,0.999987721443176,0.00518549885600805,-0.000276847364148125,0.999986588954926,
- 0.00818481389433146,-0.0073625692166388,0.999939382076263,0.00818481389433146,-0.0073625692166388,0.999939382076263,0.00518549885600805,-0.000276847364148125,0.999986588954926,0.0098276874050498,-0.0112440744414926,0.99988842010498,0.00172686681617051,-0.999104678630829,-0.0422710403800011,0.000353651907062158,-0.998971223831177,-0.0453471057116985,-0.000721180404070765,-0.99885880947113,-0.0477544069290161,0.00172686681617051,-0.999104678630829,-0.0422710403800011,0.00248124846257269,-0.999173164367676,-0.0405809693038464,0.000353651907062158,-0.998971223831177,-0.0453471057116985,-0.999582350254059,-0.00128478102851659,-0.0288683716207743,-0.999646544456482,0.0013958637136966,-0.0265498608350754,-0.999776601791382,0.0118614537641406,-0.017494760453701,-0.999646544456482,0.0013958637136966,-0.0265498608350754,-0.999582350254059,-0.00128478102851659,-0.0288683716207743,-0.99922502040863,-0.0114519651979208,-0.0376588702201843,0.999714255332947,-0.00595310749486089,0.0231521483510733,0.999737560749054,-0.00505895307287574,0.0223415419459343,0.999865770339966,0.00159843766596168,0.0163053926080465,0.999737560749054,-0.00505895307287574,0.0223415419459343,0.999714255332947,-0.00595310749486089,0.0231521483510733,0.999498963356018,-0.0124936169013381,0.0290807355195284,0.039146862924099,0.00971648562699556,-0.999186217784882,0.0554427802562714,-0.0315390154719353,-0.997963607311249,0.0635145530104637,-0.0520537793636322,-0.996622502803802,0.0554427802562714,-0.0315390154719353,-0.997963607311249,0.039146862924099,0.00971648562699556,-0.999186217784882,0.0315844342112541,0.0287894364446402,-0.999086380004883,-0.00388398580253124,0.999982178211212,-0.004550417419523,-0.00159878062549978,0.99999862909317,0.000330530252540484,0.00268735457211733,0.999951422214508,0.00948495510965586,0.00268735457211733,0.999951422214508,0.00948495510965586,-0.00159878062549978,0.99999862909317,0.000330530252540484,0.00530135724693537,0.999872446060181,0.0150678148493171,-0.0396597385406494,0.00401143822818995,-0.999205231666565,-0.0457575805485249,-0.00941570289433002,-0.998908162117004,
- -0.0435057654976845,-0.00445502530783415,-0.999043226242065,-0.0396597385406494,0.00401143822818995,-0.999205231666565,-0.0435057654976845,-0.00445502530783415,-0.999043226242065,-0.0375325903296471,0.00869064126163721,-0.999257564544678,0.999848425388336,-0.0113476663827896,-0.0132061755284667,0.999849021434784,-0.012234709225595,-0.0123456874862313,0.999736845493317,-0.0228497330099344,-0.00204552989453077,0.999849021434784,-0.012234709225595,-0.0123456874862313,0.999848425388336,-0.0113476663827896,-0.0132061755284667,0.999720573425293,-0.000599311606492847,-0.0236298609524965,-0.999845743179321,0.0111822178587317,0.0135449878871441,-0.999797463417053,0.0128123592585325,0.0155195742845535,-1,0,0,-0.999797463417053,0.0128123592585325,0.0155195742845535,-0.999845743179321,0.0111822178587317,0.0135449878871441,-0.999434113502502,0.0214142873883247,0.0259390659630299,0.000343408348271623,0.0146680427715182,0.99989241361618,0.00388035830110312,0.0229151509702206,0.999729871749878,0.00168271409347653,0.0177910346537828,0.999840378761292,0.00493261031806469,0.025368470698595,0.999665975570679,0.00168271409347653,0.0177910346537828,0.999840378761292,0.00388035830110312,0.0229151509702206,0.999729871749878,0.0038617798127234,-0.999963700771332,0.00759347202256322,0.00315380771644413,-0.999974250793457,0.00644294125959277,0.00231932755559683,-0.999984383583069,0.00508681824430823,0.0038617798127234,-0.999963700771332,0.00759347202256322,0.00469076307490468,-0.999948978424072,0.00894065573811531,0.00315380771644413,-0.999974250793457,0.00644294125959277,0.999999403953552,-0.000745530938729644,-0.000764512049499899,0.999999344348907,-0.000906866625882685,-0.000627172063104808,0.999998688697815,-0.00161660055164248,-2.2997139240033e-005,0.999999344348907,-0.000906866625882685,-0.000627172063104808,0.999999403953552,-0.000745530938729644,-0.000764512049499899,0.999998927116394,7.34451032258221e-006,-0.00140541058499366,-0.999729335308075,-0.0231125820428133,-0.0026627026963979,-0.999481797218323,-0.0307844467461109,-0.00940706487745047,
- -0.999762952327728,-0.0217209104448557,-0.00143947557080537,-0.999729335308075,-0.0231125820428133,-0.0026627026963979,-0.999762952327728,-0.0217209104448557,-0.00143947557080537,-0.999886155128479,-0.0141679402440786,0.00519823841750622,0.0110706491395831,0.999839007854462,0.01412492711097,0.0111221466213465,0.999839603900909,0.0140412114560604,0.0111819924786687,0.999840259552002,0.0139439245685935,0.0111221466213465,0.999839603900909,0.0140412114560604,0.0110706491395831,0.999839007854462,0.01412492711097,0.011009281501174,0.99983823299408,0.0142246875911951,0.000234345003264025,-0.00657325377687812,0.999978363513947,0.000931799644604325,-0.00790120102465153,0.999968349933624,-0.00034737034002319,-0.00546566443517804,0.999984979629517,0.00145990494638681,-0.00890669785439968,0.999959290027618,0.000931799644604325,-0.00790120102465153,0.999968349933624,0.000234345003264025,-0.00657325377687812,0.999978363513947,0.00118821067735553,-0.00840199645608664,-0.999963998794556,0.00166879245080054,-0.00751318223774433,-0.999970376491547,0.00078580278204754,-0.00914622657001019,-0.999957799911499,0.00208764057606459,-0.00673853000625968,-0.999975085258484,0.00166879245080054,-0.00751318223774433,-0.999970376491547,0.00118821067735553,-0.00840199645608664,-0.999963998794556,-0.00299048237502575,-0.999960064888,-0.00842300895601511,-0.00209937198087573,-0.999971210956573,-0.00729965977370739,0.000228076140047051,-0.999990403652191,-0.00436559272930026,-0.00209937198087573,-0.999971210956573,-0.00729965977370739,-0.00299048237502575,-0.999960064888,-0.00842300895601511,-0.00550863100215793,-0.999917566776276,-0.0115973791107535,-0.999973177909851,-0.00707461452111602,0.0019120816141367,-0.999976515769959,-0.00635857507586479,0.00257257604971528,-0.9999640583992,4.32279084634501e-005,0.00847742427140474,-0.999976515769959,-0.00635857507586479,0.00257257604971528,-0.999973177909851,-0.00707461452111602,0.0019120816141367,-0.999910831451416,-0.012893627397716,-0.00345583888702095,0.999674141407013,-0.025368582457304,-0.00281907268799841,
- 0.999764502048492,-0.0216931812465191,0.000564856280107051,0.99583226442337,-0.0763816088438034,-0.0498396642506123,0.999674141407013,-0.025368582457304,-0.00281907268799841,0.998563289642334,0.0276195760816336,0.0459173358976841,0.999764502048492,-0.0216931812465191,0.000564856280107051,-0.0151656558737159,0.999694287776947,-0.0195276234298944,-0.0160173010081053,0.999701738357544,-0.0184329524636269,-0.0182407815009356,0.999712288379669,-0.0155746256932616,-0.0160173010081053,0.999701738357544,-0.0184329524636269,-0.0151656558737159,0.999694287776947,-0.0195276234298944,-0.0130006158724427,0.999666571617126,-0.0223101433366537,-0.00389833492226899,-0.0170872677117586,-0.999846458435059,-0.000727637205272913,-0.0127507960423827,-0.999918460845947,0.00111915206070989,-0.0102248415350914,-0.999947071075439,-0.000727637205272913,-0.0127507960423827,-0.999918460845947,0.00484691793099046,-0.00512582017108798,-0.999975085258484,0.00111915206070989,-0.0102248415350914,-0.999947071075439,0.0200856942683458,0.0213631372898817,0.999570071697235,0.00129831663798541,-0.00486122351139784,0.999987304210663,0.00738632818683982,0.0036359669174999,0.999966144561768,-0.0117239449173212,-0.0230342708528042,0.999665975570679,0.00738632818683982,0.0036359669174999,0.999966144561768,0.00129831663798541,-0.00486122351139784,0.999987304210663,-3.67838879355986e-006,0.999756217002869,0.0220812149345875,0.00264240917749703,0.999826192855835,0.0184560529887676,0.00771929509937763,0.999904096126556,0.011499441228807,0.00264240917749703,0.999826192855835,0.0184560529887676,-3.67838879355986e-006,0.999756217002869,0.0220812149345875,-0.00453768763691187,0.999589443206787,0.0282918028533459,-0.999799907207489,0.0194885116070509,0.00452333595603704,-0.99994832277298,0.00918043591082096,-0.0043756659142673,-0.999935030937195,0.0110542783513665,-0.00275813834741712,-0.999935030937195,0.0110542783513665,-0.00275813834741712,-0.99994832277298,0.00918043591082096,-0.0043756659142673,-0.999923706054688,-6.72798632876948e-005,-0.0123573150485754,0.999720275402069,0.0155902802944183,0.0177849549800158,
- 0.999941408634186,0.00576573284342885,0.00915928464382887,0.995306432247162,0.0706606358289719,0.0661221221089363,0.999941408634186,0.00576573284342885,0.00915928464382887,0.999720275402069,0.0155902802944183,0.0177849549800158,0.998339831829071,-0.0452469065785408,-0.0356395952403545,-0.0151454601436853,-0.999738872051239,0.0171103123575449,-0.0142838936299086,-0.999730050563812,0.0183231327682734,-0.0127760516479611,-0.999709248542786,0.0204455107450485,-0.0142838936299086,-0.999730050563812,0.0183231327682734,-0.0151454601436853,-0.999738872051239,0.0171103123575449,-0.0166955385357141,-0.999749183654785,0.0149280671030283,-0.00181493512354791,-0.00269897351972759,0.999994695186615,-0.00340551231056452,-7.14083216735162e-005,0.999994218349457,-0.00494490703567863,0.00247165793552995,0.999984681606293,-0.00340551231056452,-7.14083216735162e-005,0.999994218349457,-0.0067325746640563,0.00542492978274822,0.999962627887726,-0.00494490703567863,0.00247165793552995,0.999984681606293,-0.00110760645475239,0.00234844814985991,-0.999996602535248,0.00345901702530682,0.00944434106349945,-0.99994945526123,-0.00638060737401247,-0.00584541726857424,-0.999962568283081,0.00345901702530682,0.00944434106349945,-0.99994945526123,-0.00110760645475239,0.00234844814985991,-0.999996602535248,0.00931250583380461,0.0185394193977118,-0.999784827232361,0.0201479289680719,-0.0206128321588039,0.999584496021271,0.0406045019626617,0.0144421141594648,0.999071002006531,0.0599504299461842,0.04767781868577,0.997062027454376,0.0201479289680719,-0.0206128321588039,0.999584496021271,0.00324366358108819,-0.0495120547711849,0.998768270015717,0.0406045019626617,0.0144421141594648,0.999071002006531,0.0229398142546415,-0.0305378809571266,-0.999270379543304,0.031055923551321,-0.0447809621691704,-0.998513996601105,0.0388651080429554,-0.0584879033267498,-0.997531294822693,0.031055923551321,-0.0447809621691704,-0.998513996601105,0.0229398142546415,-0.0305378809571266,-0.999270379543304,0.0170601718127728,-0.0202212370932102,-0.999650001525879,0.999992728233337,-0.00352890742942691,-0.0014365108218044,
- 0.999859094619751,-0.014544271863997,0.00837219506502151,0.999993979930878,-0.0017647510394454,-0.00300732371397316,0.999992728233337,-0.00352890742942691,-0.0014365108218044,0.999993979930878,-0.0017647510394454,-0.00300732371397316,0.999864220619202,0.00976125989109278,-0.0132695026695728,0.00990740302950144,-0.999911248683929,0.00889954622834921,0.0305883754044771,-0.999234080314636,-0.0244026090949774,-0.0115873580798507,-0.998987376689911,0.0434716902673244,0.0305883754044771,-0.999234080314636,-0.0244026090949774,0.00990740302950144,-0.999911248683929,0.00889954622834921,0.0550772063434124,-0.99643611907959,-0.0638860762119293,-0.99633127450943,0.0414806120097637,0.0748551860451698,-0.999483048915863,-0.0104411002248526,0.030408963561058,-0.99929803609848,-0.00229773949831724,0.0373920612037182,-0.998296320438385,-0.0574824549257755,-0.0100187864154577,-0.99929803609848,-0.00229773949831724,0.0373920612037182,-0.999483048915863,-0.0104411002248526,0.030408963561058,0.0255005229264498,0.999631702899933,0.00928701180964708,0.015105583705008,0.999864757061005,-0.00649471906945109,0.0401788763701916,0.998692989349365,0.0315898135304451,0.015105583705008,0.999864757061005,-0.00649471906945109,0.0255005229264498,0.999631702899933,0.00928701180964708,0.00455006631091237,0.999736309051514,-0.0225094966590405,0.00259522255510092,-0.999828100204468,-0.0183557141572237,-3.842687146971e-005,-0.999758780002594,-0.02196398191154,-0.00455212034285069,-0.999593436717987,-0.028147004544735,-3.842687146971e-005,-0.999758780002594,-0.02196398191154,0.00259522255510092,-0.999828100204468,-0.0183557141572237,0.00764707429334521,-0.999905407428741,-0.0114331375807524,-0.999935507774353,-0.0110212471336126,0.00274707330390811,-0.999948561191559,-0.00915199518203735,0.00436038710176945,-0.999924123287201,6.68999055051245e-005,0.0123159401118755,-0.99980092048645,-0.0194331835955381,-0.00451402878388762,-0.999948561191559,-0.00915199518203735,0.00436038710176945,-0.999935507774353,-0.0110212471336126,0.00274707330390811,0.99972003698349,-0.0156536474823952,-0.0177445132285357,
- 0.999941229820251,-0.00584512390196323,-0.00913382600992918,0.995316684246063,-0.070632740855217,-0.0659967735409737,0.99972003698349,-0.0156536474823952,-0.0177445132285357,0.998348772525787,0.0450891405344009,0.0355912037193775,0.999941229820251,-0.00584512390196323,-0.00913382600992918,-0.0142719531431794,0.999731063842773,-0.018281452357769,-0.0151268700137734,0.999739766120911,-0.0170777607709169,-0.0166649837046862,0.999749958515167,-0.014911943115294,-0.0151268700137734,0.999739766120911,-0.0170777607709169,-0.0142719531431794,0.999731063842773,-0.018281452357769,-0.0127760851755738,0.999710559844971,-0.020387377589941,-0.00183024257421494,0.00255049648694694,-0.999995112419128,-0.0033943448215723,-3.31090741383377e-005,-0.999994218349457,-0.00490814633667469,-0.0025336742401123,-0.999984681606293,-0.0033943448215723,-3.31090741383377e-005,-0.999994218349457,-0.00666641537100077,-0.00543812429532409,-0.99996292591095,-0.00490814633667469,-0.0025336742401123,-0.999984681606293,-0.00109862629324198,-0.00229197321459651,0.999996781349182,0.00342373526655138,-0.00932073965668678,0.999950647354126,-0.00631936173886061,0.00582257192581892,0.999962985515594,0.00342373526655138,-0.00932073965668678,0.999950647354126,-0.00109862629324198,-0.00229197321459651,0.999996781349182,0.00921807810664177,-0.0183260440826416,0.999789595603943,0.021165007725358,-0.0203223917633295,0.999569416046143,0.0418869815766811,0.0155196776613593,0.999001801013947,0.0611722096800804,0.048964761197567,0.996925532817841,0.021165007725358,-0.0203223917633295,0.999569416046143,0.00377267855219543,-0.0503301322460175,0.998725533485413,0.0418869815766811,0.0155196776613593,0.999001801013947,0.0242649372667074,-0.0300714820623398,-0.999253213405609,0.0331136845052242,-0.0457338392734528,-0.998404681682587,0.0414841845631599,-0.0605535507202148,-0.997302532196045,0.0331136845052242,-0.0457338392734528,-0.998404681682587,0.0242649372667074,-0.0300714820623398,-0.999253213405609,0.0178150814026594,-0.0186578128486872,-0.999667167663574,0.999992668628693,-0.00363578088581562,-0.00117161707021296,
- 0.999863982200623,-0.0143446531146765,0.00813819002360106,0.999994337558746,-0.00149556994438171,-0.00303211528807878,0.999992668628693,-0.00363578088581562,-0.00117161707021296,0.999994337558746,-0.00149556994438171,-0.00303211528807878,0.999871492385864,0.00970196910202503,-0.0127656301483512,0.0109932217746973,-0.99990302324295,0.00853928737342358,0.0306140761822462,-0.999278604984283,-0.0224737767130136,-0.0111206276342273,-0.998993694782257,0.0434510260820389,0.0306140761822462,-0.999278604984283,-0.0224737767130136,0.0109932217746973,-0.99990302324295,0.00853928737342358,0.05521584674716,-0.996584177017212,-0.0614092834293842,-0.99943345785141,-0.00869890861213207,0.0325139984488487,-0.999202191829681,-0.014181075617671,0.0373320169746876,-0.999780774116516,0.0194528177380562,0.00775188952684402,-0.999202191829681,-0.014181075617671,0.0373320169746876,-0.99943345785141,-0.00869890861213207,0.0325139984488487,-0.997558295726776,-0.0382258668541908,0.0584481731057167,0.025693142786622,0.999639272689819,0.00782075989991426,0.0156618263572454,0.999851644039154,-0.00717519037425518,0.0405621267855167,0.998724579811096,0.0300669446587563,0.0156618263572454,0.999851644039154,-0.00717519037425518,0.025693142786622,0.999639272689819,0.00782075989991426,0.00469514634460211,0.999711513519287,-0.0235580410808325,-0.00217274250462651,0.999983906745911,-0.00524872727692127,-0.000411698390962556,0.999998807907104,-0.00144174415618181,0.00296130334027112,0.999978542327881,0.00584995746612549,0.00296130334027112,0.999978542327881,0.00584995746612549,-0.000411698390962556,0.999998807907104,-0.00144174415618181,0.00495793204754591,0.999936103820801,0.0101662557572126,-0.038887694478035,0.00280430936254561,-0.9992396235466,-0.0446572452783585,-0.0104359425604343,-0.99894779920578,-0.0426288619637489,-0.00577890500426292,-0.999074280261993,-0.038887694478035,0.00280430936254561,-0.9992396235466,-0.0426288619637489,-0.00577890500426292,-0.999074280261993,-0.0369807258248329,0.0071762902662158,-0.999290227890015,-0.0107546672224998,-0.998994410037994,0.0435270294547081,
- -0.0113794365897775,-0.999046206474304,0.0421581044793129,-0.00942285545170307,-0.998876452445984,0.0464446470141411,-0.0107546672224998,-0.998994410037994,0.0435270294547081,-0.00942285545170307,-0.998876452445984,0.0464446470141411,-0.00855194684118032,-0.998793721199036,0.0483521893620491,0.999828338623047,-0.0121359340846539,-0.0140004474669695,0.999828100204468,-0.0134866703301668,-0.0127199534326792,0.999690890312195,-0.0247777011245489,-0.0020126502495259,0.999828100204468,-0.0134866703301668,-0.0127199534326792,0.999828338623047,-0.0121359340846539,-0.0140004474669695,0.999690473079681,-0.000666401349008083,-0.0248699542135,-0.999856233596802,0.00849793571978807,0.0146756125614047,-0.999858438968658,0.00839664228260517,0.0145762171596289,-0.999979496002197,6.70941808493808e-005,0.00640230253338814,-0.999858438968658,0.00839664228260517,0.0145762171596289,-0.999856233596802,0.00849793571978807,0.0146756125614047,-0.999586820602417,0.0170934163033962,0.0231095720082521,0.00175645994022489,-0.014886062592268,0.999887585639954,-0.00966109428554773,0.0136402947828174,0.999860346317291,0.00754885282367468,-0.0293543618172407,0.999540507793427,-0.00966109428554773,0.0136402947828174,0.999860346317291,0.00175645994022489,-0.014886062592268,0.999887585639954,-0.0149238323792815,0.0267924014478922,0.999529659748077,-4.77472094644327e-005,-0.999776124954224,0.0211590509861708,-0.00243398919701576,-0.99983549118042,0.0179737824946642,-0.00747573375701904,-0.999908804893494,0.0112427128478885,-0.00243398919701576,-0.99983549118042,0.0179737824946642,-4.77472094644327e-005,-0.999776124954224,0.0211590509861708,0.00446227891370654,-0.99962055683136,0.0271783284842968,0.999804139137268,-0.019305033609271,0.00436493242159486,0.999950587749481,-0.00893451645970345,-0.00435623247176409,0.999935030937195,-0.0111107937991619,-0.00252625648863614,0.999935030937195,-0.0111107937991619,-0.00252625648863614,0.999950587749481,-0.00893451645970345,-0.00435623247176409,0.999928951263428,6.70304507366382e-005,-0.0119243869557977,-0.999685347080231,-0.0169869437813759,0.0184548515826464,
- -0.99994969367981,-0.00534025905653834,0.00849647726863623,-0.995402991771698,-0.0708226636052132,0.064474493265152,-0.99994969367981,-0.00534025905653834,0.00849647726863623,-0.999685347080231,-0.0169869437813759,0.0184548515826464,-0.99842369556427,0.0445331074297428,-0.0341576598584652,0.0151748480275273,0.99974399805069,0.0167884808033705,0.014354832470417,0.999736487865448,0.0179128367453814,0.0127757778391242,0.999716818332672,0.0200777165591717,0.014354832470417,0.999736487865448,0.0179128367453814,0.0151748480275273,0.99974399805069,0.0167884808033705,0.0167943593114614,0.999752759933472,0.0145676983520389,0.00498741259798408,-0.00266164029017091,0.999984085559845,0.0034480185713619,-0.00011980471026618,0.999994039535522,0.00677706114947796,-0.00561675569042563,0.999961316585541,0.00185729959048331,0.00250672665424645,0.999995112419128,0.0034480185713619,-0.00011980471026618,0.999994039535522,0.00498741259798408,-0.00266164029017091,0.999984085559845,0.00108839757740498,-0.00212748185731471,-0.999997198581696,-0.00372591731138527,-0.00961061101406813,-0.999946892261505,0.00664817029610276,0.00651472946628928,-0.999956667423248,-0.00372591731138527,-0.00961061101406813,-0.999946892261505,0.00108839757740498,-0.00212748185731471,-0.999997198581696,-0.00989319104701281,-0.0191962718963623,-0.999766826629639,-0.0211077276617289,-0.0204767268151045,-0.99956750869751,-0.00375052797608078,-0.0504278503358364,-0.998720705509186,-0.0417874082922935,0.0152968615293503,-0.999009430408478,-0.0211077276617289,-0.0204767268151045,-0.99956750869751,-0.0417874082922935,0.0152968615293503,-0.999009430408478,-0.0610318146646023,0.0486754439771175,-0.9969482421875,-0.0278613679111004,-0.0116872685030103,0.999543428421021,-0.0419741123914719,-0.0354883633553982,0.998488187789917,-0.0566522851586342,-0.0602718740701675,0.996573030948639,-0.0419741123914719,-0.0354883633553982,0.998488187789917,-0.0278613679111004,-0.0116872685030103,0.999543428421021,-0.0178366657346487,0.00520295184105635,0.999827325344086,-0.999992966651917,-0.00358184450305998,0.0011414879700169,
- -0.999866366386414,-0.0142057240009308,-0.00809327233582735,-0.999994516372681,-0.00145783880725503,0.00298766884952784,-0.999992966651917,-0.00358184450305998,0.0011414879700169,-0.999994516372681,-0.00145783880725503,0.00298766884952784,-0.999873578548431,0.00964524410665035,0.0126378983259201,0.998846292495728,0.00254139513708651,-0.0479541309177876,0.99891608953476,0.00420739408582449,-0.0463546141982079,0.998305559158325,-0.00760670658200979,-0.0576913915574551,0.99891608953476,0.00420739408582449,-0.0463546141982079,0.998846292495728,0.00254139513708651,-0.0479541309177876,0.999291896820068,0.0181420538574457,-0.0329655893146992,-0.0157029833644629,0.999852061271667,0.00702373497188091,-0.0256826039403677,0.999638974666595,-0.00789511576294899,-0.00478493701666594,0.999716222286224,0.0233342107385397,-0.0256826039403677,0.999638974666595,-0.00789511576294899,-0.0157029833644629,0.999852061271667,0.00702373497188091,-0.040476318448782,0.998729228973389,-0.0300288181751966,0.00241321930661798,-0.999836206436157,-0.0179400611668825,2.89808103843825e-005,-0.999776899814606,-0.021122794598341,-0.00447878427803516,-0.999621629714966,-0.0271393228322268,2.89808103843825e-005,-0.999776899814606,-0.021122794598341,0.00241321930661798,-0.999836206436157,-0.0179400611668825,0.00745117478072643,-0.999909341335297,-0.0112137636169791,-0.999935388565063,-0.0110870255157351,0.00249509490095079,-0.999950885772705,-0.00891466625034809,0.00432162592187524,-0.999929487705231,6.71847592457198e-005,0.0118726026266813,-0.999804794788361,-0.019264068454504,-0.0043810592032969,-0.999950885772705,-0.00891466625034809,0.00432162592187524,-0.999935388565063,-0.0110870255157351,0.00249509490095079,0.999686360359192,-0.017008513212204,-0.0183790139853954,0.999949932098389,-0.00537927355617285,-0.00843585282564163,0.995417535305023,-0.0707562640309334,-0.0643223896622658,0.999686360359192,-0.017008513212204,-0.0183790139853954,0.998429656028748,0.0444109514355659,0.0341456457972527,0.999949932098389,-0.00537927355617285,-0.00843585282564163,
- -0.0143492678180337,0.999736785888672,-0.0178990960121155,-0.0151660013943911,0.999744296073914,-0.0167783610522747,-0.0167795307934284,0.999753177165985,-0.0145640289410949,-0.0151660013943911,0.999744296073914,-0.0167783610522747,-0.0143492678180337,0.999736785888672,-0.0178990960121155,-0.0127760963514447,0.99971729516983,-0.020057637244463,-0.00184958160389215,0.00244935951195657,-0.999995231628418,-0.00343420007266104,-0.000166891899425536,-0.999994158744812,-0.00496749626472592,-0.00269845756702125,-0.999984085559845,-0.00343420007266104,-0.000166891899425536,-0.999994158744812,-0.00675026839599013,-0.00564198708161712,-0.999961256980896,-0.00496749626472592,-0.00269845756702125,-0.999984085559845,-0.00109066697768867,-0.0021385932341218,0.999997079372406,0.00370911369100213,-0.00959966704249382,0.999947011470795,-0.0066342013888061,0.0064789904281497,0.999957025051117,0.00370911369100213,-0.00959966704249382,0.999947011470795,-0.00109066697768867,-0.0021385932341218,0.999997079372406,0.00985776167362928,-0.0191570594906807,0.999767959117889,-0.020960196852684,0.0178924184292555,0.999620258808136,-0.0035375899169594,0.0458611100912094,0.998941600322723,-0.0390576422214508,-0.0112189883366227,0.999173939228058,-0.020960196852684,0.0178924184292555,0.999620258808136,-0.0390576422214508,-0.0112189883366227,0.999173939228058,-0.0590155906975269,-0.0433938093483448,0.997313499450684,-0.0236136391758919,0.0305965561419725,-0.999252915382385,-0.030717384070158,0.042308546602726,-0.998632311820984,-0.0386210791766644,0.0553412586450577,-0.997720301151276,-0.030717384070158,0.042308546602726,-0.998632311820984,-0.0236136391758919,0.0305965561419725,-0.999252915382385,-0.0176118351519108,0.0207025688141584,-0.999630630016327,-0.999993860721588,0.00306057534180582,-0.00167924584820867,-0.999878525733948,0.0134533168748021,0.00787149462848902,-0.999994516372681,0.00193743873387575,-0.00271133496426046,-0.999993860721588,0.00306057534180582,-0.00167924584820867,-0.999994516372681,0.00193743873387575,-0.00271133496426046,
- -0.999880731105804,-0.00887220352888107,-0.0126441484317183,-0.0110226580873132,0.999901115894318,0.00872630439698696,-0.0319406948983669,0.999198317527771,-0.0241362787783146,0.0123858796432614,0.998889625072479,0.0454546920955181,-0.0319406948983669,0.999198317527771,-0.0241362787783146,-0.0110226580873132,0.999901115894318,0.00872630439698696,-0.0584320090711117,0.996119678020477,-0.0658115521073341,0.996648669242859,-0.0383997336030006,0.0722276270389557,0.999490201473236,0.00823480542749166,0.0308462884277105,0.999363899230957,0.00295599177479744,0.0355379246175289,0.998580455780029,0.0525609515607357,-0.00862458255141974,0.999363899230957,0.00295599177479744,0.0355379246175289,0.999490201473236,0.00823480542749166,0.0308462884277105,-0.0276493448764086,-0.999571084976196,0.00965523160994053,-0.0167937930673361,-0.999838352203369,-0.0064245187677443,-0.0440798699855804,-0.998448729515076,0.0340153649449348,-0.0167937930673361,-0.999838352203369,-0.0064245187677443,-0.0276493448764086,-0.999571084976196,0.00965523160994053,-0.00482468353584409,-0.999697029590607,-0.0241400804370642,-0.0219234395772219,-0.0193990133702755,-0.999571442604065,-0.00395021075382829,-0.0495332591235638,-0.99876469373703,-0.041888140141964,0.0141554567962885,-0.99902206659317,-0.0219234395772219,-0.0193990133702755,-0.999571442604065,-0.041888140141964,0.0141554567962885,-0.99902206659317,-0.0617840103805065,0.0476799607276917,-0.996950030326843,-0.024987168610096,-0.0315501540899277,0.999189794063568,-0.0333181507885456,-0.045890212059021,0.99839061498642,-0.0417144224047661,-0.0603458471596241,0.997305512428284,-0.0333181507885456,-0.045890212059021,0.99839061498642,-0.024987168610096,-0.0315501540899277,0.999189794063568,-0.018468564376235,-0.0203319322317839,0.999622642993927,-0.99999338388443,-0.00346203846856952,0.00112233054824173,-0.999876439571381,-0.0136744063347578,-0.00774862477555871,-0.999994874000549,-0.00141816446557641,0.00289764627814293,-0.99999338388443,-0.00346203846856952,0.00112233054824173,-0.999994874000549,-0.00141816446557641,0.00289764627814293,
- -0.999883651733398,0.00922545231878757,0.0121422437950969,-0.0305976793169975,-0.999304473400116,0.0213143862783909,-0.0116666033864021,-0.999901413917542,-0.00781711656600237,-0.0562028847634792,-0.996568500995636,0.0607658438384533,-0.0116666033864021,-0.999901413917542,-0.00781711656600237,-0.0305976793169975,-0.999304473400116,0.0213143862783909,0.0114907696843147,-0.998991250991821,-0.0434098616242409,0.999243199825287,-0.0129725784063339,-0.0366691872477531,0.999447584152222,-0.00796705484390259,-0.0322630181908607,0.997814357280731,-0.0350026004016399,-0.0560480356216431,0.999447584152222,-0.00796705484390259,-0.0322630181908607,0.999243199825287,-0.0129725784063339,-0.0366691872477531,0.999795496463776,0.0178365297615528,-0.00953124929219484,-0.0164222549647093,0.999842524528503,0.00672436319291592,-0.0261603537946939,0.999630153179169,-0.00742975808680058,-0.00477069430053234,0.999708950519562,0.0236478019505739,-0.0261603537946939,0.999630153179169,-0.00742975808680058,-0.0164222549647093,0.999842524528503,0.00672436319291592,-0.0418347753584385,0.998667061328888,-0.0302312038838863,0.029639033600688,0.999547481536865,0.00512586301192641,0.0269830003380775,0.999635934829712,-0.00017376514733769,0.0226329807192087,0.999704718589783,-0.00884934514760971,0.0269830003380775,0.999635934829712,-0.00017376514733769,0.0196059811860323,0.999696969985962,-0.0148833142593503,0.0226329807192087,0.999704718589783,-0.00884934514760971,0.0402913726866245,0.00559732597321272,0.999172389507294,0.0423356927931309,0.000987009843811393,0.999103009700775,0.0457463562488556,-0.00671011209487915,0.99893057346344,0.0457463562488556,-0.00671011209487915,0.99893057346344,0.0423356927931309,0.000987009843811393,0.999103009700775,0.0479112081229687,-0.0115992743521929,0.998784244060516,-0.0118205193430185,-0.998925685882568,-0.0448102653026581,-0.014216149225831,-0.998660743236542,-0.0497448779642582,-0.0160478763282299,-0.998437941074371,-0.0535175316035748,-0.0118205193430185,-0.998925685882568,-0.0448102653026581,-0.0105484258383513,-0.999053955078125,-0.0421897023916245,
- -0.014216149225831,-0.998660743236542,-0.0497448779642582,-0.9998459815979,0.0135731063783169,0.011125648394227,-0.999817192554474,0.0147152123972774,0.0122094554826617,-0.999470174312592,0.0244671516120434,0.0214637834578753,-0.999817192554474,0.0147152123972774,0.0122094554826617,-0.9998459815979,0.0135731063783169,0.011125648394227,-0.999989986419678,0.00397687731310725,0.00201943144202232,0.999692320823669,-0.0178656689822674,-0.0172102395445108,0.999692261219025,-0.0178675446659327,-0.0172083675861359,0.999643981456757,-0.0105712516233325,-0.0244975294917822,0.999692261219025,-0.0178675446659327,-0.0172083675861359,0.999692320823669,-0.0178656689822674,-0.0172102395445108,0.999635994434357,-0.0250387527048588,-0.0100405290722847,0.00283725233748555,0.00794429518282413,-0.999964416027069,0.0174848306924105,-0.0272303689271212,-0.999476194381714,0.0259406287223101,-0.0475458651781082,-0.998532116413116,0.0174848306924105,-0.0272303689271212,-0.999476194381714,0.00283725233748555,0.00794429518282413,-0.999964416027069,-0.00506693031638861,0.0269164796918631,-0.999624848365784,0.0211946330964565,-0.0202887710183859,0.999569535255432,0.041952196508646,0.0156105346977711,0.998997688293457,0.0612761154770851,0.0491188727319241,0.996911466121674,0.0211946330964565,-0.0202887710183859,0.999569535255432,0.00377233093604445,-0.050344455987215,0.998724818229675,0.041952196508646,0.0156105346977711,0.998997688293457,0.024261798709631,-0.0303116571158171,-0.999246060848236,0.0330554954707623,-0.0458701215684414,-0.998400330543518,0.0413799546658993,-0.0606020912528038,-0.997303903102875,0.0330554954707623,-0.0458701215684414,-0.998400330543518,0.024261798709631,-0.0303116571158171,-0.999246060848236,0.01785240881145,-0.0189742296934128,-0.999660551548004,0.999992668628693,-0.00363370636478066,-0.00116916245315224,0.999864041805267,-0.0143419615924358,0.00814147107303143,0.999994337558746,-0.00149390881415457,-0.0030295739416033,0.999992668628693,-0.00363370636478066,-0.00116916245315224,0.999994337558746,-0.00149390881415457,-0.0030295739416033,
- 0.999871373176575,0.00970603805035353,-0.0127666108310223,0.011076140217483,-0.999900817871094,0.00869824551045895,0.0307669769972563,-0.999274909496307,-0.0224294401705265,-0.0111123910173774,-0.998981535434723,0.0437317602336407,0.0307669769972563,-0.999274909496307,-0.0224294401705265,0.011076140217483,-0.999900817871094,0.00869824551045895,0.0554446615278721,-0.996566474437714,-0.0614908374845982,-0.999434173107147,-0.00871059764176607,0.0324883013963699,-0.999202847480774,-0.0141958007588983,0.0373119078576565,-0.999780297279358,0.0195158757269382,0.00764538859948516,-0.999202847480774,-0.0141958007588983,0.0373119078576565,-0.999434173107147,-0.00871059764176607,0.0324883013963699,-0.997554183006287,-0.0382853895425797,0.0584802217781544,0.0257010329514742,0.999639451503754,0.00776973273605108,0.0156339854001999,0.999851226806641,-0.00727996649220586,0.0406264960765839,0.998720824718475,0.0301010347902775,0.0156339854001999,0.999851226806641,-0.00727996649220586,0.0257010329514742,0.999639451503754,0.00776973273605108,0.00463058240711689,0.999707937240601,-0.0237179864197969,0.0211460255086422,0.020366758108139,-0.99956887960434,0.0418656654655933,-0.015468580648303,-0.999003529548645,0.0611538589000702,-0.0489163286983967,-0.996928989887238,0.0211460255086422,0.020366758108139,-0.99956887960434,0.00375807960517704,0.0503646917641163,-0.998723804950714,0.0418656654655933,-0.015468580648303,-0.999003529548645,0.0242478400468826,0.0300568230450153,0.999253988265991,0.0330898053944111,0.0457085818052292,0.998406708240509,0.0414528138935566,0.0605163611471653,0.997306168079376,0.0330898053944111,0.0457085818052292,0.998406708240509,0.0242478400468826,0.0300568230450153,0.999253988265991,0.0178027991205454,0.0186506379395723,0.999667584896088,0.999992847442627,0.00359805068001151,0.00114546378608793,0.999865114688873,0.0142686357721686,-0.0081306304782629,0.999994516372681,0.00146522547584027,0.00299945753067732,0.999992847442627,0.00359805068001151,0.00114546378608793,0.999994516372681,0.00146522547584027,0.00299945753067732,
- 0.999872386455536,-0.00969157926738262,0.0126971388235688,0.0305825341492891,0.999279379844666,0.0224817059934139,0.0109755070880055,0.999903500080109,-0.00851125735789537,0.0551636479794979,0.996588528156281,0.0613865777850151,0.0109755070880055,0.999903500080109,-0.00851125735789537,0.0305825341492891,0.999279379844666,0.0224817059934139,-0.0111214155331254,0.998995959758759,-0.0433983653783798,-0.999201536178589,0.0140674309805036,-0.0373968258500099,-0.999432861804962,0.00856835581362247,-0.0325642079114914,-0.997552275657654,0.0381864123046398,-0.0585768073797226,-0.999432861804962,0.00856835581362247,-0.0325642079114914,-0.999201536178589,0.0140674309805036,-0.0373968258500099,-0.999776721000671,-0.0196698401123285,-0.00772721553221345,0.0156695879995823,-0.999851584434509,0.00715783750638366,0.0256949309259653,-0.99963915348053,-0.00782934576272964,0.00470815924927592,-0.999711990356445,0.0235330276191235,0.0256949309259653,-0.99963915348053,-0.00782934576272964,0.0156695879995823,-0.999851584434509,0.00715783750638366,0.0405593365430832,-0.998724579811096,-0.0300689246505499,0.00386629882268608,-0.999966204166412,0.00725677609443665,0.00325606227852404,-0.999975025653839,0.00629439437761903,0.00247338367626071,-0.999984204769135,0.00506005669012666,0.00386629882268608,-0.999966204166412,0.00725677609443665,0.00464405212551355,-0.999953210353851,0.00848334189504385,0.00325606227852404,-0.999975025653839,0.00629439437761903,0.999999582767487,-0.000609009643085301,-0.000628801353741437,0.999999582767487,-0.000765635806601495,-0.000499021436553448,0.999999165534973,-0.00134539743885398,-1.86327524716035e-005,0.999999582767487,-0.000765635806601495,-0.000499021436553448,0.999999582767487,-0.000609009643085301,-0.000628801353741437,0.999999344348907,6.94153186486801e-006,-0.00113917584531009,-0.999727189540863,-0.0232137050479651,-0.00255200872197747,-0.999499261379242,-0.0304140355437994,-0.00872807297855616,-0.999765336513519,-0.0216302201151848,-0.00119398557581007,-0.999727189540863,-0.0232137050479651,-0.00255200872197747,
- -0.999765336513519,-0.0216302201151848,-0.00119398557581007,-0.999882221221924,-0.0145485876128078,0.00487840594723821,0.0113006690517068,0.99983948469162,0.0139128556475043,0.0112707279622555,0.999839067459106,0.0139601286500692,0.0112328128889203,0.999838590621948,0.0140199884772301,0.0112707279622555,0.999839067459106,0.0139601286500692,0.0113006690517068,0.99983948469162,0.0139128556475043,0.0113394539803267,0.999839782714844,0.0138516183942556,7.77007153374143e-005,-0.00691317673772573,0.999976098537445,0.000884720298927277,-0.00844254903495312,0.999963939189911,-0.000602318265009671,-0.00562446471303701,0.999983966350555,0.00150202447548509,-0.0096123805269599,0.999952733516693,0.000884720298927277,-0.00844254903495312,0.999963939189911,7.77007153374143e-005,-0.00691317673772573,0.999976098537445,0.00119978014845401,-0.00813039392232895,-0.999966204166412,0.00146821839734912,-0.00763625930994749,-0.999969720840454,0.000972657988313586,-0.00854847300797701,-0.999963045120239,0.00170474604237825,-0.00720086367800832,-0.999972641468048,0.00146821839734912,-0.00763625930994749,-0.999969720840454,0.00119978014845401,-0.00813039392232895,-0.999966204166412,0.018530098721385,0.000271903933025897,0.999828279018402,0.0452853292226791,0.0511465445160866,0.997663915157318,0.0653769224882126,0.0894269570708275,0.993845403194427,0.018530098721385,0.000271903933025897,0.999828279018402,-0.000800704001449049,-0.03641352429986,0.999336421489716,0.0452853292226791,0.0511465445160866,0.997663915157318,0.0226065814495087,-0.0649673566222191,-0.997631371021271,0.0323757454752922,-0.083428867161274,-0.9959876537323,0.0403612144291401,-0.0985123515129089,-0.99431699514389,0.0323757454752922,-0.083428867161274,-0.9959876537323,0.0226065814495087,-0.0649673566222191,-0.997631371021271,0.0165675636380911,-0.0535500980913639,-0.99842768907547,0.999990880489349,-0.00410554930567741,-0.00112566642928869,0.999830007553101,-0.0156616605818272,0.00973519682884216,0.999993026256561,-0.00180353119503707,-0.00328903971239924,0.999990880489349,-0.00410554930567741,-0.00112566642928869,
- 0.999993026256561,-0.00180353119503707,-0.00328903971239924,0.999837517738342,0.0103788552805781,-0.0147368805482984,0.00929964054375887,-0.998796820640564,0.0481517687439919,0.03056919015944,-0.999457657337189,0.0122432131320238,-0.0107016814872622,-0.996589839458466,0.0818178206682205,0.03056919015944,-0.999457657337189,0.0122432131320238,0.00929964054375887,-0.998796820640564,0.0481517687439919,0.0527104362845421,-0.998290419578552,-0.0252556279301643,-0.999335110187531,-0.0237184707075357,0.0276901312172413,-0.999104201793671,-0.0280494671314955,0.0316840298473835,-0.999966561794281,-0.00223296624608338,0.00787396915256977,-0.999104201793671,-0.0280494671314955,0.0316840298473835,-0.999335110187531,-0.0237184707075357,0.0276901312172413,-0.997840881347656,-0.0452808290719986,0.0475721806287766,0.0196243952959776,0.999517679214478,-0.0240717586129904,0.0115662319585681,0.999249339103699,-0.0369726307690144,0.0295986123383045,0.999529182910919,-0.00808552093803883,0.0115662319585681,0.999249339103699,-0.0369726307690144,0.0196243952959776,0.999517679214478,-0.0240717586129904,0.00433679297566414,0.998812019824982,-0.0485358200967312,-0.004066560883075,0.999977707862854,-0.0052892342209816,-0.00171414820943028,0.999998509883881,-9.09686496015638e-005,0.00226278230547905,0.999959707260132,0.00869681872427464,0.00226278230547905,0.999959707260132,0.00869681872427464,-0.00171414820943028,0.999998509883881,-9.09686496015638e-005,0.00494586164131761,0.999880790710449,0.0146253984421492,-0.00828486867249012,0.00217943801544607,-0.999963343143463,-0.0141669856384397,-0.0104244351387024,-0.999845266342163,-0.0119246058166027,-0.0056191342882812,-0.999913096427917,-0.00828486867249012,0.00217943801544607,-0.999963343143463,-0.0119246058166027,-0.0056191342882812,-0.999913096427917,-0.00616992171853781,0.0067102862522006,-0.999958395957947,0.99971616268158,-0.0105452435091138,0.0213609933853149,0.999679028987885,-0.0117084411904216,0.0224637016654015,0.999266386032104,-0.0214678067713976,0.031714390963316,0.999679028987885,-0.0117084411904216,0.0224637016654015,
- 0.99971616268158,-0.0105452435091138,0.0213609933853149,0.999928295612335,-0.000625879620201886,0.0119562931358814,-0.999723255634308,0.0112653886899352,-0.0206490252166986,-0.999737739562988,0.0125054158270359,-0.019188279286027,-0.999426960945129,5.51275588804856e-005,-0.033849012106657,-0.999737739562988,0.0125054158270359,-0.019188279286027,-0.999723255634308,0.0112653886899352,-0.0206490252166986,-0.999735832214355,0.0211510173976421,-0.00900034327059984,-0.0330011621117592,0.0151713881641626,0.999340236186981,-0.029086260125041,0.0240646600723267,0.999287188053131,-0.0314770117402077,0.0186347365379334,0.999330759048462,-0.0278860609978437,0.0267893765121698,0.999252080917358,-0.0314770117402077,0.0186347365379334,0.999330759048462,-0.029086260125041,0.0240646600723267,0.999287188053131,-0.0225945133715868,-0.999579787254334,-0.0181630346924067,-0.0249981749802828,-0.999458968639374,-0.0213743802160025,-0.0295402240008116,-0.999186813831329,-0.0274431873112917,-0.0249981749802828,-0.999458968639374,-0.0213743802160025,-0.0225945133715868,-0.999579787254334,-0.0181630346924067,-0.0175135098397732,-0.999781906604767,-0.0113753443583846,-0.999901235103607,0.0138111524283886,0.00259789708070457,-0.999861598014832,0.016023701056838,0.00445954781025648,-0.99960869550705,0.025185588747263,0.0121692074462771,-0.999975264072418,0.00547337345778942,-0.00441687274724245,-0.999861598014832,0.016023701056838,0.00445954781025648,-0.999901235103607,0.0138111524283886,0.00259789708070457,0.998943746089935,-0.0421084202826023,-0.01839604601264,0.999500215053558,-0.0304662119597197,-0.00843183789402246,0.993306934833527,-0.0958529859781265,-0.0644484311342239,0.998943746089935,-0.0421084202826023,-0.01839604601264,0.999224185943604,0.019450917840004,0.0342437736690044,0.999500215053558,-0.0304662119597197,-0.00843183789402246,0.010751836001873,0.999780535697937,-0.0179836321622133,0.00992144923657179,0.999808967113495,-0.0168420076370239,0.00828230101615191,0.999859213829041,-0.0145884668454528,0.00992144923657179,0.999808967113495,-0.0168420076370239,
- 0.010751836001873,0.999780535697937,-0.0179836321622133,0.0123503282666206,0.99972003698349,-0.0201812405139208,-0.00177512411028147,0.00269008381292224,-0.999994814395905,-0.00345887499861419,6.06234752922319e-005,-0.999993979930878,-0.00508871302008629,-0.00248469458892941,-0.999983966350555,-0.00345887499861419,6.06234752922319e-005,-0.999993979930878,-0.0069822664372623,-0.00544191943481565,-0.999960839748383,-0.00508871302008629,-0.00248469458892941,-0.999983966350555,-0.00120193779002875,-0.00206098682247102,0.999997198581696,0.00350828352384269,-0.00979954097419977,0.999945878982544,-0.00664630066603422,0.00688412133604288,0.999954283237457,0.00350828352384269,-0.00979954097419977,0.999945878982544,-0.00120193779002875,-0.00206098682247102,0.999997198581696,0.00954470038414001,-0.019716452807188,0.999760031700134,0.0181765835732222,0.000319565442623571,-0.999834775924683,0.0451257415115833,-0.0515407286584377,-0.997650802135468,0.0648577883839607,-0.0895896926522255,-0.993864774703979,0.0181765835732222,0.000319565442623571,-0.999834775924683,-0.000790918304119259,0.0367479771375656,-0.999324262142181,0.0451257415115833,-0.0515407286584377,-0.997650802135468,0.022288715466857,0.0639908909797668,0.997701525688171,0.0323188789188862,0.0831858888268471,0.996009886264801,0.040311686694622,0.0984747186303139,0.994322776794434,0.0323188789188862,0.0831858888268471,0.996009886264801,0.022288715466857,0.0639908909797668,0.997701525688171,0.0162552017718554,0.0524395518004894,0.998491823673248,0.999990880489349,0.00410843128338456,0.00110383820720017,0.999826788902283,0.0157831814140081,-0.00987098272889853,0.999992907047272,0.0017838622443378,0.00328889163210988,0.999990880489349,0.00410843128338456,0.00110383820720017,0.999992907047272,0.0017838622443378,0.00328889163210988,0.999834001064301,-0.0105333412066102,0.0148660009726882,0.0303190238773823,0.999471783638,-0.0116973593831062,0.00893715023994446,0.998797357082367,-0.0482072047889233,0.0519697666168213,0.998325943946838,0.025387816131115,0.00893715023994446,0.998797357082367,-0.0482072047889233,
- 0.0303190238773823,0.999471783638,-0.0116973593831062,-0.01056969165802,0.996624171733856,-0.0814163833856583,-0.999076664447784,0.028513677418232,-0.0321373827755451,-0.999320030212402,0.0240061152726412,-0.0279858242720366,-0.997738242149353,0.0464141517877579,-0.0486219152808189,-0.999320030212402,0.0240061152726412,-0.0279858242720366,-0.999076664447784,0.028513677418232,-0.0321373827755451,-0.999970734119415,0.00172187562566251,-0.00745832826942205,0.0114251859486103,-0.999246656894684,0.0370874553918839,0.019518168643117,-0.999521970748901,0.0239761304110289,0.0043984679505229,-0.998815417289734,0.0484606400132179,0.019518168643117,-0.999521970748901,0.0239761304110289,0.0114251859486103,-0.999246656894684,0.0370874553918839,0.0292404592037201,-0.999538660049438,0.00820770859718323,-0.0018506224732846,0.999971687793732,0.00729893427342176,-0.00297177769243717,0.999956727027893,0.00882093794643879,-0.00527401594445109,0.999914705753326,0.0119462432339787,-0.0018506224732846,0.999971687793732,0.00729893427342176,0.000273392302915454,0.999990224838257,0.0044154729694128,-0.00297177769243717,0.999956727027893,0.00882093794643879,-0.999966204166412,0.00758773786947131,-0.00314089516177773,-0.999963164329529,0.00818628631532192,-0.00257488689385355,-0.999877333641052,0.0151449786499143,0.00400603469461203,-0.999963164329529,0.00818628631532192,-0.00257488689385355,-0.999966204166412,0.00758773786947131,-0.00314089516177773,-0.999946236610413,-4.99429625051562e-005,-0.0103627648204565,0.999727070331573,0.0233590919524431,8.5008519818075e-005,0.99522191286087,0.0809708312153816,0.0545623078942299,0.999671816825867,0.0255291312932968,0.00213446794077754,0.999727070331573,0.0233590919524431,8.5008519818075e-005,0.999671816825867,0.0255291312932968,0.00213446794077754,0.998270690441132,-0.0301984697580338,-0.0504346862435341,-0.0152644496411085,-0.999706625938416,0.0188066698610783,-0.0142016978934407,-0.99969345331192,0.0202785693109035,-0.0122243799269199,-0.999660313129425,0.0230167899280787,-0.0142016978934407,-0.99969345331192,0.0202785693109035,
- -0.0152644496411085,-0.999706625938416,0.0188066698610783,-0.0173051860183477,-0.999722480773926,0.015979902818799,-0.00356405950151384,0.0166129767894745,0.999855697154999,-0.000758200825657696,0.0125774722546339,0.999920547008514,0.00119452155195177,0.00976882129907608,0.999951601028442,-0.000758200825657696,0.0125774722546339,0.999920547008514,0.00451233237981796,0.00499641895294189,0.999977290630341,0.00119452155195177,0.00976882129907608,0.999951601028442,0.0179885532706976,-0.0196962300688028,-0.999644219875336,0.000877337181009352,0.00544197717681527,-0.999984800815582,0.00712937768548727,-0.00374221615493298,-0.999967634677887,-0.0102627323940396,0.0218045841902494,-0.999709606170654,0.00712937768548727,-0.00374221615493298,-0.999967634677887,0.000877337181009352,0.00544197717681527,-0.999984800815582,0.0164374019950628,0.999730885028839,-0.0163704380393028,0.0161596573889256,0.999727308750153,-0.0168584771454334,0.0158089306205511,0.999722361564636,-0.0174747332930565,0.0161596573889256,0.999727308750153,-0.0168584771454334,0.0154914166778326,0.99971741437912,-0.0180326160043478,0.0158089306205511,0.999722361564636,-0.0174747332930565,0.0306352134793997,-0.0289866458624601,0.999110221862793,0.041865348815918,-0.00698679499328136,0.999098777770996,0.0495828501880169,0.00816334690898657,0.99873673915863,0.0306352134793997,-0.0289866458624601,0.999110221862793,0.0223505776375532,-0.0451815314590931,0.99872875213623,0.041865348815918,-0.00698679499328136,0.999098777770996,-0.023761348798871,-0.9995276927948,-0.0194873139262199,-0.0144318677484989,-0.999207198619843,-0.0371050462126732,-0.00178416364360601,-0.998139381408691,-0.0609480738639832,-0.00178416364360601,-0.998139381408691,-0.0609480738639832,-0.0144318677484989,-0.999207198619843,-0.0371050462126732,0.00920471828430891,-0.996620535850525,-0.0816258564591408,-0.999666213989258,-0.0258203614503145,0.000901455758139491,-0.999664783477783,-0.0258778613060713,0.000849596224725246,-0.999656975269318,-0.0261815749108791,0.000575669051613659,-0.999664783477783,-0.0258778613060713,0.000849596224725246,
- -0.999666213989258,-0.0258203614503145,0.000901455758139491,-0.999673008918762,-0.0255451947450638,0.00114963366650045,0.999810934066772,0.0194370765239,0.00049801281420514,0.99976259469986,0.0217298045754433,-0.00160836824215949,0.99871039390564,0.0451794527471066,-0.0231623202562332,0.99976259469986,0.0217298045754433,-0.00160836824215949,0.999810934066772,0.0194370765239,0.00049801281420514,0.999807119369507,-0.0013554923934862,0.0195925012230873,0.000895089178811759,0.00985932163894176,-0.999951004981995,0.0160275027155876,-0.022916316986084,-0.999608933925629,0.025392908602953,-0.0432087816298008,-0.9987433552742,0.0160275027155876,-0.022916316986084,-0.999608933925629,0.000895089178811759,0.00985932163894176,-0.999951004981995,-0.00769813917577267,0.0284647475928068,-0.999565184116364,0.0252591762691736,-0.0219226200133562,-0.999440491199493,0.0415266379714012,-0.0461062751710415,-0.998073041439056,0.0638496875762939,-0.0793140828609467,-0.99480277299881,0.0252591762691736,-0.0219226200133562,-0.999440491199493,0.00493797147646546,0.00826879404485226,-0.999953627586365,0.0415266379714012,-0.0461062751710415,-0.998073041439056,0.028558349236846,0.0738507360219955,0.996860325336456,0.0349850542843342,0.0836373344063759,0.995881915092468,0.0437327995896339,0.0969516485929489,0.99432772397995,0.0349850542843342,0.0836373344063759,0.995881915092468,0.028558349236846,0.0738507360219955,0.996860325336456,0.0215623155236244,0.0631924346089363,0.997768402099609,0.999995529651642,0.00284123257733881,0.000816826417576522,0.999916970729828,0.0109601207077503,-0.00676279235631227,0.999996542930603,0.00120691419579089,0.00234254030510783,0.999995529651642,0.00284123257733881,0.000816826417576522,0.999996542930603,0.00120691419579089,0.00234254030510783,0.999923288822174,-0.00713458191603422,0.0101294470950961,0.0312586724758148,0.999259412288666,-0.0224359352141619,0.0154592161998153,0.998905718326569,-0.0441389195621014,0.0622399672865868,0.997855603694916,0.0202589519321918,0.0154592161998153,0.998905718326569,-0.0441389195621014,
- 0.0312586724758148,0.999259412288666,-0.0224359352141619,-0.0132282143458724,0.996426224708557,-0.0834252312779427,-0.999396920204163,0.00581253506243229,-0.0342331305146217,-0.999499678611755,0.00294915679842234,-0.0314925499260426,-0.998744547367096,0.0186341963708401,-0.0464994236826897,-0.999499678611755,0.00294915679842234,-0.0314925499260426,-0.999396920204163,0.00581253506243229,-0.0342331305146217,-0.999781012535095,-0.0121208429336548,-0.0170613843947649,0.0200663637369871,-0.998892724514008,0.0425514318048954,0.0280970856547356,-0.999086916446686,0.0321853496134281,0.00507678464055061,-0.998071491718292,0.0618685707449913,0.0280970856547356,-0.999086916446686,0.0321853496134281,0.0200663637369871,-0.998892724514008,0.0425514318048954,0.0475793890655041,-0.99884295463562,0.00698853190988302,-0.0127894887700677,-0.99991363286972,0.00301121943630278,-0.0142701016739011,-0.999878883361816,0.00620085839182138,-0.0166497770696878,-0.999797165393829,0.0113279512152076,-0.0166497770696878,-0.999797165393829,0.0113279512152076,-0.0142701016739011,-0.999878883361816,0.00620085839182138,-0.0183379873633385,-0.999719798564911,0.0149657363072038,0.00924293324351311,-0.000745736353565007,-0.999956965446472,0.0125783747062087,0.00619450164958835,-0.99990177154541,0.0072551416233182,-0.00488128513097763,-0.999961733818054,0.0125783747062087,0.00619450164958835,-0.99990177154541,0.00924293324351311,-0.000745736353565007,-0.999956965446472,0.014624441973865,0.0104524558410048,-0.999838471412659,-0.999606609344482,0.0175150409340858,0.021905954927206,-0.999539077281952,0.0192400403320789,0.0234859958291054,-0.99902468919754,0.0294846426695585,0.0328690260648727,-0.999539077281952,0.0192400403320789,0.0234859958291054,-0.999606609344482,0.0175150409340858,0.021905954927206,-0.999902546405792,0.00687021762132645,0.0121549628674984,0.999617516994476,-0.0176012869924307,-0.0213295333087444,0.999623894691467,-0.018670279532671,-0.0200862735509872,0.999384939670563,-0.00626790057867765,-0.0345035083591938,0.999623894691467,-0.018670279532671,-0.0200862735509872,
- 0.999617516994476,-0.0176012869924307,-0.0213295333087444,0.999574780464172,-0.0274315569549799,-0.0098925493657589,0.0290169715881348,-0.0248550791293383,0.999269902706146,0.0317580848932266,-0.0188021920621395,0.999318659305573,0.0334572233259678,-0.0150482216849923,0.999326884746552,0.0317580848932266,-0.0188021920621395,0.999318659305573,0.0290169715881348,-0.0248550791293383,0.999269902706146,0.0276047699153423,-0.0279719457030296,0.999227464199066,-0.0294389203190804,0.00677637336775661,-0.99954354763031,-0.0139171862974763,-0.0277343727648258,-0.999518394470215,-0.000163422912009992,-0.0582441501319408,-0.998302340507507,-0.0139171862974763,-0.0277343727648258,-0.999518394470215,-0.0294389203190804,0.00677637336775661,-0.99954354763031,-0.0451850742101669,0.0418722704052925,-0.998100757598877,-0.0358864851295948,-0.0171734634786844,0.999208271503448,-0.045081440359354,-0.0293121393769979,0.998553216457367,-0.0545286796987057,-0.0417912006378174,0.997637212276459,-0.045081440359354,-0.0293121393769979,0.998553216457367,-0.0358864851295948,-0.0171734634786844,0.999208271503448,-0.0287319347262383,-0.00773326167836785,0.999557316303253,-0.99333655834198,0.114848554134369,-0.00960433669388294,-0.994373321533203,0.104216001927853,-0.0189936514943838,-0.993167996406555,0.116402715444565,-0.00823001004755497,-0.99333655834198,0.114848554134369,-0.00960433669388294,-0.993167996406555,0.116402715444565,-0.00823001004755497,-0.991841971874237,0.12746350467205,0.00156480050645769,-0.149124950170517,-0.988234221935272,0.0339823588728905,-0.128586083650589,-0.991696655750275,0.00185059895738959,-0.174437165260315,-0.98188441991806,0.0739913582801819,-0.128586083650589,-0.991696655750275,0.00185059895738959,-0.149124950170517,-0.988234221935272,0.0339823588728905,-0.105872757732868,-0.993820428848267,-0.0333475805819035,0.984870374202728,-0.172060176730156,0.0206303969025612,0.992386996746063,-0.120498694479465,-0.0254583396017551,0.991643726825714,-0.127573505043983,-0.0191724486649036,0.994947969913483,-0.0786286517977715,-0.0624171569943428,
- 0.991643726825714,-0.127573505043983,-0.0191724486649036,0.992386996746063,-0.120498694479465,-0.0254583396017551,0.102406218647957,0.994732797145844,-0.00441666878759861,0.0921756327152252,0.995541095733643,-0.0200388859957457,0.11339246481657,0.993472635746002,0.0124223111197352,0.0921756327152252,0.995541095733643,-0.0200388859957457,0.102406218647957,0.994732797145844,-0.00441666878759861,0.0768633857369423,0.996100306510925,-0.0433165431022644,0.0190845001488924,-0.0197698771953583,0.999622404575348,0.0385681726038456,0.0136258434504271,0.999163091182709,0.0569787099957466,0.0452545806765556,0.997349262237549,0.0190845001488924,-0.0197698771953583,0.999622404575348,0.003042051801458,-0.0472084395587444,0.998880505561829,0.0385681726038456,0.0136258434504271,0.999163091182709,0.0218279249966145,-0.0277305729687214,-0.999377012252808,0.0296684019267559,-0.0414786972105503,-0.998698830604553,0.037231519818306,-0.0547429732978344,-0.997806191444397,0.0296684019267559,-0.0414786972105503,-0.998698830604553,0.0218279249966145,-0.0277305729687214,-0.999377012252808,0.0161813087761402,-0.0178309828042984,-0.999710142612457,0.999992728233337,-0.00329394242726266,-0.00193656759802252,0.9998499751091,-0.0148915611207485,0.00884881056845188,0.999993205070496,-0.00223896978422999,-0.00291759218089283,0.999992728233337,-0.00329394242726266,-0.00193656759802252,0.999993205070496,-0.00223896978422999,-0.00291759218089283,0.999849855899811,0.00990851316601038,-0.0142128607258201,0.00924333091825247,-0.99990713596344,0.0100116785615683,0.0319438427686691,-0.999090194702148,-0.0282536502927542,-0.0116495825350285,-0.99891072511673,0.045185275375843,0.0319438427686691,-0.999090194702148,-0.0282536502927542,0.00924333091825247,-0.99990713596344,0.0100116785615683,0.0558558516204357,-0.996078252792358,-0.068616196513176,-0.995977759361267,0.0416034460067749,0.0793565735220909,-0.999415755271912,-0.0105298180133104,0.0325153209269047,-0.999291062355042,-0.00523633835837245,0.0372808873653412,-0.99808394908905,-0.0605700202286243,-0.0126400180160999,
- -0.999291062355042,-0.00523633835837245,0.0372808873653412,-0.999415755271912,-0.0105298180133104,0.0325153209269047,0.0264962632209063,0.999580860137939,0.0116621972993016,0.0149773694574833,0.999865353107452,-0.00668895663693547,0.0408212877810001,0.998570561408997,0.0345039330422878,0.0149773694574833,0.999865353107452,-0.00668895663693547,0.0264962632209063,0.999580860137939,0.0116621972993016,0.00474308943375945,0.999724745750427,-0.0229815244674683,0.0297369174659252,0.999544560909271,0.00514595909044147,0.0270591359585524,0.999633848667145,-0.000212834842386656,0.0226490888744593,0.999702632427216,-0.0090339845046401,0.0270591359585524,0.999633848667145,-0.000212834842386656,0.0195980928838253,0.999693393707275,-0.0151336304843426,0.0226490888744593,0.999702632427216,-0.0090339845046401,0.0401765182614326,0.00575001537799835,0.99917596578598,0.0422360561788082,0.00110625301022083,0.99910706281662,0.0456724017858505,-0.00664743036031723,0.998934328556061,0.0456724017858505,-0.00664743036031723,0.998934328556061,0.0422360561788082,0.00110625301022083,0.99910706281662,0.0478538796305656,-0.0115732597187161,0.9987872838974,-0.0118744792416692,-0.9989213347435,-0.0448908694088459,-0.0142425298690796,-0.998658537864685,-0.0497824065387249,-0.0160435382276773,-0.998438835144043,-0.0535022281110287,-0.0118744792416692,-0.9989213347435,-0.0448908694088459,-0.0106253530830145,-0.999047994613647,-0.0423103794455528,-0.0142425298690796,-0.998658537864685,-0.0497824065387249,-0.999845743179321,0.0135280229151249,0.0112049672752619,-0.999817192554474,0.014658129774034,0.0122803701087832,-0.999458491802216,0.0246533174067736,0.021791897714138,-0.999817192554474,0.014658129774034,0.0122803701087832,-0.999845743179321,0.0135280229151249,0.0112049672752619,-0.999991476535797,0.00368978222832084,0.00184313766658306,0.999688923358917,-0.0179980807006359,-0.0172657128423452,0.999688863754272,-0.0180269181728363,-0.0172367934137583,0.999644339084625,-0.0109750311821699,-0.0243068262934685,0.999688863754272,-0.0180269181728363,-0.0172367934137583,
- 0.999688923358917,-0.0179980807006359,-0.0172657128423452,0.999635994434357,-0.024935781955719,-0.0103067392483354,0.00278758606873453,0.0078040543012321,-0.999965667724609,0.0174854081124067,-0.0275028944015503,-0.999468743801117,0.0259726941585541,-0.0479006431996822,-0.998514354228973,0.0174854081124067,-0.0275028944015503,-0.999468743801117,0.00278758606873453,0.0078040543012321,-0.999965667724609,-0.0051436759531498,0.0268476400524378,-0.999626398086548,0.0205592419952154,0.0186052955687046,-0.999615609645844,0.0387409701943398,-0.0134434001520276,-0.999158918857574,0.0571831688284874,-0.0460276715457439,-0.997302055358887,0.0205592419952154,0.0186052955687046,-0.999615609645844,0.00447120238095522,0.0469015166163445,-0.99888950586319,0.0387409701943398,-0.0134434001520276,-0.999158918857574,0.0234815254807472,0.0286136288195848,0.999314725399017,0.0314266197383404,0.0414094775915146,0.998647928237915,0.0395970121026039,0.0545703545212746,0.997724533081055,0.0314266197383404,0.0414094775915146,0.998647928237915,0.0234815254807472,0.0286136288195848,0.999314725399017,0.0173188056796789,0.0186897963285446,0.999675273895264,0.999757826328278,-0.0219417903572321,0.00170893687754869,0.999904751777649,-0.011008420959115,-0.00833748374134302,0.999728381633759,-0.0231337193399668,0.00280442181974649,0.999757826328278,-0.0219417903572321,0.00170893687754869,0.999728381633759,-0.0231337193399668,0.00280442181974649,0.999315142631531,-0.0345365069806576,0.0132869780063629,0.0567140057682991,0.998057544231415,0.0257788617163897,0.0352048985660076,0.999338626861572,-0.00910572893917561,0.0817368030548096,0.994432687759399,0.0665032342076302,0.0352048985660076,0.999338626861572,-0.00910572893917561,0.0567140057682991,0.998057544231415,0.0257788617163897,0.0131262186914682,0.998909890651703,-0.0447987988591194,-0.996649920940399,0.0811334252357483,0.0103083439171314,-0.998925030231476,0.0287657435983419,-0.0363520793616772,-0.99891608953476,0.0344595350325108,-0.0312936007976532,-0.997069478034973,-0.0149090932682157,-0.0750344768166542,
- -0.99891608953476,0.0344595350325108,-0.0312936007976532,-0.998925030231476,0.0287657435983419,-0.0363520793616772,-0.00925706513226032,-0.99993497133255,0.00666247727349401,0.00183282897341996,-0.999945402145386,-0.0102879283949733,-0.0203396715223789,-0.999514400959015,0.0236048139631748,0.00183282897341996,-0.999945402145386,-0.0102879283949733,-0.00925706513226032,-0.99993497133255,0.00666247727349401,0.0172074772417545,-0.999281048774719,-0.0337823033332825,-0.0123470462858677,0.000209595367778093,0.999923706054688,0.00312837050296366,0.0238590408116579,0.999710381031036,-0.0313087329268456,-0.0287883449345827,0.999095141887665,-0.0123470462858677,0.000209595367778093,0.999923706054688,-0.0313087329268456,-0.0287883449345827,0.999095141887665,-0.049273919314146,-0.0562835745513439,0.997198283672333,-0.0218168720602989,0.0415301993489265,-0.998899102210999,-0.0284022036939859,0.0545297972857952,-0.998108148574829,-0.0347756072878838,0.0671113654971123,-0.997139275074005,-0.0284022036939859,0.0545297972857952,-0.998108148574829,-0.0218168720602989,0.0415301993489265,-0.998899102210999,-0.0171260088682175,0.0322705209255219,-0.999332427978516,-0.99860030412674,0.0527607947587967,0.00369796995073557,-0.997704267501831,0.065489374101162,0.0172459706664085,-0.998572587966919,0.0532443150877953,0.00421228725463152,-0.99860030412674,0.0527607947587967,0.00369796995073557,-0.998572587966919,0.0532443150877953,0.00421228725463152,-0.999154567718506,0.0398779697716236,-0.00999574828892946,0.0425587557256222,0.998332679271698,0.0389947555959225,0.0157511439174414,0.99982476234436,-0.0101221092045307,0.0620709806680679,0.9952632188797,0.0748222842812538,0.0157511439174414,0.99982476234436,-0.0101221092045307,0.0425587557256222,0.998332679271698,0.0389947555959225,-0.00703595811501145,0.998633801937103,-0.0517768003046513,0.992351531982422,-0.0932283625006676,0.080913320183754,0.998702585697174,-0.0406167320907116,0.030716210603714,0.99879115819931,-0.0393284000456333,0.0294875409454107,0.999573230743408,0.0167289860546589,-0.0239492505788803,
- 0.99879115819931,-0.0393284000456333,0.0294875409454107,0.998702585697174,-0.0406167320907116,0.030716210603714,-0.0793838277459145,-0.996797680854797,-0.00961331930011511,-0.0652444809675217,-0.997262418270111,-0.03479865193367,-0.0932111293077469,-0.995531260967255,0.0151388561353087,-0.0652444809675217,-0.997262418270111,-0.03479865193367,-0.0793838277459145,-0.996797680854797,-0.00961331930011511,-0.0554120428860188,-0.997096180915833,-0.0522384457290173,-0.131311699748039,-0.020731208845973,-0.991124272346497,-0.113537453114986,-0.0514158606529236,-0.992202460765839,-0.152286410331726,0.0158855207264423,-0.988208651542664,-0.131311699748039,-0.020731208845973,-0.991124272346497,-0.152286410331726,0.0158855207264423,-0.988208651542664,-0.171625062823296,0.0500498414039612,-0.983890116214752,0.0849854350090027,-0.0320282243192196,0.995867252349854,0.075996145606041,-0.0478741452097893,0.995958149433136,0.0674752593040466,-0.0628389045596123,0.995740056037903,0.075996145606041,-0.0478741452097893,0.995958149433136,0.0849854350090027,-0.0320282243192196,0.995867252349854,0.0915319994091988,-0.0204501263797283,0.99559211730957,-0.994264960289001,-0.00363329146057367,0.10688241571188,-0.995077788829803,-0.0140014095231891,0.0981018915772438,-0.994044721126556,-0.00116904242895544,0.108966343104839,-0.994264960289001,-0.00363329146057367,0.10688241571188,-0.994044721126556,-0.00116904242895544,0.108966343104839,-0.992953479290009,0.00966021604835987,0.118110597133636,-0.0274464841932058,-0.999338388442993,0.0238598212599754,-0.0120827471837401,-0.99990439414978,-0.00673238700255752,-0.0479256249964237,-0.996753752231598,0.0646941289305687,-0.0120827471837401,-0.99990439414978,-0.00673238700255752,-0.0274464841932058,-0.999338388442993,0.0238598212599754,0.00637977616861463,-0.99903529882431,-0.0434471964836121,0.989617943763733,-0.0133842108771205,-0.143098726868629,0.990428686141968,-0.00719218095764518,-0.137838095426559,0.986011445522308,-0.0364739298820496,-0.162637799978256,0.990428686141968,-0.00719218095764518,-0.137838095426559,
- 0.989617943763733,-0.0133842108771205,-0.143098726868629,0.993201613426209,0.0199359655380249,-0.114687025547028,-0.0148427318781614,0.999853134155273,0.00856927689164877,-0.025729563087225,0.999660491943359,-0.00410309759899974,-0.00202164961956441,0.999722242355347,0.023483894765377,-0.025729563087225,0.999660491943359,-0.00410309759899974,-0.0148427318781614,0.999853134155273,0.00856927689164877,-0.0430767275393009,0.998775959014893,-0.0243102833628654,-0.00259300600737333,-0.999967813491821,-0.00758891133591533,-0.00223774113692343,-0.999972403049469,-0.00709137041121721,-0.0028590012807399,-0.99996417760849,-0.00796143151819706,-0.00259300600737333,-0.999967813491821,-0.00758891133591533,-0.0028590012807399,-0.99996417760849,-0.00796143151819706,-0.00320936134085059,-0.999959111213684,-0.00845210254192352,-0.998221099376678,-0.00656697805970907,0.0592576377093792,-0.998150706291199,-0.00485055381432176,0.0605934374034405,-0.997926414012909,-1.8693103811529e-006,0.0643652603030205,-0.998150706291199,-0.00485055381432176,0.0605934374034405,-0.998221099376678,-0.00656697805970907,0.0592576377093792,-0.998384714126587,-0.0111150611191988,0.0557166263461113,0.998027980327606,-0.0151976142078638,-0.0609031952917576,0.998283088207245,-0.0250273365527391,-0.0529576949775219,0.998235642910004,-0.0226303022354841,-0.0548963434994221,0.998235642910004,-0.0226303022354841,-0.0548963434994221,0.998283088207245,-0.0250273365527391,-0.0529576949775219,0.998370766639709,-0.0325879827141762,-0.0468383692204952,-0.0114484028890729,0.999850273132324,-0.0129777081310749,-0.0115979975089431,0.999851822853088,-0.0127190751954913,-0.0117984460666776,0.999853849411011,-0.0123725216835737,-0.0115979975089431,0.999851822853088,-0.0127190751954913,-0.0114484028890729,0.999850273132324,-0.0129777081310749,-0.0112519869580865,0.999848008155823,-0.0133172841742635,-0.0448428355157375,-0.0114033194258809,-0.998929023742676,-0.0440832003951073,-0.00988628249615431,-0.998978912830353,-0.0429697073996067,-0.00766300270333886,-0.999047040939331,
- -0.0440832003951073,-0.00988628249615431,-0.998978912830353,-0.0421281196177006,-0.00598294707015157,-0.999094307422638,-0.0429697073996067,-0.00766300270333886,-0.999047040939331,0.0423380956053734,-0.00269748759455979,0.999099731445313,0.0431292429566383,-0.00421729870140553,0.999060571193695,0.0441378764808178,-0.00615523941814899,0.999006509780884,0.0441378764808178,-0.00615523941814899,0.999006509780884,0.0431292429566383,-0.00421729870140553,0.999060571193695,0.0449139066040516,-0.00764653412625194,0.998961627483368,-0.201195627450943,-0.979360580444336,0.019316703081131,-0.197036609053612,-0.980083763599396,0.0247432999312878,-0.188671231269836,-0.981394112110138,0.0356182567775249,-0.197036609053612,-0.980083763599396,0.0247432999312878,-0.201195627450943,-0.979360580444336,0.019316703081131,-0.209815219044685,-0.977707982063293,0.00802726577967405,0.981462121009827,-0.1915552765131,-0.00622363062575459,0.977532863616943,-0.209746032953262,-0.0208820626139641,0.97618305683136,-0.215445220470428,-0.025491788983345,0.97618305683136,-0.215445220470428,-0.025491788983345,0.977532863616943,-0.209746032953262,-0.0208820626139641,0.971194326877594,-0.234711304306984,-0.0411365740001202,-0.985784113407135,0.164383962750435,0.0347505360841751,-0.984483182430267,0.173430725932121,0.0267332643270493,-0.989276766777039,0.131401836872101,0.0637558549642563,-0.978322386741638,0.207061395049095,-0.00330703868530691,-0.984483182430267,0.173430725932121,0.0267332643270493,-0.985784113407135,0.164383962750435,0.0347505360841751,0.211760625243187,0.976230382919312,-0.0461703538894653,0.212142944335938,0.97612065076828,-0.0467337369918823,0.212836742401123,0.975919902324677,-0.0477563850581646,0.212142944335938,0.97612065076828,-0.0467337369918823,0.211760625243187,0.976230382919312,-0.0461703538894653,0.211043164134026,0.97643506526947,-0.0451135523617268,0.015581302344799,0.00443743588402867,0.999868810176849,0.0143385734409094,0.00792676396667957,0.999865770339966,0.0170019995421171,0.000447591737611219,0.99985533952713,0.0130515499040484,0.0115397768095136,0.999848306179047,
- 0.0143385734409094,0.00792676396667957,0.999865770339966,0.015581302344799,0.00443743588402867,0.999868810176849,-0.0117865316569805,-0.0051251957193017,-0.999917387962341,-0.00692932400852442,0.000258403655607253,-0.999975919723511,-0.0165913198143244,-0.0104511035606265,-0.999807834625244,-0.00692932400852442,0.000258403655607253,-0.999975919723511,-0.0117865316569805,-0.0051251957193017,-0.999917387962341,-0.00192776578478515,0.00580156175419688,-0.999981343746185,-0.0171805452555418,0.0156567599624395,0.999729752540588,-0.002747270045802,0.0388180762529373,0.999242424964905,-0.0323913544416428,-0.00878717098385096,0.999436736106873,-0.0171805452555418,0.0156567599624395,0.999729752540588,-0.0323913544416428,-0.00878717098385096,0.999436736106873,-0.0491671785712242,-0.0357878357172012,0.998149156570435,-0.0195071753114462,0.0205798987299204,-0.9995978474617,-0.0261173769831657,0.031449306756258,-0.99916410446167,-0.0335292816162109,0.0436392053961754,-0.998484551906586,-0.0261173769831657,0.031449306756258,-0.99916410446167,-0.0195071753114462,0.0205798987299204,-0.9995978474617,-0.0140359969809651,0.0115848388522863,-0.999834358692169,-0.999845445156097,0.0149207543581724,0.00929528754204512,-0.999989211559296,0.00387481856159866,-0.0025635443162173,-0.999988675117493,0.00248382659628987,-0.00405677733942866,-0.999988675117493,0.00248382659628987,-0.00405677733942866,-0.999989211559296,0.00387481856159866,-0.0025635443162173,-0.999822676181793,-0.00909700524061918,-0.0164877381175756,-0.00845081452280283,0.999884009361267,0.0126689821481705,-0.0371005013585091,0.998496532440186,-0.0403518192470074,0.0125783551484346,0.998592674732208,0.0515214316546917,-0.0371005013585091,0.998496532440186,-0.0403518192470074,-0.00845081452280283,0.999884009361267,0.0126689821481705,-0.06134894490242,0.994464159011841,-0.0853083059191704,0.995332658290863,-0.0391091294586658,0.088223785161972,0.999220728874207,0.00771901337429881,0.0387087278068066,0.999369621276855,0.0131133086979389,0.032990887761116,0.997832775115967,0.0627611726522446,-0.0197712853550911,
- 0.999369621276855,0.0131133086979389,0.032990887761116,0.999220728874207,0.00771901337429881,0.0387087278068066,-0.0324963741004467,-0.999286353588104,0.0192552525550127,-0.0165854394435883,-0.999823808670044,-0.00878679100424051,-0.048002865165472,-0.997758507728577,0.0466226413846016,-0.0165854394435883,-0.999823808670044,-0.00878679100424051,-0.0324963741004467,-0.999286353588104,0.0192552525550127,-0.00549822906032205,-0.999584257602692,-0.0283039808273315,-0.0173068754374981,-0.00445355242118239,-0.999840319156647,0.000723095086868852,-0.0376486033201218,-0.999290823936462,-0.040903739631176,0.0390692465007305,-0.998398959636688,-0.0173068754374981,-0.00445355242118239,-0.999840319156647,-0.040903739631176,0.0390692465007305,-0.998398959636688,-0.059785783290863,0.07396050542593,-0.99546754360199,-0.0210129600018263,-0.05345668643713,0.998349070549011,-0.0312288254499435,-0.0737096294760704,0.996790707111359,-0.0387755408883095,-0.0886670649051666,0.995306372642517,-0.0312288254499435,-0.0737096294760704,0.996790707111359,-0.0210129600018263,-0.05345668643713,0.998349070549011,-0.015109253115952,-0.0417498089373112,0.999013841152191,-0.999978244304657,-0.00542035885155201,0.00376283749938011,-0.999772071838379,-0.0187658201903105,-0.010179178789258,-0.999978423118591,-0.00422201910987496,0.00501457182690501,-0.999978244304657,-0.00542035885155201,0.00376283749938011,-0.999978423118591,-0.00422201910987496,0.00501457182690501,-0.999720692634583,0.0110024809837341,0.020914975553751,-0.0233545061200857,-0.999633848667145,-0.0136607587337494,-0.00414347415789962,-0.998819589614868,-0.0483978465199471,-0.0404131524264812,-0.99903404712677,0.0172584466636181,-0.00414347415789962,-0.998819589614868,-0.0483978465199471,-0.0233545061200857,-0.999633848667145,-0.0136607587337494,0.0109928026795387,-0.997069656848907,-0.0757049918174744,0.998976826667786,-0.030198335647583,-0.0336651466786861,0.999170899391174,-0.0270035937428474,-0.0304672922939062,0.996979296207428,-0.053147979080677,-0.0566350780427456,0.999170899391174,-0.0270035937428474,-0.0304672922939062,
- 0.998976826667786,-0.030198335647583,-0.0336651466786861,0.999980747699738,-0.00232263817451894,-0.00575991626828909,-0.0115799158811569,0.99504154920578,0.0987835004925728,-0.0199501365423203,0.996225774288177,0.0844768434762955,-0.00530752819031477,0.993974566459656,0.109483018517494,-0.0199501365423203,0.996225774288177,0.0844768434762955,-0.0115799158811569,0.99504154920578,0.0987835004925728,-0.0286580324172974,0.997166097164154,0.0695582181215286,-0.0994029864668846,0.00305727054364979,-0.995042562484741,-0.105304598808289,-0.00669552618637681,-0.994417488574982,-0.103154696524143,-0.00314013310708106,-0.994660377502441,-0.103154696524143,-0.00314013310708106,-0.994660377502441,-0.0974143445491791,0.0063387518748641,-0.995223701000214,-0.0994029864668846,0.00305727054364979,-0.995042562484741,-0.128993988037109,-0.990738213062286,0.0424077846109867,-0.129783228039742,-0.990688502788544,0.0411437153816223,-0.127859383821487,-0.990805804729462,0.0442240051925182,-0.128993988037109,-0.990738213062286,0.0424077846109867,-0.127859383821487,-0.990805804729462,0.0442240051925182,-0.126708477735519,-0.99086982011795,0.0460651889443398,0.987845003604889,-0.142132818698883,-0.0629329979419708,0.985938727855682,-0.151775345206261,-0.0699219852685928,0.992102444171906,-0.117139779031277,-0.0448447614908218,0.985938727855682,-0.151775345206261,-0.0699219852685928,0.987845003604889,-0.142132818698883,-0.0629329979419708,0.980259120464325,-0.176954180002213,-0.0881995558738709,-0.989955484867096,0.123298138380051,0.0691788271069527,-0.989343643188477,0.126582562923431,0.0719448402523994,-0.986508548259735,0.140640899538994,0.083791621029377,-0.989955484867096,0.123298138380051,0.0691788271069527,-0.992527723312378,0.108175866305828,0.056451827287674,-0.989343643188477,0.126582562923431,0.0719448402523994,0.013584173284471,-0.053891122341156,0.998454391956329,0.0473948158323765,0.00283703999593854,0.998872220516205,0.0259257517755032,-0.0332229435443878,0.999111592769623,0.0588950179517269,0.0222088787704706,0.998017191886902,
- 0.0259257517755032,-0.0332229435443878,0.999111592769623,0.0473948158323765,0.00283703999593854,0.998872220516205,0.12194562703371,0.991200268268585,-0.0514920018613338,0.115649119019508,0.992591500282288,-0.0372478142380714,0.10959517210722,0.99369603395462,-0.0236037392169237,0.115649119019508,0.992591500282288,-0.0372478142380714,0.12194562703371,0.991200268268585,-0.0514920018613338,0.126764848828316,0.989966154098511,-0.0624314993619919,0.0207777302712202,0.0212820805609226,-0.999557554721832,0.0431264825165272,-0.0144058903679252,-0.998965680599213,0.0639365836977959,-0.0477241016924381,-0.996812224388123,0.0207777302712202,0.0212820805609226,-0.999557554721832,0.00200616614893079,0.0511832907795906,-0.998687207698822,0.0431264825165272,-0.0144058903679252,-0.998965680599213,0.0235292445868254,0.0323616713285446,0.999199271202087,0.031781479716301,0.0482521392405033,0.99832946062088,0.039584044367075,0.0632805675268173,0.997210502624512,0.031781479716301,0.0482521392405033,0.99832946062088,0.0235292445868254,0.0323616713285446,0.999199271202087,0.0175053849816322,0.0207647792994976,0.999631106853485,0.999244570732117,0.0388498567044735,0.00104150059632957,0.998751819133759,0.0493120029568672,-0.00794015359133482,0.99932861328125,0.0365110039710999,0.00304849143140018,0.999244570732117,0.0388498567044735,0.00104150059632957,0.99932861328125,0.0365110039710999,0.00304849143140018,0.999595880508423,0.0255622398108244,0.0124393729493022,-0.00492563378065825,0.999759256839752,0.0213827453553677,-0.0239908881485462,0.999677538871765,-0.00831927731633186,0.0199924502521753,0.997989118099213,0.0601484254002571,-0.0239908881485462,0.999677538871765,-0.00831927731633186,-0.00492563378065825,0.999759256839752,0.0213827453553677,-0.0463222526013851,0.997994005680084,-0.0431557632982731,-0.99907261133194,-0.0214110966771841,-0.0373568199574947,-0.999106645584106,-0.0273434072732925,-0.0322203002870083,-0.998334765434265,0.0020656471606344,-0.057650551199913,-0.999106645584106,-0.0273434072732925,-0.0322203002870083,-0.99907261133194,-0.0214110966771841,-0.0373568199574947,
- -0.998458445072174,-0.0548754185438156,-0.00833643414080143,0.0508969277143478,-0.998678863048553,0.00707986112684011,0.0605589561164379,-0.998138904571533,-0.00716257048770785,0.0398325547575951,-0.998933255672455,0.0233596004545689,0.0605589561164379,-0.998138904571533,-0.00716257048770785,0.0508969277143478,-0.998678863048553,0.00707986112684011,0.0755098164081573,-0.99671596288681,-0.0292492415755987,-0.00132602418307215,0.999333024024963,0.0364925563335419,0.00428456626832485,0.999443471431732,0.0330817922949791,0.0102761704474688,0.999513685703278,0.0294377021491528,0.0166245065629482,0.999534726142883,0.0255747437477112,0.0102761704474688,0.999513685703278,0.0294377021491528,0.00428456626832485,0.999443471431732,0.0330817922949791,-0.998705446720123,0.00220628571696579,0.0508177354931831,-0.999048411846161,-0.0284312628209591,0.0330771803855896,-0.999025166034698,-0.0124047761783004,0.0423650071024895,-0.999048411846161,-0.0284312628209591,0.0330771803855896,-0.998791217803955,-0.0423076562583447,0.0250216461718082,-0.999025166034698,-0.0124047761783004,0.0423650071024895,0.0457820929586887,-0.99886280298233,-0.0133027955889702,0.0519098863005638,-0.998602986335754,-0.00986708421260118,0.0407788790762424,-0.999038398265839,-0.0161065515130758,0.0519098863005638,-0.998602986335754,-0.00986708421260118,0.0457820929586887,-0.99886280298233,-0.0133027955889702,0.0579147785902023,-0.99830037355423,-0.00649841269478202,0.00276381149888039,0.0255046598613262,-0.999670922756195,0.00313727627508342,0.0251234695315361,-0.999679386615753,0.00700945919379592,0.0211707837879658,-0.999751269817352,0.00313727627508342,0.0251234695315361,-0.999679386615753,0.00276381149888039,0.0255046598613262,-0.999670922756195,-0.000756069784983993,0.029096893966198,-0.999576330184937,-0.000773101870436221,-0.000115874558105133,0.999999701976776,-0.0015492073725909,-0.000910062866751105,0.999998390674591,-0.0234078746289015,-0.0232783146202564,0.999454975128174,-0.0015492073725909,-0.000910062866751105,0.999998390674591,-0.000773101870436221,-0.000115874558105133,0.999999701976776,
- 0.0223455261439085,0.0235409699380398,0.999473035335541,0.999977946281433,0.00578890228644013,0.00326373614370823,0.999592423439026,-0.0226209033280611,0.0174167603254318,0.998567700386047,-0.045184064656496,0.0286527220159769,0.999592423439026,-0.0226209033280611,0.0174167603254318,0.999977946281433,0.00578890228644013,0.00326373614370823,0.999602258205414,0.0272089838981628,-0.0074112880975008,-0.999010384082794,-0.0040317103266716,-0.0442956015467644,-0.999446928501129,0.0159863289445639,-0.0291589554399252,-0.998930990695953,0.0457522831857204,-0.00660330802202225,-0.999446928501129,0.0159863289445639,-0.0291589554399252,-0.999010384082794,-0.0040317103266716,-0.0442956015467644,-0.996945738792419,-0.0366962105035782,-0.0689390674233437,0.998404204845428,0.047034990042448,-0.0312505923211575,0.998882651329041,0.0392995178699493,-0.0262485723942518,0.999372124671936,0.0293660573661327,-0.0198251493275166,0.998882651329041,0.0392995178699493,-0.0262485723942518,0.998404204845428,0.047034990042448,-0.0312505923211575,0.997473478317261,0.0592701509594917,-0.0391621291637421,0.00258238194510341,0.0259596426039934,-0.999659657478333,0.0039697946049273,0.024338785558939,-0.999695777893066,0.0106443176046014,0.0165393743664026,-0.999806642532349,0.00258238194510341,0.0259596426039934,-0.999659657478333,-0.00394502142444253,0.0335835665464401,-0.99942809343338,0.0039697946049273,0.024338785558939,-0.999695777893066,0.0147721227258444,0.999887347221375,0.00264681037515402,-0.00293017947115004,0.999863982200623,0.0162320621311665,0.0585860945284367,0.997800767421722,-0.0310072638094425,-0.00293017947115004,0.999863982200623,0.0162320621311665,0.0147721227258444,0.999887347221375,0.00264681037515402,-0.0438885167241097,0.997900009155273,0.0476379357278347,-0.0346426852047443,-0.0188980754464865,0.99922102689743,-0.0326742865145206,-0.0211314037442207,0.999242722988129,-0.0430877730250359,-0.00931049976497889,0.999027848243713,-0.0326742865145206,-0.0211314037442207,0.999242722988129,-0.0346426852047443,-0.0188980754464865,0.99922102689743,
- -0.0227031614631414,-0.0324366129934788,0.99921590089798,-0.00589799508452415,-0.998051047325134,-0.0621226690709591,0.00225694593973458,-0.998462378978729,-0.0553887523710728,-0.0317837297916412,-0.996004462242126,-0.0834552273154259,0.00225694593973458,-0.998462378978729,-0.0553887523710728,-0.00589799508452415,-0.998051047325134,-0.0621226690709591,0.022469162940979,-0.998999416828156,-0.0386709235608578,-0.215013355016708,-0.972388505935669,0.0907186195254326,-0.215017378330231,-0.972388327121735,0.0907112210988998,-0.215009987354279,-0.972388684749603,0.090724803507328,-0.215013355016708,-0.972388505935669,0.0907186195254326,-0.215009987354279,-0.972388684749603,0.090724803507328,-0.215005904436111,-0.972388863563538,0.090732216835022,-0.958692491054535,0.192584961652756,-0.2093316167593,-0.958657383918762,0.19315579533577,-0.20896615087986,-0.958548128604889,0.194886326789856,-0.207857176661491,-0.958657383918762,0.19315579533577,-0.20896615087986,-0.958692491054535,0.192584961652756,-0.2093316167593,-0.958789885044098,0.190962120890617,-0.210369810461998,0.955522179603577,-0.211394533514977,0.205644577741623,0.951488971710205,-0.220333650708199,0.214760020375252,0.95240992307663,-0.218328759074211,0.212715402245522,0.951488971710205,-0.220333650708199,0.214760020375252,0.948232471942902,-0.227262437343597,0.221826702356339,0.95240992307663,-0.218328759074211,0.212715402245522,0.203993052244186,0.972535669803619,-0.112076334655285,0.204124629497528,0.972490131855011,-0.112231940031052,0.204275846481323,0.972437679767609,-0.112410850822926,0.204124629497528,0.972490131855011,-0.112231940031052,0.203993052244186,0.972535669803619,-0.112076334655285,0.203845173120499,0.972586929798126,-0.11190140247345,0.12874798476696,-0.107647188007832,-0.985817492008209,0.131936728954315,-0.103561110794544,-0.985833525657654,0.130605667829514,-0.105267606675625,-0.985830068588257,0.127553015947342,-0.109176479279995,-0.985804557800293,0.12874798476696,-0.107647188007832,-0.985817492008209,0.130605667829514,-0.105267606675625,-0.985830068588257,
- -0.135011360049248,0.0902119725942612,0.98672878742218,-0.13487121462822,0.0896714106202126,0.986797153949738,-0.134682044386864,0.0889418944716454,0.986889123916626,-0.134682044386864,0.0889418944716454,0.986889123916626,-0.13487121462822,0.0896714106202126,0.986797153949738,-0.134546235203743,0.0884183570742607,0.986954689025879,0.225778877735138,0.969803929328918,-0.0922189801931381,0.223402217030525,0.969956934452057,-0.0963069200515747,0.220534920692444,0.970112383365631,-0.101224519312382,0.223402217030525,0.969956934452057,-0.0963069200515747,0.217847853899002,0.970229208469391,-0.105818994343281,0.220534920692444,0.970112383365631,-0.101224519312382,0.051991730928421,0.0319062657654285,0.998137772083282,0.0525769703090191,0.0287727080285549,0.998202264308929,0.0537362694740295,0.0225561801344156,0.998300433158875,0.0537362694740295,0.0225561801344156,0.998300433158875,0.0525769703090191,0.0287727080285549,0.998202264308929,0.054371751844883,0.0191431660205126,0.998337209224701,-0.214568257331848,-0.976619184017181,0.0132447937503457,-0.213817358016968,-0.97676420211792,0.0146210612729192,-0.213059335947037,-0.976908087730408,0.0160093642771244,-0.214568257331848,-0.976619184017181,0.0132447937503457,-0.215119063854218,-0.976511120796204,0.0122345741838217,-0.213817358016968,-0.97676420211792,0.0146210612729192,-0.977420210838318,0.211228504776955,0.00568757485598326,-0.976100921630859,0.21710479259491,0.00962587259709835,-0.973283767700195,0.228931948542595,0.0175739359110594,-0.976100921630859,0.21710479259491,0.00962587259709835,-0.977420210838318,0.211228504776955,0.00568757485598326,-0.97957855463028,0.201058641076088,-0.00111173989716917,0.976147890090942,-0.217063844203949,-0.00430938880890608,0.976891815662384,-0.213605761528015,-0.00740036321803927,0.978812336921692,-0.204146236181259,-0.0158335287123919,0.976891815662384,-0.213605761528015,-0.00740036321803927,0.976147890090942,-0.217063844203949,-0.00430938880890608,0.974271237850189,-0.225357055664063,0.00312142423354089,0.0123808141797781,-0.0263537503778934,-0.999576091766357,
- -0.0143451746553183,-0.0666115432977676,-0.997675895690918,0.0233262162655592,-0.00983610656112432,-0.999679446220398,-0.0143451746553183,-0.0666115432977676,-0.997675895690918,0.0123808141797781,-0.0263537503778934,-0.999576091766357,-0.0264816340059042,-0.0848580896854401,-0.996041059494019,0.991308391094208,0.0203038603067398,-0.129982516169548,0.991127073764801,0.0217893216758966,-0.131119593977928,0.990177810192108,0.0291432905942202,-0.136742934584618,0.991127073764801,0.0217893216758966,-0.131119593977928,0.991308391094208,0.0203038603067398,-0.129982516169548,0.99224990606308,0.0120674390345812,-0.123670406639576,-0.0881116092205048,0.0554006434977055,-0.994568824768066,-0.0893437042832375,0.0543694347143173,-0.994515776634216,-0.0942359566688538,0.0502715557813644,-0.994279801845551,-0.0836900398135185,0.0590985417366028,-0.994737803936005,-0.0893437042832375,0.0543694347143173,-0.994515776634216,-0.0881116092205048,0.0554006434977055,-0.994568824768066,0.109949052333832,-0.0417333394289017,0.993060708045959,0.100205928087235,-0.0499984137713909,0.993709623813629,0.152364104986191,-0.00549276918172836,0.988309264183044,0.100205928087235,-0.0499984137713909,0.993709623813629,0.109949052333832,-0.0417333394289017,0.993060708045959,0.0594227686524391,-0.0843566507101059,0.994662284851074,-0.992757439613342,0.0146001949906349,0.119244687259197,-0.992799460887909,0.0142842782661319,0.118933416903019,-0.993001282215118,0.0127428974956274,0.117414310574532,-0.992799460887909,0.0142842782661319,0.118933416903019,-0.992757439613342,0.0146001949906349,0.119244687259197,-0.992549419403076,0.0161462109535933,0.120767779648304,0.00147558306343853,0.996900618076324,0.0786582231521606,0.00468208733946085,0.997118651866913,0.0757115110754967,0.0064532901160419,0.997231185436249,0.074083186686039,0.0064532901160419,0.997231185436249,0.074083186686039,0.00468208733946085,0.997118651866913,0.0757115110754967,0.0100047821179032,0.997439205646515,0.070816732943058,-0.0276641454547644,-0.998173415660858,-0.0537079498171806,6.24255553702824e-005,-0.996848940849304,-0.079323798418045,
- -0.00860472768545151,-0.997415721416473,-0.0713286027312279,0.01951964199543,-0.995070278644562,-0.0972322896122932,-0.00860472768545151,-0.997415721416473,-0.0713286027312279,6.24255553702824e-005,-0.996848940849304,-0.079323798418045,0.0171614326536655,0.0869437754154205,-0.996065378189087,0.0372565165162086,0.0510111749172211,-0.998002886772156,0.0559653230011463,0.0173770058900118,-0.998281478881836,0.0372565165162086,0.0510111749172211,-0.998002886772156,0.0171614326536655,0.0869437754154205,-0.996065378189087,0.00030641964985989,0.116928897798061,-0.99314022064209,0.028781158849597,-0.037652276456356,0.998876392841339,0.0377886258065701,-0.0222263503819704,0.999038577079773,0.0463155843317509,-0.0075977323576808,0.998897910118103,0.0377886258065701,-0.0222263503819704,0.999038577079773,0.028781158849597,-0.037652276456356,0.998876392841339,0.0222187899053097,-0.0488733388483524,0.998557925224304,0.999930679798126,-0.011132481507957,-0.00382934301160276,0.999922335147858,0.000216539643588476,-0.0124562839046121,0.999909043312073,-0.0133074428886175,-0.00217576348222792,0.999930679798126,-0.011132481507957,-0.00382934301160276,0.999909043312073,-0.0133074428886175,-0.00217576348222792,0.999659657478333,-0.0251750443130732,0.00684854760766029,0.0458765961229801,0.994769692420959,0.0912603735923767,0.0258558001369238,0.997871458530426,0.0598657801747322,0.0705930665135384,0.98900032043457,0.129980817437172,0.0258558001369238,0.997871458530426,0.0598657801747322,0.0458765961229801,0.994769692420959,0.0912603735923767,0.00359509908594191,0.99968284368515,0.0249272249639034,-0.999026954174042,0.0313730128109455,-0.0310000814497471,-0.999314248561859,0.0257132221013308,-0.0266416780650616,-0.997065722942352,0.0571946687996387,-0.0508799776434898,-0.999314248561859,0.0257132221013308,-0.0266416780650616,-0.999026954174042,0.0313730128109455,-0.0310000814497471,-0.99998414516449,-0.00453264499083161,-0.00334449391812086,0.000727508449926972,-0.998109698295593,-0.0614528656005859,0.0108586428686976,-0.996989190578461,-0.076775535941124,
- -0.0101659400388598,-0.998937249183655,-0.0449544340372086,0.0108586428686976,-0.996989190578461,-0.076775535941124,0.000727508449926972,-0.998109698295593,-0.0614528656005859,0.0256592053920031,-0.99474424123764,-0.0991236343979836,-0.00049199559725821,0.999991357326508,0.00413290038704872,-0.00273467763327062,0.999959647655487,0.00856011547148228,-0.00482524139806628,0.999907910823822,0.0126869678497314,-0.00273467763327062,0.999959647655487,0.00856011547148228,-0.00049199559725821,0.999991357326508,0.00413290038704872,0.00120000075548887,0.999998986721039,0.000792725884821266,-0.0194959733635187,-0.0854519307613373,-0.996151506900787,-0.0433346591889858,-0.0345379263162613,-0.99846339225769,-0.0297026187181473,-0.0637021288275719,-0.997526824474335,-0.0297026187181473,-0.0637021288275719,-0.997526824474335,-0.0433346591889858,-0.0345379263162613,-0.99846339225769,-0.0524710491299629,-0.0149175049737096,-0.998511075973511,-0.0162916444242001,-0.998920917510986,0.0434913709759712,-0.0179256051778793,-0.999027192592621,0.0402914918959141,-0.0136351017281413,-0.998720705509186,0.0486917458474636,-0.0162916444242001,-0.998920917510986,0.0434913709759712,-0.0136351017281413,-0.998720705509186,0.0486917458474636,-0.0113794021308422,-0.998524129390717,0.0531054362654686,0.998299241065979,-0.0566079989075661,-0.0139354337006807,0.98861289024353,-0.130370885133743,-0.0751526579260826,0.997489392757416,-0.067103736102581,-0.0226273685693741,0.997489392757416,-0.067103736102581,-0.0226273685693741,0.99927294254303,0.00586056150496006,0.0376708768308163,0.998299241065979,-0.0566079989075661,-0.0139354337006807,-0.999716103076935,0.00751964654773474,0.022605899721384,-0.999714076519012,0.00736091891303658,0.022749949246645,-0.999739408493042,0.00961271394044161,0.0207062773406506,-0.999716103076935,0.00751964654773474,0.022605899721384,-0.999692142009735,0.00586334150284529,0.024108961224556,-0.999714076519012,0.00736091891303658,0.022749949246645,0.0197157226502895,0.0145479701459408,0.999699771404266,-0.0233400911092758,-0.077481247484684,0.996720552444458,
- 0.00368098309263587,-0.0197587069123983,0.999797999858856,-0.0404080785810947,-0.113883785903454,0.992671966552734,0.00368098309263587,-0.0197587069123983,0.999797999858856,-0.0233400911092758,-0.077481247484684,0.996720552444458,-0.0473366007208824,-0.998875975608826,-0.0024374055210501,-0.0457119531929493,-0.998954653739929,-0.000221664347918704,-0.0481247082352638,-0.998835146427155,-0.00351241277530789,-0.0473366007208824,-0.998875975608826,-0.0024374055210501,-0.0481247082352638,-0.998835146427155,-0.00351241277530789,-0.0496583469212055,-0.998750507831573,-0.00560468295589089,0.998006939888,-0.0623234510421753,-0.00989952124655247,0.997517466545105,-0.068720318377018,-0.0153739657253027,0.999106585979462,-0.0415200665593147,0.00788271147757769,0.997517466545105,-0.068720318377018,-0.0153739657253027,0.998006939888,-0.0623234510421753,-0.00989952124655247,0.99590790271759,-0.0853744372725487,-0.0296410862356424,-0.99967896938324,0.0253329407423735,0.000318156788125634,-0.999659657478333,0.0260706450790167,0.000979634816758335,-0.999586999416351,0.0285546872764826,0.00320716924034059,-0.999659657478333,0.0260706450790167,0.000979634816758335,-0.99967896938324,0.0253329407423735,0.000318156788125634,-0.99974924325943,0.022262379527092,-0.00243489583954215,0.0787601247429848,0.990212976932526,0.115217119455338,0.0754308998584747,0.989946782588959,0.119647540152073,0.0686443448066711,0.989310503005981,0.128657892346382,0.0754308998584747,0.989946782588959,0.119647540152073,0.0787601247429848,0.990212976932526,0.115217119455338,0.0857324674725533,0.99067234992981,0.105916619300842,-0.00462309224531055,-0.0170123167335987,0.999844551086426,-0.00292213819921017,-0.0205620061606169,0.999784290790558,-0.00616996129974723,-0.0137838292866945,0.999886035919189,-0.00152521836571395,-0.0234768968075514,0.999723136425018,-0.00292213819921017,-0.0205620061606169,0.999784290790558,-0.00462309224531055,-0.0170123167335987,0.999844551086426,0.00354869430884719,-0.0130085358396173,-0.999909043312073,0.00825307704508305,-0.00655097188428044,-0.999944448471069,
- -0.00237800856120884,-0.0211423207074404,-0.999773621559143,0.00825307704508305,-0.00655097188428044,-0.999944448471069,0.00354869430884719,-0.0130085358396173,-0.999909043312073,0.0144825112074614,0.00200174353085458,-0.999893069267273,-0.00339762447401881,-0.999992728233337,0.00171770434826612,-0.00226274272426963,-0.999991834163666,0.00334944017231464,-0.000522835005540401,-0.99998265504837,0.00585103407502174,-0.00226274272426963,-0.999991834163666,0.00334944017231464,-0.00339762447401881,-0.999992728233337,0.00171770434826612,-0.00527397450059652,-0.999985635280609,-0.000980173936113715,-0.999934792518616,-0.0109490994364023,0.00325192231684923,-0.999944746494293,-0.00947580207139254,0.00454230001196265,-0.999915361404419,0.000188946592970751,0.0130059029906988,-0.999794065952301,-0.0197896771132946,-0.00449209241196513,-0.999944746494293,-0.00947580207139254,0.00454230001196265,-0.999934792518616,-0.0109490994364023,0.00325192231684923,0.999518275260925,-0.0304941423237324,-0.00577131705358624,0.999723553657532,-0.0235094241797924,0.000365746789611876,0.993978261947632,-0.0918485447764397,-0.0597583688795567,0.999518275260925,-0.0304941423237324,-0.00577131705358624,0.998116254806519,0.0341570004820824,0.0509644821286201,0.999723553657532,-0.0235094241797924,0.000365746789611876,-0.0128915840759873,0.999424636363983,-0.0313740521669388,-0.0142954094335437,0.999467551708221,-0.0293283332139254,-0.0165452845394611,0.9995236992836,-0.0260490793734789,-0.0142954094335437,0.999467551708221,-0.0293283332139254,-0.0128915840759873,0.999424636363983,-0.0313740521669388,-0.0107655813917518,0.999347746372223,-0.0344715639948845,-0.00361690856516361,-0.0285812560468912,-0.999584972858429,-0.000874325516633689,-0.0241641625761986,-0.999707579612732,0.00181836122646928,-0.0198268350213766,-0.999801814556122,-0.000874325516633689,-0.0241641625761986,-0.999707579612732,0.00510678300634027,-0.0145291006192565,-0.999881386756897,0.00181836122646928,-0.0198268350213766,-0.999801814556122,-0.00180524250026792,0.00790009368211031,0.999967157840729,
- 0.0027489704079926,0.000825256749521941,0.999995827674866,-0.00717153726145625,0.0162360109388828,0.999842405319214,0.0027489704079926,0.000825256749521941,0.999995827674866,-0.00180524250026792,0.00790009368211031,0.999967157840729,0.0085247615352273,-0.00814778357744217,0.999930441379547,0.0168624073266983,-0.037795040756464,0.999143242835999,0.0665180385112762,0.0549443885684013,0.996271312236786,0.0924952551722527,0.103771038353443,0.990290939807892,0.0168624073266983,-0.037795040756464,0.999143242835999,-0.0103126438334584,-0.0882251858711243,0.996047139167786,0.0665180385112762,0.0549443885684013,0.996271312236786,0.00927624944597483,-0.0382445529103279,-0.999225378036499,-0.00198951410129666,-0.0585064813494682,-0.998285174369812,0.0157527271658182,-0.0265829600393772,-0.999522507190704,0.00927624944597483,-0.0382445529103279,-0.999225378036499,-0.00916322600096464,-0.0713932663202286,-0.997406125068665,-0.00198951410129666,-0.0585064813494682,-0.998285174369812,0.995454728603363,-0.0946633443236351,-0.0104294279590249,0.995575428009033,-0.0932326465845108,-0.0117156403139234,0.995875775814056,-0.0894603580236435,-0.0151052922010422,0.995575428009033,-0.0932326465845108,-0.0117156403139234,0.995454728603363,-0.0946633443236351,-0.0104294279590249,0.995116114616394,-0.0984620526432991,-0.00701258890330791,-0.998232364654541,0.0502461418509483,0.0317412316799164,-0.998123466968536,0.0540699847042561,0.0287425722926855,-0.998359024524689,0.0440306589007378,0.0366118289530277,-0.998123466968536,0.0540699847042561,0.0287425722926855,-0.998232364654541,0.0502461418509483,0.0317412316799164,-0.997772812843323,0.0630873292684555,0.02166448533535,0.08245649933815,0.995543897151947,-0.0457518175244331,0.0798726454377174,0.995562314987183,-0.0497591197490692,0.085896372795105,0.995484232902527,-0.0404107868671417,0.0798726454377174,0.995562314987183,-0.0497591197490692,0.08245649933815,0.995543897151947,-0.0457518175244331,0.0775047913193703,0.995559334754944,-0.0534279868006706,-0.08469308167696,-0.991407036781311,0.0996952131390572,
- -0.0844423398375511,-0.991386890411377,0.100107252597809,-0.0841736122965813,-0.991365075111389,0.100548855960369,-0.0844423398375511,-0.991386890411377,0.100107252597809,-0.08469308167696,-0.991407036781311,0.0996952131390572,-0.0849630758166313,-0.991428434848785,0.0992513969540596,-0.0481347069144249,-0.0317392796278,-0.998336434364319,-0.0558146797120571,-0.0448905602097511,-0.997431516647339,-0.0528082996606827,-0.0397409871220589,-0.997813582420349,-0.0528082996606827,-0.0397409871220589,-0.997813582420349,-0.0449904687702656,-0.0263584405183792,-0.998639523983002,-0.0481347069144249,-0.0317392796278,-0.998336434364319,-0.0490755662322044,-0.997622728347778,0.0483783185482025,-0.0644720494747162,-0.995031118392944,0.075870007276535,-0.0806015431880951,-0.991230845451355,0.104712881147861,-0.0644720494747162,-0.995031118392944,0.075870007276535,-0.099314272403717,-0.985408067703247,0.138230308890343,-0.0806015431880951,-0.991230845451355,0.104712881147861,0.983251810073853,-0.165919065475464,-0.0754098519682884,0.991215884685516,-0.123698055744171,-0.0467975288629532,0.994573533535004,-0.0994854122400284,-0.0304332468658686,0.99917209148407,-0.0394317582249641,0.0100182872265577,0.994573533535004,-0.0994854122400284,-0.0304332468658686,0.991215884685516,-0.123698055744171,-0.0467975288629532,-0.0390014536678791,0.0102985063567758,0.999186038970947,0.00478318613022566,0.0976056605577469,0.995213687419891,-0.0243298020213842,0.0396479517221451,0.998917520046234,0.0181585401296616,0.12410844117403,0.992102563381195,-0.0243298020213842,0.0396479517221451,0.998917520046234,0.00478318613022566,0.0976056605577469,0.995213687419891,0.0825498253107071,0.996107637882233,0.0309055708348751,0.0762022137641907,0.996182978153229,0.0425768308341503,0.0695905014872551,0.996074795722961,0.0546994879841805,0.0762022137641907,0.996182978153229,0.0425768308341503,0.0825498253107071,0.996107637882233,0.0309055708348751,0.0881657376885414,0.995893716812134,0.0205527115613222,-0.996438801288605,0.0835069492459297,0.0116736674681306,
- -0.996630549430847,0.0808081105351448,0.0140547528862953,-0.995457828044891,0.0951943472027779,0.00134945567697287,-0.996630549430847,0.0808081105351448,0.0140547528862953,-0.996438801288605,0.0835069492459297,0.0116736674681306,-0.997074127197266,0.0736867785453796,0.0203323494642973,0.0481494814157486,0.99834269285202,0.03151910379529,0.0531103312969208,0.998413622379303,0.0186957642436028,0.0364030823111534,0.997426569461823,0.0617654994130135,0.0302198529243469,0.996524810791016,0.0776214152574539,0.0481494814157486,0.99834269285202,0.03151910379529,0.0364030823111534,0.997426569461823,0.0617654994130135,-0.0300963670015335,-0.01615478284657,-0.999416410923004,-0.0348081924021244,-0.0277490448206663,-0.99900871515274,-0.0335214324295521,-0.0245818458497524,-0.999135613441467,-0.0335214324295521,-0.0245818458497524,-0.999135613441467,-0.0288417860865593,-0.01306919939816,-0.999498546123505,-0.0300963670015335,-0.01615478284657,-0.999416410923004,-0.0492261983454227,-0.996818721294403,0.0626839101314545,-0.0496839359402657,-0.996864855289459,0.0615795478224754,-0.0480866692960262,-0.996697664260864,0.0654321014881134,-0.0492261983454227,-0.996818721294403,0.0626839101314545,-0.0480866692960262,-0.996697664260864,0.0654321014881134,-0.0474596470594406,-0.996627449989319,0.0669436231255531,0.998051702976227,-0.0609609372913837,-0.0132851134985685,0.998525381088257,-0.0491762347519398,-0.0229933727532625,0.997839152812958,-0.064937636256218,-0.0100057516247034,0.998051702976227,-0.0609609372913837,-0.0132851134985685,0.997839152812958,-0.064937636256218,-0.0100057516247034,0.99717766046524,-0.0750585049390793,-0.00165200966876,-0.998831033706665,0.0455303341150284,0.0162339750677347,-0.99867194890976,0.0481132306158543,0.0184239875525236,-0.997727572917938,0.0607502833008766,0.0291425362229347,-0.998831033706665,0.0455303341150284,0.0162339750677347,-0.999331831932068,0.0356873720884323,0.00789057742804289,-0.99867194890976,0.0481132306158543,0.0184239875525236,-0.006791977211833,0.00605608802288771,0.999958634376526,
- -0.0137326642870903,0.0327561646699905,0.999368965625763,-0.00450169574469328,-0.00275103095918894,0.999986171722412,-0.0137326642870903,0.0327561646699905,0.999368965625763,-0.006791977211833,0.00605608802288771,0.999958634376526,-0.0156760383397341,0.0402348637580872,0.999067306518555,0.998908340930939,-0.0283878520131111,0.0370976403355598,0.999774634838104,-0.00653118640184402,0.02019970305264,0.999726295471191,0.0232251919806004,-0.00282429251819849,0.999774634838104,-0.00653118640184402,0.02019970305264,0.998908340930939,-0.0283878520131111,0.0370976403355598,0.996190786361694,-0.0610136575996876,0.0622998774051666,-0.996764481067657,0.0711214020848274,0.0374476499855518,-0.997540950775146,0.0622649639844894,0.0321744084358215,-0.99831223487854,0.0519227422773838,0.0260171797126532,-0.997540950775146,0.0622649639844894,0.0321744084358215,-0.996764481067657,0.0711214020848274,0.0374476499855518,-0.99544882774353,0.0839555040001869,0.0450901724398136,0.00395684270188212,0.0445009656250477,0.999001562595367,0.0109765268862247,0.0523041598498821,0.99857085943222,0.00246114726178348,0.0428377501666546,0.999078989028931,0.00395684270188212,0.0445009656250477,0.999001562595367,0.00246114726178348,0.0428377501666546,0.999078989028931,-0.00475548719987273,0.0348100289702415,0.999382615089417,0.0273498296737671,0.99867856502533,-0.0435097888112068,0.00780754070729017,0.999557912349701,-0.0286909099668264,0.0675110220909119,0.994976341724396,-0.0739207714796066,0.00780754070729017,0.999557912349701,-0.0286909099668264,0.0273498296737671,0.99867856502533,-0.0435097888112068,-0.0355055145919323,0.999360740184784,0.00420216144993901,0.0291063785552979,-0.0371222794055939,-0.998886823654175,0.0267395433038473,-0.0396885313093662,-0.998854219913483,0.0391853116452694,-0.0261847674846649,-0.998888909816742,0.0267395433038473,-0.0396885313093662,-0.998854219913483,0.0291063785552979,-0.0371222794055939,-0.998886823654175,0.0148255368694663,-0.052593644708395,-0.998506009578705,-0.0263557825237513,-0.996392846107483,0.0806635469198227,
- -0.0173013992607594,-0.995987057685852,0.0878089219331741,-0.0458323210477829,-0.996815919876099,0.0652475580573082,-0.0173013992607594,-0.995987057685852,0.0878089219331741,-0.0263557825237513,-0.996392846107483,0.0806635469198227,0.0078786201775074,-0.994162023067474,0.107608996331692,0.0288094580173492,-0.9992835521698,-0.0245416201651096,0.0331859216094017,-0.998832643032074,-0.0351016148924828,0.0419203266501427,-0.997539401054382,-0.0561945289373398,0.0419203266501427,-0.997539401054382,-0.0561945289373398,0.0331859216094017,-0.998832643032074,-0.0351016148924828,0.0474263615906239,-0.996453762054443,-0.0695033296942711,0.0294784028083086,-0.997261822223663,-0.0678226128220558,0.0294783990830183,-0.997261822223663,-0.0678226053714752,0.0294783990830183,-0.997261822223663,-0.0678226053714752,0.0184287466108799,0.00372545816935599,0.999823212623596,-0.0081160394474864,0.0104103339836001,0.999912858009338,-0.00611563259735703,0.00561348861083388,0.99996554851532,0.0184287466108799,0.00372545816935599,0.999823212623596,-0.00611563259735703,0.00561348861083388,0.99996554851532,0.00945615489035845,-0.00229970715008676,0.999952614307404,0.0184287466108799,0.00372545816935599,0.999823212623596,0.00945615489035845,-0.00229970715008676,0.999952614307404,0.316285997629166,0.0902306437492371,0.944363057613373,0.108582854270935,0.991724491119385,0.0685003623366356,0.108582854270935,0.991724491119385,0.0685003623366356,0.108582861721516,0.99172455072403,0.0685003772377968,-0.00409290194511414,0.998242139816284,0.059126902371645,-0.0171966087073088,0.999056935310364,0.0398680716753006,0.00975412037223578,0.996791958808899,0.0794397592544556,-0.0171966087073088,0.999056935310364,0.0398680716753006,-0.00409290194511414,0.998242139816284,0.059126902371645,-0.0361595302820206,0.999274790287018,0.0119350543245673,-0.02039266936481,-0.998642325401306,0.0479339584708214,-0.0233871545642614,-0.998856484889984,0.0416986122727394,-0.0174307767301798,-0.998408854007721,0.0536273904144764,-0.00786785781383514,-0.997247159481049,0.0737304612994194,
- -0.02039266936481,-0.998642325401306,0.0479339584708214,-0.0174307767301798,-0.998408854007721,0.0536273904144764,-0.02039266936481,-0.998642325401306,0.0479339584708214,-0.00786785781383514,-0.997247159481049,0.0737304612994194,-0.00718893809244037,-0.997121930122375,0.0754723772406578,-0.0205645281821489,-0.999395787715912,0.028021240606904,-0.00578595232218504,-0.999960064888,0.00680856173858047,-0.0438286028802395,-0.997149527072906,0.0614157542586327,-0.00578595232218504,-0.999960064888,0.00680856173858047,-0.0205645281821489,-0.999395787715912,0.028021240606904,0.0112498607486486,-0.99978107213974,-0.0176428351551294,0.136620953679085,-0.990614295005798,-0.00424256408587098,0.136620938777924,-0.990614354610443,-0.00424256408587098,0.136620938777924,-0.990614295005798,-0.00424256408587098,-0.0224521942436695,-0.99860417842865,0.047808051109314,-0.0253892559558153,-0.998816967010498,0.0414724126458168,-0.0200528223067522,-0.998418509960175,0.0525207445025444,-0.0109762586653233,-0.997324883937836,0.0722669810056686,-0.0224521942436695,-0.99860417842865,0.047808051109314,-0.0200528223067522,-0.998418509960175,0.0525207445025444,-0.0224521942436695,-0.99860417842865,0.047808051109314,-0.0109762586653233,-0.997324883937836,0.0722669810056686,-0.0103378603234887,-0.997205555438995,0.0739872753620148,0.0292504783719778,0.99840247631073,0.0483416840434074,0.0322849303483963,0.998597800731659,0.0419532060623169,0.0270034186542034,0.998249173164368,0.0526256635785103,0.0177517998963594,0.997228682041168,0.0722484588623047,0.0292504783719778,0.99840247631073,0.0483416840434074,0.0270034186542034,0.998249173164368,0.0526256635785103,0.0292504783719778,0.99840247631073,0.0483416840434074,0.0177517998963594,0.997228682041168,0.0722484588623047,0.0170999355614185,0.997114539146423,0.0739617720246315,0.0188550874590874,0.999065279960632,-0.0388968326151371,0.0330379940569401,0.998656272888184,-0.0399240218102932,0.298241794109344,0.953594326972961,0.0413482151925564,0.0330379940569401,0.998656272888184,-0.0399240218102932,0.0188550874590874,0.999065279960632,-0.0388968326151371,
- 0.0144269447773695,0.998489677906036,-0.0530123189091682,0.0235417410731316,0.99697071313858,-0.0741299614310265,0.0330379940569401,0.998656272888184,-0.0399240218102932,0.0144269447773695,0.998489677906036,-0.0530123189091682,0.0330379940569401,0.998656272888184,-0.0399240218102932,0.0235417410731316,0.99697071313858,-0.0741299614310265,0.0242164749652147,0.996807992458344,-0.0760743394494057
- }
- NormalsW: *2788 {
- 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,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *8364 {
- a: -7.75103004002631e-009,1,0,-0.000383848353521898,0.999999940395355,0,-0.000561547349207103,0.999999940395355,0,-0.00102284702006727,0.999999523162842,0,2.86280577022069e-009,1,-0,-0.000267667055595666,0.999999940395355,0.000310053757857531,-0.000561547349207103,0.999999940395355,0,-0.000383848353521898,0.999999940395355,0,-3.62840182788204e-005,1,-8.54253787933162e-013,-0.000137612645630725,0.999999821186066,0.000677210977301002,-0.000267667055595666,0.999999940395355,0.000310053757857531,2.86280577022069e-009,1,-0,-0.00102197763044387,0.999999523162842,0,0.00106917112134397,0.999999463558197,-0.000334256648784503,0.00470159389078617,0.999989032745361,-0.000145008467370644,0.000751309504266828,0.999999761581421,-0,-0.000140802716487087,0.999999642372131,0.000935283198487014,0.00335091771557927,0.999994456768036,-0.000254243641393259,0.00106917112134397,0.999999463558197,-0.000334256648784503,-0.000100350145658012,1,0,-0.00255655241198838,0.999996721744537,0,-0.000100350145658012,1,0,0.00106917112134397,0.999999463558197,-0.000334256648784503,-0.00102197763044387,0.999999523162842,0,-0.000267667055595666,0.999999940395355,0.000310053757857531,-0.000140802716487087,0.999999642372131,0.000935283198487014,-0.000100350145658012,1,0,-0.000561547349207103,0.999999940395355,0,-0.00102284702006727,0.999999523162842,0,-0.000561547349207103,0.999999940395355,0,-0.000100350145658012,1,0,-0.00255655241198838,0.999996721744537,0,0.00715856952592731,0.999973952770233,0.000963379221502692,0.00371669209562242,0.999992847442627,0.000673287431709468,0.00571824936196208,0.999981224536896,0.00220872508361936,0.0031935169827193,0.999992549419403,0.0021912045776844,0.004880431573838,0.999985694885254,0.00220291246660054,0.000751309504266828,0.999999761581421,-0,0.00470159389078617,0.999989032745361,-0.000145008467370644,-0.00080932944547385,0.999999761581421,0.000156984009663574,0.00371669209562242,0.999992847442627,0.000673287431709468,0.00715856952592731,0.999973952770233,0.000963379221502692,0.0032137471716851,0.999994277954102,-0.0011567217297852,
- 0.00854836031794548,0.99996280670166,0.00112331286072731,-0.00080932944547385,0.999999761581421,0.000156984009663574,0.00470159389078617,0.999989032745361,-0.000145008467370644,0.00335091771557927,0.999994456768036,-0.000254243641393259,0.00100301578640938,0.999997019767761,-0.00222644512541592,0.0032137471716851,0.999994277954102,-0.0011567217297852,0.00470159389078617,0.999989032745361,-0.000145008467370644,0.00106917112134397,0.999999463558197,-0.000334256648784503,0.00206728000193834,0.999993741512299,0.00290405307896435,0.00100301578640938,0.999997019767761,-0.00222644512541592,0.00335091771557927,0.999994456768036,-0.000254243641393259,9.0867627022817e-007,0.999997198581696,0.00240706861950457,-0.0101907476782799,0.999941349029541,0.00369253987446427,0.00206728000193834,0.999993741512299,0.00290405307896435,0.00335091771557927,0.999994456768036,-0.000254243641393259,-0.000140802716487087,0.999999642372131,0.000935283198487014,-0.000137612645630725,0.999999821186066,0.000677210977301002,-0.000392628106055781,0.999995827674866,0.00287389056757092,-0.00063530879560858,0.99999862909317,0.00154086481779814,9.0867627022817e-007,0.999997198581696,0.00240706861950457,-0.000140802716487087,0.999999642372131,0.000935283198487014,-0.000267667055595666,0.999999940395355,0.000310053757857531,-0.000137612645630725,0.999999821186066,0.000677210977301002,3.06416109197016e-006,0.999999940395355,0.000375041359802708,-0.000392628106055781,0.999995827674866,0.00287389056757092,-1.03776303106429e-008,1,-4.71828109504542e-016,-4.43376338807866e-005,1,-2.01584950988709e-012,3.06416109197016e-006,0.999999940395355,0.000375041359802708,-0.000137612645630725,0.999999821186066,0.000677210977301002,-3.62840182788204e-005,1,-8.54253787933162e-013,-0.00102127762511373,0.999999523162842,0,-0.000612742733210325,0.999999821186066,0,1.83092652150663e-008,1,0,-0.000766545010264963,0.999999761581421,0,0.000147683298564516,0.999999582767487,0.000967539905104786,1.78806658368558e-009,0.99999988079071,0.000501397938933223,-0.000277155661024153,1,0.000103229707747232,
- 0.000192524094018154,0.999999761581421,0.000616437115240842,0.000372588518075645,0.999999463558197,0.000968504464253783,1.78806658368558e-009,0.99999988079071,0.000501397938933223,-8.27864776731246e-010,1,0,-4.99871639476623e-005,1,0,-0.000277155661024153,1,0.000103229707747232,-8.27864776731246e-010,1,0,1.83092652150663e-008,1,0,-0.000612742733210325,0.999999821186066,0,-4.99871639476623e-005,1,0,-0.0156650841236115,0.999877214431763,-0.000498398207128048,0.00266303378157318,0.999996542930603,0,0.00126641092356294,0.999999284744263,0,-0.0152956945821643,0.999883055686951,5.65704285691027e-005,-0.0156650841236115,0.999877214431763,-0.000498398207128048,-0.0152956945821643,0.999883055686951,5.65704285691027e-005,-0.0348625928163528,0.999388813972473,0.00257862731814384,-0.0230148322880268,0.999728739261627,-0.00357869081199169,0.00266303378157318,0.999996542930603,0,-0.0156650841236115,0.999877214431763,-0.000498398207128048,-0.00276735122315586,0.999996244907379,3.75633062503766e-005,0.000895032833795995,0.999999642372131,0,-0.00276735122315586,0.999996244907379,3.75633062503766e-005,-0.0156650841236115,0.999877214431763,-0.000498398207128048,-0.0230148322880268,0.999728739261627,-0.00357869081199169,0.01391308195889,0.999903202056885,7.35619614715688e-005,-0.000348873581970111,0.999999821186066,0.000490069214720279,0,1,0,0.000895032833795995,0.999999642372131,0,-0.00276735122315586,0.999996244907379,3.75633062503766e-005,-0.000348873581970111,0.999999821186066,0.000490069214720279,-0.00276735122315586,0.999996244907379,3.75633062503766e-005,0.01391308195889,0.999903202056885,7.35619614715688e-005,-0.00421526841819286,0.999988496303558,0.00230062799528241,-0.0134470565244555,0.999909520149231,0.000428674509748816,-0.0134470565244555,0.999909520149231,0.000428674509748816,-0.00421526841819286,0.999988496303558,0.00230062799528241,-0.0179653372615576,0.999838650226593,-0.000226454911171459,0,1,0,-0.000348873581970111,0.999999821186066,0.000490069214720279,-0.000355188036337495,0.999999940395355,0,0,1,0,-0.000355188036337495,0.999999940395355,0,
- -0.000348873581970111,0.999999821186066,0.000490069214720279,-0.0134470565244555,0.999909520149231,0.000428674509748816,-0.00378072564490139,0.999992907047272,-0.000155301444465294,-0.000277155661024153,1,0.000103229707747232,-0.00378072564490139,0.999992907047272,-0.000155301444465294,-0.0134470565244555,0.999909520149231,0.000428674509748816,-0.0179653372615576,0.999838650226593,-0.000226454911171459,-0.000992111046798527,0.999999523162842,-0.00030313286697492,-0.00225944723933935,0.999997437000275,-0.000302531669149175,-0.00155130901839584,0.999998807907104,-0.000302867643767968,0.000192524094018154,0.999999761581421,0.000616437115240842,-0.000612742733210325,0.999999821186066,0,-0.00102127762511373,0.999999523162842,0,0,1,0,-0.000355188036337495,0.999999940395355,0,-0.000612742733210325,0.999999821186066,0,-0.000355188036337495,0.999999940395355,0,-0.00378072564490139,0.999992907047272,-0.000155301444465294,-4.99871639476623e-005,1,0,-4.99871639476623e-005,1,0,-0.00378072564490139,0.999992907047272,-0.000155301444465294,-0.000277155661024153,1,0.000103229707747232,0,1,0.000274709425866604,0,0.999999940395355,0.000308600720018148,0,1,-0.000138651928864419,0,1,0.000196916051208973,0,1,-0.000205742951948196,0,1,-0.000205621239729226,0,1,3.65154562587122e-007,0,1,-0.000152875785715878,0,1,-0.000205621239729226,0,1,-0.000205742951948196,0,1,0,0,1,-0.000103704041976016,0,1,-8.01327114459127e-005,0,1,0,0,1,-0.000103704041976016,0,1,0,0,1,0,0,1,-8.01327114459127e-005,0,1,1.70820185303455e-005,0,1,-0.000160241354024038,0,0.999999940395355,0.000308600720018148,0,1,0.000274709425866604,0,1,-0.000160241354024038,0,1,1.70820185303455e-005,3.03164837787012e-018,-9.53674139658744e-010,1,1.36424177004156e-017,-1.90734827931749e-009,1,9.09494513361037e-018,-1.90734827931749e-009,1,4.54747256680519e-018,-9.53674139658744e-010,1,0,0,1,3.03164837787012e-018,-9.53674139658744e-010,1,4.54747256680519e-018,-9.53674139658744e-010,1,0,0,1,-0,7.15255743521936e-010,1,0,0,1,0,0,1,6.39488471878647e-019,7.15255743521936e-010,1,5.11590777502918e-018,1.43051148704387e-009,1,
- 2.55795388751459e-018,1.43051148704387e-009,1,-0,7.15255743521936e-010,1,6.39488471878647e-019,7.15255743521936e-010,1,0.000774636981077492,0.999999046325684,-0.00122242025099695,0.000770324026234448,0.999997615814209,0.00208195834420621,0.000767988152801991,0.999992251396179,0.00386890047229826,0.000771421880926937,0.999998927116394,0.00124131247866899,0.000772871251683682,0.999999701976776,0.000131145105115138,0.000770873215515167,0.999998390674591,0.00166163442190737,0.000424779544118792,-0,1,0.00082199793541804,-0,0.999999701976776,0.000282669789157808,-0,1,-1.54966778609378e-006,0,1,1.3005691471335e-005,-0,1,-0.143372014164925,0.984421908855438,0.101774796843529,-0.262224197387695,0.961653590202332,0.0803796648979187,-0.0898129194974899,0.993562519550323,0.0690455511212349,-0.262224197387695,0.961653590202332,0.0803796648979187,-0.143372014164925,0.984421908855438,0.101774796843529,-0.35467529296875,0.932764172554016,0.0644702464342117,-0.248665124177933,0.956636011600494,0.151701286435127,-0.35467529296875,0.932764172554016,0.0644702464342117,-0.143372014164925,0.984421908855438,0.101774796843529,-0.35467529296875,0.932764172554016,0.0644702464342117,-0.330479711294174,0.943670392036438,0.0164153911173344,-0.262224197387695,0.961653590202332,0.0803796648979187,-0.402635455131531,0.901905655860901,0.1563680768013,-0.35467529296875,0.932764172554016,0.0644702464342117,-0.248665124177933,0.956636011600494,0.151701286435127,-0.40497499704361,0.914140105247498,0.0185248106718063,-0.330479711294174,0.943670392036438,0.0164153911173344,-0.35467529296875,0.932764172554016,0.0644702464342117,-0.402635455131531,0.901905655860901,0.1563680768013,-0.40497499704361,0.914140105247498,0.0185248106718063,-0.35467529296875,0.932764172554016,0.0644702464342117,-0.348683834075928,0.936539232730865,0.036249291151762,-0.330479711294174,0.943670392036438,0.0164153911173344,-0.40497499704361,0.914140105247498,0.0185248106718063,-0.348683834075928,0.936539232730865,0.036249291151762,-0.280730605125427,0.958508610725403,-0.0495137870311737,
- -0.330479711294174,0.943670392036438,0.0164153911173344,-0.402635455131531,0.901905655860901,0.1563680768013,-0.447070449590683,0.888756513595581,0.101192936301231,-0.40497499704361,0.914140105247498,0.0185248106718063,-0.447070449590683,0.888756513595581,0.101192936301231,-0.348683834075928,0.936539232730865,0.036249291151762,-0.40497499704361,0.914140105247498,0.0185248106718063,-0.609050512313843,0.754265666007996,0.245236545801163,-0.447070449590683,0.888756513595581,0.101192936301231,-0.402635455131531,0.901905655860901,0.1563680768013,-0.636042058467865,0.770583748817444,0.0406373180449009,-0.447070449590683,0.888756513595581,0.101192936301231,-0.609050512313843,0.754265666007996,0.245236545801163,-0.437242299318314,0.897046387195587,0.0642416328191757,-0.447070449590683,0.888756513595581,0.101192936301231,-0.636042058467865,0.770583748817444,0.0406373180449009,-0.491760015487671,0.870615422725677,-0.0141811389476061,-0.447070449590683,0.888756513595581,0.101192936301231,-0.437242299318314,0.897046387195587,0.0642416328191757,-0.467606067657471,0.883921384811401,-0.00524954497814178,-0.280730605125427,0.958508610725403,-0.0495137870311737,-0.348683834075928,0.936539232730865,0.036249291151762,-0.280730605125427,0.958508610725403,-0.0495137870311737,-0.467606067657471,0.883921384811401,-0.00524954497814178,-0.429162681102753,0.89799290895462,-0.097099706530571,-0.348683834075928,0.936539232730865,0.036249291151762,-0.447070449590683,0.888756513595581,0.101192936301231,-0.403176695108414,0.914846777915955,-0.022447407245636,-0.447070449590683,0.888756513595581,0.101192936301231,-0.491760015487671,0.870615422725677,-0.0141811389476061,-0.403176695108414,0.914846777915955,-0.022447407245636,-0.521929204463959,0.850736320018768,-0.0619488023221493,-0.467606067657471,0.883921384811401,-0.00524954497814178,-0.348683834075928,0.936539232730865,0.036249291151762,-0.348683834075928,0.936539232730865,0.036249291151762,-0.403176695108414,0.914846777915955,-0.022447407245636,-0.521929204463959,0.850736320018768,-0.0619488023221493,
- -0.467606067657471,0.883921384811401,-0.00524954497814178,-0.715402364730835,0.698167979717255,-0.027585769072175,-0.429162681102753,0.89799290895462,-0.097099706530571,-0.521929204463959,0.850736320018768,-0.0619488023221493,-0.715402364730835,0.698167979717255,-0.027585769072175,-0.467606067657471,0.883921384811401,-0.00524954497814178,-0.429162681102753,0.89799290895462,-0.097099706530571,-0.715402364730835,0.698167979717255,-0.027585769072175,-0.862743258476257,0.503127932548523,0.0503623634576797,-0.715402364730835,0.698167979717255,-0.027585769072175,-0.907858490943909,0.410535514354706,0.0851685255765915,-0.862743258476257,0.503127932548523,0.0503623634576797,-0.445274084806442,0.894107937812805,-0.0479808077216148,-0.521929204463959,0.850736320018768,-0.0619488023221493,-0.403176695108414,0.914846777915955,-0.022447407245636,-0.403176695108414,0.914846777915955,-0.022447407245636,-0.491760015487671,0.870615422725677,-0.0141811389476061,-0.445274084806442,0.894107937812805,-0.0479808077216148,-0.445274084806442,0.894107937812805,-0.0479808077216148,-0.665167927742004,0.739882051944733,-0.100629337131977,-0.521929204463959,0.850736320018768,-0.0619488023221493,-0.491760015487671,0.870615422725677,-0.0141811389476061,-0.665167927742004,0.739882051944733,-0.100629337131977,-0.445274084806442,0.894107937812805,-0.0479808077216148,-0.521929204463959,0.850736320018768,-0.0619488023221493,-0.665167927742004,0.739882051944733,-0.100629337131977,-0.715402364730835,0.698167979717255,-0.027585769072175,-0.711229264736176,0.70142662525177,-0.046407338231802,-0.665167927742004,0.739882051944733,-0.100629337131977,-0.491760015487671,0.870615422725677,-0.0141811389476061,-0.711229264736176,0.70142662525177,-0.046407338231802,-0.715402364730835,0.698167979717255,-0.027585769072175,-0.665167927742004,0.739882051944733,-0.100629337131977,-0.53178870677948,0.846427857875824,-0.0275827161967754,-0.715402364730835,0.698167979717255,-0.027585769072175,-0.711229264736176,0.70142662525177,-0.046407338231802,-0.814919412136078,0.578801274299622,0.0299235321581364,
- -0.907858490943909,0.410535514354706,0.0851685255765915,-0.715402364730835,0.698167979717255,-0.027585769072175,-0.715402364730835,0.698167979717255,-0.027585769072175,-0.53178870677948,0.846427857875824,-0.0275827161967754,-0.814919412136078,0.578801274299622,0.0299235321581364,-0.814919412136078,0.578801274299622,0.0299235321581364,-0.387606024742126,0.92125791311264,-0.0323363281786442,-0.907858490943909,0.410535514354706,0.0851685255765915,-0.53178870677948,0.846427857875824,-0.0275827161967754,-0.458839297294617,0.887732028961182,-0.0373962186276913,-0.814919412136078,0.578801274299622,0.0299235321581364,-0.370790332555771,0.927719056606293,-0.043035764247179,-0.387606024742126,0.92125791311264,-0.0323363281786442,-0.814919412136078,0.578801274299622,0.0299235321581364,-0.458839297294617,0.887732028961182,-0.0373962186276913,-0.370790332555771,0.927719056606293,-0.043035764247179,-0.814919412136078,0.578801274299622,0.0299235321581364,-0.31608921289444,0.9483562707901,-0.0266068633645773,-0.387606024742126,0.92125791311264,-0.0323363281786442,-0.370790332555771,0.927719056606293,-0.043035764247179,-0.458839297294617,0.887732028961182,-0.0373962186276913,-0.31608921289444,0.9483562707901,-0.0266068633645773,-0.370790332555771,0.927719056606293,-0.043035764247179,-0.31608921289444,0.9483562707901,-0.0266068633645773,-0.555708587169647,0.830713331699371,0.0332195647060871,-0.387606024742126,0.92125791311264,-0.0323363281786442,-0.53178870677948,0.846427857875824,-0.0275827161967754,-0.192965492606163,0.957944571971893,0.212383240461349,-0.458839297294617,0.887732028961182,-0.0373962186276913,-0.197662442922592,0.95377904176712,0.226351916790009,-0.192965492606163,0.957944571971893,0.212383240461349,-0.53178870677948,0.846427857875824,-0.0275827161967754,-0.349815398454666,0.929893732070923,0.113696977496147,-0.458839297294617,0.887732028961182,-0.0373962186276913,-0.192965492606163,0.957944571971893,0.212383240461349,-0.197662442922592,0.95377904176712,0.226351916790009,-0.349815398454666,0.929893732070923,0.113696977496147,
- -0.192965492606163,0.957944571971893,0.212383240461349,-0.458839297294617,0.887732028961182,-0.0373962186276913,-0.349815398454666,0.929893732070923,0.113696977496147,-0.31608921289444,0.9483562707901,-0.0266068633645773,-0.215520888566971,0.939542829990387,0.266101509332657,-0.349815398454666,0.929893732070923,0.113696977496147,-0.197662442922592,0.95377904176712,0.226351916790009,-0.64684396982193,0.756224513053894,-0.0985779538750649,-0.349815398454666,0.929893732070923,0.113696977496147,-0.215520888566971,0.939542829990387,0.266101509332657,-0.349815398454666,0.929893732070923,0.113696977496147,-0.64684396982193,0.756224513053894,-0.0985779538750649,-0.594335854053497,0.803472757339478,-0.0345909893512726,-0.31608921289444,0.9483562707901,-0.0266068633645773,-0.349815398454666,0.929893732070923,0.113696977496147,-0.594335854053497,0.803472757339478,-0.0345909893512726,-0.830708563327789,0.507415294647217,-0.22902649641037,-0.594335854053497,0.803472757339478,-0.0345909893512726,-0.64684396982193,0.756224513053894,-0.0985779538750649,-0.31608921289444,0.9483562707901,-0.0266068633645773,-0.74615353345871,0.665752351284027,0.00537356361746788,-0.555708587169647,0.830713331699371,0.0332195647060871,-0.594335854053497,0.803472757339478,-0.0345909893512726,-0.74615353345871,0.665752351284027,0.00537356361746788,-0.31608921289444,0.9483562707901,-0.0266068633645773,-0.74615353345871,0.665752351284027,0.00537356361746788,-0.895114421844482,0.414402961730957,0.164439857006073,-0.555708587169647,0.830713331699371,0.0332195647060871,-0.594335854053497,0.803472757339478,-0.0345909893512726,-0.830708563327789,0.507415294647217,-0.22902649641037,-0.673075675964355,0.739307403564453,-0.019842492416501,-0.594335854053497,0.803472757339478,-0.0345909893512726,-0.673075675964355,0.739307403564453,-0.019842492416501,-0.74615353345871,0.665752351284027,0.00537356361746788,-0.892149567604065,0.415598392486572,-0.177051648497581,-0.673075675964355,0.739307403564453,-0.019842492416501,-0.830708563327789,0.507415294647217,-0.22902649641037,
- -0.87430477142334,0.482237786054611,0.0551176257431507,-0.895114421844482,0.414402961730957,0.164439857006073,-0.74615353345871,0.665752351284027,0.00537356361746788,-0.87430477142334,0.482237786054611,0.0551176257431507,-0.797441899776459,0.601899385452271,0.0424679219722748,-0.895114421844482,0.414402961730957,0.164439857006073,-0.87430477142334,0.482237786054611,0.0551176257431507,-0.805408298969269,0.590279579162598,0.0537348911166191,-0.797441899776459,0.601899385452271,0.0424679219722748,-0.904695808887482,0.416345417499542,-0.0904549434781075,-0.74615353345871,0.665752351284027,0.00537356361746788,-0.673075675964355,0.739307403564453,-0.019842492416501,-0.74615353345871,0.665752351284027,0.00537356361746788,-0.904695808887482,0.416345417499542,-0.0904549434781075,-0.87430477142334,0.482237786054611,0.0551176257431507,-0.673075675964355,0.739307403564453,-0.019842492416501,-0.892149567604065,0.415598392486572,-0.177051648497581,-0.904695808887482,0.416345417499542,-0.0904549434781075,-0.805408298969269,0.590279579162598,0.0537348911166191,-0.87430477142334,0.482237786054611,0.0551176257431507,-0.904695808887482,0.416345417499542,-0.0904549434781075,-0.892149567604065,0.415598392486572,-0.177051648497581,-0.923522651195526,0.35561066865921,-0.143691062927246,-0.904695808887482,0.416345417499542,-0.0904549434781075,-0.904695808887482,0.416345417499542,-0.0904549434781075,-0.833727419376373,0.550685048103333,-0.0405537448823452,-0.805408298969269,0.590279579162598,0.0537348911166191,-0.923522651195526,0.35561066865921,-0.143691062927246,-0.833727419376373,0.550685048103333,-0.0405537448823452,-0.904695808887482,0.416345417499542,-0.0904549434781075,-0.429353326559067,0.0299225989729166,-0.902640819549561,-0.429353296756744,0.0299225971102715,-0.902640759944916,-0.429353296756744,0.0299225971102715,-0.902640759944916,0.424138814210892,-0.0601472407579422,-0.90359753370285,0.424138814210892,-0.0601472407579422,-0.90359753370285,0.424138814210892,-0.0601472407579422,-0.903597593307495,-0.622591495513916,-0.146604731678963,-0.768691658973694,
- -0.622591495513916,-0.146604731678963,-0.768691658973694,-0.622591495513916,-0.146604731678963,-0.768691658973694,0.413923799991608,0.0376341827213764,0.909533321857452,0.413923740386963,0.0376341789960861,0.909533262252808,0.413923770189285,0.0376341789960861,0.909533321857452,-0.628187477588654,0.163754642009735,0.76063460111618,-0.628187477588654,0.163754642009735,0.760634541511536,-0.628187537193298,0.163754656910896,0.76063460111618,0.365295439958572,0.0338502936065197,0.930276095867157,0.365295380353928,0.0338502898812294,0.930276036262512,0.36529541015625,0.0338502936065197,0.930276095867157,-0.357099324464798,-0.0324400402605534,0.933503031730652,-0.357099264860153,-0.0324400365352631,0.933502972126007,-0.357099294662476,-0.0324400402605534,0.933503031730652,0.00522175105288625,0.00524826860055327,0.999972581863403,0.00524757616221905,-0.000267853873083368,0.999986290931702,0.00528824096545577,-0.00902397278696299,0.999945402145386,0.00954376067966223,-0.00903453398495913,0.999913692474365,0.00959317199885845,-0.000259605760220438,0.999954044818878,0.0095079131424427,-0.0153201650828123,0.999837458133698,-0.028327438980341,0.999592065811157,0.00364757142961025,-0.0289418380707502,0.999542772769928,-0.00876219384372234,-0.0286920126527548,0.999581456184387,-0.00370548013597727,-0.028407409787178,0.999589800834656,0.00365101266652346,-0.0287049729377031,0.999581038951874,-0.0037048717495054,-0.0282128266990185,0.999566316604614,0.00844059977680445,0.0246803499758244,-0.0456511601805687,-0.998652517795563,0.0233777072280645,-0.0427267104387283,-0.998813211917877,0.0246163085103035,-0.0509724728763103,-0.998396694660187,0.0246803499758244,-0.0456511601805687,-0.998652517795563,0.0246163085103035,-0.0509724728763103,-0.998396694660187,0.0259431973099709,-0.0551778525114059,-0.998139441013336,0.0115159638226032,-0.00672203209251165,0.99991112947464,0.010808021761477,-0.0038199252448976,0.999934375286102,0.00186695612501353,-0.00653296196833253,0.999976933002472,0.010808021761477,-0.0038199252448976,0.999934375286102,
- 0.0115727577358484,-0.000932635855861008,0.999932646751404,0.020552659407258,-0.000937493517994881,0.999788343906403,0.0163409169763327,-0.0153083596378565,0.999749302864075,0.016563156619668,-0.0209619607776403,0.999643087387085,0.00888706929981709,-0.0209618844091892,0.999740839004517,0.016653286293149,-0.00965836178511381,0.999814689159393,0.0163409169763327,-0.0153083596378565,0.999749302864075,0.0242643132805824,-0.00977434497326612,0.999657809734344,0.00554627133533359,-0.998897254467011,-0.0466225482523441,0.00404074462130666,-0.999968469142914,0.00683899037539959,0.00357128377072513,-0.999652743339539,-0.0261085480451584,0.00248352834023535,-0.999656617641449,0.0260880216956139,0.00357128377072513,-0.999652743339539,-0.0261085480451584,0.00236988044343889,-0.999973833560944,0.00683386391028762,0.0297328121960163,0.998819351196289,0.0384190678596497,0.0264291446655989,0.999491333961487,-0.0178533308207989,0.0242207814007998,0.998211026191711,-0.0546635426580906,0.011637220159173,0.999181687831879,0.0387365780770779,0.0116538386791945,0.997223973274231,0.0735436603426933,0.0115809850394726,0.999784767627716,-0.0172173269093037,-0.068309061229229,-0.997474431991577,0.0194595009088516,-0.0691528022289276,-0.996798992156982,0.0401218682527542,-0.0697399526834488,-0.996051430702209,0.0549364425241947,-0.0707941874861717,-0.996685981750488,0.0400658510625362,-0.0705279856920242,-0.997321009635925,0.0194114856421947,-0.0703752115368843,-0.997484385967255,0.00849829707294703,-0.0031213816255331,0.139678493142128,-0.990192055702209,0.0111868344247341,0.139630198478699,-0.990140557289124,-0.00509318755939603,0.139682903885841,-0.990183174610138,-0.00314149097539485,0.1418686658144,-0.989880561828613,-0.00511637376621366,0.141821801662445,-0.989878952503204,-0.0203377101570368,0.141442120075226,-0.989737629890442,0.0144275287166238,0.0132178692147136,0.999808609485626,0.0145578915253282,-0.0312917716801167,0.99940425157547,0.0143147828057408,0.0455671437084675,0.998858749866486,0.00606166245415807,-0.0316782370209694,0.999479711055756,
- 0.00314603536389768,0.0129801472648978,0.999910891056061,0.00844994559884071,-0.0683510974049568,0.997625589370728,-0.0288910809904337,0.0252428632229567,-0.999263882637024,-0.0328790061175823,0.0251793898642063,-0.999142169952393,-0.00243211444467306,0.0256536342203617,-0.999668002128601,-0.0329890176653862,0.0274825990200043,-0.99907785654068,-0.0290009062737226,0.0277682337909937,-0.999193668365479,-0.0544307790696621,0.0259387008845806,-0.998180568218231,-0.0594934225082397,0.0163908172398806,-0.998094201087952,-0.059718694537878,-0.000589690753258765,-0.998215079307556,-0.0592610463500023,0.0326850824058056,-0.997707366943359,-0.0592467337846756,-0.000588115770369768,-0.99824321269989,-0.0593903139233589,0.0163903106004,-0.998100340366364,-0.0591393113136292,-0.0121375052258372,-0.998175978660584,-0.0109623642638326,0.021684430539608,0.999704778194427,-0.0108776465058327,0.0181021578609943,0.999777019023895,-0.0107147144153714,0.0112284719944,0.999879598617554,-0.0148704582825303,0.0179862510412931,0.999727725982666,-0.0149992629885674,0.0215564165264368,0.999655187129974,-0.0152195133268833,0.0276730228215456,0.999501168727875,0.00443594204261899,0.00152573210652918,-0.999988973140717,-0.00437181256711483,0.00141942652408034,-0.99998950958252,-0.00277730287052691,0.00175376667175442,-0.999994575977325,-0.00277730287052691,0.00175376667175442,-0.999994575977325,-0.00438514025881886,0.00201852689497173,-0.999988436698914,-0.0122855734080076,0.00177054665982723,-0.99992299079895,-0.0170220360159874,-0.0161026138812304,-0.999725461006165,-0.00858255848288536,-0.0152303418144584,-0.999847233295441,-0.0642369240522385,-0.0209634844213724,-0.997714519500732,-0.00821522250771523,-0.0250510741025209,-0.999652445316315,-0.0166037548333406,-0.0249251686036587,-0.99955141544342,0.035250723361969,-0.0256750714033842,-0.99904865026474,-0.011162843555212,0.0169130433350801,-0.999794661998749,0.000253834383329377,0.0183092523366213,-0.999832332134247,-0.0112243518233299,0.0202100276947021,-0.999732792377472,0.000253834383329377,0.0183092523366213,-0.999832332134247,
- 0.011710861697793,0.017285168170929,-0.999782025814056,0.011743200942874,0.015092208981514,-0.999817132949829,-0.0237890761345625,0.99971342086792,-0.00267057050950825,-0.0237844437360764,0.999717116355896,-5.8130179240834e-005,-0.0237798113375902,0.999714255332947,0.00247045839205384,-0.0392449386417866,0.999226450920105,0.00254709459841251,-0.0392621420323849,0.999228954315186,-5.24056667927653e-006,-0.03922463580966,0.999215245246887,0.00551158795133233,0.0389530472457409,-0.999238431453705,0.00230478798039258,0.0389616973698139,-0.99919730424881,0.00932027492672205,0.0456182844936848,-0.99894243478775,-0.00575187103822827,0.0389616973698139,-0.99919730424881,0.00932027492672205,0.0389530472457409,-0.999238431453705,0.00230478798039258,0.0324807465076447,-0.9993035197258,0.0183718856424093,0.00874078273773193,-0.999766767024994,0.0197508223354816,0.00857225153595209,-0.998699724674225,0.0502537451684475,0.00893135275691748,-0.999820709228516,-0.0166960582137108,-0.00904379598796368,-0.99977171421051,0.0193611588329077,-0.00687616132199764,-0.999825894832611,-0.0173491127789021,-0.00484486855566502,-0.998656749725342,-0.0515871196985245,0.0556613951921463,0.998066067695618,0.0276781935244799,0.0563258901238441,0.997510135173798,0.0424389056861401,0.056943666189909,0.996782720088959,0.0564054027199745,0.0595382750034332,0.997328639030457,0.0423188172280788,0.059281125664711,0.997860312461853,0.0275802500545979,0.0590857043862343,0.998110830783844,0.0168416984379292,0.0061087547801435,-0.14439032971859,-0.989502012729645,-0.00456362590193748,-0.144649043679237,-0.989472568035126,0.00824185740202665,-0.144336611032486,-0.989494323730469,0.00618253694847226,-0.146564781665802,-0.989181816577911,0.00831811036914587,-0.146467477083206,-0.989180505275726,0.0194884967058897,-0.145947590470314,-0.989100396633148,-0.0179499257355928,-0.00939047988504171,0.999794781208038,-0.0187364388257265,0.021257109940052,0.999598503112793,-0.0170447491109371,-0.0438653230667114,0.99889212846756,-0.00737030617892742,0.0220376048237085,0.999729990959167,
- -0.00449087889865041,-0.00873612519353628,0.999951839447021,-0.0109756588935852,0.0606463737785816,0.998098969459534,0.033727191388607,-0.0250637102872133,-0.999116778373718,0.0386687815189362,-0.0249696765094996,-0.998940110206604,0.00836627930402756,-0.0255364347249269,-0.999638915061951,0.0387203991413116,-0.0259854346513748,-0.998912215232849,0.0337859950959682,-0.0263566840440035,-0.999081492424011,0.0603440813720226,-0.0243501644581556,-0.997880637645721,0.0766538456082344,-0.00688117556273937,-0.997034013271332,0.0766614973545074,0.00882955081760883,-0.997018158435822,0.0766076296567917,-0.0301886685192585,-0.996604263782501,0.0707102417945862,0.00870155543088913,-0.99745899438858,0.0711991116404533,-0.00694984430447221,-0.997438013553619,0.0701562091708183,0.0258021410554647,-0.997202336788177,-0.00444001751020551,0.00189174001570791,-0.999988436698914,-0.00610400829464197,-0.00105664739385247,-0.999980807304382,-0.00423697335645556,-0.00686945905908942,-0.999967515468597,-0.00610400829464197,-0.00105664739385247,-0.999980807304382,-0.00757253356277943,-0.0102935917675495,-0.999918341636658,-0.00766780925914645,-0.00696233054623008,-0.999946355819702,0.00165634136646986,0.99998927116394,0.0043381666764617,0.0013143930118531,0.99998813867569,-0.00470920884981751,0.00232520140707493,0.999754250049591,0.0220444481819868,-0.00154622516129166,0.999753534793854,0.0221506673842669,-0.00133020046632737,0.999513030052185,0.0311776846647263,-0.00196902779862285,0.99998813867569,0.00446250569075346,-0.00146603875327855,-0.00467914342880249,-0.999988079071045,-0.00161330273840576,-0.000999431707896292,-0.999998211860657,-0.00232170429080725,-0.00101726711727679,-0.999996840953827,-0.00142260128632188,-0.00836148019880056,-0.9999640583992,-0.00146603875327855,-0.00467914342880249,-0.999988079071045,-0.000691065099090338,-0.00834200065582991,-0.999965012073517,-0.0124508207663894,-0.012174854055047,-0.999848425388336,-0.010603740811348,-0.0120916701853275,-0.999870777130127,-0.0233292412012815,-0.0126639632508159,-0.999647676944733,
- -0.0103423558175564,-0.019688006490469,-0.999752700328827,-0.0121790003031492,-0.0197287425398827,-0.999731242656708,0.00364322238601744,-0.0193756613880396,-0.999805688858032,0.0230621919035912,-0.999634563922882,-0.0141075309365988,0.0230011437088251,-0.999487280845642,-0.0222766306251287,0.0230912361294031,-0.999681949615479,-0.0101468022912741,0.0217043831944466,-0.999516308307648,-0.0222737938165665,0.0217131190001965,-0.999664843082428,-0.0141001511365175,0.0216998141258955,-0.999424278736115,-0.0260820649564266,-0.0413464419543743,0.999138057231903,-0.00371130206622183,-0.0317347943782806,0.998964309692383,-0.0326068475842476,-0.0314711071550846,0.999191164970398,0.0250334572046995,-0.0413464419543743,0.999138057231903,-0.00371130206622183,-0.0493974834680557,0.998448014259338,0.0257202666252851,-0.047438595443964,0.997131824493408,0.0589723140001297,0.102051429450512,-0.993903934955597,-0.0417202338576317,0.102486804127693,-0.993356049060822,-0.0523467212915421,0.102970972657204,-0.992590606212616,-0.0645050927996635,0.103988960385323,-0.993202865123749,-0.0522913709282875,0.103813916444778,-0.993723511695862,-0.0416697226464748,0.103651784360409,-0.994085490703583,-0.0324095450341702,0.00117759476415813,0.121394328773022,0.992603659629822,-0.0093864593654871,0.121262907981873,0.992576003074646,0.00240609678439796,0.121408730745316,0.992599666118622,0.00116027984768152,0.126719638705254,0.991937935352325,0.00239431182853878,0.126710951328278,0.991936862468719,0.0134113430976868,0.126624807715416,0.991860091686249,-0.00674487603828311,-0.00852536596357822,-0.999940991401672,-0.0116691365838051,0.0228894725441933,-0.999669909477234,-0.00920627452433109,-0.0501506328582764,-0.998699307441711,-0.0116691365838051,0.0228894725441933,-0.999669909477234,-0.018033092841506,-0.00816515274345875,-0.999804079532623,-0.0189228169620037,0.0594295635819435,-0.998053133487701,-0.00649680476635695,0.0104859881103039,0.999924004077911,0.0351782664656639,0.00835567992180586,0.999346137046814,0.0304884891957045,0.00859629083424807,0.999498128890991,
- 0.0695345774292946,0.0121003016829491,0.997506201267242,0.0305024310946465,0.010576150380075,0.999478757381439,0.0351818315684795,0.0107596293091774,0.999323010444641,0.0758770629763603,-0.0191917419433594,0.996932446956635,0.0722261071205139,-0.00315178721211851,0.997383296489716,0.0724407061934471,-0.0379907786846161,0.996648907661438,0.0787388160824776,-0.00296832667663693,0.996890902519226,0.0758770629763603,-0.0191917419433594,0.996932446956635,0.0776159390807152,0.0227714311331511,0.996723353862762,0.0142863532528281,0.0494655035436153,-0.998673737049103,0.0143011994659901,0.052822794765234,-0.998501479625702,0.014326274394989,0.0585762448608875,-0.998180210590363,0.0105281509459019,0.0528254956007004,-0.998548269271851,0.0105526251718402,0.049458771944046,-0.998720526695251,0.0105992080643773,0.04300257563591,-0.999018788337708,0.00265710731036961,-0.0289727840572596,0.999576687812805,0.00458117993548512,-0.0289726667106152,0.999569714069366,0.0125890988856554,-0.0289710164070129,0.999501049518585,-0.00462028291076422,-0.02986597456038,0.999543309211731,0.00458783842623234,-0.0296788718551397,0.999549031257629,0.00266583124175668,-0.0297181326895952,0.999554872512817,0.0185509026050568,-0.0467774569988251,0.998733103275299,0.00857599265873432,-0.046046931296587,0.998902499675751,0.0648777261376381,-0.0501106046140194,0.996634244918823,0.0183858163654804,-0.056038822978735,0.998259305953979,-0.0339414365589619,-0.0584485121071339,0.997713327407837,0.00851598288863897,-0.0565052889287472,0.998365998268127,-0.00122414669021964,-0.0137974051758647,0.999904155731201,-0.0130733391270041,-0.0151486769318581,0.999799847602844,-0.0130386874079704,-0.0172815136611462,0.999765634536743,0.0106589943170547,-0.0147989504039288,0.999833762645721,-0.00122414669021964,-0.0137974051758647,0.999904155731201,0.0106190582737327,-0.0115892849862576,0.999876499176025,-0.00743993651121855,0.99941086769104,0.0335037894546986,-0.00024298882635776,0.99951958656311,0.030992429703474,-0.00744912400841713,0.999567747116089,0.0284404810518026,
- -0.00024298882635776,0.99951958656311,0.030992429703474,0.00692330207675695,0.999649882316589,0.0255404394119978,0.00694169057533145,0.999573469161987,0.0283709987998009,-0.0138331642374396,-0.999348223209381,-0.0333429761230946,-0.00737911555916071,-0.999134063720703,-0.0409487783908844,-0.013885335996747,-0.999586641788483,-0.025176003575325,-0.00737911555916071,-0.999134063720703,-0.0409487783908844,-0.000902200059499592,-0.99944394826889,-0.0333311893045902,-0.00105976453050971,-0.99874359369278,-0.0501010417938232,0.00664688041433692,0.00433743745088577,0.999968528747559,0.00668208068236709,-0.00169403257314116,0.999976217746735,0.00671874964609742,-0.00802150089293718,0.999945342540741,0.0114483647048473,-0.00802903436124325,0.999902307987213,0.0114844320341945,-0.00168346345890313,0.999932646751404,0.0114091476425529,-0.0148376673460007,0.99982488155365,-0.0285701341927052,0.999591290950775,-0.00101795932278037,-0.0290121287107468,0.999523520469666,-0.010541102848947,-0.0287951696664095,0.99956339597702,-0.00663388194516301,-0.0285701341927052,0.999591290950775,-0.00101795932278037,-0.0289304088801146,0.999559462070465,-0.00662661576643586,-0.0284790452569723,0.999590933322906,0.00264555937610567,0.0293411929160357,-0.0426436327397823,-0.998659491539001,0.028103232383728,-0.0411166660487652,-0.998759090900421,0.0293154027312994,-0.0445042736828327,-0.99857896566391,0.0293411929160357,-0.0426436327397823,-0.998659491539001,0.0293154027312994,-0.0445042736828327,-0.99857896566391,0.0305539630353451,-0.046651728451252,-0.998443841934204,0.00993167515844107,-0.00781361665576696,0.999920129776001,0.00788638181984425,-0.00446558697149158,0.99995893239975,0.00200397823937237,-0.0076762679964304,0.999968588352203,0.00788638181984425,-0.00446558697149158,0.99995893239975,0.00998390652239323,-0.00115453742910177,0.99994957447052,0.0159920509904623,-0.00115755898877978,0.999871551990509,0.0127419102936983,-0.0188811644911766,0.999740540981293,0.0110121015459299,-0.025144848972559,0.99962317943573,0.0034659611992538,-0.0251452494412661,0.999677836894989,
- 0.0111287487670779,-0.0125829232856631,0.999858915805817,0.0127419102936983,-0.0188811644911766,0.999740540981293,0.0205118041485548,-0.0127724893391132,0.999708116054535,0.00634080171585083,-0.998011291027069,-0.0627156421542168,0.00388167658820748,-0.999972224235535,0.0063577713444829,0.00351209123618901,-0.999332964420319,-0.036352351307869,0.00218661385588348,-0.999511003494263,0.0311934966593981,0.00351209123618901,-0.999332964420319,-0.036352351307869,0.00197982043027878,-0.999977886676788,0.00635163299739361,0.0102922013029456,-0.0220499467104673,0.999703884124756,0.010320171713829,-0.0184579659253359,0.999776363372803,0.0103734685108066,-0.0115653937682509,0.999879360198975,0.0143192680552602,-0.0184675622731447,0.999727010726929,0.0143359452486038,-0.0220487862825394,0.999654114246368,0.0143640944734216,-0.0281845536082983,0.999499619007111,-0.00451825745403767,-0.00134985987097025,-0.999988913536072,0.00436423579230905,-0.00152235559653491,-0.99998939037323,0.00274963211268187,-0.00149100879207253,-0.999995172023773,0.00274250144138932,-0.00213799276389182,-0.999994039535522,0.00435859896242619,-0.00213791476562619,-0.999988257884979,0.0123313460499048,-0.00213744747452438,-0.999921679496765,0.0175633206963539,0.0155669823288918,-0.999724566936493,0.00909231510013342,0.0149590782821178,-0.999846816062927,0.064964547753334,0.0189495626837015,-0.997707724571228,0.00903419964015484,0.0247110705822706,-0.999653875827789,0.0174236241728067,0.0243207197636366,-0.999552369117737,-0.0344475097954273,0.0267058294266462,-0.999049663543701,0.0106184724718332,-0.0172607507556677,-0.999794661998749,0.0106031568720937,-0.0184618607163429,-0.999773323535919,0.0105763245373964,-0.0205634385347366,-0.999732673168182,-0.0127098402008414,-0.0181285087019205,-0.999754965305328,-0.0126894991844893,-0.0169074553996325,-0.999776542186737,-0.0126528609544039,-0.0147105827927589,-0.999811768531799,-0.00762361334636807,-0.999967455863953,-0.0026723719201982,-0.0076283304952085,-0.99997091293335,-6.48650020593777e-005,-0.00763284740969539,-0.999967932701111,0.00245884945616126,
- 0.00784111581742764,-0.999969303607941,-1.21902612590929e-005,0.00780421961098909,-0.999954462051392,0.00549378665164113,0.00782407633960247,-0.999966263771057,0.00253520347177982,-0.0141782965511084,0.999896943569183,0.00228115520440042,-0.00755980471149087,0.999928057193756,0.00931701343506575,-0.0142302149906754,0.999881863594055,-0.0058146957308054,-0.00755980471149087,0.999928057193756,0.00931701343506575,-0.000920868129469454,0.999997019767761,0.00226684007793665,-0.00107102608308196,0.99983012676239,0.0184052344411612,0.0396245829761028,0.999020934104919,0.0196780096739531,0.0477714613080025,0.998721420764923,-0.0165374539792538,0.0457454770803452,0.997667849063873,-0.0506574288010597,0.0396245829761028,0.999020934104919,0.0196780096739531,0.0295064002275467,0.998347461223602,0.0493116937577724,0.029231796041131,0.999447882175446,-0.0157934371381998,-0.0953022986650467,-0.995040357112885,0.0284996572881937,-0.094817578792572,-0.994615614414215,0.0418279692530632,-0.0953230708837509,-0.99394565820694,0.0546409003436565,-0.0965347290039063,-0.994452953338623,0.0417673364281654,-0.0953022986650467,-0.995040357112885,0.0284996572881937,-0.0961676612496376,-0.995186805725098,0.01884700730443,-0.000911139126401395,0.14087150990963,-0.990027546882629,0.0103839989751577,0.140715926885605,-0.989995539188385,-0.00271978555247188,0.140894740819931,-0.990020871162415,-0.000901050225365907,0.143582224845886,-0.989638030529022,-0.00271396012976766,0.143567740917206,-0.989636778831482,-0.0145634533837438,0.143461510539055,-0.989548802375793,0.0174368899315596,0.0092628626152873,0.999805092811584,0.017023853957653,-0.0238399934023619,0.999570906162262,0.0178453288972378,0.0436066426336765,0.998889446258545,0.00531278690323234,-0.0242036376148462,0.999692976474762,0.00345382350496948,0.00912426877766848,0.999952495098114,0.00750875007361174,-0.0636759176850319,0.997942447662354,-0.0737088322639465,0.0284337103366852,-0.996874451637268,-0.0307354368269444,0.0266310255974531,-0.999172806739807,-0.0374769158661366,0.0269169341772795,-0.998934984207153,
- 0.00844633858650923,0.025894146412611,-0.999629080295563,-0.0374711714684963,0.0232169553637505,-0.999027967453003,-0.0307057499885559,0.0236147902905941,-0.999249517917633,-0.0715379267930985,0.0110375098884106,-0.99737685918808,-0.0705748051404953,-0.00553411152213812,-0.997491180896759,-0.0706154629588127,0.0344189070165157,-0.996909618377686,-0.0705748051404953,-0.00553411152213812,-0.997491180896759,-0.068880133330822,0.0109714427962899,-0.997564673423767,-0.0690670907497406,-0.0223267134279013,-0.99736213684082,-0.00519777555018663,0.00324265286326408,-0.999981284141541,-0.00520480331033468,-1.96263317775447e-005,-0.999986469745636,-0.00521668931469321,-0.00559629499912262,-0.999970734119415,-0.00839150324463844,-1.7821086657932e-005,-0.999964833259583,-0.00835497677326202,-0.00930483639240265,-0.999921798706055,-0.008369623683393,-0.00560299446806312,-0.999949336051941,0.0228159110993147,0.999737322330475,0.00220096483826637,0.0230479910969734,0.999701917171478,0.00806385651230812,0.0227123852819204,0.999741971492767,-0.000408033025451005,0.0234866607934237,0.999691784381866,0.00804481469094753,0.0232258886098862,0.9997279047966,0.00218421476893127,0.0236118640750647,0.999662220478058,0.0108649265021086,-0.0237315092235804,-0.0401017069816589,0.998913824558258,-0.0237262360751629,-0.0406487844884396,0.998891830444336,-0.0250284131616354,-0.0410534776747227,0.998843491077423,-0.0237315092235804,-0.0401017069816589,0.998913824558258,-0.0224286373704672,-0.0398038476705551,0.99895578622818,-0.0237262360751629,-0.0406487844884396,0.998891830444336,-0.0109654394909739,-0.00345364236272871,-0.999933958053589,-0.0141367372125387,-0.00113465054892004,-0.999899446964264,-0.0243457164615393,-0.00114229251630604,-0.999703049659729,-0.0140755325555801,-0.00586402229964733,-0.999883830547333,-0.0109654394909739,-0.00345364236272871,-0.999933958053589,-0.00102982204407454,-0.00549477618187666,-0.999984443187714,-0.0127130309119821,-0.0116685777902603,-0.999851107597351,-0.0140268821269274,-0.0181147027760744,-0.999737620353699,
- -0.0212721731513739,-0.0118259340524673,-0.999703824520111,-0.0140268821269274,-0.0181147027760744,-0.999737620353699,-0.0126033704727888,-0.024534834548831,-0.999619603157043,-0.00569652067497373,-0.0245349500328302,-0.999682724475861,-0.00237765861675143,-0.999792218208313,0.0202475283294916,-0.00162459549028426,-0.999873578548431,-0.0158178862184286,-0.00119995058048517,-0.999337315559387,0.0363815948367119,-0.00282234628684819,-0.999870717525482,-0.015831358730793,-0.00237765861675143,-0.999792218208313,0.0202475283294916,-0.00257624289952219,-0.999530553817749,-0.0305293556302786,-0.0282602272927761,-0.00308179715648294,-0.999595880508423,-0.0266953203827143,-0.000106700346805155,-0.999643623828888,-0.0264819655567408,0.00695961061865091,-0.999625086784363,-0.0266953203827143,-0.000106700346805155,-0.999643623828888,-0.0249402541667223,0.0103758610785007,-0.999635100364685,-0.0264819655567408,0.00695961061865091,-0.999625086784363,-0.0373637191951275,0.00342788174748421,-0.999295890331268,-0.0377532914280891,0.00206807930953801,-0.99928492307663,-0.0419056937098503,0.00219839764758945,-0.999119162559509,-0.0376552492380142,0.00481204502284527,-0.999279260635376,-0.0373637191951275,0.00342788174748421,-0.999295890331268,-0.03325454890728,0.0046353368088603,-0.999436259269714,-0.0191700644791126,0.0129838455468416,-0.99973201751709,-0.021084314212203,0.0130033986642957,-0.999693155288696,-0.00918550137430429,0.0128811029717326,-0.999874830245972,-0.0209052246063948,0.0216730013489723,-0.999546587467194,-0.0190058965235949,0.0216129906475544,-0.999585747718811,-0.0339579172432423,0.0220833625644445,-0.999179244041443,0.0324742682278156,0.999365091323853,-0.0146580366417766,0.0322540737688541,0.999218761920929,-0.0228382777422667,0.0325660146772861,0.999406635761261,-0.0112253436818719,0.0336509682238102,0.999171733856201,-0.0228810701519251,0.033916562795639,0.999316573143005,-0.0146978395059705,0.0335427410900593,0.999094009399414,-0.0261953007429838,0.00750878779217601,0.00722301006317139,-0.999945819377899,0.00751330889761448,0.00824037753045559,-0.999937891960144,
- 0.00750459404662251,0.00628121383488178,-0.999952137470245,0.0097050191834569,0.00721446378156543,-0.99992698431015,0.00970254186540842,0.00627392251044512,-0.999933302402496,0.00969983544200659,0.0052491407841444,-0.999939203262329,0.000727363978512585,0.00212247762829065,0.999997496604919,0.000887384114321321,0.00212247646413744,0.99999737739563,0.00163521850481629,0.00212247064337134,0.999996483325958,0.000888886221218854,0.000393020134652033,0.999999523162842,0.00072918989462778,0.000392719899537042,0.999999642372131,2.60162887570914e-005,0.000391397828934714,1,0.00651542330160737,-0.0267485994845629,0.999620974063873,-0.00311879767104983,-0.026600981131196,0.999641299247742,-0.00111123570241034,-0.0266319457441568,0.999644696712494,-0.000870779098477215,-0.0166345164179802,0.999861240386963,-0.00285439635626972,-0.0165646616369486,0.999858796596527,-0.0104665877297521,-0.0162959676235914,0.999812424182892,-0.0102434568107128,0.01170455198735,0.999879062175751,-0.0102220820263028,0.0129868295043707,0.999863505363464,-0.0101985959336162,0.0143944686278701,0.999844431877136,0.00939479283988476,0.0126759679988027,0.999875545501709,0.00937672704458237,0.0114085888490081,0.999891042709351,0.00935735180974007,0.0100507279857993,0.99990576505661,0.0184119697660208,0.999784648418427,-0.00958230067044497,0.0184139776974916,0.999795496463776,-0.00835769437253475,0.0184167604893446,0.999808430671692,-0.00663584936410189,0.00696423230692744,0.999940931797028,-0.00834706891328096,0.0069629312492907,0.999961078166962,-0.00542133534327149,0.00696347840130329,0.999953806400299,-0.00663494877517223,-0.0286385808140039,-0.999565839767456,-0.0069338558241725,-0.0214244816452265,-0.999742567539215,-0.00747134909033775,-0.0214234627783298,-0.999736666679382,-0.00823276024311781,-0.0214234627783298,-0.999736666679382,-0.00823276024311781,-0.0214244816452265,-0.999742567539215,-0.00747134909033775,-0.0142091177403927,-0.999860167503357,-0.00881969276815653,-0.0246904268860817,-0.999687135219574,-0.00402172654867172,-0.0246712993830442,-0.998871684074402,0.0405819192528725,
- -0.0246115177869797,-0.996561229228973,-0.0791208893060684,-0.0429308041930199,-0.999068439006805,-0.0043941349722445,-0.0371526777744293,-0.996118366718292,-0.0797993838787079,-0.0333409309387207,-0.991233646869659,-0.127845093607903,0.0813386812806129,0.994368314743042,0.0679382532835007,0.0832291319966316,0.991154670715332,0.103370688855648,0.0848067328333855,0.987968564033508,0.129329219460487,0.0813386812806129,0.994368314743042,0.0679382532835007,0.0813933238387108,0.995399594306946,0.0505465678870678,0.0822068527340889,0.991234183311462,0.103425994515419,-0.00084401888307184,-0.102630786597729,-0.994719207286835,-0.0116065749898553,-0.102461688220501,-0.994669318199158,0.00375200458802283,-0.102699369192123,-0.994705438613892,-0.000878076301887631,-0.109167650341988,-0.994023025035858,0.00374593213200569,-0.10912299156189,-0.99402117729187,0.0152443330734968,-0.109001815319061,-0.993924677371979,0.0360717289149761,0.0295528247952461,-0.998912215232849,0.048633199185133,0.029268454760313,-0.99838787317276,0.052465133368969,0.029180746525526,-0.998196303844452,0.0524760745465755,0.0341853871941566,-0.998036861419678,0.0486657433211803,0.0341638661921024,-0.998230636119843,0.0605014450848103,0.0342291034758091,-0.997581124305725,0.0746180042624474,0.0551996566355228,-0.995683252811432,0.0748529359698296,0.0649120658636093,-0.995079696178436,0.0742587521672249,0.0408717207610607,-0.996401190757751,0.0689816251397133,0.0649996101856232,-0.995498239994049,0.0689341351389885,0.055315900593996,-0.996086537837982,0.0690231025218964,0.0748021155595779,-0.99480676651001,0.0319317132234573,0.00394166028127074,-0.999482333660126,0.0318464115262032,-0.001110874931328,-0.999492168426514,0.0317094996571541,-0.00912144128233194,-0.999455511569977,0.0274874418973923,-0.00104806432500482,-0.999621629714966,0.0273802150040865,-0.0148435840383172,-0.999514937400818,0.0274256709963083,-0.00907686818391085,-0.999582648277283,0.0377561934292316,0.999280989170074,-0.00347494753077626,0.0374295972287655,0.999299287796021,8.25633542262949e-005,
- 0.0377925597131252,0.99926084280014,0.00704822968691587,0.0371606349945068,0.999284446239471,0.00705357547849417,0.0374295972287655,0.999299287796021,8.25633542262949e-005,0.037198431789875,0.999248802661896,0.010871266014874,-0.0625338405370712,-0.0422962680459023,0.997146189212799,-0.0625312849879265,-0.045280460268259,0.997015357017517,-0.0637709423899651,-0.0476112812757492,0.996828198432922,-0.0625338405370712,-0.0422962680459023,0.997146189212799,-0.0613055378198624,-0.040656752884388,0.997290730476379,-0.0625312849879265,-0.045280460268259,0.997015357017517,0.0288733877241611,-0.00406909640878439,-0.999574899673462,0.0265474524348974,-0.00171582109760493,-0.999646127223969,0.0174768939614296,-0.00160826370120049,-0.9998459815979,0.0265403781086206,-0.00642143096774817,-0.99962717294693,0.0288733877241611,-0.00406909640878439,-0.999574899673462,0.0377326235175133,-0.00629357900470495,-0.999268054962158,0.0230730008333921,-0.0130367167294025,-0.999648809432983,0.0222432855516672,-0.0187104232609272,-0.999577581882477,0.0163248796015978,-0.0130478236824274,-0.999781668186188,0.0222432855516672,-0.0187104232609272,-0.999577581882477,0.0230004973709583,-0.0243921559303999,-0.999437928199768,0.028768751770258,-0.0244646519422531,-0.999286651611328,-0.0156018808484077,-0.99982488155365,-0.0103339580819011,-0.0182360038161278,-0.999366343021393,0.0305702295154333,-0.0195354819297791,-0.998512327671051,0.0509074926376343,-0.0151414424180985,-0.999412655830383,0.0307436157017946,-0.0138679733499885,-0.999851107597351,-0.0102662816643715,-0.0132713243365288,-0.999484956264496,-0.0292204730212688,0.00501439860090613,0.00456986995413899,0.999976992607117,0.00503334077075124,-0.000322479318128899,0.999987363815308,0.00506854336708784,-0.00949848722666502,0.999942064285278,0.0088624432682991,-0.00950843282043934,0.999915540218353,0.00891034491360188,-0.000316271849442273,0.999960243701935,0.00883286166936159,-0.0151142608374357,0.999846816062927,-0.0260992851108313,0.999646663665771,0.00504912482574582,-0.0267306361347437,0.999609053134918,-0.00819784309715033,
- -0.0265061184763908,0.999643206596375,-0.00330342724919319,-0.0260992851108313,0.999646663665771,0.00504912482574582,-0.0263890530914068,0.999646306037903,-0.00330853904597461,-0.0259039141237736,0.999617755413055,0.00966673716902733,0.0131142539903522,-0.00813701935112476,0.999880909919739,0.0122864842414856,-0.00490233115851879,0.999912559986115,0.00186588836368173,-0.00788042694330215,0.999967217445374,0.0122864842414856,-0.00490233115851879,0.999912559986115,0.0131878545507789,-0.00168787513393909,0.999911606311798,0.0236288215965033,-0.00169422966428101,0.999719440937042,0.0132995061576366,-0.0217429157346487,0.999675154685974,0.0152386194095016,-0.0217423159629107,0.999647498130798,0,-0.0217448398470879,0.999763548374176,0.0153642538934946,-0.0121334828436375,0.999808371067047,0.0134096415713429,-0.0120913404971361,0.999837040901184,0.0256784874945879,-0.0123551264405251,0.999593913555145,0.00368529139086604,-0.999885678291321,0.0146666783839464,0.00368799455463886,-0.999730944633484,0.0229008607566357,0.00368634471669793,-0.999835073947906,0.0177847370505333,0.00183634483255446,-0.999676704406738,0.025359682738781,0.00179893593303859,-0.999840199947357,0.017788004130125,0.00182424380909652,-0.99973601102829,0.0229082107543945,-0.00986947864294052,0.00755504565313458,0.999922752380371,-0.00986684951931238,0.00641154311597347,0.999930858612061,-0.00986373145133257,0.00506370747461915,0.999938547611237,-0.00764148076996207,0.00756379775702953,0.999942183494568,-0.00764777744188905,0.00890462007373571,0.99993109703064,-0.00763609353452921,0.0064187035895884,0.999950289726257,-0.000764109427109361,0.00054039916722104,-0.999999642372131,-0.000626682420261204,0.000540177104994655,-0.999999761581421,-2.2125494069769e-005,0.000539199856575578,-0.99999988079071,-0.000625209184363484,0.00216315221041441,-0.999997556209564,-0.000762897834647447,0.00216315127909184,-0.999997437000275,-0.00140542327426374,0.00216314685530961,-0.999996721744537,0.00310085969977081,-0.0189424231648445,-0.999815762042999,0.00989324785768986,-0.0156791247427464,-0.999828159809113,
- 0.00185170955955982,-0.0189704988151789,-0.999818384647369,0.00310085969977081,-0.0189424231648445,-0.999815762042999,0.00185170955955982,-0.0189704988151789,-0.999818384647369,-0.00488421786576509,-0.0221093874424696,-0.999743700027466,-0.00933378469198942,0.0142285041511059,-0.999855220317841,0.000779206224251539,0.0140334097668529,-0.999901235103607,-0.00933579728007317,0.0140485800802708,-0.999857842922211,0.000779206224251539,0.0140334097668529,-0.999901235103607,0.010893976315856,0.0140043552964926,-0.999842584133148,0.0108950808644295,0.0141047621145844,-0.999841153621674,-0.00587481679394841,0.999961137771606,0.00657451711595058,-0.00587526569142938,0.999951481819153,0.00790654215961695,-0.00587443402037025,0.999967813491821,0.00546352984383702,0.00670269783586264,0.999937951564789,0.00889672245830297,0.00670123239979148,0.999946475028992,0.00789478421211243,0.00669928453862667,0.999955952167511,0.00657153641805053,0.0142240831628442,-0.999863505363464,0.00841805431991816,0.00777554139494896,-0.999941468238831,0.00752594089135528,0.0142235057428479,-0.999857008457184,0.00915648229420185,0.00132761429995298,-0.999976396560669,0.00674131046980619,0.00777554139494896,-0.999941468238831,0.00752594089135528,0.00132414232939482,-0.999963879585266,0.00840356945991516,0.0123705668374896,0.00838540960103273,-0.999888360500336,0.0123676219955087,0.00727315433323383,-0.999897122383118,0.00741790700703859,0.0043671652674675,-0.999963045120239,0.0123676219955087,0.00727315433323383,-0.999897122383118,0.0123705668374896,0.00838540960103273,-0.999888360500336,0.0173412300646305,0.0115002896636724,-0.999783515930176,0.0018979519372806,0.00200339895673096,0.999996185302734,0.00255975709296763,0.00202334416098893,0.999994695186615,0.00847749505192041,0.00202312227338552,0.999962031841278,0.00255995686165988,0.00199196161702275,0.999994814395905,0.0018979519372806,0.00200339895673096,0.999996185302734,-0.0034808018244803,0.00191409909166396,0.999992191791534,0.0023192937951535,-0.0197086054831743,0.999803066253662,-0.000990760163404047,-0.0196273494511843,0.999806940555573,
- 0.048649076372385,-0.0173706952482462,0.998664915561676,0.0023192937951535,-0.0197086054831743,0.999803066253662,-0.0451745837926865,-0.0269408486783504,0.998615860939026,-0.000990760163404047,-0.0196273494511843,0.999806940555573,-0.00126095558516681,0.0195107329636812,0.99980890750885,-0.0141008468344808,0.0182076375931501,0.999734818935394,-0.0140482066199183,0.0153194200247526,0.999784052371979,0.0116133326664567,0.0186200831085444,0.999759256839752,-0.00126095558516681,0.0195107329636812,0.99980890750885,0.0115634724497795,0.0224608443677425,0.999680817127228,-0.00939289294183254,0.999810516834259,-0.0170500315725803,-0.00937601551413536,0.999874830245972,-0.0127434162423015,-0.00936610531061888,0.999903857707977,-0.0102348821237683,0.00932188704609871,0.99987518787384,-0.012757028453052,0.00928495358675718,0.999944090843201,-0.00508065661415458,0.00930971372872591,0.999904572963715,-0.0102139869704843,-0.00133405847009271,-0.999770224094391,0.0213942229747772,-0.00678057409822941,-0.999965310096741,-0.00485231308266521,-0.00674437684938312,-0.999970555305481,0.00368580082431436,-0.011487077921629,-0.99966561794281,-0.0231689810752869,-0.00674437684938312,-0.999970555305481,0.00368580082431436,-0.00678057409822941,-0.999965310096741,-0.00485231308266521,0.0102803958579898,-0.0220800116658211,0.999703347682953,0.0103084957227111,-0.0184823721647263,0.999776065349579,0.0103620393201709,-0.0115791521966457,0.999879360198975,0.0143447648733854,-0.0184921193867922,0.999726176261902,0.0143614532426,-0.0220788866281509,0.999653100967407,0.0143896173685789,-0.0282238945364952,0.999498069286346,-0.00454803835600615,-0.00122338975779712,-0.999988973140717,0.00436302041634917,-0.00139703345485032,-0.999989569187164,0.00274320924654603,-0.00136547710280865,-0.999995350837708,0.00273484527133405,-0.0021217514295131,-0.999994039535522,0.00435636192560196,-0.00212167319841683,-0.999988257884979,0.0123574296012521,-0.0021212047431618,-0.999921441078186,0.0175416544079781,0.0156061900779605,-0.999724328517914,0.00907193124294281,0.0149985738098621,-0.999846458435059,
- 0.0649337694048882,0.0189869850873947,-0.997708916664124,0.00901381019502878,0.0247706938534975,-0.999652564525604,0.0174017455428839,0.0243804398924112,-0.999551355838776,-0.034451849758625,0.0267645120620728,-0.999047994613647,0.0106138810515404,-0.0172720588743687,-0.999794542789459,0.0105985384434462,-0.0184753518551588,-0.999773144721985,0.0105716520920396,-0.0205810852348804,-0.999732315540314,-0.0126959336921573,-0.0181421898305416,-0.999754905700684,-0.0126755470409989,-0.0169189292937517,-0.999776542186737,-0.0126388212665915,-0.0147179365158081,-0.999811768531799,-0.00762377213686705,-0.999967277050018,-0.00271273613907397,-0.00762849301099777,-0.999970972537994,-9.73857386270538e-005,-0.00763301271945238,-0.999967992305756,0.00243387161754072,0.00781736616045237,-0.999969482421875,-4.47842612629756e-005,0.0077803055755794,-0.999954760074615,0.00547727011144161,0.00780024891719222,-0.999966502189636,0.00251018488779664,-0.0141748273745179,0.999896824359894,0.00236391415819526,-0.0141288042068481,0.999856054782867,0.00939458515495062,-0.0142270950600505,0.999882221221924,-0.0057541667483747,-0.000980295706540346,0.999954998493195,0.00944100320339203,-0.00091416179202497,0.999996840953827,0.00234946119599044,-0.00106499448884279,0.999827802181244,0.0185302961617708,0.0497936978936195,0.998567521572113,0.019588204100728,0.0477227866649628,0.998726427555084,-0.0163766946643591,0.0457021705806255,0.997680187225342,-0.050455316901207,0.0293960310518742,0.999367415904999,0.0200158413499594,0.0295041278004646,0.998343467712402,0.0493951737880707,0.0292308554053307,0.999450385570526,-0.0156356059014797,-0.0945503413677216,-0.995119512081146,0.028240479528904,-0.0950973480939865,-0.994596421718597,0.0416475348174572,-0.0956079214811325,-0.993923187255859,0.0545513443648815,-0.0965927243232727,-0.994454503059387,0.0415946617722511,-0.0963851287961006,-0.99494481086731,0.0281930193305016,-0.0962240323424339,-0.995187997817993,0.0184888057410717,-0.000924333406146616,0.141068682074547,-0.98999947309494,0.010339149273932,0.140913784503937,-0.989967942237854,
- -0.00272825337015092,0.141091823577881,-0.989992797374725,-0.000914652540814132,0.143660217523575,-0.98962664604187,-0.00272264122031629,0.143645882606506,-0.989625453948975,-0.0145337842404842,0.143540591001511,-0.98953777551651,0.0174219980835915,0.00907124206423759,0.999807119369507,0.0170107372105122,-0.0238900817930698,0.999569952487946,0.0178287085145712,0.0432612970471382,0.998904764652252,0.00517767434939742,-0.0242553055286407,0.999692440032959,0.00333606824278831,0.00893298629671335,0.999954581260681,0.00735411327332258,-0.0635766386985779,0.997949838638306,-0.0737078785896301,0.0285327713936567,-0.996871709823608,-0.0306786112487316,0.0267176367342472,-0.999172210693359,-0.0374405346810818,0.0270060077309608,-0.998933911323547,0.00851842761039734,0.0262870956212282,-0.999618232250214,-0.037435956299305,0.02361367829144,-0.999019980430603,-0.0306524597108364,0.0240117516368628,-0.999241709709167,-0.0714621916413307,0.0110891032963991,-0.997381687164307,-0.0720877349376678,-0.00538952881470323,-0.997383773326874,-0.0705450251698494,0.0343717448413372,-0.9969162940979,-0.069024346768856,-0.00543721485882998,-0.997600138187408,-0.0689210817217827,0.0110259475186467,-0.99756121635437,-0.0691099986433983,-0.0221415292471647,-0.997363328933716,0.0142827434465289,0.018390966579318,-0.999728918075562,0.0142994020134211,0.0219611879438162,-0.999656558036804,0.0143275307491422,0.0280792117118835,-0.999503016471863,0.0103503977879882,0.0219624117016792,-0.99970531463623,0.0103781074285507,0.0183817185461521,-0.999777257442474,0.0104308892041445,0.0115126129239798,-0.999879360198975,0.00272370711900294,0.00213457364588976,0.999994039535522,0.0043410244397819,0.00213449541479349,0.999988377094269,0.0123160565271974,0.0021340292878449,0.999921977519989,-0.00454286392778158,0.00143991131335497,0.999988734722137,0.00434580538421869,0.00161262124311179,0.999989330768585,0.00272980867885053,0.00158123078290373,0.999995052814484,0.0175027120858431,-0.0154509479179978,0.999727427959442,0.00904620904475451,-0.0148445954546332,0.999848902225494,
- 0.064820185303688,-0.0188248734921217,0.997719466686249,0.0173591822385788,-0.0244177132844925,0.999551177024841,-0.0344062522053719,-0.0267895236611366,0.999048888683319,0.00898618157953024,-0.0248059444129467,0.999651908874512,-0.0122991371899843,0.01810641027987,0.999760448932648,-0.0122789461165667,0.0168926920741796,0.999781906604767,-0.0122425705194473,0.0147088672965765,0.999816834926605,0.0106319384649396,0.0172395724803209,0.999794900417328,0.0106167104095221,0.0184337925165892,0.999773681163788,0.0105900317430496,0.0205231793224812,0.99973326921463,-0.00763212935999036,0.999967634677887,0.00256439507938921,-0.00763681111857295,0.99997091293335,-7.18618139217142e-006,-0.00764129403978586,0.999967753887177,-0.00249612610787153,0.00684849079698324,0.999976634979248,-5.63547655474395e-005,0.00681240996345878,0.999961793422699,-0.00548353418707848,0.00683182338252664,0.99997341632843,-0.00256717763841152,-0.0141861625015736,-0.999896764755249,-0.00230732932686806,-0.0141410129144788,-0.999857068061829,-0.00927145034074783,-0.0142374280840158,-0.999882221221924,0.00573212653398514,-0.00100481219124049,-0.999956130981445,-0.00931735057383776,-0.000939965830184519,-0.999996900558472,-0.0022930062841624,-0.00108782574534416,-0.999831736087799,-0.0183167867362499,0.0467308275401592,0.998720765113831,0.0193156525492668,0.0445672050118446,0.998855173587799,-0.0173860508948565,0.042493861168623,0.997762680053711,-0.0516133382916451,0.0289446450769901,0.999386787414551,0.0197058003395796,0.0290732830762863,0.998315989971161,0.050199668854475,0.0287557281553745,0.999446451663971,-0.0167322792112827,-0.0932034030556679,-0.995262026786804,0.0276881065219641,-0.0938466116786003,-0.994681239128113,0.0424507074058056,-0.0944367423653603,-0.993930876255035,0.0564206093549728,-0.0970745757222176,-0.994376540184021,0.0423296913504601,-0.0968376398086548,-0.994917750358582,0.0275894962251186,-0.0966518446803093,-0.995175659656525,0.0168515481054783,-0.000634013384114951,0.144484609365463,-0.989506900310516,0.0101244132965803,0.144338622689247,-0.98947662115097,
- -0.00278416415676475,0.14451177418232,-0.98949921131134,-0.000625683111138642,0.146672070026398,-0.989185035228729,-0.00278000230900943,0.146655082702637,-0.989183843135834,-0.0140501977875829,0.146555036306381,-0.989102721214294,0.0183066464960575,0.00873962789773941,0.99979430437088,0.0179373696446419,-0.021931441500783,0.999598622322083,0.0187015272676945,0.0432383231818676,0.998889744281769,0.0065342546440661,-0.0222837515175343,0.999730348587036,0.00481464434415102,0.0085926353931427,0.999951541423798,0.00868451967835426,-0.0610214397311211,0.99809867143631,-0.0327323749661446,0.0262647960335016,-0.99911904335022,-0.037696361541748,0.0263578221201897,-0.998941659927368,-0.00724925799295306,0.0257773026823998,-0.999641478061676,-0.03771011531353,0.0274023376405239,-0.998912930488586,-0.0327427312731743,0.0275891982018948,-0.999082982540131,-0.0594850890338421,0.0265748091042042,-0.997875452041626,-0.0763396099209785,0.00976249016821384,-0.997034072875977,-0.0769401118159294,-0.00594965415075421,-0.997018039226532,-0.0754140391945839,0.0330659598112106,-0.996603906154633,-0.0709839388728142,-0.00604611868038774,-0.997459232807159,-0.0708825811743736,0.009625393897295,-0.997438311576843,-0.0710747390985489,-0.0231651030480862,-0.997202038764954,0.00474372180178761,0.00525898765772581,0.999974966049194,0.00475197704508901,0.0014436844503507,0.999987721443176,0.0047675957903266,-0.00586403487250209,0.999971508979797,0.00880109891295433,-0.00587581936269999,0.999944090843201,0.00883688218891621,0.00144532613921911,0.999959945678711,0.00877969432622194,-0.0102095166221261,0.999909400939941,-0.0248022843152285,0.999685227870941,0.00377079751342535,-0.025181669741869,0.999639511108398,-0.00931743998080492,-0.0249757319688797,0.999676942825317,-0.00471671763807535,-0.0248022843152285,0.999685227870941,0.00377079751342535,-0.0253217853605747,0.999668300151825,-0.00470190215855837,-0.0248501393944025,0.999658405780792,0.00809856317937374,0.0222779884934425,-0.0437581241130829,-0.99879378080368,0.0208691526204348,-0.0423889309167862,-0.998883187770844,
- 0.0222492180764675,-0.0466446429491043,-0.998663783073425,0.0222779884934425,-0.0437581241130829,-0.99879378080368,0.0222492180764675,-0.0466446429491043,-0.998663783073425,0.0236616600304842,-0.0485425479710102,-0.998540878295898,0.0139209777116776,-0.00660819793120027,0.999881267547607,0.0126701826229692,-0.00376948434859514,0.999912619590759,0.00185684207826853,-0.00630965549498796,0.999978423118591,0.0126701826229692,-0.00376948434859514,0.999912619590759,0.013989781960845,-0.000963459839113057,0.99990177154541,0.0248693004250526,-0.000970771245192736,0.999690234661102,0.0145287113264203,-0.0170979835093021,0.999748349189758,0.0143928425386548,-0.0215006172657013,0.999665319919586,0.00639938004314899,-0.0215007681399584,0.999748349189758,0.0144689846783876,-0.0126933390274644,0.999814808368683,0.0145287113264203,-0.0170979835093021,0.999748349189758,0.0228916294872761,-0.0128378113731742,0.999655544757843,0.00133254309184849,-0.999888300895691,-0.0148884141817689,0.0015469336649403,-0.999905586242676,0.0136558590456843,0.00122336682397872,-0.999568045139313,-0.0293644107878208,0.00300965877249837,-0.999902069568634,0.0136699443683028,0.00343359308317304,-0.999883234500885,-0.0148920295760036,0.00281333830207586,-0.999635875225067,0.0268372539430857,-0.0107067879289389,0.0211583506315947,0.999718904495239,-0.0107306931167841,0.0179989170283079,0.999780476093292,-0.0107808467000723,0.0113229667767882,0.99987781047821,-0.0148186162114143,0.0180079266428947,0.999728083610535,-0.0148330237716436,0.0211574304848909,0.999666094779968,-0.0148598542436957,0.0271093174815178,0.999522089958191,0.00440276134759188,0.00191747187636793,-0.999988555908203,-0.00433775736019015,0.00208615674637258,-0.999988436698914,-0.00250362022779882,0.00205077230930328,-0.999994814395905,-0.00250170053914189,0.00222346209920943,-0.999994456768036,-0.0043365303426981,0.00222337385639548,-0.99998813867569,-0.0119245070964098,0.00222292984835804,-0.999926507472992,-0.0181873980909586,-0.0157668571919203,-0.999710321426392,-0.00841518864035606,-0.0150644509121776,-0.999851167201996,
- -0.0632796064019203,-0.0189899858087301,-0.997815251350403,-0.00835601147264242,-0.0257970076054335,-0.999632298946381,-0.0180209018290043,-0.0253542196005583,-0.999516129493713,0.0329461134970188,-0.0276616103947163,-0.999074280261993,-0.0109069403260946,0.0169549193233252,-0.999796748161316,-0.0108927246183157,0.0180699750781059,-0.999777376651764,-0.0108653139322996,0.020216966047883,-0.999736607074738,0.0131959347054362,0.017723711207509,-0.999755918979645,0.0131769143044949,0.0165890008211136,-0.999775528907776,0.0131392991170287,0.0143478224053979,-0.999810755252838,-0.0070036519318819,0.999971926212311,0.00269653857685626,-0.00702087534591556,0.999975442886353,0.000144010744406842,-0.00698357075452805,0.999959647655487,0.00566407619044185,0.00763040548190475,0.999967694282532,-0.0025208299048245,0.00763523438945413,0.999970853328705,9.34753406909294e-005,0.00763985887169838,0.999967455863953,0.00262349215336144,0.0142305912449956,-0.999896466732025,0.00214275601319969,0.00753309158608317,-0.999925792217255,0.00958233885467052,0.0142880361527205,-0.999877333641052,-0.00641921907663345,0.00753309158608317,-0.999925792217255,0.00958233885467052,0.000811760546639562,-0.999997496604919,0.00212836591526866,0.000980684068053961,-0.999815464019775,0.0191875025629997,-0.0289503373205662,0.999383509159088,-0.0198616180568933,-0.029078034684062,0.998310923576355,-0.0502979606389999,-0.0287626758217812,0.999449968338013,0.0165067166090012,-0.0466584451496601,0.998721122741699,-0.0194741077721119,-0.0445038862526417,0.998861908912659,0.0171561483293772,-0.0424394831061363,0.997780382633209,0.0513141565024853,0.0940695852041245,-0.995524883270264,-0.00901817716658115,0.0954115018248558,-0.994944155216217,-0.031351525336504,0.0967588052153587,-0.993808925151825,-0.0546042434871197,0.096681222319603,-0.994823396205902,-0.0312938578426838,0.0963407382369041,-0.99530816078186,-0.00895233545452356,0.0960701480507851,-0.995350778102875,0.00689352350309491,0.000610871298704296,0.144783869385719,0.989463150501251,-0.0100638195872307,0.14464046061039,0.989433169364929,
- 0.0027450704947114,0.144810572266579,0.98945564031601,0.000603392720222473,0.146778121590614,0.989169299602509,0.00274136778898537,0.14676134288311,0.989168167114258,0.0139163611456752,0.146662726998329,0.989088773727417,0.047881193459034,0.0235537942498922,0.998575329780579,0.0462431125342846,0.0235658511519432,0.998652219772339,0.0578554533421993,0.0234789848327637,0.998048841953278,0.0462262965738773,0.0266983322799206,0.998574197292328,0.0478693135082722,0.026727544143796,0.998496055603027,0.0324797742068768,0.0264512076973915,0.999122321605682,0.0710627809166908,-0.00589082995429635,0.997454524040222,0.0709606409072876,0.00970079749822617,0.997431933879852,0.0711546838283539,-0.0229349508881569,0.99720162153244,0.0762175321578979,0.00983278267085552,0.997042775154114,0.0768138095736504,-0.00579751655459404,0.997028648853302,0.0752985700964928,0.0330169163644314,0.996614336967468,0.0148052526637912,0.0179738700389862,-0.999728858470917,0.0148197021335363,0.0211209058761597,-0.999667108058929,0.0148466173559427,0.0270701330155134,-0.999523341655731,0.0107351234182715,0.0211218893527985,-0.999719381332397,0.0107589298859239,0.0179650336503983,-0.999780774116516,0.0108088850975037,0.0112939570099115,-0.999877870082855,0.00247031124308705,0.00224852142855525,0.999994456768036,0.00430174265056849,0.00224843365140259,0.999988317489624,0.011872723698616,0.00224799057468772,0.99992698431015,-0.00441961176693439,0.00195913529023528,0.999988377094269,0.00430282531306148,0.00212711654603481,0.999988555908203,0.00247204909101129,0.00209187157452106,0.999994814395905,0.0181123334914446,-0.0157028120011091,0.999712646007538,0.00835432764142752,-0.0150021212175488,0.999852657318115,0.0631332993507385,-0.0189177524298429,0.997825801372528,0.0179437287151814,-0.0254003908485174,0.999516308307648,-0.0329356603324413,-0.0276975836604834,0.999073624610901,0.00829415302723646,-0.0258412919938564,0.999631643295288,-0.0132310139015317,0.0177095271646976,0.999755620956421,-0.0132120726630092,0.0165784582495689,0.999775350093842,-0.0131745981052518,0.0143437441438437,0.999810397624969,
- 0.0109012359753251,0.0169446151703596,0.999796986579895,0.0108870649710298,0.0180560909211636,0.999777674674988,0.0108597325161099,0.0201968178153038,0.999737024307251,-0.0076306089758873,0.999967932701111,0.00246340618468821,-0.00763539969921112,0.99997091293335,-0.000140666379593313,-0.0076399864628911,0.999967336654663,-0.00266046030446887,0.00704561453312635,0.999975264072418,-0.000191084938705899,0.00700860563665628,0.999959349632263,-0.00568928802385926,0.00702852848917246,0.999971628189087,-0.00273333885706961,-0.0142467552796006,-0.999896228313446,-0.0021539160516113,-0.014196421019733,-0.999853730201721,-0.00954611226916313,-0.0143039170652628,-0.999877333641052,0.0063835745677352,-0.000899383390787989,-0.999953627586365,-0.00959639437496662,-0.000825778231956065,-0.999997437000275,-0.00213949452154338,-0.000993601162917912,-0.999816119670868,-0.0191481858491898,-0.0313596874475479,-0.999359726905823,0.01723019964993,-0.0314733311533928,-0.998458027839661,0.0457274541258812,-0.0312143452465534,-0.999435365200043,-0.0124420905485749,-0.0540573000907898,-0.998397648334503,0.0167370513081551,-0.052359327673912,-0.998540282249451,-0.0132585959509015,-0.0504279583692551,-0.997649610042572,-0.0463924892246723,0.100612975656986,0.994529485702515,0.0280743129551411,0.101055510342121,0.994115769863129,0.0390087850391865,0.101533956825733,0.993514835834503,0.0511776804924011,0.102740228176117,0.993945419788361,0.0389497466385365,0.102564096450806,0.99433159828186,0.0280221439898014,0.102405846118927,0.99456512928009,0.0187934394925833,0.00125693797599524,-0.133103311061859,-0.991101443767548,-0.00959122460335493,-0.132965192198753,-0.99107438325882,0.00242930371314287,-0.13311730325222,-0.991097390651703,0.00123738416004926,-0.139044463634491,-0.990285456180573,0.00241563213057816,-0.139035940170288,-0.990284383296967,0.0137546779587865,-0.138944268226624,-0.990204691886902,-0.0180686023086309,-0.0089245792478323,0.999796986579895,-0.0176348425447941,0.0235814489424229,0.999566376209259,-0.0185305122286081,-0.0452210754156113,0.998805165290833,
- -0.00659365579485893,0.0239374227821827,0.999691724777222,-0.00466471072286367,-0.00877815950661898,0.999950647354126,-0.00902997888624668,0.0653941109776497,0.9978187084198,0.0712824910879135,-0.0254392437636852,-0.997131764888763,0.0310350228101015,-0.0238700676709414,-0.999233245849609,0.0355988517403603,-0.0240498576313257,-0.999076783657074,-0.00736860511824489,-0.0240427628159523,-0.999683797359467,0.0355939529836178,-0.021759495139122,-0.999129474163055,0.0310209933668375,-0.0220046136528254,-0.999276578426361,0.0777596011757851,-0.0117803802713752,-0.996902585029602,0.078459344804287,0.00508782314136624,-0.996904373168945,0.0766573026776314,-0.0373284481465817,-0.996358513832092,0.0711231529712677,0.00521457754075527,-0.997453987598419,0.0710097998380661,-0.0115985572338104,-0.997408211231232,0.0712247267365456,0.0237355064600706,-0.997177839279175,-0.0298408418893814,0.999378979206085,-0.0187407825142145,-0.0299760811030865,0.998329520225525,-0.0493931174278259,-0.0296572595834732,0.99944144487381,0.0154049023985863,-0.0481264665722847,0.99867308139801,-0.0183260291814804,-0.0460778176784515,0.99880838394165,0.0160844326019287,-0.0439763925969601,0.997758328914642,0.0504439696669579,0.0964907631278038,-0.994911313056946,-0.0290020704269409,0.0970800668001175,-0.99437028169632,-0.0424656756222248,0.097656637430191,-0.993641197681427,-0.0560394264757633,0.0998638421297073,-0.994099020957947,-0.0423603095114231,0.0996384099125862,-0.994603514671326,-0.0289136376231909,0.0994496196508408,-0.994872570037842,-0.0183979328721762,0.000628682144451886,0.139423742890358,0.990232586860657,-0.00957863964140415,0.139291405677795,0.99020516872406,0.00267157680355012,0.139448493719101,0.990225791931152,0.000605503271799535,0.145820081233978,0.989311039447784,0.0026599089615047,0.145804643630981,0.989309906959534,0.0133573869243264,0.145714268088341,0.98923659324646,-0.00411116890609264,-0.0211983695626259,-0.999766826629639,-0.0024685685057193,0.00784642528742552,-0.999966204166412,-0.00633019581437111,-0.0605051442980766,-0.99814784526825,
- -0.0189622342586517,0.00803747586905956,-0.999787867069244,-0.018604164943099,-0.0207512956112623,-0.999611556529999,-0.0193781536072493,0.0431821048259735,-0.998879373073578,0.0369957908987999,0.0259020105004311,0.99897974729538,0.0324605964124203,0.0260583534836769,0.999133288860321,0.0569460429251194,0.0252076014876366,0.998059034347534,0.0324561707675457,0.0254379156976938,0.9991495013237,0.0369911454617977,0.0255159232765436,0.998989820480347,0.00908332038670778,0.0250277444720268,0.999645531177521,0.0729062333703041,-0.00550994928926229,0.997323572635651,0.0728083103895187,0.00931785255670547,0.997302412986755,0.0730022862553597,-0.0232367925345898,0.997061014175415,0.0774668529629707,0.00943714939057827,0.996950268745422,0.0780529975891113,-0.00542279751971364,0.996934533119202,0.0764866545796394,0.0333700440824032,0.996512115001678,-0.00496529787778854,0.00527528254315257,-0.999973773956299,-0.00512270489707589,-3.55498632416129e-005,-0.999986886978149,-0.00538007682189345,-0.00872969068586826,-0.999947428703308,-0.00952741038054228,8.33512094686739e-005,-0.999954581260681,-0.00981824286282063,-0.014692947268486,-0.999843895435333,-0.00969919376075268,-0.00863162707537413,-0.999915778636932,0.052215900272131,0.998606145381927,-0.00769974710419774,0.05213787779212,0.998634874820709,-0.00319582223892212,0.0526957921683788,0.998601377010345,0.0042946795001626,0.0522423088550568,0.998625099658966,0.00431560585275292,0.05213787779212,0.998634874820709,-0.00319582223892212,0.0524714402854443,0.998581171035767,0.00907988473773003,-0.025426372885704,-0.0444986335933208,0.998685836791992,-0.0254913568496704,-0.0493717603385448,0.998455107212067,-0.0269357617944479,-0.0530732981860638,0.99822723865509,-0.025426372885704,-0.0444986335933208,0.998685836791992,-0.0240287482738495,-0.0419266149401665,0.998831689357758,-0.0254913568496704,-0.0493717603385448,0.998455107212067,-0.0111358733847737,-0.000677950913086534,-0.999937772750854,-0.0122203612700105,-0.000651412294246256,-0.999925136566162,-0.0214806031435728,-0.000424758007284254,-0.999769270420074,
- -0.0122946435585618,-0.00571256829425693,-0.999908089637756,-0.0112040927633643,-0.00571696693077683,-0.999920964241028,-0.00204229587689042,-0.0057536419481039,-0.999981462955475,-0.0174194443970919,-0.0116211241111159,-0.999780774116516,-0.017501424998045,-0.0163769703358412,-0.999712765216827,-0.0246192868798971,-0.0115452948957682,-0.999630331993103,-0.017501424998045,-0.0163769703358412,-0.999712765216827,-0.0175866913050413,-0.0211323853582144,-0.999622046947479,-0.010575077496469,-0.0213085431605577,-0.999717056751251,-0.028958884999156,-0.999548494815826,-0.00802315771579742,-0.0298989247530699,-0.999196290969849,0.0266996920108795,-0.0304257199168205,-0.998443067073822,0.0467512011528015,-0.0272044725716114,-0.999271929264069,0.026748888194561,-0.0274151023477316,-0.999591946601868,-0.00801912229508162,-0.0275149457156658,-0.999262928962708,-0.0267672669142485,0.0467904470860958,0.998718738555908,0.0192793700844049,0.0446197167038918,0.998851120471954,-0.0174820180982351,0.0425388775765896,0.99775242805481,-0.0517750009894371,0.0289394985884428,0.999387562274933,0.0196714513003826,0.0290683507919312,0.998315393924713,0.050214022397995,0.0287502240389585,0.999445021152496,-0.0168248694390059,-0.092977486550808,-0.995276272296906,0.027933731675148,-0.0936147347092628,-0.99469667673111,0.0426005199551582,-0.094199925661087,-0.993949353694916,0.0564897246658802,-0.0970328226685524,-0.994374573230743,0.0424725562334061,-0.0967967286705971,-0.994915068149567,0.0278300438076258,-0.0966117307543755,-0.99517422914505,0.0171637386083603,-0.000632475828751922,0.144329115748405,-0.989529550075531,0.0101252254098654,0.144183158874512,-0.98949921131134,-0.00278219045139849,0.144356265664101,-0.989521920681,-0.000623775413259864,0.14661531150341,-0.989193499088287,-0.00277784233912826,0.146598294377327,-0.989192247390747,-0.0140513237565756,0.146498173475266,-0.989111244678497,0.018304793164134,0.00890007335692644,0.99979293346405,0.0179343055933714,-0.0218845456838608,0.999599695205688,0.0187008120119572,0.0435191877186298,0.998877584934235,
- 0.00665967958047986,-0.0222346223890781,0.999730587005615,0.00492647895589471,0.00875324197113514,0.999949634075165,0.00882576499134302,-0.0610940046608448,0.998093068599701,-0.0327071845531464,0.0262888185679913,-0.999119222164154,-0.0376769714057446,0.0263822488486767,-0.998941659927368,-0.00714074540883303,0.0257981531322002,-0.9996417760849,-0.0376861020922661,0.0270746145397425,-0.998922824859619,-0.0327148102223873,0.0272619519382715,-0.999092876911163,-0.059506718069315,0.0262439772486687,-0.997882902622223,-0.076434426009655,0.00971458200365305,-0.997027277946472,-0.0770379453897476,-0.00605468917638063,-0.997009873390198,-0.0755038782954216,0.0331083722412586,-0.996595799922943,-0.0709550008177757,-0.00615308526903391,-0.997460544109344,-0.0708542317152023,0.00957432761788368,-0.997440814971924,-0.0710450410842896,-0.0233294162899256,-0.997200310230255,0.0467318706214428,-0.998719930648804,-0.019360838457942,0.0445693209767342,-0.998855888843536,0.0173340793699026,0.0424964502453804,-0.997765064239502,0.0515641830861568,0.0289437342435122,-0.999385893344879,-0.0197507198899984,0.0290718786418438,-0.998314201831818,-0.050234641879797,0.0287554040551186,-0.999447345733643,0.0166805181652308,-0.0932520031929016,0.995257914066315,-0.0276737753301859,-0.0938942730426788,0.994677782058716,-0.0424259640276432,-0.0944834724068642,0.9939284324646,-0.0563842169940472,-0.0970833823084831,0.994376659393311,-0.0423064865171909,-0.0968467891216278,0.994917273521423,-0.0275762993842363,-0.096661239862442,0.995174825191498,-0.016845403239131,-0.000613372889347374,-0.144541144371033,0.989498674869537,0.010106704197824,-0.144396468997002,0.989468276500702,-0.00275612669065595,-0.144568055868149,0.989490985870361,-0.000605191220529377,-0.146713271737099,0.989178955554962,-0.00275206891819835,-0.14669631421566,0.989177823066711,-0.0139812473207712,-0.146596744656563,0.989097595214844,0.00656042899936438,0.0222910642623901,-0.999729990959167,0.00484354514628649,-0.00856483355164528,-0.999951660633087,0.00870695151388645,0.0609977245330811,-0.99809992313385,
- 0.0182909835129976,-0.00871110521256924,-0.999794840812683,0.0179219599813223,0.0219403952360153,-0.999598681926727,0.0186855997890234,-0.0431858412921429,-0.998892307281494,-0.0377718396484852,-0.0274110548198223,0.998910427093506,-0.0327893570065498,-0.0275982767343521,0.999081194400787,-0.0596128776669502,-0.026581883430481,0.997867584228516,-0.0327794328331947,-0.0263074114918709,0.999116361141205,-0.0377586670219898,-0.0264017805457115,0.998938024044037,-0.00721831573173404,-0.0258129052817822,0.999640822410584,-0.0709947273135185,0.00602808175608516,0.997458517551422,-0.0708932429552078,-0.00963435601443052,0.997437477111816,-0.071085698902607,0.0231391601264477,0.997201800346375,-0.0763255059719086,-0.00977083668112755,0.997035086154938,-0.0769256353378296,0.00593198928982019,0.997019290924072,-0.0754002779722214,-0.0330671966075897,0.996604919433594,-0.0104196378961205,0.00721615180373192,0.999919712543488,-0.0104172900319099,0.00626016641035676,0.999926149845123,-0.0104142660275102,0.00503403972834349,0.999933183193207,-0.0080408938229084,0.00722550740465522,0.99994158744812,-0.00804656744003296,0.00844579190015793,0.999932050704956,-0.00803643465042114,0.00626805704087019,0.999948084354401,-0.000628636917099357,0.000270322168944404,-0.999999821186066,-0.000498814741149545,0.000270147545961663,-0.999999821186066,-1.82701805897523e-005,0.000269501295406371,-1,-0.000497309549245983,0.00223443657159805,-0.99999737739563,-0.00062743917806074,0.00223443633876741,-0.99999737739563,-0.00113918853458017,0.00223443284630775,-0.999996840953827,0.00292038917541504,-0.0158490538597107,-0.999870181083679,0.00920746847987175,-0.0156580582261086,-0.999835014343262,0.0016102057415992,-0.019235348328948,-0.999813735485077,0.00307586486451328,-0.0225590188056231,-0.999740779399872,0.0016102057415992,-0.019235348328948,-0.999813735485077,-0.0045478125102818,-0.0226706005632877,-0.999732732772827,-0.00963479280471802,0.0140219731256366,-0.999855279922485,-0.00963426567614079,0.0140689490363002,-0.999854624271393,-0.00963359791785479,0.0141284335404634,-0.999853849411011,
- 0.0112298717722297,0.0138335693627596,-0.999841272830963,0.011229332536459,0.0137859703972936,-0.999841928482056,0.0112286312505603,0.0137243131175637,-0.999842822551727,-0.00604745000600815,0.999957799911499,0.00691351993009448,-0.00604835525155067,0.999946117401123,0.00844775047153234,-0.00604667700827122,0.999965965747833,0.00562072126194835,0.0067330221645534,0.999931275844574,0.00960206147283316,0.00673126708716154,0.999941825866699,0.00843640696257353,0.00672895787283778,0.99995344877243,0.00691249733790755,0.014280516654253,-0.999864935874939,0.00814670417457819,0.00766900414600968,-0.999941408634186,0.00764730339869857,0.0142801133915782,-0.999861419200897,0.00856149476021528,0.0010574267944321,-0.99997353553772,0.00720267277210951,0.00766900414600968,-0.999941408634186,0.00764730339869857,0.00105584249831736,-0.999966382980347,0.00813166238367558,0.0456952378153801,0.998954832553864,-0.00111854902934283,0.042433675378561,0.9976886510849,-0.0530739314854145,0.0398985557258129,0.994945406913757,-0.0921505317091942,0.0271429214626551,0.999631285667419,-0.000774897751398385,0.0271319169551134,0.998968124389648,0.0364218428730965,0.0270959176123142,0.998258173465729,-0.0524069294333458,-0.0857732445001602,-0.994332909584045,0.0628089085221291,-0.0865200310945511,-0.993003368377686,0.0803664550185204,-0.0871111527085304,-0.991685807704926,0.0947156623005867,-0.090630479156971,-0.992649793624878,0.0802032276988029,-0.0903704985976219,-0.993933856487274,0.0626787468791008,-0.0901960283517838,-0.994573652744293,0.0518467053771019,-0.000693233858328313,0.103847861289978,-0.994593024253845,0.0113076427951455,0.103667348623276,-0.994547724723816,-0.00308389589190483,0.103882014751434,-0.994584858417511,-0.000673056463710964,0.108622588217258,-0.994082927703857,-0.00307372608222067,0.108601279556751,-0.994080603122711,-0.015776515007019,0.108478210866451,-0.993973731994629,0.0162904262542725,0.0482987798750401,0.998700082302094,0.0158797688782215,0.0127330143004656,0.999792814254761,0.0166571922600269,0.081633485853672,0.996523261070251,
- 0.00811165012419224,0.012496598996222,0.999889016151428,0.00620859954506159,0.0482105948030949,0.998817980289459,0.0100847948342562,-0.024757357314229,0.999642729759216,-0.0273776445537806,-0.0133997667580843,-0.999535322189331,-0.031317625194788,-0.013407432474196,-0.999419569969177,-0.00784345716238022,-0.0133587028831244,-0.999880075454712,-0.0313069112598896,-0.0137835387140512,-0.999414801597595,-0.0273727234452963,-0.0136041482910514,-0.999532699584961,-0.0469597317278385,-0.0144953671842813,-0.998791694641113,-0.069997638463974,-0.0226437896490097,-0.997290134429932,-0.0703734531998634,-0.0360699705779552,-0.996868431568146,-0.069514699280262,-0.00601110700517893,-0.997562825679779,-0.0657731890678406,-0.0361347533762455,-0.997180223464966,-0.06569854170084,-0.0227351896464825,-0.997580528259277,-0.0658300742506981,-0.0481458343565464,-0.996668636798859,-0.0285372659564018,0.00517107639461756,0.999579429626465,-0.0285160299390554,4.2051022319356e-005,0.999593317508698,-0.0284784305840731,-0.00862887501716614,0.999557197093964,-0.0240120925009251,-0.00864000059664249,0.999674320220947,-0.0239669885486364,4.98596346005797e-005,0.999712824821472,-0.0240415073931217,-0.0145024564117193,0.9996058344841,-0.0264859832823277,0.999646306037903,0.00239818822592497,-0.0266643334180117,0.999594032764435,-0.0100440047681332,-0.0265968181192875,0.999632239341736,-0.00530037144199014,-0.0269442945718765,0.999634087085724,0.00240195845253766,-0.0269900634884834,0.999621689319611,-0.00529562262818217,-0.0269169732928276,0.999614119529724,0.00687405886128545,-0.0214263293892145,-0.00612179934978485,0.999751746654511,-0.0225362107157707,-0.00609802640974522,0.999727427959442,-0.0318477377295494,-0.00589825911447406,0.999475359916687,-0.0224763751029968,-0.000951690366491675,0.999746918678284,-0.0213722120970488,-0.000952391070313752,0.999771118164063,-0.0119568919762969,-0.000958318880293518,0.999928116798401,-0.0208884198218584,-0.0215634703636169,0.999549269676209,-0.0194549448788166,-0.0215631276369095,0.999578237533569,-0.0338423289358616,-0.0215645581483841,0.999194502830505,
- -0.0193413458764553,-0.0122363483533263,0.999738037586212,-0.0207862798124552,-0.0122055858373642,0.99970954656601,-0.00926504097878933,-0.0124501585960388,0.999879598617554,0.00325522292405367,-0.9998779296875,0.0152870481833816,0.00296203326433897,-0.999703705310822,0.0241609066724777,0.00314108142629266,-0.999819457530975,0.0187427867203951,0.00125836720690131,-0.999639093875885,0.0268348678946495,0.0014855784829706,-0.999824225902557,0.0186907313764095,0.00133430096320808,-0.999708354473114,0.0241136383265257,0.0154433846473694,0.017816536128521,-0.999722003936768,0.0155375665053725,0.0209900364279747,-0.999658942222595,0.0157151464372873,0.0269875191152096,-0.999512314796448,0.0111647928133607,0.0211006086319685,-0.999715089797974,0.011109285056591,0.0179155208170414,-0.999777853488922,0.0109916077926755,0.0111838830634952,-0.999877035617828,0.00262794084846973,0.0021576143335551,0.999994218349457,0.00449393503367901,0.00211063376627862,0.999987721443176,0.0122213149443269,0.00191599654499441,0.999923527240753,-0.00440739281475544,0.00174287159461528,0.999988853931427,0.00448726397007704,0.00169412628747523,0.999988555908203,0.00262168282642961,0.00170436152257025,0.999995172023773,0.0177206434309483,-0.0163570921868086,0.999709248542786,0.00796511210501194,-0.0154084842652082,0.999849557876587,0.0627417787909508,-0.0207166075706482,0.997814774513245,0.0173284020274878,-0.0255807340145111,0.999522626399994,-0.0337207727134228,-0.0266083553433418,0.999077022075653,0.00764716695994139,-0.0257808119058609,0.999638378620148,-0.0126088438555598,0.0181187950074673,0.999756395816803,-0.0126184290274978,0.0169666763395071,0.999776422977448,-0.0126373013481498,0.0146924629807472,0.999812245368958,0.0113114872947335,0.0167295448482037,0.999796092510223,0.0113255092874169,0.0178617611527443,0.999776363372803,0.0113524599000812,0.0200412906706333,0.999734699726105,0.0174990277737379,0.99984335899353,0.00265861325897276,0.017494248226285,0.999847054481506,1.03784273619567e-007,0.0174895003437996,0.999843776226044,-0.00257334671914577,
- 0.032005850225687,0.9994877576828,-5.01121212437283e-005,0.0319671668112278,0.999472856521606,-0.00566247571259737,0.0319880843162537,0.999484837055206,-0.00264623528346419,-0.0393214076757431,-0.999224483966827,-0.00210665632039309,-0.0326181314885616,-0.999421060085297,-0.00967995822429657,-0.0393808856606483,-0.999202370643616,0.00661719543859363,-0.0326181314885616,-0.999421060085297,-0.00967995822429657,-0.0258919149637222,-0.999662578105927,-0.00209141778759658,-0.0260616485029459,-0.999470889568329,-0.019461939111352,0.0451939217746258,-0.998978137969971,0.000502315233461559,0.0418972298502922,-0.997691929340363,0.053437951952219,0.039398368448019,-0.99495530128479,0.0922590643167496,0.0268117785453796,-0.99964052438736,0.000167923688422889,0.0268008504062891,-0.998964905738831,-0.0367559716105461,0.026764165610075,-0.998247385025024,0.0527821481227875,-0.088910199701786,0.994122207164764,-0.0617750659584999,-0.0896867737174034,0.992751598358154,-0.0800035744905472,-0.0902847945690155,0.991419911384583,-0.0945269167423248,-0.0896084010601044,0.992758452892303,-0.0800066888332367,-0.0893439427018166,0.994084119796753,-0.0617629252374172,-0.0891706347465515,0.994720578193665,-0.0507898144423962,-0.000672014895826578,-0.103660628199577,0.994612574577332,0.0114525221288204,-0.103476852178574,0.994566023349762,-0.00308618950657547,-0.103695400059223,0.994604349136353,-0.000650968286208808,-0.108640529215336,0.99408096075058,-0.00307567859999835,-0.108618684113026,0.994078814983368,-0.0159217864274979,-0.108492322266102,0.993969798088074,0.0075915502384305,-0.0119326617568731,-0.999900043010712,0.00568403396755457,-0.0482591018080711,-0.998818755149841,0.00951589364558458,0.0249259695410728,-0.999644041061401,0.0161058492958546,-0.0483466647565365,-0.998700857162476,0.0156934391707182,-0.0121772941201925,-0.999802768230438,0.0164631344377995,-0.0812364518642426,-0.996558845043182,-0.0317851006984711,0.012723334133625,0.999413788318634,-0.027690876275301,0.0125320227816701,0.999537944793701,-0.0480442978441715,0.013481218367815,0.998754322528839,
- -0.027677521109581,0.0130802439525723,0.999531328678131,-0.0317746065557003,0.0130861047655344,0.999409437179565,-0.00743523798882961,0.0130480686202645,0.99988728761673,-0.0650853961706162,0.0362680740654469,0.997220396995544,-0.0650090277194977,0.0226612202823162,0.997627437114716,-0.065141923725605,0.0480719916522503,0.996717512607574,-0.0694167017936707,0.0225680749863386,0.997332513332367,-0.0697937682271004,0.0362025126814842,0.996904373168945,-0.0689463838934898,0.0061748456209898,0.997601330280304,0.0160502307116985,-0.00726830447092652,0.999844789505005,0.012163651175797,-0.00878417771309614,0.999887466430664,0.0160746164619923,-0.0118600931018591,0.999800443649292,0.00826932676136494,-0.00728339469060302,0.999939322471619,0.00827014353126287,-0.00441758334636688,0.999956071376801,0.012163651175797,-0.00878417771309614,0.999887466430664,0.00313214538618922,-0.00116483902093023,-0.999994456768036,0.00256216595880687,-0.00156404904555529,-0.999995529651642,-0.00402249395847321,-0.00105649954639375,-0.999991357326508,0.00256216595880687,-0.00156404904555529,-0.999995529651642,0.00312601774930954,-0.00197181617841125,-0.999993205070496,0.0103628439828753,-0.0019714932423085,-0.999944388866425,-0.000225932366447523,0.0133083807304502,-0.999911487102509,0.0532991290092468,0.0176822915673256,-0.998422026634216,0.001790881738998,0.0134738869965076,-0.999907612800598,-0.000509392411913723,0.0254391059279442,-0.999676287174225,0.00148643413558602,0.0253761801868677,-0.999676883220673,-0.0496260039508343,0.0269556511193514,-0.998404145240784,0.0106986965984106,-0.0189710855484009,-0.999762833118439,-0.00103150494396687,-0.0202659573405981,-0.999794125556946,0.0106477215886116,-0.0231473408639431,-0.999675333499908,-0.00103150494396687,-0.0202659573405981,-0.999794125556946,-0.0127181308344007,-0.0186132173985243,-0.999745965003967,-0.0126688219606876,-0.015761774033308,-0.99979555606842,-0.00879237428307533,-0.999823927879334,0.0165811087936163,-0.00877800770103931,-0.999882519245148,0.0125703383237123,-0.0087679261341691,-0.99991375207901,0.00977892521768808,
- 0.00889856182038784,-0.999881267547607,0.0125837260857224,0.00886439997702837,-0.999948501586914,0.00495627475902438,0.00888596568256617,-0.999912977218628,0.00975782889872789,-0.00135170680005103,0.999804615974426,-0.0197237133979797,-0.00180399499367923,0.999983549118042,0.00544038787484169,-0.00163886474911124,0.999991655349731,-0.0037539906334132,-0.0109001640230417,0.999700367450714,0.0219162795692682,-0.0111606996506453,0.999930381774902,-0.00382164819166064,-0.0110678775236011,0.999924004077911,0.00543193612247705,-0.00593559304252267,-0.0162747967988253,-0.9998499751091,-0.00818955153226852,-0.0167277734726667,-0.999826550483704,-0.00595380226150155,-0.0173824857920408,-0.999831259250641,-0.00818955153226852,-0.0167277734726667,-0.999826550483704,-0.0104537233710289,-0.0178718585520983,-0.999785661697388,-0.0104450294747949,-0.0173108447343111,-0.99979567527771,0.0618660114705563,0.997717916965485,0.0270492862910032,0.061376940459013,0.998104989528656,0.00440796045586467,0.0606111325323582,0.998098969459534,-0.0111672086641192,0.0618660114705563,0.997717916965485,0.0270492862910032,0.0616505779325962,0.997139394283295,0.0437299497425556,0.060724314302206,0.998144745826721,0.0044355858117342,-0.0312431547790766,-0.0187408495694399,0.999336183071136,-0.0316635742783546,-0.0366336032748222,0.998827040195465,-0.0286300554871559,-0.0608722008764744,0.99773496389389,-0.0286300554871559,-0.0608722008764744,0.99773496389389,-0.0252452716231346,-0.0367329530417919,0.999006152153015,-0.0248548816889524,-0.081832118332386,0.996336162090302,-0.000789435638580471,-0.00434830645099282,-0.999990284442902,-0.000821807479951531,-0.00108446029480547,-0.999999105930328,-0.000547651608940214,-0.00107727968133986,-0.999999344348907,-0.000652875110972673,-0.0076094102114439,-0.99997091293335,-0.000789435638580471,-0.00434830645099282,-0.999990284442902,-0.000955330906435847,-0.00761713925749063,-0.999970555305481,0.000719351752195507,-0.0113821271806955,-0.999935030937195,-0.00124952348414809,-0.0165174417197704,-0.999862849712372,
- -0.0226216912269592,-0.0124411229044199,-0.999666750431061,-0.00124952348414809,-0.0165174417197704,-0.999862849712372,0.000917161582037807,-0.0215614382177591,-0.999767124652863,0.0195586923509836,-0.0215904489159584,-0.999575555324554,-0.0147613529115915,-0.999842405319214,-0.0098714642226696,-0.0156064452603459,-0.999621272087097,0.0226663704961538,-0.0161215960979462,-0.998953282833099,0.042807973921299,-0.0296658482402563,-0.999308168888092,0.022433765232563,-0.0299480315297842,-0.999502718448639,-0.00988170877099037,-0.0300942957401276,-0.999148666858673,-0.0282211154699326,0.0544768646359444,-0.998243808746338,0.0232731830328703,0.0529379285871983,-0.997430086135864,0.0482791513204575,0.0507676899433136,-0.995287954807281,0.0826112031936646,0.0340021029114723,-0.999162256717682,0.0227758623659611,0.0341708101332188,-0.999383330345154,-0.0080953361466527,0.0338433384895325,-0.998296558856964,0.0475247167050838,-0.113666273653507,0.99103844165802,-0.0701630786061287,-0.114078894257545,0.99031275510788,-0.079162061214447,-0.114625945687294,0.989194273948669,-0.0914095938205719,-0.112234055995941,0.99051696062088,-0.0792440176010132,-0.112053468823433,0.991217851638794,-0.0702225789427757,-0.111846625804901,0.991888046264648,-0.0604029409587383,-0.00050469086272642,-0.108173012733459,0.994131982326508,0.00790823809802532,-0.108084641396999,0.994110226631165,-0.00219821650534868,-0.108189880847931,0.994127810001373,-0.000499776855576783,-0.10984967648983,0.993948101997375,-0.0021958015859127,-0.109839349985123,0.993946969509125,-0.0108517007902265,-0.109781712293625,0.993896543979645,0.0073562553152442,-0.0226763002574444,-0.999715805053711,0.00600139098241925,-0.044236097484827,-0.999003052711487,0.0100056724622846,0.019673453643918,-0.999756455421448,0.0218316558748484,-0.0444708876311779,-0.998772203922272,0.0215256996452808,-0.0231147240847349,-0.99950110912323,0.0223606489598751,-0.083116888999939,-0.996288895606995,-0.034171849489212,0.0103338873013854,0.999362528324127,-0.0314607098698616,0.010282950475812,0.999452114105225,
- -0.0463082864880562,0.0105610340833664,0.998871445655823,-0.0314622223377228,0.00981978047639132,0.999456703662872,-0.0341752208769321,0.00978645496070385,0.999368011951447,-0.0171829126775265,0.00999394617974758,0.999802470207214,-0.0816113650798798,0.0407814830541611,0.995829522609711,-0.0815322697162628,0.0298002455383539,0.996225118637085,-0.0817325711250305,0.061248205602169,0.994770526885986,-0.0858612582087517,0.0296669118106365,0.995865345001221,-0.0863553136587143,0.0406693331897259,0.995433926582336,-0.0846184194087982,0.00294074695557356,0.996409177780151,0.0287588406354189,0.0026423807721585,0.999582886695862,0.0287989359349012,0.0057879202067852,0.999568521976471,0.0288627836853266,0.0108442064374685,0.999524652957916,0.0252370927482843,0.0109056895598769,0.999622106552124,0.0251434072852135,0.00584070105105639,0.99966686964035,0.0253031775355339,0.0144994258880615,0.999574720859528,0.0150393061339855,-0.999886572360992,0.000884697190485895,0.0150885069742799,-0.999868214130402,-0.00600448623299599,0.0150096490979195,-0.999874949455261,0.00498976279050112,0.0202730353921652,-0.999776840209961,-0.00593870086595416,0.0201714746654034,-0.999796092510223,0.000932067981921136,0.0203348696231842,-0.999741673469543,-0.010154009796679,0.0220351703464985,0.00721870874986053,0.999731242656708,0.0235671494156122,0.00400207191705704,0.999714255332947,0.0330857560038567,0.00689305318519473,0.999428808689117,0.0235671494156122,0.00400207191705704,0.999714255332947,0.0219240747392178,0.000843154266476631,0.999759256839752,0.0121614979580045,0.000910271541215479,0.999925673007965,0.021709656342864,0.0216955039650202,0.999528884887695,0.0204902272671461,0.0217027924954891,0.999554455280304,0.034631535410881,0.0216162782162428,0.999166369438171,0.020325044170022,0.0126882763579488,0.999712944030762,0.021553847938776,0.0126543827354908,0.999687671661377,0.0102512193843722,0.0129653988406062,0.99986344575882,0.00384031143039465,0.999686241149902,0.0247539207339287,0.00363761768676341,0.999818623065948,0.0186959952116013,
- 0.00351185584440827,0.999882280826569,0.0149390092119575,0.0126604307442904,0.99975049495697,0.0184079706668854,0.0128289423882961,0.999617755413055,0.0244912020862103,0.0129155414178967,0.999534964561462,0.0276237465441227,0.0881344377994537,0.996099948883057,0.00415726006031036,0.0882622674107552,0.995679259300232,-0.0288568008691072,0.0882951468229294,0.994402587413788,-0.0580310821533203,0.0670367479324341,0.997340261936188,-0.0286073461174965,0.0686622336506844,0.997628808021545,0.00474112806841731,0.0702361911535263,0.996781885623932,0.0386372767388821,-0.0205021817237139,-0.999629318714142,-0.0179170351475477,-0.0198341310024261,-0.999346137046814,-0.030230863019824,-0.019143920391798,-0.998896420001984,-0.0428903140127659,-0.0184670183807611,-0.999374210834503,-0.0301699656993151,-0.0188246890902519,-0.999663352966309,-0.0178573727607727,-0.0191007573157549,-0.999783217906952,-0.00828405376523733,0.00717074237763882,0.144763514399529,0.989440381526947,-0.00360530009493232,0.145901426672935,0.989292562007904,0.00874787662178278,0.14459553360939,0.989452183246613,0.00794979557394981,0.151417776942253,0.988437950611115,0.00953224580734968,0.151217386126518,0.988454639911652,0.02080780826509,0.149778172373772,0.988500714302063,0.000260529137449339,-0.0344059057533741,-0.999408006668091,0.00589404534548521,-0.00263029290363193,-0.999979257583618,-0.00675912061706185,-0.0739476531744003,-0.997239291667938,-0.00785082951188087,-0.000848075724206865,-0.999968886375427,-0.0112283937633038,-0.0326720513403416,-0.999403059482574,-0.00414564879611135,0.0339769162237644,-0.999414026737213,-0.0144770238548517,0.036941509693861,0.999212622642517,0.02918691188097,0.0292794611304998,0.999145090579987,0.0232218317687511,0.0303301904350519,0.99927020072937,0.0649001970887184,0.0294274091720581,0.997457802295685,0.023520989343524,0.0326676778495312,0.999189496040344,0.029538981616497,0.0322001315653324,0.999044954776764,0.0608051903545856,-0.00182796875014901,0.998148024082184,0.0626194402575493,0.0142892375588417,0.997935175895691,
- 0.0588322952389717,-0.0191949326545,0.998083293437958,0.0671574845910072,0.0138632468879223,0.99764609336853,0.0658715143799782,-0.00235097180120647,0.997825384140015,0.0690412148833275,0.0380233190953732,0.996888995170593,0.0502543561160564,0.998559713363647,0.0187894199043512,0.0483801625669003,0.99870902299881,-0.0154871493577957,0.0465525649487972,0.997765123844147,-0.0479330010712147,0.0294379070401192,0.999382138252258,0.0192031059414148,0.0295343119651079,0.998453617095947,0.0470983199775219,0.0292896721512079,0.999462008476257,-0.014760515652597,-0.098028376698494,-0.994857847690582,0.0254640877246857,-0.0985338166356087,-0.994393646717072,0.038372740149498,-0.0990061387419701,-0.993787884712219,0.0508282631635666,-0.0966277197003365,-0.994578123092651,0.0384370274841785,-0.0964379906654358,-0.995012223720551,0.0255031064152718,-0.0962914600968361,-0.995221555233002,0.0161923505365849,-0.00147340598050505,0.135213568806648,-0.990815401077271,0.0107798278331757,0.135041236877441,-0.990781366825104,-0.0025880285538733,0.135228246450424,-0.990811169147491,-0.00146196212153882,0.138426840305328,-0.990371584892273,-0.00257960171438754,0.138417840003967,-0.990370631217957,-0.0154472505673766,0.13830178976059,-0.990269720554352,0.00977983511984348,0.0101020252332091,0.999901175498962,0.0161124598234892,-0.0277496557682753,0.99948513507843,0.0170042999088764,0.0449839048087597,0.998843014240265,0.00511797564104199,-0.0281042028218508,0.999591946601868,0.00977983511984348,0.0101020252332091,0.999901175498962,0.0073754251934588,-0.068309985101223,0.99763685464859,-0.0782511383295059,0.0275604221969843,-0.996552646160126,-0.0327762477099895,0.0256356298923492,-0.999133884906769,-0.0374041423201561,0.0258338190615177,-0.998966336250305,0.0110387373715639,0.0266989599913359,-0.999582648277283,-0.0373950712382793,0.0237290933728218,-0.999018788337708,-0.0327605083584785,0.0240159314125776,-0.999174654483795,-0.0678136721253395,0.0134367356076837,-0.997607529163361,-0.0685503035783768,-0.00564717222005129,-0.997631728649139,
- -0.066862165927887,0.0371853597462177,-0.997069120407104,-0.0658225268125534,-0.00568925961852074,-0.997815132141113,-0.0656988322734833,0.0133823370561004,-0.997749745845795,-0.0659122988581657,-0.0226192586123943,-0.99756908416748,-0.00504369428381324,0.0052982191555202,-0.999973237514496,-0.00520338770002127,-7.2059192461893e-005,-0.999986529350281,-0.00546593870967627,-0.00891234260052443,-0.999945342540741,-0.00949452724307776,4.41045849584043e-005,-0.999954998493195,-0.00978942215442657,-0.0149439442902803,-0.999840438365936,-0.00966912601143122,-0.00881683547049761,-0.999914407730103,0.0522115267813206,0.998605251312256,-0.00784613844007254,0.0523929558694363,0.998621046543121,-0.00332056451588869,0.0526935011148453,0.998601734638214,0.0042360108345747,0.0522425957024097,0.998625338077545,0.0042567839846015,0.0518772155046463,0.998648047447205,-0.00329879182390869,0.0524731799960136,0.998581349849701,0.00905677955597639,-0.0266220979392529,-0.044562291353941,0.99865186214447,-0.0267004352062941,-0.0493898615241051,0.998422682285309,-0.0267596002668142,-0.0530611909925938,0.998232662677765,-0.024109261110425,-0.0445949658751488,0.998714208602905,-0.0240822173655033,-0.0420448295772076,0.998825490474701,-0.0241601057350636,-0.049429215490818,0.998485386371613,-0.0112150218337774,-0.000667600485030562,-0.999936878681183,-0.0122910840436816,-0.000641067803371698,-0.999924302101135,-0.0218085423111916,-0.000406345759984106,-0.999762177467346,-0.0123673295602202,-0.00585668394342065,-0.999906420707703,-0.0112850870937109,-0.00586074171587825,-0.999919176101685,-0.00186487240716815,-0.00589576875790954,-0.999980866909027,-0.017455231398344,-0.0104264551773667,-0.999793350696564,-0.017426623031497,-0.0104267662391067,-0.999793767929077,-0.0244205556809902,-0.0103502459824085,-0.99964827299118,-0.017615245655179,-0.0210498087108135,-0.99962329864502,-0.0176435317844152,-0.0210490971803665,-0.999622762203217,-0.0108368806540966,-0.0212193951010704,-0.999716103076935,-0.0290755238384008,-0.99954617023468,-0.0078818341717124,
- -0.0282862987369299,-0.999235153198242,0.0270016063004732,-0.0305500980466604,-0.998422920703888,0.0471016131341457,-0.0282862987369299,-0.999235153198242,0.0270016063004732,-0.0267655085772276,-0.999610722064972,-0.0078758979216218,-0.0268671084195375,-0.999282360076904,-0.0267001520842314,0.0269225686788559,-0.99947452545166,-0.0180489495396614,0.0251023378223181,-0.999580860137939,0.0144223850220442,0.0232245400547981,-0.998605072498322,0.0474194586277008,0.00519310869276524,-0.999815404415131,-0.0185022074729204,0.00532218161970377,-0.998886466026306,-0.0468775518238544,0.00504188798367977,-0.999894142150879,0.013648783788085,-0.0721072778105736,0.997035324573517,-0.0268540121614933,-0.0726070702075958,0.996596336364746,-0.0390395224094391,-0.0731101334095001,0.995989501476288,-0.0515739135444164,-0.0744177252054214,0.996465146541595,-0.0389771051704884,-0.0742207318544388,0.996881663799286,-0.026799950748682,-0.0740604624152184,0.997102737426758,-0.0173586439341307,-0.00458995532244444,-0.13193379342556,0.991247892379761,0.00681104743853211,-0.132067874073982,0.991217255592346,-0.00583320669829845,-0.131918162107468,0.991243481636047,-0.00474016135558486,-0.138851463794708,0.990301907062531,-0.00599005166441202,-0.138810485601425,0.990300953388214,-0.0179493259638548,-0.138407111167908,0.990212798118591,0.00632393313571811,0.0254607927054167,-0.999655842781067,0.00346371415071189,-0.0092333322390914,-0.999951362609863,0.00965405534952879,0.0659334063529968,-0.99777740240097,0.0171453002840281,-0.00971398409456015,-0.999805808067322,0.0175677053630352,0.0248188190162182,-0.999537646770477,0.0166922006756067,-0.0450153164565563,-0.998846828937531,0.00822017528116703,-0.0260295495390892,0.999627411365509,-0.0370000153779984,-0.0223222188651562,0.99906599521637,-0.0320873595774174,-0.0227275062352419,0.999226689338684,-0.0746491923928261,-0.024907361716032,0.996898770332336,-0.0321387127041817,-0.0242501255124807,0.99918919801712,-0.0370560027658939,-0.024328351020813,0.999017000198364,-0.0689195170998573,0.00728492438793182,0.99759566783905,
- -0.0692468285560608,-0.0103901624679565,0.997545540332794,-0.0685708448290825,0.024948712438345,0.997334241867065,-0.0734034851193428,-0.0103947222232819,0.997248232364655,-0.0736650377511978,0.00732659455388784,0.99725615978241,-0.0730028077960014,-0.0349527932703495,0.996719121932983,-0.0796416327357292,-0.996823310852051,-0.000774468528106809,-0.0795885175466537,-0.996538102626801,0.0240323878824711,-0.0796398222446442,-0.99633514881134,-0.0312044974416494,-0.10271317511797,-0.994710445404053,-0.00105979852378368,-0.101334363222122,-0.994343280792236,-0.0318269468843937,-0.0999372228980064,-0.993122637271881,-0.0609916672110558,0.142846927046776,0.989015161991119,0.0379993543028831,0.143292427062988,0.988420486450195,0.0499229952692986,0.143704459071159,0.987710118293762,0.061464998871088,0.147024437785149,0.9878790974617,0.0497872196137905,0.146845653653145,0.988433599472046,0.0378878451883793,0.146705687046051,0.988742768764496,0.0294143948704004,-0.0089312344789505,-0.0993008017539978,-0.995017468929291,-0.0236523989588022,-0.0983453840017319,-0.994871318340302,-0.00949013140052557,-0.099264919757843,-0.995015859603882,-0.00916433800011873,-0.103744670748711,-0.994561851024628,-0.00972582306712866,-0.103721365332603,-0.994558930397034,0.00578451436012983,-0.104352928698063,-0.994523525238037,-0.0123943742364645,-0.0384995527565479,0.999181807041168,-0.00932344235479832,0.0102697899565101,0.999903798103333,-0.014618031680584,-0.0740522444248199,0.997147262096405,-0.00293884938582778,0.0101696150377393,0.999943971633911,-0.00258367019705474,-0.0389200150966644,0.999238967895508,-0.00323432660661638,0.0517550893127918,0.99865460395813,0.0802392661571503,-0.0109622627496719,-0.996715426445007,0.0304856542497873,-0.00628378381952643,-0.999515473842621,0.0292671080678701,-0.0061690928414464,-0.999552607536316,-0.0238983649760485,-0.00323510263115168,-0.999709188938141,0.0294182784855366,-0.00233881059102714,-0.999564468860626,0.0306473094969988,-0.00231805467046797,-0.99952757358551,0.0564906038343906,0.00512982858344913,-0.998390018939972,
- 0.058853767812252,0.030966505408287,-0.997786283493042,0.0541325211524963,-0.0202497951686382,-0.998328447341919,0.0571552626788616,0.0310809500515461,-0.997881472110748,0.0556722432374954,0.00519544212147594,-0.998435616493225,0.0581603981554508,0.0490066632628441,-0.997103631496429,-0.0309709422290325,0.999379098415375,-0.0168006084859371,-0.0345298871397972,0.998260974884033,-0.0477785654366016,-0.0266855712980032,0.999440252780914,0.0201784074306488,-0.0482826046645641,0.998728632926941,-0.0144934207201004,-0.0419193655252457,0.998867273330688,0.0225167777389288,-0.0359287671744823,0.997726321220398,0.0570209249854088,0.089948944747448,-0.99515563249588,-0.0396814122796059,0.0889683216810226,-0.994537115097046,-0.0545945279300213,0.0880232378840446,-0.993748128414154,-0.0686779990792274,0.0915769785642624,-0.994290113449097,-0.0547817051410675,0.0929689109325409,-0.994868040084839,-0.0399298816919327,0.0939721167087555,-0.995150089263916,-0.0290805846452713,0.105176106095314,0.14776037633419,0.983414947986603,0.0949791669845581,0.14762456715107,0.984472453594208,0.107598096132278,0.147790357470512,0.983148396015167,0.105145752429962,0.149303629994392,0.983185052871704,0.107571892440319,0.149284392595291,0.982925474643707,0.118225283920765,0.14918939769268,0.981715500354767,-0.116729073226452,-0.0205014236271381,-0.992952227592468,-0.115180745720863,0.0080798314884305,-0.993311762809753,-0.118646897375584,-0.0586291775107384,-0.991204082965851,-0.128512844443321,0.00822990667074919,-0.991673767566681,-0.128155618906021,-0.0201541017740965,-0.99154931306839,-0.128804728388786,0.0422651581466198,-0.99076896905899,0.143417239189148,0.0270191859453917,0.989293456077576,0.137984469532967,0.0272160358726978,0.990060448646545,0.16363613307476,0.0262780226767063,0.986170709133148,0.137982711195946,0.0266937036067247,0.990074872970581,0.143415167927742,0.0267992336302996,0.989299714565277,0.114150941371918,0.0262222327291965,0.993117272853851,0.181697875261307,-0.00573044177144766,0.983337700366974,0.181605145335197,0.00871028937399387,0.983333051204681,
- 0.181758508086205,-0.0227254219353199,0.983080625534058,0.187153354287148,0.00884881336241961,0.982290863990784,0.187695413827896,-0.00563175417482853,0.982211172580719,0.186207845807076,0.0319327972829342,0.981991350650787,-0.0359339937567711,0.00767721142619848,-0.99932473897934,-0.035935141146183,0.00716721965000033,-0.999328434467316,-0.0359331257641315,0.00805905368179083,-0.999321758747101,-0.0330907925963402,0.00767058366909623,-0.999422907829285,-0.0330895818769932,0.00805170554667711,-0.999419987201691,-0.0330879762768745,0.00855370704084635,-0.999415934085846,0.0592448338866234,0.00212846253998578,0.998241305351257,0.0605825074017048,0.00236975238658488,0.998160362243652,0.0643650740385056,0.00236978172324598,0.997923612594604,0.0605848394334316,0.00190208433195949,0.998161256313324,0.0592448338866234,0.00212846253998578,0.998241305351257,0.0556994676589966,0.0018477092962712,0.998445868492126,0.0604745894670486,-0.0272266697138548,0.997798442840576,0.0523975864052773,-0.0225299969315529,0.998372197151184,0.0543860979378223,-0.0225775651633739,0.998264670372009,0.0543860979378223,-0.0225775651633739,0.998264670372009,0.0523975864052773,-0.0225299969315529,0.998372197151184,0.0462775863707066,-0.0177552066743374,0.998770833015442,0.0424843057990074,0.0134532088413835,0.999006628990173,0.0318837016820908,0.0130832465365529,0.999406039714813,0.0318877100944519,0.0127433128654957,0.999410212039948,0.0530859231948853,0.0133176743984222,0.998501121997833,0.0424843057990074,0.0134532088413835,0.999006628990173,0.0530794262886047,0.0138965854421258,0.998493671417236,-0.0068783164024353,0.999914646148682,-0.0111057972535491,-0.00681049702689052,0.999930858612061,-0.00959516782313585,-0.00671107647940516,0.999950289726257,-0.00738128274679184,0.00581529643386602,0.999931633472443,-0.0101523296907544,0.0059803007170558,0.999962747097015,-0.00624031480401754,0.00590929202735424,0.999951183795929,-0.00792410038411617,-0.0010764270555228,-0.999995946884155,-0.00265429238788784,-0.00114073953591287,-0.99999064207077,-0.00417197914794087,
- -0.00755768362432718,-0.999954462051392,-0.00582716846838593,-0.00755768362432718,-0.999954462051392,-0.00582716846838593,-0.0138058420270681,-0.999898195266724,-0.00362483924254775,-0.0139588387683034,-0.999877989292145,-0.00702595105394721,-0.00230034464038908,0.020192289724946,0.999793469905853,-0.00128127087373286,0.0254954695701599,0.999674201011658,0.000761570991016924,0.0361234247684479,0.99934709072113,0.00427250843495131,0.0243794266134501,0.999693632125854,0.00313436612486839,0.019076194614172,0.999813139438629,0.000767106888815761,0.00804540142416954,0.999967336654663,-0.00745431380346417,-0.00570472469553351,-0.999955952167511,-0.021972643211484,-0.00287034432403743,-0.999754548072815,-0.0265410672873259,-0.0019781372975558,-0.999645829200745,-0.0230934768915176,0.0136422496289015,-0.999640285968781,-0.0186594892293215,0.012570021674037,-0.999746859073639,-0.038143340498209,0.0172803588211536,-0.999122858047485,-0.0385988429188728,-0.0202734675258398,-0.999049186706543,-0.0301620196551085,-0.0171644184738398,-0.999397695064545,-0.0664973929524422,-0.0165779087692499,-0.997648894786835,-0.000669979956001043,-0.0191338863223791,-0.999816715717316,-0.0301620196551085,-0.0171644184738398,-0.999397695064545,-0.0371268130838871,-0.0114044323563576,-0.999245464801788,-0.0288402251899242,-0.0409791842103004,-0.998743712902069,-0.017552075907588,-0.0440086014568806,-0.998876988887787,-0.0291735082864761,-0.0425072684884071,-0.998670220375061,-0.017552075907588,-0.0440086014568806,-0.998876988887787,-0.00602380279451609,-0.0459370799362659,-0.998926222324371,-0.00579994218423963,-0.0449013523757458,-0.998974621295929,0.194610044360161,0.980852901935577,-0.00738571910187602,0.19455274939537,0.980835258960724,-0.0105658769607544,0.194673165678978,0.980861008167267,-0.0037494006101042,0.208406120538712,0.977942109107971,-0.0140073811635375,0.208447590470314,0.977974534034729,-0.0107424566522241,0.208485573530197,0.977995991706848,-0.00758926663547754,-0.190004244446754,-0.981756329536438,0.00727178528904915,-0.190062180161476,-0.981771528720856,0.00106333452276886,
- -0.182467252016068,-0.983121931552887,0.0133046377450228,-0.190062180161476,-0.981771528720856,0.00106333452276886,-0.190004244446754,-0.981756329536438,0.00727178528904915,-0.19747257232666,-0.980294048786163,-0.00530665507540107,-0.0315096452832222,-0.999389290809631,0.0151099292561412,-0.031583309173584,-0.998751163482666,0.0387121550738811,-0.0314128585159779,-0.999458372592926,-0.00980543904006481,-0.053829625248909,-0.998441755771637,0.0147115169093013,-0.0526427365839481,-0.998558342456818,-0.010485578328371,-0.0512929260730743,-0.9979487657547,-0.0383072532713413,0.0981357097625732,0.994999825954437,0.0185701139271259,0.098493404686451,0.994722783565521,0.0287349708378315,0.0988825783133507,0.994289398193359,0.0401353575289249,0.103407137095928,0.99422812461853,0.0285909585654736,0.103278949856758,0.994481205940247,0.0184590648859739,0.103164874017239,0.994613230228424,0.0100760804489255,-0.0108554419130087,-0.10814044624567,-0.994076371192932,0.00211424217559397,-0.11181028932333,-0.993727326393127,0.00376379443332553,-0.108347021043301,-0.994105994701386,0.00374340382404625,-0.11528193205595,-0.99332582950592,0.00211424217559397,-0.11181028932333,-0.993727326393127,0.017426285892725,-0.115168213844299,-0.99319314956665,-0.015026475302875,-0.0127949845045805,0.999805212020874,-0.0143126416951418,0.0398445390164852,0.999103426933289,-0.0155228497460485,-0.0513242892920971,0.998561382293701,-0.00892271101474762,0.0400470122694969,0.999157965183258,-0.00564334774389863,-0.0127169219776988,0.999903202056885,-0.011686822399497,0.084747739136219,0.996333956718445,0.0873780399560928,-0.0228346101939678,-0.995913505554199,0.0388626754283905,-0.0209053549915552,-0.999025881290436,0.033257719129324,-0.0206795204430819,-0.999232828617096,-0.0184212550520897,-0.0220168959349394,-0.999587953090668,0.0332335606217384,-0.0187399592250586,-0.999271929264069,0.0388451181352139,-0.0183806028217077,-0.999076247215271,0.0613439567387104,-0.0212232451885939,-0.997891068458557,0.0626596361398697,0.00773138692602515,-0.998005092144012,
- 0.0600098222494125,-0.0494729653000832,-0.996971130371094,0.0600728243589401,0.00777569273486733,-0.998163759708405,0.0598533824086189,-0.0211765356361866,-0.997982561588287,0.0601958259940147,0.0279222372919321,-0.99779599905014,-0.0368158854544163,0.999314844608307,-0.00381394242867827,-0.0278314854949713,0.998903274536133,-0.0376541428267956,-0.0278033632785082,0.998803794384003,0.0402241721749306,-0.0368158854544163,0.999314844608307,-0.00381394242867827,-0.0432349555194378,0.99823009967804,0.0408339463174343,-0.0411229953169823,0.996222257614136,0.076486349105835,0.106542356312275,-0.993003129959106,-0.0509279631078243,0.138807713985443,-0.987933218479156,-0.0687058866024017,0.139357343316078,-0.986801147460938,-0.0824802368879318,0.0752189978957176,-0.994622468948364,-0.0711927264928818,0.106542356312275,-0.993003129959106,-0.0509279631078243,0.0747899636626244,-0.996376216411591,-0.0405084453523159,0.00319897150620818,0.100520543754101,0.994929850101471,-0.0120111117139459,0.100246645510197,0.994890093803406,0.00456470856443048,0.100544005632401,0.994922161102295,0.00315537955611944,0.108017101883888,0.994144022464752,0.00452928664162755,0.108004666864872,0.994140088558197,0.0219804719090462,0.107829041779041,0.993926405906677,-0.0080745005980134,0.0138526521623135,-0.999871492385864,-0.0066616078838706,0.0484247580170631,-0.998804688453674,-0.00932239461690187,-0.0168948080390692,-0.999813854694366,-0.0152267282828689,0.0484556667506695,-0.998709261417389,-0.0148244872689247,0.0140092661604285,-0.999792039394379,-0.0155306365340948,0.0755301937460899,-0.997022569179535,0.0336044952273369,-0.00251386733725667,0.99943208694458,0.0304128360003233,-0.00242521893233061,0.999534547328949,0.0564761310815811,-0.0044891401194036,0.998393952846527,0.0304128360003233,-0.00242521893233061,0.999534547328949,0.0336044952273369,-0.00251386733725667,0.99943208694458,0.00575598562136292,-0.00169541942887008,0.999982059001923,0.0619654953479767,-0.0978861749172211,0.993266701698303,0.0618696324527264,-0.0831015929579735,0.994618713855743,
- 0.062028344720602,-0.108946472406387,0.992110431194305,0.0630344077944756,-0.083072267472744,0.99454802274704,0.0634387731552124,-0.0978600531816483,0.993176281452179,0.062598705291748,-0.0676598772406578,0.995742797851563,0.0895816832780838,0.995962142944336,-0.00588895566761494,0.0899324864149094,0.995815634727478,-0.0162284094840288,0.0889218673110008,0.995961904525757,-0.0123661914840341,0.0889218673110008,0.995961904525757,-0.0123661914840341,0.0884918347001076,0.996074199676514,-0.00231757666915655,0.0895816832780838,0.995962142944336,-0.00588895566761494,-0.0293304100632668,-0.0389345251023769,-0.998811185359955,-0.0303249340504408,-0.0375094264745712,-0.998836040496826,-0.0295670032501221,-0.0407622568309307,-0.998731374740601,-0.0293304100632668,-0.0389345251023769,-0.998811185359955,-0.0295670032501221,-0.0407622568309307,-0.998731374740601,-0.0286397337913513,-0.0427656918764114,-0.99867457151413,0.0621519088745117,-0.0099327340722084,0.998017311096191,0.0686397552490234,-0.0136776706203818,0.997547745704651,0.0442331023514271,-0.00781742390245199,0.998990654945374,0.0686397552490234,-0.0136776706203818,0.997547745704651,0.0613680258393288,-0.0153717882931232,0.997996866703033,0.0860450491309166,-0.0198277272284031,0.996093988418579,0.0663542971014977,-0.0268740933388472,0.997434139251709,0.0690376684069633,-0.0272115357220173,0.997242867946625,0.0811487063765526,-0.0244330614805222,0.996402502059937,0.0663542971014977,-0.0268740933388472,0.997434139251709,0.0534992404282093,-0.0300071462988853,0.998116970062256,0.0690376684069633,-0.0272115357220173,0.997242867946625,-0.11423596739769,-0.992092192173004,-0.0519935265183449,-0.113211289048195,-0.993537127971649,0.00819357298314571,-0.115472130477428,-0.992857098579407,-0.0300186034291983,-0.113764852285385,-0.993089914321899,0.0288127288222313,-0.115472130477428,-0.992857098579407,-0.0300186034291983,-0.114952340722084,-0.99333655834198,0.00827561412006617,0.0638230517506599,0.0439409129321575,0.99699342250824,0.0622841827571392,0.0301789660006762,0.997602105140686,
- 0.0608725883066654,0.0169923305511475,0.998000919818878,0.0622841827571392,0.0301789660006762,0.997602105140686,0.0640198066830635,0.0439161099493504,0.996981918811798,0.0653738230466843,0.0544644668698311,0.996373355388641,0.0817272737622261,-0.996463596820831,-0.0195173472166061,0.079495020210743,-0.996676325798035,0.017804766073823,0.0773107334971428,-0.995617270469666,0.0526256822049618,0.0641508549451828,-0.99774158000946,-0.0199099164456129,0.0642441511154175,-0.996632874011993,-0.0509489513933659,0.0639585703611374,-0.997805237770081,0.0171503182500601,-0.128325611352921,0.991305589675903,-0.0290841870009899,-0.128948718309402,0.990684509277344,-0.0437775962054729,-0.129512742161751,0.989898979663849,-0.0576756149530411,-0.132034659385681,0.990283131599426,-0.0436599589884281,-0.131812527775764,0.990850746631622,-0.0289873462170362,-0.13163261115551,0.99113005399704,-0.0182830616831779,0.0046536042355001,-0.146213799715042,0.989242136478424,0.015058453194797,-0.145707994699478,0.989213049411774,0.00232835253700614,-0.146324664354324,0.9892338514328,0.00473556760698557,-0.14831355214119,0.988929092884064,0.00240428256802261,-0.148377358913422,0.988927960395813,-0.00850391015410423,-0.148665130138397,0.988851130008698,0.00636954326182604,0.0214139390736818,-0.999750435352325,0.00576723087579012,-0.00818313844501972,-0.999949991703033,0.00714729214087129,0.060016255825758,-0.998171865940094,0.01891546882689,-0.00786626990884542,-0.999790191650391,0.0175272431224585,0.0214660335332155,-0.999615967273712,0.0205220431089401,-0.0422422587871552,-0.998896658420563,-0.0367511659860611,-0.028014836832881,0.998931705951691,-0.03145357593894,-0.0280222874134779,0.999112367630005,-0.0576857961714268,-0.0279776882380247,0.997942686080933,-0.0314602702856064,-0.0277852490544319,0.999118745326996,-0.0367498770356178,-0.0280721988528967,0.998930156230927,-0.00689288135617971,-0.0264429096132517,0.999626636505127,-0.0721150562167168,0.00339543772861362,0.997390627861023,-0.0714950263500214,-0.0114948246628046,0.997374713420868,
- -0.0728041380643845,0.0204145312309265,0.997137308120728,-0.0772802978754044,-0.0118427006527781,0.996939063072205,-0.078374445438385,0.003073092084378,0.996919274330139,-0.075549453496933,-0.0349672697484493,0.99652886390686,0.999977350234985,0.00156632368452847,-0.00655708508566022,0.999968886375427,-0.00406297668814659,-0.00676254648715258,0.999924898147583,-0.0100747710093856,-0.00698173744603992,0.999808788299561,-0.0163546614348888,-0.0107244485989213,0.999894559383392,-0.00996904727071524,-0.0105608459562063,0.999938130378723,-0.00394224375486374,-0.0104060536250472,0.00550199812278152,0.997882843017578,0.064805343747139,-0.0261878613382578,0.997450351715088,0.0663850530982018,-0.00960913859307766,0.997801899909973,0.0655667930841446,-0.026350986212492,0.997746109962463,0.0617123767733574,-0.0406868495047092,0.997241675853729,0.0620778053998947,-0.00979451555758715,0.998072981834412,0.0612747184932232,-0.998419523239136,-0.0453191250562668,-0.0332371070981026,-0.998202621936798,-0.0515877082943916,-0.0304996613413095,-0.998640298843384,-0.0402280949056149,-0.0331554524600506,-0.998202621936798,-0.0515877082943916,-0.0304996613413095,-0.99858695268631,-0.0454015918076038,-0.0276210531592369,-0.997948706150055,-0.0577140413224697,-0.0277032759040594,0.999991178512573,-0.0032489460427314,0.0026818064507097,0.999994695186615,-0.000962174904998392,0.00311408471316099,0.999975144863129,-0.00104423542506993,0.00698891608044505,0.99998015165329,-0.00555453542619944,0.00299862609244883,0.999991178512573,-0.0032489460427314,0.0026818064507097,0.999984800815582,-0.00544066168367863,-0.000914752192329615,0.99989265203476,-0.0146357575431466,0.000771323218941689,0.999806821346283,-0.0195958204567432,0.00153107719961554,0.999534785747528,-0.0200989805161953,0.0229416191577911,0.999952018260956,-0.0096750957891345,0.00154033058788627,0.99989265203476,-0.0146357575431466,0.000771323218941689,0.999703228473663,-0.0102348513901234,-0.0221096053719521,0.00589911732822657,-0.999375641345978,-0.0348371006548405,-0.0219886936247349,-0.999121606349945,-0.0356726236641407,
- -0.0441328473389149,-0.99836540222168,-0.0363166332244873,-0.0220587458461523,-0.999250173568726,-0.0318191833794117,0.00589058548212051,-0.999468743801117,-0.0320577770471573,0.0269568841904402,-0.999117195606232,-0.0322210751473904,0.00710928067564964,-0.997553706169128,-0.0695418417453766,-0.0139199420809746,-0.997467935085297,-0.0697420835494995,-0.0451794564723969,-0.996524572372437,-0.0699827969074249,-0.0132850222289562,-0.995799720287323,-0.0905899256467819,0.00797486212104559,-0.995981276035309,-0.089206650853157,0.0426425412297249,-0.995307266712189,-0.0868636146187782,-0.0417811796069145,0.987567663192749,0.151540502905846,-0.0348867103457451,0.987854301929474,0.151416569948196,-0.0260360185056925,0.988153100013733,0.151246875524521,-0.0349765606224537,0.98827463388443,0.148626610636711,-0.0418820641934872,0.987963140010834,0.148912414908409,-0.0528063140809536,0.987373292446136,0.14935015141964,0.989237248897552,-0.146315813064575,-0.0012441409053281,0.989231944084167,-0.146356165409088,0.000365027255611494,0.988807857036591,-0.148976475000381,0.00806276593357325,0.989237248897552,-0.146315813064575,-0.0012441409053281,0.989602267742157,-0.143566071987152,-0.0087304562330246,0.989231944084167,-0.146356165409088,0.000365027255611494,-0.999855935573578,0.0147937089204788,-0.00832989998161793,-0.999965846538544,-0.00280424416996539,-0.0077757672406733,-0.998251497745514,0.0583114475011826,-0.00968972407281399,-0.999652922153473,-0.002503797179088,-0.0262262299656868,-0.999567985534668,0.0148345781490207,-0.0253763981163502,-0.998696148395538,-0.0425792075693607,-0.0281603969633579,0.998923003673553,-0.0315370298922062,0.03403589874506,0.998990893363953,-0.031517431139946,0.0319995395839214,0.99858433008194,-0.0316196568310261,0.042773962020874,0.999093532562256,-0.0279873833060265,0.0320775471627712,0.999024510383606,-0.0280525907874107,0.0341053195297718,0.999379575252533,-0.0276554692536592,0.0218091271817684,0.994987428188324,-0.0120589006692171,0.0992708206176758,0.995323240756989,-0.00310621177777648,0.0965507626533508,
- 0.994487822055817,-0.0398613102734089,0.0969803035259247,0.995323240756989,-0.00310621177777648,0.0965507626533508,0.995619893074036,-0.0116576431319118,0.0927642211318016,0.99539715051651,0.0187500342726707,0.0939844474196434,0.134197071194649,-0.121427536010742,-0.983486950397491,0.132601797580719,-0.121091924607754,-0.9837446808815,0.134195864200592,-0.121432989835739,-0.983486473560333,0.134197071194649,-0.121427536010742,-0.983486950397491,0.134195864200592,-0.121432989835739,-0.983486473560333,0.135790795087814,-0.121768265962601,-0.98322606086731,-0.190460741519928,0.11197766661644,0.97528749704361,-0.190064370632172,0.111897133290768,0.975374162197113,-0.188861966133118,0.111652716994286,0.975635647773743,-0.190434843301773,0.110190495848656,0.975496172904968,-0.190830633044243,0.110269360244274,0.975409865379334,-0.19195544719696,0.110493443906307,0.975163757801056,-0.19100059568882,0.0877293944358826,0.977661669254303,-0.198812529444695,0.092435747385025,0.975668668746948,-0.196915611624718,0.0919986739754677,0.976094484329224,-0.198812529444695,0.092435747385025,0.975668668746948,-0.204655379056931,0.096829317510128,0.974032998085022,-0.196915611624718,0.0919986739754677,0.976094484329224,-0.12367232888937,0.139167219400406,0.982515931129456,-0.133552402257919,0.141237989068031,0.980925858020782,-0.133510932326317,0.141435503959656,0.980903148651123,-0.113707736134529,0.137423247098923,0.983964204788208,-0.12367232888937,0.139167219400406,0.982515931129456,-0.113783240318298,0.137063100934029,0.984005689620972,0.215788304805756,0.97331178188324,-0.0780996233224869,0.215174987912178,0.973805725574493,-0.0735001564025879,0.215431675314903,0.973602116107941,-0.0754208788275719,0.204129204154015,0.975534915924072,-0.0816269069910049,0.203907355666161,0.975723028182983,-0.0799145773053169,0.203561037778854,0.976009845733643,-0.077250637114048,-0.208423808217049,-0.976151466369629,0.0607268884778023,-0.208355948328972,-0.976196765899658,0.060230940580368,-0.208264246582985,-0.976257383823395,0.0595616288483143,
- -0.220120161771774,-0.973763704299927,0.0577189028263092,-0.220210731029511,-0.973703563213348,0.058384120464325,-0.220055103302002,-0.97380656003952,0.0572415255010128,-0.0239705853164196,-0.0891041085124016,-0.995733916759491,-0.0248992051929235,-0.0930929854512215,-0.995346128940582,-0.0260163880884647,-0.0978921577334404,-0.994856953620911,-0.029572956264019,-0.0920137763023376,-0.995318531990051,-0.0316672250628471,-0.10133920609951,-0.994347870349884,-0.0306556858122349,-0.0968345180153847,-0.994828283786774,0.250279128551483,0.967175602912903,-0.0439532585442066,0.250428199768066,0.967263579368591,-0.0410713851451874,0.25071769952774,0.967414557933807,-0.0353538990020752,0.250360161066055,0.967507719993591,-0.035336758941412,0.250040143728256,0.96736478805542,-0.0410538613796234,0.250532358884811,0.967572748661041,-0.032197829335928,-0.0271107628941536,0.0195106882601976,0.999442040920258,-0.0268212556838989,0.0208315141499043,0.999423146247864,-0.0276282876729965,0.0224030259996653,0.999367237091064,-0.0271107628941536,0.0195106882601976,0.999442040920258,-0.0262286085635424,0.0183004457503557,0.999488532543182,-0.0268212556838989,0.0208315141499043,0.999423146247864,-0.0151210837066174,-0.0430718697607517,-0.998957633972168,-0.0182989295572042,-0.0379737541079521,-0.999111235141754,-0.0265160128474236,-0.036042470484972,-0.998998403549194,-0.0201604478061199,-0.0463604032993317,-0.998721361160278,-0.0151210837066174,-0.0430718697607517,-0.998957633972168,-0.0088587561622262,-0.048683438450098,-0.998775064945221,-0.0161877050995827,-0.052974384278059,-0.998464643955231,-0.0206896308809519,-0.060045700520277,-0.997981250286102,-0.0267398953437805,-0.0507768504321575,-0.99835205078125,-0.0206896308809519,-0.060045700520277,-0.997981250286102,-0.0196005925536156,-0.0683420673012733,-0.997469484806061,-0.0129676181823015,-0.0698780342936516,-0.997471332550049,-0.226818963885307,-0.973668575286865,0.0228613037616014,-0.220753118395805,-0.972947001457214,0.0681345984339714,-0.226424917578697,-0.974019169807434,0.00430029863491654,
- -0.220753118395805,-0.972947001457214,0.0681345984339714,-0.21482227742672,-0.976380348205566,0.0230813939124346,-0.213545650243759,-0.972910344600677,0.0885649770498276,-0.00753352232277393,0.995158493518829,0.0979940593242645,-0.00904859323054552,0.995244145393372,0.0969907641410828,-0.0155967306345701,0.994954228401184,0.0991108119487762,-0.00904859323054552,0.995244145393372,0.0969907641410828,-0.00784807000309229,0.995385944843292,0.0956307053565979,-0.000304819113807753,0.995506525039673,0.0946932882070541,-0.00515799643471837,-0.998464226722717,-0.0551606677472591,-0.00498890643939376,-0.998520851135254,-0.0541402064263821,-0.00460225297138095,-0.998735666275024,-0.0500606596469879,-0.00553996115922928,-0.998252034187317,-0.058841235935688,-0.00514327688142657,-0.998520851135254,-0.0541263334453106,-0.00515799643471837,-0.998464226722717,-0.0551606677472591,0.0145405065268278,-0.998943686485291,-0.0435904562473297,0.0187127459794283,-0.998465299606323,-0.052124697715044,0.0199433974921703,-0.999763906002045,-0.0086310338228941,0.0187127459794283,-0.998465299606323,-0.052124697715044,0.0245917029678822,-0.998698055744171,-0.0446929782629013,0.022159157320857,-0.996066033840179,-0.0857995301485062,-0.0241262260824442,-0.996595561504364,-0.0788378939032555,-0.0254375301301479,-0.995360374450684,-0.0927944332361221,-0.023768987506628,-0.995383083820343,-0.0929918363690376,-0.0221343412995338,-0.997643291950226,-0.064946822822094,-0.0241262260824442,-0.996595561504364,-0.0788378939032555,-0.024101834744215,-0.997613251209259,-0.0647075623273849,-0.992130815982819,-0.00838831998407841,0.124923907220364,-0.990982234477997,-0.00551230786368251,0.133880436420441,-0.992107748985291,-0.00289239711128175,0.125355675816536,-0.989758610725403,-0.0041953562758863,0.142690137028694,-0.990982234477997,-0.00551230786368251,0.133880436420441,-0.989726543426514,-0.000223472714424133,0.142973259091377,0.990294873714447,-0.0200458634644747,-0.137529209256172,0.990676641464233,0.0108682988211513,-0.135800465941429,0.989943087100983,0.00157584995031357,-0.1414575278759,
- 0.989077806472778,0.033429279923439,-0.143553525209427,0.989943087100983,0.00157584995031357,-0.1414575278759,0.989268183708191,0.0116516947746277,-0.145646378397942,0.0317632183432579,-0.995756685733795,-0.0863695815205574,0.0297713354229927,-0.998309671878815,-0.0499154627323151,0.0278764814138412,-0.999486029148102,-0.0158351715654135,0.0139167513698339,-0.998625993728638,-0.0505234971642494,0.0139524172991514,-0.996136009693146,-0.0867095440626144,0.0139681594446301,-0.993043959140778,-0.116913259029388,-0.0782634392380714,0.996137857437134,0.0398040935397148,-0.0789674893021584,0.996559679508209,0.0251581445336342,-0.0796190276741982,0.996761620044708,0.0112731540575624,-0.0823865085840225,0.996279835700989,0.0252812448889017,-0.0820829719305038,0.995826423168182,0.0399024114012718,-0.0818510204553604,0.995362401008606,0.0505381934344769,0.00140844867564738,-0.209814116358757,0.977740287780762,0.0122244311496615,-0.209824055433273,0.977662801742554,-0.000664751743897796,-0.20980940759182,0.97774213552475,0.00138057104777545,-0.212145060300827,0.977237224578857,-0.000696287548635155,-0.212098225951195,0.977248191833496,-0.0120294634252787,-0.21182644367218,0.977233290672302,0.00283010606653988,0.0912267789244652,-0.995826184749603,0.000598301587160677,0.0598703511059284,-0.99820601940155,0.00558856409043074,0.129911735653877,-0.991509854793549,0.0138825671747327,0.0595216155052185,-0.99813050031662,0.013973206281662,0.0907085910439491,-0.995779514312744,0.0137661946937442,0.0248755495995283,-0.999595820903778,-0.0338178128004074,-0.093677930533886,0.995028018951416,-0.0289481338113546,-0.093945749104023,0.995156347751617,-0.0560326687991619,-0.0924273431301117,0.994141638278961,-0.0289182811975479,-0.092659704387188,0.99527782201767,-0.0337890945374966,-0.0926689654588699,0.995123565196991,-0.00291056302376091,-0.0925731435418129,0.995701670646667,-0.0662958174943924,-0.061365831643343,0.995911300182343,-0.0664317831397057,-0.0773297101259232,0.994789958000183,-0.0661307126283646,-0.0441867038607597,0.996832132339478,
- -0.0718716904520988,-0.0773596540093422,0.994409441947937,-0.0722474232316017,-0.061344750225544,0.995498418807983,-0.0712893456220627,-0.100724652409554,0.992357075214386,0.00583362439647317,-0.00412996066734195,0.999974429607391,0.00321233621798456,-0.00855131912976503,0.999958276748657,0.00587499234825373,-0.0126585504040122,0.999902665615082,0.00321233621798456,-0.00855131912976503,0.999958276748657,0.000574888428673148,-0.00413261726498604,0.999991297721863,0.000578898703679442,-0.000793421000707895,0.999999523162842,-0.0354625321924686,0.995773136615753,-0.0847254246473312,-0.0319203622639179,0.99893993139267,-0.0331690236926079,-0.0329893939197063,0.997485935688019,-0.0627172142267227,-0.0329893939197063,0.997485935688019,-0.0627172142267227,-0.0319203622639179,0.99893993139267,-0.0331690236926079,-0.0283974092453718,0.99950635433197,-0.0134401107206941,0.0260501001030207,-0.0439064353704453,-0.998695969581604,0.0246443450450897,-0.0407272018492222,-0.998866379261017,0.0259750057011843,-0.049033634364605,-0.99845939874649,0.0260501001030207,-0.0439064353704453,-0.998695969581604,0.0259750057011843,-0.049033634364605,-0.99845939874649,0.0274058915674686,-0.0534003637731075,-0.998197019100189,0.0151831954717636,0.0216721408069134,0.999649882316589,0.0780242830514908,0.0170530285686255,0.996805608272552,0.0242922138422728,0.0240986086428165,0.999414384365082,0.0238936562091112,0.0181283298879862,0.99955016374588,-0.0377698093652725,0.0178009122610092,0.999127984046936,0.0151831954717636,0.0216721408069134,0.999649882316589,0.0219879858195782,-0.074026457965374,0.997013926506042,0.0221433565020561,-0.0740276649594307,0.997010409832001,0.0199143514037132,-0.0762274563312531,0.996891617774963,0.0219879858195782,-0.074026457965374,0.997013926506042,0.0236261636018753,-0.0718150958418846,0.997138142585754,0.0221433565020561,-0.0740276649594307,0.997010409832001,0.0037850474473089,-0.999888062477112,0.0144760627299547,0.00195717043243349,-0.996993839740753,-0.0774566605687141,0.000519612978678197,-0.999804615974426,-0.019760750234127,
- 0.00175146968103945,-0.993489980697632,-0.11390633136034,0.000519612978678197,-0.999804615974426,-0.019760750234127,0.000271271826932207,-0.996992707252502,-0.0774960517883301,-0.0143170924857259,-0.001761409570463,0.999895989894867,-0.0108349248766899,0.000273920595645905,0.999941349029541,-0.0109840873628855,-0.00298705883324146,0.999935209751129,-0.0143170924857259,-0.001761409570463,0.999895989894867,-0.0177513789385557,-0.0026606663595885,0.999838888645172,-0.0178539603948593,-0.00472303060814738,0.999829530715942,-0.00968016590923071,0.00382058951072395,-0.999945819377899,-0.0151232704520226,0.00416688108816743,-0.999877035617828,0.00814434885978699,0.00613605976104736,-0.999948084354401,-0.0151232704520226,0.00416688108816743,-0.999877035617828,-0.00968016590923071,0.00382058951072395,-0.999945819377899,-0.0295389741659164,0.00245935679413378,-0.999560654163361,-0.000757840869482607,-0.0173485111445189,-0.999849200248718,-0.00143181416206062,-0.0173313729465008,-0.999848783016205,-0.00390072958543897,-0.0242663510143757,-0.999697923660278,-0.00143181416206062,-0.0173313729465008,-0.999848783016205,-0.000757840869482607,-0.0173485111445189,-0.999849200248718,0.00220362073741853,-0.0104072466492653,-0.999943435192108,-0.00164879113435745,0.115705385804176,-0.99328225851059,0.0123902140185237,0.119049623608589,-0.992811024188995,-0.000726398022379726,0.129011616110802,-0.991642892360687,0.0123902140185237,0.119049623608589,-0.992811024188995,0.0257372371852398,0.113517872989178,-0.99320262670517,0.0249265655875206,0.104141987860203,-0.994250059127808,0.0514106787741184,0.998529016971588,0.0172276459634304,0.051388468593359,0.998464465141296,0.0206850580871105,0.0514303296804428,0.998577356338501,0.0140831479802728,0.0645786672830582,0.997635304927826,0.0235263928771019,0.0645827054977417,0.997697472572327,0.0207078475505114,0.0645869374275208,0.997762620449066,0.0172755289822817,-0.0488136596977711,-0.998725652694702,0.0128199001774192,-0.0487736947834492,-0.998790979385376,0.00614085979759693,-0.0400329828262329,-0.998972952365875,0.0212206095457077,
- -0.0487736947834492,-0.998790979385376,0.00614085979759693,-0.0488136596977711,-0.998725652694702,0.0128199001774192,-0.0573529675602913,-0.998350024223328,-0.00282935798168182,0.00717941438779235,-0.00174206309020519,-0.999972701072693,0.0110814785584807,-0.00337431812658906,-0.999933004379272,0.00717732543125749,-0.00585463736206293,-0.999957144260406,0.0110814785584807,-0.00337431812658906,-0.999933004379272,0.0149927837774158,-0.00176846142858267,-0.999886095523834,0.0150069138035178,0.000900930084753782,-0.999886989593506,0.00312774651683867,0.0113392835482955,0.999930858612061,0.00443476112559438,0.0113391745835543,0.999925971031189,0.0130072114989161,0.0113379694521427,0.999851167201996,-0.00470911804586649,0.0109336841851473,0.999929130077362,0.00443690363317728,0.0111142573878169,0.999928414821625,0.00313050136901438,0.01108852121979,0.999933660030365,0.00566942617297173,-0.0034267280716449,0.999978065490723,-0.000433144421549514,-0.00286180595867336,0.999995887279511,0.0592382624745369,-0.00838097836822271,0.998208701610565,0.00525710918009281,-0.0169158559292555,0.999843120574951,-0.0503419414162636,-0.0188450571149588,0.998554289340973,-0.000768563011661172,-0.0171274952590466,0.999853014945984,-0.00148446671664715,0.0313574969768524,0.999507188796997,-0.0122909191995859,0.0291534718126059,0.999499440193176,-0.0122362719848752,0.0258482862263918,0.999591052532196,0.00937799364328384,0.0294640623033047,0.999521911144257,-0.00148446671664715,0.0313574969768524,0.999507188796997,0.00932309031486511,0.0345723778009415,0.999358773231506,-0.00770734576508403,0.999562621116638,-0.0285527296364307,-0.00769136566668749,0.999678671360016,-0.0241567380726337,-0.00767553132027388,0.999773740768433,-0.0198402386158705,0.00749185355380178,0.999679863452911,-0.024170046672225,0.00744276354089379,0.99986732006073,-0.0144908828660846,0.00746983988210559,0.999775826931,-0.0198127329349518,-0.0141062177717686,-0.999869585037231,0.00787385646253824,-0.00759046897292137,-0.99997091293335,0.000846102309878916,-0.0141659369692206,-0.999769508838654,0.0161332208663225,
- -0.00759046897292137,-0.99997091293335,0.000846102309878916,-0.00106547051109374,-0.999968230724335,0.00789817795157433,-0.00120232813060284,-0.999966263771057,-0.00813782494515181,0.126044079661369,0.991393744945526,0.0353746674954891,0.118127927184105,0.991026937961578,-0.062542200088501,0.11348632723093,0.986975014209747,-0.114023432135582,0.0973452776670456,0.994600117206573,0.035980299115181,0.0969354063272476,0.991320550441742,0.08881014585495,0.097386933863163,0.99335789680481,-0.0612859427928925,-0.149525105953217,-0.988086640834808,0.0364301167428494,-0.14922796189785,-0.987091600894928,0.0581478625535965,-0.148775920271873,-0.988580942153931,0.0239472147077322,-0.149525105953217,-0.988086640834808,0.0364301167428494,-0.149857804179192,-0.986085474491119,0.0719596967101097,-0.149970307946205,-0.986979424953461,0.0581427663564682,0.00240738224238157,0.134488046169281,-0.990912318229675,0.000946737825870514,0.134625911712646,-0.990896105766296,-0.00295345718041062,0.13443748652935,-0.99091774225235,0.000946737825870514,0.134625911712646,-0.990896105766296,0.00240738224238157,0.134488046169281,-0.990912318229675,0.00633875373750925,0.134634554386139,-0.990875065326691,-0.0317343920469284,0.000934081908781081,-0.999495923519135,-0.028742803260684,0.000773531501181424,-0.999586582183838,-0.0366278290748596,0.000443734228610992,-0.999328911304474,-0.028742803260684,0.000773531501181424,-0.999586582183838,-0.0317343920469284,0.000934081908781081,-0.999495923519135,-0.0216443352401257,0.00100290623959154,-0.99976521730423,-0.061026606708765,-0.0407780930399895,-0.997302889823914,-0.0652110874652863,-0.0445929132401943,-0.996874630451202,-0.0605521686375141,-0.0352695062756538,-0.997541785240173,-0.0652110874652863,-0.0445929132401943,-0.996874630451202,-0.0687147453427315,-0.0401195548474789,-0.996829330921173,-0.0693363472819328,-0.0480770766735077,-0.996434271335602,0.0218361653387547,0.0981839522719383,0.994928777217865,0.0183560214936733,0.0989013239741325,0.994927942752838,0.0219089612364769,0.0990412905812263,0.994842112064362,
- 0.0183560214936733,0.0989013239741325,0.994927942752838,0.0148051995784044,0.0987915471196175,0.994997978210449,0.0147671634331346,0.0983477085828781,0.995042622089386,0.0451313443481922,0.99840521812439,-0.0339174717664719,0.0443814620375633,0.997889876365662,-0.0473947040736675,0.0437762811779976,0.998155176639557,-0.0420714095234871,0.0437762811779976,0.998155176639557,-0.0420714095234871,0.0434981510043144,0.998652100563049,-0.028318440541625,0.0432491935789585,0.99849146604538,-0.033829465508461,0.0439418591558933,-0.0505463257431984,-0.997754573822021,0.0324524268507957,-0.0780785456299782,-0.99641889333725,0.0302484165877104,-0.107438802719116,-0.993751525878906,0.0324524268507957,-0.0780785456299782,-0.99641889333725,0.0160712413489819,-0.140487462282181,-0.989952027797699,0.0302484165877104,-0.107438802719116,-0.993751525878906,0.0792641043663025,0.0167223792523146,0.996713399887085,0.0522957444190979,0.0415803417563438,0.997765600681305,0.0348905399441719,0.0433747097849846,0.998449444770813,-0.00747804995626211,0.0640493407845497,0.997918725013733,0.0348905399441719,0.0433747097849846,0.998449444770813,0.0522957444190979,0.0415803417563438,0.997765600681305,-0.0664033889770508,-0.997763276100159,0.00769190303981304,-0.0697812587022781,-0.992766380310059,0.0977010205388069,-0.0691580921411514,-0.996886134147644,0.0378828980028629,-0.0694408044219017,-0.989713490009308,0.125080555677414,-0.0691580921411514,-0.996886134147644,0.0378828980028629,-0.0697812587022781,-0.992766380310059,0.0977010205388069,-0.0022240187972784,-0.0308272056281567,0.999522268772125,-0.00291031179949641,-0.0424785912036896,0.999093174934387,-0.00388223584741354,-0.0545615963637829,0.998502910137177,-0.00291031179949641,-0.0424785912036896,0.999093174934387,-0.00175416003912687,-0.0308661330491304,0.999521970748901,-0.000841587490867823,-0.0205585788935423,0.999788284301758,0.0145159605890512,0.0335107892751694,0.999333024024963,0.0167939011007547,0.0333177857100964,0.999303758144379,0.00672160461544991,0.0561354421079159,0.998400568962097,
- 0.0167939011007547,0.0333177857100964,0.999303758144379,0.0145159605890512,0.0335107892751694,0.999333024024963,0.0212111081928015,0.0111626358702779,0.999712705612183,-0.00309656583704054,-0.031406357884407,0.999501943588257,-0.00138147280085832,-0.0186487082391977,0.999825119972229,-0.0043604806996882,-0.0616473481059074,0.998088538646698,-0.00553277367725968,-0.0774889290332794,0.996977925300598,-0.00309656583704054,-0.031406357884407,0.999501943588257,-0.0043604806996882,-0.0616473481059074,0.998088538646698,0.0199611261487007,0.999660313129425,-0.0167598333209753,0.0201468672603369,0.999391853809357,-0.0284616593271494,0.0196907240897417,0.999487221240997,-0.0252511296421289,0.0196907240897417,0.999487221240997,-0.0252511296421289,0.0194595064967871,0.999717772006989,-0.013633593916893,0.0199611261487007,0.999660313129425,-0.0167598333209753,0.0228501725941896,-0.0638675466179848,-0.997696816921234,0.02174286916852,-0.0627206340432167,-0.997794270515442,0.0227179005742073,-0.0665822848677635,-0.997522294521332,0.0228501725941896,-0.0638675466179848,-0.997696816921234,0.0227179005742073,-0.0665822848677635,-0.997522294521332,0.0238118041306734,-0.0681289210915565,-0.997392296791077,0.0139294657856226,0.0101570943370461,0.99985146522522,0.0236456450074911,0.0127234570682049,0.999639511108398,0.0107003971934319,0.0103581342846155,0.999889135360718,0.0139294657856226,0.0101570943370461,0.99985146522522,0.0107003971934319,0.0103581342846155,0.999889135360718,0.00225781905464828,0.00798702333122492,0.99996554851532,0.0161429047584534,-0.00236723851412535,0.999866962432861,0.0183262079954147,-0.00247271778061986,0.999829113483429,0.0292845387011766,0.0014482419937849,0.99957013130188,0.0161429047584534,-0.00236723851412535,0.999866962432861,0.00765709206461906,-0.00667448993772268,0.999948501586914,0.0183262079954147,-0.00247271778061986,0.999829113483429,-0.0457221865653992,-0.998937726020813,0.00573934800922871,-0.0459837689995766,-0.998426556587219,0.0320933982729912,-0.0529694184660912,-0.998591661453247,-0.00298564997501671,
- -0.0459837689995766,-0.998426556587219,0.0320933982729912,-0.0457221865653992,-0.998937726020813,0.00573934800922871,-0.0389878787100315,-0.998454809188843,0.0395984500646591,-0.031799353659153,-0.994982302188873,0.0948639363050461,-0.00842021778225899,-0.995451748371124,0.0948944091796875,0.0233883894979954,-0.995216608047485,0.0948525741696358,-0.00880743935704231,-0.993356883525848,0.1147371083498,-0.032431598752737,-0.993021368980408,0.113388627767563,-0.0676831528544426,-0.99148428440094,0.111256219446659,0.0635537058115005,0.982598841190338,-0.174529805779457,0.0557407140731812,0.983105957508087,-0.174343854188919,0.0466210655868053,0.98362135887146,-0.174113392829895,0.0556815043091774,0.982865333557129,-0.175714001059532,0.0634756982326508,0.982325792312622,-0.176087722182274,0.0747739002108574,0.981436491012573,-0.176610618829727,-0.992924988269806,-0.118386559188366,0.00920635648071766,-0.992869257926941,-0.117977157235146,0.0170933809131384,-0.992928862571716,-0.118472844362259,0.0075257858261466,-0.992115795612335,-0.124964393675327,0.00949616450816393,-0.992122888565063,-0.12502521276474,0.0078047476708889,-0.992117166519165,-0.12531366944313,-0.000356048345565796,0.999490797519684,-0.0266045518219471,0.017616868019104,0.999842345714569,-0.00734559306874871,0.0161711238324642,0.99759703874588,-0.0661607682704926,0.0205679927021265,0.99996542930603,-0.00772128906100988,0.0031157995108515,0.999624252319336,-0.0272436998784542,0.00303044356405735,0.99936455488205,0.0354917757213116,0.00330046587623656,-0.999537408351898,-0.00989697594195604,-0.0287575274705887,-0.999603867530823,-0.00983411073684692,-0.0263688620179892,-0.999190270900726,-0.0101641286164522,-0.0389306917786598,-0.999629676342011,-0.00612638844177127,-0.0265168752521276,-0.999562978744507,-0.00625143479555845,-0.028893755748868,-0.999879002571106,-0.00549674080684781,-0.0145563958212733,-0.996399402618408,0.0196796655654907,-0.082468569278717,-0.996595919132233,0.0100983651354909,-0.081821545958519,-0.995664715766907,0.0402918830513954,-0.0838351100683212,
- -0.996573150157928,0.0100733125582337,-0.0821012407541275,-0.996347069740295,0.019626297056675,-0.0831107273697853,-0.996718168258667,-0.0164776425808668,-0.0792562365531921,-0.0236626658588648,-0.0252267215400934,0.999401748180389,-0.0233539585024118,-0.0358863435685635,0.999082982540131,-0.0227289199829102,-0.0571815483272076,0.998105049133301,-0.0174866728484631,-0.0569678880274296,0.998222887516022,-0.0184872150421143,-0.0357284247875214,0.99919056892395,-0.0168506298214197,-0.0703698545694351,0.997378647327423,-0.110841989517212,-0.0706949606537819,0.991320490837097,-0.110841989517212,-0.0706949532032013,0.991320490837097,-0.110841989517212,-0.0706949532032013,0.991320490837097,-0.046360120177269,-0.998914361000061,0.00457658153027296,-0.0537633337080479,-0.998504042625427,0.00995928328484297,-0.0537247397005558,-0.99854189157486,0.00527692399919033,-0.046360120177269,-0.998914361000061,0.00457658153027296,-0.0537114776670933,-0.998542606830597,0.00527700921520591,-0.0537040457129478,-0.998555302619934,-0.00178863573819399,-0.046360120177269,-0.998914361000061,0.00457658153027296,-0.0337256044149399,-0.999429225921631,-0.00197957362979651,-0.00124476104974747,-0.995426177978516,0.0955264493823051,0.0534674189984798,-0.0746343359351158,0.99577659368515,0.0534674189984798,-0.0746343359351158,0.99577659368515,0.0534674115478992,-0.0746343433856964,0.995776534080505,-0.0169157702475786,-0.0591880530118942,0.998103559017181,-0.0167202986776829,-0.0401557423174381,0.999053597450256,-0.0171155501157045,-0.0792654827237129,0.996706664562225,-0.00400149542838335,-0.0399424210190773,0.999194025993347,-0.00330286961980164,-0.05914057046175,0.998244225978851,-0.00501023884862661,-0.0121239870786667,0.999913930892944,0.0276543796062469,-0.0484890043735504,-0.998440861701965,0.0198633968830109,-0.0421660616993904,-0.99891322851181,0.0195856504142284,-0.0539662092924118,-0.998350739479065,0.0394472479820251,-0.0739848911762238,-0.996478974819183,0.0276543796062469,-0.0484890043735504,-0.998440861701965,0.0396324433386326,-0.0542833209037781,-0.997738718986511,
- 0.0276543796062469,-0.0484890043735504,-0.998440861701965,0.0233846586197615,-0.0738960728049278,-0.996991753578186,0.023372258991003,-0.0756212621927261,-0.996862709522247,-0.00486588943749666,-0.027926791459322,-0.999598205089569,-0.00393328070640564,-0.00678586633875966,-0.999969303607941,-0.00633024144917727,-0.0611964091658592,-0.998105704784393,-0.0181132648140192,-0.00670275697484612,-0.999813497066498,-0.017864303663373,-0.0276553872972727,-0.999457895755768,-0.0183901656419039,0.017434099689126,-0.999678909778595,0.0718166306614876,0.0141758881509304,-0.99731707572937,0.0718166381120682,0.0141758862882853,-0.997317135334015,0.0718166306614876,0.0141758862882853,-0.99731707572937,0.0540992580354214,-0.0489636026322842,-0.997334361076355,0.0542569532990456,-0.0428014434874058,-0.997609317302704,0.053980890661478,-0.0535358749330044,-0.997105836868286,0.0747823640704155,-0.0728876814246178,-0.994532585144043,0.0750643163919449,-0.0493689849972725,-0.995955944061279,0.0750134214758873,-0.0538857020437717,-0.995725572109222,0.0580239072442055,-0.0490411072969437,-0.99711000919342,0.0577966868877411,-0.0727832913398743,-0.99567174911499,0.0577793419361115,-0.074463315308094,-0.995548486709595,-0.0633518695831299,0.0501168444752693,-0.996732115745544,-0.0550238490104675,0.0436872318387032,-0.997528851032257,-0.054686076939106,0.0540412254631519,-0.997040152549744,-0.075893722474575,0.0733953267335892,-0.994411110877991,-0.0633518695831299,0.0501168444752693,-0.996732115745544,-0.0762508362531662,0.0545484088361263,-0.995595455169678,-0.0633518695831299,0.0501168444752693,-0.996732115745544,-0.0585213750600815,0.0731722787022591,-0.995600938796997,-0.0584927946329117,0.0748435258865356,-0.995478332042694,0.0582442209124565,0.0377401188015938,0.997588813304901,0.0585904866456985,0.0379419103264809,0.997560858726501,0.0301633737981319,-0.0527140982449055,0.998153984546661,0.0585904866456985,0.0379419103264809,0.997560858726501,0.0512225553393364,0.037887416779995,0.997968375682831,0.0513515472412109,0.052207987755537,0.997315049171448,
- 0.0710464119911194,0.0722946152091026,0.994849741458893,0.0585904866456985,0.0379419103264809,0.997560858726501,0.0705924704670906,0.0518684312701225,0.996155798435211,0.0585904866456985,0.0379419103264809,0.997560858726501,0.0554422661662102,0.072734422981739,0.995809137821198,0.0554886423051357,0.074639119207859,0.995665669441223
- }
- BinormalsW: *2788 {
- 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,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *8364 {
- a: 1,7.75103004002631e-009,-0,0.999999940395355,0.000383848353521898,-0,0.999999821186066,0.000561547290999442,0,0.999999403953552,0.00102284690365195,0,1,-2.86280577022069e-009,-0,0.99999988079071,0.000267567171249539,0.000322186999255791,0.999999821186066,0.000561547290999442,0,0.999999940395355,0.000383848353521898,-0,1,3.62840182788204e-005,2.35435280160345e-008,0.999999940395355,0.000137352879391983,0.000383600679924712,0.99999988079071,0.000267567171249539,0.000322186999255791,1,-2.86280577022069e-009,-0,0.999999403953552,0.00102197751402855,0,0.999999403953552,-0.00106921349652112,-0.000126653118059039,0.999988853931427,-0.00470165815204382,-0.000450786727014929,0.999999761581421,-0.000751309504266828,0,0.999999582767487,0.00013989707804285,0.000968298641964793,0.999994158744812,-0.00335078267380595,0.000527877069544047,0.999999403953552,-0.00106921349652112,-0.000126653118059039,1,0.000100350145658012,0,0.999996602535248,0.00255655217915773,0,1,0.000100350145658012,0,0.999999403953552,-0.00106921349652112,-0.000126653118059039,0.999999403953552,0.00102197751402855,0,0.99999988079071,0.000267567171249539,0.000322186999255791,0.999999582767487,0.00013989707804285,0.000968298641964793,1,0.000100350145658012,0,0.999999821186066,0.000561547290999442,0,0.999999403953552,0.00102284690365195,0,0.999999821186066,0.000561547290999442,0,1,0.000100350145658012,0,0.999996602535248,0.00255655217915773,0,0.999969840049744,-0.00716144032776356,0.00301052117720246,0.99999076128006,-0.00371811795048416,0.00212922017090023,0.999959409236908,-0.00573344621807337,0.00693642906844616,0.999970734119415,-0.00320865865796804,0.00694198394194245,0.999963939189911,-0.00489560980349779,0.00693827820941806,0.999999761581421,-0.000751309504266828,0,0.999988853931427,-0.00470165815204382,-0.000450786727014929,0.999999582767487,0.000809375022072345,-0.000290962983854115,0.99999076128006,-0.00371811795048416,0.00212922017090023,0.999969840049744,-0.00716144032776356,0.00301052117720246,0.999994516372681,-0.00321466545574367,-0.000793285144027323,
- 0.999961256980896,-0.00854595471173525,-0.00212945300154388,0.999999582767487,0.000809375022072345,-0.000290962983854115,0.999988853931427,-0.00470165815204382,-0.000450786727014929,0.999994158744812,-0.00335078267380595,0.000527877069544047,0.999999403953552,-0.00100199924781919,0.000457615708000958,0.999994516372681,-0.00321466545574367,-0.000793285144027323,0.999988853931427,-0.00470165815204382,-0.000450786727014929,0.999999403953552,-0.00106921349652112,-0.000126653118059039,0.999988317489624,-0.00207991898059845,0.00435602152720094,0.999999403953552,-0.00100199924781919,0.000457615708000958,0.999994158744812,-0.00335078267380595,0.000527877069544047,0.999996900558472,-6.90565502736717e-006,0.00249139661900699,0.999940752983093,0.0101763689890504,0.00389221962541342,0.999988317489624,-0.00207991898059845,0.00435602152720094,0.999994158744812,-0.00335078267380595,0.000527877069544047,0.999999582767487,0.00013989707804285,0.000968298641964793,0.999999940395355,0.000137352879391983,0.000383600679924712,0.999999344348907,0.000389609573176131,0.0010508046252653,0.999998569488525,0.000632839743047953,0.00160233816131949,0.999996900558472,-6.90565502736717e-006,0.00249139661900699,0.999999582767487,0.00013989707804285,0.000968298641964793,0.99999988079071,0.000267567171249539,0.000322186999255791,0.999999940395355,0.000137352879391983,0.000383600679924712,1,-3.02326589007862e-006,-0.000109042652184144,0.999999344348907,0.000389609573176131,0.0010508046252653,1,1.03776303106429e-008,4.54658817261588e-008,1,4.43376338807866e-005,4.54658781734452e-008,1,-3.02326589007862e-006,-0.000109042652184144,0.999999940395355,0.000137352879391983,0.000383600679924712,1,3.62840182788204e-005,2.35435280160345e-008,-0.999999403953552,-0.0010212775086984,0,-0.999999821186066,-0.000612742733210325,0,-1,1.83092652150663e-008,0,-0.999999761581421,-0.000766545010264963,0,-0.999990820884705,0.000151831583934836,-0.00428877864032984,-0.999997556209564,1.11693429971638e-006,-0.00222407397814095,-0.999999582767487,-0.000277065322734416,-0.000873877026606351,
- -0.999995648860931,0.000194355889107101,-0.00297285942360759,-0.99999076128006,0.000376738782506436,-0.00428855698555708,-0.999997556209564,1.11693429971638e-006,-0.00222407397814095,-1,-8.27864776731246e-010,0,-1,-4.99871639476623e-005,0,-0.999999582767487,-0.000277065322734416,-0.000873877026606351,-1,-8.27864776731246e-010,0,-1,1.83092652150663e-008,0,-0.999999821186066,-0.000612742733210325,0,-1,-4.99871639476623e-005,0,-0.99987655878067,-0.0156644582748413,0.00123484688811004,-0.999996542930603,0.00266303378157318,0,-0.999999284744263,0.00126641092356294,0,-0.999883055686951,-0.0152957094833255,0.000258273852523416,-0.99987655878067,-0.0156644582748413,0.00123484688811004,-0.999883055686951,-0.0152957094833255,0.000258273852523416,-0.999333381652832,-0.0348884239792824,0.0107599264010787,-0.999724149703979,-0.0229976680129766,0.00476530473679304,-0.999996542930603,0.00266303378157318,0,-0.99987655878067,-0.0156644582748413,0.00123484688811004,-0.999996066093445,-0.00276732863858342,-0.000588619732297957,-0.999999523162842,0.000895032717380673,0,-0.999996066093445,-0.00276732863858342,-0.000588619732297957,-0.99987655878067,-0.0156644582748413,0.00123484688811004,-0.999724149703979,-0.0229976680129766,0.00476530473679304,-0.999902248382568,0.0139131732285023,-0.00143054442014545,-0.999999582767487,-0.000348458968801424,-0.000845895381644368,-1,0,0,-0.999999523162842,0.000895032717380673,0,-0.999996066093445,-0.00276732863858342,-0.000588619732297957,-0.999999582767487,-0.000348458968801424,-0.000845895381644368,-0.999996066093445,-0.00276732863858342,-0.000588619732297957,-0.999902248382568,0.0139131732285023,-0.00143054442014545,-0.999983549118042,-0.00420623691752553,-0.00391668453812599,-0.999909520149231,-0.0134468339383602,-0.000521018460858613,-0.999909520149231,-0.0134468339383602,-0.000521018460858613,-0.999983549118042,-0.00420623691752553,-0.00391668453812599,-0.999838471412659,-0.0179652273654938,0.000475735549116507,-1,0,0,-0.999999582767487,-0.000348458968801424,-0.000845895381644368,-0.999999940395355,-0.000355188036337495,0,
- -1,0,0,-0.999999940395355,-0.000355188036337495,0,-0.999999582767487,-0.000348458968801424,-0.000845895381644368,-0.999909520149231,-0.0134468339383602,-0.000521018460858613,-0.999992847442627,-0.00378068746067584,0.000244428752921522,-0.999999582767487,-0.000277065322734416,-0.000873877026606351,-0.999992847442627,-0.00378068746067584,0.000244428752921522,-0.999909520149231,-0.0134468339383602,-0.000521018460858613,-0.999838471412659,-0.0179652273654938,0.000475735549116507,-0.999999403953552,-0.000991967157460749,0.000474173750262707,-0.99999737739563,-0.00225930358283222,0.000474557629786432,-0.999998688697815,-0.00155116512905806,0.000474343221867457,-0.999995648860931,0.000194355889107101,-0.00297285942360759,-0.999999821186066,-0.000612742733210325,0,-0.999999403953552,-0.0010212775086984,0,-1,0,0,-0.999999940395355,-0.000355188036337495,0,-0.999999821186066,-0.000612742733210325,0,-0.999999940395355,-0.000355188036337495,0,-0.999992847442627,-0.00378068746067584,0.000244428752921522,-1,-4.99871639476623e-005,0,-1,-4.99871639476623e-005,0,-0.999992847442627,-0.00378068746067584,0.000244428752921522,-0.999999582767487,-0.000277065322734416,-0.000873877026606351,0,-0.000274709396762773,0.999999940395355,0,-0.000308600720018148,0.999999940395355,0,0.000138651928864419,1,0,-0.000196916051208973,1,0,0.000205742951948196,1,0,0.000205621239729226,1,0,-3.65154562587122e-007,1,0,0.000152875785715878,1,0,0.000205621239729226,1,0,0.000205742951948196,1,0,-0,1,0,0.000103704041976016,1,0,8.01327114459127e-005,1,0,-0,1,0,0.000103704041976016,1,0,-0,1,0,-0,1,0,8.01327114459127e-005,1,0,-1.70820185303455e-005,1,0,0.000160241354024038,1,0,-0.000308600720018148,0.999999940395355,0,-0.000274709396762773,0.999999940395355,0,0.000160241354024038,1,0,-1.70820185303455e-005,1,-1,-3.57627860658738e-009,-3.78955995534977e-019,-1,-7.15255721317476e-009,2.06795153138257e-025,-1,-7.15255721317476e-009,-4.54747256680519e-018,-1,-3.57627860658738e-009,1.13686834849645e-018,-1,0,0,-1,-3.57627860658738e-009,-3.78955995534977e-019,-1,-3.57627860658738e-009,1.13686834849645e-018,
- -1,0,0,-1,8.94069651646845e-010,-6.39488471878647e-019,-1,0,0,-1,0,0,-1,8.94069651646845e-010,2.58493941422821e-026,-1,1.78813930329369e-009,2.55795388751459e-018,-1,1.78813930329369e-009,0,-1,8.94069651646845e-010,-6.39488471878647e-019,-1,8.94069651646845e-010,2.58493941422821e-026,0.00130393367726356,-0.00122342968825251,-0.999998390674591,0.00130648585036397,0.00208095065318048,-0.999997019767761,0.00130786036606878,0.00386789394542575,-0.999991655349731,0.00130583788268268,0.00124030455481261,-0.999998450279236,0.00130498048383743,0.000130136453662999,-0.999999165534973,0.00130616198293865,0.00166062673088163,-0.999997854232788,-0.999999940395355,-0,0.000424779515014961,-0.999999761581421,-0,0.0008219979936257,-0.999999940395355,0,0.000282669789157808,-1,0,-1.54966778609378e-006,-1,0,1.3005691471335e-005,0.363814324140549,0.148062348365784,-0.919628620147705,-0.196352317929268,0.0283819325268269,-0.9801225066185,-0.128853514790535,0.0571513548493385,-0.990015387535095,-0.196352317929268,0.0283819325268269,-0.9801225066185,0.363814324140549,0.148062348365784,-0.919628620147705,0.25019446015358,0.161120295524597,-0.954695284366608,0.521624624729156,0.264232188463211,-0.811226904392242,0.25019446015358,0.161120295524597,-0.954695284366608,0.363814324140549,0.148062348365784,-0.919628620147705,0.25019446015358,0.161120295524597,-0.954695284366608,-0.135714307427406,-0.0303018093109131,-0.990284562110901,-0.196352317929268,0.0283819325268269,-0.9801225066185,0.451434463262558,0.344258844852448,-0.823221027851105,0.25019446015358,0.161120295524597,-0.954695284366608,0.521624624729156,0.264232188463211,-0.811226904392242,0.21879905462265,0.116562731564045,-0.968782722949982,-0.135714307427406,-0.0303018093109131,-0.990284562110901,0.25019446015358,0.161120295524597,-0.954695284366608,0.451434463262558,0.344258844852448,-0.823221027851105,0.21879905462265,0.116562731564045,-0.968782722949982,0.25019446015358,0.161120295524597,-0.954695284366608,0.0580697804689407,0.0601899884641171,-0.996496379375458,-0.135714307427406,-0.0303018093109131,-0.990284562110901,
- 0.21879905462265,0.116562731564045,-0.968782722949982,0.0580697804689407,0.0601899884641171,-0.996496379375458,-0.393051624298096,-0.161875754594803,-0.905155658721924,-0.135714307427406,-0.0303018093109131,-0.990284562110901,0.451434463262558,0.344258844852448,-0.823221027851105,0.355015605688095,0.280134260654449,-0.891901731491089,0.21879905462265,0.116562731564045,-0.968782722949982,0.355015605688095,0.280134260654449,-0.891901731491089,0.0580697804689407,0.0601899884641171,-0.996496379375458,0.21879905462265,0.116562731564045,-0.968782722949982,0.376706421375275,0.547198235988617,-0.747440040111542,0.355015605688095,0.280134260654449,-0.891901731491089,0.451434463262558,0.344258844852448,-0.823221027851105,0.512378334999084,0.461123198270798,-0.724454164505005,0.355015605688095,0.280134260654449,-0.891901731491089,0.376706421375275,0.547198235988617,-0.747440040111542,0.035567719489336,0.0886239036917686,-0.995429933071136,0.355015605688095,0.280134260654449,-0.891901731491089,0.512378334999084,0.461123198270798,-0.724454164505005,0.303297996520996,0.156003445386887,-0.940038919448853,0.355015605688095,0.280134260654449,-0.891901731491089,0.035567719489336,0.0886239036917686,-0.995429933071136,-0.301325082778931,-0.164982438087463,-0.939140021800995,-0.393051624298096,-0.161875754594803,-0.905155658721924,0.0580697804689407,0.0601899884641171,-0.996496379375458,-0.393051624298096,-0.161875754594803,-0.905155658721924,-0.301325082778931,-0.164982438087463,-0.939140021800995,-0.444479286670685,-0.303553074598312,-0.842789232730865,0.0580697804689407,0.0601899884641171,-0.996496379375458,0.355015605688095,0.280134260654449,-0.891901731491089,0.361524045467377,0.136695131659508,-0.922287821769714,0.355015605688095,0.280134260654449,-0.891901731491089,0.303297996520996,0.156003445386887,-0.940038919448853,0.361524045467377,0.136695131659508,-0.922287821769714,0.175565108656883,0.0360709987580776,-0.983806788921356,-0.301325082778931,-0.164982438087463,-0.939140021800995,0.0580697804689407,0.0601899884641171,-0.996496379375458,
- 0.0580697804689407,0.0601899884641171,-0.996496379375458,0.361524045467377,0.136695131659508,-0.922287821769714,0.175565108656883,0.0360709987580776,-0.983806788921356,-0.301325082778931,-0.164982438087463,-0.939140021800995,-0.0318817347288132,-0.0720575377345085,-0.996890842914581,-0.444479286670685,-0.303553074598312,-0.842789232730865,0.175565108656883,0.0360709987580776,-0.983806788921356,-0.0318817347288132,-0.0720575377345085,-0.996890842914581,-0.301325082778931,-0.164982438087463,-0.939140021800995,-0.444479286670685,-0.303553074598312,-0.842789232730865,-0.0318817347288132,-0.0720575377345085,-0.996890842914581,-0.186657831072807,-0.22433203458786,-0.956469535827637,-0.0318817347288132,-0.0720575377345085,-0.996890842914581,-0.14040195941925,-0.106269344687462,-0.984374940395355,-0.186657831072807,-0.22433203458786,-0.956469535827637,0.462040781974792,0.183539137244225,-0.867658734321594,0.175565108656883,0.0360709987580776,-0.983806788921356,0.361524045467377,0.136695131659508,-0.922287821769714,0.361524045467377,0.136695131659508,-0.922287821769714,0.303297996520996,0.156003445386887,-0.940038919448853,0.462040781974792,0.183539137244225,-0.867658734321594,0.462040781974792,0.183539137244225,-0.867658734321594,0.157635897397995,0.00741462968289852,-0.987469434738159,0.175565108656883,0.0360709987580776,-0.983806788921356,0.303297996520996,0.156003445386887,-0.940038919448853,0.157635897397995,0.00741462968289852,-0.987469434738159,0.462040781974792,0.183539137244225,-0.867658734321594,0.175565108656883,0.0360709987580776,-0.983806788921356,0.157635897397995,0.00741462968289852,-0.987469434738159,-0.0318817347288132,-0.0720575377345085,-0.996890842914581,-0.0562218688428402,-0.122564680874348,-0.990866661071777,0.157635897397995,0.00741462968289852,-0.987469434738159,0.303297996520996,0.156003445386887,-0.940038919448853,-0.0562218688428402,-0.122564680874348,-0.990866661071777,-0.0318817347288132,-0.0720575377345085,-0.996890842914581,0.157635897397995,0.00741462968289852,-0.987469434738159,0.1610416918993,0.0690953955054283,-0.984525918960571,
- -0.0318817347288132,-0.0720575377345085,-0.996890842914581,-0.0562218688428402,-0.122564680874348,-0.990866661071777,-0.0323574431240559,0.006113660056144,-0.999457657337189,-0.14040195941925,-0.106269344687462,-0.984374940395355,-0.0318817347288132,-0.0720575377345085,-0.996890842914581,-0.0318817347288132,-0.0720575377345085,-0.996890842914581,0.1610416918993,0.0690953955054283,-0.984525918960571,-0.0323574431240559,0.006113660056144,-0.999457657337189,-0.0323574431240559,0.006113660056144,-0.999457657337189,-0.347302675247192,-0.178436532616615,-0.920620024204254,-0.14040195941925,-0.106269344687462,-0.984374940395355,0.1610416918993,0.0690953955054283,-0.984525918960571,0.340647339820862,0.136885270476341,-0.930172979831696,-0.0323574431240559,0.006113660056144,-0.999457657337189,-0.11525622010231,-0.0919473767280579,-0.989071190357208,-0.347302675247192,-0.178436532616615,-0.920620024204254,-0.0323574431240559,0.006113660056144,-0.999457657337189,0.340647339820862,0.136885270476341,-0.930172979831696,-0.11525622010231,-0.0919473767280579,-0.989071190357208,-0.0323574431240559,0.006113660056144,-0.999457657337189,-0.0111992722377181,-0.0317725874483585,-0.999432444572449,-0.347302675247192,-0.178436532616615,-0.920620024204254,-0.11525622010231,-0.0919473767280579,-0.989071190357208,0.340647339820862,0.136885270476341,-0.930172979831696,-0.0111992722377181,-0.0317725874483585,-0.999432444572449,-0.11525622010231,-0.0919473767280579,-0.989071190357208,-0.0111992722377181,-0.0317725874483585,-0.999432444572449,-0.304520130157471,-0.166204214096069,-0.937893211841583,-0.347302675247192,-0.178436532616615,-0.920620024204254,0.1610416918993,0.0690953955054283,-0.984525918960571,0.51518303155899,0.28313022851944,-0.808964610099792,0.340647339820862,0.136885270476341,-0.930172979831696,0.326460659503937,0.281775325536728,-0.902233958244324,0.51518303155899,0.28313022851944,-0.808964610099792,0.1610416918993,0.0690953955054283,-0.984525918960571,0.529041290283203,0.296248108148575,-0.79520583152771,0.340647339820862,0.136885270476341,-0.930172979831696,
- 0.51518303155899,0.28313022851944,-0.808964610099792,0.326460659503937,0.281775325536728,-0.902233958244324,0.529041290283203,0.296248108148575,-0.79520583152771,0.51518303155899,0.28313022851944,-0.808964610099792,0.340647339820862,0.136885270476341,-0.930172979831696,0.529041290283203,0.296248108148575,-0.79520583152771,-0.0111992722377181,-0.0317725874483585,-0.999432444572449,0.5003741979599,0.340267568826675,-0.796142995357513,0.529041290283203,0.296248108148575,-0.79520583152771,0.326460659503937,0.281775325536728,-0.902233958244324,0.601356148719788,0.426286965608597,-0.675758898258209,0.529041290283203,0.296248108148575,-0.79520583152771,0.5003741979599,0.340267568826675,-0.796142995357513,0.529041290283203,0.296248108148575,-0.79520583152771,0.601356148719788,0.426286965608597,-0.675758898258209,0.432348012924194,0.28295224905014,-0.856161952018738,-0.0111992722377181,-0.0317725874483585,-0.999432444572449,0.529041290283203,0.296248108148575,-0.79520583152771,0.432348012924194,0.28295224905014,-0.856161952018738,0.456151276826859,0.384556472301483,-0.802522480487823,0.432348012924194,0.28295224905014,-0.856161952018738,0.601356148719788,0.426286965608597,-0.675758898258209,-0.0111992722377181,-0.0317725874483585,-0.999432444572449,-0.0806766301393509,-0.0824021697044373,-0.993328392505646,-0.304520130157471,-0.166204214096069,-0.937893211841583,0.432348012924194,0.28295224905014,-0.856161952018738,-0.0806766301393509,-0.0824021697044373,-0.993328392505646,-0.0111992722377181,-0.0317725874483585,-0.999432444572449,-0.0806766301393509,-0.0824021697044373,-0.993328392505646,-0.341526657342911,-0.400258868932724,-0.850383639335632,-0.304520130157471,-0.166204214096069,-0.937893211841583,0.432348012924194,0.28295224905014,-0.856161952018738,0.456151276826859,0.384556472301483,-0.802522480487823,0.227417409420013,0.181365206837654,-0.956759035587311,0.432348012924194,0.28295224905014,-0.856161952018738,0.227417409420013,0.181365206837654,-0.956759035587311,-0.0806766301393509,-0.0824021697044373,-0.993328392505646,
- 0.310288846492767,0.278920412063599,-0.908803641796112,0.227417409420013,0.181365206837654,-0.956759035587311,0.456151276826859,0.384556472301483,-0.802522480487823,-0.0929038003087044,-0.0548073910176754,-0.994165480136871,-0.341526657342911,-0.400258868932724,-0.850383639335632,-0.0806766301393509,-0.0824021697044373,-0.993328392505646,-0.0929038003087044,-0.0548073910176754,-0.994165480136871,-0.200651571154594,-0.198145419359207,-0.959415137767792,-0.341526657342911,-0.400258868932724,-0.850383639335632,-0.0929038003087044,-0.0548073910176754,-0.994165480136871,0.105558656156063,0.23205478489399,-0.966958165168762,-0.200651571154594,-0.198145419359207,-0.959415137767792,0.188614368438721,0.201005905866623,-0.961260199546814,-0.0806766301393509,-0.0824021697044373,-0.993328392505646,0.227417409420013,0.181365206837654,-0.956759035587311,-0.0806766301393509,-0.0824021697044373,-0.993328392505646,0.188614368438721,0.201005905866623,-0.961260199546814,-0.0929038003087044,-0.0548073910176754,-0.994165480136871,0.227417409420013,0.181365206837654,-0.956759035587311,0.310288846492767,0.278920412063599,-0.908803641796112,0.188614368438721,0.201005905866623,-0.961260199546814,0.105558656156063,0.23205478489399,-0.966958165168762,-0.0929038003087044,-0.0548073910176754,-0.994165480136871,0.188614368438721,0.201005905866623,-0.961260199546814,0.310288846492767,0.278920412063599,-0.908803641796112,0.211709424853325,0.160245507955551,-0.964106023311615,0.188614368438721,0.201005905866623,-0.961260199546814,0.188614368438721,0.201005905866623,-0.961260199546814,0.0963079705834389,0.0727043375372887,-0.992692708969116,0.105558656156063,0.23205478489399,-0.966958165168762,0.211709424853325,0.160245507955551,-0.964106023311615,0.0963079705834389,0.0727043375372887,-0.992692708969116,0.188614368438721,0.201005905866623,-0.961260199546814,-0.0533647462725639,-0.998545348644257,-0.00771817611530423,-0.0533647462725639,-0.998545348644257,-0.00771817611530423,-0.0533647425472736,-0.998545348644257,-0.00771817751228809,0.116265900433064,0.993151247501373,-0.0115343639627099,
- 0.116265900433064,0.993151247501373,-0.0115343639627099,0.116265900433064,0.993151247501373,-0.0115343639627099,0.238845720887184,-0.971022427082062,-0.00825666170567274,0.238845735788345,-0.971022427082062,-0.00825667101889849,0.238845720887184,-0.971022427082062,-0.00825665239244699,0.070872999727726,-0.997444570064545,0.00901780184358358,0.070872999727726,-0.997444570064545,0.00901780370622873,0.0708729922771454,-0.997444570064545,0.00901780370622873,0.204395890235901,0.977997779846191,-0.0417450517416,0.204395890235901,0.977997779846191,-0.0417450554668903,0.204395905137062,0.977997779846191,-0.0417450480163097,0.0677024722099304,-0.997658252716064,0.00971713941544294,0.0677024647593498,-0.997658252716064,0.00971714220941067,0.0677024722099304,-0.997658252716064,0.00971713941544294,-0.0612492337822914,0.998059153556824,0.0112533317878842,-0.0612492300570011,0.998059153556824,0.0112533336505294,-0.0612492337822914,0.998059153556824,0.0112533327192068,-0.999975323677063,-0.00466855196282268,0.005246268119663,-0.999984443187714,-0.00189740711357445,0.00524705834686756,-0.99998277425766,0.00250088097527623,0.00531100761145353,-0.999951303005219,0.0024624562356621,0.00956636853516102,-0.99995219707489,-0.00189855298958719,0.00959266163408756,-0.999938368797302,0.00558652263134718,0.00959447212517262,-0.998670876026154,-0.0284581407904625,0.0429722219705582,-0.998366117477417,-0.0284734778106213,0.0495413914322853,-0.998494982719421,-0.0284870974719524,0.0468647219240665,-0.998668611049652,-0.0285381861031055,0.0429719313979149,-0.998494684696198,-0.0285000763833523,0.0468647740781307,-0.998774647712708,-0.028531938791275,0.040436677634716,-0.999601602554321,0.0125574776902795,-0.0252778399735689,-0.999611973762512,0.0141376424580812,-0.0240011755377054,-0.999636173248291,0.00976862385869026,-0.025145597755909,-0.999601602554321,0.0125574776902795,-0.0252778399735689,-0.999636173248291,0.00976862385869026,-0.025145597755909,-0.999623477458954,0.00749452551826835,-0.0263960734009743,0.0098427003249526,0.99992972612381,0.00660879863426089,
- 0.0105609567835927,0.999937474727631,0.00370578654110432,0.0196354053914547,0.999786138534546,0.0064950562082231,0.0105609567835927,0.999937474727631,0.00370578654110432,0.00977586209774017,0.999951899051666,0.000819512468297035,0.000556042185053229,0.999999523162842,0.000926260952837765,-0.007703788112849,-0.999855041503906,-0.0151840597391129,-0.00806600507348776,-0.99975049495697,-0.0208305679261684,-0.00027705094544217,-0.999780297279358,-0.0209602490067482,-0.00787824112921953,-0.999923586845398,-0.00952819082885981,-0.007703788112849,-0.999855041503906,-0.0151840597391129,-0.0154299149289727,-0.99983686208725,-0.00940157100558281,-0.999592363834381,-0.00423232512548566,-0.0282342489808798,-0.999987065792084,-0.00406176364049315,-0.00306230154819787,-0.999823689460754,-0.00308814831078053,-0.018521836027503,-0.999979734420776,-0.00232929759658873,0.0059406696818769,-0.999823689460754,-0.00308814831078053,-0.018521836027503,-0.999992430210114,-0.00239093042910099,-0.00307372468523681,0.99941748380661,-0.0290625337511301,-0.0178887750953436,0.998720347881317,-0.0271706748753786,-0.0426548011600971,0.997886002063751,-0.0274390019476414,-0.0589119046926498,0.999791979789734,-0.0109778847545385,-0.0171904098242521,0.999932169914246,-0.0116021521389484,-0.00112999172415584,0.999002873897552,-0.0123109770938754,-0.0429154708981514,0.997460007667542,-0.0678874403238297,0.0215612053871155,0.997119247913361,-0.0678066909313202,0.033995196223259,0.996801197528839,-0.0674258768558502,0.0429082214832306,0.997003972530365,-0.0694475471973419,0.0340612009167671,0.997305631637573,-0.0701064020395279,0.0216044448316097,0.997417032718658,-0.0702425390481949,0.0150147778913379,0.00909338612109423,-0.99015200138092,-0.139701515436172,-0.00283896154724061,-0.990194082260132,-0.139669820666313,0.0107372645288706,-0.990131318569183,-0.13973081111908,0.00908645987510681,-0.989840567111969,-0.14189176261425,0.0107262302190065,-0.989827215671539,-0.141869813203812,0.0233663711696863,-0.989604711532593,-0.141903266310692,0.999671518802643,0.0209921356290579,-0.0147030744701624,
- 0.99887490272522,0.0455714762210846,-0.0131233194842935,0.999890744686127,0.00306002516299486,-0.0144691690802574,0.998962581157684,0.0453036762773991,-0.00462263869121671,0.999770700931549,0.0211399607360363,-0.00342001835815609,0.99786514043808,0.065186433494091,-0.0039858054369688,-0.0434676147997379,0.998703718185425,0.026485463604331,-0.0477301217615604,0.998502433300018,0.0267339330166578,-0.0151260076090693,0.999555587768555,0.0256875492632389,-0.0476541519165039,0.998441696166992,0.0290386117994785,-0.043394424021244,0.998636662960052,0.0290122460573912,-0.0705476999282837,0.997064471244812,0.0297566633671522,0.99821150302887,-0.00490800337865949,-0.0595810115337372,0.998209595680237,0.00333100417628884,-0.0597203336656094,0.998133718967438,-0.0128169823437929,-0.0597062557935715,0.998237729072571,0.00333128264173865,-0.0592483691871166,0.998217642307281,-0.00490969605743885,-0.0594779178500175,0.998203158378601,0.00893976259976625,-0.0592496246099472,0.999446213245392,0.0316498801112175,0.0102730169892311,0.99952644109726,0.0289786774665117,0.010350227355957,0.999660968780518,0.0238516479730606,0.0104445219039917,0.999475002288818,0.0290507599711418,0.0143440421670675,0.999393880367279,0.0317372158169746,0.0143109653145075,0.99923849105835,0.0363391153514385,0.0142093989998102,0.0120681878179312,-0.999926209449768,-0.00147210201248527,0.0222419463098049,-0.999751448631287,-0.00151632726192474,0.0203921590000391,-0.999790489673615,-0.00181004428304732,0.0203921590000391,-0.999790489673615,-0.00181004428304732,0.0222393237054348,-0.999750435352325,-0.00211557024158537,0.0313561335206032,-0.999506056308746,-0.00215506623499095,-0.047273300588131,0.998765110969543,-0.0152822360396385,-0.0373290181159973,0.99919193983078,-0.0148999327793717,-0.103001564741135,0.994578897953033,-0.0142659414559603,-0.0374115854501724,0.998993992805481,-0.0247271209955215,-0.0474218502640724,0.998583853244781,-0.0241133086383343,0.0146995158866048,0.999575138092041,-0.0251699388027191,0.999805271625519,0.0164610091596842,-0.0108844982460141,
- 0.999853253364563,0.0171234346926212,0.00056740955915302,0.999763429164886,0.01885518245399,-0.0108435302972794,0.999853253364563,0.0171234346926212,0.00056740955915302,0.999799013137817,0.0160698127001524,0.0119888903573155,0.999822556972504,0.0145528614521027,0.0119629399850965,0.999715507030487,0.0237843003123999,-0.00180634495336562,0.999711275100708,0.0237841084599495,-0.00341508421115577,0.999704658985138,0.0237918701022863,-0.00497215054929256,0.999216973781586,0.0392571426928043,-0.00493333069607615,0.999223113059998,0.0392618961632252,-0.00341557501815259,0.99920654296875,0.0392612293362617,-0.00669618882238865,0.999240398406982,0.0389556176960468,0.00108064361847937,0.999235808849335,0.0389304719865322,-0.00350868492387235,0.998940050601959,0.0455812253057957,0.00641719531267881,0.999235808849335,0.0389304719865322,-0.00350868492387235,0.999240398406982,0.0389556176960468,0.00108064361847937,0.999434769153595,0.0323145836591721,-0.00927015021443367,-0.999721825122833,-0.00916967634111643,-0.0217300560325384,-0.999947369098663,-0.00884539354592562,-0.00521534821018577,-0.999108374118805,-0.00823346432298422,-0.0414110533893108,-0.999719142913818,0.00861576851457357,-0.0220779422670603,-0.999124526977539,0.00758523447439075,-0.0411417260766029,-0.998229503631592,0.00788816623389721,-0.0589542426168919,-0.998127043247223,0.0549172908067703,0.026954535394907,-0.997805297374725,0.0547586306929588,0.0372295938432217,-0.997419118881226,0.0543233454227448,0.0469482056796551,-0.997618794441223,0.0579700767993927,0.037366047501564,-0.997918665409088,0.0585368163883686,0.0270547457039356,-0.99808132648468,0.0587543547153473,0.0195337999612093,-0.033557265996933,0.988933503627777,-0.144514530897141,-0.0243817195296288,0.98920476436615,-0.144497454166412,-0.03539052978158,0.988865911960602,-0.144539728760719,-0.0335437506437302,0.988613665103912,-0.146690249443054,-0.0353726781904697,0.988552510738373,-0.146671935915947,-0.044938113540411,0.988160610198975,-0.146694347262383,-0.998654186725616,-0.0484955050051212,-0.01838493719697,
- -0.997493624687195,-0.0686246007680893,-0.017237639054656,-0.999502539634705,-0.0257669128477573,-0.018186692148447,-0.997642338275909,-0.0683779492974281,-0.00584762217476964,-0.998805403709412,-0.0486176460981369,-0.00491048023104668,-0.995633661746979,-0.0931972414255142,-0.00528570869937539,0.0454384572803974,-0.998613357543945,0.0265849474817514,0.0507528707385063,-0.998348355293274,0.0269195176661015,0.0181026682257652,-0.999506175518036,0.0256845504045486,0.0507135093212128,-0.998322546482086,0.0279358811676502,0.0453947484493256,-0.998580038547516,0.0278785713016987,0.0740103423595428,-0.996841609477997,0.028800381347537,-0.996985554695129,-0.0125721199437976,-0.0765633508563042,-0.996813833713531,-0.0214173328131437,-0.076835460960865,-0.997057199478149,0.000563333451282233,-0.0766595155000687,-0.997253656387329,-0.0214696563780308,-0.0708829760551453,-0.997389853000641,-0.0125342886894941,-0.0711083337664604,-0.996990740299225,-0.0312359537929296,-0.0709495395421982,0.999722242355347,0.0231584589928389,-0.00439502531662583,0.999682188034058,0.0244546700268984,-0.00612802617251873,0.999623835086823,0.02707146294415,-0.00442148931324482,0.999682188034058,0.0244546700268984,-0.00612802617251873,0.99956226348877,0.0285219755023718,-0.00786345452070236,0.999603271484375,0.027047723531723,-0.00785350427031517,0.99941098690033,-0.00150664977263659,-0.0342845544219017,0.999285399913788,-0.00149132951628417,-0.0377681143581867,0.999621272087097,-0.00171920412685722,-0.0274690091609955,0.999622702598572,0.00215273350477219,-0.0273834243416786,0.999713063240051,0.00207500113174319,-0.0238687284290791,0.999410510063171,0.0021208159159869,-0.0342685952782631,-0.0259465910494328,0.999652564525604,-0.00463953427970409,-0.0258886069059372,0.999664485454559,-0.00095733191119507,-0.0251709222793579,0.999682724475861,-0.000958507938776165,-0.0258997827768326,0.99962991476059,-0.00832184031605721,-0.0259465910494328,0.999652564525604,-0.00463953427970409,-0.0266300830990076,0.999610722064972,-0.0083206407725811,0.03590989112854,-0.999286293983459,0.0117208333685994,
- 0.0343447364866734,-0.999341309070587,0.0117210373282433,0.0451266653835773,-0.998914003372192,0.0116015272215009,0.0344243533909321,-0.999220609664917,0.0193214099854231,0.0360029861330986,-0.999165713787079,0.0192789845168591,0.0223970022052526,-0.999559879302979,0.0194525104016066,0.99971741437912,0.0231411531567574,-0.00545944971963763,0.999731838703156,0.0230551864951849,-0.00217218417674303,0.99970680475235,0.0231634043157101,-0.00705350562930107,0.999760925769806,0.0217587444931269,-0.00220107659697533,0.999747514724731,0.0217921901494265,-0.00547848036512733,0.999763786792755,0.0217247791588306,-0.000674134003929794,-0.998915791511536,-0.041257131844759,0.0215667281299829,-0.999489724636078,-0.0315981842577457,0.00469671050086617,-0.998733341693878,-0.0324207060039043,0.0384780429303646,-0.998915791511536,-0.041257131844759,0.0215667281299829,-0.998007357120514,-0.0503551438450813,0.0380223877727985,-0.997096836566925,-0.0507919639348984,0.056728545576334,-0.994487702846527,-0.10091669857502,-0.0284606330096722,-0.994248807430267,-0.100650809705257,-0.036588441580534,-0.993916153907776,-0.100126683712006,-0.0458832420408726,-0.99409294128418,-0.102151639759541,-0.0366674959659576,-0.994305372238159,-0.102678164839745,-0.0285345371812582,-0.994451344013214,-0.10299102216959,-0.0214373208582401,0.00322315632365644,-0.992599666118622,0.121390014886856,0.0120301684364676,-0.992534339427948,0.121371582150459,0.00219909427687526,-0.992600798606873,0.12140353769064,0.00322942924685776,-0.991933882236481,0.12671534717083,0.00221191812306643,-0.99193799495697,0.126705765724182,-0.00687319412827492,-0.991914093494415,0.126724645495415,-0.99947190284729,0.0318442359566689,0.00647021224722266,-0.999866843223572,0.0111402468755841,0.0119265140965581,-0.998225927352905,0.0592132210731506,0.00622846325859427,-0.999866843223572,0.0111402468755841,0.0119265140965581,-0.999332070350647,0.0319385044276714,0.0177637450397015,-0.99974250793457,-0.0136292586103082,0.0181432869285345,0.0509063899517059,0.998652040958405,-0.0101418951526284,
- 0.00152502907440066,0.999963462352753,-0.00841452460736036,0.00706940330564976,0.999936163425446,-0.0088157020509243,-0.0394887402653694,0.999176204204559,-0.0093678617849946,0.00700903264805675,0.999917268753052,-0.0107946936041117,0.00144045101478696,0.999940454959869,-0.0108169903978705,-0.996968865394592,-0.0187075305730104,0.0755197033286095,-0.997001707553864,-0.02806824631989,0.0721097737550735,-0.997360706329346,-0.00766532961279154,0.0722002536058426,-0.996508479118347,-0.0280882343649864,0.0786249712109566,-0.996968865394592,-0.0187075305730104,0.0755197033286095,-0.995985925197601,-0.0429376885294914,0.0785394832491875,-0.999895036220551,-0.00171021395362914,-0.0143885323777795,-0.999897837638855,0.000815214589238167,-0.0142780719324946,-0.999888181686401,0.00514230085536838,-0.0140490224584937,-0.999944686889648,0.000615891069173813,-0.010510291904211,-0.999941408634186,-0.00189490767661482,-0.0106593649834394,-0.999918103218079,-0.00671122828498483,-0.0108976336196065,0.0116995051503181,-0.999510884284973,-0.0290019772946835,0.00942506827414036,-0.999534547328949,-0.0290148425847292,-4.24880017817486e-005,-0.999580204486847,-0.028972776606679,0.0203248523175716,-0.999350249767303,-0.0297662559896708,0.00942182913422585,-0.999513924121857,-0.0297210738062859,0.0116975214332342,-0.999489009380341,-0.0297473724931479,0.0177132934331894,0.998763561248779,0.0464498698711395,0.00568554271012545,0.998925387859344,0.0459991730749607,0.0737302601337433,0.996249318122864,0.0452916473150253,0.0178846009075642,0.998286843299866,0.0557109750807285,-0.046518512070179,0.997298896312714,0.0568417124450207,0.00577505631372333,0.998388290405273,0.0564572885632515,-0.999902486801147,-0.0139004904776812,-0.00141595373861492,-0.999805688858032,-0.0145559282973409,-0.01329396199435,-0.999782860279083,-0.0160293076187372,-0.0133159877732396,-0.999834358692169,-0.0149113554507494,0.0104382913559675,-0.999902486801147,-0.0139004904776812,-0.00141595373861492,-0.999866127967834,-0.0125798108056188,0.0104731395840645,-0.999970734119415,-0.00749714393168688,0.00158215663395822,
- -0.999994516372681,-0.000345438369549811,0.00330032035708427,-0.999960541725159,-0.00758361630141735,0.00462398445233703,-0.999994516372681,-0.000345438369549811,0.00330032035708427,-0.999954998493195,0.00675479415804148,0.00667810812592506,-0.99996429681778,0.00680155819281936,0.00503278244286776,-0.999903738498688,0.0138640683144331,-0.000695772701874375,-0.999966144561768,0.00722369831055403,0.00394206261262298,-0.999883592128754,0.0140400193631649,-0.00597776006907225,-0.999966144561768,0.00722369831055403,0.00394206261262298,-0.999998927116394,0.00094028195599094,-0.00112687377259135,-0.999955475330353,0.000588510767556727,0.00941988173872232,-0.999960780143738,-0.00582744693383574,0.00667210575193167,-0.999975383281708,-0.00219666189514101,0.00667835446074605,-0.9999760389328,0.00161190051585436,0.00673188641667366,-0.999933063983917,0.00157394295092672,0.0114613557234406,-0.999931693077087,-0.00220477138645947,0.0114807095378637,-0.999918103218079,0.0056286402978003,0.0114937424659729,-0.998310565948486,-0.0284819528460503,0.0506454482674599,-0.998043656349182,-0.0283816587179899,0.0557092763483524,-0.998156905174255,-0.0283987149596214,0.0536307767033577,-0.998310565948486,-0.0284819528460503,0.0506454482674599,-0.998153030872345,-0.028534147888422,0.0536316744983196,-0.998404741287231,-0.0285741370171309,0.048698540776968,-0.999462962150574,0.0133376028388739,-0.0299343261867762,-0.999485075473785,0.0143292937427759,-0.0287135634571314,-0.999479174613953,0.0121787032112479,-0.0298846047371626,-0.999462962150574,0.0133376028388739,-0.0299343261867762,-0.999479174613953,0.0121787032112479,-0.0298846047371626,-0.999458372592926,0.0107906460762024,-0.0310891959816217,0.0078761437907815,0.99993908405304,0.00773553550243378,0.0103396410122514,0.999936938285828,0.0043839430436492,0.017367135733366,0.999819993972778,0.00764032267034054,0.0103396410122514,0.999936938285828,0.0043839430436492,0.00780983315780759,0.999968945980072,0.00107658316846937,0.000518990098498762,0.999999225139618,0.00114940595813096,-0.0113006932660937,-0.999760627746582,-0.0187375154346228,
- -0.00935306958854198,-0.999642729759216,-0.0250423066318035,-0.000128701751236804,-0.999683797359467,-0.0251449514180422,-0.00921397004276514,-0.999879777431488,-0.0124806324020028,-0.0113006932660937,-0.999760627746582,-0.0187375154346228,-0.0203966442495584,-0.999715626239777,-0.0123540908098221,-0.999354302883148,-0.00410623149946332,-0.0356951132416725,-0.999987304210663,-0.00390221900306642,-0.00322177493944764,-0.999727249145508,-0.00266947550699115,-0.0232017561793327,-0.999963223934174,-0.0019266870804131,0.00836035329848528,-0.999727249145508,-0.00266947550699115,-0.0232017561793327,-0.999992787837982,-0.00200039055198431,-0.00323386094532907,-0.999947130680084,-0.00024216395104304,0.0102893635630608,-0.999943315982819,0.00243584020063281,0.0103668654337525,-0.999916672706604,0.00757549144327641,0.0104614794254303,-0.999894022941589,0.00236199982464314,0.0143652921542525,-0.999897241592407,-0.000331332063069567,0.0143321231007576,-0.999886631965637,-0.00494569865986705,0.0142301945015788,0.0194156486541033,0.999810457229614,-0.00143734493758529,0.00915484130382538,0.999957084655762,-0.00148235214874148,0.0110199153423309,0.999938309192657,-0.00146062322892249,0.011021688580513,0.999937057495117,-0.00210764375515282,0.00915752444416285,0.999955892562866,-0.00209793099202216,-4.02758487325627e-005,0.999997735023499,-0.00213810661807656,0.0158763844519854,-0.999757051467896,-0.0152885690331459,0.00591370649635792,-0.999871432781219,-0.0149056687951088,0.0717769414186478,-0.997318625450134,-0.014268503524363,0.00600212393328547,-0.999677956104279,-0.0246574226766825,0.0160295777022839,-0.999582409858704,-0.0240420307964087,-0.0461624078452587,-0.998618483543396,-0.0251026097685099,-0.999828994274139,0.0149558745324612,-0.010877039283514,-0.999841809272766,0.0140833035111427,-0.0108639467507601,-0.999862551689148,0.0125565715134144,-0.0108359735459089,-0.999817252159119,0.0145098920911551,0.0124475238844752,-0.999804854393005,0.015354142524302,0.0124302012845874,-0.999780714511871,0.0168731231242418,0.0124042071402073,
- -0.999969303607941,0.00762843480333686,-0.00179879914503545,-0.999965131282806,0.00762850698083639,-0.00340466247871518,-0.999958693981171,0.00762058328837156,-0.00495888432487845,-0.999963462352753,-0.0078410292044282,-0.00340525829233229,-0.99994695186615,-0.00784086063504219,-0.00667987484484911,-0.999957203865051,-0.0078364796936512,-0.00492028705775738,-0.999898910522461,-0.0141807533800602,0.00106464547570795,-0.99996542930603,-0.00752721494063735,-0.003527995897457,-0.999878644943237,-0.014192727394402,0.00643838662654161,-0.99996542930603,-0.00752721494063735,-0.003527995897457,-0.999998986721039,-0.000923351675737649,0.00109479459933937,-0.999956250190735,-0.000899717328138649,-0.0093133645132184,0.999010741710663,-0.0392109304666519,-0.0209799092262983,0.998030245304108,-0.0483993589878082,-0.0399163365364075,0.997147440910339,-0.0486517138779163,-0.0577065758407116,0.999010741710663,-0.0392109304666519,-0.0209799092262983,0.99955940246582,-0.0293095037341118,-0.00471148593351245,0.998745143413544,-0.0298467501997948,-0.0402165129780769,0.995184004306793,-0.0945780426263809,0.025767358019948,0.995011985301971,-0.0933794975280762,0.03509421646595,0.994691729545593,-0.0929700955748558,0.044103380292654,0.994846761226654,-0.0950959548354149,0.0351663492619991,0.995184004306793,-0.0945780426263809,0.025767358019948,0.995218098163605,-0.095810741186142,0.0190060567110777,-0.00368278357200325,-0.990021646022797,-0.140867277979851,-0.0132342111319304,-0.989942908287048,-0.140847265720367,-0.00215355399996042,-0.990023136138916,-0.140889137983322,-0.00368526484817266,-0.989632248878479,-0.14357802271843,-0.00216089328750968,-0.989639043807983,-0.143562138080597,0.0078042084351182,-0.989607334136963,-0.143584862351418,0.999797999858856,0.00984598137438297,-0.0175279844552279,0.999381422996521,0.0311749894171953,-0.0162770971655846,0.999773681163788,-0.0123519087210298,-0.0173219032585621,0.999512374401093,0.0308935232460499,-0.00456386152654886,0.999943971633911,0.00997454300522804,-0.00354480883106589,0.998438477516174,0.0557216815650463,-0.00395703827962279,
- 0.0432500913739204,0.998744249343872,0.0252891331911087,-0.00979167781770229,0.999589025974274,0.0269433204084635,-0.00148171558976173,0.999634563922882,0.0269913729280233,-0.0578559264540672,0.998002707958221,0.0253631640225649,-0.00162041850853711,0.999727368354797,0.0232939887791872,-0.00988438632339239,0.999664902687073,0.0239283423870802,0.997111856937408,-0.0247739683836699,-0.0717930793762207,0.997392773628235,-0.0154915042221546,-0.0704818964004517,0.996691524982452,-0.0378852263092995,-0.07190802693367,0.997392773628235,-0.0154915042221546,-0.0704818964004517,0.997299075126648,-0.0248033031821251,-0.0691345855593681,0.997602045536041,-0.00602061580866575,-0.068948931992054,0.999984264373779,-0.00214604660868645,-0.00520474975928664,0.999986410140991,-0.000566449423786253,-0.0052047916688025,0.99998414516449,0.00213364930823445,-0.00522870011627674,0.999964654445648,-0.000566509552299976,-0.00839149113744497,0.999957323074341,0.00389398983679712,-0.00839150883257389,0.999962627887726,0.00211599259637296,-0.00838159117847681,0.998908817768097,-0.0227071568369865,-0.0408114045858383,0.998802363872528,-0.0226775482296944,-0.043353945016861,0.99895441532135,-0.0227106884121895,-0.0396798253059387,0.998792171478271,-0.0231166146695614,-0.0433574803173542,0.998899459838867,-0.0231174752116203,-0.0408123061060905,0.998738467693329,-0.0231054984033108,-0.0445821285247803,0.999670445919037,0.00883085001260042,0.0241040010005236,0.999673128128052,0.00855311565101147,0.0240928549319506,0.999643206596375,0.00829956587404013,0.0253895707428455,0.999670445919037,0.00883085001260042,0.0241040010005236,0.999699175357819,0.00902808085083961,0.022805055603385,0.999673128128052,0.00855311565101147,0.0240928549319506,-0.0166556295007467,0.999855995178223,-0.0032707245554775,-0.0129071306437254,0.999916255474091,-0.000952186528593302,-0.000771609018556774,0.999999165534973,-0.00112383987288922,-0.0129738496616483,0.999899685382843,-0.00568147981539369,-0.0166556295007467,0.999855995178223,-0.0032707245554775,-0.0283347684890032,0.999583542346954,-0.00546339340507984,
- 0.00843979977071285,-0.999897539615631,0.0115618091076612,0.0101628862321377,-0.999786853790283,0.0179730039089918,0.0185753293335438,-0.999762117862701,0.0114313689991832,0.0101628862321377,-0.999786853790283,0.0179730039089918,0.0086026955395937,-0.999664604663849,0.0244274754077196,0.000208670229767449,-0.999698996543884,0.0245341584086418,0.999994874000549,-0.0024207541719079,-0.00210419739596546,0.999935030937195,-0.00180278450716287,0.0112572964280844,0.999965906143188,-0.00149629719089717,-0.00811937544494867,0.99993234872818,-0.00300046149641275,0.0112383402884007,0.999994874000549,-0.0024207541719079,-0.00210419739596546,0.999856293201447,-0.00308624980971217,0.0166701339185238,-0.999063730239868,0.0328576453030109,0.0281438827514648,-0.999143958091736,0.0316196791827679,0.0266786012798548,-0.999231159687042,0.0287369210273027,0.0266716033220291,-0.999143958091736,0.0316196791827679,0.0266786012798548,-0.999308049678802,0.0273421369493008,0.0252158958464861,-0.999231159687042,0.0287369210273027,0.0266716033220291,-0.036054041236639,-0.999347686767578,-0.00207999721169472,-0.0356545187532902,-0.999363899230957,-0.000721204036381096,-0.0314032286405563,-0.999506413936615,-0.0008821155061014,-0.0357580445706844,-0.999354481697083,-0.00346495769917965,-0.036054041236639,-0.999347686767578,-0.00207999721169472,-0.0402388349175453,-0.999184668064117,-0.00329529121518135,0.0189362186938524,0.99974113702774,0.0126208588480949,0.0205584336072207,0.999709725379944,0.0125700198113918,0.0104720685631037,0.99986344575882,0.0127847529947758,0.0207405164837837,0.999559283256531,0.0212394949048758,0.0191009826958179,0.999591708183289,0.0212499368935823,0.0320067293941975,0.999267160892487,0.0209975298494101,-0.99907910823822,0.0328695215284824,0.027581250295043,-0.998988032341003,0.0329464450478554,0.0306184533983469,-0.999113976955414,0.0328519530594349,0.026306452229619,-0.998941957950592,0.0343436598777771,0.0305864885449409,-0.999031186103821,0.0343122258782387,0.0275600608438253,-0.99890273809433,0.0343704037368298,0.0318120494484901,
- -0.999964475631714,0.00388333154842258,-0.00748087652027607,-0.999961912631989,0.00450216326862574,-0.00747638707980514,-0.999966502189636,0.00331046362407506,-0.00748390704393387,-0.99994558095932,0.00389918638393283,-0.00967706646770239,-0.999947607517242,0.00332426186650991,-0.00968182366341352,-0.99994945526123,0.00269783707335591,-0.00968577247112989,0.00105624203570187,-0.999997198581696,0.00212170882150531,0.000869316107127815,-0.99999737739563,0.00212170509621501,-4.25987354901736e-006,-0.999997735023499,0.00212248018942773,0.000867779657710344,-0.999999523162842,0.000392248795833439,0.00105498230550438,-0.999999344348907,0.000391950510675088,0.00187926995567977,-0.999998152256012,0.000391348206903785,0.0153709873557091,0.999526739120483,0.0266458932310343,0.0263137891888618,0.999297797679901,0.0266739372164011,0.0240339878946543,0.999355852603912,0.0266509670764208,0.0240439046174288,0.999572336673737,0.0166506506502628,0.0263437833636999,0.999514639377594,0.0166341662406921,0.0351691916584969,0.999242603778839,0.0166548509150743,-0.999833703041077,0.0149688357487321,-0.0104182176291943,-0.999822080135345,0.015717962756753,-0.0104258134961128,-0.999808728694916,0.0165403094142675,-0.0104363579303026,-0.99983024597168,0.0159697197377682,0.0091919107362628,-0.999842286109924,0.0151956155896187,0.00920289009809494,-0.999854385852814,0.0143662178888917,0.00921246595680714,-0.999829113483429,0.0184269454330206,0.00147708121221513,-0.999830007553101,0.018421970307827,0.000880071835126728,-0.999830484390259,0.0184174366295338,4.06468097935431e-005,-0.999975204467773,0.00697261560708284,0.000975713832303882,-0.999975681304932,0.00696036405861378,-0.000492292398121208,-0.999975740909576,0.00696440506726503,0.000116651113785338,-0.999588191509247,0.0286504309624434,-0.00161609577480704,-0.999769330024719,0.0214353539049625,-0.00137796299532056,-0.999769926071167,0.0214322339743376,-0.000978610129095614,-0.999769926071167,0.0214322339743376,-0.000978610129095614,-0.999769330024719,0.0214353539049625,-0.00137796299532056,
- -0.999898672103882,0.0142161203548312,-0.000731771870050579,-0.999484300613403,0.0247676391154528,-0.0204382985830307,-0.999695122241974,0.0246907118707895,-2.27532655117102e-005,-0.998093962669373,0.0289753209799528,-0.0544871762394905,-0.998867034912109,0.0430117063224316,-0.0203614886850119,-0.99770587682724,0.0414968729019165,-0.053488552570343,-0.996276021003723,0.0431391596794128,-0.0746545568108559,-0.996329665184021,0.0792964920401573,0.0322384051978588,-0.995496451854706,0.077969916164875,0.0539229735732079,-0.994642794132233,0.0762416869401932,0.0698064640164375,-0.996329665184021,0.0792964920401573,0.0322384051978588,-0.996528387069702,0.0803855434060097,0.0216635745018721,-0.995581328868866,0.0769521072506905,0.0538167953491211,0.00518349325284362,0.99470579624176,-0.10263379663229,0.0151508925482631,0.994604051113129,-0.102631747722626,0.000927776913158596,0.99471241235733,-0.102696590125561,0.00517783034592867,0.994009554386139,-0.109170742332935,0.00095199909992516,0.994028210639954,-0.109120175242424,-0.0095585361123085,0.99397885799408,-0.109154358506203,-0.0213579218834639,-0.999311566352844,-0.030335895717144,-0.00676559330895543,-0.999538004398346,-0.0296317338943481,-0.00231702602468431,-0.999566733837128,-0.0293425917625427,-0.00205429270863533,-0.999408066272736,-0.0343403704464436,-0.0065273055806756,-0.999382734298706,-0.0345215164124966,0.00736558251082897,-0.999399960041046,-0.0338448025286198,-0.997077286243439,0.0205525774508715,-0.0735830590128899,-0.997142612934113,0.0150624196976423,-0.0740255489945412,-0.996911227703094,0.028659138828516,-0.073121190071106,-0.997565984725952,0.0146800335496664,-0.0681663900613785,-0.997486472129822,0.0202376451343298,-0.0679071545600891,-0.997607529163361,0.00905593205243349,-0.0685364902019501,0.999348878860474,-0.0169344078749418,0.0318606682121754,0.999388635158539,-0.0143992761150002,0.0318591184914112,0.999440252780914,-0.0103802001103759,0.0318037495017052,0.999518036842346,-0.0144039848819375,0.0274996943771839,0.999593377113342,-0.00755685660988092,0.0274945870041847,
- 0.999566972255707,-0.0104192001745105,0.027519853785634,0.999280273914337,-0.0377684272825718,-0.00352598819881678,0.999285876750946,-0.0374286659061909,-0.00519222719594836,0.999252080917358,-0.0377325788140297,-0.00845701340585947,0.999275803565979,-0.0371006540954113,-0.00845255516469479,0.999285876750946,-0.0374286659061909,-0.00519222719594836,0.9992595911026,-0.037087444216013,-0.0102385673671961,0.998041391372681,-0.000921431637834758,0.0625508949160576,0.99804300069809,-0.0024830165784806,0.0624829679727554,0.997964322566986,-0.00376423657871783,0.0636638328433037,0.998041391372681,-0.000921431637834758,0.0625508949160576,0.998115956783295,-1.33119465317577e-005,0.0613557212054729,0.99804300069809,-0.0024830165784806,0.0624829679727554,-0.00116676650941372,0.999990940093994,-0.00410449272021651,0.00144092389382422,0.999997556209564,-0.00167815794702619,0.0118877626955509,0.99992835521698,-0.0014006030978635,0.00156583194620907,0.999978423118591,-0.00638211378827691,-0.00116676650941372,0.999990940093994,-0.00410449272021651,-0.0112065738067031,0.999914646148682,-0.00672081438824534,-0.00625284481793642,-0.999897301197052,0.0128956353291869,-0.00547483516857028,-0.999812126159668,0.0185929853469133,0.00138533883728087,-0.999913692474365,0.0130721665918827,-0.00547483516857028,-0.999812126159668,0.0185929853469133,-0.00651449104771018,-0.999684751033783,0.0242482610046864,-0.0131961554288864,-0.999622642993927,0.0240929704159498,0.999111652374268,-0.0159937273710966,0.0389884114265442,0.998295307159424,-0.0165039673447609,0.0559827908873558,0.997789680957794,-0.0162361338734627,0.0644369572401047,0.998347043991089,-0.0134060950949788,0.055887758731842,0.999137341976166,-0.0142585830762982,0.0390062928199768,0.999413073062897,-0.0141821121796966,0.031186094507575,-0.999979913234711,-0.00386107852682471,0.00503205833956599,-0.999986052513123,-0.00160042417701334,0.00503281829878688,-0.999983549118042,0.00263912416994572,0.00509382272139192,-0.999957144260406,0.00260306755080819,0.00888756569474936,-0.999959051609039,-0.00160166178829968,0.00890982802957296,
- -0.99994695186615,0.00516745261847973,0.00891186110675335,-0.998872339725494,-0.0262787882238626,0.0395410247147083,-0.998594880104065,-0.0263263396918774,0.0459913797676563,-0.998701512813568,-0.0263370405882597,0.0436083301901817,-0.998872339725494,-0.0262787882238626,0.0395410247147083,-0.998704612255096,-0.0262198653072119,0.0436079390347004,-0.998959720134735,-0.026247501373291,0.0372931249439716,0.0114537738263607,0.999902606010437,0.00798697024583817,0.0122941611334682,0.999913215637207,0.00475126877427101,0.0228651035577059,0.999707877635956,0.00783571787178516,0.0122941611334682,0.999913215637207,0.00475126877427101,0.0113689536228776,0.999934196472168,0.00153796782251447,0.000639177858829498,0.999998390674591,0.00167959497775882,-0.0114730931818485,-0.999701082706451,-0.02159084379673,-0.0131452735513449,-0.999681532382965,-0.0215426683425903,0,-0.999763548374176,-0.0217448398470879,-0.0129982102662325,-0.999844312667847,-0.0119341732934117,-0.0113441729918122,-0.999864459037781,-0.011939525604248,-0.0217260718345642,-0.999694347381592,-0.0117982486262918,-0.999993145465851,-0.00367985782213509,0.000397425057599321,-0.999985694885254,-0.00359813496470451,0.0039638252928853,-0.999991893768311,-0.00365582946687937,0.00174802064429969,-0.999986171722412,-0.00171064212918282,0.0049776011146605,-0.999997079372406,-0.00176871661096811,0.00171444972511381,-0.999990820884705,-0.00173485884442925,0.00392113626003265,0.999943852424622,0.00393642531707883,0.00983994547277689,0.999946355819702,0.00321716093458235,0.00984637439250946,0.999948680400848,0.00236936006695032,0.00985183287411928,0.999963343143463,0.00391958188265562,0.00761199370026588,0.999959766864777,0.0047588162124157,0.00760561833158135,0.999965965747833,0.00320285023190081,0.00761565379798412,-0.000745943805668503,-0.999999582767487,-0.000539829197805375,-0.000907205219846219,-0.999999463558197,-0.00053960841614753,-0.00161661277525127,-0.999998569488525,-0.000539163360372186,-0.000908220943529159,-0.99999725818634,-0.00216258387081325,-0.000747182813938707,-0.999997496604919,-0.00216258154250681,
- 4.30437694376451e-006,-0.999997675418854,-0.00216315500438213,-0.0230578873306513,0.999553501605988,-0.0190089661628008,-0.0306316614151001,0.999403059482574,-0.015975559130311,-0.0216896589845419,0.999584078788757,-0.0190062243491411,-0.0230578873306513,0.999553501605988,-0.0190089661628008,-0.0216896589845419,0.999584078788757,-0.0190062243491411,-0.0142792370170355,0.999655187129974,-0.0220376700162888,0.99989515542984,-0.0109372064471245,-0.00948979891836643,0.999937832355499,-0.0111319879069924,0.000622999563347548,0.9998939037323,-0.0110502243041992,-0.0094913961365819,0.999937832355499,-0.0111319879069924,0.000622999563347548,0.999879479408264,-0.0112227834761143,0.0107371844351292,0.999880135059357,-0.011162512935698,0.0107380356639624,0.999982714653015,0.00587623054161668,-0.000195719228941016,0.999982297420502,0.00588244711980224,-0.000885332759935409,0.999982714653015,0.00587244797497988,0.000379466859158129,0.999976456165314,-0.0066894362680614,-0.00151951320003718,0.999977111816406,-0.00669366307556629,-0.000984697486273944,0.99997752904892,-0.00669759977608919,-0.000278370804153383,0.999898135662079,0.0142335714772344,0.00106853770557791,0.999968409538269,0.00778787024319172,0.00161027594003826,0.999898552894592,0.0142301004379988,0.000655598996672779,0.999996960163116,0.00134165468625724,0.00207864516414702,0.999968409538269,0.00778787024319172,0.00161027594003826,0.999998509883881,0.00133407989051193,0.00117704237345606,-0.999919056892395,0.00309434556402266,-0.0123449955135584,-0.999921321868896,0.00218943506479263,-0.0123519953340292,-0.999972462654114,-0.0001956841442734,-0.00741883181035519,-0.999921321868896,0.00218943506479263,-0.0123519953340292,-0.999919056892395,0.00309434556402266,-0.0123449955135584,-0.999834477901459,0.00570855103433132,-0.0172764509916306,0.00707841897383332,-0.999973058700562,0.0019899180624634,0.00636374764144421,-0.999977827072144,0.00200702017173171,-2.60754022747278e-005,-0.999997973442078,0.00202341587282717,0.00636366521939635,-0.999977827072144,0.00197563692927361,
- 0.00707841897383332,-0.999973058700562,0.0019899180624634,0.0128869116306305,-0.999915063381195,0.00195880862884223,0.0254191495478153,0.99948388338089,0.019643347710371,0.0216779056936502,0.999572038650513,0.019644221290946,0.0771453827619553,0.996927440166473,0.0135824047029018,0.0254191495478153,0.99948388338089,0.019643347710371,-0.0288183968514204,0.999255418777466,0.0256544388830662,0.0216779056936502,0.999572038650513,0.019644221290946,-0.999884247779846,-0.0151873808354139,-0.00096467713592574,-0.999772369861603,-0.0162729769945145,-0.0138050047680736,-0.999734938144684,-0.0184556357562542,-0.0137647250667214,-0.999804258346558,-0.0157993771135807,0.0119081130251288,-0.999884247779846,-0.0151873808354139,-0.00096467713592574,-0.99984872341156,-0.0127384858205915,0.011851622723043,-0.999948382377625,-0.00932498369365931,0.00405809516087174,-0.999955773353577,-0.00936597771942616,0.000847097660880536,-0.999955534934998,-0.0093770632520318,-0.00102327717468143,-0.99995630979538,0.00933040957897902,0.000608685077168047,-0.999945163726807,0.0092600965872407,-0.00489423936232924,-0.999956130981445,0.00929779000580311,-0.00121423590462655,-0.999797463417053,0.0017632027156651,0.0200525801628828,-0.99997615814209,0.00677418801933527,0.00133123365230858,-0.999950051307678,0.00677137263119221,0.00736158899962902,-0.999865293502808,0.0117548713460565,-0.0114554269239306,-0.999950051307678,0.00677137263119221,0.00736158899962902,-0.99997615814209,0.00677418801933527,0.00133123365230858,-0.999947249889374,-0.000230681500397623,0.0102778086438775,-0.999943375587463,0.00245156302116811,0.0103555424138904,-0.999916613101959,0.00759920617565513,0.0104504283517599,-0.999893605709076,0.00237693777307868,0.0143911335617304,-0.999896883964539,-0.000320795079460368,0.0143578695133328,-0.999886155128479,-0.00494251819327474,0.0142556373029947,0.0194827597588301,0.999809324741364,-0.00131177937146276,0.0091864513233304,0.999956905841827,-0.00135690672323108,0.0110579943284392,0.999937951564789,-0.00133506418205798,0.0110600646585226,0.999936759471893,-0.0020913821645081,
- 0.00918961223214865,0.999955594539642,-0.0020815699826926,-4.10621796618216e-005,0.999997735023499,-0.00212187389843166,0.0158635377883911,-0.999756693840027,-0.0153283458203077,0.00590222701430321,-0.999871015548706,-0.0149453887715936,0.0717542096972466,-0.99731969833374,-0.0143096083775163,0.00599060906097293,-0.999676525592804,-0.0247172694653273,0.0160168912261724,-0.999581277370453,-0.0241023227572441,-0.0461577102541924,-0.998617351055145,-0.0251612421125174,-0.999828994274139,0.0149607406929135,-0.0108727039769292,-0.999841809272766,0.0140864551067352,-0.0108595779165626,-0.999862611293793,0.012556491419673,-0.0108315255492926,-0.999817371368408,0.0145130213350058,0.0124333640560508,-0.999804973602295,0.0153589583933353,0.0124159920960665,-0.999780833721161,0.0168810710310936,0.0123899290338159,-0.999969303607941,0.00762865552678704,-0.00179429934360087,-0.999965131282806,0.00762878032401204,-0.00340486853383482,-0.999958753585815,0.00762086128816009,-0.00496361497789621,-0.999963641166687,-0.00781716872006655,-0.00340596633031964,-0.999947071075439,-0.00781689118593931,-0.00669006211683154,-0.99995744228363,-0.00781254284083843,-0.00492546241730452,-0.99989902973175,-0.0141773987561464,0.00107420363929123,-0.999894320964813,-0.0140955951064825,-0.00359195750206709,-0.999878525733948,-0.0141898486763239,0.00646302010864019,-0.999993562698364,-0.000947589520365,-0.00346811884082854,-0.999998986721039,-0.000916761055123061,0.00110545556526631,-0.999956071376801,-0.000892201729584485,-0.00933064520359039,0.99855625629425,-0.0493783392012119,-0.0211454555392265,0.998034954071045,-0.0483434125781059,-0.0398635603487492,0.997154593467712,-0.0485927164554596,-0.0576323717832565,0.999364793300629,-0.028980540111661,-0.0207411199808121,0.99955940246582,-0.0293075647205114,-0.00469910027459264,0.998747646808624,-0.0298385750502348,-0.040160033851862,0.995255768299103,-0.0938335135579109,0.0257152188569307,0.994983434677124,-0.0936626344919205,0.0351466611027718,0.994660079479218,-0.0932517424225807,0.0442208386957645,
- 0.994839370250702,-0.0951574295759201,0.0352092161774635,0.995079755783081,-0.0956680551171303,0.0257672443985939,0.995213508605957,-0.0958749279379845,0.0189238470047712,-0.00369626306928694,-0.989993512630463,-0.141064390540123,-0.0132186049595475,-0.989915013313293,-0.141044318675995,-0.00217139814049006,-0.989994943141937,-0.141086146235466,-0.00369867007248104,-0.989620804786682,-0.143655940890312,-0.00217843311838806,-0.989627599716187,-0.14364019036293,0.00775442318990827,-0.989596307277679,-0.143662974238396,0.999799132347107,0.00975044164806604,-0.017510324716568,0.999387323856354,0.0309903211891651,-0.0162669494748116,0.999773919582367,-0.0123497117310762,-0.0173093713819981,0.999518632888794,0.0307053197175264,-0.00443177809938788,0.999945342540741,0.00987727008759975,-0.00342427473515272,0.998455107212067,0.055434126406908,-0.00382628082297742,0.0434866771101952,0.998731911182404,0.0253706462681293,-0.00962000526487827,0.999588489532471,0.0270241405814886,-0.00128547998610884,0.999632656574249,0.0270730797201395,-0.0577238649129868,0.998000383377075,0.0257526468485594,-0.00141252297908068,0.999718546867371,0.0236831195652485,-0.009703004732728,0.999657154083252,0.0243193823844194,0.997117280960083,-0.0247700829058886,-0.0717186406254768,0.99728387594223,-0.0155342565849423,-0.0719965770840645,0.996699094772339,-0.0378264710307121,-0.0718338340520859,0.997500598430634,-0.0155176259577274,-0.0689328834414482,0.997296154499054,-0.0247982610017061,-0.0691768676042557,0.997598648071289,-0.00609370041638613,-0.0689910277724266,-0.999894738197327,-0.00233234860934317,-0.0143280187621713,-0.99989777803421,0.00035248530912213,-0.0142951086163521,-0.999886989593506,0.00495313480496407,-0.0141938850283623,-0.999946534633636,0.000265751790720969,-0.010347057133913,-0.999942779541016,-0.00240414729341865,-0.0104240281507373,-0.99991637468338,-0.00752689363434911,-0.0105179399251938,0.0110270455479622,-0.999936997890472,0.00210441718809307,0.00916119478642941,-0.999955832958221,0.00209465669468045,-4.06121034757234e-005,-0.999997735023499,0.0021346912253648,
- 0.0194264631718397,-0.999810099601746,0.00152790697757155,0.00915892980992794,-0.999956846237183,0.00157276540994644,0.0110255368053913,-0.999938130378723,0.00155104300938547,0.015923548489809,0.999758183956146,0.0151726417243481,0.00597982481122017,0.999872744083405,0.0147908460348845,0.0717140436172485,0.997324764728546,0.0141582824289799,0.0160799045115709,0.999579310417175,0.024139141663909,-0.0459997281432152,0.998623788356781,0.025193938985467,0.00606966484338045,0.999675214290619,0.0247519593685865,-0.999822497367859,-0.0144933788105845,-0.0120374141260982,-0.99981027841568,-0.0153332687914371,-0.0120202181860805,-0.999786198139191,-0.016844492405653,-0.0119943870231509,-0.999829053878784,-0.0149421971291304,0.0108899520710111,-0.999841809272766,-0.0140746338292956,0.0108769414946437,-0.999862313270569,-0.0125567745417356,0.010849173180759,-0.999969303607941,-0.00763678597286344,0.00181071774568409,-0.999965190887451,-0.007636743132025,0.00339449918828905,-0.999958872795105,-0.00762892654165626,0.0049273488111794,-0.99997079372406,0.00684864167124033,0.0033940386492759,-0.999954581260681,0.00684871291741729,0.00662911403924227,-0.999964714050293,0.00684431940317154,0.00489070685580373,-0.999898791313171,0.0141886509954929,-0.0010659983381629,-0.999894142150879,0.0141085721552372,0.00355504965409637,-0.999878764152527,0.0142006799578667,-0.00640151742845774,-0.999993622303009,0.000972862413618714,0.00343295140191913,-0.999999046325684,0.000942482030950487,-0.00109646888449788,-0.999957025051117,0.000918751175049692,0.00923646241426468,0.998683273792267,-0.046301893889904,-0.0220876149833202,0.99812787771225,-0.0452509634196758,-0.0411473587155342,0.997222363948822,-0.0455205179750919,-0.0589546486735344,0.999356925487518,-0.0285151097923517,-0.0217402521520853,0.999570190906525,-0.0288468413054943,-0.00522958720102906,0.998708486557007,-0.0294278897345066,-0.0414175130426884,0.995351374149323,-0.0924619436264038,0.0269527323544025,0.995035827159882,-0.0922911912202835,0.0372295267879963,0.994666278362274,-0.0918414369225502,0.0469508953392506,
- 0.994726121425629,-0.0955180153250694,0.0373670645058155,0.99500435590744,-0.096095860004425,0.0270536672323942,0.995158791542053,-0.0963194593787193,0.0195324458181858,-0.00376691156998277,-0.989500343799591,-0.144481241703033,-0.0130190448835492,-0.989424467086792,-0.14446422457695,-0.00191804021596909,-0.989501953125,-0.14450678229332,-0.0037683027330786,-0.989178478717804,-0.146668717265129,-0.00192406948190182,-0.989186584949493,-0.146650075912476,0.00772537756711245,-0.989155054092407,-0.146672517061234,0.999772071838379,0.0108346315100789,-0.0184009484946728,0.999370336532593,0.0310049075633287,-0.0172530189156532,0.999763369560242,-0.0119208823889494,-0.0182018727064133,0.999509930610657,0.0307526681572199,-0.0058473446406424,0.999927997589111,0.0109515832737088,-0.00490863854065537,0.998436689376831,0.0556441769003868,-0.00528550520539284,-0.00783727318048477,0.999617159366608,0.0265346504747868,-0.0131820719689131,0.999552071094513,0.026871370151639,0.0196456667035818,0.99947851896286,0.025630634278059,-0.0131426816806197,0.999523878097534,0.0279152486473322,-0.00779389403760433,0.999581515789032,0.0278583914041519,-0.0365914031863213,0.998915672302246,0.0287837870419025,0.996750891208649,-0.0250199101865292,-0.076562911272049,0.996912717819214,-0.0161671787500381,-0.0768355056643486,0.996326982975006,-0.0381569042801857,-0.076659083366394,0.997354507446289,-0.016131354495883,-0.0708787068724632,0.997153699398041,-0.025072967633605,-0.0711043179035187,0.997459948062897,-0.00635639019310474,-0.0709454640746117,-0.999986410140991,-0.0021477893460542,0.00475507136434317,-0.999988615512848,-0.000404842430725694,0.00475256564095616,-0.999984264373779,0.0029333287384361,0.00478485785424709,-0.999956905841827,0.00290965125896037,0.00881830975413322,-0.999960958957672,-0.000398940726881847,0.00883746799081564,-0.999949157238007,0.00486822566017509,0.0088297501206398,-0.99893581867218,-0.0249300673604012,0.0388059057295322,-0.998684942722321,-0.0247390810400248,0.0449039414525032,-0.998778760433197,-0.0247515421360731,0.0427594222128391,
- -0.99893581867218,-0.0249300673604012,0.0388059057295322,-0.99877005815506,-0.0250979065895081,0.0427610538899899,-0.999006927013397,-0.0251319911330938,0.0367897599935532,-0.999693989753723,0.00977199990302324,-0.0227261874824762,-0.999717473983765,0.0104869231581688,-0.0213316082954407,-0.99970805644989,0.00837690755724907,-0.0226637441664934,-0.999693989753723,0.00977199990302324,-0.0227261874824762,-0.99970805644989,0.00837690755724907,-0.0226637441664934,-0.999683439731598,0.00739537505432963,-0.0240482483059168,0.0122270127758384,0.999904632568359,0.00643812026828527,0.013533441349864,0.999902009963989,0.00359795801341534,0.0247898660600185,0.999673068523407,0.00626169703900814,0.013533441349864,0.999902009963989,0.00359795801341534,0.0121482294052839,0.999925911426544,0.000793515297118574,0.000690338027197868,0.999999403953552,0.000953897892031819,-0.00874671991914511,-0.999817669391632,-0.0169720575213432,-0.00870722811669111,-0.999733567237854,-0.0213767234236002,-0.000204731724807061,-0.999768853187561,-0.0214998982846737,-0.00858010910451412,-0.999884188175201,-0.0125700514763594,-0.00874671991914511,-0.999817669391632,-0.0169720575213432,-0.0173842031508684,-0.999771475791931,-0.0124412104487419,-0.999997556209564,-0.00135854433756322,0.0017364282393828,-0.999952137470245,-0.00167864805553108,-0.0096390824764967,-0.999970853328705,-0.00144447246566415,0.00750968186184764,-0.999948799610138,-0.00314130471087992,-0.0096190944314003,-0.999992549419403,-0.00345936417579651,0.00170513999182731,-0.999884784221649,-0.00321252993308008,-0.0148430233821273,0.999942660331726,0.000178811722435057,0.0107054002583027,0.999939560890198,-0.00224058399908245,0.0107727367430925,0.999914050102234,-0.00735361548140645,0.0108645120635629,0.999887228012085,-0.00216698064468801,0.0148600079119205,0.999890089035034,0.0002661214384716,0.0148307150229812,0.999879658222198,0.00486401235684752,0.0147332474589348,-0.0192964412271976,-0.999811828136444,-0.00200209161266685,-0.00894350092858076,-0.999957919120789,-0.00204729777760804,
- -0.0111159179359674,-0.999936163425446,-0.00202282168902457,-0.0111163482069969,-0.999935805797577,-0.00219552195630968,-0.00894409604370594,-0.999957621097565,-0.00218451931141317,4.05184437113348e-005,-0.999997556209564,-0.00222357106395066,-0.0172730032354593,0.999731481075287,-0.0154529483988881,-0.00546745210886002,0.999872267246246,-0.0150187518447638,-0.0718922987580299,0.997308135032654,-0.0144210578873754,-0.00555748399347067,0.999653041362762,-0.0257510859519243,-0.0174466278403997,0.99953418970108,-0.0250401198863983,0.0454367399215698,0.998624861240387,-0.0261508170515299,0.999825358390808,-0.0149886524304748,-0.0111614353954792,0.999837636947632,-0.014156517572701,-0.0111492462456226,0.99985945224762,-0.0125542636960745,-0.0111205242574215,0.999809980392456,-0.0145877059549093,0.0129380375146866,0.999798119068146,-0.0153926629573107,0.0129218054935336,0.999772608280182,-0.0169825907796621,0.012895087711513,0.999963045120239,0.0070169884711504,-0.00496863061562181,0.99996942281723,0.00702132936567068,-0.00344709260389209,0.999952673912048,0.00702168559655547,-0.00673756189644337,0.999969184398651,-0.00763505045324564,-0.00183811236638576,0.999964892864227,-0.00763486698269844,-0.00344883278012276,0.999958395957947,-0.00762665225192904,-0.00500758457928896,0.999898135662079,0.0142328822985291,0.00105800887104124,0.999964773654938,0.00749698840081692,-0.00379803846590221,0.999875843524933,0.0142447417601943,0.00674043735489249,0.999964773654938,0.00749698840081692,-0.00379803846590221,0.999999105930328,0.000814074708614498,0.00108666892629117,0.999950587749481,0.000790629652328789,-0.00991019047796726,-0.999358057975769,-0.0285185854882002,0.0216875243932009,-0.99957013130188,-0.0288521889597178,0.00521053513512015,-0.998712420463562,-0.0294239576905966,0.0413244441151619,-0.998687863349915,-0.0462272092700005,0.0220361426472664,-0.998134970664978,-0.0451767183840275,0.0410590842366219,-0.997233271598816,-0.0454417690634727,0.0588305965065956,-0.995175719261169,-0.0937753766775131,-0.028836103156209,-0.994552552700043,-0.0939512997865677,-0.0451478958129883,
- -0.993694245815277,-0.0933337658643723,-0.0621333792805672,-0.99442994594574,-0.0952215269207954,-0.045187883079052,-0.994958519935608,-0.0960473492741585,-0.028856610879302,-0.995214760303497,-0.0961765125393867,-0.0172538906335831,0.00370937143452466,-0.989456832408905,0.144780650734901,0.0128849986940622,-0.989382326602936,0.144764080643654,0.00187511171679944,-0.989458322525024,0.144805759191513,0.00371059658937156,-0.989162981510162,0.146774917840958,0.0018805229337886,-0.989170968532562,0.146756544709206,-0.00768649345263839,-0.989139556884766,0.146778404712677,-0.00366727635264397,0.999719440937042,-0.023404935374856,-0.00529410783201456,0.999713540077209,-0.023345747962594,0.00623732898384333,0.999695420265198,-0.0238792914897203,-0.0054389894939959,0.999634802341461,-0.0264749061316252,-0.00381926912814379,0.999639511108398,-0.0265750493854284,-0.0189981088042259,0.999485492706299,-0.0258432272821665,-0.997348248958588,-0.0161621365696192,0.0709597617387772,-0.997148454189301,-0.0250564068555832,0.0711841583251953,-0.997453808784485,-0.00643188506364822,0.0710247457027435,-0.996760427951813,-0.0250049065798521,0.0764425471425056,-0.99692177772522,-0.0161958411335945,0.0767114013433456,-0.996339201927185,-0.0380781479179859,0.0765392780303955,-0.999887585639954,-0.00214695860631764,-0.014846202917397,-0.999890208244324,0.00028406223282218,-0.0148170068860054,-0.999879777431488,0.00487957615405321,-0.0147197581827641,-0.999942362308502,0.000197783272597007,-0.0107333390042186,-0.999939203262329,-0.00221967371180654,-0.010800520889461,-0.999913930892944,-0.00732905697077513,-0.0108920587226748,0.0110925743356347,-0.999936103820801,0.00222098780795932,0.00892427749931812,-0.999957740306854,0.0022099744528532,-4.04903548769653e-005,-0.999997496604919,0.00224862992763519,0.0192552637308836,-0.999812602996826,0.00204389286227524,0.00892375782132149,-0.999958097934723,0.00208865408785641,0.0110921887680888,-0.999936461448669,0.00206432887353003,0.0172922350466251,0.99973201751709,0.0153898233547807,0.00550503889098763,0.999873101711273,0.0149564305320382,
- 0.0718192607164383,0.997314214706421,0.0143639855086803,0.0174671150743961,0.999532639980316,0.0250872261822224,-0.0453155599534512,0.998629331588745,0.026191383600235,0.00559528404846787,0.999651610851288,0.0257953815162182,-0.999809503555298,-0.0145825855433941,-0.0129734138026834,-0.999797701835632,-0.0153842680156231,-0.0129572637379169,-0.999772429466248,-0.016968222334981,-0.0129306642338634,-0.999825537204742,-0.0149800172075629,0.0111554292961955,-0.999837875366211,-0.0141512118279934,0.0111432923004031,-0.999859392642975,-0.0125549146905541,0.0111146979033947,-0.999969184398651,-0.00763512868434191,0.00183083210140467,-0.999964952468872,-0.00763487117365003,0.00343537423759699,-0.999958574771881,-0.00762664899230003,0.00498795043677092,-0.999969303607941,0.00704622827470303,0.00343293813057244,-0.999952673912048,0.00704673770815134,0.00671045109629631,-0.999962985515594,0.00704199355095625,0.00494838831946254,-0.999898016452789,0.0142490640282631,-0.00106008630245924,-0.999892354011536,0.0141602605581284,0.00384485116228461,-0.999875783920288,0.0142609532922506,-0.00672606332227588,-0.999992728233337,0.000863741559442133,0.00371757568791509,-0.999999046325684,0.000828109274152666,-0.00108889734838158,-0.99995094537735,0.000804612354841083,0.00987498369067907,-0.999288380146027,0.0309866275638342,-0.0215078759938478,-0.999498426914215,0.0312782563269138,-0.00497553730383515,-0.998749315738678,0.0316745191812515,-0.038685392588377,-0.998317837715149,0.0536859557032585,-0.0218938197940588,-0.997864246368408,0.0528339296579361,-0.0384132117033005,-0.996982634067535,0.0530303679406643,-0.0566886253654957,-0.994645357131958,0.0998748615384102,0.0265628658235073,-0.994406461715698,0.0997190400958061,0.0348121449351311,-0.994082152843475,0.0993259474635124,0.0439896285533905,-0.994233846664429,0.101403266191483,0.0348781906068325,-0.994446098804474,0.101825766265392,0.0266178958117962,-0.994586765766144,0.102037034928799,0.0196361802518368,0.0032568546012044,0.991097450256348,-0.133098646998405,0.01228660158813,0.991029381752014,-0.133078053593636,
- 0.00228111445903778,0.991098403930664,-0.133111849427223,0.00326433195732534,0.990281403064728,-0.139039814472198,0.00229558954015374,0.990285456180573,-0.139030486345291,-0.00702846515923738,0.990260481834412,-0.139049723744392,-0.999776005744934,-0.0108627453446388,-0.0181651879101992,-0.999334275722504,-0.0323524884879589,-0.0168674979358912,-0.999751567840576,0.0132133783772588,-0.0179498326033354,-0.99946802854538,-0.0320899933576584,-0.00582379149273038,-0.99992847442627,-0.0109814144670963,-0.00476100854575634,-0.998250663280487,-0.0588988363742828,-0.00517383078113198,-0.0401270128786564,-0.998938679695129,0.0226167608052492,0.00749218696728349,-0.999681174755096,0.024113466963172,0.00209857593290508,-0.999706387519836,0.0241397880017757,0.0527516901493073,-0.998328268527985,0.0236213337630033,0.00218013720586896,-0.999758958816528,0.0218508709222078,0.00755008822306991,-0.999723970890045,0.0222488455474377,-0.99658864736557,0.0268129128962755,-0.0780519619584084,-0.99677586555481,0.0172458682209253,-0.0783612132072449,-0.996082663536072,0.041311826556921,-0.0781838223338127,-0.997326254844666,0.0172079689800739,-0.0710240826010704,-0.997092425823212,0.0268920715898275,-0.0713000446557999,-0.997448742389679,0.00653043854981661,-0.0710886344313622,-0.999314188957214,-0.0294171888381243,0.0224887076765299,-0.999542832374573,-0.0297439359128475,0.00542842457070947,-0.998682141304016,-0.0302735399454832,0.0414449349045753,-0.998600602149963,-0.0477040708065033,0.0228279549628496,-0.998059332370758,-0.0467065051198006,0.0411859713494778,-0.997120261192322,-0.0469588898122311,0.0595487132668495,-0.99502021074295,-0.0956879034638405,-0.0279043130576611,-0.994718730449677,-0.0955089554190636,-0.0375856049358845,-0.994345664978027,-0.0950558632612228,-0.0473423488438129,-0.994443118572235,-0.0982917621731758,-0.0377043150365353,-0.99470990896225,-0.098835214972496,-0.0279959328472614,-0.994871199131012,-0.0990723073482513,-0.0203958712518215,0.00358470273204148,-0.990226745605469,0.13942064344883,0.0124611528590322,-0.990157127380371,0.139405190944672,
- 0.00180837349034846,-0.990228295326233,0.139443963766098,0.00358869088813663,-0.989305078983307,0.145817011594772,0.0018254955066368,-0.989312410354614,0.145800098776817,-0.0073568569496274,-0.989283680915833,0.145820558071136,-0.999523341655731,0.0306781735271215,0.00345968850888312,-0.999928891658783,0.0116469087079167,0.00255986605770886,-0.998399317264557,0.056483443826437,0.00290791015140712,-0.999752223491669,0.0115159004926682,0.0190541353076696,-0.999358654022217,0.0309823285788298,0.0179562848061323,-0.999746203422546,-0.0123190945014358,0.0188624076545238,0.0120095396414399,0.999580323696136,-0.0263623371720314,0.0071194339543581,0.999628782272339,-0.0263025779277086,0.0335218235850334,0.999069273471832,-0.0271457638591528,0.00713957194238901,0.999644756317139,-0.0256824437528849,0.0120238224044442,0.999590218067169,-0.0259764809161425,-0.0180687513202429,0.999527633190155,-0.0248606093227863,-0.997203588485718,-0.0168685503304005,0.0728042721748352,-0.997002899646759,-0.0255488399416208,0.073025144636631,-0.997320473194122,-0.00648301793262362,0.0728701949119568,-0.996651649475098,-0.0255050119012594,0.0776850804686546,-0.996813952922821,-0.0168967694044113,0.0779516473412514,-0.996192693710327,-0.0393765792250633,0.0777807310223579,0.999548435211182,-0.029612809419632,-0.00511940568685532,0.999622762203217,-0.0269835349172354,-0.00511988019570708,0.999729454517365,-0.0226794015616179,-0.00518090929836035,0.999590516090393,-0.026983430609107,-0.00952619034796953,0.999759554862976,-0.0197490490972996,-0.00952719803899527,0.999696791172028,-0.0227169040590525,-0.00950096920132637,0.997822701931,-0.0524829179048538,-0.0399429388344288,0.997742176055908,-0.0522264018654823,-0.0422264374792576,0.997562229633331,-0.0524429716169834,-0.0460359677672386,0.997586190700531,-0.051989022642374,-0.0460340157151222,0.997742176055908,-0.0522264018654823,-0.0422264374792576,0.9974724650383,-0.0519726201891899,-0.0484518595039845,0.999606847763062,-0.0129443453624845,0.0248730592429638,0.999573945999146,-0.0154622513800859,0.0247553419321775,
- 0.999508440494537,-0.0174609646201134,0.0260419752448797,0.999606847763062,-0.0129443453624845,0.0248730592429638,0.999655604362488,-0.0115498676896095,0.0235637556761503,0.999573945999146,-0.0154622513800859,0.0247553419321775,0.0135647188872099,0.999907672405243,-0.000828994903713465,0.0147061562165618,0.999891519546509,-0.000831118377391249,0.0244523882865906,0.999700546264648,-0.000950102112255991,0.0146441124379635,0.999875426292419,-0.00589244207367301,0.0135084297508001,0.999891638755798,-0.00586816063150764,0.00396518455818295,0.999975562095642,-0.00576170673593879,-0.0176617503166199,-0.999772965908051,0.0119287585839629,-0.0175805911421776,-0.999706268310547,0.0166846383363009,-0.010284511372447,-0.999877452850342,0.011801440268755,-0.0175805911421776,-0.999706268310547,0.0166846383363009,-0.017495222389698,-0.999617159366608,0.0214400812983513,-0.0248177200555801,-0.999459385871887,0.0215655732899904,0.999576568603516,-0.0289806146174669,0.00260591320693493,0.999400079250336,-0.0294164270162582,0.0182849410921335,0.999200344085693,-0.0291683040559292,0.0273468606173992,0.999476969242096,-0.0267225261777639,0.0182128865271807,0.999620199203491,-0.0274368822574615,0.00261830119416118,0.99960857629776,-0.0273689944297075,-0.00580380111932755,0.998679876327515,-0.046361681073904,-0.0221167914569378,0.998122811317444,-0.0453083999454975,-0.041207455098629,0.997214078903198,-0.0455800704658031,-0.0590489394962788,0.99935644865036,-0.0285101123154163,-0.0217688009142876,0.999570310115814,-0.028841856867075,-0.0052294060587883,0.998705983161926,-0.0294272489845753,-0.0414801128208637,0.995372593402863,-0.0922296643257141,0.0269654914736748,0.995059609413147,-0.0920568034052849,0.0371743105351925,0.994692981243134,-0.0916084125638008,0.046838290989399,0.994732081890106,-0.0954736471176147,0.0373204499483109,0.995008528232574,-0.096048541367054,0.0270725004374981,0.995162010192871,-0.0962725132703781,0.0195993892848492,-0.00376440491527319,-0.98952305316925,-0.144325762987137,-0.0130174979567528,-0.989447176456451,-0.144308775663376,
- -0.00191559246741235,-0.989524662494659,-0.144351288676262,-0.00376585451886058,-0.989186942577362,-0.146611973643303,-0.00192189402878284,-0.989194989204407,-0.146593302488327,0.00773006537929177,-0.989163339138031,-0.146615713834763,0.999771118164063,0.0109146255999804,-0.0184015557169914,0.9993656873703,0.0311569161713123,-0.0172479785978794,0.999763369560242,-0.0119177373126149,-0.018198162317276,0.999504506587982,0.0309080630540848,-0.00597075931727886,0.999926626682281,0.0110327312722802,-0.00502294255420566,0.998422741889954,0.0558816343545914,-0.00540812406688929,-0.00784884672611952,0.99961644411087,0.026558842509985,-0.0131964050233364,0.999551117420197,0.0268960725516081,0.0197061207145453,0.999476671218872,0.025653125718236,-0.0131703019142151,0.999532639980316,0.027588015422225,-0.00781700015068054,0.999590396881104,0.0275314897298813,-0.0366695784032345,0.998922169208527,0.0284580253064632,0.996743321418762,-0.0250307582318783,-0.0766565501689911,0.996905565261841,-0.0161480735987425,-0.0769318267703056,0.996317565441132,-0.0382154509425163,-0.0767523720860481,0.99735701084137,-0.0161108337342739,-0.0708482563495636,0.997155547142029,-0.025084737688303,-0.0710747465491295,0.997462451457977,-0.00630266405642033,-0.0709162652492523,0.998683631420136,0.046302318572998,0.0220707356929779,0.998128771781921,0.0452506132423878,0.0411283448338509,0.997223377227783,0.045519296079874,0.0589384213089943,0.999357342720032,0.0285136103630066,0.0217225290834904,0.999570369720459,0.0288459956645966,0.00521594099700451,0.998709380626678,0.0294250901788473,0.0413977205753326,0.995347321033478,0.0925114154815674,-0.0269357189536095,0.995032131671906,0.0923408046364784,-0.0372054651379585,0.994663119316101,0.0918916612863541,-0.0469189286231995,0.994726061820984,0.0955287888646126,-0.0373412743210793,0.995003879070282,0.0961058735847473,-0.0270355008542538,0.995158135890961,0.0963292047381401,-0.0195196904242039,-0.0037258337251842,0.989492356777191,0.144537910819054,-0.0129443304613233,0.989417135715485,0.144521221518517,
- -0.00188345112837851,0.989493787288666,0.144563212990761,-0.00372716994024813,0.989172518253326,0.146710023283958,-0.0018893793458119,0.989180505275726,0.146691456437111,0.00772455940023065,0.98914897441864,0.146713539958,0.999510705471039,-0.0307217668741941,0.00587398419156671,0.999928057193756,-0.0109337558969855,0.00493708113208413,0.998439371585846,-0.0555933229625225,0.00531239062547684,0.999772489070892,-0.0108175734058023,0.018384825438261,0.999371588230133,-0.0309731755405664,0.0172380525618792,0.999763548374176,0.0119200209155679,0.0181865505874157,-0.013027012348175,-0.999525249004364,-0.0279205180704594,-0.00766177149489522,-0.999582469463348,-0.0278635788708925,-0.0365479029715061,-0.998917043209076,-0.0287932213395834,-0.00770410243421793,-0.999617278575897,-0.0265733599662781,-0.0130651528015733,-0.999552428722382,-0.0269118677824736,0.0198622345924377,-0.99947327375412,-0.0256651565432549,0.997353732585907,0.0161379333585501,0.0708897411823273,0.997152924537659,0.0250740367919207,0.0711152106523514,0.99745911359787,0.00636784639209509,0.0709562823176384,0.996751844882965,0.02502116933465,0.0765490233898163,0.99691367149353,0.0161735024303198,0.0768212601542473,0.996328115463257,0.0381544306874275,0.0766452923417091,0.999938249588013,0.00394160114228725,0.010391385294497,0.999940454959869,0.00332139199599624,0.0103966444730759,0.999942719936371,0.00252591469325125,0.0104016484692693,0.99996030330658,0.00392442429438233,0.00801268685609102,0.999956846237183,0.00471199816092849,0.00800696760416031,0.999962508678436,0.00330647733062506,0.0080158244818449,-0.000609179609455168,-0.99999988079071,-0.000269939220743254,-0.00076577061554417,-0.999999761581421,-0.000269765558186919,-0.00134540244471282,-0.999999165534973,-0.000269476498942822,-0.000766748853493482,-0.999997198581696,-0.0022340549621731,-0.000610412971582264,-0.999997317790985,-0.00223405309952796,4.39609812019626e-006,-0.999997496604919,-0.00223443936556578,-0.0231702458113432,0.999604880809784,-0.0159125253558159,-0.0302723534405231,0.99941474199295,-0.0159302558749914,
- -0.0216032229363918,0.999580979347229,-0.0192656628787518,-0.0231501180678606,0.999475955963135,-0.0226242691278458,-0.0216032229363918,0.999580979347229,-0.0192656628787518,-0.014655296690762,0.999637246131897,-0.0226017683744431,0.999889731407166,-0.0111649846658111,-0.00979170296341181,0.999890089035034,-0.0111345937475562,-0.00979128200560808,0.999890506267548,-0.0110961077734828,-0.00979074463248253,0.999873518943787,-0.0114257093518972,0.0110721495002508,0.999873101711273,-0.011455113068223,0.0110717369243503,0.99987268447876,-0.0114932050928473,0.0110712060704827,0.999981701374054,0.00604784255847335,-3.58903453161474e-005,0.999981343746185,0.00605561072006822,-0.000833608966786414,0.99998152256012,0.00604319386184216,0.000636307056993246,0.999976217746735,-0.0067182807251811,-0.00156664149835706,0.999977052211761,-0.00672356085851789,-0.000941497972235084,0.999977469444275,-0.00672826077789068,-0.000124215599498712,0.999897301197052,0.0142898075282574,0.00108351174276322,0.999969601631165,0.00768000027164817,0.00140956998802722,0.999897658824921,0.0142879132181406,0.000850450072903186,0.999998092651367,0.00106967659667134,0.00169708672910929,0.999969601631165,0.00768000027164817,0.00140956998802722,0.99999874830246,0.00106556306127459,0.00119115540292114,0.998783648014069,-0.0457081198692322,-0.0184983070939779,0.998072564601898,-0.0447380207479,-0.0430103242397308,0.997062683105469,-0.04567751288414,-0.0614784620702267,0.999459803104401,-0.027152618393302,-0.0185158867388964,0.999631524085999,-0.0271430760622025,-0.000188090911251493,0.998606562614441,-0.0294058825820684,-0.0438205860555172,0.996058166027069,-0.0841501727700233,0.0280509237200022,0.995723903179169,-0.0835709497332573,0.0393674895167351,0.995380640029907,-0.0827932506799698,0.048607163131237,0.995358288288116,-0.08767019957304,0.0396989770233631,0.995651721954346,-0.0887394994497299,0.0283405818045139,0.995786309242249,-0.0891952440142632,0.0213076695799828,-0.00420024991035461,-0.994584739208221,-0.103844061493874,-0.0145670464262366,-0.994488716125488,-0.103826828300953,
- -0.00213543511927128,-0.994588017463684,-0.103875726461411,-0.00420352816581726,-0.994074702262878,-0.108618848025799,-0.00215005059726536,-0.994083762168884,-0.108594983816147,0.00871767848730087,-0.994044661521912,-0.108624316751957,0.999824047088623,0.00850314181298018,-0.0167199857532978,0.999406516551971,0.0303684379905462,-0.0162603948265314,0.999803960323334,-0.0120273288339376,-0.0157267712056637,0.9994997382164,0.0304664857685566,-0.00848926231265068,0.999937474727631,0.00898968428373337,-0.00664946902543306,0.998558938503265,0.0529462955892086,-0.00876258220523596,-0.02407849393785,0.999628961086273,-0.0127415033057332,-0.0284579861909151,0.999516606330872,-0.0125169800594449,-0.00233788415789604,0.999908268451691,-0.0133407404646277,-0.0284697785973549,0.99951159954071,-0.0128930509090424,-0.0240840893238783,0.999626100063324,-0.0129458643496037,-0.0459156893193722,0.998869121074677,-0.012337694875896,0.997354209423065,-0.0212561804801226,-0.0695194974541664,0.997453629970551,-0.0141319017857313,-0.0699034258723259,0.997141718864441,-0.0300885364413261,-0.0693040415644646,0.997767567634583,-0.0139654241502285,-0.0653058663010597,0.997646510601044,-0.0211583934724331,-0.0652206763625145,0.997821450233459,-0.00751746213063598,-0.065543070435524,-0.999584555625916,-0.00421579135581851,-0.0285156033933163,-0.999591886997223,-0.00171604531351477,-0.0285159163177013,-0.999591827392578,0.00250945286825299,-0.0284577533602715,-0.999709129333496,0.00247087352909148,-0.0239915736019611,-0.999711394309998,-0.00171583611518145,-0.0239668674767017,-0.99969881772995,0.00529552903026342,-0.0239669159054756,-0.999614953994751,-0.0265048835426569,0.00822421442717314,-0.999544143676758,-0.0265179164707661,0.0144391963258386,-0.999575138092041,-0.0265313033014536,0.0120696714147925,-0.999602615833282,-0.0269632060080767,0.00822311360388994,-0.999564588069916,-0.0269245710223913,0.012071754783392,-0.999618649482727,-0.0269582644104958,0.00598692009225488,0.0104118585586548,0.999925673007965,0.00634600734338164,0.0115682678297162,0.999912858009338,0.00635993294417858,
- 0.0212694834917784,0.999752163887024,0.00657763332128525,0.0116841001436114,0.99993109703064,0.00121454836335033,0.0105224857106805,0.999943971633911,0.00117749604396522,0.000614376680459827,0.999999344348907,0.000965733721386641,-0.0108150467276573,-0.999704122543335,-0.0217928215861321,-0.0120863821357489,-0.999689280986786,-0.0218007620424032,0.000674855837132782,-0.999767482280731,-0.0215540658682585,-0.0122673436999321,-0.999846935272217,-0.0124750109389424,-0.0110100833699107,-0.99986207485199,-0.0124363731592894,-0.0210364125669003,-0.999698758125305,-0.012642833404243,-0.999450027942657,-0.00375756504945457,-0.0329477414488792,-0.999572515487671,-0.00366267235949636,-0.0290063619613647,-0.999499559402466,-0.00372894620522857,-0.0314127951860428,-0.999610304832459,-0.00200574472546577,-0.0278422851115465,-0.999503374099731,-0.00207291240803897,-0.0314437933266163,-0.999576032161713,-0.00203472538851202,-0.0290456674993038,-0.999625444412231,0.0228687282651663,-0.0150343384593725,-0.999566853046417,0.0253217592835426,-0.0150044495239854,-0.99944007396698,0.0299570877104998,-0.0149051491171122,-0.999625265598297,0.0252296943217516,-0.0106312753632665,-0.99968296289444,0.0227912701666355,-0.0106998225674033,-0.99978631734848,0.0176363922655582,-0.0107933431863785,-0.0138054676353931,-0.999902307987213,0.00219369633123279,-0.0160140935331583,-0.999869406223297,0.00218235119245946,-0.0251603461802006,-0.999680936336517,0.00222304766066372,-0.00548100983723998,-0.999983489513397,0.00171870493795723,-0.016015961766243,-0.999870181083679,0.00176579435355961,-0.0138066587969661,-0.99990326166153,0.0017404017271474,0.0423970706760883,0.998979151248932,0.0155936246737838,0.0305915530771017,0.999417006969452,0.0151581168174744,0.096978671848774,0.995179891586304,0.0145639628171921,0.0425589047372341,0.998785495758057,0.0248240381479263,-0.0203441362828016,0.999456703662872,0.0259318146854639,0.0306725725531578,0.999203264713287,0.0255349483340979,-0.999862790107727,0.0105224642902613,-0.0128008872270584,-0.999871253967285,0.00970671232789755,-0.0127843534573913,
- -0.999885857105255,0.00809638760983944,-0.0127572091296315,-0.999886810779572,0.0101099340245128,0.0111433444544673,-0.99987804889679,0.0109531041234732,0.0111309755593538,-0.999859392642975,0.0125761609524488,0.0111017664894462,-0.999845325946808,0.0174942184239626,0.00182191981002688,-0.999840974807739,0.0174941420555115,0.00345940631814301,-0.99983412027359,0.0175023153424263,0.00504446169361472,-0.999481678009033,0.0320058315992355,0.0034590435680002,-0.999464511871338,0.0320054478943348,0.00680462317541242,-0.999475300312042,0.0320010334253311,0.00500661041587591,-0.999225914478302,0.0393238291144371,-0.00111996405757964,-0.999461770057678,0.0325824022293091,0.00382589502260089,-0.999202191829681,0.0393351055681705,-0.00691210152581334,-0.999461770057678,0.0325824022293091,0.00382589502260089,-0.999664127826691,0.0258943568915129,-0.00114817044232041,-0.999614775180817,0.0258696377277374,0.0100534930825233,0.998812854290009,0.0451955832540989,0.0181724485009909,0.998102366924286,0.0442102327942848,0.0428621731698513,0.997116446495056,0.0451403670012951,0.0610009096562862,0.999475240707397,0.0268103983253241,0.0181786175817251,0.999640464782715,0.0268118064850569,0.000194777298020199,0.998622715473175,0.0290831234306097,0.0436672046780586,0.995790243148804,0.0873289555311203,-0.0278471503406763,0.995445609092712,0.0867432877421379,-0.0395452938973904,0.995099782943726,0.085961677134037,-0.0488565713167191,0.995452582836151,0.086665116250515,-0.0395389944314957,0.995751440525055,0.0877619683742523,-0.0278740543872118,0.995883822441101,0.0882105529308319,-0.0208454523235559,-0.00420072395354509,0.994604349136353,0.103656940162182,-0.0146759953349829,0.994506657123566,0.103639669716358,-0.00211528246290982,0.994607508182526,0.103689163923264,-0.0042040329426527,0.994072616100311,0.108636863529682,-0.0021305326372385,0.994081914424896,0.108612433075905,0.00885697547346354,0.994041502475739,0.108642026782036,0.999511539936066,-0.0302271973341703,0.00794932805001736,0.999943912029266,-0.00865258276462555,0.00610849680379033,
- 0.998603343963623,-0.0521928519010544,0.00820456631481647,0.999830365180969,-0.00814912002533674,0.01651855930686,0.999417066574097,-0.0301294680684805,0.0160543527454138,0.999808609485626,0.0118736885488033,0.0155489146709442,-0.0289058554917574,-0.999512434005737,0.0118052754551172,-0.0243457462638617,-0.999633371829987,0.0118587519973516,-0.0470118150115013,-0.998831331729889,0.0112207904458046,-0.0243609249591827,-0.999626219272614,0.0124069191515446,-0.0289173945784569,-0.99950784444809,0.0121680125594139,-0.00181899813469499,-0.999913394451141,0.0130348838865757,0.997814297676086,0.0138072799891233,0.0646219998598099,0.997693777084351,0.0210305228829384,0.0645356401801109,0.997866332530975,0.00754084810614586,0.0648533031344414,0.997396886348724,0.0211304482072592,0.0689430311322212,0.997496008872986,0.013978292234242,0.0693275704979897,0.997191846370697,0.029736215248704,0.0687340274453163,-0.999869585037231,-0.00196748459711671,0.0160363260656595,-0.999921679496765,-0.00307873799465597,0.0121370209380984,-0.999856889247894,-0.00546499481424689,0.0160106960684061,-0.999964118003845,-0.00191086751874536,0.00825561303645372,-0.999965786933899,0.000236863692407496,0.00827127043157816,-0.999921679496765,-0.00307873799465597,0.0121370209380984,0.00759135605767369,0.999970555305481,-0.00114103383384645,0.00819027703255415,0.999965310096741,-0.00154301687143743,0.0151406163349748,0.999884843826294,-0.00111729046329856,0.00819027703255415,0.999965310096741,-0.00154301687143743,0.00759387947618961,0.999969363212585,-0.00194803043268621,-2.95100708171958e-005,0.999998152256012,-0.00197190488688648,0.0233581624925137,-0.999638557434082,-0.0133100263774395,0.0818078517913818,-0.996559619903564,-0.0132821286097169,0.0255555342882872,-0.99958336353302,-0.0134237464517355,0.0233536865562201,-0.999403417110443,-0.0254440605640411,0.0255750510841608,-0.999352037906647,-0.0253299083560705,-0.0315097756683826,-0.999180376529694,-0.0254104025661945,-0.99982625246048,0.0150596220046282,-0.0109851406887174,-0.999898672103882,0.0142196919769049,0.000743377779144794,
- -0.99986869096756,0.0119753368198872,-0.0109270680695772,-0.999898672103882,0.0142196919769049,0.000743377779144794,-0.999802589416504,0.0154997557401657,0.0124302776530385,-0.999769985675812,0.0175040941685438,0.0123925460502505,-0.999954998493195,0.00873200874775648,-0.00370949902571738,-0.999961197376251,0.00876777991652489,-0.000868517265189439,-0.999960839748383,0.0087791820988059,0.00110876653343439,-0.999960124492645,-0.00890739634633064,-0.000646188738755882,-0.999950528144836,-0.00884183496236801,0.00455638999119401,-0.999959826469421,-0.00887387897819281,0.00128122267778963,-0.999837279319763,-0.00170602684374899,-0.0179584138095379,-0.999998092651367,-0.00179919484071434,-0.000887140398845077,-0.999973237514496,-0.00166557519696653,-0.0071231834590435,-0.999887943267822,-0.0111219203099608,0.0100219836458564,-0.999912321567535,-0.0111875841394067,-0.00708711706101894,-0.999938368797302,-0.0110629443079233,-0.000937501492444426,0.999847292900085,-0.01653210259974,-0.00566648039966822,0.999835968017578,-0.0162949189543724,-0.0079170037060976,0.999857306480408,-0.0159103013575077,-0.00567735033109784,0.999835968017578,-0.0162949189543724,-0.0079170037060976,0.999825358390808,-0.0156766027212143,-0.0101739084348083,0.999820470809937,-0.0159882232546806,-0.0101684620603919,0.99761426448822,-0.0609823055565357,-0.0323585905134678,0.997236251831055,-0.0611370839178562,-0.0422148406505585,0.996929228305817,-0.0610882639884949,-0.0489937998354435,0.99761426448822,-0.0609823055565357,-0.0323585905134678,0.997847616672516,-0.0605948194861412,-0.0250721108168364,0.997276306152344,-0.0604838952422142,-0.0422119498252869,0.999229431152344,-0.0243544224649668,0.0307830926030874,0.999394476413727,-0.0155898183584213,0.031109781935811,0.999588489532471,-0.0035250682849437,0.0284681767225266,0.999588489532471,-0.0035250682849437,0.0284681767225266,0.999577105045319,-0.0153542533516884,0.0246951337903738,0.999648690223694,0.00714219268411398,0.0255241263657808,-0.0258240289986134,0.999657154083252,-0.00432647112756968,-0.0258787572383881,0.999664545059204,-0.00106282997876406,
- -0.0261821784079075,0.999656617641449,-0.00106257176958025,-0.0258835703134537,0.999636173248291,-0.00758996419608593,-0.0258240289986134,0.999657154083252,-0.00432647112756968,-0.02555319853127,0.999644637107849,-0.00759024452418089,0.0194301474839449,-0.999746382236481,0.0113939577713609,0.021753391250968,-0.999627470970154,0.0164863672107458,0.0454525575041771,-0.998901426792145,0.0114030418917537,0.021753391250968,-0.999627470970154,0.0164863672107458,0.0194218140095472,-0.999578654766083,0.0215751901268959,-0.00177792808972299,-0.999765992164612,0.0215597748756409,0.999890744686127,-0.014769465662539,0.00074941071216017,0.999749839305878,-0.0152370575815439,0.0163790751248598,0.9995476603508,-0.0150143187493086,0.0260629244148731,0.999431371688843,-0.0292946863919497,0.0166962463408709,0.999551057815552,-0.02995540574193,0.000599376915488392,0.999517440795898,-0.0298639573156834,-0.00854821130633354,0.998195588588715,0.0550342500209808,0.0240205470472574,0.997734010219574,0.0548407882452011,0.0389791429042816,0.996667385101318,0.0557785369455814,0.0595222264528275,0.999102532863617,0.0345583744347095,0.0244925990700722,0.999403834342957,0.0341292470693588,0.00521747721359134,0.998564064502716,0.0357516631484032,0.0398955121636391,0.993108451366425,0.11130565404892,-0.0366967581212521,0.992855608463287,0.110839635133743,-0.0441874042153358,0.992445647716522,0.109978169202805,-0.0543734133243561,0.99306583404541,0.108999527990818,-0.0440402515232563,0.993291735649109,0.109696216881275,-0.03658277541399,0.993491530418396,0.110294595360756,-0.0284552630037069,-0.00291292043402791,0.994128048419952,0.108171105384827,-0.0101646166294813,0.994081377983093,0.108162358403206,-0.00145326589699835,0.994129538536072,0.108186848461628,-0.00291376421228051,0.99394416809082,0.109847776591778,-0.00145691190846264,0.993948638439178,0.10983631759882,0.00597900757566094,0.993930101394653,0.109850704669952,0.999484360218048,-0.031084755435586,0.00805963948369026,0.999862611293793,-0.015178918838501,0.00667868135496974,0.99801117181778,-0.0624275170266628,0.00875974167138338,
- 0.999642133712769,-0.0144766047596931,0.0224952530115843,0.999279499053955,-0.0307601224631071,0.0222322959452868,0.999662458896637,0.0150445662438869,0.0211812499910593,-0.00616259267553687,-0.99992972612381,0.0101290307939053,-0.0032713757827878,-0.999942779541016,0.0101850228384137,-0.0191042460501194,-0.99977058172226,0.00968485604971647,-0.00325680570676923,-0.999947428703308,0.00972208008170128,-0.00614388147369027,-0.999935328960419,0.00958190951496363,0.011947937309742,-0.999876618385315,0.0102000283077359,0.996462225914001,0.0234553590416908,0.0807026699185371,0.996274590492249,0.0306151658296585,0.0806205198168755,0.996641457080841,0.0101069137454033,0.0812640115618706,0.995910823345184,0.0307443868368864,0.0849493071436882,0.996062397956848,0.0236492864787579,0.0854436159133911,0.995276808738709,0.0479998961091042,0.0843805968761444,0.999504566192627,-0.0128707541152835,-0.0287225656211376,0.999483466148376,-0.0144425239413977,-0.0287128575146198,0.999444723129272,-0.0169688183814287,-0.028676375746727,0.999542832374573,-0.0169293694198132,-0.0250503960996866,0.99958199262619,-0.0144212590530515,-0.0250570140779018,0.99951171875,-0.0187088698148727,-0.0250301975756884,0.999844193458557,0.0150468349456787,0.00923066958785057,0.999807059764862,0.0150114959105849,0.0126701816916466,0.999861121177673,0.0150452768430114,0.00718096876516938,0.999715447425842,0.0201963428407907,0.0127011500298977,0.999753832817078,0.0201792232692242,0.00922600645571947,0.999686360359192,0.0201830882579088,0.0148332146927714,-0.0173521991819143,-0.999820530414581,0.00760181481018662,-0.0191405471414328,-0.999806880950928,0.00445365952327847,-0.0292412303388119,-0.999541461467743,0.00786185171455145,-0.0191405471414328,-0.999806880950928,0.00445365952327847,-0.0174923557788134,-0.999846339225769,0.00122682377696037,-0.00685864221304655,-0.999975979328156,0.000993734924122691,0.0171302407979965,0.999609768390656,-0.0220693275332451,0.0182260349392891,0.999590218067169,-0.0220771916210651,0.00551683781668544,0.999746680259705,-0.0218200497329235,
- 0.0184100605547428,0.999745190143585,-0.0130629781633615,0.0173258800059557,0.99976509809494,-0.0130289187654853,0.0272995475679636,0.999539613723755,-0.0132410917431116,0.999571561813354,-0.00311922351829708,-0.0291033145040274,0.999489068984985,-0.00304139056243002,-0.0318207256495953,0.999433994293213,-0.00300967390649021,-0.033506128937006,0.999415397644043,-0.0120672024786472,-0.0319882035255432,0.999496698379517,-0.0121089164167643,-0.0293247457593679,0.999535501003265,-0.0121430167928338,-0.0279532056301832,-0.995673477649689,0.0879718288779259,0.0299213360995054,-0.996000051498413,0.0886213630437851,0.0114091532304883,-0.996094346046448,0.0881547331809998,-0.00498016737401485,-0.997653543949127,0.067402608692646,0.012020954862237,-0.99720561504364,0.0684913173317909,0.0298344008624554,-0.99650651216507,0.0683569610118866,0.0479806065559387,-0.999145567417145,0.0211289282888174,-0.0355210900306702,-0.998786389827728,0.0211682841181755,-0.0444705821573734,-0.998328685760498,0.0214374400675297,-0.0536684542894363,-0.998812615871429,0.0198004059493542,-0.0445119179785252,-0.999178647994995,0.0194506254047155,-0.0355511233210564,-0.999404668807983,0.0193303171545267,-0.0285779926925898,-0.115026146173477,-0.982778370380402,0.144622430205345,-0.105871327221394,-0.983794689178467,0.144704774022102,-0.116364941000938,-0.982620239257813,0.144625931978226,-0.114974930882454,-0.981775164604187,0.151321828365326,-0.116303317248821,-0.981622993946075,0.151293829083443,-0.125763386487961,-0.980469048023224,0.151208519935608,-0.988818347454071,0.149027809500694,-0.00538824265822768,-0.991680860519409,0.12857249379158,-0.00618332391604781,-0.984645128250122,0.174455687403679,-0.00626254174858332,-0.9916672706604,0.128596603870392,0.0076765906997025,-0.988754630088806,0.149417504668236,0.00622406601905823,-0.994371056556702,0.105672463774681,0.00771725922822952,0.172686815261841,0.984393537044525,-0.033891674131155,0.119650267064571,0.9922816157341,-0.032573539763689,0.126898899674416,0.991365253925323,-0.0330392345786095,
- 0.0765919908881187,0.996469557285309,-0.0343817584216595,0.12684378027916,0.991290986537933,-0.0353953540325165,0.119563840329647,0.992191135883331,-0.0355143956840038,-0.992882609367371,0.102485135197639,0.0606721229851246,-0.993771851062775,0.0932401344180107,0.0610231086611748,-0.991806983947754,0.112444303929806,0.0606248378753662,-0.993475496768951,0.093304418027401,0.0655801817774773,-0.992559254169464,0.102474458515644,0.0657653138041496,-0.994648337364197,0.0796148777008057,0.0658493638038635,0.998554110527039,-0.049876794219017,-0.0200505349785089,0.99808406829834,-0.0489369742572308,-0.0378591567277908,0.997289478778839,-0.049160324037075,-0.0547446496784687,0.999384522438049,-0.0290603134781122,-0.0196546949446201,0.999559164047241,-0.0293579678982496,-0.00443161558359861,0.998826622962952,-0.0298344437032938,-0.0381483249366283,0.994944214820862,-0.0974114760756493,0.0244340691715479,0.994691371917725,-0.0972671434283257,0.0335891209542751,0.994390070438385,-0.0968965068459511,0.0424201190471649,0.99487841129303,-0.0953616350889206,0.0335155390202999,0.995099723339081,-0.0958212465047836,0.0243933368474245,0.995221674442291,-0.0960015207529068,0.0178209561854601,-0.00352553837001324,-0.990810990333557,-0.13520772755146,-0.0135593265295029,-0.990728080272675,-0.135181501507759,-0.00261293770745397,-0.990811944007874,-0.135221526026726,-0.00353030045516789,-0.99036717414856,-0.138421013951302,-0.00262125604785979,-0.990371406078339,-0.138411119580269,0.00784643646329641,-0.99034059047699,-0.138434082269669,0.999909520149231,0.0091445054858923,-0.00987230334430933,0.999359786510468,0.0323826260864735,-0.0152113707736135,0.999787569046021,-0.0124044474214315,-0.0164617337286472,0.999476552009583,0.0320754125714302,-0.00421556271612644,0.999909520149231,0.0091445054858923,-0.00987230334430933,0.99841171503067,0.056229941546917,-0.00353098893538117,0.0436471253633499,0.998754024505615,0.0241940505802631,-0.00968714617192745,0.999615907669067,0.0259657818824053,-0.00426781363785267,0.999652564525604,0.0260113626718521,
- -0.0608822181820869,0.997806906700134,0.0259791854768991,-0.00434656394645572,0.999704718589783,0.0239080879837275,-0.00974024273455143,0.999656140804291,0.0243468638509512,0.997346103191376,-0.025642016902566,-0.0681412741541862,0.997535228729248,-0.0154004348441958,-0.0684565007686615,0.996926844120026,-0.038394633680582,-0.0682845413684845,0.997719049453735,-0.0153849311172962,-0.0657284706830978,0.997487664222717,-0.0256704464554787,-0.0660258755087852,0.997814238071442,-0.00624632416293025,-0.0657868608832359,0.999545156955719,-0.0297101698815823,-0.00519894994795322,0.999620318412781,-0.0270598754286766,-0.00519953202456236,0.999728560447693,-0.0226972308009863,-0.00526245729997754,0.99958872795105,-0.0270599368959665,-0.0094922436401248,0.999760031700134,-0.0197431147098541,-0.00949354749172926,0.999696731567383,-0.0227345004677773,-0.00946655869483948,0.997827529907227,-0.0524837337434292,-0.0398202687501907,0.997732996940613,-0.0524864196777344,-0.0421198531985283,0.997565865516663,-0.0524438880383968,-0.0459588207304478,0.997589468955994,-0.0519925057888031,-0.0459568984806538,0.997759938240051,-0.0519702173769474,-0.0421215631067753,0.99747508764267,-0.0519761368632317,-0.0483932755887508,0.999575138092041,-0.013053560629487,0.0260642301291227,0.999541997909546,-0.0155492760241032,0.0259611774235964,0.999513149261475,-0.01744688116014,0.0258665345609188,0.999638795852661,-0.0129414964467287,0.0235537122935057,0.999653518199921,-0.0116318007931113,0.0236125495284796,0.999606668949127,-0.0154237058013678,0.0234236996620893,0.0135196875780821,0.999908268451691,-0.000819214503280818,0.0146491471678019,0.999892473220825,-0.000821114925201982,0.0246385969221592,0.999695956707001,-0.000943778548389673,0.0145848356187344,0.999875426292419,-0.00603689486160874,0.013461260125041,0.999891340732574,-0.0060125021263957,0.0036788450088352,0.999975800514221,-0.00590259954333305,-0.0178143419325352,-0.999783754348755,0.0107373725622892,-0.0178434774279594,-0.999783158302307,0.0107376715168357,-0.0107195880264044,-0.999886214733124,0.0106145804747939,
- -0.0176572967320681,-0.999615907669067,0.0213608071208,-0.0176278632134199,-0.99961644411087,0.0213600993156433,-0.0247099976986647,-0.999463856220245,0.0214818958193064,0.999573349952698,-0.029096495360136,0.00255941366776824,0.999446988105774,-0.0277991406619549,0.0182499904185534,0.999195754528046,-0.0292813535779715,0.027395099401474,0.999446988105774,-0.0277991406619549,0.0182499904185534,0.999637961387634,-0.0267865490168333,0.0025776217225939,0.9996258020401,-0.0267197322100401,-0.00586130283772945,0.999426066875458,0.0265411455184221,0.0210493318736553,0.998934030532837,0.0256399624049664,0.038387268781662,0.998093545436859,0.02587347663939,0.0560344345867634,0.999775171279907,0.00481072021648288,0.0206520650535822,0.999975860118866,0.00510667217895389,0.00471584172919393,0.999236583709717,0.00556641444563866,0.0386690907180309,0.997120440006256,0.0714272931218147,-0.0254751592874527,0.996865391731262,0.0712820217013359,-0.0343262702226639,0.996537506580353,0.070901595056057,-0.0434278510510921,0.99673193693161,0.0730921924114227,-0.0343971326947212,0.996965348720551,0.073540560901165,-0.0255320258438587,0.997103452682495,0.0737357884645462,-0.0186528041958809,0.0215242877602577,0.991015672683716,0.13200256228447,0.0120128514245152,0.991179645061493,0.131980329751968,0.0225611943751574,0.99099063873291,0.132017269730568,0.0214917082339525,0.990070223808289,0.138921856880188,0.022520063444972,0.990048825740814,0.138911351561546,0.0323594771325588,0.989773035049438,0.138932213187218,0.998370409011841,-0.0568575151264668,0.00486766546964645,0.999374091625214,-0.0351716466248035,0.00378648191690445,0.996607184410095,-0.0821971595287323,0.00421112263575196,0.99923312664032,-0.0350419469177723,0.0174759421497583,0.998235881328583,-0.0571406558156013,0.0161260068416595,0.999774515628815,-0.0123632904142141,0.0172648839652538,-0.0813715234398842,-0.996363401412964,-0.0252754185348749,-0.0279274079948664,-0.999337017536163,-0.0233625546097755,-0.0337216518819332,-0.999147653579712,-0.0238085854798555,0.0167317669838667,-0.999578595161438,-0.0237214174121618,
- -0.0336727239191532,-0.999111831188202,-0.0253313239663839,-0.0278530865907669,-0.999290108680725,-0.0253681410104036,0.997579276561737,-0.00877563282847404,0.0689824670553207,0.997597873210907,0.00111592398025095,0.0692620873451233,0.997438907623291,-0.0186668504029512,0.0690449997782707,0.997300744056702,0.00107261561788619,0.073418527841568,0.99724006652832,-0.00874087400734425,0.0737280622124672,0.997183382511139,0.0146848196163774,0.0735517740249634,-0.996747076511383,0.0796451196074486,-0.01232451479882,-0.996822893619537,0.0796406492590904,0.00121863465756178,-0.996331930160522,0.0805447325110435,-0.0289012938737869,-0.994634389877319,0.102718435227871,-0.0123032676056027,-0.99435967206955,0.10223912447691,-0.0282143745571375,-0.993772923946381,0.102662518620491,-0.0433102175593376,-0.989504337310791,0.141860619187355,0.0275096707046032,-0.989272773265839,0.141603410243988,0.0358870252966881,-0.989009439945221,0.141155853867531,0.0439924150705338,-0.988725006580353,0.145332202315331,0.0360751524567604,-0.988918781280518,0.145857378840446,0.0276630558073521,-0.989031910896301,0.146103993058205,0.0216674860566854,0.0521306991577148,0.99365770816803,-0.099633015692234,0.0634574294090271,0.992995142936707,-0.0996685847640038,0.0525608062744141,0.993635535240173,-0.0996285155415535,0.0520902238786221,0.993203580379486,-0.104082964360714,0.0525177009403706,0.993180215358734,-0.10409115254879,0.0407026670873165,0.993740618228912,-0.104034043848515,-0.999017179012299,0.0430072508752346,-0.0107352156192064,-0.999832570552826,0.0156552512198687,-0.00948356930166483,-0.997964680194855,0.0629876554012299,-0.00995229370892048,-0.999871730804443,0.0157205183058977,-0.00309851765632629,-0.999090731143951,0.0426271222531796,-0.000922975188586861,-0.999970018863678,-0.00719395559281111,-0.00286576151847839,-0.0938091278076172,-0.995584428310394,0.00339784333482385,-0.0407900623977184,-0.999155044555664,0.00503740319982171,-0.0394927151501179,-0.999207317829132,0.00501060672104359,0.0168015994131565,-0.999854922294617,0.00283392681740224,
- -0.0393802411854267,-0.999223709106445,0.00117900955956429,-0.0406687520444393,-0.999172210693359,0.001070253434591,-0.995242178440094,0.079799085855484,-0.0559024810791016,-0.99613231420517,0.0671480745077133,-0.0566722564399242,-0.99417370557785,0.0922358110547066,-0.0557781234383583,-0.996231138706207,0.0670951753854752,-0.0549709275364876,-0.99528831243515,0.0797948390245438,-0.0550815314054489,-0.996768236160278,0.0582897551357746,-0.0552759505808353,-0.990857243537903,-0.0284899361431599,0.131872236728668,-0.992933511734009,-0.028835978358984,0.115115381777287,-0.98797607421875,-0.0294438097625971,0.151777252554893,-0.990164637565613,-0.0459509044885635,0.132145717740059,-0.987447023391724,-0.0448540821671486,0.151448011398315,-0.984506964683533,-0.0451361797749996,0.169436618685722,-0.992313802242279,-0.0929495468735695,0.0816928222775459,-0.993131041526794,-0.0927577018737793,0.0713217034935951,-0.993830561637878,-0.0922823399305344,0.0615221373736858,-0.992893874645233,-0.0953700318932533,0.0711780413985252,-0.992035508155823,-0.0959781631827354,0.0815716758370399,-0.99135822057724,-0.0962196886539459,0.0891663283109665,0.0193660203367472,-0.989016532897949,0.146530836820602,0.0282662529498339,-0.988944351673126,0.14556810259819,0.0172535199671984,-0.989018142223358,0.146784454584122,0.0195301286876202,-0.988784730434418,0.148065343499184,0.0174160562455654,-0.988793611526489,0.148269608616829,0.00813726428896189,-0.9887615442276,0.149280220270157,-0.99278450012207,0.0300381891429424,0.116089157760143,-0.993271052837372,0.0112264873459935,0.115267343819141,-0.991779327392578,0.0551798343658447,0.115451902151108,-0.991634249687195,0.0111169461160898,0.128599986433983,-0.991374313831329,0.0302723105996847,0.127517700195313,-0.991649448871613,-0.0119170872494578,0.128410816192627,0.00937449932098389,0.999545335769653,-0.0286581963300705,0.00336928619071841,0.999603807926178,-0.0279479529708624,0.0316957235336304,0.998989045619965,-0.0318788848817348,0.00344138965010643,0.9996178150177,-0.0274306051433086,0.00940606184303761,0.999551355838776,-0.0284405034035444,
- -0.022806104272604,0.99945741891861,-0.0237682592123747,-0.983242392539978,-0.0161524377763271,0.181586131453514,-0.98303496837616,-0.0245555881410837,0.181767597794533,-0.983341097831726,-0.00625584134832025,0.181662052869797,-0.981993794441223,-0.0245060101151466,0.18731752038002,-0.982115149497986,-0.0161871090531349,0.18758425116539,-0.981565713882446,-0.037774208933115,0.187355488538742,-0.999350905418396,0.00231855525635183,0.0359527468681335,-0.999351620674133,0.00198140880092978,0.0359501838684082,-0.999350130558014,0.0025709830224514,0.0359548814594746,-0.999449014663696,0.00234038662165403,0.0331096202135086,-0.999448299407959,0.00259390263818204,0.0331114158034325,-0.999447286128998,0.00292782369069755,0.0331140719354153,0.00668155588209629,-0.99997615814209,0.0017356164753437,0.00498522212728858,-0.999985456466675,0.00207151146605611,0.000154397042933851,-0.999997198581696,0.00236474722623825,0.00495688989758492,-0.999986529350281,0.00160469685215503,0.00668155588209629,-0.99997615814209,0.0017356164753437,0.0112007353454828,-0.999936521053314,0.00122562178876251,0.0168223455548286,0.999513745307922,0.0262539051473141,0.0261797327548265,0.999432921409607,0.0211799424141645,0.0238304566591978,0.999488949775696,0.0213069561868906,0.0238304566591978,0.999488949775696,0.0213069561868906,0.0261797327548265,0.999432921409607,0.0211799424141645,0.0333795510232449,0.999311149120331,0.0162181872874498,-0.999031603336334,-0.0108856810256839,0.042631957679987,-0.999424278736115,-0.0111855771392584,0.032030712813139,-0.999421834945679,-0.0113969556987286,0.0320334024727345,-0.998522579669952,-0.0109054101631045,0.05323251709342,-0.999031603336334,-0.0108856810256839,0.042631957679987,-0.998526990413666,-0.0105281639844179,0.0532277226448059,-0.99897038936615,-0.0063729346729815,0.0449174419045448,-0.999004662036896,-0.00638055661693215,0.0441474802792072,-0.999053835868835,-0.00638750893995166,0.0430189929902554,-0.999011039733887,0.00625690631568432,0.0440226979553699,-0.999094307422638,0.00623777601867914,0.0420907661318779,
- -0.999058902263641,0.00624415604397655,0.0429223217070103,-0.999102771282196,0.00096308026695624,0.0423408225178719,-0.999068856239319,0.000959733675699681,0.0431336499750614,-0.998996913433075,0.00729297706857324,0.0441823862493038,-0.998996913433075,0.00729297706857324,0.0441823862493038,-0.998974084854126,0.0136365350335836,0.0431830734014511,-0.998893320560455,0.0136287780478597,0.0450151562690735,0.979548394680023,-0.201109647750854,0.00631546741351485,0.980395317077637,-0.196940705180168,0.00627929344773293,0.982039988040924,-0.188575178384781,0.00606804946437478,0.980386912822723,-0.197082012891769,0.000616223900578916,0.979546070098877,-0.201218575239182,0.000768372090533376,0.97774076461792,-0.209814548492432,0.000938041193876415,-0.191511362791061,-0.981465339660645,0.00702688470482826,-0.209634602069855,-0.977751672267914,0.00741453049704432,-0.215318486094475,-0.976513922214508,0.00764917023479939,-0.215715497732162,-0.976420640945435,-0.00834195408970118,-0.209955468773842,-0.977675199508667,-0.00837385654449463,-0.235216274857521,-0.971911489963531,-0.00782991386950016,0.163523137569427,0.986188054084778,-0.0263302903622389,0.172867402434349,0.984696507453918,-0.0221291016787291,0.13003596663475,0.991190552711487,-0.0251380205154419,0.207086712121964,0.978140830993652,-0.0188578348606825,0.172867402434349,0.984696507453918,-0.0221291016787291,0.163863629102707,0.986330509185791,-0.0173453595489264,0.976895928382874,-0.212826147675514,-0.0194769259542227,0.977081060409546,-0.212724938988686,-0.00779682956635952,0.976652145385742,-0.213946938514709,-0.0194238983094692,0.977081060409546,-0.212724938988686,-0.00779682956635952,0.977303028106689,-0.211811348795891,0.00384704512543976,0.97745954990387,-0.211088418960571,0.00381285673938692,0.980756938457489,-0.194699570536613,-0.0144193945452571,0.98078727722168,-0.194678112864494,-0.0125216031447053,0.980720818042755,-0.194708749651909,-0.0165894646197557,0.977955400943756,-0.208557322621346,-0.0103586995974183,0.977928519248962,-0.208573684096336,-0.0123704466968775,
- 0.977901339530945,-0.20857647061348,-0.0143133094534278,0.981712520122528,-0.190074265003204,-0.010597693733871,0.981747686862946,-0.190064981579781,-0.00685212621465325,0.98307192325592,-0.182652905583382,-0.0144043043255806,0.981747686862946,-0.190064981579781,-0.00685212621465325,0.981712520122528,-0.190074265003204,-0.010597693733871,0.980306506156921,-0.197458639740944,-0.00303542637266219,-0.999355792999268,0.0312415324151516,-0.0176633894443512,-0.999497354030609,0.0314530320465565,-0.00396984256803989,-0.998981595039368,0.0317127779126167,-0.0320977866649628,-0.998402297496796,0.0535623244941235,-0.0179965756833553,-0.99808806180954,0.0529527254402637,-0.0318820737302303,-0.997472643852234,0.0530814491212368,-0.0472306609153748,-0.994981944561005,0.0977339968085289,0.0214292611926794,-0.994794905185699,0.0976605862379074,0.0290770959109068,-0.994534075260162,0.0973870232701302,0.0376529656350613,-0.994296252727509,0.102573983371258,0.0292187165468931,-0.994461119174957,0.102877326309681,0.0215249881148338,-0.99456524848938,0.103006362915039,0.0151555370539427,0.0138271749019623,0.994023740291595,-0.108285710215569,0.00413714395835996,0.993722021579742,-0.111800894141197,0.00290872692130506,0.99411004781723,-0.108336448669434,0.00293492176569998,0.993329703807831,-0.1152713149786,0.00413714395835996,0.993722021579742,-0.111800894141197,-0.00713621964678168,0.993304371833801,-0.115306317806244,-0.999851405620575,-0.00825879722833633,-0.0151328612118959,-0.99920916557312,-0.0376447811722755,-0.0128128714859486,-0.999800384044647,0.0133600188419223,-0.0148554285988212,-0.99927169084549,-0.0374293066561222,-0.00742353172972798,-0.999948382377625,-0.00837850384414196,-0.00575016159564257,-0.998047947883606,-0.0621210113167763,-0.00642294064164162,-0.0409638620913029,-0.998974025249481,0.0193107519298792,0.00690227467566729,-0.999751687049866,0.0211890451610088,0.0124210147187114,-0.999700248241425,0.0211026053875685,0.0631706044077873,-0.997785687446594,0.020813038572669,0.0124855134636164,-0.999738395214081,0.0191639494150877,
- 0.00700039183720946,-0.999801278114319,0.018666123971343,-0.997587561607361,0.0312466472387314,-0.0619898550212383,-0.997897148132324,0.0171029306948185,-0.0625203624367714,-0.997042894363403,0.0450596511363983,-0.0622501485049725,-0.998056292533875,0.0170828327536583,-0.0599332824349403,-0.997678101062775,0.0312783233821392,-0.0604988299310207,-0.998171448707581,0.00718989223241806,-0.0600172765552998,-0.999172151088715,-0.0367439948022366,0.0174589771777391,-0.999612390995026,-0.0278389733284712,0.000325514527503401,-0.998776197433472,-0.029404167085886,0.0397685542702675,-0.999172151088715,-0.0367439948022366,0.0174589771777391,-0.99822723865509,-0.0448359921574593,0.0391421876847744,-0.997363805770874,-0.045509397983551,0.0565184466540813,-0.994086146354675,-0.105296313762665,-0.0265613365918398,-0.989826858043671,-0.136216625571251,-0.0410834550857544,-0.989482700824738,-0.1355050355196,-0.0506201535463333,-0.996677935123444,-0.0727543234825134,-0.0366052538156509,-0.994086146354675,-0.105296313762665,-0.0265613365918398,-0.997084856033325,-0.0741041526198387,-0.0181769672781229,0.00577111914753914,-0.994920313358307,0.100501023232937,0.0176495034247637,-0.994785726070404,0.100449211895466,0.00470476876944304,-0.994923770427704,0.100522577762604,0.00579506903886795,-0.994134366512299,0.10799765586853,0.00473887333646417,-0.994141399860382,0.107983224093914,-0.00868041627109051,-0.9941086769104,0.108040779829025,-0.999694645404816,0.0232412032783031,0.00839506648480892,-0.999969244003296,0.00381611008197069,0.00685439025983214,-0.999139666557312,0.0405665189027786,0.00863061752170324,-0.999875485897064,0.00340118655003607,0.0154095282778144,-0.999617338180542,0.0231471303850412,0.0151462387293577,-0.999818980693817,-0.0121358186006546,0.0146548375487328,0.0302658155560493,0.99954080581665,0.00149649544619024,0.0270649176090956,0.999632477760315,0.00160195224452764,0.0533168613910675,0.998576581478119,0.00147398735862225,0.0270649176090956,0.999632477760315,0.00160195224452764,0.0302658155560493,0.99954080581665,0.00149649544619024,
- 0.00233236164785922,0.999995887279511,0.00168201758060604,-0.998011112213135,-0.0176231116056442,0.0605247244238853,-0.997884929180145,-0.0250693336129189,0.0599782317876816,-0.998060286045074,-0.0120567036792636,0.061076357960701,-0.997812032699585,-0.0251663159579039,0.0611391924321651,-0.997918546199799,-0.0177676007151604,0.06199099868536,-0.997627258300781,-0.0328902825713158,0.0604823119938374,-0.991006731987,0.0897229686379433,0.0992754846811295,-0.990365147590637,0.0911393612623215,0.104261822998524,-0.990682661533356,0.0897226855158806,0.102458924055099,-0.990682661533356,0.0897226855158806,0.102458924055099,-0.991302013397217,0.0882949456572533,0.0975928455591202,-0.991006731987,0.0897229686379433,0.0992754846811295,-0.991211533546448,0.130084469914436,0.0240364391356707,-0.991078555583954,0.130879834294319,0.0251744668930769,-0.99135148525238,0.129004746675491,0.0240833200514317,-0.991211533546448,0.130084469914436,0.0240364391356707,-0.99135148525238,0.129004746675491,0.0240833200514317,-0.991526484489441,0.127859830856323,0.0229594707489014,0.142476096749306,0.98979777097702,0.000978175783529878,0.152359530329704,0.988320410251617,0.00306752300821245,0.117372125387192,0.993084788322449,0.00257422961294651,0.152359530329704,0.988320410251617,0.00306752300821245,0.142815500497818,0.989728331565857,0.00646253442391753,0.178011789917946,0.984019339084625,0.00421028025448322,-0.124840907752514,-0.992005825042725,-0.0184227973222733,-0.128191292285919,-0.991582870483398,-0.018182598054409,-0.142182230949402,-0.989759147167206,-0.0126905972138047,-0.124840907752514,-0.992005825042725,-0.0184227973222733,-0.109666116535664,-0.99367880821228,-0.0239955950528383,-0.128191292285919,-0.991582870483398,-0.018182598054409,-0.993360757827759,0.113353103399277,0.0196330547332764,-0.992439985275269,0.113471955060959,0.0467673279345036,-0.992972314357758,0.114591285586357,0.0295768901705742,-0.991760551929474,0.115236185491085,0.0559614486992359,-0.992972314357758,0.114591285586357,0.0295768901705742,-0.992239832878113,0.115214936435223,0.0467528812587261,
- -0.99048262834549,0.124865353107452,0.0579030141234398,-0.991335451602936,0.1176917552948,0.0583325773477554,-0.99211061000824,0.110812894999981,0.0586265698075294,-0.991335451602936,0.1176917552948,0.0583325773477554,-0.990470051765442,0.124874092638493,0.0581010691821575,-0.989776194095612,0.130386501550674,0.0578136965632439,0.996438145637512,0.0812855884432793,0.0224435813724995,0.995901942253113,0.0801806598901749,0.0418379493057728,0.994954884052277,0.0804289802908897,0.0599667727947235,0.997723877429962,0.0637087896466255,0.0220960695296526,0.997932195663452,0.0640575960278511,0.00528763793408871,0.997020363807678,0.0646320581436157,0.042110450565815,0.991452932357788,0.1275385171175,-0.0274774990975857,0.991141855716705,0.127341985702515,-0.0377074703574181,0.990787446498871,0.126868441700935,-0.0473798513412476,0.990735590457916,0.130426526069641,-0.0378436222672462,0.990995466709137,0.131024941802025,-0.0275796465575695,0.991144001483917,0.131264001131058,-0.0200834330171347,-0.038584191352129,0.988489866256714,0.146284118294716,-0.0476231351494789,0.988097906112671,0.146268680691719,-0.0365639962255955,0.988562703132629,0.146311447024345,-0.03857421875,0.988177001476288,0.148385480046272,-0.0365590788424015,0.988256573677063,0.148365512490273,-0.0271265469491482,0.988557159900665,0.148387655615807,0.999967575073242,0.0047882073558867,0.00647348677739501,0.999695539474487,0.0240376628935337,0.00556905008852482,0.999774575233459,-0.0203857999294996,0.00593304820358753,0.999533236026764,0.0241432189941406,0.0187206510454416,0.999834358692169,0.00454895943403244,0.0176287572830915,0.998715698719025,0.0471567809581757,0.0185241159051657,0.0224347710609436,-0.999378263950348,-0.0272019766271114,0.0282220207154751,-0.999233245849609,-0.0271372031420469,-0.000448468228569254,-0.999606430530548,-0.0280502550303936,0.0282145626842976,-0.999239861965179,-0.0269001945853233,0.0224368758499622,-0.999376535415649,-0.0272593088448048,0.0550753623247147,-0.998143017292023,-0.0260238945484161,0.996096849441528,0.0512746758759022,0.0718469619750977,
- 0.995600879192352,0.059887882322073,0.0720580890774727,0.996550500392914,0.0414192043244839,0.0719133168458939,0.995168507099152,0.0598200671374798,0.0778536573052406,0.995624005794525,0.0512950122356415,0.0781144872307777,0.994278907775879,0.0730379447340965,0.0779417157173157,0.00660987012088299,-0.036483034491539,0.999312400817871,0.00662437314167619,-0.0331097394227982,0.999429881572723,0.006681764498353,-0.029507240280509,0.999542236328125,0.010301192291081,-0.0257481429725885,0.999615490436554,0.0102622462436557,-0.0295431241393089,0.999510824680328,0.0102698458358645,-0.0331243276596069,0.999398469924927,0.050567165017128,-0.0650010481476784,0.99660313129425,0.0348802506923676,-0.0654556602239609,0.997245669364929,0.0430852323770523,-0.0650957971811295,0.996948540210724,0.0347571857273579,-0.0607820264995098,0.997545719146729,0.0275789946317673,-0.0609847120940685,0.997757613658905,0.043043464422226,-0.0608000345528126,0.99722146987915,-0.032596442848444,-0.0148034356534481,0.999358952045441,-0.0299480352550745,-0.0114325843751431,0.999486088752747,-0.0324756354093552,-0.0174366943538189,0.999320507049561,-0.0299480352550745,-0.0114325843751431,0.999486088752747,-0.0269856750965118,-0.0145485466346145,0.999529957771301,-0.0272811409085989,-0.00808951165527105,0.999595046043396,0.00317947822622955,0.999669432640076,0.0255134105682373,0.000883629894815385,0.999683916568756,0.0251263547688723,0.000896014797035605,0.999775350093842,0.0211775749921799,0.00547741912305355,0.999669015407562,0.0251404009759426,0.00317947822622955,0.999669432640076,0.0255134105682373,0.00546497292816639,0.999561786651611,0.0290923379361629,-0.0146356634795666,-0.999892950057983,-0.000127177045214921,-0.0195943955332041,-0.999807596206665,-0.000940244819503278,-0.0195539835840464,-0.999526977539063,-0.023737957701087,-0.00967367831617594,-0.999952793121338,-0.000925008149351925,-0.0146356634795666,-0.999892950057983,-0.000127177045214921,-0.00970897730439901,-0.999670505523682,0.0237626861780882,-0.00306002795696259,-0.0348555818200111,0.999387681484222,
- -0.0182084087282419,-0.035275112837553,0.999211847782135,-0.0302468184381723,-0.0350000895559788,0.998929500579834,-0.0181234814226627,-0.0314220264554024,0.999341905117035,-0.00307642319239676,-0.0320762917399406,0.999480664730072,0.00828144792467356,-0.0320084728300571,0.99945330619812,0.0439068712294102,0.069787934422493,-0.996595144271851,0.03020004555583,0.0692976266145706,-0.997138917446136,0.00978223141282797,0.0696096569299698,-0.997526347637177,0.0304846800863743,0.0901524424552917,-0.995461285114288,0.0437579266726971,0.0894716158509254,-0.995027661323547,0.0654279813170433,0.089538037776947,-0.993832051753998,-0.0379897803068161,0.149993002414703,-0.987956941127777,-0.0318803638219833,0.150331646203995,-0.988121569156647,-0.0240318067371845,0.150635734200478,-0.9882972240448,-0.0317817553877831,0.147542476654053,-0.988545060157776,-0.0378785282373428,0.14736595749855,-0.988356471061707,-0.0475196465849876,0.146904811263084,-0.988008558750153,0.146298289299011,0.988897264003754,0.0260580871254206,0.146302774548531,0.988932549953461,0.0246577113866806,0.148814305663109,0.988702416419983,0.0179400146007538,0.146298289299011,0.988897264003754,0.0260580871254206,0.143777176737785,0.98907083272934,0.0326680056750774,0.146302774548531,0.988932549953461,0.0246577113866806,0.00836811680346727,0.00252337614074349,-0.999961793422699,0.00772919179871678,0.0162542965263128,-0.99983811378479,0.0078603345900774,-0.0315207242965698,-0.999472200870514,0.0261820200830698,0.0163032729178667,-0.999524235725403,0.025412805378437,0.00227080704644322,-0.999674558639526,0.0260728783905506,0.048811748623848,-0.998467743396759,-0.0308692492544651,-0.999323904514313,-0.0199702475219965,-0.030817361548543,-0.999279797077179,-0.0221398882567883,-0.031190674751997,-0.999456703662872,-0.0106597412377596,-0.027288343757391,-0.999384999275208,-0.022026713937521,-0.027386212721467,-0.999427795410156,-0.0198514591902494,-0.0269263703376055,-0.99909108877182,-0.0330443568527699,0.0998264849185944,0.0612257868051529,-0.993119478225708,0.0965743437409401,0.0553476177155972,-0.993785679340363,
- 0.0999194607138634,0.0799128189682961,-0.9917813539505,0.0965743437409401,0.0553476177155972,-0.993785679340363,0.0933076366782188,0.0613034404814243,-0.993748247623444,0.0931653156876564,0.0406046733260155,-0.994822323322296,-0.967347145080566,0.19928865134716,-0.156600221991539,-0.967566192150116,0.19949372112751,-0.154977291822433,-0.967348039150238,0.199284508824348,-0.156599834561348,-0.967347145080566,0.19928865134716,-0.156600221991539,-0.967348039150238,0.199284508824348,-0.156599834561348,-0.967126309871674,0.199078798294067,-0.158222332596779,-0.211266174912453,-0.974870264530182,0.0706722736358643,-0.211781859397888,-0.974766552448273,0.0705589652061462,-0.213345870375633,-0.97445011138916,0.0702178925275803,-0.211448803544044,-0.97496098279953,0.0688513368368149,-0.21093213558197,-0.975064992904663,0.0689632967114449,-0.209463819861412,-0.975358724594116,0.0692837685346603,0.224713414907455,0.973455667495728,-0.043450903147459,0.234824135899544,0.971034944057465,-0.044146504253149,0.232679039239883,0.971529126167297,-0.0446281135082245,0.234824135899544,0.971034944057465,-0.044146504253149,0.242840424180031,0.969007670879364,-0.0453062169253826,0.232679039239883,0.971529126167297,-0.0446281135082245,-0.971129357814789,0.186565712094307,-0.148664921522141,-0.969792306423187,0.185242310166359,-0.158708572387695,-0.969766080379486,0.185366734862328,-0.158722922205925,-0.972318708896637,0.188089683651924,-0.138631120324135,-0.971129357814789,0.186565712094307,-0.148664921522141,-0.972368538379669,0.187852278351784,-0.138603731989861,-0.967915058135986,0.202672719955444,-0.148540943861008,-0.967622041702271,0.202429339289665,-0.150764495134354,-0.96774560213089,0.2025286257267,-0.149835929274559,-0.970598518848419,0.19081974029541,-0.146718531847,-0.970487356185913,0.190726578235626,-0.147572427988052,-0.970311939716339,0.190587252378464,-0.148900821805,-0.968675196170807,0.197458982467651,-0.150593876838684,-0.968709230422974,0.197481632232666,-0.150344416499138,-0.96875524520874,0.197511821985245,-0.150007754564285,
- -0.966130375862122,0.209460482001305,-0.15072637796402,-0.966083347797394,0.209428995847702,-0.151071190834045,-0.966164112091064,0.209482774138451,-0.150478914380074,0.973883628845215,-0.22702619433403,-0.00312894233502448,0.974408268928528,-0.224760472774506,-0.00335397641174495,0.975032031536102,-0.22203417122364,-0.00365018146112561,0.97427773475647,-0.225204467773438,-0.00812841299921274,0.975468873977661,-0.219967529177666,-0.00864794012159109,0.97489732503891,-0.222497507929802,-0.00838406570255756,0.966776728630066,-0.252098232507706,-0.0422996543347836,0.966706573963165,-0.252137422561646,-0.0436502955853939,0.966567695140839,-0.252191334962845,-0.0463300086557865,0.966660439968109,-0.251833528280258,-0.0463430844247341,0.966806888580322,-0.251749098300934,-0.0436667762696743,0.966580212116241,-0.251866430044174,-0.0478126406669617,0.976332664489746,-0.214089468121529,0.0306632667779922,0.976505398750305,-0.213301867246628,0.0306521821767092,0.976648569107056,-0.212482199072838,0.0317634716629982,0.976332664489746,-0.214089468121529,0.0306632667779922,0.976235568523407,-0.214688137173653,0.0295493025332689,0.976505398750305,-0.213301867246628,0.0306521821767092,0.210763335227966,0.976487278938293,-0.045293316245079,0.216546311974525,0.975409507751465,-0.0410390011966228,0.228069275617599,0.972775042057037,-0.0411499179899693,0.216380909085274,0.975046753883362,-0.0496293529868126,0.210763335227966,0.976487278938293,-0.045293316245079,0.200866490602493,0.978368818759918,-0.0494703836739063,-0.216502293944359,-0.974718928337097,0.055224597454071,-0.212730199098587,-0.975072920322418,0.0630775839090347,-0.203005820512772,-0.977622628211975,0.0551598519086838,-0.212730199098587,-0.975072920322418,0.0630775839090347,-0.216220065951347,-0.973762214183807,0.070966549217701,-0.225005298852921,-0.971767067909241,0.0710024982690811,0.97385835647583,-0.22643980383873,0.0180323403328657,0.975224256515503,-0.221217453479767,0.000747609825339168,0.973749279975891,-0.226252034306526,0.0249473229050636,0.975224256515503,-0.221217453479767,0.000747609825339168,
- 0.976574778556824,-0.21444545686245,0.0177497621625662,0.976574122905731,-0.215045586228371,-0.00764317903667688,-0.131342858076096,0.0961631089448929,-0.986661911010742,-0.132609367370605,0.0949437245726585,-0.986610591411591,-0.138941362500191,0.0960045754909515,-0.985636055469513,-0.132609367370605,0.0949437245726585,-0.986610591411591,-0.13132444024086,0.0937794074416161,-0.986893773078918,-0.124257400631905,0.0939217060804367,-0.987794935703278,0.996097266674042,-0.000269687618128955,-0.0882620364427567,0.995988368988037,-0.000124460144434124,-0.0894827991724014,0.995539247989655,0.000141586540848948,-0.094348169863224,0.996476531028748,-0.000586383219342679,-0.0838711634278297,0.995987594127655,-0.000279222702374682,-0.0894911885261536,0.996097266674042,-0.000269687618128955,-0.0882620364427567,-0.993830859661102,-0.0192323345690966,0.109226085245609,-0.994790732860565,-0.023818239569664,0.0991165339946747,-0.988123178482056,-0.0210253018885851,0.15221856534481,-0.994790732860565,-0.023818239569664,0.0991165339946747,-0.993632972240448,-0.0293350033462048,0.108779609203339,-0.997987031936646,-0.0271393209695816,0.0573197267949581,-0.117687694728374,0.0811438336968422,-0.989730000495911,-0.117056101560593,0.0951516255736351,-0.988556563854218,-0.115687236189842,0.0951318368315697,-0.988719582557678,-0.117725417017937,0.0671116858720779,-0.990775942802429,-0.117687694728374,0.0811438336968422,-0.989730000495911,-0.119434751570225,0.0671361759305,-0.990569591522217,-0.125196531414986,0.0782235786318779,-0.989043414592743,-0.133912026882172,0.0756556019186974,-0.988101065158844,-0.125222846865654,0.0743074491620064,-0.989342033863068,-0.142605841159821,0.0742452889680862,-0.986990988254547,-0.133912026882172,0.0756556019186974,-0.988101065158844,-0.142622947692871,0.0715196132659912,-0.987189769744873,-0.13620138168335,0.0569913350045681,-0.989040553569794,-0.136234655976295,0.0785757526755333,-0.98755556344986,-0.141204372048378,0.0718284621834755,-0.987371265888214,-0.146096259355545,0.09336818754673,-0.984854459762573,
- -0.141204372048378,0.0718284621834755,-0.987371265888214,-0.146111682057381,0.0784634053707123,-0.986151576042175,0.999348104000092,0.0301560182124376,0.0198502261191607,0.998862147331238,0.0278521999716759,0.0387122109532356,0.998043596744537,0.0269423555582762,0.0564209707081318,0.999208807945251,0.0120066273957491,0.0379152297973633,0.999755382537842,0.012409457936883,0.0183081943541765,0.999902486801147,0.0138365169987082,0.00193756970111281,0.996517181396484,0.079321101307869,-0.0257232002913952,0.996160805225372,0.0798422619700432,-0.0359034650027752,0.995748817920685,0.0800534188747406,-0.0455606766045094,0.995883762836456,0.0832626298069954,-0.0358168929815292,0.996209859848022,0.0831391736865044,-0.0255704261362553,0.996396899223328,0.0828558728098869,-0.0181154143065214,0.0116881253197789,0.977677941322327,0.209783896803856,0.00240192515775561,0.977739155292511,0.20981040596962,0.0134677439928055,0.977651834487915,0.209799200296402,0.011691452935338,0.977174878120422,0.21211501955986,0.0134661504998803,0.977157771587372,0.212088197469711,0.0231511853635311,0.97698301076889,0.212057158350945,0.998943209648132,-0.0459433980286121,-0.00136987026780844,0.999665498733521,-0.0258452389389277,-0.0009509680676274,0.99748957157135,-0.0707201212644577,-0.00364377559162676,0.999569296836853,-0.0266385525465012,0.0123140383511782,0.998849391937256,-0.0469581671059132,0.00973872188478708,0.999898791313171,-0.00393679877743125,0.0136723974719644,-0.0283129997551441,-0.995108127593994,-0.0946477428078651,-0.0230858083814383,-0.995245218276978,-0.0946256816387177,-0.0521568991243839,-0.994075417518616,-0.0953608974814415,-0.0231231898069382,-0.995365858078003,-0.0933397561311722,-0.0283472798764706,-0.995202600955963,-0.0936388447880745,0.00482277246192098,-0.9956955909729,-0.0925584807991982,0.997799754142761,-0.00334953470155597,0.0662151426076889,0.997731983661652,0.00570173049345613,0.0670714750885963,0.997759282588959,-0.013106606900692,0.0656112432479858,0.997354805469513,0.00527995126321912,0.0724953263998032,0.997386455535889,-0.00371557730250061,0.0721554905176163,
- 0.997125566005707,0.018396632745862,0.0734991729259491,-0.999982953071594,-0.000516092695761472,0.00583154242485762,-0.999991178512573,-0.00276206154376268,0.00318882195279002,-0.999971091747284,-0.00489930715411901,0.00581337045878172,-0.999991178512573,-0.00276206154376268,0.00318882195279002,-0.999999701976776,-0.00049436732660979,0.000572850229218602,-0.999999105930328,0.00119954126421362,0.000579850166104734,-0.999180912971497,-0.0336742512881756,0.0224439091980457,-0.998550653457642,-0.0304339472204447,0.0443911850452423,-0.999014317989349,-0.0310449451208115,0.0317294411361218,-0.999014317989349,-0.0310449451208115,0.0317294411361218,-0.998550653457642,-0.0304339472204447,0.0443911850452423,-0.998218715190887,-0.0276499111205339,0.0528687685728073,-0.999527931213379,0.0151374442502856,-0.0267373006790876,-0.99953556060791,0.0169123262166977,-0.0253504291176796,-0.999569654464722,0.0123493280261755,-0.026610353961587,-0.999527931213379,0.0151374442502856,-0.0267373006790876,-0.999569654464722,0.0123493280261755,-0.026610353961587,-0.999559640884399,0.00990348309278488,-0.0279731098562479,0.0562861710786819,0.998161315917969,-0.0224947724491358,0.128672853112221,0.991318643093109,-0.0270309392362833,0.0665191486477852,0.997454941272736,-0.025668203830719,0.0666633546352386,0.997581303119659,-0.0196861699223518,-0.00518487486988306,0.999824404716492,-0.0180093236267567,0.0562861710786819,0.998161315917969,-0.0224947724491358,-0.00917062722146511,-0.997227966785431,-0.0738401040434837,-0.00902303773909807,-0.997229039669037,-0.0738435015082359,-0.0111612202599645,-0.997044146060944,-0.0760161578655243,-0.00917062722146511,-0.997227966785431,-0.0738401040434837,-0.00757794920355082,-0.99740082025528,-0.0716544613242149,-0.00902303773909807,-0.997229039669037,-0.0738435015082359,-0.999798476696014,-0.00349850510247052,0.0197685807943344,-0.999725759029388,-0.000142906472319737,-0.0234215706586838,-0.999993085861206,-0.000592247000895441,0.00366999697871506,-0.999181747436523,0.0028641012031585,-0.0403444841504097,
- -0.999993085861206,-0.000592247000895441,0.00366999697871506,-0.999727547168732,0.00153838261030614,-0.0232909172773361,0.998776495456696,-0.0473665781319141,0.0142176216468215,0.99889600276947,-0.0457116737961769,0.0108361197635531,0.998780965805054,-0.0481601729989052,0.0108275422826409,0.998776495456696,-0.0473665781319141,0.0142176216468215,0.99868369102478,-0.0481793135404587,0.0176026597619057,0.99860668182373,-0.0497499443590641,0.0175971128046513,-0.0623579025268555,-0.998048782348633,-0.00320967356674373,-0.0687759295105934,-0.997627258300781,-0.00311726029030979,-0.0414695404469967,-0.99911892414093,-0.00646873144432902,-0.0687759295105934,-0.997627258300781,-0.00311726029030979,-0.0623579025268555,-0.998048782348633,-0.00320967356674373,-0.0854098349809647,-0.996345996856689,7.25805075489916e-005,0.0253236051648855,0.999528646469116,-0.0173621438443661,0.0260497238487005,0.999509930610657,-0.0173628050833941,0.0284682419151068,0.999297738075256,-0.024367718026042,0.0260497238487005,0.999509930610657,-0.0173628050833941,0.0253236051648855,0.999528646469116,-0.0173621438443661,0.0222864598035812,0.999697983264923,-0.0103555778041482,0.996892333030701,-0.0780410692095757,-0.0107456259429455,0.997074067592621,-0.0763710960745811,0.00328563177026808,0.997641026973724,-0.0679772198200226,-0.00957455113530159,0.997074067592621,-0.0763710960745811,0.00328563177026808,0.996561408042908,-0.0811901390552521,0.0165446680039167,0.996006309986115,-0.0878796428442001,0.0157657079398632,0.998666882514954,-0.0514823272824287,0.00374167738482356,0.99867457151413,-0.0514378361403942,0.00186100171413273,0.998657524585724,-0.0515113547444344,0.00545227574184537,0.99791145324707,-0.0645966678857803,5.50501545149018e-006,0.997908174991608,-0.0646292939782143,0.00158746016677469,0.997901380062103,-0.0646567642688751,0.00351397460326552,0.998801648616791,-0.0487637333571911,0.00417916662991047,0.998775780200958,-0.0487203113734722,0.00856261514127254,0.999195635318756,-0.0400743894279003,-0.00152917637024075,0.998775780200958,-0.0487203113734722,0.00856261514127254,
- 0.998801648616791,-0.0487637333571911,0.00417916662991047,0.998248934745789,-0.0573878064751625,0.0143438093364239,-0.999968469142914,0.00338519969955087,-0.00718528125435114,-0.999936044216156,0.00222547422163188,-0.0110890222713351,-0.999974131584167,0.000480817863717675,-0.00718026189133525,-0.999936044216156,0.00222547422163188,-0.0110890222713351,-0.9998819231987,0.00337148481048644,-0.0149986837059259,-0.999873578548431,0.00528808822855353,-0.01500194799155,0.0109852170571685,-0.999875783920288,0.0113042974844575,0.00952660478651524,-0.999890804290771,0.0112965246662498,-4.14579335483722e-005,-0.999935805797577,0.0113394688814878,0.0197391621768475,-0.999744474887848,0.0110246259719133,0.00952561013400555,-0.999893426895142,0.0110716009512544,0.0109844310209155,-0.999878585338593,0.0110535211861134,0.0305132512003183,0.99952906370163,0.0032521930988878,0.0235082823783159,0.999719619750977,0.00287119764834642,0.0921848490834236,0.995737731456757,0.00288956216536462,0.0305869840085506,0.999391794204712,0.0167473964393139,-0.035068042576313,0.999238789081573,0.0170900262892246,0.023499708622694,0.999576985836029,0.0171408299356699,-0.999915897846222,-0.0129318051040173,-0.00107936491258442,-0.99982225894928,-0.0146487262099981,-0.0118676135316491,-0.999788224697113,-0.016857260838151,-0.011802775785327,-0.999853849411011,-0.0140135334804654,0.00979420077055693,-0.999915897846222,-0.0129318051040173,-0.00107936491258442,-0.999898612499237,-0.0104372957721353,0.00968919973820448,-0.999963760375977,-0.00760087370872498,0.00383561197668314,-0.999970138072968,-0.00766799645498395,0.00105990027077496,-0.999968886375427,-0.00771008618175983,-0.00166576856281608,-0.999971568584442,0.00751079525798559,0.00069301069015637,-0.999959290027618,0.00736787915229797,-0.00521424226462841,-0.999970436096191,0.00743233226239681,-0.00196605641394854,-0.999898970127106,0.0140915401279926,-0.00191644765436649,-0.999967455863953,0.00759276328608394,0.00274262623861432,-0.9998739361763,0.0140480045229197,-0.00739988312125206,-0.999967455863953,0.00759276328608394,0.00274262623861432,
- -0.999997794628143,0.00105117750354111,-0.00181360240094364,-0.99996292591095,0.00113287148997188,0.00853426940739155,0.991881310939789,-0.125339597463608,-0.0214811246842146,0.990767955780029,-0.1218476369977,-0.0594306960701942,0.989224791526794,-0.122931115329266,-0.0795139148831367,0.99510782957077,-0.0966551601886749,-0.0204505212605,0.995237231254578,-0.0974680930376053,0.00167099200189114,0.993021309375763,-0.101100437343121,-0.0607253611087799,0.988714456558228,-0.149071335792542,0.0148842595517635,0.988800823688507,-0.149087727069855,0.00676696561276913,0.988745450973511,-0.148327633738518,0.0195277500897646,0.988714456558228,-0.149071335792542,0.0148842595517635,0.988665103912354,-0.150128468871117,0.00166311382781714,0.98868852853775,-0.149828776717186,0.00681062554940581,-0.0952057093381882,-0.986383199691772,-0.134104654192925,-0.0939610973000526,-0.98650074005127,-0.134118527173996,-0.0906785726547241,-0.986875593662262,-0.13361881673336,-0.0939610973000526,-0.98650074005127,-0.134118527173996,-0.0952057093381882,-0.986383199691772,-0.134104654192925,-0.0985077396035194,-0.985991358757019,-0.134601160883904,0.0502504594624043,0.998736441135406,-0.000662099861074239,0.0540698654949665,0.998536944389343,-0.000782042974606156,0.0440173633396626,0.99903017282486,-0.00116974150296301,0.0540698654949665,0.998536944389343,-0.000782042974606156,0.0502504594624043,0.998736441135406,-0.000662099861074239,0.06309425085783,0.998007535934448,-0.000364810752216727,0.994724452495575,-0.0850261822342873,-0.057392243295908,0.994669795036316,-0.0828678756952286,-0.061359953135252,0.994462311267853,-0.0881321728229523,-0.0572492033243179,0.994669795036316,-0.0828678756952286,-0.061359953135252,0.994222939014435,-0.0853388831019402,-0.0651004314422607,0.994578063488007,-0.0809329301118851,-0.065302237868309,0.996167898178101,-0.0864405483007431,-0.0133330263197422,0.996259272098541,-0.0858516097068787,-0.0098464610055089,0.996210217475891,-0.0859423726797104,-0.0133831165730953,0.996259272098541,-0.0858516097068787,-0.0098464610055089,
- 0.996297180652618,-0.0857454612851143,-0.0063110189512372,0.996274650096893,-0.0860075429081917,-0.00628466252237558,-0.997820734977722,0.0466888695955276,0.0466255024075508,-0.997454285621643,0.0469127856194973,0.0537045896053314,-0.997644782066345,0.0459022894501686,0.0509711690247059,-0.997644782066345,0.0459022894501686,0.0509711690247059,-0.998039960861206,0.0447130352258682,0.0437832847237587,-0.997904062271118,0.0448056124150753,0.0466893948614597,-0.997828006744385,0.0468395389616489,-0.0463179908692837,-0.997391700744629,0.0617790073156357,-0.0373250618577003,-0.996287286281586,0.0769305005669594,-0.0386428944766521,-0.997391700744629,0.0617790073156357,-0.0373250618577003,-0.994926333427429,0.0960948318243027,-0.0297891404479742,-0.996287286281586,0.0769305005669594,-0.0386428944766521,0.164112746715546,0.985997676849365,-0.0295937396585941,0.121475800871849,0.991448283195496,-0.0476839691400528,0.0980111137032509,0.994093179702759,-0.0466104336082935,0.0399913527071476,0.997167408466339,-0.0637014359235764,0.0980111137032509,0.994093179702759,-0.0466104336082935,0.121475800871849,0.991448283195496,-0.0476839691400528,-0.997030317783356,0.0660493448376656,-0.039598073810339,-0.997550845146179,0.0699145868420601,-0.00206245924346149,-0.997309029102325,0.0681615471839905,-0.0269960202276707,-0.997420787811279,0.0711636766791344,0.00935356132686138,-0.997309029102325,0.0681615471839905,-0.0269960202276707,-0.997550845146179,0.0699145868420601,-0.00206245924346149,-0.996584475040436,0.0825791209936142,0.000329418253386393,-0.997088134288788,0.0762570202350616,0.000337759789545089,-0.997568190097809,0.0696986839175224,-7.00284290360287e-005,-0.997088134288788,0.0762570202350616,0.000337759789545089,-0.996585369110107,0.082564577460289,0.000800661800894886,-0.996105492115021,0.0881643742322922,0.000974430760834366,-0.0830600410699844,-0.995943486690521,0.034603625535965,-0.0802835673093796,-0.996172666549683,0.0345626026391983,-0.0949663296341896,-0.993874669075012,0.0565203204751015,-0.0802835673093796,-0.996172666549683,0.0345626026391983,
- -0.0830600410699844,-0.995943486690521,0.034603625535965,-0.0734386444091797,-0.99721896648407,0.0126929543912411,-0.998835325241089,0.0482230968773365,-0.00157923379447311,-0.998587787151337,0.0531268790364265,-0.000388842105166987,-0.999327659606934,0.0366028249263763,-0.00210510566830635,-0.999527990818024,0.0305579863488674,-0.00317184231244028,-0.998835325241089,0.0482230968773365,-0.00157923379447311,-0.999327659606934,0.0366028249263763,-0.00210510566830635,-0.999347746372223,0.0204538870602846,0.0297636780887842,-0.999190926551819,0.0211175940930843,0.0342279672622681,-0.999244093894959,0.0205201599746943,0.0330202132463455,-0.999244093894959,0.0205201599746943,0.0330202132463455,-0.999394655227661,0.019842965528369,0.0285793282091618,-0.999347746372223,0.0204538870602846,0.0297636780887842,-0.998526275157928,0.0476804785430431,-0.0259214341640472,-0.998528301715851,0.0482354275882244,-0.024790907278657,-0.998584866523743,0.0464810468256474,-0.0258446019142866,-0.998526275157928,0.0476804785430431,-0.0259214341640472,-0.998584866523743,0.0464810468256474,-0.0258446019142866,-0.998589396476746,0.0457418411970139,-0.0269648749381304,0.0608169436454773,0.998088479042053,-0.0109864575788379,0.0488659515976906,0.998709082603455,-0.0138674974441528,0.0648267939686775,0.997835636138916,-0.0110306106507778,0.0608169436454773,0.998088479042053,-0.0109864575788379,0.0648267939686775,0.997835636138916,-0.0110306106507778,0.0750427320599556,0.997147142887115,-0.00813395064324141,-0.045562706887722,-0.998960137367249,-0.00162947922945023,-0.0481505617499352,-0.998838841915131,-0.00158770068082958,-0.0606819540262222,-0.998151957988739,0.00322399428114295,-0.045562706887722,-0.998960137367249,-0.00162947922945023,-0.0357381962239742,-0.999340713024139,-0.00639676814898849,-0.0481505617499352,-0.998838841915131,-0.00158770068082958,-0.998931169509888,0.0456813126802444,-0.00706165889278054,-0.998847782611847,0.0455140247941017,-0.0152173088863492,-0.998585999011993,0.0529821254312992,-0.00434963498264551,-0.998847782611847,0.0455140247941017,-0.0152173088863492,
- -0.998931169509888,0.0456813126802444,-0.00706165889278054,-0.999116718769073,0.0383307673037052,-0.0172204859554768,-0.0342185087502003,0.0959400460124016,0.99479877948761,-0.0194880571216345,0.0950431078672409,0.995282411575317,0.000607813475653529,0.0948926657438278,0.995487332344055,-0.0193161442875862,0.114889159798622,0.99319052696228,-0.0336198881268501,0.114467971026897,0.992857873439789,-0.0549811981618404,0.115049064159393,0.991837084293365,0.0492088235914707,0.17158517241478,0.983939647674561,0.0424863621592522,0.172121688723564,0.984159052371979,0.0346314944326878,0.172606557607651,0.984381854534149,0.042563933879137,0.17349037528038,0.983915328979492,0.0493093952536583,0.173140957951546,0.983661949634552,0.0590805746614933,0.172435268759727,0.983247458934784,-0.11867805570364,0.991970002651215,-0.0437176786363125,-0.118702597916126,0.991637885570526,-0.0506362095475197,-0.118686109781265,0.992032825946808,-0.0422432571649551,-0.125262215733528,0.991162836551666,-0.0436556488275528,-0.125244408845901,0.991228342056274,-0.0421926081180573,-0.125223904848099,0.991506397724152,-0.0351315587759018,-0.0164360292255878,0.043969452381134,0.998897671699524,-0.0159532204270363,0.0288126319646835,0.999457538127899,-0.0155740110203624,0.0751317068934441,0.997052013874054,-0.0028928907122463,0.028714245185256,0.99958348274231,-0.00184107141103596,0.0435763224959373,0.999048411846161,-0.00314921350218356,-0.00431667594239116,0.999985814094543,0.00881841313093901,-0.999261736869812,0.0373931713402271,0.00877630244940519,-0.999163806438446,0.0399357751011848,0.00913344230502844,-0.999605417251587,0.0265618450939655,0.00506695220246911,-0.99919331073761,0.0398376509547234,0.00517187314108014,-0.999291181564331,0.0372880063951015,0.00472295470535755,-0.998600959777832,0.0526687726378441,-0.0805836543440819,0.082546629011631,0.993323862552643,-0.0806064680218697,0.0889256373047829,0.99277126789093,-0.0809392407536507,0.068807065486908,0.994341313838959,-0.0808872431516647,0.0889284759759903,0.992748200893402,-0.0812278091907501,0.0825593397021294,0.993270337581635,
- -0.0805666819214821,0.106631405651569,0.991029143333435,0.999304831027985,0.0282115023583174,0.0243724808096886,0.999176323413849,0.0323357246816158,0.0245176162570715,0.998862385749817,0.0405636467039585,0.0250700619071722,0.998967945575714,0.0408631712198257,0.019831757992506,0.99927818775177,0.0325101241469383,0.0196513123810291,0.998732686042786,0.0461308658123016,0.0201282612979412,0.993400752544403,0.0217049513012171,0.112622454762459,0.993400752544403,0.0217049475759268,0.112622454762459,0.993400752544403,0.0217049475759268,0.112622454762459,-0.998754858970642,0.0464362688362598,0.0182360298931599,-0.998520731925964,0.053677823394537,-0.00866359286010265,-0.998537063598633,0.0536906197667122,-0.00640829838812351,-0.998754858970642,0.0464362688362598,0.0182360298931599,-0.99853777885437,0.0536773540079594,-0.00640822807326913,-0.998512148857117,0.0536845922470093,0.00956599693745375,-0.998754858970642,0.0464362688362598,0.0182360298931599,-0.999386489391327,0.0337052904069424,0.00952833704650402,-0.948663175106049,0.0313891842961311,0.314727067947388,-0.992648482322693,0.104461722075939,0.061128955334425,-0.992648482322693,0.104461722075939,0.061128955334425,-0.992648482322693,0.104461722075939,0.061128955334425,-0.999848544597626,-0.00308496411889791,-0.0171282850205898,-0.999712407588959,-0.0165137276053429,-0.0173950735479593,-0.999805927276611,0.011081650853157,-0.0162874758243561,-0.999844133853912,-0.017023216933012,-0.00468459539115429,-0.999986171722412,-0.00389042333699763,-0.00353911961428821,-0.999333560466766,-0.0360966250300407,-0.00544500350952148,-0.999409437179565,0.0190352872014046,-0.0286056511104107,-0.999529123306274,0.0225334595888853,-0.0208268240094185,-0.999656319618225,0.0163517016917467,-0.0204951614141464,-0.99919068813324,0.00493169063702226,-0.0399207547307014,-0.999409437179565,0.0190352872014046,-0.0286056511104107,-0.999062299728394,0.0152659770101309,-0.0405155830085278,-0.999409437179565,0.0190352872014046,-0.0286056511104107,-0.999695599079132,0.00612002750858665,-0.0239016897976398,
- -0.999700963497162,0.00540242437273264,-0.0238486286252737,-0.999776661396027,0.0206926111131907,0.0042886477895081,-0.999975621700287,0.00581255601719022,0.00389386108145118,-0.999019026756287,0.0441343523561955,0.00363004393875599,-0.999819219112396,0.00590819772332907,0.0180737618356943,-0.999629020690918,0.0210539624094963,0.0172847919166088,-0.999767601490021,-0.0115707023069263,0.0181900076568127,-0.988016843795776,-0.135949745774269,-0.0730793103575706,-0.988016843795776,-0.135949715971947,-0.0730793103575706,-0.988016843795776,-0.135949730873108,-0.0730793103575706,-0.998283207416534,0.0198059659451246,-0.0551230907440186,-0.998204171657562,0.023078391328454,-0.0552794598042965,-0.998340606689453,0.0171596687287092,-0.0549690611660481,-0.997139573097229,0.00551195209845901,-0.0753823518753052,-0.996925890445709,0.0187727157026529,-0.0760679766535759,-0.996980905532837,0.0160273462533951,-0.0759753435850143,-0.998062670230865,0.0196132957935333,-0.0590439885854721,-0.998268127441406,0.00675195967778564,-0.0584409646689892,-0.998275876045227,0.0060169049538672,-0.05838767811656,0.997562527656555,-0.026092354208231,-0.064716599881649,0.997962951660156,-0.0298967231065035,-0.0563571378588676,0.99813848733902,-0.0240456033498049,-0.0560496300458908,0.996957898139954,-0.012169380672276,-0.0769862905144691,0.997562527656555,-0.026092354208231,-0.064716599881649,0.996723055839539,-0.0228717308491468,-0.0775903314352036,0.997562527656555,-0.026092354208231,-0.064716599881649,0.998128294944763,-0.0134456288069487,-0.0596581250429153,0.998141467571259,-0.012696385383606,-0.0596038363873959,-0.998124301433563,0.02107516489923,0.0574781820178032,-0.997735321521759,0.035296592861414,0.0572582371532917,-0.954013645648956,0.296444028615952,0.0444851703941822,-0.997735321521759,0.035296592861414,0.0572582371532917,-0.998509347438812,0.0208091773092747,0.0504603087902069,-0.998576521873474,0.0171104744076729,0.0505207888782024,-0.997195184230804,0.028687160462141,0.0691292509436607,-0.997735321521759,0.035296592861414,0.0572582371532917,
- -0.997400999069214,0.0181137546896935,0.0697375535964966,-0.997735321521759,0.035296592861414,0.0572582371532917,-0.998184323310852,0.0275530125945807,0.053562019020319,-0.998165607452393,0.0283327735960484,0.0535040237009525
- }
- TangentsW: *2788 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *4704 {
- a: 0,0,0.249999538064003,4.46428227718343e-010,0.249999687075615,0.249616727232933,0,0.25,0.50000011920929,0,0.500000059604645,0.249616742134094,0.749784827232361,2.5902409106493e-009,0.749784588813782,0.249616742134094,0,0.75,0.249999687075615,0.75,0.25,1,0,1,0.50000011920929,0.499924898147583,0.50000011920929,0.75,0.249999687075615,0.499233514070511,0,0.5,0,1.2568781375885,0.240647360682487,1.25873219966888,0.195089623332024,1.32213425636292,0.162611782550812,1.51858878135681,0,1.5180481672287,0.242891758680344,1.20587408542633,0.385750234127045,0.949820160865784,0.342993021011353,1.17869246006012,0.571222960948944,0.810653567314148,0.619672656059265,0.730930387973785,0.631382882595062,0.499925017356873,0.639141976833344,0.605213165283203,0.778972387313843,0.336345672607422,0.647735893726349,0.355651021003723,0.860607445240021,0.281918346881866,1,0,1,0.257905781269073,1,0.25,0.750000357627869,0.249616727232933,0.750000536441803,1.15393161692623e-009,1,0,0,0,0.249999403953552,5.33984856332381e-010,0.249999582767487,0.249616742134094,0.063594862818718,0.281497985124588,0,0.272249937057495,0.50000011920929,0,0.500000059604645,0.249616742134094,0.750000417232513,1.25756788253784,1,1.2568781375885,1,1.5180481672287,0.716458022594452,1.5180162191391,0.700160920619965,1.34467804431915,0.640259861946106,1.22542381286621,0.750000417232513,1,1,1,0.605774760246277,1.02266120910645,0.750000417232513,0.75,1,0.75,0.535210072994232,0.834527671337128,0.500000059604645,0.75,0.458685725927353,0.748897552490234,0.750000417232513,0.5,1,0.5,0.50000011920929,0.499924898147583,0.355984658002853,0.740163624286652,0.296133428812027,0.65792715549469,0.203679785132408,0.369493007659912,1,0.25,0.611500024795532,0.249833598732948,0.611270308494568,4.32935739809182e-005,1,0,0.609992146492004,1.25697803497314,1,1.2568781375885,1,1.5180481672287,0.609948217868805,1.51804804801941,0.610768258571625,1,1,1,0.611499667167664,0.75,1,0.75,0.611499190330505,0.500075101852417,1,0.5,0.749996960163116,1.5180481672287,1,1.5180481672287,
- 1,1.09413933753967,0.749623358249664,1.09413933753967,0.49999988079071,1.5180481672287,0.50001460313797,1.09413933753967,0.249994575977325,1.5180481672287,0.25019982457161,1.09413933753967,0,1.09413933753967,0,1.5180481672287,1.25063407421112,0.28023898601532,1.04925191402435,0.287471771240234,1.02559161186218,0.267938375473022,0.869291186332703,0.265816211700439,0.869262099266052,2.19941139221191e-005,1.25511157512665,-2.01753555302275e-005,0.836979508399963,1.51805424690247,0.705103695392609,1.268061876297,0.71985387802124,1.09414148330688,1,1.09414207935333,1,1.5180481672287,2.828125,1.48876953125,2.947265625,1.31787109375,2.94921875,1.4814453125,2.82421875,1.319091796875,2.611328125,1.5478515625,2.953125,1.197998046875,2.576171875,1.36328125,2.748046875,1.1640625,2.787109375,0.92730712890625,2.9453125,0.9554443359375,2.671875,1.1834716796875,2.583984375,1.295166015625,2.5625,1.253662109375,2.58203125,1.1551513671875,2.544921875,0.88519287109375,2.865234375,0.8702392578125,2.984375,0.729736328125,2.650390625,0.945404052734375,2.734375,0.8564453125,2.7890625,0.592041015625,2.974609375,0.60498046875,2.96484375,0.49609375,2.654296875,0.8538818359375,2.6875,0.7060546875,2.587890625,0.617431640625,2.591796875,0.49755859375,2.8828125,0.44921875,2.966796875,0.376953125,2.77734375,0.384765625,2.873046875,0.36767578125,2.87109375,0.1748046875,2.994140625,-0.0126953125,2.6640625,0.34814453125,2.5703125,0.35546875,2.69921875,0.22314453125,2.533203125,0.24462890625,2.478515625,0.08935546875,2.720703125,0.07275390625,2.55859375,-0.03515625,2.875,-0.0517578125,2.962890625,-0.2236328125,2.69921875,-0.0205078125,2.5625,-0.1513671875,2.861328125,-0.2021484375,2.958984375,-0.294921875,2.763671875,-0.27734375,2.712890625,-0.1669921875,2.59375,-0.306640625,2.736328125,-0.2890625,0.328857421875,0.7886962890625,0.328125,0.80322265625,0.26171875,0.8031005859375,0.328857421875,0.7886962890625,0.328125,0.80322265625,0.26171875,0.8031005859375,0.67431640625,0.2939453125,0.74365234375,0.3095703125,0.67236328125,0.306640625,0.328857421875,
- 0.7886962890625,0.328125,0.80322265625,0.26220703125,0.8028564453125,0.67431640625,0.2939453125,0.74365234375,0.3095703125,0.67236328125,0.306640625,0.328857421875,0.7886962890625,0.328125,0.80322265625,0.26220703125,0.802734375,0.328857421875,0.7886962890625,0.328125,0.80322265625,0.26171875,0.8028564453125,0.096435546875,0.8009033203125,0.0965576171875,0.7197265625,0.255126953125,0.801025390625,0.255126953125,0.801025390625,0.0965576171875,0.7197265625,0.25634765625,0.724853515625,0.10003662109375,0.64013671875,0.25830078125,0.646484375,0.2568359375,0.72265625,0.10003662109375,0.64013671875,0.2568359375,0.72265625,0.096435546875,0.71728515625,0.10113525390625,0.961517333984375,0.096923828125,0.8780517578125,0.255615234375,0.87860107421875,0.258056640625,0.949371337890625,0.0947265625,0.801025390625,0.0176239013671875,0.718505859375,0.09381103515625,0.718505859375,0.0947265625,0.801025390625,0.02099609375,0.8031005859375,0.329833984375,0.79833984375,0.258544921875,0.724365234375,0.334716796875,0.726806640625,0.258544921875,0.724365234375,0.2587890625,0.8011474609375,0.2578125,0.8736572265625,0.09710693359375,0.87652587890625,0.25439453125,0.80322265625,0.0966796875,0.8028564453125,0.09710693359375,0.87652587890625,0.748046875,0.20654296875,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.748046875,0.20654296875,0.751953125,0.1298828125,0.89404296875,0.13232421875,0.76416015625,0.38916015625,0.8974609375,0.296875,0.90478515625,0.3681640625,0.8974609375,0.296875,0.76416015625,0.38916015625,0.75244140625,0.31005859375,0.89111328125,0.2109375,0.96337890625,0.19580078125,0.970703125,0.2802734375,0.89111328125,0.2109375,0.970703125,0.2802734375,0.89892578125,0.29541015625,0.75244140625,0.03857421875,0.89404296875,0.13134765625,0.751953125,0.12890625,0.89404296875,0.13134765625,0.75244140625,0.03857421875,0.89453125,0.04541015625,0.7529296875,0.21044921875,0.669921875,0.3046875,0.67578125,0.21435546875,0.669921875,0.3046875,0.7529296875,0.21044921875,0.75,0.30810546875,0.8974609375,0.29541015625,0.74951171875,0.21142578125,
- 0.8896484375,0.21142578125,0.74951171875,0.21142578125,0.8974609375,0.29541015625,0.751953125,0.30810546875,0.419921875,0.754150390625,0.53369140625,0.665771484375,0.53564453125,0.7520751953125,0.53369140625,0.665771484375,0.419921875,0.754150390625,0.412109375,0.666748046875,0.5380859375,0.91455078125,0.53759765625,0.826416015625,0.6123046875,0.91302490234375,0.53759765625,0.826416015625,0.611328125,0.82666015625,0.4130859375,0.8271484375,0.3447265625,0.91363525390625,0.3447265625,0.8280029296875,0.3447265625,0.91363525390625,0.4130859375,0.8271484375,0.415771484375,0.9112548828125,0.5361328125,0.8265380859375,0.414794921875,0.91180419921875,0.414794921875,0.82763671875,0.5361328125,0.8265380859375,0.537109375,0.91436767578125,0.414306640625,0.8260498046875,0.419921875,0.75537109375,0.53662109375,0.825439453125,0.53662109375,0.825439453125,0.419921875,0.75537109375,0.5361328125,0.7535400390625,0.414306640625,0.91339111328125,0.53564453125,0.989067077636719,0.4140625,0.987945556640625,0.53759765625,0.91546630859375,0.74951171875,0.2080078125,0.751953125,0.1298828125,0.89404296875,0.13232421875,0.74951171875,0.2080078125,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.763671875,0.38916015625,0.8974609375,0.296875,0.904296875,0.36865234375,0.8974609375,0.296875,0.763671875,0.38916015625,0.75244140625,0.31005859375,0.89111328125,0.21044921875,0.96337890625,0.19580078125,0.97119140625,0.2802734375,0.89111328125,0.21044921875,0.97119140625,0.2802734375,0.89892578125,0.29541015625,0.75146484375,0.0390625,0.89404296875,0.13134765625,0.751953125,0.12939453125,0.89404296875,0.13134765625,0.75146484375,0.0390625,0.89453125,0.04541015625,0.75244140625,0.2119140625,0.669921875,0.30419921875,0.6767578125,0.2138671875,0.669921875,0.30419921875,0.75244140625,0.2119140625,0.75048828125,0.30810546875,0.8974609375,0.29541015625,0.75244140625,0.21337890625,0.8896484375,0.2109375,0.75244140625,0.21337890625,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.096435546875,0.8009033203125,0.096435546875,0.71923828125,0.25537109375,
- 0.8013916015625,0.25634765625,0.724853515625,0.25537109375,0.8013916015625,0.25830078125,0.64697265625,0.2568359375,0.72265625,0.09637451171875,0.71728515625,0.09637451171875,0.71728515625,0.098388671875,0.64208984375,0.25830078125,0.64697265625,0.0191192626953125,0.72119140625,0.0947265625,0.801025390625,0.02099609375,0.8031005859375,0.0947265625,0.801025390625,0.09405517578125,0.718017578125,0.258544921875,0.724365234375,0.329345703125,0.786865234375,0.25830078125,0.8013916015625,0.329345703125,0.786865234375,0.258544921875,0.724365234375,0.334228515625,0.7255859375,0.251953125,0.8720703125,0.0966796875,0.8028564453125,0.254638671875,0.8028564453125,0.0966796875,0.8028564453125,0.251953125,0.8720703125,0.09710693359375,0.87652587890625,0.7509765625,0.2080078125,0.751953125,0.1298828125,0.89404296875,0.13232421875,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.7646484375,0.38916015625,0.8974609375,0.296875,0.904296875,0.36865234375,0.8974609375,0.296875,0.7646484375,0.38916015625,0.7529296875,0.31005859375,0.89111328125,0.2099609375,0.96337890625,0.19580078125,0.97119140625,0.2802734375,0.89111328125,0.2099609375,0.97119140625,0.2802734375,0.89892578125,0.29541015625,0.89404296875,0.13134765625,0.7529296875,0.03955078125,0.89453125,0.04541015625,0.89404296875,0.13134765625,0.75146484375,0.12939453125,0.669921875,0.30419921875,0.6767578125,0.2138671875,0.75,0.30810546875,0.751953125,0.2119140625,0.75,0.30810546875,0.6767578125,0.2138671875,0.75390625,0.21337890625,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.8974609375,0.29541015625,0.8896484375,0.21044921875,0.53369140625,0.665771484375,0.419921875,0.754150390625,0.412109375,0.666748046875,0.419921875,0.754150390625,0.53369140625,0.665771484375,0.53564453125,0.7520751953125,0.6123046875,0.91302490234375,0.53759765625,0.826416015625,0.611328125,0.82666015625,0.5380859375,0.91455078125,0.53759765625,0.826416015625,0.6123046875,0.91302490234375,0.4130859375,0.8271484375,0.3447265625,0.91363525390625,0.344482421875,0.8280029296875,0.4130859375,0.8271484375,
- 0.415771484375,0.9112548828125,0.3447265625,0.91363525390625,0.414794921875,0.9117431640625,0.5361328125,0.8265380859375,0.537109375,0.9144287109375,0.5361328125,0.8265380859375,0.414794921875,0.82763671875,0.414306640625,0.8260498046875,0.419921875,0.7552490234375,0.53662109375,0.825439453125,0.5361328125,0.7535400390625,0.53662109375,0.825439453125,0.414306640625,0.91339111328125,0.53515625,0.98907470703125,0.4140625,0.987937927246094,0.414306640625,0.91339111328125,0.53759765625,0.91546630859375,0.096435546875,0.8009033203125,0.0965576171875,0.7197265625,0.255126953125,0.8011474609375,0.255126953125,0.8011474609375,0.0965576171875,0.7197265625,0.25634765625,0.724853515625,0.10009765625,0.6396484375,0.25830078125,0.646484375,0.2568359375,0.72265625,0.2568359375,0.72265625,0.0965576171875,0.71728515625,0.10101318359375,0.960968017578125,0.096923828125,0.8780517578125,0.256103515625,0.87884521484375,0.258056640625,0.949371337890625,0.0947265625,0.801025390625,0.0171356201171875,0.718994140625,0.09381103515625,0.718505859375,0.0947265625,0.801025390625,0.02099609375,0.8031005859375,0.329833984375,0.798095703125,0.258544921875,0.724365234375,0.334716796875,0.726806640625,0.258544921875,0.724365234375,0.2587890625,0.80126953125,0.25830078125,0.8736572265625,0.09710693359375,0.87652587890625,0.25439453125,0.803466796875,0.0966796875,0.8028564453125,0.09710693359375,0.87652587890625,0.419921875,0.754150390625,0.53369140625,0.665771484375,0.53564453125,0.7520751953125,0.53369140625,0.665771484375,0.419921875,0.754150390625,0.412109375,0.666748046875,0.5380859375,0.91455078125,0.53759765625,0.826416015625,0.6123046875,0.91302490234375,0.6123046875,0.91302490234375,0.53759765625,0.826416015625,0.611328125,0.82666015625,0.4130859375,0.8271484375,0.3447265625,0.91363525390625,0.3447265625,0.8280029296875,0.3447265625,0.91363525390625,0.4130859375,0.8271484375,0.415771484375,0.9112548828125,0.5361328125,0.8265380859375,0.414794921875,0.91180419921875,0.414794921875,0.82763671875,0.414794921875,0.91180419921875,0.5361328125,0.8265380859375,
- 0.537109375,0.9144287109375,0.414306640625,0.8260498046875,0.419921875,0.75537109375,0.53662109375,0.825439453125,0.419921875,0.75537109375,0.5361328125,0.7535400390625,0.53662109375,0.825439453125,0.414306640625,0.91339111328125,0.53515625,0.989067077636719,0.4140625,0.987945556640625,0.414306640625,0.91339111328125,0.53759765625,0.91546630859375,0.75146484375,0.20751953125,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.751953125,0.1298828125,0.89404296875,0.13232421875,0.76513671875,0.38916015625,0.8974609375,0.296875,0.904296875,0.36865234375,0.8974609375,0.296875,0.7529296875,0.31005859375,0.89111328125,0.21044921875,0.96337890625,0.19580078125,0.97119140625,0.2802734375,0.89111328125,0.21044921875,0.97119140625,0.2802734375,0.89892578125,0.29541015625,0.7529296875,0.03955078125,0.89404296875,0.13134765625,0.75146484375,0.12939453125,0.89404296875,0.13134765625,0.7529296875,0.03955078125,0.89453125,0.04541015625,0.751953125,0.2119140625,0.75,0.30810546875,0.6767578125,0.2138671875,0.669921875,0.30419921875,0.6767578125,0.2138671875,0.75,0.30810546875,0.8974609375,0.29541015625,0.75390625,0.212890625,0.8896484375,0.2109375,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.096435546875,0.8009033203125,0.09649658203125,0.719482421875,0.25537109375,0.8013916015625,0.09649658203125,0.719482421875,0.25634765625,0.724853515625,0.25537109375,0.8013916015625,0.10028076171875,0.639892578125,0.2568359375,0.72265625,0.09637451171875,0.717529296875,0.2568359375,0.72265625,0.10028076171875,0.639892578125,0.25830078125,0.646484375,0.101318359375,0.96099853515625,0.255859375,0.8770751953125,0.258056640625,0.949371337890625,0.096923828125,0.8780517578125,0.017333984375,0.718994140625,0.0947265625,0.801025390625,0.02099609375,0.8031005859375,0.0947265625,0.801025390625,0.0938720703125,0.718505859375,0.258544921875,0.724365234375,0.330322265625,0.7999267578125,0.25830078125,0.801513671875,0.258544921875,0.724365234375,0.334716796875,0.726806640625,0.258056640625,0.8741455078125,0.0966796875,0.8028564453125,0.254638671875,
- 0.802978515625,0.0966796875,0.8028564453125,0.09710693359375,0.87652587890625,0.096435546875,0.8009033203125,0.096435546875,0.719482421875,0.25537109375,0.80126953125,0.25634765625,0.724853515625,0.025054931640625,0.7265625,0.0947265625,0.801025390625,0.02099609375,0.8031005859375,0.0947265625,0.801025390625,0.0938720703125,0.718505859375,0.258544921875,0.724365234375,0.329345703125,0.786865234375,0.25830078125,0.80126953125,0.329345703125,0.786865234375,0.258544921875,0.724365234375,0.334716796875,0.726806640625,0.251953125,0.8720703125,0.0966796875,0.8028564453125,0.254638671875,0.8028564453125,0.0966796875,0.8028564453125,0.251953125,0.8720703125,0.09710693359375,0.87652587890625,0.4169921875,0.75341796875,0.41455078125,0.666015625,0.53466796875,0.6650390625,0.4169921875,0.75341796875,0.53466796875,0.6650390625,0.53564453125,0.7520751953125,0.61181640625,0.91363525390625,0.53759765625,0.826416015625,0.611328125,0.82666015625,0.53759765625,0.826416015625,0.61181640625,0.91363525390625,0.5380859375,0.9141845703125,0.344482421875,0.9136962890625,0.34326171875,0.8289794921875,0.416259765625,0.91241455078125,0.416259765625,0.91241455078125,0.34326171875,0.8289794921875,0.4130859375,0.8271484375,0.41259765625,0.91278076171875,0.5361328125,0.8265380859375,0.53662109375,0.9140625,0.5361328125,0.8265380859375,0.41259765625,0.91278076171875,0.414794921875,0.82763671875,0.414306640625,0.8260498046875,0.416748046875,0.754150390625,0.53662109375,0.825439453125,0.416748046875,0.754150390625,0.5361328125,0.7535400390625,0.53662109375,0.825439453125,0.537109375,0.91552734375,0.53662109375,0.988693237304688,0.412109375,0.913818359375,0.414794921875,0.987274169921875,0.75,0.20703125,0.751953125,0.1298828125,0.89404296875,0.13232421875,0.75,0.20703125,0.89404296875,0.13232421875,0.8935546875,0.20947265625,0.7734375,0.38623046875,0.8974609375,0.296875,0.90478515625,0.36865234375,0.75244140625,0.31005859375,0.8974609375,0.296875,0.890625,0.2109375,0.96337890625,0.19580078125,0.97119140625,0.27978515625,0.890625,0.2109375,0.97119140625,
- 0.27978515625,0.89892578125,0.29541015625,0.67578125,0.21435546875,0.75146484375,0.20947265625,0.67431640625,0.29248046875,0.67431640625,0.29248046875,0.75146484375,0.20947265625,0.75048828125,0.30810546875,0.8974609375,0.29541015625,0.75244140625,0.2109375,0.8896484375,0.21142578125,0.75244140625,0.2109375,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.096435546875,0.8009033203125,0.0965576171875,0.7197265625,0.255126953125,0.801025390625,0.0965576171875,0.7197265625,0.25634765625,0.724853515625,0.255126953125,0.801025390625,0.096435546875,0.71728515625,0.1002197265625,0.639892578125,0.2568359375,0.72265625,0.2568359375,0.72265625,0.25830078125,0.646484375,0.10125732421875,0.961181640625,0.255615234375,0.87841796875,0.258056640625,0.949371337890625,0.096923828125,0.8780517578125,0.01727294921875,0.71875,0.0947265625,0.801025390625,0.02099609375,0.8031005859375,0.0947265625,0.801025390625,0.09375,0.718505859375,0.258544921875,0.724365234375,0.329833984375,0.798583984375,0.2587890625,0.8011474609375,0.258544921875,0.724365234375,0.334716796875,0.726806640625,0.09710693359375,0.87652587890625,0.254638671875,0.8033447265625,0.2578125,0.8736572265625,0.254638671875,0.8033447265625,0.09710693359375,0.87652587890625,0.0966796875,0.8028564453125,0.096435546875,0.8009033203125,0.0965576171875,0.7197265625,0.255126953125,0.8009033203125,0.255126953125,0.8009033203125,0.0965576171875,0.7197265625,0.25634765625,0.724853515625,0.10015869140625,0.64013671875,0.25830078125,0.646484375,0.2568359375,0.72265625,0.2568359375,0.72265625,0.096435546875,0.71728515625,0.0947265625,0.801025390625,0.01763916015625,0.718505859375,0.09375,0.718505859375,0.0947265625,0.801025390625,0.02099609375,0.8031005859375,0.329345703125,0.786865234375,0.258544921875,0.724365234375,0.334716796875,0.726806640625,0.258544921875,0.724365234375,0.329345703125,0.786865234375,0.258544921875,0.801025390625,0.251953125,0.8720703125,0.09710693359375,0.87652587890625,0.25439453125,0.80322265625,0.0966796875,0.8028564453125,0.25439453125,0.80322265625,0.09710693359375,
- 0.87652587890625,0.416748046875,0.75341796875,0.53466796875,0.6650390625,0.53564453125,0.7520751953125,0.416748046875,0.75341796875,0.41455078125,0.666015625,0.53466796875,0.6650390625,0.53759765625,0.826416015625,0.61181640625,0.91363525390625,0.5380859375,0.9141845703125,0.61181640625,0.91363525390625,0.53759765625,0.826416015625,0.611328125,0.82666015625,0.343505859375,0.8289794921875,0.4130859375,0.8271484375,0.416748046875,0.9127197265625,0.344482421875,0.9136962890625,0.5361328125,0.8265380859375,0.41259765625,0.912841796875,0.414794921875,0.82763671875,0.5361328125,0.8265380859375,0.53662109375,0.9140625,0.53662109375,0.825439453125,0.416748046875,0.7540283203125,0.5361328125,0.7535400390625,0.414306640625,0.8260498046875,0.416748046875,0.7540283203125,0.53662109375,0.825439453125,0.412109375,0.913818359375,0.53662109375,0.988548278808594,0.414794921875,0.987274169921875,0.537109375,0.91552734375,0.412109375,0.913818359375,0.5341796875,0.666259765625,0.419921875,0.75341796875,0.41357421875,0.665771484375,0.53564453125,0.7520751953125,0.6123046875,0.91265869140625,0.53759765625,0.826416015625,0.611328125,0.82666015625,0.53759765625,0.826416015625,0.5380859375,0.9146728515625,0.412841796875,0.826904296875,0.345458984375,0.9139404296875,0.343017578125,0.829345703125,0.415771484375,0.91021728515625,0.4150390625,0.91070556640625,0.5361328125,0.8265380859375,0.537109375,0.91448974609375,0.5361328125,0.8265380859375,0.41357421875,0.827392578125,0.413330078125,0.8258056640625,0.420166015625,0.75390625,0.53662109375,0.825439453125,0.420166015625,0.75390625,0.5361328125,0.7535400390625,0.53662109375,0.825439453125,0.414306640625,0.91357421875,0.53662109375,0.91552734375,0.4150390625,0.987838745117188,0.53564453125,0.989051818847656,0.419921875,0.754150390625,0.53369140625,0.665771484375,0.53564453125,0.7520751953125,0.53369140625,0.665771484375,0.419921875,0.754150390625,0.412109375,0.666748046875,0.5380859375,0.91455078125,0.53759765625,0.826416015625,0.6123046875,0.91302490234375,0.6123046875,0.91302490234375,0.53759765625,
- 0.826416015625,0.611328125,0.82666015625,0.4130859375,0.8271484375,0.3447265625,0.91363525390625,0.3447265625,0.8280029296875,0.3447265625,0.91363525390625,0.4130859375,0.8271484375,0.415771484375,0.9112548828125,0.5361328125,0.8265380859375,0.414794921875,0.91180419921875,0.414794921875,0.82763671875,0.414794921875,0.91180419921875,0.5361328125,0.8265380859375,0.537109375,0.9144287109375,0.414306640625,0.8260498046875,0.419921875,0.75537109375,0.53662109375,0.825439453125,0.419921875,0.75537109375,0.5361328125,0.7535400390625,0.53662109375,0.825439453125,0.414306640625,0.91339111328125,0.53515625,0.989067077636719,0.4140625,0.987945556640625,0.53515625,0.989067077636719,0.414306640625,0.91339111328125,0.53759765625,0.91546630859375,0.75146484375,0.20751953125,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.75146484375,0.20751953125,0.751953125,0.1298828125,0.89404296875,0.13232421875,0.76513671875,0.38916015625,0.8974609375,0.296875,0.904296875,0.36865234375,0.8974609375,0.296875,0.76513671875,0.38916015625,0.7529296875,0.31005859375,0.89111328125,0.21044921875,0.96337890625,0.19580078125,0.97119140625,0.2802734375,0.89111328125,0.21044921875,0.97119140625,0.2802734375,0.89892578125,0.29541015625,0.7529296875,0.03955078125,0.89404296875,0.13134765625,0.75146484375,0.12939453125,0.89404296875,0.13134765625,0.7529296875,0.03955078125,0.89453125,0.04541015625,0.751953125,0.2119140625,0.75,0.30810546875,0.6767578125,0.2138671875,0.669921875,0.30419921875,0.6767578125,0.2138671875,0.75,0.30810546875,0.8974609375,0.29541015625,0.75390625,0.212890625,0.8896484375,0.2109375,0.75390625,0.212890625,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.53369140625,0.665771484375,0.419921875,0.754150390625,0.412109375,0.666748046875,0.419921875,0.754150390625,0.53369140625,0.665771484375,0.53564453125,0.7520751953125,0.6123046875,0.91302490234375,0.53759765625,0.826416015625,0.611328125,0.82666015625,0.5380859375,0.91455078125,0.53759765625,0.826416015625,0.6123046875,0.91302490234375,0.4130859375,0.8271484375,0.3447265625,
- 0.91363525390625,0.344482421875,0.8280029296875,0.4130859375,0.8271484375,0.415771484375,0.9112548828125,0.3447265625,0.91363525390625,0.414794921875,0.91180419921875,0.5361328125,0.8265380859375,0.537109375,0.91436767578125,0.5361328125,0.8265380859375,0.414794921875,0.91180419921875,0.414794921875,0.82763671875,0.414306640625,0.8260498046875,0.419921875,0.7552490234375,0.53662109375,0.825439453125,0.419921875,0.7552490234375,0.5361328125,0.7535400390625,0.53662109375,0.825439453125,0.414306640625,0.91339111328125,0.53564453125,0.989067077636719,0.4140625,0.987945556640625,0.53564453125,0.989067077636719,0.414306640625,0.91339111328125,0.53759765625,0.91546630859375,0.74951171875,0.2080078125,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.74951171875,0.2080078125,0.751953125,0.1298828125,0.89404296875,0.13232421875,0.763671875,0.38916015625,0.8974609375,0.296875,0.904296875,0.36865234375,0.8974609375,0.296875,0.763671875,0.38916015625,0.75244140625,0.31005859375,0.89111328125,0.21044921875,0.96337890625,0.19580078125,0.97119140625,0.2802734375,0.89111328125,0.21044921875,0.97119140625,0.2802734375,0.89892578125,0.29541015625,0.75146484375,0.0390625,0.89404296875,0.13134765625,0.751953125,0.12939453125,0.89404296875,0.13134765625,0.75146484375,0.0390625,0.89453125,0.04541015625,0.75244140625,0.2119140625,0.669921875,0.30419921875,0.6767578125,0.2138671875,0.669921875,0.30419921875,0.75244140625,0.2119140625,0.75048828125,0.30810546875,0.8974609375,0.29541015625,0.75244140625,0.21337890625,0.8896484375,0.2109375,0.75244140625,0.21337890625,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.096435546875,0.8009033203125,0.09649658203125,0.7197265625,0.25537109375,0.8013916015625,0.25537109375,0.8013916015625,0.09649658203125,0.7197265625,0.25634765625,0.724853515625,0.1002197265625,0.64013671875,0.25830078125,0.646484375,0.2568359375,0.72265625,0.2568359375,0.72265625,0.096435546875,0.71728515625,0.10125732421875,0.961517333984375,0.096923828125,0.8780517578125,0.255859375,0.876953125,0.258056640625,0.949371337890625,
- 0.0947265625,0.801025390625,0.0175628662109375,0.718505859375,0.09375,0.718505859375,0.0947265625,0.801025390625,0.02099609375,0.8031005859375,0.330078125,0.8001708984375,0.258544921875,0.724365234375,0.334716796875,0.726806640625,0.258544921875,0.724365234375,0.25830078125,0.8013916015625,0.258056640625,0.8740234375,0.0966796875,0.8028564453125,0.254638671875,0.802978515625,0.0966796875,0.8028564453125,0.258056640625,0.8740234375,0.09710693359375,0.87652587890625,0.419921875,0.754150390625,0.53369140625,0.665771484375,0.53564453125,0.7520751953125,0.53369140625,0.665771484375,0.419921875,0.754150390625,0.412109375,0.666748046875,0.5380859375,0.91455078125,0.53759765625,0.826416015625,0.6123046875,0.9129638671875,0.6123046875,0.9129638671875,0.53759765625,0.826416015625,0.611328125,0.82666015625,0.4130859375,0.8271484375,0.3447265625,0.91363525390625,0.344482421875,0.8280029296875,0.3447265625,0.91363525390625,0.4130859375,0.8271484375,0.416015625,0.91119384765625,0.5361328125,0.8265380859375,0.414794921875,0.9117431640625,0.414794921875,0.82763671875,0.414794921875,0.9117431640625,0.5361328125,0.8265380859375,0.537109375,0.9144287109375,0.53662109375,0.825439453125,0.419921875,0.7552490234375,0.5361328125,0.7535400390625,0.414306640625,0.8260498046875,0.419921875,0.7552490234375,0.53662109375,0.825439453125,0.414306640625,0.91339111328125,0.53564453125,0.98907470703125,0.4140625,0.987937927246094,0.414306640625,0.91339111328125,0.53759765625,0.91546630859375,0.74951171875,0.2080078125,0.751953125,0.1298828125,0.89404296875,0.13232421875,0.74951171875,0.2080078125,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.77392578125,0.38623046875,0.8974609375,0.296875,0.904296875,0.36865234375,0.8974609375,0.296875,0.77392578125,0.38623046875,0.75244140625,0.31005859375,0.89111328125,0.21044921875,0.96337890625,0.19580078125,0.97119140625,0.2802734375,0.89111328125,0.21044921875,0.97119140625,0.2802734375,0.89892578125,0.29541015625,0.67431640625,0.29248046875,0.75244140625,0.2119140625,0.75048828125,0.30810546875,0.75244140625,
- 0.2119140625,0.67431640625,0.29248046875,0.6767578125,0.2138671875,0.75244140625,0.21337890625,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.8974609375,0.29541015625,0.75244140625,0.21337890625,0.8896484375,0.2109375,0.53369140625,0.665771484375,0.419921875,0.754150390625,0.412109375,0.666748046875,0.419921875,0.754150390625,0.53369140625,0.665771484375,0.53564453125,0.7520751953125,0.6123046875,0.9129638671875,0.53759765625,0.826416015625,0.611328125,0.82666015625,0.5380859375,0.91455078125,0.53759765625,0.826416015625,0.6123046875,0.9129638671875,0.4130859375,0.8271484375,0.3447265625,0.91363525390625,0.344482421875,0.8280029296875,0.4130859375,0.8271484375,0.416015625,0.91119384765625,0.3447265625,0.91363525390625,0.414794921875,0.9117431640625,0.5361328125,0.8265380859375,0.537109375,0.9144287109375,0.5361328125,0.8265380859375,0.414794921875,0.9117431640625,0.414794921875,0.82763671875,0.414306640625,0.8260498046875,0.419921875,0.7552490234375,0.53662109375,0.825439453125,0.419921875,0.7552490234375,0.5361328125,0.7535400390625,0.53662109375,0.825439453125,0.414306640625,0.91339111328125,0.53564453125,0.98907470703125,0.4140625,0.987937927246094,0.53564453125,0.98907470703125,0.414306640625,0.91339111328125,0.53759765625,0.91546630859375,0.7509765625,0.20751953125,0.751953125,0.1298828125,0.89404296875,0.13232421875,0.7509765625,0.20751953125,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.7646484375,0.38916015625,0.8974609375,0.296875,0.904296875,0.36865234375,0.8974609375,0.296875,0.7646484375,0.38916015625,0.7529296875,0.31005859375,0.89111328125,0.2099609375,0.96337890625,0.19580078125,0.97119140625,0.2802734375,0.89111328125,0.2099609375,0.97119140625,0.2802734375,0.89892578125,0.29541015625,0.7529296875,0.03955078125,0.89404296875,0.13134765625,0.75146484375,0.12939453125,0.89404296875,0.13134765625,0.7529296875,0.03955078125,0.89453125,0.04541015625,0.751953125,0.2119140625,0.75,0.30810546875,0.6767578125,0.2138671875,0.669921875,0.30419921875,0.6767578125,0.2138671875,0.75,0.30810546875,
- 0.8974609375,0.29541015625,0.75390625,0.21337890625,0.8896484375,0.21044921875,0.75390625,0.21337890625,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.74951171875,0.2080078125,0.751953125,0.1298828125,0.89404296875,0.13232421875,0.74951171875,0.2080078125,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.76318359375,0.38916015625,0.8974609375,0.296875,0.904296875,0.36865234375,0.8974609375,0.296875,0.76318359375,0.38916015625,0.75244140625,0.31005859375,0.89111328125,0.2099609375,0.96337890625,0.19580078125,0.97119140625,0.2802734375,0.89111328125,0.2099609375,0.97119140625,0.2802734375,0.89892578125,0.29541015625,0.89404296875,0.13134765625,0.75146484375,0.03955078125,0.89453125,0.04541015625,0.75146484375,0.03955078125,0.89404296875,0.13134765625,0.751953125,0.12939453125,0.669921875,0.30419921875,0.75244140625,0.2119140625,0.75048828125,0.30810546875,0.75244140625,0.2119140625,0.669921875,0.30419921875,0.6767578125,0.2138671875,0.75244140625,0.21337890625,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.8974609375,0.29541015625,0.75244140625,0.21337890625,0.8896484375,0.2109375,0.096435546875,0.8009033203125,0.0965576171875,0.7197265625,0.255126953125,0.801025390625,0.0965576171875,0.7197265625,0.25634765625,0.724853515625,0.255126953125,0.801025390625,0.096435546875,0.71728515625,0.10009765625,0.64013671875,0.2568359375,0.72265625,0.2568359375,0.72265625,0.25830078125,0.646484375,0.1011962890625,0.961456298828125,0.255615234375,0.8785400390625,0.258056640625,0.949371337890625,0.096923828125,0.8780517578125,0.0175628662109375,0.718505859375,0.0947265625,0.801025390625,0.02099609375,0.8031005859375,0.0947265625,0.801025390625,0.0175628662109375,0.718505859375,0.09375,0.718505859375,0.258544921875,0.724365234375,0.329833984375,0.7984619140625,0.2587890625,0.801025390625,0.258544921875,0.724365234375,0.334716796875,0.726806640625,0.09710693359375,0.87652587890625,0.25439453125,0.80322265625,0.2578125,0.8736572265625,0.25439453125,0.80322265625,0.09710693359375,0.87652587890625,0.0966796875,0.8028564453125,
- 0.74951171875,0.2080078125,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.74951171875,0.2080078125,0.751953125,0.1298828125,0.89404296875,0.13232421875,0.763671875,0.38916015625,0.8974609375,0.296875,0.904296875,0.36865234375,0.8974609375,0.296875,0.763671875,0.38916015625,0.75244140625,0.31005859375,0.89111328125,0.21044921875,0.96337890625,0.19580078125,0.97119140625,0.2802734375,0.89111328125,0.21044921875,0.97119140625,0.2802734375,0.89892578125,0.29541015625,0.75146484375,0.0390625,0.89404296875,0.13134765625,0.751953125,0.12939453125,0.89404296875,0.13134765625,0.75146484375,0.0390625,0.89453125,0.04541015625,0.75244140625,0.2119140625,0.669921875,0.30419921875,0.6767578125,0.2138671875,0.669921875,0.30419921875,0.75244140625,0.2119140625,0.75048828125,0.30810546875,0.8974609375,0.29541015625,0.75244140625,0.21337890625,0.8896484375,0.2109375,0.75244140625,0.21337890625,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.74951171875,0.2080078125,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.74951171875,0.2080078125,0.751953125,0.1298828125,0.89404296875,0.13232421875,0.763671875,0.38916015625,0.8974609375,0.296875,0.904296875,0.36865234375,0.8974609375,0.296875,0.763671875,0.38916015625,0.75244140625,0.31005859375,0.89111328125,0.21044921875,0.96337890625,0.19580078125,0.97119140625,0.2802734375,0.89111328125,0.21044921875,0.97119140625,0.2802734375,0.89892578125,0.29541015625,0.89404296875,0.13134765625,0.75146484375,0.0390625,0.89453125,0.04541015625,0.75146484375,0.0390625,0.89404296875,0.13134765625,0.751953125,0.12939453125,0.669921875,0.30419921875,0.75244140625,0.2119140625,0.75048828125,0.30810546875,0.75244140625,0.2119140625,0.669921875,0.30419921875,0.6767578125,0.2138671875,0.75244140625,0.21337890625,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.8974609375,0.29541015625,0.75244140625,0.21337890625,0.8896484375,0.2109375,0.416748046875,0.75341796875,0.53466796875,0.6650390625,0.53564453125,0.7520751953125,0.416748046875,0.75341796875,0.41455078125,0.666015625,0.53466796875,
- 0.6650390625,0.53759765625,0.826416015625,0.61181640625,0.91363525390625,0.5380859375,0.9141845703125,0.61181640625,0.91363525390625,0.53759765625,0.826416015625,0.611328125,0.82666015625,0.343505859375,0.8289794921875,0.4130859375,0.8271484375,0.416748046875,0.91265869140625,0.343505859375,0.8289794921875,0.344482421875,0.9136962890625,0.5361328125,0.8265380859375,0.41259765625,0.91278076171875,0.414794921875,0.82763671875,0.41259765625,0.91278076171875,0.5361328125,0.8265380859375,0.53662109375,0.9140625,0.53662109375,0.825439453125,0.416748046875,0.7540283203125,0.5361328125,0.7535400390625,0.414306640625,0.8260498046875,0.416748046875,0.7540283203125,0.53662109375,0.825439453125,0.412109375,0.913818359375,0.53662109375,0.988555908203125,0.414794921875,0.987274169921875,0.537109375,0.91552734375,0.412109375,0.913818359375,0.748046875,0.20654296875,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.748046875,0.20654296875,0.751953125,0.1298828125,0.89404296875,0.13232421875,0.763671875,0.38916015625,0.8974609375,0.296875,0.904296875,0.36865234375,0.8974609375,0.296875,0.763671875,0.38916015625,0.75244140625,0.31005859375,0.89111328125,0.21044921875,0.96337890625,0.19580078125,0.97119140625,0.2802734375,0.89111328125,0.21044921875,0.97119140625,0.2802734375,0.89892578125,0.29541015625,0.751953125,0.0390625,0.89404296875,0.13134765625,0.751953125,0.12890625,0.89404296875,0.13134765625,0.751953125,0.0390625,0.89453125,0.0458984375,0.751953125,0.21044921875,0.669921875,0.3046875,0.67578125,0.21435546875,0.669921875,0.3046875,0.751953125,0.21044921875,0.75048828125,0.30810546875,0.8974609375,0.29541015625,0.74951171875,0.2119140625,0.8896484375,0.2109375,0.74951171875,0.2119140625,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.096435546875,0.8009033203125,0.0965576171875,0.7197265625,0.255126953125,0.801025390625,0.255126953125,0.801025390625,0.0965576171875,0.7197265625,0.25634765625,0.724853515625,0.10009765625,0.64013671875,0.25830078125,0.646484375,0.2568359375,0.72265625,0.10009765625,0.64013671875,
- 0.2568359375,0.72265625,0.096435546875,0.71728515625,0.0947265625,0.801025390625,0.0175628662109375,0.718505859375,0.09375,0.718505859375,0.0175628662109375,0.718505859375,0.0947265625,0.801025390625,0.02099609375,0.8031005859375,0.329345703125,0.786865234375,0.258544921875,0.724365234375,0.334716796875,0.726806640625,0.258544921875,0.724365234375,0.329345703125,0.786865234375,0.258544921875,0.801025390625,0.251953125,0.8720703125,0.09710693359375,0.87652587890625,0.25439453125,0.80322265625,0.0966796875,0.8028564453125,0.25439453125,0.80322265625,0.09710693359375,0.87652587890625,0.53369140625,0.665771484375,0.419921875,0.754150390625,0.412109375,0.666748046875,0.419921875,0.754150390625,0.53369140625,0.665771484375,0.53564453125,0.7520751953125,0.6123046875,0.9129638671875,0.53759765625,0.826416015625,0.611328125,0.82666015625,0.5380859375,0.91455078125,0.53759765625,0.826416015625,0.6123046875,0.9129638671875,0.4130859375,0.8271484375,0.3447265625,0.91363525390625,0.344482421875,0.8280029296875,0.4130859375,0.8271484375,0.416015625,0.91119384765625,0.3447265625,0.91363525390625,0.414794921875,0.9117431640625,0.5361328125,0.8265380859375,0.537109375,0.9144287109375,0.5361328125,0.8265380859375,0.414794921875,0.9117431640625,0.414794921875,0.82763671875,0.414306640625,0.8260498046875,0.419921875,0.7552490234375,0.53662109375,0.825439453125,0.419921875,0.7552490234375,0.5361328125,0.7535400390625,0.53662109375,0.825439453125,0.414306640625,0.91339111328125,0.53515625,0.989082336425781,0.4140625,0.987945556640625,0.414306640625,0.91339111328125,0.53759765625,0.91546630859375,0.748046875,0.20654296875,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.748046875,0.20654296875,0.751953125,0.1298828125,0.89404296875,0.13232421875,0.763671875,0.38916015625,0.8974609375,0.296875,0.904296875,0.3681640625,0.8974609375,0.296875,0.763671875,0.38916015625,0.75244140625,0.31005859375,0.89111328125,0.21044921875,0.96337890625,0.19580078125,0.97119140625,0.2802734375,0.89111328125,0.21044921875,0.97119140625,0.2802734375,0.89892578125,
- 0.29541015625,0.89404296875,0.13134765625,0.751953125,0.0390625,0.89453125,0.0458984375,0.751953125,0.0390625,0.89404296875,0.13134765625,0.751953125,0.12890625,0.669921875,0.3046875,0.751953125,0.21044921875,0.75048828125,0.30810546875,0.751953125,0.21044921875,0.669921875,0.3046875,0.67578125,0.21435546875,0.74951171875,0.2119140625,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.8974609375,0.29541015625,0.74951171875,0.2119140625,0.8896484375,0.2109375,0.419921875,0.75341796875,0.53369140625,0.666015625,0.53564453125,0.7520751953125,0.419921875,0.75341796875,0.41357421875,0.665771484375,0.53759765625,0.826416015625,0.6123046875,0.9127197265625,0.5380859375,0.91461181640625,0.53759765625,0.826416015625,0.611328125,0.82666015625,0.345458984375,0.9139404296875,0.343017578125,0.829345703125,0.412841796875,0.826904296875,0.345458984375,0.9139404296875,0.412841796875,0.826904296875,0.415771484375,0.9102783203125,0.5361328125,0.8265380859375,0.4150390625,0.91082763671875,0.41357421875,0.827392578125,0.5361328125,0.8265380859375,0.537109375,0.91448974609375,0.413330078125,0.8258056640625,0.420166015625,0.75390625,0.53662109375,0.825439453125,0.420166015625,0.75390625,0.5361328125,0.7535400390625,0.53662109375,0.825439453125,0.414306640625,0.91357421875,0.53662109375,0.91552734375,0.4150390625,0.987838745117188,0.53564453125,0.989051818847656,0.4150390625,0.987838745117188,0.53662109375,0.91552734375,0.096435546875,0.8009033203125,0.095703125,0.718994140625,0.255126953125,0.80126953125,0.25634765625,0.724853515625,0.255126953125,0.80126953125,0.09503173828125,0.7158203125,0.25830078125,0.6474609375,0.2568359375,0.72265625,0.09832763671875,0.641845703125,0.25830078125,0.6474609375,0.098876953125,0.958587646484375,0.096923828125,0.8780517578125,0.258544921875,0.95068359375,0.096923828125,0.8780517578125,0.2578125,0.87799072265625,0.018585205078125,0.7216796875,0.0947265625,0.801025390625,0.02099609375,0.8031005859375,0.0947265625,0.801025390625,0.095703125,0.7177734375,0.258544921875,0.724365234375,0.328857421875,
- 0.799072265625,0.256591796875,0.80126953125,0.258544921875,0.724365234375,0.336181640625,0.725341796875,0.09710693359375,0.87652587890625,0.254638671875,0.80078125,0.260009765625,0.8729248046875,0.254638671875,0.80078125,0.09710693359375,0.87652587890625,0.0966796875,0.8028564453125,0.74951171875,0.2080078125,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.74951171875,0.2080078125,0.75244140625,0.1298828125,0.89404296875,0.13232421875,0.7626953125,0.3896484375,0.8974609375,0.296875,0.904296875,0.36865234375,0.8974609375,0.296875,0.7626953125,0.3896484375,0.7529296875,0.31005859375,0.89111328125,0.2099609375,0.96337890625,0.19580078125,0.97119140625,0.2802734375,0.89111328125,0.2099609375,0.97119140625,0.2802734375,0.89892578125,0.29541015625,0.89404296875,0.13134765625,0.7509765625,0.03955078125,0.89453125,0.04541015625,0.7509765625,0.03955078125,0.89404296875,0.13134765625,0.751953125,0.12939453125,0.669921875,0.30419921875,0.75244140625,0.21240234375,0.75048828125,0.30859375,0.75244140625,0.21240234375,0.669921875,0.30419921875,0.6767578125,0.2138671875,0.75244140625,0.21337890625,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.8974609375,0.29541015625,0.75244140625,0.21337890625,0.8896484375,0.21044921875,0.096435546875,0.8009033203125,0.09649658203125,0.719482421875,0.255126953125,0.801025390625,0.255126953125,0.801025390625,0.09649658203125,0.719482421875,0.25634765625,0.724853515625,0.1002197265625,0.64013671875,0.2568359375,0.72265625,0.096435546875,0.717041015625,0.2568359375,0.72265625,0.1002197265625,0.64013671875,0.25830078125,0.646484375,0.0947265625,0.801025390625,0.0169677734375,0.718505859375,0.09442138671875,0.71826171875,0.0947265625,0.801025390625,0.02099609375,0.8031005859375,0.329345703125,0.786865234375,0.258544921875,0.724365234375,0.334716796875,0.726806640625,0.258544921875,0.724365234375,0.329345703125,0.786865234375,0.258544921875,0.801025390625,0.09710693359375,0.87652587890625,0.25439453125,0.802734375,0.251953125,0.8720703125,0.25439453125,0.802734375,0.09710693359375,0.87652587890625,
- 0.0966796875,0.8028564453125,0.89404296875,0.13232421875,0.75146484375,0.20751953125,0.751953125,0.1298828125,0.75146484375,0.20751953125,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.76513671875,0.38916015625,0.8974609375,0.296875,0.904296875,0.36865234375,0.8974609375,0.296875,0.76513671875,0.38916015625,0.7529296875,0.31005859375,0.89111328125,0.2099609375,0.96337890625,0.19580078125,0.97119140625,0.2802734375,0.89111328125,0.2099609375,0.97119140625,0.2802734375,0.89892578125,0.29541015625,0.89404296875,0.13134765625,0.7529296875,0.03955078125,0.89453125,0.04541015625,0.7529296875,0.03955078125,0.89404296875,0.13134765625,0.75146484375,0.12939453125,0.669921875,0.30419921875,0.6767578125,0.2138671875,0.75,0.30810546875,0.751953125,0.2119140625,0.75,0.30810546875,0.6767578125,0.2138671875,0.75390625,0.21337890625,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.8974609375,0.29541015625,0.75390625,0.21337890625,0.8896484375,0.2109375,0.7509765625,0.20751953125,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.7509765625,0.20751953125,0.751953125,0.1298828125,0.89404296875,0.13232421875,0.76513671875,0.38916015625,0.8974609375,0.296875,0.904296875,0.3681640625,0.8974609375,0.296875,0.76513671875,0.38916015625,0.75244140625,0.31005859375,0.89111328125,0.21044921875,0.96337890625,0.19580078125,0.970703125,0.2802734375,0.89111328125,0.21044921875,0.970703125,0.2802734375,0.89892578125,0.29541015625,0.75341796875,0.03955078125,0.89404296875,0.13134765625,0.75146484375,0.12939453125,0.89404296875,0.13134765625,0.89453125,0.04541015625,0.751953125,0.2119140625,0.75,0.30810546875,0.6767578125,0.2138671875,0.669921875,0.30419921875,0.6767578125,0.2138671875,0.75,0.30810546875,0.8974609375,0.29541015625,0.75244140625,0.212890625,0.8896484375,0.2109375,0.75244140625,0.212890625,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.096435546875,0.8009033203125,0.09649658203125,0.7197265625,0.255126953125,0.801025390625,0.09649658203125,0.7197265625,0.25634765625,0.724853515625,0.255126953125,0.801025390625,
- 0.096435546875,0.71728515625,0.10015869140625,0.64013671875,0.2568359375,0.72265625,0.2568359375,0.72265625,0.10015869140625,0.64013671875,0.25830078125,0.646484375,0.1011962890625,0.961456298828125,0.255615234375,0.8785400390625,0.258056640625,0.949371337890625,0.1011962890625,0.961456298828125,0.096923828125,0.8780517578125,0.255615234375,0.8785400390625,0.0175628662109375,0.718505859375,0.0947265625,0.801025390625,0.02099609375,0.8031005859375,0.0947265625,0.801025390625,0.0175628662109375,0.718505859375,0.09375,0.718505859375,0.258544921875,0.724365234375,0.329833984375,0.7984619140625,0.2587890625,0.8011474609375,0.329833984375,0.7984619140625,0.258544921875,0.724365234375,0.334716796875,0.726806640625,0.09710693359375,0.87652587890625,0.25439453125,0.8033447265625,0.2578125,0.8736572265625,0.09710693359375,0.87652587890625,0.0966796875,0.8028564453125,0.7509765625,0.20751953125,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.7509765625,0.20751953125,0.751953125,0.1298828125,0.89404296875,0.13232421875,0.76513671875,0.38916015625,0.8974609375,0.296875,0.904296875,0.36865234375,0.8974609375,0.296875,0.76513671875,0.38916015625,0.7529296875,0.31005859375,0.89111328125,0.2099609375,0.96337890625,0.19580078125,0.97119140625,0.2802734375,0.89111328125,0.2099609375,0.97119140625,0.2802734375,0.89892578125,0.29541015625,0.89404296875,0.13134765625,0.75341796875,0.03955078125,0.89453125,0.04541015625,0.75341796875,0.03955078125,0.89404296875,0.13134765625,0.75146484375,0.12939453125,0.669921875,0.30419921875,0.6767578125,0.2138671875,0.75,0.30810546875,0.751953125,0.2119140625,0.75,0.30810546875,0.6767578125,0.2138671875,0.75390625,0.21337890625,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.8974609375,0.29541015625,0.75390625,0.21337890625,0.8896484375,0.2109375,0.7509765625,0.20751953125,0.751953125,0.1298828125,0.89404296875,0.13232421875,0.7509765625,0.20751953125,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.765625,0.388671875,0.8974609375,0.296875,0.904296875,0.3681640625,0.8974609375,
- 0.296875,0.765625,0.388671875,0.75244140625,0.31005859375,0.8916015625,0.2099609375,0.96337890625,0.19580078125,0.970703125,0.28076171875,0.8916015625,0.2099609375,0.970703125,0.28076171875,0.89892578125,0.29541015625,0.75390625,0.0390625,0.89404296875,0.13134765625,0.75146484375,0.12939453125,0.89404296875,0.13134765625,0.75390625,0.0390625,0.89453125,0.04541015625,0.751953125,0.2119140625,0.75,0.30810546875,0.6767578125,0.2138671875,0.669921875,0.3046875,0.6767578125,0.2138671875,0.75,0.30810546875,0.8974609375,0.29541015625,0.75244140625,0.212890625,0.8896484375,0.2109375,0.75244140625,0.212890625,0.8974609375,0.29541015625,0.751953125,0.30810546875,0.74951171875,0.2080078125,0.751953125,0.1298828125,0.89404296875,0.13232421875,0.74951171875,0.2080078125,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.763671875,0.38916015625,0.8974609375,0.296875,0.904296875,0.36865234375,0.8974609375,0.296875,0.763671875,0.38916015625,0.75244140625,0.31005859375,0.89111328125,0.21044921875,0.96337890625,0.19580078125,0.97119140625,0.2802734375,0.89111328125,0.21044921875,0.97119140625,0.2802734375,0.89892578125,0.29541015625,0.89404296875,0.13134765625,0.75146484375,0.03955078125,0.89453125,0.0458984375,0.75146484375,0.03955078125,0.89404296875,0.13134765625,0.751953125,0.12939453125,0.669921875,0.30419921875,0.75244140625,0.2119140625,0.75048828125,0.30810546875,0.75244140625,0.2119140625,0.669921875,0.30419921875,0.6767578125,0.2138671875,0.75244140625,0.21337890625,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.8974609375,0.29541015625,0.75244140625,0.21337890625,0.8896484375,0.2109375,0.416748046875,0.7532958984375,0.41455078125,0.666015625,0.5341796875,0.664794921875,0.416748046875,0.7532958984375,0.5341796875,0.664794921875,0.53564453125,0.7520751953125,0.6123046875,0.91387939453125,0.53759765625,0.826416015625,0.611328125,0.82666015625,0.53759765625,0.826416015625,0.5380859375,0.9141845703125,0.344482421875,0.9136962890625,0.343505859375,0.8291015625,0.416259765625,0.912353515625,0.4130859375,0.8271484375,
- 0.41259765625,0.91265869140625,0.5361328125,0.8265380859375,0.53662109375,0.9140625,0.5361328125,0.8265380859375,0.414794921875,0.82763671875,0.414306640625,0.8260498046875,0.416748046875,0.7540283203125,0.53662109375,0.825439453125,0.416748046875,0.7540283203125,0.5361328125,0.7535400390625,0.53662109375,0.825439453125,0.537109375,0.91552734375,0.5361328125,0.988906860351563,0.412109375,0.91375732421875,0.5361328125,0.988906860351563,0.414794921875,0.987274169921875,0.53271484375,0.66455078125,0.419921875,0.754150390625,0.4130859375,0.6669921875,0.419921875,0.754150390625,0.53271484375,0.66455078125,0.5361328125,0.7520751953125,0.53759765625,0.826416015625,0.61181640625,0.82666015625,0.5380859375,0.9141845703125,0.5380859375,0.9141845703125,0.61181640625,0.82666015625,0.6123046875,0.91400146484375,0.4130859375,0.8271484375,0.345458984375,0.91339111328125,0.344482421875,0.8280029296875,0.416748046875,0.91302490234375,0.4130859375,0.8271484375,0.5361328125,0.8265380859375,0.41259765625,0.9132080078125,0.414794921875,0.82763671875,0.5361328125,0.8265380859375,0.53662109375,0.9140625,0.53662109375,0.825439453125,0.419921875,0.7552490234375,0.53662109375,0.75341796875,0.414306640625,0.8260498046875,0.419921875,0.7552490234375,0.53662109375,0.825439453125,0.4130859375,0.9136962890625,0.5341796875,0.988304138183594,0.413818359375,0.987472534179688,0.537109375,0.91552734375,0.7509765625,0.20751953125,0.75146484375,0.1298828125,0.89404296875,0.13232421875,0.7509765625,0.20751953125,0.89404296875,0.13232421875,0.8935546875,0.20849609375,0.765625,0.388671875,0.8974609375,0.296875,0.904296875,0.3681640625,0.8974609375,0.296875,0.765625,0.388671875,0.75244140625,0.31005859375,0.96337890625,0.19580078125,0.97021484375,0.28076171875,0.88916015625,0.20947265625,0.88916015625,0.20947265625,0.89892578125,0.29541015625,0.75390625,0.0390625,0.89404296875,0.13134765625,0.75146484375,0.12939453125,0.89404296875,0.13134765625,0.75390625,0.0390625,0.89453125,0.04541015625,0.751953125,0.2119140625,0.75,0.30810546875,0.6767578125,0.2138671875,
- 0.669921875,0.3046875,0.6767578125,0.2138671875,0.75,0.30810546875,0.8974609375,0.29541015625,0.75244140625,0.212890625,0.8896484375,0.21044921875,0.75244140625,0.212890625,0.8974609375,0.29541015625,0.751953125,0.30810546875,0.748046875,0.20703125,0.751953125,0.1298828125,0.89404296875,0.13232421875,0.89404296875,0.13232421875,0.89404296875,0.208984375,0.76416015625,0.39013671875,0.8974609375,0.296875,0.904296875,0.3642578125,0.8974609375,0.296875,0.75244140625,0.30859375,0.8916015625,0.21044921875,0.96337890625,0.19580078125,0.97021484375,0.2802734375,0.8916015625,0.21044921875,0.97021484375,0.2802734375,0.89892578125,0.29541015625,0.89404296875,0.13134765625,0.751953125,0.03857421875,0.89453125,0.0458984375,0.751953125,0.03857421875,0.89404296875,0.13134765625,0.751953125,0.12890625,0.6708984375,0.3046875,0.75341796875,0.2109375,0.7509765625,0.30810546875,0.67578125,0.21435546875,0.74951171875,0.2119140625,0.8974609375,0.29541015625,0.751953125,0.30810546875,0.8974609375,0.29541015625,0.74951171875,0.2119140625,0.8896484375,0.21142578125,0.10223388671875,0.639404296875,0.25830078125,0.646484375,0.257080078125,0.725341796875,0.095703125,0.71728515625,0.1031494140625,0.960784912109375,0.096923828125,0.8780517578125,0.255859375,0.87872314453125,0.258056640625,0.949371337890625,0.02099609375,0.8031005859375,0.09033203125,0.71826171875,0.0947265625,0.801025390625,0.02099609375,0.8031005859375,0.016876220703125,0.71923828125,0.259765625,0.72412109375,0.330078125,0.7982177734375,0.259033203125,0.8006591796875,0.334716796875,0.726806640625,0.258056640625,0.8736572265625,0.09710693359375,0.87652587890625,0.25390625,0.8035888671875,0.0966796875,0.8028564453125,0.09710693359375,0.87652587890625,0.096435546875,0.8009033203125,0.257080078125,0.724609375,0.254638671875,0.800537109375,0.096435546875,0.8009033203125,0.0955810546875,0.71875,0.74951171875,0.2080078125,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.74951171875,0.2080078125,0.751953125,0.1298828125,0.89404296875,0.13232421875,0.763671875,0.38916015625,0.8974609375,
- 0.296875,0.904296875,0.36865234375,0.8974609375,0.296875,0.763671875,0.38916015625,0.75244140625,0.31005859375,0.89111328125,0.21044921875,0.96337890625,0.19580078125,0.97119140625,0.2802734375,0.89111328125,0.21044921875,0.97119140625,0.2802734375,0.89892578125,0.29541015625,0.89404296875,0.13134765625,0.75146484375,0.03955078125,0.89453125,0.0458984375,0.75146484375,0.03955078125,0.89404296875,0.13134765625,0.751953125,0.12939453125,0.669921875,0.30419921875,0.75244140625,0.2119140625,0.75048828125,0.30810546875,0.75244140625,0.2119140625,0.669921875,0.30419921875,0.6767578125,0.2138671875,0.75244140625,0.21337890625,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.8974609375,0.29541015625,0.75244140625,0.21337890625,0.8896484375,0.2109375,0.096435546875,0.8009033203125,0.096435546875,0.71923828125,0.255126953125,0.8011474609375,0.25634765625,0.724853515625,0.255126953125,0.8011474609375,0.096435546875,0.71923828125,0.2568359375,0.72265625,0.096435546875,0.71728515625,0.258056640625,0.64697265625,0.096435546875,0.71728515625,0.09771728515625,0.640625,0.258056640625,0.64697265625,0.096923828125,0.8780517578125,0.258544921875,0.950347900390625,0.09747314453125,0.9583740234375,0.096923828125,0.8780517578125,0.258056640625,0.8782958984375,0.01776123046875,0.721923828125,0.0947265625,0.801025390625,0.02099609375,0.8031005859375,0.0947265625,0.801025390625,0.09405517578125,0.71826171875,0.3291015625,0.7987060546875,0.258544921875,0.724365234375,0.334228515625,0.7255859375,0.258544921875,0.724365234375,0.2587890625,0.80126953125,0.09710693359375,0.87652587890625,0.25439453125,0.803466796875,0.26025390625,0.872802734375,0.25439453125,0.803466796875,0.09710693359375,0.87652587890625,0.0966796875,0.8028564453125,0.89404296875,0.13232421875,0.74951171875,0.2080078125,0.75244140625,0.1298828125,0.74951171875,0.2080078125,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.8974609375,0.296875,0.76220703125,0.3896484375,0.7529296875,0.31005859375,0.76220703125,0.3896484375,0.8974609375,0.296875,0.904296875,0.369140625,
- 0.89111328125,0.20947265625,0.9716796875,0.2802734375,0.89892578125,0.29541015625,0.96337890625,0.19580078125,0.89404296875,0.13134765625,0.75048828125,0.0400390625,0.89453125,0.04541015625,0.75048828125,0.0400390625,0.89404296875,0.13134765625,0.751953125,0.12939453125,0.669921875,0.3037109375,0.75244140625,0.21240234375,0.75048828125,0.30859375,0.75244140625,0.21240234375,0.669921875,0.3037109375,0.6767578125,0.2138671875,0.8974609375,0.29541015625,0.751953125,0.2138671875,0.8896484375,0.2099609375,0.8974609375,0.29541015625,0.75244140625,0.30859375,0.4169921875,0.753173828125,0.41455078125,0.666015625,0.53466796875,0.665283203125,0.53564453125,0.7520751953125,0.61181640625,0.91357421875,0.53759765625,0.826416015625,0.611328125,0.82666015625,0.53759765625,0.826416015625,0.61181640625,0.91357421875,0.5380859375,0.9141845703125,0.344482421875,0.9136962890625,0.34326171875,0.8292236328125,0.416748046875,0.91278076171875,0.4130859375,0.8271484375,0.412353515625,0.91278076171875,0.5361328125,0.8265380859375,0.53662109375,0.9140625,0.5361328125,0.8265380859375,0.414794921875,0.82763671875,0.4169921875,0.75390625,0.5361328125,0.7535400390625,0.53662109375,0.825439453125,0.414306640625,0.8260498046875,0.4169921875,0.75390625,0.53662109375,0.825439453125,0.537109375,0.91552734375,0.5361328125,0.988655090332031,0.412109375,0.91387939453125,0.412109375,0.91387939453125,0.5361328125,0.988655090332031,0.414794921875,0.987274169921875,0.096435546875,0.8009033203125,0.0965576171875,0.7197265625,0.25537109375,0.8013916015625,0.0965576171875,0.7197265625,0.25634765625,0.724853515625,0.25537109375,0.8013916015625,0.09649658203125,0.71728515625,0.10040283203125,0.639404296875,0.2568359375,0.72265625,0.2568359375,0.72265625,0.10040283203125,0.639404296875,0.25830078125,0.646484375,0.101318359375,0.960845947265625,0.25634765625,0.87738037109375,0.258056640625,0.949371337890625,0.096923828125,0.8780517578125,0.01605224609375,0.718994140625,0.0947265625,0.801025390625,0.02099609375,0.8031005859375,0.0947265625,0.801025390625,0.09375,0.718505859375,
- 0.258544921875,0.724365234375,0.330078125,0.799560546875,0.2607421875,0.8013916015625,0.258544921875,0.724365234375,0.334716796875,0.726806640625,0.0966796875,0.8028564453125,0.25830078125,0.874267578125,0.09710693359375,0.87652587890625,0.0966796875,0.8028564453125,0.254638671875,0.80517578125,0.5341796875,0.666259765625,0.419921875,0.7542724609375,0.412353515625,0.66650390625,0.5341796875,0.666259765625,0.53564453125,0.7520751953125,0.6123046875,0.91259765625,0.53759765625,0.826416015625,0.611328125,0.82666015625,0.5380859375,0.9146728515625,0.53759765625,0.826416015625,0.4130859375,0.8271484375,0.344970703125,0.91387939453125,0.3447265625,0.827880859375,0.4130859375,0.8271484375,0.415771484375,0.91009521484375,0.414794921875,0.91064453125,0.5361328125,0.8265380859375,0.537109375,0.91448974609375,0.5361328125,0.8265380859375,0.414794921875,0.82763671875,0.414306640625,0.8260498046875,0.419677734375,0.75537109375,0.53662109375,0.825439453125,0.53662109375,0.825439453125,0.5361328125,0.7535400390625,0.4140625,0.91357421875,0.53662109375,0.91552734375,0.4140625,0.988288879394531,0.5361328125,0.989028930664063,0.53662109375,0.91552734375,0.74951171875,0.2080078125,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.89404296875,0.13232421875,0.74951171875,0.2080078125,0.751953125,0.1298828125,0.763671875,0.38916015625,0.8974609375,0.296875,0.904296875,0.36865234375,0.8974609375,0.296875,0.763671875,0.38916015625,0.75244140625,0.31005859375,0.89111328125,0.21044921875,0.96337890625,0.19580078125,0.97119140625,0.2802734375,0.89111328125,0.21044921875,0.97119140625,0.2802734375,0.89892578125,0.29541015625,0.89404296875,0.13134765625,0.751953125,0.0390625,0.89453125,0.04541015625,0.751953125,0.0390625,0.89404296875,0.13134765625,0.751953125,0.12939453125,0.669921875,0.30419921875,0.75244140625,0.2119140625,0.75048828125,0.30810546875,0.75244140625,0.2119140625,0.669921875,0.30419921875,0.6767578125,0.2138671875,0.75244140625,0.21337890625,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.8974609375,0.29541015625,
- 0.75244140625,0.21337890625,0.8896484375,0.2109375,0.096435546875,0.8009033203125,0.25634765625,0.723876953125,0.254638671875,0.802978515625,0.096435546875,0.8009033203125,0.09295654296875,0.7158203125,0.104736328125,0.6396484375,0.259033203125,0.646728515625,0.09246826171875,0.71728515625,0.256591796875,0.721923828125,0.105712890625,0.957427978515625,0.09649658203125,0.87646484375,0.2548828125,0.8785400390625,0.25830078125,0.950531005859375,0.0210418701171875,0.80078125,0.01690673828125,0.723388671875,0.09393310546875,0.718994140625,0.09393310546875,0.718994140625,0.0947265625,0.801025390625,0.25830078125,0.8004150390625,0.334716796875,0.729248046875,0.329833984375,0.7978515625,0.2587890625,0.72314453125,0.0966796875,0.8028564453125,0.254150390625,0.8031005859375,0.0966796875,0.87615966796875,0.25732421875,0.8740234375,0.254150390625,0.8031005859375,0.41650390625,0.7535400390625,0.41455078125,0.666015625,0.53271484375,0.66455078125,0.53271484375,0.66455078125,0.5361328125,0.7520751953125,0.61181640625,0.826904296875,0.5380859375,0.9139404296875,0.53759765625,0.826416015625,0.61083984375,0.9141845703125,0.34228515625,0.829345703125,0.418701171875,0.9134521484375,0.344482421875,0.9136962890625,0.4130859375,0.8271484375,0.5361328125,0.8265380859375,0.41357421875,0.9130859375,0.414794921875,0.82763671875,0.5361328125,0.8265380859375,0.53564453125,0.91326904296875,0.53662109375,0.825439453125,0.416748046875,0.7530517578125,0.53662109375,0.7532958984375,0.414306640625,0.8260498046875,0.416748046875,0.7530517578125,0.53662109375,0.825439453125,0.41162109375,0.91046142578125,0.5341796875,0.987922668457031,0.414794921875,0.987274169921875,0.53759765625,0.9141845703125,0.53369140625,0.665771484375,0.419921875,0.7532958984375,0.41357421875,0.665771484375,0.53369140625,0.665771484375,0.53564453125,0.7520751953125,0.6123046875,0.91302490234375,0.53759765625,0.826416015625,0.611328125,0.82666015625,0.5380859375,0.91455078125,0.53759765625,0.826416015625,0.6123046875,0.91302490234375,0.412841796875,0.826904296875,0.345458984375,
- 0.9139404296875,0.3427734375,0.829345703125,0.412841796875,0.826904296875,0.415771484375,0.91131591796875,0.345458984375,0.9139404296875,0.4150390625,0.91180419921875,0.5361328125,0.8265380859375,0.537109375,0.91436767578125,0.5361328125,0.8265380859375,0.41357421875,0.8272705078125,0.413330078125,0.8258056640625,0.420166015625,0.7537841796875,0.53662109375,0.825439453125,0.420166015625,0.7537841796875,0.5361328125,0.7535400390625,0.53662109375,0.825439453125,0.414306640625,0.91339111328125,0.53515625,0.989059448242188,0.4150390625,0.987464904785156,0.414306640625,0.91339111328125,0.53759765625,0.91546630859375,0.74755859375,0.21044921875,0.89404296875,0.13232421875,0.8935546875,0.21728515625,0.74755859375,0.21044921875,0.751953125,0.1298828125,0.89404296875,0.13232421875,0.90380859375,0.376953125,0.75244140625,0.3095703125,0.8974609375,0.296875,0.7626953125,0.38818359375,0.75244140625,0.3095703125,0.884765625,0.2119140625,0.982421875,0.2841796875,0.89892578125,0.29541015625,0.96337890625,0.19580078125,0.67138671875,0.30322265625,0.75390625,0.20849609375,0.7509765625,0.30810546875,0.67578125,0.21435546875,0.8974609375,0.29541015625,0.74951171875,0.20947265625,0.89111328125,0.21337890625,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.751953125,0.12890625,0.89306640625,0.04150390625,0.89404296875,0.13134765625,0.751953125,0.12890625,0.7509765625,0.041015625,0.10467529296875,0.64501953125,0.2587890625,0.645751953125,0.257080078125,0.724853515625,0.095947265625,0.718017578125,0.10467529296875,0.64501953125,0.1055908203125,0.962005615234375,0.0938720703125,0.87738037109375,0.259033203125,0.9488525390625,0.255126953125,0.87872314453125,0.02313232421875,0.71826171875,0.09283447265625,0.718017578125,0.0220947265625,0.8046875,0.0947265625,0.801025390625,0.25732421875,0.87451171875,0.0943603515625,0.87982177734375,0.25390625,0.80322265625,0.0966796875,0.8028564453125,0.096435546875,0.8009033203125,0.2568359375,0.724853515625,0.255126953125,0.80224609375,0.096435546875,0.8009033203125,0.0958251953125,0.718994140625,
- 0.260986328125,0.8001708984375,0.335693359375,0.7275390625,0.32568359375,0.797607421875,0.257568359375,0.72509765625,0.09600830078125,0.801025390625,0.09649658203125,0.719482421875,0.256591796875,0.72509765625,0.25537109375,0.80078125,0.10040283203125,0.64013671875,0.25830078125,0.646484375,0.2568359375,0.724365234375,0.09637451171875,0.717041015625,0.1014404296875,0.9610595703125,0.096923828125,0.8780517578125,0.25537109375,0.87664794921875,0.258056640625,0.949371337890625,0.09259033203125,0.801513671875,0.02099609375,0.8031005859375,0.017181396484375,0.718994140625,0.0933837890625,0.718505859375,0.257568359375,0.724365234375,0.32958984375,0.8004150390625,0.26171875,0.80078125,0.334716796875,0.726806640625,0.257568359375,0.8740234375,0.096435546875,0.801025390625,0.25439453125,0.80615234375,0.09710693359375,0.87652587890625,0.89404296875,0.13232421875,0.74951171875,0.2080078125,0.75244140625,0.1298828125,0.74951171875,0.2080078125,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.8974609375,0.296875,0.76220703125,0.3896484375,0.7529296875,0.31005859375,0.76220703125,0.3896484375,0.8974609375,0.296875,0.904296875,0.36865234375,0.89111328125,0.20947265625,0.96337890625,0.19580078125,0.97119140625,0.2802734375,0.89111328125,0.20947265625,0.97119140625,0.2802734375,0.89892578125,0.29541015625,0.75048828125,0.03955078125,0.89404296875,0.13134765625,0.751953125,0.12939453125,0.89404296875,0.13134765625,0.75048828125,0.03955078125,0.89453125,0.04541015625,0.669921875,0.3037109375,0.75244140625,0.21240234375,0.75048828125,0.30859375,0.75244140625,0.21240234375,0.669921875,0.3037109375,0.6767578125,0.2138671875,0.751953125,0.21337890625,0.8974609375,0.29541015625,0.75244140625,0.30859375,0.8974609375,0.29541015625,0.751953125,0.21337890625,0.8896484375,0.21044921875,0.09893798828125,0.9591064453125,0.096923828125,0.8780517578125,0.25830078125,0.950347900390625,0.25830078125,0.950347900390625,0.096923828125,0.8780517578125,0.2498779296875,0.87451171875,0.256591796875,0.88946533203125,0.25830078125,0.950347900390625,0.2498779296875,
- 0.87451171875,0.1192626953125,0.641357421875,0.25830078125,0.646484375,0.2568359375,0.72265625,0.2568359375,0.72265625,0.0963134765625,0.717529296875,0.0963134765625,0.717529296875,0.0970458984375,0.648193359375,0.76220703125,0.03759765625,0.751953125,0.12890625,0.75,0.05224609375,0.76220703125,0.03759765625,0.89404296875,0.13134765625,0.751953125,0.12890625,0.89404296875,0.13134765625,0.76220703125,0.03759765625,0.89453125,0.0458984375,0.10125732421875,0.961578369140625,0.096923828125,0.8780517578125,0.2498779296875,0.87451171875,0.256591796875,0.88946533203125,0.2498779296875,0.87451171875,0.256591796875,0.88946533203125,0.258056640625,0.949371337890625,0.89404296875,0.13134765625,0.76220703125,0.03759765625,0.89453125,0.04541015625,0.76220703125,0.03759765625,0.89404296875,0.13134765625,0.751953125,0.12939453125,0.76220703125,0.03759765625,0.751953125,0.12939453125,0.75,0.05224609375,0.1011962890625,0.961456298828125,0.096923828125,0.8780517578125,0.2498779296875,0.87451171875,0.256591796875,0.88946533203125,0.1011962890625,0.961456298828125,0.2498779296875,0.87451171875,0.1011962890625,0.961456298828125,0.256591796875,0.88946533203125,0.258056640625,0.949371337890625,0.10125732421875,0.96142578125,0.096923828125,0.8780517578125,0.2498779296875,0.87451171875,0.256591796875,0.88946533203125,0.2498779296875,0.87451171875,0.256591796875,0.88946533203125,0.258056640625,0.949371337890625,0.096923828125,0.8780517578125,0.12042236328125,0.960174560546875,0.0972900390625,0.953338623046875,0.096923828125,0.8780517578125,0.2498779296875,0.87451171875,0.256591796875,0.88946533203125,0.2498779296875,0.87451171875,0.256591796875,0.88946533203125,0.258056640625,0.949371337890625
- }
- UVIndex: *2788 {
- a: 0,1,2,3,4,5,2,1,6,7,5,4,8,9,10,11,12,13,9,14,15,14,9,8,5,12,14,2,3,2,14,15,16,17,18,19,20,11,10,21,17,16,22,23,21,10,13,24,22,10,9,25,24,13,26,27,25,13,12,7,28,29,26,12,5,7,30,28,31,32,30,7,6,33,34,35,36,37,38,39,40,41,38,42,43,39,42,35,34,43,44,45,46,47,44,47,48,49,45,44,50,51,50,44,49,52,53,54,51,50,53,50,52,55,56,56,55,57,54,53,58,59,58,53,56,60,39,60,56,57,61,62,63,40,34,33,59,58,34,58,60,43,43,60,39,64,65,66,67,68,69,70,71,69,68,72,73,74,75,73,72,75,74,76,77,65,64,77,76,78,79,80,81,82,78,81,83,84,82,83,85,86,87,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,100,99,102,103,102,99,102,104,100,105,102,103,106,104,102,105,106,102,107,104,106,107,108,104,105,109,106,109,107,106,110,109,105,111,109,110,112,109,111,113,109,112,114,108,107,108,114,115,107,109,116,109,113,116,117,114,107,107,116,117,114,118,115,117,118,114,115,118,119,118,120,119,121,117,116,116,113,121,121,122,117,113,122,121,117,122,118,123,122,113,123,118,122,124,118,123,125,120,118,118,124,125,125,126,120,124,127,125,128,126,125,127,128,125,129,126,128,127,129,128,129,130,126,124,131,127,132,131,124,133,127,131,132,133,131,127,133,129,134,133,132,135,133,134,133,135,136,129,133,136,137,136,135,129,138,130,136,138,129,138,139,130,136,137,140,136,140,138,141,140,137,142,139,138,142,143,139,142,144,143,145,138,140,138,145,142,140,141,145,144,142,145,141,146,145,145,147,144,146,147,145,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,181,183,184,185,186,187,186,188,189,190,191,192,193,190,194,195,196,197,198,197,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,244,245,246,247,248,249,250,251,252,253,254,255,254,256,257,258,259,260,261,262,263,264,265,266,265,264,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,
- 302,303,304,305,306,305,307,308,309,310,311,312,313,314,315,316,317,318,315,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,332,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,350,352,353,354,355,356,357,358,359,360,361,362,363,360,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,383,387,388,389,390,389,391,392,393,394,395,394,396,397,398,399,400,401,402,403,404,405,406,404,407,408,409,410,411,409,411,412,413,414,415,414,416,417,418,419,420,421,418,422,423,424,425,426,425,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,459,461,462,463,464,465,463,466,467,468,469,470,471,468,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,492,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,508,511,509,512,513,514,515,512,516,517,518,519,518,520,521,522,523,524,525,522,526,527,528,529,528,530,529,531,532,533,534,531,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,580,579,581,582,583,584,585,586,587,588,589,590,588,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,618,621,622,623,624,622,625,623,626,627,628,629,626,630,631,632,633,632,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,648,651,652,653,654,655,654,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,682,684,685,686,687,688,687,689,690,691,692,693,694,695,696,697,698,699,700,698,701,702,703,704,703,702,705,706,707,708,709,706,710,711,712,713,711,714,712,715,716,717,718,715,719,720,721,722,723,724,725,726,727,728,729,728,727,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,
- 767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,880,883,884,885,886,887,885,887,888,889,890,891,890,892,893,894,895,896,897,894,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,936,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1085,1088,1089,1090,1091,1089,1092,1090,1093,1094,1095,1096,1097,1098,1099,1100,1101,1100,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1196,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,
- 1214,1212,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1313,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1354,1358,1359,1360,1359,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1370,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1387,1389,1390,1391,1392,1393,1391,1394,1395,1396,1397,1398,1398,1399,1400,1401,1402,1403,1404,1401,1405,1406,1407,1408,1407,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1466,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1536,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1584,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,
- 1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1702,1706,1707,1708,1709,1709,1708,1710,1711,1712,1713,1714,1711,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1740,1743,1744,1745,1746,1745,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1756,1755,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1772,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1794,1797,1798,1799,1800,1801,1802,1799,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1817,1816,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1828,1829,1826,1830,1831,1832,1830,1832,1833,1834,1835,1836,1835,1837,1838,1839,1840,1841,1839,1842,1840,1843,1844,1845,1846,1845,1847,1848,1849,1850,1849,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1902,1904,1905,1906,1907,1908,1909,1906,1910,1911,1912,1913,1914,1911,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1934,1937,1935,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1951,1953,1954,1955,1956,1957,1955,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1966,1968,1967,1969,1970,1971,1972,1969,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,
- 1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,1998,2001,1999,2002,2003,2004,2005,2002,2006,2007,2008,2009,2008,2010,2011,2012,2013,2014,2013,2015,2016,2017,2018,2019,2018,2020,2021,2022,2023,2024,2025,2026,2022,2027,2028,2029,2028,2030,2031,2032,2033,2034,2035,2032,2036,2037,2038,2039,2040,2038,2041,2042,2043,2044,2045,2044,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2084,2086,2087,2088,2089,2090,2090,2089,2091,2092,2093,2094,2092,2094,2095,2096,2097,2098,2099,2100,2096,2101,2102,2103,2101,2104,2102,2105,2106,2107,2108,2107,2109,2110,2111,2112,2110,2113,2114,2115,2116,2117,2116,2115,2118,2119,2120,2121,2120,2119,2122,2123,2124,2125,2124,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2135,2134,2137,2138,2139,2140,2139,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2155,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2167,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2177,2180,2181,2182,2183,2184,2183,2182,2185,2186,2187,2188,2187,2186,2189,2190,2191,2192,2191,2193,2194,2195,2196,2197,2196,2198,2199,2200,2201,2202,2202,2203,2204,2205,2206,2207,2206,2208,2207,2209,2210,2211,2212,2211,2210,2213,2214,2215,2216,2215,2214,2217,2218,2219,2218,2220,2221,2222,2223,2224,2223,2222,2225,2226,2227,2228,2229,2226,2228,2230,2231,2232,2232,2233,2230,2234,2235,2236,2234,2236,2237,2238,2239,2240,2238,2240,2241,2242,2243,2244,2242,2245,2243,2246,2247,2248,2247,2246,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2295,2298,2299,2295,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2311,2315,2311,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,
- 2333,2334,2335,2336,2337,2338,2339,2336,2340,2336,2341,2342,2343,2344,2345,2344,2346,2347,2348,2344,2349,2344,2350,2351
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *1394 {
- a: 0,0,0,0,0,0,0,1,0,1,0,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,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,1,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,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,1,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,1,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,1,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,1,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,0,
- 1,1,0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0,0,1,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,1,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,1,1,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,1,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1,0,0,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "ByPolygon"
- ReferenceInformationType: "IndexToDirect"
- Materials: *910 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2333008466096, "Geometry::", "Mesh" {
- Vertices: *870 {
- a: 0,-9.5367431640625e-007,62.5,400,0,62.5,0,600,62.5,100,0,62.5,200,0,62.5,300,0,62.5,0,500,62.5,100,400,62.5,0,400,62.5,200,300,62.5,100,300,62.5,0,300,62.5,200,200,62.5,100,200,62.5,0,200,62.5,300,100,62.5,200,100,62.5,100,100,62.5,0,100,62.5,65.044921875,600,62.5,96.2578125,500,62.5,97.15625,479.647277832031,62.5,154.298828125,379.579650878906,62.2646484375,78.03515625,524.471252441406,63.54736328125,137.19921875,469.079315185547,62.5,228.53515625,324.551605224609,62.6005859375,248.03125,291.636444091797,63.1767578125,252.61328125,200,62.5,311.794921875,134.767990112305,63.06982421875,344.5,112.942993164063,62.5,400,103.328262329102,62.5,255.71484375,242.456924438477,62.5,259.12109375,142.456451416016,62.5,0,600,-62.5,113.41796875,600,-62.5,119.9453125,533.917602539063,-62.6416015625,143.93359375,489.501617431641,-63.07421875,157.677734375,408.176727294922,-62.296875,185.88671875,333.994781494141,-62.02587890625,216.52734375,300,-62.5,257.61328125,296.496520996094,-62.5693359375,318.53125,148.033187866211,-62.5,400,-3.57627868652344e-007,-62.5,400.3125,109.051155090332,-61.6806640625,374.578125,112.765922546387,-62.5,281.556640625,263.546539306641,-62.58447265625,0,-4.76837158203125e-007,-62.5,100,0,-62.5,200,0,-62.5,300,0,-62.5,0,500,-62.5,0,400,-62.5,0,300,-62.5,0,200,-62.5,0,100,-62.5,100,500,-62.5,100,400,-62.5,100,300,-62.5,200,300,-62.5,100,200,-62.5,200,200,-62.5,100,100,-62.5,200,100,-62.5,300,100,-62.5,400,104.276443481445,11.056640625,119.796875,600,-11.2373046875,400,111.945777893066,3.8154296875,130.0234375,533.583801269531,-16.990234375,152.107421875,480.794738769531,9.51953125,178.240234375,404.966857910156,-9.068359375,134.625,479.537994384766,31.15234375,189.60546875,391.189849853516,-35.810546875,155.5078125,399.945983886719,31.4765625,184.6484375,384.160308837891,7.779296875,231.9921875,311.702728271484,-3.24072265625,188.087890625,389.277801513672,35.2607421875,200,336.540649414063,25.201171875,272.591796875,287.010009765625,-33.69970703125,290.09765625,272.595886230469,4.97216796875,
- 298.15625,270.193084716797,-32.3046875,308.189453125,204.369781494141,-31.9423828125,262.80859375,248.42822265625,29.150390625,282.349609375,211.924926757813,15.7734375,315.44921875,176.316253662109,13.53857421875,336.375,147.02897644043,-31.4873046875,323.392578125,148.12141418457,16.333984375,382.15625,133.025451660156,-32.21484375,364.708984375,126.437133789063,17.74951171875,153.96875,479.787109375,-27.517578125,154.61328125,515.700317382813,-21.099609375,148.22265625,478.966827392578,-21.0224609375,230.328125,208.194961547852,-33.2158203125,233.484375,208.705963134766,-25.142578125,231.009765625,243.591400146484,-25.75390625,151.6640625,480.10498046875,63.80859375,151.59375,479.929565429688,30.2939453125,84.953125,479.793792724609,64.208984375,84.19921875,480.274047851563,33.0390625,150.953125,447.3095703125,30.08203125,84.19921875,448.087921142578,33.3671875,151.6640625,448.764190673828,64.626953125,84.4609375,449.705017089844,62.7861328125,153.818359375,341.061096191406,64.26953125,204.23828125,343.002197265625,27.5205078125,206.62890625,340.813812255859,64.59765625,153.359375,342.623077392578,27.841796875,153.359375,373.032806396484,28.6201171875,153.177734375,372.394165039063,65.84765625,206.484375,373.695556640625,28.544921875,205.154296875,373.246917724609,65.40234375,247.60546875,340.831176757813,64.4140625,247.521484375,340.66748046875,26.4482421875,184.513671875,340.463989257813,64.94921875,183.7890625,340.991088867188,29.5595703125,246.982421875,309.609222412109,26.435546875,183.7890625,310.544555664063,29.9296875,247.60546875,311.184265136719,65.33984375,183.904296875,312.082366943359,63.1376953125,266.783203125,310.7470703125,64.697265625,224.71875,311.423492431641,34,224.34375,311.076995849609,64.41015625,268.779296875,311.631652832031,33.71875,224.1953125,284.593841552734,33.5009765625,224.34375,285.054779052734,64.5517578125,268.65234375,284.490142822266,64.630859375,267.52734375,283.876373291016,33.890625,295.001953125,119.437728881836,64.06640625,335.625,119.404762268066,39.0654296875,335.66015625,119.532104492188,64.0810546875,
- 294.875,119.213333129883,39.03515625,335.66015625,140.79377746582,64.197265625,335.66015625,141.153381347656,38.9189453125,294.328125,141.255126953125,64.26171875,294.556640625,141.607238769531,38.830078125,38.712890625,569.823486328125,63.22265625,87.19140625,570.598815917969,27.84765625,89.486328125,569.583190917969,63.544921875,38.28125,570.221008300781,28.17578125,38.28125,600.209289550781,28.0126953125,38.109375,600.740173339844,63.794921875,89.34375,600.859985351563,27.9208984375,88.048828125,601.565979003906,63.349609375,152.03125,516.733947753906,-65.916015625,152.763671875,479.77734375,-64.052734375,86.8671875,479.030822753906,-63.767578125,86.353515625,514.189331054688,-62.01953125,86.8671875,515.404235839844,-22.306640625,86.513671875,481.472442626953,-24.37890625,118.830078125,450.191741943359,-29.2734375,164.716796875,450.919097900391,-63.640625,166.890625,449.967712402344,-28.953125,118.42578125,450.570617675781,-63.326171875,118.42578125,478.9560546875,-63.486328125,118.263671875,479.459991455078,-28.70703125,166.7578125,479.571960449219,-63.57421875,165.55078125,480.2470703125,-29.158203125,185.20703125,426.950469970703,-65.1640625,185.7421875,397.725830078125,-63.716796875,135.140625,397.133819580078,-63.4873046875,134.75,424.928527832031,-62.1337890625,186.0859375,396.280426025391,-30.36328125,135.140625,425.896392822266,-30.7021484375,134.873046875,399.048248291016,-32.337890625,187.16796875,426.121826171875,-29.736328125,231.673828125,283.182434082031,-34.84375,277.591796875,283.148651123047,-63.962890625,277.625,283.296234130859,-34.8154296875,231.53515625,282.934387207031,-64.005859375,277.625,307.430053710938,-34.6796875,277.625,307.838226318359,-64.140625,230.91796875,307.953735351563,-34.6044921875,231.1640625,308.366302490234,-64.2236328125,257.76953125,283.716461181641,-37.13671875,300.5703125,261.173858642578,-37.923828125,300.921875,282.416595458984,-39.8583984375,257.8125,261.631561279297,-37.94140625,257.6171875,259.548797607422,-63.3359375,300.5703125,282.233032226563,-63.83984375,300.8125,261.790802001953,-61.8046875,
- 256.521484375,282.388366699219,-64.5791015625,314.7734375,243.944351196289,-23.42578125,316.064453125,243.733703613281,-64.24609375,231.36328125,244.144989013672,-63.720703125,315.240234375,204.993530273438,-64.5009765625,231.34765625,205.95068359375,-63.322265625,314.73828125,206.753189086914,-22.4296875,332.384765625,117.854270935059,-63.90234375,378.02734375,148.583557128906,-63.4228515625,378.35546875,120.0634765625,-61.1279296875,332.015625,147.953262329102,-63.6552734375,331.3984375,150.80354309082,-29.513671875,378.02734375,120.275512695313,-28.587890625,378.251953125,147.917236328125,-31.29296875,330.734375,120.098999023438,-27.5546875,249.03515625,250.722229003906,0.208984375,295.416015625,271.581848144531,-1.015625,293.486328125,245.977752685547,0.478515625,251.568359375,275.057983398438,1.115234375,292.7421875,245.108322143555,28.751953125,251.7578125,276.204406738281,27.814453125,248.744140625,252.767776489258,26.66796875,297.2578125,270.995300292969,29.08203125,253.54296875,246.778213500977,23.0107421875,295.265625,222.418838500977,21.732421875,295.61328125,245.138870239258,20.681640625,252.45703125,222.925064086914,21.88671875,252.84765625,221.774627685547,-3.4453125,295.265625,245.977951049805,-3.1904296875,295.5,224.065414428711,-1.9794921875,251.373046875,246.169784545898,-3.904296875,257.8046875,223.061920166016,4.2587890625,257.853515625,222.922637939453,31.029296875,312.0234375,221.450546264648,3.9365234375,312.6328125,221.815490722656,28.8330078125,257.759765625,197.444549560547,31.1796875,312.00390625,196.712646484375,28.572265625,311.79296875,197.976181030273,5.056640625,257.1875,198.618392944336,3.60546875,201.703125,399.79931640625,-30.244140625,202.390625,373.066131591797,-28.9375,155.03125,372.526794433594,-23.490234375,154.8046875,397.973480224609,-22.15625,206.00390625,371.738372802734,2.123046875,158.2890625,398.835083007813,7.06640625,157.869140625,374.274871826172,5.544921875,207.08984375,399.0390625,2.583984375,241.255859375,335.772491455078,-31.111328125,241.19921875,308.865936279297,-30.09765625,
- 190.6640625,308.309967041016,-30.11328125,190.16015625,334.0986328125,-28.1669921875,241.35546875,306.743011474609,-2.115234375,190.69140625,332.275573730469,-1.814453125,190.388671875,308.773559570313,-3.919921875,242.7890625,332.466094970703,-1.0185546875,352.3515625,152.205215454102,-28.154296875,322.388671875,152.164672851563,-28.1328125,352.771484375,150.381973266602,21.7890625,324.95703125,150.828948974609,22.400390625,324.86328125,123.250228881836,21.755859375,323.560546875,124.014602661133,-28.953125,353.08203125,125.215866088867,-28.720703125,351.595703125,124.796760559082,22.41796875,318.296875,178.408264160156,-30.8837890625,316.9296875,153.337646484375,2.232421875,317.998046875,176.776733398438,3.017578125,319.169921875,156.104049682617,-31.63671875,344.78125,155.265075683594,-31.3779296875,344.810546875,177.925109863281,3.6640625,345.51171875,153.932571411133,3.470703125,343.5078125,176.923355102539,-31.033203125,172.8828125,360.325805664063,-4.32421875,173.4296875,363.162628173828,26.84765625,226.6796875,347.767150878906,-4.6845703125,227.76171875,350.698120117188,24.416015625,168.6171875,339.721160888672,27.84765625,222.4921875,327.926879882813,25.1396484375,222.4765625,327.471740722656,-2.84375,167.9765625,339.460327148438,-4.2333984375,268.142578125,270.858673095703,-35.158203125,272.765625,302.15185546875,4.9873046875,273.75,267.079772949219,4.640625,267.9453125,304.926879882813,-33.4169921875,239.7421875,305.019653320313,-30.7392578125,239.0546875,270.053619384766,-32.7587890625,244.56640625,301.850708007813,9.3330078125,243.66796875,267.813446044922,6.5,111.623046875,526.4072265625,-28.19921875,154.15625,550.042724609375,-25.4033203125,154.15625,527.265258789063,-25.7998046875,111.505859375,550.195983886719,-25.3984375,111.41796875,549.518188476563,1.798828125,153.91796875,524.724060058594,-0.3603515625,154.470703125,546.710327148438,-0.21875,110.078125,525.125427246094,0.634765625,161.57421875,514.552856445313,13.7255859375,105.064453125,514.643432617188,-14.90234375,105.779296875,514.269592285156,14.830078125,
- 162.767578125,514.576599121094,-17.93359375,159.3125,486.972625732422,-15.498046875,104.916015625,487.646087646484,-14.4912109375,161.71484375,488.12353515625,14.107421875,105.4765625,489.044555664063,11.923828125,261.087890625,324.619232177734,21.6982421875,261.08203125,325.064788818359,-2.08203125,203.73828125,328.084930419922,-0.466796875,204.2734375,326.361694335938,21.447265625,259.59765625,305.337646484375,-1.78125,203.03125,308.158477783203,0.111328125,260.2265625,306.800201416016,22.40234375,203.25,309.577789306641,21.396484375
- }
- PolygonVertexIndex: *1312 {
- a: 0,3,17,-19,4,16,17,-4,5,15,16,-5,11,10,7,-9,12,9,10,-14,14,13,10,-12,16,12,13,-18,18,17,13,-15,6,20,23,19,-3,8,7,21,20,-7,22,24,21,-8,9,25,22,7,-11,26,25,-10,27,31,26,9,-13,15,28,32,27,12,-17,15,29,-29,1,30,29,15,-6,54,61,47,-47,42,49,63,44,-44,49,48,62,-64,48,47,61,-63,55,50,33,-35,55,34,35,-37,50,55,56,-52,56,55,36,-38,57,52,51,-57,57,56,37,38,-59,58,38,-40,52,57,59,-54,59,57,58,-61,63,60,58,39,40,45,41,-45,61,54,53,-60,61,59,60,-63,62,60,-64,18,54,46,-1,50,6,2,-34,6,50,51,-9,52,11,8,-52,11,52,53,-15,54,18,14,-54,3,0,46,-48,4,3,47,-49,5,4,48,-50,42,1,5,-50,43,66,64,30,1,-43,19,65,34,33,-3,65,35,-35,35,65,-68,19,67,-66,67,36,-36,23,67,-20,68,36,-68,23,68,-68,69,36,-69,69,37,-37,23,70,-69,70,69,-69,20,70,-24,21,70,-21,24,70,-22,22,70,-25,71,37,-70,37,71,-39,69,70,-73,70,22,-73,73,71,-70,69,72,-74,71,74,-39,73,74,-72,38,74,-40,74,40,-40,75,73,-73,72,22,-76,75,76,-74,22,76,-76,73,76,-75,25,76,-23,25,74,-77,26,74,-26,77,40,-75,74,26,-78,77,45,-41,26,78,-78,79,45,-78,78,79,-78,80,45,-80,78,80,-80,80,41,-46,26,81,-79,31,81,-27,82,78,-82,31,82,-82,78,82,-81,27,82,-32,32,82,-28,82,32,-84,80,82,-84,28,83,-33,80,84,-42,83,84,-81,84,44,-42,83,28,-86,83,85,-85,29,85,-29,86,44,-85,86,43,-45,86,66,-44,87,84,-86,84,87,-87,85,29,-88,66,86,-88,29,30,-88,87,64,-67,30,64,-88,88,89,-91,91,92,-94,94,95,-97,96,95,-98,98,99,-98,98,97,-96,98,100,-102,98,101,-100,94,98,-96,98,94,-101,101,97,-100,97,101,-97,101,100,-97,94,96,-101,102,103,-105,103,102,-106,102,106,-106,107,106,-103,108,104,-104,108,109,-105,109,106,-108,106,109,-109,108,103,-107,103,105,-107,109,102,-105,102,109,-108,110,111,-113,112,111,-114,114,115,-114,114,113,-112,114,116,-118,114,117,-116,110,114,-112,114,110,-117,117,113,-116,113,117,-113,117,116,-113,110,112,-117,118,119,-121,119,118,-122,122,123,-120,119,123,-121,124,121,-119,121,124,-126,123,125,-125,125,123,-123,124,118,-124,118,120,-124,125,119,-122,119,125,-123,126,127,-129,126,129,-128,130,127,-132,127,130,-129,126,132,-134,126,133,-130,130,133,-133,133,130,-132,130,126,-129,132,126,-131,133,
- 127,-130,131,127,-134,134,135,-137,135,134,-138,134,138,-138,139,138,-135,140,136,-136,140,141,-137,141,138,-140,138,141,-141,140,135,-139,135,137,-139,141,134,-137,134,141,-140,142,143,-145,142,144,-146,90,146,-148,146,90,-90,145,144,-148,145,147,-147,88,142,-90,142,88,-144,142,146,-90,146,142,-146,148,149,-151,149,148,-152,148,152,-152,153,152,-149,154,150,-150,154,155,-151,155,152,-154,152,155,-155,154,149,-153,149,151,-153,155,148,-151,148,155,-154,156,157,-159,156,158,-160,160,161,-163,161,160,-164,159,158,-163,159,162,-162,158,160,-163,160,158,-158,160,156,-164,156,160,-158,156,161,-164,161,156,-160,164,165,-167,164,167,-166,168,165,-170,165,168,-167,164,170,-172,164,171,-168,168,171,-171,171,168,-170,168,164,-167,170,164,-169,171,165,-168,169,165,-172,172,173,-175,172,175,-174,176,177,-179,177,176,-180,174,173,-179,174,178,-178,176,173,-176,173,176,-179,172,176,-176,176,172,-180,177,172,-175,172,177,-180,180,181,-94,93,181,-183,183,184,-183,183,182,-182,180,183,-182,183,180,-186,91,182,-185,182,91,-94,92,185,-94,180,93,-186,186,187,-189,186,189,-188,190,191,-193,191,190,-194,188,187,-193,188,192,-192,187,190,-193,190,187,-190,190,186,-194,186,190,-190,186,191,-194,191,186,-189,194,195,-197,195,194,-198,198,199,-201,199,198,-202,197,194,-201,197,200,-200,194,198,-201,198,194,-197,198,196,-202,195,201,-197,195,199,-202,199,195,-198,202,203,-205,202,205,-204,206,207,-209,207,206,-210,204,203,-209,204,208,-208,206,203,-206,203,206,-209,202,209,-206,206,205,-210,207,202,-205,202,207,-210,210,211,-213,211,213,-213,211,214,-214,213,214,-216,214,216,-216,214,217,-217,214,210,-218,210,214,-212,213,216,-213,216,213,-216,217,212,-217,212,217,-211,218,219,-221,218,220,-222,222,223,-225,223,222,-226,221,220,-225,221,224,-224,220,222,-225,222,220,-220,222,218,-226,218,222,-220,218,223,-226,223,218,-222,226,227,-229,226,228,-230,230,231,-233,231,230,-234,229,228,-233,229,232,-232,228,230,-233,230,228,-228,230,226,-234,226,230,-228,226,231,-234,231,226,-230,234,235,-237,237,236,-236,237,235,-239,235,239,-239,240,238,-240,238,
- 240,-242,239,234,-241,234,239,-236,241,237,-239,237,241,-237,240,236,-242,236,240,-235,242,243,-245,243,242,-246,246,247,-249,247,246,-250,245,249,-247,245,242,-250,242,247,-250,247,242,-245,247,243,-249,243,247,-245,246,243,-246,243,246,-249,250,251,-253,251,253,-253,251,254,-254,253,254,-256,254,256,-256,254,257,-257,254,250,-258,250,254,-252,253,256,-253,256,253,-256,250,256,-258,256,250,-253,258,259,-261,259,258,-262,258,262,-262,263,262,-259,264,260,-260,260,264,-266,265,262,-264,262,265,-265,264,259,-263,262,259,-262,265,263,-261,258,260,-264,266,267,-269,267,266,-270,270,271,-273,271,270,-274,268,267,-273,268,272,-272,267,270,-273,270,267,-270,270,266,-274,266,270,-270,266,271,-274,271,266,-269,274,275,-277,275,274,-278,278,279,-278,277,279,-276,278,280,-282,278,281,-280,280,278,-278,277,274,-281,276,279,-282,276,275,-280,274,276,-281,281,280,-277,282,283,-285,285,282,-285,286,287,-285,284,283,-287,286,288,-290,286,289,-288,282,288,-287,282,286,-284,284,289,-286,284,287,-290,289,282,-286,282,289,-289,144,90,-148,90,144,-144,90,143,-89,183,185,-93,91,183,-93,183,91,-185
- }
- Edges: *656 {
- a: 0,35,3,7,11,72,36,13,41,14,15,16,18,17,12,24,26,23,19,20,31,8,4,1,9,5,2,32,38,45,34,33,39,43,42,46,53,58,60,59,65,68,66,69,55,51,54,47,61,151,95,96,116,131,181,187,81,132,80,130,129,112,92,75,91,86,82,77,101,107,121,135,76,93,99,90,97,109,100,105,119,124,106,114,117,137,140,120,125,126,74,83,78,73,88,84,79,113,104,147,149,155,157,163,145,172,180,191,192,185,186,176,196,200,201,202,205,208,211,213,214,217,219,220,223,224,226,229,232,235,238,241,243,245,248,249,251,253,255,257,259,260,262,266,268,271,273,275,277,278,280,284,286,289,292,295,297,299,301,304,305,307,309,310,313,315,316,319,322,323,325,328,330,331,335,337,340,344,345,348,349,352,353,355,358,362,363,365,367,370,372,373,376,379,381,383,386,390,392,394,400,401,402,403,404,405,406,407,408,410,411,412,413,414,417,418,419,420,422,424,428,430,434,437,442,443,444,446,447,448,449,451,453,454,456,457,458,460,462,465,467,472,478,479,480,482,483,484,485,486,489,490,491,492,494,496,500,502,506,509,514,515,516,518,519,520,521,522,524,526,528,530,531,532,534,537,539,544,550,551,552,553,554,556,557,558,560,562,563,564,566,568,570,573,574,580,586,587,588,590,591,592,593,595,597,598,600,601,602,604,606,609,611,616,622,623,624,626,627,628,629,630,633,635,636,639,640,641,644,646,652,653,654,656,657,658,659,661,663,664,666,667,668,670,672,675,677,682,688,689,690,692,693,694,695,696,698,699,701,702,705,706,711,712,713,718,724,725,726,727,728,730,731,732,734,736,737,738,740,742,744,747,748,754,760,761,762,763,764,766,767,768,770,771,773,774,777,778,780,784,788,790,796,797,798,800,801,802,803,804,807,808,812,813,814,816,820,821,826,827,828,829,830,832,833,834,836,837,839,840,843,844,849,850,851,856,862,863,864,866,867,868,869,870,872,873,875,876,879,880,885,887,889,892,898,899,900,901,902,904,905,906,908,909,911,912,915,916,918,922,923,928,934,935,936,937,938,940,941,944,945,946,947,949,950,952,953,958,959,964,970,971,972,974,975,976,977,978,980,981,983,984,987,988,993,994,995,1000,1006,1007,1008,1010,1011,1012,1013,1014,1016,1017,1019,1020,1023,1024,1029,1030,
- 1031,1036,1042,1043,1044,1045,1047,1049,1050,1051,1052,1054,1056,1058,1059,1060,1061,1066,1070,1072,1078,1079,1080,1082,1083,1084,1085,1086,1088,1089,1090,1092,1094,1096,1101,1102,1103,1108,1114,1115,1116,1117,1118,1120,1121,1124,1125,1126,1127,1129,1130,1132,1133,1138,1139,1144,1150,1151,1152,1154,1155,1156,1157,1159,1161,1162,1164,1166,1167,1168,1170,1173,1175,1181,1186,1187,1188,1190,1191,1192,1193,1194,1196,1197,1199,1200,1203,1204,1209,1210,1211,1216,1222,1223,1224,1226,1227,1228,1229,1230,1232,1234,1235,1236,1238,1242,1244,1246,1248,1253,1258,1259,1260,1261,1263,1264,1265,1266,1268,1270,1271,1272,1274,1276,1278,1282,1283,1288,1294,1299,1305,1306
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *3936 {
- a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.000322104024235159,-0.000310139934299514,0.999999821186066,0,0,1,0,0,1,-2.35435280160345e-008,0,1,-0.000383507489459589,-0.000677263655234128,0.999999642372131,-0.000322104024235159,-0.000310139934299514,0.999999821186066,0,0,1,0,0,1,0.000127010440337472,0.000334121024934575,0.999999940395355,0.0004514635365922,0.000142887409310788,0.99999988079071,0,0,1,-0.000968167325481772,-0.000935419055167586,0.999999105930328,-0.00052702275570482,0.000256011029705405,0.99999988079071,0.000127010440337472,0.000334121024934575,0.999999940395355,0,0,1,0,0,1,0,0,1,0.000127010440337472,0.000334121024934575,0.999999940395355,0,0,1,-0.000322104024235159,-0.000310139934299514,0.999999821186066,-0.000968167325481772,-0.000935419055167586,0.999999105930328,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.00301734148524702,-0.000941799022257328,0.999994933605194,-0.0021317086648196,-0.00066536758095026,0.999997437000275,-0.00694896280765533,-0.00216897134669125,0.999973475933075,-0.00694896280765533,-0.00216897111386061,0.999973475933075,-0.00694896373897791,-0.00216897134669125,0.99997353553772,0,0,1,0.0004514635365922,0.000142887409310788,0.99999988079071,0.000291089992970228,-0.000156748428707942,0.99999988079071,-0.0021317086648196,-0.00066536758095026,0.999997437000275,-0.00301734148524702,-0.000941799022257328,0.999994933605194,0.000796998909208924,0.00115416583139449,0.999998986721039,0.00211977399885654,-0.00114147271960974,0.999997138977051,0.000291089992970228,-0.000156748428707942,0.99999988079071,0.0004514635365922,0.000142887409310788,0.99999988079071,-0.00052702275570482,0.000256011029705405,0.99999988079071,-0.000455383735243231,0.00222690287046134,0.999997437000275,0.000796998909208924,0.00115416583139449,0.999998986721039,0.0004514635365922,0.000142887409310788,0.99999988079071,0.000127010440337472,0.000334121024934575,0.999999940395355,-0.00436203414574265,-0.00289501389488578,0.999986290931702,-0.000455383735243231,0.00222690287046134,0.999997437000275,-0.00052702275570482,0.000256011029705405,0.99999988079071,
- -0.00249140616506338,-0.00240705860778689,0.999993979930878,-0.00385441398248076,-0.00373198511078954,0.999985575675964,-0.00436203414574265,-0.00289501389488578,0.999986290931702,-0.00052702275570482,0.000256011029705405,0.99999988079071,-0.000968167325481772,-0.000935419055167586,0.999999105930328,-0.000383507489459589,-0.000677263655234128,0.999999642372131,-0.00104968075174838,-0.00287430128082633,0.999995350837708,-0.00160136050544679,-0.00154188042506576,0.999997496604919,-0.00249140616506338,-0.00240705860778689,0.999993979930878,-0.000968167325481772,-0.000935419055167586,0.999999105930328,-0.000322104024235159,-0.000310139934299514,0.999999821186066,-0.000383507489459589,-0.000677263655234128,0.999999642372131,0.000109041568066459,-0.000375041679944843,0.999999940395355,-0.00104968075174838,-0.00287430128082633,0.999995350837708,-4.54658817261588e-008,0,1,-4.54658781734452e-008,0,1,0.000109041568066459,-0.000375041679944843,0.999999940395355,-0.000383507489459589,-0.000677263655234128,0.999999642372131,-2.35435280160345e-008,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.00428892346099019,0.000966897583566606,-0.999990344047546,0.00222407421097159,0.000501396658364683,-0.99999737739563,0.000873848388437182,0.000103471851616632,-0.999999582767487,0.00297297863289714,0.000615862023551017,-0.999995410442352,0.00428892392665148,0.000966897699981928,-0.999990403652191,0.00222407421097159,0.000501396658364683,-0.99999737739563,0,0,-1,0,0,-1,0.000873848388437182,0.000103471851616632,-0.999999582767487,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.00122688745614141,-0.000517680600751191,-0.999999046325684,0,0,-1,0,0,-1,-0.000259108695900068,5.26133298990317e-005,-0.999999940395355,-0.00122688745614141,-0.000517680600751191,-0.999999046325684,-0.000259108695900068,5.26133298990317e-005,-0.999999940395355,-0.0108433123677969,0.00220178905874491,-0.999938726425171,-0.00468171108514071,-0.00368737638927996,-0.999982297420502,0,0,-1,-0.00122688745614141,-0.000517680600751191,-0.999999046325684,0.00058851350331679,3.91920693800785e-005,-0.999999821186066,
- 0,0,-1,0.00058851350331679,3.91920693800785e-005,-0.999999821186066,-0.00122688745614141,-0.000517680600751191,-0.999999046325684,-0.00468171108514071,-0.00368737638927996,-0.999982297420502,0.00143142987508327,5.36514817213174e-005,-0.999999046325684,0.000845724483951926,0.000490364152938128,-0.999999523162842,0,0,-1,0,0,-1,0.00058851350331679,3.91920693800785e-005,-0.999999821186066,0.000845724483951926,0.000490364152938128,-0.999999523162842,0.00058851350331679,3.91920693800785e-005,-0.999999821186066,0.00143142987508327,5.36514817213174e-005,-0.999999046325684,0.00390696246176958,0.00231710006482899,-0.999989748001099,0.000515206949785352,0.000435641879448667,-0.999999821186066,0.000515206949785352,0.000435641879448667,-0.999999821186066,0.00390696246176958,0.00231710006482899,-0.999989748001099,-0.000471590436063707,-0.000234965060371906,-0.999999821186066,0,0,-1,0.000845724483951926,0.000490364152938128,-0.999999523162842,0,0,-1,0,0,-1,0,0,-1,0.000845724483951926,0.000490364152938128,-0.999999523162842,0.000515206949785352,0.000435641879448667,-0.999999821186066,-0.000243839880567975,-0.000156224443344399,-1,0.000873848388437182,0.000103471851616632,-0.999999582767487,-0.000243839880567975,-0.000156224443344399,-1,0.000515206949785352,0.000435641879448667,-0.999999821186066,-0.000471590436063707,-0.000234965060371906,-0.999999821186066,-0.000473872903967276,-0.000303603097563609,-0.99999988079071,-0.000473872845759615,-0.000303603068459779,-0.999999821186066,-0.000473872845759615,-0.000303603068459779,-0.999999761581421,0.00297297863289714,0.000615862023551017,-0.999995410442352,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.000243839880567975,-0.000156224443344399,-1,0,0,-1,0,0,-1,-0.000243839880567975,-0.000156224443344399,-1,0.000873848388437182,0.000103471851616632,-0.999999582767487,-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,3.57627860658738e-009,-1,-9.53674139658744e-010,7.15255721317476e-009,-1,-1.90734827931749e-009,
- 7.15255721317476e-009,-1,-1.90734827931749e-009,3.57627860658738e-009,-1,-9.53674139658744e-010,0,-1,0,3.57627860658738e-009,-1,-9.53674139658744e-010,3.57627860658738e-009,-1,-9.53674139658744e-010,0,-1,0,-8.94069651646845e-010,-1,7.15255743521936e-010,0,-1,0,0,-1,0,-8.94069651646845e-010,-1,7.15255743521936e-010,-1.78813930329369e-009,-1,1.43051148704387e-009,-1.78813930329369e-009,-1,1.43051148704387e-009,-8.94069651646845e-010,-1,7.15255743521936e-010,-8.94069651646845e-010,-1,7.15255743521936e-010,0.999998807907104,-0.000773041683714837,0.00130487966816872,0.999998867511749,-0.000773041741922498,0.0013048795517534,0.999998867511749,-0.000773041741922498,0.00130487966816872,0.999998867511749,-0.000773041683714837,0.0013048795517534,0.999998807907104,-0.000773041683714837,0.0013048795517534,0.999998927116394,-0.00077304185833782,0.00130487978458405,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,0,0.920371472835541,0.0948218777775764,0.37937468290329,0.944819748401642,0.272794604301453,-0.181380495429039,0.987588167190552,0.0978129282593727,-0.122891083359718,0.944819748401642,0.272794604301453,-0.181380495429039,0.920371472835541,0.0948218777775764,0.37937468290329,0.900893032550812,0.322476744651794,0.290517777204514,0.816133141517639,0.122592695057392,0.564710199832916,0.900893032550812,0.322476744651794,0.290517777204514,0.920371472835541,0.0948218777775764,0.37937468290329,0.900893032550812,0.322476744651794,0.290517777204514,0.934004724025726,0.329496741294861,-0.138083711266518,0.944819748401642,0.272794604301453,-0.181380495429039,0.796298742294312,0.260868012905121,0.545762062072754,0.900893032550812,0.322476744651794,0.290517777204514,0.816133141517639,0.122592695057392,0.564710199832916,0.887762546539307,0.388279616832733,0.247218012809753,0.934004724025726,0.329496741294861,-0.138083711266518,0.900893032550812,0.322476744651794,0.290517777204514,0.796298742294312,0.260868012905121,0.545762062072754,0.887762546539307,0.388279616832733,0.247218012809753,0.900893032550812,0.322476744651794,0.290517777204514,
- 0.935439705848694,0.345357179641724,0.0753718912601471,0.934004724025726,0.329496741294861,-0.138083711266518,0.887762546539307,0.388279616832733,0.247218012809753,0.935439705848694,0.345357179641724,0.0753718912601471,0.87561446428299,0.234643399715424,-0.42218679189682,0.934004724025726,0.329496741294861,-0.138083711266518,0.796298742294312,0.260868012905121,0.545762062072754,0.821031093597412,0.362817823886871,0.440762221813202,0.887762546539307,0.388279616832733,0.247218012809753,0.821031093597412,0.362817823886871,0.440762221813202,0.935439705848694,0.345357179641724,0.0753718912601471,0.887762546539307,0.388279616832733,0.247218012809753,0.697961211204529,0.362846463918686,0.617407917976379,0.821031093597412,0.362817823886871,0.440762221813202,0.796298742294312,0.260868012905121,0.545762062072754,0.576991319656372,0.439961552619934,0.688124060630798,0.821031093597412,0.362817823886871,0.440762221813202,0.697961211204529,0.362846463918686,0.617407917976379,0.898640155792236,0.432959139347076,0.0706560164690018,0.821031093597412,0.362817823886871,0.440762221813202,0.576991319656372,0.439961552619934,0.688124060630798,0.816200017929077,0.466574668884277,0.340772181749344,0.821031093597412,0.362817823886871,0.440762221813202,0.898640155792236,0.432959139347076,0.0706560164690018,0.830992043018341,0.43756577372551,-0.343494474887848,0.87561446428299,0.234643399715424,-0.42218679189682,0.935439705848694,0.345357179641724,0.0753718912601471,0.87561446428299,0.234643399715424,-0.42218679189682,0.830992043018341,0.43756577372551,-0.343494474887848,0.786293566226959,0.318534821271896,-0.529412865638733,0.935439705848694,0.345357179641724,0.0753718912601471,0.821031093597412,0.362817823886871,0.440762221813202,0.840683579444885,0.379960238933563,0.385851413011551,0.821031093597412,0.362817823886871,0.440762221813202,0.816200017929077,0.466574668884277,0.340772181749344,0.840683579444885,0.379960238933563,0.385851413011551,0.834725618362427,0.524353563785553,0.168186128139496,0.830992043018341,0.43756577372551,-0.343494474887848,
- 0.935439705848694,0.345357179641724,0.0753718912601471,0.935439705848694,0.345357179641724,0.0753718912601471,0.840683579444885,0.379960238933563,0.385851413011551,0.834725618362427,0.524353563785553,0.168186128139496,0.830992043018341,0.43756577372551,-0.343494474887848,0.697984933853149,0.712298512458801,-0.0738089382648468,0.786293566226959,0.318534821271896,-0.529412865638733,0.834725618362427,0.524353563785553,0.168186128139496,0.697984933853149,0.712298512458801,-0.0738089382648468,0.830992043018341,0.43756577372551,-0.343494474887848,0.786293566226959,0.318534821271896,-0.529412865638733,0.697984933853149,0.712298512458801,-0.0738089382648468,0.469928652048111,0.834588170051575,-0.28745374083519,0.697984933853149,0.712298512458801,-0.0738089382648468,0.395070046186447,0.905630946159363,-0.15411750972271,0.469928652048111,0.834588170051575,-0.28745374083519,0.766974151134491,0.408514976501465,0.494839519262314,0.834725618362427,0.524353563785553,0.168186128139496,0.840683579444885,0.379960238933563,0.385851413011551,0.840683579444885,0.379960238933563,0.385851413011551,0.816200017929077,0.466574668884277,0.340772181749344,0.766974151134491,0.408514976501465,0.494839519262314,0.766974151134491,0.408514976501465,0.494839519262314,0.729864776134491,0.672695755958557,0.121563941240311,0.834725618362427,0.524353563785553,0.168186128139496,0.816200017929077,0.466574668884277,0.340772181749344,0.729864776134491,0.672695755958557,0.121563941240311,0.766974151134491,0.408514976501465,0.494839519262314,0.834725618362427,0.524353563785553,0.168186128139496,0.729864776134491,0.672695755958557,0.121563941240311,0.697984933853149,0.712298512458801,-0.0738089382648468,0.700708270072937,0.702124416828156,-0.126607120037079,0.729864776134491,0.672695755958557,0.121563941240311,0.816200017929077,0.466574668884277,0.340772181749344,0.700708270072937,0.702124416828156,-0.126607120037079,0.697984933853149,0.712298512458801,-0.0738089382648468,0.729864776134491,0.672695755958557,0.121563941240311,0.831424295902252,0.52800178527832,0.173054322600365,
- 0.697984933853149,0.712298512458801,-0.0738089382648468,0.700708270072937,0.702124416828156,-0.126607120037079,0.57867032289505,0.815445721149445,-0.013746390119195,0.395070046186447,0.905630946159363,-0.15411750972271,0.697984933853149,0.712298512458801,-0.0738089382648468,0.697984933853149,0.712298512458801,-0.0738089382648468,0.831424295902252,0.52800178527832,0.173054322600365,0.57867032289505,0.815445721149445,-0.013746390119195,0.57867032289505,0.815445721149445,-0.013746390119195,0.853898406028748,0.345607310533524,-0.389118373394012,0.395070046186447,0.905630946159363,-0.15411750972271,0.831424295902252,0.52800178527832,0.173054322600365,0.820625305175781,0.439538806676865,0.365211874246597,0.57867032289505,0.815445721149445,-0.013746390119195,0.921537041664124,0.361777871847153,-0.141018569469452,0.853898406028748,0.345607310533524,-0.389118373394012,0.57867032289505,0.815445721149445,-0.013746390119195,0.820625305175781,0.439538806676865,0.365211874246597,0.921537041664124,0.361777871847153,-0.141018569469452,0.57867032289505,0.815445721149445,-0.013746390119195,0.948663353919983,0.315611839294434,-0.0206638742238283,0.853898406028748,0.345607310533524,-0.389118373394012,0.921537041664124,0.361777871847153,-0.141018569469452,0.820625305175781,0.439538806676865,0.365211874246597,0.948663353919983,0.315611839294434,-0.0206638742238283,0.921537041664124,0.361777871847153,-0.141018569469452,0.948663353919983,0.315611839294434,-0.0206638742238283,0.773599028587341,0.531311273574829,-0.345329999923706,0.853898406028748,0.345607310533524,-0.389118373394012,0.831424295902252,0.52800178527832,0.173054322600365,0.835075378417969,0.0466860122978687,0.548151135444641,0.820625305175781,0.439538806676865,0.365211874246597,0.924312233924866,0.104442775249481,0.367067724466324,0.835075378417969,0.0466860122978687,0.548151135444641,0.831424295902252,0.52800178527832,0.173054322600365,0.773139297962189,0.218024775385857,0.595584273338318,0.820625305175781,0.439538806676865,0.365211874246597,0.835075378417969,0.0466860122978687,0.548151135444641,
- 0.924312233924866,0.104442775249481,0.367067724466324,0.773139297962189,0.218024775385857,0.595584273338318,0.835075378417969,0.0466860122978687,0.548151135444641,0.820625305175781,0.439538806676865,0.365211874246597,0.773139297962189,0.218024775385857,0.595584273338318,0.948663353919983,0.315611839294434,-0.0206638742238283,0.838556110858917,0.0384351201355457,0.543457746505737,0.773139297962189,0.218024775385857,0.595584273338318,0.924312233924866,0.104442775249481,0.367067724466324,0.46900287270546,0.496390968561172,0.730501353740692,0.773139297962189,0.218024775385857,0.595584273338318,0.838556110858917,0.0384351201355457,0.543457746505737,0.773139297962189,0.218024775385857,0.595584273338318,0.46900287270546,0.496390968561172,0.730501353740692,0.67811518907547,0.523803055286407,0.515548467636108,0.948663353919983,0.315611839294434,-0.0206638742238283,0.773139297962189,0.218024775385857,0.595584273338318,0.67811518907547,0.523803055286407,0.515548467636108,0.319138586521149,0.771133005619049,0.550912439823151,0.67811518907547,0.523803055286407,0.515548467636108,0.46900287270546,0.496390968561172,0.730501353740692,0.948663353919983,0.315611839294434,-0.0206638742238283,0.660867869853973,0.741608917713165,-0.115195319056511,0.773599028587341,0.531311273574829,-0.345329999923706,0.67811518907547,0.523803055286407,0.515548467636108,0.660867869853973,0.741608917713165,-0.115195319056511,0.948663353919983,0.315611839294434,-0.0206638742238283,0.660867869853973,0.741608917713165,-0.115195319056511,0.286583006381989,0.817351281642914,-0.499807119369507,0.773599028587341,0.531311273574829,-0.345329999923706,0.67811518907547,0.523803055286407,0.515548467636108,0.319138586521149,0.771133005619049,0.550912439823151,0.703740358352661,0.64848381280899,0.290203899145126,0.67811518907547,0.523803055286407,0.515548467636108,0.703740358352661,0.64848381280899,0.290203899145126,0.660867869853973,0.741608917713165,-0.115195319056511,0.328314036130905,0.865725994110107,0.377794295549393,0.703740358352661,0.64848381280899,0.290203899145126,
- 0.319138586521149,0.771133005619049,0.550912439823151,0.476403295993805,0.874324262142181,-0.092720091342926,0.286583006381989,0.817351281642914,-0.499807119369507,0.660867869853973,0.741608917713165,-0.115195319056511,0.476403295993805,0.874324262142181,-0.092720091342926,0.569056510925293,0.773599028587341,-0.278781473636627,0.286583006381989,0.817351281642914,-0.499807119369507,0.476403295993805,0.874324262142181,-0.092720091342926,0.583245098590851,0.773123919963837,0.249207973480225,0.569056510925293,0.773599028587341,-0.278781473636627,0.382034331560135,0.886709213256836,0.260377943515778,0.660867869853973,0.741608917713165,-0.115195319056511,0.703740358352661,0.64848381280899,0.290203899145126,0.660867869853973,0.741608917713165,-0.115195319056511,0.382034331560135,0.886709213256836,0.260377943515778,0.476403295993805,0.874324262142181,-0.092720091342926,0.703740358352661,0.64848381280899,0.290203899145126,0.328314036130905,0.865725994110107,0.377794295549393,0.382034331560135,0.886709213256836,0.260377943515778,0.583245098590851,0.773123919963837,0.249207973480225,0.476403295993805,0.874324262142181,-0.092720091342926,0.382034331560135,0.886709213256836,0.260377943515778,0.328314036130905,0.865725994110107,0.377794295549393,0.319820582866669,0.920794546604156,0.223276495933533,0.382034331560135,0.886709213256836,0.260377943515778,0.382034331560135,0.886709213256836,0.260377943515778,0.543712615966797,0.831540822982788,0.113650992512703,0.583245098590851,0.773123919963837,0.249207973480225,0.319820582866669,0.920794546604156,0.223276495933533,0.543712615966797,0.831540822982788,0.113650992512703,0.382034331560135,0.886709213256836,0.260377943515778,0.750734865665436,-0.129246860742569,0.647836744785309,0.750734806060791,-0.129246845841408,0.647836744785309,0.750734746456146,-0.129246845841408,0.647836744785309,-0.928426384925842,-0.0594323575496674,0.366731703281403,-0.928426444530487,-0.0594323538243771,0.36673167347908,-0.928426384925842,-0.0594323575496674,0.36673167347908,-0.00469595845788717,0.999975442886353,-0.00522376177832484,
- -0.00189597543794662,0.999998152256012,0.000277806451776996,0.00254867086187005,0.999956130981445,0.00901059154421091,0.00254867086187005,0.999956130981445,0.00901059154421091,-0.00189597543794662,0.999998152256012,0.000277806451776996,0.00573260383680463,0.999867081642151,0.0152661046013236,-0.0430584959685802,0.00242543034255505,-0.999069631099701,-0.0492692440748215,-0.0101816952228546,-0.998733580112457,-0.0467395484447479,-0.00504454644396901,-0.998894393444061,-0.0430584959685802,0.00242543034255505,-0.999069631099701,-0.0467395484447479,-0.00504454644396901,-0.998894393444061,-0.0406599678099155,0.00728942453861237,-0.999146461486816,-0.0136945191770792,-0.998878538608551,0.0453230477869511,-0.0151463560760021,-0.998986780643463,0.0423796288669109,-0.0110346926376224,-0.998652279376984,0.050713449716568,-0.0136945191770792,-0.998878538608551,0.0453230477869511,-0.0110346926376224,-0.998652279376984,0.050713449716568,-0.00893706083297729,-0.998448491096497,0.0549626499414444,0.999885261058807,-0.00976571906358004,-0.0115813175216317,0.99988579750061,-0.0105202086269856,-0.0108476858586073,0.999805450439453,-0.0196228250861168,-0.00199483404867351,0.99988579750061,-0.0105202086269856,-0.0108476858586073,0.999885261058807,-0.00976571906358004,-0.0115813175216317,0.999788641929626,-0.000536887324415147,-0.0205531679093838,-0.99983674287796,0.00745373498648405,0.0164564792066813,-0.999830305576324,0.00771810580044985,0.0167281031608582,-0.999960541725159,9.07039939193055e-005,0.00889092311263084,-0.999830305576324,0.00771810580044985,0.0167281031608582,-0.99983674287796,0.00745373498648405,0.0164564792066813,-0.999586403369904,0.0151965087279677,0.0244111660867929,-0.0280057899653912,-0.0467601381242275,0.998513460159302,-0.00308998348191381,0.00682652788236737,0.999971926212311,-0.0184347778558731,-0.0261700917035341,0.999487459659576,0.00587786128744483,0.0261022411286831,0.999641954898834,-0.0184347778558731,-0.0261700917035341,0.999487459659576,-0.00308998348191381,0.00682652788236737,0.999971926212311,0.00241968175396323,-0.998774349689484,-0.0494358688592911,
- -5.97853613726329e-005,-0.998603582382202,-0.0528290532529354,-0.00431000348180532,-0.99826967716217,-0.058643352240324,-5.97853613726329e-005,-0.998603582382202,-0.0528290532529354,0.00241968175396323,-0.998774349689484,-0.0494358688592911,0.00717326859012246,-0.999052345752716,-0.0429279170930386,-0.999927997589111,-0.0117716137319803,0.00231684045866132,-0.999945104122162,-0.00955393444746733,0.00430597830563784,-0.999920785427094,-0.000322274339850992,0.0125850448384881,-0.999782681465149,-0.0201780386269093,-0.00522430194541812,-0.999945104122162,-0.00955393444746733,0.00430597830563784,-0.999927997589111,-0.0117716137319803,0.00231684045866132,0.999671041965485,-0.0168291702866554,-0.0193565487861633,0.999947130680084,-0.00528482347726822,-0.00882857851684093,0.995165705680847,-0.0705436766147614,-0.0683290511369705,0.999671041965485,-0.0168291702866554,-0.0193565487861633,0.998340666294098,0.0444828495383263,0.0365686938166618,0.999947130680084,-0.00528482347726822,-0.00882857851684093,-0.0139186922460794,0.999808192253113,0.0137790404260159,-0.0147543987259269,0.999779224395752,0.0149554368108511,-0.016255671158433,0.999722123146057,0.0170687604695559,-0.0147543987259269,0.999779224395752,0.0149554368108511,-0.0139186922460794,0.999808192253113,0.0137790404260159,-0.0124568780884147,0.999853670597076,0.0117213167250156,-0.00183240708429366,0.0334910340607166,-0.99943733215332,-0.00330944079905748,0.030991455540061,-0.999514162540436,-0.00483766756951809,0.0284049119800329,-0.99958473443985,-0.00330944079905748,0.030991455540061,-0.999514162540436,-0.00650324858725071,0.0255855228751898,-0.999651551246643,-0.00483766756951809,0.0284049119800329,-0.99958473443985,-0.00115758820902556,-0.0333301387727261,0.999443709850311,0.00364284683018923,-0.0409764759242535,0.999153435230255,-0.00632876018062234,-0.0250900685787201,0.999665141105652,0.00364284683018923,-0.0409764759242535,0.999153435230255,-0.00115758820902556,-0.0333301387727261,0.999443709850311,0.00937856175005436,-0.0501087941229343,0.998699724674225,
- -0.00585620291531086,0.999973595142365,-0.00429853284731507,-0.00218529580160975,0.99999612569809,0.00170866900589317,0.00166581245139241,0.999966502189636,0.00801047775894403,0.00166581245139241,0.999966502189636,0.00801047775894403,-0.00218529580160975,0.99999612569809,0.00170866900589317,0.00579819502308965,0.999874114990234,0.0147722344845533,-0.0505957454442978,-0.0024631863925606,-0.998716115951538,-0.0553835518658161,-0.0121367238461971,-0.998391449451447,-0.0534189641475677,-0.00816596206277609,-0.998538792133331,-0.0505957454442978,-0.0024631863925606,-0.998716115951538,-0.0534189641475677,-0.00816596206277609,-0.998538792133331,-0.0487542152404785,0.00125445087905973,-0.998810052871704,-0.0145962284877896,-0.999001204967499,0.0422293804585934,-0.0154921151697636,-0.999051570892334,0.040692787617445,-0.0134913893416524,-0.998934924602509,0.0441240705549717,-0.0145962284877896,-0.999001204967499,0.0422293804585934,-0.0134913893416524,-0.998934924602509,0.0441240705549717,-0.0122242188081145,-0.998852968215942,0.0462967604398727,0.999919712543488,-0.00779868988320231,-0.00999261252582073,0.999915421009064,-0.0103046419098973,-0.00793205667287111,0.999847114086151,-0.0173512771725655,-0.00213693198747933,0.999915421009064,-0.0103046419098973,-0.00793205667287111,0.999919712543488,-0.00779868988320231,-0.00999261252582073,0.999871969223022,-0.000500541995279491,-0.0159926377236843,-0.999854981899261,0.011059008538723,0.0129522308707237,-0.999895632266998,0.00907377526164055,0.0112433470785618,-0.999994039535522,4.15088652516715e-005,0.00346810161136091,-0.999895632266998,0.00907377526164055,0.0112433470785618,-0.999854981899261,0.011059008538723,0.0129522308707237,-0.999581515789032,0.0201372839510441,0.0207664854824543,-0.035366602241993,-0.0629014819860458,0.997392892837524,-0.00324649503454566,0.00634518451988697,0.999974608421326,-0.0230892356485128,-0.0364239178597927,0.999069631099701,0.00829616468399763,0.0312106274068356,0.999478399753571,-0.0230892356485128,-0.0364239178597927,0.999069631099701,-0.00324649503454566,0.00634518451988697,0.999974608421326,
- -1.52118464029627e-005,0.999756872653961,0.0220512710511684,0.00262664677575231,0.999826669692993,0.018431780859828,0.00769556732848287,0.99990439414978,0.0114858439192176,0.00262664677575231,0.999826669692993,0.018431780859828,-1.52118464029627e-005,0.999756872653961,0.0220512710511684,-0.00454215100035071,0.999590456485748,0.0282523930072784,-0.999801278114319,0.0194219276309013,0.00449119275435805,-0.999948561191559,0.00914827268570662,-0.00437798444181681,-0.999935448169708,0.0110158426687121,-0.00276589277200401,-0.999935448169708,0.0110158426687121,-0.00276589277200401,-0.999948561191559,0.00914827268570662,-0.00437798444181681,-0.999924063682556,-6.66384366923012e-005,-0.0123312333598733,0.999719738960266,0.0156034985557199,0.0178062003105879,0.999941229820251,0.00577728077769279,0.0091796088963747,0.995302796363831,0.0706854537129402,0.0661504939198494,0.999941229820251,0.00577728077769279,0.0091796088963747,0.999719738960266,0.0156034985557199,0.0178062003105879,0.998339772224426,-0.0452538132667542,-0.0356327220797539,-0.015140550211072,-0.999739289283752,0.017098993062973,-0.0142806796357036,-0.999730348587036,0.0183096118271351,-0.0127760367467999,-0.999709665775299,0.0204278044402599,-0.0142806796357036,-0.999730348587036,0.0183096118271351,-0.015140550211072,-0.999739289283752,0.017098993062973,-0.016687473282218,-0.999749422073364,0.014920849353075,-0.00181912654079497,-0.00265857647173107,0.999994874000549,-0.00340505829080939,-3.88908447348513e-005,0.999994218349457,-0.00493998732417822,0.00249659805558622,0.999984622001648,-0.00340505829080939,-3.88908447348513e-005,0.999994218349457,-0.0067226467654109,0.00544136390089989,0.999962627887726,-0.00493998732417822,0.00249659805558622,0.999984622001648,-0.00109688425436616,0.00226582959294319,-0.999996840953827,0.0034576109610498,0.00934336241334677,-0.999950408935547,-0.00635509891435504,-0.00590560911223292,-0.999962449073792,0.0034576109610498,0.00934336241334677,-0.999950408935547,-0.00109688425436616,0.00226582959294319,-0.999996840953827,0.00929522141814232,0.0184144023805857,-0.999787211418152,
- 0.0038617798127234,-0.999963700771332,0.00759347202256322,0.00315380771644413,-0.999974250793457,0.00644294125959277,0.00231932755559683,-0.999984383583069,0.00508681824430823,0.0038617798127234,-0.999963700771332,0.00759347202256322,0.00469076307490468,-0.999948978424072,0.00894065573811531,0.00315380771644413,-0.999974250793457,0.00644294125959277,0.999999403953552,-0.000745530938729644,-0.000764512049499899,0.999999344348907,-0.000906866625882685,-0.000627172063104808,0.999998688697815,-0.00161660055164248,-2.2997139240033e-005,0.999999344348907,-0.000906866625882685,-0.000627172063104808,0.999999403953552,-0.000745530938729644,-0.000764512049499899,0.999998927116394,7.34451032258221e-006,-0.00140541058499366,-0.999729335308075,-0.0231125820428133,-0.0026627026963979,-0.999481797218323,-0.0307844467461109,-0.00940706487745047,-0.999762952327728,-0.0217209104448557,-0.00143947557080537,-0.999729335308075,-0.0231125820428133,-0.0026627026963979,-0.999762952327728,-0.0217209104448557,-0.00143947557080537,-0.999886155128479,-0.0141679402440786,0.00519823841750622,0.0110706491395831,0.999839007854462,0.01412492711097,0.0111221466213465,0.999839603900909,0.0140412114560604,0.0111819924786687,0.999840259552002,0.0139439245685935,0.0111221466213465,0.999839603900909,0.0140412114560604,0.0110706491395831,0.999839007854462,0.01412492711097,0.011009281501174,0.99983823299408,0.0142246875911951,0.000234345003264025,-0.00657325377687812,0.999978363513947,0.000931799644604325,-0.00790120102465153,0.999968349933624,-0.00034737034002319,-0.00546566443517804,0.999984979629517,0.00145990494638681,-0.00890669785439968,0.999959290027618,0.000931799644604325,-0.00790120102465153,0.999968349933624,0.000234345003264025,-0.00657325377687812,0.999978363513947,0.00118821067735553,-0.00840199645608664,-0.999963998794556,0.00166879245080054,-0.00751318223774433,-0.999970376491547,0.00078580278204754,-0.00914622657001019,-0.999957799911499,0.00208764057606459,-0.00673853000625968,-0.999975085258484,0.00166879245080054,-0.00751318223774433,-0.999970376491547,
- 0.00118821067735553,-0.00840199645608664,-0.999963998794556,0.00259522255510092,-0.999828100204468,-0.0183557141572237,-3.842687146971e-005,-0.999758780002594,-0.02196398191154,-0.00455212034285069,-0.999593436717987,-0.028147004544735,-3.842687146971e-005,-0.999758780002594,-0.02196398191154,0.00259522255510092,-0.999828100204468,-0.0183557141572237,0.00764707429334521,-0.999905407428741,-0.0114331375807524,-0.999935507774353,-0.0110212471336126,0.00274707330390811,-0.999948561191559,-0.00915199518203735,0.00436038710176945,-0.999924123287201,6.68999055051245e-005,0.0123159401118755,-0.99980092048645,-0.0194331835955381,-0.00451402878388762,-0.999948561191559,-0.00915199518203735,0.00436038710176945,-0.999935507774353,-0.0110212471336126,0.00274707330390811,0.99972003698349,-0.0156536474823952,-0.0177445132285357,0.999941229820251,-0.00584512390196323,-0.00913382600992918,0.995316684246063,-0.070632740855217,-0.0659967735409737,0.99972003698349,-0.0156536474823952,-0.0177445132285357,0.998348772525787,0.0450891405344009,0.0355912037193775,0.999941229820251,-0.00584512390196323,-0.00913382600992918,-0.0142719531431794,0.999731063842773,-0.018281452357769,-0.0151268700137734,0.999739766120911,-0.0170777607709169,-0.0166649837046862,0.999749958515167,-0.014911943115294,-0.0151268700137734,0.999739766120911,-0.0170777607709169,-0.0142719531431794,0.999731063842773,-0.018281452357769,-0.0127760851755738,0.999710559844971,-0.020387377589941,-0.00183024257421494,0.00255049648694694,-0.999995112419128,-0.0033943448215723,-3.31090741383377e-005,-0.999994218349457,-0.00490814633667469,-0.0025336742401123,-0.999984681606293,-0.0033943448215723,-3.31090741383377e-005,-0.999994218349457,-0.00666641537100077,-0.00543812429532409,-0.99996292591095,-0.00490814633667469,-0.0025336742401123,-0.999984681606293,-0.00109862629324198,-0.00229197321459651,0.999996781349182,0.00342373526655138,-0.00932073965668678,0.999950647354126,-0.00631936173886061,0.00582257192581892,0.999962985515594,0.00342373526655138,-0.00932073965668678,0.999950647354126,
- -0.00109862629324198,-0.00229197321459651,0.999996781349182,0.00921807810664177,-0.0183260440826416,0.999789595603943,-0.0211077276617289,-0.0204767268151045,-0.99956750869751,-0.00375052797608078,-0.0504278503358364,-0.998720705509186,-0.0417874082922935,0.0152968615293503,-0.999009430408478,-0.0211077276617289,-0.0204767268151045,-0.99956750869751,-0.0417874082922935,0.0152968615293503,-0.999009430408478,-0.0610318146646023,0.0486754439771175,-0.9969482421875,-0.0278613679111004,-0.0116872685030103,0.999543428421021,-0.0419741123914719,-0.0354883633553982,0.998488187789917,-0.0566522851586342,-0.0602718740701675,0.996573030948639,-0.0419741123914719,-0.0354883633553982,0.998488187789917,-0.0278613679111004,-0.0116872685030103,0.999543428421021,-0.0178366657346487,0.00520295184105635,0.999827325344086,-0.999992966651917,-0.00358184450305998,0.0011414879700169,-0.999866366386414,-0.0142057240009308,-0.00809327233582735,-0.999994516372681,-0.00145783880725503,0.00298766884952784,-0.999992966651917,-0.00358184450305998,0.0011414879700169,-0.999994516372681,-0.00145783880725503,0.00298766884952784,-0.999873578548431,0.00964524410665035,0.0126378983259201,0.998846292495728,0.00254139513708651,-0.0479541309177876,0.99891608953476,0.00420739408582449,-0.0463546141982079,0.998305559158325,-0.00760670658200979,-0.0576913915574551,0.99891608953476,0.00420739408582449,-0.0463546141982079,0.998846292495728,0.00254139513708651,-0.0479541309177876,0.999291896820068,0.0181420538574457,-0.0329655893146992,-0.0157029833644629,0.999852061271667,0.00702373497188091,-0.0256826039403677,0.999638974666595,-0.00789511576294899,-0.00478493701666594,0.999716222286224,0.0233342107385397,-0.0256826039403677,0.999638974666595,-0.00789511576294899,-0.0157029833644629,0.999852061271667,0.00702373497188091,-0.040476318448782,0.998729228973389,-0.0300288181751966,0.00241321930661798,-0.999836206436157,-0.0179400611668825,2.89808103843825e-005,-0.999776899814606,-0.021122794598341,-0.00447878427803516,-0.999621629714966,-0.0271393228322268,2.89808103843825e-005,-0.999776899814606,-0.021122794598341,
- 0.00241321930661798,-0.999836206436157,-0.0179400611668825,0.00745117478072643,-0.999909341335297,-0.0112137636169791,-0.999935388565063,-0.0110870255157351,0.00249509490095079,-0.999950885772705,-0.00891466625034809,0.00432162592187524,-0.999929487705231,6.71847592457198e-005,0.0118726026266813,-0.999804794788361,-0.019264068454504,-0.0043810592032969,-0.999950885772705,-0.00891466625034809,0.00432162592187524,-0.999935388565063,-0.0110870255157351,0.00249509490095079,0.999686360359192,-0.017008513212204,-0.0183790139853954,0.999949932098389,-0.00537927355617285,-0.00843585282564163,0.995417535305023,-0.0707562640309334,-0.0643223896622658,0.999686360359192,-0.017008513212204,-0.0183790139853954,0.998429656028748,0.0444109514355659,0.0341456457972527,0.999949932098389,-0.00537927355617285,-0.00843585282564163,-0.0143492678180337,0.999736785888672,-0.0178990960121155,-0.0151660013943911,0.999744296073914,-0.0167783610522747,-0.0167795307934284,0.999753177165985,-0.0145640289410949,-0.0151660013943911,0.999744296073914,-0.0167783610522747,-0.0143492678180337,0.999736785888672,-0.0178990960121155,-0.0127760963514447,0.99971729516983,-0.020057637244463,-0.00184958160389215,0.00244935951195657,-0.999995231628418,-0.00343420007266104,-0.000166891899425536,-0.999994158744812,-0.00496749626472592,-0.00269845756702125,-0.999984085559845,-0.00343420007266104,-0.000166891899425536,-0.999994158744812,-0.00675026839599013,-0.00564198708161712,-0.999961256980896,-0.00496749626472592,-0.00269845756702125,-0.999984085559845,-0.00109066697768867,-0.0021385932341218,0.999997079372406,0.00370911369100213,-0.00959966704249382,0.999947011470795,-0.0066342013888061,0.0064789904281497,0.999957025051117,0.00370911369100213,-0.00959966704249382,0.999947011470795,-0.00109066697768867,-0.0021385932341218,0.999997079372406,0.00985776167362928,-0.0191570594906807,0.999767959117889,-0.0219234395772219,-0.0193990133702755,-0.999571442604065,-0.00395021075382829,-0.0495332591235638,-0.99876469373703,-0.041888140141964,0.0141554567962885,-0.99902206659317,
- -0.0219234395772219,-0.0193990133702755,-0.999571442604065,-0.041888140141964,0.0141554567962885,-0.99902206659317,-0.0617840103805065,0.0476799607276917,-0.996950030326843,-0.024987168610096,-0.0315501540899277,0.999189794063568,-0.0333181507885456,-0.045890212059021,0.99839061498642,-0.0417144224047661,-0.0603458471596241,0.997305512428284,-0.0333181507885456,-0.045890212059021,0.99839061498642,-0.024987168610096,-0.0315501540899277,0.999189794063568,-0.018468564376235,-0.0203319322317839,0.999622642993927,-0.99999338388443,-0.00346203846856952,0.00112233054824173,-0.999876439571381,-0.0136744063347578,-0.00774862477555871,-0.999994874000549,-0.00141816446557641,0.00289764627814293,-0.99999338388443,-0.00346203846856952,0.00112233054824173,-0.999994874000549,-0.00141816446557641,0.00289764627814293,-0.999883651733398,0.00922545231878757,0.0121422437950969,-0.0305976793169975,-0.999304473400116,0.0213143862783909,-0.0116666033864021,-0.999901413917542,-0.00781711656600237,-0.0562028847634792,-0.996568500995636,0.0607658438384533,-0.0116666033864021,-0.999901413917542,-0.00781711656600237,-0.0305976793169975,-0.999304473400116,0.0213143862783909,0.0114907696843147,-0.998991250991821,-0.0434098616242409,0.999243199825287,-0.0129725784063339,-0.0366691872477531,0.999447584152222,-0.00796705484390259,-0.0322630181908607,0.997814357280731,-0.0350026004016399,-0.0560480356216431,0.999447584152222,-0.00796705484390259,-0.0322630181908607,0.999243199825287,-0.0129725784063339,-0.0366691872477531,0.999795496463776,0.0178365297615528,-0.00953124929219484,-0.0164222549647093,0.999842524528503,0.00672436319291592,-0.0261603537946939,0.999630153179169,-0.00742975808680058,-0.00477069430053234,0.999708950519562,0.0236478019505739,-0.0261603537946939,0.999630153179169,-0.00742975808680058,-0.0164222549647093,0.999842524528503,0.00672436319291592,-0.0418347753584385,0.998667061328888,-0.0302312038838863,0.00386629882268608,-0.999966204166412,0.00725677609443665,0.00325606227852404,-0.999975025653839,0.00629439437761903,0.00247338367626071,-0.999984204769135,0.00506005669012666,
- 0.00386629882268608,-0.999966204166412,0.00725677609443665,0.00464405212551355,-0.999953210353851,0.00848334189504385,0.00325606227852404,-0.999975025653839,0.00629439437761903,0.999999582767487,-0.000609009643085301,-0.000628801353741437,0.999999582767487,-0.000765635806601495,-0.000499021436553448,0.999999165534973,-0.00134539743885398,-1.86327524716035e-005,0.999999582767487,-0.000765635806601495,-0.000499021436553448,0.999999582767487,-0.000609009643085301,-0.000628801353741437,0.999999344348907,6.94153186486801e-006,-0.00113917584531009,-0.999727189540863,-0.0232137050479651,-0.00255200872197747,-0.999499261379242,-0.0304140355437994,-0.00872807297855616,-0.999765336513519,-0.0216302201151848,-0.00119398557581007,-0.999727189540863,-0.0232137050479651,-0.00255200872197747,-0.999765336513519,-0.0216302201151848,-0.00119398557581007,-0.999882221221924,-0.0145485876128078,0.00487840594723821,0.0113006690517068,0.99983948469162,0.0139128556475043,0.0112707279622555,0.999839067459106,0.0139601286500692,0.0112328128889203,0.999838590621948,0.0140199884772301,0.0112707279622555,0.999839067459106,0.0139601286500692,0.0113006690517068,0.99983948469162,0.0139128556475043,0.0113394539803267,0.999839782714844,0.0138516183942556,7.77007153374143e-005,-0.00691317673772573,0.999976098537445,0.000884720298927277,-0.00844254903495312,0.999963939189911,-0.000602318265009671,-0.00562446471303701,0.999983966350555,0.00150202447548509,-0.0096123805269599,0.999952733516693,0.000884720298927277,-0.00844254903495312,0.999963939189911,7.77007153374143e-005,-0.00691317673772573,0.999976098537445,0.00119978014845401,-0.00813039392232895,-0.999966204166412,0.00146821839734912,-0.00763625930994749,-0.999969720840454,0.000972657988313586,-0.00854847300797701,-0.999963045120239,0.00170474604237825,-0.00720086367800832,-0.999972641468048,0.00146821839734912,-0.00763625930994749,-0.999969720840454,0.00119978014845401,-0.00813039392232895,-0.999966204166412,0.018530098721385,0.000271903933025897,0.999828279018402,0.0452853292226791,0.0511465445160866,0.997663915157318,
- 0.0653769224882126,0.0894269570708275,0.993845403194427,0.018530098721385,0.000271903933025897,0.999828279018402,-0.000800704001449049,-0.03641352429986,0.999336421489716,0.0452853292226791,0.0511465445160866,0.997663915157318,0.0226065814495087,-0.0649673566222191,-0.997631371021271,0.0323757454752922,-0.083428867161274,-0.9959876537323,0.0403612144291401,-0.0985123515129089,-0.99431699514389,0.0323757454752922,-0.083428867161274,-0.9959876537323,0.0226065814495087,-0.0649673566222191,-0.997631371021271,0.0165675636380911,-0.0535500980913639,-0.99842768907547,0.999990880489349,-0.00410554930567741,-0.00112566642928869,0.999830007553101,-0.0156616605818272,0.00973519682884216,0.999993026256561,-0.00180353119503707,-0.00328903971239924,0.999990880489349,-0.00410554930567741,-0.00112566642928869,0.999993026256561,-0.00180353119503707,-0.00328903971239924,0.999837517738342,0.0103788552805781,-0.0147368805482984,0.00929964054375887,-0.998796820640564,0.0481517687439919,0.03056919015944,-0.999457657337189,0.0122432131320238,-0.0107016814872622,-0.996589839458466,0.0818178206682205,0.03056919015944,-0.999457657337189,0.0122432131320238,0.00929964054375887,-0.998796820640564,0.0481517687439919,0.0527104362845421,-0.998290419578552,-0.0252556279301643,-0.999335110187531,-0.0237184707075357,0.0276901312172413,-0.999104201793671,-0.0280494671314955,0.0316840298473835,-0.999966561794281,-0.00223296624608338,0.00787396915256977,-0.999104201793671,-0.0280494671314955,0.0316840298473835,-0.999335110187531,-0.0237184707075357,0.0276901312172413,-0.997840881347656,-0.0452808290719986,0.0475721806287766,0.0196243952959776,0.999517679214478,-0.0240717586129904,0.0115662319585681,0.999249339103699,-0.0369726307690144,0.0295986123383045,0.999529182910919,-0.00808552093803883,0.0115662319585681,0.999249339103699,-0.0369726307690144,0.0196243952959776,0.999517679214478,-0.0240717586129904,0.00433679297566414,0.998812019824982,-0.0485358200967312,-0.004066560883075,0.999977707862854,-0.0052892342209816,-0.00171414820943028,0.999998509883881,-9.09686496015638e-005,
- 0.00226278230547905,0.999959707260132,0.00869681872427464,0.00226278230547905,0.999959707260132,0.00869681872427464,-0.00171414820943028,0.999998509883881,-9.09686496015638e-005,0.00494586164131761,0.999880790710449,0.0146253984421492,-0.00828486867249012,0.00217943801544607,-0.999963343143463,-0.0141669856384397,-0.0104244351387024,-0.999845266342163,-0.0119246058166027,-0.0056191342882812,-0.999913096427917,-0.00828486867249012,0.00217943801544607,-0.999963343143463,-0.0119246058166027,-0.0056191342882812,-0.999913096427917,-0.00616992171853781,0.0067102862522006,-0.999958395957947,0.99971616268158,-0.0105452435091138,0.0213609933853149,0.999679028987885,-0.0117084411904216,0.0224637016654015,0.999266386032104,-0.0214678067713976,0.031714390963316,0.999679028987885,-0.0117084411904216,0.0224637016654015,0.99971616268158,-0.0105452435091138,0.0213609933853149,0.999928295612335,-0.000625879620201886,0.0119562931358814,-0.999723255634308,0.0112653886899352,-0.0206490252166986,-0.999737739562988,0.0125054158270359,-0.019188279286027,-0.999426960945129,5.51275588804856e-005,-0.033849012106657,-0.999737739562988,0.0125054158270359,-0.019188279286027,-0.999723255634308,0.0112653886899352,-0.0206490252166986,-0.999735832214355,0.0211510173976421,-0.00900034327059984,-0.0330011621117592,0.0151713881641626,0.999340236186981,-0.029086260125041,0.0240646600723267,0.999287188053131,-0.0314770117402077,0.0186347365379334,0.999330759048462,-0.0278860609978437,0.0267893765121698,0.999252080917358,-0.0314770117402077,0.0186347365379334,0.999330759048462,-0.029086260125041,0.0240646600723267,0.999287188053131,0.0252591762691736,-0.0219226200133562,-0.999440491199493,0.0415266379714012,-0.0461062751710415,-0.998073041439056,0.0638496875762939,-0.0793140828609467,-0.99480277299881,0.0252591762691736,-0.0219226200133562,-0.999440491199493,0.00493797147646546,0.00826879404485226,-0.999953627586365,0.0415266379714012,-0.0461062751710415,-0.998073041439056,0.028558349236846,0.0738507360219955,0.996860325336456,0.0349850542843342,0.0836373344063759,0.995881915092468,
- 0.0437327995896339,0.0969516485929489,0.99432772397995,0.0349850542843342,0.0836373344063759,0.995881915092468,0.028558349236846,0.0738507360219955,0.996860325336456,0.0215623155236244,0.0631924346089363,0.997768402099609,0.999995529651642,0.00284123257733881,0.000816826417576522,0.999916970729828,0.0109601207077503,-0.00676279235631227,0.999996542930603,0.00120691419579089,0.00234254030510783,0.999995529651642,0.00284123257733881,0.000816826417576522,0.999996542930603,0.00120691419579089,0.00234254030510783,0.999923288822174,-0.00713458191603422,0.0101294470950961,0.0312586724758148,0.999259412288666,-0.0224359352141619,0.0154592161998153,0.998905718326569,-0.0441389195621014,0.0622399672865868,0.997855603694916,0.0202589519321918,0.0154592161998153,0.998905718326569,-0.0441389195621014,0.0312586724758148,0.999259412288666,-0.0224359352141619,-0.0132282143458724,0.996426224708557,-0.0834252312779427,-0.999396920204163,0.00581253506243229,-0.0342331305146217,-0.999499678611755,0.00294915679842234,-0.0314925499260426,-0.998744547367096,0.0186341963708401,-0.0464994236826897,-0.999499678611755,0.00294915679842234,-0.0314925499260426,-0.999396920204163,0.00581253506243229,-0.0342331305146217,-0.999781012535095,-0.0121208429336548,-0.0170613843947649,0.0200663637369871,-0.998892724514008,0.0425514318048954,0.0280970856547356,-0.999086916446686,0.0321853496134281,0.00507678464055061,-0.998071491718292,0.0618685707449913,0.0280970856547356,-0.999086916446686,0.0321853496134281,0.0200663637369871,-0.998892724514008,0.0425514318048954,0.0475793890655041,-0.99884295463562,0.00698853190988302,-0.0294389203190804,0.00677637336775661,-0.99954354763031,-0.0139171862974763,-0.0277343727648258,-0.999518394470215,-0.000163422912009992,-0.0582441501319408,-0.998302340507507,-0.0139171862974763,-0.0277343727648258,-0.999518394470215,-0.0294389203190804,0.00677637336775661,-0.99954354763031,-0.0451850742101669,0.0418722704052925,-0.998100757598877,-0.0358864851295948,-0.0171734634786844,0.999208271503448,-0.045081440359354,-0.0293121393769979,0.998553216457367,
- -0.0545286796987057,-0.0417912006378174,0.997637212276459,-0.045081440359354,-0.0293121393769979,0.998553216457367,-0.0358864851295948,-0.0171734634786844,0.999208271503448,-0.0287319347262383,-0.00773326167836785,0.999557316303253,-0.99333655834198,0.114848554134369,-0.00960433669388294,-0.994373321533203,0.104216001927853,-0.0189936514943838,-0.993167996406555,0.116402715444565,-0.00823001004755497,-0.99333655834198,0.114848554134369,-0.00960433669388294,-0.993167996406555,0.116402715444565,-0.00823001004755497,-0.991841971874237,0.12746350467205,0.00156480050645769,-0.149124950170517,-0.988234221935272,0.0339823588728905,-0.128586083650589,-0.991696655750275,0.00185059895738959,-0.174437165260315,-0.98188441991806,0.0739913582801819,-0.128586083650589,-0.991696655750275,0.00185059895738959,-0.149124950170517,-0.988234221935272,0.0339823588728905,-0.105872757732868,-0.993820428848267,-0.0333475805819035,0.984870374202728,-0.172060176730156,0.0206303969025612,0.992386996746063,-0.120498694479465,-0.0254583396017551,0.991643726825714,-0.127573505043983,-0.0191724486649036,0.994947969913483,-0.0786286517977715,-0.0624171569943428,0.991643726825714,-0.127573505043983,-0.0191724486649036,0.992386996746063,-0.120498694479465,-0.0254583396017551,0.102406218647957,0.994732797145844,-0.00441666878759861,0.0921756327152252,0.995541095733643,-0.0200388859957457,0.11339246481657,0.993472635746002,0.0124223111197352,0.0921756327152252,0.995541095733643,-0.0200388859957457,0.102406218647957,0.994732797145844,-0.00441666878759861,0.0768633857369423,0.996100306510925,-0.0433165431022644,0.0190845001488924,-0.0197698771953583,0.999622404575348,0.0385681726038456,0.0136258434504271,0.999163091182709,0.0569787099957466,0.0452545806765556,0.997349262237549,0.0190845001488924,-0.0197698771953583,0.999622404575348,0.003042051801458,-0.0472084395587444,0.998880505561829,0.0385681726038456,0.0136258434504271,0.999163091182709,0.0218279249966145,-0.0277305729687214,-0.999377012252808,0.0296684019267559,-0.0414786972105503,-0.998698830604553,
- 0.037231519818306,-0.0547429732978344,-0.997806191444397,0.0296684019267559,-0.0414786972105503,-0.998698830604553,0.0218279249966145,-0.0277305729687214,-0.999377012252808,0.0161813087761402,-0.0178309828042984,-0.999710142612457,0.999992728233337,-0.00329394242726266,-0.00193656759802252,0.9998499751091,-0.0148915611207485,0.00884881056845188,0.999993205070496,-0.00223896978422999,-0.00291759218089283,0.999992728233337,-0.00329394242726266,-0.00193656759802252,0.999993205070496,-0.00223896978422999,-0.00291759218089283,0.999849855899811,0.00990851316601038,-0.0142128607258201,0.00924333091825247,-0.99990713596344,0.0100116785615683,0.0319438427686691,-0.999090194702148,-0.0282536502927542,-0.0116495825350285,-0.99891072511673,0.045185275375843,0.0319438427686691,-0.999090194702148,-0.0282536502927542,0.00924333091825247,-0.99990713596344,0.0100116785615683,0.0558558516204357,-0.996078252792358,-0.068616196513176,-0.995977759361267,0.0416034460067749,0.0793565735220909,-0.999415755271912,-0.0105298180133104,0.0325153209269047,-0.999291062355042,-0.00523633835837245,0.0372808873653412,-0.99808394908905,-0.0605700202286243,-0.0126400180160999,-0.999291062355042,-0.00523633835837245,0.0372808873653412,-0.999415755271912,-0.0105298180133104,0.0325153209269047,0.0264962632209063,0.999580860137939,0.0116621972993016,0.0149773694574833,0.999865353107452,-0.00668895663693547,0.0408212877810001,0.998570561408997,0.0345039330422878,0.0149773694574833,0.999865353107452,-0.00668895663693547,0.0264962632209063,0.999580860137939,0.0116621972993016,0.00474308943375945,0.999724745750427,-0.0229815244674683,0.0297369174659252,0.999544560909271,0.00514595909044147,0.0270591359585524,0.999633848667145,-0.000212834842386656,0.0226490888744593,0.999702632427216,-0.0090339845046401,0.0270591359585524,0.999633848667145,-0.000212834842386656,0.0195980928838253,0.999693393707275,-0.0151336304843426,0.0226490888744593,0.999702632427216,-0.0090339845046401,0.0401765182614326,0.00575001537799835,0.99917596578598,0.0422360561788082,0.00110625301022083,0.99910706281662,
- 0.0456724017858505,-0.00664743036031723,0.998934328556061,0.0456724017858505,-0.00664743036031723,0.998934328556061,0.0422360561788082,0.00110625301022083,0.99910706281662,0.0478538796305656,-0.0115732597187161,0.9987872838974,-0.0118744792416692,-0.9989213347435,-0.0448908694088459,-0.0142425298690796,-0.998658537864685,-0.0497824065387249,-0.0160435382276773,-0.998438835144043,-0.0535022281110287,-0.0118744792416692,-0.9989213347435,-0.0448908694088459,-0.0106253530830145,-0.999047994613647,-0.0423103794455528,-0.0142425298690796,-0.998658537864685,-0.0497824065387249,-0.999845743179321,0.0135280229151249,0.0112049672752619,-0.999817192554474,0.014658129774034,0.0122803701087832,-0.999458491802216,0.0246533174067736,0.021791897714138,-0.999817192554474,0.014658129774034,0.0122803701087832,-0.999845743179321,0.0135280229151249,0.0112049672752619,-0.999991476535797,0.00368978222832084,0.00184313766658306,0.999688923358917,-0.0179980807006359,-0.0172657128423452,0.999688863754272,-0.0180269181728363,-0.0172367934137583,0.999644339084625,-0.0109750311821699,-0.0243068262934685,0.999688863754272,-0.0180269181728363,-0.0172367934137583,0.999688923358917,-0.0179980807006359,-0.0172657128423452,0.999635994434357,-0.024935781955719,-0.0103067392483354,0.00278758606873453,0.0078040543012321,-0.999965667724609,0.0174854081124067,-0.0275028944015503,-0.999468743801117,0.0259726941585541,-0.0479006431996822,-0.998514354228973,0.0174854081124067,-0.0275028944015503,-0.999468743801117,0.00278758606873453,0.0078040543012321,-0.999965667724609,-0.0051436759531498,0.0268476400524378,-0.999626398086548,-0.131311699748039,-0.020731208845973,-0.991124272346497,-0.113537453114986,-0.0514158606529236,-0.992202460765839,-0.152286410331726,0.0158855207264423,-0.988208651542664,-0.131311699748039,-0.020731208845973,-0.991124272346497,-0.152286410331726,0.0158855207264423,-0.988208651542664,-0.171625062823296,0.0500498414039612,-0.983890116214752,0.0849854350090027,-0.0320282243192196,0.995867252349854,0.075996145606041,-0.0478741452097893,0.995958149433136,
- 0.0674752593040466,-0.0628389045596123,0.995740056037903,0.075996145606041,-0.0478741452097893,0.995958149433136,0.0849854350090027,-0.0320282243192196,0.995867252349854,0.0915319994091988,-0.0204501263797283,0.99559211730957,-0.994264960289001,-0.00363329146057367,0.10688241571188,-0.995077788829803,-0.0140014095231891,0.0981018915772438,-0.994044721126556,-0.00116904242895544,0.108966343104839,-0.994264960289001,-0.00363329146057367,0.10688241571188,-0.994044721126556,-0.00116904242895544,0.108966343104839,-0.992953479290009,0.00966021604835987,0.118110597133636,-0.0274464841932058,-0.999338388442993,0.0238598212599754,-0.0120827471837401,-0.99990439414978,-0.00673238700255752,-0.0479256249964237,-0.996753752231598,0.0646941289305687,-0.0120827471837401,-0.99990439414978,-0.00673238700255752,-0.0274464841932058,-0.999338388442993,0.0238598212599754,0.00637977616861463,-0.99903529882431,-0.0434471964836121,0.989617943763733,-0.0133842108771205,-0.143098726868629,0.990428686141968,-0.00719218095764518,-0.137838095426559,0.986011445522308,-0.0364739298820496,-0.162637799978256,0.990428686141968,-0.00719218095764518,-0.137838095426559,0.989617943763733,-0.0133842108771205,-0.143098726868629,0.993201613426209,0.0199359655380249,-0.114687025547028,-0.0148427318781614,0.999853134155273,0.00856927689164877,-0.025729563087225,0.999660491943359,-0.00410309759899974,-0.00202164961956441,0.999722242355347,0.023483894765377,-0.025729563087225,0.999660491943359,-0.00410309759899974,-0.0148427318781614,0.999853134155273,0.00856927689164877,-0.0430767275393009,0.998775959014893,-0.0243102833628654,-0.0173068754374981,-0.00445355242118239,-0.999840319156647,0.000723095086868852,-0.0376486033201218,-0.999290823936462,-0.040903739631176,0.0390692465007305,-0.998398959636688,-0.0173068754374981,-0.00445355242118239,-0.999840319156647,-0.040903739631176,0.0390692465007305,-0.998398959636688,-0.059785783290863,0.07396050542593,-0.99546754360199,-0.0210129600018263,-0.05345668643713,0.998349070549011,-0.0312288254499435,-0.0737096294760704,0.996790707111359,
- -0.0387755408883095,-0.0886670649051666,0.995306372642517,-0.0312288254499435,-0.0737096294760704,0.996790707111359,-0.0210129600018263,-0.05345668643713,0.998349070549011,-0.015109253115952,-0.0417498089373112,0.999013841152191,-0.999978244304657,-0.00542035885155201,0.00376283749938011,-0.999772071838379,-0.0187658201903105,-0.010179178789258,-0.999978423118591,-0.00422201910987496,0.00501457182690501,-0.999978244304657,-0.00542035885155201,0.00376283749938011,-0.999978423118591,-0.00422201910987496,0.00501457182690501,-0.999720692634583,0.0110024809837341,0.020914975553751,-0.0233545061200857,-0.999633848667145,-0.0136607587337494,-0.00414347415789962,-0.998819589614868,-0.0483978465199471,-0.0404131524264812,-0.99903404712677,0.0172584466636181,-0.00414347415789962,-0.998819589614868,-0.0483978465199471,-0.0233545061200857,-0.999633848667145,-0.0136607587337494,0.0109928026795387,-0.997069656848907,-0.0757049918174744,0.998976826667786,-0.030198335647583,-0.0336651466786861,0.999170899391174,-0.0270035937428474,-0.0304672922939062,0.996979296207428,-0.053147979080677,-0.0566350780427456,0.999170899391174,-0.0270035937428474,-0.0304672922939062,0.998976826667786,-0.030198335647583,-0.0336651466786861,0.999980747699738,-0.00232263817451894,-0.00575991626828909,-0.0115799158811569,0.99504154920578,0.0987835004925728,-0.0199501365423203,0.996225774288177,0.0844768434762955,-0.00530752819031477,0.993974566459656,0.109483018517494,-0.0199501365423203,0.996225774288177,0.0844768434762955,-0.0115799158811569,0.99504154920578,0.0987835004925728,-0.0286580324172974,0.997166097164154,0.0695582181215286,-0.00132602418307215,0.999333024024963,0.0364925563335419,0.00428456626832485,0.999443471431732,0.0330817922949791,0.0102761704474688,0.999513685703278,0.0294377021491528,0.0166245065629482,0.999534726142883,0.0255747437477112,0.0102761704474688,0.999513685703278,0.0294377021491528,0.00428456626832485,0.999443471431732,0.0330817922949791,-0.998705446720123,0.00220628571696579,0.0508177354931831,-0.999048411846161,-0.0284312628209591,0.0330771803855896,
- -0.999025166034698,-0.0124047761783004,0.0423650071024895,-0.999048411846161,-0.0284312628209591,0.0330771803855896,-0.998791217803955,-0.0423076562583447,0.0250216461718082,-0.999025166034698,-0.0124047761783004,0.0423650071024895,0.0457820929586887,-0.99886280298233,-0.0133027955889702,0.0519098863005638,-0.998602986335754,-0.00986708421260118,0.0407788790762424,-0.999038398265839,-0.0161065515130758,0.0519098863005638,-0.998602986335754,-0.00986708421260118,0.0457820929586887,-0.99886280298233,-0.0133027955889702,0.0579147785902023,-0.99830037355423,-0.00649841269478202,0.00276381149888039,0.0255046598613262,-0.999670922756195,0.00313727627508342,0.0251234695315361,-0.999679386615753,0.00700945919379592,0.0211707837879658,-0.999751269817352,0.00313727627508342,0.0251234695315361,-0.999679386615753,0.00276381149888039,0.0255046598613262,-0.999670922756195,-0.000756069784983993,0.029096893966198,-0.999576330184937,-0.000773101870436221,-0.000115874558105133,0.999999701976776,-0.0015492073725909,-0.000910062866751105,0.999998390674591,-0.0234078746289015,-0.0232783146202564,0.999454975128174,-0.0015492073725909,-0.000910062866751105,0.999998390674591,-0.000773101870436221,-0.000115874558105133,0.999999701976776,0.0223455261439085,0.0235409699380398,0.999473035335541,0.999977946281433,0.00578890228644013,0.00326373614370823,0.999592423439026,-0.0226209033280611,0.0174167603254318,0.998567700386047,-0.045184064656496,0.0286527220159769,0.999592423439026,-0.0226209033280611,0.0174167603254318,0.999977946281433,0.00578890228644013,0.00326373614370823,0.999602258205414,0.0272089838981628,-0.0074112880975008,-0.999010384082794,-0.0040317103266716,-0.0442956015467644,-0.999446928501129,0.0159863289445639,-0.0291589554399252,-0.998930990695953,0.0457522831857204,-0.00660330802202225,-0.999446928501129,0.0159863289445639,-0.0291589554399252,-0.999010384082794,-0.0040317103266716,-0.0442956015467644,-0.996945738792419,-0.0366962105035782,-0.0689390674233437,0.998404204845428,0.047034990042448,-0.0312505923211575,0.998882651329041,0.0392995178699493,-0.0262485723942518,
- 0.999372124671936,0.0293660573661327,-0.0198251493275166,0.998882651329041,0.0392995178699493,-0.0262485723942518,0.998404204845428,0.047034990042448,-0.0312505923211575,0.997473478317261,0.0592701509594917,-0.0391621291637421,0.00258238194510341,0.0259596426039934,-0.999659657478333,0.0039697946049273,0.024338785558939,-0.999695777893066,0.0106443176046014,0.0165393743664026,-0.999806642532349,0.00258238194510341,0.0259596426039934,-0.999659657478333,-0.00394502142444253,0.0335835665464401,-0.99942809343338,0.0039697946049273,0.024338785558939,-0.999695777893066,0.0147721227258444,0.999887347221375,0.00264681037515402,-0.00293017947115004,0.999863982200623,0.0162320621311665,0.0585860945284367,0.997800767421722,-0.0310072638094425,-0.00293017947115004,0.999863982200623,0.0162320621311665,0.0147721227258444,0.999887347221375,0.00264681037515402,-0.0438885167241097,0.997900009155273,0.0476379357278347,-0.0346426852047443,-0.0188980754464865,0.99922102689743,-0.0326742865145206,-0.0211314037442207,0.999242722988129,-0.0430877730250359,-0.00931049976497889,0.999027848243713,-0.0326742865145206,-0.0211314037442207,0.999242722988129,-0.0346426852047443,-0.0188980754464865,0.99922102689743,-0.0227031614631414,-0.0324366129934788,0.99921590089798,-0.00589799508452415,-0.998051047325134,-0.0621226690709591,0.00225694593973458,-0.998462378978729,-0.0553887523710728,-0.0317837297916412,-0.996004462242126,-0.0834552273154259,0.00225694593973458,-0.998462378978729,-0.0553887523710728,-0.00589799508452415,-0.998051047325134,-0.0621226690709591,0.022469162940979,-0.998999416828156,-0.0386709235608578,0.225778877735138,0.969803929328918,-0.0922189801931381,0.223402217030525,0.969956934452057,-0.0963069200515747,0.220534920692444,0.970112383365631,-0.101224519312382,0.223402217030525,0.969956934452057,-0.0963069200515747,0.217847853899002,0.970229208469391,-0.105818994343281,0.220534920692444,0.970112383365631,-0.101224519312382,0.051991730928421,0.0319062657654285,0.998137772083282,0.0525769703090191,0.0287727080285549,0.998202264308929,
- 0.0537362694740295,0.0225561801344156,0.998300433158875,0.0537362694740295,0.0225561801344156,0.998300433158875,0.0525769703090191,0.0287727080285549,0.998202264308929,0.054371751844883,0.0191431660205126,0.998337209224701,-0.214568257331848,-0.976619184017181,0.0132447937503457,-0.213817358016968,-0.97676420211792,0.0146210612729192,-0.213059335947037,-0.976908087730408,0.0160093642771244,-0.214568257331848,-0.976619184017181,0.0132447937503457,-0.215119063854218,-0.976511120796204,0.0122345741838217,-0.213817358016968,-0.97676420211792,0.0146210612729192,-0.977420210838318,0.211228504776955,0.00568757485598326,-0.976100921630859,0.21710479259491,0.00962587259709835,-0.973283767700195,0.228931948542595,0.0175739359110594,-0.976100921630859,0.21710479259491,0.00962587259709835,-0.977420210838318,0.211228504776955,0.00568757485598326,-0.97957855463028,0.201058641076088,-0.00111173989716917,0.976147890090942,-0.217063844203949,-0.00430938880890608,0.976891815662384,-0.213605761528015,-0.00740036321803927,0.978812336921692,-0.204146236181259,-0.0158335287123919,0.976891815662384,-0.213605761528015,-0.00740036321803927,0.976147890090942,-0.217063844203949,-0.00430938880890608,0.974271237850189,-0.225357055664063,0.00312142423354089,0.0123808141797781,-0.0263537503778934,-0.999576091766357,-0.0143451746553183,-0.0666115432977676,-0.997675895690918,0.0233262162655592,-0.00983610656112432,-0.999679446220398,-0.0143451746553183,-0.0666115432977676,-0.997675895690918,0.0123808141797781,-0.0263537503778934,-0.999576091766357,-0.0264816340059042,-0.0848580896854401,-0.996041059494019,0.991308391094208,0.0203038603067398,-0.129982516169548,0.991127073764801,0.0217893216758966,-0.131119593977928,0.990177810192108,0.0291432905942202,-0.136742934584618,0.991127073764801,0.0217893216758966,-0.131119593977928,0.991308391094208,0.0203038603067398,-0.129982516169548,0.99224990606308,0.0120674390345812,-0.123670406639576,-0.0881116092205048,0.0554006434977055,-0.994568824768066,-0.0893437042832375,0.0543694347143173,-0.994515776634216,
- -0.0942359566688538,0.0502715557813644,-0.994279801845551,-0.0836900398135185,0.0590985417366028,-0.994737803936005,-0.0893437042832375,0.0543694347143173,-0.994515776634216,-0.0881116092205048,0.0554006434977055,-0.994568824768066,0.109949052333832,-0.0417333394289017,0.993060708045959,0.100205928087235,-0.0499984137713909,0.993709623813629,0.152364104986191,-0.00549276918172836,0.988309264183044,0.100205928087235,-0.0499984137713909,0.993709623813629,0.109949052333832,-0.0417333394289017,0.993060708045959,0.0594227686524391,-0.0843566507101059,0.994662284851074,-0.992757439613342,0.0146001949906349,0.119244687259197,-0.992799460887909,0.0142842782661319,0.118933416903019,-0.993001282215118,0.0127428974956274,0.117414310574532,-0.992799460887909,0.0142842782661319,0.118933416903019,-0.992757439613342,0.0146001949906349,0.119244687259197,-0.992549419403076,0.0161462109535933,0.120767779648304,0.00147558306343853,0.996900618076324,0.0786582231521606,0.00468208733946085,0.997118651866913,0.0757115110754967,0.0064532901160419,0.997231185436249,0.074083186686039,0.0064532901160419,0.997231185436249,0.074083186686039,0.00468208733946085,0.997118651866913,0.0757115110754967,0.0100047821179032,0.997439205646515,0.070816732943058,-0.0276641454547644,-0.998173415660858,-0.0537079498171806,6.24255553702824e-005,-0.996848940849304,-0.079323798418045,-0.00860472768545151,-0.997415721416473,-0.0713286027312279,0.01951964199543,-0.995070278644562,-0.0972322896122932,-0.00860472768545151,-0.997415721416473,-0.0713286027312279,6.24255553702824e-005,-0.996848940849304,-0.079323798418045,0.0171614326536655,0.0869437754154205,-0.996065378189087,0.0372565165162086,0.0510111749172211,-0.998002886772156,0.0559653230011463,0.0173770058900118,-0.998281478881836,0.0372565165162086,0.0510111749172211,-0.998002886772156,0.0171614326536655,0.0869437754154205,-0.996065378189087,0.00030641964985989,0.116928897798061,-0.99314022064209,0.028781158849597,-0.037652276456356,0.998876392841339,0.0377886258065701,-0.0222263503819704,0.999038577079773,
- 0.0463155843317509,-0.0075977323576808,0.998897910118103,0.0377886258065701,-0.0222263503819704,0.999038577079773,0.028781158849597,-0.037652276456356,0.998876392841339,0.0222187899053097,-0.0488733388483524,0.998557925224304,0.999930679798126,-0.011132481507957,-0.00382934301160276,0.999922335147858,0.000216539643588476,-0.0124562839046121,0.999909043312073,-0.0133074428886175,-0.00217576348222792,0.999930679798126,-0.011132481507957,-0.00382934301160276,0.999909043312073,-0.0133074428886175,-0.00217576348222792,0.999659657478333,-0.0251750443130732,0.00684854760766029,0.0458765961229801,0.994769692420959,0.0912603735923767,0.0258558001369238,0.997871458530426,0.0598657801747322,0.0705930665135384,0.98900032043457,0.129980817437172,0.0258558001369238,0.997871458530426,0.0598657801747322,0.0458765961229801,0.994769692420959,0.0912603735923767,0.00359509908594191,0.99968284368515,0.0249272249639034,-0.999026954174042,0.0313730128109455,-0.0310000814497471,-0.999314248561859,0.0257132221013308,-0.0266416780650616,-0.997065722942352,0.0571946687996387,-0.0508799776434898,-0.999314248561859,0.0257132221013308,-0.0266416780650616,-0.999026954174042,0.0313730128109455,-0.0310000814497471,-0.99998414516449,-0.00453264499083161,-0.00334449391812086,0.000727508449926972,-0.998109698295593,-0.0614528656005859,0.0108586428686976,-0.996989190578461,-0.076775535941124,-0.0101659400388598,-0.998937249183655,-0.0449544340372086,0.0108586428686976,-0.996989190578461,-0.076775535941124,0.000727508449926972,-0.998109698295593,-0.0614528656005859,0.0256592053920031,-0.99474424123764,-0.0991236343979836,-0.00049199559725821,0.999991357326508,0.00413290038704872,-0.00273467763327062,0.999959647655487,0.00856011547148228,-0.00482524139806628,0.999907910823822,0.0126869678497314,-0.00273467763327062,0.999959647655487,0.00856011547148228,-0.00049199559725821,0.999991357326508,0.00413290038704872,0.00120000075548887,0.999998986721039,0.000792725884821266,-0.0194959733635187,-0.0854519307613373,-0.996151506900787,-0.0433346591889858,-0.0345379263162613,-0.99846339225769,
- -0.0297026187181473,-0.0637021288275719,-0.997526824474335,-0.0297026187181473,-0.0637021288275719,-0.997526824474335,-0.0433346591889858,-0.0345379263162613,-0.99846339225769,-0.0524710491299629,-0.0149175049737096,-0.998511075973511,-0.0162916444242001,-0.998920917510986,0.0434913709759712,-0.0179256051778793,-0.999027192592621,0.0402914918959141,-0.0136351017281413,-0.998720705509186,0.0486917458474636,-0.0162916444242001,-0.998920917510986,0.0434913709759712,-0.0136351017281413,-0.998720705509186,0.0486917458474636,-0.0113794021308422,-0.998524129390717,0.0531054362654686,0.998299241065979,-0.0566079989075661,-0.0139354337006807,0.98861289024353,-0.130370885133743,-0.0751526579260826,0.997489392757416,-0.067103736102581,-0.0226273685693741,0.997489392757416,-0.067103736102581,-0.0226273685693741,0.99927294254303,0.00586056150496006,0.0376708768308163,0.998299241065979,-0.0566079989075661,-0.0139354337006807,-0.999716103076935,0.00751964654773474,0.022605899721384,-0.999714076519012,0.00736091891303658,0.022749949246645,-0.999739408493042,0.00961271394044161,0.0207062773406506,-0.999716103076935,0.00751964654773474,0.022605899721384,-0.999692142009735,0.00586334150284529,0.024108961224556,-0.999714076519012,0.00736091891303658,0.022749949246645,0.0197157226502895,0.0145479701459408,0.999699771404266,-0.0233400911092758,-0.077481247484684,0.996720552444458,0.00368098309263587,-0.0197587069123983,0.999797999858856,-0.0404080785810947,-0.113883785903454,0.992671966552734,0.00368098309263587,-0.0197587069123983,0.999797999858856,-0.0233400911092758,-0.077481247484684,0.996720552444458,0.0481494814157486,0.99834269285202,0.03151910379529,0.0531103312969208,0.998413622379303,0.0186957642436028,0.0364030823111534,0.997426569461823,0.0617654994130135,0.0302198529243469,0.996524810791016,0.0776214152574539,0.0481494814157486,0.99834269285202,0.03151910379529,0.0364030823111534,0.997426569461823,0.0617654994130135,-0.0300963670015335,-0.01615478284657,-0.999416410923004,-0.0348081924021244,-0.0277490448206663,-0.99900871515274,
- -0.0335214324295521,-0.0245818458497524,-0.999135613441467,-0.0335214324295521,-0.0245818458497524,-0.999135613441467,-0.0288417860865593,-0.01306919939816,-0.999498546123505,-0.0300963670015335,-0.01615478284657,-0.999416410923004,-0.0492261983454227,-0.996818721294403,0.0626839101314545,-0.0496839359402657,-0.996864855289459,0.0615795478224754,-0.0480866692960262,-0.996697664260864,0.0654321014881134,-0.0492261983454227,-0.996818721294403,0.0626839101314545,-0.0480866692960262,-0.996697664260864,0.0654321014881134,-0.0474596470594406,-0.996627449989319,0.0669436231255531,0.998051702976227,-0.0609609372913837,-0.0132851134985685,0.998525381088257,-0.0491762347519398,-0.0229933727532625,0.997839152812958,-0.064937636256218,-0.0100057516247034,0.998051702976227,-0.0609609372913837,-0.0132851134985685,0.997839152812958,-0.064937636256218,-0.0100057516247034,0.99717766046524,-0.0750585049390793,-0.00165200966876,-0.998831033706665,0.0455303341150284,0.0162339750677347,-0.99867194890976,0.0481132306158543,0.0184239875525236,-0.997727572917938,0.0607502833008766,0.0291425362229347,-0.998831033706665,0.0455303341150284,0.0162339750677347,-0.999331831932068,0.0356873720884323,0.00789057742804289,-0.99867194890976,0.0481132306158543,0.0184239875525236,-0.006791977211833,0.00605608802288771,0.999958634376526,-0.0137326642870903,0.0327561646699905,0.999368965625763,-0.00450169574469328,-0.00275103095918894,0.999986171722412,-0.0137326642870903,0.0327561646699905,0.999368965625763,-0.006791977211833,0.00605608802288771,0.999958634376526,-0.0156760383397341,0.0402348637580872,0.999067306518555,-0.0205645281821489,-0.999395787715912,0.028021240606904,-0.00578595232218504,-0.999960064888,0.00680856173858047,-0.0438286028802395,-0.997149527072906,0.0614157542586327,-0.00578595232218504,-0.999960064888,0.00680856173858047,-0.0205645281821489,-0.999395787715912,0.028021240606904,0.0112498607486486,-0.99978107213974,-0.0176428351551294,0.136620953679085,-0.990614295005798,-0.00424256408587098,0.136620938777924,-0.990614354610443,-0.00424256408587098,
- 0.136620938777924,-0.990614295005798,-0.00424256408587098,-0.0224521942436695,-0.99860417842865,0.047808051109314,-0.0253892559558153,-0.998816967010498,0.0414724126458168,-0.0200528223067522,-0.998418509960175,0.0525207445025444,-0.0109762586653233,-0.997324883937836,0.0722669810056686,-0.0224521942436695,-0.99860417842865,0.047808051109314,-0.0200528223067522,-0.998418509960175,0.0525207445025444,-0.0224521942436695,-0.99860417842865,0.047808051109314,-0.0109762586653233,-0.997324883937836,0.0722669810056686,-0.0103378603234887,-0.997205555438995,0.0739872753620148
- }
- NormalsW: *1312 {
- 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,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *3936 {
- a: -7.75103004002631e-009,1,0,-0.000383848353521898,0.999999940395355,0,-0.000561547349207103,0.999999940395355,0,-0.00102284702006727,0.999999523162842,0,2.86280577022069e-009,1,-0,-0.000267667055595666,0.999999940395355,0.000310053757857531,-0.000561547349207103,0.999999940395355,0,-0.000383848353521898,0.999999940395355,0,-3.62840182788204e-005,1,-8.54253787933162e-013,-0.000137612645630725,0.999999821186066,0.000677210977301002,-0.000267667055595666,0.999999940395355,0.000310053757857531,2.86280577022069e-009,1,-0,-0.00102197763044387,0.999999523162842,0,0.00106917112134397,0.999999463558197,-0.000334256648784503,0.00470159389078617,0.999989032745361,-0.000145008467370644,0.000751309504266828,0.999999761581421,-0,-0.000140802716487087,0.999999642372131,0.000935283198487014,0.00335091771557927,0.999994456768036,-0.000254243641393259,0.00106917112134397,0.999999463558197,-0.000334256648784503,-0.000100350145658012,1,0,-0.00255655241198838,0.999996721744537,0,-0.000100350145658012,1,0,0.00106917112134397,0.999999463558197,-0.000334256648784503,-0.00102197763044387,0.999999523162842,0,-0.000267667055595666,0.999999940395355,0.000310053757857531,-0.000140802716487087,0.999999642372131,0.000935283198487014,-0.000100350145658012,1,0,-0.000561547349207103,0.999999940395355,0,-0.00102284702006727,0.999999523162842,0,-0.000561547349207103,0.999999940395355,0,-0.000100350145658012,1,0,-0.00255655241198838,0.999996721744537,0,0.00715856952592731,0.999973952770233,0.000963379221502692,0.00371669209562242,0.999992847442627,0.000673287431709468,0.00571824936196208,0.999981224536896,0.00220872508361936,0.0031935169827193,0.999992549419403,0.0021912045776844,0.004880431573838,0.999985694885254,0.00220291246660054,0.000751309504266828,0.999999761581421,-0,0.00470159389078617,0.999989032745361,-0.000145008467370644,-0.00080932944547385,0.999999761581421,0.000156984009663574,0.00371669209562242,0.999992847442627,0.000673287431709468,0.00715856952592731,0.999973952770233,0.000963379221502692,0.0032137471716851,0.999994277954102,-0.0011567217297852,
- 0.00854836031794548,0.99996280670166,0.00112331286072731,-0.00080932944547385,0.999999761581421,0.000156984009663574,0.00470159389078617,0.999989032745361,-0.000145008467370644,0.00335091771557927,0.999994456768036,-0.000254243641393259,0.00100301578640938,0.999997019767761,-0.00222644512541592,0.0032137471716851,0.999994277954102,-0.0011567217297852,0.00470159389078617,0.999989032745361,-0.000145008467370644,0.00106917112134397,0.999999463558197,-0.000334256648784503,0.00206728000193834,0.999993741512299,0.00290405307896435,0.00100301578640938,0.999997019767761,-0.00222644512541592,0.00335091771557927,0.999994456768036,-0.000254243641393259,9.0867627022817e-007,0.999997198581696,0.00240706861950457,-0.0101907476782799,0.999941349029541,0.00369253987446427,0.00206728000193834,0.999993741512299,0.00290405307896435,0.00335091771557927,0.999994456768036,-0.000254243641393259,-0.000140802716487087,0.999999642372131,0.000935283198487014,-0.000137612645630725,0.999999821186066,0.000677210977301002,-0.000392628106055781,0.999995827674866,0.00287389056757092,-0.00063530879560858,0.99999862909317,0.00154086481779814,9.0867627022817e-007,0.999997198581696,0.00240706861950457,-0.000140802716487087,0.999999642372131,0.000935283198487014,-0.000267667055595666,0.999999940395355,0.000310053757857531,-0.000137612645630725,0.999999821186066,0.000677210977301002,3.06416109197016e-006,0.999999940395355,0.000375041359802708,-0.000392628106055781,0.999995827674866,0.00287389056757092,-1.03776303106429e-008,1,-4.71828109504542e-016,-4.43376338807866e-005,1,-2.01584950988709e-012,3.06416109197016e-006,0.999999940395355,0.000375041359802708,-0.000137612645630725,0.999999821186066,0.000677210977301002,-3.62840182788204e-005,1,-8.54253787933162e-013,-0.00102127762511373,0.999999523162842,0,-0.000612742733210325,0.999999821186066,0,1.83092652150663e-008,1,0,-0.000766545010264963,0.999999761581421,0,0.000147683298564516,0.999999582767487,0.000967539905104786,1.78806658368558e-009,0.99999988079071,0.000501397938933223,-0.000277155661024153,1,0.000103229707747232,
- 0.000192524094018154,0.999999761581421,0.000616437115240842,0.000372588518075645,0.999999463558197,0.000968504464253783,1.78806658368558e-009,0.99999988079071,0.000501397938933223,-8.27864776731246e-010,1,0,-4.99871639476623e-005,1,0,-0.000277155661024153,1,0.000103229707747232,-8.27864776731246e-010,1,0,1.83092652150663e-008,1,0,-0.000612742733210325,0.999999821186066,0,-4.99871639476623e-005,1,0,-0.0156650841236115,0.999877214431763,-0.000498398207128048,0.00266303378157318,0.999996542930603,0,0.00126641092356294,0.999999284744263,0,-0.0152956945821643,0.999883055686951,5.65704285691027e-005,-0.0156650841236115,0.999877214431763,-0.000498398207128048,-0.0152956945821643,0.999883055686951,5.65704285691027e-005,-0.0348625928163528,0.999388813972473,0.00257862731814384,-0.0230148322880268,0.999728739261627,-0.00357869081199169,0.00266303378157318,0.999996542930603,0,-0.0156650841236115,0.999877214431763,-0.000498398207128048,-0.00276735122315586,0.999996244907379,3.75633062503766e-005,0.000895032833795995,0.999999642372131,0,-0.00276735122315586,0.999996244907379,3.75633062503766e-005,-0.0156650841236115,0.999877214431763,-0.000498398207128048,-0.0230148322880268,0.999728739261627,-0.00357869081199169,0.01391308195889,0.999903202056885,7.35619614715688e-005,-0.000348873581970111,0.999999821186066,0.000490069214720279,0,1,0,0.000895032833795995,0.999999642372131,0,-0.00276735122315586,0.999996244907379,3.75633062503766e-005,-0.000348873581970111,0.999999821186066,0.000490069214720279,-0.00276735122315586,0.999996244907379,3.75633062503766e-005,0.01391308195889,0.999903202056885,7.35619614715688e-005,-0.00421526841819286,0.999988496303558,0.00230062799528241,-0.0134470565244555,0.999909520149231,0.000428674509748816,-0.0134470565244555,0.999909520149231,0.000428674509748816,-0.00421526841819286,0.999988496303558,0.00230062799528241,-0.0179653372615576,0.999838650226593,-0.000226454911171459,0,1,0,-0.000348873581970111,0.999999821186066,0.000490069214720279,-0.000355188036337495,0.999999940395355,0,0,1,0,-0.000355188036337495,0.999999940395355,0,
- -0.000348873581970111,0.999999821186066,0.000490069214720279,-0.0134470565244555,0.999909520149231,0.000428674509748816,-0.00378072564490139,0.999992907047272,-0.000155301444465294,-0.000277155661024153,1,0.000103229707747232,-0.00378072564490139,0.999992907047272,-0.000155301444465294,-0.0134470565244555,0.999909520149231,0.000428674509748816,-0.0179653372615576,0.999838650226593,-0.000226454911171459,-0.000992111046798527,0.999999523162842,-0.00030313286697492,-0.00225944723933935,0.999997437000275,-0.000302531669149175,-0.00155130901839584,0.999998807907104,-0.000302867643767968,0.000192524094018154,0.999999761581421,0.000616437115240842,-0.000612742733210325,0.999999821186066,0,-0.00102127762511373,0.999999523162842,0,0,1,0,-0.000355188036337495,0.999999940395355,0,-0.000612742733210325,0.999999821186066,0,-0.000355188036337495,0.999999940395355,0,-0.00378072564490139,0.999992907047272,-0.000155301444465294,-4.99871639476623e-005,1,0,-4.99871639476623e-005,1,0,-0.00378072564490139,0.999992907047272,-0.000155301444465294,-0.000277155661024153,1,0.000103229707747232,0,1,0.000274709425866604,0,0.999999940395355,0.000308600720018148,0,1,-0.000138651928864419,0,1,0.000196916051208973,0,1,-0.000205742951948196,0,1,-0.000205621239729226,0,1,3.65154562587122e-007,0,1,-0.000152875785715878,0,1,-0.000205621239729226,0,1,-0.000205742951948196,0,1,0,0,1,-0.000103704041976016,0,1,-8.01327114459127e-005,0,1,0,0,1,-0.000103704041976016,0,1,0,0,1,0,0,1,-8.01327114459127e-005,0,1,1.70820185303455e-005,0,1,-0.000160241354024038,0,0.999999940395355,0.000308600720018148,0,1,0.000274709425866604,0,1,-0.000160241354024038,0,1,1.70820185303455e-005,3.03164837787012e-018,-9.53674139658744e-010,1,1.36424177004156e-017,-1.90734827931749e-009,1,9.09494513361037e-018,-1.90734827931749e-009,1,4.54747256680519e-018,-9.53674139658744e-010,1,0,0,1,3.03164837787012e-018,-9.53674139658744e-010,1,4.54747256680519e-018,-9.53674139658744e-010,1,0,0,1,-0,7.15255743521936e-010,1,0,0,1,0,0,1,6.39488471878647e-019,7.15255743521936e-010,1,5.11590777502918e-018,1.43051148704387e-009,1,
- 2.55795388751459e-018,1.43051148704387e-009,1,-0,7.15255743521936e-010,1,6.39488471878647e-019,7.15255743521936e-010,1,0.000774636981077492,0.999999046325684,-0.00122242025099695,0.000770324026234448,0.999997615814209,0.00208195834420621,0.000767988152801991,0.999992251396179,0.00386890047229826,0.000771421880926937,0.999998927116394,0.00124131247866899,0.000772871251683682,0.999999701976776,0.000131145105115138,0.000770873215515167,0.999998390674591,0.00166163442190737,0.000424779544118792,-0,1,0.00082199793541804,-0,0.999999701976776,0.000282669789157808,-0,1,-1.54966778609378e-006,0,1,1.3005691471335e-005,-0,1,-0.143372014164925,0.984421908855438,0.101774796843529,-0.262224197387695,0.961653590202332,0.0803796648979187,-0.0898129194974899,0.993562519550323,0.0690455511212349,-0.262224197387695,0.961653590202332,0.0803796648979187,-0.143372014164925,0.984421908855438,0.101774796843529,-0.35467529296875,0.932764172554016,0.0644702464342117,-0.248665124177933,0.956636011600494,0.151701286435127,-0.35467529296875,0.932764172554016,0.0644702464342117,-0.143372014164925,0.984421908855438,0.101774796843529,-0.35467529296875,0.932764172554016,0.0644702464342117,-0.330479711294174,0.943670392036438,0.0164153911173344,-0.262224197387695,0.961653590202332,0.0803796648979187,-0.402635455131531,0.901905655860901,0.1563680768013,-0.35467529296875,0.932764172554016,0.0644702464342117,-0.248665124177933,0.956636011600494,0.151701286435127,-0.40497499704361,0.914140105247498,0.0185248106718063,-0.330479711294174,0.943670392036438,0.0164153911173344,-0.35467529296875,0.932764172554016,0.0644702464342117,-0.402635455131531,0.901905655860901,0.1563680768013,-0.40497499704361,0.914140105247498,0.0185248106718063,-0.35467529296875,0.932764172554016,0.0644702464342117,-0.348683834075928,0.936539232730865,0.036249291151762,-0.330479711294174,0.943670392036438,0.0164153911173344,-0.40497499704361,0.914140105247498,0.0185248106718063,-0.348683834075928,0.936539232730865,0.036249291151762,-0.280730605125427,0.958508610725403,-0.0495137870311737,
- -0.330479711294174,0.943670392036438,0.0164153911173344,-0.402635455131531,0.901905655860901,0.1563680768013,-0.447070449590683,0.888756513595581,0.101192936301231,-0.40497499704361,0.914140105247498,0.0185248106718063,-0.447070449590683,0.888756513595581,0.101192936301231,-0.348683834075928,0.936539232730865,0.036249291151762,-0.40497499704361,0.914140105247498,0.0185248106718063,-0.609050512313843,0.754265666007996,0.245236545801163,-0.447070449590683,0.888756513595581,0.101192936301231,-0.402635455131531,0.901905655860901,0.1563680768013,-0.636042058467865,0.770583748817444,0.0406373180449009,-0.447070449590683,0.888756513595581,0.101192936301231,-0.609050512313843,0.754265666007996,0.245236545801163,-0.437242299318314,0.897046387195587,0.0642416328191757,-0.447070449590683,0.888756513595581,0.101192936301231,-0.636042058467865,0.770583748817444,0.0406373180449009,-0.491760015487671,0.870615422725677,-0.0141811389476061,-0.447070449590683,0.888756513595581,0.101192936301231,-0.437242299318314,0.897046387195587,0.0642416328191757,-0.467606067657471,0.883921384811401,-0.00524954497814178,-0.280730605125427,0.958508610725403,-0.0495137870311737,-0.348683834075928,0.936539232730865,0.036249291151762,-0.280730605125427,0.958508610725403,-0.0495137870311737,-0.467606067657471,0.883921384811401,-0.00524954497814178,-0.429162681102753,0.89799290895462,-0.097099706530571,-0.348683834075928,0.936539232730865,0.036249291151762,-0.447070449590683,0.888756513595581,0.101192936301231,-0.403176695108414,0.914846777915955,-0.022447407245636,-0.447070449590683,0.888756513595581,0.101192936301231,-0.491760015487671,0.870615422725677,-0.0141811389476061,-0.403176695108414,0.914846777915955,-0.022447407245636,-0.521929204463959,0.850736320018768,-0.0619488023221493,-0.467606067657471,0.883921384811401,-0.00524954497814178,-0.348683834075928,0.936539232730865,0.036249291151762,-0.348683834075928,0.936539232730865,0.036249291151762,-0.403176695108414,0.914846777915955,-0.022447407245636,-0.521929204463959,0.850736320018768,-0.0619488023221493,
- -0.467606067657471,0.883921384811401,-0.00524954497814178,-0.715402364730835,0.698167979717255,-0.027585769072175,-0.429162681102753,0.89799290895462,-0.097099706530571,-0.521929204463959,0.850736320018768,-0.0619488023221493,-0.715402364730835,0.698167979717255,-0.027585769072175,-0.467606067657471,0.883921384811401,-0.00524954497814178,-0.429162681102753,0.89799290895462,-0.097099706530571,-0.715402364730835,0.698167979717255,-0.027585769072175,-0.862743258476257,0.503127932548523,0.0503623634576797,-0.715402364730835,0.698167979717255,-0.027585769072175,-0.907858490943909,0.410535514354706,0.0851685255765915,-0.862743258476257,0.503127932548523,0.0503623634576797,-0.445274084806442,0.894107937812805,-0.0479808077216148,-0.521929204463959,0.850736320018768,-0.0619488023221493,-0.403176695108414,0.914846777915955,-0.022447407245636,-0.403176695108414,0.914846777915955,-0.022447407245636,-0.491760015487671,0.870615422725677,-0.0141811389476061,-0.445274084806442,0.894107937812805,-0.0479808077216148,-0.445274084806442,0.894107937812805,-0.0479808077216148,-0.665167927742004,0.739882051944733,-0.100629337131977,-0.521929204463959,0.850736320018768,-0.0619488023221493,-0.491760015487671,0.870615422725677,-0.0141811389476061,-0.665167927742004,0.739882051944733,-0.100629337131977,-0.445274084806442,0.894107937812805,-0.0479808077216148,-0.521929204463959,0.850736320018768,-0.0619488023221493,-0.665167927742004,0.739882051944733,-0.100629337131977,-0.715402364730835,0.698167979717255,-0.027585769072175,-0.711229264736176,0.70142662525177,-0.046407338231802,-0.665167927742004,0.739882051944733,-0.100629337131977,-0.491760015487671,0.870615422725677,-0.0141811389476061,-0.711229264736176,0.70142662525177,-0.046407338231802,-0.715402364730835,0.698167979717255,-0.027585769072175,-0.665167927742004,0.739882051944733,-0.100629337131977,-0.53178870677948,0.846427857875824,-0.0275827161967754,-0.715402364730835,0.698167979717255,-0.027585769072175,-0.711229264736176,0.70142662525177,-0.046407338231802,-0.814919412136078,0.578801274299622,0.0299235321581364,
- -0.907858490943909,0.410535514354706,0.0851685255765915,-0.715402364730835,0.698167979717255,-0.027585769072175,-0.715402364730835,0.698167979717255,-0.027585769072175,-0.53178870677948,0.846427857875824,-0.0275827161967754,-0.814919412136078,0.578801274299622,0.0299235321581364,-0.814919412136078,0.578801274299622,0.0299235321581364,-0.387606024742126,0.92125791311264,-0.0323363281786442,-0.907858490943909,0.410535514354706,0.0851685255765915,-0.53178870677948,0.846427857875824,-0.0275827161967754,-0.458839297294617,0.887732028961182,-0.0373962186276913,-0.814919412136078,0.578801274299622,0.0299235321581364,-0.370790332555771,0.927719056606293,-0.043035764247179,-0.387606024742126,0.92125791311264,-0.0323363281786442,-0.814919412136078,0.578801274299622,0.0299235321581364,-0.458839297294617,0.887732028961182,-0.0373962186276913,-0.370790332555771,0.927719056606293,-0.043035764247179,-0.814919412136078,0.578801274299622,0.0299235321581364,-0.31608921289444,0.9483562707901,-0.0266068633645773,-0.387606024742126,0.92125791311264,-0.0323363281786442,-0.370790332555771,0.927719056606293,-0.043035764247179,-0.458839297294617,0.887732028961182,-0.0373962186276913,-0.31608921289444,0.9483562707901,-0.0266068633645773,-0.370790332555771,0.927719056606293,-0.043035764247179,-0.31608921289444,0.9483562707901,-0.0266068633645773,-0.555708587169647,0.830713331699371,0.0332195647060871,-0.387606024742126,0.92125791311264,-0.0323363281786442,-0.53178870677948,0.846427857875824,-0.0275827161967754,-0.192965492606163,0.957944571971893,0.212383240461349,-0.458839297294617,0.887732028961182,-0.0373962186276913,-0.197662442922592,0.95377904176712,0.226351916790009,-0.192965492606163,0.957944571971893,0.212383240461349,-0.53178870677948,0.846427857875824,-0.0275827161967754,-0.349815398454666,0.929893732070923,0.113696977496147,-0.458839297294617,0.887732028961182,-0.0373962186276913,-0.192965492606163,0.957944571971893,0.212383240461349,-0.197662442922592,0.95377904176712,0.226351916790009,-0.349815398454666,0.929893732070923,0.113696977496147,
- -0.192965492606163,0.957944571971893,0.212383240461349,-0.458839297294617,0.887732028961182,-0.0373962186276913,-0.349815398454666,0.929893732070923,0.113696977496147,-0.31608921289444,0.9483562707901,-0.0266068633645773,-0.215520888566971,0.939542829990387,0.266101509332657,-0.349815398454666,0.929893732070923,0.113696977496147,-0.197662442922592,0.95377904176712,0.226351916790009,-0.64684396982193,0.756224513053894,-0.0985779538750649,-0.349815398454666,0.929893732070923,0.113696977496147,-0.215520888566971,0.939542829990387,0.266101509332657,-0.349815398454666,0.929893732070923,0.113696977496147,-0.64684396982193,0.756224513053894,-0.0985779538750649,-0.594335854053497,0.803472757339478,-0.0345909893512726,-0.31608921289444,0.9483562707901,-0.0266068633645773,-0.349815398454666,0.929893732070923,0.113696977496147,-0.594335854053497,0.803472757339478,-0.0345909893512726,-0.830708563327789,0.507415294647217,-0.22902649641037,-0.594335854053497,0.803472757339478,-0.0345909893512726,-0.64684396982193,0.756224513053894,-0.0985779538750649,-0.31608921289444,0.9483562707901,-0.0266068633645773,-0.74615353345871,0.665752351284027,0.00537355616688728,-0.555708587169647,0.830713331699371,0.0332195647060871,-0.594335854053497,0.803472757339478,-0.0345909893512726,-0.74615353345871,0.665752351284027,0.00537355616688728,-0.31608921289444,0.9483562707901,-0.0266068633645773,-0.74615353345871,0.665752351284027,0.00537355616688728,-0.895114421844482,0.414402961730957,0.164439857006073,-0.555708587169647,0.830713331699371,0.0332195647060871,-0.594335854053497,0.803472757339478,-0.0345909893512726,-0.830708563327789,0.507415294647217,-0.22902649641037,-0.673075675964355,0.739307403564453,-0.019842492416501,-0.594335854053497,0.803472757339478,-0.0345909893512726,-0.673075675964355,0.739307403564453,-0.019842492416501,-0.74615353345871,0.665752351284027,0.00537355616688728,-0.892149567604065,0.415598392486572,-0.177051648497581,-0.673075675964355,0.739307403564453,-0.019842492416501,-0.830708563327789,0.507415294647217,-0.22902649641037,
- -0.87430477142334,0.482237786054611,0.0551176257431507,-0.895114421844482,0.414402961730957,0.164439857006073,-0.74615353345871,0.665752351284027,0.00537355616688728,-0.87430477142334,0.482237786054611,0.0551176257431507,-0.797441899776459,0.601899385452271,0.0424679219722748,-0.895114421844482,0.414402961730957,0.164439857006073,-0.87430477142334,0.482237786054611,0.0551176257431507,-0.805408298969269,0.590279579162598,0.0537348911166191,-0.797441899776459,0.601899385452271,0.0424679219722748,-0.904695808887482,0.416345417499542,-0.0904549434781075,-0.74615353345871,0.665752351284027,0.00537355616688728,-0.673075675964355,0.739307403564453,-0.019842492416501,-0.74615353345871,0.665752351284027,0.00537355616688728,-0.904695808887482,0.416345417499542,-0.0904549434781075,-0.87430477142334,0.482237786054611,0.0551176257431507,-0.673075675964355,0.739307403564453,-0.019842492416501,-0.892149567604065,0.415598392486572,-0.177051648497581,-0.904695808887482,0.416345417499542,-0.0904549434781075,-0.805408298969269,0.590279579162598,0.0537348911166191,-0.87430477142334,0.482237786054611,0.0551176257431507,-0.904695808887482,0.416345417499542,-0.0904549434781075,-0.892149567604065,0.415598392486572,-0.177051648497581,-0.923522651195526,0.35561066865921,-0.143691062927246,-0.904695808887482,0.416345417499542,-0.0904549434781075,-0.904695808887482,0.416345417499542,-0.0904549434781075,-0.833727419376373,0.550685048103333,-0.0405537448823452,-0.805408298969269,0.590279579162598,0.0537348911166191,-0.923522651195526,0.35561066865921,-0.143691062927246,-0.833727419376373,0.550685048103333,-0.0405537448823452,-0.904695808887482,0.416345417499542,-0.0904549434781075,-0.628187477588654,0.163754642009735,0.76063460111618,-0.628187477588654,0.163754642009735,0.760634541511536,-0.628187537193298,0.163754656910896,0.76063460111618,0.365295439958572,0.0338502936065197,0.930276095867157,0.365295380353928,0.0338502898812294,0.930276036262512,0.36529541015625,0.0338502936065197,0.930276095867157,0.00522175105288625,0.00524826860055327,0.999972581863403,
- 0.00524757616221905,-0.000267853873083368,0.999986290931702,0.00528824096545577,-0.00902397278696299,0.999945402145386,0.00954376067966223,-0.00903453398495913,0.999913692474365,0.00959317199885845,-0.000259605760220438,0.999954044818878,0.0095079131424427,-0.0153201650828123,0.999837458133698,-0.028327438980341,0.999592065811157,0.00364757142961025,-0.0289418380707502,0.999542772769928,-0.00876219384372234,-0.0286920126527548,0.999581456184387,-0.00370548013597727,-0.028407409787178,0.999589800834656,0.00365101266652346,-0.0287049729377031,0.999581038951874,-0.0037048717495054,-0.0282128266990185,0.999566316604614,0.00844059977680445,0.0246803499758244,-0.0456511601805687,-0.998652517795563,0.0233777072280645,-0.0427267104387283,-0.998813211917877,0.0246163085103035,-0.0509724728763103,-0.998396694660187,0.0246803499758244,-0.0456511601805687,-0.998652517795563,0.0246163085103035,-0.0509724728763103,-0.998396694660187,0.0259431973099709,-0.0551778525114059,-0.998139441013336,0.0115159638226032,-0.00672203209251165,0.99991112947464,0.010808021761477,-0.0038199252448976,0.999934375286102,0.00186695612501353,-0.00653296196833253,0.999976933002472,0.010808021761477,-0.0038199252448976,0.999934375286102,0.0115727577358484,-0.000932635855861008,0.999932646751404,0.020552659407258,-0.000937493517994881,0.999788343906403,0.0163409169763327,-0.0153083596378565,0.999749302864075,0.016563156619668,-0.0209619607776403,0.999643087387085,0.00888706929981709,-0.0209618844091892,0.999740839004517,0.016653286293149,-0.00965836178511381,0.999814689159393,0.0163409169763327,-0.0153083596378565,0.999749302864075,0.0242643132805824,-0.00977434497326612,0.999657809734344,0.00554627133533359,-0.998897254467011,-0.0466225482523441,0.00404074462130666,-0.999968469142914,0.00683899037539959,0.00357128377072513,-0.999652743339539,-0.0261085480451584,0.00248352834023535,-0.999656617641449,0.0260880216956139,0.00357128377072513,-0.999652743339539,-0.0261085480451584,0.00236988044343889,-0.999973833560944,0.00683386391028762,0.0142863532528281,0.0494655035436153,-0.998673737049103,
- 0.0143011994659901,0.052822794765234,-0.998501479625702,0.014326274394989,0.0585762448608875,-0.998180210590363,0.0105281509459019,0.0528254956007004,-0.998548269271851,0.0105526251718402,0.049458771944046,-0.998720526695251,0.0105992080643773,0.04300257563591,-0.999018788337708,0.00265710731036961,-0.0289727840572596,0.999576687812805,0.00458117993548512,-0.0289726667106152,0.999569714069366,0.0125890988856554,-0.0289710164070129,0.999501049518585,-0.00462028291076422,-0.02986597456038,0.999543309211731,0.00458783842623234,-0.0296788718551397,0.999549031257629,0.00266583124175668,-0.0297181326895952,0.999554872512817,0.0185509026050568,-0.0467774569988251,0.998733103275299,0.00857599265873432,-0.046046931296587,0.998902499675751,0.0648777261376381,-0.0501106046140194,0.996634244918823,0.0183858163654804,-0.056038822978735,0.998259305953979,-0.0339414365589619,-0.0584485121071339,0.997713327407837,0.00851598288863897,-0.0565052889287472,0.998365998268127,-0.00122414669021964,-0.0137974051758647,0.999904155731201,-0.0130733391270041,-0.0151486769318581,0.999799847602844,-0.0130386874079704,-0.0172815136611462,0.999765634536743,0.0106589943170547,-0.0147989504039288,0.999833762645721,-0.00122414669021964,-0.0137974051758647,0.999904155731201,0.0106190582737327,-0.0115892849862576,0.999876499176025,-0.00743993651121855,0.99941086769104,0.0335037894546986,-0.00024298882635776,0.99951958656311,0.030992429703474,-0.00744912400841713,0.999567747116089,0.0284404810518026,-0.00024298882635776,0.99951958656311,0.030992429703474,0.00692330207675695,0.999649882316589,0.0255404394119978,0.00694169057533145,0.999573469161987,0.0283709987998009,-0.0138331642374396,-0.999348223209381,-0.0333429761230946,-0.00737911555916071,-0.999134063720703,-0.0409487783908844,-0.013885335996747,-0.999586641788483,-0.025176003575325,-0.00737911555916071,-0.999134063720703,-0.0409487783908844,-0.000902200059499592,-0.99944394826889,-0.0333311893045902,-0.00105976453050971,-0.99874359369278,-0.0501010417938232,0.00664688041433692,0.00433743745088577,0.999968528747559,
- 0.00668208068236709,-0.00169403257314116,0.999976217746735,0.00671874964609742,-0.00802150089293718,0.999945342540741,0.0114483647048473,-0.00802903436124325,0.999902307987213,0.0114844320341945,-0.00168346345890313,0.999932646751404,0.0114091476425529,-0.0148376673460007,0.99982488155365,-0.0285701341927052,0.999591290950775,-0.00101795932278037,-0.0290121287107468,0.999523520469666,-0.010541102848947,-0.0287951696664095,0.99956339597702,-0.00663388194516301,-0.0285701341927052,0.999591290950775,-0.00101795932278037,-0.0289304088801146,0.999559462070465,-0.00662661576643586,-0.0284790452569723,0.999590933322906,0.00264555937610567,0.0293411929160357,-0.0426436327397823,-0.998659491539001,0.028103232383728,-0.0411166660487652,-0.998759090900421,0.0293154027312994,-0.0445042736828327,-0.99857896566391,0.0293411929160357,-0.0426436327397823,-0.998659491539001,0.0293154027312994,-0.0445042736828327,-0.99857896566391,0.0305539630353451,-0.046651728451252,-0.998443841934204,0.00993167515844107,-0.00781361665576696,0.999920129776001,0.00788638181984425,-0.00446558697149158,0.99995893239975,0.00200397823937237,-0.0076762679964304,0.999968588352203,0.00788638181984425,-0.00446558697149158,0.99995893239975,0.00998390652239323,-0.00115453742910177,0.99994957447052,0.0159920509904623,-0.00115755898877978,0.999871551990509,0.0127419102936983,-0.0188811644911766,0.999740540981293,0.0110121015459299,-0.025144848972559,0.99962317943573,0.0034659611992538,-0.0251452494412661,0.999677836894989,0.0111287487670779,-0.0125829232856631,0.999858915805817,0.0127419102936983,-0.0188811644911766,0.999740540981293,0.0205118041485548,-0.0127724893391132,0.999708116054535,0.00634080171585083,-0.998011291027069,-0.0627156421542168,0.00388167658820748,-0.999972224235535,0.0063577713444829,0.00351209123618901,-0.999332964420319,-0.036352351307869,0.00218661385588348,-0.999511003494263,0.0311934966593981,0.00351209123618901,-0.999332964420319,-0.036352351307869,0.00197982043027878,-0.999977886676788,0.00635163299739361,0.0102922013029456,-0.0220499467104673,0.999703884124756,
- 0.010320171713829,-0.0184579659253359,0.999776363372803,0.0103734685108066,-0.0115653937682509,0.999879360198975,0.0143192680552602,-0.0184675622731447,0.999727010726929,0.0143359452486038,-0.0220487862825394,0.999654114246368,0.0143640944734216,-0.0281845536082983,0.999499619007111,-0.00451825745403767,-0.00134985987097025,-0.999988913536072,0.00436423579230905,-0.00152235559653491,-0.99998939037323,0.00274963211268187,-0.00149100879207253,-0.999995172023773,0.00274250144138932,-0.00213799276389182,-0.999994039535522,0.00435859896242619,-0.00213791476562619,-0.999988257884979,0.0123313460499048,-0.00213744747452438,-0.999921679496765,0.0175633206963539,0.0155669823288918,-0.999724566936493,0.00909231510013342,0.0149590782821178,-0.999846816062927,0.064964547753334,0.0189495626837015,-0.997707724571228,0.00903419964015484,0.0247110705822706,-0.999653875827789,0.0174236241728067,0.0243207197636366,-0.999552369117737,-0.0344475097954273,0.0267058294266462,-0.999049663543701,0.0106184724718332,-0.0172607507556677,-0.999794661998749,0.0106031568720937,-0.0184618607163429,-0.999773323535919,0.0105763245373964,-0.0205634385347366,-0.999732673168182,-0.0127098402008414,-0.0181285087019205,-0.999754965305328,-0.0126894991844893,-0.0169074553996325,-0.999776542186737,-0.0126528609544039,-0.0147105827927589,-0.999811768531799,-0.00762361334636807,-0.999967455863953,-0.0026723719201982,-0.0076283304952085,-0.99997091293335,-6.48650020593777e-005,-0.00763284740969539,-0.999967932701111,0.00245884945616126,0.00784111581742764,-0.999969303607941,-1.21902612590929e-005,0.00780421961098909,-0.999954462051392,0.00549378665164113,0.00782407633960247,-0.999966263771057,0.00253520347177982,-0.0141782965511084,0.999896943569183,0.00228115520440042,-0.00755980471149087,0.999928057193756,0.00931701343506575,-0.0142302149906754,0.999881863594055,-0.0058146957308054,-0.00755980471149087,0.999928057193756,0.00931701343506575,-0.000920868129469454,0.999997019767761,0.00226684007793665,-0.00107102608308196,0.99983012676239,0.0184052344411612,
- -0.00986947864294052,0.00755504565313458,0.999922752380371,-0.00986684951931238,0.00641154311597347,0.999930858612061,-0.00986373145133257,0.00506370747461915,0.999938547611237,-0.00764148076996207,0.00756379775702953,0.999942183494568,-0.00764777744188905,0.00890462007373571,0.99993109703064,-0.00763609353452921,0.0064187035895884,0.999950289726257,-0.000764109427109361,0.00054039916722104,-0.999999642372131,-0.000626682420261204,0.000540177104994655,-0.999999761581421,-2.2125494069769e-005,0.000539199856575578,-0.99999988079071,-0.000625209184363484,0.00216315221041441,-0.999997556209564,-0.000762897834647447,0.00216315127909184,-0.999997437000275,-0.00140542327426374,0.00216314685530961,-0.999996721744537,0.00310085969977081,-0.0189424231648445,-0.999815762042999,0.00989324785768986,-0.0156791247427464,-0.999828159809113,0.00185170955955982,-0.0189704988151789,-0.999818384647369,0.00310085969977081,-0.0189424231648445,-0.999815762042999,0.00185170955955982,-0.0189704988151789,-0.999818384647369,-0.00488421786576509,-0.0221093874424696,-0.999743700027466,-0.00933378469198942,0.0142285041511059,-0.999855220317841,0.000779206224251539,0.0140334097668529,-0.999901235103607,-0.00933579728007317,0.0140485800802708,-0.999857842922211,0.000779206224251539,0.0140334097668529,-0.999901235103607,0.010893976315856,0.0140043552964926,-0.999842584133148,0.0108950808644295,0.0141047621145844,-0.999841153621674,-0.00587481679394841,0.999961137771606,0.00657451711595058,-0.00587526569142938,0.999951481819153,0.00790654215961695,-0.00587443402037025,0.999967813491821,0.00546352984383702,0.00670269783586264,0.999937951564789,0.00889672245830297,0.00670123239979148,0.999946475028992,0.00789478421211243,0.00669928453862667,0.999955952167511,0.00657153641805053,0.0142240831628442,-0.999863505363464,0.00841805431991816,0.00777554139494896,-0.999941468238831,0.00752594089135528,0.0142235057428479,-0.999857008457184,0.00915648229420185,0.00132761429995298,-0.999976396560669,0.00674131046980619,0.00777554139494896,-0.999941468238831,0.00752594089135528,
- 0.00132414232939482,-0.999963879585266,0.00840356945991516,0.0142827434465289,0.018390966579318,-0.999728918075562,0.0142994020134211,0.0219611879438162,-0.999656558036804,0.0143275307491422,0.0280792117118835,-0.999503016471863,0.0103503977879882,0.0219624117016792,-0.99970531463623,0.0103781074285507,0.0183817185461521,-0.999777257442474,0.0104308892041445,0.0115126129239798,-0.999879360198975,0.00272370711900294,0.00213457364588976,0.999994039535522,0.0043410244397819,0.00213449541479349,0.999988377094269,0.0123160565271974,0.0021340292878449,0.999921977519989,-0.00454286392778158,0.00143991131335497,0.999988734722137,0.00434580538421869,0.00161262124311179,0.999989330768585,0.00272980867885053,0.00158123078290373,0.999995052814484,0.0175027120858431,-0.0154509479179978,0.999727427959442,0.00904620904475451,-0.0148445954546332,0.999848902225494,0.064820185303688,-0.0188248734921217,0.997719466686249,0.0173591822385788,-0.0244177132844925,0.999551177024841,-0.0344062522053719,-0.0267895236611366,0.999048888683319,0.00898618157953024,-0.0248059444129467,0.999651908874512,-0.0122991371899843,0.01810641027987,0.999760448932648,-0.0122789461165667,0.0168926920741796,0.999781906604767,-0.0122425705194473,0.0147088672965765,0.999816834926605,0.0106319384649396,0.0172395724803209,0.999794900417328,0.0106167104095221,0.0184337925165892,0.999773681163788,0.0105900317430496,0.0205231793224812,0.99973326921463,-0.00763212935999036,0.999967634677887,0.00256439507938921,-0.00763681111857295,0.99997091293335,-7.18618139217142e-006,-0.00764129403978586,0.999967753887177,-0.00249612610787153,0.00684849079698324,0.999976634979248,-5.63547655474395e-005,0.00681240996345878,0.999961793422699,-0.00548353418707848,0.00683182338252664,0.99997341632843,-0.00256717763841152,-0.0141861625015736,-0.999896764755249,-0.00230732932686806,-0.0141410129144788,-0.999857068061829,-0.00927145034074783,-0.0142374280840158,-0.999882221221924,0.00573212653398514,-0.00100481219124049,-0.999956130981445,-0.00931735057383776,-0.000939965830184519,-0.999996900558472,-0.0022930062841624,
- -0.00108782574534416,-0.999831736087799,-0.0183167867362499,-0.0289503373205662,0.999383509159088,-0.0198616180568933,-0.029078034684062,0.998310923576355,-0.0502979606389999,-0.0287626758217812,0.999449968338013,0.0165067166090012,-0.0466584451496601,0.998721122741699,-0.0194741077721119,-0.0445038862526417,0.998861908912659,0.0171561483293772,-0.0424394831061363,0.997780382633209,0.0513141565024853,0.0940695852041245,-0.995524883270264,-0.00901817716658115,0.0954115018248558,-0.994944155216217,-0.031351525336504,0.0967588052153587,-0.993808925151825,-0.0546042434871197,0.096681222319603,-0.994823396205902,-0.0312938578426838,0.0963407382369041,-0.99530816078186,-0.00895233545452356,0.0960701480507851,-0.995350778102875,0.00689352350309491,0.000610871298704296,0.144783869385719,0.989463150501251,-0.0100638195872307,0.14464046061039,0.989433169364929,0.0027450704947114,0.144810572266579,0.98945564031601,0.000603392720222473,0.146778121590614,0.989169299602509,0.00274136778898537,0.14676134288311,0.989168167114258,0.0139163611456752,0.146662726998329,0.989088773727417,0.047881193459034,0.0235537942498922,0.998575329780579,0.0462431125342846,0.0235658511519432,0.998652219772339,0.0578554533421993,0.0234789848327637,0.998048841953278,0.0462262965738773,0.0266983322799206,0.998574197292328,0.0478693135082722,0.026727544143796,0.998496055603027,0.0324797742068768,0.0264512076973915,0.999122321605682,0.0710627809166908,-0.00589082995429635,0.997454524040222,0.0709606409072876,0.00970079749822617,0.997431933879852,0.0711546838283539,-0.0229349508881569,0.99720162153244,0.0762175321578979,0.00983278267085552,0.997042775154114,0.0768138095736504,-0.00579751655459404,0.997028648853302,0.0752985700964928,0.0330169163644314,0.996614336967468,0.0148052526637912,0.0179738700389862,-0.999728858470917,0.0148197021335363,0.0211209058761597,-0.999667108058929,0.0148466173559427,0.0270701330155134,-0.999523341655731,0.0107351234182715,0.0211218893527985,-0.999719381332397,0.0107589298859239,0.0179650336503983,-0.999780774116516,0.0108088850975037,0.0112939570099115,-0.999877870082855,
- 0.00247031124308705,0.00224852142855525,0.999994456768036,0.00430174265056849,0.00224843365140259,0.999988317489624,0.011872723698616,0.00224799057468772,0.99992698431015,-0.00441961176693439,0.00195913529023528,0.999988377094269,0.00430282531306148,0.00212711654603481,0.999988555908203,0.00247204909101129,0.00209187157452106,0.999994814395905,0.0181123334914446,-0.0157028120011091,0.999712646007538,0.00835432764142752,-0.0150021212175488,0.999852657318115,0.0631332993507385,-0.0189177524298429,0.997825801372528,0.0179437287151814,-0.0254003908485174,0.999516308307648,-0.0329356603324413,-0.0276975836604834,0.999073624610901,0.00829415302723646,-0.0258412919938564,0.999631643295288,-0.0132310139015317,0.0177095271646976,0.999755620956421,-0.0132120726630092,0.0165784582495689,0.999775350093842,-0.0131745981052518,0.0143437441438437,0.999810397624969,0.0109012359753251,0.0169446151703596,0.999796986579895,0.0108870649710298,0.0180560909211636,0.999777674674988,0.0108597325161099,0.0201968178153038,0.999737024307251,-0.0076306089758873,0.999967932701111,0.00246340618468821,-0.00763539969921112,0.99997091293335,-0.000140666379593313,-0.0076399864628911,0.999967336654663,-0.00266046030446887,0.00704561453312635,0.999975264072418,-0.000191084938705899,0.00700860563665628,0.999959349632263,-0.00568928802385926,0.00702852848917246,0.999971628189087,-0.00273333885706961,-0.0142467552796006,-0.999896228313446,-0.0021539160516113,-0.014196421019733,-0.999853730201721,-0.00954611226916313,-0.0143039170652628,-0.999877333641052,0.0063835745677352,-0.000899383390787989,-0.999953627586365,-0.00959639437496662,-0.000825778231956065,-0.999997437000275,-0.00213949452154338,-0.000993601162917912,-0.999816119670868,-0.0191481858491898,-0.0298408418893814,0.999378979206085,-0.0187407825142145,-0.0299760811030865,0.998329520225525,-0.0493931174278259,-0.0296572595834732,0.99944144487381,0.0154049023985863,-0.0481264665722847,0.99867308139801,-0.0183260291814804,-0.0460778176784515,0.99880838394165,0.0160844326019287,-0.0439763925969601,0.997758328914642,0.0504439696669579,
- 0.0964907631278038,-0.994911313056946,-0.0290020704269409,0.0970800668001175,-0.99437028169632,-0.0424656756222248,0.097656637430191,-0.993641197681427,-0.0560394264757633,0.0998638421297073,-0.994099020957947,-0.0423603095114231,0.0996384099125862,-0.994603514671326,-0.0289136376231909,0.0994496196508408,-0.994872570037842,-0.0183979328721762,0.000628682144451886,0.139423742890358,0.990232586860657,-0.00957863964140415,0.139291405677795,0.99020516872406,0.00267157680355012,0.139448493719101,0.990225791931152,0.000605503271799535,0.145820081233978,0.989311039447784,0.0026599089615047,0.145804643630981,0.989309906959534,0.0133573869243264,0.145714268088341,0.98923659324646,-0.00411116890609264,-0.0211983695626259,-0.999766826629639,-0.0024685685057193,0.00784642528742552,-0.999966204166412,-0.00633019581437111,-0.0605051442980766,-0.99814784526825,-0.0189622342586517,0.00803747586905956,-0.999787867069244,-0.018604164943099,-0.0207512956112623,-0.999611556529999,-0.0193781536072493,0.0431821048259735,-0.998879373073578,0.0369957908987999,0.0259020105004311,0.99897974729538,0.0324605964124203,0.0260583534836769,0.999133288860321,0.0569460429251194,0.0252076014876366,0.998059034347534,0.0324561707675457,0.0254379156976938,0.9991495013237,0.0369911454617977,0.0255159232765436,0.998989820480347,0.00908332038670778,0.0250277444720268,0.999645531177521,0.0729062333703041,-0.00550994928926229,0.997323572635651,0.0728083103895187,0.00931785255670547,0.997302412986755,0.0730022862553597,-0.0232367925345898,0.997061014175415,0.0774668529629707,0.00943714939057827,0.996950268745422,0.0780529975891113,-0.00542279751971364,0.996934533119202,0.0764866545796394,0.0333700440824032,0.996512115001678,-0.0104196378961205,0.00721615180373192,0.999919712543488,-0.0104172900319099,0.00626016641035676,0.999926149845123,-0.0104142660275102,0.00503403972834349,0.999933183193207,-0.0080408938229084,0.00722550740465522,0.99994158744812,-0.00804656744003296,0.00844579190015793,0.999932050704956,-0.00803643465042114,0.00626805704087019,0.999948084354401,
- -0.000628636917099357,0.000270322168944404,-0.999999821186066,-0.000498814741149545,0.000270147545961663,-0.999999821186066,-1.82701805897523e-005,0.000269501295406371,-1,-0.000497309549245983,0.00223443657159805,-0.99999737739563,-0.00062743917806074,0.00223443633876741,-0.99999737739563,-0.00113918853458017,0.00223443284630775,-0.999996840953827,0.00292038917541504,-0.0158490538597107,-0.999870181083679,0.00920746847987175,-0.0156580582261086,-0.999835014343262,0.0016102057415992,-0.019235348328948,-0.999813735485077,0.00307586486451328,-0.0225590188056231,-0.999740779399872,0.0016102057415992,-0.019235348328948,-0.999813735485077,-0.0045478125102818,-0.0226706005632877,-0.999732732772827,-0.00963479280471802,0.0140219731256366,-0.999855279922485,-0.00963426567614079,0.0140689490363002,-0.999854624271393,-0.00963359791785479,0.0141284335404634,-0.999853849411011,0.0112298717722297,0.0138335693627596,-0.999841272830963,0.011229332536459,0.0137859703972936,-0.999841928482056,0.0112286312505603,0.0137243131175637,-0.999842822551727,-0.00604745000600815,0.999957799911499,0.00691351993009448,-0.00604835525155067,0.999946117401123,0.00844775047153234,-0.00604667700827122,0.999965965747833,0.00562072126194835,0.0067330221645534,0.999931275844574,0.00960206147283316,0.00673126708716154,0.999941825866699,0.00843640696257353,0.00672895787283778,0.99995344877243,0.00691249733790755,0.014280516654253,-0.999864935874939,0.00814670417457819,0.00766900414600968,-0.999941408634186,0.00764730339869857,0.0142801133915782,-0.999861419200897,0.00856149476021528,0.0010574267944321,-0.99997353553772,0.00720267277210951,0.00766900414600968,-0.999941408634186,0.00764730339869857,0.00105584249831736,-0.999966382980347,0.00813166238367558,0.0456952378153801,0.998954832553864,-0.00111854902934283,0.042433675378561,0.9976886510849,-0.0530739314854145,0.0398985557258129,0.994945406913757,-0.0921505317091942,0.0271429214626551,0.999631285667419,-0.000774897751398385,0.0271319169551134,0.998968124389648,0.0364218428730965,0.0270959176123142,0.998258173465729,-0.0524069294333458,
- -0.0857732445001602,-0.994332909584045,0.0628089085221291,-0.0865200310945511,-0.993003368377686,0.0803664550185204,-0.0871111527085304,-0.991685807704926,0.0947156623005867,-0.090630479156971,-0.992649793624878,0.0802032276988029,-0.0903704985976219,-0.993933856487274,0.0626787468791008,-0.0901960283517838,-0.994573652744293,0.0518467053771019,-0.000693233858328313,0.103847861289978,-0.994593024253845,0.0113076427951455,0.103667348623276,-0.994547724723816,-0.00308389589190483,0.103882014751434,-0.994584858417511,-0.000673056463710964,0.108622588217258,-0.994082927703857,-0.00307372608222067,0.108601279556751,-0.994080603122711,-0.015776515007019,0.108478210866451,-0.993973731994629,0.0162904262542725,0.0482987798750401,0.998700082302094,0.0158797688782215,0.0127330143004656,0.999792814254761,0.0166571922600269,0.081633485853672,0.996523261070251,0.00811165012419224,0.012496598996222,0.999889016151428,0.00620859954506159,0.0482105948030949,0.998817980289459,0.0100847948342562,-0.024757357314229,0.999642729759216,-0.0273776445537806,-0.0133997667580843,-0.999535322189331,-0.031317625194788,-0.013407432474196,-0.999419569969177,-0.00784345716238022,-0.0133587028831244,-0.999880075454712,-0.0313069112598896,-0.0137835387140512,-0.999414801597595,-0.0273727234452963,-0.0136041482910514,-0.999532699584961,-0.0469597317278385,-0.0144953671842813,-0.998791694641113,-0.069997638463974,-0.0226437896490097,-0.997290134429932,-0.0703734531998634,-0.0360699705779552,-0.996868431568146,-0.069514699280262,-0.00601110700517893,-0.997562825679779,-0.0657731890678406,-0.0361347533762455,-0.997180223464966,-0.06569854170084,-0.0227351896464825,-0.997580528259277,-0.0658300742506981,-0.0481458343565464,-0.996668636798859,-0.0285372659564018,0.00517107639461756,0.999579429626465,-0.0285160299390554,4.2051022319356e-005,0.999593317508698,-0.0284784305840731,-0.00862887501716614,0.999557197093964,-0.0240120925009251,-0.00864000059664249,0.999674320220947,-0.0239669885486364,4.98596346005797e-005,0.999712824821472,-0.0240415073931217,-0.0145024564117193,0.9996058344841,
- -0.0264859832823277,0.999646306037903,0.00239818822592497,-0.0266643334180117,0.999594032764435,-0.0100440047681332,-0.0265968181192875,0.999632239341736,-0.00530037144199014,-0.0269442945718765,0.999634087085724,0.00240195845253766,-0.0269900634884834,0.999621689319611,-0.00529562262818217,-0.0269169732928276,0.999614119529724,0.00687405886128545,-0.0214263293892145,-0.00612179934978485,0.999751746654511,-0.0225362107157707,-0.00609802640974522,0.999727427959442,-0.0318477377295494,-0.00589825911447406,0.999475359916687,-0.0224763751029968,-0.000951690366491675,0.999746918678284,-0.0213722120970488,-0.000952391070313752,0.999771118164063,-0.0119568919762969,-0.000958318880293518,0.999928116798401,-0.0208884198218584,-0.0215634703636169,0.999549269676209,-0.0194549448788166,-0.0215631276369095,0.999578237533569,-0.0338423289358616,-0.0215645581483841,0.999194502830505,-0.0193413458764553,-0.0122363483533263,0.999738037586212,-0.0207862798124552,-0.0122055858373642,0.99970954656601,-0.00926504097878933,-0.0124501585960388,0.999879598617554,0.00325522292405367,-0.9998779296875,0.0152870481833816,0.00296203326433897,-0.999703705310822,0.0241609066724777,0.00314108142629266,-0.999819457530975,0.0187427867203951,0.00125836720690131,-0.999639093875885,0.0268348678946495,0.0014855784829706,-0.999824225902557,0.0186907313764095,0.00133430096320808,-0.999708354473114,0.0241136383265257,0.0544768646359444,-0.998243808746338,0.0232731830328703,0.0529379285871983,-0.997430086135864,0.0482791513204575,0.0507676899433136,-0.995287954807281,0.0826112031936646,0.0340021029114723,-0.999162256717682,0.0227758623659611,0.0341708101332188,-0.999383330345154,-0.0080953361466527,0.0338433384895325,-0.998296558856964,0.0475247167050838,-0.113666273653507,0.99103844165802,-0.0701630786061287,-0.114078894257545,0.99031275510788,-0.079162061214447,-0.114625945687294,0.989194273948669,-0.0914095938205719,-0.112234055995941,0.99051696062088,-0.0792440176010132,-0.112053468823433,0.991217851638794,-0.0702225789427757,-0.111846625804901,0.991888046264648,-0.0604029409587383,
- -0.00050469086272642,-0.108173012733459,0.994131982326508,0.00790823809802532,-0.108084641396999,0.994110226631165,-0.00219821650534868,-0.108189880847931,0.994127810001373,-0.000499776855576783,-0.10984967648983,0.993948101997375,-0.0021958015859127,-0.109839349985123,0.993946969509125,-0.0108517007902265,-0.109781712293625,0.993896543979645,0.0073562553152442,-0.0226763002574444,-0.999715805053711,0.00600139098241925,-0.044236097484827,-0.999003052711487,0.0100056724622846,0.019673453643918,-0.999756455421448,0.0218316558748484,-0.0444708876311779,-0.998772203922272,0.0215256996452808,-0.0231147240847349,-0.99950110912323,0.0223606489598751,-0.083116888999939,-0.996288895606995,-0.034171849489212,0.0103338873013854,0.999362528324127,-0.0314607098698616,0.010282950475812,0.999452114105225,-0.0463082864880562,0.0105610340833664,0.998871445655823,-0.0314622223377228,0.00981978047639132,0.999456703662872,-0.0341752208769321,0.00978645496070385,0.999368011951447,-0.0171829126775265,0.00999394617974758,0.999802470207214,-0.0816113650798798,0.0407814830541611,0.995829522609711,-0.0815322697162628,0.0298002455383539,0.996225118637085,-0.0817325711250305,0.061248205602169,0.994770526885986,-0.0858612582087517,0.0296669118106365,0.995865345001221,-0.0863553136587143,0.0406693331897259,0.995433926582336,-0.0846184194087982,0.00294074695557356,0.996409177780151,0.0881344377994537,0.996099948883057,0.00415726006031036,0.0882622674107552,0.995679259300232,-0.0288568008691072,0.0882951468229294,0.994402587413788,-0.0580310821533203,0.0670367479324341,0.997340261936188,-0.0286073461174965,0.0686622336506844,0.997628808021545,0.00474112806841731,0.0702361911535263,0.996781885623932,0.0386372767388821,-0.0205021817237139,-0.999629318714142,-0.0179170351475477,-0.0198341310024261,-0.999346137046814,-0.030230863019824,-0.019143920391798,-0.998896420001984,-0.0428903140127659,-0.0184670183807611,-0.999374210834503,-0.0301699656993151,-0.0188246890902519,-0.999663352966309,-0.0178573727607727,-0.0191007573157549,-0.999783217906952,-0.00828405376523733,
- 0.00717074237763882,0.144763514399529,0.989440381526947,-0.00360530009493232,0.145901426672935,0.989292562007904,0.00874787662178278,0.14459553360939,0.989452183246613,0.00794979557394981,0.151417776942253,0.988437950611115,0.00953224580734968,0.151217386126518,0.988454639911652,0.02080780826509,0.149778172373772,0.988500714302063,0.000260529137449339,-0.0344059057533741,-0.999408006668091,0.00589404534548521,-0.00263029290363193,-0.999979257583618,-0.00675912061706185,-0.0739476531744003,-0.997239291667938,-0.00785082951188087,-0.000848075724206865,-0.999968886375427,-0.0112283937633038,-0.0326720513403416,-0.999403059482574,-0.00414564879611135,0.0339769162237644,-0.999414026737213,-0.0144770238548517,0.036941509693861,0.999212622642517,0.02918691188097,0.0292794611304998,0.999145090579987,0.0232218317687511,0.0303301904350519,0.99927020072937,0.0649001970887184,0.0294274091720581,0.997457802295685,0.023520989343524,0.0326676778495312,0.999189496040344,0.029538981616497,0.0322001315653324,0.999044954776764,0.0608051903545856,-0.00182796875014901,0.998148024082184,0.0626194402575493,0.0142892375588417,0.997935175895691,0.0588322952389717,-0.0191949326545,0.998083293437958,0.0671574845910072,0.0138632468879223,0.99764609336853,0.0658715143799782,-0.00235097180120647,0.997825384140015,0.0690412148833275,0.0380233190953732,0.996888995170593,0.0502543561160564,0.998559713363647,0.0187894199043512,0.0483801625669003,0.99870902299881,-0.0154871493577957,0.0465525649487972,0.997765123844147,-0.0479330010712147,0.0294379070401192,0.999382138252258,0.0192031059414148,0.0295343119651079,0.998453617095947,0.0470983199775219,0.0292896721512079,0.999462008476257,-0.014760515652597,-0.098028376698494,-0.994857847690582,0.0254640877246857,-0.0985338166356087,-0.994393646717072,0.038372740149498,-0.0990061387419701,-0.993787884712219,0.0508282631635666,-0.0966277197003365,-0.994578123092651,0.0384370274841785,-0.0964379906654358,-0.995012223720551,0.0255031064152718,-0.0962914600968361,-0.995221555233002,0.0161923505365849,-0.00147340598050505,0.135213568806648,-0.990815401077271,
- 0.0107798278331757,0.135041236877441,-0.990781366825104,-0.0025880285538733,0.135228246450424,-0.990811169147491,-0.00146196212153882,0.138426840305328,-0.990371584892273,-0.00257960171438754,0.138417840003967,-0.990370631217957,-0.0154472505673766,0.13830178976059,-0.990269720554352,0.00977983511984348,0.0101020252332091,0.999901175498962,0.0161124598234892,-0.0277496557682753,0.99948513507843,0.0170042999088764,0.0449839048087597,0.998843014240265,0.00511797564104199,-0.0281042028218508,0.999591946601868,0.00977983511984348,0.0101020252332091,0.999901175498962,0.0073754251934588,-0.068309985101223,0.99763685464859,-0.0782511383295059,0.0275604221969843,-0.996552646160126,-0.0327762477099895,0.0256356298923492,-0.999133884906769,-0.0374041423201561,0.0258338190615177,-0.998966336250305,0.0110387373715639,0.0266989599913359,-0.999582648277283,-0.0373950712382793,0.0237290933728218,-0.999018788337708,-0.0327605083584785,0.0240159314125776,-0.999174654483795,-0.0678136721253395,0.0134367356076837,-0.997607529163361,-0.0685503035783768,-0.00564717222005129,-0.997631728649139,-0.066862165927887,0.0371853597462177,-0.997069120407104,-0.0658225268125534,-0.00568925961852074,-0.997815132141113,-0.0656988322734833,0.0133823370561004,-0.997749745845795,-0.0659122988581657,-0.0226192586123943,-0.99756908416748,-0.00504369428381324,0.0052982191555202,-0.999973237514496,-0.00520338770002127,-7.2059192461893e-005,-0.999986529350281,-0.00546593870967627,-0.00891234260052443,-0.999945342540741,-0.00949452724307776,4.41045849584043e-005,-0.999954998493195,-0.00978942215442657,-0.0149439442902803,-0.999840438365936,-0.00966912601143122,-0.00881683547049761,-0.999914407730103,0.0522115267813206,0.998605251312256,-0.00784613844007254,0.0523929558694363,0.998621046543121,-0.00332056451588869,0.0526935011148453,0.998601734638214,0.0042360108345747,0.0522425957024097,0.998625338077545,0.0042567839846015,0.0518772155046463,0.998648047447205,-0.00329879182390869,0.0524731799960136,0.998581349849701,0.00905677955597639,-0.0266220979392529,-0.044562291353941,0.99865186214447,
- -0.0267004352062941,-0.0493898615241051,0.998422682285309,-0.0267596002668142,-0.0530611909925938,0.998232662677765,-0.024109261110425,-0.0445949658751488,0.998714208602905,-0.0240822173655033,-0.0420448295772076,0.998825490474701,-0.0241601057350636,-0.049429215490818,0.998485386371613,-0.0112150218337774,-0.000667600485030562,-0.999936878681183,-0.0122910840436816,-0.000641067803371698,-0.999924302101135,-0.0218085423111916,-0.000406345759984106,-0.999762177467346,-0.0123673295602202,-0.00585668394342065,-0.999906420707703,-0.0112850870937109,-0.00586074171587825,-0.999919176101685,-0.00186487240716815,-0.00589576875790954,-0.999980866909027,-0.017455231398344,-0.0104264551773667,-0.999793350696564,-0.017426623031497,-0.0104267662391067,-0.999793767929077,-0.0244205556809902,-0.0103502459824085,-0.99964827299118,-0.017615245655179,-0.0210498087108135,-0.99962329864502,-0.0176435317844152,-0.0210490971803665,-0.999622762203217,-0.0108368806540966,-0.0212193951010704,-0.999716103076935,-0.0290755238384008,-0.99954617023468,-0.0078818341717124,-0.0282862987369299,-0.999235153198242,0.0270016063004732,-0.0305500980466604,-0.998422920703888,0.0471016131341457,-0.0282862987369299,-0.999235153198242,0.0270016063004732,-0.0267655085772276,-0.999610722064972,-0.0078758979216218,-0.0268671084195375,-0.999282360076904,-0.0267001520842314,-0.0309709422290325,0.999379098415375,-0.0168006084859371,-0.0345298871397972,0.998260974884033,-0.0477785654366016,-0.0266855712980032,0.999440252780914,0.0201784074306488,-0.0482826046645641,0.998728632926941,-0.0144934207201004,-0.0419193655252457,0.998867273330688,0.0225167777389288,-0.0359287671744823,0.997726321220398,0.0570209249854088,0.089948944747448,-0.99515563249588,-0.0396814122796059,0.0889683216810226,-0.994537115097046,-0.0545945279300213,0.0880232378840446,-0.993748128414154,-0.0686779990792274,0.0915769785642624,-0.994290113449097,-0.0547817051410675,0.0929689109325409,-0.994868040084839,-0.0399298816919327,0.0939721167087555,-0.995150089263916,-0.0290805846452713,0.105176106095314,0.14776037633419,0.983414947986603,
- 0.0949791669845581,0.14762456715107,0.984472453594208,0.107598096132278,0.147790357470512,0.983148396015167,0.105145752429962,0.149303629994392,0.983185052871704,0.107571892440319,0.149284392595291,0.982925474643707,0.118225283920765,0.14918939769268,0.981715500354767,-0.116729073226452,-0.0205014236271381,-0.992952227592468,-0.115180745720863,0.0080798314884305,-0.993311762809753,-0.118646897375584,-0.0586291775107384,-0.991204082965851,-0.128512844443321,0.00822990667074919,-0.991673767566681,-0.128155618906021,-0.0201541017740965,-0.99154931306839,-0.128804728388786,0.0422651581466198,-0.99076896905899,0.143417239189148,0.0270191859453917,0.989293456077576,0.137984469532967,0.0272160358726978,0.990060448646545,0.16363613307476,0.0262780226767063,0.986170709133148,0.137982711195946,0.0266937036067247,0.990074872970581,0.143415167927742,0.0267992336302996,0.989299714565277,0.114150941371918,0.0262222327291965,0.993117272853851,0.181697875261307,-0.00573044177144766,0.983337700366974,0.181605145335197,0.00871028937399387,0.983333051204681,0.181758508086205,-0.0227254219353199,0.983080625534058,0.187153354287148,0.00884881336241961,0.982290863990784,0.187695413827896,-0.00563175417482853,0.982211172580719,0.186207845807076,0.0319327972829342,0.981991350650787,-0.0368158854544163,0.999314844608307,-0.00381394242867827,-0.0278314854949713,0.998903274536133,-0.0376541428267956,-0.0278033632785082,0.998803794384003,0.0402241721749306,-0.0368158854544163,0.999314844608307,-0.00381394242867827,-0.0432349555194378,0.99823009967804,0.0408339463174343,-0.0411229953169823,0.996222257614136,0.076486349105835,0.106542356312275,-0.993003129959106,-0.0509279631078243,0.138807713985443,-0.987933218479156,-0.0687058866024017,0.139357343316078,-0.986801147460938,-0.0824802368879318,0.0752189978957176,-0.994622468948364,-0.0711927264928818,0.106542356312275,-0.993003129959106,-0.0509279631078243,0.0747899636626244,-0.996376216411591,-0.0405084453523159,0.00319897150620818,0.100520543754101,0.994929850101471,-0.0120111117139459,0.100246645510197,0.994890093803406,
- 0.00456470856443048,0.100544005632401,0.994922161102295,0.00315537955611944,0.108017101883888,0.994144022464752,0.00452928664162755,0.108004666864872,0.994140088558197,0.0219804719090462,0.107829041779041,0.993926405906677,-0.0080745005980134,0.0138526521623135,-0.999871492385864,-0.0066616078838706,0.0484247580170631,-0.998804688453674,-0.00932239461690187,-0.0168948080390692,-0.999813854694366,-0.0152267282828689,0.0484556667506695,-0.998709261417389,-0.0148244872689247,0.0140092661604285,-0.999792039394379,-0.0155306365340948,0.0755301937460899,-0.997022569179535,0.0336044952273369,-0.00251386733725667,0.99943208694458,0.0304128360003233,-0.00242521893233061,0.999534547328949,0.0564761310815811,-0.0044891401194036,0.998393952846527,0.0304128360003233,-0.00242521893233061,0.999534547328949,0.0336044952273369,-0.00251386733725667,0.99943208694458,0.00575598562136292,-0.00169541942887008,0.999982059001923,0.0619654953479767,-0.0978861749172211,0.993266701698303,0.0618696324527264,-0.0831015929579735,0.994618713855743,0.062028344720602,-0.108946472406387,0.992110431194305,0.0630344077944756,-0.083072267472744,0.99454802274704,0.0634387731552124,-0.0978600531816483,0.993176281452179,0.062598705291748,-0.0676598772406578,0.995742797851563,0.999977350234985,0.00156632368452847,-0.00655708508566022,0.999968886375427,-0.00406297668814659,-0.00676254648715258,0.999924898147583,-0.0100747710093856,-0.00698173744603992,0.999808788299561,-0.0163546614348888,-0.0107244485989213,0.999894559383392,-0.00996904727071524,-0.0105608459562063,0.999938130378723,-0.00394224375486374,-0.0104060536250472,0.00550199812278152,0.997882843017578,0.064805343747139,-0.0261878613382578,0.997450351715088,0.0663850530982018,-0.00960913859307766,0.997801899909973,0.0655667930841446,-0.026350986212492,0.997746109962463,0.0617123767733574,-0.0406868495047092,0.997241675853729,0.0620778053998947,-0.00979451555758715,0.998072981834412,0.0612747184932232,-0.998419523239136,-0.0453191250562668,-0.0332371070981026,-0.998202621936798,-0.0515877082943916,-0.0304996613413095,
- -0.998640298843384,-0.0402280949056149,-0.0331554524600506,-0.998202621936798,-0.0515877082943916,-0.0304996613413095,-0.99858695268631,-0.0454015918076038,-0.0276210531592369,-0.997948706150055,-0.0577140413224697,-0.0277032759040594,0.999991178512573,-0.0032489460427314,0.0026818064507097,0.999994695186615,-0.000962174904998392,0.00311408471316099,0.999975144863129,-0.00104423542506993,0.00698891608044505,0.99998015165329,-0.00555453542619944,0.00299862609244883,0.999991178512573,-0.0032489460427314,0.0026818064507097,0.999984800815582,-0.00544066168367863,-0.000914752192329615,0.99989265203476,-0.0146357575431466,0.000771323218941689,0.999806821346283,-0.0195958204567432,0.00153107719961554,0.999534785747528,-0.0200989805161953,0.0229416191577911,0.999952018260956,-0.0096750957891345,0.00154033058788627,0.99989265203476,-0.0146357575431466,0.000771323218941689,0.999703228473663,-0.0102348513901234,-0.0221096053719521,0.00589911732822657,-0.999375641345978,-0.0348371006548405,-0.0219886936247349,-0.999121606349945,-0.0356726236641407,-0.0441328473389149,-0.99836540222168,-0.0363166332244873,-0.0220587458461523,-0.999250173568726,-0.0318191833794117,0.00589058548212051,-0.999468743801117,-0.0320577770471573,0.0269568841904402,-0.999117195606232,-0.0322210751473904,0.00710928067564964,-0.997553706169128,-0.0695418417453766,-0.0139199420809746,-0.997467935085297,-0.0697420835494995,-0.0451794564723969,-0.996524572372437,-0.0699827969074249,-0.0132850222289562,-0.995799720287323,-0.0905899256467819,0.00797486212104559,-0.995981276035309,-0.089206650853157,0.0426425412297249,-0.995307266712189,-0.0868636146187782,-0.0417811796069145,0.987567663192749,0.151540502905846,-0.0348867103457451,0.987854301929474,0.151416569948196,-0.0260360185056925,0.988153100013733,0.151246875524521,-0.0349765606224537,0.98827463388443,0.148626610636711,-0.0418820641934872,0.987963140010834,0.148912414908409,-0.0528063140809536,0.987373292446136,0.14935015141964,0.989237248897552,-0.146315813064575,-0.0012441409053281,0.989231944084167,-0.146356165409088,0.000365027255611494,
- 0.988807857036591,-0.148976475000381,0.00806276593357325,0.989237248897552,-0.146315813064575,-0.0012441409053281,0.989602267742157,-0.143566071987152,-0.0087304562330246,0.989231944084167,-0.146356165409088,0.000365027255611494,-0.999855935573578,0.0147937089204788,-0.00832989998161793,-0.999965846538544,-0.00280424416996539,-0.0077757672406733,-0.998251497745514,0.0583114475011826,-0.00968972407281399,-0.999652922153473,-0.002503797179088,-0.0262262299656868,-0.999567985534668,0.0148345781490207,-0.0253763981163502,-0.998696148395538,-0.0425792075693607,-0.0281603969633579,0.998923003673553,-0.0315370298922062,0.03403589874506,0.998990893363953,-0.031517431139946,0.0319995395839214,0.99858433008194,-0.0316196568310261,0.042773962020874,0.999093532562256,-0.0279873833060265,0.0320775471627712,0.999024510383606,-0.0280525907874107,0.0341053195297718,0.999379575252533,-0.0276554692536592,0.0218091271817684,0.994987428188324,-0.0120589006692171,0.0992708206176758,0.995323240756989,-0.00310621177777648,0.0965507626533508,0.994487822055817,-0.0398613102734089,0.0969803035259247,0.995323240756989,-0.00310621177777648,0.0965507626533508,0.995619893074036,-0.0116576431319118,0.0927642211318016,0.99539715051651,0.0187500342726707,0.0939844474196434,-0.0239705853164196,-0.0891041085124016,-0.995733916759491,-0.0248992051929235,-0.0930929854512215,-0.995346128940582,-0.0260163880884647,-0.0978921577334404,-0.994856953620911,-0.029572956264019,-0.0920137763023376,-0.995318531990051,-0.0316672250628471,-0.10133920609951,-0.994347870349884,-0.0306556858122349,-0.0968345180153847,-0.994828283786774,0.250279128551483,0.967175602912903,-0.0439532585442066,0.250428199768066,0.967263579368591,-0.0410713851451874,0.25071769952774,0.967414557933807,-0.0353538990020752,0.250360161066055,0.967507719993591,-0.035336758941412,0.250040143728256,0.96736478805542,-0.0410538613796234,0.250532358884811,0.967572748661041,-0.032197829335928,-0.0271107628941536,0.0195106882601976,0.999442040920258,-0.0268212556838989,0.0208315141499043,0.999423146247864,
- -0.0276282876729965,0.0224030259996653,0.999367237091064,-0.0271107628941536,0.0195106882601976,0.999442040920258,-0.0262286085635424,0.0183004457503557,0.999488532543182,-0.0268212556838989,0.0208315141499043,0.999423146247864,-0.0151210837066174,-0.0430718697607517,-0.998957633972168,-0.0182989295572042,-0.0379737541079521,-0.999111235141754,-0.0265160128474236,-0.036042470484972,-0.998998403549194,-0.0201604478061199,-0.0463604032993317,-0.998721361160278,-0.0151210837066174,-0.0430718697607517,-0.998957633972168,-0.0088587561622262,-0.048683438450098,-0.998775064945221,-0.0161877050995827,-0.052974384278059,-0.998464643955231,-0.0206896308809519,-0.060045700520277,-0.997981250286102,-0.0267398953437805,-0.0507768504321575,-0.99835205078125,-0.0206896308809519,-0.060045700520277,-0.997981250286102,-0.0196005925536156,-0.0683420673012733,-0.997469484806061,-0.0129676181823015,-0.0698780342936516,-0.997471332550049,-0.226818963885307,-0.973668575286865,0.0228613037616014,-0.220753118395805,-0.972947001457214,0.0681345984339714,-0.226424917578697,-0.974019169807434,0.00430029863491654,-0.220753118395805,-0.972947001457214,0.0681345984339714,-0.21482227742672,-0.976380348205566,0.0230813939124346,-0.213545650243759,-0.972910344600677,0.0885649770498276,-0.00753352232277393,0.995158493518829,0.0979940593242645,-0.00904859323054552,0.995244145393372,0.0969907641410828,-0.0155967306345701,0.994954228401184,0.0991108119487762,-0.00904859323054552,0.995244145393372,0.0969907641410828,-0.00784807000309229,0.995385944843292,0.0956307053565979,-0.000304819113807753,0.995506525039673,0.0946932882070541,-0.00515799643471837,-0.998464226722717,-0.0551606677472591,-0.00498890643939376,-0.998520851135254,-0.0541402064263821,-0.00460225297138095,-0.998735666275024,-0.0500606596469879,-0.00553996115922928,-0.998252034187317,-0.058841235935688,-0.00514327688142657,-0.998520851135254,-0.0541263334453106,-0.00515799643471837,-0.998464226722717,-0.0551606677472591,0.0145405065268278,-0.998943686485291,-0.0435904562473297,0.0187127459794283,-0.998465299606323,-0.052124697715044,
- 0.0199433974921703,-0.999763906002045,-0.0086310338228941,0.0187127459794283,-0.998465299606323,-0.052124697715044,0.0245917029678822,-0.998698055744171,-0.0446929782629013,0.022159157320857,-0.996066033840179,-0.0857995301485062,-0.0241262260824442,-0.996595561504364,-0.0788378939032555,-0.0254375301301479,-0.995360374450684,-0.0927944332361221,-0.023768987506628,-0.995383083820343,-0.0929918363690376,-0.0221343412995338,-0.997643291950226,-0.064946822822094,-0.0241262260824442,-0.996595561504364,-0.0788378939032555,-0.024101834744215,-0.997613251209259,-0.0647075623273849,-0.992130815982819,-0.00838831998407841,0.124923907220364,-0.990982234477997,-0.00551230786368251,0.133880436420441,-0.992107748985291,-0.00289239711128175,0.125355675816536,-0.989758610725403,-0.0041953562758863,0.142690137028694,-0.990982234477997,-0.00551230786368251,0.133880436420441,-0.989726543426514,-0.000223472714424133,0.142973259091377,0.990294873714447,-0.0200458634644747,-0.137529209256172,0.990676641464233,0.0108682988211513,-0.135800465941429,0.989943087100983,0.00157584995031357,-0.1414575278759,0.989077806472778,0.033429279923439,-0.143553525209427,0.989943087100983,0.00157584995031357,-0.1414575278759,0.989268183708191,0.0116516947746277,-0.145646378397942,0.0317632183432579,-0.995756685733795,-0.0863695815205574,0.0297713354229927,-0.998309671878815,-0.0499154627323151,0.0278764814138412,-0.999486029148102,-0.0158351715654135,0.0139167513698339,-0.998625993728638,-0.0505234971642494,0.0139524172991514,-0.996136009693146,-0.0867095440626144,0.0139681594446301,-0.993043959140778,-0.116913259029388,-0.0782634392380714,0.996137857437134,0.0398040935397148,-0.0789674893021584,0.996559679508209,0.0251581445336342,-0.0796190276741982,0.996761620044708,0.0112731540575624,-0.0823865085840225,0.996279835700989,0.0252812448889017,-0.0820829719305038,0.995826423168182,0.0399024114012718,-0.0818510204553604,0.995362401008606,0.0505381934344769,0.00140844867564738,-0.209814116358757,0.977740287780762,0.0122244311496615,-0.209824055433273,0.977662801742554,
- -0.000664751743897796,-0.20980940759182,0.97774213552475,0.00138057104777545,-0.212145060300827,0.977237224578857,-0.000696287548635155,-0.212098225951195,0.977248191833496,-0.0120294634252787,-0.21182644367218,0.977233290672302,0.00283010606653988,0.0912267789244652,-0.995826184749603,0.000598301587160677,0.0598703511059284,-0.99820601940155,0.00558856409043074,0.129911735653877,-0.991509854793549,0.0138825671747327,0.0595216155052185,-0.99813050031662,0.013973206281662,0.0907085910439491,-0.995779514312744,0.0137661946937442,0.0248755495995283,-0.999595820903778,-0.0338178128004074,-0.093677930533886,0.995028018951416,-0.0289481338113546,-0.093945749104023,0.995156347751617,-0.0560326687991619,-0.0924273431301117,0.994141638278961,-0.0289182811975479,-0.092659704387188,0.99527782201767,-0.0337890945374966,-0.0926689654588699,0.995123565196991,-0.00291056302376091,-0.0925731435418129,0.995701670646667,-0.0662958174943924,-0.061365831643343,0.995911300182343,-0.0664317831397057,-0.0773297101259232,0.994789958000183,-0.0661307126283646,-0.0441867038607597,0.996832132339478,-0.0718716904520988,-0.0773596540093422,0.994409441947937,-0.0722474232316017,-0.061344750225544,0.995498418807983,-0.0712893456220627,-0.100724652409554,0.992357075214386,0.00583362439647317,-0.00412996066734195,0.999974429607391,0.00321233621798456,-0.00855131912976503,0.999958276748657,0.00587499234825373,-0.0126585504040122,0.999902665615082,0.00321233621798456,-0.00855131912976503,0.999958276748657,0.000574888428673148,-0.00413261726498604,0.999991297721863,0.000578898703679442,-0.000793421000707895,0.999999523162842,-0.0354625321924686,0.995773136615753,-0.0847254246473312,-0.0319203622639179,0.99893993139267,-0.0331690236926079,-0.0329893939197063,0.997485935688019,-0.0627172142267227,-0.0329893939197063,0.997485935688019,-0.0627172142267227,-0.0319203622639179,0.99893993139267,-0.0331690236926079,-0.0283974092453718,0.99950635433197,-0.0134401107206941,0.0260501001030207,-0.0439064353704453,-0.998695969581604,0.0246443450450897,-0.0407272018492222,-0.998866379261017,
- 0.0259750057011843,-0.049033634364605,-0.99845939874649,0.0260501001030207,-0.0439064353704453,-0.998695969581604,0.0259750057011843,-0.049033634364605,-0.99845939874649,0.0274058915674686,-0.0534003637731075,-0.998197019100189,0.0151831954717636,0.0216721408069134,0.999649882316589,0.0780242830514908,0.0170530285686255,0.996805608272552,0.0242922138422728,0.0240986086428165,0.999414384365082,0.0238936562091112,0.0181283298879862,0.99955016374588,-0.0377698093652725,0.0178009122610092,0.999127984046936,0.0151831954717636,0.0216721408069134,0.999649882316589,0.0219879858195782,-0.074026457965374,0.997013926506042,0.0221433565020561,-0.0740276649594307,0.997010409832001,0.0199143514037132,-0.0762274563312531,0.996891617774963,0.0219879858195782,-0.074026457965374,0.997013926506042,0.0236261636018753,-0.0718150958418846,0.997138142585754,0.0221433565020561,-0.0740276649594307,0.997010409832001,0.0037850474473089,-0.999888062477112,0.0144760627299547,0.00195717043243349,-0.996993839740753,-0.0774566605687141,0.000519612978678197,-0.999804615974426,-0.019760750234127,0.00175146968103945,-0.993489980697632,-0.11390633136034,0.000519612978678197,-0.999804615974426,-0.019760750234127,0.000271271826932207,-0.996992707252502,-0.0774960517883301,-0.00309656583704054,-0.031406357884407,0.999501943588257,-0.00138147280085832,-0.0186487082391977,0.999825119972229,-0.0043604806996882,-0.0616473481059074,0.998088538646698,-0.00553277367725968,-0.0774889290332794,0.996977925300598,-0.00309656583704054,-0.031406357884407,0.999501943588257,-0.0043604806996882,-0.0616473481059074,0.998088538646698,0.0199611261487007,0.999660313129425,-0.0167598333209753,0.0201468672603369,0.999391853809357,-0.0284616593271494,0.0196907240897417,0.999487221240997,-0.0252511296421289,0.0196907240897417,0.999487221240997,-0.0252511296421289,0.0194595064967871,0.999717772006989,-0.013633593916893,0.0199611261487007,0.999660313129425,-0.0167598333209753,0.0228501725941896,-0.0638675466179848,-0.997696816921234,0.02174286916852,-0.0627206340432167,-0.997794270515442,
- 0.0227179005742073,-0.0665822848677635,-0.997522294521332,0.0228501725941896,-0.0638675466179848,-0.997696816921234,0.0227179005742073,-0.0665822848677635,-0.997522294521332,0.0238118041306734,-0.0681289210915565,-0.997392296791077,0.0139294657856226,0.0101570943370461,0.99985146522522,0.0236456450074911,0.0127234570682049,0.999639511108398,0.0107003971934319,0.0103581342846155,0.999889135360718,0.0139294657856226,0.0101570943370461,0.99985146522522,0.0107003971934319,0.0103581342846155,0.999889135360718,0.00225781905464828,0.00798702333122492,0.99996554851532,0.0161429047584534,-0.00236723851412535,0.999866962432861,0.0183262079954147,-0.00247271778061986,0.999829113483429,0.0292845387011766,0.0014482419937849,0.99957013130188,0.0161429047584534,-0.00236723851412535,0.999866962432861,0.00765709206461906,-0.00667448993772268,0.999948501586914,0.0183262079954147,-0.00247271778061986,0.999829113483429,-0.0457221865653992,-0.998937726020813,0.00573934800922871,-0.0459837689995766,-0.998426556587219,0.0320933982729912,-0.0529694184660912,-0.998591661453247,-0.00298564997501671,-0.0459837689995766,-0.998426556587219,0.0320933982729912,-0.0457221865653992,-0.998937726020813,0.00573934800922871,-0.0389878787100315,-0.998454809188843,0.0395984500646591,-0.00486588943749666,-0.027926791459322,-0.999598205089569,-0.00393328070640564,-0.00678586633875966,-0.999969303607941,-0.00633024144917727,-0.0611964091658592,-0.998105704784393,-0.0181132648140192,-0.00670275697484612,-0.999813497066498,-0.017864303663373,-0.0276553872972727,-0.999457895755768,-0.0183901656419039,0.017434099689126,-0.999678909778595,0.0718166306614876,0.0141758881509304,-0.99731707572937,0.0718166381120682,0.0141758862882853,-0.997317135334015,0.0718166306614876,0.0141758862882853,-0.99731707572937,0.0540992580354214,-0.0489636026322842,-0.997334361076355,0.0542569532990456,-0.0428014434874058,-0.997609317302704,0.053980890661478,-0.0535358749330044,-0.997105836868286,0.0747823640704155,-0.0728876814246178,-0.994532585144043,0.0750643163919449,-0.0493689849972725,-0.995955944061279,
- 0.0750134214758873,-0.0538857020437717,-0.995725572109222,0.0580239072442055,-0.0490411072969437,-0.99711000919342,0.0577966868877411,-0.0727832913398743,-0.99567174911499,0.0577793419361115,-0.074463315308094,-0.995548486709595
- }
- BinormalsW: *1312 {
- 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,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *3936 {
- a: 1,7.75103004002631e-009,-0,0.999999940395355,0.000383848353521898,-0,0.999999821186066,0.000561547290999442,0,0.999999403953552,0.00102284690365195,0,1,-2.86280577022069e-009,-0,0.99999988079071,0.000267567171249539,0.000322186999255791,0.999999821186066,0.000561547290999442,0,0.999999940395355,0.000383848353521898,-0,1,3.62840182788204e-005,2.35435280160345e-008,0.999999940395355,0.000137352879391983,0.000383600679924712,0.99999988079071,0.000267567171249539,0.000322186999255791,1,-2.86280577022069e-009,-0,0.999999403953552,0.00102197751402855,0,0.999999403953552,-0.00106921349652112,-0.000126653118059039,0.999988853931427,-0.00470165815204382,-0.000450786727014929,0.999999761581421,-0.000751309504266828,0,0.999999582767487,0.00013989707804285,0.000968298641964793,0.999994158744812,-0.00335078267380595,0.000527877069544047,0.999999403953552,-0.00106921349652112,-0.000126653118059039,1,0.000100350145658012,0,0.999996602535248,0.00255655217915773,0,1,0.000100350145658012,0,0.999999403953552,-0.00106921349652112,-0.000126653118059039,0.999999403953552,0.00102197751402855,0,0.99999988079071,0.000267567171249539,0.000322186999255791,0.999999582767487,0.00013989707804285,0.000968298641964793,1,0.000100350145658012,0,0.999999821186066,0.000561547290999442,0,0.999999403953552,0.00102284690365195,0,0.999999821186066,0.000561547290999442,0,1,0.000100350145658012,0,0.999996602535248,0.00255655217915773,0,0.999969840049744,-0.00716144032776356,0.00301052117720246,0.99999076128006,-0.00371811795048416,0.00212922017090023,0.999959409236908,-0.00573344621807337,0.00693642906844616,0.999970734119415,-0.00320865865796804,0.00694198394194245,0.999963939189911,-0.00489560980349779,0.00693827820941806,0.999999761581421,-0.000751309504266828,0,0.999988853931427,-0.00470165815204382,-0.000450786727014929,0.999999582767487,0.000809375022072345,-0.000290962983854115,0.99999076128006,-0.00371811795048416,0.00212922017090023,0.999969840049744,-0.00716144032776356,0.00301052117720246,0.999994516372681,-0.00321466545574367,-0.000793285144027323,
- 0.999961256980896,-0.00854595471173525,-0.00212945300154388,0.999999582767487,0.000809375022072345,-0.000290962983854115,0.999988853931427,-0.00470165815204382,-0.000450786727014929,0.999994158744812,-0.00335078267380595,0.000527877069544047,0.999999403953552,-0.00100199924781919,0.000457615708000958,0.999994516372681,-0.00321466545574367,-0.000793285144027323,0.999988853931427,-0.00470165815204382,-0.000450786727014929,0.999999403953552,-0.00106921349652112,-0.000126653118059039,0.999988317489624,-0.00207991898059845,0.00435602152720094,0.999999403953552,-0.00100199924781919,0.000457615708000958,0.999994158744812,-0.00335078267380595,0.000527877069544047,0.999996900558472,-6.90565502736717e-006,0.00249139661900699,0.999940752983093,0.0101763689890504,0.00389221962541342,0.999988317489624,-0.00207991898059845,0.00435602152720094,0.999994158744812,-0.00335078267380595,0.000527877069544047,0.999999582767487,0.00013989707804285,0.000968298641964793,0.999999940395355,0.000137352879391983,0.000383600679924712,0.999999344348907,0.000389609573176131,0.0010508046252653,0.999998569488525,0.000632839743047953,0.00160233816131949,0.999996900558472,-6.90565502736717e-006,0.00249139661900699,0.999999582767487,0.00013989707804285,0.000968298641964793,0.99999988079071,0.000267567171249539,0.000322186999255791,0.999999940395355,0.000137352879391983,0.000383600679924712,1,-3.02326589007862e-006,-0.000109042652184144,0.999999344348907,0.000389609573176131,0.0010508046252653,1,1.03776303106429e-008,4.54658817261588e-008,1,4.43376338807866e-005,4.54658781734452e-008,1,-3.02326589007862e-006,-0.000109042652184144,0.999999940395355,0.000137352879391983,0.000383600679924712,1,3.62840182788204e-005,2.35435280160345e-008,-0.999999403953552,-0.0010212775086984,0,-0.999999821186066,-0.000612742733210325,0,-1,1.83092652150663e-008,0,-0.999999761581421,-0.000766545010264963,0,-0.999990820884705,0.000151831583934836,-0.00428877864032984,-0.999997556209564,1.11693429971638e-006,-0.00222407397814095,-0.999999582767487,-0.000277065322734416,-0.000873877026606351,
- -0.999995648860931,0.000194355889107101,-0.00297285942360759,-0.99999076128006,0.000376738782506436,-0.00428855698555708,-0.999997556209564,1.11693429971638e-006,-0.00222407397814095,-1,-8.27864776731246e-010,0,-1,-4.99871639476623e-005,0,-0.999999582767487,-0.000277065322734416,-0.000873877026606351,-1,-8.27864776731246e-010,0,-1,1.83092652150663e-008,0,-0.999999821186066,-0.000612742733210325,0,-1,-4.99871639476623e-005,0,-0.99987655878067,-0.0156644582748413,0.00123484688811004,-0.999996542930603,0.00266303378157318,0,-0.999999284744263,0.00126641092356294,0,-0.999883055686951,-0.0152957094833255,0.000258273852523416,-0.99987655878067,-0.0156644582748413,0.00123484688811004,-0.999883055686951,-0.0152957094833255,0.000258273852523416,-0.999333381652832,-0.0348884239792824,0.0107599264010787,-0.999724149703979,-0.0229976680129766,0.00476530473679304,-0.999996542930603,0.00266303378157318,0,-0.99987655878067,-0.0156644582748413,0.00123484688811004,-0.999996066093445,-0.00276732863858342,-0.000588619732297957,-0.999999523162842,0.000895032717380673,0,-0.999996066093445,-0.00276732863858342,-0.000588619732297957,-0.99987655878067,-0.0156644582748413,0.00123484688811004,-0.999724149703979,-0.0229976680129766,0.00476530473679304,-0.999902248382568,0.0139131732285023,-0.00143054442014545,-0.999999582767487,-0.000348458968801424,-0.000845895381644368,-1,0,0,-0.999999523162842,0.000895032717380673,0,-0.999996066093445,-0.00276732863858342,-0.000588619732297957,-0.999999582767487,-0.000348458968801424,-0.000845895381644368,-0.999996066093445,-0.00276732863858342,-0.000588619732297957,-0.999902248382568,0.0139131732285023,-0.00143054442014545,-0.999983549118042,-0.00420623691752553,-0.00391668453812599,-0.999909520149231,-0.0134468339383602,-0.000521018460858613,-0.999909520149231,-0.0134468339383602,-0.000521018460858613,-0.999983549118042,-0.00420623691752553,-0.00391668453812599,-0.999838471412659,-0.0179652273654938,0.000475735549116507,-1,0,0,-0.999999582767487,-0.000348458968801424,-0.000845895381644368,-0.999999940395355,-0.000355188036337495,0,
- -1,0,0,-0.999999940395355,-0.000355188036337495,0,-0.999999582767487,-0.000348458968801424,-0.000845895381644368,-0.999909520149231,-0.0134468339383602,-0.000521018460858613,-0.999992847442627,-0.00378068746067584,0.000244428752921522,-0.999999582767487,-0.000277065322734416,-0.000873877026606351,-0.999992847442627,-0.00378068746067584,0.000244428752921522,-0.999909520149231,-0.0134468339383602,-0.000521018460858613,-0.999838471412659,-0.0179652273654938,0.000475735549116507,-0.999999403953552,-0.000991967157460749,0.000474173750262707,-0.99999737739563,-0.00225930358283222,0.000474557629786432,-0.999998688697815,-0.00155116512905806,0.000474343221867457,-0.999995648860931,0.000194355889107101,-0.00297285942360759,-0.999999821186066,-0.000612742733210325,0,-0.999999403953552,-0.0010212775086984,0,-1,0,0,-0.999999940395355,-0.000355188036337495,0,-0.999999821186066,-0.000612742733210325,0,-0.999999940395355,-0.000355188036337495,0,-0.999992847442627,-0.00378068746067584,0.000244428752921522,-1,-4.99871639476623e-005,0,-1,-4.99871639476623e-005,0,-0.999992847442627,-0.00378068746067584,0.000244428752921522,-0.999999582767487,-0.000277065322734416,-0.000873877026606351,0,-0.000274709396762773,0.999999940395355,0,-0.000308600720018148,0.999999940395355,0,0.000138651928864419,1,0,-0.000196916051208973,1,0,0.000205742951948196,1,0,0.000205621239729226,1,0,-3.65154562587122e-007,1,0,0.000152875785715878,1,0,0.000205621239729226,1,0,0.000205742951948196,1,0,-0,1,0,0.000103704041976016,1,0,8.01327114459127e-005,1,0,-0,1,0,0.000103704041976016,1,0,-0,1,0,-0,1,0,8.01327114459127e-005,1,0,-1.70820185303455e-005,1,0,0.000160241354024038,1,0,-0.000308600720018148,0.999999940395355,0,-0.000274709396762773,0.999999940395355,0,0.000160241354024038,1,0,-1.70820185303455e-005,1,-1,-3.57627860658738e-009,-3.78955995534977e-019,-1,-7.15255721317476e-009,2.06795153138257e-025,-1,-7.15255721317476e-009,-4.54747256680519e-018,-1,-3.57627860658738e-009,1.13686834849645e-018,-1,0,0,-1,-3.57627860658738e-009,-3.78955995534977e-019,-1,-3.57627860658738e-009,1.13686834849645e-018,
- -1,0,0,-1,8.94069651646845e-010,-6.39488471878647e-019,-1,0,0,-1,0,0,-1,8.94069651646845e-010,2.58493941422821e-026,-1,1.78813930329369e-009,2.55795388751459e-018,-1,1.78813930329369e-009,0,-1,8.94069651646845e-010,-6.39488471878647e-019,-1,8.94069651646845e-010,2.58493941422821e-026,0.00130393367726356,-0.00122342968825251,-0.999998390674591,0.00130648585036397,0.00208095065318048,-0.999997019767761,0.00130786036606878,0.00386789394542575,-0.999991655349731,0.00130583788268268,0.00124030455481261,-0.999998450279236,0.00130498048383743,0.000130136453662999,-0.999999165534973,0.00130616198293865,0.00166062673088163,-0.999997854232788,-0.999999940395355,-0,0.000424779515014961,-0.999999761581421,-0,0.0008219979936257,-0.999999940395355,0,0.000282669789157808,-1,0,-1.54966778609378e-006,-1,0,1.3005691471335e-005,0.363814324140549,0.148062348365784,-0.919628620147705,-0.196352317929268,0.0283819325268269,-0.9801225066185,-0.128853514790535,0.0571513548493385,-0.990015387535095,-0.196352317929268,0.0283819325268269,-0.9801225066185,0.363814324140549,0.148062348365784,-0.919628620147705,0.25019446015358,0.161120295524597,-0.954695284366608,0.521624624729156,0.264232188463211,-0.811226904392242,0.25019446015358,0.161120295524597,-0.954695284366608,0.363814324140549,0.148062348365784,-0.919628620147705,0.25019446015358,0.161120295524597,-0.954695284366608,-0.135714307427406,-0.0303018093109131,-0.990284562110901,-0.196352317929268,0.0283819325268269,-0.9801225066185,0.451434463262558,0.344258844852448,-0.823221027851105,0.25019446015358,0.161120295524597,-0.954695284366608,0.521624624729156,0.264232188463211,-0.811226904392242,0.21879905462265,0.116562731564045,-0.968782722949982,-0.135714307427406,-0.0303018093109131,-0.990284562110901,0.25019446015358,0.161120295524597,-0.954695284366608,0.451434463262558,0.344258844852448,-0.823221027851105,0.21879905462265,0.116562731564045,-0.968782722949982,0.25019446015358,0.161120295524597,-0.954695284366608,0.0580697804689407,0.0601899884641171,-0.996496379375458,-0.135714307427406,-0.0303018093109131,-0.990284562110901,
- 0.21879905462265,0.116562731564045,-0.968782722949982,0.0580697804689407,0.0601899884641171,-0.996496379375458,-0.393051624298096,-0.161875754594803,-0.905155658721924,-0.135714307427406,-0.0303018093109131,-0.990284562110901,0.451434463262558,0.344258844852448,-0.823221027851105,0.355015605688095,0.280134260654449,-0.891901731491089,0.21879905462265,0.116562731564045,-0.968782722949982,0.355015605688095,0.280134260654449,-0.891901731491089,0.0580697804689407,0.0601899884641171,-0.996496379375458,0.21879905462265,0.116562731564045,-0.968782722949982,0.376706421375275,0.547198235988617,-0.747440040111542,0.355015605688095,0.280134260654449,-0.891901731491089,0.451434463262558,0.344258844852448,-0.823221027851105,0.512378334999084,0.461123198270798,-0.724454164505005,0.355015605688095,0.280134260654449,-0.891901731491089,0.376706421375275,0.547198235988617,-0.747440040111542,0.035567719489336,0.0886239036917686,-0.995429933071136,0.355015605688095,0.280134260654449,-0.891901731491089,0.512378334999084,0.461123198270798,-0.724454164505005,0.303297996520996,0.156003445386887,-0.940038919448853,0.355015605688095,0.280134260654449,-0.891901731491089,0.035567719489336,0.0886239036917686,-0.995429933071136,-0.301325082778931,-0.164982438087463,-0.939140021800995,-0.393051624298096,-0.161875754594803,-0.905155658721924,0.0580697804689407,0.0601899884641171,-0.996496379375458,-0.393051624298096,-0.161875754594803,-0.905155658721924,-0.301325082778931,-0.164982438087463,-0.939140021800995,-0.444479286670685,-0.303553074598312,-0.842789232730865,0.0580697804689407,0.0601899884641171,-0.996496379375458,0.355015605688095,0.280134260654449,-0.891901731491089,0.361524045467377,0.136695131659508,-0.922287821769714,0.355015605688095,0.280134260654449,-0.891901731491089,0.303297996520996,0.156003445386887,-0.940038919448853,0.361524045467377,0.136695131659508,-0.922287821769714,0.175565108656883,0.0360709987580776,-0.983806788921356,-0.301325082778931,-0.164982438087463,-0.939140021800995,0.0580697804689407,0.0601899884641171,-0.996496379375458,
- 0.0580697804689407,0.0601899884641171,-0.996496379375458,0.361524045467377,0.136695131659508,-0.922287821769714,0.175565108656883,0.0360709987580776,-0.983806788921356,-0.301325082778931,-0.164982438087463,-0.939140021800995,-0.0318817347288132,-0.0720575377345085,-0.996890842914581,-0.444479286670685,-0.303553074598312,-0.842789232730865,0.175565108656883,0.0360709987580776,-0.983806788921356,-0.0318817347288132,-0.0720575377345085,-0.996890842914581,-0.301325082778931,-0.164982438087463,-0.939140021800995,-0.444479286670685,-0.303553074598312,-0.842789232730865,-0.0318817347288132,-0.0720575377345085,-0.996890842914581,-0.186657831072807,-0.22433203458786,-0.956469535827637,-0.0318817347288132,-0.0720575377345085,-0.996890842914581,-0.14040195941925,-0.106269344687462,-0.984374940395355,-0.186657831072807,-0.22433203458786,-0.956469535827637,0.462040781974792,0.183539137244225,-0.867658734321594,0.175565108656883,0.0360709987580776,-0.983806788921356,0.361524045467377,0.136695131659508,-0.922287821769714,0.361524045467377,0.136695131659508,-0.922287821769714,0.303297996520996,0.156003445386887,-0.940038919448853,0.462040781974792,0.183539137244225,-0.867658734321594,0.462040781974792,0.183539137244225,-0.867658734321594,0.157635897397995,0.00741462968289852,-0.987469434738159,0.175565108656883,0.0360709987580776,-0.983806788921356,0.303297996520996,0.156003445386887,-0.940038919448853,0.157635897397995,0.00741462968289852,-0.987469434738159,0.462040781974792,0.183539137244225,-0.867658734321594,0.175565108656883,0.0360709987580776,-0.983806788921356,0.157635897397995,0.00741462968289852,-0.987469434738159,-0.0318817347288132,-0.0720575377345085,-0.996890842914581,-0.0562218688428402,-0.122564680874348,-0.990866661071777,0.157635897397995,0.00741462968289852,-0.987469434738159,0.303297996520996,0.156003445386887,-0.940038919448853,-0.0562218688428402,-0.122564680874348,-0.990866661071777,-0.0318817347288132,-0.0720575377345085,-0.996890842914581,0.157635897397995,0.00741462968289852,-0.987469434738159,0.1610416918993,0.0690953955054283,-0.984525918960571,
- -0.0318817347288132,-0.0720575377345085,-0.996890842914581,-0.0562218688428402,-0.122564680874348,-0.990866661071777,-0.0323574431240559,0.006113660056144,-0.999457657337189,-0.14040195941925,-0.106269344687462,-0.984374940395355,-0.0318817347288132,-0.0720575377345085,-0.996890842914581,-0.0318817347288132,-0.0720575377345085,-0.996890842914581,0.1610416918993,0.0690953955054283,-0.984525918960571,-0.0323574431240559,0.006113660056144,-0.999457657337189,-0.0323574431240559,0.006113660056144,-0.999457657337189,-0.347302675247192,-0.178436532616615,-0.920620024204254,-0.14040195941925,-0.106269344687462,-0.984374940395355,0.1610416918993,0.0690953955054283,-0.984525918960571,0.340647339820862,0.136885270476341,-0.930172979831696,-0.0323574431240559,0.006113660056144,-0.999457657337189,-0.11525622010231,-0.0919473767280579,-0.989071190357208,-0.347302675247192,-0.178436532616615,-0.920620024204254,-0.0323574431240559,0.006113660056144,-0.999457657337189,0.340647339820862,0.136885270476341,-0.930172979831696,-0.11525622010231,-0.0919473767280579,-0.989071190357208,-0.0323574431240559,0.006113660056144,-0.999457657337189,-0.0111992722377181,-0.0317725874483585,-0.999432444572449,-0.347302675247192,-0.178436532616615,-0.920620024204254,-0.11525622010231,-0.0919473767280579,-0.989071190357208,0.340647339820862,0.136885270476341,-0.930172979831696,-0.0111992722377181,-0.0317725874483585,-0.999432444572449,-0.11525622010231,-0.0919473767280579,-0.989071190357208,-0.0111992722377181,-0.0317725874483585,-0.999432444572449,-0.304520130157471,-0.166204214096069,-0.937893211841583,-0.347302675247192,-0.178436532616615,-0.920620024204254,0.1610416918993,0.0690953955054283,-0.984525918960571,0.51518303155899,0.28313022851944,-0.808964610099792,0.340647339820862,0.136885270476341,-0.930172979831696,0.326460659503937,0.281775325536728,-0.902233958244324,0.51518303155899,0.28313022851944,-0.808964610099792,0.1610416918993,0.0690953955054283,-0.984525918960571,0.529041290283203,0.296248108148575,-0.79520583152771,0.340647339820862,0.136885270476341,-0.930172979831696,
- 0.51518303155899,0.28313022851944,-0.808964610099792,0.326460659503937,0.281775325536728,-0.902233958244324,0.529041290283203,0.296248108148575,-0.79520583152771,0.51518303155899,0.28313022851944,-0.808964610099792,0.340647339820862,0.136885270476341,-0.930172979831696,0.529041290283203,0.296248108148575,-0.79520583152771,-0.0111992722377181,-0.0317725874483585,-0.999432444572449,0.5003741979599,0.340267568826675,-0.796142995357513,0.529041290283203,0.296248108148575,-0.79520583152771,0.326460659503937,0.281775325536728,-0.902233958244324,0.601356148719788,0.426286965608597,-0.675758898258209,0.529041290283203,0.296248108148575,-0.79520583152771,0.5003741979599,0.340267568826675,-0.796142995357513,0.529041290283203,0.296248108148575,-0.79520583152771,0.601356148719788,0.426286965608597,-0.675758898258209,0.432348012924194,0.28295224905014,-0.856161952018738,-0.0111992722377181,-0.0317725874483585,-0.999432444572449,0.529041290283203,0.296248108148575,-0.79520583152771,0.432348012924194,0.28295224905014,-0.856161952018738,0.456151276826859,0.384556472301483,-0.802522480487823,0.432348012924194,0.28295224905014,-0.856161952018738,0.601356148719788,0.426286965608597,-0.675758898258209,-0.0111992722377181,-0.0317725874483585,-0.999432444572449,-0.0806766301393509,-0.0824021771550179,-0.993328392505646,-0.304520130157471,-0.166204214096069,-0.937893211841583,0.432348012924194,0.28295224905014,-0.856161952018738,-0.0806766301393509,-0.0824021771550179,-0.993328392505646,-0.0111992722377181,-0.0317725874483585,-0.999432444572449,-0.0806766301393509,-0.0824021771550179,-0.993328392505646,-0.341526657342911,-0.400258868932724,-0.850383639335632,-0.304520130157471,-0.166204214096069,-0.937893211841583,0.432348012924194,0.28295224905014,-0.856161952018738,0.456151276826859,0.384556472301483,-0.802522480487823,0.227417409420013,0.181365206837654,-0.956759035587311,0.432348012924194,0.28295224905014,-0.856161952018738,0.227417409420013,0.181365206837654,-0.956759035587311,-0.0806766301393509,-0.0824021771550179,-0.993328392505646,
- 0.310288846492767,0.278920412063599,-0.908803641796112,0.227417409420013,0.181365206837654,-0.956759035587311,0.456151276826859,0.384556472301483,-0.802522480487823,-0.0929038003087044,-0.0548073910176754,-0.994165480136871,-0.341526657342911,-0.400258868932724,-0.850383639335632,-0.0806766301393509,-0.0824021771550179,-0.993328392505646,-0.0929038003087044,-0.0548073910176754,-0.994165480136871,-0.200651571154594,-0.198145419359207,-0.959415137767792,-0.341526657342911,-0.400258868932724,-0.850383639335632,-0.0929038003087044,-0.0548073910176754,-0.994165480136871,0.105558656156063,0.23205478489399,-0.966958165168762,-0.200651571154594,-0.198145419359207,-0.959415137767792,0.188614368438721,0.201005905866623,-0.961260199546814,-0.0806766301393509,-0.0824021771550179,-0.993328392505646,0.227417409420013,0.181365206837654,-0.956759035587311,-0.0806766301393509,-0.0824021771550179,-0.993328392505646,0.188614368438721,0.201005905866623,-0.961260199546814,-0.0929038003087044,-0.0548073910176754,-0.994165480136871,0.227417409420013,0.181365206837654,-0.956759035587311,0.310288846492767,0.278920412063599,-0.908803641796112,0.188614368438721,0.201005905866623,-0.961260199546814,0.105558656156063,0.23205478489399,-0.966958165168762,-0.0929038003087044,-0.0548073910176754,-0.994165480136871,0.188614368438721,0.201005905866623,-0.961260199546814,0.310288846492767,0.278920412063599,-0.908803641796112,0.211709424853325,0.160245507955551,-0.964106023311615,0.188614368438721,0.201005905866623,-0.961260199546814,0.188614368438721,0.201005905866623,-0.961260199546814,0.0963079705834389,0.0727043375372887,-0.992692708969116,0.105558656156063,0.23205478489399,-0.966958165168762,0.211709424853325,0.160245507955551,-0.964106023311615,0.0963079705834389,0.0727043375372887,-0.992692708969116,0.188614368438721,0.201005905866623,-0.961260199546814,0.204395890235901,0.977997779846191,-0.0417450517416,0.204395890235901,0.977997779846191,-0.0417450554668903,0.204395905137062,0.977997779846191,-0.0417450480163097,0.0677024722099304,-0.997658252716064,0.00971713941544294,
- 0.0677024647593498,-0.997658252716064,0.00971714220941067,0.0677024722099304,-0.997658252716064,0.00971713941544294,-0.999975323677063,-0.00466855196282268,0.005246268119663,-0.999984443187714,-0.00189740711357445,0.00524705834686756,-0.99998277425766,0.00250088097527623,0.00531100761145353,-0.999951303005219,0.0024624562356621,0.00956636853516102,-0.99995219707489,-0.00189855298958719,0.00959266163408756,-0.999938368797302,0.00558652263134718,0.00959447212517262,-0.998670876026154,-0.0284581407904625,0.0429722219705582,-0.998366117477417,-0.0284734778106213,0.0495413914322853,-0.998494982719421,-0.0284870974719524,0.0468647219240665,-0.998668611049652,-0.0285381861031055,0.0429719313979149,-0.998494684696198,-0.0285000763833523,0.0468647740781307,-0.998774647712708,-0.028531938791275,0.040436677634716,-0.999601602554321,0.0125574776902795,-0.0252778399735689,-0.999611973762512,0.0141376424580812,-0.0240011755377054,-0.999636173248291,0.00976862385869026,-0.025145597755909,-0.999601602554321,0.0125574776902795,-0.0252778399735689,-0.999636173248291,0.00976862385869026,-0.025145597755909,-0.999623477458954,0.00749452551826835,-0.0263960734009743,0.0098427003249526,0.99992972612381,0.00660879863426089,0.0105609567835927,0.999937474727631,0.00370578654110432,0.0196354053914547,0.999786138534546,0.0064950562082231,0.0105609567835927,0.999937474727631,0.00370578654110432,0.00977586209774017,0.999951899051666,0.000819512468297035,0.000556042185053229,0.999999523162842,0.000926260952837765,-0.007703788112849,-0.999855041503906,-0.0151840597391129,-0.00806600507348776,-0.99975049495697,-0.0208305679261684,-0.00027705094544217,-0.999780297279358,-0.0209602490067482,-0.00787824112921953,-0.999923586845398,-0.00952819082885981,-0.007703788112849,-0.999855041503906,-0.0151840597391129,-0.0154299149289727,-0.99983686208725,-0.00940157100558281,-0.999592363834381,-0.00423232512548566,-0.0282342489808798,-0.999987065792084,-0.00406176364049315,-0.00306230154819787,-0.999823689460754,-0.00308814831078053,-0.018521836027503,-0.999979734420776,-0.00232929759658873,0.0059406696818769,
- -0.999823689460754,-0.00308814831078053,-0.018521836027503,-0.999992430210114,-0.00239093042910099,-0.00307372468523681,-0.999895036220551,-0.00171021395362914,-0.0143885323777795,-0.999897837638855,0.000815214589238167,-0.0142780719324946,-0.999888181686401,0.00514230085536838,-0.0140490224584937,-0.999944686889648,0.000615891069173813,-0.010510291904211,-0.999941408634186,-0.00189490767661482,-0.0106593649834394,-0.999918103218079,-0.00671122828498483,-0.0108976336196065,0.0116995051503181,-0.999510884284973,-0.0290019772946835,0.00942506827414036,-0.999534547328949,-0.0290148425847292,-4.24880017817486e-005,-0.999580204486847,-0.028972776606679,0.0203248523175716,-0.999350249767303,-0.0297662559896708,0.00942182913422585,-0.999513924121857,-0.0297210738062859,0.0116975214332342,-0.999489009380341,-0.0297473724931479,0.0177132934331894,0.998763561248779,0.0464498698711395,0.00568554271012545,0.998925387859344,0.0459991730749607,0.0737302601337433,0.996249318122864,0.0452916473150253,0.0178846009075642,0.998286843299866,0.0557109750807285,-0.046518512070179,0.997298896312714,0.0568417124450207,0.00577505631372333,0.998388290405273,0.0564572885632515,-0.999902486801147,-0.0139004904776812,-0.00141595373861492,-0.999805688858032,-0.0145559282973409,-0.01329396199435,-0.999782860279083,-0.0160293076187372,-0.0133159877732396,-0.999834358692169,-0.0149113554507494,0.0104382913559675,-0.999902486801147,-0.0139004904776812,-0.00141595373861492,-0.999866127967834,-0.0125798108056188,0.0104731395840645,-0.999970734119415,-0.00749714393168688,0.00158215663395822,-0.999994516372681,-0.000345438369549811,0.00330032035708427,-0.999960541725159,-0.00758361630141735,0.00462398445233703,-0.999994516372681,-0.000345438369549811,0.00330032035708427,-0.999954998493195,0.00675479415804148,0.00667810812592506,-0.99996429681778,0.00680155819281936,0.00503278244286776,-0.999903738498688,0.0138640683144331,-0.000695772701874375,-0.999966144561768,0.00722369831055403,0.00394206261262298,-0.999883592128754,0.0140400193631649,-0.00597776006907225,
- -0.999966144561768,0.00722369831055403,0.00394206261262298,-0.999998927116394,0.00094028195599094,-0.00112687377259135,-0.999955475330353,0.000588510767556727,0.00941988173872232,-0.999960780143738,-0.00582744693383574,0.00667210575193167,-0.999975383281708,-0.00219666189514101,0.00667835446074605,-0.9999760389328,0.00161190051585436,0.00673188641667366,-0.999933063983917,0.00157394295092672,0.0114613557234406,-0.999931693077087,-0.00220477138645947,0.0114807095378637,-0.999918103218079,0.0056286402978003,0.0114937424659729,-0.998310565948486,-0.0284819528460503,0.0506454482674599,-0.998043656349182,-0.0283816587179899,0.0557092763483524,-0.998156905174255,-0.0283987149596214,0.0536307767033577,-0.998310565948486,-0.0284819528460503,0.0506454482674599,-0.998153030872345,-0.028534147888422,0.0536316744983196,-0.998404741287231,-0.0285741370171309,0.048698540776968,-0.999462962150574,0.0133376028388739,-0.0299343261867762,-0.999485075473785,0.0143292937427759,-0.0287135634571314,-0.999479174613953,0.0121787032112479,-0.0298846047371626,-0.999462962150574,0.0133376028388739,-0.0299343261867762,-0.999479174613953,0.0121787032112479,-0.0298846047371626,-0.999458372592926,0.0107906460762024,-0.0310891959816217,0.0078761437907815,0.99993908405304,0.00773553550243378,0.0103396410122514,0.999936938285828,0.0043839430436492,0.017367135733366,0.999819993972778,0.00764032267034054,0.0103396410122514,0.999936938285828,0.0043839430436492,0.00780983315780759,0.999968945980072,0.00107658316846937,0.000518990098498762,0.999999225139618,0.00114940595813096,-0.0113006932660937,-0.999760627746582,-0.0187375154346228,-0.00935306958854198,-0.999642729759216,-0.0250423066318035,-0.000128701751236804,-0.999683797359467,-0.0251449514180422,-0.00921397004276514,-0.999879777431488,-0.0124806324020028,-0.0113006932660937,-0.999760627746582,-0.0187375154346228,-0.0203966442495584,-0.999715626239777,-0.0123540908098221,-0.999354302883148,-0.00410623149946332,-0.0356951132416725,-0.999987304210663,-0.00390221900306642,-0.00322177493944764,-0.999727249145508,-0.00266947550699115,-0.0232017561793327,
- -0.999963223934174,-0.0019266870804131,0.00836035329848528,-0.999727249145508,-0.00266947550699115,-0.0232017561793327,-0.999992787837982,-0.00200039055198431,-0.00323386094532907,-0.999947130680084,-0.00024216395104304,0.0102893635630608,-0.999943315982819,0.00243584020063281,0.0103668654337525,-0.999916672706604,0.00757549144327641,0.0104614794254303,-0.999894022941589,0.00236199982464314,0.0143652921542525,-0.999897241592407,-0.000331332063069567,0.0143321231007576,-0.999886631965637,-0.00494569865986705,0.0142301945015788,0.0194156486541033,0.999810457229614,-0.00143734493758529,0.00915484130382538,0.999957084655762,-0.00148235214874148,0.0110199153423309,0.999938309192657,-0.00146062322892249,0.011021688580513,0.999937057495117,-0.00210764375515282,0.00915752444416285,0.999955892562866,-0.00209793099202216,-4.02758487325627e-005,0.999997735023499,-0.00213810661807656,0.0158763844519854,-0.999757051467896,-0.0152885690331459,0.00591370649635792,-0.999871432781219,-0.0149056687951088,0.0717769414186478,-0.997318625450134,-0.014268503524363,0.00600212393328547,-0.999677956104279,-0.0246574226766825,0.0160295777022839,-0.999582409858704,-0.0240420307964087,-0.0461624078452587,-0.998618483543396,-0.0251026097685099,-0.999828994274139,0.0149558745324612,-0.010877039283514,-0.999841809272766,0.0140833035111427,-0.0108639467507601,-0.999862551689148,0.0125565715134144,-0.0108359735459089,-0.999817252159119,0.0145098920911551,0.0124475238844752,-0.999804854393005,0.015354142524302,0.0124302012845874,-0.999780714511871,0.0168731231242418,0.0124042071402073,-0.999969303607941,0.00762843480333686,-0.00179879914503545,-0.999965131282806,0.00762850698083639,-0.00340466247871518,-0.999958693981171,0.00762058328837156,-0.00495888432487845,-0.999963462352753,-0.0078410292044282,-0.00340525829233229,-0.99994695186615,-0.00784086063504219,-0.00667987484484911,-0.999957203865051,-0.0078364796936512,-0.00492028705775738,-0.999898910522461,-0.0141807533800602,0.00106464547570795,-0.99996542930603,-0.00752721494063735,-0.003527995897457,
- -0.999878644943237,-0.014192727394402,0.00643838662654161,-0.99996542930603,-0.00752721494063735,-0.003527995897457,-0.999998986721039,-0.000923351675737649,0.00109479459933937,-0.999956250190735,-0.000899717328138649,-0.0093133645132184,0.999943852424622,0.00393642531707883,0.00983994547277689,0.999946355819702,0.00321716093458235,0.00984637439250946,0.999948680400848,0.00236936006695032,0.00985183287411928,0.999963343143463,0.00391958188265562,0.00761199370026588,0.999959766864777,0.0047588162124157,0.00760561833158135,0.999965965747833,0.00320285023190081,0.00761565379798412,-0.000745943805668503,-0.999999582767487,-0.000539829197805375,-0.000907205219846219,-0.999999463558197,-0.00053960841614753,-0.00161661277525127,-0.999998569488525,-0.000539163360372186,-0.000908220943529159,-0.99999725818634,-0.00216258387081325,-0.000747182813938707,-0.999997496604919,-0.00216258154250681,4.30437694376451e-006,-0.999997675418854,-0.00216315500438213,-0.0230578873306513,0.999553501605988,-0.0190089661628008,-0.0306316614151001,0.999403059482574,-0.015975559130311,-0.0216896589845419,0.999584078788757,-0.0190062243491411,-0.0230578873306513,0.999553501605988,-0.0190089661628008,-0.0216896589845419,0.999584078788757,-0.0190062243491411,-0.0142792370170355,0.999655187129974,-0.0220376700162888,0.99989515542984,-0.0109372064471245,-0.00948979891836643,0.999937832355499,-0.0111319879069924,0.000622999563347548,0.9998939037323,-0.0110502243041992,-0.0094913961365819,0.999937832355499,-0.0111319879069924,0.000622999563347548,0.999879479408264,-0.0112227834761143,0.0107371844351292,0.999880135059357,-0.011162512935698,0.0107380356639624,0.999982714653015,0.00587623054161668,-0.000195719228941016,0.999982297420502,0.00588244711980224,-0.000885332759935409,0.999982714653015,0.00587244797497988,0.000379466859158129,0.999976456165314,-0.0066894362680614,-0.00151951320003718,0.999977111816406,-0.00669366307556629,-0.000984697486273944,0.99997752904892,-0.00669759977608919,-0.000278370804153383,0.999898135662079,0.0142335714772344,0.00106853770557791,
- 0.999968409538269,0.00778787024319172,0.00161027594003826,0.999898552894592,0.0142301004379988,0.000655598996672779,0.999996960163116,0.00134165468625724,0.00207864516414702,0.999968409538269,0.00778787024319172,0.00161027594003826,0.999998509883881,0.00133407989051193,0.00117704237345606,-0.999894738197327,-0.00233234860934317,-0.0143280187621713,-0.99989777803421,0.00035248530912213,-0.0142951086163521,-0.999886989593506,0.00495313480496407,-0.0141938850283623,-0.999946534633636,0.000265751790720969,-0.010347057133913,-0.999942779541016,-0.00240414729341865,-0.0104240281507373,-0.99991637468338,-0.00752689363434911,-0.0105179399251938,0.0110270455479622,-0.999936997890472,0.00210441718809307,0.00916119478642941,-0.999955832958221,0.00209465669468045,-4.06121034757234e-005,-0.999997735023499,0.0021346912253648,0.0194264631718397,-0.999810099601746,0.00152790697757155,0.00915892980992794,-0.999956846237183,0.00157276540994644,0.0110255368053913,-0.999938130378723,0.00155104300938547,0.015923548489809,0.999758183956146,0.0151726417243481,0.00597982481122017,0.999872744083405,0.0147908460348845,0.0717140436172485,0.997324764728546,0.0141582824289799,0.0160799045115709,0.999579310417175,0.024139141663909,-0.0459997281432152,0.998623788356781,0.025193938985467,0.00606966484338045,0.999675214290619,0.0247519593685865,-0.999822497367859,-0.0144933788105845,-0.0120374141260982,-0.99981027841568,-0.0153332687914371,-0.0120202181860805,-0.999786198139191,-0.016844492405653,-0.0119943870231509,-0.999829053878784,-0.0149421971291304,0.0108899520710111,-0.999841809272766,-0.0140746338292956,0.0108769414946437,-0.999862313270569,-0.0125567745417356,0.010849173180759,-0.999969303607941,-0.00763678597286344,0.00181071774568409,-0.999965190887451,-0.007636743132025,0.00339449918828905,-0.999958872795105,-0.00762892654165626,0.0049273488111794,-0.99997079372406,0.00684864167124033,0.0033940386492759,-0.999954581260681,0.00684871291741729,0.00662911403924227,-0.999964714050293,0.00684431940317154,0.00489070685580373,-0.999898791313171,0.0141886509954929,-0.0010659983381629,
- -0.999894142150879,0.0141085721552372,0.00355504965409637,-0.999878764152527,0.0142006799578667,-0.00640151742845774,-0.999993622303009,0.000972862413618714,0.00343295140191913,-0.999999046325684,0.000942482030950487,-0.00109646888449788,-0.999957025051117,0.000918751175049692,0.00923646241426468,-0.999358057975769,-0.0285185854882002,0.0216875243932009,-0.99957013130188,-0.0288521889597178,0.00521053513512015,-0.998712420463562,-0.0294239576905966,0.0413244441151619,-0.998687863349915,-0.0462272092700005,0.0220361426472664,-0.998134970664978,-0.0451767183840275,0.0410590842366219,-0.997233271598816,-0.0454417690634727,0.0588305965065956,-0.995175719261169,-0.0937753766775131,-0.028836103156209,-0.994552552700043,-0.0939512997865677,-0.0451478958129883,-0.993694245815277,-0.0933337658643723,-0.0621333792805672,-0.99442994594574,-0.0952215269207954,-0.045187883079052,-0.994958519935608,-0.0960473492741585,-0.028856610879302,-0.995214760303497,-0.0961765125393867,-0.0172538906335831,0.00370937143452466,-0.989456832408905,0.144780650734901,0.0128849986940622,-0.989382326602936,0.144764080643654,0.00187511171679944,-0.989458322525024,0.144805759191513,0.00371059658937156,-0.989162981510162,0.146774917840958,0.0018805229337886,-0.989170968532562,0.146756544709206,-0.00768649345263839,-0.989139556884766,0.146778404712677,-0.00366727635264397,0.999719440937042,-0.023404935374856,-0.00529410783201456,0.999713540077209,-0.023345747962594,0.00623732898384333,0.999695420265198,-0.0238792914897203,-0.0054389894939959,0.999634802341461,-0.0264749061316252,-0.00381926912814379,0.999639511108398,-0.0265750493854284,-0.0189981088042259,0.999485492706299,-0.0258432272821665,-0.997348248958588,-0.0161621365696192,0.0709597617387772,-0.997148454189301,-0.0250564068555832,0.0711841583251953,-0.997453808784485,-0.00643188506364822,0.0710247457027435,-0.996760427951813,-0.0250049065798521,0.0764425471425056,-0.99692177772522,-0.0161958411335945,0.0767114013433456,-0.996339201927185,-0.0380781479179859,0.0765392780303955,-0.999887585639954,-0.00214695860631764,-0.014846202917397,
- -0.999890208244324,0.00028406223282218,-0.0148170068860054,-0.999879777431488,0.00487957615405321,-0.0147197581827641,-0.999942362308502,0.000197783272597007,-0.0107333390042186,-0.999939203262329,-0.00221967371180654,-0.010800520889461,-0.999913930892944,-0.00732905697077513,-0.0108920587226748,0.0110925743356347,-0.999936103820801,0.00222098780795932,0.00892427749931812,-0.999957740306854,0.0022099744528532,-4.04903548769653e-005,-0.999997496604919,0.00224862992763519,0.0192552637308836,-0.999812602996826,0.00204389286227524,0.00892375782132149,-0.999958097934723,0.00208865408785641,0.0110921887680888,-0.999936461448669,0.00206432887353003,0.0172922350466251,0.99973201751709,0.0153898233547807,0.00550503889098763,0.999873101711273,0.0149564305320382,0.0718192607164383,0.997314214706421,0.0143639855086803,0.0174671150743961,0.999532639980316,0.0250872261822224,-0.0453155599534512,0.998629331588745,0.026191383600235,0.00559528404846787,0.999651610851288,0.0257953815162182,-0.999809503555298,-0.0145825855433941,-0.0129734138026834,-0.999797701835632,-0.0153842680156231,-0.0129572637379169,-0.999772429466248,-0.016968222334981,-0.0129306642338634,-0.999825537204742,-0.0149800172075629,0.0111554292961955,-0.999837875366211,-0.0141512118279934,0.0111432923004031,-0.999859392642975,-0.0125549146905541,0.0111146979033947,-0.999969184398651,-0.00763512868434191,0.00183083210140467,-0.999964952468872,-0.00763487117365003,0.00343537423759699,-0.999958574771881,-0.00762664899230003,0.00498795043677092,-0.999969303607941,0.00704622827470303,0.00343293813057244,-0.999952673912048,0.00704673770815134,0.00671045109629631,-0.999962985515594,0.00704199355095625,0.00494838831946254,-0.999898016452789,0.0142490640282631,-0.00106008630245924,-0.999892354011536,0.0141602605581284,0.00384485116228461,-0.999875783920288,0.0142609532922506,-0.00672606332227588,-0.999992728233337,0.000863741559442133,0.00371757568791509,-0.999999046325684,0.000828109274152666,-0.00108889734838158,-0.99995094537735,0.000804612354841083,0.00987498369067907,
- -0.999314188957214,-0.0294171888381243,0.0224887076765299,-0.999542832374573,-0.0297439359128475,0.00542842457070947,-0.998682141304016,-0.0302735399454832,0.0414449349045753,-0.998600602149963,-0.0477040708065033,0.0228279549628496,-0.998059332370758,-0.0467065051198006,0.0411859713494778,-0.997120261192322,-0.0469588898122311,0.0595487132668495,-0.99502021074295,-0.0956879034638405,-0.0279043130576611,-0.994718730449677,-0.0955089554190636,-0.0375856049358845,-0.994345664978027,-0.0950558632612228,-0.0473423488438129,-0.994443118572235,-0.0982917621731758,-0.0377043150365353,-0.99470990896225,-0.098835214972496,-0.0279959328472614,-0.994871199131012,-0.0990723073482513,-0.0203958712518215,0.00358470273204148,-0.990226745605469,0.13942064344883,0.0124611528590322,-0.990157127380371,0.139405190944672,0.00180837349034846,-0.990228295326233,0.139443963766098,0.00358869088813663,-0.989305078983307,0.145817011594772,0.0018254955066368,-0.989312410354614,0.145800098776817,-0.0073568569496274,-0.989283680915833,0.145820558071136,-0.999523341655731,0.0306781735271215,0.00345968850888312,-0.999928891658783,0.0116469087079167,0.00255986605770886,-0.998399317264557,0.056483443826437,0.00290791015140712,-0.999752223491669,0.0115159004926682,0.0190541353076696,-0.999358654022217,0.0309823285788298,0.0179562848061323,-0.999746203422546,-0.0123190945014358,0.0188624076545238,0.0120095396414399,0.999580323696136,-0.0263623371720314,0.0071194339543581,0.999628782272339,-0.0263025779277086,0.0335218235850334,0.999069273471832,-0.0271457638591528,0.00713957194238901,0.999644756317139,-0.0256824437528849,0.0120238224044442,0.999590218067169,-0.0259764809161425,-0.0180687513202429,0.999527633190155,-0.0248606093227863,-0.997203588485718,-0.0168685503304005,0.0728042721748352,-0.997002899646759,-0.0255488399416208,0.073025144636631,-0.997320473194122,-0.00648301793262362,0.0728701949119568,-0.996651649475098,-0.0255050119012594,0.0776850804686546,-0.996813952922821,-0.0168967694044113,0.0779516473412514,-0.996192693710327,-0.0393765792250633,0.0777807310223579,
- 0.999938249588013,0.00394160114228725,0.010391385294497,0.999940454959869,0.00332139199599624,0.0103966444730759,0.999942719936371,0.00252591469325125,0.0104016484692693,0.99996030330658,0.00392442429438233,0.00801268685609102,0.999956846237183,0.00471199816092849,0.00800696760416031,0.999962508678436,0.00330647733062506,0.0080158244818449,-0.000609179609455168,-0.99999988079071,-0.000269939220743254,-0.00076577061554417,-0.999999761581421,-0.000269765558186919,-0.00134540244471282,-0.999999165534973,-0.000269476498942822,-0.000766748853493482,-0.999997198581696,-0.0022340549621731,-0.000610412971582264,-0.999997317790985,-0.00223405309952796,4.39609812019626e-006,-0.999997496604919,-0.00223443936556578,-0.0231702458113432,0.999604880809784,-0.0159125253558159,-0.0302723534405231,0.99941474199295,-0.0159302558749914,-0.0216032229363918,0.999580979347229,-0.0192656628787518,-0.0231501180678606,0.999475955963135,-0.0226242691278458,-0.0216032229363918,0.999580979347229,-0.0192656628787518,-0.014655296690762,0.999637246131897,-0.0226017683744431,0.999889731407166,-0.0111649846658111,-0.00979170296341181,0.999890089035034,-0.0111345937475562,-0.00979128200560808,0.999890506267548,-0.0110961077734828,-0.00979074463248253,0.999873518943787,-0.0114257093518972,0.0110721495002508,0.999873101711273,-0.011455113068223,0.0110717369243503,0.99987268447876,-0.0114932050928473,0.0110712060704827,0.999981701374054,0.00604784255847335,-3.58903453161474e-005,0.999981343746185,0.00605561072006822,-0.000833608966786414,0.99998152256012,0.00604319386184216,0.000636307056993246,0.999976217746735,-0.0067182807251811,-0.00156664149835706,0.999977052211761,-0.00672356085851789,-0.000941497972235084,0.999977469444275,-0.00672826077789068,-0.000124215599498712,0.999897301197052,0.0142898075282574,0.00108351174276322,0.999969601631165,0.00768000027164817,0.00140956998802722,0.999897658824921,0.0142879132181406,0.000850450072903186,0.999998092651367,0.00106967659667134,0.00169708672910929,0.999969601631165,0.00768000027164817,0.00140956998802722,
- 0.99999874830246,0.00106556306127459,0.00119115540292114,0.998783648014069,-0.0457081198692322,-0.0184983070939779,0.998072564601898,-0.0447380207479,-0.0430103242397308,0.997062683105469,-0.04567751288414,-0.0614784620702267,0.999459803104401,-0.027152618393302,-0.0185158867388964,0.999631524085999,-0.0271430760622025,-0.000188090911251493,0.998606562614441,-0.0294058825820684,-0.0438205860555172,0.996058166027069,-0.0841501727700233,0.0280509237200022,0.995723903179169,-0.0835709497332573,0.0393674895167351,0.995380640029907,-0.0827932506799698,0.048607163131237,0.995358288288116,-0.08767019957304,0.0396989770233631,0.995651721954346,-0.0887394994497299,0.0283405818045139,0.995786309242249,-0.0891952440142632,0.0213076695799828,-0.00420024991035461,-0.994584739208221,-0.103844061493874,-0.0145670464262366,-0.994488716125488,-0.103826828300953,-0.00213543511927128,-0.994588017463684,-0.103875726461411,-0.00420352816581726,-0.994074702262878,-0.108618848025799,-0.00215005059726536,-0.994083762168884,-0.108594983816147,0.00871767848730087,-0.994044661521912,-0.108624316751957,0.999824047088623,0.00850314181298018,-0.0167199857532978,0.999406516551971,0.0303684379905462,-0.0162603948265314,0.999803960323334,-0.0120273288339376,-0.0157267712056637,0.9994997382164,0.0304664857685566,-0.00848926231265068,0.999937474727631,0.00898968428373337,-0.00664946902543306,0.998558938503265,0.0529462955892086,-0.00876258220523596,-0.02407849393785,0.999628961086273,-0.0127415033057332,-0.0284579861909151,0.999516606330872,-0.0125169800594449,-0.00233788415789604,0.999908268451691,-0.0133407404646277,-0.0284697785973549,0.99951159954071,-0.0128930509090424,-0.0240840893238783,0.999626100063324,-0.0129458643496037,-0.0459156893193722,0.998869121074677,-0.012337694875896,0.997354209423065,-0.0212561804801226,-0.0695194974541664,0.997453629970551,-0.0141319017857313,-0.0699034258723259,0.997141718864441,-0.0300885364413261,-0.0693040415644646,0.997767567634583,-0.0139654241502285,-0.0653058663010597,0.997646510601044,-0.0211583934724331,-0.0652206763625145,
- 0.997821450233459,-0.00751746213063598,-0.065543070435524,-0.999584555625916,-0.00421579135581851,-0.0285156033933163,-0.999591886997223,-0.00171604531351477,-0.0285159163177013,-0.999591827392578,0.00250945286825299,-0.0284577533602715,-0.999709129333496,0.00247087352909148,-0.0239915736019611,-0.999711394309998,-0.00171583611518145,-0.0239668674767017,-0.99969881772995,0.00529552903026342,-0.0239669159054756,-0.999614953994751,-0.0265048835426569,0.00822421442717314,-0.999544143676758,-0.0265179164707661,0.0144391963258386,-0.999575138092041,-0.0265313033014536,0.0120696714147925,-0.999602615833282,-0.0269632060080767,0.00822311360388994,-0.999564588069916,-0.0269245710223913,0.012071754783392,-0.999618649482727,-0.0269582644104958,0.00598692009225488,0.0104118585586548,0.999925673007965,0.00634600734338164,0.0115682678297162,0.999912858009338,0.00635993294417858,0.0212694834917784,0.999752163887024,0.00657763332128525,0.0116841001436114,0.99993109703064,0.00121454836335033,0.0105224857106805,0.999943971633911,0.00117749604396522,0.000614376680459827,0.999999344348907,0.000965733721386641,-0.0108150467276573,-0.999704122543335,-0.0217928215861321,-0.0120863821357489,-0.999689280986786,-0.0218007620424032,0.000674855837132782,-0.999767482280731,-0.0215540658682585,-0.0122673436999321,-0.999846935272217,-0.0124750109389424,-0.0110100833699107,-0.99986207485199,-0.0124363731592894,-0.0210364125669003,-0.999698758125305,-0.012642833404243,-0.999450027942657,-0.00375756504945457,-0.0329477414488792,-0.999572515487671,-0.00366267235949636,-0.0290063619613647,-0.999499559402466,-0.00372894620522857,-0.0314127951860428,-0.999610304832459,-0.00200574472546577,-0.0278422851115465,-0.999503374099731,-0.00207291240803897,-0.0314437933266163,-0.999576032161713,-0.00203472538851202,-0.0290456674993038,0.998195588588715,0.0550342500209808,0.0240205470472574,0.997734010219574,0.0548407882452011,0.0389791429042816,0.996667385101318,0.0557785369455814,0.0595222264528275,0.999102532863617,0.0345583744347095,0.0244925990700722,0.999403834342957,0.0341292470693588,0.00521747721359134,
- 0.998564064502716,0.0357516631484032,0.0398955121636391,0.993108451366425,0.11130565404892,-0.0366967581212521,0.992855608463287,0.110839635133743,-0.0441874042153358,0.992445647716522,0.109978169202805,-0.0543734133243561,0.99306583404541,0.108999527990818,-0.0440402515232563,0.993291735649109,0.109696216881275,-0.03658277541399,0.993491530418396,0.110294595360756,-0.0284552630037069,-0.00291292043402791,0.994128048419952,0.108171105384827,-0.0101646166294813,0.994081377983093,0.108162358403206,-0.00145326589699835,0.994129538536072,0.108186848461628,-0.00291376421228051,0.99394416809082,0.109847776591778,-0.00145691190846264,0.993948638439178,0.10983631759882,0.00597900757566094,0.993930101394653,0.109850704669952,0.999484360218048,-0.031084755435586,0.00805963948369026,0.999862611293793,-0.015178918838501,0.00667868135496974,0.99801117181778,-0.0624275170266628,0.00875974167138338,0.999642133712769,-0.0144766047596931,0.0224952530115843,0.999279499053955,-0.0307601224631071,0.0222322959452868,0.999662458896637,0.0150445662438869,0.0211812499910593,-0.00616259267553687,-0.99992972612381,0.0101290307939053,-0.0032713757827878,-0.999942779541016,0.0101850228384137,-0.0191042460501194,-0.99977058172226,0.00968485604971647,-0.00325680570676923,-0.999947428703308,0.00972208008170128,-0.00614388147369027,-0.999935328960419,0.00958190951496363,0.011947937309742,-0.999876618385315,0.0102000283077359,0.996462225914001,0.0234553590416908,0.0807026699185371,0.996274590492249,0.0306151658296585,0.0806205198168755,0.996641457080841,0.0101069137454033,0.0812640115618706,0.995910823345184,0.0307443868368864,0.0849493071436882,0.996062397956848,0.0236492864787579,0.0854436159133911,0.995276808738709,0.0479998961091042,0.0843805968761444,-0.995673477649689,0.0879718288779259,0.0299213360995054,-0.996000051498413,0.0886213630437851,0.0114091532304883,-0.996094346046448,0.0881547331809998,-0.00498016737401485,-0.997653543949127,0.067402608692646,0.012020954862237,-0.99720561504364,0.0684913173317909,0.0298344008624554,-0.99650651216507,0.0683569610118866,0.0479806065559387,
- -0.999145567417145,0.0211289282888174,-0.0355210900306702,-0.998786389827728,0.0211682841181755,-0.0444705821573734,-0.998328685760498,0.0214374400675297,-0.0536684542894363,-0.998812615871429,0.0198004059493542,-0.0445119179785252,-0.999178647994995,0.0194506254047155,-0.0355511233210564,-0.999404668807983,0.0193303171545267,-0.0285779926925898,-0.115026146173477,-0.982778370380402,0.144622430205345,-0.105871327221394,-0.983794689178467,0.144704774022102,-0.116364941000938,-0.982620239257813,0.144625931978226,-0.114974930882454,-0.981775164604187,0.151321828365326,-0.116303317248821,-0.981622993946075,0.151293829083443,-0.125763386487961,-0.980469048023224,0.151208519935608,-0.988818347454071,0.149027809500694,-0.00538824265822768,-0.991680860519409,0.12857249379158,-0.00618332391604781,-0.984645128250122,0.174455687403679,-0.00626254174858332,-0.9916672706604,0.128596603870392,0.0076765906997025,-0.988754630088806,0.149417504668236,0.00622406601905823,-0.994371056556702,0.105672463774681,0.00771725922822952,0.172686815261841,0.984393537044525,-0.033891674131155,0.119650267064571,0.9922816157341,-0.032573539763689,0.126898899674416,0.991365253925323,-0.0330392345786095,0.0765919908881187,0.996469557285309,-0.0343817584216595,0.12684378027916,0.991290986537933,-0.0353953540325165,0.119563840329647,0.992191135883331,-0.0355143956840038,-0.992882609367371,0.102485135197639,0.0606721229851246,-0.993771851062775,0.0932401344180107,0.0610231086611748,-0.991806983947754,0.112444303929806,0.0606248378753662,-0.993475496768951,0.093304418027401,0.0655801817774773,-0.992559254169464,0.102474458515644,0.0657653138041496,-0.994648337364197,0.0796148777008057,0.0658493638038635,0.998554110527039,-0.049876794219017,-0.0200505349785089,0.99808406829834,-0.0489369742572308,-0.0378591567277908,0.997289478778839,-0.049160324037075,-0.0547446496784687,0.999384522438049,-0.0290603134781122,-0.0196546949446201,0.999559164047241,-0.0293579678982496,-0.00443161558359861,0.998826622962952,-0.0298344437032938,-0.0381483249366283,0.994944214820862,-0.0974114760756493,0.0244340691715479,
- 0.994691371917725,-0.0972671434283257,0.0335891209542751,0.994390070438385,-0.0968965068459511,0.0424201190471649,0.99487841129303,-0.0953616350889206,0.0335155390202999,0.995099723339081,-0.0958212465047836,0.0243933368474245,0.995221674442291,-0.0960015207529068,0.0178209561854601,-0.00352553837001324,-0.990810990333557,-0.13520772755146,-0.0135593265295029,-0.990728080272675,-0.135181501507759,-0.00261293770745397,-0.990811944007874,-0.135221526026726,-0.00353030045516789,-0.99036717414856,-0.138421013951302,-0.00262125604785979,-0.990371406078339,-0.138411119580269,0.00784643646329641,-0.99034059047699,-0.138434082269669,0.999909520149231,0.0091445054858923,-0.00987230334430933,0.999359786510468,0.0323826260864735,-0.0152113707736135,0.999787569046021,-0.0124044474214315,-0.0164617337286472,0.999476552009583,0.0320754125714302,-0.00421556271612644,0.999909520149231,0.0091445054858923,-0.00987230334430933,0.99841171503067,0.056229941546917,-0.00353098893538117,0.0436471253633499,0.998754024505615,0.0241940505802631,-0.00968714617192745,0.999615907669067,0.0259657818824053,-0.00426781363785267,0.999652564525604,0.0260113626718521,-0.0608822181820869,0.997806906700134,0.0259791854768991,-0.00434656394645572,0.999704718589783,0.0239080879837275,-0.00974024273455143,0.999656140804291,0.0243468638509512,0.997346103191376,-0.025642016902566,-0.0681412741541862,0.997535228729248,-0.0154004348441958,-0.0684565007686615,0.996926844120026,-0.038394633680582,-0.0682845413684845,0.997719049453735,-0.0153849311172962,-0.0657284706830978,0.997487664222717,-0.0256704464554787,-0.0660258755087852,0.997814238071442,-0.00624632416293025,-0.0657868608832359,0.999545156955719,-0.0297101698815823,-0.00519894994795322,0.999620318412781,-0.0270598754286766,-0.00519953202456236,0.999728560447693,-0.0226972308009863,-0.00526245729997754,0.99958872795105,-0.0270599368959665,-0.0094922436401248,0.999760031700134,-0.0197431147098541,-0.00949354749172926,0.999696731567383,-0.0227345004677773,-0.00946655869483948,0.997827529907227,-0.0524837337434292,-0.0398202687501907,
- 0.997732996940613,-0.0524864196777344,-0.0421198531985283,0.997565865516663,-0.0524438880383968,-0.0459588207304478,0.997589468955994,-0.0519925057888031,-0.0459568984806538,0.997759938240051,-0.0519702173769474,-0.0421215631067753,0.99747508764267,-0.0519761368632317,-0.0483932755887508,0.999575138092041,-0.013053560629487,0.0260642301291227,0.999541997909546,-0.0155492760241032,0.0259611774235964,0.999513149261475,-0.01744688116014,0.0258665345609188,0.999638795852661,-0.0129414964467287,0.0235537122935057,0.999653518199921,-0.0116318007931113,0.0236125495284796,0.999606668949127,-0.0154237058013678,0.0234236996620893,0.0135196875780821,0.999908268451691,-0.000819214503280818,0.0146491471678019,0.999892473220825,-0.000821114925201982,0.0246385969221592,0.999695956707001,-0.000943778548389673,0.0145848356187344,0.999875426292419,-0.00603689486160874,0.013461260125041,0.999891340732574,-0.0060125021263957,0.0036788450088352,0.999975800514221,-0.00590259954333305,-0.0178143419325352,-0.999783754348755,0.0107373725622892,-0.0178434774279594,-0.999783158302307,0.0107376715168357,-0.0107195880264044,-0.999886214733124,0.0106145804747939,-0.0176572967320681,-0.999615907669067,0.0213608071208,-0.0176278632134199,-0.99961644411087,0.0213600993156433,-0.0247099976986647,-0.999463856220245,0.0214818958193064,0.999573349952698,-0.029096495360136,0.00255941366776824,0.999446988105774,-0.0277991406619549,0.0182499904185534,0.999195754528046,-0.0292813535779715,0.027395099401474,0.999446988105774,-0.0277991406619549,0.0182499904185534,0.999637961387634,-0.0267865490168333,0.0025776217225939,0.9996258020401,-0.0267197322100401,-0.00586130283772945,-0.990857243537903,-0.0284899361431599,0.131872236728668,-0.992933511734009,-0.028835978358984,0.115115381777287,-0.98797607421875,-0.0294438097625971,0.151777252554893,-0.990164637565613,-0.0459509044885635,0.132145717740059,-0.987447023391724,-0.0448540821671486,0.151448011398315,-0.984506964683533,-0.0451361797749996,0.169436618685722,-0.992313802242279,-0.0929495468735695,0.0816928222775459,
- -0.993131041526794,-0.0927577018737793,0.0713217034935951,-0.993830561637878,-0.0922823399305344,0.0615221373736858,-0.992893874645233,-0.0953700318932533,0.0711780413985252,-0.992035508155823,-0.0959781631827354,0.0815716758370399,-0.99135822057724,-0.0962196886539459,0.0891663283109665,0.0193660203367472,-0.989016532897949,0.146530836820602,0.0282662529498339,-0.988944351673126,0.14556810259819,0.0172535199671984,-0.989018142223358,0.146784454584122,0.0195301286876202,-0.988784730434418,0.148065343499184,0.0174160562455654,-0.988793611526489,0.148269608616829,0.00813726428896189,-0.9887615442276,0.149280220270157,-0.99278450012207,0.0300381891429424,0.116089157760143,-0.993271052837372,0.0112264873459935,0.115267343819141,-0.991779327392578,0.0551798343658447,0.115451902151108,-0.991634249687195,0.0111169461160898,0.128599986433983,-0.991374313831329,0.0302723105996847,0.127517700195313,-0.991649448871613,-0.0119170872494578,0.128410816192627,0.00937449932098389,0.999545335769653,-0.0286581963300705,0.00336928619071841,0.999603807926178,-0.0279479529708624,0.0316957235336304,0.998989045619965,-0.0318788848817348,0.00344138965010643,0.9996178150177,-0.0274306051433086,0.00940606184303761,0.999551355838776,-0.0284405034035444,-0.022806104272604,0.99945741891861,-0.0237682592123747,-0.983242392539978,-0.0161524377763271,0.181586131453514,-0.98303496837616,-0.0245555881410837,0.181767597794533,-0.983341097831726,-0.00625584134832025,0.181662052869797,-0.981993794441223,-0.0245060101151466,0.18731752038002,-0.982115149497986,-0.0161871090531349,0.18758425116539,-0.981565713882446,-0.037774208933115,0.187355488538742,-0.999172151088715,-0.0367439948022366,0.0174589771777391,-0.999612390995026,-0.0278389733284712,0.000325514527503401,-0.998776197433472,-0.029404167085886,0.0397685542702675,-0.999172151088715,-0.0367439948022366,0.0174589771777391,-0.99822723865509,-0.0448359921574593,0.0391421876847744,-0.997363805770874,-0.045509397983551,0.0565184466540813,-0.994086146354675,-0.105296313762665,-0.0265613365918398,-0.989826858043671,-0.136216625571251,-0.0410834550857544,
- -0.989482700824738,-0.1355050355196,-0.0506201535463333,-0.996677935123444,-0.0727543234825134,-0.0366052538156509,-0.994086146354675,-0.105296313762665,-0.0265613365918398,-0.997084856033325,-0.0741041526198387,-0.0181769672781229,0.00577111914753914,-0.994920313358307,0.100501023232937,0.0176495034247637,-0.994785726070404,0.100449211895466,0.00470476876944304,-0.994923770427704,0.100522577762604,0.00579506903886795,-0.994134366512299,0.10799765586853,0.00473887333646417,-0.994141399860382,0.107983224093914,-0.00868041627109051,-0.9941086769104,0.108040779829025,-0.999694645404816,0.0232412032783031,0.00839506648480892,-0.999969244003296,0.00381611008197069,0.00685439025983214,-0.999139666557312,0.0405665189027786,0.00863061752170324,-0.999875485897064,0.00340118655003607,0.0154095282778144,-0.999617338180542,0.0231471303850412,0.0151462387293577,-0.999818980693817,-0.0121358186006546,0.0146548375487328,0.0302658155560493,0.99954080581665,0.00149649544619024,0.0270649176090956,0.999632477760315,0.00160195224452764,0.0533168613910675,0.998576581478119,0.00147398735862225,0.0270649176090956,0.999632477760315,0.00160195224452764,0.0302658155560493,0.99954080581665,0.00149649544619024,0.00233236164785922,0.999995887279511,0.00168201758060604,-0.998011112213135,-0.0176231116056442,0.0605247244238853,-0.997884929180145,-0.0250693336129189,0.0599782317876816,-0.998060286045074,-0.0120567036792636,0.061076357960701,-0.997812032699585,-0.0251663159579039,0.0611391924321651,-0.997918546199799,-0.0177676007151604,0.06199099868536,-0.997627258300781,-0.0328902825713158,0.0604823119938374,0.00660987012088299,-0.036483034491539,0.999312400817871,0.00662437314167619,-0.0331097394227982,0.999429881572723,0.006681764498353,-0.029507240280509,0.999542236328125,0.010301192291081,-0.0257481429725885,0.999615490436554,0.0102622462436557,-0.0295431241393089,0.999510824680328,0.0102698458358645,-0.0331243276596069,0.999398469924927,0.050567165017128,-0.0650010481476784,0.99660313129425,0.0348802506923676,-0.0654556602239609,0.997245669364929,
- 0.0430852323770523,-0.0650957971811295,0.996948540210724,0.0347571857273579,-0.0607820264995098,0.997545719146729,0.0275789946317673,-0.0609847120940685,0.997757613658905,0.043043464422226,-0.0608000345528126,0.99722146987915,-0.032596442848444,-0.0148034356534481,0.999358952045441,-0.0299480352550745,-0.0114325843751431,0.999486088752747,-0.0324756354093552,-0.0174366943538189,0.999320507049561,-0.0299480352550745,-0.0114325843751431,0.999486088752747,-0.0269856750965118,-0.0145485466346145,0.999529957771301,-0.0272811409085989,-0.00808951165527105,0.999595046043396,0.00317947822622955,0.999669432640076,0.0255134105682373,0.000883629894815385,0.999683916568756,0.0251263547688723,0.000896014797035605,0.999775350093842,0.0211775749921799,0.00547741912305355,0.999669015407562,0.0251404009759426,0.00317947822622955,0.999669432640076,0.0255134105682373,0.00546497292816639,0.999561786651611,0.0290923379361629,-0.0146356634795666,-0.999892950057983,-0.000127177045214921,-0.0195943955332041,-0.999807596206665,-0.000940244819503278,-0.0195539835840464,-0.999526977539063,-0.023737957701087,-0.00967367831617594,-0.999952793121338,-0.000925008149351925,-0.0146356634795666,-0.999892950057983,-0.000127177045214921,-0.00970897730439901,-0.999670505523682,0.0237626861780882,-0.00306002795696259,-0.0348555818200111,0.999387681484222,-0.0182084087282419,-0.035275112837553,0.999211847782135,-0.0302468184381723,-0.0350000895559788,0.998929500579834,-0.0181234814226627,-0.0314220264554024,0.999341905117035,-0.00307642319239676,-0.0320762917399406,0.999480664730072,0.00828144792467356,-0.0320084728300571,0.99945330619812,0.0439068712294102,0.069787934422493,-0.996595144271851,0.03020004555583,0.0692976266145706,-0.997138917446136,0.00978223141282797,0.0696096569299698,-0.997526347637177,0.0304846800863743,0.0901524424552917,-0.995461285114288,0.0437579266726971,0.0894716158509254,-0.995027661323547,0.0654279813170433,0.089538037776947,-0.993832051753998,-0.0379897803068161,0.149993002414703,-0.987956941127777,-0.0318803638219833,0.150331646203995,-0.988121569156647,
- -0.0240318067371845,0.150635734200478,-0.9882972240448,-0.0317817553877831,0.147542476654053,-0.988545060157776,-0.0378785282373428,0.14736595749855,-0.988356471061707,-0.0475196465849876,0.146904811263084,-0.988008558750153,0.146298289299011,0.988897264003754,0.0260580871254206,0.146302774548531,0.988932549953461,0.0246577113866806,0.148814305663109,0.988702416419983,0.0179400146007538,0.146298289299011,0.988897264003754,0.0260580871254206,0.143777176737785,0.98907083272934,0.0326680056750774,0.146302774548531,0.988932549953461,0.0246577113866806,0.00836811680346727,0.00252337614074349,-0.999961793422699,0.00772919179871678,0.0162542965263128,-0.99983811378479,0.0078603345900774,-0.0315207242965698,-0.999472200870514,0.0261820200830698,0.0163032729178667,-0.999524235725403,0.025412805378437,0.00227080704644322,-0.999674558639526,0.0260728783905506,0.048811748623848,-0.998467743396759,-0.0308692492544651,-0.999323904514313,-0.0199702475219965,-0.030817361548543,-0.999279797077179,-0.0221398882567883,-0.031190674751997,-0.999456703662872,-0.0106597412377596,-0.027288343757391,-0.999384999275208,-0.022026713937521,-0.027386212721467,-0.999427795410156,-0.0198514591902494,-0.0269263703376055,-0.99909108877182,-0.0330443568527699,0.0998264849185944,0.0612257868051529,-0.993119478225708,0.0965743437409401,0.0553476177155972,-0.993785679340363,0.0999194607138634,0.0799128189682961,-0.9917813539505,0.0965743437409401,0.0553476177155972,-0.993785679340363,0.0933076366782188,0.0613034404814243,-0.993748247623444,0.0931653156876564,0.0406046733260155,-0.994822323322296,0.973883628845215,-0.22702619433403,-0.00312894233502448,0.974408268928528,-0.224760472774506,-0.00335397641174495,0.975032031536102,-0.22203417122364,-0.00365018146112561,0.97427773475647,-0.225204467773438,-0.00812841299921274,0.975468873977661,-0.219967529177666,-0.00864794012159109,0.97489732503891,-0.222497507929802,-0.00838406570255756,0.966776728630066,-0.252098232507706,-0.0422996543347836,0.966706573963165,-0.252137422561646,-0.0436502955853939,0.966567695140839,-0.252191334962845,-0.0463300086557865,
- 0.966660439968109,-0.251833528280258,-0.0463430844247341,0.966806888580322,-0.251749098300934,-0.0436667762696743,0.966580212116241,-0.251866430044174,-0.0478126406669617,0.976332664489746,-0.214089468121529,0.0306632667779922,0.976505398750305,-0.213301867246628,0.0306521821767092,0.976648569107056,-0.212482199072838,0.0317634716629982,0.976332664489746,-0.214089468121529,0.0306632667779922,0.976235568523407,-0.214688137173653,0.0295493025332689,0.976505398750305,-0.213301867246628,0.0306521821767092,0.210763335227966,0.976487278938293,-0.045293316245079,0.216546311974525,0.975409507751465,-0.0410390011966228,0.228069275617599,0.972775042057037,-0.0411499179899693,0.216380909085274,0.975046753883362,-0.0496293529868126,0.210763335227966,0.976487278938293,-0.045293316245079,0.200866490602493,0.978368818759918,-0.0494703836739063,-0.216502293944359,-0.974718928337097,0.055224597454071,-0.212730199098587,-0.975072920322418,0.0630775839090347,-0.203005820512772,-0.977622628211975,0.0551598519086838,-0.212730199098587,-0.975072920322418,0.0630775839090347,-0.216220065951347,-0.973762214183807,0.070966549217701,-0.225005298852921,-0.971767067909241,0.0710024982690811,0.97385835647583,-0.22643980383873,0.0180323403328657,0.975224256515503,-0.221217453479767,0.000747609825339168,0.973749279975891,-0.226252034306526,0.0249473229050636,0.975224256515503,-0.221217453479767,0.000747609825339168,0.976574778556824,-0.21444545686245,0.0177497621625662,0.976574122905731,-0.215045586228371,-0.00764317903667688,-0.131342858076096,0.0961631089448929,-0.986661911010742,-0.132609367370605,0.0949437245726585,-0.986610591411591,-0.138941362500191,0.0960045754909515,-0.985636055469513,-0.132609367370605,0.0949437245726585,-0.986610591411591,-0.13132444024086,0.0937794074416161,-0.986893773078918,-0.124257400631905,0.0939217060804367,-0.987794935703278,0.996097266674042,-0.000269687618128955,-0.0882620364427567,0.995988368988037,-0.000124460144434124,-0.0894827991724014,0.995539247989655,0.000141586540848948,-0.094348169863224,0.996476531028748,-0.000586383219342679,-0.0838711634278297,
- 0.995987594127655,-0.000279222702374682,-0.0894911885261536,0.996097266674042,-0.000269687618128955,-0.0882620364427567,-0.993830859661102,-0.0192323345690966,0.109226085245609,-0.994790732860565,-0.023818239569664,0.0991165339946747,-0.988123178482056,-0.0210253018885851,0.15221856534481,-0.994790732860565,-0.023818239569664,0.0991165339946747,-0.993632972240448,-0.0293350033462048,0.108779609203339,-0.997987031936646,-0.0271393209695816,0.0573197267949581,-0.117687694728374,0.0811438336968422,-0.989730000495911,-0.117056101560593,0.0951516255736351,-0.988556563854218,-0.115687236189842,0.0951318368315697,-0.988719582557678,-0.117725417017937,0.0671116858720779,-0.990775942802429,-0.117687694728374,0.0811438336968422,-0.989730000495911,-0.119434751570225,0.0671361759305,-0.990569591522217,-0.125196531414986,0.0782235786318779,-0.989043414592743,-0.133912026882172,0.0756556019186974,-0.988101065158844,-0.125222846865654,0.0743074491620064,-0.989342033863068,-0.142605841159821,0.0742452889680862,-0.986990988254547,-0.133912026882172,0.0756556019186974,-0.988101065158844,-0.142622947692871,0.0715196132659912,-0.987189769744873,-0.13620138168335,0.0569913350045681,-0.989040553569794,-0.136234655976295,0.0785757526755333,-0.98755556344986,-0.141204372048378,0.0718284621834755,-0.987371265888214,-0.146096259355545,0.09336818754673,-0.984854459762573,-0.141204372048378,0.0718284621834755,-0.987371265888214,-0.146111682057381,0.0784634053707123,-0.986151576042175,0.999348104000092,0.0301560182124376,0.0198502261191607,0.998862147331238,0.0278521999716759,0.0387122109532356,0.998043596744537,0.0269423555582762,0.0564209707081318,0.999208807945251,0.0120066273957491,0.0379152297973633,0.999755382537842,0.012409457936883,0.0183081943541765,0.999902486801147,0.0138365169987082,0.00193756970111281,0.996517181396484,0.079321101307869,-0.0257232002913952,0.996160805225372,0.0798422619700432,-0.0359034650027752,0.995748817920685,0.0800534188747406,-0.0455606766045094,0.995883762836456,0.0832626298069954,-0.0358168929815292,0.996209859848022,0.0831391736865044,-0.0255704261362553,
- 0.996396899223328,0.0828558728098869,-0.0181154143065214,0.0116881253197789,0.977677941322327,0.209783896803856,0.00240192515775561,0.977739155292511,0.20981040596962,0.0134677439928055,0.977651834487915,0.209799200296402,0.011691452935338,0.977174878120422,0.21211501955986,0.0134661504998803,0.977157771587372,0.212088197469711,0.0231511853635311,0.97698301076889,0.212057158350945,0.998943209648132,-0.0459433980286121,-0.00136987026780844,0.999665498733521,-0.0258452389389277,-0.0009509680676274,0.99748957157135,-0.0707201212644577,-0.00364377559162676,0.999569296836853,-0.0266385525465012,0.0123140383511782,0.998849391937256,-0.0469581671059132,0.00973872188478708,0.999898791313171,-0.00393679877743125,0.0136723974719644,-0.0283129997551441,-0.995108127593994,-0.0946477428078651,-0.0230858083814383,-0.995245218276978,-0.0946256816387177,-0.0521568991243839,-0.994075417518616,-0.0953608974814415,-0.0231231898069382,-0.995365858078003,-0.0933397561311722,-0.0283472798764706,-0.995202600955963,-0.0936388447880745,0.00482277246192098,-0.9956955909729,-0.0925584807991982,0.997799754142761,-0.00334953470155597,0.0662151426076889,0.997731983661652,0.00570173049345613,0.0670714750885963,0.997759282588959,-0.013106606900692,0.0656112432479858,0.997354805469513,0.00527995126321912,0.0724953263998032,0.997386455535889,-0.00371557730250061,0.0721554905176163,0.997125566005707,0.018396632745862,0.0734991729259491,-0.999982953071594,-0.000516092695761472,0.00583154242485762,-0.999991178512573,-0.00276206154376268,0.00318882195279002,-0.999971091747284,-0.00489930715411901,0.00581337045878172,-0.999991178512573,-0.00276206154376268,0.00318882195279002,-0.999999701976776,-0.00049436732660979,0.000572850229218602,-0.999999105930328,0.00119954126421362,0.000579850166104734,-0.999180912971497,-0.0336742512881756,0.0224439091980457,-0.998550653457642,-0.0304339472204447,0.0443911850452423,-0.999014317989349,-0.0310449451208115,0.0317294411361218,-0.999014317989349,-0.0310449451208115,0.0317294411361218,-0.998550653457642,-0.0304339472204447,0.0443911850452423,
- -0.998218715190887,-0.0276499111205339,0.0528687685728073,-0.999527931213379,0.0151374442502856,-0.0267373006790876,-0.99953556060791,0.0169123262166977,-0.0253504291176796,-0.999569654464722,0.0123493280261755,-0.026610353961587,-0.999527931213379,0.0151374442502856,-0.0267373006790876,-0.999569654464722,0.0123493280261755,-0.026610353961587,-0.999559640884399,0.00990348309278488,-0.0279731098562479,0.0562861710786819,0.998161315917969,-0.0224947724491358,0.128672853112221,0.991318643093109,-0.0270309392362833,0.0665191486477852,0.997454941272736,-0.025668203830719,0.0666633546352386,0.997581303119659,-0.0196861699223518,-0.00518487486988306,0.999824404716492,-0.0180093236267567,0.0562861710786819,0.998161315917969,-0.0224947724491358,-0.00917062722146511,-0.997227966785431,-0.0738401040434837,-0.00902303773909807,-0.997229039669037,-0.0738435015082359,-0.0111612202599645,-0.997044146060944,-0.0760161578655243,-0.00917062722146511,-0.997227966785431,-0.0738401040434837,-0.00757794920355082,-0.99740082025528,-0.0716544613242149,-0.00902303773909807,-0.997229039669037,-0.0738435015082359,-0.999798476696014,-0.00349850510247052,0.0197685807943344,-0.999725759029388,-0.000142906472319737,-0.0234215706586838,-0.999993085861206,-0.000592247000895441,0.00366999697871506,-0.999181747436523,0.0028641012031585,-0.0403444841504097,-0.999993085861206,-0.000592247000895441,0.00366999697871506,-0.999727547168732,0.00153838261030614,-0.0232909172773361,-0.998835325241089,0.0482230968773365,-0.00157923379447311,-0.998587787151337,0.0531268790364265,-0.000388842105166987,-0.999327659606934,0.0366028249263763,-0.00210510566830635,-0.999527990818024,0.0305579863488674,-0.00317184231244028,-0.998835325241089,0.0482230968773365,-0.00157923379447311,-0.999327659606934,0.0366028249263763,-0.00210510566830635,-0.999347746372223,0.0204538870602846,0.0297636780887842,-0.999190926551819,0.0211175940930843,0.0342279672622681,-0.999244093894959,0.0205201599746943,0.0330202132463455,-0.999244093894959,0.0205201599746943,0.0330202132463455,-0.999394655227661,0.019842965528369,0.0285793282091618,
- -0.999347746372223,0.0204538870602846,0.0297636780887842,-0.998526275157928,0.0476804785430431,-0.0259214341640472,-0.998528301715851,0.0482354275882244,-0.024790907278657,-0.998584866523743,0.0464810468256474,-0.0258446019142866,-0.998526275157928,0.0476804785430431,-0.0259214341640472,-0.998584866523743,0.0464810468256474,-0.0258446019142866,-0.998589396476746,0.0457418411970139,-0.0269648749381304,0.0608169436454773,0.998088479042053,-0.0109864575788379,0.0488659515976906,0.998709082603455,-0.0138674974441528,0.0648267939686775,0.997835636138916,-0.0110306106507778,0.0608169436454773,0.998088479042053,-0.0109864575788379,0.0648267939686775,0.997835636138916,-0.0110306106507778,0.0750427320599556,0.997147142887115,-0.00813395064324141,-0.045562706887722,-0.998960137367249,-0.00162947922945023,-0.0481505617499352,-0.998838841915131,-0.00158770068082958,-0.0606819540262222,-0.998151957988739,0.00322399428114295,-0.045562706887722,-0.998960137367249,-0.00162947922945023,-0.0357381962239742,-0.999340713024139,-0.00639676814898849,-0.0481505617499352,-0.998838841915131,-0.00158770068082958,-0.998931169509888,0.0456813126802444,-0.00706165889278054,-0.998847782611847,0.0455140247941017,-0.0152173088863492,-0.998585999011993,0.0529821254312992,-0.00434963498264551,-0.998847782611847,0.0455140247941017,-0.0152173088863492,-0.998931169509888,0.0456813126802444,-0.00706165889278054,-0.999116718769073,0.0383307673037052,-0.0172204859554768,-0.999776661396027,0.0206926111131907,0.0042886477895081,-0.999975621700287,0.00581255601719022,0.00389386108145118,-0.999019026756287,0.0441343523561955,0.00363004393875599,-0.999819219112396,0.00590819772332907,0.0180737618356943,-0.999629020690918,0.0210539624094963,0.0172847919166088,-0.999767601490021,-0.0115707023069263,0.0181900076568127,-0.988016843795776,-0.135949745774269,-0.0730793103575706,-0.988016843795776,-0.135949715971947,-0.0730793103575706,-0.988016843795776,-0.135949730873108,-0.0730793103575706,-0.998283207416534,0.0198059659451246,-0.0551230907440186,-0.998204171657562,0.023078391328454,-0.0552794598042965,
- -0.998340606689453,0.0171596687287092,-0.0549690611660481,-0.997139573097229,0.00551195209845901,-0.0753823518753052,-0.996925890445709,0.0187727157026529,-0.0760679766535759,-0.996980905532837,0.0160273462533951,-0.0759753435850143,-0.998062670230865,0.0196132957935333,-0.0590439885854721,-0.998268127441406,0.00675195967778564,-0.0584409646689892,-0.998275876045227,0.0060169049538672,-0.05838767811656
- }
- TangentsW: *1312 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,1,-1,1,-1,1,-1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *1990 {
- a: 0,0,0.249999538064003,4.46428227718343e-010,0.249999687075615,0.249616727232933,0,0.25,0.50000011920929,0,0.500000059604645,0.249616742134094,0.749784827232361,2.5902409106493e-009,0.749784588813782,0.249616742134094,0,0.75,0.249999687075615,0.75,0.25,1,0,1,0.50000011920929,0.499924898147583,0.50000011920929,0.75,0.249999687075615,0.499233514070511,0,0.5,0,1.2568781375885,0.240647360682487,1.25873219966888,0.195089623332024,1.32213425636292,0.162611782550812,1.51858878135681,0,1.5180481672287,0.242891758680344,1.20587408542633,0.385750234127045,0.949820160865784,0.342993021011353,1.17869246006012,0.571222960948944,0.810653567314148,0.619672656059265,0.730930387973785,0.631382882595062,0.499925017356873,0.639141976833344,0.605213165283203,0.778972387313843,0.336345672607422,0.647735893726349,0.355651021003723,0.860607445240021,0.281918346881866,1,0,1,0.257905781269073,1,0.25,0.750000357627869,0.249616727232933,0.750000536441803,1.15393161692623e-009,1,0,0,0,0.249999403953552,5.33984856332381e-010,0.249999582767487,0.249616742134094,0.063594862818718,0.281497985124588,0,0.272249937057495,0.50000011920929,0,0.500000059604645,0.249616742134094,0.750000417232513,1.25756788253784,1,1.2568781375885,1,1.5180481672287,0.716458022594452,1.5180162191391,0.700160920619965,1.34467804431915,0.640259861946106,1.22542381286621,0.750000417232513,1,1,1,0.605774760246277,1.02266120910645,0.750000417232513,0.75,1,0.75,0.535210072994232,0.834527671337128,0.500000059604645,0.75,0.458685725927353,0.748897552490234,0.750000417232513,0.5,1,0.5,0.50000011920929,0.499924898147583,0.355984658002853,0.740163624286652,0.296133428812027,0.65792715549469,0.203679785132408,0.369493007659912,1,0.25,0.611500024795532,0.249833598732948,0.611270308494568,4.32935739809182e-005,1,0,0.609992146492004,1.25697803497314,1,1.2568781375885,1,1.5180481672287,0.609948217868805,1.51804804801941,0.610768258571625,1,1,1,0.611499667167664,0.75,1,0.75,0.611499190330505,0.500075101852417,1,0.5,0.749996960163116,1.5180481672287,1,1.5180481672287,
- 1,1.09413933753967,0.749623358249664,1.09413933753967,0.49999988079071,1.5180481672287,0.50001460313797,1.09413933753967,0.249994575977325,1.5180481672287,0.25019982457161,1.09413933753967,0,1.09413933753967,0,1.5180481672287,1.25063407421112,0.28023898601532,1.04925191402435,0.287471771240234,1.02559161186218,0.267938375473022,0.869291186332703,0.265816211700439,0.869262099266052,2.19941139221191e-005,1.25511157512665,-2.01753555302275e-005,0.836979508399963,1.51805424690247,0.705103695392609,1.268061876297,0.71985387802124,1.09414148330688,1,1.09414207935333,1,1.5180481672287,2.828125,1.48876953125,2.947265625,1.31787109375,2.94921875,1.4814453125,2.82421875,1.319091796875,2.611328125,1.5478515625,2.953125,1.197998046875,2.576171875,1.36328125,2.748046875,1.1640625,2.787109375,0.92730712890625,2.9453125,0.9554443359375,2.671875,1.1834716796875,2.583984375,1.295166015625,2.5625,1.253662109375,2.58203125,1.1551513671875,2.544921875,0.88519287109375,2.865234375,0.8702392578125,2.984375,0.729736328125,2.650390625,0.945404052734375,2.734375,0.8564453125,2.7890625,0.592041015625,2.974609375,0.60498046875,2.96484375,0.49609375,2.654296875,0.8538818359375,2.6875,0.7060546875,2.587890625,0.617431640625,2.591796875,0.49755859375,2.8828125,0.44921875,2.966796875,0.376953125,2.77734375,0.384765625,2.873046875,0.36767578125,2.87109375,0.1748046875,2.994140625,-0.0126953125,2.6640625,0.34814453125,2.5703125,0.35546875,2.69921875,0.22314453125,2.533203125,0.24462890625,2.478515625,0.08935546875,2.720703125,0.07275390625,2.55859375,-0.03515625,2.875,-0.0517578125,2.962890625,-0.2236328125,2.69921875,-0.0205078125,2.5625,-0.1513671875,2.861328125,-0.2021484375,2.958984375,-0.294921875,2.763671875,-0.27734375,2.712890625,-0.1669921875,2.59375,-0.306640625,2.736328125,-0.2890625,0.67431640625,0.2939453125,0.74365234375,0.3095703125,0.67236328125,0.306640625,0.328857421875,0.7886962890625,0.328125,0.80322265625,0.26220703125,0.802734375,0.096435546875,0.8009033203125,0.0965576171875,0.7197265625,0.255126953125,0.801025390625,0.255126953125,
- 0.801025390625,0.0965576171875,0.7197265625,0.25634765625,0.724853515625,0.10003662109375,0.64013671875,0.25830078125,0.646484375,0.2568359375,0.72265625,0.10003662109375,0.64013671875,0.2568359375,0.72265625,0.096435546875,0.71728515625,0.10113525390625,0.961517333984375,0.096923828125,0.8780517578125,0.255615234375,0.87860107421875,0.258056640625,0.949371337890625,0.0947265625,0.801025390625,0.0176239013671875,0.718505859375,0.09381103515625,0.718505859375,0.0947265625,0.801025390625,0.02099609375,0.8031005859375,0.329833984375,0.79833984375,0.258544921875,0.724365234375,0.334716796875,0.726806640625,0.258544921875,0.724365234375,0.2587890625,0.8011474609375,0.2578125,0.8736572265625,0.09710693359375,0.87652587890625,0.25439453125,0.80322265625,0.0966796875,0.8028564453125,0.09710693359375,0.87652587890625,0.53369140625,0.665771484375,0.419921875,0.754150390625,0.412109375,0.666748046875,0.419921875,0.754150390625,0.53369140625,0.665771484375,0.53564453125,0.7520751953125,0.6123046875,0.91302490234375,0.53759765625,0.826416015625,0.611328125,0.82666015625,0.5380859375,0.91455078125,0.53759765625,0.826416015625,0.6123046875,0.91302490234375,0.4130859375,0.8271484375,0.3447265625,0.91363525390625,0.344482421875,0.8280029296875,0.4130859375,0.8271484375,0.415771484375,0.9112548828125,0.3447265625,0.91363525390625,0.414794921875,0.9117431640625,0.5361328125,0.8265380859375,0.537109375,0.9144287109375,0.5361328125,0.8265380859375,0.414794921875,0.82763671875,0.414306640625,0.8260498046875,0.419921875,0.7552490234375,0.53662109375,0.825439453125,0.5361328125,0.7535400390625,0.53662109375,0.825439453125,0.414306640625,0.91339111328125,0.53515625,0.98907470703125,0.4140625,0.987937927246094,0.414306640625,0.91339111328125,0.53759765625,0.91546630859375,0.096435546875,0.8009033203125,0.0965576171875,0.7197265625,0.255126953125,0.8011474609375,0.255126953125,0.8011474609375,0.0965576171875,0.7197265625,0.25634765625,0.724853515625,0.10009765625,0.6396484375,0.25830078125,0.646484375,0.2568359375,0.72265625,0.2568359375,0.72265625,
- 0.0965576171875,0.71728515625,0.10101318359375,0.960968017578125,0.096923828125,0.8780517578125,0.256103515625,0.87884521484375,0.258056640625,0.949371337890625,0.0947265625,0.801025390625,0.0171356201171875,0.718994140625,0.09381103515625,0.718505859375,0.0947265625,0.801025390625,0.02099609375,0.8031005859375,0.329833984375,0.798095703125,0.258544921875,0.724365234375,0.334716796875,0.726806640625,0.258544921875,0.724365234375,0.2587890625,0.80126953125,0.25830078125,0.8736572265625,0.09710693359375,0.87652587890625,0.25439453125,0.803466796875,0.0966796875,0.8028564453125,0.09710693359375,0.87652587890625,0.419921875,0.754150390625,0.53369140625,0.665771484375,0.53564453125,0.7520751953125,0.53369140625,0.665771484375,0.419921875,0.754150390625,0.412109375,0.666748046875,0.5380859375,0.91455078125,0.53759765625,0.826416015625,0.6123046875,0.91302490234375,0.6123046875,0.91302490234375,0.53759765625,0.826416015625,0.611328125,0.82666015625,0.4130859375,0.8271484375,0.3447265625,0.91363525390625,0.3447265625,0.8280029296875,0.3447265625,0.91363525390625,0.4130859375,0.8271484375,0.415771484375,0.9112548828125,0.5361328125,0.8265380859375,0.414794921875,0.91180419921875,0.414794921875,0.82763671875,0.414794921875,0.91180419921875,0.5361328125,0.8265380859375,0.537109375,0.9144287109375,0.414306640625,0.8260498046875,0.419921875,0.75537109375,0.53662109375,0.825439453125,0.419921875,0.75537109375,0.5361328125,0.7535400390625,0.53662109375,0.825439453125,0.414306640625,0.91339111328125,0.53515625,0.989067077636719,0.4140625,0.987945556640625,0.414306640625,0.91339111328125,0.53759765625,0.91546630859375,0.416748046875,0.75341796875,0.53466796875,0.6650390625,0.53564453125,0.7520751953125,0.416748046875,0.75341796875,0.41455078125,0.666015625,0.53466796875,0.6650390625,0.53759765625,0.826416015625,0.61181640625,0.91363525390625,0.5380859375,0.9141845703125,0.61181640625,0.91363525390625,0.53759765625,0.826416015625,0.611328125,0.82666015625,0.343505859375,0.8289794921875,0.4130859375,0.8271484375,0.416748046875,0.9127197265625,
- 0.344482421875,0.9136962890625,0.5361328125,0.8265380859375,0.41259765625,0.912841796875,0.414794921875,0.82763671875,0.5361328125,0.8265380859375,0.53662109375,0.9140625,0.53662109375,0.825439453125,0.416748046875,0.7540283203125,0.5361328125,0.7535400390625,0.414306640625,0.8260498046875,0.416748046875,0.7540283203125,0.53662109375,0.825439453125,0.412109375,0.913818359375,0.53662109375,0.988548278808594,0.414794921875,0.987274169921875,0.537109375,0.91552734375,0.412109375,0.913818359375,0.53369140625,0.665771484375,0.419921875,0.754150390625,0.412109375,0.666748046875,0.419921875,0.754150390625,0.53369140625,0.665771484375,0.53564453125,0.7520751953125,0.6123046875,0.91302490234375,0.53759765625,0.826416015625,0.611328125,0.82666015625,0.5380859375,0.91455078125,0.53759765625,0.826416015625,0.6123046875,0.91302490234375,0.4130859375,0.8271484375,0.3447265625,0.91363525390625,0.344482421875,0.8280029296875,0.4130859375,0.8271484375,0.415771484375,0.9112548828125,0.3447265625,0.91363525390625,0.414794921875,0.91180419921875,0.5361328125,0.8265380859375,0.537109375,0.91436767578125,0.5361328125,0.8265380859375,0.414794921875,0.91180419921875,0.414794921875,0.82763671875,0.414306640625,0.8260498046875,0.419921875,0.7552490234375,0.53662109375,0.825439453125,0.419921875,0.7552490234375,0.5361328125,0.7535400390625,0.53662109375,0.825439453125,0.414306640625,0.91339111328125,0.53564453125,0.989067077636719,0.4140625,0.987945556640625,0.53564453125,0.989067077636719,0.414306640625,0.91339111328125,0.53759765625,0.91546630859375,0.74951171875,0.2080078125,0.751953125,0.1298828125,0.89404296875,0.13232421875,0.74951171875,0.2080078125,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.77392578125,0.38623046875,0.8974609375,0.296875,0.904296875,0.36865234375,0.8974609375,0.296875,0.77392578125,0.38623046875,0.75244140625,0.31005859375,0.89111328125,0.21044921875,0.96337890625,0.19580078125,0.97119140625,0.2802734375,0.89111328125,0.21044921875,0.97119140625,0.2802734375,0.89892578125,0.29541015625,0.67431640625,0.29248046875,
- 0.75244140625,0.2119140625,0.75048828125,0.30810546875,0.75244140625,0.2119140625,0.67431640625,0.29248046875,0.6767578125,0.2138671875,0.75244140625,0.21337890625,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.8974609375,0.29541015625,0.75244140625,0.21337890625,0.8896484375,0.2109375,0.53369140625,0.665771484375,0.419921875,0.754150390625,0.412109375,0.666748046875,0.419921875,0.754150390625,0.53369140625,0.665771484375,0.53564453125,0.7520751953125,0.6123046875,0.9129638671875,0.53759765625,0.826416015625,0.611328125,0.82666015625,0.5380859375,0.91455078125,0.53759765625,0.826416015625,0.6123046875,0.9129638671875,0.4130859375,0.8271484375,0.3447265625,0.91363525390625,0.344482421875,0.8280029296875,0.4130859375,0.8271484375,0.416015625,0.91119384765625,0.3447265625,0.91363525390625,0.414794921875,0.9117431640625,0.5361328125,0.8265380859375,0.537109375,0.9144287109375,0.5361328125,0.8265380859375,0.414794921875,0.9117431640625,0.414794921875,0.82763671875,0.414306640625,0.8260498046875,0.419921875,0.7552490234375,0.53662109375,0.825439453125,0.419921875,0.7552490234375,0.5361328125,0.7535400390625,0.53662109375,0.825439453125,0.414306640625,0.91339111328125,0.53564453125,0.98907470703125,0.4140625,0.987937927246094,0.53564453125,0.98907470703125,0.414306640625,0.91339111328125,0.53759765625,0.91546630859375,0.74951171875,0.2080078125,0.751953125,0.1298828125,0.89404296875,0.13232421875,0.74951171875,0.2080078125,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.76318359375,0.38916015625,0.8974609375,0.296875,0.904296875,0.36865234375,0.8974609375,0.296875,0.76318359375,0.38916015625,0.75244140625,0.31005859375,0.89111328125,0.2099609375,0.96337890625,0.19580078125,0.97119140625,0.2802734375,0.89111328125,0.2099609375,0.97119140625,0.2802734375,0.89892578125,0.29541015625,0.89404296875,0.13134765625,0.75146484375,0.03955078125,0.89453125,0.04541015625,0.75146484375,0.03955078125,0.89404296875,0.13134765625,0.751953125,0.12939453125,0.669921875,0.30419921875,0.75244140625,0.2119140625,0.75048828125,
- 0.30810546875,0.75244140625,0.2119140625,0.669921875,0.30419921875,0.6767578125,0.2138671875,0.75244140625,0.21337890625,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.8974609375,0.29541015625,0.75244140625,0.21337890625,0.8896484375,0.2109375,0.416748046875,0.75341796875,0.53466796875,0.6650390625,0.53564453125,0.7520751953125,0.416748046875,0.75341796875,0.41455078125,0.666015625,0.53466796875,0.6650390625,0.53759765625,0.826416015625,0.61181640625,0.91363525390625,0.5380859375,0.9141845703125,0.61181640625,0.91363525390625,0.53759765625,0.826416015625,0.611328125,0.82666015625,0.343505859375,0.8289794921875,0.4130859375,0.8271484375,0.416748046875,0.91265869140625,0.343505859375,0.8289794921875,0.344482421875,0.9136962890625,0.5361328125,0.8265380859375,0.41259765625,0.91278076171875,0.414794921875,0.82763671875,0.41259765625,0.91278076171875,0.5361328125,0.8265380859375,0.53662109375,0.9140625,0.53662109375,0.825439453125,0.416748046875,0.7540283203125,0.5361328125,0.7535400390625,0.414306640625,0.8260498046875,0.416748046875,0.7540283203125,0.53662109375,0.825439453125,0.412109375,0.913818359375,0.53662109375,0.988555908203125,0.414794921875,0.987274169921875,0.537109375,0.91552734375,0.412109375,0.913818359375,0.748046875,0.20654296875,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.748046875,0.20654296875,0.751953125,0.1298828125,0.89404296875,0.13232421875,0.763671875,0.38916015625,0.8974609375,0.296875,0.904296875,0.36865234375,0.8974609375,0.296875,0.763671875,0.38916015625,0.75244140625,0.31005859375,0.89111328125,0.21044921875,0.96337890625,0.19580078125,0.97119140625,0.2802734375,0.89111328125,0.21044921875,0.97119140625,0.2802734375,0.89892578125,0.29541015625,0.751953125,0.0390625,0.89404296875,0.13134765625,0.751953125,0.12890625,0.89404296875,0.13134765625,0.751953125,0.0390625,0.89453125,0.0458984375,0.751953125,0.21044921875,0.669921875,0.3046875,0.67578125,0.21435546875,0.669921875,0.3046875,0.751953125,0.21044921875,0.75048828125,0.30810546875,0.8974609375,0.29541015625,0.74951171875,
- 0.2119140625,0.8896484375,0.2109375,0.74951171875,0.2119140625,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.096435546875,0.8009033203125,0.0965576171875,0.7197265625,0.255126953125,0.801025390625,0.255126953125,0.801025390625,0.0965576171875,0.7197265625,0.25634765625,0.724853515625,0.10009765625,0.64013671875,0.25830078125,0.646484375,0.2568359375,0.72265625,0.10009765625,0.64013671875,0.2568359375,0.72265625,0.096435546875,0.71728515625,0.0947265625,0.801025390625,0.0175628662109375,0.718505859375,0.09375,0.718505859375,0.0175628662109375,0.718505859375,0.0947265625,0.801025390625,0.02099609375,0.8031005859375,0.329345703125,0.786865234375,0.258544921875,0.724365234375,0.334716796875,0.726806640625,0.258544921875,0.724365234375,0.329345703125,0.786865234375,0.258544921875,0.801025390625,0.251953125,0.8720703125,0.09710693359375,0.87652587890625,0.25439453125,0.80322265625,0.0966796875,0.8028564453125,0.25439453125,0.80322265625,0.09710693359375,0.87652587890625,0.74951171875,0.2080078125,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.74951171875,0.2080078125,0.75244140625,0.1298828125,0.89404296875,0.13232421875,0.7626953125,0.3896484375,0.8974609375,0.296875,0.904296875,0.36865234375,0.8974609375,0.296875,0.7626953125,0.3896484375,0.7529296875,0.31005859375,0.89111328125,0.2099609375,0.96337890625,0.19580078125,0.97119140625,0.2802734375,0.89111328125,0.2099609375,0.97119140625,0.2802734375,0.89892578125,0.29541015625,0.89404296875,0.13134765625,0.7509765625,0.03955078125,0.89453125,0.04541015625,0.7509765625,0.03955078125,0.89404296875,0.13134765625,0.751953125,0.12939453125,0.669921875,0.30419921875,0.75244140625,0.21240234375,0.75048828125,0.30859375,0.75244140625,0.21240234375,0.669921875,0.30419921875,0.6767578125,0.2138671875,0.75244140625,0.21337890625,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.8974609375,0.29541015625,0.75244140625,0.21337890625,0.8896484375,0.21044921875,0.89404296875,0.13232421875,0.75146484375,0.20751953125,0.751953125,0.1298828125,0.75146484375,0.20751953125,
- 0.89404296875,0.13232421875,0.8935546875,0.208984375,0.76513671875,0.38916015625,0.8974609375,0.296875,0.904296875,0.36865234375,0.8974609375,0.296875,0.76513671875,0.38916015625,0.7529296875,0.31005859375,0.89111328125,0.2099609375,0.96337890625,0.19580078125,0.97119140625,0.2802734375,0.89111328125,0.2099609375,0.97119140625,0.2802734375,0.89892578125,0.29541015625,0.89404296875,0.13134765625,0.7529296875,0.03955078125,0.89453125,0.04541015625,0.7529296875,0.03955078125,0.89404296875,0.13134765625,0.75146484375,0.12939453125,0.669921875,0.30419921875,0.6767578125,0.2138671875,0.75,0.30810546875,0.751953125,0.2119140625,0.75,0.30810546875,0.6767578125,0.2138671875,0.75390625,0.21337890625,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.8974609375,0.29541015625,0.75390625,0.21337890625,0.8896484375,0.2109375,0.7509765625,0.20751953125,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.7509765625,0.20751953125,0.751953125,0.1298828125,0.89404296875,0.13232421875,0.76513671875,0.38916015625,0.8974609375,0.296875,0.904296875,0.3681640625,0.8974609375,0.296875,0.76513671875,0.38916015625,0.75244140625,0.31005859375,0.89111328125,0.21044921875,0.96337890625,0.19580078125,0.970703125,0.2802734375,0.89111328125,0.21044921875,0.970703125,0.2802734375,0.89892578125,0.29541015625,0.75341796875,0.03955078125,0.89404296875,0.13134765625,0.75146484375,0.12939453125,0.89404296875,0.13134765625,0.89453125,0.04541015625,0.751953125,0.2119140625,0.75,0.30810546875,0.6767578125,0.2138671875,0.669921875,0.30419921875,0.6767578125,0.2138671875,0.75,0.30810546875,0.8974609375,0.29541015625,0.75244140625,0.212890625,0.8896484375,0.2109375,0.75244140625,0.212890625,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.096435546875,0.8009033203125,0.09649658203125,0.7197265625,0.255126953125,0.801025390625,0.09649658203125,0.7197265625,0.25634765625,0.724853515625,0.255126953125,0.801025390625,0.096435546875,0.71728515625,0.10015869140625,0.64013671875,0.2568359375,0.72265625,0.2568359375,0.72265625,0.10015869140625,0.64013671875,
- 0.25830078125,0.646484375,0.1011962890625,0.961456298828125,0.255615234375,0.8785400390625,0.258056640625,0.949371337890625,0.1011962890625,0.961456298828125,0.096923828125,0.8780517578125,0.255615234375,0.8785400390625,0.0175628662109375,0.718505859375,0.0947265625,0.801025390625,0.02099609375,0.8031005859375,0.0947265625,0.801025390625,0.0175628662109375,0.718505859375,0.09375,0.718505859375,0.258544921875,0.724365234375,0.329833984375,0.7984619140625,0.2587890625,0.8011474609375,0.329833984375,0.7984619140625,0.258544921875,0.724365234375,0.334716796875,0.726806640625,0.09710693359375,0.87652587890625,0.25439453125,0.8033447265625,0.2578125,0.8736572265625,0.09710693359375,0.87652587890625,0.0966796875,0.8028564453125,0.74951171875,0.2080078125,0.751953125,0.1298828125,0.89404296875,0.13232421875,0.74951171875,0.2080078125,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.763671875,0.38916015625,0.8974609375,0.296875,0.904296875,0.36865234375,0.8974609375,0.296875,0.763671875,0.38916015625,0.75244140625,0.31005859375,0.89111328125,0.21044921875,0.96337890625,0.19580078125,0.97119140625,0.2802734375,0.89111328125,0.21044921875,0.97119140625,0.2802734375,0.89892578125,0.29541015625,0.89404296875,0.13134765625,0.75146484375,0.03955078125,0.89453125,0.0458984375,0.75146484375,0.03955078125,0.89404296875,0.13134765625,0.751953125,0.12939453125,0.669921875,0.30419921875,0.75244140625,0.2119140625,0.75048828125,0.30810546875,0.75244140625,0.2119140625,0.669921875,0.30419921875,0.6767578125,0.2138671875,0.75244140625,0.21337890625,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.8974609375,0.29541015625,0.75244140625,0.21337890625,0.8896484375,0.2109375,0.748046875,0.20703125,0.751953125,0.1298828125,0.89404296875,0.13232421875,0.89404296875,0.13232421875,0.89404296875,0.208984375,0.76416015625,0.39013671875,0.8974609375,0.296875,0.904296875,0.3642578125,0.8974609375,0.296875,0.75244140625,0.30859375,0.8916015625,0.21044921875,0.96337890625,0.19580078125,0.97021484375,0.2802734375,0.8916015625,0.21044921875,
- 0.97021484375,0.2802734375,0.89892578125,0.29541015625,0.89404296875,0.13134765625,0.751953125,0.03857421875,0.89453125,0.0458984375,0.751953125,0.03857421875,0.89404296875,0.13134765625,0.751953125,0.12890625,0.6708984375,0.3046875,0.75341796875,0.2109375,0.7509765625,0.30810546875,0.67578125,0.21435546875,0.74951171875,0.2119140625,0.8974609375,0.29541015625,0.751953125,0.30810546875,0.8974609375,0.29541015625,0.74951171875,0.2119140625,0.8896484375,0.21142578125,0.096435546875,0.8009033203125,0.096435546875,0.71923828125,0.255126953125,0.8011474609375,0.25634765625,0.724853515625,0.255126953125,0.8011474609375,0.096435546875,0.71923828125,0.2568359375,0.72265625,0.096435546875,0.71728515625,0.258056640625,0.64697265625,0.096435546875,0.71728515625,0.09771728515625,0.640625,0.258056640625,0.64697265625,0.096923828125,0.8780517578125,0.258544921875,0.950347900390625,0.09747314453125,0.9583740234375,0.096923828125,0.8780517578125,0.258056640625,0.8782958984375,0.01776123046875,0.721923828125,0.0947265625,0.801025390625,0.02099609375,0.8031005859375,0.0947265625,0.801025390625,0.09405517578125,0.71826171875,0.3291015625,0.7987060546875,0.258544921875,0.724365234375,0.334228515625,0.7255859375,0.258544921875,0.724365234375,0.2587890625,0.80126953125,0.09710693359375,0.87652587890625,0.25439453125,0.803466796875,0.26025390625,0.872802734375,0.25439453125,0.803466796875,0.09710693359375,0.87652587890625,0.0966796875,0.8028564453125,0.89404296875,0.13232421875,0.74951171875,0.2080078125,0.75244140625,0.1298828125,0.74951171875,0.2080078125,0.89404296875,0.13232421875,0.8935546875,0.208984375,0.8974609375,0.296875,0.76220703125,0.3896484375,0.7529296875,0.31005859375,0.76220703125,0.3896484375,0.8974609375,0.296875,0.904296875,0.369140625,0.89111328125,0.20947265625,0.9716796875,0.2802734375,0.89892578125,0.29541015625,0.96337890625,0.19580078125,0.89404296875,0.13134765625,0.75048828125,0.0400390625,0.89453125,0.04541015625,0.75048828125,0.0400390625,0.89404296875,0.13134765625,0.751953125,0.12939453125,0.669921875,0.3037109375,
- 0.75244140625,0.21240234375,0.75048828125,0.30859375,0.75244140625,0.21240234375,0.669921875,0.3037109375,0.6767578125,0.2138671875,0.8974609375,0.29541015625,0.751953125,0.2138671875,0.8896484375,0.2099609375,0.8974609375,0.29541015625,0.75244140625,0.30859375,0.096435546875,0.8009033203125,0.0965576171875,0.7197265625,0.25537109375,0.8013916015625,0.0965576171875,0.7197265625,0.25634765625,0.724853515625,0.25537109375,0.8013916015625,0.09649658203125,0.71728515625,0.10040283203125,0.639404296875,0.2568359375,0.72265625,0.2568359375,0.72265625,0.10040283203125,0.639404296875,0.25830078125,0.646484375,0.101318359375,0.960845947265625,0.25634765625,0.87738037109375,0.258056640625,0.949371337890625,0.096923828125,0.8780517578125,0.01605224609375,0.718994140625,0.0947265625,0.801025390625,0.02099609375,0.8031005859375,0.0947265625,0.801025390625,0.09375,0.718505859375,0.258544921875,0.724365234375,0.330078125,0.799560546875,0.2607421875,0.8013916015625,0.258544921875,0.724365234375,0.334716796875,0.726806640625,0.0966796875,0.8028564453125,0.25830078125,0.874267578125,0.09710693359375,0.87652587890625,0.0966796875,0.8028564453125,0.254638671875,0.80517578125,0.5341796875,0.666259765625,0.419921875,0.7542724609375,0.412353515625,0.66650390625,0.5341796875,0.666259765625,0.53564453125,0.7520751953125,0.6123046875,0.91259765625,0.53759765625,0.826416015625,0.611328125,0.82666015625,0.5380859375,0.9146728515625,0.53759765625,0.826416015625,0.4130859375,0.8271484375,0.344970703125,0.91387939453125,0.3447265625,0.827880859375,0.4130859375,0.8271484375,0.415771484375,0.91009521484375,0.414794921875,0.91064453125,0.5361328125,0.8265380859375,0.537109375,0.91448974609375,0.5361328125,0.8265380859375,0.414794921875,0.82763671875,0.414306640625,0.8260498046875,0.419677734375,0.75537109375,0.53662109375,0.825439453125,0.53662109375,0.825439453125,0.5361328125,0.7535400390625,0.4140625,0.91357421875,0.53662109375,0.91552734375,0.4140625,0.988288879394531,0.5361328125,0.989028930664063,0.53662109375,0.91552734375,0.74951171875,0.2080078125,
- 0.89404296875,0.13232421875,0.8935546875,0.208984375,0.89404296875,0.13232421875,0.74951171875,0.2080078125,0.751953125,0.1298828125,0.763671875,0.38916015625,0.8974609375,0.296875,0.904296875,0.36865234375,0.8974609375,0.296875,0.763671875,0.38916015625,0.75244140625,0.31005859375,0.89111328125,0.21044921875,0.96337890625,0.19580078125,0.97119140625,0.2802734375,0.89111328125,0.21044921875,0.97119140625,0.2802734375,0.89892578125,0.29541015625,0.89404296875,0.13134765625,0.751953125,0.0390625,0.89453125,0.04541015625,0.751953125,0.0390625,0.89404296875,0.13134765625,0.751953125,0.12939453125,0.669921875,0.30419921875,0.75244140625,0.2119140625,0.75048828125,0.30810546875,0.75244140625,0.2119140625,0.669921875,0.30419921875,0.6767578125,0.2138671875,0.75244140625,0.21337890625,0.8974609375,0.29541015625,0.75244140625,0.30810546875,0.8974609375,0.29541015625,0.75244140625,0.21337890625,0.8896484375,0.2109375,0.096435546875,0.8009033203125,0.25634765625,0.723876953125,0.254638671875,0.802978515625,0.096435546875,0.8009033203125,0.09295654296875,0.7158203125,0.104736328125,0.6396484375,0.259033203125,0.646728515625,0.09246826171875,0.71728515625,0.256591796875,0.721923828125,0.105712890625,0.957427978515625,0.09649658203125,0.87646484375,0.2548828125,0.8785400390625,0.25830078125,0.950531005859375,0.0210418701171875,0.80078125,0.01690673828125,0.723388671875,0.09393310546875,0.718994140625,0.09393310546875,0.718994140625,0.0947265625,0.801025390625,0.25830078125,0.8004150390625,0.334716796875,0.729248046875,0.329833984375,0.7978515625,0.2587890625,0.72314453125,0.0966796875,0.8028564453125,0.254150390625,0.8031005859375,0.0966796875,0.87615966796875,0.25732421875,0.8740234375,0.254150390625,0.8031005859375,0.09600830078125,0.801025390625,0.09649658203125,0.719482421875,0.256591796875,0.72509765625,0.25537109375,0.80078125,0.10040283203125,0.64013671875,0.25830078125,0.646484375,0.2568359375,0.724365234375,0.09637451171875,0.717041015625,0.1014404296875,0.9610595703125,0.096923828125,0.8780517578125,0.25537109375,0.87664794921875,
- 0.258056640625,0.949371337890625,0.09259033203125,0.801513671875,0.02099609375,0.8031005859375,0.017181396484375,0.718994140625,0.0933837890625,0.718505859375,0.257568359375,0.724365234375,0.32958984375,0.8004150390625,0.26171875,0.80078125,0.334716796875,0.726806640625,0.257568359375,0.8740234375,0.096435546875,0.801025390625,0.25439453125,0.80615234375,0.09710693359375,0.87652587890625,0.89404296875,0.13134765625,0.76220703125,0.03759765625,0.89453125,0.04541015625,0.76220703125,0.03759765625,0.89404296875,0.13134765625,0.751953125,0.12939453125,0.76220703125,0.03759765625,0.751953125,0.12939453125,0.75,0.05224609375,0.1011962890625,0.961456298828125,0.096923828125,0.8780517578125,0.2498779296875,0.87451171875,0.256591796875,0.88946533203125,0.1011962890625,0.961456298828125,0.2498779296875,0.87451171875,0.1011962890625,0.961456298828125,0.256591796875,0.88946533203125,0.258056640625,0.949371337890625
- }
- UVIndex: *1312 {
- a: 0,1,2,3,4,5,2,1,6,7,5,4,8,9,10,11,12,13,9,14,15,14,9,8,5,12,14,2,3,2,14,15,16,17,18,19,20,11,10,21,17,16,22,23,21,10,13,24,22,10,9,25,24,13,26,27,25,13,12,7,28,29,26,12,5,7,30,28,31,32,30,7,6,33,34,35,36,37,38,39,40,41,38,42,43,39,42,35,34,43,44,45,46,47,44,47,48,49,45,44,50,51,50,44,49,52,53,54,51,50,53,50,52,55,56,56,55,57,54,53,58,59,58,53,56,60,39,60,56,57,61,62,63,40,34,33,59,58,34,58,60,43,43,60,39,64,65,66,67,68,69,70,71,69,68,72,73,74,75,73,72,75,74,76,77,65,64,77,76,78,79,80,81,82,78,81,83,84,82,83,85,86,87,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,100,99,102,103,102,99,102,104,100,105,102,103,106,104,102,105,106,102,107,104,106,107,108,104,105,109,106,109,107,106,110,109,105,111,109,110,112,109,111,113,109,112,114,108,107,108,114,115,107,109,116,109,113,116,117,114,107,107,116,117,114,118,115,117,118,114,115,118,119,118,120,119,121,117,116,116,113,121,121,122,117,113,122,121,117,122,118,123,122,113,123,118,122,124,118,123,125,120,118,118,124,125,125,126,120,124,127,125,128,126,125,127,128,125,129,126,128,127,129,128,129,130,126,124,131,127,132,131,124,133,127,131,132,133,131,127,133,129,134,133,132,135,133,134,133,135,136,129,133,136,137,136,135,129,138,130,136,138,129,138,139,130,136,137,140,136,140,138,141,140,137,142,139,138,142,143,139,142,144,143,145,138,140,138,145,142,140,141,145,144,142,145,141,146,145,145,147,144,146,147,145,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,166,168,169,170,171,172,171,173,174,175,176,177,178,175,179,180,181,182,183,182,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,203,207,208,209,210,209,211,212,213,214,215,214,216,217,218,219,220,221,222,223,224,225,226,224,227,228,229,230,231,229,231,232,233,234,235,234,236,237,238,239,240,241,238,242,243,244,245,246,245,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,279,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,
- 296,297,295,297,298,299,300,301,300,302,303,304,305,306,307,308,309,310,311,312,313,311,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,467,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,483,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,643,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,691,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,731,734,735,736,737,738,739,736,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,754,753,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,776,778,779,780,781,782,783,780,784,785,786,787,788,785,789,790,791,792,793,
- 794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,808,811,809,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,825,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,841,844,842,845,846,847,848,845,849,850,851,852,851,853,854,855,856,857,856,858,859,860,861,862,861,863,864,865,866,867,868,869,865,870,871,872,871,873,874,875,876,877,878,875,879,880,881,882,883,881,884,885,886,887,888,887,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,927,929,930,931,932,933,933,932,934,935,936,937,935,937,938,939,940,941,942,943,939,944,945,946,944,947,945,948,949,950,951,950,952,953,954,955,956,953,955,957,958,959,959,960,957,961,962,963,961,963,964,965,966,967,965,967,968,969,970,971,969,972,970,973,974,975,974,973,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *656 {
- a: 0,0,0,0,0,0,0,1,0,1,0,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,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,1,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,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,1,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "ByPolygon"
- ReferenceInformationType: "IndexToDirect"
- Materials: *418 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2333008460976, "Geometry::", "Mesh" {
- Vertices: *120 {
- a: 0,-9.5367431640625e-007,62.5,400,0,62.5,0,600,62.5,200,0,62.5,0,400,62.5,200,200,62.5,0,200,62.5,311.794921875,134.767990112305,63.06982421875,65.044921875,600,62.5,96.2578125,500,62.5,154.298828125,379.579650878906,62.2646484375,78.03515625,524.471252441406,63.54736328125,137.19921875,469.079315185547,62.5,228.53515625,324.551605224609,62.6005859375,248.03125,291.636444091797,63.1767578125,252.61328125,200,62.5,400,103.328262329102,62.5,259.12109375,142.456451416016,62.5,0,600,-62.5,113.41796875,600,-62.5,119.9453125,533.917602539063,-62.6416015625,143.93359375,489.501617431641,-63.07421875,157.677734375,408.176727294922,-62.296875,185.88671875,333.994781494141,-62.02587890625,257.61328125,296.496520996094,-62.5693359375,318.53125,148.033187866211,-62.5,400,-3.57627868652344e-007,-62.5,400.3125,109.051155090332,-61.6806640625,281.556640625,263.546539306641,-62.58447265625,0,-4.76837158203125e-007,-62.5,200,0,-62.5,0,400,-62.5,0,200,-62.5,200,200,-62.5,119.796875,600,-11.2373046875,130.0234375,533.583801269531,-16.990234375,177.4296875,395.705444335938,2.029296875,231.9921875,311.702728271484,-3.24072265625,303.54296875,199.245193481445,-8.643310546875,340.212890625,142.154113769531,-7.22265625
- }
- PolygonVertexIndex: *172 {
- a: 0,3,5,-7,6,5,13,10,-5,4,10,12,9,11,8,-3,13,5,15,-15,3,17,15,-6,1,16,7,-4,30,29,32,-34,27,26,30,-34,21,22,31,18,19,-21,33,32,31,22,-24,24,33,-24,32,29,0,-7,18,31,4,-3,31,32,6,-5,3,0,29,-31,1,3,30,-27,27,16,1,-27,8,34,19,18,-3,34,20,-20,20,34,-36,8,35,-35,35,21,-21,11,35,-9,12,21,-36,35,9,-13,36,21,-13,36,22,-22,35,11,-10,22,36,-24,12,10,-37,36,37,-24,23,37,-25,37,36,10,-14,14,37,-14,28,24,-38,37,14,-29,38,28,-15,38,25,-29,15,38,-15,17,38,-16,7,38,-18,38,39,-26,39,27,-26,38,7,-40,7,16,-40,16,27,-40,7,17,-4,27,33,24,28,-26
- }
- Edges: *86 {
- a: 0,14,27,15,8,5,1,2,3,26,7,13,12,10,17,148,24,25,19,18,6,21,57,40,41,49,138,69,70,32,153,128,45,39,28,33,38,43,29,37,31,30,35,46,36,51,55,53,74,75,65,79,83,84,85,88,91,94,96,97,100,103,102,11,110,113,115,116,119,124,125,130,132,134,137,136,140,143,146,149,150,152,156,159,20,47
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *516 {
- a: 0,0,1,0.000165684905368835,-0.000543706584721804,0.999999940395355,-0.000339278223691508,0.00020014590700157,0.999999940395355,-1.94578569789883e-006,0.00031212973408401,0.999999940395355,-1.94578569789883e-006,0.00031212973408401,0.999999940395355,-0.000339278223691508,0.00020014590700157,0.999999940395355,-0.000360170262865722,0.000509017612785101,0.999999821186066,-0.000426939339376986,0.000185310578672215,0.99999988079071,-0.000800690904725343,-0.000211103208130226,0.999999642372131,-0.000800690904725343,-0.000211103208130226,0.999999642372131,-0.000426939339376986,0.000185310578672215,0.99999988079071,-0.00195624493062496,-0.00143672479316592,0.999997079372406,-0.00195624469779432,-0.0014367246767506,0.999996960163116,-0.00195624469779432,-0.00143672479316592,0.999997019767761,-0.00195624469779432,-0.0014367246767506,0.999997019767761,-0.00195624469779432,-0.00143672479316592,0.999997019767761,-0.000360170262865722,0.000509017612785101,0.999999821186066,-0.000339278223691508,0.00020014590700157,0.999999940395355,-0.00304828747175634,-0.000857805367559195,0.999994993209839,-0.00916749518364668,-0.00257978518493474,0.999954700469971,0.000165684905368835,-0.000543706584721804,0.999999940395355,-0.00275406404398382,0.00114295969251543,0.999995589256287,-0.00304828747175634,-0.000857805367559195,0.999994993209839,-0.000339278223691508,0.00020014590700157,0.999999940395355,0.00163244607392699,-0.00315973022952676,0.999993622303009,0.00163244607392699,-0.00315973022952676,0.999993681907654,0.000387936714105308,-0.00238218042068183,0.999997079372406,0.000165684905368835,-0.000543706584721804,0.999999940395355,0.00115502800326794,0.00115502800326794,-0.99999862909317,0,0,-1,0.000719080562703311,0.000370896013919264,-0.999999642372131,0.000718684867024422,0.000390701839933172,-0.999999582767487,0.00263373693451285,0.00262479274533689,-0.999993145465851,0.00264843739569187,0.00264843739569187,-0.999993026256561,0.00115502800326794,0.00115502800326794,-0.99999862909317,0.000718684867024422,0.000390701839933172,-0.999999582767487,
- -0.0013155130436644,-0.00104276335332543,-0.999998509883881,0.00049852003576234,0.000129510692204349,-0.99999988079071,0.000373662711353973,4.88246114400681e-005,-0.999999940395355,-0.00131551316007972,-0.00104276335332543,-0.999998569488525,-0.0013155130436644,-0.0010427632369101,-0.99999862909317,-0.00131551316007972,-0.00104276335332543,-0.99999862909317,0.000718684867024422,0.000390701839933172,-0.999999582767487,0.000719080562703311,0.000370896013919264,-0.999999642372131,0.000373662711353973,4.88246114400681e-005,-0.999999940395355,0.00049852003576234,0.000129510692204349,-0.99999988079071,0.00118119490798563,0.000845708244014531,-0.999998927116394,-0.00434130616486073,-0.00262038735672832,-0.999987185001373,0.000718684867024422,0.000390701839933172,-0.999999582767487,0.00118119490798563,0.000845708244014531,-0.999998927116394,-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.34110456073699e-009,-1,-2.38418451647959e-010,3.57627860658738e-009,-1,-1.90734827931749e-009,3.57627860658738e-009,-1,-1.90734827931749e-009,1.34110456073699e-009,-1,-2.38418451647959e-010,-8.94069651646845e-010,-1,1.43051148704387e-009,1.34110456073699e-009,-1,-2.38418451647959e-010,1.34110456073699e-009,-1,-2.38418451647959e-010,-8.94069651646845e-010,-1,1.43051148704387e-009,0.999998152256012,-0.00147606094833463,0.00122020568232983,0.999998152256012,-0.00147606094833463,0.00122020568232983,0.999998211860657,-0.00147606083191931,0.00122020568232983,0.999998211860657,-0.00147606106474996,0.00122020579874516,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,0,0.920371472835541,0.0948218777775764,0.37937468290329,0.944819748401642,0.272794604301453,-0.181380495429039,0.987588167190552,0.0978129282593727,-0.122891083359718,0.944819748401642,0.272794604301453,-0.181380495429039,0.920371472835541,0.0948218777775764,0.37937468290329,0.937592208385468,0.253756523132324,0.237756818532944,0.816133141517639,0.122592695057392,0.564710199832916,0.937592208385468,0.253756523132324,0.237756818532944,
- 0.920371472835541,0.0948218777775764,0.37937468290329,0.937592208385468,0.253756523132324,0.237756818532944,0.946261465549469,0.322601556777954,0.0227507948875427,0.944819748401642,0.272794604301453,-0.181380495429039,0.80384236574173,0.236784294247627,0.545683741569519,0.937592208385468,0.253756523132324,0.237756818532944,0.816133141517639,0.122592695057392,0.564710199832916,0.873433828353882,0.417628139257431,0.250399678945541,0.946261465549469,0.322601556777954,0.0227507948875427,0.937592208385468,0.253756523132324,0.237756818532944,0.937592208385468,0.253756523132324,0.237756818532944,0.592019438743591,0.620903372764587,0.513801395893097,0.873433828353882,0.417628139257431,0.250399678945541,0.874444663524628,0.481803745031357,0.0566717721521854,0.946261465549469,0.322601556777954,0.0227507948875427,0.873433828353882,0.417628139257431,0.250399678945541,0.874444663524628,0.481803745031357,0.0566717721521854,0.940914154052734,0.235620722174644,-0.243235319852829,0.946261465549469,0.322601556777954,0.0227507948875427,0.937592208385468,0.253756523132324,0.237756818532944,0.80384236574173,0.236784294247627,0.545683741569519,0.592019438743591,0.620903372764587,0.513801395893097,0.940914154052734,0.235620722174644,-0.243235319852829,0.874444663524628,0.481803745031357,0.0566717721521854,0.759885430335999,0.589804530143738,-0.273321926593781,0.873433828353882,0.417628139257431,0.250399678945541,0.81309175491333,0.524874567985535,0.251770466566086,0.874444663524628,0.481803745031357,0.0566717721521854,0.874444663524628,0.481803745031357,0.0566717721521854,0.721439719200134,0.692403674125671,0.0100885359570384,0.759885430335999,0.589804530143738,-0.273321926593781,0.759885430335999,0.589804530143738,-0.273321926593781,0.721439719200134,0.692403674125671,0.0100885359570384,0.643369197845459,0.761067926883698,0.0827745869755745,0.721439719200134,0.692403674125671,0.0100885359570384,0.874444663524628,0.481803745031357,0.0566717721521854,0.81309175491333,0.524874567985535,0.251770466566086,0.749566912651062,0.647234439849854,0.138697743415833,
- 0.883409738540649,0.406217128038406,0.233612403273582,0.721439719200134,0.692403674125671,0.0100885359570384,0.749566912651062,0.647234439849854,0.138697743415833,0.88290673494339,0.458779603242874,0.0999851524829865,0.643369197845459,0.761067926883698,0.0827745869755745,0.721439719200134,0.692403674125671,0.0100885359570384,0.721439719200134,0.692403674125671,0.0100885359570384,0.883409738540649,0.406217128038406,0.233612403273582,0.88290673494339,0.458779603242874,0.0999851524829865,0.893125116825104,0.382441192865372,0.236783027648926,0.88290673494339,0.458779603242874,0.0999851524829865,0.883409738540649,0.406217128038406,0.233612403273582,0.893125116825104,0.382441192865372,0.236783027648926,0.761907279491425,0.63748961687088,-0.114473350346088,0.88290673494339,0.458779603242874,0.0999851524829865,0.812096536159515,0.0567484013736248,0.580757141113281,0.893125116825104,0.382441192865372,0.236783027648926,0.883409738540649,0.406217128038406,0.233612403273582,0.487884998321533,0.507818758487701,0.709991693496704,0.893125116825104,0.382441192865372,0.236783027648926,0.812096536159515,0.0567484013736248,0.580757141113281,0.36116749048233,0.822031795978546,0.440251886844635,0.893125116825104,0.382441192865372,0.236783027648926,0.487884998321533,0.507818758487701,0.709991693496704,0.893125116825104,0.382441192865372,0.236783027648926,0.58348023891449,0.807373285293579,0.087744802236557,0.761907279491425,0.63748961687088,-0.114473350346088,0.58348023891449,0.807373285293579,0.087744802236557,0.487186461687088,0.873271346092224,0.00682813953608274,0.761907279491425,0.63748961687088,-0.114473350346088,0.893125116825104,0.382441192865372,0.236783027648926,0.36116749048233,0.822031795978546,0.440251886844635,0.58348023891449,0.807373285293579,0.087744802236557,0.36116749048233,0.822031795978546,0.440251886844635,0.432486444711685,0.892753005027771,0.126283049583435,0.58348023891449,0.807373285293579,0.087744802236557,0.432486444711685,0.892753005027771,0.126283049583435,0.487186461687088,0.873271346092224,0.00682813953608274,
- 0.58348023891449,0.807373285293579,0.087744802236557,0.000387936714105308,-0.00238218042068183,0.999997079372406,-0.00275406404398382,0.00114295969251543,0.999995589256287,0.000165684905368835,-0.000543706584721804,0.999999940395355,0.00263373693451285,0.00262479274533689,-0.999993145465851,0.000718684867024422,0.000390701839933172,-0.999999582767487,-0.00434130616486073,-0.00262038735672832,-0.999987185001373,-0.00310171721503139,-0.00660029659047723,-0.99997341632843,-0.00310171768069267,-0.0066002975217998,-0.99997341632843
- }
- NormalsW: *172 {
- 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
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *516 {
- a: -4.76837147544984e-009,1,0,-0.00078066362766549,0.999999642372131,0.000543835747521371,0.00541614880785346,0.999985337257385,-0.000198305409867316,-0.000478843780001625,0.99999988079071,-0.000312130636302754,-0.000478843780001625,0.99999988079071,-0.000312130636302754,0.00541614880785346,0.999985337257385,-0.000198305409867316,0.01041938085109,0.999945640563965,-0.000505237258039415,0.00106827460695058,0.999999403953552,-0.000184854405233637,0.000578986015170813,0.999999821186066,0.000211566832149401,0.000578986015170813,0.999999821186066,0.000211566832149401,0.00106827460695058,0.999999403953552,-0.000184854405233637,0.00254641007632017,0.999995768070221,0.00144170434214175,-0.000488120596855879,0.999998867511749,0.00143577251583338,-0.00354386866092682,0.999992728233337,0.00142978597432375,-0.00155515701044351,0.999997854232788,0.00143368355929852,0.00320871500298381,0.999993801116943,0.00144299725070596,0.01041938085109,0.999945640563965,-0.000505237258039415,0.00541614880785346,0.999985337257385,-0.000198305409867316,9.01249222806655e-007,0.999999642372131,0.0008578120614402,0.0178421847522259,0.999837040901184,0.00274305720813572,-0.00078066362766549,0.999999642372131,0.000543835747521371,-0.00124498666264117,0.999998569488525,-0.00114639184903353,9.01249222806655e-007,0.999999642372131,0.0008578120614402,0.00541614880785346,0.999985337257385,-0.000198305409867316,8.55917896842584e-005,0.999995112419128,0.00315959518775344,0.000171183593920432,0.999994993209839,0.00315945479087532,-0.00021706908592023,0.999997198581696,0.00238226470537484,-0.00078066362766549,0.999999642372131,0.000543835747521371,-0.000225924275582656,0.999999344348907,0.00115476793143898,-7.51030456740409e-005,1,0,-0.000880455540027469,0.999999642372131,0.000370262918295339,-0.00573592213913798,0.999983549118042,0.000386573257856071,-0.0121741658076644,0.999922573566437,0.00259254360571504,1.78806658368558e-009,0.999996542930603,0.00264844670891762,-0.000225924275582656,0.999999344348907,0.00115476793143898,-0.00573592213913798,0.999983549118042,0.000386573257856071,
- 0.00210393383167684,0.99999725818634,-0.001045529730618,0.000836671271827072,0.999999642372131,0.000129927764646709,-0.00194083608221263,0.999998152256012,4.80993076052982e-005,0.000157260146806948,0.999999523162842,-0.00104297127109021,-0.000107388557808008,0.999999463558197,-0.00104262284003198,0.0088294455781579,0.999960541725159,-0.00105433887802064,-0.00573592213913798,0.999983549118042,0.000386573257856071,-0.000880455540027469,0.999999642372131,0.000370262918295339,-0.00194083608221263,0.999998152256012,4.80993076052982e-005,0.000836671271827072,0.999999642372131,0.000129927764646709,-0.0044296714477241,0.999989926815033,0.000840468390379101,-0.00309210736304522,0.999991834163666,-0.00260697561316192,-0.00573592213913798,0.999983549118042,0.000386573257856071,-0.0044296714477241,0.999989926815033,0.000840468390379101,0,1,-0.00016021219198592,0,1,-0.000189423124538735,0,1,-0.000138535615405999,0,1,-0.000206390730454586,0,1,3.68179883025732e-007,0,1,1.22726632412196e-007,0,1,-8.0108642578125e-005,0,1,1.84089941512866e-007,0,1,1.22726632412196e-007,0,1,-0.00016021219198592,0,1,-0.000206390730454586,0,1,-8.0108642578125e-005,2.36847451972921e-019,-2.38418451647959e-010,1,6.82120885020778e-018,-1.90734827931749e-009,1,4.54747256680519e-018,-1.90734827931749e-009,1,4.26325423891015e-019,-2.38418451647959e-010,1,-0,1.43051148704387e-009,1,2.36847451972921e-019,-2.38418451647959e-010,1,4.26325423891015e-019,-2.38418451647959e-010,1,1.27897694375729e-018,1.43051148704387e-009,1,0.00147496839053929,0.99999862909317,0.000896044308319688,0.00147543521597981,0.999998807907104,0.00051359465578571,0.0014759018085897,0.999998927116394,0.000131145017803647,0.00147543509956449,0.99999874830246,0.000513594597578049,0.000424779544118792,-0,1,0.00082199793541804,-0,0.999999701976776,0.000282669789157808,-0,1,-1.54966778609378e-006,0,1,1.3005691471335e-005,-0,1,-0.143372014164925,0.984421908855438,0.101774796843529,-0.262224197387695,0.961653590202332,0.0803796648979187,-0.0898129194974899,0.993562519550323,0.0690455511212349,-0.262224197387695,0.961653590202332,0.0803796648979187,
- -0.143372014164925,0.984421908855438,0.101774796843529,-0.284828662872314,0.952647984027863,0.10646378993988,-0.248665124177933,0.956636011600494,0.151701286435127,-0.284828662872314,0.952647984027863,0.10646378993988,-0.143372014164925,0.984421908855438,0.101774796843529,-0.284828662872314,0.952647984027863,0.10646378993988,-0.323156476020813,0.945943176746368,0.0275932420045137,-0.262224197387695,0.961653590202332,0.0803796648979187,-0.348492354154587,0.93090283870697,0.109421886503696,-0.284828662872314,0.952647984027863,0.10646378993988,-0.248665124177933,0.956636011600494,0.151701286435127,-0.436533689498901,0.899403274059296,0.0226325411349535,-0.323156476020813,0.945943176746368,0.0275932420045137,-0.284828662872314,0.952647984027863,0.10646378993988,-0.284828662872314,0.952647984027863,0.10646378993988,-0.677314698696136,0.728821575641632,-0.100319549441338,-0.436533689498901,0.899403274059296,0.0226325411349535,-0.481714636087418,0.876179814338684,-0.0161262191832066,-0.323156476020813,0.945943176746368,0.0275932420045137,-0.436533689498901,0.899403274059296,0.0226325411349535,-0.481714636087418,0.876179814338684,-0.0161262191832066,-0.251133561134338,0.967340648174286,-0.0344094596803188,-0.323156476020813,0.945943176746368,0.0275932420045137,-0.284828662872314,0.952647984027863,0.10646378993988,-0.348492354154587,0.93090283870697,0.109421886503696,-0.677314698696136,0.728821575641632,-0.100319549441338,-0.251133561134338,0.967340648174286,-0.0344094596803188,-0.481714636087418,0.876179814338684,-0.0161262191832066,-0.604868054389954,0.795552372932434,0.0350866094231606,-0.436533689498901,0.899403274059296,0.0226325411349535,-0.530061781406403,0.846329689025879,-0.0525402128696442,-0.481714636087418,0.876179814338684,-0.0161262191832066,-0.481714636087418,0.876179814338684,-0.0161262191832066,-0.69245308637619,0.721459746360779,0.00216230563819408,-0.604868054389954,0.795552372932434,0.0350866094231606,-0.604868054389954,0.795552372932434,0.0350866094231606,-0.69245308637619,0.721459746360779,0.00216230563819408,
- -0.765347421169281,0.641947269439697,0.0463367290794849,-0.69245308637619,0.721459746360779,0.00216230563819408,-0.481714636087418,0.876179814338684,-0.0161262191832066,-0.530061781406403,0.846329689025879,-0.0525402128696442,-0.642975926399231,0.761723637580872,-0.0797438025474548,-0.414871335029602,0.909785330295563,-0.0131372082978487,-0.69245308637619,0.721459746360779,0.00216230563819408,-0.642975926399231,0.761723637580872,-0.0797438025474548,-0.462790817022324,0.886238932609558,0.0201306603848934,-0.765347421169281,0.641947269439697,0.0463367290794849,-0.69245308637619,0.721459746360779,0.00216230563819408,-0.69245308637619,0.721459746360779,0.00216230563819408,-0.414871335029602,0.909785330295563,-0.0131372082978487,-0.462790817022324,0.886238932609558,0.0201306603848934,-0.406423330307007,0.911680459976196,0.0604887679219246,-0.462790817022324,0.886238932609558,0.0201306603848934,-0.414871335029602,0.909785330295563,-0.0131372082978487,-0.406423330307007,0.911680459976196,0.0604887679219246,-0.639805495738983,0.768275380134583,0.0200493223965168,-0.462790817022324,0.886238932609558,0.0201306603848934,-0.234254419803619,0.943245708942413,0.235398769378662,-0.406423330307007,0.911680459976196,0.0604887679219246,-0.414871335029602,0.909785330295563,-0.0131372082978487,-0.638238251209259,0.762404680252075,-0.106728777289391,-0.406423330307007,0.911680459976196,0.0604887679219246,-0.234254419803619,0.943245708942413,0.235398769378662,-0.839290678501129,0.4923075735569,-0.230704233050346,-0.406423330307007,0.911680459976196,0.0604887679219246,-0.638238251209259,0.762404680252075,-0.106728777289391,-0.406423330307007,0.911680459976196,0.0604887679219246,-0.809560894966125,0.586814343929291,-0.016131104901433,-0.639805495738983,0.768275380134583,0.0200493223965168,-0.809560894966125,0.586814343929291,-0.016131104901433,-0.873198986053467,0.486998558044434,0.0188716854900122,-0.639805495738983,0.768275380134583,0.0200493223965168,-0.406423330307007,0.911680459976196,0.0604887679219246,-0.839290678501129,0.4923075735569,-0.230704233050346,
- -0.809560894966125,0.586814343929291,-0.016131104901433,-0.839290678501129,0.4923075735569,-0.230704233050346,-0.893787384033203,0.442938953638077,-0.0703512579202652,-0.809560894966125,0.586814343929291,-0.016131104901433,-0.893787384033203,0.442938953638077,-0.0703512579202652,-0.873198986053467,0.486998558044434,0.0188716854900122,-0.809560894966125,0.586814343929291,-0.016131104901433,-0.00021706908592023,0.999997198581696,0.00238226470537484,-0.00124498666264117,0.999998569488525,-0.00114639184903353,-0.00078066362766549,0.999999642372131,0.000543835747521371,-0.0121741658076644,0.999922573566437,0.00259254360571504,-0.00573592213913798,0.999983549118042,0.000386573257856071,-0.00309210736304522,0.999991834163666,-0.00260697561316192,-0.00226337858475745,0.999975681304932,-0.00659329118207097,-0.0198016595095396,0.999782562255859,-0.00653761718422174
- }
- BinormalsW: *172 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *516 {
- a: 1,4.76837147544984e-009,-0,0.999999701976776,0.000780753558501601,-0.000165260818903334,0.99998527765274,-0.0054160812869668,0.00034035713179037,0.999999940395355,0.000478844362078235,1.79632695562759e-006,0.999999940395355,0.000478844362078235,1.79632695562759e-006,0.99998527765274,-0.0054160812869668,0.00034035713179037,0.99994570016861,-0.0104191964492202,0.000365454063285142,0.999999225139618,-0.00106819544453174,0.000427136983489618,0.999999523162842,-0.000579155224841088,0.000800568552222103,0.999999523162842,-0.000579155224841088,0.000800568552222103,0.999999225139618,-0.00106819544453174,0.000427136983489618,0.999994874000549,-0.00254922290332615,0.00195257819723338,0.999997973442078,0.000485310447402298,0.00195694109424949,0.999991893768311,0.00354106118902564,0.00196132226847112,0.999996900558472,0.00155234767589718,0.00195847544819117,0.999992966651917,-0.00321152852848172,0.00195162242744118,0.99994570016861,-0.0104191964492202,0.000365454063285142,0.99998527765274,-0.0054160812869668,0.00034035713179037,0.999995350837708,-3.51610242432798e-006,0.00304828560911119,0.999798834323883,-0.0178665239363909,0.0091199716553092,0.999999701976776,0.000780753558501601,-0.000165260818903334,0.999995410442352,0.00124813825823367,0.00275263679213822,0.999995350837708,-3.51610242432798e-006,0.00304828560911119,0.99998527765274,-0.0054160812869668,0.00034035713179037,0.999998688697815,-8.04333831183612e-005,-0.00163270859047771,0.99999874830246,-0.000166024881764315,-0.00163297890685499,0.999999940395355,0.000217992623220198,-0.000387418491300195,0.999999701976776,0.000780753558501601,-0.000165260818903334,-0.999999284744263,-0.00022459015599452,-0.00115528819151223,-1,-7.51030456740409e-005,0,-0.999999344348907,-0.000880188890732825,-0.000719406816642731,-0.999983310699463,-0.00573564227670431,-0.000720911310054362,-0.999922394752502,-0.0121672535315156,-0.00266549247317016,-0.999996483325958,7.01603357811109e-006,-0.00264842831529677,-0.999999284744263,-0.00022459015599452,-0.00115528819151223,
- -0.999983310699463,-0.00573564227670431,-0.000720911310054362,-0.999996900558472,0.00210530613549054,0.0013133151223883,-0.999999523162842,0.000836735940538347,-0.000498411420267075,-0.999997973442078,-0.00194081768859178,-0.000373756804037839,-0.999999105930328,0.000158631955855526,0.00131534831598401,-0.999999225139618,-0.000106016836070921,0.00131562445312738,-0.99996018409729,0.00883082021027803,0.00130625441670418,-0.999983310699463,-0.00573564227670431,-0.000720911310054362,-0.999999344348907,-0.000880188890732825,-0.000719406816642731,-0.999997973442078,-0.00194081768859178,-0.000373756804037839,-0.999999523162842,0.000836735940538347,-0.000498411420267075,-0.99998950958252,-0.0044286735355854,-0.00118492916226387,-0.999985873699188,-0.00308075034990907,0.00434937374666333,-0.999983310699463,-0.00573564227670431,-0.000720911310054362,-0.99998950958252,-0.0044286735355854,-0.00118492916226387,0,0.00016021219198592,1,0,0.000189423124538735,1,0,0.000138535615405999,1,0,0.000206390730454586,1,0,-3.68179883025732e-007,1,0,-1.22726632412196e-007,1,0,8.0108642578125e-005,1,0,-1.84089941512866e-007,1,0,-1.22726632412196e-007,1,0,0.00016021219198592,1,0,0.000206390730454586,1,0,8.0108642578125e-005,1,-1,-1.34110456073699e-009,-8.28966288700377e-020,-1,-3.57627860658738e-009,1.03397576569128e-025,-1,-3.57627860658738e-009,-2.27373628340259e-018,-1,-1.34110456073699e-009,1.06581343048057e-019,-1,8.94069651646845e-010,-1.27897694375729e-018,-1,-1.34110456073699e-009,-8.28966288700377e-020,-1,-1.34110456073699e-009,1.06581343048057e-019,-1,8.94069651646845e-010,0,0.00122152653057128,0.000894242781214416,-0.999998867511749,0.00122096238192171,0.000511793361511081,-0.999999165534973,0.00122039811685681,0.000129343883600086,-0.999999344348907,0.00122096238192171,0.000511793361511081,-0.999999165534973,-0.999999940395355,-0,0.000424779515014961,-0.999999761581421,-0,0.0008219979936257,-0.999999940395355,0,0.000282669789157808,-1,0,-1.54966778609378e-006,-1,0,1.3005691471335e-005,0.363814324140549,0.148062348365784,-0.919628620147705,
- -0.196352317929268,0.0283819325268269,-0.9801225066185,-0.128853514790535,0.0571513548493385,-0.990015387535095,-0.196352317929268,0.0283819325268269,-0.9801225066185,0.363814324140549,0.148062348365784,-0.919628620147705,0.199482709169388,0.167539581656456,-0.965472519397736,0.521624624729156,0.264232188463211,-0.811226904392242,0.199482709169388,0.167539581656456,-0.965472519397736,0.363814324140549,0.148062348365784,-0.919628620147705,0.199482709169388,0.167539581656456,-0.965472519397736,0.0126193463802338,0.0334624908864498,-0.999360322952271,-0.196352317929268,0.0283819325268269,-0.9801225066185,0.482069104909897,0.278124511241913,-0.830816507339478,0.199482709169388,0.167539581656456,-0.965472519397736,0.521624624729156,0.264232188463211,-0.811226904392242,0.215758293867111,0.129075914621353,-0.967877924442291,0.0126193463802338,0.0334624908864498,-0.999360322952271,0.199482709169388,0.167539581656456,-0.965472519397736,0.199482709169388,0.167539581656456,-0.965472519397736,0.436758309602737,0.288614124059677,-0.852023541927338,0.215758293867111,0.129075914621353,-0.967877924442291,0.0574243329465389,0.0131981363520026,-0.998262643814087,0.0126193463802338,0.0334624908864498,-0.999360322952271,0.215758293867111,0.129075914621353,-0.967877924442291,0.0574243329465389,0.0131981363520026,-0.998262643814087,-0.227183848619461,-0.0934608951210976,-0.969356834888458,0.0126193463802338,0.0334624908864498,-0.999360322952271,0.199482709169388,0.167539581656456,-0.965472519397736,0.482069104909897,0.278124511241913,-0.830816507339478,0.436758309602737,0.288614124059677,-0.852023541927338,-0.227183848619461,-0.0934608951210976,-0.969356834888458,0.0574243329465389,0.0131981363520026,-0.998262643814087,-0.238136127591133,-0.138661906123161,-0.96128249168396,0.215758293867111,0.129075914621353,-0.967877924442291,0.240657910704613,0.0907339155673981,-0.966359853744507,0.0574243329465389,0.0131981363520026,-0.998262643814087,0.0574243329465389,0.0131981363520026,-0.998262643814087,0.00578127847984433,0.00854580663144588,-0.999946892261505,
- -0.238136127591133,-0.138661906123161,-0.96128249168396,-0.238136127591133,-0.138661906123161,-0.96128249168396,0.00578127847984433,0.00854580663144588,-0.999946892261505,0.0178715214133263,0.0931629464030266,-0.995490491390228,0.00578127847984433,0.00854580663144588,-0.999946892261505,0.0574243329465389,0.0131981363520026,-0.998262643814087,0.240657910704613,0.0907339155673981,-0.966359853744507,0.157262295484543,0.029406001791358,-0.98711895942688,0.217873692512512,0.08531354367733,-0.972241044044495,0.00578127847984433,0.00854580663144588,-0.999946892261505,0.157262295484543,0.029406001791358,-0.98711895942688,0.0793751925230026,0.0640456974506378,-0.994785249233246,0.0178715214133263,0.0931629464030266,-0.995490491390228,0.00578127847984433,0.00854580663144588,-0.999946892261505,0.00578127847984433,0.00854580663144588,-0.999946892261505,0.217873692512512,0.08531354367733,-0.972241044044495,0.0793751925230026,0.0640456974506378,-0.994785249233246,0.192737057805061,0.150258168578148,-0.969677686691284,0.0793751925230026,0.0640456974506378,-0.994785249233246,0.217873692512512,0.08531354367733,-0.972241044044495,0.192737057805061,0.150258168578148,-0.969677686691284,-0.100728295743465,-0.0579649582505226,-0.993224084377289,0.0793751925230026,0.0640456974506378,-0.994785249233246,0.534438192844391,0.327211439609528,-0.779300093650818,0.192737057805061,0.150258168578148,-0.969677686691284,0.217873692512512,0.08531354367733,-0.972241044044495,0.595499932765961,0.401072531938553,-0.696075260639191,0.192737057805061,0.150258168578148,-0.969677686691284,0.534438192844391,0.327211439609528,-0.779300093650818,0.406385570764542,0.286176443099976,-0.867729127407074,0.192737057805061,0.150258168578148,-0.969677686691284,0.595499932765961,0.401072531938553,-0.696075260639191,0.192737057805061,0.150258168578148,-0.969677686691284,0.0645137280225754,0.0616225749254227,-0.996012330055237,-0.100728295743465,-0.0579649582505226,-0.993224084377289,0.0645137280225754,0.0616225749254227,-0.996012330055237,-0.0131548037752509,0.0151563538238406,-0.999798536300659,
- -0.100728295743465,-0.0579649582505226,-0.993224084377289,0.192737057805061,0.150258168578148,-0.969677686691284,0.406385570764542,0.286176443099976,-0.867729127407074,0.0645137280225754,0.0616225749254227,-0.996012330055237,0.406385570764542,0.286176443099976,-0.867729127407074,0.118741989135742,0.0824442431330681,-0.98949658870697,0.0645137280225754,0.0616225749254227,-0.996012330055237,0.118741989135742,0.0824442431330681,-0.98949658870697,-0.0131548037752509,0.0151563538238406,-0.999798536300659,0.0645137280225754,0.0616225749254227,-0.996012330055237,0.999999940395355,0.000217992623220198,-0.000387418491300195,0.999995410442352,0.00124813825823367,0.00275263679213822,0.999999701976776,0.000780753558501601,-0.000165260818903334,-0.999922394752502,-0.0121672535315156,-0.00266549247317016,-0.999983310699463,-0.00573564227670431,-0.000720911310054362,-0.999985873699188,-0.00308075034990907,0.00434937374666333,-0.999992728233337,-0.00224286806769669,0.00311658112332225,-0.999799132347107,-0.0197808537632227,0.00323173892684281
- }
- TangentsW: *172 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *166 {
- a: 0,0,0.50000011920929,0,0.778972387313843,0.336345672607422,0,1,0.50000011920929,0.499924898147583,0,0.5,0.240647360682487,1.25873219966888,0.195089623332024,1.32213425636292,0.162611782550812,1.51858878135681,0,1.5180481672287,0.385750234127045,0.949820160865784,0.342993021011353,1.17869246006012,0.571222960948944,0.810653567314148,0.619672656059265,0.730930387973785,0.631382882595062,0.499925017356873,0.647735893726349,0.355651021003723,1,0,1,0.257905781269073,1,0,0,0,0,0.272249937057495,0.50000011920929,0,1,1.5180481672287,0.716458022594452,1.5180162191391,0.700160920619965,1.34467804431915,0.640259861946106,1.22542381286621,1,1,0.605774760246277,1.02266120910645,0.535210072994232,0.834527671337128,0.355984658002853,0.740163624286652,1,0.5,0.50000011920929,0.499924898147583,0.296133428812027,0.65792715549469,0.203679785132408,0.369493007659912,0.611270308494568,4.32935739809182e-005,1,0,1,1.5180481672287,0.609948217868805,1.51804804801941,0.610768258571625,1,1,1,0.611499190330505,0.500075101852417,1,0.5,1,1.5180481672287,1,1.09413933753967,0.49999988079071,1.5180481672287,0.50001460313797,1.09413933753967,0,1.09413933753967,0,1.5180481672287,1.25063407421112,0.28023898601532,0.869291186332703,0.265816211700439,0.869262099266052,2.19941139221191e-005,1.25511157512665,-2.01753555302275e-005,0.836979508399963,1.51805424690247,0.705103695392609,1.268061876297,0.71985387802124,1.09414148330688,1,1.09414207935333,1,1.5180481672287,2.828125,1.48876953125,2.947265625,1.31787109375,2.94921875,1.4814453125,2.82421875,1.319091796875,2.611328125,1.5478515625,2.953125,1.197998046875,2.576171875,1.36328125,2.58203125,1.1551513671875,2.749267578125,0.899528503417969,2.9453125,0.9554443359375,2.583984375,1.295166015625,2.544921875,0.88519287109375,2.984375,0.729736328125,2.7890625,0.592041015625,2.96484375,0.49609375,2.587890625,0.617431640625,2.591796875,0.49755859375,2.966796875,0.376953125,2.79052734375,0.161376953125,2.994140625,-0.0126953125,2.533203125,0.24462890625,2.478515625,0.08935546875,2.55859375,
- -0.03515625,2.79052734375,-0.07275390625,2.958984375,-0.294921875,2.59375,-0.306640625
- }
- UVIndex: *172 {
- a: 0,1,4,5,5,4,12,10,3,3,10,11,6,7,8,9,12,4,14,13,1,15,14,4,16,17,2,1,21,18,30,31,20,19,21,31,25,27,26,22,23,24,31,30,26,27,28,29,31,28,40,34,35,41,37,38,39,36,38,40,41,39,44,42,43,45,47,44,45,46,48,49,50,51,52,53,54,55,56,57,58,59,58,57,60,61,60,57,60,62,58,63,60,61,64,62,60,60,67,64,65,62,64,65,66,62,60,63,67,66,65,69,64,68,65,65,70,69,69,70,71,70,65,68,72,73,70,72,74,71,70,70,73,74,75,74,73,75,76,74,77,75,73,78,75,77,79,75,78,75,80,76,80,81,76,75,79,80,79,82,80,82,81,80,2,15,1,20,31,29,32,33
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *86 {
- a: 0,0,0,0,0,1,1,1,0,1,1,0,0,0,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,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "ByPolygon"
- ReferenceInformationType: "IndexToDirect"
- Materials: *48 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2333008481968, "Geometry::", "Mesh" {
- Vertices: *30 {
- a: 0,-9.5367431640625e-007,62.499755859375,400,0,62.499755859375,0,-4.76837158203125e-007,-62.50048828125,400,-4.76837158203125e-007,-62.50048828125,400,115.820617675781,-62.50048828125,400,97.5420379638672,62.499755859375,288.048828125,179.396286010742,62.499755859375,0,179.396286010742,62.499755859375,339.068359375,179.396301269531,-62.50048828125,0,179.396286010742,-62.50048828125
- }
- PolygonVertexIndex: *30 {
- a: 1,5,6,7,-1,3,4,5,-2,1,0,2,-4,8,6,5,-5,2,0,7,-10,3,2,9,8,-5,7,6,8,-10
- }
- Edges: *15 {
- a: 4,11,10,8,3,5,0,6,1,20,2,23,13,16,19
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *30 {
- a: -0.258668214082718,-0.576752722263336,0.77488511800766,0.157260045409203,-0.589644193649292,0.792205154895782,-0.252649337053299,-0.563332378864288,-0.786654233932495,0.153441369533539,-0.575326025485992,-0.803402543067932,0.206085324287415,0.108964323997498,-0.972448289394379,0.231771007180214,0.102234870195389,0.967383205890656,0.0588876865804195,0.464418828487396,0.883655667304993,-0.277040779590607,0.484227001667023,0.829923272132874,0.0968294814229012,0.384305864572525,-0.918113768100739,-0.269683569669724,0.471367686986923,-0.839692354202271
- }
- NormalsW: *10 {
- a: 1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *90 {
- a: -7.45058148510225e-009,0.802186667919159,0.597073495388031,0.130280628800392,0.982240855693817,-0.135018408298492,0.440346390008926,0.782332599163055,-0.44051206111908,0.669594287872314,0.716759026050568,-0.194679617881775,0.2557233273983,0.732679545879364,0.630703032016754,0.973670363426209,0.22673673927784,0.0235918611288071,0.503849446773529,0.84010112285614,0.200912520289421,-0.822526097297668,0.551535487174988,0.138778045773506,0.966228842735291,0.257685482501984,-8.14348459243774e-006,-7.45058148510225e-009,0.802186667919159,0.597073495388031,-0,0.802186667919159,0.597073435783386,-0,-0.813030660152435,0.582220852375031,-0,-0.813030779361725,0.582220852375031,-0.458468079566956,0.835978925228119,0.301573067903519,-0.997123837471008,0.0696708261966705,0.0298327468335629,-0.822526097297668,0.551535487174988,0.138778045773506,0.503849446773529,0.84010112285614,0.200912520289421,-0.912390470504761,0.409321188926697,-8.77380443853326e-005,-0.912474751472473,0.409133285284042,-7.67558885854669e-005,0.867921829223633,0.496701002120972,-7.98851324361749e-005,0.868052363395691,0.496472835540771,-9.31322574615479e-005,0,0.813030779361725,-0.582220852375031,0.22616308927536,0.756124258041382,-0.614106178283691,0.604474246501923,0.761658728122711,0.233424216508865,0.534958600997925,0.757781267166138,0.373613327741623,0.104528166353703,0.985643208026886,0.132594883441925,0.867870450019836,0.496790766716003,-0.000149399056681432,0.900949120521545,-0.405940145254135,0.15330795943737,0.534958600997925,0.757781267166138,0.373613327741623,0.749853193759918,0.649882674217224,0.12398661673069
- }
- BinormalsW: *30 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *90 {
- a: 0.987557232379913,0.0938958004117012,-0.126151889562607,0.964006781578064,-0.157324627041817,-0.214335694909096,0.895894765853882,-0.415055334568024,0.15843540430069,0.689124047756195,-0.501777648925781,0.522807061672211,0.931502163410187,-0.36129903793335,0.0420317910611629,-0.168587863445282,0.785869181156158,-0.594968795776367,-0.838847219944,0.531372606754303,-0.118230707943439,0.519358277320862,0.827862739562988,-0.211920723319054,0.204134956002235,-0.765452742576599,-0.610254883766174,-0.987557232379913,-0.0938958004117012,0.126151889562607,-0.96596622467041,0.1544439047575,-0.207500159740448,-0.967557907104492,0.147097706794739,0.205411657691002,-0.988157749176025,-0.0893367603421211,-0.124752536416054,-0.883419990539551,-0.39172437787056,-0.257140189409256,0.0477101318538189,0.882871031761169,-0.467185974121094,0.519358277320862,0.827862739562988,-0.211920723319054,-0.838847219944,0.531372606754303,-0.118230707943439,-0.322043627500534,-0.717713594436646,0.617393851280212,0.316986978054047,0.707082867622375,0.632102131843567,0.412262350320816,-0.720286309719086,0.557877540588379,-0.416840553283691,0.728922009468079,0.543062448501587,-0.988157749176025,-0.0893367603421211,-0.124752536416054,-0.940754294395447,0.333065688610077,0.0636293068528175,-0.749587655067444,0.444621741771698,0.4903364777565,-0.839311242103577,0.527329623699188,0.132212266325951,-0.972935080528259,0.128974080085754,-0.191736742854118,-0.412370532751083,0.720224440097809,-0.557877540588379,0.429910451173782,0.787100851535797,-0.442322701215744,-0.839311242103577,0.527329623699188,0.132212266325951,0.604144811630249,-0.596208810806274,-0.528719305992126
- }
- TangentsW: *30 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *48 {
- a: 0.998827934265137,0,0.749120950698853,0.75902783870697,0.686694204807281,0.94878476858139,0,0.379513919353485,0,0,0.998827934265137,0,0.749149918556213,0.688372611999512,0.68534243106842,0.759012460708618,0.871270895004272,-3.07559967041016e-005,0,1.51805567741394,0.998827934265137,1.51805567741394,0.998827934265137,1.37674522399902,0.000115895541966893,1.37674522399902,0.68673038482666,0.86046576499939,0.63886034488678,0.948773264884949,0.871270895004272,5.66840171813965e-005,0.998827934265137,0,0.998827934265137,0.379513919353485,0.871270895004272,0.379556447267532,0,0,0.998827934265137,0,0.998827934265137,0.379513919353485,0.312133729457855,0.94878476858139,0.249706983566284,0.75902783870697
- }
- UVIndex: *30 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,7,6,15,16,17,18,19,20,21,22,23,3,14,22,18
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *15 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2333008467632, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 0,600.762451171875,62.499755859375,0,600.762451171875,-62.50048828125,195.59765625,371.412506103516,-62.50048828125,75.595703125,600.762451171875,62.499755859375,131.810546875,600.762451171875,-62.50048828125,0,371.412506103516,-62.50048828125,190.23046875,371.412506103516,62.499755859375,0,371.412506103516,62.499755859375
- }
- PolygonVertexIndex: *24 {
- a: 5,7,0,-2,2,5,1,-5,0,3,4,-2,2,4,3,-7,7,6,3,-1,6,7,5,-3
- }
- Edges: *12 {
- a: 2,3,6,8,14,7,9,15,1,4,16,0
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.654411315917969,0.295899361371994,0.695837140083313,-0.585247695446014,0.264626264572144,-0.76645815372467,0.724780678749084,-0.315434873104095,-0.612530648708344,0.432603120803833,0.449524879455566,0.781525373458862,0.587186455726624,0.409755438566208,-0.698077738285065,-0.540529668331146,-0.454657942056656,-0.707894027233124,0.675768971443176,-0.314040064811707,0.666869759559631,-0.593587458133698,-0.499286651611328,0.631163060665131
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: -0.643660545349121,0.765311181545258,-5.24967908859253e-005,-0.643733501434326,0.765249788761139,-5.25116920471191e-005,0.412001609802246,0.91118323802948,0,0.412035524845123,0.911167740821838,-3.12477313855197e-005,0.680568516254425,0.189280614256859,0.707813084125519,-0.14367963373661,0.878928363323212,-0.454797834157944,0,0.945247411727905,0.326354801654816,0.397340536117554,0.605446457862854,0.689605057239532,0,-0.920250654220581,0.3913294672966,-0.262099355459213,-0.766693830490112,0.586075603961945,0.489310145378113,0.507320165634155,0.709367275238037,0,0.945247411727905,0.326354801654816,0.680568516254425,0.189280614256859,0.707813084125519,0.489310145378113,0.507320165634155,0.709367275238037,-0.262099355459213,-0.766693830490112,0.586075603961945,-0.454586029052734,-0.889727830886841,0.0416647009551525,0.311260581016541,0.58080792427063,0.752182841300964,-0.454586029052734,-0.889727830886841,0.0416647009551525,0.398414015769959,0.68228954076767,-0.612982332706451,0,0.920250654220581,-0.3913294672966,-0.454586029052734,-0.889727830886841,0.0416647009551525,-0.643733501434326,0.765249788761139,-5.25116920471191e-005,-0.14367963373661,0.878928363323212,-0.454797834157944,0.536923110485077,0.81570827960968,0.215252310037613
- }
- BinormalsW: *24 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: -0.541783094406128,-0.455615103244781,0.706318616867065,0.48297119140625,0.406331986188889,0.775650203227997,0.634035050868988,-0.28668600320816,0.718199610710144,-0.698363721370697,0.315826326608658,0.64229428768158,0.1073287576437,0.929878413677216,-0.351862013339996,-0.828965663909912,0.144121751189232,0.54041188955307,-0.810854554176331,-0.190998375415802,0.553203821182251,-0.705218136310577,0.682301342487335,-0.192697465419769,-0.756138801574707,-0.256090432405472,-0.602222442626953,-0.862646162509918,0.45837539434433,0.21385395526886,-0.644816040992737,0.758107364177704,-0.0973940491676331,-0.810854554176331,-0.190998375415802,0.553203821182251,0.1073287576437,0.929878413677216,-0.351862013339996,-0.644816040992737,0.758107364177704,-0.0973940491676331,-0.862646162509918,0.45837539434433,0.21385395526886,-0.580248117446899,0.331305325031281,0.744008779525757,0.742139279842377,-0.642942488193512,0.1893520206213,-0.580248117446899,0.331305325031281,0.744008779525757,0.808777332305908,-0.57654869556427,-0.116063565015793,0.756138801574707,0.256090432405472,0.602222442626953,-0.580248117446899,0.331305325031281,0.744008779525757,0.48297119140625,0.406331986188889,0.775650203227997,-0.828965663909912,0.144121751189232,0.54041188955307,0.431748241186142,-0.484892547130585,0.760573923587799
- }
- TangentsW: *24 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *34 {
- a: 0.871270895004272,0.759056210517883,0.998827934265137,0.75902783870697,0.998827934265137,1.51805567741394,0.871270895004272,1.51805567741394,0.499413967132568,1.51805567741394,0.998827934265137,0.75902783870697,0.998827934265137,1.51805567741394,0.606828629970551,1.51805567741394,0.998827934265137,1.51805567741394,0.606828629970551,1.51805567741394,0.606874108314514,1.37674522399902,0.998827934265137,1.37674522399902,0.49947190284729,1.37674522399902,0.499413967132568,1.51805567741394,0,0.75902783870697,0.391999274492264,1.51805567741394,0,1.51805567741394
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,10,9,13,14,13,15,16,13,1,5,12
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2333008451248, "Geometry::", "Mesh" {
- Vertices: *30 {
- a: 190.23046875,370.445465087891,62.499755859375,281.017578125,294.370178222656,-62.50048828125,265.646484375,294.370178222656,62.499755859375,339.068359375,180.568145751953,-62.50048828125,0,370.445465087891,62.499755859375,0,180.568130493164,-62.50048828125,288.048828125,180.568130493164,62.499755859375,0,180.568130493164,62.499755859375,195.59765625,370.445465087891,-62.50048828125,0,370.445465087891,-62.50048828125
- }
- PolygonVertexIndex: *30 {
- a: 1,8,0,-3,3,1,2,-7,5,7,4,-10,7,6,2,0,-5,3,5,9,8,-2,4,0,8,-10,6,7,5,-4
- }
- Edges: *15 {
- a: 2,4,6,3,7,11,10,9,8,17,15,12,19,1,0
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *30 {
- a: 0.113530062139034,0.421567261219025,0.899662017822266,0.252571880817413,0.156484127044678,-0.954840421676636,0.270900011062622,0.175277799367905,0.946515142917633,0.287150532007217,-0.56805545091629,-0.771270155906677,-0.399436235427856,0.405824422836304,0.822044491767883,-0.337265074253082,-0.556950986385345,-0.758984804153442,0.226789459586143,-0.664243698120117,0.712282955646515,-0.3543860912323,-0.585224151611328,0.729330658912659,0.109608955681324,0.380818217992783,-0.918130338191986,-0.375383526086807,0.381387054920197,-0.844766974449158
- }
- NormalsW: *10 {
- a: 1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *90 {
- a: -0.966478049755096,0.0878463238477707,-0.241253525018692,-0.624136328697205,0.745261192321777,0.2346051633358,0.793448984622955,-0.583452165126801,0.173269540071487,-0.914218544960022,0.354680061340332,0.19597601890564,-0.387279748916626,-0.805285394191742,0.448920786380768,-0.966478049755096,0.0878463238477707,-0.241253525018692,-0.89800351858139,0.400166153907776,0.182911932468414,-0.685341715812683,-0.628471195697784,-0.367873132228851,-0.855335831642151,0.518074035644531,-8.81999731063843e-005,-0.855470240116119,0.517852067947388,-0.000146985054016113,0.712613224983215,0.701557099819183,-7.96616077423096e-005,0.712804138660431,0.701363265514374,-9.95099544525146e-005,0.449870884418488,0.577056229114532,0.681632161140442,0.87030416727066,0.466504335403442,0.157938316464424,0.394916385412216,0.876487255096436,-0.275338023900986,0.524237215518951,0.743784725666046,-0.414680153131485,0.874417066574097,0.438021659851074,0.208643168210983,0.513002038002014,0.771173298358917,-0.376989036798477,0.192958950996399,0.748206973075867,-0.634786009788513,0.873650372028351,0.449985146522522,-0.185063391923904,0.347130864858627,0.850869715213776,0.394361615180969,0.317817240953445,0.918664216995239,0.234623566269875,0.712652862071991,0.701516926288605,-4.05609644076321e-005,0.793448984622955,-0.583452165126801,0.173269540071487,0.347130864858627,0.850869715213776,0.394361615180969,0.233625188469887,0.920925080776215,0.311955660581589,0.87030416727066,0.466504335403442,0.157938316464424,-0.855470240116119,0.517852067947388,-0.000146985054016113,0.192958950996399,0.748206973075867,-0.634786009788513,-0.387279748916626,-0.805285394191742,0.448920786380768
- }
- BinormalsW: *30 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *90 {
- a: 0.0461268350481987,0.983766078948975,0.173426106572151,0.773588836193085,0.547323644161224,0.319369941949844,0.597954511642456,0.694164454936981,-0.400731950998306,-0.301359802484512,-0.918411433696747,0.256324946880341,-0.876104414463043,0.169789403676987,-0.451234519481659,0.0461268350481987,0.983766078948975,0.173426106572151,0.346702933311462,0.899524748325348,-0.265805035829544,0.692006707191467,-0.404727667570114,-0.597764253616333,-0.393259435892105,-0.649157166481018,0.65110832452774,0.377599388360977,0.623972773551941,0.684161365032196,0.576743483543396,-0.585767924785614,0.569423317909241,-0.592450559139252,0.602190732955933,0.535134255886078,0.81977242231369,-0.569665551185608,-0.0587746053934097,0.437192559242249,-0.58408397436142,-0.683892250061035,0.877869188785553,-0.448383450508118,-0.168220356106758,0.843970537185669,-0.518715023994446,0.136559277772903,0.275400817394257,-0.80214935541153,0.529821455478668,-0.808933556079865,0.287410527467728,-0.512856423854828,-0.921422362327576,0.36054402589798,0.144875377416611,-0.309551805257797,0.807500720024109,0.502116024494171,-0.931389272212982,0.361936926841736,0.03893081843853,-0.913892567157745,0.362724035978317,-0.18229541182518,-0.576694548130035,0.585816085338593,-0.569423317909241,0.597954511642456,0.694164454936981,-0.400731950998306,-0.931389272212982,0.361936926841736,0.03893081843853,0.896942853927612,-0.0802558213472366,-0.434801667928696,0.437192559242249,-0.58408397436142,-0.683892250061035,0.377599388360977,0.623972773551941,0.684161365032196,-0.921422362327576,0.36054402589798,0.144875377416611,-0.876104414463043,0.169789403676987,-0.451234519481659
- }
- TangentsW: *30 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *38 {
- a: 0.624310910701752,1.03255891799927,0.49947190284729,1.37674522399902,0.499413967132568,1.51805567741394,0.592378199100494,1.13853406906128,0.68673038482666,0.86046576499939,0.63886034488678,0.948773264884949,0.871270895004272,0.379556447267532,0.998827934265137,0.379513919353485,0.998827934265137,0.75902783870697,0.871270895004272,0.759056210517883,0,0.379513919353485,0.686694204807281,0.94878476858139,0.62426745891571,1.13854169845581,0,0.75902783870697,0.312133729457855,0.94878476858139,0.998827934265137,0.379513919353485,0.998827934265137,0.75902783870697,0.499413967132568,1.51805567741394,0.374560475349426,1.13854169845581
- }
- UVIndex: *30 {
- a: 0,1,2,3,4,0,3,5,6,7,8,9,10,11,12,2,13,14,15,16,17,18,13,2,17,9,11,7,15,4
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *15 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Model: 2330954034656, "Model::SM_Wall_Thick_Ruined_05", "Null" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- }
- Shading: Y
- Culling: "CullingOff"
- }
- Model: 2330954004496, "Model::LOD_Group_SM_Wall_Thick_Ruined_05", "LodGroup" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- }
- Shading: Y
- Culling: "CullingOff"
- }
- Model: 2330954039296, "Model::SM_Wall_Thick_Ruined_05_LOD0", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",0,0,-4.54747350886464e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",0,0,-4.54747350886464e-013
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2330954055536, "Model::SM_Wall_Thick_Ruined_05_LOD1", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2330954057856, "Model::SM_Wall_Thick_Ruined_05_LOD2", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2330954043936, "Model::SM_Wall_Thick_Ruined_05_LOD3", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2330954062496, "Model::UCX_SM_Wall_Thick_Ruined_05_LOD0_03", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2330954060176, "Model::UCX_SM_Wall_Thick_Ruined_05_LOD0_01", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2330954064816, "Model::UCX_SM_Wall_Thick_Ruined_05_LOD0_02", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Material: 2330846038144, "Material::MI_Wall_01", "" {
- Version: 102
- ShadingModel: "phong"
- MultiLayer: 0
- Properties70: {
- P: "AmbientColor", "Color", "", "A",0,0,0
- P: "DiffuseColor", "Color", "", "A",1,1,1
- P: "DiffuseFactor", "Number", "", "A",0.800000011920929
- P: "TransparencyFactor", "Number", "", "A",1
- P: "SpecularColor", "Color", "", "A",0,0,0
- P: "ReflectionFactor", "Number", "", "A",0.5
- P: "Emissive", "Vector3D", "Vector", "",0,0,0
- P: "Ambient", "Vector3D", "Vector", "",0,0,0
- P: "Diffuse", "Vector3D", "Vector", "",0.800000011920929,0.800000011920929,0.800000011920929
- P: "Specular", "Vector3D", "Vector", "",0,0,0
- P: "Shininess", "double", "Number", "",20
- P: "Opacity", "double", "Number", "",1
- P: "Reflectivity", "double", "Number", "",0
- }
- }
- Material: 2330846035744, "Material::MI_Wall_03", "" {
- Version: 102
- ShadingModel: "phong"
- MultiLayer: 0
- Properties70: {
- P: "AmbientColor", "Color", "", "A",0,0,0
- P: "DiffuseColor", "Color", "", "A",1,1,1
- P: "DiffuseFactor", "Number", "", "A",0.800000011920929
- P: "TransparencyFactor", "Number", "", "A",1
- P: "SpecularColor", "Color", "", "A",0,0,0
- P: "ReflectionFactor", "Number", "", "A",0.5
- P: "Emissive", "Vector3D", "Vector", "",0,0,0
- P: "Ambient", "Vector3D", "Vector", "",0,0,0
- P: "Diffuse", "Vector3D", "Vector", "",0.800000011920929,0.800000011920929,0.800000011920929
- P: "Specular", "Vector3D", "Vector", "",0,0,0
- P: "Shininess", "double", "Number", "",20
- P: "Opacity", "double", "Number", "",1
- P: "Reflectivity", "double", "Number", "",0
- }
- }
- Material: 2330846038624, "Material::MI_Bricks_01", "" {
- Version: 102
- ShadingModel: "phong"
- MultiLayer: 0
- Properties70: {
- P: "AmbientColor", "Color", "", "A",0,0,0
- P: "DiffuseColor", "Color", "", "A",1,1,1
- P: "DiffuseFactor", "Number", "", "A",0.800000011920929
- P: "TransparencyFactor", "Number", "", "A",1
- P: "SpecularColor", "Color", "", "A",0,0,0
- P: "ReflectionFactor", "Number", "", "A",0.5
- P: "Emissive", "Vector3D", "Vector", "",0,0,0
- P: "Ambient", "Vector3D", "Vector", "",0,0,0
- P: "Diffuse", "Vector3D", "Vector", "",0.800000011920929,0.800000011920929,0.800000011920929
- P: "Specular", "Vector3D", "Vector", "",0,0,0
- P: "Shininess", "double", "Number", "",20
- P: "Opacity", "double", "Number", "",1
- P: "Reflectivity", "double", "Number", "",0
- }
- }
- Material: 2330846052064, "Material::M_Collision_01", "" {
- Version: 102
- ShadingModel: "phong"
- MultiLayer: 0
- Properties70: {
- P: "AmbientColor", "Color", "", "A",0,0,0
- P: "DiffuseColor", "Color", "", "A",0.5,0.5,0.5
- P: "DiffuseFactor", "Number", "", "A",0.800000011920929
- P: "TransparencyFactor", "Number", "", "A",1
- P: "SpecularColor", "Color", "", "A",0,0,0
- P: "ReflectionFactor", "Number", "", "A",0.5
- P: "Emissive", "Vector3D", "Vector", "",0,0,0
- P: "Ambient", "Vector3D", "Vector", "",0,0,0
- P: "Diffuse", "Vector3D", "Vector", "",0.400000005960464,0.400000005960464,0.400000005960464
- P: "Specular", "Vector3D", "Vector", "",0,0,0
- P: "Shininess", "double", "Number", "",20
- P: "Opacity", "double", "Number", "",1
- P: "Reflectivity", "double", "Number", "",0
- }
- }
- Video: 2330982097040, "Video::file4", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_BC.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_BC.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wall_01_BC.png"
- }
- Video: 2330982080240, "Video::file56", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Marketplace/PLagueTaleTest_01/Content/Tower Assets/Wall_03_BC.png"
- }
- UseMipMap: 0
- Filename: "A:/Marketplace/PLagueTaleTest_01/Content/Tower Assets/Wall_03_BC.png"
- RelativeFilename: "..\..\..\..\..\..\Marketplace\PLagueTaleTest_01\Content\Tower Assets\Wall_03_BC.png"
- }
- Video: 2330982098240, "Video::file61", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Bricks_01_BC.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Bricks_01_BC.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Bricks_01_BC.png"
- }
- Video: 2330982099840, "Video::file24", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_N.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_N.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wall_01_N.png"
- }
- Video: 2330982081440, "Video::file57", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Marketplace/PLagueTaleTest_01/Content/Tower Assets/Wall_03_N.png"
- }
- UseMipMap: 0
- Filename: "A:/Marketplace/PLagueTaleTest_01/Content/Tower Assets/Wall_03_N.png"
- RelativeFilename: "..\..\..\..\..\..\Marketplace\PLagueTaleTest_01\Content\Tower Assets\Wall_03_N.png"
- }
- Video: 2330982075040, "Video::file35", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/CapitalsAndCastles/UE4/Scale_Test_01/Scale_Test_01/Content/Materials/T_Bricks_02_N.png"
- }
- UseMipMap: 0
- Filename: "A:/CapitalsAndCastles/UE4/Scale_Test_01/Scale_Test_01/Content/Materials/T_Bricks_02_N.png"
- RelativeFilename: "..\..\..\..\..\..\CapitalsAndCastles\UE4\Scale_Test_01\Scale_Test_01\Content\Materials\T_Bricks_02_N.png"
- }
- Texture: 2330846046304, "Texture::file4", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file4"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file4"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_BC.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wall_01_BC.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2330846041984, "Texture::file56", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file56"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file56"
- FileName: "A:/Marketplace/PLagueTaleTest_01/Content/Tower Assets/Wall_03_BC.png"
- RelativeFilename: "..\..\..\..\..\..\Marketplace\PLagueTaleTest_01\Content\Tower Assets\Wall_03_BC.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2330846039104, "Texture::file61", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file61"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file61"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Bricks_01_BC.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Bricks_01_BC.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2330846030944, "Texture::file24", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file24"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file24"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_N.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wall_01_N.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2330846042944, "Texture::file57", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file57"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file57"
- FileName: "A:/Marketplace/PLagueTaleTest_01/Content/Tower Assets/Wall_03_N.png"
- RelativeFilename: "..\..\..\..\..\..\Marketplace\PLagueTaleTest_01\Content\Tower Assets\Wall_03_N.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2330846047744, "Texture::file35", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file35"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file35"
- FileName: "A:/CapitalsAndCastles/UE4/Scale_Test_01/Scale_Test_01/Content/Materials/T_Bricks_02_N.png"
- RelativeFilename: "..\..\..\..\..\..\CapitalsAndCastles\UE4\Scale_Test_01\Scale_Test_01\Content\Materials\T_Bricks_02_N.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- AnimationStack: 2334037004496, "AnimStack::Take 001", "" {
- Properties70: {
- P: "LocalStart", "KTime", "Time", "",1539538600
- P: "LocalStop", "KTime", "Time", "",46186158000
- P: "ReferenceStart", "KTime", "Time", "",1539538600
- P: "ReferenceStop", "KTime", "Time", "",46186158000
- }
- }
- AnimationLayer: 2330913396080, "AnimLayer::BaseLayer", "" {
- }
- }
- ; Object connections
- ;------------------------------------------------------------------
- Connections: {
-
- ;Model::SM_Wall_Thick_Ruined_05, Model::RootNode
- C: "OO",2330954034656,0
-
- ;AnimLayer::BaseLayer, AnimStack::Take 001
- C: "OO",2330913396080,2334037004496
-
- ;NodeAttribute::, Model::SM_Wall_Thick_Ruined_05
- C: "OO",2328201239520,2330954034656
-
- ;Model::LOD_Group_SM_Wall_Thick_Ruined_05, Model::SM_Wall_Thick_Ruined_05
- C: "OO",2330954004496,2330954034656
-
- ;Model::UCX_SM_Wall_Thick_Ruined_05_LOD0_03, Model::SM_Wall_Thick_Ruined_05
- C: "OO",2330954062496,2330954034656
-
- ;Model::UCX_SM_Wall_Thick_Ruined_05_LOD0_01, Model::SM_Wall_Thick_Ruined_05
- C: "OO",2330954060176,2330954034656
-
- ;Model::UCX_SM_Wall_Thick_Ruined_05_LOD0_02, Model::SM_Wall_Thick_Ruined_05
- C: "OO",2330954064816,2330954034656
-
- ;NodeAttribute::, Model::LOD_Group_SM_Wall_Thick_Ruined_05
- C: "OO",2332448495600,2330954004496
-
- ;Model::SM_Wall_Thick_Ruined_05_LOD0, Model::LOD_Group_SM_Wall_Thick_Ruined_05
- C: "OO",2330954039296,2330954004496
-
- ;Model::SM_Wall_Thick_Ruined_05_LOD1, Model::LOD_Group_SM_Wall_Thick_Ruined_05
- C: "OO",2330954055536,2330954004496
-
- ;Model::SM_Wall_Thick_Ruined_05_LOD2, Model::LOD_Group_SM_Wall_Thick_Ruined_05
- C: "OO",2330954057856,2330954004496
-
- ;Model::SM_Wall_Thick_Ruined_05_LOD3, Model::LOD_Group_SM_Wall_Thick_Ruined_05
- C: "OO",2330954043936,2330954004496
-
- ;Texture::file4, Material::MI_Wall_01
- C: "OP",2330846046304,2330846038144, "DiffuseColor"
-
- ;Texture::file24, Material::MI_Wall_01
- C: "OP",2330846030944,2330846038144, "NormalMap"
-
- ;Texture::file56, Material::MI_Wall_03
- C: "OP",2330846041984,2330846035744, "DiffuseColor"
-
- ;Texture::file57, Material::MI_Wall_03
- C: "OP",2330846042944,2330846035744, "NormalMap"
-
- ;Texture::file61, Material::MI_Bricks_01
- C: "OP",2330846039104,2330846038624, "DiffuseColor"
-
- ;Texture::file35, Material::MI_Bricks_01
- C: "OP",2330846047744,2330846038624, "NormalMap"
-
- ;Video::file4, Texture::file4
- C: "OO",2330982097040,2330846046304
-
- ;Video::file56, Texture::file56
- C: "OO",2330982080240,2330846041984
-
- ;Video::file61, Texture::file61
- C: "OO",2330982098240,2330846039104
-
- ;Video::file24, Texture::file24
- C: "OO",2330982099840,2330846030944
-
- ;Video::file57, Texture::file57
- C: "OO",2330982081440,2330846042944
-
- ;Video::file35, Texture::file35
- C: "OO",2330982075040,2330846047744
-
- ;Geometry::, Model::SM_Wall_Thick_Ruined_05_LOD0
- C: "OO",2333008471216,2330954039296
-
- ;Material::MI_Wall_01, Model::SM_Wall_Thick_Ruined_05_LOD0
- C: "OO",2330846038144,2330954039296
-
- ;Material::MI_Wall_03, Model::SM_Wall_Thick_Ruined_05_LOD0
- C: "OO",2330846035744,2330954039296
-
- ;Material::MI_Bricks_01, Model::SM_Wall_Thick_Ruined_05_LOD0
- C: "OO",2330846038624,2330954039296
-
- ;Geometry::, Model::SM_Wall_Thick_Ruined_05_LOD1
- C: "OO",2333008480944,2330954055536
-
- ;Material::MI_Wall_01, Model::SM_Wall_Thick_Ruined_05_LOD1
- C: "OO",2330846038144,2330954055536
-
- ;Material::MI_Wall_03, Model::SM_Wall_Thick_Ruined_05_LOD1
- C: "OO",2330846035744,2330954055536
-
- ;Material::MI_Bricks_01, Model::SM_Wall_Thick_Ruined_05_LOD1
- C: "OO",2330846038624,2330954055536
-
- ;Geometry::, Model::SM_Wall_Thick_Ruined_05_LOD2
- C: "OO",2333008466096,2330954057856
-
- ;Material::MI_Wall_01, Model::SM_Wall_Thick_Ruined_05_LOD2
- C: "OO",2330846038144,2330954057856
-
- ;Material::MI_Wall_03, Model::SM_Wall_Thick_Ruined_05_LOD2
- C: "OO",2330846035744,2330954057856
-
- ;Material::MI_Bricks_01, Model::SM_Wall_Thick_Ruined_05_LOD2
- C: "OO",2330846038624,2330954057856
-
- ;Geometry::, Model::SM_Wall_Thick_Ruined_05_LOD3
- C: "OO",2333008460976,2330954043936
-
- ;Material::MI_Wall_01, Model::SM_Wall_Thick_Ruined_05_LOD3
- C: "OO",2330846038144,2330954043936
-
- ;Material::MI_Wall_03, Model::SM_Wall_Thick_Ruined_05_LOD3
- C: "OO",2330846035744,2330954043936
-
- ;Geometry::, Model::UCX_SM_Wall_Thick_Ruined_05_LOD0_03
- C: "OO",2333008481968,2330954062496
-
- ;Material::M_Collision_01, Model::UCX_SM_Wall_Thick_Ruined_05_LOD0_03
- C: "OO",2330846052064,2330954062496
-
- ;Geometry::, Model::UCX_SM_Wall_Thick_Ruined_05_LOD0_01
- C: "OO",2333008467632,2330954060176
-
- ;Material::M_Collision_01, Model::UCX_SM_Wall_Thick_Ruined_05_LOD0_01
- C: "OO",2330846052064,2330954060176
-
- ;Geometry::, Model::UCX_SM_Wall_Thick_Ruined_05_LOD0_02
- C: "OO",2333008451248,2330954064816
-
- ;Material::M_Collision_01, Model::UCX_SM_Wall_Thick_Ruined_05_LOD0_02
- C: "OO",2330846052064,2330954064816
- }
- ;Takes section
- ;----------------------------------------------------
- Takes: {
- Current: "Take 001"
- Take: "Take 001" {
- FileName: "Take_001.tak"
- LocalTime: 1539538600,46186158000
- ReferenceTime: 1539538600,46186158000
- }
- }
|