| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727 |
- ; 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: 2021
- Month: 4
- Day: 5
- Hour: 13
- Minute: 28
- Second: 21
- Millisecond: 315
- }
- 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\Source_NEW\SM_Window_Thick_02.fbx"
- P: "SrcDocumentUrl", "KString", "Url", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\Source_NEW\SM_Window_Thick_02.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", "", "", "05/04/2021 10:28:21.315"
- P: "Original|FileName", "KString", "", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\Source_NEW\SM_Window_Thick_02.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", "", "", "05/04/2021 10:28:21.315"
- P: "Original|ApplicationActiveProject", "KString", "", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel"
- P: "Original|ApplicationNativeFile", "KString", "", "", "A:\Lordenfel\Maya\Lordenfel_10_Unity_EXPORT.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: 2268517671744, "", "Scene" {
- Properties70: {
- P: "SourceObject", "object", "", ""
- P: "ActiveAnimStackName", "KString", "", "", "Take 001"
- }
- RootNode: 0
- }
- }
- ; Document References
- ;------------------------------------------------------------------
- References: {
- }
- ; Object definitions
- ;------------------------------------------------------------------
- Definitions: {
- Version: 100
- Count: 39
- 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: 10
- 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: 8
- 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: 2268466662976, "NodeAttribute::", "Null" {
- Properties70: {
- P: "Look", "enum", "", "",0
- }
- TypeFlags: "Null"
- }
- NodeAttribute: 2266907517952, "NodeAttribute::", "LodGroup" {
- Properties70: {
- P: "WorldSpace", "bool", "", "",1
- P: "Thresholds|Level0", "Distance", "", "",100, "cm"
- P: "Thresholds|Level1", "Distance", "", "",100, "cm"
- P: "DisplayLevels|Level0", "enum", "", "",1
- P: "DisplayLevels|Level1", "enum", "", "",1
- P: "DisplayLevels|Level2", "enum", "", "",1
- }
- }
- Geometry: 2267733755040, "Geometry::", "Mesh" {
- Vertices: *3912 {
- a: -200,0,62.5,200,0,62.5,-200,600,62.5,200,600,62.5,-200,600,-62.5,200,600,-62.5,-200,0,-62.5,200,0,-62.5,-100,0,62.5,-100,0,-62.5,-100,600,-62.5,-100,600,62.5,0,0,62.5,0,0,-62.5,0,600,-62.5,0,600,62.5,100,0,62.5,100,0,-62.5,100,600,-62.5,100,600,62.5,200,500,-62.5,200,500,62.5,100,500,62.5,0,500,62.5,-100,500,62.5,-200,500,62.5,-200,500,-62.5,200,400,-62.5,200,400,62.5,100,399.999938964844,62.5,0,458.178955078125,62.5,-100,399.999938964844,62.5,-200,400,62.5,-200,400,-62.5,200,300,-62.5,200,300,62.5,100,300,62.5,-100,300,62.5,-200,300,62.5,-200,300,-62.5,200,200,-62.5,200,200,62.5,100,143.139282226563,62.5,0,143.139282226563,62.5,-100,143.139282226563,62.5,-200,200,62.5,-200,200,-62.5,200,100,-62.5,200,100,62.5,100,100,62.5,0,100,62.5,-100,100,62.5,-200,100,62.5,-200,100,-62.5,-100,500,-62.5,0,500,-62.5,100,500,-62.5,-100,399.999938964844,-62.5,0,458.178955078125,-62.5,100,399.999938964844,-62.5,-100,300,-62.5,100,300,-62.5,-100,143.139282226563,-62.5,0,143.139282226563,-62.5,100,143.139282226563,-62.5,-100,100,-62.5,0,100,-62.5,100,100,-62.5,-53.4765625,439.876708984375,62.5,-79.140625,300,62.5,-79.140625,143.139282226563,62.5,-53.4765625,439.876708984375,-62.5,-79.140625,300,-62.5,-79.140625,143.139282226563,-62.5,53.4765625,439.876708984375,62.5,79.140625,300,62.5,79.140625,143.139282226563,62.5,53.4765625,439.876708984375,-62.5,79.140625,300,-62.5,79.140625,143.139282226563,-62.5,-77.875,387.156372070313,62.5,-77.875,387.156372070313,-62.5,77.875,387.156372070313,62.5,77.875,387.156372070313,-62.5,-116.68359375,120.580749511719,65.24169921875,110.84375,120.580749511719,65.24169921875,-116.68359375,120.580749511719,41.78466796875,110.84375,120.580749511719,41.78466796875,-116.68359375,128.276184082031,72.07763671875,110.84375,128.276184082031,72.07763671875,110.84375,128.276184082031,34.948486328125,-116.68359375,128.276184082031,34.948486328125,-116.68359375,150.432189941406,72.07763671875,-116.68359375,151.84619140625,71.037109375,110.84375,150.432189941406,72.07763671875,110.84375,151.84619140625,71.037109375,
- -116.68359375,150.432189941406,34.948486328125,-116.68359375,151.84619140625,35.98876953125,110.84375,150.432189941406,34.948486328125,110.84375,151.84619140625,35.98876953125,-3.4609375,150.432189941406,72.07763671875,-3.4609375,128.276184082031,72.07763671875,-3.4609375,120.580749511719,65.24169921875,-3.4609375,120.580749511719,41.78466796875,-3.4609375,128.276184082031,34.948486328125,-3.4609375,150.432189941406,34.948486328125,-3.4609375,151.84619140625,35.98876953125,-3.4609375,151.84619140625,71.037109375,109.76171875,120.580749511719,-65.2421875,-117.765625,120.580749511719,-65.2421875,109.76171875,120.580749511719,-41.78515625,-117.765625,120.580749511719,-41.78515625,109.76171875,128.276184082031,-72.078125,-117.765625,128.276184082031,-72.078125,-117.765625,128.276184082031,-34.94921875,109.76171875,128.276184082031,-34.94921875,109.76171875,150.432189941406,-72.078125,109.765625,151.84619140625,-71.037109375,-117.765625,150.432189941406,-72.078125,-117.765625,151.84619140625,-71.037109375,109.76171875,150.432189941406,-34.94921875,109.765625,151.84619140625,-35.98828125,-117.765625,150.432189941406,-34.94921875,-117.765625,151.84619140625,-35.98828125,-3.4609375,150.432189941406,-72.078125,-3.4609375,128.276184082031,-72.078125,-3.4609375,120.580749511719,-65.2412109375,-3.4609375,120.580749511719,-41.7841796875,-3.4609375,128.276184082031,-34.9482421875,-3.4609375,150.432189941406,-34.9482421875,-3.4609375,151.84619140625,-35.9892578125,-3.4609375,151.84619140625,-71.037109375,-110.0234375,250.440368652344,67.073974609375,-75.77734375,252.515563964844,17.806640625,-109.875,220.789001464844,19.3173828125,-110.6484375,285.454040527344,17.765380859375,-81.00390625,286.153259277344,17.89697265625,-79.77734375,185.253845214844,68.734130859375,-78.96875,219.710876464844,65.750244140625,-108.26171875,220.906188964844,17.3203125,-105.87890625,251.513610839844,17.241943359375,-76.35546875,251.808532714844,64.30517578125,-78.578125,183.282165527344,20.689208984375,-108.74609375,219.580993652344,65.541259765625,
- -78.76171875,220.292907714844,25.36376953125,-77.1328125,285.920837402344,63.7783203125,-76.82421875,219.110290527344,18.85205078125,-75.484375,182.753845214844,67.462890625,-109.3359375,184.238220214844,17.975830078125,-111.30859375,185.886657714844,15.66845703125,-108.81640625,221.443298339844,68.60302734375,-75.2421875,220.882751464844,67.058837890625,-112.78125,218.546813964844,17.739013671875,-107.25,251.871032714844,65.250732421875,-112.015625,186.180603027344,66.447509765625,-108.796875,179.144470214844,68.47900390625,-78.2578125,285.853454589844,65.620849609375,-74.83203125,221.416931152344,24.942138671875,-110.91796875,217.924743652344,68.641357421875,-77.6953125,185.264587402344,66.95703125,-110.1171875,221.309509277344,68.076416015625,-76.55859375,252.408142089844,16.4755859375,-108.37109375,184.539001464844,58.784423828125,-79.83203125,184.817321777344,16.408935546875,-77.26171875,284.565368652344,68.19970703125,-105.94921875,251.992126464844,66.989990234375,-78.1875,184.019470214844,65.765869140625,-111.125,285.198181152344,66.5458984375,-76.75390625,251.534118652344,20.56298828125,-76.171875,249.647399902344,68.47119140625,-107.84375,184.214782714844,16.84521484375,-79.98046875,251.296813964844,16.987548828125,-109.8046875,253.088806152344,15.68896484375,-112.3046875,185.655212402344,16.9423828125,-83.328125,221.607360839844,16.482421875,-75.63671875,284.550720214844,23.38037109375,-109.05078125,250.653259277344,68.731201171875,-79.53125,183.813415527344,67.079345703125,-86.94140625,220.216735839844,17.831787109375,-75.12109375,249.812438964844,17.919921875,-76.6953125,181.755798339844,68.7802734375,-75.83203125,284.405212402344,65.50634765625,-76.9453125,218.200134277344,66.510009765625,-109.40625,250.402282714844,17.742919921875,-80.0703125,183.760681152344,18.360107421875,-110.79296875,186.436462402344,67.615234375,-78.453125,184.638610839844,17.980712890625,-102.47265625,184.322204589844,66.8818359375,-74.82421875,249.636657714844,66.887939453125,-107.41015625,251.761657714844,18.186767578125,-108.60546875,286.423767089844,17.942138671875,
- -111.890625,217.816345214844,67.21240234375,-75.88671875,248.903259277344,16.60498046875,-111.10546875,218.377868652344,16.755615234375,-81.58203125,219.679626464844,66.855712890625,-74.8203125,230.973571777344,16.2685546875,-75.828125,253.075134277344,65.5166015625,-77.8046875,219.735290527344,17.070556640625,-78.9140625,218.177673339844,67.354736328125,-76.6484375,220.793884277344,67.977783203125,-109.34765625,285.132751464844,68.030517578125,-108.5390625,286.144470214844,66.93017578125,-79.94921875,284.872985839844,16.12841796875,-78.70703125,285.811462402344,23.07958984375,-107.8203125,250.369079589844,16.69140625,-111.09375,253.308532714844,17.3583984375,-109.5390625,183.206970214844,16.544189453125,-110.17578125,179.680603027344,67.5791015625,-76.67578125,253.377868652344,67.12890625,-77.6796875,251.718688964844,65.635986328125,-109.16796875,285.539001464844,16.229736328125,-78.06640625,148.9140625,25.11083984375,-107.35546875,148.7080078125,18.489013671875,-106.66015625,148.767578125,66.472412109375,-84.5,148.7861328125,19.8759765625,-109.03125,148.703125,18.956787109375,-77.92578125,148.7998046875,65.248779296875,-107.70703125,148.8623046875,64.752685546875,-109.0859375,149.9091796875,68.1875,-76.69921875,154.134765625,17.255615234375,-109.91796875,149.865234375,17.85400390625,-75.0703125,149.9287109375,67.48974609375,-75.859375,149.7939453125,68.261474609375,-110.69921875,149.9345703125,67.09130859375,-75.30078125,154.69140625,18.31689453125,-108.3828125,149.865234375,16.709716796875,-74.8671875,150.591796875,25.436279296875,-85.359375,149.7470703125,17.001708984375,-76.30859375,315.774353027344,19.580322265625,-75.2109375,313.308532714844,65.396484375,-112.69921875,315.152282714844,19.147216796875,-110.72265625,313.668884277344,67.833984375,-111.40234375,316.308532714844,66.8818359375,-76.46484375,315.293884277344,58.724609375,-81.4765625,315.549743652344,67.079345703125,-113.44140625,313.855407714844,17.49755859375,-77.01171875,311.697204589844,67.285400390625,-78.6484375,316.253845214844,17.2509765625,
- -112.43359375,315.451110839844,66.477783203125,-110.3203125,286.448181152344,19.388916015625,-111.578125,287.064392089844,67.8759765625,-77.5546875,288.091735839844,16.392822265625,-112.34765625,287.250915527344,16.932861328125,-76.48046875,287.175720214844,64.137939453125,-77.703125,287.113220214844,67.064453125,-112.9921875,286.916931152344,66.364013671875,-75.796875,287.034118652344,18.102783203125,-111.05078125,287.192321777344,16.33349609375,-77.15234375,314.892517089844,16.56005859375,-75.65234375,313.870056152344,18.74755859375,-111.59375,314.687438964844,16.3359375,-110.640625,253.045837402344,65.9619140625,-109.21875,253.008728027344,68.263427734375,-75.92578125,181.755798339844,19.35205078125,-77.2734375,182.204040527344,17.33837890625,-109.76171875,183.109313964844,58.86865234375,-110.58984375,183.206970214844,18.23583984375,-109.1484375,219.594665527344,20.87255859375,-107.98046875,219.700134277344,18.41845703125,-106.75390625,219.601501464844,66.85986328125,-74.25390625,227.335876464844,19.28173828125,-76.7578125,270.985290527344,16.302001953125,-75.70703125,270.920837402344,17.646728515625,-78.828125,148.7978515625,66.513671875,-110.48828125,286.286071777344,65.2548828125,-77.3125,456.099609375,67.073974609375,-78.37109375,317.140563964844,16.290771484375,-53.00390625,432.274291992188,17.806640625,-110.76953125,314.153259277344,67.10693359375,-98.546875,428.83935546875,19.3173828125,-44.67578125,477.821533203125,17.765380859375,-31.296875,450.201171875,17.89697265625,-75.8984375,387.57763671875,68.734130859375,-69.359375,411.641845703125,65.750244140625,-97.06640625,428.176513671875,17.3203125,-75.3046875,455.792236328125,17.241943359375,-53.921875,432.4228515625,64.30517578125,-77.046875,385.529907226563,20.689208984375,-96.34375,426.015869140625,65.541259765625,-68.6015625,411.774353027344,25.36376953125,-30.84375,447.869384765625,63.7783203125,-66.6015625,409.056945800781,18.85205078125,-110.55859375,316.911071777344,68.79541015625,-76.27734375,385.002075195313,67.462890625,-108.34375,390.6337890625,17.975830078125,
- -112.73046875,315.424743652344,17.9873046875,-107.88671875,392.504455566406,15.66845703125,-97.2421875,429.002807617188,68.60302734375,-87.31640625,314.948181152344,17.853759765625,-68.21875,412.113098144531,67.058837890625,-98.2421875,425.65185546875,17.739013671875,-75.90234375,457.094848632813,65.250732421875,-108.53125,392.953796386719,66.447509765625,-109.5078125,384.771301269531,68.47900390625,-31.44140625,449.270263671875,65.620849609375,-67.65234375,412.293823242188,24.942138671875,-96.92578125,424.151000976563,68.641357421875,-73.83984375,387.262390136719,66.95703125,-98.453125,429.500854492188,68.076416015625,-53.5859375,432.80224609375,16.4755859375,-107.33984375,390.844909667969,58.784423828125,-76.0078125,387.239074707031,16.408935546875,-31.74609375,447.03515625,68.19970703125,-74.92578125,456.220458984375,66.989990234375,-76.8984375,386.117370605469,65.765869140625,-45.140625,478.14697265625,66.5458984375,-54.3515625,432.566162109375,20.56298828125,-54.8359375,430.776000976563,68.47119140625,-106.87109375,390.40087890625,16.84521484375,-56.66796875,434.824829101563,16.987548828125,-77.82421875,316.693298339844,68.10986328125,-74.984375,458.2587890625,15.68896484375,-78.375,314.578063964844,65.999267578125,-108.91015625,392.390686035156,16.9423828125,-77.234375,315.890563964844,23.96142578125,-74.96484375,416.612854003906,16.482421875,-31.15625,445.520629882813,23.38037109375,-76.46875,455.55712890625,68.731201171875,-78.25390625,386.127258300781,67.079345703125,-75.8125,415.641967773438,17.831787109375,-54.0234375,430.101684570313,17.919921875,-77.5703125,384.335021972656,68.7802734375,-31.33984375,445.658569335938,65.50634765625,-67.2734375,408.008728027344,66.510009765625,-76.9296875,455.61865234375,17.742919921875,-78.79296875,386.156433105469,18.360107421875,-107.27734375,393.053588867188,67.615234375,-74.6640625,386.890930175781,17.980712890625,-101.53125,389.784729003906,66.8818359375,-78.609375,314.536071777344,23.406494140625,-53.921875,429.787841796875,66.887939453125,-76.10546875,457.125366210938,18.186767578125,
- -77.0546875,317.330993652344,18.0224609375,-40.2578125,474.25537109375,17.942138671875,-111.78515625,315.874938964844,67.060302734375,-97.84765625,424.4853515625,67.21240234375,-55.0859375,430.1494140625,16.60498046875,-111.37109375,314.212829589844,18.52490234375,-96.84765625,424.703979492188,16.755615234375,-71.25390625,412.634704589844,66.855712890625,-63.97265625,419.166748046875,16.2685546875,-52.69140625,432.616943359375,65.5166015625,-67.48828125,409.47802734375,17.070556640625,-111.66796875,315.879821777344,15.9423828125,-76.7578125,316.452087402344,66.18994140625,-69,410.033813476563,67.354736328125,-69.484375,412.732360839844,67.977783203125,-44.54296875,476.4716796875,68.030517578125,-40.5390625,474.081787109375,66.93017578125,-32.48828125,449.631713867188,16.12841796875,-30.60546875,446.895263671875,23.07958984375,-75.87890625,454.427490234375,16.69140625,-75.62890625,459.40673828125,17.3583984375,-109.7578125,389.600341796875,16.544189453125,-110.83203125,385.519104003906,67.5791015625,-53.0546875,433.422119140625,67.12890625,-54.859375,433.357666015625,65.635986328125,-44.0234375,476.4873046875,16.229736328125,-78.4765625,351.034118652344,25.11083984375,-109.51171875,350.829040527344,18.489013671875,-108.8125,350.888610839844,66.472412109375,-86.65625,350.907165527344,19.8759765625,-111.18359375,350.822204589844,18.956787109375,-78.3359375,350.918884277344,65.248779296875,-109.86328125,350.983337402344,64.752685546875,-111.2421875,352.030212402344,68.1875,-78.85546875,356.253845214844,17.255615234375,-112.07421875,351.986267089844,17.85400390625,-77.2265625,352.050720214844,67.48974609375,-78.015625,351.914978027344,68.261474609375,-112.85546875,352.055603027344,67.09130859375,-77.45703125,356.811462402344,18.31689453125,-110.5390625,351.986267089844,16.709716796875,-76.8671875,349.771423339844,25.51904296875,-111.109375,349.500915527344,17.379638671875,-87.390625,349.559509277344,17.80810546875,-112.9140625,349.545837402344,18.73193359375,-78.53515625,349.413024902344,68.245849609375,-111.765625,349.779235839844,66.867919921875,
- -110.51171875,349.695251464844,68.2763671875,-77.046875,339.924743652344,19.12744140625,-78.59765625,339.434509277344,17.4033203125,-77.0234375,352.712829589844,25.436279296875,-87.515625,351.866149902344,17.001708984375,-2.95703125,448.303100585938,19.580322265625,-4.8984375,447.241455078125,65.396484375,-3.390625,483.35888671875,19.147216796875,-5.11328125,481.452880859375,67.833984375,-2.04296875,482.103149414063,66.8818359375,-3.34375,447.732177734375,58.724609375,-3.10546875,453.263793945313,67.079345703125,-4.93359375,484.06396484375,17.49755859375,-6.22265625,448.9306640625,67.285400390625,-2.546875,450.546630859375,17.2509765625,-3.0390625,483.103271484375,66.477783203125,-40.80859375,475.804443359375,19.388916015625,-40.046875,475.821166992188,67.8759765625,-28.03515625,445.43115234375,16.392822265625,-40.09375,476.58984375,16.932861328125,-28.3828125,444.2119140625,64.137939453125,-28.83203125,445.296752929688,67.064453125,-40.67578125,477.033935546875,66.364013671875,-28.265625,443.556518554688,18.102783203125,-39.734375,475.396362304688,16.33349609375,-3.66015625,449.11474609375,16.56005859375,-4.46484375,447.6689453125,18.74755859375,-3.9375,482.298828125,16.3359375,-75.57421875,458.856079101563,65.9619140625,-74.671875,457.753173828125,68.263427734375,-77.28515625,349.548767089844,66.83251953125,-76.8046875,384.251586914063,19.35205078125,-78.10546875,384.766723632813,17.33837890625,-109.9921875,389.512390136719,58.86865234375,-110.796875,389.731750488281,18.23583984375,-96.69140625,426.22119140625,20.87255859375,-95.60546875,425.777587890625,18.41845703125,-94.578125,425.09326171875,66.85986328125,-65.171875,416.400146484375,19.28173828125,-39.89453125,442.653198242188,16.302001953125,-39.4375,441.703491210938,17.646728515625,-79.23828125,350.918884277344,66.513671875,-41.04296875,475.888671875,65.2548828125,102.109375,388.774780273438,67.073974609375,-1.09375,450.937744140625,16.290771484375,68.28125,383.083862304688,17.806640625,-3.54296875,484.994750976563,67.10693359375,92.34375,421.979919433594,19.3173828125,
- 103.484375,351.927551269531,17.765380859375,73.83984375,351.228332519531,17.89697265625,47.44140625,432.7783203125,68.734130859375,64.05859375,409.470947265625,65.750244140625,90.9453125,421.16162109375,17.3203125,98.1328125,387.08251953125,17.241943359375,68.8046875,383.703735351563,64.30517578125,45.4140625,432.966186523438,20.689208984375,90.7109375,422.75244140625,65.541259765625,64.0859375,408.9462890625,25.36376953125,69.96875,351.460754394531,63.7783203125,61.921875,408.959411621094,18.85205078125,-0.2421875,484.7314453125,68.79541015625,43.078125,430.8974609375,67.462890625,66.3515625,455.519775390625,17.975830078125,-1.98828125,486.945678710938,17.9873046875,69.11328125,455.69189453125,15.66845703125,91.71484375,420.837768554688,68.60302734375,-2.8203125,459.92236328125,17.853759765625,61.1171875,406.992553710938,67.058837890625,93.76953125,425.6513671875,17.739013671875,99.5390625,386.822082519531,65.250732421875,69.84765625,455.97607421875,66.447509765625,61.45703125,458.893798828125,68.47900390625,71.09375,351.528137207031,65.620849609375,60.9296875,406.438171386719,24.942138671875,91.77734375,425.4638671875,68.641357421875,46.0546875,431.2275390625,66.95703125,92.8203125,421.530822753906,68.076416015625,69.05078125,383.244506835938,16.4755859375,65.97265625,454.565551757813,58.784423828125,47.20703125,433.065673828125,16.408935546875,70.09765625,352.816223144531,68.19970703125,98.2578125,386.552734375,66.989990234375,45.6171875,432.271728515625,65.765869140625,103.9609375,352.183410644531,66.5458984375,69.17578125,383.964782714844,20.56298828125,68.41796875,385.402160644531,68.47119140625,65.34375,454.417236328125,16.84521484375,72.36328125,384.506286621094,16.987548828125,-1.4765625,450.40283203125,68.10986328125,102.21484375,385.664794921875,15.68896484375,-3.20703125,450.983642578125,65.999267578125,69.578125,456.61279296875,16.9423828125,-2.14453125,449.828369140625,23.96142578125,68.69140625,409.891906738281,16.482421875,68.47265625,352.830871582031,23.38037109375,101.17578125,388.414001464844,68.731201171875,
- 46.375,433.395141601563,67.079345703125,71.41796875,412.573486328125,17.831787109375,67.39453125,385.139770507813,17.919921875,43.25,432.337036132813,68.7802734375,68.66796875,352.976379394531,65.50634765625,61.6953125,409.67041015625,66.510009765625,101.49609375,388.746276855469,17.742919921875,46.6953125,433.83154296875,18.360107421875,69.2421875,454.871826171875,67.615234375,46.17578125,432.135009765625,17.980712890625,61.87890625,450.309448242188,66.8818359375,-3.23828125,451.216552734375,23.406494140625,67.08203125,385.239440917969,66.887939453125,99.68359375,386.963012695313,18.186767578125,-0.984375,449.61572265625,18.0224609375,101.44140625,350.957824707031,17.942138671875,-1.4609375,485.990356445313,67.060302734375,92.58203125,426.025268554688,67.21240234375,68.0625,385.954162597656,16.60498046875,-3.46875,485.59375,18.52490234375,92.1875,425.0712890625,16.755615234375,66.39453125,410.650024414063,66.855712890625,63.7421875,399.482788085938,16.2685546875,68.375,382.644958496094,65.5166015625,63.0234375,408.939331054688,17.070556640625,-1.45703125,485.873046875,15.9423828125,-1.703125,449.339721679688,66.18994140625,63.44140625,410.585021972656,67.354736328125,62.359375,407.662048339844,67.977783203125,102.18359375,352.248840332031,68.030517578125,101.375,351.237121582031,66.93017578125,72.78515625,352.508605957031,16.12841796875,71.54296875,351.570129394531,23.07958984375,99.9140625,388.595825195313,16.69140625,103.5234375,385.520568847656,17.3583984375,65.578125,456.46435546875,16.544189453125,62.80078125,459.588012695313,67.5791015625,69.2421875,382.477844238281,67.12890625,70.11328125,383.913208007813,65.635986328125,102.00390625,351.842590332031,16.229736328125,25.9296875,444.57958984375,25.11083984375,37.3203125,471.564697265625,18.489013671875,37.10546875,470.896240234375,66.472412109375,28.375,450.530029296875,19.8759765625,37.97265625,473.104370117188,18.956787109375,25.7890625,444.487060546875,65.248779296875,37.62109375,471.816040039063,64.752685546875,39.28125,472.59423828125,68.1875,29.203125,441.546020507813,17.255615234375,
- 39.5703125,473.375854492188,17.85400390625,25.4765625,441.506591796875,67.48974609375,25.69921875,442.27197265625,68.261474609375,39.96484375,474.05712890625,67.09130859375,28.96875,440.098388671875,18.31689453125,38.94921875,471.972778320313,16.709716796875,24.515625,443.872802734375,25.51904296875,37.34765625,475.620971679688,17.379638671875,28.3671875,453.66845703125,17.80810546875,38.0859375,477.272338867188,18.73193359375,24.8828125,445.52880859375,68.245849609375,37.90234375,476.104614257813,66.867919921875,37.33203125,474.984008789063,68.2763671875,16.93359375,446.236083984375,19.12744140625,16.984375,447.838623046875,17.4033203125,25.8671875,441.108276367188,25.436279296875,29.5078125,450.97509765625,17.001708984375,69.14453125,321.607238769531,19.580322265625,68.046875,324.073059082031,65.396484375,105.53515625,322.229309082031,19.147216796875,103.55859375,323.712707519531,67.833984375,104.23828125,321.073059082031,66.8818359375,69.30078125,322.087707519531,58.724609375,74.3125,321.831848144531,67.079345703125,106.27734375,323.526184082031,17.49755859375,69.84765625,325.684387207031,67.285400390625,71.484375,321.127746582031,17.2509765625,105.26953125,321.930480957031,66.477783203125,103.15625,350.933410644531,19.388916015625,104.4140625,350.317199707031,67.8759765625,70.390625,349.289855957031,16.392822265625,105.18359375,350.130676269531,16.932861328125,69.31640625,350.205871582031,64.137939453125,70.5390625,350.268371582031,67.064453125,105.828125,350.464660644531,66.364013671875,68.6328125,350.347473144531,18.102783203125,103.88671875,350.189270019531,16.33349609375,69.98828125,322.489074707031,16.56005859375,68.48828125,323.511535644531,18.74755859375,104.4296875,322.694152832031,16.3359375,103.046875,385.7900390625,65.9619140625,101.625,385.705505371094,68.263427734375,24.5078125,444.32861328125,66.83251953125,42.75390625,431.74560546875,19.35205078125,43.8984375,432.54736328125,17.33837890625,65.63671875,456.70654296875,58.86865234375,66.26171875,457.258544921875,18.23583984375,91.078125,422.916320800781,20.87255859375,
- 90.0859375,422.291137695313,18.41845703125,88.93359375,421.848815917969,66.85986328125,62.22265625,401.955871582031,19.28173828125,69.59375,366.396301269531,16.302001953125,68.54296875,366.460754394531,17.646728515625,26.14453125,445.31494140625,66.513671875,103.32421875,351.095520019531,65.2548828125,105.1484375,186.295715332031,67.073974609375,71.20703125,320.241027832031,16.290771484375,71.171875,184.220520019531,17.806640625,103.60546875,323.228332519531,67.10693359375,105.00390625,215.268371582031,19.3173828125,106.04296875,151.045959472656,17.765380859375,75.44921875,148.694396972656,17.89697265625,69.625,247.022277832031,68.734130859375,71.140625,216.345520019531,65.750244140625,103.38671875,215.151184082031,17.3203125,103.56640625,185.220520019531,17.241943359375,71.890625,184.928527832031,64.30517578125,70.47265625,249.719543457031,20.689208984375,101.71484375,216.475402832031,65.541259765625,70.5390625,215.763488769531,25.36376953125,73.10546875,149.159240722656,63.7783203125,67.4921875,217.580871582031,18.85205078125,103.39453125,320.470520019531,68.79541015625,69.64453125,250.247863769531,67.462890625,102.171875,248.762512207031,17.975830078125,105.56640625,321.956848144531,17.9873046875,101.98828125,247.116027832031,15.66845703125,103.9453125,214.614074707031,68.60302734375,80.15234375,322.433410644531,17.853759765625,70.3671875,215.173645019531,67.058837890625,103.22265625,217.510559082031,17.739013671875,104.93359375,184.864074707031,65.250732421875,102.6953125,246.822082519531,66.447509765625,102.69140625,253.858215332031,68.47900390625,74.62890625,149.228576660156,65.620849609375,69.9609375,214.638488769531,24.942138671875,101.359375,218.132629394531,68.641357421875,67.54296875,247.011535644531,66.95703125,105.2421875,214.747863769531,68.076416015625,71.953125,184.325988769531,16.4755859375,101.20703125,248.462707519531,58.784423828125,69.68359375,247.457824707031,16.408935546875,72.65625,150.516662597656,68.19970703125,103.6328125,184.742004394531,66.989990234375,70.40625,248.982238769531,65.765869140625,
- 106.51953125,151.301818847656,66.5458984375,72.28515625,185.200012207031,20.56298828125,71.296875,187.087707519531,68.47119140625,100.6796875,248.787902832031,16.84521484375,75.51171875,185.438293457031,16.987548828125,70.66015625,320.688293457031,68.10986328125,105.19921875,183.645324707031,15.68896484375,71.2109375,322.803527832031,65.999267578125,102.984375,247.346496582031,16.9423828125,70.0703125,321.491027832031,23.96142578125,78.453125,214.448059082031,16.482421875,71.03125,150.531311035156,23.38037109375,104.17578125,186.081848144531,68.731201171875,71.74609375,249.189270019531,67.079345703125,78.71875,215.838684082031,17.831787109375,70.24609375,186.923645019531,17.919921875,70.85546875,251.244934082031,68.7802734375,71.2265625,150.676818847656,65.50634765625,67.6171875,219.160949707031,66.510009765625,104.53515625,186.332824707031,17.742919921875,72.2890625,249.240051269531,18.360107421875,101.4765625,246.566223144531,67.615234375,68.30078125,247.636535644531,17.980712890625,95.30859375,248.680480957031,66.8818359375,71.4453125,322.845520019531,23.406494140625,69.94921875,187.097473144531,66.887939453125,105.09375,184.974426269531,18.186767578125,69.890625,320.050598144531,18.0224609375,101.1171875,148.656311035156,17.942138671875,104.62109375,321.506652832031,67.060302734375,102.3359375,218.239074707031,67.21240234375,71.01171875,187.830871582031,16.60498046875,104.20703125,323.168762207031,18.52490234375,101.546875,217.678527832031,16.755615234375,73.28125,216.375793457031,66.855712890625,70.5390625,205.082824707031,16.2685546875,71.22265625,183.659973144531,65.5166015625,68.47265625,217.625793457031,17.070556640625,104.50390625,321.501770019531,15.9423828125,69.59375,320.929504394531,66.18994140625,70.0703125,217.878723144531,67.354736328125,71.7734375,215.262512207031,67.977783203125,104.7421875,151.366271972656,68.030517578125,101.0546875,148.937561035156,66.93017578125,75.34375,150.208068847656,16.12841796875,72.11328125,149.308654785156,23.07958984375,102.9453125,186.364074707031,16.69140625,106.4921875,183.426574707031,17.3583984375,
- 103.4375,249.793762207031,16.544189453125,104.0703125,253.320129394531,67.5791015625,72.0703125,183.357238769531,67.12890625,73.2109375,185.017395019531,65.635986328125,104.5625,150.959045410156,16.229736328125,71.3125,286.347473144531,25.11083984375,102.34765625,286.552551269531,18.489013671875,101.6484375,286.492980957031,66.472412109375,79.4921875,286.474426269531,19.8759765625,104.01953125,286.559387207031,18.956787109375,71.171875,286.462707519531,65.248779296875,102.69921875,286.398254394531,64.752685546875,104.078125,285.351379394531,68.1875,71.69140625,281.127746582031,17.255615234375,104.91015625,285.395324707031,17.85400390625,70.0625,285.330871582031,67.48974609375,70.8515625,285.466613769531,68.261474609375,105.69140625,285.325988769531,67.09130859375,70.29296875,280.570129394531,18.31689453125,103.375,285.395324707031,16.709716796875,69.703125,287.610168457031,25.51904296875,103.9453125,287.880676269531,17.379638671875,80.2265625,287.822082519531,17.80810546875,105.75,287.835754394531,18.73193359375,71.37109375,287.968566894531,68.245849609375,104.6015625,287.602355957031,66.867919921875,103.34765625,287.686340332031,68.2763671875,69.8828125,297.456848144531,19.12744140625,71.43359375,297.947082519531,17.4033203125,69.859375,284.668762207031,25.436279296875,80.3515625,285.515441894531,17.001708984375,102.76171875,148.634826660156,19.388916015625,106.0390625,183.689270019531,65.9619140625,104.61328125,183.726379394531,68.263427734375,70.12109375,287.832824707031,66.83251953125,70.0859375,251.243957519531,19.35205078125,71.43359375,250.796691894531,17.33837890625,103.65625,249.892395019531,58.86865234375,104.484375,249.793762207031,18.23583984375,102.1171875,216.460754394531,20.87255859375,100.953125,216.354309082031,18.41845703125,99.72265625,216.454895019531,66.85986328125,69.97265625,208.721496582031,19.28173828125,72.15234375,161.551818847656,16.302001953125,71.1015625,161.617248535156,17.646728515625,72.07421875,286.462707519531,66.513671875,102.921875,148.795959472656,65.2548828125,103.1015625,250.440368652344,-67.07421875,
- 68.85546875,252.515563964844,-17.806640625,102.953125,220.789001464844,-19.3173828125,103.7265625,285.454040527344,-17.765625,74.08203125,286.153259277344,-17.896484375,72.85546875,185.253845214844,-68.734375,72.046875,219.710876464844,-65.75,101.33984375,220.906188964844,-17.3203125,98.95703125,251.513610839844,-17.2421875,69.43359375,251.808532714844,-64.3046875,71.65625,183.282165527344,-20.689453125,101.82421875,219.580993652344,-65.541015625,71.83984375,220.292907714844,-25.36328125,70.2109375,285.920837402344,-63.7783203125,69.90234375,219.110290527344,-18.8515625,68.5625,182.753845214844,-67.462890625,102.4140625,184.238220214844,-17.9755859375,104.38671875,185.886657714844,-15.66796875,101.89453125,221.443298339844,-68.603515625,68.3203125,220.882751464844,-67.05859375,105.859375,218.546813964844,-17.7392578125,100.328125,251.871032714844,-65.2509765625,105.09375,186.180603027344,-66.447265625,101.875,179.144470214844,-68.478515625,71.3359375,285.853454589844,-65.62109375,67.91015625,221.416931152344,-24.9423828125,103.99609375,217.924743652344,-68.6416015625,70.7734375,185.264587402344,-66.95703125,103.1953125,221.309509277344,-68.076171875,69.63671875,252.408142089844,-16.4755859375,101.44921875,184.539001464844,-58.7841796875,72.91015625,184.817321777344,-16.4091796875,70.33984375,284.565368652344,-68.19921875,99.02734375,251.992126464844,-66.990234375,71.265625,184.019470214844,-65.765625,104.203125,285.198181152344,-66.5458984375,69.83203125,251.534118652344,-20.5625,69.25,249.647399902344,-68.470703125,100.921875,184.214782714844,-16.845703125,73.05859375,251.296813964844,-16.9873046875,102.8828125,253.088806152344,-15.689453125,105.3828125,185.655212402344,-16.9423828125,76.40625,221.607360839844,-16.482421875,68.71484375,284.550720214844,-23.380859375,102.12890625,250.653259277344,-68.7314453125,72.609375,183.813415527344,-67.0791015625,80.01953125,220.216735839844,-17.83203125,68.19921875,249.812438964844,-17.919921875,69.7734375,181.755798339844,-68.7802734375,68.91015625,284.405212402344,-65.505859375,
- 70.0234375,218.200134277344,-66.509765625,102.484375,250.402282714844,-17.7431640625,73.1484375,183.760681152344,-18.3603515625,103.87109375,186.436462402344,-67.615234375,71.53125,184.638610839844,-17.98046875,95.55078125,184.322204589844,-66.8818359375,67.90234375,249.636657714844,-66.8876953125,100.48828125,251.761657714844,-18.1865234375,101.68359375,286.423767089844,-17.9423828125,104.96875,217.816345214844,-67.212890625,68.96484375,248.903259277344,-16.60546875,104.18359375,218.377868652344,-16.755859375,74.66015625,219.679626464844,-66.85546875,67.8984375,230.973571777344,-16.2685546875,68.90625,253.075134277344,-65.5166015625,70.8828125,219.735290527344,-17.0703125,71.9921875,218.177673339844,-67.3544921875,69.7265625,220.793884277344,-67.9775390625,102.42578125,285.132751464844,-68.0302734375,101.6171875,286.144470214844,-66.9296875,73.02734375,284.872985839844,-16.12890625,71.78515625,285.811462402344,-23.080078125,100.8984375,250.369079589844,-16.69140625,104.171875,253.308532714844,-17.3583984375,102.6171875,183.206970214844,-16.5439453125,103.25390625,179.680603027344,-67.5791015625,69.75390625,253.377868652344,-67.12890625,70.7578125,251.718688964844,-65.6357421875,102.24609375,285.539001464844,-16.2294921875,71.14453125,148.9140625,-25.111328125,100.43359375,148.7080078125,-18.4892578125,99.73828125,148.767578125,-66.47265625,77.578125,148.7861328125,-19.8759765625,102.109375,148.703125,-18.95703125,71.00390625,148.7998046875,-65.2490234375,100.78515625,148.8623046875,-64.7529296875,102.1640625,149.9091796875,-68.1875,69.77734375,154.134765625,-17.255859375,102.99609375,149.865234375,-17.853515625,68.1484375,149.9287109375,-67.490234375,68.9375,149.7939453125,-68.26171875,103.77734375,149.9345703125,-67.091796875,68.37890625,154.69140625,-18.31640625,101.4609375,149.865234375,-16.7099609375,67.9453125,150.591796875,-25.4365234375,78.4375,149.7470703125,-17.001953125,69.38671875,315.774353027344,-19.580078125,68.2890625,313.308532714844,-65.396484375,105.77734375,315.152282714844,-19.1474609375,103.80078125,313.668884277344,-67.833984375,
- 104.48046875,316.308532714844,-66.8818359375,69.54296875,315.293884277344,-58.724609375,74.5546875,315.549743652344,-67.0791015625,106.51953125,313.855407714844,-17.498046875,70.08984375,311.697204589844,-67.28515625,71.7265625,316.253845214844,-17.2509765625,105.51171875,315.451110839844,-66.4775390625,103.3984375,286.448181152344,-19.388671875,104.65625,287.064392089844,-67.8759765625,70.6328125,288.091735839844,-16.392578125,105.42578125,287.250915527344,-16.9326171875,69.55859375,287.175720214844,-64.1376953125,70.78125,287.113220214844,-67.064453125,106.0703125,286.916931152344,-66.3642578125,68.875,287.034118652344,-18.1025390625,104.12890625,287.192321777344,-16.333984375,70.23046875,314.892517089844,-16.560546875,68.73046875,313.870056152344,-18.748046875,104.671875,314.687438964844,-16.3359375,103.71875,253.045837402344,-65.9619140625,102.296875,253.008728027344,-68.263671875,69.00390625,181.755798339844,-19.3515625,70.3515625,182.204040527344,-17.337890625,102.83984375,183.109313964844,-58.869140625,103.66796875,183.206970214844,-18.236328125,102.2265625,219.594665527344,-20.873046875,101.05859375,219.700134277344,-18.41796875,99.83203125,219.601501464844,-66.859375,67.33203125,227.335876464844,-19.28125,69.8359375,270.985290527344,-16.3017578125,68.78515625,270.920837402344,-17.646484375,71.90625,148.7978515625,-66.513671875,103.56640625,286.286071777344,-65.2548828125,70.390625,456.099609375,-67.07421875,71.44921875,317.140563964844,-16.291015625,46.08203125,432.274291992188,-17.806640625,103.84765625,314.153259277344,-67.107421875,91.625,428.83935546875,-19.3173828125,37.75390625,477.821533203125,-17.765625,24.375,450.201171875,-17.896484375,68.9765625,387.57763671875,-68.734375,62.4375,411.641845703125,-65.75,90.14453125,428.176513671875,-17.3203125,68.3828125,455.792236328125,-17.2421875,47,432.4228515625,-64.3046875,70.125,385.529907226563,-20.689453125,89.421875,426.015869140625,-65.541015625,61.6796875,411.774353027344,-25.36328125,23.921875,447.869384765625,-63.7783203125,59.6796875,409.056945800781,-18.8515625,
- 103.63671875,316.911071777344,-68.794921875,69.35546875,385.002075195313,-67.462890625,101.421875,390.6337890625,-17.9755859375,105.80859375,315.424743652344,-17.9873046875,100.96484375,392.504455566406,-15.66796875,90.3203125,429.002807617188,-68.603515625,80.39453125,314.948181152344,-17.853515625,61.296875,412.113098144531,-67.05859375,91.3203125,425.65185546875,-17.7392578125,68.98046875,457.094848632813,-65.2509765625,101.609375,392.953796386719,-66.447265625,102.5859375,384.771301269531,-68.478515625,24.51953125,449.270263671875,-65.62109375,60.73046875,412.293823242188,-24.9423828125,90.00390625,424.151000976563,-68.6416015625,66.91796875,387.262390136719,-66.95703125,91.53125,429.500854492188,-68.076171875,46.6640625,432.80224609375,-16.4755859375,100.41796875,390.844909667969,-58.7841796875,69.0859375,387.239074707031,-16.4091796875,24.82421875,447.03515625,-68.19921875,68.00390625,456.220458984375,-66.990234375,69.9765625,386.117370605469,-65.765625,38.21875,478.14697265625,-66.5458984375,47.4296875,432.566162109375,-20.5625,47.9140625,430.776000976563,-68.470703125,99.94921875,390.40087890625,-16.845703125,49.74609375,434.824829101563,-16.9873046875,70.90234375,316.693298339844,-68.109375,68.0625,458.2587890625,-15.689453125,71.453125,314.578063964844,-65.9990234375,101.98828125,392.390686035156,-16.9423828125,70.3125,315.890563964844,-23.9609375,68.04296875,416.612854003906,-16.482421875,24.234375,445.520629882813,-23.380859375,69.546875,455.55712890625,-68.7314453125,71.33203125,386.127258300781,-67.0791015625,68.890625,415.641967773438,-17.83203125,47.1015625,430.101684570313,-17.919921875,70.6484375,384.335021972656,-68.7802734375,24.41796875,445.658569335938,-65.505859375,60.3515625,408.008728027344,-66.509765625,70.0078125,455.61865234375,-17.7431640625,71.87109375,386.156433105469,-18.3603515625,100.35546875,393.053588867188,-67.615234375,67.7421875,386.890930175781,-17.98046875,94.609375,389.784729003906,-66.8818359375,71.6875,314.536071777344,-23.40625,47,429.787841796875,-66.8876953125,69.18359375,457.125366210938,-18.1865234375,
- 70.1328125,317.330993652344,-18.0224609375,33.3359375,474.25537109375,-17.9423828125,104.86328125,315.874938964844,-67.060546875,90.92578125,424.4853515625,-67.212890625,48.1640625,430.1494140625,-16.60546875,104.44921875,314.212829589844,-18.525390625,89.92578125,424.703979492188,-16.755859375,64.33203125,412.634704589844,-66.85546875,57.05078125,419.166748046875,-16.2685546875,45.76953125,432.616943359375,-65.5166015625,60.56640625,409.47802734375,-17.0703125,104.74609375,315.879821777344,-15.9423828125,69.8359375,316.452087402344,-66.189453125,62.078125,410.033813476563,-67.3544921875,62.5625,412.732360839844,-67.9775390625,37.62109375,476.4716796875,-68.0302734375,33.6171875,474.081787109375,-66.9296875,25.56640625,449.631713867188,-16.12890625,23.68359375,446.895263671875,-23.080078125,68.95703125,454.427490234375,-16.69140625,68.70703125,459.40673828125,-17.3583984375,102.8359375,389.600341796875,-16.5439453125,103.91015625,385.519104003906,-67.5791015625,46.1328125,433.422119140625,-67.12890625,47.9375,433.357666015625,-65.6357421875,37.1015625,476.4873046875,-16.2294921875,71.5546875,351.034118652344,-25.111328125,102.58984375,350.829040527344,-18.4892578125,101.890625,350.888610839844,-66.47265625,79.734375,350.907165527344,-19.8759765625,104.26171875,350.822204589844,-18.95703125,71.4140625,350.918884277344,-65.2490234375,102.94140625,350.983337402344,-64.7529296875,104.3203125,352.030212402344,-68.1875,71.93359375,356.253845214844,-17.255859375,105.15234375,351.986267089844,-17.853515625,70.3046875,352.050720214844,-67.490234375,71.09375,351.914978027344,-68.26171875,105.93359375,352.055603027344,-67.091796875,70.53515625,356.811462402344,-18.31640625,103.6171875,351.986267089844,-16.7099609375,69.9453125,349.771423339844,-25.51953125,104.1875,349.500915527344,-17.3798828125,80.46875,349.559509277344,-17.80859375,105.9921875,349.545837402344,-18.732421875,71.61328125,349.413024902344,-68.24609375,104.84375,349.779235839844,-66.8681640625,103.58984375,349.695251464844,-68.2763671875,70.125,339.924743652344,-19.126953125,
- 71.67578125,339.434509277344,-17.4033203125,70.1015625,352.712829589844,-25.4365234375,80.59375,351.866149902344,-17.001953125,-3.96484375,448.303100585938,-19.580078125,-2.0234375,447.241455078125,-65.396484375,-3.53125,483.35888671875,-19.1474609375,-1.80859375,481.452880859375,-67.833984375,-4.87890625,482.103149414063,-66.8818359375,-3.578125,447.732177734375,-58.724609375,-3.81640625,453.263793945313,-67.0791015625,-1.98828125,484.06396484375,-17.498046875,-0.69921875,448.9306640625,-67.28515625,-4.375,450.546630859375,-17.2509765625,-3.8828125,483.103271484375,-66.4775390625,33.88671875,475.804443359375,-19.388671875,33.125,475.821166992188,-67.8759765625,21.11328125,445.43115234375,-16.392578125,33.171875,476.58984375,-16.9326171875,21.4609375,444.2119140625,-64.1376953125,21.91015625,445.296752929688,-67.064453125,33.75390625,477.033935546875,-66.3642578125,21.34375,443.556518554688,-18.1025390625,32.8125,475.396362304688,-16.333984375,-3.26171875,449.11474609375,-16.560546875,-2.45703125,447.6689453125,-18.748046875,-2.984375,482.298828125,-16.3359375,68.65234375,458.856079101563,-65.9619140625,67.75,457.753173828125,-68.263671875,70.36328125,349.548767089844,-66.83203125,69.8828125,384.251586914063,-19.3515625,71.18359375,384.766723632813,-17.337890625,103.0703125,389.512390136719,-58.869140625,103.875,389.731750488281,-18.236328125,89.76953125,426.22119140625,-20.873046875,88.68359375,425.777587890625,-18.41796875,87.65625,425.09326171875,-66.859375,58.25,416.400146484375,-19.28125,32.97265625,442.653198242188,-16.3017578125,32.515625,441.703491210938,-17.646484375,72.31640625,350.918884277344,-66.513671875,34.12109375,475.888671875,-65.2548828125,-109.03125,388.774780273438,-67.07421875,-5.828125,450.937744140625,-16.291015625,-75.203125,383.083862304688,-17.806640625,-3.37890625,484.994750976563,-67.107421875,-99.265625,421.979919433594,-19.3173828125,-110.40625,351.927551269531,-17.765625,-80.76171875,351.228332519531,-17.896484375,-54.36328125,432.7783203125,-68.734375,-70.98046875,409.470947265625,-65.75,
- -97.8671875,421.16162109375,-17.3203125,-105.0546875,387.08251953125,-17.2421875,-75.7265625,383.703735351563,-64.3046875,-52.3359375,432.966186523438,-20.689453125,-97.6328125,422.75244140625,-65.541015625,-71.0078125,408.9462890625,-25.36328125,-76.890625,351.460754394531,-63.7783203125,-68.84375,408.959411621094,-18.8515625,-6.6796875,484.7314453125,-68.794921875,-50,430.8974609375,-67.462890625,-73.2734375,455.519775390625,-17.9755859375,-4.93359375,486.945678710938,-17.9873046875,-76.03515625,455.69189453125,-15.66796875,-98.63671875,420.837768554688,-68.603515625,-4.1015625,459.92236328125,-17.853515625,-68.0390625,406.992553710938,-67.05859375,-100.69140625,425.6513671875,-17.7392578125,-106.4609375,386.822082519531,-65.2509765625,-76.76953125,455.97607421875,-66.447265625,-68.37890625,458.893798828125,-68.478515625,-78.015625,351.528137207031,-65.62109375,-67.8515625,406.438171386719,-24.9423828125,-98.69921875,425.4638671875,-68.6416015625,-52.9765625,431.2275390625,-66.95703125,-99.7421875,421.530822753906,-68.076171875,-75.97265625,383.244506835938,-16.4755859375,-72.89453125,454.565551757813,-58.7841796875,-54.12890625,433.065673828125,-16.4091796875,-77.01953125,352.816223144531,-68.19921875,-105.1796875,386.552734375,-66.990234375,-52.5390625,432.271728515625,-65.765625,-110.8828125,352.183410644531,-66.5458984375,-76.09765625,383.964782714844,-20.5625,-75.33984375,385.402160644531,-68.470703125,-72.265625,454.417236328125,-16.845703125,-79.28515625,384.506286621094,-16.9873046875,-5.4453125,450.40283203125,-68.109375,-109.13671875,385.664794921875,-15.689453125,-3.71484375,450.983642578125,-65.9990234375,-76.5,456.61279296875,-16.9423828125,-4.77734375,449.828369140625,-23.9609375,-75.61328125,409.891906738281,-16.482421875,-75.39453125,352.830871582031,-23.380859375,-108.09765625,388.414001464844,-68.7314453125,-53.296875,433.395141601563,-67.0791015625,-78.33984375,412.573486328125,-17.83203125,-74.31640625,385.139770507813,-17.919921875,-50.171875,432.337036132813,-68.7802734375,-75.58984375,352.976379394531,-65.505859375,
- -68.6171875,409.67041015625,-66.509765625,-108.41796875,388.746276855469,-17.7431640625,-53.6171875,433.83154296875,-18.3603515625,-76.1640625,454.871826171875,-67.615234375,-53.09765625,432.135009765625,-17.98046875,-68.80078125,450.309448242188,-66.8818359375,-3.68359375,451.216552734375,-23.40625,-74.00390625,385.239440917969,-66.8876953125,-106.60546875,386.963012695313,-18.1865234375,-5.9375,449.61572265625,-18.0224609375,-108.36328125,350.957824707031,-17.9423828125,-5.4609375,485.990356445313,-67.060546875,-99.50390625,426.025268554688,-67.212890625,-74.984375,385.954162597656,-16.60546875,-3.453125,485.59375,-18.525390625,-99.109375,425.0712890625,-16.755859375,-73.31640625,410.650024414063,-66.85546875,-70.6640625,399.482788085938,-16.2685546875,-75.296875,382.644958496094,-65.5166015625,-69.9453125,408.939331054688,-17.0703125,-5.46484375,485.873046875,-15.9423828125,-5.21875,449.339721679688,-66.189453125,-70.36328125,410.585021972656,-67.3544921875,-69.28125,407.662048339844,-67.9775390625,-109.10546875,352.248840332031,-68.0302734375,-108.296875,351.237121582031,-66.9296875,-79.70703125,352.508605957031,-16.12890625,-78.46484375,351.570129394531,-23.080078125,-106.8359375,388.595825195313,-16.69140625,-110.4453125,385.520568847656,-17.3583984375,-72.5,456.46435546875,-16.5439453125,-69.72265625,459.588012695313,-67.5791015625,-76.1640625,382.477844238281,-67.12890625,-77.03515625,383.913208007813,-65.6357421875,-108.92578125,351.842590332031,-16.2294921875,-32.8515625,444.57958984375,-25.111328125,-44.2421875,471.564697265625,-18.4892578125,-44.02734375,470.896240234375,-66.47265625,-35.296875,450.530029296875,-19.8759765625,-44.89453125,473.104370117188,-18.95703125,-32.7109375,444.487060546875,-65.2490234375,-44.54296875,471.816040039063,-64.7529296875,-46.203125,472.59423828125,-68.1875,-36.125,441.546020507813,-17.255859375,-46.4921875,473.375854492188,-17.853515625,-32.3984375,441.506591796875,-67.490234375,-32.62109375,442.27197265625,-68.26171875,-46.88671875,474.05712890625,-67.091796875,-35.890625,440.098388671875,-18.31640625,
- -45.87109375,471.972778320313,-16.7099609375,-31.4375,443.872802734375,-25.51953125,-44.26953125,475.620971679688,-17.3798828125,-35.2890625,453.66845703125,-17.80859375,-45.0078125,477.272338867188,-18.732421875,-31.8046875,445.52880859375,-68.24609375,-44.82421875,476.104614257813,-66.8681640625,-44.25390625,474.984008789063,-68.2763671875,-23.85546875,446.236083984375,-19.126953125,-23.90625,447.838623046875,-17.4033203125,-32.7890625,441.108276367188,-25.4365234375,-36.4296875,450.97509765625,-17.001953125,-76.06640625,321.607238769531,-19.580078125,-74.96875,324.073059082031,-65.396484375,-112.45703125,322.229309082031,-19.1474609375,-110.48046875,323.712707519531,-67.833984375,-111.16015625,321.073059082031,-66.8818359375,-76.22265625,322.087707519531,-58.724609375,-81.234375,321.831848144531,-67.0791015625,-113.19921875,323.526184082031,-17.498046875,-76.76953125,325.684387207031,-67.28515625,-78.40625,321.127746582031,-17.2509765625,-112.19140625,321.930480957031,-66.4775390625,-110.078125,350.933410644531,-19.388671875,-111.3359375,350.317199707031,-67.8759765625,-77.3125,349.289855957031,-16.392578125,-112.10546875,350.130676269531,-16.9326171875,-76.23828125,350.205871582031,-64.1376953125,-77.4609375,350.268371582031,-67.064453125,-112.75,350.464660644531,-66.3642578125,-75.5546875,350.347473144531,-18.1025390625,-110.80859375,350.189270019531,-16.333984375,-76.91015625,322.489074707031,-16.560546875,-75.41015625,323.511535644531,-18.748046875,-111.3515625,322.694152832031,-16.3359375,-109.96875,385.7900390625,-65.9619140625,-108.546875,385.705505371094,-68.263671875,-31.4296875,444.32861328125,-66.83203125,-49.67578125,431.74560546875,-19.3515625,-50.8203125,432.54736328125,-17.337890625,-72.55859375,456.70654296875,-58.869140625,-73.18359375,457.258544921875,-18.236328125,-98,422.916320800781,-20.873046875,-97.0078125,422.291137695313,-18.41796875,-95.85546875,421.848815917969,-66.859375,-69.14453125,401.955871582031,-19.28125,-76.515625,366.396301269531,-16.3017578125,-75.46484375,366.460754394531,-17.646484375,
- -33.06640625,445.31494140625,-66.513671875,-110.24609375,351.095520019531,-65.2548828125,-112.0703125,186.295715332031,-67.07421875,-78.12890625,320.241027832031,-16.291015625,-78.09375,184.220520019531,-17.806640625,-110.52734375,323.228332519531,-67.107421875,-111.92578125,215.268371582031,-19.3173828125,-112.96484375,151.045959472656,-17.765625,-82.37109375,148.694396972656,-17.896484375,-76.546875,247.022277832031,-68.734375,-78.0625,216.345520019531,-65.75,-110.30859375,215.151184082031,-17.3203125,-110.48828125,185.220520019531,-17.2421875,-78.8125,184.928527832031,-64.3046875,-77.39453125,249.719543457031,-20.689453125,-108.63671875,216.475402832031,-65.541015625,-77.4609375,215.763488769531,-25.36328125,-80.02734375,149.159240722656,-63.7783203125,-74.4140625,217.580871582031,-18.8515625,-110.31640625,320.470520019531,-68.794921875,-76.56640625,250.247863769531,-67.462890625,-109.09375,248.762512207031,-17.9755859375,-112.48828125,321.956848144531,-17.9873046875,-108.91015625,247.116027832031,-15.66796875,-110.8671875,214.614074707031,-68.603515625,-87.07421875,322.433410644531,-17.853515625,-77.2890625,215.173645019531,-67.05859375,-110.14453125,217.510559082031,-17.7392578125,-111.85546875,184.864074707031,-65.2509765625,-109.6171875,246.822082519531,-66.447265625,-109.61328125,253.858215332031,-68.478515625,-81.55078125,149.228576660156,-65.62109375,-76.8828125,214.638488769531,-24.9423828125,-108.28125,218.132629394531,-68.6416015625,-74.46484375,247.011535644531,-66.95703125,-112.1640625,214.747863769531,-68.076171875,-78.875,184.325988769531,-16.4755859375,-108.12890625,248.462707519531,-58.7841796875,-76.60546875,247.457824707031,-16.4091796875,-79.578125,150.516662597656,-68.19921875,-110.5546875,184.742004394531,-66.990234375,-77.328125,248.982238769531,-65.765625,-113.44140625,151.301818847656,-66.5458984375,-79.20703125,185.200012207031,-20.5625,-78.21875,187.087707519531,-68.470703125,-107.6015625,248.787902832031,-16.845703125,-82.43359375,185.438293457031,-16.9873046875,-77.58203125,320.688293457031,-68.109375,
- -112.12109375,183.645324707031,-15.689453125,-78.1328125,322.803527832031,-65.9990234375,-109.90625,247.346496582031,-16.9423828125,-76.9921875,321.491027832031,-23.9609375,-85.375,214.448059082031,-16.482421875,-77.953125,150.531311035156,-23.380859375,-111.09765625,186.081848144531,-68.7314453125,-78.66796875,249.189270019531,-67.0791015625,-85.640625,215.838684082031,-17.83203125,-77.16796875,186.923645019531,-17.919921875,-77.77734375,251.244934082031,-68.7802734375,-78.1484375,150.676818847656,-65.505859375,-74.5390625,219.160949707031,-66.509765625,-111.45703125,186.332824707031,-17.7431640625,-79.2109375,249.240051269531,-18.3603515625,-108.3984375,246.566223144531,-67.615234375,-75.22265625,247.636535644531,-17.98046875,-102.23046875,248.680480957031,-66.8818359375,-78.3671875,322.845520019531,-23.40625,-76.87109375,187.097473144531,-66.8876953125,-112.015625,184.974426269531,-18.1865234375,-76.8125,320.050598144531,-18.0224609375,-108.0390625,148.656311035156,-17.9423828125,-111.54296875,321.506652832031,-67.060546875,-109.2578125,218.239074707031,-67.212890625,-77.93359375,187.830871582031,-16.60546875,-111.12890625,323.168762207031,-18.525390625,-108.46875,217.678527832031,-16.755859375,-80.203125,216.375793457031,-66.85546875,-77.4609375,205.082824707031,-16.2685546875,-78.14453125,183.659973144531,-65.5166015625,-75.39453125,217.625793457031,-17.0703125,-111.42578125,321.501770019531,-15.9423828125,-76.515625,320.929504394531,-66.189453125,-76.9921875,217.878723144531,-67.3544921875,-78.6953125,215.262512207031,-67.9775390625,-111.6640625,151.366271972656,-68.0302734375,-107.9765625,148.937561035156,-66.9296875,-82.265625,150.208068847656,-16.12890625,-79.03515625,149.308654785156,-23.080078125,-109.8671875,186.364074707031,-16.69140625,-113.4140625,183.426574707031,-17.3583984375,-110.359375,249.793762207031,-16.5439453125,-110.9921875,253.320129394531,-67.5791015625,-78.9921875,183.357238769531,-67.12890625,-80.1328125,185.017395019531,-65.6357421875,-111.484375,150.959045410156,-16.2294921875,-78.234375,286.347473144531,-25.111328125,
- -109.26953125,286.552551269531,-18.4892578125,-108.5703125,286.492980957031,-66.47265625,-86.4140625,286.474426269531,-19.8759765625,-110.94140625,286.559387207031,-18.95703125,-78.09375,286.462707519531,-65.2490234375,-109.62109375,286.398254394531,-64.7529296875,-111,285.351379394531,-68.1875,-78.61328125,281.127746582031,-17.255859375,-111.83203125,285.395324707031,-17.853515625,-76.984375,285.330871582031,-67.490234375,-77.7734375,285.466613769531,-68.26171875,-112.61328125,285.325988769531,-67.091796875,-77.21484375,280.570129394531,-18.31640625,-110.296875,285.395324707031,-16.7099609375,-76.625,287.610168457031,-25.51953125,-110.8671875,287.880676269531,-17.3798828125,-87.1484375,287.822082519531,-17.80859375,-112.671875,287.835754394531,-18.732421875,-78.29296875,287.968566894531,-68.24609375,-111.5234375,287.602355957031,-66.8681640625,-110.26953125,287.686340332031,-68.2763671875,-76.8046875,297.456848144531,-19.126953125,-78.35546875,297.947082519531,-17.4033203125,-76.78125,284.668762207031,-25.4365234375,-87.2734375,285.515441894531,-17.001953125,-109.68359375,148.634826660156,-19.388671875,-112.9609375,183.689270019531,-65.9619140625,-111.53515625,183.726379394531,-68.263671875,-77.04296875,287.832824707031,-66.83203125,-77.0078125,251.243957519531,-19.3515625,-78.35546875,250.796691894531,-17.337890625,-110.578125,249.892395019531,-58.869140625,-111.40625,249.793762207031,-18.236328125,-109.0390625,216.460754394531,-20.873046875,-107.875,216.354309082031,-18.41796875,-106.64453125,216.454895019531,-66.859375,-76.89453125,208.721496582031,-19.28125,-79.07421875,161.551818847656,-16.3017578125,-78.0234375,161.617248535156,-17.646484375,-78.99609375,286.462707519531,-66.513671875,-109.84375,148.795959472656,-65.2548828125,100,200,62.5,79.140625,200,62.5,79.140625,200,-62.5,100,200,-62.5,-100,200,62.5,-79.140625,200,62.5,-79.140625,200,-62.5,-100,200,-62.5
- }
- PolygonVertexIndex: *6060 {
- a: 48,49,16,-2,0,8,51,-53,12,50,51,-9,16,49,50,-13,22,21,3,-20,22,19,15,-24,23,15,11,-25,25,24,11,-3,21,22,29,-29,30,74,29,22,-24,24,31,68,30,-24,32,31,24,-26,36,35,28,-30,36,29,82,-76,38,37,31,-33,41,1296,-43,42,1296,1297,-77,45,1300,37,-39,49,48,41,-43,49,42,76,43,-51,50,43,70,44,-52,52,51,44,-46,52,53,6,-1,26,25,2,-5,25,26,33,-33,39,38,32,-34,38,39,46,-46,53,52,45,-47,47,48,1,-8,3,21,20,-6,20,21,28,-28,28,35,34,-28,34,35,41,-41,41,48,47,-41,11,10,4,-3,11,15,14,-11,15,19,18,-15,5,18,19,-4,8,0,6,-10,12,8,9,-14,16,12,13,-18,7,1,16,-18,53,65,9,-7,7,17,67,-48,17,13,66,-68,13,9,65,-67,54,26,4,-11,54,10,14,-56,55,14,18,-57,5,20,56,-19,26,54,57,-34,55,58,71,57,-55,56,59,77,58,-56,27,59,56,-21,60,39,33,-58,60,57,81,-73,27,34,61,-60,46,1303,-63,1302,1303,60,-73,40,1299,61,-35,65,53,46,-63,65,62,73,63,-67,66,63,79,64,-68,40,47,67,-65,31,80,-69,1300,1301,69,-38,59,83,-78,79,1298,1299,-65,68,80,81,-72,75,82,83,-79,30,58,77,-75,79,76,1297,-1299,1301,1302,72,-70,73,70,43,-64,63,43,76,-80,71,58,30,-69,81,80,69,-73,83,82,74,-78,101,89,94,-101,107,95,99,-107,105,98,90,-105,103,87,85,-103,89,90,98,99,95,-95,91,88,92,93,97,-97,102,85,89,-102,85,87,90,-90,104,90,87,-104,86,84,88,-92,107,100,94,-96,105,106,99,-99,88,101,100,-93,84,102,101,-89,86,103,102,-85,91,104,103,-87,96,105,104,-92,96,97,106,-106,93,107,106,-98,93,92,100,-108,125,113,118,-125,131,119,123,-131,129,122,114,-129,127,111,109,-127,113,114,122,123,119,-119,115,112,116,117,121,-121,126,109,113,-126,109,111,114,-114,128,114,111,-128,110,108,112,-116,131,124,118,-120,129,130,123,-123,112,125,124,-117,108,126,125,-113,110,127,126,-109,115,128,127,-111,120,129,128,-116,120,121,130,-130,117,131,130,-122,117,116,124,-132,152,173,154,-192,251,252,200,-168,142,147,-254,239,135,167,-265,175,203,-146,158,185,137,-199,181,196,133,262,-176,168,133,-197,169,176,150,-200,182,146,144,-139,142,186,-160,184,170,-164,174,260,-158,181,164,208,-197,144,197,-179,171,204,-141,159,137,-178,254,206,170,-185,161,171,-173,149,173,152,-194,163,170,-150,199,150,-195,198,138,-195,
- 144,151,-139,194,138,-200,154,185,158,-192,154,148,-163,132,183,134,-161,155,180,-188,200,201,-168,143,158,-260,147,142,-167,177,187,-181,143,150,-161,155,207,223,-219,155,187,-208,187,154,-163,156,164,-182,166,142,-160,178,197,-194,170,173,-150,170,206,256,-149,140,204,-184,140,172,-172,135,210,172,-206,148,173,-171,154,173,-149,174,157,-145,209,169,-142,159,177,-167,177,147,-167,144,178,-175,161,172,210,202,-262,180,147,-178,181,145,-157,175,145,-182,204,139,134,-184,196,208,209,-142,141,168,-197,182,138,-199,142,184,-187,185,154,-188,146,186,163,-198,186,184,-164,137,187,-178,185,187,-138,169,188,-142,189,153,-206,158,143,-192,191,143,-153,179,171,-169,174,178,-140,193,152,257,-259,150,143,-260,143,257,-153,176,153,-133,194,158,-199,199,138,-152,151,188,169,-200,176,165,-154,208,164,200,-253,156,201,200,-165,190,136,202,-211,203,175,202,-137,168,161,-134,192,204,-172,178,258,-140,189,205,-173,189,172,-141,140,183,-190,171,161,-169,179,192,-172,157,260,179,188,-152,207,162,-256,165,209,-209,176,209,-166,176,169,-210,135,205,251,-168,132,160,150,-177,149,193,197,-164,137,159,182,-199,180,155,218,-223,219,227,225,206,-255,180,222,221,-148,253,254,184,-143,207,256,220,-224,135,190,-211,146,197,-145,188,168,-142,189,183,132,-154,221,224,253,-148,211,214,219,-225,222,263,-217,220,225,212,-216,214,227,-220,213,223,-218,221,222,-217,211,226,221,-217,253,224,219,-255,224,226,-212,225,227,214,-213,224,221,-227,223,215,-218,223,220,-216,218,223,-214,228,229,-250,235,250,247,-243,231,236,-233,229,228,-234,234,232,-237,231,238,245,-241,231,232,-239,234,229,-234,236,229,-235,232,230,-239,235,242,245,-239,236,231,240,-245,241,247,250,-249,236,244,243,-230,238,230,-236,243,246,249,-230,203,136,-247,244,240,201,-157,242,247,190,-240,243,244,-157,145,243,-157,249,246,241,-249,246,145,-204,247,241,136,-191,246,243,-146,239,264,245,-243,240,245,-202,232,234,233,228,237,-231,249,248,237,-229,230,250,-236,230,237,248,-251,135,239,-191,160,134,-144,153,251,-206,165,252,251,-154,208,252,-166,179,168,-189,204,192,195,174,-140,144,157,-152,
- 246,136,-242,148,256,255,-163,256,206,225,-221,134,257,-144,258,257,-135,139,258,-135,159,186,146,-183,150,259,-195,259,158,-195,193,258,-179,195,192,179,-261,174,195,-261,161,261,262,-134,262,261,202,-176,222,218,213,-264,264,167,-202,245,264,-202,207,255,-257,207,187,-163,290,313,292,-336,407,408,347,-306,268,334,285,-338,277,283,-411,395,270,305,-422,316,350,-281,296,326,272,-346,322,341,267,419,-317,306,267,-342,307,317,287,-347,323,281,279,-274,277,327,-298,325,308,-302,315,417,-296,322,302,355,-342,279,342,-320,309,351,-276,297,272,-319,411,353,308,-326,288,329,-313,299,309,-312,286,313,290,-339,301,308,-287,346,287,-340,345,273,-340,268,337,288,-313,343,266,-289,279,289,-274,339,273,-347,292,326,296,-336,292,284,-301,265,324,269,-299,293,321,-329,347,348,-306,278,296,-417,283,277,-305,318,328,-322,278,287,-299,293,354,370,-366,293,328,-355,328,292,-301,294,302,-323,304,277,-298,319,342,-339,308,313,-287,308,353,413,-285,275,351,-325,275,311,-310,270,357,311,-353,310,268,-313,284,313,-309,292,313,-285,315,295,-280,356,307,-277,297,318,-305,318,283,-305,279,319,-316,299,311,357,349,-419,321,283,-319,322,280,-295,316,280,-323,351,274,269,-325,341,355,356,-277,276,306,-342,323,273,-346,277,325,-328,380,381,375,-374,326,292,-329,281,327,301,-343,327,325,-302,272,328,-319,326,328,-273,266,329,-289,329,332,-315,307,330,-277,331,291,-353,266,332,-330,296,278,-336,335,278,-291,320,309,-307,315,319,-275,288,337,-344,338,290,414,-416,287,278,-417,337,285,-344,310,312,-345,278,414,-291,312,329,-315,312,314,-345,317,291,-266,339,296,-346,346,273,-290,289,330,307,-347,317,303,-292,355,302,347,-409,294,348,347,-303,333,271,349,-358,350,316,349,-272,306,299,-268,336,351,-310,319,415,-275,331,352,-312,331,311,-276,275,324,-332,310,282,-269,334,268,-283,309,299,-307,320,336,-310,295,417,320,330,-290,354,300,-413,303,356,-356,317,356,-304,317,307,-357,270,352,407,-306,265,298,287,-318,286,338,342,-302,272,297,323,-346,321,293,365,-370,332,344,-315,366,383,372,353,-412,321,369,368,-284,410,411,325,-278,354,413,367,-371,270,333,
- -358,281,342,-280,330,306,-277,331,324,265,-292,368,371,410,-284,358,361,366,-372,362,359,374,-377,359,361,375,-375,358,363,-374,369,420,-364,367,372,359,-363,361,383,-367,360,370,-365,368,369,-364,358,382,368,-364,410,371,366,-412,373,375,361,-359,343,285,376,-375,266,343,374,375,-382,310,344,409,-378,344,332,380,373,-410,285,334,378,-377,334,282,379,-379,379,377,-361,360,364,-379,380,332,266,-382,371,382,-359,372,383,361,-360,371,368,-383,360,378,-380,370,362,-365,363,420,-378,282,310,377,-380,370,367,-363,362,376,-379,362,378,-365,365,370,-361,373,363,-410,384,385,-406,391,406,403,-399,387,392,-389,385,384,-390,390,388,-393,387,394,401,-397,387,388,-395,390,385,-390,392,385,-391,388,386,-395,391,398,401,-395,392,387,396,-401,397,403,406,-405,392,400,399,-386,394,386,-392,399,402,405,-386,350,271,-403,400,396,348,-295,398,403,333,-396,399,400,-295,280,399,-295,405,402,397,-405,402,280,-351,403,397,271,-334,402,399,-281,395,421,401,-399,396,401,-349,388,390,389,384,393,-387,405,404,393,-385,386,406,-392,386,393,404,-407,270,395,-334,298,269,-279,291,407,-353,303,408,407,-292,355,408,-304,363,377,-410,320,306,-331,351,336,340,315,-275,279,295,-290,402,271,-398,284,413,412,-301,413,353,372,-368,269,414,-279,415,414,-270,274,415,-270,297,327,281,-324,287,416,-340,416,296,-340,338,415,-320,340,336,320,-418,315,340,-418,299,418,419,-268,419,418,349,-317,369,365,360,-421,377,420,-361,421,305,-349,401,421,-349,354,412,-414,354,328,-301,447,470,449,-493,564,565,504,-463,425,491,442,-495,434,440,-568,552,427,462,-579,473,507,-438,453,483,429,-503,479,498,424,576,-474,463,424,-499,464,474,444,-504,480,438,436,-431,434,484,-455,482,465,-459,472,574,-453,479,459,512,-499,436,499,-477,466,508,-433,454,429,-476,568,510,465,-483,445,486,-470,456,466,-469,443,470,447,-496,458,465,-444,503,444,-497,502,430,-497,425,494,445,-470,500,423,-446,436,446,-431,496,430,-504,449,483,453,-493,449,441,-458,422,481,426,-456,450,478,-486,504,505,-463,435,453,-574,440,434,-462,475,485,-479,435,444,-456,450,511,527,-523,450,485,-512,485,449,-458,
- 451,459,-480,461,434,-455,476,499,-496,465,470,-444,465,510,570,-442,432,508,-482,432,468,-467,427,514,468,-510,467,425,-470,441,470,-466,449,470,-442,472,452,-437,513,464,-434,454,475,-462,475,440,-462,436,476,-473,456,468,514,506,-576,478,440,-476,479,437,-452,473,437,-480,508,431,426,-482,498,512,513,-434,433,463,-499,480,430,-503,434,482,-485,537,538,532,-531,483,449,-486,438,484,458,-500,484,482,-459,429,485,-476,483,485,-430,423,486,-446,486,489,-472,464,487,-434,488,448,-510,423,489,-487,453,435,-493,492,435,-448,477,466,-464,472,476,-432,445,494,-501,495,447,571,-573,444,435,-574,494,442,-501,467,469,-502,435,571,-448,469,486,-472,469,471,-502,474,448,-423,496,453,-503,503,430,-447,446,487,464,-504,474,460,-449,512,459,504,-566,451,505,504,-460,490,428,506,-515,507,473,506,-429,463,456,-425,493,508,-467,476,572,-432,488,509,-469,488,468,-433,432,481,-489,467,439,-426,491,425,-440,466,456,-464,477,493,-467,452,574,477,487,-447,511,457,-570,460,513,-513,474,513,-461,474,464,-514,427,509,564,-463,422,455,444,-475,443,495,499,-459,429,454,480,-503,478,450,522,-527,489,501,-472,523,540,529,510,-569,478,526,525,-441,567,568,482,-435,511,570,524,-528,427,490,-515,438,499,-437,487,463,-434,488,481,422,-449,525,528,567,-441,515,518,523,-529,519,516,531,-534,516,518,532,-532,515,520,-531,526,577,-521,524,529,516,-520,518,540,-524,517,527,-522,525,526,-521,515,539,525,-521,567,528,523,-569,530,532,518,-516,500,442,533,-532,423,500,531,532,-539,467,501,566,-535,501,489,537,530,-567,442,491,535,-534,491,439,536,-536,536,534,-518,517,521,-536,537,489,423,-539,528,539,-516,529,540,518,-517,528,525,-540,517,535,-537,527,519,-522,520,577,-535,439,467,534,-537,527,524,-520,519,533,-536,519,535,-522,522,527,-518,530,520,-567,541,542,-563,548,563,560,-556,544,549,-546,542,541,-547,547,545,-550,544,551,558,-554,544,545,-552,547,542,-547,549,542,-548,545,543,-552,548,555,558,-552,549,544,553,-558,554,560,563,-562,549,557,556,-543,551,543,-549,556,559,562,-543,507,428,-560,557,553,505,-452,555,560,490,-553,556,557,-452,437,556,-452,
- 562,559,554,-562,559,437,-508,560,554,428,-491,559,556,-438,552,578,558,-556,553,558,-506,545,547,546,541,550,-544,562,561,550,-542,543,563,-549,543,550,561,-564,427,552,-491,455,426,-436,448,564,-510,460,565,564,-449,512,565,-461,520,534,-567,477,463,-488,508,493,497,472,-432,436,452,-447,559,428,-555,441,570,569,-458,570,510,529,-525,426,571,-436,572,571,-427,431,572,-427,454,484,438,-481,444,573,-497,573,453,-497,495,572,-477,497,493,477,-575,472,497,-575,456,575,576,-425,576,575,506,-474,526,522,517,-578,534,577,-518,578,462,-506,558,578,-506,511,569,-571,511,485,-458,604,627,606,-650,699,700,661,-620,582,648,599,-652,591,597,-703,698,584,619,-714,630,664,-595,610,640,586,-660,636,655,581,711,-631,620,581,-656,621,631,601,-661,637,595,593,-588,591,641,-612,639,622,-616,629,709,-610,636,616,669,-656,593,656,-634,623,665,-590,611,586,-633,703,667,622,-640,602,643,-627,613,623,-626,600,627,604,-653,615,622,-601,660,601,-654,659,587,-654,582,651,602,-627,657,580,-603,593,603,-588,653,587,-661,606,640,610,-650,606,598,-615,579,638,583,-613,607,635,-643,661,662,-620,592,610,-709,597,591,-619,632,642,-636,592,601,-613,607,668,684,-680,607,642,-669,642,606,-615,608,616,-637,618,591,-612,633,656,-653,622,627,-601,622,667,705,-599,589,665,-639,589,625,-624,584,671,625,-667,624,582,-627,598,627,-623,606,627,-599,629,609,-594,670,621,-591,611,632,-619,632,597,-619,593,633,-630,613,625,671,663,-711,635,597,-633,636,594,-609,630,594,-637,665,588,583,-639,655,669,670,-591,590,620,-656,637,587,-660,591,639,-642,694,695,689,-688,640,606,-643,595,641,615,-657,641,639,-616,586,642,-633,640,642,-587,580,643,-603,643,646,-629,621,644,-591,645,605,-667,580,646,-644,610,592,-650,649,592,-605,634,623,-621,629,633,-589,602,651,-658,652,604,706,-708,601,592,-709,651,599,-658,624,626,-659,592,706,-605,626,643,-629,626,628,-659,631,605,-580,653,610,-660,660,587,-604,603,644,621,-661,631,617,-606,669,616,661,-701,608,662,661,-617,647,585,663,-672,664,630,663,-586,620,613,-582,650,665,-624,633,707,-589,645,666,-626,645,625,-590,589,638,-646,
- 624,596,-583,648,582,-597,623,613,-621,634,650,-624,609,709,634,644,-604,668,614,-705,617,670,-670,631,670,-618,631,621,-671,584,666,699,-620,579,612,601,-632,600,652,656,-616,586,611,637,-660,635,607,679,-684,646,658,-629,680,697,686,667,-704,635,683,682,-598,702,703,639,-592,668,705,681,-685,584,647,-672,595,656,-594,644,620,-591,645,638,579,-606,682,685,702,-598,672,675,680,-686,676,673,688,-691,673,675,689,-689,672,677,-688,683,712,-678,681,686,673,-677,675,697,-681,674,684,-679,682,683,-678,672,696,682,-678,702,685,680,-704,687,689,675,-673,657,599,690,-689,580,657,688,689,-696,624,658,701,-692,658,646,694,687,-702,599,648,692,-691,648,596,693,-693,693,691,-675,674,678,-693,694,646,580,-696,685,696,-673,686,697,675,-674,685,682,-697,674,692,-694,684,676,-679,677,712,-692,596,624,691,-694,684,681,-677,676,690,-693,676,692,-679,679,684,-675,687,677,-702,584,698,-648,612,583,-593,605,699,-667,617,700,699,-606,669,700,-618,677,691,-702,634,620,-645,665,650,654,629,-589,593,609,-604,598,705,704,-615,705,667,686,-682,583,706,-593,707,706,-584,588,707,-584,611,641,595,-638,601,708,-654,708,610,-654,652,707,-634,654,650,634,-710,629,654,-710,613,710,711,-582,711,710,663,-631,683,679,674,-713,691,712,-675,713,619,-663,668,704,-706,668,642,-615,734,755,736,-774,833,834,782,-750,724,729,-836,821,717,749,-847,757,785,-728,740,767,719,-781,763,778,715,844,-758,750,715,-779,751,758,732,-782,764,728,726,-721,724,768,-742,766,752,-746,756,842,-740,763,746,790,-779,726,779,-761,753,786,-723,741,719,-760,836,788,752,-767,743,753,-755,731,755,734,-776,745,752,-732,781,732,-777,780,720,-777,726,733,-721,776,720,-782,736,767,740,-774,736,730,-745,714,765,716,-743,737,762,-770,782,783,-750,725,740,-842,729,724,-749,759,769,-763,725,732,-743,737,789,805,-801,737,769,-790,769,736,-745,738,746,-764,748,724,-742,760,779,-776,752,755,-732,752,788,838,-731,722,786,-766,722,754,-754,717,792,754,-788,730,755,-753,736,755,-731,756,739,-727,791,751,-724,741,759,-749,759,729,-749,726,760,-757,743,754,792,784,-844,762,729,-760,763,727,-739,757,
- 727,-764,786,721,716,-766,778,790,791,-724,723,750,-779,764,720,-781,724,766,-769,767,736,-770,728,768,745,-780,768,766,-746,719,769,-760,767,769,-720,751,770,-724,771,735,-788,740,725,-774,773,725,-735,761,753,-751,756,760,-722,775,734,839,-841,732,725,-842,725,839,-735,758,735,-715,776,740,-781,781,720,-734,733,770,751,-782,758,747,-736,790,746,782,-835,738,783,782,-747,772,718,784,-793,785,757,784,-719,750,743,-716,774,786,-754,760,840,-722,771,787,-755,771,754,-723,722,765,-772,753,743,-751,761,774,-754,739,842,761,770,-734,789,744,-838,747,791,-791,758,791,-748,758,751,-792,717,787,833,-750,714,742,732,-759,731,775,779,-746,719,741,764,-781,762,737,800,-805,801,809,807,788,-837,762,804,803,-730,835,836,766,-725,789,838,802,-806,717,772,-793,728,779,-727,770,750,-724,771,765,714,-736,803,806,835,-730,793,796,801,-807,804,845,-799,802,807,794,-798,796,809,-802,795,805,-800,803,804,-799,793,808,803,-799,835,806,801,-837,806,808,-794,807,809,796,-795,806,803,-809,805,797,-800,805,802,-798,800,805,-796,810,811,-832,817,832,829,-825,813,818,-815,811,810,-816,816,814,-819,813,820,827,-823,813,814,-821,816,811,-816,818,811,-817,814,812,-821,817,824,827,-821,818,813,822,-827,823,829,832,-831,818,826,825,-812,820,812,-818,825,828,831,-812,785,718,-829,826,822,783,-739,824,829,772,-822,825,826,-739,727,825,-739,831,828,823,-831,828,727,-786,829,823,718,-773,828,825,-728,821,846,827,-825,822,827,-784,814,816,815,810,819,-813,831,830,819,-811,812,832,-818,812,819,830,-833,717,821,-773,742,716,-726,735,833,-788,747,834,833,-736,790,834,-748,761,750,-771,786,774,777,756,-722,726,739,-734,828,718,-824,730,838,837,-745,838,788,807,-803,716,839,-726,840,839,-717,721,840,-717,741,768,728,-765,732,841,-777,841,740,-777,775,840,-761,777,774,761,-843,756,777,-843,743,843,844,-716,844,843,784,-758,804,800,795,-846,846,749,-784,827,846,-784,789,837,-839,789,769,-745,872,895,874,-918,989,990,929,-888,850,916,867,-920,859,865,-993,977,852,887,-1004,898,932,-863,878,908,854,-928,904,923,849,1001,-899,888,849,-924,889,899,869,-929,905,863,
- 861,-856,859,909,-880,907,890,-884,897,999,-878,904,884,937,-924,861,924,-902,891,933,-858,879,854,-901,993,935,890,-908,870,911,-895,881,891,-894,868,895,872,-921,883,890,-869,928,869,-922,927,855,-922,850,919,870,-895,925,848,-871,861,871,-856,921,855,-929,874,908,878,-918,874,866,-883,847,906,851,-881,875,903,-911,929,930,-888,860,878,-999,865,859,-887,900,910,-904,860,869,-881,875,936,952,-948,875,910,-937,910,874,-883,876,884,-905,886,859,-880,901,924,-921,890,895,-869,890,935,995,-867,857,933,-907,857,893,-892,852,939,893,-935,892,850,-895,866,895,-891,874,895,-867,897,877,-862,938,889,-859,879,900,-887,900,865,-887,861,901,-898,881,893,939,931,-1001,903,865,-901,904,862,-877,898,862,-905,933,856,851,-907,923,937,938,-859,858,888,-924,905,855,-928,859,907,-910,962,963,957,-956,908,874,-911,863,909,883,-925,909,907,-884,854,910,-901,908,910,-855,848,911,-871,911,914,-897,889,912,-859,913,873,-935,848,914,-912,878,860,-918,917,860,-873,902,891,-889,897,901,-857,870,919,-926,920,872,996,-998,869,860,-999,919,867,-926,892,894,-927,860,996,-873,894,911,-897,894,896,-927,899,873,-848,921,878,-928,928,855,-872,871,912,889,-929,899,885,-874,937,884,929,-991,876,930,929,-885,915,853,931,-940,932,898,931,-854,888,881,-850,918,933,-892,901,997,-857,913,934,-894,913,893,-858,857,906,-914,892,864,-851,916,850,-865,891,881,-889,902,918,-892,877,999,902,912,-872,936,882,-995,885,938,-938,899,938,-886,899,889,-939,852,934,989,-888,847,880,869,-900,868,920,924,-884,854,879,905,-928,903,875,947,-952,914,926,-897,948,965,954,935,-994,903,951,950,-866,992,993,907,-860,936,995,949,-953,852,915,-940,863,924,-862,912,888,-859,913,906,847,-874,950,953,992,-866,940,943,948,-954,944,941,956,-959,941,943,957,-957,940,945,-956,951,1002,-946,949,954,941,-945,943,965,-949,942,952,-947,950,951,-946,940,964,950,-946,992,953,948,-994,955,957,943,-941,925,867,958,-957,848,925,956,957,-964,892,926,991,-960,926,914,962,955,-992,867,916,960,-959,916,864,961,-961,961,959,-943,942,946,-961,962,914,848,-964,953,964,-941,954,965,943,-942,953,950,-965,
- 942,960,-962,952,944,-947,945,1002,-960,864,892,959,-962,952,949,-945,944,958,-961,944,960,-947,947,952,-943,955,945,-992,966,967,-988,973,988,985,-981,969,974,-971,967,966,-972,972,970,-975,969,976,983,-979,969,970,-977,972,967,-972,974,967,-973,970,968,-977,973,980,983,-977,974,969,978,-983,979,985,988,-987,974,982,981,-968,976,968,-974,981,984,987,-968,932,853,-985,982,978,930,-877,980,985,915,-978,981,982,-877,862,981,-877,987,984,979,-987,984,862,-933,985,979,853,-916,984,981,-863,977,1003,983,-981,978,983,-931,970,972,971,966,975,-969,987,986,975,-967,968,988,-974,968,975,986,-989,852,977,-916,880,851,-861,873,989,-935,885,990,989,-874,937,990,-886,945,959,-992,902,888,-913,933,918,922,897,-857,861,877,-872,984,853,-980,866,995,994,-883,995,935,954,-950,851,996,-861,997,996,-852,856,997,-852,879,909,863,-906,869,998,-922,998,878,-922,920,997,-902,922,918,902,-1000,897,922,-1000,881,1000,1001,-850,1001,1000,931,-899,951,947,942,-1003,959,1002,-943,1003,887,-931,983,1003,-931,936,994,-996,936,910,-883,1029,1052,1031,-1075,1146,1147,1086,-1045,1007,1073,1024,-1077,1016,1022,-1150,1134,1009,1044,-1161,1055,1089,-1020,1035,1065,1011,-1085,1061,1080,1006,1158,-1056,1045,1006,-1081,1046,1056,1026,-1086,1062,1020,1018,-1013,1016,1066,-1037,1064,1047,-1041,1054,1156,-1035,1061,1041,1094,-1081,1018,1081,-1059,1048,1090,-1015,1036,1011,-1058,1150,1092,1047,-1065,1027,1068,-1052,1038,1048,-1051,1025,1052,1029,-1078,1040,1047,-1026,1085,1026,-1079,1084,1012,-1079,1007,1076,1027,-1052,1082,1005,-1028,1018,1028,-1013,1078,1012,-1086,1031,1065,1035,-1075,1031,1023,-1040,1004,1063,1008,-1038,1032,1060,-1068,1086,1087,-1045,1017,1035,-1156,1022,1016,-1044,1057,1067,-1061,1017,1026,-1038,1032,1093,1109,-1105,1032,1067,-1094,1067,1031,-1040,1033,1041,-1062,1043,1016,-1037,1058,1081,-1078,1047,1052,-1026,1047,1092,1152,-1024,1014,1090,-1064,1014,1050,-1049,1009,1096,1050,-1092,1049,1007,-1052,1023,1052,-1048,1031,1052,-1024,1054,1034,-1019,1095,1046,-1016,1036,1057,-1044,1057,1022,-1044,1018,1058,-1055,1038,1050,1096,1088,-1158,
- 1060,1022,-1058,1061,1019,-1034,1055,1019,-1062,1090,1013,1008,-1064,1080,1094,1095,-1016,1015,1045,-1081,1062,1012,-1085,1016,1064,-1067,1119,1120,1114,-1113,1065,1031,-1068,1020,1066,1040,-1082,1066,1064,-1041,1011,1067,-1058,1065,1067,-1012,1005,1068,-1028,1068,1071,-1054,1046,1069,-1016,1070,1030,-1092,1005,1071,-1069,1035,1017,-1075,1074,1017,-1030,1059,1048,-1046,1054,1058,-1014,1027,1076,-1083,1077,1029,1153,-1155,1026,1017,-1156,1076,1024,-1083,1049,1051,-1084,1017,1153,-1030,1051,1068,-1054,1051,1053,-1084,1056,1030,-1005,1078,1035,-1085,1085,1012,-1029,1028,1069,1046,-1086,1056,1042,-1031,1094,1041,1086,-1148,1033,1087,1086,-1042,1072,1010,1088,-1097,1089,1055,1088,-1011,1045,1038,-1007,1075,1090,-1049,1058,1154,-1014,1070,1091,-1051,1070,1050,-1015,1014,1063,-1071,1049,1021,-1008,1073,1007,-1022,1048,1038,-1046,1059,1075,-1049,1034,1156,1059,1069,-1029,1093,1039,-1152,1042,1095,-1095,1056,1095,-1043,1056,1046,-1096,1009,1091,1146,-1045,1004,1037,1026,-1057,1025,1077,1081,-1041,1011,1036,1062,-1085,1060,1032,1104,-1109,1071,1083,-1054,1105,1122,1111,1092,-1151,1060,1108,1107,-1023,1149,1150,1064,-1017,1093,1152,1106,-1110,1009,1072,-1097,1020,1081,-1019,1069,1045,-1016,1070,1063,1004,-1031,1107,1110,1149,-1023,1097,1100,1105,-1111,1101,1098,1113,-1116,1098,1100,1114,-1114,1097,1102,-1113,1108,1159,-1103,1106,1111,1098,-1102,1100,1122,-1106,1099,1109,-1104,1107,1108,-1103,1097,1121,1107,-1103,1149,1110,1105,-1151,1112,1114,1100,-1098,1082,1024,1115,-1114,1005,1082,1113,1114,-1121,1049,1083,1148,-1117,1083,1071,1119,1112,-1149,1024,1073,1117,-1116,1073,1021,1118,-1118,1118,1116,-1100,1099,1103,-1118,1119,1071,1005,-1121,1110,1121,-1098,1111,1122,1100,-1099,1110,1107,-1122,1099,1117,-1119,1109,1101,-1104,1102,1159,-1117,1021,1049,1116,-1119,1109,1106,-1102,1101,1115,-1118,1101,1117,-1104,1104,1109,-1100,1112,1102,-1149,1123,1124,-1145,1130,1145,1142,-1138,1126,1131,-1128,1124,1123,-1129,1129,1127,-1132,1126,1133,1140,-1136,1126,1127,-1134,1129,1124,-1129,1131,1124,-1130,1127,1125,-1134,1130,1137,1140,-1134,
- 1131,1126,1135,-1140,1136,1142,1145,-1144,1131,1139,1138,-1125,1133,1125,-1131,1138,1141,1144,-1125,1089,1010,-1142,1139,1135,1087,-1034,1137,1142,1072,-1135,1138,1139,-1034,1019,1138,-1034,1144,1141,1136,-1144,1141,1019,-1090,1142,1136,1010,-1073,1141,1138,-1020,1134,1160,1140,-1138,1135,1140,-1088,1127,1129,1128,1123,1132,-1126,1144,1143,1132,-1124,1125,1145,-1131,1125,1132,1143,-1146,1009,1134,-1073,1037,1008,-1018,1030,1146,-1092,1042,1147,1146,-1031,1094,1147,-1043,1102,1116,-1149,1059,1045,-1070,1090,1075,1079,1054,-1014,1018,1034,-1029,1141,1010,-1137,1023,1152,1151,-1040,1152,1092,1111,-1107,1008,1153,-1018,1154,1153,-1009,1013,1154,-1009,1036,1066,1020,-1063,1026,1155,-1079,1155,1035,-1079,1077,1154,-1059,1079,1075,1059,-1157,1054,1079,-1157,1038,1157,1158,-1007,1158,1157,1088,-1056,1108,1104,1099,-1160,1116,1159,-1100,1160,1044,-1088,1140,1160,-1088,1093,1151,-1153,1093,1067,-1040,1186,1209,1188,-1232,1281,1282,1243,-1202,1164,1230,1181,-1234,1173,1179,-1285,1280,1166,1201,-1296,1212,1246,-1177,1192,1222,1168,-1242,1218,1237,1163,1293,-1213,1202,1163,-1238,1203,1213,1183,-1243,1219,1177,1175,-1170,1173,1223,-1194,1221,1204,-1198,1211,1291,-1192,1218,1198,1251,-1238,1175,1238,-1216,1205,1247,-1172,1193,1168,-1215,1285,1249,1204,-1222,1184,1225,-1209,1195,1205,-1208,1182,1209,1186,-1235,1197,1204,-1183,1242,1183,-1236,1241,1169,-1236,1164,1233,1184,-1209,1239,1162,-1185,1175,1185,-1170,1235,1169,-1243,1188,1222,1192,-1232,1188,1180,-1197,1161,1220,1165,-1195,1189,1217,-1225,1243,1244,-1202,1174,1192,-1291,1179,1173,-1201,1214,1224,-1218,1174,1183,-1195,1189,1250,1266,-1262,1189,1224,-1251,1224,1188,-1197,1190,1198,-1219,1200,1173,-1194,1215,1238,-1235,1204,1209,-1183,1204,1249,1287,-1181,1171,1247,-1221,1171,1207,-1206,1166,1253,1207,-1249,1206,1164,-1209,1180,1209,-1205,1188,1209,-1181,1211,1191,-1176,1252,1203,-1173,1193,1214,-1201,1214,1179,-1201,1175,1215,-1212,1195,1207,1253,1245,-1293,1217,1179,-1215,1218,1176,-1191,1212,1176,-1219,1247,1170,1165,-1221,1237,1251,1252,-1173,1172,1202,-1238,1219,1169,-1242,
- 1173,1221,-1224,1276,1277,1271,-1270,1222,1188,-1225,1177,1223,1197,-1239,1223,1221,-1198,1168,1224,-1215,1222,1224,-1169,1162,1225,-1185,1225,1228,-1211,1203,1226,-1173,1227,1187,-1249,1162,1228,-1226,1192,1174,-1232,1231,1174,-1187,1216,1205,-1203,1211,1215,-1171,1184,1233,-1240,1234,1186,1288,-1290,1183,1174,-1291,1233,1181,-1240,1206,1208,-1241,1174,1288,-1187,1208,1225,-1211,1208,1210,-1241,1213,1187,-1162,1235,1192,-1242,1242,1169,-1186,1185,1226,1203,-1243,1213,1199,-1188,1251,1198,1243,-1283,1190,1244,1243,-1199,1229,1167,1245,-1254,1246,1212,1245,-1168,1202,1195,-1164,1232,1247,-1206,1215,1289,-1171,1227,1248,-1208,1227,1207,-1172,1171,1220,-1228,1206,1178,-1165,1230,1164,-1179,1205,1195,-1203,1216,1232,-1206,1191,1291,1216,1226,-1186,1250,1196,-1287,1199,1252,-1252,1213,1252,-1200,1213,1203,-1253,1166,1248,1281,-1202,1161,1194,1183,-1214,1182,1234,1238,-1198,1168,1193,1219,-1242,1217,1189,1261,-1266,1228,1240,-1211,1262,1279,1268,1249,-1286,1217,1265,1264,-1180,1284,1285,1221,-1174,1250,1287,1263,-1267,1166,1229,-1254,1177,1238,-1176,1226,1202,-1173,1227,1220,1161,-1188,1264,1267,1284,-1180,1254,1257,1262,-1268,1258,1255,1270,-1273,1255,1257,1271,-1271,1254,1259,-1270,1265,1294,-1260,1263,1268,1255,-1259,1257,1279,-1263,1256,1266,-1261,1264,1265,-1260,1254,1278,1264,-1260,1284,1267,1262,-1286,1269,1271,1257,-1255,1239,1181,1272,-1271,1162,1239,1270,1271,-1278,1206,1240,1283,-1274,1240,1228,1276,1269,-1284,1181,1230,1274,-1273,1230,1178,1275,-1275,1275,1273,-1257,1256,1260,-1275,1276,1228,1162,-1278,1267,1278,-1255,1268,1279,1257,-1256,1267,1264,-1279,1256,1274,-1276,1266,1258,-1261,1259,1294,-1274,1178,1206,1273,-1276,1266,1263,-1259,1258,1272,-1275,1258,1274,-1261,1261,1266,-1257,1269,1259,-1284,1166,1280,-1230,1194,1165,-1175,1187,1281,-1249,1199,1282,1281,-1188,1251,1282,-1200,1259,1273,-1284,1216,1202,-1227,1247,1232,1236,1211,-1171,1175,1191,-1186,1180,1287,1286,-1197,1287,1249,1268,-1264,1165,1288,-1175,1289,1288,-1166,1170,1289,-1166,1193,1223,1177,-1220,1183,1290,-1236,1290,1192,-1236,1234,1289,-1216,
- 1236,1232,1216,-1292,1211,1236,-1292,1195,1292,1293,-1164,1293,1292,1245,-1213,1265,1261,1256,-1295,1273,1294,-1257,1295,1201,-1245,1250,1286,-1288,1250,1224,-1197,82,29,-75,69,80,31,-38,81,57,-72,78,83,59,-62,1297,1296,36,-76,1298,1297,75,-79,1299,1298,78,-62,70,1301,1300,-45,70,73,1302,-1302,62,1303,1302,-74,40,64,-1300,35,36,1296,-42,45,44,-1301,39,60,1303,-47
- }
- Edges: *3046 {
- a: 4,30,140,157,97,93,117,7,98,3,11,161,26,145,25,15,165,22,149,21,2,170,151,18,19,121,31,126,17,33,40,100,16,23,27,28,35,53,59,49,106,34,37,43,46,129,61,134,51,6023,70,108,50,57,58,132,76,80,85,72,114,64,68,83,89,137,90,118,74,1,8,5,92,0,13,9,6,95,101,103,109,91,120,125,128,133,115,139,144,148,158,162,166,197,193,190,204,187,194,198,200,224,231,205,209,214,217,237,241,221,228,230,247,251,256,235,249,254,261,172,180,176,171,185,181,177,41,207,212,42,267,84,263,266,208,250,278,239,36,79,313,6025,213,6021,255,270,6029,294,279,286,283,288,296,298,284,309,227,277,56,282,281,372,376,357,345,356,329,339,317,349,359,368,332,326,338,341,340,321,336,343,342,325,334,392,318,384,322,370,316,319,330,347,328,331,380,355,324,327,389,364,320,323,360,456,460,441,429,440,413,423,401,433,443,452,416,410,422,425,424,405,420,427,426,409,418,476,402,468,406,454,400,403,414,431,412,415,464,439,408,411,473,448,404,407,444,122,485,492,501,550,797,507,513,671,724,740,564,768,715,580,515,522,523,524,525,526,527,1036,665,531,536,581,732,538,542,547,549,521,734,551,484,557,561,562,563,565,520,739,627,779,628,570,502,574,575,576,578,582,583,599,751,490,572,587,1067,591,592,593,595,596,597,598,510,608,606,511,690,713,487,609,611,733,614,543,617,717,618,556,624,540,553,633,831,635,642,537,660,514,645,646,648,650,841,496,654,719,795,758,661,664,491,744,677,504,683,684,685,755,756,689,503,691,519,697,704,703,706,710,784,720,559,1035,541,1019,731,505,560,516,568,517,745,748,585,1024,584,1096,760,762,500,499,763,626,539,770,707,708,774,777,554,545,693,716,548,530,643,486,794,792,600,533,798,532,675,644,670,634,508,764,506,1078,817,692,602,838,823,847,616,632,631,658,535,678,577,861,866,1092,858,867,891,874,881,904,859,868,877,864,873,826,822,865,839,824,601,830,879,860,886,855,825,878,869,854,897,896,872,905,1002,912,1005,934,913,914,921,916,917,918,920,951,930,928,954,931,1001,926,935,922,924,911,944,962,968,964,985,970,973,966,996,943,910,938,923,950,978,940,981,957,945,956,948,907,980,909,908,947,969,495,974,579,1021,489,805,488,
- 750,789,766,494,828,493,833,544,906,791,961,793,623,1046,722,622,1053,1058,728,723,518,589,727,588,769,529,788,528,659,509,1083,863,862,1008,498,497,992,837,604,1107,1114,1448,1118,1591,1350,1127,1179,1470,1133,1139,1310,1379,1407,1200,1435,1367,1216,1141,1148,1149,1150,1151,1152,1153,1785,1304,1157,1162,1217,1399,1164,1168,1173,1175,1178,1197,1147,1401,1180,1106,1186,1190,1191,1192,1176,1117,1194,1198,1199,1201,1146,1406,1263,1446,1264,1206,1128,1210,1211,1212,1214,1218,1219,1235,1418,1112,1208,1223,1816,1227,1228,1229,1231,1232,1233,1234,1453,1136,1244,1242,1137,1333,1365,1109,1245,1247,1400,1250,1169,1253,1369,1254,1185,1260,1166,1182,1271,1196,1269,1507,1396,1274,1387,1281,1163,1299,1140,1284,1285,1287,1289,1517,1122,1293,1371,1468,1425,1300,1303,1113,1411,1316,1130,1322,1273,1323,1324,1422,1423,1332,1129,1334,1145,1340,1346,1174,1351,1353,1352,1355,1358,1349,1362,1457,1372,1374,1116,1188,1784,1384,1388,1167,1765,1394,1398,1131,1189,1142,1204,1143,1412,1415,1221,1770,1220,1848,1427,1429,1126,1125,1430,1262,1165,1437,1356,1357,1441,1444,1183,1171,1449,1115,1336,1368,1177,1156,1282,1108,1467,1465,1236,1159,1471,1158,1314,1283,1309,1270,1134,1431,1132,1827,1490,1335,1238,1514,1496,1523,1252,1268,1267,1297,1161,1317,1213,1497,1537,1553,1543,1541,1631,1841,1534,1538,1542,1561,1546,1647,1535,1555,1564,1551,1560,1502,1495,1552,1515,1500,1237,1506,1566,1536,1548,1539,1327,1578,1649,1589,1328,1540,1544,1547,1596,1600,1604,1607,1601,1605,1329,1585,1326,1613,1531,1501,1565,1556,1530,1608,1597,1627,1603,1626,1641,1559,1580,1651,1748,1658,1751,1680,1659,1660,1667,1662,1663,1664,1666,1697,1676,1674,1700,1677,1747,1672,1681,1668,1670,1657,1690,1708,1714,1710,1731,1716,1719,1712,1742,1689,1656,1684,1669,1696,1724,1686,1727,1703,1691,1702,1694,1653,1726,1655,1654,1693,1715,1121,1720,1215,1767,1111,1478,1110,1417,1587,1588,1593,1462,1433,1120,1504,1119,1509,1170,1652,1464,1707,1466,1259,1795,1377,1258,1802,1807,1389,1378,1144,1225,1382,1224,1436,1155,1461,1154,1298,1135,1832,1550,1549,1630,1754,1124,1123,1738,1513,1240,1859,1866,
- 2200,1870,2343,2102,1879,1931,2222,1885,1891,2062,2131,2159,1952,2187,2119,1968,1893,1900,1901,1902,1903,1904,1905,2537,2056,1909,1914,1969,2151,1916,1920,1925,1927,1930,1949,1899,2153,1932,1858,1938,1942,1943,1944,1928,1869,1946,1950,1951,1953,1898,2158,2015,2198,2016,1958,1880,1962,1963,1964,1966,1970,1971,1987,2170,1864,1960,1975,2568,1979,1980,1981,1983,1984,1985,1986,2205,1888,1996,1994,1889,2085,2117,1861,1997,1999,2152,2002,1921,2005,2121,2006,1937,2012,1918,1934,2023,1948,2021,2259,2148,2026,2139,2033,1915,2051,1892,2036,2037,2039,2041,2269,1874,2045,2123,2220,2177,2052,2055,1865,2163,2068,1882,2074,2025,2075,2076,2174,2175,2084,1881,2086,1897,2092,2098,1926,2103,2105,2104,2107,2110,2101,2114,2209,2124,2126,1868,1940,2536,2136,2140,1919,2517,2146,2150,1883,1941,1894,1956,1895,2164,2167,1973,2522,1972,2600,2179,2181,1878,1877,2182,2014,1917,2189,2108,2109,2193,2196,1935,1923,2201,1867,2088,2120,1929,1908,2034,1860,2219,2217,1988,1911,2223,1910,2066,2035,2061,2022,1886,2183,1884,2579,2242,2087,1990,2266,2248,2275,2004,2020,2019,2049,1913,2069,1965,2249,2289,2305,2295,2293,2383,2593,2286,2290,2294,2313,2298,2399,2287,2307,2316,2303,2312,2254,2247,2304,2267,2252,1989,2258,2318,2288,2300,2291,2079,2330,2401,2341,2080,2292,2296,2299,2348,2352,2356,2359,2353,2357,2081,2337,2078,2365,2283,2253,2317,2308,2282,2360,2349,2379,2355,2378,2393,2311,2332,2403,2500,2410,2503,2432,2411,2412,2419,2414,2415,2416,2418,2449,2428,2426,2452,2429,2499,2424,2433,2420,2422,2409,2442,2460,2466,2462,2483,2468,2471,2464,2494,2441,2408,2436,2421,2448,2476,2438,2479,2455,2443,2454,2446,2405,2478,2407,2406,2445,2467,1873,2472,1967,2519,1863,2230,1862,2169,2339,2340,2345,2214,2185,1872,2256,1871,2261,1922,2404,2216,2459,2218,2011,2547,2129,2010,2554,2559,2141,2130,1896,1977,2134,1976,2188,1907,2213,1906,2050,1887,2584,2302,2301,2382,2506,1876,1875,2490,2265,1992,2611,2618,2952,2622,3095,2854,2631,2683,2974,2637,2643,2814,2883,2911,2704,2939,2871,2720,2645,2652,2653,2654,2655,2656,2657,3179,2808,2661,2666,2721,2903,2668,2672,2677,2679,2682,
- 2701,2651,2905,2684,2610,2690,2694,2695,2696,2680,2621,2698,2702,2703,2705,2650,2910,2767,2950,2768,2710,2632,2714,2715,2716,2718,2722,2723,2739,2922,2616,2712,2727,3207,2731,2732,2733,2735,2736,2737,2738,2957,2640,2748,2746,2641,2837,2869,2613,2749,2751,2904,2754,2673,2757,2873,2758,2689,2764,2670,2686,2775,2700,2773,3011,2900,2778,2891,2785,2667,2803,2644,2788,2789,2791,2793,3021,2626,2797,2875,2972,2929,2804,2807,2617,2915,2820,2634,2826,2777,2827,2828,2926,2927,2836,2633,2838,2649,2844,2850,2678,2855,2857,2856,2859,2862,2853,2866,2961,2876,2878,2620,2692,3178,2888,2892,2671,3159,2898,2902,2635,2693,2646,2708,2647,2916,2919,2725,3164,2724,3239,2931,2933,2630,2629,2934,2766,2669,2941,2860,2861,2945,2948,2687,2675,2953,2619,2840,2872,2681,2660,2786,2612,2971,2969,2740,2663,2975,2662,2818,2787,2813,2774,2638,2935,2636,3218,2994,2839,2742,3018,3000,3027,2756,2772,2771,2801,2665,2821,2717,3001,3041,3057,3047,3045,3135,3232,3038,3042,3046,3065,3050,3151,3039,3059,3068,3055,3064,3006,2999,3056,3019,3004,2741,3010,3070,3040,3052,3043,2831,3082,3153,3093,2832,3044,3048,3051,3100,3104,3108,3111,3105,3109,2833,3089,2830,3117,3035,3005,3069,3060,3034,3112,3101,3131,3107,3130,3145,3063,3084,3156,2625,2719,3161,2615,2982,2614,2921,3091,3092,3097,2966,2937,2624,3008,2623,3013,2674,2968,2970,2763,3186,2881,2762,3193,3198,2893,2882,2648,2729,2886,2728,2940,2659,2965,2658,2802,2639,3223,3054,3053,3134,2628,2627,3017,2744,3247,3254,3263,3312,3559,3269,3275,3433,3486,3502,3326,3530,3477,3342,3277,3284,3285,3286,3287,3288,3289,3798,3427,3293,3298,3343,3494,3300,3304,3309,3311,3283,3496,3313,3246,3319,3323,3324,3325,3327,3282,3501,3389,3541,3390,3332,3264,3336,3337,3338,3340,3344,3345,3361,3513,3252,3334,3349,3829,3353,3354,3355,3357,3358,3359,3360,3272,3370,3368,3273,3452,3475,3249,3371,3373,3495,3376,3305,3379,3479,3380,3318,3386,3302,3315,3395,3593,3397,3404,3299,3422,3276,3407,3408,3410,3412,3603,3258,3416,3481,3557,3520,3423,3426,3253,3506,3439,3266,3445,3446,3447,3517,3518,3451,3265,3453,3281,3459,3466,3465,3468,3472,3546,3482,
- 3321,3797,3303,3781,3493,3267,3322,3278,3330,3279,3507,3510,3347,3786,3346,3858,3522,3524,3262,3261,3525,3388,3301,3532,3469,3470,3536,3539,3316,3307,3455,3478,3310,3292,3405,3248,3556,3554,3362,3295,3560,3294,3437,3406,3432,3396,3270,3526,3268,3840,3579,3454,3364,3600,3585,3609,3378,3394,3393,3420,3297,3440,3339,3623,3628,3854,3620,3629,3653,3636,3643,3666,3621,3630,3639,3626,3635,3588,3584,3627,3601,3586,3363,3592,3641,3622,3648,3617,3587,3640,3631,3616,3659,3658,3634,3667,3764,3674,3767,3696,3675,3676,3683,3678,3679,3680,3682,3713,3692,3690,3716,3693,3763,3688,3697,3684,3686,3673,3706,3724,3730,3726,3747,3732,3735,3728,3758,3705,3672,3700,3685,3712,3740,3702,3743,3719,3707,3718,3710,3669,3742,3671,3670,3709,3731,3257,3736,3341,3783,3251,3567,3250,3512,3551,3528,3256,3590,3255,3595,3306,3668,3553,3723,3555,3385,3808,3484,3384,3815,3820,3490,3485,3280,3351,3489,3350,3531,3291,3550,3290,3421,3271,3845,3625,3624,3770,3260,3259,3754,3599,3366,3869,3876,4210,3880,4353,4112,3889,3941,4232,3895,3901,4072,4141,4169,3962,4197,4129,3978,3903,3910,3911,3912,3913,3914,3915,4547,4066,3919,3924,3979,4161,3926,3930,3935,3937,3940,3959,3909,4163,3942,3868,3948,3952,3953,3954,3938,3879,3956,3960,3961,3963,3908,4168,4025,4208,4026,3968,3890,3972,3973,3974,3976,3980,3981,3997,4180,3874,3970,3985,4578,3989,3990,3991,3993,3994,3995,3996,4215,3898,4006,4004,3899,4095,4127,3871,4007,4009,4162,4012,3931,4015,4131,4016,3947,4022,3928,3944,4033,3958,4031,4269,4158,4036,4149,4043,3925,4061,3902,4046,4047,4049,4051,4279,3884,4055,4133,4230,4187,4062,4065,3875,4173,4078,3892,4084,4035,4085,4086,4184,4185,4094,3891,4096,3907,4102,4108,3936,4113,4115,4114,4117,4120,4111,4124,4219,4134,4136,3878,3950,4546,4146,4150,3929,4527,4156,4160,3893,3951,3904,3966,3905,4174,4177,3983,4532,3982,4610,4189,4191,3888,3887,4192,4024,3927,4199,4118,4119,4203,4206,3945,3933,4211,3877,4098,4130,3939,3918,4044,3870,4229,4227,3998,3921,4233,3920,4076,4045,4071,4032,3896,4193,3894,4589,4252,4097,4000,4276,4258,4285,4014,4030,4029,4059,3923,4079,3975,4259,4299,4315,
- 4305,4303,4393,4603,4296,4300,4304,4323,4308,4409,4297,4317,4326,4313,4322,4264,4257,4314,4277,4262,3999,4268,4328,4298,4310,4301,4089,4340,4411,4351,4090,4302,4306,4309,4358,4362,4366,4369,4363,4367,4091,4347,4088,4375,4293,4263,4327,4318,4292,4370,4359,4389,4365,4388,4403,4321,4342,4413,4510,4420,4513,4442,4421,4422,4429,4424,4425,4426,4428,4459,4438,4436,4462,4439,4509,4434,4443,4430,4432,4419,4452,4470,4476,4472,4493,4478,4481,4474,4504,4451,4418,4446,4431,4458,4486,4448,4489,4465,4453,4464,4456,4415,4488,4417,4416,4455,4477,3883,4482,3977,4529,3873,4240,3872,4179,4349,4350,4355,4224,4195,3882,4266,3881,4271,3932,4414,4226,4469,4228,4021,4557,4139,4020,4564,4569,4151,4140,3906,3987,4144,3986,4198,3917,4223,3916,4060,3897,4594,4312,4311,4392,4516,3886,3885,4500,4275,4002,4621,4628,4962,4632,5105,4864,4641,4693,4984,4647,4653,4824,4893,4921,4714,4949,4881,4730,4655,4662,4663,4664,4665,4666,4667,5299,4818,4671,4676,4731,4913,4678,4682,4687,4689,4692,4711,4661,4915,4694,4620,4700,4704,4705,4706,4690,4631,4708,4712,4713,4715,4660,4920,4777,4960,4778,4720,4642,4724,4725,4726,4728,4732,4733,4749,4932,4626,4722,4737,5330,4741,4742,4743,4745,4746,4747,4748,4967,4650,4758,4756,4651,4847,4879,4623,4759,4761,4914,4764,4683,4767,4883,4768,4699,4774,4680,4696,4785,4710,4783,5021,4910,4788,4901,4795,4677,4813,4654,4798,4799,4801,4803,5031,4636,4807,4885,4982,4939,4814,4817,4627,4925,4830,4644,4836,4787,4837,4838,4936,4937,4846,4643,4848,4659,4854,4860,4688,4865,4867,4866,4869,4872,4863,4876,4971,4886,4888,4630,4702,5298,4898,4902,4681,5279,4908,4912,4645,4703,4656,4718,4657,4926,4929,4735,5284,4734,5362,4941,4943,4640,4639,4944,4776,4679,4951,4870,4871,4955,4958,4697,4685,4963,4629,4850,4882,4691,4670,4796,4622,4981,4979,4750,4673,4985,4672,4828,4797,4823,4784,4648,4945,4646,5341,5004,4849,4752,5028,5010,5037,4766,4782,4781,4811,4675,4831,4727,5011,5051,5067,5057,5055,5145,5355,5048,5052,5056,5075,5060,5161,5049,5069,5078,5065,5074,5016,5009,5066,5029,5014,4751,5020,5080,5050,5062,5053,4841,5092,5163,5103,4842,5054,5058,5061,
- 5110,5114,5118,5121,5115,5119,4843,5099,4840,5127,5045,5015,5079,5070,5044,5122,5111,5141,5117,5140,5155,5073,5094,5165,5262,5172,5265,5194,5173,5174,5181,5176,5177,5178,5180,5211,5190,5188,5214,5191,5261,5186,5195,5182,5184,5171,5204,5222,5228,5224,5245,5230,5233,5226,5256,5203,5170,5198,5183,5210,5238,5200,5241,5217,5205,5216,5208,5167,5240,5169,5168,5207,5229,4635,5234,4729,5281,4625,4992,4624,4931,5101,5102,5107,4976,4947,4634,5018,4633,5023,4684,5166,4978,5221,4980,4773,5309,4891,4772,5316,5321,4903,4892,4658,4739,4896,4738,4950,4669,4975,4668,4812,4649,5346,5064,5063,5144,5268,4638,4637,5252,5027,4754,5373,5380,5714,5384,5857,5616,5393,5445,5736,5399,5405,5576,5645,5673,5466,5701,5633,5482,5407,5414,5415,5416,5417,5418,5419,5941,5570,5423,5428,5483,5665,5430,5434,5439,5441,5444,5463,5413,5667,5446,5372,5452,5456,5457,5458,5442,5383,5460,5464,5465,5467,5412,5672,5529,5712,5530,5472,5394,5476,5477,5478,5480,5484,5485,5501,5684,5378,5474,5489,5969,5493,5494,5495,5497,5498,5499,5500,5719,5402,5510,5508,5403,5599,5631,5375,5511,5513,5666,5516,5435,5519,5635,5520,5451,5526,5432,5448,5537,5462,5535,5773,5662,5540,5653,5547,5429,5565,5406,5550,5551,5553,5555,5783,5388,5559,5637,5734,5691,5566,5569,5379,5677,5582,5396,5588,5539,5589,5590,5688,5689,5598,5395,5600,5411,5606,5612,5440,5617,5619,5618,5621,5624,5615,5628,5723,5638,5640,5382,5454,5940,5650,5654,5433,5921,5660,5664,5397,5455,5408,5470,5409,5678,5681,5487,5926,5486,6001,5693,5695,5392,5391,5696,5528,5431,5703,5622,5623,5707,5710,5449,5437,5715,5381,5602,5634,5443,5422,5548,5374,5733,5731,5502,5425,5737,5424,5580,5549,5575,5536,5400,5697,5398,5980,5756,5601,5504,5780,5762,5789,5518,5534,5533,5563,5427,5583,5479,5763,5803,5819,5809,5807,5897,5994,5800,5804,5808,5827,5812,5913,5801,5821,5830,5817,5826,5768,5761,5818,5781,5766,5503,5772,5832,5802,5814,5805,5593,5844,5915,5855,5594,5806,5810,5813,5862,5866,5870,5873,5867,5871,5595,5851,5592,5879,5797,5767,5831,5822,5796,5874,5863,5893,5869,5892,5907,5825,5846,5918,5387,5481,5923,5377,5744,5376,5683,5853,5854,5859,
- 5728,5699,5386,5770,5385,5775,5436,5730,5732,5525,5948,5643,5524,5955,5960,5655,5644,5410,5491,5648,5490,5702,5421,5727,5420,5564,5401,5985,5816,5815,5896,5390,5389,5779,5506,55,262,226,269,63,67,272,274,66,290,273,6036,6034,6039,234,265,292,236,240,62,69,233
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *18180 {
- a: 0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,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,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,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,0.999999940395355,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,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,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-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,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,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,-1,0,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-0.999999940395355,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,-1,0,0,-1,0,0,-1,0,0,-1,-3.59558072204891e-009,0,-1,0,0,-1,0,0,-1,0,0,-1,-4.57763560390845e-009,0,-1,-3.59558072204891e-009,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,-4.57763560390845e-009,0,-1,-4.5776378243545e-009,0,-1,-3.79868048128174e-009,0,-1,-3.59558072204891e-009,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.79868048128174e-009,0,-1,-4.5776378243545e-009,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-0.999999940395355,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,-0.999999940395355,0,0,-0.999999940395355,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.59558072204891e-009,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.673851847648621,-0.738866567611694,0,0.98358166217804,-0.180463910102844,0,0.98358166217804,-0.180463910102844,0,0.673851847648621,-0.738866567611694,0,-0.999977171421051,-0.00676223868504167,0,-0.98358166217804,-0.180463910102844,0,-0.98358166217804,-0.180463910102844,0,-0.999977171421051,-0.00676223868504167,0,0,-1,0,0,-1,0,-0.673851847648621,-0.738866567611694,0,-0.673851847648621,-0.738866567611694,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,0.999977171421051,-0.00676223868504167,0,0.999977171421051,-0.00676223868504167,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.673851847648621,-0.738866567611694,0,0,-1,0,0,-1,0,0.673851847648621,-0.738866567611694,0,0.98358166217804,-0.180463910102844,0,0.98358166217804,-0.180463910102844,0,0.999977171421051,-0.00676223868504167,0,0.999977171421051,-0.00676223868504167,0,-0.98358166217804,-0.180463910102844,0,-0.98358166217804,-0.180463910102844,0,-0.673851847648621,-0.738866567611694,0,-0.673851847648621,-0.738866567611694,0,0,-0.223220512270927,0.974767923355103,0,-0.223220616579056,0.974768042564392,0,0.044103279709816,0.999027073383331,0,0.0441032834351063,0.999027013778687,0,0.999233245849609,0.0391513742506504,0,0.999233245849609,0.039151519536972,0,0.999233245849609,-0.0391517914831638,0,0.999233305454254,-0.0391516424715519,0,0.0440929569303989,-0.999027490615845,0,0.0440929532051086,-0.999027490615845,0,-0.223228171467781,-0.974766314029694,0,-0.223228096961975,-0.974766194820404,0,-0.969216108322144,-0.246211528778076,0,-0.969216108322144,-0.246211498975754,0,-0.96921569108963,0.246213361620903,0,-0.96921569108963,0.246213436126709,
- 1,1.16111081638337e-007,0,1,1.16108644476753e-007,0,1,-1.7465298540742e-008,0,1,-1.74653003170988e-008,0,1,-1.74653003170988e-008,0,1,-1.7465298540742e-008,0,-1,-4.50772752458306e-008,0,-1,-4.50792327910676e-008,0,-1,6.11285457807753e-008,0,-1,6.11285457807753e-008,0,-1,6.11285457807753e-008,0,-1,6.11285457807753e-008,0,0,-0.96921569108963,0.246213436126709,0,-0.96921569108963,0.246213361620903,0,-0.223220616579056,0.974768042564392,0,-0.223220512270927,0.974767923355103,1,1.04728133010212e-006,0,1,1.04728144378896e-006,0,1,1.16108644476753e-007,0,1,1.16111081638337e-007,0,0,-0.223228096961975,-0.974766194820404,0,-0.223228171467781,-0.974766314029694,0,-0.969216108322144,-0.246211498975754,0,-0.969216108322144,-0.246211528778076,-1,-7.85461054420011e-007,0,-1,-7.85460997576592e-007,0,-1,-4.50792327910676e-008,0,-1,-4.50772752458306e-008,0,0,0.999233245849609,0.0391513742506504,0,0.0441032834351063,0.999027013778687,0,0.044103279709816,0.999027073383331,0,0.999233245849609,0.039151519536972,0,0.0440929569303989,-0.999027490615845,0,0.999233305454254,-0.0391516424715519,0,0.999233245849609,-0.0391517914831638,0,0.0440929532051086,-0.999027490615845,0,-0.223220437765121,0.974767982959747,0,-0.223220512270927,0.974767923355103,0,0.0441032834351063,0.999027013778687,0,0.0441032834351063,0.999027013778687,0,-0.969215631484985,0.246213525533676,0,-0.96921569108963,0.246213436126709,0,-0.223220512270927,0.974767923355103,0,-0.223220437765121,0.974767982959747,0,-0.969216167926788,-0.246211618185043,0,-0.969216108322144,-0.246211528778076,0,-0.96921569108963,0.246213436126709,0,-0.969215631484985,0.246213525533676,0,-0.223228067159653,-0.974766254425049,0,-0.223228096961975,-0.974766194820404,0,-0.969216108322144,-0.246211528778076,0,-0.969216167926788,-0.246211618185043,0,0.0440929569303989,-0.999027490615845,0,0.0440929569303989,-0.999027490615845,0,-0.223228096961975,-0.974766194820404,0,-0.223228067159653,-0.974766254425049,0,0.0440929569303989,-0.999027490615845,0,0.999233305454254,-0.0391514860093594,0,0.999233305454254,-0.0391516424715519,
- 0,0.0440929569303989,-0.999027490615845,0,0.999233245849609,0.0391512215137482,0,0.999233245849609,0.0391513742506504,0,0.999233305454254,-0.0391516424715519,0,0.999233305454254,-0.0391514860093594,0,0.999233245849609,0.0391512215137482,0,0.0441032834351063,0.999027013778687,0,0.0441032834351063,0.999027013778687,0,0.999233245849609,0.0391513742506504,0,-0.2232356518507,-0.974764585494995,1.08104120499775e-006,-0.223235681653023,-0.97476452589035,0,0.044123936444521,-0.999026119709015,0,0.0441243052482605,-0.99902606010437,0,0.999233365058899,-0.039150420576334,0,0.999233305454254,-0.0391509905457497,0,0.999233245849609,0.0391523763537407,0,0.999233365058899,0.0391511470079422,4.41798670130361e-013,0.0440828539431095,0.999027967453003,-8.01192618382629e-006,0.0440827459096909,0.999027848243713,-8.31707075121813e-006,-0.223221123218536,0.974767744541168,3.40363615113429e-013,-0.223219960927963,0.974768102169037,8.3373209052752e-014,-0.969215214252472,0.24621507525444,-2.10134271583229e-006,-0.969216108322144,0.246211752295494,1.05921105841844e-006,-0.969216227531433,-0.246211215853691,0,-0.96921706199646,-0.246208056807518,-0.999999940395355,-2.18435999954636e-007,0,-0.999999940395355,-2.18435999954636e-007,0,-1,-1.7465404766881e-007,0,-1,-1.74654033457955e-007,0,-1,-1.746540192471e-007,0,-1,-1.74654033457955e-007,0,0.999999940395355,-0.000141058131703176,0,0.999999940395355,-0.000141058131703176,0,1,-0.000161292977281846,0,1,-0.000161292977281846,0,0.999999940395355,-0.000161292977281846,0,1,-0.000161292962729931,0,0,-0.96921706199646,-0.246208056807518,1.05921105841844e-006,-0.969216227531433,-0.246211215853691,1.08104120499775e-006,-0.223235681653023,-0.97476452589035,0,-0.2232356518507,-0.974764585494995,-1,-5.23642654570722e-007,0,-1,-5.23642654570722e-007,0,-0.999999940395355,-2.18435999954636e-007,0,-0.999999940395355,-2.18435999954636e-007,0,3.40363615113429e-013,-0.223219960927963,0.974768102169037,-8.31707075121813e-006,-0.223221123218536,0.974767744541168,-2.10134271583229e-006,-0.969216108322144,0.246211752295494,
- 8.3373209052752e-014,-0.969215214252472,0.24621507525444,1,0,0,1,0,0,0.999999940395355,-0.000141058131703176,0,0.999999940395355,-0.000141058131703176,0,0,0.999233365058899,-0.039150420576334,0,0.0441243052482605,-0.99902606010437,0,0.044123936444521,-0.999026119709015,0,0.999233305454254,-0.0391509905457497,4.41798670130361e-013,0.0440828539431095,0.999027967453003,0,0.999233365058899,0.0391511470079422,0,0.999233245849609,0.0391523763537407,-8.01192618382629e-006,0.0440827459096909,0.999027848243713,-1.09137204162835e-006,-0.223235636949539,-0.974764585494995,0,-0.2232356518507,-0.974764585494995,0,0.0441243052482605,-0.99902606010437,0,0.0441832914948463,-0.9990234375,-1.06933362076234e-006,-0.969216108322144,-0.246211394667625,0,-0.96921706199646,-0.246208056807518,0,-0.2232356518507,-0.974764585494995,-1.09137204162835e-006,-0.223235636949539,-0.974764585494995,2.12142435884743e-006,-0.969216048717499,0.246211901307106,8.3373209052752e-014,-0.969215214252472,0.24621507525444,0,-0.96921706199646,-0.246208056807518,-1.06933362076234e-006,-0.969216108322144,-0.246211394667625,8.39655240270076e-006,-0.223221033811569,0.974767863750458,3.40363615113429e-013,-0.223219960927963,0.974768102169037,8.3373209052752e-014,-0.969215214252472,0.24621507525444,2.12142435884743e-006,-0.969216048717499,0.246211901307106,8.08777986094356e-006,0.0441420935094357,0.999025225639343,4.41798670130361e-013,0.0440828539431095,0.999027967453003,3.40363615113429e-013,-0.223219960927963,0.974768102169037,8.39655240270076e-006,-0.223221033811569,0.974767863750458,8.08777986094356e-006,0.0441420935094357,0.999025225639343,0,0.999235391616821,0.0390974208712578,0,0.999233365058899,0.0391511470079422,4.41798670130361e-013,0.0440828539431095,0.999027967453003,0,0.999235391616821,-0.0390960685908794,0,0.999233365058899,-0.039150420576334,0,0.999233365058899,0.0391511470079422,0,0.999235391616821,0.0390974208712578,0,0.999235391616821,-0.0390960685908794,0,0.0441832914948463,-0.9990234375,0,0.0441243052482605,-0.99902606010437,0,0.999233365058899,-0.039150420576334,
- -0.999559223651886,0.026336845010519,-0.0136982770636678,-0.998998761177063,-0.0426191538572311,-0.0135990148410201,-0.998745381832123,-0.037921167910099,0.0327057540416718,-0.998953759670258,0.0300000794231892,0.0345178470015526,-0.998328566551209,-0.0485448203980923,0.0313600525259972,-0.0436730682849884,-0.0264421943575144,0.998695850372314,-0.0430863425135612,0.0251026134938002,0.998755931854248,-0.999488532543182,0.0068895067088306,0.0312304645776749,0.797303199768066,0.602722406387329,-0.0321439318358898,0.998861849308014,0.0466429032385349,0.0099725378677249,0.998107016086578,0.0515890531241894,-0.033479668200016,-0.709696769714355,-0.704277396202087,-0.0179962515830994,-0.99956226348877,0.00683916173875332,-0.0287828482687473,-0.999488532543182,0.0068895067088306,0.0312304645776749,-0.751263082027435,-0.660002708435059,0.000459754810435697,0.99900883436203,0.0420539863407612,-0.0145949199795723,0.914949774742126,-0.391616493463516,-0.0974863544106483,0.962565243244171,0.26983654499054,0.0256170015782118,-0.0351645536720753,0.0144430417567492,0.999277174472809,-0.0406365394592285,-0.00491706235334277,0.999161839485168,0.0409102067351341,-0.0136459367349744,0.999069631099701,0.045361340045929,0.0116011714562774,0.998903334140778,0.999603509902954,0.00942080933600664,0.0265311170369387,0.999671399593353,-0.00860205851495266,0.0241455156356096,0.999917507171631,-0.00868400000035763,-0.00946053303778172,0.999788105487823,0.00385883892886341,-0.0202219989150763,0.99900883436203,0.0420539863407612,-0.0145949199795723,0.975840389728546,0.216918587684631,-0.0261132400482893,0.999917507171631,-0.00868400000035763,-0.00946053303778172,0.999671399593353,-0.00860205851495266,0.0241455156356096,0.0501146242022514,0.025206608697772,0.998425424098969,-0.0190379042178392,0.00494018942117691,0.999806523323059,-0.0214034039527178,-0.0244845356792212,0.999471068382263,0.0488237217068672,-0.0198068581521511,0.99861091375351,0.999457776546478,0.007520392537117,0.0320571139454842,0.999217212200165,-0.0198559369891882,-0.034214586019516,
- 0.91432398557663,0.402687877416611,-0.043060090392828,0.994653761386871,0.0900567919015884,0.0505339242517948,0.797303199768066,0.602722406387329,-0.0321439318358898,0.99879252910614,-0.0374117270112038,-0.0318393744528294,0.998694062232971,-0.0376714095473289,0.0345087200403214,0.100406043231487,0.103861920535564,-0.989510595798492,0.0170942898839712,0.0340512953698635,-0.999273896217346,0.0670312196016312,-0.000567603681702167,-0.997750699520111,-0.00278224982321262,-0.036657627671957,-0.999324023723602,0.999775052070618,-0.0163375176489353,-0.013520204462111,0.99869179725647,-0.051061112433672,-0.00271384697407484,0.999603509902954,0.00942080933600664,0.0265311170369387,0.0729949548840523,0.0297742486000061,0.996887743473053,0.086199589073658,-0.0287922285497189,0.995861768722534,0.999671399593353,-0.00860205851495266,0.0241455156356096,0.91432398557663,0.402687877416611,-0.043060090392828,0.0643392130732536,0.0566323548555374,-0.996319830417633,0.0606528855860233,0.126899495720863,-0.990059554576874,0.0374740548431873,-0.089342936873436,-0.995295703411102,-0.0666890367865562,-0.000190645703696646,-0.997773826122284,-0.0267131552100182,-0.368484705686569,-0.929249942302704,0.998694062232971,-0.0376714095473289,0.0345087200403214,0.0409102067351341,-0.0136459367349744,0.999069631099701,0.0354781448841095,0.231964021921158,0.972077190876007,0.0576879642903805,0.0169515181332827,-0.998190820217133,-0.0269513800740242,0.00933423731476069,-0.999593138694763,0.0170942898839712,0.0340512953698635,-0.999273896217346,0.100406043231487,0.103861920535564,-0.989510595798492,0.0357886180281639,-0.00553912902250886,-0.999343991279602,0.0374740548431873,-0.089342936873436,-0.995295703411102,-0.035116620361805,-0.00508655840530992,-0.999370336532593,-0.019585894420743,0.0178091619163752,-0.999649584293365,-0.998998761177063,-0.0426191538572311,-0.0135990148410201,-0.999559223651886,0.026336845010519,-0.0136982770636678,-0.0202547181397676,0.0409162379801273,-0.998957276344299,0.0670312196016312,-0.000567603681702167,-0.997750699520111,
- 0.0170942898839712,0.0340512953698635,-0.999273896217346,-0.019585894420743,0.0178091619163752,-0.999649584293365,0.0488237217068672,-0.0198068581521511,0.99861091375351,-0.0214034039527178,-0.0244845356792212,0.999471068382263,0.0261864941567183,-0.243033111095428,0.969664514064789,0.045361340045929,0.0116011714562774,0.998903334140778,0.994653761386871,0.0900567919015884,0.0505339242517948,0.0261864941567183,-0.243033111095428,0.969664514064789,0.91432398557663,0.402687877416611,-0.043060090392828,0.998309075832367,-0.0450579151511192,0.0367238521575928,0.994653761386871,0.0900567919015884,0.0505339242517948,0.0261864941567183,-0.243033111095428,0.969664514064789,0.994653761386871,0.0900567919015884,0.0505339242517948,0.0488237217068672,-0.0198068581521511,0.99861091375351,-0.998745381832123,-0.037921167910099,0.0327057540416718,-0.0406365394592285,-0.00491706235334277,0.999161839485168,-0.0351645536720753,0.0144430417567492,0.999277174472809,-0.998953759670258,0.0300000794231892,0.0345178470015526,-0.998745381832123,-0.037921167910099,0.0327057540416718,-0.918074131011963,-0.396214455366135,-0.0124110858887434,-0.841433823108673,-0.529244661331177,0.109038323163986,-0.998125493526459,0.0595390312373638,0.0141667993739247,-0.996249437332153,0.0763056948781013,-0.0407993793487549,-0.999280095100403,0.00164797191973776,-0.0379032716155052,-0.999903559684753,-0.00229655206203461,0.0136978384107351,-0.0384922325611115,0.00105837814044207,0.99925833940506,0.038390401750803,0.00134760688524693,0.999261975288391,-0.141009494662285,0.0723525881767273,0.987360835075378,-0.0430863425135612,0.0251026134938002,0.998755931854248,0.0225296951830387,0.0988157987594604,0.994850695133209,-0.999488532543182,0.0068895067088306,0.0312304645776749,-0.916075348854065,0.398326486349106,0.046280674636364,-0.0351645536720753,0.0144430417567492,0.999277174472809,-0.0247910767793655,0.0864307284355164,0.995949387550354,0.998861849308014,0.0466429032385349,0.0099725378677249,0.797303199768066,0.602722406387329,-0.0321439318358898,0.7716343998909,0.636063456535339,0.00191442645154893,
- 0.0354781448841095,0.231964021921158,0.972077190876007,-0.141009494662285,0.0723525881767273,0.987360835075378,0.038390401750803,0.00134760688524693,0.999261975288391,-0.916075348854065,0.398326486349106,0.046280674636364,-0.0214034039527178,-0.0244845356792212,0.999471068382263,-0.999903559684753,-0.00229655206203461,0.0136978384107351,-0.0384922325611115,0.00105837814044207,0.99925833940506,-0.99953556060791,0.0150183606892824,0.0265172552317381,-0.999292194843292,-0.0288572832942009,0.0241302140057087,-0.0336957946419716,-0.0382112637162209,0.998701453208923,-0.0384922325611115,0.00105837814044207,0.99925833940506,-0.141009494662285,0.0723525881767273,0.987360835075378,-0.99953556060791,0.0150183606892824,0.0265172552317381,-0.141009494662285,0.0723525881767273,0.987360835075378,-0.998745381832123,-0.037921167910099,0.0327057540416718,-0.841433823108673,-0.529244661331177,0.109038323163986,0.0821835398674011,0.306035935878754,0.948466062545776,0.0729949548840523,0.0297742486000061,0.996887743473053,0.999603509902954,0.00942080933600664,0.0265311170369387,0.7716343998909,0.636063456535339,0.00191442645154893,0.797303199768066,0.602722406387329,-0.0321439318358898,0.998694062232971,-0.0376714095473289,0.0345087200403214,0.0606528855860233,0.126899495720863,-0.990059554576874,0.0643392130732536,0.0566323548555374,-0.996319830417633,-0.0202547181397676,0.0409162379801273,-0.998957276344299,0.0170942898839712,0.0340512953698635,-0.999273896217346,-0.998998761177063,-0.0426191538572311,-0.0135990148410201,-0.019585894420743,0.0178091619163752,-0.999649584293365,0.0170942898839712,0.0340512953698635,-0.999273896217346,-0.0269513800740242,0.00933423731476069,-0.999593138694763,-0.998935997486115,0.0350968092679977,-0.0299163777381182,-0.918074131011963,-0.396214455366135,-0.0124110858887434,-0.0267131552100182,-0.368484705686569,-0.929249942302704,-0.0666890367865562,-0.000190645703696646,-0.997773826122284,-0.996249437332153,0.0763056948781013,-0.0407993793487549,-0.0267131552100182,-0.368484705686569,-0.929249942302704,
- -0.035116620361805,-0.00508655840530992,-0.999370336532593,0.0374740548431873,-0.089342936873436,-0.995295703411102,-0.99956226348877,0.00683916173875332,-0.0287828482687473,-0.0348990820348263,0.0422394536435604,-0.998497843742371,-0.035116620361805,-0.00508655840530992,-0.999370336532593,-0.998492300510406,-0.04640718922019,-0.029316745698452,-0.918074131011963,-0.396214455366135,-0.0124110858887434,-0.998998761177063,-0.0426191538572311,-0.0135990148410201,0.0170942898839712,0.0340512953698635,-0.999273896217346,-0.998745381832123,-0.037921167910099,0.0327057540416718,-0.998998761177063,-0.0426191538572311,-0.0135990148410201,-0.918074131011963,-0.396214455366135,-0.0124110858887434,-0.00278224982321262,-0.036657627671957,-0.999324023723602,0.99869179725647,-0.051061112433672,-0.00271384697407484,0.91432398557663,0.402687877416611,-0.043060090392828,0.0857446119189262,0.381056517362595,0.920567095279694,0.0501146242022514,0.025206608697772,0.998425424098969,0.96118026971817,0.275659918785095,0.0119980545714498,0.998694062232971,-0.0376714095473289,0.0345087200403214,0.0354781448841095,0.231964021921158,0.972077190876007,0.7716343998909,0.636063456535339,0.00191442645154893,0.0354781448841095,0.231964021921158,0.972077190876007,0.998861849308014,0.0466429032385349,0.0099725378677249,0.7716343998909,0.636063456535339,0.00191442645154893,0.91432398557663,0.402687877416611,-0.043060090392828,0.0606528855860233,0.126899495720863,-0.990059554576874,-0.00278224982321262,-0.036657627671957,-0.999324023723602,0.0357886180281639,-0.00553912902250886,-0.999343991279602,-0.035116620361805,-0.00508655840530992,-0.999370336532593,-0.0348990820348263,0.0422394536435604,-0.998497843742371,0.0580650344491005,0.04944783821702,-0.997087419033051,0.0561187565326691,0.010897665284574,-0.998364746570587,0.038390401750803,0.00134760688524693,0.999261975288391,0.998861849308014,0.0466429032385349,0.0099725378677249,0.0354781448841095,0.231964021921158,0.972077190876007,0.999603509902954,0.00942080933600664,0.0265311170369387,0.962565243244171,0.26983654499054,0.0256170015782118,
- 0.0821835398674011,0.306035935878754,0.948466062545776,0.99900883436203,0.0420539863407612,-0.0145949199795723,0.962565243244171,0.26983654499054,0.0256170015782118,0.999603509902954,0.00942080933600664,0.0265311170369387,-0.0666890367865562,-0.000190645703696646,-0.997773826122284,-0.0690263733267784,-0.0180544313043356,-0.997451484203339,-0.999280095100403,0.00164797191973776,-0.0379032716155052,-0.996249437332153,0.0763056948781013,-0.0407993793487549,0.999671399593353,-0.00860205851495266,0.0241455156356096,0.086199589073658,-0.0287922285497189,0.995861768722534,0.0857446119189262,0.381056517362595,0.920567095279694,0.96118026971817,0.275659918785095,0.0119980545714498,0.96118026971817,0.275659918785095,0.0119980545714498,0.975840389728546,0.216918587684631,-0.0261132400482893,0.999671399593353,-0.00860205851495266,0.0241455156356096,0.999457776546478,0.007520392537117,0.0320571139454842,0.994653761386871,0.0900567919015884,0.0505339242517948,0.045361340045929,0.0116011714562774,0.998903334140778,0.797303199768066,0.602722406387329,-0.0321439318358898,0.100406043231487,0.103861920535564,-0.989510595798492,0.99879252910614,-0.0374117270112038,-0.0318393744528294,-0.0406365394592285,-0.00491706235334277,0.999161839485168,-0.998745381832123,-0.037921167910099,0.0327057540416718,-0.141009494662285,0.0723525881767273,0.987360835075378,0.999217212200165,-0.0198559369891882,-0.034214586019516,0.99879252910614,-0.0374117270112038,-0.0318393744528294,0.0670312196016312,-0.000567603681702167,-0.997750699520111,0.0643392130732536,0.0566323548555374,-0.996319830417633,0.99879252910614,-0.0374117270112038,-0.0318393744528294,0.100406043231487,0.103861920535564,-0.989510595798492,0.0670312196016312,-0.000567603681702167,-0.997750699520111,0.0409102067351341,-0.0136459367349744,0.999069631099701,-0.141009494662285,0.0723525881767273,0.987360835075378,0.0354781448841095,0.231964021921158,0.972077190876007,-0.0406365394592285,-0.00491706235334277,0.999161839485168,-0.141009494662285,0.0723525881767273,0.987360835075378,0.0409102067351341,-0.0136459367349744,0.999069631099701,
- 0.0501146242022514,0.025206608697772,0.998425424098969,0.999256312847137,0.0137645034119487,0.0360203012824059,0.96118026971817,0.275659918785095,0.0119980545714498,-0.974312305450439,0.223894938826561,-0.024218900129199,-0.919759392738342,0.392256110906601,0.0133318575099111,-0.998492300510406,-0.04640718922019,-0.029316745698452,-0.0351645536720753,0.0144430417567492,0.999277174472809,-0.916075348854065,0.398326486349106,0.046280674636364,-0.998953759670258,0.0300000794231892,0.0345178470015526,-0.998953759670258,0.0300000794231892,0.0345178470015526,-0.916075348854065,0.398326486349106,0.046280674636364,-0.999559223651886,0.026336845010519,-0.0136982770636678,0.999792397022247,0.0202873088419437,-0.0018689944408834,0.0374740548431873,-0.089342936873436,-0.995295703411102,0.975840389728546,0.216918587684631,-0.0261132400482893,-0.00278224982321262,-0.036657627671957,-0.999324023723602,0.0606528855860233,0.126899495720863,-0.990059554576874,-0.0690263733267784,-0.0180544313043356,-0.997451484203339,-0.0202547181397676,0.0409162379801273,-0.998957276344299,-0.999559223651886,0.026336845010519,-0.0136982770636678,-0.617522895336151,0.786487817764282,-0.0101208044216037,-0.112084068357944,0.538161396980286,-0.835355937480927,-0.0214034039527178,-0.0244845356792212,0.999471068382263,-0.916075348854065,0.398326486349106,0.046280674636364,-0.0247910767793655,0.0864307284355164,0.995949387550354,-0.916075348854065,0.398326486349106,0.046280674636364,-0.617522895336151,0.786487817764282,-0.0101208044216037,-0.999559223651886,0.026336845010519,-0.0136982770636678,-0.0190379042178392,0.00494018942117691,0.999806523323059,-0.919759392738342,0.392256110906601,0.0133318575099111,-0.998125493526459,0.0595390312373638,0.0141667993739247,0.0261864941567183,-0.243033111095428,0.969664514064789,-0.0351645536720753,0.0144430417567492,0.999277174472809,0.045361340045929,0.0116011714562774,0.998903334140778,0.0488237217068672,-0.0198068581521511,0.99861091375351,0.994653761386871,0.0900567919015884,0.0505339242517948,0.998309075832367,-0.0450579151511192,0.0367238521575928,
- 0.998309075832367,-0.0450579151511192,0.0367238521575928,0.999256312847137,0.0137645034119487,0.0360203012824059,0.0501146242022514,0.025206608697772,0.998425424098969,0.0488237217068672,-0.0198068581521511,0.99861091375351,-0.0190379042178392,0.00494018942117691,0.999806523323059,0.00447223475202918,0.00712098414078355,0.999964594841003,-0.919759392738342,0.392256110906601,0.0133318575099111,0.086199589073658,-0.0287922285497189,0.995861768722534,0.0729949548840523,0.0297742486000061,0.996887743473053,-0.0430863425135612,0.0251026134938002,0.998755931854248,-0.0436730682849884,-0.0264421943575144,0.998695850372314,0.0821835398674011,0.306035935878754,0.948466062545776,0.0225296951830387,0.0988157987594604,0.994850695133209,-0.0430863425135612,0.0251026134938002,0.998755931854248,0.0729949548840523,0.0297742486000061,0.996887743473053,0.00041796060395427,-0.19180029630661,-0.981433868408203,0.125996991991997,-0.0307061895728111,-0.991555333137512,0.0580650344491005,0.04944783821702,-0.997087419033051,-0.0348990820348263,0.0422394536435604,-0.998497843742371,0.914949774742126,-0.391616493463516,-0.0974863544106483,0.99900883436203,0.0420539863407612,-0.0145949199795723,0.0580650344491005,0.04944783821702,-0.997087419033051,0.125996991991997,-0.0307061895728111,-0.991555333137512,0.975840389728546,0.216918587684631,-0.0261132400482893,0.0357886180281639,-0.00553912902250886,-0.999343991279602,0.999917507171631,-0.00868400000035763,-0.00946053303778172,0.0418732464313507,0.00284017086960375,-0.999118864536285,-0.0666890367865562,-0.000190645703696646,-0.997773826122284,0.0374740548431873,-0.089342936873436,-0.995295703411102,0.0606528855860233,0.126899495720863,-0.990059554576874,-0.112084068357944,0.538161396980286,-0.835355937480927,-0.0690263733267784,-0.0180544313043356,-0.997451484203339,-0.974312305450439,0.223894938826561,-0.024218900129199,-0.998492300510406,-0.04640718922019,-0.029316745698452,-0.035116620361805,-0.00508655840530992,-0.999370336532593,-0.974312305450439,0.223894938826561,-0.024218900129199,-0.035116620361805,-0.00508655840530992,-0.999370336532593,
- -0.0267131552100182,-0.368484705686569,-0.929249942302704,-0.0267131552100182,-0.368484705686569,-0.929249942302704,-0.996249437332153,0.0763056948781013,-0.0407993793487549,-0.974312305450439,0.223894938826561,-0.024218900129199,0.0374740548431873,-0.089342936873436,-0.995295703411102,0.0357886180281639,-0.00553912902250886,-0.999343991279602,0.975840389728546,0.216918587684631,-0.0261132400482893,0.999792397022247,0.0202873088419437,-0.0018689944408834,0.0418732464313507,0.00284017086960375,-0.999118864536285,0.0374740548431873,-0.089342936873436,-0.995295703411102,0.99869179725647,-0.051061112433672,-0.00271384697407484,0.999775052070618,-0.0163375176489353,-0.013520204462111,0.999792397022247,0.0202873088419437,-0.0018689944408834,0.999256312847137,0.0137645034119487,0.0360203012824059,0.998309075832367,-0.0450579151511192,0.0367238521575928,-0.99953556060791,0.0150183606892824,0.0265172552317381,-0.841433823108673,-0.529244661331177,0.109038323163986,-0.909198224544525,0.415230482816696,0.030694218352437,0.00447223475202918,0.00712098414078355,0.999964594841003,0.0857446119189262,0.381056517362595,0.920567095279694,0.086199589073658,-0.0287922285497189,0.995861768722534,-0.0190379042178392,0.00494018942117691,0.999806523323059,0.0857446119189262,0.381056517362595,0.920567095279694,0.00447223475202918,0.00712098414078355,0.999964594841003,-0.0190379042178392,0.00494018942117691,0.999806523323059,0.0501146242022514,0.025206608697772,0.998425424098969,0.0857446119189262,0.381056517362595,0.920567095279694,-0.99956226348877,0.00683916173875332,-0.0287828482687473,-0.998492300510406,-0.04640718922019,-0.029316745698452,-0.998328566551209,-0.0485448203980923,0.0313600525259972,-0.999488532543182,0.0068895067088306,0.0312304645776749,-0.998125493526459,0.0595390312373638,0.0141667993739247,-0.999903559684753,-0.00229655206203461,0.0136978384107351,-0.0214034039527178,-0.0244845356792212,0.999471068382263,-0.0190379042178392,0.00494018942117691,0.999806523323059,-0.019585894420743,0.0178091619163752,-0.999649584293365,
- -0.0202547181397676,0.0409162379801273,-0.998957276344299,0.0643392130732536,0.0566323548555374,-0.996319830417633,0.0670312196016312,-0.000567603681702167,-0.997750699520111,0.0409102067351341,-0.0136459367349744,0.999069631099701,0.998694062232971,-0.0376714095473289,0.0345087200403214,0.999457776546478,0.007520392537117,0.0320571139454842,0.045361340045929,0.0116011714562774,0.998903334140778,0.038390401750803,0.00134760688524693,0.999261975288391,-0.0384922325611115,0.00105837814044207,0.99925833940506,-0.0336957946419716,-0.0382112637162209,0.998701453208923,0.0268312469124794,-0.03433608263731,0.999050140380859,0.0648225098848343,-0.0357499644160271,-0.997256219387054,0.0240222364664078,-0.0401970371603966,-0.998902976512909,-0.0222403332591057,-0.0357412062585354,-0.9991135597229,-0.0269513800740242,0.00933423731476069,-0.999593138694763,0.0576879642903805,0.0169515181332827,-0.998190820217133,0.038390401750803,0.00134760688524693,0.999261975288391,0.0268312469124794,-0.03433608263731,0.999050140380859,0.999180734157562,-0.0361953228712082,0.0181038752198219,0.998861849308014,0.0466429032385349,0.0099725378677249,0.998107016086578,0.0515890531241894,-0.033479668200016,0.0576879642903805,0.0169515181332827,-0.998190820217133,0.100406043231487,0.103861920535564,-0.989510595798492,0.797303199768066,0.602722406387329,-0.0321439318358898,-0.99953556060791,0.0150183606892824,0.0265172552317381,-0.998935997486115,0.0350968092679977,-0.0299163777381182,-0.999398827552795,-0.0130514772608876,-0.0321192517876625,-0.999292194843292,-0.0288572832942009,0.0241302140057087,-0.99956226348877,0.00683916173875332,-0.0287828482687473,0.00041796060395427,-0.19180029630661,-0.981433868408203,-0.0348990820348263,0.0422394536435604,-0.998497843742371,0.999217212200165,-0.0198559369891882,-0.034214586019516,0.0643392130732536,0.0566323548555374,-0.996319830417633,0.91432398557663,0.402687877416611,-0.043060090392828,0.999256312847137,0.0137645034119487,0.0360203012824059,0.975840389728546,0.216918587684631,-0.0261132400482893,0.96118026971817,0.275659918785095,0.0119980545714498,
- -0.974312305450439,0.223894938826561,-0.024218900129199,-0.996249437332153,0.0763056948781013,-0.0407993793487549,-0.998125493526459,0.0595390312373638,0.0141667993739247,-0.919759392738342,0.392256110906601,0.0133318575099111,0.999180734157562,-0.0361953228712082,0.0181038752198219,0.99885892868042,-0.00434852950274944,-0.0475595630705357,0.998107016086578,0.0515890531241894,-0.033479668200016,0.998861849308014,0.0466429032385349,0.0099725378677249,0.435082107782364,-0.890698850154877,-0.131754010915756,0.223233431577683,-0.871809184551239,-0.436022460460663,0.0648225098848343,-0.0357499644160271,-0.997256219387054,0.99885892868042,-0.00434852950274944,-0.0475595630705357,0.0268312469124794,-0.03433608263731,0.999050140380859,0.00367062794975936,-0.85565447807312,0.517534494400024,0.42112734913826,-0.90698105096817,-0.00610101455822587,-0.999398827552795,-0.0130514772608876,-0.0321192517876625,-0.0222403332591057,-0.0357412062585354,-0.9991135597229,0.0038760700263083,-0.906084835529327,-0.423078298568726,-0.743544161319733,-0.666865944862366,-0.0493133068084717,0.223233431577683,-0.871809184551239,-0.436022460460663,0.0240222364664078,-0.0401970371603966,-0.998902976512909,0.0648225098848343,-0.0357499644160271,-0.997256219387054,-0.0117236087098718,-0.85811173915863,0.513329207897186,-0.999292194843292,-0.0288572832942009,0.0241302140057087,-0.326181858778,-0.945171117782593,0.0160262025892735,0.999180734157562,-0.0361953228712082,0.0181038752198219,0.0268312469124794,-0.03433608263731,0.999050140380859,0.42112734913826,-0.90698105096817,-0.00610101455822587,0.435082107782364,-0.890698850154877,-0.131754010915756,0.855131566524506,-0.51746392250061,-0.0313220918178558,0.999180734157562,-0.0361953228712082,0.0181038752198219,0.42112734913826,-0.90698105096817,-0.00610101455822587,0.998107016086578,0.0515890531241894,-0.033479668200016,0.99885892868042,-0.00434852950274944,-0.0475595630705357,0.0648225098848343,-0.0357499644160271,-0.997256219387054,0.0576879642903805,0.0169515181332827,-0.998190820217133,0.99885892868042,-0.00434852950274944,-0.0475595630705357,
- 0.855131566524506,-0.51746392250061,-0.0313220918178558,0.435082107782364,-0.890698850154877,-0.131754010915756,-0.0222403332591057,-0.0357412062585354,-0.9991135597229,0.0240222364664078,-0.0401970371603966,-0.998902976512909,0.223233431577683,-0.871809184551239,-0.436022460460663,0.0038760700263083,-0.906084835529327,-0.423078298568726,0.99885892868042,-0.00434852950274944,-0.0475595630705357,0.999180734157562,-0.0361953228712082,0.0181038752198219,0.855131566524506,-0.51746392250061,-0.0313220918178558,-0.999292194843292,-0.0288572832942009,0.0241302140057087,-0.743544161319733,-0.666865944862366,-0.0493133068084717,-0.326181858778,-0.945171117782593,0.0160262025892735,-0.999292194843292,-0.0288572832942009,0.0241302140057087,-0.999398827552795,-0.0130514772608876,-0.0321192517876625,-0.743544161319733,-0.666865944862366,-0.0493133068084717,-0.0336957946419716,-0.0382112637162209,0.998701453208923,-0.999292194843292,-0.0288572832942009,0.0241302140057087,-0.0117236087098718,-0.85811173915863,0.513329207897186,0.0286217257380486,0.99958336353302,-0.00371666764840484,0.999564647674561,-0.0039222645573318,0.0292410384863615,0.999135911464691,-0.0132546704262495,-0.0393902957439423,-0.999467670917511,-0.00309347151778638,-0.0324779860675335,-0.0181283038109541,0.0768609568476677,-0.996877014636993,-0.0206937547773123,-0.0245207082480192,-0.99948513507843,-0.998333215713501,-0.0493998974561691,-0.0298396553844213,-0.0387996807694435,0.017779627814889,0.999088764190674,0.108481802046299,-0.0019855760037899,0.994096398353577,-0.00319638196378946,0.999813854694366,0.0190273094922304,0.999564647674561,-0.0039222645573318,0.0292410384863615,0.0286217257380486,0.99958336353302,-0.00371666764840484,0.0299751758575439,0.999549388885498,-0.00154035247396678,0.00780662754550576,0.999286532402039,0.0369495898485184,-0.00319638196378946,0.999813854694366,0.0190273094922304,0.108481802046299,-0.0019855760037899,0.994096398353577,-0.0387996807694435,0.017779627814889,0.999088764190674,-0.99965626001358,0.0125935059040785,0.0229932405054569,
- -0.997261822223663,-0.0663724020123482,0.0326104015111923,-0.0281820595264435,-0.0171250142157078,0.999456167221069,-0.0387996807694435,0.017779627814889,0.999088764190674,-0.00319638196378946,0.999813854694366,0.0190273094922304,-0.99965626001358,0.0125935059040785,0.0229932405054569,0.00780662754550576,0.999286532402039,0.0369495898485184,0.999564647674561,-0.0039222645573318,0.0292410384863615,0.0299751758575439,0.999549388885498,-0.00154035247396678,0.108481802046299,-0.0019855760037899,0.994096398353577,0.999564647674561,-0.0039222645573318,0.0292410384863615,0.00780662754550576,0.999286532402039,0.0369495898485184,-0.00319638196378946,0.999813854694366,0.0190273094922304,-0.0217330493032932,0.999639868736267,-0.0157376267015934,-0.99965626001358,0.0125935059040785,0.0229932405054569,-0.999467670917511,-0.00309347151778638,-0.0324779860675335,-0.998333215713501,-0.0493998974561691,-0.0298396553844213,-0.997261822223663,-0.0663724020123482,0.0326104015111923,-0.99965626001358,0.0125935059040785,0.0229932405054569,0.108481802046299,-0.0019855760037899,0.994096398353577,-0.0387996807694435,0.017779627814889,0.999088764190674,-0.0281820595264435,-0.0171250142157078,0.999456167221069,0.0844966098666191,-0.0408280715346336,0.995586931705475,0.0692040324211121,-0.0191462785005569,-0.997418820858002,-0.0206937547773123,-0.0245207082480192,-0.99948513507843,-0.0181283038109541,0.0768609568476677,-0.996877014636993,0.0505628697574139,0.0392244309186935,-0.997950255870819,0.108481802046299,-0.0019855760037899,0.994096398353577,0.0844966098666191,-0.0408280715346336,0.995586931705475,0.998808860778809,-0.0379031151533127,0.0307284407317638,0.999564647674561,-0.0039222645573318,0.0292410384863615,-0.99965626001358,0.0125935059040785,0.0229932405054569,-0.0217330493032932,0.999639868736267,-0.0157376267015934,-0.999467670917511,-0.00309347151778638,-0.0324779860675335,0.998808860778809,-0.0379031151533127,0.0307284407317638,0.998298346996307,-0.0517910234630108,-0.0267988108098507,0.999135911464691,-0.0132546704262495,-0.0393902957439423,
- 0.999564647674561,-0.0039222645573318,0.0292410384863615,0.914949774742126,-0.391616493463516,-0.0974863544106483,0.125996991991997,-0.0307061895728111,-0.991555333137512,0.998298346996307,-0.0517910234630108,-0.0267988108098507,0.0844966098666191,-0.0408280715346336,0.995586931705475,-0.0281820595264435,-0.0171250142157078,0.999456167221069,0.0225296951830387,0.0988157987594604,0.994850695133209,0.0821835398674011,0.306035935878754,0.948466062545776,-0.998333215713501,-0.0493998974561691,-0.0298396553844213,-0.0206937547773123,-0.0245207082480192,-0.99948513507843,0.00041796060395427,-0.19180029630661,-0.981433868408203,-0.709696769714355,-0.704277396202087,-0.0179962515830994,0.998808860778809,-0.0379031151533127,0.0307284407317638,0.0844966098666191,-0.0408280715346336,0.995586931705475,0.0821835398674011,0.306035935878754,0.948466062545776,0.962565243244171,0.26983654499054,0.0256170015782118,0.998808860778809,-0.0379031151533127,0.0307284407317638,0.0821835398674011,0.306035935878754,0.948466062545776,0.999135911464691,-0.0132546704262495,-0.0393902957439423,0.998298346996307,-0.0517910234630108,-0.0267988108098507,0.0692040324211121,-0.0191462785005569,-0.997418820858002,0.0505628697574139,0.0392244309186935,-0.997950255870819,0.998298346996307,-0.0517910234630108,-0.0267988108098507,0.962565243244171,0.26983654499054,0.0256170015782118,0.914949774742126,-0.391616493463516,-0.0974863544106483,-0.0206937547773123,-0.0245207082480192,-0.99948513507843,0.0692040324211121,-0.0191462785005569,-0.997418820858002,0.125996991991997,-0.0307061895728111,-0.991555333137512,0.00041796060395427,-0.19180029630661,-0.981433868408203,0.998298346996307,-0.0517910234630108,-0.0267988108098507,0.998808860778809,-0.0379031151533127,0.0307284407317638,0.962565243244171,0.26983654499054,0.0256170015782118,-0.709696769714355,-0.704277396202087,-0.0179962515830994,-0.751263082027435,-0.660002708435059,0.000459754810435697,-0.997261822223663,-0.0663724020123482,0.0326104015111923,-0.998333215713501,-0.0493998974561691,-0.0298396553844213,
- -0.0281820595264435,-0.0171250142157078,0.999456167221069,-0.997261822223663,-0.0663724020123482,0.0326104015111923,0.0225296951830387,0.0988157987594604,0.994850695133209,-0.00319638196378946,0.999813854694366,0.0190273094922304,0.00780662754550576,0.999286532402039,0.0369495898485184,0.0299751758575439,0.999549388885498,-0.00154035247396678,0.0286217257380486,0.99958336353302,-0.00371666764840484,0.00554717890918255,0.999748170375824,-0.0217424388974905,-0.0217330493032932,0.999639868736267,-0.0157376267015934,0.999135911464691,-0.0132546704262495,-0.0393902957439423,0.0505628697574139,0.0392244309186935,-0.997950255870819,0.00554717890918255,0.999748170375824,-0.0217424388974905,0.0286217257380486,0.99958336353302,-0.00371666764840484,-0.0217330493032932,0.999639868736267,-0.0157376267015934,-0.0181283038109541,0.0768609568476677,-0.996877014636993,-0.999467670917511,-0.00309347151778638,-0.0324779860675335,-0.0217330493032932,0.999639868736267,-0.0157376267015934,0.00554717890918255,0.999748170375824,-0.0217424388974905,0.0505628697574139,0.0392244309186935,-0.997950255870819,-0.0181283038109541,0.0768609568476677,-0.996877014636993,-0.99956226348877,0.00683916173875332,-0.0287828482687473,-0.709696769714355,-0.704277396202087,-0.0179962515830994,0.00041796060395427,-0.19180029630661,-0.981433868408203,-0.999903559684753,-0.00229655206203461,0.0136978384107351,-0.999280095100403,0.00164797191973776,-0.0379032716155052,-0.916075348854065,0.398326486349106,0.046280674636364,-0.919759392738342,0.392256110906601,0.0133318575099111,-0.998328566551209,-0.0485448203980923,0.0313600525259972,-0.998492300510406,-0.04640718922019,-0.029316745698452,0.00447223475202918,0.00712098414078355,0.999964594841003,-0.0436730682849884,-0.0264421943575144,0.998695850372314,-0.998328566551209,-0.0485448203980923,0.0313600525259972,-0.919759392738342,0.392256110906601,0.0133318575099111,0.086199589073658,-0.0287922285497189,0.995861768722534,-0.0436730682849884,-0.0264421943575144,0.998695850372314,0.00447223475202918,0.00712098414078355,0.999964594841003,
- 0.999792397022247,0.0202873088419437,-0.0018689944408834,0.975840389728546,0.216918587684631,-0.0261132400482893,0.999256312847137,0.0137645034119487,0.0360203012824059,-0.0666890367865562,-0.000190645703696646,-0.997773826122284,0.0418732464313507,0.00284017086960375,-0.999118864536285,0.037402082234621,-0.00880149751901627,-0.999261498451233,-0.00278224982321262,-0.036657627671957,-0.999324023723602,-0.0690263733267784,-0.0180544313043356,-0.997451484203339,0.91432398557663,0.402687877416611,-0.043060090392828,0.99869179725647,-0.051061112433672,-0.00271384697407484,0.998309075832367,-0.0450579151511192,0.0367238521575928,0.998298346996307,-0.0517910234630108,-0.0267988108098507,0.125996991991997,-0.0307061895728111,-0.991555333137512,0.0692040324211121,-0.0191462785005569,-0.997418820858002,-0.918074131011963,-0.396214455366135,-0.0124110858887434,-0.998935997486115,0.0350968092679977,-0.0299163777381182,-0.909198224544525,0.415230482816696,0.030694218352437,-0.841433823108673,-0.529244661331177,0.109038323163986,-0.998935997486115,0.0350968092679977,-0.0299163777381182,-0.0269513800740242,0.00933423731476069,-0.999593138694763,-0.0222403332591057,-0.0357412062585354,-0.9991135597229,-0.999398827552795,-0.0130514772608876,-0.0321192517876625,-0.999280095100403,0.00164797191973776,-0.0379032716155052,-0.617522895336151,0.786487817764282,-0.0101208044216037,-0.916075348854065,0.398326486349106,0.046280674636364,-0.112084068357944,0.538161396980286,-0.835355937480927,-0.617522895336151,0.786487817764282,-0.0101208044216037,-0.999280095100403,0.00164797191973776,-0.0379032716155052,-0.0690263733267784,-0.0180544313043356,-0.997451484203339,-0.112084068357944,0.538161396980286,-0.835355937480927,-0.999280095100403,0.00164797191973776,-0.0379032716155052,0.998694062232971,-0.0376714095473289,0.0345087200403214,0.99879252910614,-0.0374117270112038,-0.0318393744528294,0.999217212200165,-0.0198559369891882,-0.034214586019516,0.999457776546478,0.007520392537117,0.0320571139454842,-0.0214034039527178,-0.0244845356792212,0.999471068382263,
- -0.0247910767793655,0.0864307284355164,0.995949387550354,0.0261864941567183,-0.243033111095428,0.969664514064789,-0.0247910767793655,0.0864307284355164,0.995949387550354,-0.0351645536720753,0.0144430417567492,0.999277174472809,0.0261864941567183,-0.243033111095428,0.969664514064789,-0.0202547181397676,0.0409162379801273,-0.998957276344299,-0.112084068357944,0.538161396980286,-0.835355937480927,0.0606528855860233,0.126899495720863,-0.990059554576874,0.037402082234621,-0.00880149751901627,-0.999261498451233,0.0418732464313507,0.00284017086960375,-0.999118864536285,0.999792397022247,0.0202873088419437,-0.0018689944408834,0.999775052070618,-0.0163375176489353,-0.013520204462111,-0.00278224982321262,-0.036657627671957,-0.999324023723602,0.037402082234621,-0.00880149751901627,-0.999261498451233,0.999775052070618,-0.0163375176489353,-0.013520204462111,0.0357886180281639,-0.00553912902250886,-0.999343991279602,0.0561187565326691,0.010897665284574,-0.998364746570587,0.999788105487823,0.00385883892886341,-0.0202219989150763,0.999917507171631,-0.00868400000035763,-0.00946053303778172,0.999788105487823,0.00385883892886341,-0.0202219989150763,0.0561187565326691,0.010897665284574,-0.998364746570587,0.0580650344491005,0.04944783821702,-0.997087419033051,0.99900883436203,0.0420539863407612,-0.0145949199795723,0.0268312469124794,-0.03433608263731,0.999050140380859,-0.0336957946419716,-0.0382112637162209,0.998701453208923,-0.0117236087098718,-0.85811173915863,0.513329207897186,0.00367062794975936,-0.85565447807312,0.517534494400024,-0.751263082027435,-0.660002708435059,0.000459754810435697,-0.999488532543182,0.0068895067088306,0.0312304645776749,0.0225296951830387,0.0988157987594604,0.994850695133209,-0.997261822223663,-0.0663724020123482,0.0326104015111923,-0.751263082027435,-0.660002708435059,0.000459754810435697,0.0225296951830387,0.0988157987594604,0.994850695133209,-0.99953556060791,0.0150183606892824,0.0265172552317381,-0.909198224544525,0.415230482816696,0.030694218352437,-0.998935997486115,0.0350968092679977,-0.0299163777381182,
- -0.99953556060791,0.0150183606892824,0.0265172552317381,-0.141009494662285,0.0723525881767273,0.987360835075378,-0.841433823108673,-0.529244661331177,0.109038323163986,-0.946875512599945,0.321321219205856,-0.0133933369070292,-0.953147709369659,0.302206575870514,-0.0134411407634616,-0.955627977848053,0.293182790279388,0.0286175608634949,-0.94670969247818,0.320672154426575,0.030168766155839,-0.536681532859802,0.84326308965683,0.0296693947166204,-0.0574444979429245,0.0346039533615112,0.997748851776123,-0.0193427447229624,0.0593790523707867,0.99804812669754,-0.452254295349121,0.891464352607727,0.027518592774868,-0.0298155471682549,-0.999234318733215,0.0253336299210787,-0.998612582683563,-0.0358639843761921,0.0385584533214569,-0.999553024768829,-0.0295265112072229,-0.00468143913894892,-0.0385598875582218,-0.999069631099701,-0.0193111076951027,0.772012293338776,-0.634932279586792,-0.0292939580976963,0.99973338842392,-0.020993459969759,0.00961653795093298,0.999111711978912,-0.0213875044137239,-0.0363091602921486,0.155934721231461,0.987621009349823,-0.0170009974390268,-0.45492947101593,0.890137076377869,-0.0263660065829754,-0.452254295349121,0.891464352607727,0.027518592774868,0.195430904626846,0.980628788471222,0.0131911216303706,0.537269473075867,-0.84318995475769,-0.0192948300391436,-0.632729232311249,-0.77260160446167,-0.0523505844175816,-0.293201774358749,-0.955400109291077,0.0352622605860233,-0.0359203182160854,0.0370813608169556,0.99866646528244,-0.0572874210774899,0.0124915707856417,0.998279571533203,0.0300625283271074,-0.0157447569072247,0.999423980712891,0.0289044212549925,0.00522696413099766,0.999568581581116,0.537680387496948,-0.842955708503723,0.0180361978709698,0.515470027923584,-0.856755554676056,0.0161440446972847,0.516050040721893,-0.856307744979858,-0.0207199789583683,0.5270676612854,-0.849256694316864,-0.0310290772467852,0.537269473075867,-0.84318995475769,-0.0192948300391436,0.890334188938141,-0.454541325569153,-0.0264030136168003,0.516050040721893,-0.856307744979858,-0.0207199789583683,0.515470027923584,-0.856755554676056,0.0161440446972847,
- 0.0477832779288292,-0.012093092314899,0.99878454208374,-0.00729201687499881,0.0295996312052011,0.999535202980042,-0.0411293990910053,0.00295754265971482,0.999149441719055,0.0177144724875689,-0.0419225879013538,0.998963832855225,0.971143066883087,-0.233071863651276,0.0505831800401211,0.958419561386108,-0.284044831991196,-0.0273931305855513,0.886674046516418,0.462311923503876,-0.00876844488084316,0.939987301826477,0.339273124933243,0.0362994931638241,0.772012293338776,-0.634932279586792,-0.0292939580976963,0.937824666500092,-0.345705419778824,-0.0311892107129097,0.93321818113327,-0.356675922870636,0.0434301011264324,0.0570702664554119,-0.251348286867142,-0.966212749481201,0.0225580576807261,0.0683732181787491,-0.997404754161835,0.0552659891545773,-0.00527420686557889,-0.998457729816437,-0.0203258134424686,-0.0187944639474154,-0.999616742134094,0.772915244102478,-0.633861422538757,-0.0286627057939768,0.776424944400787,-0.630041241645813,-0.0145748043432832,0.537680387496948,-0.842955708503723,0.0180361978709698,0.0491653196513653,-0.0451161153614521,0.997771203517914,0.0124147012829781,-0.0754778236150742,0.99707019329071,0.515470027923584,-0.856755554676056,0.0161440446972847,0.886674046516418,0.462311923503876,-0.00876844488084316,0.0809178948402405,0.039104200899601,-0.995953500270844,0.222330555319786,0.193109974265099,-0.955655634403229,-0.0544161759316921,-0.0888422504067421,-0.994558215141296,-0.0620582140982151,0.0563736706972122,-0.996479213237762,-0.358891099691391,-0.264860898256302,-0.89501166343689,0.93321818113327,-0.356675922870636,0.0434301011264324,0.0300625283271074,-0.0157447569072247,0.999423980712891,0.0110814701765776,-0.0724056363105774,0.997313678264618,0.0549254417419434,0.0119802858680487,-0.998418569564819,-0.0323612280189991,0.0105774682015181,-0.99942022562027,0.0225580576807261,0.0683732181787491,-0.997404754161835,0.0570702664554119,-0.251348286867142,-0.966212749481201,0.0187440309673548,-0.998911559581757,-0.0427115485072136,0.0647660046815872,-0.997507810592651,-0.0279912240803242,0.0509771071374416,-0.998440444469452,0.0227593220770359,
- 0.0150486109778285,-0.0311747565865517,-0.999400675296783,-0.0544161759316921,-0.0888422504067421,-0.994558215141296,-0.0344975925981998,0.0355103276669979,-0.998773694038391,-0.0265454277396202,0.0239893086254597,-0.999359667301178,-0.953147709369659,0.302206575870514,-0.0134411407634616,-0.946875512599945,0.321321219205856,-0.0133933369070292,-0.0155787719413638,0.058481365442276,-0.998166918754578,0.0552659891545773,-0.00527420686557889,-0.998457729816437,0.0225580576807261,0.0683732181787491,-0.997404754161835,-0.0265454277396202,0.0239893086254597,-0.999359667301178,0.0177144724875689,-0.0419225879013538,0.998963832855225,-0.0411293990910053,0.00295754265971482,0.999149441719055,-0.0638878792524338,-0.157219246029854,0.985494911670685,0.0289044212549925,0.00522696413099766,0.999568581581116,0.939987301826477,0.339273124933243,0.0362994931638241,-0.0638878792524338,-0.157219246029854,0.985494911670685,-0.0298155471682549,-0.999234318733215,0.0253336299210787,-0.0385598875582218,-0.999069631099701,-0.0193111076951027,0.0187440309673548,-0.998911559581757,-0.0427115485072136,0.0509771071374416,-0.998440444469452,0.0227593220770359,-0.0475330278277397,0.0175549704581499,-0.998715400695801,0.0498475097119808,0.0160077996551991,-0.998628556728363,0.0187440309673548,-0.998911559581757,-0.0427115485072136,0.886674046516418,0.462311923503876,-0.00876844488084316,0.780406296253204,-0.624665200710297,0.0275591928511858,0.939987301826477,0.339273124933243,0.0362994931638241,-0.0638878792524338,-0.157219246029854,0.985494911670685,0.939987301826477,0.339273124933243,0.0362994931638241,0.0177144724875689,-0.0419225879013538,0.998963832855225,-0.955627977848053,0.293182790279388,0.0286175608634949,-0.0572874210774899,0.0124915707856417,0.998279571533203,-0.0359203182160854,0.0370813608169556,0.99866646528244,-0.94670969247818,0.320672154426575,0.030168766155839,-0.955627977848053,0.293182790279388,0.0286175608634949,-0.774971544742584,0.631823182106018,-0.0147870825603604,-0.885448038578033,0.447120666503906,0.126747518777847,
- -0.779233753681183,0.626596331596375,0.01310861017555,-0.779281616210938,0.625508368015289,-0.0382045768201351,-0.799387276172638,0.599738001823425,-0.0359753780066967,-0.802407145500183,0.596684992313385,0.010476435534656,-0.0419591479003429,0.00343970186077058,0.999113440513611,0.0335686691105366,0.00374781433492899,0.999429404735565,-0.132127434015274,0.134339570999146,0.982087194919586,-0.0193427447229624,0.0593790523707867,0.99804812669754,0.179836541414261,0.0775620117783546,0.980634033679962,-0.452254295349121,0.891464352607727,0.027518592774868,-0.994086503982544,-0.100766189396381,0.0404747873544693,-0.0359203182160854,0.0370813608169556,0.99866646528244,-0.0550394393503666,-0.0499714277684689,0.997232913970947,0.99973338842392,-0.020993459969759,0.00961653795093298,0.772012293338776,-0.634932279586792,-0.0292939580976963,0.748855173587799,-0.662367522716522,0.0220263674855232,0.0110814701765776,-0.0724056363105774,0.997313678264618,-0.132127434015274,0.134339570999146,0.982087194919586,0.0335686691105366,0.00374781433492899,0.999429404735565,-0.994086503982544,-0.100766189396381,0.0404747873544693,-0.0411293990910053,0.00295754265971482,0.999149441719055,-0.802407145500183,0.596684992313385,0.010476435534656,-0.0419591479003429,0.00343970186077058,0.999113440513611,-0.997713267803192,0.0638057813048363,0.022294607013464,-0.999534904956818,0.022330904379487,0.0207690037786961,-0.0372304767370224,-0.0354905910789967,0.998676300048828,-0.0419591479003429,0.00343970186077058,0.999113440513611,-0.132127434015274,0.134339570999146,0.982087194919586,-0.997713267803192,0.0638057813048363,0.022294607013464,-0.132127434015274,0.134339570999146,0.982087194919586,-0.955627977848053,0.293182790279388,0.0286175608634949,-0.885448038578033,0.447120666503906,0.126747518777847,0.0698781535029411,-0.00303710135631263,0.997550904750824,0.0491653196513653,-0.0451161153614521,0.997771203517914,0.537680387496948,-0.842955708503723,0.0180361978709698,0.748855173587799,-0.662367522716522,0.0220263674855232,0.772012293338776,-0.634932279586792,-0.0292939580976963,
- 0.93321818113327,-0.356675922870636,0.0434301011264324,0.222330555319786,0.193109974265099,-0.955655634403229,0.0809178948402405,0.039104200899601,-0.995953500270844,-0.0155787719413638,0.058481365442276,-0.998166918754578,0.0225580576807261,0.0683732181787491,-0.997404754161835,-0.953147709369659,0.302206575870514,-0.0134411407634616,-0.0265454277396202,0.0239893086254597,-0.999359667301178,0.0225580576807261,0.0683732181787491,-0.997404754161835,-0.0323612280189991,0.0105774682015181,-0.99942022562027,-0.993687510490417,0.107522636651993,-0.0320007652044296,-0.774971544742584,0.631823182106018,-0.0147870825603604,-0.358891099691391,-0.264860898256302,-0.89501166343689,-0.0620582140982151,0.0563736706972122,-0.996479213237762,-0.779281616210938,0.625508368015289,-0.0382045768201351,-0.358891099691391,-0.264860898256302,-0.89501166343689,-0.0344975925981998,0.0355103276669979,-0.998773694038391,-0.0544161759316921,-0.0888422504067421,-0.994558215141296,-0.45492947101593,0.890137076377869,-0.0263660065829754,0.00188805966172367,0.0580613948404789,-0.998311281204224,-0.0344975925981998,0.0355103276669979,-0.998773694038391,-0.537395060062408,0.842851519584656,-0.0284236390143633,0.065540574491024,-0.0221390854567289,0.997604370117188,-0.0298155471682549,-0.999234318733215,0.0253336299210787,0.0509771071374416,-0.998440444469452,0.0227593220770359,-0.774971544742584,0.631823182106018,-0.0147870825603604,-0.953147709369659,0.302206575870514,-0.0134411407634616,0.0225580576807261,0.0683732181787491,-0.997404754161835,-0.955627977848053,0.293182790279388,0.0286175608634949,-0.953147709369659,0.302206575870514,-0.0134411407634616,-0.774971544742584,0.631823182106018,-0.0147870825603604,-0.0203258134424686,-0.0187944639474154,-0.999616742134094,0.776424944400787,-0.630041241645813,-0.0145748043432832,0.886674046516418,0.462311923503876,-0.00876844488084316,0.355290085077286,0.228526398539543,0.906390964984894,0.0477832779288292,-0.012093092314899,0.99878454208374,0.912618458271027,-0.408624857664108,0.0123777389526367,0.93321818113327,-0.356675922870636,0.0434301011264324,
- 0.0110814701765776,-0.0724056363105774,0.997313678264618,0.748855173587799,-0.662367522716522,0.0220263674855232,0.0110814701765776,-0.0724056363105774,0.997313678264618,0.99973338842392,-0.020993459969759,0.00961653795093298,0.748855173587799,-0.662367522716522,0.0220263674855232,0.886674046516418,0.462311923503876,-0.00876844488084316,0.222330555319786,0.193109974265099,-0.955655634403229,-0.0203258134424686,-0.0187944639474154,-0.999616742134094,0.0150486109778285,-0.0311747565865517,-0.999400675296783,-0.0344975925981998,0.0355103276669979,-0.998773694038391,0.00188805966172367,0.0580613948404789,-0.998311281204224,0.0663572251796722,-0.0164387710392475,-0.997660458087921,0.0326454043388367,-0.0349851660430431,-0.998854458332062,0.0335686691105366,0.00374781433492899,0.999429404735565,0.99973338842392,-0.020993459969759,0.00961653795093298,0.0110814701765776,-0.0724056363105774,0.997313678264618,0.537680387496948,-0.842955708503723,0.0180361978709698,-0.293201774358749,-0.955400109291077,0.0352622605860233,0.0698781535029411,-0.00303710135631263,0.997550904750824,0.537269473075867,-0.84318995475769,-0.0192948300391436,-0.293201774358749,-0.955400109291077,0.0352622605860233,0.537680387496948,-0.842955708503723,0.0180361978709698,-0.0620582140982151,0.0563736706972122,-0.996479213237762,-0.0808357745409012,0.0410613715648651,-0.995881319046021,-0.799387276172638,0.599738001823425,-0.0359753780066967,-0.779281616210938,0.625508368015289,-0.0382045768201351,0.515470027923584,-0.856755554676056,0.0161440446972847,0.0124147012829781,-0.0754778236150742,0.99707019329071,0.355290085077286,0.228526398539543,0.906390964984894,0.912618458271027,-0.408624857664108,0.0123777389526367,0.912618458271027,-0.408624857664108,0.0123777389526367,0.890334188938141,-0.454541325569153,-0.0264030136168003,0.515470027923584,-0.856755554676056,0.0161440446972847,0.971143066883087,-0.233071863651276,0.0505831800401211,0.939987301826477,0.339273124933243,0.0362994931638241,0.0289044212549925,0.00522696413099766,0.999568581581116,0.772012293338776,-0.634932279586792,-0.0292939580976963,
- 0.0570702664554119,-0.251348286867142,-0.966212749481201,0.937824666500092,-0.345705419778824,-0.0311892107129097,0.998735427856445,0.0266561638563871,-0.0426254980266094,0.067929819226265,0.0720811262726784,-0.995082855224609,0.0342393890023232,0.091024748980999,-0.995259821414948,0.998959541320801,0.0382819958031178,-0.024785490706563,-0.0572874210774899,0.0124915707856417,0.998279571533203,-0.955627977848053,0.293182790279388,0.0286175608634949,-0.132127434015274,0.134339570999146,0.982087194919586,0.958419561386108,-0.284044831991196,-0.0273931305855513,0.937824666500092,-0.345705419778824,-0.0311892107129097,0.0552659891545773,-0.00527420686557889,-0.998457729816437,0.0809178948402405,0.039104200899601,-0.995953500270844,0.937824666500092,-0.345705419778824,-0.0311892107129097,0.0570702664554119,-0.251348286867142,-0.966212749481201,0.0552659891545773,-0.00527420686557889,-0.998457729816437,0.0300625283271074,-0.0157447569072247,0.999423980712891,-0.132127434015274,0.134339570999146,0.982087194919586,0.0110814701765776,-0.0724056363105774,0.997313678264618,-0.0572874210774899,0.0124915707856417,0.998279571533203,-0.132127434015274,0.134339570999146,0.982087194919586,0.0300625283271074,-0.0157447569072247,0.999423980712891,0.0498475097119808,0.0160077996551991,-0.998628556728363,0.0647660046815872,-0.997507810592651,-0.0279912240803242,0.0187440309673548,-0.998911559581757,-0.0427115485072136,0.0647660046815872,-0.997507810592651,-0.0279912240803242,0.999714314937592,0.000718362047336996,-0.0238929949700832,0.896200060844421,-0.443435460329056,-0.0138012580573559,0.0477832779288292,-0.012093092314899,0.99878454208374,0.79608154296875,-0.60466480255127,0.0251930151134729,0.912618458271027,-0.408624857664108,0.0123777389526367,-0.87617427110672,0.481773346662521,-0.014596882276237,-0.850352227687836,0.526081502437592,0.0118039166554809,-0.537395060062408,0.842851519584656,-0.0284236390143633,0.0498475097119808,0.0160077996551991,-0.998628556728363,0.999714314937592,0.000718362047336996,-0.0238929949700832,0.0647660046815872,-0.997507810592651,-0.0279912240803242,
- -0.0359203182160854,0.0370813608169556,0.99866646528244,-0.994086503982544,-0.100766189396381,0.0404747873544693,-0.94670969247818,0.320672154426575,0.030168766155839,-0.94670969247818,0.320672154426575,0.030168766155839,-0.994086503982544,-0.100766189396381,0.0404747873544693,-0.946875512599945,0.321321219205856,-0.0133933369070292,0.800753116607666,-0.598734021186829,-0.017664959654212,-0.0544161759316921,-0.0888422504067421,-0.994558215141296,0.890334188938141,-0.454541325569153,-0.0264030136168003,-0.0203258134424686,-0.0187944639474154,-0.999616742134094,0.222330555319786,0.193109974265099,-0.955655634403229,-0.0808357745409012,0.0410613715648651,-0.995881319046021,0.0187440309673548,-0.998911559581757,-0.0427115485072136,-0.0385598875582218,-0.999069631099701,-0.0193111076951027,-0.0475330278277397,0.0175549704581499,-0.998715400695801,-0.0155787719413638,0.058481365442276,-0.998166918754578,-0.946875512599945,0.321321219205856,-0.0133933369070292,-0.998911261558533,0.0448830351233482,-0.0127184931188822,-0.0685284584760666,0.12252202630043,-0.990097045898438,-0.0411293990910053,0.00295754265971482,0.999149441719055,-0.994086503982544,-0.100766189396381,0.0404747873544693,-0.0550394393503666,-0.0499714277684689,0.997232913970947,-0.0385598875582218,-0.999069631099701,-0.0193111076951027,-0.999553024768829,-0.0295265112072229,-0.00468143913894892,-0.0475330278277397,0.0175549704581499,-0.998715400695801,0.065540574491024,-0.0221390854567289,0.997604370117188,0.0509771071374416,-0.998440444469452,0.0227593220770359,0.999630510807037,-0.0157855078577995,0.0221281386911869,-0.994086503982544,-0.100766189396381,0.0404747873544693,-0.998911261558533,0.0448830351233482,-0.0127184931188822,-0.946875512599945,0.321321219205856,-0.0133933369070292,0.0509771071374416,-0.998440444469452,0.0227593220770359,0.0647660046815872,-0.997507810592651,-0.0279912240803242,0.896200060844421,-0.443435460329056,-0.0138012580573559,0.0509771071374416,-0.998440444469452,0.0227593220770359,0.896200060844421,-0.443435460329056,-0.0138012580573559,
- 0.999630510807037,-0.0157855078577995,0.0221281386911869,-0.00729201687499881,0.0295996312052011,0.999535202980042,-0.850352227687836,0.526081502437592,0.0118039166554809,-0.779233753681183,0.626596331596375,0.01310861017555,-0.0638878792524338,-0.157219246029854,0.985494911670685,-0.0359203182160854,0.0370813608169556,0.99866646528244,0.0289044212549925,0.00522696413099766,0.999568581581116,0.0177144724875689,-0.0419225879013538,0.998963832855225,0.939987301826477,0.339273124933243,0.0362994931638241,0.780406296253204,-0.624665200710297,0.0275591928511858,0.780406296253204,-0.624665200710297,0.0275591928511858,0.79608154296875,-0.60466480255127,0.0251930151134729,0.0477832779288292,-0.012093092314899,0.99878454208374,0.0177144724875689,-0.0419225879013538,0.998963832855225,-0.00729201687499881,0.0295996312052011,0.999535202980042,-0.0171623378992081,0.0441843383014202,0.998875975608826,-0.850352227687836,0.526081502437592,0.0118039166554809,0.0124147012829781,-0.0754778236150742,0.99707019329071,0.0491653196513653,-0.0451161153614521,0.997771203517914,-0.0193427447229624,0.0593790523707867,0.99804812669754,-0.0574444979429245,0.0346039533615112,0.997748851776123,0.0698781535029411,-0.00303710135631263,0.997550904750824,0.179836541414261,0.0775620117783546,0.980634033679962,-0.0193427447229624,0.0593790523707867,0.99804812669754,0.0491653196513653,-0.0451161153614521,0.997771203517914,0.0871841907501221,0.0699168145656586,-0.993735671043396,-0.22139273583889,-0.172035247087479,-0.959890186786652,0.0663572251796722,-0.0164387710392475,-0.997660458087921,0.00188805966172367,0.0580613948404789,-0.998311281204224,-0.632729232311249,-0.77260160446167,-0.0523505844175816,0.537269473075867,-0.84318995475769,-0.0192948300391436,0.0663572251796722,-0.0164387710392475,-0.997660458087921,-0.22139273583889,-0.172035247087479,-0.959890186786652,0.890334188938141,-0.454541325569153,-0.0264030136168003,0.0150486109778285,-0.0311747565865517,-0.999400675296783,0.516050040721893,-0.856307744979858,-0.0207199789583683,0.020693976432085,-0.0177477095276117,-0.999628305435181,
- -0.0620582140982151,0.0563736706972122,-0.996479213237762,-0.0544161759316921,-0.0888422504067421,-0.994558215141296,0.222330555319786,0.193109974265099,-0.955655634403229,-0.0685284584760666,0.12252202630043,-0.990097045898438,-0.0808357745409012,0.0410613715648651,-0.995881319046021,-0.87617427110672,0.481773346662521,-0.014596882276237,-0.537395060062408,0.842851519584656,-0.0284236390143633,-0.0344975925981998,0.0355103276669979,-0.998773694038391,-0.87617427110672,0.481773346662521,-0.014596882276237,-0.0344975925981998,0.0355103276669979,-0.998773694038391,-0.358891099691391,-0.264860898256302,-0.89501166343689,-0.358891099691391,-0.264860898256302,-0.89501166343689,-0.779281616210938,0.625508368015289,-0.0382045768201351,-0.87617427110672,0.481773346662521,-0.014596882276237,0.065540574491024,-0.0221390854567289,0.997604370117188,-0.0475712567567825,-0.0188516732305288,0.998689949512482,-0.0298155471682549,-0.999234318733215,0.0253336299210787,-0.998612582683563,-0.0358639843761921,0.0385584533214569,-0.0298155471682549,-0.999234318733215,0.0253336299210787,-0.0475712567567825,-0.0188516732305288,0.998689949512482,-0.0544161759316921,-0.0888422504067421,-0.994558215141296,0.0150486109778285,-0.0311747565865517,-0.999400675296783,0.890334188938141,-0.454541325569153,-0.0264030136168003,0.800753116607666,-0.598734021186829,-0.017664959654212,0.020693976432085,-0.0177477095276117,-0.999628305435181,-0.0544161759316921,-0.0888422504067421,-0.994558215141296,0.776424944400787,-0.630041241645813,-0.0145748043432832,0.772915244102478,-0.633861422538757,-0.0286627057939768,0.800753116607666,-0.598734021186829,-0.017664959654212,0.79608154296875,-0.60466480255127,0.0251930151134729,0.780406296253204,-0.624665200710297,0.0275591928511858,-0.997713267803192,0.0638057813048363,0.022294607013464,-0.885448038578033,0.447120666503906,0.126747518777847,-0.779360711574554,0.625345051288605,0.0392496772110462,-0.0171623378992081,0.0441843383014202,0.998875975608826,0.355290085077286,0.228526398539543,0.906390964984894,0.0124147012829781,-0.0754778236150742,0.99707019329071,
- -0.00729201687499881,0.0295996312052011,0.999535202980042,0.355290085077286,0.228526398539543,0.906390964984894,-0.0171623378992081,0.0441843383014202,0.998875975608826,-0.00729201687499881,0.0295996312052011,0.999535202980042,0.0477832779288292,-0.012093092314899,0.99878454208374,0.355290085077286,0.228526398539543,0.906390964984894,-0.45492947101593,0.890137076377869,-0.0263660065829754,-0.537395060062408,0.842851519584656,-0.0284236390143633,-0.536681532859802,0.84326308965683,0.0296693947166204,-0.452254295349121,0.891464352607727,0.027518592774868,-0.779233753681183,0.626596331596375,0.01310861017555,-0.802407145500183,0.596684992313385,0.010476435534656,-0.0411293990910053,0.00295754265971482,0.999149441719055,-0.00729201687499881,0.0295996312052011,0.999535202980042,-0.0265454277396202,0.0239893086254597,-0.999359667301178,-0.0155787719413638,0.058481365442276,-0.998166918754578,0.0809178948402405,0.039104200899601,-0.995953500270844,0.0552659891545773,-0.00527420686557889,-0.998457729816437,0.0300625283271074,-0.0157447569072247,0.999423980712891,0.93321818113327,-0.356675922870636,0.0434301011264324,0.971143066883087,-0.233071863651276,0.0505831800401211,0.0289044212549925,0.00522696413099766,0.999568581581116,0.0335686691105366,0.00374781433492899,0.999429404735565,-0.0419591479003429,0.00343970186077058,0.999113440513611,-0.0372304767370224,-0.0354905910789967,0.998676300048828,0.0229754615575075,-0.0451933033764362,0.998713970184326,0.999714314937592,0.000718362047336996,-0.0238929949700832,0.999630510807037,-0.0157855078577995,0.0221281386911869,0.896200060844421,-0.443435460329056,-0.0138012580573559,0.0610181391239166,-0.0361631624400616,-0.997481346130371,0.0239857099950314,-0.038863155990839,-0.998956620693207,-0.0274812895804644,-0.0332637540996075,-0.999068737030029,-0.0323612280189991,0.0105774682015181,-0.99942022562027,0.0549254417419434,0.0119802858680487,-0.998418569564819,0.0335686691105366,0.00374781433492899,0.999429404735565,0.0229754615575075,-0.0451933033764362,0.998713970184326,0.999003171920776,-0.0411975421011448,0.0171928126364946,
- 0.99973338842392,-0.020993459969759,0.00961653795093298,0.999111711978912,-0.0213875044137239,-0.0363091602921486,0.0549254417419434,0.0119802858680487,-0.998418569564819,0.0570702664554119,-0.251348286867142,-0.966212749481201,0.772012293338776,-0.634932279586792,-0.0292939580976963,-0.997713267803192,0.0638057813048363,0.022294607013464,-0.993687510490417,0.107522636651993,-0.0320007652044296,-0.998771190643311,0.0364306420087814,-0.0335982367396355,-0.999534904956818,0.022330904379487,0.0207690037786961,-0.45492947101593,0.890137076377869,-0.0263660065829754,0.0871841907501221,0.0699168145656586,-0.993735671043396,0.00188805966172367,0.0580613948404789,-0.998311281204224,0.958419561386108,-0.284044831991196,-0.0273931305855513,0.0809178948402405,0.039104200899601,-0.995953500270844,0.886674046516418,0.462311923503876,-0.00876844488084316,0.79608154296875,-0.60466480255127,0.0251930151134729,0.890334188938141,-0.454541325569153,-0.0264030136168003,0.912618458271027,-0.408624857664108,0.0123777389526367,-0.87617427110672,0.481773346662521,-0.014596882276237,-0.779281616210938,0.625508368015289,-0.0382045768201351,-0.779233753681183,0.626596331596375,0.01310861017555,-0.850352227687836,0.526081502437592,0.0118039166554809,0.999003171920776,-0.0411975421011448,0.0171928126364946,0.997371792793274,-0.0484230890870094,-0.0538948997855186,0.999111711978912,-0.0213875044137239,-0.0363091602921486,0.99973338842392,-0.020993459969759,0.00961653795093298,0.889446020126343,-0.299357295036316,-0.345356404781342,0.335874021053314,-0.338014781475067,-0.879167020320892,0.0610181391239166,-0.0361631624400616,-0.997481346130371,0.997371792793274,-0.0484230890870094,-0.0538948997855186,-0.986265122890472,0.147932946681976,-0.073464035987854,0.014478606171906,-0.19586256146431,-0.98052442073822,-0.041392806917429,0.0646841675043106,-0.997046887874603,-0.999753594398499,0.0211238898336887,-0.00682435603812337,0.014478606171906,-0.19586256146431,-0.98052442073822,0.335874021053314,-0.338014781475067,-0.879167020320892,0.0342393890023232,0.091024748980999,-0.995259821414948,
- -0.041392806917429,0.0646841675043106,-0.997046887874603,0.889446020126343,-0.299357295036316,-0.345356404781342,0.934847950935364,-0.35500556230545,0.00550879491493106,0.998959541320801,0.0382819958031178,-0.024785490706563,0.0229754615575075,-0.0451933033764362,0.998713970184326,0.0201982278376818,-0.508759260177612,0.860671937465668,0.934847950935364,-0.35500556230545,0.00550879491493106,-0.998771190643311,0.0364306420087814,-0.0335982367396355,-0.0274812895804644,-0.0332637540996075,-0.999068737030029,0.014478606171906,-0.19586256146431,-0.98052442073822,-0.986265122890472,0.147932946681976,-0.073464035987854,0.335874021053314,-0.338014781475067,-0.879167020320892,0.0239857099950314,-0.038863155990839,-0.998956620693207,0.0610181391239166,-0.0361631624400616,-0.997481346130371,-0.0196847207844257,-0.477450966835022,0.87843781709671,-0.999534904956818,0.022330904379487,0.0207690037786961,-0.918051540851593,-0.394528090953827,0.0391007326543331,0.999003171920776,-0.0411975421011448,0.0171928126364946,0.0229754615575075,-0.0451933033764362,0.998713970184326,0.934847950935364,-0.35500556230545,0.00550879491493106,0.889446020126343,-0.299357295036316,-0.345356404781342,0.976581990718842,-0.2145856320858,-0.0155099779367447,0.999003171920776,-0.0411975421011448,0.0171928126364946,0.934847950935364,-0.35500556230545,0.00550879491493106,0.999111711978912,-0.0213875044137239,-0.0363091602921486,0.997371792793274,-0.0484230890870094,-0.0538948997855186,0.0610181391239166,-0.0361631624400616,-0.997481346130371,0.0549254417419434,0.0119802858680487,-0.998418569564819,0.998959541320801,0.0382819958031178,-0.024785490706563,0.0342393890023232,0.091024748980999,-0.995259821414948,0.335874021053314,-0.338014781475067,-0.879167020320892,0.889446020126343,-0.299357295036316,-0.345356404781342,-0.0475330278277397,0.0175549704581499,-0.998715400695801,-0.999553024768829,-0.0295265112072229,-0.00468143913894892,-0.999753594398499,0.0211238898336887,-0.00682435603812337,-0.041392806917429,0.0646841675043106,-0.997046887874603,0.0498475097119808,0.0160077996551991,-0.998628556728363,
- -0.0475330278277397,0.0175549704581499,-0.998715400695801,-0.041392806917429,0.0646841675043106,-0.997046887874603,0.0342393890023232,0.091024748980999,-0.995259821414948,0.067929819226265,0.0720811262726784,-0.995082855224609,0.065540574491024,-0.0221390854567289,0.997604370117188,0.999630510807037,-0.0157855078577995,0.0221281386911869,0.999617755413055,0.013570629991591,0.0240900181233883,0.0608114488422871,0.025445744395256,0.997824847698212,0.999630510807037,-0.0157855078577995,0.0221281386911869,0.999714314937592,0.000718362047336996,-0.0238929949700832,0.998735427856445,0.0266561638563871,-0.0426254980266094,0.998959541320801,0.0382819958031178,-0.024785490706563,0.999617755413055,0.013570629991591,0.0240900181233883,-0.999553024768829,-0.0295265112072229,-0.00468143913894892,-0.998612582683563,-0.0358639843761921,0.0385584533214569,-0.998915135860443,0.0132420528680086,0.0446437820792198,-0.999753594398499,0.0211238898336887,-0.00682435603812337,-0.998612582683563,-0.0358639843761921,0.0385584533214569,-0.0475712567567825,-0.0188516732305288,0.998689949512482,-0.0389658734202385,0.0231008678674698,0.998973369598389,-0.998915135860443,0.0132420528680086,0.0446437820792198,-0.0389658734202385,0.0231008678674698,0.998973369598389,0.0608114488422871,0.025445744395256,0.997824847698212,-0.0196847207844257,-0.477450966835022,0.87843781709671,-0.0196847207844257,-0.477450966835022,0.87843781709671,-0.918051540851593,-0.394528090953827,0.0391007326543331,-0.998915135860443,0.0132420528680086,0.0446437820792198,0.998735427856445,0.0266561638563871,-0.0426254980266094,0.999714314937592,0.000718362047336996,-0.0238929949700832,0.0498475097119808,0.0160077996551991,-0.998628556728363,0.067929819226265,0.0720811262726784,-0.995082855224609,0.997371792793274,-0.0484230890870094,-0.0538948997855186,0.976581990718842,-0.2145856320858,-0.0155099779367447,0.889446020126343,-0.299357295036316,-0.345356404781342,-0.0274812895804644,-0.0332637540996075,-0.999068737030029,0.0239857099950314,-0.038863155990839,-0.998956620693207,
- 0.335874021053314,-0.338014781475067,-0.879167020320892,0.014478606171906,-0.19586256146431,-0.98052442073822,0.997371792793274,-0.0484230890870094,-0.0538948997855186,0.999003171920776,-0.0411975421011448,0.0171928126364946,0.976581990718842,-0.2145856320858,-0.0155099779367447,-0.0196847207844257,-0.477450966835022,0.87843781709671,-0.998915135860443,0.0132420528680086,0.0446437820792198,-0.0389658734202385,0.0231008678674698,0.998973369598389,-0.999534904956818,0.022330904379487,0.0207690037786961,-0.986265122890472,0.147932946681976,-0.073464035987854,-0.918051540851593,-0.394528090953827,0.0391007326543331,0.934847950935364,-0.35500556230545,0.00550879491493106,0.0201982278376818,-0.508759260177612,0.860671937465668,0.0608114488422871,0.025445744395256,0.997824847698212,-0.0475712567567825,-0.0188516732305288,0.998689949512482,0.065540574491024,-0.0221390854567289,0.997604370117188,0.0608114488422871,0.025445744395256,0.997824847698212,-0.0389658734202385,0.0231008678674698,0.998973369598389,-0.999534904956818,0.022330904379487,0.0207690037786961,-0.998771190643311,0.0364306420087814,-0.0335982367396355,-0.986265122890472,0.147932946681976,-0.073464035987854,-0.986265122890472,0.147932946681976,-0.073464035987854,-0.999753594398499,0.0211238898336887,-0.00682435603812337,-0.998915135860443,0.0132420528680086,0.0446437820792198,-0.986265122890472,0.147932946681976,-0.073464035987854,-0.998915135860443,0.0132420528680086,0.0446437820792198,-0.918051540851593,-0.394528090953827,0.0391007326543331,-0.0372304767370224,-0.0354905910789967,0.998676300048828,-0.999534904956818,0.022330904379487,0.0207690037786961,-0.0196847207844257,-0.477450966835022,0.87843781709671,0.998959541320801,0.0382819958031178,-0.024785490706563,0.934847950935364,-0.35500556230545,0.00550879491493106,0.999617755413055,0.013570629991591,0.0240900181233883,0.999483108520508,-0.031451091170311,-0.00666071148589253,0.168567135930061,-0.985114574432373,0.0336803011596203,0.158273309469223,-0.986695885658264,-0.0371590703725815,-0.176367327570915,0.983939051628113,-0.0275402050465345,
- 0.0718593895435333,0.0267906170338392,-0.997054994106293,-0.0391439124941826,0.0189610440284014,-0.999053716659546,-0.190812408924103,0.981356739997864,-0.0230129398405552,0.00536721618846059,0.0660653337836266,0.997800886631012,0.0139223132282496,-0.0850653648376465,0.996278166770935,0.999818623065948,-0.00161276943981647,0.0189743619412184,0.168567135930061,-0.985114574432373,0.0336803011596203,0.999483108520508,-0.031451091170311,-0.00666071148589253,0.99942946434021,-0.0333386063575745,-0.00540712336078286,0.99956876039505,-0.0140877421945333,0.0257660038769245,0.999818623065948,-0.00161276943981647,0.0189743619412184,0.0139223132282496,-0.0850653648376465,0.996278166770935,0.00536721618846059,0.0660653337836266,0.997800886631012,-0.164525136351585,0.986174762248993,0.0197677128016949,-0.194561868906021,0.980444610118866,0.0295660085976124,-0.0312362760305405,0.039347518235445,0.998737335205078,0.00536721618846059,0.0660653337836266,0.997800886631012,0.999818623065948,-0.00161276943981647,0.0189743619412184,-0.164525136351585,0.986174762248993,0.0197677128016949,0.99956876039505,-0.0140877421945333,0.0257660038769245,0.168567135930061,-0.985114574432373,0.0336803011596203,0.99942946434021,-0.0333386063575745,-0.00540712336078286,0.0139223132282496,-0.0850653648376465,0.996278166770935,0.168567135930061,-0.985114574432373,0.0336803011596203,0.99956876039505,-0.0140877421945333,0.0257660038769245,0.999818623065948,-0.00161276943981647,0.0189743619412184,0.999642610549927,0.0200570896267891,-0.0176752042025328,-0.164525136351585,0.986174762248993,0.0197677128016949,-0.176367327570915,0.983939051628113,-0.0275402050465345,-0.190812408924103,0.981356739997864,-0.0230129398405552,-0.194561868906021,0.980444610118866,0.0295660085976124,-0.164525136351585,0.986174762248993,0.0197677128016949,0.0139223132282496,-0.0850653648376465,0.996278166770935,0.00536721618846059,0.0660653337836266,0.997800886631012,-0.0312362760305405,0.039347518235445,0.998737335205078,-0.00775422435253859,-0.0767948627471924,0.997016787528992,-0.00231881556101143,-0.0544532090425491,-0.998513638973236,
- -0.0391439124941826,0.0189610440284014,-0.999053716659546,0.0718593895435333,0.0267906170338392,-0.997054994106293,0.0372682623565197,-0.0387934483587742,-0.998552024364471,0.0139223132282496,-0.0850653648376465,0.996278166770935,-0.00775422435253859,-0.0767948627471924,0.997016787528992,0.074072502553463,-0.996720016002655,0.0325980372726917,0.168567135930061,-0.985114574432373,0.0336803011596203,-0.164525136351585,0.986174762248993,0.0197677128016949,0.999642610549927,0.0200570896267891,-0.0176752042025328,-0.176367327570915,0.983939051628113,-0.0275402050465345,0.074072502553463,-0.996720016002655,0.0325980372726917,0.110687926411629,-0.993446707725525,-0.0284943506121635,0.158273309469223,-0.986695885658264,-0.0371590703725815,0.168567135930061,-0.985114574432373,0.0336803011596203,-0.632729232311249,-0.77260160446167,-0.0523505844175816,-0.22139273583889,-0.172035247087479,-0.959890186786652,0.110687926411629,-0.993446707725525,-0.0284943506121635,-0.00775422435253859,-0.0767948627471924,0.997016787528992,-0.0312362760305405,0.039347518235445,0.998737335205078,0.179836541414261,0.0775620117783546,0.980634033679962,0.0698781535029411,-0.00303710135631263,0.997550904750824,-0.190812408924103,0.981356739997864,-0.0230129398405552,-0.0391439124941826,0.0189610440284014,-0.999053716659546,0.0871841907501221,0.0699168145656586,-0.993735671043396,0.155934721231461,0.987621009349823,-0.0170009974390268,0.074072502553463,-0.996720016002655,0.0325980372726917,-0.00775422435253859,-0.0767948627471924,0.997016787528992,0.0698781535029411,-0.00303710135631263,0.997550904750824,-0.293201774358749,-0.955400109291077,0.0352622605860233,0.074072502553463,-0.996720016002655,0.0325980372726917,0.0698781535029411,-0.00303710135631263,0.997550904750824,0.158273309469223,-0.986695885658264,-0.0371590703725815,0.110687926411629,-0.993446707725525,-0.0284943506121635,-0.00231881556101143,-0.0544532090425491,-0.998513638973236,0.0372682623565197,-0.0387934483587742,-0.998552024364471,0.110687926411629,-0.993446707725525,-0.0284943506121635,
- -0.293201774358749,-0.955400109291077,0.0352622605860233,-0.632729232311249,-0.77260160446167,-0.0523505844175816,-0.0391439124941826,0.0189610440284014,-0.999053716659546,-0.00231881556101143,-0.0544532090425491,-0.998513638973236,-0.22139273583889,-0.172035247087479,-0.959890186786652,0.0871841907501221,0.0699168145656586,-0.993735671043396,0.110687926411629,-0.993446707725525,-0.0284943506121635,0.074072502553463,-0.996720016002655,0.0325980372726917,-0.293201774358749,-0.955400109291077,0.0352622605860233,0.155934721231461,0.987621009349823,-0.0170009974390268,0.195430904626846,0.980628788471222,0.0131911216303706,-0.194561868906021,0.980444610118866,0.0295660085976124,-0.190812408924103,0.981356739997864,-0.0230129398405552,-0.0312362760305405,0.039347518235445,0.998737335205078,-0.194561868906021,0.980444610118866,0.0295660085976124,0.179836541414261,0.0775620117783546,0.980634033679962,0.999818623065948,-0.00161276943981647,0.0189743619412184,0.99956876039505,-0.0140877421945333,0.0257660038769245,0.99942946434021,-0.0333386063575745,-0.00540712336078286,0.999483108520508,-0.031451091170311,-0.00666071148589253,0.999652445316315,-0.0120641710236669,-0.0234373770654202,0.999642610549927,0.0200570896267891,-0.0176752042025328,0.158273309469223,-0.986695885658264,-0.0371590703725815,0.0372682623565197,-0.0387934483587742,-0.998552024364471,0.999652445316315,-0.0120641710236669,-0.0234373770654202,0.999483108520508,-0.031451091170311,-0.00666071148589253,0.999642610549927,0.0200570896267891,-0.0176752042025328,0.0718593895435333,0.0267906170338392,-0.997054994106293,-0.176367327570915,0.983939051628113,-0.0275402050465345,0.999642610549927,0.0200570896267891,-0.0176752042025328,0.999652445316315,-0.0120641710236669,-0.0234373770654202,0.0372682623565197,-0.0387934483587742,-0.998552024364471,0.0718593895435333,0.0267906170338392,-0.997054994106293,-0.45492947101593,0.890137076377869,-0.0263660065829754,0.155934721231461,0.987621009349823,-0.0170009974390268,0.0871841907501221,0.0699168145656586,-0.993735671043396,
- -0.802407145500183,0.596684992313385,0.010476435534656,-0.799387276172638,0.599738001823425,-0.0359753780066967,-0.994086503982544,-0.100766189396381,0.0404747873544693,-0.850352227687836,0.526081502437592,0.0118039166554809,-0.536681532859802,0.84326308965683,0.0296693947166204,-0.537395060062408,0.842851519584656,-0.0284236390143633,-0.0171623378992081,0.0441843383014202,0.998875975608826,-0.0574444979429245,0.0346039533615112,0.997748851776123,-0.536681532859802,0.84326308965683,0.0296693947166204,-0.850352227687836,0.526081502437592,0.0118039166554809,0.0124147012829781,-0.0754778236150742,0.99707019329071,-0.0574444979429245,0.0346039533615112,0.997748851776123,-0.0171623378992081,0.0441843383014202,0.998875975608826,0.934847950935364,-0.35500556230545,0.00550879491493106,0.0608114488422871,0.025445744395256,0.997824847698212,0.999617755413055,0.013570629991591,0.0240900181233883,0.800753116607666,-0.598734021186829,-0.017664959654212,0.890334188938141,-0.454541325569153,-0.0264030136168003,0.79608154296875,-0.60466480255127,0.0251930151134729,-0.0620582140982151,0.0563736706972122,-0.996479213237762,0.020693976432085,-0.0177477095276117,-0.999628305435181,0.0120210060849786,-0.0239390153437853,-0.999641180038452,-0.0203258134424686,-0.0187944639474154,-0.999616742134094,-0.0808357745409012,0.0410613715648651,-0.995881319046021,0.886674046516418,0.462311923503876,-0.00876844488084316,0.776424944400787,-0.630041241645813,-0.0145748043432832,0.780406296253204,-0.624665200710297,0.0275591928511858,0.110687926411629,-0.993446707725525,-0.0284943506121635,-0.22139273583889,-0.172035247087479,-0.959890186786652,-0.00231881556101143,-0.0544532090425491,-0.998513638973236,-0.774971544742584,0.631823182106018,-0.0147870825603604,-0.993687510490417,0.107522636651993,-0.0320007652044296,-0.779360711574554,0.625345051288605,0.0392496772110462,-0.885448038578033,0.447120666503906,0.126747518777847,-0.993687510490417,0.107522636651993,-0.0320007652044296,-0.0323612280189991,0.0105774682015181,-0.99942022562027,-0.0274812895804644,-0.0332637540996075,-0.999068737030029,
- -0.998771190643311,0.0364306420087814,-0.0335982367396355,-0.799387276172638,0.599738001823425,-0.0359753780066967,-0.998911261558533,0.0448830351233482,-0.0127184931188822,-0.994086503982544,-0.100766189396381,0.0404747873544693,-0.0685284584760666,0.12252202630043,-0.990097045898438,-0.998911261558533,0.0448830351233482,-0.0127184931188822,-0.799387276172638,0.599738001823425,-0.0359753780066967,-0.0808357745409012,0.0410613715648651,-0.995881319046021,-0.0685284584760666,0.12252202630043,-0.990097045898438,-0.799387276172638,0.599738001823425,-0.0359753780066967,0.93321818113327,-0.356675922870636,0.0434301011264324,0.937824666500092,-0.345705419778824,-0.0311892107129097,0.958419561386108,-0.284044831991196,-0.0273931305855513,0.971143066883087,-0.233071863651276,0.0505831800401211,-0.0411293990910053,0.00295754265971482,0.999149441719055,-0.0550394393503666,-0.0499714277684689,0.997232913970947,-0.0638878792524338,-0.157219246029854,0.985494911670685,-0.0550394393503666,-0.0499714277684689,0.997232913970947,-0.0359203182160854,0.0370813608169556,0.99866646528244,-0.0638878792524338,-0.157219246029854,0.985494911670685,-0.0155787719413638,0.058481365442276,-0.998166918754578,-0.0685284584760666,0.12252202630043,-0.990097045898438,0.222330555319786,0.193109974265099,-0.955655634403229,0.0120210060849786,-0.0239390153437853,-0.999641180038452,0.020693976432085,-0.0177477095276117,-0.999628305435181,0.800753116607666,-0.598734021186829,-0.017664959654212,0.772915244102478,-0.633861422538757,-0.0286627057939768,-0.0203258134424686,-0.0187944639474154,-0.999616742134094,0.0120210060849786,-0.0239390153437853,-0.999641180038452,0.772915244102478,-0.633861422538757,-0.0286627057939768,0.0150486109778285,-0.0311747565865517,-0.999400675296783,0.0326454043388367,-0.0349851660430431,-0.998854458332062,0.5270676612854,-0.849256694316864,-0.0310290772467852,0.516050040721893,-0.856307744979858,-0.0207199789583683,0.5270676612854,-0.849256694316864,-0.0310290772467852,0.0326454043388367,-0.0349851660430431,-0.998854458332062,
- 0.0663572251796722,-0.0164387710392475,-0.997660458087921,0.537269473075867,-0.84318995475769,-0.0192948300391436,0.0229754615575075,-0.0451933033764362,0.998713970184326,-0.0372304767370224,-0.0354905910789967,0.998676300048828,-0.0196847207844257,-0.477450966835022,0.87843781709671,0.0201982278376818,-0.508759260177612,0.860671937465668,0.0608114488422871,0.025445744395256,0.997824847698212,0.0201982278376818,-0.508759260177612,0.860671937465668,-0.0196847207844257,-0.477450966835022,0.87843781709671,0.195430904626846,0.980628788471222,0.0131911216303706,-0.452254295349121,0.891464352607727,0.027518592774868,0.179836541414261,0.0775620117783546,0.980634033679962,-0.194561868906021,0.980444610118866,0.0295660085976124,0.195430904626846,0.980628788471222,0.0131911216303706,0.179836541414261,0.0775620117783546,0.980634033679962,-0.997713267803192,0.0638057813048363,0.022294607013464,-0.779360711574554,0.625345051288605,0.0392496772110462,-0.993687510490417,0.107522636651993,-0.0320007652044296,-0.997713267803192,0.0638057813048363,0.022294607013464,-0.132127434015274,0.134339570999146,0.982087194919586,-0.885448038578033,0.447120666503906,0.126747518777847,0.809221804141998,0.587364077568054,-0.0127926645800471,0.770519077777863,0.637286365032196,-0.0129013974219561,0.773908257484436,0.632698237895966,0.027551231905818,0.81170666217804,0.583301782608032,0.029854679480195,0.997687220573425,0.0605354569852352,0.0309133734554052,0.0489822626113892,0.0281172432005405,0.99840384721756,0.0459523350000381,-0.024839598685503,0.99863475561142,0.999498665332794,0.00567036727443337,0.0311500336974859,-0.998662292957306,0.0415197871625423,0.0308179017156363,0.202819734811783,0.978660583496094,0.032978281378746,0.208788946270943,0.977958798408508,-0.00195630732923746,-0.998484969139099,0.0503647737205029,-0.022163774818182,0.0303413029760122,-0.999109625816345,-0.0293142590671778,-0.479638636112213,-0.877426207065582,0.00836274307221174,-0.473400980234146,-0.880058169364929,-0.0372686125338078,0.709700345993042,0.704273760318756,-0.0179961491376162,
- 0.999574244022369,0.00574691127985716,-0.0286065507680178,0.999498665332794,0.00567036727443337,0.0311500336974859,0.751266896724701,0.659998416900635,0.000460174167528749,-0.998371720314026,-0.0545573495328426,-0.0166530329734087,-0.914948880672455,0.391618698835373,-0.0974849686026573,-0.962565839290619,-0.269834995269775,0.0256171841174364,0.0479936003684998,0.0164416581392288,0.998712241649628,0.0415455363690853,0.0400677099823952,0.998332858085632,-0.0331092588603497,-0.0102104721590877,0.999399602413177,-0.0197668131440878,-0.0286856144666672,0.999393045902252,-0.999458372592926,-0.0204074438661337,0.0258208066225052,-0.999704599380493,-0.00264323246665299,0.0241578686982393,-0.999945402145386,-0.00242003635503352,-0.0101664084941149,-0.99965226650238,-0.014517568051815,-0.0220150388777256,-0.998371720314026,-0.0545573495328426,-0.0166530329734087,-0.925867259502411,-0.377000331878662,-0.0253085568547249,-0.999945402145386,-0.00242003635503352,-0.0101664084941149,-0.999704599380493,-0.00264323246665299,0.0241578686982393,-0.0373055189847946,-0.0338662527501583,0.998729884624481,0.0289536956697702,0.000789725629147142,0.999580383300781,0.0250136405229568,0.0348028652369976,0.999081134796143,-0.0432896502315998,0.00740191387012601,0.999035120010376,-0.790842533111572,-0.610849559307098,0.0378257371485233,-0.808960735797882,-0.587055802345276,-0.0307905673980713,-0.571336925029755,-0.819588661193848,-0.0429930202662945,-0.837918817996979,-0.54338276386261,0.0512569770216942,0.0303413029760122,-0.999109625816345,-0.0293142590671778,-0.819048941135406,-0.57290118932724,-0.030711829662323,-0.818345010280609,-0.573309302330017,0.0403493456542492,0.0323605798184872,-0.146867200732231,-0.988626718521118,0.0192136224359274,-0.0262407120317221,-0.999471008777618,-0.0423339903354645,-0.0355084799230099,-0.998472332954407,-0.00725283659994602,0.0328032597899437,-0.999435544013977,-0.965734243392944,-0.258592873811722,-0.0220723692327738,-0.974881827831268,-0.222569927573204,-0.00824846606701612,-0.999458372592926,-0.0204074438661337,0.0258208066225052,
- -0.0704937353730202,-0.0303887277841568,0.99704921245575,-0.0797465369105339,0.0270010083913803,0.99644947052002,-0.999704599380493,-0.00264323246665299,0.0241578686982393,-0.571336925029755,-0.819588661193848,-0.0429930202662945,-0.0137777039781213,-0.0775901526212692,-0.996890127658844,0.0175414830446243,-0.133272439241409,-0.990924179553986,-0.0405747964978218,0.101434990763664,-0.994014441967011,0.0832083374261856,0.0235666185617447,-0.996253490447998,-0.00766277499496937,0.324451118707657,-0.945871412754059,-0.818345010280609,-0.573309302330017,0.0403493456542492,-0.0331092588603497,-0.0102104721590877,0.999399602413177,0.194454118609428,-0.219100475311279,0.956128895282745,-0.011646225117147,-0.0528186820447445,-0.998536288738251,0.0345290452241898,0.0285861045122147,-0.998994708061218,0.0192136224359274,-0.0262407120317221,-0.999471008777618,0.0323605798184872,-0.146867200732231,-0.988626718521118,-0.99916535615921,-0.0139303151518106,-0.0384001135826111,-0.998802900314331,-0.0431076548993587,-0.0231166929006577,-0.999053776264191,-0.0396708324551582,0.017830865457654,-0.0328370817005634,0.004301852080971,-0.999451518058777,-0.0405747964978218,0.101434990763664,-0.994014441967011,0.0401808395981789,0.00650404300540686,-0.999171197414398,0.0362355671823025,0.00728765456005931,-0.999316692352295,0.770519077777863,0.637286365032196,-0.0129013974219561,0.809221804141998,0.587364077568054,-0.0127926645800471,0.052546288818121,-0.0141820972785354,-0.998517751693726,-0.0423339903354645,-0.0355084799230099,-0.998472332954407,0.0192136224359274,-0.0262407120317221,-0.999471008777618,0.0362355671823025,0.00728765456005931,-0.999316692352295,-0.0432896502315998,0.00740191387012601,0.999035120010376,0.0250136405229568,0.0348028652369976,0.999081134796143,-0.12906439602375,0.235045567154884,0.963377356529236,-0.0197668131440878,-0.0286856144666672,0.999393045902252,-0.837918817996979,-0.54338276386261,0.0512569770216942,-0.12906439602375,0.235045567154884,0.963377356529236,-0.998662292957306,0.0415197871625423,0.0308179017156363,
- -0.998484969139099,0.0503647737205029,-0.022163774818182,-0.99916535615921,-0.0139303151518106,-0.0384001135826111,-0.999053776264191,-0.0396708324551582,0.017830865457654,0.02777399122715,0.0638047233223915,-0.99757581949234,0.0101894484832883,-0.0467656776309013,-0.998853921890259,-0.99916535615921,-0.0139303151518106,-0.0384001135826111,-0.571336925029755,-0.819588661193848,-0.0429930202662945,-0.973496735095978,-0.226433351635933,0.0321262143552303,-0.837918817996979,-0.54338276386261,0.0512569770216942,-0.12906439602375,0.235045567154884,0.963377356529236,-0.837918817996979,-0.54338276386261,0.0512569770216942,-0.0432896502315998,0.00740191387012601,0.999035120010376,0.773908257484436,0.632698237895966,0.027551231905818,0.0415455363690853,0.0400677099823952,0.998332858085632,0.0479936003684998,0.0164416581392288,0.998712241649628,0.81170666217804,0.583301782608032,0.029854679480195,0.773908257484436,0.632698237895966,0.027551231905818,0.372101575136185,0.92811530828476,-0.0119276102632284,0.233926221728325,0.965508639812469,0.114330768585205,0.974944889545441,0.222091466188431,0.0125612337142229,0.977683365345001,0.206604361534119,-0.0380788370966911,0.960048913955688,0.277504473924637,-0.036016870290041,0.959495067596436,0.281536400318146,0.0103187309578061,0.0283531155437231,0.0389107502996922,0.99884033203125,-0.0148840891197324,-0.0234145577996969,0.999615013599396,0.150795564055443,0.0775383785367012,0.985519409179688,0.0459523350000381,-0.024839598685503,0.99863475561142,-0.022529810667038,-0.0988103076815605,0.994851231575012,0.999498665332794,0.00567036727443337,0.0311500336974859,0.993992507457733,0.0985697954893112,0.0475696176290512,0.0479936003684998,0.0164416581392288,0.998712241649628,0.0562989562749863,-0.0566334649920464,0.996806442737579,-0.479638636112213,-0.877426207065582,0.00836274307221174,0.0303413029760122,-0.999109625816345,-0.0293142590671778,0.0674707069993019,-0.99772036075592,0.0013312102528289,0.194454118609428,-0.219100475311279,0.956128895282745,0.150795564055443,0.0775383785367012,0.985519409179688,
- -0.0148840891197324,-0.0234145577996969,0.999615013599396,0.993992507457733,0.0985697954893112,0.0475696176290512,0.0250136405229568,0.0348028652369976,0.999081134796143,0.959495067596436,0.281536400318146,0.0103187309578061,0.0283531155437231,0.0389107502996922,0.99884033203125,0.543323159217834,0.839304685592651,0.0191701408475637,0.499115794897079,0.866397261619568,0.015468530356884,-0.0252920184284449,0.0609825141727924,0.997818350791931,0.0283531155437231,0.0389107502996922,0.99884033203125,0.150795564055443,0.0775383785367012,0.985519409179688,0.543323159217834,0.839304685592651,0.0191701408475637,0.150795564055443,0.0775383785367012,0.985519409179688,0.773908257484436,0.632698237895966,0.027551231905818,0.233926221728325,0.965508639812469,0.114330768585205,-0.0821841582655907,-0.306032299995422,0.948467135429382,-0.0704937353730202,-0.0303887277841568,0.99704921245575,-0.999458372592926,-0.0204074438661337,0.0258208066225052,0.0674707069993019,-0.99772036075592,0.0013312102528289,0.0303413029760122,-0.999109625816345,-0.0293142590671778,-0.818345010280609,-0.573309302330017,0.0403493456542492,0.0175414830446243,-0.133272439241409,-0.990924179553986,-0.0137777039781213,-0.0775901526212692,-0.996890127658844,0.052546288818121,-0.0141820972785354,-0.998517751693726,0.0192136224359274,-0.0262407120317221,-0.999471008777618,0.770519077777863,0.637286365032196,-0.0129013974219561,0.0362355671823025,0.00728765456005931,-0.999316692352295,0.0192136224359274,-0.0262407120317221,-0.999471008777618,0.0345290452241898,0.0285861045122147,-0.998994708061218,0.565341293811798,0.824156284332275,-0.0339933596551418,0.372101575136185,0.92811530828476,-0.0119276102632284,-0.00766277499496937,0.324451118707657,-0.945871412754059,0.0832083374261856,0.0235666185617447,-0.996253490447998,0.977683365345001,0.206604361534119,-0.0380788370966911,-0.00766277499496937,0.324451118707657,-0.945871412754059,0.0401808395981789,0.00650404300540686,-0.999171197414398,-0.0405747964978218,0.101434990763664,-0.994014441967011,0.999574244022369,0.00574691127985716,-0.0286065507680178,
- 0.0381214283406734,-0.0423809997737408,-0.998373985290527,0.0401808395981789,0.00650404300540686,-0.999171197414398,0.997857749462128,0.0587176494300365,-0.0288452841341496,-0.0307700000703335,-0.0487422458827496,0.998337388038635,-0.998662292957306,0.0415197871625423,0.0308179017156363,-0.999053776264191,-0.0396708324551582,0.017830865457654,0.372101575136185,0.92811530828476,-0.0119276102632284,0.770519077777863,0.637286365032196,-0.0129013974219561,0.0192136224359274,-0.0262407120317221,-0.999471008777618,0.773908257484436,0.632698237895966,0.027551231905818,0.770519077777863,0.637286365032196,-0.0129013974219561,0.372101575136185,0.92811530828476,-0.0119276102632284,-0.00725283659994602,0.0328032597899437,-0.999435544013977,-0.974881827831268,-0.222569927573204,-0.00824846606701612,-0.571336925029755,-0.819588661193848,-0.0429930202662945,-0.0233641229569912,-0.454298257827759,0.890543162822723,-0.0373055189847946,-0.0338662527501583,0.998729884624481,-0.898183047771454,-0.439482361078262,0.0110657531768084,-0.818345010280609,-0.573309302330017,0.0403493456542492,0.194454118609428,-0.219100475311279,0.956128895282745,0.0674707069993019,-0.99772036075592,0.0013312102528289,0.194454118609428,-0.219100475311279,0.956128895282745,-0.479638636112213,-0.877426207065582,0.00836274307221174,0.0674707069993019,-0.99772036075592,0.0013312102528289,-0.571336925029755,-0.819588661193848,-0.0429930202662945,0.0175414830446243,-0.133272439241409,-0.990924179553986,-0.00725283659994602,0.0328032597899437,-0.999435544013977,-0.0328370817005634,0.004301852080971,-0.999451518058777,0.0401808395981789,0.00650404300540686,-0.999171197414398,0.0381214283406734,-0.0423809997737408,-0.998373985290527,-0.0582436583936214,-0.0500292479991913,-0.997048079967499,-0.0547800660133362,-0.0113169550895691,-0.998434364795685,-0.0148840891197324,-0.0234145577996969,0.999615013599396,-0.479638636112213,-0.877426207065582,0.00836274307221174,0.194454118609428,-0.219100475311279,0.956128895282745,-0.999458372592926,-0.0204074438661337,0.0258208066225052,
- -0.962565839290619,-0.269834995269775,0.0256171841174364,-0.0821841582655907,-0.306032299995422,0.948467135429382,-0.998371720314026,-0.0545573495328426,-0.0166530329734087,-0.962565839290619,-0.269834995269775,0.0256171841174364,-0.999458372592926,-0.0204074438661337,0.0258208066225052,0.0832083374261856,0.0235666185617447,-0.996253490447998,0.0778463706374168,0.0434923507273197,-0.996016204357147,0.960048913955688,0.277504473924637,-0.036016870290041,0.977683365345001,0.206604361534119,-0.0380788370966911,-0.999704599380493,-0.00264323246665299,0.0241578686982393,-0.0797465369105339,0.0270010083913803,0.99644947052002,-0.0233641229569912,-0.454298257827759,0.890543162822723,-0.898183047771454,-0.439482361078262,0.0110657531768084,-0.898183047771454,-0.439482361078262,0.0110657531768084,-0.925867259502411,-0.377000331878662,-0.0253085568547249,-0.999704599380493,-0.00264323246665299,0.0241578686982393,-0.790842533111572,-0.610849559307098,0.0378257371485233,-0.837918817996979,-0.54338276386261,0.0512569770216942,-0.0197668131440878,-0.0286856144666672,0.999393045902252,0.0303413029760122,-0.999109625816345,-0.0293142590671778,0.0323605798184872,-0.146867200732231,-0.988626718521118,-0.819048941135406,-0.57290118932724,-0.030711829662323,-0.176223888993263,-0.982974886894226,-0.0520135164260864,0.0558495782315731,-0.0735370069742203,-0.99572741985321,0.0773707777261734,-0.0516620203852654,-0.995662927627563,-0.174522504210472,-0.984182298183441,-0.0304514262825251,0.0415455363690853,0.0400677099823952,0.998332858085632,0.773908257484436,0.632698237895966,0.027551231905818,0.150795564055443,0.0775383785367012,0.985519409179688,-0.808960735797882,-0.587055802345276,-0.0307905673980713,-0.819048941135406,-0.57290118932724,-0.030711829662323,-0.0423339903354645,-0.0355084799230099,-0.998472332954407,-0.0137777039781213,-0.0775901526212692,-0.996890127658844,-0.819048941135406,-0.57290118932724,-0.030711829662323,0.0323605798184872,-0.146867200732231,-0.988626718521118,-0.0423339903354645,-0.0355084799230099,-0.998472332954407,
- -0.0331092588603497,-0.0102104721590877,0.999399602413177,0.150795564055443,0.0775383785367012,0.985519409179688,0.194454118609428,-0.219100475311279,0.956128895282745,0.0415455363690853,0.0400677099823952,0.998332858085632,0.150795564055443,0.0775383785367012,0.985519409179688,-0.0331092588603497,-0.0102104721590877,0.999399602413177,0.0101894484832883,-0.0467656776309013,-0.998853921890259,-0.998802900314331,-0.0431076548993587,-0.0231166929006577,-0.99916535615921,-0.0139303151518106,-0.0384001135826111,-0.998802900314331,-0.0431076548993587,-0.0231166929006577,-0.205463096499443,-0.978148400783539,-0.0317882560193539,-0.535440623760223,-0.844479382038116,-0.0125690214335918,-0.0373055189847946,-0.0338662527501583,0.998729884624481,-0.956287324428558,-0.290754348039627,0.0312489122152328,-0.898183047771454,-0.439482361078262,0.0110657531768084,0.996019840240479,-0.0858962833881378,-0.0238000974059105,0.9715336561203,-0.236523017287254,0.0133935278281569,0.997857749462128,0.0587176494300365,-0.0288452841341496,0.0101894484832883,-0.0467656776309013,-0.998853921890259,-0.205463096499443,-0.978148400783539,-0.0317882560193539,-0.998802900314331,-0.0431076548993587,-0.0231166929006577,0.0479936003684998,0.0164416581392288,0.998712241649628,0.993992507457733,0.0985697954893112,0.0475696176290512,0.81170666217804,0.583301782608032,0.029854679480195,0.81170666217804,0.583301782608032,0.029854679480195,0.993992507457733,0.0985697954893112,0.0475696176290512,0.809221804141998,0.587364077568054,-0.0127926645800471,-0.954482972621918,-0.298039644956589,-0.0116079123690724,-0.0405747964978218,0.101434990763664,-0.994014441967011,-0.925867259502411,-0.377000331878662,-0.0253085568547249,-0.00725283659994602,0.0328032597899437,-0.999435544013977,0.0175414830446243,-0.133272439241409,-0.990924179553986,0.0778463706374168,0.0434923507273197,-0.996016204357147,-0.99916535615921,-0.0139303151518106,-0.0384001135826111,-0.998484969139099,0.0503647737205029,-0.022163774818182,0.02777399122715,0.0638047233223915,-0.99757581949234,0.052546288818121,-0.0141820972785354,-0.998517751693726,
- 0.809221804141998,0.587364077568054,-0.0127926645800471,0.932269155979156,-0.361589103937149,-0.0112945884466171,0.313907265663147,-0.37541925907135,-0.872079491615295,0.0250136405229568,0.0348028652369976,0.999081134796143,0.993992507457733,0.0985697954893112,0.0475696176290512,0.0562989562749863,-0.0566334649920464,0.996806442737579,-0.998484969139099,0.0503647737205029,-0.022163774818182,0.208788946270943,0.977958798408508,-0.00195630732923746,0.02777399122715,0.0638047233223915,-0.99757581949234,-0.0307700000703335,-0.0487422458827496,0.998337388038635,-0.999053776264191,-0.0396708324551582,0.017830865457654,-0.222016289830208,-0.974883317947388,0.0176425352692604,0.993992507457733,0.0985697954893112,0.0475696176290512,0.932269155979156,-0.361589103937149,-0.0112945884466171,0.809221804141998,0.587364077568054,-0.0127926645800471,-0.999053776264191,-0.0396708324551582,0.017830865457654,-0.998802900314331,-0.0431076548993587,-0.0231166929006577,-0.535440623760223,-0.844479382038116,-0.0125690214335918,-0.999053776264191,-0.0396708324551582,0.017830865457654,-0.535440623760223,-0.844479382038116,-0.0125690214335918,-0.222016289830208,-0.974883317947388,0.0176425352692604,0.0289536956697702,0.000789725629147142,0.999580383300781,0.9715336561203,-0.236523017287254,0.0133935278281569,0.974944889545441,0.222091466188431,0.0125612337142229,-0.12906439602375,0.235045567154884,0.963377356529236,0.0479936003684998,0.0164416581392288,0.998712241649628,-0.0197668131440878,-0.0286856144666672,0.999393045902252,-0.0432896502315998,0.00740191387012601,0.999035120010376,-0.837918817996979,-0.54338276386261,0.0512569770216942,-0.973496735095978,-0.226433351635933,0.0321262143552303,-0.973496735095978,-0.226433351635933,0.0321262143552303,-0.956287324428558,-0.290754348039627,0.0312489122152328,-0.0373055189847946,-0.0338662527501583,0.998729884624481,-0.0432896502315998,0.00740191387012601,0.999035120010376,0.0289536956697702,0.000789725629147142,0.999580383300781,0.00637027760967612,-0.00387325277552009,0.99997216463089,0.9715336561203,-0.236523017287254,0.0133935278281569,
- -0.0797465369105339,0.0270010083913803,0.99644947052002,-0.0704937353730202,-0.0303887277841568,0.99704921245575,0.0459523350000381,-0.024839598685503,0.99863475561142,0.0489822626113892,0.0281172432005405,0.99840384721756,-0.0821841582655907,-0.306032299995422,0.948467135429382,-0.022529810667038,-0.0988103076815605,0.994851231575012,0.0459523350000381,-0.024839598685503,0.99863475561142,-0.0704937353730202,-0.0303887277841568,0.99704921245575,-0.000417871284298599,0.191797003149986,-0.981434464454651,-0.125998839735985,0.0307013839483261,-0.991555213928223,-0.0582436583936214,-0.0500292479991913,-0.997048079967499,0.0381214283406734,-0.0423809997737408,-0.998373985290527,-0.914948880672455,0.391618698835373,-0.0974849686026573,-0.998371720314026,-0.0545573495328426,-0.0166530329734087,-0.0582436583936214,-0.0500292479991913,-0.997048079967499,-0.125998839735985,0.0307013839483261,-0.991555213928223,-0.925867259502411,-0.377000331878662,-0.0253085568547249,-0.0328370817005634,0.004301852080971,-0.999451518058777,-0.999945402145386,-0.00242003635503352,-0.0101664084941149,-0.0241687316447496,-0.00718437088653445,-0.999682009220123,0.0832083374261856,0.0235666185617447,-0.996253490447998,-0.0405747964978218,0.101434990763664,-0.994014441967011,0.0175414830446243,-0.133272439241409,-0.990924179553986,0.313907265663147,-0.37541925907135,-0.872079491615295,0.0778463706374168,0.0434923507273197,-0.996016204357147,0.996019840240479,-0.0858962833881378,-0.0238000974059105,0.997857749462128,0.0587176494300365,-0.0288452841341496,0.0401808395981789,0.00650404300540686,-0.999171197414398,0.996019840240479,-0.0858962833881378,-0.0238000974059105,0.0401808395981789,0.00650404300540686,-0.999171197414398,-0.00766277499496937,0.324451118707657,-0.945871412754059,-0.00766277499496937,0.324451118707657,-0.945871412754059,0.977683365345001,0.206604361534119,-0.0380788370966911,0.996019840240479,-0.0858962833881378,-0.0238000974059105,-0.0307700000703335,-0.0487422458827496,0.998337388038635,-0.0044638067483902,0.0719006806612015,0.997401833534241,
- -0.998662292957306,0.0415197871625423,0.0308179017156363,0.202819734811783,0.978660583496094,0.032978281378746,-0.998662292957306,0.0415197871625423,0.0308179017156363,-0.0044638067483902,0.0719006806612015,0.997401833534241,-0.0405747964978218,0.101434990763664,-0.994014441967011,-0.0328370817005634,0.004301852080971,-0.999451518058777,-0.925867259502411,-0.377000331878662,-0.0253085568547249,-0.954482972621918,-0.298039644956589,-0.0116079123690724,-0.0241687316447496,-0.00718437088653445,-0.999682009220123,-0.0405747964978218,0.101434990763664,-0.994014441967011,-0.974881827831268,-0.222569927573204,-0.00824846606701612,-0.965734243392944,-0.258592873811722,-0.0220723692327738,-0.954482972621918,-0.298039644956589,-0.0116079123690724,-0.956287324428558,-0.290754348039627,0.0312489122152328,-0.973496735095978,-0.226433351635933,0.0321262143552303,0.543323159217834,0.839304685592651,0.0191701408475637,0.233926221728325,0.965508639812469,0.114330768585205,0.879747688770294,0.474322557449341,0.0325893126428127,0.00637027760967612,-0.00387325277552009,0.99997216463089,-0.0233641229569912,-0.454298257827759,0.890543162822723,-0.0797465369105339,0.0270010083913803,0.99644947052002,0.0289536956697702,0.000789725629147142,0.999580383300781,-0.0233641229569912,-0.454298257827759,0.890543162822723,0.00637027760967612,-0.00387325277552009,0.99997216463089,0.0289536956697702,0.000789725629147142,0.999580383300781,-0.0373055189847946,-0.0338662527501583,0.998729884624481,-0.0233641229569912,-0.454298257827759,0.890543162822723,0.999574244022369,0.00574691127985716,-0.0286065507680178,0.997857749462128,0.0587176494300365,-0.0288452841341496,0.997687220573425,0.0605354569852352,0.0309133734554052,0.999498665332794,0.00567036727443337,0.0311500336974859,0.974944889545441,0.222091466188431,0.0125612337142229,0.959495067596436,0.281536400318146,0.0103187309578061,0.0250136405229568,0.0348028652369976,0.999081134796143,0.0289536956697702,0.000789725629147142,0.999580383300781,0.0362355671823025,0.00728765456005931,-0.999316692352295,
- 0.052546288818121,-0.0141820972785354,-0.998517751693726,-0.0137777039781213,-0.0775901526212692,-0.996890127658844,-0.0423339903354645,-0.0355084799230099,-0.998472332954407,-0.0331092588603497,-0.0102104721590877,0.999399602413177,-0.818345010280609,-0.573309302330017,0.0403493456542492,-0.790842533111572,-0.610849559307098,0.0378257371485233,-0.0197668131440878,-0.0286856144666672,0.999393045902252,-0.0148840891197324,-0.0234145577996969,0.999615013599396,0.0283531155437231,0.0389107502996922,0.99884033203125,-0.0252920184284449,0.0609825141727924,0.997818350791931,-0.0483585186302662,0.00303176324814558,0.998825430870056,-0.205463096499443,-0.978148400783539,-0.0317882560193539,-0.222016289830208,-0.974883317947388,0.0176425352692604,-0.535440623760223,-0.844479382038116,-0.0125690214335918,-0.070634126663208,-0.0331366546452045,-0.996951758861542,-0.0585333257913589,-0.000588496157433838,-0.998285174369812,-0.0255162175744772,0.0534717664122581,-0.99824333190918,0.0345290452241898,0.0285861045122147,-0.998994708061218,-0.011646225117147,-0.0528186820447445,-0.998536288738251,-0.0148840891197324,-0.0234145577996969,0.999615013599396,-0.0483585186302662,0.00303176324814558,0.998825430870056,-0.581640243530273,-0.813312351703644,0.0147535894066095,-0.479638636112213,-0.877426207065582,0.00836274307221174,-0.473400980234146,-0.880058169364929,-0.0372686125338078,-0.011646225117147,-0.0528186820447445,-0.998536288738251,0.0323605798184872,-0.146867200732231,-0.988626718521118,0.0303413029760122,-0.999109625816345,-0.0293142590671778,0.543323159217834,0.839304685592651,0.0191701408475637,0.565341293811798,0.824156284332275,-0.0339933596551418,0.513424396514893,0.857382953166962,-0.0359163843095303,0.499115794897079,0.866397261619568,0.015468530356884,0.999574244022369,0.00574691127985716,-0.0286065507680178,-0.000417871284298599,0.191797003149986,-0.981434464454651,0.0381214283406734,-0.0423809997737408,-0.998373985290527,-0.808960735797882,-0.587055802345276,-0.0307905673980713,-0.0137777039781213,-0.0775901526212692,-0.996890127658844,
- -0.571336925029755,-0.819588661193848,-0.0429930202662945,-0.956287324428558,-0.290754348039627,0.0312489122152328,-0.925867259502411,-0.377000331878662,-0.0253085568547249,-0.898183047771454,-0.439482361078262,0.0110657531768084,0.996019840240479,-0.0858962833881378,-0.0238000974059105,0.977683365345001,0.206604361534119,-0.0380788370966911,0.974944889545441,0.222091466188431,0.0125612337142229,0.9715336561203,-0.236523017287254,0.0133935278281569,-0.581640243530273,-0.813312351703644,0.0147535894066095,-0.545213282108307,-0.836305797100067,-0.0577507354319096,-0.473400980234146,-0.880058169364929,-0.0372686125338078,-0.479638636112213,-0.877426207065582,0.00836274307221174,-0.964431881904602,-0.170674368739128,-0.201845020055771,-0.711193978786469,-0.0258597694337368,-0.702520072460175,-0.070634126663208,-0.0331366546452045,-0.996951758861542,-0.545213282108307,-0.836305797100067,-0.0577507354319096,0.873835504055023,0.481748193502426,-0.0658041313290596,-0.111206166446209,0.0392353124916554,-0.993022561073303,0.0729653164744377,0.0458738692104816,-0.996278941631317,0.283640891313553,0.958920300006866,-0.00444546481594443,-0.111206166446209,0.0392353124916554,-0.993022561073303,-0.711193978786469,-0.0258597694337368,-0.702520072460175,0.0773707777261734,-0.0516620203852654,-0.995662927627563,0.0729653164744377,0.0458738692104816,-0.996278941631317,-0.964431881904602,-0.170674368739128,-0.201845020055771,-0.985580861568451,-0.169205203652382,-9.67832456808537e-005,-0.174522504210472,-0.984182298183441,-0.0304514262825251,-0.0483585186302662,0.00303176324814558,0.998825430870056,-0.593935906887054,0.246851816773415,0.765705108642578,-0.985580861568451,-0.169205203652382,-9.67832456808537e-005,0.513424396514893,0.857382953166962,-0.0359163843095303,-0.0255162175744772,0.0534717664122581,-0.99824333190918,-0.111206166446209,0.0392353124916554,-0.993022561073303,0.873835504055023,0.481748193502426,-0.0658041313290596,-0.711193978786469,-0.0258597694337368,-0.702520072460175,-0.0585333257913589,-0.000588496157433838,-0.998285174369812,
- -0.070634126663208,-0.0331366546452045,-0.996951758861542,-0.309693157672882,0.169259756803513,0.935650169849396,0.499115794897079,0.866397261619568,0.015468530356884,0.634901285171509,0.771413028240204,0.0426869057118893,-0.581640243530273,-0.813312351703644,0.0147535894066095,-0.0483585186302662,0.00303176324814558,0.998825430870056,-0.985580861568451,-0.169205203652382,-9.67832456808537e-005,-0.964431881904602,-0.170674368739128,-0.201845020055771,-0.875264644622803,-0.48289692401886,-0.0268785860389471,-0.581640243530273,-0.813312351703644,0.0147535894066095,-0.985580861568451,-0.169205203652382,-9.67832456808537e-005,-0.473400980234146,-0.880058169364929,-0.0372686125338078,-0.545213282108307,-0.836305797100067,-0.0577507354319096,-0.070634126663208,-0.0331366546452045,-0.996951758861542,-0.011646225117147,-0.0528186820447445,-0.998536288738251,-0.174522504210472,-0.984182298183441,-0.0304514262825251,0.0773707777261734,-0.0516620203852654,-0.995662927627563,-0.711193978786469,-0.0258597694337368,-0.702520072460175,-0.964431881904602,-0.170674368739128,-0.201845020055771,0.02777399122715,0.0638047233223915,-0.99757581949234,0.208788946270943,0.977958798408508,-0.00195630732923746,0.283640891313553,0.958920300006866,-0.00444546481594443,0.0729653164744377,0.0458738692104816,-0.996278941631317,0.0101894484832883,-0.0467656776309013,-0.998853921890259,0.02777399122715,0.0638047233223915,-0.99757581949234,0.0729653164744377,0.0458738692104816,-0.996278941631317,0.0773707777261734,-0.0516620203852654,-0.995662927627563,0.0558495782315731,-0.0735370069742203,-0.99572741985321,-0.0307700000703335,-0.0487422458827496,0.998337388038635,-0.222016289830208,-0.974883317947388,0.0176425352692604,-0.197910949587822,-0.980004727840424,0.020539179444313,0.0132561111822724,-0.0516648702323437,0.998576462268829,-0.222016289830208,-0.974883317947388,0.0176425352692604,-0.205463096499443,-0.978148400783539,-0.0317882560193539,-0.176223888993263,-0.982974886894226,-0.0520135164260864,-0.174522504210472,-0.984182298183441,-0.0304514262825251,
- -0.197910949587822,-0.980004727840424,0.020539179444313,0.208788946270943,0.977958798408508,-0.00195630732923746,0.202819734811783,0.978660583496094,0.032978281378746,0.274178385734558,0.960891783237457,0.0388999506831169,0.283640891313553,0.958920300006866,-0.00444546481594443,0.202819734811783,0.978660583496094,0.032978281378746,-0.0044638067483902,0.0719006806612015,0.997401833534241,0.0331774950027466,0.0490177012979984,0.998246729373932,0.274178385734558,0.960891783237457,0.0388999506831169,0.0331774950027466,0.0490177012979984,0.998246729373932,0.0132561111822724,-0.0516648702323437,0.998576462268829,-0.309693157672882,0.169259756803513,0.935650169849396,-0.309693157672882,0.169259756803513,0.935650169849396,0.634901285171509,0.771413028240204,0.0426869057118893,0.274178385734558,0.960891783237457,0.0388999506831169,-0.176223888993263,-0.982974886894226,-0.0520135164260864,-0.205463096499443,-0.978148400783539,-0.0317882560193539,0.0101894484832883,-0.0467656776309013,-0.998853921890259,0.0558495782315731,-0.0735370069742203,-0.99572741985321,-0.545213282108307,-0.836305797100067,-0.0577507354319096,-0.875264644622803,-0.48289692401886,-0.0268785860389471,-0.964431881904602,-0.170674368739128,-0.201845020055771,-0.0255162175744772,0.0534717664122581,-0.99824333190918,-0.0585333257913589,-0.000588496157433838,-0.998285174369812,-0.711193978786469,-0.0258597694337368,-0.702520072460175,-0.111206166446209,0.0392353124916554,-0.993022561073303,-0.545213282108307,-0.836305797100067,-0.0577507354319096,-0.581640243530273,-0.813312351703644,0.0147535894066095,-0.875264644622803,-0.48289692401886,-0.0268785860389471,-0.309693157672882,0.169259756803513,0.935650169849396,0.274178385734558,0.960891783237457,0.0388999506831169,0.0331774950027466,0.0490177012979984,0.998246729373932,0.499115794897079,0.866397261619568,0.015468530356884,0.873835504055023,0.481748193502426,-0.0658041313290596,0.634901285171509,0.771413028240204,0.0426869057118893,-0.985580861568451,-0.169205203652382,-9.67832456808537e-005,-0.593935906887054,0.246851816773415,0.765705108642578,
- 0.0132561111822724,-0.0516648702323437,0.998576462268829,-0.0044638067483902,0.0719006806612015,0.997401833534241,-0.0307700000703335,-0.0487422458827496,0.998337388038635,0.0132561111822724,-0.0516648702323437,0.998576462268829,0.0331774950027466,0.0490177012979984,0.998246729373932,0.499115794897079,0.866397261619568,0.015468530356884,0.513424396514893,0.857382953166962,-0.0359163843095303,0.873835504055023,0.481748193502426,-0.0658041313290596,0.873835504055023,0.481748193502426,-0.0658041313290596,0.283640891313553,0.958920300006866,-0.00444546481594443,0.274178385734558,0.960891783237457,0.0388999506831169,0.873835504055023,0.481748193502426,-0.0658041313290596,0.274178385734558,0.960891783237457,0.0388999506831169,0.634901285171509,0.771413028240204,0.0426869057118893,-0.0252920184284449,0.0609825141727924,0.997818350791931,0.499115794897079,0.866397261619568,0.015468530356884,-0.309693157672882,0.169259756803513,0.935650169849396,-0.174522504210472,-0.984182298183441,-0.0304514262825251,-0.985580861568451,-0.169205203652382,-9.67832456808537e-005,-0.197910949587822,-0.980004727840424,0.020539179444313,-0.0286217462271452,-0.999583423137665,-0.00371625181287527,-0.999564588069916,0.00392234185710549,0.0292409714311361,-0.999135911464691,0.0132547970861197,-0.0393903478980064,0.999467670917511,0.00309313833713531,-0.0324779711663723,0.0181282833218575,-0.0768614038825035,-0.996876895427704,0.020693713799119,0.0245204698294401,-0.99948513507843,0.998333215713501,0.0493993759155273,-0.0298395957797766,0.0387996882200241,-0.0177793875336647,0.999088883399963,-0.108481861650944,0.00198564701713622,0.994096457958221,0.00319642433896661,-0.999813854694366,0.0190277323126793,-0.999564588069916,0.00392234185710549,0.0292409714311361,-0.0286217462271452,-0.999583423137665,-0.00371625181287527,-0.029975138604641,-0.999549508094788,-0.00153993582352996,-0.00780662382021546,-0.999286651611328,0.0369493588805199,0.00319642433896661,-0.999813854694366,0.0190277323126793,-0.108481861650944,0.00198564701713622,0.994096457958221,
- 0.0387996882200241,-0.0177793875336647,0.999088883399963,0.99965626001358,-0.0125938076525927,0.0229932479560375,0.997261881828308,0.0663718208670616,0.0326104275882244,0.0281820464879274,0.0171250998973846,0.999456167221069,0.0387996882200241,-0.0177793875336647,0.999088883399963,0.00319642433896661,-0.999813854694366,0.0190277323126793,0.99965626001358,-0.0125938076525927,0.0229932479560375,-0.00780662382021546,-0.999286651611328,0.0369493588805199,-0.999564588069916,0.00392234185710549,0.0292409714311361,-0.029975138604641,-0.999549508094788,-0.00153993582352996,-0.108481861650944,0.00198564701713622,0.994096457958221,-0.999564588069916,0.00392234185710549,0.0292409714311361,-0.00780662382021546,-0.999286651611328,0.0369493588805199,0.00319642433896661,-0.999813854694366,0.0190277323126793,0.0217330250889063,-0.999639868736267,-0.0157373249530792,0.99965626001358,-0.0125938076525927,0.0229932479560375,0.999467670917511,0.00309313833713531,-0.0324779711663723,0.998333215713501,0.0493993759155273,-0.0298395957797766,0.997261881828308,0.0663718208670616,0.0326104275882244,0.99965626001358,-0.0125938076525927,0.0229932479560375,-0.108481861650944,0.00198564701713622,0.994096457958221,0.0387996882200241,-0.0177793875336647,0.999088883399963,0.0281820464879274,0.0171250998973846,0.999456167221069,-0.0844966545701027,0.0408282019197941,0.995586931705475,-0.0692039653658867,0.0191461127251387,-0.997418820858002,0.020693713799119,0.0245204698294401,-0.99948513507843,0.0181282833218575,-0.0768614038825035,-0.996876895427704,-0.0505628027021885,-0.0392246246337891,-0.997950434684753,-0.108481861650944,0.00198564701713622,0.994096457958221,-0.0844966545701027,0.0408282019197941,0.995586931705475,-0.998808860778809,0.037903293967247,0.0307284127920866,-0.999564588069916,0.00392234185710549,0.0292409714311361,0.99965626001358,-0.0125938076525927,0.0229932479560375,0.0217330250889063,-0.999639868736267,-0.0157373249530792,0.999467670917511,0.00309313833713531,-0.0324779711663723,-0.998808860778809,0.037903293967247,0.0307284127920866,
- -0.998298346996307,0.0517910979688168,-0.0267988052219152,-0.999135911464691,0.0132547970861197,-0.0393903478980064,-0.999564588069916,0.00392234185710549,0.0292409714311361,-0.914948880672455,0.391618698835373,-0.0974849686026573,-0.125998839735985,0.0307013839483261,-0.991555213928223,-0.998298346996307,0.0517910979688168,-0.0267988052219152,-0.0844966545701027,0.0408282019197941,0.995586931705475,0.0281820464879274,0.0171250998973846,0.999456167221069,-0.022529810667038,-0.0988103076815605,0.994851231575012,-0.0821841582655907,-0.306032299995422,0.948467135429382,0.998333215713501,0.0493993759155273,-0.0298395957797766,0.020693713799119,0.0245204698294401,-0.99948513507843,-0.000417871284298599,0.191797003149986,-0.981434464454651,0.709700345993042,0.704273760318756,-0.0179961491376162,-0.998808860778809,0.037903293967247,0.0307284127920866,-0.0844966545701027,0.0408282019197941,0.995586931705475,-0.0821841582655907,-0.306032299995422,0.948467135429382,-0.962565839290619,-0.269834995269775,0.0256171841174364,-0.998808860778809,0.037903293967247,0.0307284127920866,-0.0821841582655907,-0.306032299995422,0.948467135429382,-0.999135911464691,0.0132547970861197,-0.0393903478980064,-0.998298346996307,0.0517910979688168,-0.0267988052219152,-0.0692039653658867,0.0191461127251387,-0.997418820858002,-0.0505628027021885,-0.0392246246337891,-0.997950434684753,-0.998298346996307,0.0517910979688168,-0.0267988052219152,-0.962565839290619,-0.269834995269775,0.0256171841174364,-0.914948880672455,0.391618698835373,-0.0974849686026573,0.020693713799119,0.0245204698294401,-0.99948513507843,-0.0692039653658867,0.0191461127251387,-0.997418820858002,-0.125998839735985,0.0307013839483261,-0.991555213928223,-0.000417871284298599,0.191797003149986,-0.981434464454651,-0.998298346996307,0.0517910979688168,-0.0267988052219152,-0.998808860778809,0.037903293967247,0.0307284127920866,-0.962565839290619,-0.269834995269775,0.0256171841174364,0.709700345993042,0.704273760318756,-0.0179961491376162,0.751266896724701,0.659998416900635,0.000460174167528749,
- 0.997261881828308,0.0663718208670616,0.0326104275882244,0.998333215713501,0.0493993759155273,-0.0298395957797766,0.0281820464879274,0.0171250998973846,0.999456167221069,0.997261881828308,0.0663718208670616,0.0326104275882244,-0.022529810667038,-0.0988103076815605,0.994851231575012,0.00319642433896661,-0.999813854694366,0.0190277323126793,-0.00780662382021546,-0.999286651611328,0.0369493588805199,-0.029975138604641,-0.999549508094788,-0.00153993582352996,-0.0286217462271452,-0.999583423137665,-0.00371625181287527,-0.00554717006161809,-0.999748229980469,-0.0217421371489763,0.0217330250889063,-0.999639868736267,-0.0157373249530792,-0.999135911464691,0.0132547970861197,-0.0393903478980064,-0.0505628027021885,-0.0392246246337891,-0.997950434684753,-0.00554717006161809,-0.999748229980469,-0.0217421371489763,-0.0286217462271452,-0.999583423137665,-0.00371625181287527,0.0217330250889063,-0.999639868736267,-0.0157373249530792,0.0181282833218575,-0.0768614038825035,-0.996876895427704,0.999467670917511,0.00309313833713531,-0.0324779711663723,0.0217330250889063,-0.999639868736267,-0.0157373249530792,-0.00554717006161809,-0.999748229980469,-0.0217421371489763,-0.0505628027021885,-0.0392246246337891,-0.997950434684753,0.0181282833218575,-0.0768614038825035,-0.996876895427704,0.999574244022369,0.00574691127985716,-0.0286065507680178,0.709700345993042,0.704273760318756,-0.0179961491376162,-0.000417871284298599,0.191797003149986,-0.981434464454651,0.959495067596436,0.281536400318146,0.0103187309578061,0.960048913955688,0.277504473924637,-0.036016870290041,0.993992507457733,0.0985697954893112,0.0475696176290512,0.9715336561203,-0.236523017287254,0.0133935278281569,0.997687220573425,0.0605354569852352,0.0309133734554052,0.997857749462128,0.0587176494300365,-0.0288452841341496,0.00637027760967612,-0.00387325277552009,0.99997216463089,0.0489822626113892,0.0281172432005405,0.99840384721756,0.997687220573425,0.0605354569852352,0.0309133734554052,0.9715336561203,-0.236523017287254,0.0133935278281569,-0.0797465369105339,0.0270010083913803,0.99644947052002,
- 0.0489822626113892,0.0281172432005405,0.99840384721756,0.00637027760967612,-0.00387325277552009,0.99997216463089,-0.985580861568451,-0.169205203652382,-9.67832456808537e-005,0.0132561111822724,-0.0516648702323437,0.998576462268829,-0.197910949587822,-0.980004727840424,0.020539179444313,-0.954482972621918,-0.298039644956589,-0.0116079123690724,-0.925867259502411,-0.377000331878662,-0.0253085568547249,-0.956287324428558,-0.290754348039627,0.0312489122152328,0.0832083374261856,0.0235666185617447,-0.996253490447998,-0.0241687316447496,-0.00718437088653445,-0.999682009220123,-0.027741027995944,0.00326457992196083,-0.999609708786011,-0.00725283659994602,0.0328032597899437,-0.999435544013977,0.0778463706374168,0.0434923507273197,-0.996016204357147,-0.571336925029755,-0.819588661193848,-0.0429930202662945,-0.974881827831268,-0.222569927573204,-0.00824846606701612,-0.973496735095978,-0.226433351635933,0.0321262143552303,-0.998298346996307,0.0517910979688168,-0.0267988052219152,-0.125998839735985,0.0307013839483261,-0.991555213928223,-0.0692039653658867,0.0191461127251387,-0.997418820858002,0.372101575136185,0.92811530828476,-0.0119276102632284,0.565341293811798,0.824156284332275,-0.0339933596551418,0.879747688770294,0.474322557449341,0.0325893126428127,0.233926221728325,0.965508639812469,0.114330768585205,0.565341293811798,0.824156284332275,-0.0339933596551418,0.0345290452241898,0.0285861045122147,-0.998994708061218,-0.0255162175744772,0.0534717664122581,-0.99824333190918,0.513424396514893,0.857382953166962,-0.0359163843095303,0.960048913955688,0.277504473924637,-0.036016870290041,0.932269155979156,-0.361589103937149,-0.0112945884466171,0.993992507457733,0.0985697954893112,0.0475696176290512,0.313907265663147,-0.37541925907135,-0.872079491615295,0.932269155979156,-0.361589103937149,-0.0112945884466171,0.960048913955688,0.277504473924637,-0.036016870290041,0.0778463706374168,0.0434923507273197,-0.996016204357147,0.313907265663147,-0.37541925907135,-0.872079491615295,0.960048913955688,0.277504473924637,-0.036016870290041,-0.818345010280609,-0.573309302330017,0.0403493456542492,
- -0.819048941135406,-0.57290118932724,-0.030711829662323,-0.808960735797882,-0.587055802345276,-0.0307905673980713,-0.790842533111572,-0.610849559307098,0.0378257371485233,0.0250136405229568,0.0348028652369976,0.999081134796143,0.0562989562749863,-0.0566334649920464,0.996806442737579,-0.12906439602375,0.235045567154884,0.963377356529236,0.0562989562749863,-0.0566334649920464,0.996806442737579,0.0479936003684998,0.0164416581392288,0.998712241649628,-0.12906439602375,0.235045567154884,0.963377356529236,0.052546288818121,-0.0141820972785354,-0.998517751693726,0.313907265663147,-0.37541925907135,-0.872079491615295,0.0175414830446243,-0.133272439241409,-0.990924179553986,-0.027741027995944,0.00326457992196083,-0.999609708786011,-0.0241687316447496,-0.00718437088653445,-0.999682009220123,-0.954482972621918,-0.298039644956589,-0.0116079123690724,-0.965734243392944,-0.258592873811722,-0.0220723692327738,-0.00725283659994602,0.0328032597899437,-0.999435544013977,-0.027741027995944,0.00326457992196083,-0.999609708786011,-0.965734243392944,-0.258592873811722,-0.0220723692327738,-0.0328370817005634,0.004301852080971,-0.999451518058777,-0.0547800660133362,-0.0113169550895691,-0.998434364795685,-0.99965226650238,-0.014517568051815,-0.0220150388777256,-0.999945402145386,-0.00242003635503352,-0.0101664084941149,-0.99965226650238,-0.014517568051815,-0.0220150388777256,-0.0547800660133362,-0.0113169550895691,-0.998434364795685,-0.0582436583936214,-0.0500292479991913,-0.997048079967499,-0.998371720314026,-0.0545573495328426,-0.0166530329734087,-0.0483585186302662,0.00303176324814558,0.998825430870056,-0.0252920184284449,0.0609825141727924,0.997818350791931,-0.309693157672882,0.169259756803513,0.935650169849396,-0.593935906887054,0.246851816773415,0.765705108642578,0.0132561111822724,-0.0516648702323437,0.998576462268829,-0.593935906887054,0.246851816773415,0.765705108642578,-0.309693157672882,0.169259756803513,0.935650169849396,0.751266896724701,0.659998416900635,0.000460174167528749,0.999498665332794,0.00567036727443337,0.0311500336974859,
- -0.022529810667038,-0.0988103076815605,0.994851231575012,0.997261881828308,0.0663718208670616,0.0326104275882244,0.751266896724701,0.659998416900635,0.000460174167528749,-0.022529810667038,-0.0988103076815605,0.994851231575012,0.543323159217834,0.839304685592651,0.0191701408475637,0.879747688770294,0.474322557449341,0.0325893126428127,0.565341293811798,0.824156284332275,-0.0339933596551418,0.543323159217834,0.839304685592651,0.0191701408475637,0.150795564055443,0.0775383785367012,0.985519409179688,0.233926221728325,0.965508639812469,0.114330768585205,0.999839544296265,-0.0107534788548946,-0.014324851334095,0.999872624874115,0.00729225808754563,-0.0141971791163087,0.999239921569824,0.0204460173845291,0.0331879407167435,0.999374270439148,-0.00794919673353434,0.0344659462571144,0.999381601810455,0.0150102749466896,0.0318000838160515,0.0411211438477039,0.0268739983439446,0.998792707920074,0.0423386730253696,-0.00951193831861019,0.999058067798615,0.996555387973785,-0.0772100836038589,0.0302674137055874,0.0298155080527067,0.99923437833786,0.0253340769559145,0.998612582683563,0.0358638949692249,0.0385584682226181,0.999553024768829,0.0295263696461916,-0.0046814177185297,0.0385598242282867,0.999069631099701,-0.0193110574036837,-0.892082929611206,0.45079317688942,-0.0312021393328905,-0.999957501888275,0.00319527322426438,0.00864713732153177,-0.999380111694336,0.00359782250598073,-0.0350212045013905,0.578559815883636,-0.815579652786255,-0.00991902779787779,0.996857404708862,-0.0741844028234482,-0.0277841445058584,0.996555387973785,-0.0772100836038589,0.0302674137055874,0.578047513961792,-0.815901041030884,0.0129026081413031,-0.999808073043823,-0.0169866625219584,-0.00976339168846607,-0.760032474994659,-0.634432017803192,-0.140877559781075,-0.617736399173737,-0.786089718341827,0.021556444466114,0.0347527675330639,-0.0215178932994604,0.999164223670959,0.042148768901825,0.00418695295229554,0.999102473258972,-0.0426439978182316,0.00715376064181328,0.999064683914185,-0.0332399271428585,-0.0150462361052632,0.999334156513214,-0.999543070793152,-0.014989566989243,0.0262509286403656,
- -0.999672710895538,0.00936728157103062,0.0238062739372253,-0.999892950057983,0.00914727710187435,-0.011427341029048,-0.999816238880157,-0.00402822671458125,-0.0187376365065575,-0.999808073043823,-0.0169866625219584,-0.00976339168846607,-0.955035448074341,-0.295249968767166,-0.0271060541272163,-0.999892950057983,0.00914727710187435,-0.011427341029048,-0.999672710895538,0.00936728157103062,0.0238062739372253,-0.0502375327050686,-0.0235055722296238,0.998460710048676,0.0178101360797882,-0.0160033609718084,0.99971330165863,0.0214855819940567,0.0219463221728802,0.999528288841248,-0.0483667477965355,0.0235258899629116,0.998552560806274,-0.996306836605072,-0.0705761760473251,0.0489045232534409,-0.999263048171997,-0.0248781312257051,-0.0292300134897232,-0.650500595569611,-0.759445250034332,-0.00958353560417891,-0.745987236499786,-0.66474449634552,0.0402232967317104,-0.892082929611206,0.45079317688942,-0.0312021393328905,-0.998844683170319,0.0361513756215572,-0.0316600687801838,-0.998181760311127,0.0457739569246769,0.0392176136374474,-0.0990822091698647,0.221380054950714,-0.970140993595123,-0.0232912003993988,-0.0700315982103348,-0.997272789478302,-0.0666037350893021,-0.00905507616698742,-0.997738361358643,0.00408528791740537,0.0305930897593498,-0.99952358007431,-0.999648690223694,0.0174714047461748,-0.0199285801500082,-0.99983012676239,0.0161244999617338,-0.00892161391675472,-0.999543070793152,-0.014989566989243,0.0262509286403656,-0.0753167793154716,-0.0208479426801205,0.996941745281219,-0.0877849385142326,0.0285662449896336,0.995729744434357,-0.999672710895538,0.00936728157103062,0.0238062739372253,-0.650500595569611,-0.759445250034332,-0.00958353560417891,-0.073939248919487,-0.064097486436367,-0.995200753211975,-0.117082998156548,-0.255310207605362,-0.959743916988373,-0.0370359160006046,0.0872764736413956,-0.995495438575745,0.0658575221896172,-0.00544421840459108,-0.997814178466797,0.0427716299891472,0.520253717899323,-0.852939903736115,-0.998181760311127,0.0457739569246769,0.0392176136374474,-0.0426439978182316,0.00715376064181328,0.999064683914185,
- -0.0225811842828989,0.0540709756314754,0.99828177690506,-0.058245737105608,-0.0146151147782803,-0.998195290565491,0.0258910469710827,-0.00871116854250431,-0.999626815319061,-0.0232912003993988,-0.0700315982103348,-0.997272789478302,-0.0990822091698647,0.221380054950714,-0.970140993595123,-0.0187440291047096,0.998911678791046,-0.0427114889025688,-0.0647662580013275,0.997507870197296,-0.0279905721545219,-0.0509771406650543,0.998440444469452,0.0227590315043926,-0.0401353500783443,0.00541551737114787,-0.999179542064667,-0.0370359160006046,0.0872764736413956,-0.995495438575745,0.0331084318459034,0.00834763702005148,-0.999416947364807,0.0204062610864639,-0.016267042607069,-0.999659478664398,0.999872624874115,0.00729225808754563,-0.0141971791163087,0.999839544296265,-0.0107534788548946,-0.014324851334095,0.021054258570075,-0.0475682318210602,-0.998646080493927,-0.0666037350893021,-0.00905507616698742,-0.997738361358643,-0.0232912003993988,-0.0700315982103348,-0.997272789478302,0.0204062610864639,-0.016267042607069,-0.999659478664398,-0.0483667477965355,0.0235258899629116,0.998552560806274,0.0214855819940567,0.0219463221728802,0.999528288841248,-0.0330123044550419,0.148109078407288,0.988419890403748,-0.0332399271428585,-0.0150462361052632,0.999334156513214,-0.745987236499786,-0.66474449634552,0.0402232967317104,-0.0330123044550419,0.148109078407288,0.988419890403748,0.0298155080527067,0.99923437833786,0.0253340769559145,0.0385598242282867,0.999069631099701,-0.0193110574036837,-0.0187440291047096,0.998911678791046,-0.0427114889025688,-0.0509771406650543,0.998440444469452,0.0227590315043926,0.0475330390036106,-0.017554996535182,-0.998715341091156,-0.0498475059866905,-0.016007823869586,-0.998628497123718,-0.0187440291047096,0.998911678791046,-0.0427114889025688,-0.650500595569611,-0.759445250034332,-0.00958353560417891,-0.999448895454407,0.00924140680581331,0.031883928924799,-0.745987236499786,-0.66474449634552,0.0402232967317104,-0.0330123044550419,0.148109078407288,0.988419890403748,-0.745987236499786,-0.66474449634552,0.0402232967317104,
- -0.0483667477965355,0.0235258899629116,0.998552560806274,0.999239921569824,0.0204460173845291,0.0331879407167435,0.042148768901825,0.00418695295229554,0.999102473258972,0.0347527675330639,-0.0215178932994604,0.999164223670959,0.999374270439148,-0.00794919673353434,0.0344659462571144,0.999239921569824,0.0204460173845291,0.0331879407167435,0.81958419084549,-0.572778463363647,-0.0143726104870439,0.921563923358917,-0.368100106716156,0.123377822339535,0.999859094619751,-0.00788453314453363,0.0148220909759402,0.999138295650482,-0.00341190886683762,-0.0413636974990368,0.998983383178711,0.0249436888843775,-0.0375504530966282,0.999474942684174,0.0293214395642281,0.0137868514284492,0.0376630201935768,-0.00154634425416589,0.999289333820343,-0.0392172895371914,-0.00514717493206263,0.999217450618744,0.131105273962021,-0.129534855484962,0.982869327068329,0.0423386730253696,-0.00951193831861019,0.999058067798615,0.0042674308642745,-0.706542491912842,0.707657754421234,0.996555387973785,-0.0772100836038589,0.0302674137055874,0.78584486246109,0.617245674133301,0.0381525307893753,0.0347527675330639,-0.0215178932994604,0.999164223670959,0.0240874439477921,0.0816933140158653,0.996366381645203,-0.999957501888275,0.00319527322426438,0.00864713732153177,-0.892082929611206,0.45079317688942,-0.0312021393328905,-0.879704296588898,0.47492989897728,0.0237036254256964,-0.0225811842828989,0.0540709756314754,0.99828177690506,0.131105273962021,-0.129534855484962,0.982869327068329,-0.0392172895371914,-0.00514717493206263,0.999217450618744,0.78584486246109,0.617245674133301,0.0381525307893753,0.0214855819940567,0.0219463221728802,0.999528288841248,0.999474942684174,0.0293214395642281,0.0137868514284492,0.0376630201935768,-0.00154634425416589,0.999289333820343,0.998488783836365,-0.0474710837006569,0.027687719091773,0.999671697616577,-0.00521316146478057,0.0250861514359713,0.0350006967782974,0.0356337763369083,0.998751759529114,0.0376630201935768,-0.00154634425416589,0.999289333820343,0.131105273962021,-0.129534855484962,0.982869327068329,0.998488783836365,-0.0474710837006569,0.027687719091773,
- 0.131105273962021,-0.129534855484962,0.982869327068329,0.999239921569824,0.0204460173845291,0.0331879407167435,0.921563923358917,-0.368100106716156,0.123377822339535,-0.0244265776127577,-0.716539680957794,0.69711846113205,-0.0753167793154716,-0.0208479426801205,0.996941745281219,-0.999543070793152,-0.014989566989243,0.0262509286403656,-0.879704296588898,0.47492989897728,0.0237036254256964,-0.892082929611206,0.45079317688942,-0.0312021393328905,-0.998181760311127,0.0457739569246769,0.0392176136374474,-0.117082998156548,-0.255310207605362,-0.959743916988373,-0.073939248919487,-0.064097486436367,-0.995200753211975,0.021054258570075,-0.0475682318210602,-0.998646080493927,-0.0232912003993988,-0.0700315982103348,-0.997272789478302,0.999872624874115,0.00729225808754563,-0.0141971791163087,0.0204062610864639,-0.016267042607069,-0.999659478664398,-0.0232912003993988,-0.0700315982103348,-0.997272789478302,0.0258910469710827,-0.00871116854250431,-0.999626815319061,0.995543003082275,-0.0897065177559853,-0.0291051175445318,0.81958419084549,-0.572778463363647,-0.0143726104870439,0.0427716299891472,0.520253717899323,-0.852939903736115,0.0658575221896172,-0.00544421840459108,-0.997814178466797,0.999138295650482,-0.00341190886683762,-0.0413636974990368,0.0427716299891472,0.520253717899323,-0.852939903736115,0.0331084318459034,0.00834763702005148,-0.999416947364807,-0.0370359160006046,0.0872764736413956,-0.995495438575745,0.996857404708862,-0.0741844028234482,-0.0277841445058584,0.0342880934476852,-0.0254921093583107,-0.999086856842041,0.0331084318459034,0.00834763702005148,-0.999416947364807,0.999442219734192,0.0152596496045589,-0.029704550281167,-0.0655406415462494,0.0221394058316946,0.997604370117188,0.0298155080527067,0.99923437833786,0.0253340769559145,-0.0509771406650543,0.998440444469452,0.0227590315043926,0.81958419084549,-0.572778463363647,-0.0143726104870439,0.999872624874115,0.00729225808754563,-0.0141971791163087,-0.0232912003993988,-0.0700315982103348,-0.997272789478302,0.999239921569824,0.0204460173845291,0.0331879407167435,
- 0.999872624874115,0.00729225808754563,-0.0141971791163087,0.81958419084549,-0.572778463363647,-0.0143726104870439,0.00408528791740537,0.0305930897593498,-0.99952358007431,-0.99983012676239,0.0161244999617338,-0.00892161391675472,-0.650500595569611,-0.759445250034332,-0.00958353560417891,-0.0813697427511215,-0.362280458211899,0.928510546684265,-0.0502375327050686,-0.0235055722296238,0.998460710048676,-0.940247058868408,-0.340242356061935,0.0130604887381196,-0.998181760311127,0.0457739569246769,0.0392176136374474,-0.0225811842828989,0.0540709756314754,0.99828177690506,-0.879704296588898,0.47492989897728,0.0237036254256964,-0.0225811842828989,0.0540709756314754,0.99828177690506,-0.999957501888275,0.00319527322426438,0.00864713732153177,-0.879704296588898,0.47492989897728,0.0237036254256964,-0.650500595569611,-0.759445250034332,-0.00958353560417891,-0.117082998156548,-0.255310207605362,-0.959743916988373,0.00408528791740537,0.0305930897593498,-0.99952358007431,-0.0401353500783443,0.00541551737114787,-0.999179542064667,0.0331084318459034,0.00834763702005148,-0.999416947364807,0.0342880934476852,-0.0254921093583107,-0.999086856842041,-0.0463465638458729,-0.050267681479454,-0.997659862041473,-0.0529804974794388,-0.0108174439519644,-0.998536884784698,-0.0392172895371914,-0.00514717493206263,0.999217450618744,-0.999957501888275,0.00319527322426438,0.00864713732153177,-0.0225811842828989,0.0540709756314754,0.99828177690506,-0.999543070793152,-0.014989566989243,0.0262509286403656,-0.617736399173737,-0.786089718341827,0.021556444466114,-0.0244265776127577,-0.716539680957794,0.69711846113205,-0.999808073043823,-0.0169866625219584,-0.00976339168846607,-0.617736399173737,-0.786089718341827,0.021556444466114,-0.999543070793152,-0.014989566989243,0.0262509286403656,0.0658575221896172,-0.00544421840459108,-0.997814178466797,0.07069331407547,0.0159777086228132,-0.99737012386322,0.998983383178711,0.0249436888843775,-0.0375504530966282,0.999138295650482,-0.00341190886683762,-0.0413636974990368,-0.999672710895538,0.00936728157103062,0.0238062739372253,
- -0.0877849385142326,0.0285662449896336,0.995729744434357,-0.0813697427511215,-0.362280458211899,0.928510546684265,-0.940247058868408,-0.340242356061935,0.0130604887381196,-0.940247058868408,-0.340242356061935,0.0130604887381196,-0.955035448074341,-0.295249968767166,-0.0271060541272163,-0.999672710895538,0.00936728157103062,0.0238062739372253,-0.996306836605072,-0.0705761760473251,0.0489045232534409,-0.745987236499786,-0.66474449634552,0.0402232967317104,-0.0332399271428585,-0.0150462361052632,0.999334156513214,-0.892082929611206,0.45079317688942,-0.0312021393328905,-0.0990822091698647,0.221380054950714,-0.970140993595123,-0.998844683170319,0.0361513756215572,-0.0316600687801838,-0.99873548746109,-0.0266560763120651,-0.042625430971384,-0.0679297745227814,-0.0720810368657112,-0.995082855224609,-0.0342393554747105,-0.0910244286060333,-0.995259940624237,-0.998959541320801,-0.0382818356156349,-0.0247854441404343,0.042148768901825,0.00418695295229554,0.999102473258972,0.999239921569824,0.0204460173845291,0.0331879407167435,0.131105273962021,-0.129534855484962,0.982869327068329,-0.999263048171997,-0.0248781312257051,-0.0292300134897232,-0.998844683170319,0.0361513756215572,-0.0316600687801838,-0.0666037350893021,-0.00905507616698742,-0.997738361358643,-0.073939248919487,-0.064097486436367,-0.995200753211975,-0.998844683170319,0.0361513756215572,-0.0316600687801838,-0.0990822091698647,0.221380054950714,-0.970140993595123,-0.0666037350893021,-0.00905507616698742,-0.997738361358643,-0.0426439978182316,0.00715376064181328,0.999064683914185,0.131105273962021,-0.129534855484962,0.982869327068329,-0.0225811842828989,0.0540709756314754,0.99828177690506,0.042148768901825,0.00418695295229554,0.999102473258972,0.131105273962021,-0.129534855484962,0.982869327068329,-0.0426439978182316,0.00715376064181328,0.999064683914185,-0.0498475059866905,-0.016007823869586,-0.998628497123718,-0.0647662580013275,0.997507870197296,-0.0279905721545219,-0.0187440291047096,0.998911678791046,-0.0427114889025688,-0.0647662580013275,0.997507870197296,-0.0279905721545219,
- -0.999714314937592,-0.000718303956091404,-0.0238929819315672,-0.896198153495789,0.443439334630966,-0.013800953514874,-0.0502375327050686,-0.0235055722296238,0.998460710048676,-0.999408304691315,-0.0168233644217253,0.0300028454512358,-0.940247058868408,-0.340242356061935,0.0130604887381196,0.922398388385773,0.385989636182785,-0.0138988923281431,0.945046961307526,0.326742023229599,0.011224215850234,0.999442219734192,0.0152596496045589,-0.029704550281167,-0.0498475059866905,-0.016007823869586,-0.998628497123718,-0.999714314937592,-0.000718303956091404,-0.0238929819315672,-0.0647662580013275,0.997507870197296,-0.0279905721545219,0.0347527675330639,-0.0215178932994604,0.999164223670959,0.78584486246109,0.617245674133301,0.0381525307893753,0.999374270439148,-0.00794919673353434,0.0344659462571144,0.999374270439148,-0.00794919673353434,0.0344659462571144,0.78584486246109,0.617245674133301,0.0381525307893753,0.999839544296265,-0.0107534788548946,-0.014324851334095,-0.999686777591705,-0.0236620046198368,-0.00815644580870867,-0.0370359160006046,0.0872764736413956,-0.995495438575745,-0.955035448074341,-0.295249968767166,-0.0271060541272163,0.00408528791740537,0.0305930897593498,-0.99952358007431,-0.117082998156548,-0.255310207605362,-0.959743916988373,0.07069331407547,0.0159777086228132,-0.99737012386322,-0.0187440291047096,0.998911678791046,-0.0427114889025688,0.0385598242282867,0.999069631099701,-0.0193110574036837,0.0475330390036106,-0.017554996535182,-0.998715341091156,0.021054258570075,-0.0475682318210602,-0.998646080493927,0.999839544296265,-0.0107534788548946,-0.014324851334095,0.870041906833649,0.492829322814941,-0.0120974071323872,0.116515807807446,-0.0867362096905708,-0.989394187927246,0.0214855819940567,0.0219463221728802,0.999528288841248,0.78584486246109,0.617245674133301,0.0381525307893753,0.0240874439477921,0.0816933140158653,0.996366381645203,0.0385598242282867,0.999069631099701,-0.0193110574036837,0.999553024768829,0.0295263696461916,-0.0046814177185297,0.0475330390036106,-0.017554996535182,-0.998715341091156,
- -0.0655406415462494,0.0221394058316946,0.997604370117188,-0.0509771406650543,0.998440444469452,0.0227590315043926,-0.999630510807037,0.0157853942364454,0.0221281461417675,0.78584486246109,0.617245674133301,0.0381525307893753,0.870041906833649,0.492829322814941,-0.0120974071323872,0.999839544296265,-0.0107534788548946,-0.014324851334095,-0.0509771406650543,0.998440444469452,0.0227590315043926,-0.0647662580013275,0.997507870197296,-0.0279905721545219,-0.896198153495789,0.443439334630966,-0.013800953514874,-0.0509771406650543,0.998440444469452,0.0227590315043926,-0.896198153495789,0.443439334630966,-0.013800953514874,-0.999630510807037,0.0157853942364454,0.0221281461417675,0.0178101360797882,-0.0160033609718084,0.99971330165863,0.945046961307526,0.326742023229599,0.011224215850234,0.999859094619751,-0.00788453314453363,0.0148220909759402,-0.0330123044550419,0.148109078407288,0.988419890403748,0.0347527675330639,-0.0215178932994604,0.999164223670959,-0.0332399271428585,-0.0150462361052632,0.999334156513214,-0.0483667477965355,0.0235258899629116,0.998552560806274,-0.745987236499786,-0.66474449634552,0.0402232967317104,-0.999448895454407,0.00924140680581331,0.031883928924799,-0.999448895454407,0.00924140680581331,0.031883928924799,-0.999408304691315,-0.0168233644217253,0.0300028454512358,-0.0502375327050686,-0.0235055722296238,0.998460710048676,-0.0483667477965355,0.0235258899629116,0.998552560806274,0.0178101360797882,-0.0160033609718084,0.99971330165863,0.0339869149029255,-0.0174409225583076,0.999270081520081,0.945046961307526,0.326742023229599,0.011224215850234,-0.0877849385142326,0.0285662449896336,0.995729744434357,-0.0753167793154716,-0.0208479426801205,0.996941745281219,0.0423386730253696,-0.00951193831861019,0.999058067798615,0.0411211438477039,0.0268739983439446,0.998792707920074,-0.0244265776127577,-0.716539680957794,0.69711846113205,0.0042674308642745,-0.706542491912842,0.707657754421234,0.0423386730253696,-0.00951193831861019,0.999058067798615,-0.0753167793154716,-0.0208479426801205,0.996941745281219,0.0228698495775461,-0.686527252197266,-0.72674423456192,
- -0.134072065353394,-0.689439654350281,-0.711827039718628,-0.0463465638458729,-0.050267681479454,-0.997659862041473,0.0342880934476852,-0.0254921093583107,-0.999086856842041,-0.760032474994659,-0.634432017803192,-0.140877559781075,-0.999808073043823,-0.0169866625219584,-0.00976339168846607,-0.0463465638458729,-0.050267681479454,-0.997659862041473,-0.134072065353394,-0.689439654350281,-0.711827039718628,-0.955035448074341,-0.295249968767166,-0.0271060541272163,-0.0401353500783443,0.00541551737114787,-0.999179542064667,-0.999892950057983,0.00914727710187435,-0.011427341029048,-0.043300423771143,-0.00139666884206235,-0.999061167240143,0.0658575221896172,-0.00544421840459108,-0.997814178466797,-0.0370359160006046,0.0872764736413956,-0.995495438575745,-0.117082998156548,-0.255310207605362,-0.959743916988373,0.116515807807446,-0.0867362096905708,-0.989394187927246,0.07069331407547,0.0159777086228132,-0.99737012386322,0.922398388385773,0.385989636182785,-0.0138988923281431,0.999442219734192,0.0152596496045589,-0.029704550281167,0.0331084318459034,0.00834763702005148,-0.999416947364807,0.922398388385773,0.385989636182785,-0.0138988923281431,0.0331084318459034,0.00834763702005148,-0.999416947364807,0.0427716299891472,0.520253717899323,-0.852939903736115,0.0427716299891472,0.520253717899323,-0.852939903736115,0.999138295650482,-0.00341190886683762,-0.0413636974990368,0.922398388385773,0.385989636182785,-0.0138988923281431,-0.0655406415462494,0.0221394058316946,0.997604370117188,0.0475712902843952,0.0188515298068523,0.998690009117126,0.0298155080527067,0.99923437833786,0.0253340769559145,0.998612582683563,0.0358638949692249,0.0385584682226181,0.0298155080527067,0.99923437833786,0.0253340769559145,0.0475712902843952,0.0188515298068523,0.998690009117126,-0.0370359160006046,0.0872764736413956,-0.995495438575745,-0.0401353500783443,0.00541551737114787,-0.999179542064667,-0.955035448074341,-0.295249968767166,-0.0271060541272163,-0.999686777591705,-0.0236620046198368,-0.00815644580870867,-0.043300423771143,-0.00139666884206235,-0.999061167240143,
- -0.0370359160006046,0.0872764736413956,-0.995495438575745,-0.99983012676239,0.0161244999617338,-0.00892161391675472,-0.999648690223694,0.0174714047461748,-0.0199285801500082,-0.999686777591705,-0.0236620046198368,-0.00815644580870867,-0.999408304691315,-0.0168233644217253,0.0300028454512358,-0.999448895454407,0.00924140680581331,0.031883928924799,0.998488783836365,-0.0474710837006569,0.027687719091773,0.921563923358917,-0.368100106716156,0.123377822339535,0.808315873146057,-0.587656259536743,0.0358541049063206,0.0339869149029255,-0.0174409225583076,0.999270081520081,-0.0813697427511215,-0.362280458211899,0.928510546684265,-0.0877849385142326,0.0285662449896336,0.995729744434357,0.0178101360797882,-0.0160033609718084,0.99971330165863,-0.0813697427511215,-0.362280458211899,0.928510546684265,0.0339869149029255,-0.0174409225583076,0.999270081520081,0.0178101360797882,-0.0160033609718084,0.99971330165863,-0.0502375327050686,-0.0235055722296238,0.998460710048676,-0.0813697427511215,-0.362280458211899,0.928510546684265,0.996857404708862,-0.0741844028234482,-0.0277841445058584,0.999442219734192,0.0152596496045589,-0.029704550281167,0.999381601810455,0.0150102749466896,0.0318000838160515,0.996555387973785,-0.0772100836038589,0.0302674137055874,0.999859094619751,-0.00788453314453363,0.0148220909759402,0.999474942684174,0.0293214395642281,0.0137868514284492,0.0214855819940567,0.0219463221728802,0.999528288841248,0.0178101360797882,-0.0160033609718084,0.99971330165863,0.0204062610864639,-0.016267042607069,-0.999659478664398,0.021054258570075,-0.0475682318210602,-0.998646080493927,-0.073939248919487,-0.064097486436367,-0.995200753211975,-0.0666037350893021,-0.00905507616698742,-0.997738361358643,-0.0426439978182316,0.00715376064181328,0.999064683914185,-0.998181760311127,0.0457739569246769,0.0392176136374474,-0.996306836605072,-0.0705761760473251,0.0489045232534409,-0.0332399271428585,-0.0150462361052632,0.999334156513214,-0.0392172895371914,-0.00514717493206263,0.999217450618744,0.0376630201935768,-0.00154634425416589,0.999289333820343,
- 0.0350006967782974,0.0356337763369083,0.998751759529114,-0.0254888422787189,0.0448011681437492,0.998670697212219,-0.999714314937592,-0.000718303956091404,-0.0238929819315672,-0.999630510807037,0.0157853942364454,0.0221281461417675,-0.896198153495789,0.443439334630966,-0.013800953514874,-0.0628730580210686,0.0355474539101124,-0.997388303279877,-0.023948734626174,0.0383903309702873,-0.998975872993469,0.0238098464906216,0.0335085913538933,-0.999154806137085,0.0258910469710827,-0.00871116854250431,-0.999626815319061,-0.058245737105608,-0.0146151147782803,-0.998195290565491,-0.0392172895371914,-0.00514717493206263,0.999217450618744,-0.0254888422787189,0.0448011681437492,0.998670697212219,-0.999561071395874,0.0238743033260107,0.0175429992377758,-0.999957501888275,0.00319527322426438,0.00864713732153177,-0.999380111694336,0.00359782250598073,-0.0350212045013905,-0.058245737105608,-0.0146151147782803,-0.998195290565491,-0.0990822091698647,0.221380054950714,-0.970140993595123,-0.892082929611206,0.45079317688942,-0.0312021393328905,0.998488783836365,-0.0474710837006569,0.027687719091773,0.995543003082275,-0.0897065177559853,-0.0291051175445318,0.99934196472168,-0.0198299326002598,-0.0303711052983999,0.999671697616577,-0.00521316146478057,0.0250861514359713,0.996857404708862,-0.0741844028234482,-0.0277841445058584,0.0228698495775461,-0.686527252197266,-0.72674423456192,0.0342880934476852,-0.0254921093583107,-0.999086856842041,-0.999263048171997,-0.0248781312257051,-0.0292300134897232,-0.073939248919487,-0.064097486436367,-0.995200753211975,-0.650500595569611,-0.759445250034332,-0.00958353560417891,-0.999408304691315,-0.0168233644217253,0.0300028454512358,-0.955035448074341,-0.295249968767166,-0.0271060541272163,-0.940247058868408,-0.340242356061935,0.0130604887381196,0.922398388385773,0.385989636182785,-0.0138988923281431,0.999138295650482,-0.00341190886683762,-0.0413636974990368,0.999859094619751,-0.00788453314453363,0.0148220909759402,0.945046961307526,0.326742023229599,0.011224215850234,-0.999561071395874,0.0238743033260107,0.0175429992377758,
- -0.998190522193909,0.0307556111365557,-0.0516702756285667,-0.999380111694336,0.00359782250598073,-0.0350212045013905,-0.999957501888275,0.00319527322426438,0.00864713732153177,-0.889445304870605,0.299357920885086,-0.345357745885849,-0.335874199867249,0.338016837835312,-0.87916624546051,-0.0628730580210686,0.0355474539101124,-0.997388303279877,-0.998190522193909,0.0307556111365557,-0.0516702756285667,0.986263811588287,-0.14794160425663,-0.0734640881419182,-0.0144784469157457,0.195868819952011,-0.980523288249969,0.0413928143680096,-0.0646840259432793,-0.997046887874603,0.999753594398499,-0.0211242455989122,-0.00682436255738139,-0.0144784469157457,0.195868819952011,-0.980523288249969,-0.335874199867249,0.338016837835312,-0.87916624546051,-0.0342393554747105,-0.0910244286060333,-0.995259940624237,0.0413928143680096,-0.0646840259432793,-0.997046887874603,-0.889445304870605,0.299357920885086,-0.345357745885849,-0.934848666191101,0.35500380396843,0.00550835533067584,-0.998959541320801,-0.0382818356156349,-0.0247854441404343,-0.0254888422787189,0.0448011681437492,0.998670697212219,-0.0201982147991657,0.508762836456299,0.860669732093811,-0.934848666191101,0.35500380396843,0.00550835533067584,0.99934196472168,-0.0198299326002598,-0.0303711052983999,0.0238098464906216,0.0335085913538933,-0.999154806137085,-0.0144784469157457,0.195868819952011,-0.980523288249969,0.986263811588287,-0.14794160425663,-0.0734640881419182,-0.335874199867249,0.338016837835312,-0.87916624546051,-0.023948734626174,0.0383903309702873,-0.998975872993469,-0.0628730580210686,0.0355474539101124,-0.997388303279877,0.0196849964559078,0.477460771799088,0.87843257188797,0.999671697616577,-0.00521316146478057,0.0250861514359713,0.918045401573181,0.394542783498764,0.0390991345047951,-0.999561071395874,0.0238743033260107,0.0175429992377758,-0.0254888422787189,0.0448011681437492,0.998670697212219,-0.934848666191101,0.35500380396843,0.00550835533067584,-0.889445304870605,0.299357920885086,-0.345357745885849,-0.976582109928131,0.214585244655609,-0.0155098903924227,
- -0.999561071395874,0.0238743033260107,0.0175429992377758,-0.934848666191101,0.35500380396843,0.00550835533067584,-0.999380111694336,0.00359782250598073,-0.0350212045013905,-0.998190522193909,0.0307556111365557,-0.0516702756285667,-0.0628730580210686,0.0355474539101124,-0.997388303279877,-0.058245737105608,-0.0146151147782803,-0.998195290565491,-0.998959541320801,-0.0382818356156349,-0.0247854441404343,-0.0342393554747105,-0.0910244286060333,-0.995259940624237,-0.335874199867249,0.338016837835312,-0.87916624546051,-0.889445304870605,0.299357920885086,-0.345357745885849,0.0475330390036106,-0.017554996535182,-0.998715341091156,0.999553024768829,0.0295263696461916,-0.0046814177185297,0.999753594398499,-0.0211242455989122,-0.00682436255738139,0.0413928143680096,-0.0646840259432793,-0.997046887874603,-0.0498475059866905,-0.016007823869586,-0.998628497123718,0.0475330390036106,-0.017554996535182,-0.998715341091156,0.0413928143680096,-0.0646840259432793,-0.997046887874603,-0.0342393554747105,-0.0910244286060333,-0.995259940624237,-0.0679297745227814,-0.0720810368657112,-0.995082855224609,-0.0655406415462494,0.0221394058316946,0.997604370117188,-0.999630510807037,0.0157853942364454,0.0221281461417675,-0.999617695808411,-0.0135706840083003,0.0240899939090014,-0.0608114451169968,-0.0254457350820303,0.997824847698212,-0.999630510807037,0.0157853942364454,0.0221281461417675,-0.999714314937592,-0.000718303956091404,-0.0238929819315672,-0.99873548746109,-0.0266560763120651,-0.042625430971384,-0.998959541320801,-0.0382818356156349,-0.0247854441404343,-0.999617695808411,-0.0135706840083003,0.0240899939090014,0.999553024768829,0.0295263696461916,-0.0046814177185297,0.998612582683563,0.0358638949692249,0.0385584682226181,0.998915135860443,-0.0132422177121043,0.044643759727478,0.999753594398499,-0.0211242455989122,-0.00682436255738139,0.998612582683563,0.0358638949692249,0.0385584682226181,0.0475712902843952,0.0188515298068523,0.998690009117126,0.0389659069478512,-0.0231008566915989,0.998973429203033,0.998915135860443,-0.0132422177121043,0.044643759727478,
- 0.0389659069478512,-0.0231008566915989,0.998973429203033,-0.0608114451169968,-0.0254457350820303,0.997824847698212,0.0196849964559078,0.477460771799088,0.87843257188797,0.0196849964559078,0.477460771799088,0.87843257188797,0.918045401573181,0.394542783498764,0.0390991345047951,0.998915135860443,-0.0132422177121043,0.044643759727478,-0.99873548746109,-0.0266560763120651,-0.042625430971384,-0.999714314937592,-0.000718303956091404,-0.0238929819315672,-0.0498475059866905,-0.016007823869586,-0.998628497123718,-0.0679297745227814,-0.0720810368657112,-0.995082855224609,-0.998190522193909,0.0307556111365557,-0.0516702756285667,-0.976582109928131,0.214585244655609,-0.0155098903924227,-0.889445304870605,0.299357920885086,-0.345357745885849,0.0238098464906216,0.0335085913538933,-0.999154806137085,-0.023948734626174,0.0383903309702873,-0.998975872993469,-0.335874199867249,0.338016837835312,-0.87916624546051,-0.0144784469157457,0.195868819952011,-0.980523288249969,-0.998190522193909,0.0307556111365557,-0.0516702756285667,-0.999561071395874,0.0238743033260107,0.0175429992377758,-0.976582109928131,0.214585244655609,-0.0155098903924227,0.0196849964559078,0.477460771799088,0.87843257188797,0.998915135860443,-0.0132422177121043,0.044643759727478,0.0389659069478512,-0.0231008566915989,0.998973429203033,0.999671697616577,-0.00521316146478057,0.0250861514359713,0.986263811588287,-0.14794160425663,-0.0734640881419182,0.918045401573181,0.394542783498764,0.0390991345047951,-0.934848666191101,0.35500380396843,0.00550835533067584,-0.0201982147991657,0.508762836456299,0.860669732093811,-0.0608114451169968,-0.0254457350820303,0.997824847698212,0.0475712902843952,0.0188515298068523,0.998690009117126,-0.0655406415462494,0.0221394058316946,0.997604370117188,-0.0608114451169968,-0.0254457350820303,0.997824847698212,0.0389659069478512,-0.0231008566915989,0.998973429203033,0.999671697616577,-0.00521316146478057,0.0250861514359713,0.99934196472168,-0.0198299326002598,-0.0303711052983999,0.986263811588287,-0.14794160425663,-0.0734640881419182,0.986263811588287,-0.14794160425663,-0.0734640881419182,
- 0.999753594398499,-0.0211242455989122,-0.00682436255738139,0.998915135860443,-0.0132422177121043,0.044643759727478,0.986263811588287,-0.14794160425663,-0.0734640881419182,0.998915135860443,-0.0132422177121043,0.044643759727478,0.918045401573181,0.394542783498764,0.0390991345047951,0.0350006967782974,0.0356337763369083,0.998751759529114,0.999671697616577,-0.00521316146478057,0.0250861514359713,0.0196849964559078,0.477460771799088,0.87843257188797,-0.998959541320801,-0.0382818356156349,-0.0247854441404343,-0.934848666191101,0.35500380396843,0.00550835533067584,-0.999617695808411,-0.0135706840083003,0.0240899939090014,0.996857404708862,-0.0741844028234482,-0.0277841445058584,0.578559815883636,-0.815579652786255,-0.00991902779787779,0.0228698495775461,-0.686527252197266,-0.72674423456192,0.999474942684174,0.0293214395642281,0.0137868514284492,0.998983383178711,0.0249436888843775,-0.0375504530966282,0.78584486246109,0.617245674133301,0.0381525307893753,0.945046961307526,0.326742023229599,0.011224215850234,0.999381601810455,0.0150102749466896,0.0318000838160515,0.999442219734192,0.0152596496045589,-0.029704550281167,0.0339869149029255,-0.0174409225583076,0.999270081520081,0.0411211438477039,0.0268739983439446,0.998792707920074,0.999381601810455,0.0150102749466896,0.0318000838160515,0.945046961307526,0.326742023229599,0.011224215850234,-0.0877849385142326,0.0285662449896336,0.995729744434357,0.0411211438477039,0.0268739983439446,0.998792707920074,0.0339869149029255,-0.0174409225583076,0.999270081520081,-0.934848666191101,0.35500380396843,0.00550835533067584,-0.0608114451169968,-0.0254457350820303,0.997824847698212,-0.999617695808411,-0.0135706840083003,0.0240899939090014,-0.999686777591705,-0.0236620046198368,-0.00815644580870867,-0.955035448074341,-0.295249968767166,-0.0271060541272163,-0.999408304691315,-0.0168233644217253,0.0300028454512358,0.0658575221896172,-0.00544421840459108,-0.997814178466797,-0.043300423771143,-0.00139666884206235,-0.999061167240143,-0.0355990156531334,0.00991489738225937,-0.999316990375519,0.00408528791740537,0.0305930897593498,-0.99952358007431,
- 0.07069331407547,0.0159777086228132,-0.99737012386322,-0.650500595569611,-0.759445250034332,-0.00958353560417891,-0.99983012676239,0.0161244999617338,-0.00892161391675472,-0.999448895454407,0.00924140680581331,0.031883928924799,0.81958419084549,-0.572778463363647,-0.0143726104870439,0.995543003082275,-0.0897065177559853,-0.0291051175445318,0.808315873146057,-0.587656259536743,0.0358541049063206,0.921563923358917,-0.368100106716156,0.123377822339535,0.995543003082275,-0.0897065177559853,-0.0291051175445318,0.0258910469710827,-0.00871116854250431,-0.999626815319061,0.0238098464906216,0.0335085913538933,-0.999154806137085,0.99934196472168,-0.0198299326002598,-0.0303711052983999,0.998983383178711,0.0249436888843775,-0.0375504530966282,0.870041906833649,0.492829322814941,-0.0120974071323872,0.78584486246109,0.617245674133301,0.0381525307893753,0.116515807807446,-0.0867362096905708,-0.989394187927246,0.870041906833649,0.492829322814941,-0.0120974071323872,0.998983383178711,0.0249436888843775,-0.0375504530966282,0.07069331407547,0.0159777086228132,-0.99737012386322,0.116515807807446,-0.0867362096905708,-0.989394187927246,0.998983383178711,0.0249436888843775,-0.0375504530966282,-0.998181760311127,0.0457739569246769,0.0392176136374474,-0.998844683170319,0.0361513756215572,-0.0316600687801838,-0.999263048171997,-0.0248781312257051,-0.0292300134897232,-0.996306836605072,-0.0705761760473251,0.0489045232534409,0.0214855819940567,0.0219463221728802,0.999528288841248,0.0240874439477921,0.0816933140158653,0.996366381645203,-0.0330123044550419,0.148109078407288,0.988419890403748,0.0240874439477921,0.0816933140158653,0.996366381645203,0.0347527675330639,-0.0215178932994604,0.999164223670959,-0.0330123044550419,0.148109078407288,0.988419890403748,0.021054258570075,-0.0475682318210602,-0.998646080493927,0.116515807807446,-0.0867362096905708,-0.989394187927246,-0.117082998156548,-0.255310207605362,-0.959743916988373,-0.0355990156531334,0.00991489738225937,-0.999316990375519,-0.043300423771143,-0.00139666884206235,-0.999061167240143,-0.999686777591705,-0.0236620046198368,-0.00815644580870867,
- -0.999648690223694,0.0174714047461748,-0.0199285801500082,0.00408528791740537,0.0305930897593498,-0.99952358007431,-0.0355990156531334,0.00991489738225937,-0.999316990375519,-0.999648690223694,0.0174714047461748,-0.0199285801500082,-0.0401353500783443,0.00541551737114787,-0.999179542064667,-0.0529804974794388,-0.0108174439519644,-0.998536884784698,-0.999816238880157,-0.00402822671458125,-0.0187376365065575,-0.999892950057983,0.00914727710187435,-0.011427341029048,-0.999816238880157,-0.00402822671458125,-0.0187376365065575,-0.0529804974794388,-0.0108174439519644,-0.998536884784698,-0.0463465638458729,-0.050267681479454,-0.997659862041473,-0.999808073043823,-0.0169866625219584,-0.00976339168846607,-0.0254888422787189,0.0448011681437492,0.998670697212219,0.0350006967782974,0.0356337763369083,0.998751759529114,0.0196849964559078,0.477460771799088,0.87843257188797,-0.0201982147991657,0.508762836456299,0.860669732093811,-0.0608114451169968,-0.0254457350820303,0.997824847698212,-0.0201982147991657,0.508762836456299,0.860669732093811,0.0196849964559078,0.477460771799088,0.87843257188797,0.578047513961792,-0.815901041030884,0.0129026081413031,0.996555387973785,-0.0772100836038589,0.0302674137055874,0.0042674308642745,-0.706542491912842,0.707657754421234,0.998488783836365,-0.0474710837006569,0.027687719091773,0.808315873146057,-0.587656259536743,0.0358541049063206,0.995543003082275,-0.0897065177559853,-0.0291051175445318,0.998488783836365,-0.0474710837006569,0.027687719091773,0.131105273962021,-0.129534855484962,0.982869327068329,0.921563923358917,-0.368100106716156,0.123377822339535,0.999559342861176,0.0263354200869799,0.013698055408895,0.998998701572418,-0.0426214560866356,0.013599744066596,0.998745322227478,-0.0379224754869938,-0.0327055081725121,0.998953819274902,0.0299952253699303,-0.0345184803009033,0.998328447341919,-0.0485473610460758,-0.0313600413501263,0.0436655841767788,-0.0264270696789026,-0.998696684837341,0.0430797412991524,0.0251140017062426,-0.998755931854248,0.999488472938538,0.00688920170068741,-0.0312304347753525,
- -0.797290503978729,0.60273939371109,0.0321421474218369,-0.998861968517303,0.0466408059000969,-0.00997220352292061,-0.998107314109802,0.0515849143266678,0.0334794670343399,0.709681570529938,-0.704292595386505,0.0179975628852844,0.999562323093414,0.00683963112533093,0.0287824738770723,0.999488472938538,0.00688920170068741,-0.0312304347753525,0.751251399517059,-0.660016059875488,-0.000460076727904379,-0.99900883436203,0.0420529805123806,0.0145941562950611,-0.914930284023285,-0.391663402318954,0.0974800065159798,-0.96256560087204,0.269835352897644,-0.0256192293018103,0.0351601168513298,0.0144498003646731,-0.999277293682098,0.0406327918171883,-0.00491522531956434,-0.999162018299103,-0.0409175045788288,-0.0136470170691609,-0.999069333076477,-0.0453693829476833,0.011605516076088,-0.998902857303619,-0.999603509902954,0.00942179095000029,-0.0265307482331991,-0.999671399593353,-0.00860165245831013,-0.0241461824625731,-0.999917566776276,-0.00868470873683691,0.00946037378162146,-0.999788045883179,0.00385973905213177,0.0202229041606188,-0.99900883436203,0.0420529805123806,0.0145941562950611,-0.975840508937836,0.216917857527733,0.0261164642870426,-0.999917566776276,-0.00868470873683691,0.00946037378162146,-0.999671399593353,-0.00860165245831013,-0.0241461824625731,-0.0501331239938736,0.0252120960503817,-0.998424172401428,0.0190263092517853,0.0049471901729703,-0.999806821346283,0.0213926546275616,-0.0244845580309629,-0.999471306800842,-0.0488420687615871,-0.0197992846369743,-0.998610198497772,-0.999457716941834,0.0075207045301795,-0.0320566482841969,-0.999217212200165,-0.0198560785502195,0.0342153385281563,-0.914294362068176,0.402754604816437,0.0430635772645473,-0.99465399980545,0.0900544747710228,-0.0505336336791515,-0.797290503978729,0.60273939371109,0.0321421474218369,-0.99879252910614,-0.0374116376042366,0.0318390540778637,-0.998694181442261,-0.0376706086099148,-0.0345088690519333,-0.100412465631962,0.104301951825619,0.989463686943054,-0.0171000305563211,0.0341843143105507,0.999269247055054,-0.0670239999890327,-0.00056473579024896,0.997751235961914,
- 0.00277743465267122,-0.0366494953632355,0.999324262142181,-0.999775052070618,-0.0163386519998312,0.0135211618617177,-0.99869179725647,-0.0510628409683704,0.00271298619918525,-0.999603509902954,0.00942179095000029,-0.0265307482331991,-0.0730028226971626,0.0297817680984735,-0.996887028217316,-0.0862069204449654,-0.0287800878286362,-0.995861530303955,-0.999671399593353,-0.00860165245831013,-0.0241461824625731,-0.914294362068176,0.402754604816437,0.0430635772645473,-0.0643311813473701,0.0566344372928143,0.996320188045502,-0.0606359243392944,0.126986935734749,0.990049302577972,-0.0374649576842785,-0.0894363969564438,0.995287597179413,0.0666880533099175,-0.000180465867742896,0.997773826122284,0.0267230458557606,-0.368349939584732,0.929303109645844,-0.998694181442261,-0.0376706086099148,-0.0345088690519333,-0.0409175045788288,-0.0136470170691609,-0.999069333076477,-0.0354911871254444,0.231944218277931,-0.972081422805786,-0.0576770305633545,0.0169414207339287,0.998191475868225,0.0269527435302734,0.00932454317808151,0.999593317508698,-0.0171000305563211,0.0341843143105507,0.999269247055054,-0.100412465631962,0.104301951825619,0.989463686943054,-0.0357843823730946,-0.00554134137928486,0.999344110488892,-0.0374649576842785,-0.0894363969564438,0.995287597179413,0.0351207032799721,-0.00508893840014935,0.999370098114014,0.0195887219160795,0.0178074650466442,0.999649524688721,0.998998701572418,-0.0426214560866356,0.013599744066596,0.999559342861176,0.0263354200869799,0.013698055408895,0.0202591996639967,0.0409188196063042,0.99895703792572,-0.0670239999890327,-0.00056473579024896,0.997751235961914,-0.0171000305563211,0.0341843143105507,0.999269247055054,0.0195887219160795,0.0178074650466442,0.999649524688721,-0.0488420687615871,-0.0197992846369743,-0.998610198497772,0.0213926546275616,-0.0244845580309629,-0.999471306800842,-0.0262021124362946,-0.243058249354362,-0.969657778739929,-0.0453693829476833,0.011605516076088,-0.998902857303619,-0.99465399980545,0.0900544747710228,-0.0505336336791515,-0.0262021124362946,-0.243058249354362,-0.969657778739929,
- -0.914294362068176,0.402754604816437,0.0430635772645473,-0.998309075832367,-0.04505804926157,-0.0367239601910114,-0.99465399980545,0.0900544747710228,-0.0505336336791515,-0.0262021124362946,-0.243058249354362,-0.969657778739929,-0.99465399980545,0.0900544747710228,-0.0505336336791515,-0.0488420687615871,-0.0197992846369743,-0.998610198497772,0.998745322227478,-0.0379224754869938,-0.0327055081725121,0.0406327918171883,-0.00491522531956434,-0.999162018299103,0.0351601168513298,0.0144498003646731,-0.999277293682098,0.998953819274902,0.0299952253699303,-0.0345184803009033,0.998745322227478,-0.0379224754869938,-0.0327055081725121,0.918015122413635,-0.396350800991058,0.0124216014519334,0.841489732265472,-0.529156506061554,-0.109034210443497,0.998125374317169,0.0595391429960728,-0.0141671327874064,0.996248722076416,0.0763145014643669,0.0407989621162415,0.999280035495758,0.00164876051712781,0.0379036404192448,0.999903500080109,-0.00229716068133712,-0.0136981336399913,0.0384879820048809,0.00106581288855523,-0.999258518218994,-0.0383739173412323,0.00135991373099387,-0.999262571334839,0.141019508242607,0.0722936317324638,-0.987363815307617,0.0430797412991524,0.0251140017062426,-0.998755931854248,-0.0225211326032877,0.0986624285578728,-0.994866073131561,0.999488472938538,0.00688920170068741,-0.0312304347753525,0.916054010391235,0.398375600576401,-0.0462799221277237,0.0351601168513298,0.0144498003646731,-0.999277293682098,0.0247987844049931,0.0864070579409599,-0.995951235294342,-0.998861968517303,0.0466408059000969,-0.00997220352292061,-0.797290503978729,0.60273939371109,0.0321421474218369,-0.771637558937073,0.636059701442719,-0.0019131344743073,-0.0354911871254444,0.231944218277931,-0.972081422805786,0.141019508242607,0.0722936317324638,-0.987363815307617,-0.0383739173412323,0.00135991373099387,-0.999262571334839,0.916054010391235,0.398375600576401,-0.0462799221277237,0.0213926546275616,-0.0244845580309629,-0.999471306800842,0.999903500080109,-0.00229716068133712,-0.0136981336399913,0.0384879820048809,0.00106581288855523,-0.999258518218994,
- 0.999535620212555,0.0150182200595737,-0.026515856385231,0.999292254447937,-0.0288554504513741,-0.0241307280957699,0.0336926877498627,-0.0381977818906307,-0.998701930046082,0.0384879820048809,0.00106581288855523,-0.999258518218994,0.141019508242607,0.0722936317324638,-0.987363815307617,0.999535620212555,0.0150182200595737,-0.026515856385231,0.141019508242607,0.0722936317324638,-0.987363815307617,0.998745322227478,-0.0379224754869938,-0.0327055081725121,0.841489732265472,-0.529156506061554,-0.109034210443497,-0.0821783095598221,0.305903166532516,-0.948509275913239,-0.0730028226971626,0.0297817680984735,-0.996887028217316,-0.999603509902954,0.00942179095000029,-0.0265307482331991,-0.771637558937073,0.636059701442719,-0.0019131344743073,-0.797290503978729,0.60273939371109,0.0321421474218369,-0.998694181442261,-0.0376706086099148,-0.0345088690519333,-0.0606359243392944,0.126986935734749,0.990049302577972,-0.0643311813473701,0.0566344372928143,0.996320188045502,0.0202591996639967,0.0409188196063042,0.99895703792572,-0.0171000305563211,0.0341843143105507,0.999269247055054,0.998998701572418,-0.0426214560866356,0.013599744066596,0.0195887219160795,0.0178074650466442,0.999649524688721,-0.0171000305563211,0.0341843143105507,0.999269247055054,0.0269527435302734,0.00932454317808151,0.999593317508698,0.998935759067535,0.035105537623167,0.029914814978838,0.918015122413635,-0.396350800991058,0.0124216014519334,0.0267230458557606,-0.368349939584732,0.929303109645844,0.0666880533099175,-0.000180465867742896,0.997773826122284,0.996248722076416,0.0763145014643669,0.0407989621162415,0.0267230458557606,-0.368349939584732,0.929303109645844,0.0351207032799721,-0.00508893840014935,0.999370098114014,-0.0374649576842785,-0.0894363969564438,0.995287597179413,0.999562323093414,0.00683963112533093,0.0287824738770723,0.0349031277000904,0.0422313995659351,0.998498022556305,0.0351207032799721,-0.00508893840014935,0.999370098114014,0.998492181301117,-0.0464097186923027,0.0293172430247068,0.918015122413635,-0.396350800991058,0.0124216014519334,0.998998701572418,-0.0426214560866356,0.013599744066596,
- -0.0171000305563211,0.0341843143105507,0.999269247055054,0.998745322227478,-0.0379224754869938,-0.0327055081725121,0.998998701572418,-0.0426214560866356,0.013599744066596,0.918015122413635,-0.396350800991058,0.0124216014519334,0.00277743465267122,-0.0366494953632355,0.999324262142181,-0.99869179725647,-0.0510628409683704,0.00271298619918525,-0.914294362068176,0.402754604816437,0.0430635772645473,-0.0857716426253319,0.380964457988739,-0.920602738857269,-0.0501331239938736,0.0252120960503817,-0.998424172401428,-0.961184859275818,0.275644421577454,-0.0119943777099252,-0.998694181442261,-0.0376706086099148,-0.0345088690519333,-0.0354911871254444,0.231944218277931,-0.972081422805786,-0.771637558937073,0.636059701442719,-0.0019131344743073,-0.0354911871254444,0.231944218277931,-0.972081422805786,-0.998861968517303,0.0466408059000969,-0.00997220352292061,-0.771637558937073,0.636059701442719,-0.0019131344743073,-0.914294362068176,0.402754604816437,0.0430635772645473,-0.0606359243392944,0.126986935734749,0.990049302577972,0.00277743465267122,-0.0366494953632355,0.999324262142181,-0.0357843823730946,-0.00554134137928486,0.999344110488892,0.0351207032799721,-0.00508893840014935,0.999370098114014,0.0349031277000904,0.0422313995659351,0.998498022556305,-0.0580635219812393,0.0494404286146164,0.997087895870209,-0.0561137348413467,0.0108946664258838,0.998364925384521,-0.0383739173412323,0.00135991373099387,-0.999262571334839,-0.998861968517303,0.0466408059000969,-0.00997220352292061,-0.0354911871254444,0.231944218277931,-0.972081422805786,-0.999603509902954,0.00942179095000029,-0.0265307482331991,-0.96256560087204,0.269835352897644,-0.0256192293018103,-0.0821783095598221,0.305903166532516,-0.948509275913239,-0.99900883436203,0.0420529805123806,0.0145941562950611,-0.96256560087204,0.269835352897644,-0.0256192293018103,-0.999603509902954,0.00942179095000029,-0.0265307482331991,0.0666880533099175,-0.000180465867742896,0.997773826122284,0.0690253376960754,-0.0180406160652637,0.997451722621918,0.999280035495758,0.00164876051712781,0.0379036404192448,
- 0.996248722076416,0.0763145014643669,0.0407989621162415,-0.999671399593353,-0.00860165245831013,-0.0241461824625731,-0.0862069204449654,-0.0287800878286362,-0.995861530303955,-0.0857716426253319,0.380964457988739,-0.920602738857269,-0.961184859275818,0.275644421577454,-0.0119943777099252,-0.961184859275818,0.275644421577454,-0.0119943777099252,-0.975840508937836,0.216917857527733,0.0261164642870426,-0.999671399593353,-0.00860165245831013,-0.0241461824625731,-0.999457716941834,0.0075207045301795,-0.0320566482841969,-0.99465399980545,0.0900544747710228,-0.0505336336791515,-0.0453693829476833,0.011605516076088,-0.998902857303619,-0.797290503978729,0.60273939371109,0.0321421474218369,-0.100412465631962,0.104301951825619,0.989463686943054,-0.99879252910614,-0.0374116376042366,0.0318390540778637,0.0406327918171883,-0.00491522531956434,-0.999162018299103,0.998745322227478,-0.0379224754869938,-0.0327055081725121,0.141019508242607,0.0722936317324638,-0.987363815307617,-0.999217212200165,-0.0198560785502195,0.0342153385281563,-0.99879252910614,-0.0374116376042366,0.0318390540778637,-0.0670239999890327,-0.00056473579024896,0.997751235961914,-0.0643311813473701,0.0566344372928143,0.996320188045502,-0.99879252910614,-0.0374116376042366,0.0318390540778637,-0.100412465631962,0.104301951825619,0.989463686943054,-0.0670239999890327,-0.00056473579024896,0.997751235961914,-0.0409175045788288,-0.0136470170691609,-0.999069333076477,0.141019508242607,0.0722936317324638,-0.987363815307617,-0.0354911871254444,0.231944218277931,-0.972081422805786,0.0406327918171883,-0.00491522531956434,-0.999162018299103,0.141019508242607,0.0722936317324638,-0.987363815307617,-0.0409175045788288,-0.0136470170691609,-0.999069333076477,-0.0501331239938736,0.0252120960503817,-0.998424172401428,-0.999256312847137,0.0137639502063394,-0.0360204502940178,-0.961184859275818,0.275644421577454,-0.0119943777099252,0.974328100681305,0.223825737833977,0.0242239125072956,0.919750213623047,0.392277657985687,-0.0133323641493917,0.998492181301117,-0.0464097186923027,0.0293172430247068,
- 0.0351601168513298,0.0144498003646731,-0.999277293682098,0.916054010391235,0.398375600576401,-0.0462799221277237,0.998953819274902,0.0299952253699303,-0.0345184803009033,0.998953819274902,0.0299952253699303,-0.0345184803009033,0.916054010391235,0.398375600576401,-0.0462799221277237,0.999559342861176,0.0263354200869799,0.013698055408895,-0.999792456626892,0.0202872771769762,0.00186794681940228,-0.0374649576842785,-0.0894363969564438,0.995287597179413,-0.975840508937836,0.216917857527733,0.0261164642870426,0.00277743465267122,-0.0366494953632355,0.999324262142181,-0.0606359243392944,0.126986935734749,0.990049302577972,0.0690253376960754,-0.0180406160652637,0.997451722621918,0.0202591996639967,0.0409188196063042,0.99895703792572,0.999559342861176,0.0263354200869799,0.013698055408895,0.617541670799255,0.786473095417023,0.0101179359480739,0.112076908349991,0.538052499294281,0.835426926612854,0.0213926546275616,-0.0244845580309629,-0.999471306800842,0.916054010391235,0.398375600576401,-0.0462799221277237,0.0247987844049931,0.0864070579409599,-0.995951235294342,0.916054010391235,0.398375600576401,-0.0462799221277237,0.617541670799255,0.786473095417023,0.0101179359480739,0.999559342861176,0.0263354200869799,0.013698055408895,0.0190263092517853,0.0049471901729703,-0.999806821346283,0.919750213623047,0.392277657985687,-0.0133323641493917,0.998125374317169,0.0595391429960728,-0.0141671327874064,-0.0262021124362946,-0.243058249354362,-0.969657778739929,0.0351601168513298,0.0144498003646731,-0.999277293682098,-0.0453693829476833,0.011605516076088,-0.998902857303619,-0.0488420687615871,-0.0197992846369743,-0.998610198497772,-0.99465399980545,0.0900544747710228,-0.0505336336791515,-0.998309075832367,-0.04505804926157,-0.0367239601910114,-0.998309075832367,-0.04505804926157,-0.0367239601910114,-0.999256312847137,0.0137639502063394,-0.0360204502940178,-0.0501331239938736,0.0252120960503817,-0.998424172401428,-0.0488420687615871,-0.0197992846369743,-0.998610198497772,0.0190263092517853,0.0049471901729703,-0.999806821346283,-0.00448253564536572,0.00710684014484286,-0.999964654445648,
- 0.919750213623047,0.392277657985687,-0.0133323641493917,-0.0862069204449654,-0.0287800878286362,-0.995861530303955,-0.0730028226971626,0.0297817680984735,-0.996887028217316,0.0430797412991524,0.0251140017062426,-0.998755931854248,0.0436655841767788,-0.0264270696789026,-0.998696684837341,-0.0821783095598221,0.305903166532516,-0.948509275913239,-0.0225211326032877,0.0986624285578728,-0.994866073131561,0.0430797412991524,0.0251140017062426,-0.998755931854248,-0.0730028226971626,0.0297817680984735,-0.996887028217316,-0.000405165337724611,-0.191776871681213,0.981438517570496,-0.125977069139481,-0.0306796301156282,0.991558611392975,-0.0580635219812393,0.0494404286146164,0.997087895870209,0.0349031277000904,0.0422313995659351,0.998498022556305,-0.914930284023285,-0.391663402318954,0.0974800065159798,-0.99900883436203,0.0420529805123806,0.0145941562950611,-0.0580635219812393,0.0494404286146164,0.997087895870209,-0.125977069139481,-0.0306796301156282,0.991558611392975,-0.975840508937836,0.216917857527733,0.0261164642870426,-0.0357843823730946,-0.00554134137928486,0.999344110488892,-0.999917566776276,-0.00868470873683691,0.00946037378162146,-0.0418695695698261,0.00284433690831065,0.99911904335022,0.0666880533099175,-0.000180465867742896,0.997773826122284,-0.0374649576842785,-0.0894363969564438,0.995287597179413,-0.0606359243392944,0.126986935734749,0.990049302577972,0.112076908349991,0.538052499294281,0.835426926612854,0.0690253376960754,-0.0180406160652637,0.997451722621918,0.974328100681305,0.223825737833977,0.0242239125072956,0.998492181301117,-0.0464097186923027,0.0293172430247068,0.0351207032799721,-0.00508893840014935,0.999370098114014,0.974328100681305,0.223825737833977,0.0242239125072956,0.0351207032799721,-0.00508893840014935,0.999370098114014,0.0267230458557606,-0.368349939584732,0.929303109645844,0.0267230458557606,-0.368349939584732,0.929303109645844,0.996248722076416,0.0763145014643669,0.0407989621162415,0.974328100681305,0.223825737833977,0.0242239125072956,-0.0374649576842785,-0.0894363969564438,0.995287597179413,
- -0.0357843823730946,-0.00554134137928486,0.999344110488892,-0.975840508937836,0.216917857527733,0.0261164642870426,-0.999792456626892,0.0202872771769762,0.00186794681940228,-0.0418695695698261,0.00284433690831065,0.99911904335022,-0.0374649576842785,-0.0894363969564438,0.995287597179413,-0.99869179725647,-0.0510628409683704,0.00271298619918525,-0.999775052070618,-0.0163386519998312,0.0135211618617177,-0.999792456626892,0.0202872771769762,0.00186794681940228,-0.999256312847137,0.0137639502063394,-0.0360204502940178,-0.998309075832367,-0.04505804926157,-0.0367239601910114,0.999535620212555,0.0150182200595737,-0.026515856385231,0.841489732265472,-0.529156506061554,-0.109034210443497,0.909209012985229,0.415206700563431,-0.0306981038302183,-0.00448253564536572,0.00710684014484286,-0.999964654445648,-0.0857716426253319,0.380964457988739,-0.920602738857269,-0.0862069204449654,-0.0287800878286362,-0.995861530303955,0.0190263092517853,0.0049471901729703,-0.999806821346283,-0.0857716426253319,0.380964457988739,-0.920602738857269,-0.00448253564536572,0.00710684014484286,-0.999964654445648,0.0190263092517853,0.0049471901729703,-0.999806821346283,-0.0501331239938736,0.0252120960503817,-0.998424172401428,-0.0857716426253319,0.380964457988739,-0.920602738857269,0.999562323093414,0.00683963112533093,0.0287824738770723,0.998492181301117,-0.0464097186923027,0.0293172430247068,0.998328447341919,-0.0485473610460758,-0.0313600413501263,0.999488472938538,0.00688920170068741,-0.0312304347753525,0.998125374317169,0.0595391429960728,-0.0141671327874064,0.999903500080109,-0.00229716068133712,-0.0136981336399913,0.0213926546275616,-0.0244845580309629,-0.999471306800842,0.0190263092517853,0.0049471901729703,-0.999806821346283,0.0195887219160795,0.0178074650466442,0.999649524688721,0.0202591996639967,0.0409188196063042,0.99895703792572,-0.0643311813473701,0.0566344372928143,0.996320188045502,-0.0670239999890327,-0.00056473579024896,0.997751235961914,-0.0409175045788288,-0.0136470170691609,-0.999069333076477,-0.998694181442261,-0.0376706086099148,-0.0345088690519333,
- -0.999457716941834,0.0075207045301795,-0.0320566482841969,-0.0453693829476833,0.011605516076088,-0.998902857303619,-0.0383739173412323,0.00135991373099387,-0.999262571334839,0.0384879820048809,0.00106581288855523,-0.999258518218994,0.0336926877498627,-0.0381977818906307,-0.998701930046082,-0.0268154088407755,-0.034325685352087,-0.999050855636597,-0.0648152083158493,-0.0357743501663208,0.997255861759186,-0.0240192543715239,-0.0402136258780956,0.998902380466461,0.0222427248954773,-0.0357577912509441,0.999112963676453,0.0269527435302734,0.00932454317808151,0.999593317508698,-0.0576770305633545,0.0169414207339287,0.998191475868225,-0.0383739173412323,0.00135991373099387,-0.999262571334839,-0.0268154088407755,-0.034325685352087,-0.999050855636597,-0.999180793762207,-0.0361918620765209,-0.0181043166667223,-0.998861968517303,0.0466408059000969,-0.00997220352292061,-0.998107314109802,0.0515849143266678,0.0334794670343399,-0.0576770305633545,0.0169414207339287,0.998191475868225,-0.100412465631962,0.104301951825619,0.989463686943054,-0.797290503978729,0.60273939371109,0.0321421474218369,0.999535620212555,0.0150182200595737,-0.026515856385231,0.998935759067535,0.035105537623167,0.029914814978838,0.999398827552795,-0.0130490129813552,0.0321199707686901,0.999292254447937,-0.0288554504513741,-0.0241307280957699,0.999562323093414,0.00683963112533093,0.0287824738770723,-0.000405165337724611,-0.191776871681213,0.981438517570496,0.0349031277000904,0.0422313995659351,0.998498022556305,-0.999217212200165,-0.0198560785502195,0.0342153385281563,-0.0643311813473701,0.0566344372928143,0.996320188045502,-0.914294362068176,0.402754604816437,0.0430635772645473,-0.999256312847137,0.0137639502063394,-0.0360204502940178,-0.975840508937836,0.216917857527733,0.0261164642870426,-0.961184859275818,0.275644421577454,-0.0119943777099252,0.974328100681305,0.223825737833977,0.0242239125072956,0.996248722076416,0.0763145014643669,0.0407989621162415,0.998125374317169,0.0595391429960728,-0.0141671327874064,0.919750213623047,0.392277657985687,-0.0133323641493917,
- -0.999180793762207,-0.0361918620765209,-0.0181043166667223,-0.998858988285065,-0.00434629386290908,0.047558382153511,-0.998107314109802,0.0515849143266678,0.0334794670343399,-0.998861968517303,0.0466408059000969,-0.00997220352292061,-0.435076951980591,-0.890702843666077,0.131744384765625,-0.223231256008148,-0.871803820133209,0.436034351587296,-0.0648152083158493,-0.0357743501663208,0.997255861759186,-0.998858988285065,-0.00434629386290908,0.047558382153511,-0.0268154088407755,-0.034325685352087,-0.999050855636597,-0.00366952968761325,-0.855653941631317,-0.517535448074341,-0.42112797498703,-0.906980693340302,0.00610099686309695,0.999398827552795,-0.0130490129813552,0.0321199707686901,0.0222427248954773,-0.0357577912509441,0.999112963676453,-0.00387867982499301,-0.906077325344086,0.42309445142746,0.743540644645691,-0.666870653629303,0.0493033900856972,-0.223231256008148,-0.871803820133209,0.436034351587296,-0.0240192543715239,-0.0402136258780956,0.998902380466461,-0.0648152083158493,-0.0357743501663208,0.997255861759186,0.0117225665599108,-0.858111262321472,-0.513329982757568,0.999292254447937,-0.0288554504513741,-0.0241307280957699,0.326181203126907,-0.945171475410461,-0.0160259958356619,-0.999180793762207,-0.0361918620765209,-0.0181043166667223,-0.0268154088407755,-0.034325685352087,-0.999050855636597,-0.42112797498703,-0.906980693340302,0.00610099686309695,-0.435076951980591,-0.890702843666077,0.131744384765625,-0.855140686035156,-0.517448782920837,0.0313228294253349,-0.999180793762207,-0.0361918620765209,-0.0181043166667223,-0.42112797498703,-0.906980693340302,0.00610099686309695,-0.998107314109802,0.0515849143266678,0.0334794670343399,-0.998858988285065,-0.00434629386290908,0.047558382153511,-0.0648152083158493,-0.0357743501663208,0.997255861759186,-0.0576770305633545,0.0169414207339287,0.998191475868225,-0.998858988285065,-0.00434629386290908,0.047558382153511,-0.855140686035156,-0.517448782920837,0.0313228294253349,-0.435076951980591,-0.890702843666077,0.131744384765625,0.0222427248954773,-0.0357577912509441,0.999112963676453,
- -0.0240192543715239,-0.0402136258780956,0.998902380466461,-0.223231256008148,-0.871803820133209,0.436034351587296,-0.00387867982499301,-0.906077325344086,0.42309445142746,-0.998858988285065,-0.00434629386290908,0.047558382153511,-0.999180793762207,-0.0361918620765209,-0.0181043166667223,-0.855140686035156,-0.517448782920837,0.0313228294253349,0.999292254447937,-0.0288554504513741,-0.0241307280957699,0.743540644645691,-0.666870653629303,0.0493033900856972,0.326181203126907,-0.945171475410461,-0.0160259958356619,0.999292254447937,-0.0288554504513741,-0.0241307280957699,0.999398827552795,-0.0130490129813552,0.0321199707686901,0.743540644645691,-0.666870653629303,0.0493033900856972,0.0336926877498627,-0.0381977818906307,-0.998701930046082,0.999292254447937,-0.0288554504513741,-0.0241307280957699,0.0117225665599108,-0.858111262321472,-0.513329982757568,-0.0286187343299389,0.99958348274231,0.00371685344725847,-0.99956476688385,-0.00392275862395763,-0.0292408484965563,-0.999136030673981,-0.0132530573755503,0.0393888540565968,0.999467670917511,-0.00309254345484078,0.0324765592813492,0.0181292165070772,0.0768585503101349,0.996877133846283,0.0206939820200205,-0.0245114285498858,0.999485373497009,0.998333334922791,-0.0493983663618565,0.0298405345529318,0.0387949235737324,0.0177843384444714,-0.999088883399963,-0.108486339449883,-0.00198176829144359,-0.994095921516418,0.00319519406184554,0.999813854694366,-0.0190276373177767,-0.99956476688385,-0.00392275862395763,-0.0292408484965563,-0.0286187343299389,0.99958348274231,0.00371685344725847,-0.0299755521118641,0.999549388885498,0.00154034094884992,-0.00780688319355249,0.999286651611328,-0.0369493439793587,0.00319519406184554,0.999813854694366,-0.0190276373177767,-0.108486339449883,-0.00198176829144359,-0.994095921516418,0.0387949235737324,0.0177843384444714,-0.999088883399963,0.99965626001358,0.0125955091789365,-0.022993441671133,0.997262120246887,-0.0663689151406288,-0.0326109863817692,0.0281781740486622,-0.0171235967427492,-0.999456286430359,0.0387949235737324,0.0177843384444714,-0.999088883399963,
- 0.00319519406184554,0.999813854694366,-0.0190276373177767,0.99965626001358,0.0125955091789365,-0.022993441671133,-0.00780688319355249,0.999286651611328,-0.0369493439793587,-0.99956476688385,-0.00392275862395763,-0.0292408484965563,-0.0299755521118641,0.999549388885498,0.00154034094884992,-0.108486339449883,-0.00198176829144359,-0.994095921516418,-0.99956476688385,-0.00392275862395763,-0.0292408484965563,-0.00780688319355249,0.999286651611328,-0.0369493439793587,0.00319519406184554,0.999813854694366,-0.0190276373177767,0.0217320472002029,0.999639987945557,0.015737920999527,0.99965626001358,0.0125955091789365,-0.022993441671133,0.999467670917511,-0.00309254345484078,0.0324765592813492,0.998333334922791,-0.0493983663618565,0.0298405345529318,0.997262120246887,-0.0663689151406288,-0.0326109863817692,0.99965626001358,0.0125955091789365,-0.022993441671133,-0.108486339449883,-0.00198176829144359,-0.994095921516418,0.0387949235737324,0.0177843384444714,-0.999088883399963,0.0281781740486622,-0.0171235967427492,-0.999456286430359,-0.0844996497035027,-0.0408269390463829,-0.995586693286896,-0.0692008957266808,-0.0191363878548145,0.99741917848587,0.0206939820200205,-0.0245114285498858,0.999485373497009,0.0181292165070772,0.0768585503101349,0.996877133846283,-0.0505608506500721,0.0392238311469555,0.997950494289398,-0.108486339449883,-0.00198176829144359,-0.994095921516418,-0.0844996497035027,-0.0408269390463829,-0.995586693286896,-0.998808860778809,-0.0379040837287903,-0.0307281836867332,-0.99956476688385,-0.00392275862395763,-0.0292408484965563,0.99965626001358,0.0125955091789365,-0.022993441671133,0.0217320472002029,0.999639987945557,0.015737920999527,0.999467670917511,-0.00309254345484078,0.0324765592813492,-0.998808860778809,-0.0379040837287903,-0.0307281836867332,-0.998298287391663,-0.0517904981970787,0.02679986320436,-0.999136030673981,-0.0132530573755503,0.0393888540565968,-0.99956476688385,-0.00392275862395763,-0.0292408484965563,-0.914930284023285,-0.391663402318954,0.0974800065159798,-0.125977069139481,-0.0306796301156282,0.991558611392975,
- -0.998298287391663,-0.0517904981970787,0.02679986320436,-0.0844996497035027,-0.0408269390463829,-0.995586693286896,0.0281781740486622,-0.0171235967427492,-0.999456286430359,-0.0225211326032877,0.0986624285578728,-0.994866073131561,-0.0821783095598221,0.305903166532516,-0.948509275913239,0.998333334922791,-0.0493983663618565,0.0298405345529318,0.0206939820200205,-0.0245114285498858,0.999485373497009,-0.000405165337724611,-0.191776871681213,0.981438517570496,0.709681570529938,-0.704292595386505,0.0179975628852844,-0.998808860778809,-0.0379040837287903,-0.0307281836867332,-0.0844996497035027,-0.0408269390463829,-0.995586693286896,-0.0821783095598221,0.305903166532516,-0.948509275913239,-0.96256560087204,0.269835352897644,-0.0256192293018103,-0.998808860778809,-0.0379040837287903,-0.0307281836867332,-0.0821783095598221,0.305903166532516,-0.948509275913239,-0.999136030673981,-0.0132530573755503,0.0393888540565968,-0.998298287391663,-0.0517904981970787,0.02679986320436,-0.0692008957266808,-0.0191363878548145,0.99741917848587,-0.0505608506500721,0.0392238311469555,0.997950494289398,-0.998298287391663,-0.0517904981970787,0.02679986320436,-0.96256560087204,0.269835352897644,-0.0256192293018103,-0.914930284023285,-0.391663402318954,0.0974800065159798,0.0206939820200205,-0.0245114285498858,0.999485373497009,-0.0692008957266808,-0.0191363878548145,0.99741917848587,-0.125977069139481,-0.0306796301156282,0.991558611392975,-0.000405165337724611,-0.191776871681213,0.981438517570496,-0.998298287391663,-0.0517904981970787,0.02679986320436,-0.998808860778809,-0.0379040837287903,-0.0307281836867332,-0.96256560087204,0.269835352897644,-0.0256192293018103,0.709681570529938,-0.704292595386505,0.0179975628852844,0.751251399517059,-0.660016059875488,-0.000460076727904379,0.997262120246887,-0.0663689151406288,-0.0326109863817692,0.998333334922791,-0.0493983663618565,0.0298405345529318,0.0281781740486622,-0.0171235967427492,-0.999456286430359,0.997262120246887,-0.0663689151406288,-0.0326109863817692,-0.0225211326032877,0.0986624285578728,-0.994866073131561,
- 0.00319519406184554,0.999813854694366,-0.0190276373177767,-0.00780688319355249,0.999286651611328,-0.0369493439793587,-0.0299755521118641,0.999549388885498,0.00154034094884992,-0.0286187343299389,0.99958348274231,0.00371685344725847,-0.00554684596136212,0.999748170375824,0.0217425376176834,0.0217320472002029,0.999639987945557,0.015737920999527,-0.999136030673981,-0.0132530573755503,0.0393888540565968,-0.0505608506500721,0.0392238311469555,0.997950494289398,-0.00554684596136212,0.999748170375824,0.0217425376176834,-0.0286187343299389,0.99958348274231,0.00371685344725847,0.0217320472002029,0.999639987945557,0.015737920999527,0.0181292165070772,0.0768585503101349,0.996877133846283,0.999467670917511,-0.00309254345484078,0.0324765592813492,0.0217320472002029,0.999639987945557,0.015737920999527,-0.00554684596136212,0.999748170375824,0.0217425376176834,-0.0505608506500721,0.0392238311469555,0.997950494289398,0.0181292165070772,0.0768585503101349,0.996877133846283,0.999562323093414,0.00683963112533093,0.0287824738770723,0.709681570529938,-0.704292595386505,0.0179975628852844,-0.000405165337724611,-0.191776871681213,0.981438517570496,0.999903500080109,-0.00229716068133712,-0.0136981336399913,0.999280035495758,0.00164876051712781,0.0379036404192448,0.916054010391235,0.398375600576401,-0.0462799221277237,0.919750213623047,0.392277657985687,-0.0133323641493917,0.998328447341919,-0.0485473610460758,-0.0313600413501263,0.998492181301117,-0.0464097186923027,0.0293172430247068,-0.00448253564536572,0.00710684014484286,-0.999964654445648,0.0436655841767788,-0.0264270696789026,-0.998696684837341,0.998328447341919,-0.0485473610460758,-0.0313600413501263,0.919750213623047,0.392277657985687,-0.0133323641493917,-0.0862069204449654,-0.0287800878286362,-0.995861530303955,0.0436655841767788,-0.0264270696789026,-0.998696684837341,-0.00448253564536572,0.00710684014484286,-0.999964654445648,-0.999792456626892,0.0202872771769762,0.00186794681940228,-0.975840508937836,0.216917857527733,0.0261164642870426,-0.999256312847137,0.0137639502063394,-0.0360204502940178,
- 0.0666880533099175,-0.000180465867742896,0.997773826122284,-0.0418695695698261,0.00284433690831065,0.99911904335022,-0.0373965725302696,-0.00879155192524195,0.999261856079102,0.00277743465267122,-0.0366494953632355,0.999324262142181,0.0690253376960754,-0.0180406160652637,0.997451722621918,-0.914294362068176,0.402754604816437,0.0430635772645473,-0.99869179725647,-0.0510628409683704,0.00271298619918525,-0.998309075832367,-0.04505804926157,-0.0367239601910114,-0.998298287391663,-0.0517904981970787,0.02679986320436,-0.125977069139481,-0.0306796301156282,0.991558611392975,-0.0692008957266808,-0.0191363878548145,0.99741917848587,0.918015122413635,-0.396350800991058,0.0124216014519334,0.998935759067535,0.035105537623167,0.029914814978838,0.909209012985229,0.415206700563431,-0.0306981038302183,0.841489732265472,-0.529156506061554,-0.109034210443497,0.998935759067535,0.035105537623167,0.029914814978838,0.0269527435302734,0.00932454317808151,0.999593317508698,0.0222427248954773,-0.0357577912509441,0.999112963676453,0.999398827552795,-0.0130490129813552,0.0321199707686901,0.999280035495758,0.00164876051712781,0.0379036404192448,0.617541670799255,0.786473095417023,0.0101179359480739,0.916054010391235,0.398375600576401,-0.0462799221277237,0.112076908349991,0.538052499294281,0.835426926612854,0.617541670799255,0.786473095417023,0.0101179359480739,0.999280035495758,0.00164876051712781,0.0379036404192448,0.0690253376960754,-0.0180406160652637,0.997451722621918,0.112076908349991,0.538052499294281,0.835426926612854,0.999280035495758,0.00164876051712781,0.0379036404192448,-0.998694181442261,-0.0376706086099148,-0.0345088690519333,-0.99879252910614,-0.0374116376042366,0.0318390540778637,-0.999217212200165,-0.0198560785502195,0.0342153385281563,-0.999457716941834,0.0075207045301795,-0.0320566482841969,0.0213926546275616,-0.0244845580309629,-0.999471306800842,0.0247987844049931,0.0864070579409599,-0.995951235294342,-0.0262021124362946,-0.243058249354362,-0.969657778739929,0.0247987844049931,0.0864070579409599,-0.995951235294342,0.0351601168513298,0.0144498003646731,-0.999277293682098,
- -0.0262021124362946,-0.243058249354362,-0.969657778739929,0.0202591996639967,0.0409188196063042,0.99895703792572,0.112076908349991,0.538052499294281,0.835426926612854,-0.0606359243392944,0.126986935734749,0.990049302577972,-0.0373965725302696,-0.00879155192524195,0.999261856079102,-0.0418695695698261,0.00284433690831065,0.99911904335022,-0.999792456626892,0.0202872771769762,0.00186794681940228,-0.999775052070618,-0.0163386519998312,0.0135211618617177,0.00277743465267122,-0.0366494953632355,0.999324262142181,-0.0373965725302696,-0.00879155192524195,0.999261856079102,-0.999775052070618,-0.0163386519998312,0.0135211618617177,-0.0357843823730946,-0.00554134137928486,0.999344110488892,-0.0561137348413467,0.0108946664258838,0.998364925384521,-0.999788045883179,0.00385973905213177,0.0202229041606188,-0.999917566776276,-0.00868470873683691,0.00946037378162146,-0.999788045883179,0.00385973905213177,0.0202229041606188,-0.0561137348413467,0.0108946664258838,0.998364925384521,-0.0580635219812393,0.0494404286146164,0.997087895870209,-0.99900883436203,0.0420529805123806,0.0145941562950611,-0.0268154088407755,-0.034325685352087,-0.999050855636597,0.0336926877498627,-0.0381977818906307,-0.998701930046082,0.0117225665599108,-0.858111262321472,-0.513329982757568,-0.00366952968761325,-0.855653941631317,-0.517535448074341,0.751251399517059,-0.660016059875488,-0.000460076727904379,0.999488472938538,0.00688920170068741,-0.0312304347753525,-0.0225211326032877,0.0986624285578728,-0.994866073131561,0.997262120246887,-0.0663689151406288,-0.0326109863817692,0.751251399517059,-0.660016059875488,-0.000460076727904379,-0.0225211326032877,0.0986624285578728,-0.994866073131561,0.999535620212555,0.0150182200595737,-0.026515856385231,0.909209012985229,0.415206700563431,-0.0306981038302183,0.998935759067535,0.035105537623167,0.029914814978838,0.999535620212555,0.0150182200595737,-0.026515856385231,0.141019508242607,0.0722936317324638,-0.987363815307617,0.841489732265472,-0.529156506061554,-0.109034210443497,0.9468754529953,0.32132151722908,0.0133931422606111,
- 0.953147768974304,0.302206009626389,0.0134422872215509,0.955628156661987,0.293182343244553,-0.0286175739020109,0.946710109710693,0.320670813322067,-0.0301693473011255,0.536682367324829,0.843262493610382,-0.0296694617718458,0.0574274212121964,0.0346057377755642,-0.997749745845795,0.0193295311182737,0.0593806095421314,-0.998048186302185,0.452254265546799,0.891464471817017,-0.0275183636695147,0.0298126488924026,-0.99923437833786,-0.0253341775387526,0.998612523078918,-0.0358662754297256,-0.0385570526123047,0.999553143978119,-0.0295213982462883,0.00468211574479938,0.0385664068162441,-0.999069452285767,0.0193101074546576,-0.772026360034943,-0.634915292263031,0.029290271922946,-0.99973326921463,-0.0209938995540142,-0.00961614586412907,-0.999111652374268,-0.0213875714689493,0.0363091230392456,-0.155915915966034,0.987624049186707,0.0170033946633339,0.454924404621124,0.890139698982239,0.0263659190386534,0.452254265546799,0.891464471817017,-0.0275183636695147,-0.195415481925011,0.980631828308105,-0.0131917903199792,-0.537269353866577,-0.84319007396698,0.0192941688001156,0.632739782333374,-0.772593259811401,0.0523448549211025,0.293244868516922,-0.955386757850647,-0.0352631062269211,0.0359112024307251,0.0370906852185726,-0.99866646528244,0.0572825782001019,0.0124922683462501,-0.998279809951782,-0.0300694908946753,-0.0157462079077959,-0.999423801898956,-0.0289117339998484,0.00522982003167272,-0.999568343162537,-0.537682056427002,-0.842954695224762,-0.0180356912314892,-0.515470862388611,-0.856754958629608,-0.0161447934806347,-0.516049683094025,-0.856307983398438,0.0207198094576597,-0.527069091796875,-0.849255740642548,0.0310301743447781,-0.537269353866577,-0.84319007396698,0.0192941688001156,-0.890330791473389,-0.454547971487045,0.0264065787196159,-0.516049683094025,-0.856307983398438,0.0207198094576597,-0.515470862388611,-0.856754958629608,-0.0161447934806347,-0.0478024184703827,-0.0121003463864326,-0.998783528804779,0.00728154182434082,0.0296003241091967,-0.999535262584686,0.0411229133605957,0.0029537312220782,-0.999149680137634,
- -0.0177351031452417,-0.0419287160038948,-0.998963177204132,-0.971143245697021,-0.233071357011795,-0.0505822859704494,-0.958419620990753,-0.284044742584229,0.0273935571312904,-0.88666045665741,0.462337881326675,0.00877317041158676,-0.939987003803253,0.339274048805237,-0.0362992659211159,-0.772026360034943,-0.634915292263031,0.029290271922946,-0.937825381755829,-0.34570324420929,0.0311891715973616,-0.933219194412231,-0.356673181056976,-0.0434302538633347,-0.0571265667676926,-0.251040875911713,0.966289401054382,-0.022587563842535,0.0685499832034111,0.997391939163208,-0.0552633479237556,-0.0052695395424962,0.998457908630371,0.0203175824135542,-0.0187937915325165,0.999616861343384,-0.772914230823517,-0.633862853050232,0.0286638084799051,-0.776424705982208,-0.630041360855103,0.0145734865218401,-0.537682056427002,-0.842954695224762,-0.0180356912314892,-0.0491762682795525,-0.0451168082654476,-0.997770607471466,-0.0124295596033335,-0.0754773244261742,-0.997070014476776,-0.515470862388611,-0.856754958629608,-0.0161447934806347,-0.88666045665741,0.462337881326675,0.00877317041158676,-0.0809127017855644,0.0391082130372524,0.995953559875488,-0.222338825464249,0.193166762590408,0.955642223358154,0.0545008257031441,-0.0889119356870651,0.994547367095947,0.0620499961078167,0.0563833713531494,0.996479153633118,0.358820647001266,-0.264789909124374,0.895060896873474,-0.933219194412231,-0.356673181056976,-0.0434302538633347,-0.0300694908946753,-0.0157462079077959,-0.999423801898956,-0.0110807297751307,-0.0724929496645927,-0.997307360172272,-0.0549158304929733,0.0119772795587778,0.998419225215912,0.0323627777397633,0.0105664264410734,0.999420285224915,-0.022587563842535,0.0685499832034111,0.997391939163208,-0.0571265667676926,-0.251040875911713,0.966289401054382,-0.0187438875436783,-0.998911559581757,0.0427127480506897,-0.0647706389427185,-0.997507512569427,0.0279911197721958,-0.0509755536913872,-0.998440563678741,-0.0227589067071676,-0.0150442719459534,-0.0311730708926916,0.999400794506073,0.0545008257031441,-0.0889119356870651,0.994547367095947,
- 0.0345014445483685,0.0355130098760128,0.998773515224457,0.0265501830726862,0.0239828303456306,0.999359786510468,0.953147768974304,0.302206009626389,0.0134422872215509,0.9468754529953,0.32132151722908,0.0133931422606111,0.0155878402292728,0.0584818795323372,0.998166739940643,-0.0552633479237556,-0.0052695395424962,0.998457908630371,-0.022587563842535,0.0685499832034111,0.997391939163208,0.0265501830726862,0.0239828303456306,0.999359786510468,-0.0177351031452417,-0.0419287160038948,-0.998963177204132,0.0411229133605957,0.0029537312220782,-0.999149680137634,0.0638735070824623,-0.157219961285591,-0.985495865345001,-0.0289117339998484,0.00522982003167272,-0.999568343162537,-0.939987003803253,0.339274048805237,-0.0362992659211159,0.0638735070824623,-0.157219961285591,-0.985495865345001,0.0298126488924026,-0.99923437833786,-0.0253341775387526,0.0385664068162441,-0.999069452285767,0.0193101074546576,-0.0187438875436783,-0.998911559581757,0.0427127480506897,-0.0509755536913872,-0.998440563678741,-0.0227589067071676,0.0475363023579121,0.0175569672137499,0.998715221881866,-0.0498421266674995,0.0160159897059202,0.998628735542297,-0.0187438875436783,-0.998911559581757,0.0427127480506897,-0.88666045665741,0.462337881326675,0.00877317041158676,-0.780406177043915,-0.624665200710297,-0.027559295296669,-0.939987003803253,0.339274048805237,-0.0362992659211159,0.0638735070824623,-0.157219961285591,-0.985495865345001,-0.939987003803253,0.339274048805237,-0.0362992659211159,-0.0177351031452417,-0.0419287160038948,-0.998963177204132,0.955628156661987,0.293182343244553,-0.0286175739020109,0.0572825782001019,0.0124922683462501,-0.998279809951782,0.0359112024307251,0.0370906852185726,-0.99866646528244,0.946710109710693,0.320670813322067,-0.0301693473011255,0.955628156661987,0.293182343244553,-0.0286175739020109,0.774991691112518,0.631798207759857,0.014795464463532,0.885416686534882,0.447186559438705,-0.126733466982841,0.779233753681183,0.626596212387085,-0.0131089044734836,0.779281377792358,0.625508606433868,0.0382043272256851,0.799385488033295,0.599740445613861,0.0359757021069527,
- 0.802407324314117,0.596684753894806,-0.0104772821068764,0.0419527366757393,0.00344615406356752,-0.999113619327545,-0.0335539467632771,0.00376056740060449,-0.999429821968079,0.13214223086834,0.134295612573624,-0.982091188430786,0.0193295311182737,0.0593806095421314,-0.998048186302185,-0.179750770330429,0.0775342583656311,-0.98065185546875,0.452254265546799,0.891464471817017,-0.0275183636695147,0.994089603424072,-0.100736051797867,-0.0404750928282738,0.0359112024307251,0.0370906852185726,-0.99866646528244,0.0550897940993309,-0.0500547178089619,-0.997225999832153,-0.99973326921463,-0.0209938995540142,-0.00961614586412907,-0.772026360034943,-0.634915292263031,0.029290271922946,-0.748854279518127,-0.662368535995483,-0.0220255460590124,-0.0110807297751307,-0.0724929496645927,-0.997307360172272,0.13214223086834,0.134295612573624,-0.982091188430786,-0.0335539467632771,0.00376056740060449,-0.999429821968079,0.994089603424072,-0.100736051797867,-0.0404750928282738,0.0411229133605957,0.0029537312220782,-0.999149680137634,0.802407324314117,0.596684753894806,-0.0104772821068764,0.0419527366757393,0.00344615406356752,-0.999113619327545,0.997713327407837,0.0638053938746452,-0.0222931429743767,0.999534904956818,0.0223325528204441,-0.0207694210112095,0.0372253432869911,-0.0354781150817871,-0.998676896095276,0.0419527366757393,0.00344615406356752,-0.999113619327545,0.13214223086834,0.134295612573624,-0.982091188430786,0.997713327407837,0.0638053938746452,-0.0222931429743767,0.13214223086834,0.134295612573624,-0.982091188430786,0.955628156661987,0.293182343244553,-0.0286175739020109,0.885416686534882,0.447186559438705,-0.126733466982841,-0.0697877928614616,-0.0030620014294982,-0.997557103633881,-0.0491762682795525,-0.0451168082654476,-0.997770607471466,-0.537682056427002,-0.842954695224762,-0.0180356912314892,-0.748854279518127,-0.662368535995483,-0.0220255460590124,-0.772026360034943,-0.634915292263031,0.029290271922946,-0.933219194412231,-0.356673181056976,-0.0434302538633347,-0.222338825464249,0.193166762590408,0.955642223358154,
- -0.0809127017855644,0.0391082130372524,0.995953559875488,0.0155878402292728,0.0584818795323372,0.998166739940643,-0.022587563842535,0.0685499832034111,0.997391939163208,0.953147768974304,0.302206009626389,0.0134422872215509,0.0265501830726862,0.0239828303456306,0.999359786510468,-0.022587563842535,0.0685499832034111,0.997391939163208,0.0323627777397633,0.0105664264410734,0.999420285224915,0.993686556816101,0.107532016932964,0.0319997407495975,0.774991691112518,0.631798207759857,0.014795464463532,0.358820647001266,-0.264789909124374,0.895060896873474,0.0620499961078167,0.0563833713531494,0.996479153633118,0.779281377792358,0.625508606433868,0.0382043272256851,0.358820647001266,-0.264789909124374,0.895060896873474,0.0345014445483685,0.0355130098760128,0.998773515224457,0.0545008257031441,-0.0889119356870651,0.994547367095947,0.454924404621124,0.890139698982239,0.0263659190386534,-0.00188159174285829,0.0580611564218998,0.998311281204224,0.0345014445483685,0.0355130098760128,0.998773515224457,0.537396192550659,0.842850685119629,0.0284238401800394,-0.0655496343970299,-0.0221528634428978,-0.997603356838226,0.0298126488924026,-0.99923437833786,-0.0253341775387526,-0.0509755536913872,-0.998440563678741,-0.0227589067071676,0.774991691112518,0.631798207759857,0.014795464463532,0.953147768974304,0.302206009626389,0.0134422872215509,-0.022587563842535,0.0685499832034111,0.997391939163208,0.955628156661987,0.293182343244553,-0.0286175739020109,0.953147768974304,0.302206009626389,0.0134422872215509,0.774991691112518,0.631798207759857,0.014795464463532,0.0203175824135542,-0.0187937915325165,0.999616861343384,-0.776424705982208,-0.630041360855103,0.0145734865218401,-0.88666045665741,0.462337881326675,0.00877317041158676,-0.3552325963974,0.228442162275314,-0.906434774398804,-0.0478024184703827,-0.0121003463864326,-0.998783528804779,-0.912610054016113,-0.408643901348114,-0.0123740797862411,-0.933219194412231,-0.356673181056976,-0.0434302538633347,-0.0110807297751307,-0.0724929496645927,-0.997307360172272,-0.748854279518127,-0.662368535995483,-0.0220255460590124,
- -0.0110807297751307,-0.0724929496645927,-0.997307360172272,-0.99973326921463,-0.0209938995540142,-0.00961614586412907,-0.748854279518127,-0.662368535995483,-0.0220255460590124,-0.88666045665741,0.462337881326675,0.00877317041158676,-0.222338825464249,0.193166762590408,0.955642223358154,0.0203175824135542,-0.0187937915325165,0.999616861343384,-0.0150442719459534,-0.0311730708926916,0.999400794506073,0.0345014445483685,0.0355130098760128,0.998773515224457,-0.00188159174285829,0.0580611564218998,0.998311281204224,-0.0663498267531395,-0.0164412688463926,0.997660934925079,-0.0326402857899666,-0.0349834300577641,0.998854756355286,-0.0335539467632771,0.00376056740060449,-0.999429821968079,-0.99973326921463,-0.0209938995540142,-0.00961614586412907,-0.0110807297751307,-0.0724929496645927,-0.997307360172272,-0.537682056427002,-0.842954695224762,-0.0180356912314892,0.293244868516922,-0.955386757850647,-0.0352631062269211,-0.0697877928614616,-0.0030620014294982,-0.997557103633881,-0.537269353866577,-0.84319007396698,0.0192941688001156,0.293244868516922,-0.955386757850647,-0.0352631062269211,-0.537682056427002,-0.842954695224762,-0.0180356912314892,0.0620499961078167,0.0563833713531494,0.996479153633118,0.0808290615677834,0.041071679443121,0.995881378650665,0.799385488033295,0.599740445613861,0.0359757021069527,0.779281377792358,0.625508606433868,0.0382043272256851,-0.515470862388611,-0.856754958629608,-0.0161447934806347,-0.0124295596033335,-0.0754773244261742,-0.997070014476776,-0.3552325963974,0.228442162275314,-0.906434774398804,-0.912610054016113,-0.408643901348114,-0.0123740797862411,-0.912610054016113,-0.408643901348114,-0.0123740797862411,-0.890330791473389,-0.454547971487045,0.0264065787196159,-0.515470862388611,-0.856754958629608,-0.0161447934806347,-0.971143245697021,-0.233071357011795,-0.0505822859704494,-0.939987003803253,0.339274048805237,-0.0362992659211159,-0.0289117339998484,0.00522982003167272,-0.999568343162537,-0.772026360034943,-0.634915292263031,0.029290271922946,-0.0571265667676926,-0.251040875911713,0.966289401054382,
- -0.937825381755829,-0.34570324420929,0.0311891715973616,-0.998735249042511,0.0266587864607573,0.0426274612545967,-0.0679242014884949,0.072089359164238,0.995082557201386,-0.0342399701476097,0.0910285413265228,0.995259523391724,-0.998959600925446,0.0382812209427357,0.0247842613607645,0.0572825782001019,0.0124922683462501,-0.998279809951782,0.955628156661987,0.293182343244553,-0.0286175739020109,0.13214223086834,0.134295612573624,-0.982091188430786,-0.958419620990753,-0.284044742584229,0.0273935571312904,-0.937825381755829,-0.34570324420929,0.0311891715973616,-0.0552633479237556,-0.0052695395424962,0.998457908630371,-0.0809127017855644,0.0391082130372524,0.995953559875488,-0.937825381755829,-0.34570324420929,0.0311891715973616,-0.0571265667676926,-0.251040875911713,0.966289401054382,-0.0552633479237556,-0.0052695395424962,0.998457908630371,-0.0300694908946753,-0.0157462079077959,-0.999423801898956,0.13214223086834,0.134295612573624,-0.982091188430786,-0.0110807297751307,-0.0724929496645927,-0.997307360172272,0.0572825782001019,0.0124922683462501,-0.998279809951782,0.13214223086834,0.134295612573624,-0.982091188430786,-0.0300694908946753,-0.0157462079077959,-0.999423801898956,-0.0498421266674995,0.0160159897059202,0.998628735542297,-0.0647706389427185,-0.997507512569427,0.0279911197721958,-0.0187438875436783,-0.998911559581757,0.0427127480506897,-0.0647706389427185,-0.997507512569427,0.0279911197721958,-0.999714314937592,0.000718369788955897,0.0238927751779556,-0.896202802658081,-0.443429917097092,0.0138022499158978,-0.0478024184703827,-0.0121003463864326,-0.998783528804779,-0.796080768108368,-0.604665696620941,-0.0251932889223099,-0.912610054016113,-0.408643901348114,-0.0123740797862411,0.876182019710541,0.481759279966354,0.0145998150110245,0.850349605083466,0.526085734367371,-0.0118046961724758,0.537396192550659,0.842850685119629,0.0284238401800394,-0.0498421266674995,0.0160159897059202,0.998628735542297,-0.999714314937592,0.000718369788955897,0.0238927751779556,-0.0647706389427185,-0.997507512569427,0.0279911197721958,
- 0.0359112024307251,0.0370906852185726,-0.99866646528244,0.994089603424072,-0.100736051797867,-0.0404750928282738,0.946710109710693,0.320670813322067,-0.0301693473011255,0.946710109710693,0.320670813322067,-0.0301693473011255,0.994089603424072,-0.100736051797867,-0.0404750928282738,0.9468754529953,0.32132151722908,0.0133931422606111,-0.80075341463089,-0.59873366355896,0.0176637079566717,0.0545008257031441,-0.0889119356870651,0.994547367095947,-0.890330791473389,-0.454547971487045,0.0264065787196159,0.0203175824135542,-0.0187937915325165,0.999616861343384,-0.222338825464249,0.193166762590408,0.955642223358154,0.0808290615677834,0.041071679443121,0.995881378650665,-0.0187438875436783,-0.998911559581757,0.0427127480506897,0.0385664068162441,-0.999069452285767,0.0193101074546576,0.0475363023579121,0.0175569672137499,0.998715221881866,0.0155878402292728,0.0584818795323372,0.998166739940643,0.9468754529953,0.32132151722908,0.0133931422606111,0.998912990093231,0.0448445156216621,0.0127139389514923,0.0685275569558144,0.122505061328411,0.990099191665649,0.0411229133605957,0.0029537312220782,-0.999149680137634,0.994089603424072,-0.100736051797867,-0.0404750928282738,0.0550897940993309,-0.0500547178089619,-0.997225999832153,0.0385664068162441,-0.999069452285767,0.0193101074546576,0.999553143978119,-0.0295213982462883,0.00468211574479938,0.0475363023579121,0.0175569672137499,0.998715221881866,-0.0655496343970299,-0.0221528634428978,-0.997603356838226,-0.0509755536913872,-0.998440563678741,-0.0227589067071676,-0.999630510807037,-0.0157869569957256,-0.02212805300951,0.994089603424072,-0.100736051797867,-0.0404750928282738,0.998912990093231,0.0448445156216621,0.0127139389514923,0.9468754529953,0.32132151722908,0.0133931422606111,-0.0509755536913872,-0.998440563678741,-0.0227589067071676,-0.0647706389427185,-0.997507512569427,0.0279911197721958,-0.896202802658081,-0.443429917097092,0.0138022499158978,-0.0509755536913872,-0.998440563678741,-0.0227589067071676,-0.896202802658081,-0.443429917097092,0.0138022499158978,-0.999630510807037,-0.0157869569957256,-0.02212805300951,
- 0.00728154182434082,0.0296003241091967,-0.999535262584686,0.850349605083466,0.526085734367371,-0.0118046961724758,0.779233753681183,0.626596212387085,-0.0131089044734836,0.0638735070824623,-0.157219961285591,-0.985495865345001,0.0359112024307251,0.0370906852185726,-0.99866646528244,-0.0289117339998484,0.00522982003167272,-0.999568343162537,-0.0177351031452417,-0.0419287160038948,-0.998963177204132,-0.939987003803253,0.339274048805237,-0.0362992659211159,-0.780406177043915,-0.624665200710297,-0.027559295296669,-0.780406177043915,-0.624665200710297,-0.027559295296669,-0.796080768108368,-0.604665696620941,-0.0251932889223099,-0.0478024184703827,-0.0121003463864326,-0.998783528804779,-0.0177351031452417,-0.0419287160038948,-0.998963177204132,0.00728154182434082,0.0296003241091967,-0.999535262584686,0.0171554107218981,0.0441780090332031,-0.998876392841339,0.850349605083466,0.526085734367371,-0.0118046961724758,-0.0124295596033335,-0.0754773244261742,-0.997070014476776,-0.0491762682795525,-0.0451168082654476,-0.997770607471466,0.0193295311182737,0.0593806095421314,-0.998048186302185,0.0574274212121964,0.0346057377755642,-0.997749745845795,-0.0697877928614616,-0.0030620014294982,-0.997557103633881,-0.179750770330429,0.0775342583656311,-0.98065185546875,0.0193295311182737,0.0593806095421314,-0.998048186302185,-0.0491762682795525,-0.0451168082654476,-0.997770607471466,-0.0871831253170967,0.0699150115251541,0.993735909461975,0.221370130777359,-0.172015622258186,0.959898889064789,-0.0663498267531395,-0.0164412688463926,0.997660934925079,-0.00188159174285829,0.0580611564218998,0.998311281204224,0.632739782333374,-0.772593259811401,0.0523448549211025,-0.537269353866577,-0.84319007396698,0.0192941688001156,-0.0663498267531395,-0.0164412688463926,0.997660934925079,0.221370130777359,-0.172015622258186,0.959898889064789,-0.890330791473389,-0.454547971487045,0.0264065787196159,-0.0150442719459534,-0.0311730708926916,0.999400794506073,-0.516049683094025,-0.856307983398438,0.0207198094576597,-0.0206959564238787,-0.0177423469722271,0.99962842464447,
- 0.0620499961078167,0.0563833713531494,0.996479153633118,0.0545008257031441,-0.0889119356870651,0.994547367095947,-0.222338825464249,0.193166762590408,0.955642223358154,0.0685275569558144,0.122505061328411,0.990099191665649,0.0808290615677834,0.041071679443121,0.995881378650665,0.876182019710541,0.481759279966354,0.0145998150110245,0.537396192550659,0.842850685119629,0.0284238401800394,0.0345014445483685,0.0355130098760128,0.998773515224457,0.876182019710541,0.481759279966354,0.0145998150110245,0.0345014445483685,0.0355130098760128,0.998773515224457,0.358820647001266,-0.264789909124374,0.895060896873474,0.358820647001266,-0.264789909124374,0.895060896873474,0.779281377792358,0.625508606433868,0.0382043272256851,0.876182019710541,0.481759279966354,0.0145998150110245,-0.0655496343970299,-0.0221528634428978,-0.997603356838226,0.0475600734353065,-0.0188549291342497,-0.998690485954285,0.0298126488924026,-0.99923437833786,-0.0253341775387526,0.998612523078918,-0.0358662754297256,-0.0385570526123047,0.0298126488924026,-0.99923437833786,-0.0253341775387526,0.0475600734353065,-0.0188549291342497,-0.998690485954285,0.0545008257031441,-0.0889119356870651,0.994547367095947,-0.0150442719459534,-0.0311730708926916,0.999400794506073,-0.890330791473389,-0.454547971487045,0.0264065787196159,-0.80075341463089,-0.59873366355896,0.0176637079566717,-0.0206959564238787,-0.0177423469722271,0.99962842464447,0.0545008257031441,-0.0889119356870651,0.994547367095947,-0.776424705982208,-0.630041360855103,0.0145734865218401,-0.772914230823517,-0.633862853050232,0.0286638084799051,-0.80075341463089,-0.59873366355896,0.0176637079566717,-0.796080768108368,-0.604665696620941,-0.0251932889223099,-0.780406177043915,-0.624665200710297,-0.027559295296669,0.997713327407837,0.0638053938746452,-0.0222931429743767,0.885416686534882,0.447186559438705,-0.126733466982841,0.779376268386841,0.62532514333725,-0.0392546430230141,0.0171554107218981,0.0441780090332031,-0.998876392841339,-0.3552325963974,0.228442162275314,-0.906434774398804,-0.0124295596033335,-0.0754773244261742,-0.997070014476776,
- 0.00728154182434082,0.0296003241091967,-0.999535262584686,-0.3552325963974,0.228442162275314,-0.906434774398804,0.0171554107218981,0.0441780090332031,-0.998876392841339,0.00728154182434082,0.0296003241091967,-0.999535262584686,-0.0478024184703827,-0.0121003463864326,-0.998783528804779,-0.3552325963974,0.228442162275314,-0.906434774398804,0.454924404621124,0.890139698982239,0.0263659190386534,0.537396192550659,0.842850685119629,0.0284238401800394,0.536682367324829,0.843262493610382,-0.0296694617718458,0.452254265546799,0.891464471817017,-0.0275183636695147,0.779233753681183,0.626596212387085,-0.0131089044734836,0.802407324314117,0.596684753894806,-0.0104772821068764,0.0411229133605957,0.0029537312220782,-0.999149680137634,0.00728154182434082,0.0296003241091967,-0.999535262584686,0.0265501830726862,0.0239828303456306,0.999359786510468,0.0155878402292728,0.0584818795323372,0.998166739940643,-0.0809127017855644,0.0391082130372524,0.995953559875488,-0.0552633479237556,-0.0052695395424962,0.998457908630371,-0.0300694908946753,-0.0157462079077959,-0.999423801898956,-0.933219194412231,-0.356673181056976,-0.0434302538633347,-0.971143245697021,-0.233071357011795,-0.0505822859704494,-0.0289117339998484,0.00522982003167272,-0.999568343162537,-0.0335539467632771,0.00376056740060449,-0.999429821968079,0.0419527366757393,0.00344615406356752,-0.999113619327545,0.0372253432869911,-0.0354781150817871,-0.998676896095276,-0.0229607410728931,-0.045183140784502,-0.998714804649353,-0.999714314937592,0.000718369788955897,0.0238927751779556,-0.999630510807037,-0.0157869569957256,-0.02212805300951,-0.896202802658081,-0.443429917097092,0.0138022499158978,-0.0610099509358406,-0.0361859276890755,0.997481048107147,-0.023981586098671,-0.0388784483075142,0.998956084251404,0.0274850334972143,-0.0332788974046707,0.999068021774292,0.0323627777397633,0.0105664264410734,0.999420285224915,-0.0549158304929733,0.0119772795587778,0.998419225215912,-0.0335539467632771,0.00376056740060449,-0.999429821968079,-0.0229607410728931,-0.045183140784502,-0.998714804649353,
- -0.999003112316132,-0.0411961562931538,-0.0171933341771364,-0.99973326921463,-0.0209938995540142,-0.00961614586412907,-0.999111652374268,-0.0213875714689493,0.0363091230392456,-0.0549158304929733,0.0119772795587778,0.998419225215912,-0.0571265667676926,-0.251040875911713,0.966289401054382,-0.772026360034943,-0.634915292263031,0.029290271922946,0.997713327407837,0.0638053938746452,-0.0222931429743767,0.993686556816101,0.107532016932964,0.0319997407495975,0.998771131038666,0.0364330969750881,0.0335986763238907,0.999534904956818,0.0223325528204441,-0.0207694210112095,0.454924404621124,0.890139698982239,0.0263659190386534,-0.0871831253170967,0.0699150115251541,0.993735909461975,-0.00188159174285829,0.0580611564218998,0.998311281204224,-0.958419620990753,-0.284044742584229,0.0273935571312904,-0.0809127017855644,0.0391082130372524,0.995953559875488,-0.88666045665741,0.462337881326675,0.00877317041158676,-0.796080768108368,-0.604665696620941,-0.0251932889223099,-0.890330791473389,-0.454547971487045,0.0264065787196159,-0.912610054016113,-0.408643901348114,-0.0123740797862411,0.876182019710541,0.481759279966354,0.0145998150110245,0.779281377792358,0.625508606433868,0.0382043272256851,0.779233753681183,0.626596212387085,-0.0131089044734836,0.850349605083466,0.526085734367371,-0.0118046961724758,-0.999003112316132,-0.0411961562931538,-0.0171933341771364,-0.997371971607208,-0.0484216064214706,0.0538935884833336,-0.999111652374268,-0.0213875714689493,0.0363091230392456,-0.99973326921463,-0.0209938995540142,-0.00961614586412907,-0.889438927173615,-0.299404203891754,0.345333874225616,-0.335867702960968,-0.338073372840881,0.879146993160248,-0.0610099509358406,-0.0361859276890755,0.997481048107147,-0.997371971607208,-0.0484216064214706,0.0538935884833336,0.986281633377075,0.147824540734291,0.0734612345695496,-0.0144798317924142,-0.195921421051025,0.980512678623199,0.0413958132266998,0.064687967300415,0.997046530246735,0.999753534793854,0.021125553175807,0.00682389084249735,-0.0144798317924142,-0.195921421051025,0.980512678623199,-0.335867702960968,-0.338073372840881,0.879146993160248,
- -0.0342399701476097,0.0910285413265228,0.995259523391724,0.0413958132266998,0.064687967300415,0.997046530246735,-0.889438927173615,-0.299404203891754,0.345333874225616,-0.934833228588104,-0.355044394731522,-0.005509362090379,-0.998959600925446,0.0382812209427357,0.0247842613607645,-0.0229607410728931,-0.045183140784502,-0.998714804649353,-0.0201973114162683,-0.50871604681015,-0.860697388648987,-0.934833228588104,-0.355044394731522,-0.005509362090379,0.998771131038666,0.0364330969750881,0.0335986763238907,0.0274850334972143,-0.0332788974046707,0.999068021774292,-0.0144798317924142,-0.195921421051025,0.980512678623199,0.986281633377075,0.147824540734291,0.0734612345695496,-0.335867702960968,-0.338073372840881,0.879146993160248,-0.023981586098671,-0.0388784483075142,0.998956084251404,-0.0610099509358406,-0.0361859276890755,0.997481048107147,0.0196843910962343,-0.477492690086365,-0.87841522693634,0.999534904956818,0.0223325528204441,-0.0207694210112095,0.918038725852966,-0.394558131694794,-0.0390999801456928,-0.999003112316132,-0.0411961562931538,-0.0171933341771364,-0.0229607410728931,-0.045183140784502,-0.998714804649353,-0.934833228588104,-0.355044394731522,-0.005509362090379,-0.889438927173615,-0.299404203891754,0.345333874225616,-0.976584851741791,-0.214572310447693,0.015510518103838,-0.999003112316132,-0.0411961562931538,-0.0171933341771364,-0.934833228588104,-0.355044394731522,-0.005509362090379,-0.999111652374268,-0.0213875714689493,0.0363091230392456,-0.997371971607208,-0.0484216064214706,0.0538935884833336,-0.0610099509358406,-0.0361859276890755,0.997481048107147,-0.0549158304929733,0.0119772795587778,0.998419225215912,-0.998959600925446,0.0382812209427357,0.0247842613607645,-0.0342399701476097,0.0910285413265228,0.995259523391724,-0.335867702960968,-0.338073372840881,0.879146993160248,-0.889438927173615,-0.299404203891754,0.345333874225616,0.0475363023579121,0.0175569672137499,0.998715221881866,0.999553143978119,-0.0295213982462883,0.00468211574479938,0.999753534793854,0.021125553175807,0.00682389084249735,
- 0.0413958132266998,0.064687967300415,0.997046530246735,-0.0498421266674995,0.0160159897059202,0.998628735542297,0.0475363023579121,0.0175569672137499,0.998715221881866,0.0413958132266998,0.064687967300415,0.997046530246735,-0.0342399701476097,0.0910285413265228,0.995259523391724,-0.0679242014884949,0.072089359164238,0.995082557201386,-0.0655496343970299,-0.0221528634428978,-0.997603356838226,-0.999630510807037,-0.0157869569957256,-0.02212805300951,-0.999617695808411,0.0135721107944846,-0.0240902714431286,-0.0608177445828915,0.025430154055357,-0.997824847698212,-0.999630510807037,-0.0157869569957256,-0.02212805300951,-0.999714314937592,0.000718369788955897,0.0238927751779556,-0.998735249042511,0.0266587864607573,0.0426274612545967,-0.998959600925446,0.0382812209427357,0.0247842613607645,-0.999617695808411,0.0135721107944846,-0.0240902714431286,0.999553143978119,-0.0295213982462883,0.00468211574479938,0.998612523078918,-0.0358662754297256,-0.0385570526123047,0.998915195465088,0.0132415546104312,-0.0446441248059273,0.999753534793854,0.021125553175807,0.00682389084249735,0.998612523078918,-0.0358662754297256,-0.0385570526123047,0.0475600734353065,-0.0188549291342497,-0.998690485954285,0.0389541983604431,0.0230801720172167,-0.99897438287735,0.998915195465088,0.0132415546104312,-0.0446441248059273,0.0389541983604431,0.0230801720172167,-0.99897438287735,-0.0608177445828915,0.025430154055357,-0.997824847698212,0.0196843910962343,-0.477492690086365,-0.87841522693634,0.0196843910962343,-0.477492690086365,-0.87841522693634,0.918038725852966,-0.394558131694794,-0.0390999801456928,0.998915195465088,0.0132415546104312,-0.0446441248059273,-0.998735249042511,0.0266587864607573,0.0426274612545967,-0.999714314937592,0.000718369788955897,0.0238927751779556,-0.0498421266674995,0.0160159897059202,0.998628735542297,-0.0679242014884949,0.072089359164238,0.995082557201386,-0.997371971607208,-0.0484216064214706,0.0538935884833336,-0.976584851741791,-0.214572310447693,0.015510518103838,-0.889438927173615,-0.299404203891754,0.345333874225616,
- 0.0274850334972143,-0.0332788974046707,0.999068021774292,-0.023981586098671,-0.0388784483075142,0.998956084251404,-0.335867702960968,-0.338073372840881,0.879146993160248,-0.0144798317924142,-0.195921421051025,0.980512678623199,-0.997371971607208,-0.0484216064214706,0.0538935884833336,-0.999003112316132,-0.0411961562931538,-0.0171933341771364,-0.976584851741791,-0.214572310447693,0.015510518103838,0.0196843910962343,-0.477492690086365,-0.87841522693634,0.998915195465088,0.0132415546104312,-0.0446441248059273,0.0389541983604431,0.0230801720172167,-0.99897438287735,0.999534904956818,0.0223325528204441,-0.0207694210112095,0.986281633377075,0.147824540734291,0.0734612345695496,0.918038725852966,-0.394558131694794,-0.0390999801456928,-0.934833228588104,-0.355044394731522,-0.005509362090379,-0.0201973114162683,-0.50871604681015,-0.860697388648987,-0.0608177445828915,0.025430154055357,-0.997824847698212,0.0475600734353065,-0.0188549291342497,-0.998690485954285,-0.0655496343970299,-0.0221528634428978,-0.997603356838226,-0.0608177445828915,0.025430154055357,-0.997824847698212,0.0389541983604431,0.0230801720172167,-0.99897438287735,0.999534904956818,0.0223325528204441,-0.0207694210112095,0.998771131038666,0.0364330969750881,0.0335986763238907,0.986281633377075,0.147824540734291,0.0734612345695496,0.986281633377075,0.147824540734291,0.0734612345695496,0.999753534793854,0.021125553175807,0.00682389084249735,0.998915195465088,0.0132415546104312,-0.0446441248059273,0.986281633377075,0.147824540734291,0.0734612345695496,0.998915195465088,0.0132415546104312,-0.0446441248059273,0.918038725852966,-0.394558131694794,-0.0390999801456928,0.0372253432869911,-0.0354781150817871,-0.998676896095276,0.999534904956818,0.0223325528204441,-0.0207694210112095,0.0196843910962343,-0.477492690086365,-0.87841522693634,-0.998959600925446,0.0382812209427357,0.0247842613607645,-0.934833228588104,-0.355044394731522,-0.005509362090379,-0.999617695808411,0.0135721107944846,-0.0240902714431286,-0.999483168125153,-0.0314483046531677,0.00666089681908488,-0.168566688895226,-0.985114693641663,-0.0336802937090397,
- -0.158274412155151,-0.986695826053619,0.0371575392782688,0.176366701722145,0.983939230442047,0.0275391489267349,-0.0718564167618752,0.0267912317067385,0.997055172920227,0.0391336046159267,0.0189637169241905,0.99905401468277,0.190811470150948,0.981357038021088,0.0230129528790712,-0.00537235243245959,0.0660605803132057,-0.997801184654236,-0.0139264184981585,-0.0850689262151718,-0.996277689933777,-0.999818623065948,-0.00161415501497686,-0.0189746934920549,-0.168566688895226,-0.985114693641663,-0.0336802937090397,-0.999483168125153,-0.0314483046531677,0.00666089681908488,-0.99942946434021,-0.0333389118313789,0.00540713174268603,-0.99956876039505,-0.0140879210084677,-0.0257657784968615,-0.999818623065948,-0.00161415501497686,-0.0189746934920549,-0.0139264184981585,-0.0850689262151718,-0.996277689933777,-0.00537235243245959,0.0660605803132057,-0.997801184654236,0.164523959159851,0.986175000667572,-0.0197681877762079,0.194560527801514,0.980444848537445,-0.0295661948621273,0.0312357489019632,0.0393433384597301,-0.998737454414368,-0.00537235243245959,0.0660605803132057,-0.997801184654236,-0.999818623065948,-0.00161415501497686,-0.0189746934920549,0.164523959159851,0.986175000667572,-0.0197681877762079,-0.99956876039505,-0.0140879210084677,-0.0257657784968615,-0.168566688895226,-0.985114693641663,-0.0336802937090397,-0.99942946434021,-0.0333389118313789,0.00540713174268603,-0.0139264184981585,-0.0850689262151718,-0.996277689933777,-0.168566688895226,-0.985114693641663,-0.0336802937090397,-0.99956876039505,-0.0140879210084677,-0.0257657784968615,-0.999818623065948,-0.00161415501497686,-0.0189746934920549,-0.999642610549927,0.0200559310615063,0.01767548173666,0.164523959159851,0.986175000667572,-0.0197681877762079,0.176366701722145,0.983939230442047,0.0275391489267349,0.190811470150948,0.981357038021088,0.0230129528790712,0.194560527801514,0.980444848537445,-0.0295661948621273,0.164523959159851,0.986175000667572,-0.0197681877762079,-0.0139264184981585,-0.0850689262151718,-0.996277689933777,-0.00537235243245959,0.0660605803132057,-0.997801184654236,
- 0.0312357489019632,0.0393433384597301,-0.998737454414368,0.00775008136406541,-0.0767979174852371,-0.997016608715057,0.00231198081746697,-0.0544478185474873,0.998513877391815,0.0391336046159267,0.0189637169241905,0.99905401468277,-0.0718564167618752,0.0267912317067385,0.997055172920227,-0.0372669510543346,-0.038790188729763,0.998552143573761,-0.0139264184981585,-0.0850689262151718,-0.996277689933777,0.00775008136406541,-0.0767979174852371,-0.997016608715057,-0.0740699619054794,-0.9967200756073,-0.0325976982712746,-0.168566688895226,-0.985114693641663,-0.0336802937090397,0.164523959159851,0.986175000667572,-0.0197681877762079,-0.999642610549927,0.0200559310615063,0.01767548173666,0.176366701722145,0.983939230442047,0.0275391489267349,-0.0740699619054794,-0.9967200756073,-0.0325976982712746,-0.11068868637085,-0.993446528911591,0.028495641425252,-0.158274412155151,-0.986695826053619,0.0371575392782688,-0.168566688895226,-0.985114693641663,-0.0336802937090397,0.632739782333374,-0.772593259811401,0.0523448549211025,0.221370130777359,-0.172015622258186,0.959898889064789,-0.11068868637085,-0.993446528911591,0.028495641425252,0.00775008136406541,-0.0767979174852371,-0.997016608715057,0.0312357489019632,0.0393433384597301,-0.998737454414368,-0.179750770330429,0.0775342583656311,-0.98065185546875,-0.0697877928614616,-0.0030620014294982,-0.997557103633881,0.190811470150948,0.981357038021088,0.0230129528790712,0.0391336046159267,0.0189637169241905,0.99905401468277,-0.0871831253170967,0.0699150115251541,0.993735909461975,-0.155915915966034,0.987624049186707,0.0170033946633339,-0.0740699619054794,-0.9967200756073,-0.0325976982712746,0.00775008136406541,-0.0767979174852371,-0.997016608715057,-0.0697877928614616,-0.0030620014294982,-0.997557103633881,0.293244868516922,-0.955386757850647,-0.0352631062269211,-0.0740699619054794,-0.9967200756073,-0.0325976982712746,-0.0697877928614616,-0.0030620014294982,-0.997557103633881,-0.158274412155151,-0.986695826053619,0.0371575392782688,-0.11068868637085,-0.993446528911591,0.028495641425252,
- 0.00231198081746697,-0.0544478185474873,0.998513877391815,-0.0372669510543346,-0.038790188729763,0.998552143573761,-0.11068868637085,-0.993446528911591,0.028495641425252,0.293244868516922,-0.955386757850647,-0.0352631062269211,0.632739782333374,-0.772593259811401,0.0523448549211025,0.0391336046159267,0.0189637169241905,0.99905401468277,0.00231198081746697,-0.0544478185474873,0.998513877391815,0.221370130777359,-0.172015622258186,0.959898889064789,-0.0871831253170967,0.0699150115251541,0.993735909461975,-0.11068868637085,-0.993446528911591,0.028495641425252,-0.0740699619054794,-0.9967200756073,-0.0325976982712746,0.293244868516922,-0.955386757850647,-0.0352631062269211,-0.155915915966034,0.987624049186707,0.0170033946633339,-0.195415481925011,0.980631828308105,-0.0131917903199792,0.194560527801514,0.980444848537445,-0.0295661948621273,0.190811470150948,0.981357038021088,0.0230129528790712,0.0312357489019632,0.0393433384597301,-0.998737454414368,0.194560527801514,0.980444848537445,-0.0295661948621273,-0.179750770330429,0.0775342583656311,-0.98065185546875,-0.999818623065948,-0.00161415501497686,-0.0189746934920549,-0.99956876039505,-0.0140879210084677,-0.0257657784968615,-0.99942946434021,-0.0333389118313789,0.00540713174268603,-0.999483168125153,-0.0314483046531677,0.00666089681908488,-0.999652564525604,-0.0120638515800238,0.0234376583248377,-0.999642610549927,0.0200559310615063,0.01767548173666,-0.158274412155151,-0.986695826053619,0.0371575392782688,-0.0372669510543346,-0.038790188729763,0.998552143573761,-0.999652564525604,-0.0120638515800238,0.0234376583248377,-0.999483168125153,-0.0314483046531677,0.00666089681908488,-0.999642610549927,0.0200559310615063,0.01767548173666,-0.0718564167618752,0.0267912317067385,0.997055172920227,0.176366701722145,0.983939230442047,0.0275391489267349,-0.999642610549927,0.0200559310615063,0.01767548173666,-0.999652564525604,-0.0120638515800238,0.0234376583248377,-0.0372669510543346,-0.038790188729763,0.998552143573761,-0.0718564167618752,0.0267912317067385,0.997055172920227,0.454924404621124,0.890139698982239,0.0263659190386534,
- -0.155915915966034,0.987624049186707,0.0170033946633339,-0.0871831253170967,0.0699150115251541,0.993735909461975,0.802407324314117,0.596684753894806,-0.0104772821068764,0.799385488033295,0.599740445613861,0.0359757021069527,0.994089603424072,-0.100736051797867,-0.0404750928282738,0.850349605083466,0.526085734367371,-0.0118046961724758,0.536682367324829,0.843262493610382,-0.0296694617718458,0.537396192550659,0.842850685119629,0.0284238401800394,0.0171554107218981,0.0441780090332031,-0.998876392841339,0.0574274212121964,0.0346057377755642,-0.997749745845795,0.536682367324829,0.843262493610382,-0.0296694617718458,0.850349605083466,0.526085734367371,-0.0118046961724758,-0.0124295596033335,-0.0754773244261742,-0.997070014476776,0.0574274212121964,0.0346057377755642,-0.997749745845795,0.0171554107218981,0.0441780090332031,-0.998876392841339,-0.934833228588104,-0.355044394731522,-0.005509362090379,-0.0608177445828915,0.025430154055357,-0.997824847698212,-0.999617695808411,0.0135721107944846,-0.0240902714431286,-0.80075341463089,-0.59873366355896,0.0176637079566717,-0.890330791473389,-0.454547971487045,0.0264065787196159,-0.796080768108368,-0.604665696620941,-0.0251932889223099,0.0620499961078167,0.0563833713531494,0.996479153633118,-0.0206959564238787,-0.0177423469722271,0.99962842464447,-0.0120254093781114,-0.0239291880279779,0.999641358852386,0.0203175824135542,-0.0187937915325165,0.999616861343384,0.0808290615677834,0.041071679443121,0.995881378650665,-0.88666045665741,0.462337881326675,0.00877317041158676,-0.776424705982208,-0.630041360855103,0.0145734865218401,-0.780406177043915,-0.624665200710297,-0.027559295296669,-0.11068868637085,-0.993446528911591,0.028495641425252,0.221370130777359,-0.172015622258186,0.959898889064789,0.00231198081746697,-0.0544478185474873,0.998513877391815,0.774991691112518,0.631798207759857,0.014795464463532,0.993686556816101,0.107532016932964,0.0319997407495975,0.779376268386841,0.62532514333725,-0.0392546430230141,0.885416686534882,0.447186559438705,-0.126733466982841,0.993686556816101,0.107532016932964,0.0319997407495975,
- 0.0323627777397633,0.0105664264410734,0.999420285224915,0.0274850334972143,-0.0332788974046707,0.999068021774292,0.998771131038666,0.0364330969750881,0.0335986763238907,0.799385488033295,0.599740445613861,0.0359757021069527,0.998912990093231,0.0448445156216621,0.0127139389514923,0.994089603424072,-0.100736051797867,-0.0404750928282738,0.0685275569558144,0.122505061328411,0.990099191665649,0.998912990093231,0.0448445156216621,0.0127139389514923,0.799385488033295,0.599740445613861,0.0359757021069527,0.0808290615677834,0.041071679443121,0.995881378650665,0.0685275569558144,0.122505061328411,0.990099191665649,0.799385488033295,0.599740445613861,0.0359757021069527,-0.933219194412231,-0.356673181056976,-0.0434302538633347,-0.937825381755829,-0.34570324420929,0.0311891715973616,-0.958419620990753,-0.284044742584229,0.0273935571312904,-0.971143245697021,-0.233071357011795,-0.0505822859704494,0.0411229133605957,0.0029537312220782,-0.999149680137634,0.0550897940993309,-0.0500547178089619,-0.997225999832153,0.0638735070824623,-0.157219961285591,-0.985495865345001,0.0550897940993309,-0.0500547178089619,-0.997225999832153,0.0359112024307251,0.0370906852185726,-0.99866646528244,0.0638735070824623,-0.157219961285591,-0.985495865345001,0.0155878402292728,0.0584818795323372,0.998166739940643,0.0685275569558144,0.122505061328411,0.990099191665649,-0.222338825464249,0.193166762590408,0.955642223358154,-0.0120254093781114,-0.0239291880279779,0.999641358852386,-0.0206959564238787,-0.0177423469722271,0.99962842464447,-0.80075341463089,-0.59873366355896,0.0176637079566717,-0.772914230823517,-0.633862853050232,0.0286638084799051,0.0203175824135542,-0.0187937915325165,0.999616861343384,-0.0120254093781114,-0.0239291880279779,0.999641358852386,-0.772914230823517,-0.633862853050232,0.0286638084799051,-0.0150442719459534,-0.0311730708926916,0.999400794506073,-0.0326402857899666,-0.0349834300577641,0.998854756355286,-0.527069091796875,-0.849255740642548,0.0310301743447781,-0.516049683094025,-0.856307983398438,0.0207198094576597,-0.527069091796875,-0.849255740642548,0.0310301743447781,
- -0.0326402857899666,-0.0349834300577641,0.998854756355286,-0.0663498267531395,-0.0164412688463926,0.997660934925079,-0.537269353866577,-0.84319007396698,0.0192941688001156,-0.0229607410728931,-0.045183140784502,-0.998714804649353,0.0372253432869911,-0.0354781150817871,-0.998676896095276,0.0196843910962343,-0.477492690086365,-0.87841522693634,-0.0201973114162683,-0.50871604681015,-0.860697388648987,-0.0608177445828915,0.025430154055357,-0.997824847698212,-0.0201973114162683,-0.50871604681015,-0.860697388648987,0.0196843910962343,-0.477492690086365,-0.87841522693634,-0.195415481925011,0.980631828308105,-0.0131917903199792,0.452254265546799,0.891464471817017,-0.0275183636695147,-0.179750770330429,0.0775342583656311,-0.98065185546875,0.194560527801514,0.980444848537445,-0.0295661948621273,-0.195415481925011,0.980631828308105,-0.0131917903199792,-0.179750770330429,0.0775342583656311,-0.98065185546875,0.997713327407837,0.0638053938746452,-0.0222931429743767,0.779376268386841,0.62532514333725,-0.0392546430230141,0.993686556816101,0.107532016932964,0.0319997407495975,0.997713327407837,0.0638053938746452,-0.0222931429743767,0.13214223086834,0.134295612573624,-0.982091188430786,0.885416686534882,0.447186559438705,-0.126733466982841,-0.809221386909485,0.587364614009857,0.0127925025299191,-0.770518064498901,0.637287557125092,0.0129025997593999,-0.773907721042633,0.632698833942413,-0.0275512710213661,-0.811704397201538,0.583304941654205,-0.0298550371080637,-0.997687160968781,0.060537151992321,-0.0309134274721146,-0.0489752553403378,0.0281021147966385,-0.998404502868652,-0.0459463074803352,-0.0248509980738163,-0.99863475561142,-0.999498605728149,0.00566997472196817,-0.0311499908566475,0.998662352561951,0.0415168181061745,-0.0308186262845993,-0.202817276120186,0.978661239147186,-0.0329764932394028,-0.208793744444847,0.977957725524902,0.0019568451680243,0.99848461151123,0.0503717213869095,0.02216268889606,-0.0303663704544306,-0.999108970165253,0.0293125156313181,0.479641735553741,-0.877424597740173,-0.00836223550140858,0.473406344652176,-0.88005530834198,0.0372684448957443,
- -0.709683358669281,0.704290926456451,0.0179974548518658,-0.999574244022369,0.00574570428580046,0.0286062136292458,-0.999498605728149,0.00566997472196817,-0.0311499908566475,-0.751253068447113,0.660014033317566,-0.00046046607894823,0.998371779918671,-0.0545568317174912,0.0166522338986397,0.914931178092957,0.391661673784256,0.0974788814783096,0.962565660476685,-0.269835382699966,-0.0256193950772285,-0.0479940734803677,0.0164330564439297,-0.998712480068207,-0.0415430814027786,0.0400638803839684,-0.998333156108856,0.0331151932477951,-0.0102142840623856,-0.999399304389954,0.019769499078393,-0.028693076223135,-0.999392747879028,0.999458253383636,-0.0204086247831583,-0.0258204098790884,0.999704599380493,-0.0026437477208674,-0.0241585578769445,0.999945342540741,-0.00241952412761748,0.0101662455126643,0.999652206897736,-0.0145187377929688,0.0220159944146872,0.998371779918671,-0.0545568317174912,0.0166522338986397,0.925870597362518,-0.376992136240005,0.0253117512911558,0.999945342540741,-0.00241952412761748,0.0101662455126643,0.999704599380493,-0.0026437477208674,-0.0241585578769445,0.0373224504292011,-0.0338772684335709,-0.998728930950165,-0.0289488006383181,0.000781040638685226,-0.99958062171936,-0.0250061638653278,0.0348016954958439,-0.999081313610077,0.0433065108954906,0.0073888311162591,-0.999034464359283,0.790842354297638,-0.610849976539612,-0.0378251560032368,0.808960735797882,-0.587055563926697,0.0307913795113564,0.5712651014328,-0.819638669490814,0.0429957397282124,0.837917447090149,-0.543384909629822,-0.0512565299868584,-0.0303663704544306,-0.999108970165253,0.0293125156313181,0.819049000740051,-0.572900950908661,0.0307118371129036,0.818344533443451,-0.573309779167175,-0.0403493605554104,-0.0327145233750343,-0.147180244326591,0.988568484783173,-0.0193075016140938,-0.026325223967433,0.999466896057129,0.0423290617763996,-0.0355083718895912,0.998472571372986,0.00725589413195848,0.0327937118709087,0.999435782432556,0.965734660625458,-0.25859123468399,0.0220734681934118,0.974882245063782,-0.222567766904831,0.00824765581637621,
- 0.999458253383636,-0.0204086247831583,-0.0258204098790884,0.0705005675554276,-0.0303963702172041,-0.997048556804657,0.0797530338168144,0.0269885715097189,-0.99644923210144,0.999704599380493,-0.0026437477208674,-0.0241585578769445,0.5712651014328,-0.819638669490814,0.0429957397282124,0.0137721030041575,-0.0775887295603752,0.996890306472778,-0.0175980124622583,-0.133344724774361,0.990913450717926,0.0405823364853859,0.101548403501511,0.994002521038055,-0.0832109823822975,0.0235564056783915,0.996253430843353,0.0076399790123105,0.324330061674118,0.945913136005402,0.818344533443451,-0.573309779167175,-0.0403493605554104,0.0331151932477951,-0.0102142840623856,-0.999399304389954,-0.194431021809578,-0.219095408916473,-0.956134796142578,0.0116541804745793,-0.0528048537671566,0.998536825180054,-0.0345194973051548,0.0285900831222534,0.998995065689087,-0.0193075016140938,-0.026325223967433,0.999466896057129,-0.0327145233750343,-0.147180244326591,0.988568484783173,0.99916535615921,-0.0139303123578429,0.0384012162685394,0.998802721500397,-0.0431116335093975,0.0231166016310453,0.999053776264191,-0.0396694876253605,-0.017830602824688,0.0328333489596844,0.0043043801560998,0.999451518058777,0.0405823364853859,0.101548403501511,0.994002521038055,-0.0401845946907997,0.00650644209235907,0.999171137809753,-0.0362370051443577,0.00729187298566103,0.99931663274765,-0.770518064498901,0.637287557125092,0.0129025997593999,-0.809221386909485,0.587364614009857,0.0127925025299191,-0.0525544621050358,-0.0141790919005871,0.998517453670502,0.0423290617763996,-0.0355083718895912,0.998472571372986,-0.0193075016140938,-0.026325223967433,0.999466896057129,-0.0362370051443577,0.00729187298566103,0.99931663274765,0.0433065108954906,0.0073888311162591,-0.999034464359283,-0.0250061638653278,0.0348016954958439,-0.999081313610077,0.129089504480362,0.235064044594765,-0.963369488716125,0.019769499078393,-0.028693076223135,-0.999392747879028,0.837917447090149,-0.543384909629822,-0.0512565299868584,0.129089504480362,0.235064044594765,-0.963369488716125,0.998662352561951,0.0415168181061745,-0.0308186262845993,
- 0.99848461151123,0.0503717213869095,0.02216268889606,0.99916535615921,-0.0139303123578429,0.0384012162685394,0.999053776264191,-0.0396694876253605,-0.017830602824688,-0.0277755856513977,0.0638077184557915,0.997575581073761,-0.0101976180449128,-0.0467643849551678,0.998853921890259,0.99916535615921,-0.0139303123578429,0.0384012162685394,0.5712651014328,-0.819638669490814,0.0429957397282124,0.973496735095978,-0.22643306851387,-0.0321263112127781,0.837917447090149,-0.543384909629822,-0.0512565299868584,0.129089504480362,0.235064044594765,-0.963369488716125,0.837917447090149,-0.543384909629822,-0.0512565299868584,0.0433065108954906,0.0073888311162591,-0.999034464359283,-0.773907721042633,0.632698833942413,-0.0275512710213661,-0.0415430814027786,0.0400638803839684,-0.998333156108856,-0.0479940734803677,0.0164330564439297,-0.998712480068207,-0.811704397201538,0.583304941654205,-0.0298550371080637,-0.773907721042633,0.632698833942413,-0.0275512710213661,-0.371991187334061,0.928159534931183,0.0119376331567764,-0.234009325504303,0.965489208698273,-0.114324748516083,-0.97494500875473,0.222091138362885,-0.0125615457072854,-0.9776850938797,0.206596061587334,0.0380787365138531,-0.960049211978912,0.277503550052643,0.0360172018408775,-0.959494948387146,0.28153669834137,-0.010319571942091,-0.0283560771495104,0.0388986058533192,-0.998840689659119,0.014862721785903,-0.0234105009585619,-0.999615490436554,-0.150761395692825,0.0775801539421082,-0.98552131652832,-0.0459463074803352,-0.0248509980738163,-0.99863475561142,0.0225212387740612,-0.0986573174595833,-0.994866609573364,-0.999498605728149,0.00566997472196817,-0.0311499908566475,-0.99399721622467,0.0985226929187775,-0.0475690588355064,-0.0479940734803677,0.0164330564439297,-0.998712480068207,-0.0562962740659714,-0.0566113814711571,-0.996807873249054,0.479641735553741,-0.877424597740173,-0.00836223550140858,-0.0303663704544306,-0.999108970165253,0.0293125156313181,-0.067466102540493,-0.997720718383789,-0.00133000174537301,-0.194431021809578,-0.219095408916473,-0.956134796142578,-0.150761395692825,0.0775801539421082,-0.98552131652832,
- 0.014862721785903,-0.0234105009585619,-0.999615490436554,-0.99399721622467,0.0985226929187775,-0.0475690588355064,-0.0250061638653278,0.0348016954958439,-0.999081313610077,-0.959494948387146,0.28153669834137,-0.010319571942091,-0.0283560771495104,0.0388986058533192,-0.998840689659119,-0.54332309961319,0.839304864406586,-0.0191683825105429,-0.499117434024811,0.866396188735962,-0.0154687548056245,0.0252811349928379,0.0609667673707008,-0.997819662094116,-0.0283560771495104,0.0388986058533192,-0.998840689659119,-0.150761395692825,0.0775801539421082,-0.98552131652832,-0.54332309961319,0.839304864406586,-0.0191683825105429,-0.150761395692825,0.0775801539421082,-0.98552131652832,-0.773907721042633,0.632698833942413,-0.0275512710213661,-0.234009325504303,0.965489208698273,-0.114324748516083,0.0821789279580116,-0.305899947881699,-0.948510348796844,0.0705005675554276,-0.0303963702172041,-0.997048556804657,0.999458253383636,-0.0204086247831583,-0.0258204098790884,-0.067466102540493,-0.997720718383789,-0.00133000174537301,-0.0303663704544306,-0.999108970165253,0.0293125156313181,0.818344533443451,-0.573309779167175,-0.0403493605554104,-0.0175980124622583,-0.133344724774361,0.990913450717926,0.0137721030041575,-0.0775887295603752,0.996890306472778,-0.0525544621050358,-0.0141790919005871,0.998517453670502,-0.0193075016140938,-0.026325223967433,0.999466896057129,-0.770518064498901,0.637287557125092,0.0129025997593999,-0.0362370051443577,0.00729187298566103,0.99931663274765,-0.0193075016140938,-0.026325223967433,0.999466896057129,-0.0345194973051548,0.0285900831222534,0.998995065689087,-0.565349817276001,0.824150502681732,0.0339920483529568,-0.371991187334061,0.928159534931183,0.0119376331567764,0.0076399790123105,0.324330061674118,0.945913136005402,-0.0832109823822975,0.0235564056783915,0.996253430843353,-0.9776850938797,0.206596061587334,0.0380787365138531,0.0076399790123105,0.324330061674118,0.945913136005402,-0.0401845946907997,0.00650644209235907,0.999171137809753,0.0405823364853859,0.101548403501511,0.994002521038055,-0.999574244022369,0.00574570428580046,0.0286062136292458,
- -0.0381248407065868,-0.0423727631568909,0.998374223709106,-0.0401845946907997,0.00650644209235907,0.999171137809753,-0.997857689857483,0.0587195977568626,0.0288456808775663,0.0307847261428833,-0.0487438812851906,-0.998336851596832,0.998662352561951,0.0415168181061745,-0.0308186262845993,0.999053776264191,-0.0396694876253605,-0.017830602824688,-0.371991187334061,0.928159534931183,0.0119376331567764,-0.770518064498901,0.637287557125092,0.0129025997593999,-0.0193075016140938,-0.026325223967433,0.999466896057129,-0.773907721042633,0.632698833942413,-0.0275512710213661,-0.770518064498901,0.637287557125092,0.0129025997593999,-0.371991187334061,0.928159534931183,0.0119376331567764,0.00725589413195848,0.0327937118709087,0.999435782432556,0.974882245063782,-0.222567766904831,0.00824765581637621,0.5712651014328,-0.819638669490814,0.0429957397282124,0.0234017018228769,-0.454202771186829,-0.890591025352478,0.0373224504292011,-0.0338772684335709,-0.998728930950165,0.898191630840302,-0.439464926719666,-0.0110622653737664,0.818344533443451,-0.573309779167175,-0.0403493605554104,-0.194431021809578,-0.219095408916473,-0.956134796142578,-0.067466102540493,-0.997720718383789,-0.00133000174537301,-0.194431021809578,-0.219095408916473,-0.956134796142578,0.479641735553741,-0.877424597740173,-0.00836223550140858,-0.067466102540493,-0.997720718383789,-0.00133000174537301,0.5712651014328,-0.819638669490814,0.0429957397282124,-0.0175980124622583,-0.133344724774361,0.990913450717926,0.00725589413195848,0.0327937118709087,0.999435782432556,0.0328333489596844,0.0043043801560998,0.999451518058777,-0.0401845946907997,0.00650644209235907,0.999171137809753,-0.0381248407065868,-0.0423727631568909,0.998374223709106,0.0582428090274334,-0.0500217415392399,0.997048497200012,0.0547756999731064,-0.0113138658925891,0.998434603214264,0.014862721785903,-0.0234105009585619,-0.999615490436554,0.479641735553741,-0.877424597740173,-0.00836223550140858,-0.194431021809578,-0.219095408916473,-0.956134796142578,0.999458253383636,-0.0204086247831583,-0.0258204098790884,
- 0.962565660476685,-0.269835382699966,-0.0256193950772285,0.0821789279580116,-0.305899947881699,-0.948510348796844,0.998371779918671,-0.0545568317174912,0.0166522338986397,0.962565660476685,-0.269835382699966,-0.0256193950772285,0.999458253383636,-0.0204086247831583,-0.0258204098790884,-0.0832109823822975,0.0235564056783915,0.996253430843353,-0.0778515040874481,0.0434788800776005,0.996016383171082,-0.960049211978912,0.277503550052643,0.0360172018408775,-0.9776850938797,0.206596061587334,0.0380787365138531,0.999704599380493,-0.0026437477208674,-0.0241585578769445,0.0797530338168144,0.0269885715097189,-0.99644923210144,0.0234017018228769,-0.454202771186829,-0.890591025352478,0.898191630840302,-0.439464926719666,-0.0110622653737664,0.898191630840302,-0.439464926719666,-0.0110622653737664,0.925870597362518,-0.376992136240005,0.0253117512911558,0.999704599380493,-0.0026437477208674,-0.0241585578769445,0.790842354297638,-0.610849976539612,-0.0378251560032368,0.837917447090149,-0.543384909629822,-0.0512565299868584,0.019769499078393,-0.028693076223135,-0.999392747879028,-0.0303663704544306,-0.999108970165253,0.0293125156313181,-0.0327145233750343,-0.147180244326591,0.988568484783173,0.819049000740051,-0.572900950908661,0.0307118371129036,0.176220655441284,-0.982975423336029,0.0520157665014267,-0.0558581240475178,-0.0735359340906143,0.995727121829987,-0.0773737132549286,-0.0516639053821564,0.995662689208984,0.174522832036018,-0.984182238578796,0.0304502192884684,-0.0415430814027786,0.0400638803839684,-0.998333156108856,-0.773907721042633,0.632698833942413,-0.0275512710213661,-0.150761395692825,0.0775801539421082,-0.98552131652832,0.808960735797882,-0.587055563926697,0.0307913795113564,0.819049000740051,-0.572900950908661,0.0307118371129036,0.0423290617763996,-0.0355083718895912,0.998472571372986,0.0137721030041575,-0.0775887295603752,0.996890306472778,0.819049000740051,-0.572900950908661,0.0307118371129036,-0.0327145233750343,-0.147180244326591,0.988568484783173,0.0423290617763996,-0.0355083718895912,0.998472571372986,0.0331151932477951,-0.0102142840623856,-0.999399304389954,
- -0.150761395692825,0.0775801539421082,-0.98552131652832,-0.194431021809578,-0.219095408916473,-0.956134796142578,-0.0415430814027786,0.0400638803839684,-0.998333156108856,-0.150761395692825,0.0775801539421082,-0.98552131652832,0.0331151932477951,-0.0102142840623856,-0.999399304389954,-0.0101976180449128,-0.0467643849551678,0.998853921890259,0.998802721500397,-0.0431116335093975,0.0231166016310453,0.99916535615921,-0.0139303123578429,0.0384012162685394,0.998802721500397,-0.0431116335093975,0.0231166016310453,0.205463215708733,-0.978148400783539,0.0317880734801292,0.535432457923889,-0.844484567642212,0.012569990940392,0.0373224504292011,-0.0338772684335709,-0.998728930950165,0.956287443637848,-0.290753901004791,-0.0312491953372955,0.898191630840302,-0.439464926719666,-0.0110622653737664,-0.996024787425995,-0.085836760699749,0.0238046757876873,-0.97152853012085,-0.236543789505959,-0.0133939944207668,-0.997857689857483,0.0587195977568626,0.0288456808775663,-0.0101976180449128,-0.0467643849551678,0.998853921890259,0.205463215708733,-0.978148400783539,0.0317880734801292,0.998802721500397,-0.0431116335093975,0.0231166016310453,-0.0479940734803677,0.0164330564439297,-0.998712480068207,-0.99399721622467,0.0985226929187775,-0.0475690588355064,-0.811704397201538,0.583304941654205,-0.0298550371080637,-0.811704397201538,0.583304941654205,-0.0298550371080637,-0.99399721622467,0.0985226929187775,-0.0475690588355064,-0.809221386909485,0.587364614009857,0.0127925025299191,0.954482913017273,-0.298039555549622,0.0116067286580801,0.0405823364853859,0.101548403501511,0.994002521038055,0.925870597362518,-0.376992136240005,0.0253117512911558,0.00725589413195848,0.0327937118709087,0.999435782432556,-0.0175980124622583,-0.133344724774361,0.990913450717926,-0.0778515040874481,0.0434788800776005,0.996016383171082,0.99916535615921,-0.0139303123578429,0.0384012162685394,0.99848461151123,0.0503717213869095,0.02216268889606,-0.0277755856513977,0.0638077184557915,0.997575581073761,-0.0525544621050358,-0.0141790919005871,0.998517453670502,-0.809221386909485,0.587364614009857,0.0127925025299191,
- -0.932279527187347,-0.361562281847,0.011291385628283,-0.313854604959488,-0.375329703092575,0.872136950492859,-0.0250061638653278,0.0348016954958439,-0.999081313610077,-0.99399721622467,0.0985226929187775,-0.0475690588355064,-0.0562962740659714,-0.0566113814711571,-0.996807873249054,0.99848461151123,0.0503717213869095,0.02216268889606,-0.208793744444847,0.977957725524902,0.0019568451680243,-0.0277755856513977,0.0638077184557915,0.997575581073761,0.0307847261428833,-0.0487438812851906,-0.998336851596832,0.999053776264191,-0.0396694876253605,-0.017830602824688,0.222017720341682,-0.974882960319519,-0.0176424421370029,-0.99399721622467,0.0985226929187775,-0.0475690588355064,-0.932279527187347,-0.361562281847,0.011291385628283,-0.809221386909485,0.587364614009857,0.0127925025299191,0.999053776264191,-0.0396694876253605,-0.017830602824688,0.998802721500397,-0.0431116335093975,0.0231166016310453,0.535432457923889,-0.844484567642212,0.012569990940392,0.999053776264191,-0.0396694876253605,-0.017830602824688,0.535432457923889,-0.844484567642212,0.012569990940392,0.222017720341682,-0.974882960319519,-0.0176424421370029,-0.0289488006383181,0.000781040638685226,-0.99958062171936,-0.97152853012085,-0.236543789505959,-0.0133939944207668,-0.97494500875473,0.222091138362885,-0.0125615457072854,0.129089504480362,0.235064044594765,-0.963369488716125,-0.0479940734803677,0.0164330564439297,-0.998712480068207,0.019769499078393,-0.028693076223135,-0.999392747879028,0.0433065108954906,0.0073888311162591,-0.999034464359283,0.837917447090149,-0.543384909629822,-0.0512565299868584,0.973496735095978,-0.22643306851387,-0.0321263112127781,0.973496735095978,-0.22643306851387,-0.0321263112127781,0.956287443637848,-0.290753901004791,-0.0312491953372955,0.0373224504292011,-0.0338772684335709,-0.998728930950165,0.0433065108954906,0.0073888311162591,-0.999034464359283,-0.0289488006383181,0.000781040638685226,-0.99958062171936,-0.00635804841294885,-0.00386216165497899,-0.999972343444824,-0.97152853012085,-0.236543789505959,-0.0133939944207668,0.0797530338168144,0.0269885715097189,-0.99644923210144,
- 0.0705005675554276,-0.0303963702172041,-0.997048556804657,-0.0459463074803352,-0.0248509980738163,-0.99863475561142,-0.0489752553403378,0.0281021147966385,-0.998404502868652,0.0821789279580116,-0.305899947881699,-0.948510348796844,0.0225212387740612,-0.0986573174595833,-0.994866609573364,-0.0459463074803352,-0.0248509980738163,-0.99863475561142,0.0705005675554276,-0.0303963702172041,-0.997048556804657,0.000405022758059204,0.191773757338524,0.981439173221588,0.125978827476501,0.0306744314730167,0.99155855178833,0.0582428090274334,-0.0500217415392399,0.997048497200012,-0.0381248407065868,-0.0423727631568909,0.998374223709106,0.914931178092957,0.391661673784256,0.0974788814783096,0.998371779918671,-0.0545568317174912,0.0166522338986397,0.0582428090274334,-0.0500217415392399,0.997048497200012,0.125978827476501,0.0306744314730167,0.99155855178833,0.925870597362518,-0.376992136240005,0.0253117512911558,0.0328333489596844,0.0043043801560998,0.999451518058777,0.999945342540741,-0.00241952412761748,0.0101662455126643,0.0241658147424459,-0.00718902284279466,0.999682068824768,-0.0832109823822975,0.0235564056783915,0.996253430843353,0.0405823364853859,0.101548403501511,0.994002521038055,-0.0175980124622583,-0.133344724774361,0.990913450717926,-0.313854604959488,-0.375329703092575,0.872136950492859,-0.0778515040874481,0.0434788800776005,0.996016383171082,-0.996024787425995,-0.085836760699749,0.0238046757876873,-0.997857689857483,0.0587195977568626,0.0288456808775663,-0.0401845946907997,0.00650644209235907,0.999171137809753,-0.996024787425995,-0.085836760699749,0.0238046757876873,-0.0401845946907997,0.00650644209235907,0.999171137809753,0.0076399790123105,0.324330061674118,0.945913136005402,0.0076399790123105,0.324330061674118,0.945913136005402,-0.9776850938797,0.206596061587334,0.0380787365138531,-0.996024787425995,-0.085836760699749,0.0238046757876873,0.0307847261428833,-0.0487438812851906,-0.998336851596832,0.0044680661521852,0.071887195110321,-0.997402787208557,0.998662352561951,0.0415168181061745,-0.0308186262845993,-0.202817276120186,0.978661239147186,-0.0329764932394028,
- 0.998662352561951,0.0415168181061745,-0.0308186262845993,0.0044680661521852,0.071887195110321,-0.997402787208557,0.0405823364853859,0.101548403501511,0.994002521038055,0.0328333489596844,0.0043043801560998,0.999451518058777,0.925870597362518,-0.376992136240005,0.0253117512911558,0.954482913017273,-0.298039555549622,0.0116067286580801,0.0241658147424459,-0.00718902284279466,0.999682068824768,0.0405823364853859,0.101548403501511,0.994002521038055,0.974882245063782,-0.222567766904831,0.00824765581637621,0.965734660625458,-0.25859123468399,0.0220734681934118,0.954482913017273,-0.298039555549622,0.0116067286580801,0.956287443637848,-0.290753901004791,-0.0312491953372955,0.973496735095978,-0.22643306851387,-0.0321263112127781,-0.54332309961319,0.839304864406586,-0.0191683825105429,-0.234009325504303,0.965489208698273,-0.114324748516083,-0.879736363887787,0.474343478679657,-0.0325931422412395,-0.00635804841294885,-0.00386216165497899,-0.999972343444824,0.0234017018228769,-0.454202771186829,-0.890591025352478,0.0797530338168144,0.0269885715097189,-0.99644923210144,-0.0289488006383181,0.000781040638685226,-0.99958062171936,0.0234017018228769,-0.454202771186829,-0.890591025352478,-0.00635804841294885,-0.00386216165497899,-0.999972343444824,-0.0289488006383181,0.000781040638685226,-0.99958062171936,0.0373224504292011,-0.0338772684335709,-0.998728930950165,0.0234017018228769,-0.454202771186829,-0.890591025352478,-0.999574244022369,0.00574570428580046,0.0286062136292458,-0.997857689857483,0.0587195977568626,0.0288456808775663,-0.997687160968781,0.060537151992321,-0.0309134274721146,-0.999498605728149,0.00566997472196817,-0.0311499908566475,-0.97494500875473,0.222091138362885,-0.0125615457072854,-0.959494948387146,0.28153669834137,-0.010319571942091,-0.0250061638653278,0.0348016954958439,-0.999081313610077,-0.0289488006383181,0.000781040638685226,-0.99958062171936,-0.0362370051443577,0.00729187298566103,0.99931663274765,-0.0525544621050358,-0.0141790919005871,0.998517453670502,0.0137721030041575,-0.0775887295603752,0.996890306472778,
- 0.0423290617763996,-0.0355083718895912,0.998472571372986,0.0331151932477951,-0.0102142840623856,-0.999399304389954,0.818344533443451,-0.573309779167175,-0.0403493605554104,0.790842354297638,-0.610849976539612,-0.0378251560032368,0.019769499078393,-0.028693076223135,-0.999392747879028,0.014862721785903,-0.0234105009585619,-0.999615490436554,-0.0283560771495104,0.0388986058533192,-0.998840689659119,0.0252811349928379,0.0609667673707008,-0.997819662094116,0.0483391992747784,0.00303714396432042,-0.998826324939728,0.205463215708733,-0.978148400783539,0.0317880734801292,0.222017720341682,-0.974882960319519,-0.0176424421370029,0.535432457923889,-0.844484567642212,0.012569990940392,0.0706575885415077,-0.0331163592636585,0.996950805187225,0.0585493370890617,-0.000574294594116509,0.99828439950943,0.0255315192043781,0.053485494107008,0.998242139816284,-0.0345194973051548,0.0285900831222534,0.998995065689087,0.0116541804745793,-0.0528048537671566,0.998536825180054,0.014862721785903,-0.0234105009585619,-0.999615490436554,0.0483391992747784,0.00303714396432042,-0.998826324939728,0.581636488437653,-0.813314914703369,-0.0147545300424099,0.479641735553741,-0.877424597740173,-0.00836223550140858,0.473406344652176,-0.88005530834198,0.0372684448957443,0.0116541804745793,-0.0528048537671566,0.998536825180054,-0.0327145233750343,-0.147180244326591,0.988568484783173,-0.0303663704544306,-0.999108970165253,0.0293125156313181,-0.54332309961319,0.839304864406586,-0.0191683825105429,-0.565349817276001,0.824150502681732,0.0339920483529568,-0.513427019119263,0.857381343841553,0.0359166674315929,-0.499117434024811,0.866396188735962,-0.0154687548056245,-0.999574244022369,0.00574570428580046,0.0286062136292458,0.000405022758059204,0.191773757338524,0.981439173221588,-0.0381248407065868,-0.0423727631568909,0.998374223709106,0.808960735797882,-0.587055563926697,0.0307913795113564,0.0137721030041575,-0.0775887295603752,0.996890306472778,0.5712651014328,-0.819638669490814,0.0429957397282124,0.956287443637848,-0.290753901004791,-0.0312491953372955,0.925870597362518,-0.376992136240005,0.0253117512911558,
- 0.898191630840302,-0.439464926719666,-0.0110622653737664,-0.996024787425995,-0.085836760699749,0.0238046757876873,-0.9776850938797,0.206596061587334,0.0380787365138531,-0.97494500875473,0.222091138362885,-0.0125615457072854,-0.97152853012085,-0.236543789505959,-0.0133939944207668,0.581636488437653,-0.813314914703369,-0.0147545300424099,0.545210659503937,-0.83630758523941,0.0577488727867603,0.473406344652176,-0.88005530834198,0.0372684448957443,0.479641735553741,-0.877424597740173,-0.00836223550140858,0.964439034461975,-0.170652121305466,0.20182953774929,0.711231350898743,-0.0258328542113304,0.702483236789703,0.0706575885415077,-0.0331163592636585,0.996950805187225,0.545210659503937,-0.83630758523941,0.0577488727867603,-0.873792290687561,0.481826692819595,0.0658041164278984,0.111269384622574,0.0392589941620827,0.993014454841614,-0.0729710087180138,0.0458763912320137,0.996278345584869,-0.28364223241806,0.958919882774353,0.00444530555978417,0.111269384622574,0.0392589941620827,0.993014454841614,0.711231350898743,-0.0258328542113304,0.702483236789703,-0.0773737132549286,-0.0516639053821564,0.995662689208984,-0.0729710087180138,0.0458763912320137,0.996278345584869,0.964439034461975,-0.170652121305466,0.20182953774929,0.985585868358612,-0.169176146388054,9.65532890404575e-005,0.174522832036018,-0.984182238578796,0.0304502192884684,0.0483391992747784,0.00303714396432042,-0.998826324939728,0.593909204006195,0.246841758489609,-0.765729069709778,0.985585868358612,-0.169176146388054,9.65532890404575e-005,-0.513427019119263,0.857381343841553,0.0359166674315929,0.0255315192043781,0.053485494107008,0.998242139816284,0.111269384622574,0.0392589941620827,0.993014454841614,-0.873792290687561,0.481826692819595,0.0658041164278984,0.711231350898743,-0.0258328542113304,0.702483236789703,0.0585493370890617,-0.000574294594116509,0.99828439950943,0.0706575885415077,-0.0331163592636585,0.996950805187225,0.309746026992798,0.169280663132668,-0.935628831386566,-0.499117434024811,0.866396188735962,-0.0154687548056245,-0.634876370429993,0.771433591842651,-0.0426869466900826,
- 0.581636488437653,-0.813314914703369,-0.0147545300424099,0.0483391992747784,0.00303714396432042,-0.998826324939728,0.985585868358612,-0.169176146388054,9.65532890404575e-005,0.964439034461975,-0.170652121305466,0.20182953774929,0.875256180763245,-0.482911944389343,0.0268794801086187,0.581636488437653,-0.813314914703369,-0.0147545300424099,0.985585868358612,-0.169176146388054,9.65532890404575e-005,0.473406344652176,-0.88005530834198,0.0372684448957443,0.545210659503937,-0.83630758523941,0.0577488727867603,0.0706575885415077,-0.0331163592636585,0.996950805187225,0.0116541804745793,-0.0528048537671566,0.998536825180054,0.174522832036018,-0.984182238578796,0.0304502192884684,-0.0773737132549286,-0.0516639053821564,0.995662689208984,0.711231350898743,-0.0258328542113304,0.702483236789703,0.964439034461975,-0.170652121305466,0.20182953774929,-0.0277755856513977,0.0638077184557915,0.997575581073761,-0.208793744444847,0.977957725524902,0.0019568451680243,-0.28364223241806,0.958919882774353,0.00444530555978417,-0.0729710087180138,0.0458763912320137,0.996278345584869,-0.0101976180449128,-0.0467643849551678,0.998853921890259,-0.0277755856513977,0.0638077184557915,0.997575581073761,-0.0729710087180138,0.0458763912320137,0.996278345584869,-0.0773737132549286,-0.0516639053821564,0.995662689208984,-0.0558581240475178,-0.0735359340906143,0.995727121829987,0.0307847261428833,-0.0487438812851906,-0.998336851596832,0.222017720341682,-0.974882960319519,-0.0176424421370029,0.197910621762276,-0.980004906654358,-0.0205388572067022,-0.013239735737443,-0.0516656823456287,-0.998576700687408,0.222017720341682,-0.974882960319519,-0.0176424421370029,0.205463215708733,-0.978148400783539,0.0317880734801292,0.176220655441284,-0.982975423336029,0.0520157665014267,0.174522832036018,-0.984182238578796,0.0304502192884684,0.197910621762276,-0.980004906654358,-0.0205388572067022,-0.208793744444847,0.977957725524902,0.0019568451680243,-0.202817276120186,0.978661239147186,-0.0329764932394028,-0.274178117513657,0.960891842842102,-0.0389000847935677,-0.28364223241806,0.958919882774353,0.00444530555978417,
- -0.202817276120186,0.978661239147186,-0.0329764932394028,0.0044680661521852,0.071887195110321,-0.997402787208557,-0.0331538021564484,0.0490056611597538,-0.998248100280762,-0.274178117513657,0.960891842842102,-0.0389000847935677,-0.0331538021564484,0.0490056611597538,-0.998248100280762,-0.013239735737443,-0.0516656823456287,-0.998576700687408,0.309746026992798,0.169280663132668,-0.935628831386566,0.309746026992798,0.169280663132668,-0.935628831386566,-0.634876370429993,0.771433591842651,-0.0426869466900826,-0.274178117513657,0.960891842842102,-0.0389000847935677,0.176220655441284,-0.982975423336029,0.0520157665014267,0.205463215708733,-0.978148400783539,0.0317880734801292,-0.0101976180449128,-0.0467643849551678,0.998853921890259,-0.0558581240475178,-0.0735359340906143,0.995727121829987,0.545210659503937,-0.83630758523941,0.0577488727867603,0.875256180763245,-0.482911944389343,0.0268794801086187,0.964439034461975,-0.170652121305466,0.20182953774929,0.0255315192043781,0.053485494107008,0.998242139816284,0.0585493370890617,-0.000574294594116509,0.99828439950943,0.711231350898743,-0.0258328542113304,0.702483236789703,0.111269384622574,0.0392589941620827,0.993014454841614,0.545210659503937,-0.83630758523941,0.0577488727867603,0.581636488437653,-0.813314914703369,-0.0147545300424099,0.875256180763245,-0.482911944389343,0.0268794801086187,0.309746026992798,0.169280663132668,-0.935628831386566,-0.274178117513657,0.960891842842102,-0.0389000847935677,-0.0331538021564484,0.0490056611597538,-0.998248100280762,-0.499117434024811,0.866396188735962,-0.0154687548056245,-0.873792290687561,0.481826692819595,0.0658041164278984,-0.634876370429993,0.771433591842651,-0.0426869466900826,0.985585868358612,-0.169176146388054,9.65532890404575e-005,0.593909204006195,0.246841758489609,-0.765729069709778,-0.013239735737443,-0.0516656823456287,-0.998576700687408,0.0044680661521852,0.071887195110321,-0.997402787208557,0.0307847261428833,-0.0487438812851906,-0.998336851596832,-0.013239735737443,-0.0516656823456287,-0.998576700687408,-0.0331538021564484,0.0490056611597538,-0.998248100280762,
- -0.499117434024811,0.866396188735962,-0.0154687548056245,-0.513427019119263,0.857381343841553,0.0359166674315929,-0.873792290687561,0.481826692819595,0.0658041164278984,-0.873792290687561,0.481826692819595,0.0658041164278984,-0.28364223241806,0.958919882774353,0.00444530555978417,-0.274178117513657,0.960891842842102,-0.0389000847935677,-0.873792290687561,0.481826692819595,0.0658041164278984,-0.274178117513657,0.960891842842102,-0.0389000847935677,-0.634876370429993,0.771433591842651,-0.0426869466900826,0.0252811349928379,0.0609667673707008,-0.997819662094116,-0.499117434024811,0.866396188735962,-0.0154687548056245,0.309746026992798,0.169280663132668,-0.935628831386566,0.174522832036018,-0.984182238578796,0.0304502192884684,0.985585868358612,-0.169176146388054,9.65532890404575e-005,0.197910621762276,-0.980004906654358,-0.0205388572067022,0.0286187212914228,-0.999583423137665,0.00371643784455955,0.99956476688385,0.00392271252349019,-0.0292407870292664,0.99913614988327,0.0132528943940997,0.0393889173865318,-0.999467670917511,0.00309273577295244,0.032476544380188,-0.0181291997432709,-0.0768589898943901,0.996877074241638,-0.0206939559429884,0.0245112292468548,0.999485373497009,-0.998333334922791,0.0493985638022423,0.0298404861241579,-0.0387949272990227,-0.017784096300602,-0.999088943004608,0.108486399054527,0.00198185117915273,-0.994095981121063,-0.00319523084908724,-0.999813795089722,-0.0190280620008707,0.99956476688385,0.00392271252349019,-0.0292407870292664,0.0286187212914228,-0.999583423137665,0.00371643784455955,0.0299755204468966,-0.999549388885498,0.00153992336709052,0.00780688133090734,-0.999286651611328,-0.0369491055607796,-0.00319523084908724,-0.999813795089722,-0.0190280620008707,0.108486399054527,0.00198185117915273,-0.994095981121063,-0.0387949272990227,-0.017784096300602,-0.999088943004608,-0.99965626001358,-0.0125951422378421,-0.0229934491217136,-0.997262120246887,0.0663690194487572,-0.0326110012829304,-0.0281781647354364,0.0171236954629421,-0.999456286430359,-0.0387949272990227,-0.017784096300602,-0.999088943004608,
- -0.00319523084908724,-0.999813795089722,-0.0190280620008707,-0.99965626001358,-0.0125951422378421,-0.0229934491217136,0.00780688133090734,-0.999286651611328,-0.0369491055607796,0.99956476688385,0.00392271252349019,-0.0292407870292664,0.0299755204468966,-0.999549388885498,0.00153992336709052,0.108486399054527,0.00198185117915273,-0.994095981121063,0.99956476688385,0.00392271252349019,-0.0292407870292664,0.00780688133090734,-0.999286651611328,-0.0369491055607796,-0.00319523084908724,-0.999813795089722,-0.0190280620008707,-0.0217320527881384,-0.999639987945557,0.0157376155257225,-0.99965626001358,-0.0125951422378421,-0.0229934491217136,-0.999467670917511,0.00309273577295244,0.032476544380188,-0.998333334922791,0.0493985638022423,0.0298404861241579,-0.997262120246887,0.0663690194487572,-0.0326110012829304,-0.99965626001358,-0.0125951422378421,-0.0229934491217136,0.108486399054527,0.00198185117915273,-0.994095981121063,-0.0387949272990227,-0.017784096300602,-0.999088943004608,-0.0281781647354364,0.0171236954629421,-0.999456286430359,0.0844996944069862,0.0408270582556725,-0.995586812496185,0.0692008286714554,0.0191361755132675,0.99741917848587,-0.0206939559429884,0.0245112292468548,0.999485373497009,-0.0181291997432709,-0.0768589898943901,0.996877074241638,0.0505607724189758,-0.0392240285873413,0.997950434684753,0.108486399054527,0.00198185117915273,-0.994095981121063,0.0844996944069862,0.0408270582556725,-0.995586812496185,0.998808860778809,0.0379039868712425,-0.0307281631976366,0.99956476688385,0.00392271252349019,-0.0292407870292664,-0.99965626001358,-0.0125951422378421,-0.0229934491217136,-0.0217320527881384,-0.999639987945557,0.0157376155257225,-0.999467670917511,0.00309273577295244,0.032476544380188,0.998808860778809,0.0379039868712425,-0.0307281631976366,0.998298287391663,0.0517904087901115,0.0267998594790697,0.99913614988327,0.0132528943940997,0.0393889173865318,0.99956476688385,0.00392271252349019,-0.0292407870292664,0.914931178092957,0.391661673784256,0.0974788814783096,0.125978827476501,0.0306744314730167,0.99155855178833,
- 0.998298287391663,0.0517904087901115,0.0267998594790697,0.0844996944069862,0.0408270582556725,-0.995586812496185,-0.0281781647354364,0.0171236954629421,-0.999456286430359,0.0225212387740612,-0.0986573174595833,-0.994866609573364,0.0821789279580116,-0.305899947881699,-0.948510348796844,-0.998333334922791,0.0493985638022423,0.0298404861241579,-0.0206939559429884,0.0245112292468548,0.999485373497009,0.000405022758059204,0.191773757338524,0.981439173221588,-0.709683358669281,0.704290926456451,0.0179974548518658,0.998808860778809,0.0379039868712425,-0.0307281631976366,0.0844996944069862,0.0408270582556725,-0.995586812496185,0.0821789279580116,-0.305899947881699,-0.948510348796844,0.962565660476685,-0.269835382699966,-0.0256193950772285,0.998808860778809,0.0379039868712425,-0.0307281631976366,0.0821789279580116,-0.305899947881699,-0.948510348796844,0.99913614988327,0.0132528943940997,0.0393889173865318,0.998298287391663,0.0517904087901115,0.0267998594790697,0.0692008286714554,0.0191361755132675,0.99741917848587,0.0505607724189758,-0.0392240285873413,0.997950434684753,0.998298287391663,0.0517904087901115,0.0267998594790697,0.962565660476685,-0.269835382699966,-0.0256193950772285,0.914931178092957,0.391661673784256,0.0974788814783096,-0.0206939559429884,0.0245112292468548,0.999485373497009,0.0692008286714554,0.0191361755132675,0.99741917848587,0.125978827476501,0.0306744314730167,0.99155855178833,0.000405022758059204,0.191773757338524,0.981439173221588,0.998298287391663,0.0517904087901115,0.0267998594790697,0.998808860778809,0.0379039868712425,-0.0307281631976366,0.962565660476685,-0.269835382699966,-0.0256193950772285,-0.709683358669281,0.704290926456451,0.0179974548518658,-0.751253068447113,0.660014033317566,-0.00046046607894823,-0.997262120246887,0.0663690194487572,-0.0326110012829304,-0.998333334922791,0.0493985638022423,0.0298404861241579,-0.0281781647354364,0.0171236954629421,-0.999456286430359,-0.997262120246887,0.0663690194487572,-0.0326110012829304,0.0225212387740612,-0.0986573174595833,-0.994866609573364,-0.00319523084908724,-0.999813795089722,-0.0190280620008707,
- 0.00780688133090734,-0.999286651611328,-0.0369491055607796,0.0299755204468966,-0.999549388885498,0.00153992336709052,0.0286187212914228,-0.999583423137665,0.00371643784455955,0.00554683664813638,-0.999748170375824,0.021742245182395,-0.0217320527881384,-0.999639987945557,0.0157376155257225,0.99913614988327,0.0132528943940997,0.0393889173865318,0.0505607724189758,-0.0392240285873413,0.997950434684753,0.00554683664813638,-0.999748170375824,0.021742245182395,0.0286187212914228,-0.999583423137665,0.00371643784455955,-0.0217320527881384,-0.999639987945557,0.0157376155257225,-0.0181291997432709,-0.0768589898943901,0.996877074241638,-0.999467670917511,0.00309273577295244,0.032476544380188,-0.0217320527881384,-0.999639987945557,0.0157376155257225,0.00554683664813638,-0.999748170375824,0.021742245182395,0.0505607724189758,-0.0392240285873413,0.997950434684753,-0.0181291997432709,-0.0768589898943901,0.996877074241638,-0.999574244022369,0.00574570428580046,0.0286062136292458,-0.709683358669281,0.704290926456451,0.0179974548518658,0.000405022758059204,0.191773757338524,0.981439173221588,-0.959494948387146,0.28153669834137,-0.010319571942091,-0.960049211978912,0.277503550052643,0.0360172018408775,-0.99399721622467,0.0985226929187775,-0.0475690588355064,-0.97152853012085,-0.236543789505959,-0.0133939944207668,-0.997687160968781,0.060537151992321,-0.0309134274721146,-0.997857689857483,0.0587195977568626,0.0288456808775663,-0.00635804841294885,-0.00386216165497899,-0.999972343444824,-0.0489752553403378,0.0281021147966385,-0.998404502868652,-0.997687160968781,0.060537151992321,-0.0309134274721146,-0.97152853012085,-0.236543789505959,-0.0133939944207668,0.0797530338168144,0.0269885715097189,-0.99644923210144,-0.0489752553403378,0.0281021147966385,-0.998404502868652,-0.00635804841294885,-0.00386216165497899,-0.999972343444824,0.985585868358612,-0.169176146388054,9.65532890404575e-005,-0.013239735737443,-0.0516656823456287,-0.998576700687408,0.197910621762276,-0.980004906654358,-0.0205388572067022,0.954482913017273,-0.298039555549622,0.0116067286580801,
- 0.925870597362518,-0.376992136240005,0.0253117512911558,0.956287443637848,-0.290753901004791,-0.0312491953372955,-0.0832109823822975,0.0235564056783915,0.996253430843353,0.0241658147424459,-0.00718902284279466,0.999682068824768,0.0277354698628187,0.00325534329749644,0.99960994720459,0.00725589413195848,0.0327937118709087,0.999435782432556,-0.0778515040874481,0.0434788800776005,0.996016383171082,0.5712651014328,-0.819638669490814,0.0429957397282124,0.974882245063782,-0.222567766904831,0.00824765581637621,0.973496735095978,-0.22643306851387,-0.0321263112127781,0.998298287391663,0.0517904087901115,0.0267998594790697,0.125978827476501,0.0306744314730167,0.99155855178833,0.0692008286714554,0.0191361755132675,0.99741917848587,-0.371991187334061,0.928159534931183,0.0119376331567764,-0.565349817276001,0.824150502681732,0.0339920483529568,-0.879736363887787,0.474343478679657,-0.0325931422412395,-0.234009325504303,0.965489208698273,-0.114324748516083,-0.565349817276001,0.824150502681732,0.0339920483529568,-0.0345194973051548,0.0285900831222534,0.998995065689087,0.0255315192043781,0.053485494107008,0.998242139816284,-0.513427019119263,0.857381343841553,0.0359166674315929,-0.960049211978912,0.277503550052643,0.0360172018408775,-0.932279527187347,-0.361562281847,0.011291385628283,-0.99399721622467,0.0985226929187775,-0.0475690588355064,-0.313854604959488,-0.375329703092575,0.872136950492859,-0.932279527187347,-0.361562281847,0.011291385628283,-0.960049211978912,0.277503550052643,0.0360172018408775,-0.0778515040874481,0.0434788800776005,0.996016383171082,-0.313854604959488,-0.375329703092575,0.872136950492859,-0.960049211978912,0.277503550052643,0.0360172018408775,0.818344533443451,-0.573309779167175,-0.0403493605554104,0.819049000740051,-0.572900950908661,0.0307118371129036,0.808960735797882,-0.587055563926697,0.0307913795113564,0.790842354297638,-0.610849976539612,-0.0378251560032368,-0.0250061638653278,0.0348016954958439,-0.999081313610077,-0.0562962740659714,-0.0566113814711571,-0.996807873249054,0.129089504480362,0.235064044594765,-0.963369488716125,
- -0.0562962740659714,-0.0566113814711571,-0.996807873249054,-0.0479940734803677,0.0164330564439297,-0.998712480068207,0.129089504480362,0.235064044594765,-0.963369488716125,-0.0525544621050358,-0.0141790919005871,0.998517453670502,-0.313854604959488,-0.375329703092575,0.872136950492859,-0.0175980124622583,-0.133344724774361,0.990913450717926,0.0277354698628187,0.00325534329749644,0.99960994720459,0.0241658147424459,-0.00718902284279466,0.999682068824768,0.954482913017273,-0.298039555549622,0.0116067286580801,0.965734660625458,-0.25859123468399,0.0220734681934118,0.00725589413195848,0.0327937118709087,0.999435782432556,0.0277354698628187,0.00325534329749644,0.99960994720459,0.965734660625458,-0.25859123468399,0.0220734681934118,0.0328333489596844,0.0043043801560998,0.999451518058777,0.0547756999731064,-0.0113138658925891,0.998434603214264,0.999652206897736,-0.0145187377929688,0.0220159944146872,0.999945342540741,-0.00241952412761748,0.0101662455126643,0.999652206897736,-0.0145187377929688,0.0220159944146872,0.0547756999731064,-0.0113138658925891,0.998434603214264,0.0582428090274334,-0.0500217415392399,0.997048497200012,0.998371779918671,-0.0545568317174912,0.0166522338986397,0.0483391992747784,0.00303714396432042,-0.998826324939728,0.0252811349928379,0.0609667673707008,-0.997819662094116,0.309746026992798,0.169280663132668,-0.935628831386566,0.593909204006195,0.246841758489609,-0.765729069709778,-0.013239735737443,-0.0516656823456287,-0.998576700687408,0.593909204006195,0.246841758489609,-0.765729069709778,0.309746026992798,0.169280663132668,-0.935628831386566,-0.751253068447113,0.660014033317566,-0.00046046607894823,-0.999498605728149,0.00566997472196817,-0.0311499908566475,0.0225212387740612,-0.0986573174595833,-0.994866609573364,-0.997262120246887,0.0663690194487572,-0.0326110012829304,-0.751253068447113,0.660014033317566,-0.00046046607894823,0.0225212387740612,-0.0986573174595833,-0.994866609573364,-0.54332309961319,0.839304864406586,-0.0191683825105429,-0.879736363887787,0.474343478679657,-0.0325931422412395,-0.565349817276001,0.824150502681732,0.0339920483529568,
- -0.54332309961319,0.839304864406586,-0.0191683825105429,-0.150761395692825,0.0775801539421082,-0.98552131652832,-0.234009325504303,0.965489208698273,-0.114324748516083,-0.999839544296265,-0.0107535058632493,0.014324601739645,-0.99987256526947,0.00729319406673312,0.0141979241743684,-0.999239921569824,0.020446790382266,-0.0331876836717129,-0.999374270439148,-0.00794791709631681,-0.0344667732715607,-0.999381601810455,0.0150111541152,-0.0318000316619873,-0.0411140434443951,0.0268592573702335,-0.998793423175812,-0.0423321463167667,-0.00952422618865967,-0.999058127403259,-0.996555328369141,-0.077210433781147,-0.0302673541009426,-0.0298126637935638,0.99923437833786,-0.025334632024169,-0.998612523078918,0.0358663275837898,-0.0385570637881756,-0.999553084373474,0.0295214578509331,0.00468208687379956,-0.0385664068162441,0.999069392681122,0.0193100571632385,0.892091572284698,0.450776368379593,0.0311981122940779,0.999957501888275,0.00319561874493957,-0.00864679738879204,0.999380111694336,0.00359806581400335,0.0350212045013905,-0.578559994697571,-0.815579533576965,0.00992073025554419,-0.996856987476349,-0.0741904005408287,0.0277837123721838,-0.996555328369141,-0.077210433781147,-0.0302673541009426,-0.578047335147858,-0.815901279449463,-0.0129034109413624,0.999808013439178,-0.0169863514602184,0.00976274441927671,0.760063588619232,-0.634394466876984,0.140879169106483,0.617736637592316,-0.786089420318604,-0.0215585045516491,-0.0347486436367035,-0.0215288102626801,-0.999164283275604,-0.042145349085331,0.00418458413332701,-0.999102711677551,0.0426510833203793,0.00715331640094519,-0.99906450510025,0.033246498554945,-0.0150511935353279,-0.999333798885345,0.999542951583862,-0.0149913439527154,-0.0262505933642387,0.999672770500183,0.00936628133058548,-0.0238068997859955,0.999892830848694,0.00914772599935532,0.0114271929487586,0.999816298484802,-0.00402961345389485,0.018738504499197,0.999808013439178,-0.0169863514602184,0.00976274441927671,0.955039024353027,-0.295237869024277,0.0271096900105476,0.999892830848694,0.00914772599935532,0.0114271929487586,
- 0.999672770500183,0.00936628133058548,-0.0238068997859955,0.0502557307481766,-0.0235114507377148,-0.998459696769714,-0.0177987366914749,-0.0160105284303427,-0.999713361263275,-0.0214752871543169,0.0219444241374731,-0.999528467655182,0.0483847893774509,0.0235180836170912,-0.998551845550537,0.996306896209717,-0.0705763846635818,-0.0489037856459618,0.999262988567352,-0.0248779747635126,0.0292302500456572,0.650479018688202,-0.759463727474213,0.00958833564072847,0.745987474918365,-0.664744138717651,-0.0402230806648731,0.892091572284698,0.450776368379593,0.0311981122940779,0.998844861984253,0.0361493639647961,0.031659759581089,0.998181760311127,0.0457718446850777,-0.0392178520560265,0.099097914993763,0.221093639731407,0.970204710960388,0.0233011171221733,-0.0702156573534012,0.997259557247162,0.0665967836976051,-0.00905861426144838,0.997738838195801,-0.00408034864813089,0.0305874906480312,0.999523758888245,0.999648749828339,0.0174726955592632,0.0199295654892921,0.99983024597168,0.0161248352378607,0.00892033893615007,0.999542951583862,-0.0149913439527154,-0.0262505933642387,0.075324185192585,-0.0208557341247797,-0.996940910816193,0.0877915695309639,0.0285546537488699,-0.995729506015778,0.999672770500183,0.00936628133058548,-0.0238068997859955,0.650479018688202,-0.759463727474213,0.00958833564072847,0.0739301741123199,-0.0640993043780327,0.995201230049133,0.117065370082855,-0.255358427762985,0.959733188152313,0.037027046084404,0.0873695611953735,0.995487630367279,-0.0658568367362022,-0.00545685226097703,0.997814118862152,-0.0427777171134949,0.520149827003479,0.853003025054932,0.998181760311127,0.0457718446850777,-0.0392178520560265,0.0426510833203793,0.00715331640094519,-0.99906450510025,0.0225925669074059,0.0541419126093388,-0.99827766418457,0.0582343600690365,-0.0146130621433258,0.998196005821228,-0.025892885401845,-0.00869919918477535,0.999626874923706,0.0233011171221733,-0.0702156573534012,0.997259557247162,0.099097914993763,0.221093639731407,0.970204710960388,0.0187438894063234,0.998911559581757,0.042712677270174,0.0647705718874931,0.997507572174072,0.0279904883354902,
- 0.0509755425155163,0.998440563678741,-0.0227586086839437,0.0401303917169571,0.00541769387200475,0.999179780483246,0.037027046084404,0.0873695611953735,0.995487630367279,-0.0331134162843227,0.00834938790649176,0.999416708946228,-0.0204088781028986,-0.0162605755031109,0.999659478664398,-0.99987256526947,0.00729319406673312,0.0141979241743684,-0.999839544296265,-0.0107535058632493,0.014324601739645,-0.0210585165768862,-0.0475663580000401,0.998646080493927,0.0665967836976051,-0.00905861426144838,0.997738838195801,0.0233011171221733,-0.0702156573534012,0.997259557247162,-0.0204088781028986,-0.0162605755031109,0.999659478664398,0.0483847893774509,0.0235180836170912,-0.998551845550537,-0.0214752871543169,0.0219444241374731,-0.999528467655182,0.0330285876989365,0.148102000355721,-0.988420426845551,0.033246498554945,-0.0150511935353279,-0.999333798885345,0.745987474918365,-0.664744138717651,-0.0402230806648731,0.0330285876989365,0.148102000355721,-0.988420426845551,-0.0298126637935638,0.99923437833786,-0.025334632024169,-0.0385664068162441,0.999069392681122,0.0193100571632385,0.0187438894063234,0.998911559581757,0.042712677270174,0.0509755425155163,0.998440563678741,-0.0227586086839437,-0.0475363098084927,-0.017556969076395,0.998715221881866,0.0498421303927898,-0.0160159859806299,0.998628675937653,0.0187438894063234,0.998911559581757,0.042712677270174,0.650479018688202,-0.759463727474213,0.00958833564072847,0.999448835849762,0.00924153253436089,-0.0318840220570564,0.745987474918365,-0.664744138717651,-0.0402230806648731,0.0330285876989365,0.148102000355721,-0.988420426845551,0.745987474918365,-0.664744138717651,-0.0402230806648731,0.0483847893774509,0.0235180836170912,-0.998551845550537,-0.999239921569824,0.020446790382266,-0.0331876836717129,-0.042145349085331,0.00418458413332701,-0.999102711677551,-0.0347486436367035,-0.0215288102626801,-0.999164283275604,-0.999374270439148,-0.00794791709631681,-0.0344667732715607,-0.999239921569824,0.020446790382266,-0.0331876836717129,-0.819608271121979,-0.572743892669678,0.0143811516463757,
- -0.921534299850464,-0.368179470300674,-0.12336266040802,-0.999859094619751,-0.00788453873246908,-0.0148224364966154,-0.999138295650482,-0.00341103854589164,0.0413631424307823,-0.998983442783356,0.0249403566122055,0.0375508181750774,-0.999474942684174,0.0293215122073889,-0.013787180185318,-0.0376590490341187,-0.00155328237451613,-0.999289393424988,0.0392012819647789,-0.00515970541164279,-0.999217987060547,-0.131115734577179,-0.129483446478844,-0.982874751091003,-0.0423321463167667,-0.00952422618865967,-0.999058127403259,-0.00426899502053857,-0.706495761871338,-0.707704484462738,-0.996555328369141,-0.077210433781147,-0.0302673541009426,-0.785869061946869,0.617214918136597,-0.038153238594532,-0.0347486436367035,-0.0215288102626801,-0.999164283275604,-0.0240940861403942,0.0818091183900833,-0.996356725692749,0.999957501888275,0.00319561874493957,-0.00864679738879204,0.892091572284698,0.450776368379593,0.0311981122940779,0.879703640937805,0.474931091070175,-0.0237027611583471,0.0225925669074059,0.0541419126093388,-0.99827766418457,-0.131115734577179,-0.129483446478844,-0.982874751091003,0.0392012819647789,-0.00515970541164279,-0.999217987060547,-0.785869061946869,0.617214918136597,-0.038153238594532,-0.0214752871543169,0.0219444241374731,-0.999528467655182,-0.999474942684174,0.0293215122073889,-0.013787180185318,-0.0376590490341187,-0.00155328237451613,-0.999289393424988,-0.99848884344101,-0.0474707670509815,-0.0276864282786846,-0.999671757221222,-0.00521474750712514,-0.0250865835696459,-0.0349969938397408,0.03562131524086,-0.998752415180206,-0.0376590490341187,-0.00155328237451613,-0.999289393424988,-0.131115734577179,-0.129483446478844,-0.982874751091003,-0.99848884344101,-0.0474707670509815,-0.0276864282786846,-0.131115734577179,-0.129483446478844,-0.982874751091003,-0.999239921569824,0.020446790382266,-0.0331876836717129,-0.921534299850464,-0.368179470300674,-0.12336266040802,0.0244228728115559,-0.71649432182312,-0.697165310382843,0.075324185192585,-0.0208557341247797,-0.996940910816193,0.999542951583862,-0.0149913439527154,-0.0262505933642387,
- 0.879703640937805,0.474931091070175,-0.0237027611583471,0.892091572284698,0.450776368379593,0.0311981122940779,0.998181760311127,0.0457718446850777,-0.0392178520560265,0.117065370082855,-0.255358427762985,0.959733188152313,0.0739301741123199,-0.0640993043780327,0.995201230049133,-0.0210585165768862,-0.0475663580000401,0.998646080493927,0.0233011171221733,-0.0702156573534012,0.997259557247162,-0.99987256526947,0.00729319406673312,0.0141979241743684,-0.0204088781028986,-0.0162605755031109,0.999659478664398,0.0233011171221733,-0.0702156573534012,0.997259557247162,-0.025892885401845,-0.00869919918477535,0.999626874923706,-0.995542109012604,-0.0897160470485687,0.0291037727147341,-0.819608271121979,-0.572743892669678,0.0143811516463757,-0.0427777171134949,0.520149827003479,0.853003025054932,-0.0658568367362022,-0.00545685226097703,0.997814118862152,-0.999138295650482,-0.00341103854589164,0.0413631424307823,-0.0427777171134949,0.520149827003479,0.853003025054932,-0.0331134162843227,0.00834938790649176,0.999416708946228,0.037027046084404,0.0873695611953735,0.995487630367279,-0.996856987476349,-0.0741904005408287,0.0277837123721838,-0.0342931523919106,-0.0254874434322119,0.999086797237396,-0.0331134162843227,0.00834938790649176,0.999416708946228,-0.999442279338837,0.0152609180659056,0.0297050066292286,0.0655497163534164,0.0221531745046377,-0.997603297233582,-0.0298126637935638,0.99923437833786,-0.025334632024169,0.0509755425155163,0.998440563678741,-0.0227586086839437,-0.819608271121979,-0.572743892669678,0.0143811516463757,-0.99987256526947,0.00729319406673312,0.0141979241743684,0.0233011171221733,-0.0702156573534012,0.997259557247162,-0.999239921569824,0.020446790382266,-0.0331876836717129,-0.99987256526947,0.00729319406673312,0.0141979241743684,-0.819608271121979,-0.572743892669678,0.0143811516463757,-0.00408034864813089,0.0305874906480312,0.999523758888245,0.99983024597168,0.0161248352378607,0.00892033893615007,0.650479018688202,-0.759463727474213,0.00958833564072847,0.0813958272337914,-0.362188935279846,-0.928543925285339,
- 0.0502557307481766,-0.0235114507377148,-0.998459696769714,0.940253794193268,-0.340223997831345,-0.0130568072199821,0.998181760311127,0.0457718446850777,-0.0392178520560265,0.0225925669074059,0.0541419126093388,-0.99827766418457,0.879703640937805,0.474931091070175,-0.0237027611583471,0.0225925669074059,0.0541419126093388,-0.99827766418457,0.999957501888275,0.00319561874493957,-0.00864679738879204,0.879703640937805,0.474931091070175,-0.0237027611583471,0.650479018688202,-0.759463727474213,0.00958833564072847,0.117065370082855,-0.255358427762985,0.959733188152313,-0.00408034864813089,0.0305874906480312,0.999523758888245,0.0401303917169571,0.00541769387200475,0.999179780483246,-0.0331134162843227,0.00834938790649176,0.999416708946228,-0.0342931523919106,-0.0254874434322119,0.999086797237396,0.0463441424071789,-0.0502609647810459,0.997660338878632,0.0529747270047665,-0.0108145279809833,0.998537242412567,0.0392012819647789,-0.00515970541164279,-0.999217987060547,0.999957501888275,0.00319561874493957,-0.00864679738879204,0.0225925669074059,0.0541419126093388,-0.99827766418457,0.999542951583862,-0.0149913439527154,-0.0262505933642387,0.617736637592316,-0.786089420318604,-0.0215585045516491,0.0244228728115559,-0.71649432182312,-0.697165310382843,0.999808013439178,-0.0169863514602184,0.00976274441927671,0.617736637592316,-0.786089420318604,-0.0215585045516491,0.999542951583862,-0.0149913439527154,-0.0262505933642387,-0.0658568367362022,-0.00545685226097703,0.997814118862152,-0.0706925690174103,0.0159654933959246,0.997370362281799,-0.998983442783356,0.0249403566122055,0.0375508181750774,-0.999138295650482,-0.00341103854589164,0.0413631424307823,0.999672770500183,0.00936628133058548,-0.0238068997859955,0.0877915695309639,0.0285546537488699,-0.995729506015778,0.0813958272337914,-0.362188935279846,-0.928543925285339,0.940253794193268,-0.340223997831345,-0.0130568072199821,0.940253794193268,-0.340223997831345,-0.0130568072199821,0.955039024353027,-0.295237869024277,0.0271096900105476,0.999672770500183,0.00936628133058548,-0.0238068997859955,
- 0.996306896209717,-0.0705763846635818,-0.0489037856459618,0.745987474918365,-0.664744138717651,-0.0402230806648731,0.033246498554945,-0.0150511935353279,-0.999333798885345,0.892091572284698,0.450776368379593,0.0311981122940779,0.099097914993763,0.221093639731407,0.970204710960388,0.998844861984253,0.0361493639647961,0.031659759581089,0.998735249042511,-0.0266588795930147,0.0426273755729198,0.0679241493344307,-0.0720892548561096,0.99508261680603,0.0342399254441261,-0.091028206050396,0.995259523391724,0.998959600925446,-0.0382814556360245,0.02478420548141,-0.042145349085331,0.00418458413332701,-0.999102711677551,-0.999239921569824,0.020446790382266,-0.0331876836717129,-0.131115734577179,-0.129483446478844,-0.982874751091003,0.999262988567352,-0.0248779747635126,0.0292302500456572,0.998844861984253,0.0361493639647961,0.031659759581089,0.0665967836976051,-0.00905861426144838,0.997738838195801,0.0739301741123199,-0.0640993043780327,0.995201230049133,0.998844861984253,0.0361493639647961,0.031659759581089,0.099097914993763,0.221093639731407,0.970204710960388,0.0665967836976051,-0.00905861426144838,0.997738838195801,0.0426510833203793,0.00715331640094519,-0.99906450510025,-0.131115734577179,-0.129483446478844,-0.982874751091003,0.0225925669074059,0.0541419126093388,-0.99827766418457,-0.042145349085331,0.00418458413332701,-0.999102711677551,-0.131115734577179,-0.129483446478844,-0.982874751091003,0.0426510833203793,0.00715331640094519,-0.99906450510025,0.0498421303927898,-0.0160159859806299,0.998628675937653,0.0647705718874931,0.997507572174072,0.0279904883354902,0.0187438894063234,0.998911559581757,0.042712677270174,0.0647705718874931,0.997507572174072,0.0279904883354902,0.999714314937592,-0.000718549592420459,0.0238927658647299,0.896201729774475,0.443432152271271,0.0138019658625126,0.0502557307481766,-0.0235114507377148,-0.998459696769714,0.999408304691315,-0.0168224517256022,-0.0300029758363962,0.940253794193268,-0.340223997831345,-0.0130568072199821,-0.922390103340149,0.386009484529495,0.0139018772169948,-0.945048570632935,0.326737135648727,-0.0112250186502934,
- -0.999442279338837,0.0152609180659056,0.0297050066292286,0.0498421303927898,-0.0160159859806299,0.998628675937653,0.999714314937592,-0.000718549592420459,0.0238927658647299,0.0647705718874931,0.997507572174072,0.0279904883354902,-0.0347486436367035,-0.0215288102626801,-0.999164283275604,-0.785869061946869,0.617214918136597,-0.038153238594532,-0.999374270439148,-0.00794791709631681,-0.0344667732715607,-0.999374270439148,-0.00794791709631681,-0.0344667732715607,-0.785869061946869,0.617214918136597,-0.038153238594532,-0.999839544296265,-0.0107535058632493,0.014324601739645,0.999686777591705,-0.0236622076481581,0.0081553366035223,0.037027046084404,0.0873695611953735,0.995487630367279,0.955039024353027,-0.295237869024277,0.0271096900105476,-0.00408034864813089,0.0305874906480312,0.999523758888245,0.117065370082855,-0.255358427762985,0.959733188152313,-0.0706925690174103,0.0159654933959246,0.997370362281799,0.0187438894063234,0.998911559581757,0.042712677270174,-0.0385664068162441,0.999069392681122,0.0193100571632385,-0.0475363098084927,-0.017556969076395,0.998715221881866,-0.0210585165768862,-0.0475663580000401,0.998646080493927,-0.999839544296265,-0.0107535058632493,0.014324601739645,-0.870019972324371,0.492867976427078,0.012092849239707,-0.116506591439247,-0.0867214649915695,0.989396691322327,-0.0214752871543169,0.0219444241374731,-0.999528467655182,-0.785869061946869,0.617214918136597,-0.038153238594532,-0.0240940861403942,0.0818091183900833,-0.996356725692749,-0.0385664068162441,0.999069392681122,0.0193100571632385,-0.999553084373474,0.0295214578509331,0.00468208687379956,-0.0475363098084927,-0.017556969076395,0.998715221881866,0.0655497163534164,0.0221531745046377,-0.997603297233582,0.0509755425155163,0.998440563678741,-0.0227586086839437,0.999630510807037,0.0157866757363081,-0.0221280585974455,-0.785869061946869,0.617214918136597,-0.038153238594532,-0.870019972324371,0.492867976427078,0.012092849239707,-0.999839544296265,-0.0107535058632493,0.014324601739645,0.0509755425155163,0.998440563678741,-0.0227586086839437,
- 0.0647705718874931,0.997507572174072,0.0279904883354902,0.896201729774475,0.443432152271271,0.0138019658625126,0.0509755425155163,0.998440563678741,-0.0227586086839437,0.896201729774475,0.443432152271271,0.0138019658625126,0.999630510807037,0.0157866757363081,-0.0221280585974455,-0.0177987366914749,-0.0160105284303427,-0.999713361263275,-0.945048570632935,0.326737135648727,-0.0112250186502934,-0.999859094619751,-0.00788453873246908,-0.0148224364966154,0.0330285876989365,0.148102000355721,-0.988420426845551,-0.0347486436367035,-0.0215288102626801,-0.999164283275604,0.033246498554945,-0.0150511935353279,-0.999333798885345,0.0483847893774509,0.0235180836170912,-0.998551845550537,0.745987474918365,-0.664744138717651,-0.0402230806648731,0.999448835849762,0.00924153253436089,-0.0318840220570564,0.999448835849762,0.00924153253436089,-0.0318840220570564,0.999408304691315,-0.0168224517256022,-0.0300029758363962,0.0502557307481766,-0.0235114507377148,-0.998459696769714,0.0483847893774509,0.0235180836170912,-0.998551845550537,-0.0177987366914749,-0.0160105284303427,-0.999713361263275,-0.0339785106480122,-0.0174389816820621,-0.999270439147949,-0.945048570632935,0.326737135648727,-0.0112250186502934,0.0877915695309639,0.0285546537488699,-0.995729506015778,0.075324185192585,-0.0208557341247797,-0.996940910816193,-0.0423321463167667,-0.00952422618865967,-0.999058127403259,-0.0411140434443951,0.0268592573702335,-0.998793423175812,0.0244228728115559,-0.71649432182312,-0.697165310382843,-0.00426899502053857,-0.706495761871338,-0.707704484462738,-0.0423321463167667,-0.00952422618865967,-0.999058127403259,0.075324185192585,-0.0208557341247797,-0.996940910816193,-0.022868575528264,-0.686476945877075,0.726791977882385,0.134078338742256,-0.689382255077362,0.711881458759308,0.0463441424071789,-0.0502609647810459,0.997660338878632,-0.0342931523919106,-0.0254874434322119,0.999086797237396,0.760063588619232,-0.634394466876984,0.140879169106483,0.999808013439178,-0.0169863514602184,0.00976274441927671,0.0463441424071789,-0.0502609647810459,0.997660338878632,
- 0.134078338742256,-0.689382255077362,0.711881458759308,0.955039024353027,-0.295237869024277,0.0271096900105476,0.0401303917169571,0.00541769387200475,0.999179780483246,0.999892830848694,0.00914772599935532,0.0114271929487586,0.0432966090738773,-0.00140124978497624,0.999061226844788,-0.0658568367362022,-0.00545685226097703,0.997814118862152,0.037027046084404,0.0873695611953735,0.995487630367279,0.117065370082855,-0.255358427762985,0.959733188152313,-0.116506591439247,-0.0867214649915695,0.989396691322327,-0.0706925690174103,0.0159654933959246,0.997370362281799,-0.922390103340149,0.386009484529495,0.0139018772169948,-0.999442279338837,0.0152609180659056,0.0297050066292286,-0.0331134162843227,0.00834938790649176,0.999416708946228,-0.922390103340149,0.386009484529495,0.0139018772169948,-0.0331134162843227,0.00834938790649176,0.999416708946228,-0.0427777171134949,0.520149827003479,0.853003025054932,-0.0427777171134949,0.520149827003479,0.853003025054932,-0.999138295650482,-0.00341103854589164,0.0413631424307823,-0.922390103340149,0.386009484529495,0.0139018772169948,0.0655497163534164,0.0221531745046377,-0.997603297233582,-0.0475601032376289,0.0188547670841217,-0.99869042634964,-0.0298126637935638,0.99923437833786,-0.025334632024169,-0.998612523078918,0.0358663275837898,-0.0385570637881756,-0.0298126637935638,0.99923437833786,-0.025334632024169,-0.0475601032376289,0.0188547670841217,-0.99869042634964,0.037027046084404,0.0873695611953735,0.995487630367279,0.0401303917169571,0.00541769387200475,0.999179780483246,0.955039024353027,-0.295237869024277,0.0271096900105476,0.999686777591705,-0.0236622076481581,0.0081553366035223,0.0432966090738773,-0.00140124978497624,0.999061226844788,0.037027046084404,0.0873695611953735,0.995487630367279,0.99983024597168,0.0161248352378607,0.00892033893615007,0.999648749828339,0.0174726955592632,0.0199295654892921,0.999686777591705,-0.0236622076481581,0.0081553366035223,0.999408304691315,-0.0168224517256022,-0.0300029758363962,0.999448835849762,0.00924153253436089,-0.0318840220570564,-0.99848884344101,-0.0474707670509815,-0.0276864282786846,
- -0.921534299850464,-0.368179470300674,-0.12336266040802,-0.808332502841949,-0.58763313293457,-0.0358589887619019,-0.0339785106480122,-0.0174389816820621,-0.999270439147949,0.0813958272337914,-0.362188935279846,-0.928543925285339,0.0877915695309639,0.0285546537488699,-0.995729506015778,-0.0177987366914749,-0.0160105284303427,-0.999713361263275,0.0813958272337914,-0.362188935279846,-0.928543925285339,-0.0339785106480122,-0.0174389816820621,-0.999270439147949,-0.0177987366914749,-0.0160105284303427,-0.999713361263275,0.0502557307481766,-0.0235114507377148,-0.998459696769714,0.0813958272337914,-0.362188935279846,-0.928543925285339,-0.996856987476349,-0.0741904005408287,0.0277837123721838,-0.999442279338837,0.0152609180659056,0.0297050066292286,-0.999381601810455,0.0150111541152,-0.0318000316619873,-0.996555328369141,-0.077210433781147,-0.0302673541009426,-0.999859094619751,-0.00788453873246908,-0.0148224364966154,-0.999474942684174,0.0293215122073889,-0.013787180185318,-0.0214752871543169,0.0219444241374731,-0.999528467655182,-0.0177987366914749,-0.0160105284303427,-0.999713361263275,-0.0204088781028986,-0.0162605755031109,0.999659478664398,-0.0210585165768862,-0.0475663580000401,0.998646080493927,0.0739301741123199,-0.0640993043780327,0.995201230049133,0.0665967836976051,-0.00905861426144838,0.997738838195801,0.0426510833203793,0.00715331640094519,-0.99906450510025,0.998181760311127,0.0457718446850777,-0.0392178520560265,0.996306896209717,-0.0705763846635818,-0.0489037856459618,0.033246498554945,-0.0150511935353279,-0.999333798885345,0.0392012819647789,-0.00515970541164279,-0.999217987060547,-0.0376590490341187,-0.00155328237451613,-0.999289393424988,-0.0349969938397408,0.03562131524086,-0.998752415180206,0.0254735313355923,0.0447912998497486,-0.998671591281891,0.999714314937592,-0.000718549592420459,0.0238927658647299,0.999630510807037,0.0157866757363081,-0.0221280585974455,0.896201729774475,0.443432152271271,0.0138019658625126,0.0628654211759567,0.0355704575777054,0.997387945652008,0.0239456575363874,0.0384057573974133,0.998975276947021,
- -0.0238124988973141,0.033523965626955,0.999154210090637,-0.025892885401845,-0.00869919918477535,0.999626874923706,0.0582343600690365,-0.0146130621433258,0.998196005821228,0.0392012819647789,-0.00515970541164279,-0.999217987060547,0.0254735313355923,0.0447912998497486,-0.998671591281891,0.999561011791229,0.023872897028923,-0.0175434276461601,0.999957501888275,0.00319561874493957,-0.00864679738879204,0.999380111694336,0.00359806581400335,0.0350212045013905,0.0582343600690365,-0.0146130621433258,0.998196005821228,0.099097914993763,0.221093639731407,0.970204710960388,0.892091572284698,0.450776368379593,0.0311981122940779,-0.99848884344101,-0.0474707670509815,-0.0276864282786846,-0.995542109012604,-0.0897160470485687,0.0291037727147341,-0.999341905117035,-0.0198323894292116,0.0303716734051704,-0.999671757221222,-0.00521474750712514,-0.0250865835696459,-0.996856987476349,-0.0741904005408287,0.0277837123721838,-0.022868575528264,-0.686476945877075,0.726791977882385,-0.0342931523919106,-0.0254874434322119,0.999086797237396,0.999262988567352,-0.0248779747635126,0.0292302500456572,0.0739301741123199,-0.0640993043780327,0.995201230049133,0.650479018688202,-0.759463727474213,0.00958833564072847,0.999408304691315,-0.0168224517256022,-0.0300029758363962,0.955039024353027,-0.295237869024277,0.0271096900105476,0.940253794193268,-0.340223997831345,-0.0130568072199821,-0.922390103340149,0.386009484529495,0.0139018772169948,-0.999138295650482,-0.00341103854589164,0.0413631424307823,-0.999859094619751,-0.00788453873246908,-0.0148224364966154,-0.945048570632935,0.326737135648727,-0.0112250186502934,0.999561011791229,0.023872897028923,-0.0175434276461601,0.998190641403198,0.0307539645582438,0.0516690574586391,0.999380111694336,0.00359806581400335,0.0350212045013905,0.999957501888275,0.00319561874493957,-0.00864679738879204,0.889438152313232,0.29940477013588,0.345335304737091,0.335868000984192,0.338075190782547,0.879146158695221,0.0628654211759567,0.0355704575777054,0.997387945652008,0.998190641403198,0.0307539645582438,0.0516690574586391,
- -0.986282467842102,-0.14781865477562,0.0734614431858063,0.0144796725362539,0.195928260684013,0.98051130771637,-0.0413958169519901,-0.0646877735853195,0.997046530246735,-0.999753534793854,-0.0211252514272928,0.00682389223948121,0.0144796725362539,0.195928260684013,0.98051130771637,0.335868000984192,0.338075190782547,0.879146158695221,0.0342399254441261,-0.091028206050396,0.995259523391724,-0.0413958169519901,-0.0646877735853195,0.997046530246735,0.889438152313232,0.29940477013588,0.345335304737091,0.934831559658051,0.355048656463623,-0.00550891924649477,0.998959600925446,-0.0382814556360245,0.02478420548141,0.0254735313355923,0.0447912998497486,-0.998671591281891,0.0201973002403975,0.508719563484192,-0.86069530248642,0.934831559658051,0.355048656463623,-0.00550891924649477,-0.999341905117035,-0.0198323894292116,0.0303716734051704,-0.0238124988973141,0.033523965626955,0.999154210090637,0.0144796725362539,0.195928260684013,0.98051130771637,-0.986282467842102,-0.14781865477562,0.0734614431858063,0.335868000984192,0.338075190782547,0.879146158695221,0.0239456575363874,0.0384057573974133,0.998975276947021,0.0628654211759567,0.0355704575777054,0.997387945652008,-0.019684661179781,0.477502286434174,-0.878410041332245,-0.999671757221222,-0.00521474750712514,-0.0250865835696459,-0.918038368225098,0.394559115171433,-0.0390986204147339,0.999561011791229,0.023872897028923,-0.0175434276461601,0.0254735313355923,0.0447912998497486,-0.998671591281891,0.934831559658051,0.355048656463623,-0.00550891924649477,0.889438152313232,0.29940477013588,0.345335304737091,0.976584732532501,0.21457339823246,0.0155104082077742,0.999561011791229,0.023872897028923,-0.0175434276461601,0.934831559658051,0.355048656463623,-0.00550891924649477,0.999380111694336,0.00359806581400335,0.0350212045013905,0.998190641403198,0.0307539645582438,0.0516690574586391,0.0628654211759567,0.0355704575777054,0.997387945652008,0.0582343600690365,-0.0146130621433258,0.998196005821228,0.998959600925446,-0.0382814556360245,0.02478420548141,0.0342399254441261,-0.091028206050396,0.995259523391724,
- 0.335868000984192,0.338075190782547,0.879146158695221,0.889438152313232,0.29940477013588,0.345335304737091,-0.0475363098084927,-0.017556969076395,0.998715221881866,-0.999553084373474,0.0295214578509331,0.00468208687379956,-0.999753534793854,-0.0211252514272928,0.00682389223948121,-0.0413958169519901,-0.0646877735853195,0.997046530246735,0.0498421303927898,-0.0160159859806299,0.998628675937653,-0.0475363098084927,-0.017556969076395,0.998715221881866,-0.0413958169519901,-0.0646877735853195,0.997046530246735,0.0342399254441261,-0.091028206050396,0.995259523391724,0.0679241493344307,-0.0720892548561096,0.99508261680603,0.0655497163534164,0.0221531745046377,-0.997603297233582,0.999630510807037,0.0157866757363081,-0.0221280585974455,0.999617695808411,-0.0135722802951932,-0.0240902490913868,0.0608177520334721,-0.0254301615059376,-0.997824907302856,0.999630510807037,0.0157866757363081,-0.0221280585974455,0.999714314937592,-0.000718549592420459,0.0238927658647299,0.998735249042511,-0.0266588795930147,0.0426273755729198,0.998959600925446,-0.0382814556360245,0.02478420548141,0.999617695808411,-0.0135722802951932,-0.0240902490913868,-0.999553084373474,0.0295214578509331,0.00468208687379956,-0.998612523078918,0.0358663275837898,-0.0385570637881756,-0.998915195465088,-0.013241739012301,-0.0446441099047661,-0.999753534793854,-0.0211252514272928,0.00682389223948121,-0.998612523078918,0.0358663275837898,-0.0385570637881756,-0.0475601032376289,0.0188547670841217,-0.99869042634964,-0.0389542430639267,-0.0230801813304424,-0.998974442481995,-0.998915195465088,-0.013241739012301,-0.0446441099047661,-0.0389542430639267,-0.0230801813304424,-0.998974442481995,0.0608177520334721,-0.0254301615059376,-0.997824907302856,-0.019684661179781,0.477502286434174,-0.878410041332245,-0.019684661179781,0.477502286434174,-0.878410041332245,-0.918038368225098,0.394559115171433,-0.0390986204147339,-0.998915195465088,-0.013241739012301,-0.0446441099047661,0.998735249042511,-0.0266588795930147,0.0426273755729198,0.999714314937592,-0.000718549592420459,0.0238927658647299,
- 0.0498421303927898,-0.0160159859806299,0.998628675937653,0.0679241493344307,-0.0720892548561096,0.99508261680603,0.998190641403198,0.0307539645582438,0.0516690574586391,0.976584732532501,0.21457339823246,0.0155104082077742,0.889438152313232,0.29940477013588,0.345335304737091,-0.0238124988973141,0.033523965626955,0.999154210090637,0.0239456575363874,0.0384057573974133,0.998975276947021,0.335868000984192,0.338075190782547,0.879146158695221,0.0144796725362539,0.195928260684013,0.98051130771637,0.998190641403198,0.0307539645582438,0.0516690574586391,0.999561011791229,0.023872897028923,-0.0175434276461601,0.976584732532501,0.21457339823246,0.0155104082077742,-0.019684661179781,0.477502286434174,-0.878410041332245,-0.998915195465088,-0.013241739012301,-0.0446441099047661,-0.0389542430639267,-0.0230801813304424,-0.998974442481995,-0.999671757221222,-0.00521474750712514,-0.0250865835696459,-0.986282467842102,-0.14781865477562,0.0734614431858063,-0.918038368225098,0.394559115171433,-0.0390986204147339,0.934831559658051,0.355048656463623,-0.00550891924649477,0.0201973002403975,0.508719563484192,-0.86069530248642,0.0608177520334721,-0.0254301615059376,-0.997824907302856,-0.0475601032376289,0.0188547670841217,-0.99869042634964,0.0655497163534164,0.0221531745046377,-0.997603297233582,0.0608177520334721,-0.0254301615059376,-0.997824907302856,-0.0389542430639267,-0.0230801813304424,-0.998974442481995,-0.999671757221222,-0.00521474750712514,-0.0250865835696459,-0.999341905117035,-0.0198323894292116,0.0303716734051704,-0.986282467842102,-0.14781865477562,0.0734614431858063,-0.986282467842102,-0.14781865477562,0.0734614431858063,-0.999753534793854,-0.0211252514272928,0.00682389223948121,-0.998915195465088,-0.013241739012301,-0.0446441099047661,-0.986282467842102,-0.14781865477562,0.0734614431858063,-0.998915195465088,-0.013241739012301,-0.0446441099047661,-0.918038368225098,0.394559115171433,-0.0390986204147339,-0.0349969938397408,0.03562131524086,-0.998752415180206,-0.999671757221222,-0.00521474750712514,-0.0250865835696459,-0.019684661179781,0.477502286434174,-0.878410041332245,
- 0.998959600925446,-0.0382814556360245,0.02478420548141,0.934831559658051,0.355048656463623,-0.00550891924649477,0.999617695808411,-0.0135722802951932,-0.0240902490913868,-0.996856987476349,-0.0741904005408287,0.0277837123721838,-0.578559994697571,-0.815579533576965,0.00992073025554419,-0.022868575528264,-0.686476945877075,0.726791977882385,-0.999474942684174,0.0293215122073889,-0.013787180185318,-0.998983442783356,0.0249403566122055,0.0375508181750774,-0.785869061946869,0.617214918136597,-0.038153238594532,-0.945048570632935,0.326737135648727,-0.0112250186502934,-0.999381601810455,0.0150111541152,-0.0318000316619873,-0.999442279338837,0.0152609180659056,0.0297050066292286,-0.0339785106480122,-0.0174389816820621,-0.999270439147949,-0.0411140434443951,0.0268592573702335,-0.998793423175812,-0.999381601810455,0.0150111541152,-0.0318000316619873,-0.945048570632935,0.326737135648727,-0.0112250186502934,0.0877915695309639,0.0285546537488699,-0.995729506015778,-0.0411140434443951,0.0268592573702335,-0.998793423175812,-0.0339785106480122,-0.0174389816820621,-0.999270439147949,0.934831559658051,0.355048656463623,-0.00550891924649477,0.0608177520334721,-0.0254301615059376,-0.997824907302856,0.999617695808411,-0.0135722802951932,-0.0240902490913868,0.999686777591705,-0.0236622076481581,0.0081553366035223,0.955039024353027,-0.295237869024277,0.0271096900105476,0.999408304691315,-0.0168224517256022,-0.0300029758363962,-0.0658568367362022,-0.00545685226097703,0.997814118862152,0.0432966090738773,-0.00140124978497624,0.999061226844788,0.0355937704443932,0.00990459229797125,0.999317228794098,-0.00408034864813089,0.0305874906480312,0.999523758888245,-0.0706925690174103,0.0159654933959246,0.997370362281799,0.650479018688202,-0.759463727474213,0.00958833564072847,0.99983024597168,0.0161248352378607,0.00892033893615007,0.999448835849762,0.00924153253436089,-0.0318840220570564,-0.819608271121979,-0.572743892669678,0.0143811516463757,-0.995542109012604,-0.0897160470485687,0.0291037727147341,-0.808332502841949,-0.58763313293457,-0.0358589887619019,
- -0.921534299850464,-0.368179470300674,-0.12336266040802,-0.995542109012604,-0.0897160470485687,0.0291037727147341,-0.025892885401845,-0.00869919918477535,0.999626874923706,-0.0238124988973141,0.033523965626955,0.999154210090637,-0.999341905117035,-0.0198323894292116,0.0303716734051704,-0.998983442783356,0.0249403566122055,0.0375508181750774,-0.870019972324371,0.492867976427078,0.012092849239707,-0.785869061946869,0.617214918136597,-0.038153238594532,-0.116506591439247,-0.0867214649915695,0.989396691322327,-0.870019972324371,0.492867976427078,0.012092849239707,-0.998983442783356,0.0249403566122055,0.0375508181750774,-0.0706925690174103,0.0159654933959246,0.997370362281799,-0.116506591439247,-0.0867214649915695,0.989396691322327,-0.998983442783356,0.0249403566122055,0.0375508181750774,0.998181760311127,0.0457718446850777,-0.0392178520560265,0.998844861984253,0.0361493639647961,0.031659759581089,0.999262988567352,-0.0248779747635126,0.0292302500456572,0.996306896209717,-0.0705763846635818,-0.0489037856459618,-0.0214752871543169,0.0219444241374731,-0.999528467655182,-0.0240940861403942,0.0818091183900833,-0.996356725692749,0.0330285876989365,0.148102000355721,-0.988420426845551,-0.0240940861403942,0.0818091183900833,-0.996356725692749,-0.0347486436367035,-0.0215288102626801,-0.999164283275604,0.0330285876989365,0.148102000355721,-0.988420426845551,-0.0210585165768862,-0.0475663580000401,0.998646080493927,-0.116506591439247,-0.0867214649915695,0.989396691322327,0.117065370082855,-0.255358427762985,0.959733188152313,0.0355937704443932,0.00990459229797125,0.999317228794098,0.0432966090738773,-0.00140124978497624,0.999061226844788,0.999686777591705,-0.0236622076481581,0.0081553366035223,0.999648749828339,0.0174726955592632,0.0199295654892921,-0.00408034864813089,0.0305874906480312,0.999523758888245,0.0355937704443932,0.00990459229797125,0.999317228794098,0.999648749828339,0.0174726955592632,0.0199295654892921,0.0401303917169571,0.00541769387200475,0.999179780483246,0.0529747270047665,-0.0108145279809833,0.998537242412567,
- 0.999816298484802,-0.00402961345389485,0.018738504499197,0.999892830848694,0.00914772599935532,0.0114271929487586,0.999816298484802,-0.00402961345389485,0.018738504499197,0.0529747270047665,-0.0108145279809833,0.998537242412567,0.0463441424071789,-0.0502609647810459,0.997660338878632,0.999808013439178,-0.0169863514602184,0.00976274441927671,0.0254735313355923,0.0447912998497486,-0.998671591281891,-0.0349969938397408,0.03562131524086,-0.998752415180206,-0.019684661179781,0.477502286434174,-0.878410041332245,0.0201973002403975,0.508719563484192,-0.86069530248642,0.0608177520334721,-0.0254301615059376,-0.997824907302856,0.0201973002403975,0.508719563484192,-0.86069530248642,-0.019684661179781,0.477502286434174,-0.878410041332245,-0.578047335147858,-0.815901279449463,-0.0129034109413624,-0.996555328369141,-0.077210433781147,-0.0302673541009426,-0.00426899502053857,-0.706495761871338,-0.707704484462738,-0.99848884344101,-0.0474707670509815,-0.0276864282786846,-0.808332502841949,-0.58763313293457,-0.0358589887619019,-0.995542109012604,-0.0897160470485687,0.0291037727147341,-0.99848884344101,-0.0474707670509815,-0.0276864282786846,-0.131115734577179,-0.129483446478844,-0.982874751091003,-0.921534299850464,-0.368179470300674,-0.12336266040802,0,0,1,0,0,1,0,0,0.999999940395355,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.59558072204891e-009,0,-1,-3.79868048128174e-009,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-0.999977171421051,-0.00676223868504167,0,-0.999977171421051,-0.00676223868504167,0,0,0,-1,0,0,-1,0,0,-1,-3.79868048128174e-009,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,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,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
- }
- NormalsW: *6060 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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: *18180 {
- a: 0.000476084678666666,0.99999988079071,-0,0.00028425149503164,1,-0,-0,1,0,0.000166321566211991,1,-0,1.78571291087337e-009,1,-0,-0.000213302570045926,1,0,9.99173716991208e-005,1,-0,-0.00095070427050814,0.999999582767487,0,0.000173302003531717,1,-0,0.000413688714616001,1,-0,9.99173716991208e-005,1,-0,-0.000213302570045926,1,0,-0,1,0,0.00028425149503164,1,-0,0.000413688714616001,1,-0,0.000173302003531717,1,-0,-0.00159261864610016,0.99999874830246,0,0,1,-0,0,1,-0,0,1,-0,-0.00159261864610016,0.99999874830246,0,0,1,-0,0,1,-0,-3.43785613949876e-005,1,0,-3.43785613949876e-005,1,0,0,1,-0,0,1,-0,0.000166252400958911,1,-0,0.00318331341259182,0.999994933605194,-0,0.000166252400958911,1,-0,0,1,-0,0,1,-0,0,1,-0,-0.00159261864610016,0.99999874830246,0,-0.000881035928614438,0.999999701976776,0,-0.00878970697522163,0.999961376190186,0,-0.00012032495578751,1,0,0.00324196927249432,0.99999475479126,-0,-0.000881035928614438,0.999999701976776,0,-0.00159261864610016,0.99999874830246,0,-3.43785613949876e-005,1,0,0.000166252400958911,1,-0,0.00584476022049785,0.999983012676239,-0,0.0020931214094162,0.999997854232788,-0,-0.00012032495578751,1,0,-3.43785613949876e-005,1,0,0.00837212800979614,0.999965012073517,-0,0.00584476022049785,0.999983012676239,-0,0.000166252400958911,1,-0,0.00318331341259182,0.999994933605194,-0,0.000561516208108515,0.999999940395355,-0,-0.00836140476167202,0.999965131282806,0,-0.00878970697522163,0.999961376190186,0,-0.000881035928614438,0.999999701976776,0,0.000561516208108515,0.999999940395355,-0,-0.000881035928614438,0.999999701976776,0,0.00809251796454191,0.999967277050018,-0,-0.000468125101178885,0.99999988079071,0,0.00461799325421453,0.99998939037323,-0,0.00505618890747428,0.999987304210663,-0,0.00584476022049785,0.999983012676239,-0,0.00837212800979614,0.999965012073517,-0,-0.00160763715393841,0.99999874830246,0,-0.000940060068387538,0.999999642372131,0,0.000505111180245876,0.999999940395355,-0,0.000505111180245876,0.999999940395355,-0,-0.000940060068387538,0.999999642372131,0,-0.00313678290694952,0.999995112419128,0,
- -0.000286438502371311,1,0,0.00104676722548902,0.999999463558197,-0,0.00194134772755206,0.999998211860657,-0,0.00505618890747428,0.999987304210663,-0,0.00461799325421453,0.99998939037323,-0,0.00028425149503164,1,-0,0.000476084678666666,0.99999988079071,-0,-0.00160763715393841,0.99999874830246,0,0.000505111180245876,0.999999940395355,-0,0.00028425149503164,1,-0,0.000505111180245876,0.999999940395355,-0,-0.000286438502371311,1,0,1.53574728756212e-005,1,-0,0.000413688714616001,1,-0,0.000413688714616001,1,-0,1.53574728756212e-005,1,-0,0.00164736446458846,0.99999862909317,-0,0.000785759068094194,0.999999701976776,-0,9.99173716991208e-005,1,-0,-0.00095070427050814,0.999999582767487,0,9.99173716991208e-005,1,-0,0.000785759068094194,0.999999701976776,-0,0.00104676722548902,0.999999463558197,-0,0,0.999980688095093,0.00622495915740728,0,0.999992430210114,0.00390823138877749,0,0.999998152256012,0.00192590849474072,0,0.999994277954102,0.00340652861632407,0,0.999997675418854,0.00216462183743715,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999997675418854,0.00216462183743715,0,0.999966323375702,0.0082168485969305,0,0.999990403652191,0.00439478224143386,0,0.999943435192108,0.0106358462944627,0,0.999951124191284,0.00989745277911425,0,0.999990403652191,0.00439478224143386,0,0.999966323375702,0.0082168485969305,0,0.999951124191284,0.00989745277911425,0,0.999943435192108,0.0106358462944627,0,0.999971389770508,0.00756447343155742,0,0.999952256679535,0.00977246928960085,0,0.999992430210114,0.00390823138877749,0,0.999980688095093,0.00622495915740728,0,0.999952256679535,0.00977246928960085,0,0.999971389770508,0.00756447343155742,-0,1,1.77460751729086e-005,-0,1,0.000363965780707076,-0,0.999998986721039,0.00142037065234035,-0,0.999999761581421,0.000719037838280201,0,1,-0,0,1,-0.000146833001053892,-0,1,0,-0,1,0,-0,1,0,0,1,-0.000146833001053892,0,0.999999821186066,-0.000597437960095704,0,1,-0.000298719009151682,0,0.999999821186066,-0.000597437960095704,0,1,-0.00015188600809779,-0,1,0,0,1,-0.000298719009151682,-0,1,0,0,1,-0.00015188600809779,-0,1,0,-0,1,4.44685656475485e-006,
- -0,1,0,-0,1,0.000363965780707076,-0,1,1.77460751729086e-005,-0,1,4.44685656475485e-006,0,-0,1,-0.00057110155466944,0,0.99999988079071,-0.00114304758608341,0,0.999999344348907,-0.000571523909457028,0,0.99999988079071,0,-0,1,-0.000380452838726342,0,1,-0.00061760371318087,0,0.999999821186066,-0.00057110155466944,0,0.99999988079071,-0.000380452838726342,0,1,-0.000237150932662189,0,1,-0.000376215379219502,0,0.999999940395355,-0.00061760371318087,0,0.999999821186066,-0.00041719333967194,0,0.999999940395355,-0.000376215379219502,0,0.999999940395355,-0.000237150932662189,0,1,-0.00020859666983597,0,1,0.000380004086764529,0,-1,0.000569928262848407,0,-0.99999988079071,0.00113985629286617,0,-0.999999344348907,0.000759956252295524,0,-0.999999701976776,0.000237286207266152,0,-1,0.000380004086764529,0,-1,0.000759956252295524,0,-0.999999701976776,0.00061729020671919,0,-0.999999821186066,-0,-0,-1,0.000237286207266152,0,-1,0.00061729020671919,0,-0.999999821186066,0.000282064487691969,0,-1,0.000416399358073249,0,-0.999999940395355,0.000208199679036625,0,-1,-0,-0,-1,0.000282064487691969,0,-1,0.000155956615344621,1,0,-0.000270239688688889,1,0,-0.000179738257429563,1,0,-0.000814980012364686,0.999999642372131,0,0.000808751443400979,0.999999701976776,0,0.000227230935706757,1,0,-3.83042752218898e-005,1,0,-7.6574768172577e-005,1,0,0.000227230935706757,1,0,0.00022730692580808,1,0,0.000338021316565573,1,0,-3.83042752218898e-005,1,0,0.00022730692580808,1,0,-0.000179738257429563,1,0,-0.000270239688688889,1,0,0.000338021316565573,1,0,0.00235929689370096,0.999997317790985,0,0,1,0,0,1,0,0,1,0,0.00235929689370096,0.999997317790985,0,0,1,0,0,1,0,-0.000332970463205129,1,0,-0.000332970463205129,1,0,0,1,0,0,1,0,-2.40918780036736e-006,1,0,0,1,0,-0.00286102807149291,0.999995887279511,0,-2.40918780036736e-006,1,0,0,1,0,0,1,0,0.00235929689370096,0.999997317790985,0,0.00654623936861753,0.99997866153717,0,0.00804474949836731,0.999967694282532,0,-0.000332970463205129,1,0,-0.00116540014278144,0.999999344348907,0,0.000419638818129897,0.999999940395355,0,0.00654623936861753,0.99997866153717,0,
- 0.00235929689370096,0.999997317790985,0,-2.40918780036736e-006,1,0,-0.00469586905092001,0.999989032745361,1.68843758419079e-011,-0.000113728463475127,1,0,-0.00116540014278144,0.999999344348907,0,-0.000332970463205129,1,0,-0.011569345369935,0.999933063983917,5.29602472987278e-011,-0.00469586905092001,0.999989032745361,1.68843758419079e-011,-2.40918780036736e-006,1,0,-0.00286102807149291,0.999995887279511,0,0.00337222078815103,0.999994337558746,0,0.00908942893147469,0.999958753585815,0,0.00804474949836731,0.999967694282532,0,0.00654623936861753,0.99997866153717,0,0.00337222078815103,0.999994337558746,0,0.00654623936861753,0.99997866153717,0,0.00196098093874753,0.999998152256012,0,0.00269239884801209,0.999996364116669,0,-0.011569345369935,0.999933063983917,5.29602472987278e-011,-0.0071581294760108,0.999974370002747,3.27673235767101e-011,-0.00411003781482577,0.999991655349731,1.56127211853319e-011,-0.00469586905092001,0.999989032745361,1.68843758419079e-011,0.00328929419629276,0.999994575977325,0,0.00348115549422801,0.999994039535522,0,0.000907652720343322,0.999999582767487,0,0.0071881115436554,0.999974250793457,0,0.00348115549422801,0.999994039535522,0,0.00337222078815103,0.999994337558746,0,0.00269239884801209,0.999996364116669,0,-0.0028674325440079,0.999995887279511,0,-0.00246748840436339,0.999997019767761,0,-0.00411003781482577,0.999991655349731,1.56127211853319e-011,-0.0071581294760108,0.999974370002747,3.27673235767101e-011,-0.000270239688688889,1,0,0.000155956615344621,1,0,0.00328929419629276,0.999994575977325,0,0.000907652720343322,0.999999582767487,0,-0.000270239688688889,1,0,0.000907652720343322,0.999999582767487,0,0.00240172701887786,0.999997138977051,0,5.88060720474459e-005,1,0,0.000338021316565573,1,0,0.000338021316565573,1,0,5.88060720474459e-005,1,0,-5.33239199285163e-006,1,0,-0.000670827401336282,0.999999761581421,0,-3.83042752218898e-005,1,0,-0.0028674325440079,0.999995887279511,0,-7.6574768172577e-005,1,0,-3.83042752218898e-005,1,0,-0.000670827401336282,0.999999761581421,0,0.00584476022049785,0.999983012676239,-0,
- 0.00606847088783979,0.999981641769409,-0,0.0020931214094162,0.999997854232788,-0,0.00194134772755206,0.999998211860657,-0,0.00143434957135469,0.999999046325684,-0,0.00357237691059709,0.999993622303009,-0,0.00505618890747428,0.999987304210663,-0,-0.00469586905092001,0.999989032745361,1.68843758419079e-011,-0.00297538819722831,0.999995589256287,0,-0.000113728463475127,1,0,-5.33239199285163e-006,1,0,-0.00100141169968992,0.999999523162842,0,-0.00246748840436339,0.999997019767761,0,-0.000670827401336282,0.999999761581421,0,0.736664474010468,0.671843528747559,-0.0771480426192284,0.179783597588539,0.979873716831207,-0.0867487415671349,0.179766669869423,0.97978150844574,-0.0878198146820068,0.736416757106781,0.67161762714386,-0.0813640281558037,-0.00676223868504167,0.999977171421051,-2.97717929242936e-006,-0.180463910102844,0.98358166217804,-1.28973283608502e-006,-0.180463910102844,0.98358166217804,-2.16766625271703e-006,-0.00676223868504167,0.999977171421051,-2.64677760242193e-006,-1,0,3.58691613655537e-006,-1,0,2.90369757749431e-006,-0.738866567611694,0.673851847648621,6.65939523969428e-007,-0.738866567611694,0.673851847648621,2.54794872489583e-006,0,1,-2.11127348848095e-006,0,1,-2.32425395552127e-006,0,1,-2.68599933406222e-006,0,1,-2.39837390836328e-006,0,0.99518084526062,-0.0980566143989563,0,0.995355188846588,-0.0962710157036781,0.00673486804589629,0.995929718017578,-0.089881956577301,0.00673213507980108,0.995525598526001,-0.0942525938153267,-9.38132529881841e-007,0,-1,-9.38132529881841e-007,0,-1,7.8177762929954e-008,0,-1,-4.6906629336263e-007,0,-1,-4.6906629336263e-007,0,-1,7.8177762929954e-008,0,-1,7.03599539519928e-007,0,-1,5.86332930652134e-007,0,-1,0.736416757106781,0.67161762714386,-0.0813640281558037,0.996835827827454,0,-0.0794878005981445,0.996931731700897,0,-0.0782759785652161,0.736664474010468,0.671843528747559,-0.0771480426192284,0.179766669869423,0.97978150844574,-0.0878198146820068,0.179783597588539,0.979873716831207,-0.0867487415671349,0.00673213507980108,0.995525598526001,-0.0942525938153267,0.00673486804589629,0.995929718017578,-0.089881956577301,
- -0.180463910102844,0.98358166217804,-2.16766625271703e-006,-0.180463910102844,0.98358166217804,-1.28973283608502e-006,-0.738866567611694,0.673851847648621,2.54794872489583e-006,-0.738866567611694,0.673851847648621,6.65939523969428e-007,-3.9685238562015e-007,-0.974768042564392,-0.22322054207325,-3.9481503222305e-007,-0.974768042564392,-0.223220616579056,-5.6258966196765e-007,-0.999026954174042,0.0441032759845257,-3.32810344616519e-007,-0.999027013778687,0.0441032834351063,-3.27017559698106e-008,-0.0391513779759407,0.999233365058899,-9.71805462768316e-008,-0.0391515232622623,0.999233365058899,0,0.0391517952084541,0.999233365058899,-9.71569420471496e-008,0.0391516424715519,0.999233305454254,-6.08837808613316e-007,0.999027490615845,0.0440929569303989,-3.4600429899001e-007,0.999027490615845,0.0440929532051086,3.23651161426852e-010,0.974766194820404,-0.223228141665459,-4.9389566214586e-008,0.974766314029694,-0.223228126764297,-2.51301742082433e-007,0.246211528778076,-0.969216108322144,-3.18323003511978e-007,0.246211498975754,-0.969216108322144,-1.32455312495949e-007,-0.246213361620903,-0.96921569108963,-1.7702895149796e-007,-0.246213436126709,-0.96921569108963,3.17303938679459e-009,-0.0273276194930077,0.999626576900482,-1.12069091784406e-008,0.0965208858251572,0.995330989360809,-1.30670173574717e-013,-7.4817025961238e-006,1,-1.75223974219207e-010,-0.0100326919928193,0.99994969367981,2.0429824498791e-009,0.116973794996738,0.993135094642639,2.21682117107491e-009,0.126927182078362,0.991912066936493,-1.2324771203609e-009,0.0273414291441441,0.999626159667969,4.34987823538791e-009,-0.0964940637350082,0.995333611965179,-2.74511208035733e-013,-4.49072058472666e-006,1,6.13140538341383e-010,0.0100303469225764,0.99994969367981,-7.14663839218588e-009,-0.116911634802818,0.993142426013947,-7.75540076602965e-009,-0.126870363950729,0.991919279098511,-3.74401480485176e-007,-0.246213436126709,-0.96921569108963,-2.78802502862163e-007,-0.246213361620903,-0.96921569108963,-3.9481503222305e-007,-0.974768042564392,-0.223220616579056,-3.9685238562015e-007,-0.974768042564392,-0.22322054207325,
- 3.4209278965136e-007,-0.326648414134979,0.945145905017853,4.35489013739243e-008,-0.0415828078985214,0.999135076999664,-1.12069091784406e-008,0.0965208858251572,0.995330989360809,3.17303938679459e-009,-0.0273276194930077,0.999626576900482,-4.9389566214586e-008,0.974766314029694,-0.223228126764297,3.23651161426852e-010,0.974766194820404,-0.223228141665459,-3.18323003511978e-007,0.246211498975754,-0.969216108322144,-2.51301742082433e-007,0.246211528778076,-0.969216108322144,-2.56584428370843e-007,0.326667279005051,0.945139408111572,-3.26795337457497e-008,0.0416055470705032,0.999134182929993,4.34987823538791e-009,-0.0964940637350082,0.995333611965179,-1.2324771203609e-009,0.0273414291441441,0.999626159667969,-3.27017559698106e-008,-0.0391513779759407,0.999233365058899,-3.32810344616519e-007,-0.999027013778687,0.0441032834351063,-5.6258966196765e-007,-0.999026954174042,0.0441032759845257,-9.71805462768316e-008,-0.0391515232622623,0.999233365058899,-6.08837808613316e-007,0.999027490615845,0.0440929569303989,-9.71569420471496e-008,0.0391516424715519,0.999233305454254,0,0.0391517952084541,0.999233365058899,-3.4600429899001e-007,0.999027490615845,0.0440929532051086,-4.97670498589287e-007,-0.974768102169037,-0.223220467567444,-3.9685238562015e-007,-0.974768042564392,-0.22322054207325,-3.32810344616519e-007,-0.999027013778687,0.0441032834351063,-2.95303408393011e-007,-0.999027013778687,0.0441032834351063,-2.81468004459384e-007,-0.246213525533676,-0.969215631484985,-3.74401480485176e-007,-0.246213436126709,-0.96921569108963,-3.9685238562015e-007,-0.974768042564392,-0.22322054207325,-4.97670498589287e-007,-0.974768102169037,-0.223220467567444,-1.82969358775154e-007,0.246211618185043,-0.969216167926788,-2.51301742082433e-007,0.246211528778076,-0.969216108322144,-1.7702895149796e-007,-0.246213436126709,-0.96921569108963,-2.00581496301311e-007,-0.246213525533676,-0.969215631484985,-1.99775612941266e-007,0.974766254425049,-0.223228067159653,-4.9389566214586e-008,0.974766314029694,-0.223228126764297,-2.51301742082433e-007,0.246211528778076,-0.969216108322144,
- -1.82969358775154e-007,0.246211618185043,-0.969216167926788,-1.1359550171619e-006,0.999027490615845,0.0440929569303989,-6.08837808613316e-007,0.999027490615845,0.0440929569303989,-4.9389566214586e-008,0.974766314029694,-0.223228126764297,-1.99775612941266e-007,0.974766254425049,-0.223228067159653,-1.1359550171619e-006,0.999027490615845,0.0440929569303989,-1.96186732637216e-007,0.0391514860093594,0.999233305454254,-9.71569420471496e-008,0.0391516424715519,0.999233305454254,-6.08837808613316e-007,0.999027490615845,0.0440929569303989,0,-0.0391512252390385,0.999233365058899,-3.27017559698106e-008,-0.0391513779759407,0.999233365058899,-9.71569420471496e-008,0.0391516424715519,0.999233305454254,-1.96186732637216e-007,0.0391514860093594,0.999233305454254,0,-0.0391512252390385,0.999233365058899,-2.95303408393011e-007,-0.999027013778687,0.0441032834351063,-3.32810344616519e-007,-0.999027013778687,0.0441032834351063,-3.27017559698106e-008,-0.0391513779759407,0.999233365058899,7.89878029650026e-008,-0.974764585494995,0.2232356518507,3.94814776427665e-007,-0.97476452589035,0.223235681653023,5.62596824238426e-007,-0.999026119709015,-0.044123936444521,3.32813897330198e-007,-0.99902606010437,-0.0441243052482605,1.46908985243499e-006,-0.039150420576334,-0.999233365058899,-2.03701461032324e-006,-0.0391509905457497,-0.999233305454254,-8.53695291880285e-006,0.0391523763537407,-0.999233245849609,1.54714336986217e-006,0.0391511470079422,-0.999233365058899,6.07630397553294e-007,0.999027848243713,-0.0440828502178192,5.34317962319619e-007,0.999027967453003,-0.0440827496349812,-1.90741570804676e-006,0.974767863750458,0.223221153020859,5.85022945642777e-008,0.974768102169037,0.223219960927963,2.90865443730581e-007,0.24621507525444,0.969215214252472,-7.96218319010222e-006,0.246211752295494,0.969216108322144,-8.14804661786184e-006,-0.246211215853691,0.969216227531433,-2.55676286542439e-006,-0.246208056807518,0.96921706199646,5.97120131118345e-009,-0.0273361578583717,-0.999626398086548,-2.10961133007004e-008,0.0965779945254326,-0.995325446128845,
- 1.30517634460564e-012,-7.47292324376758e-006,-1,1.74769920757711e-009,-0.0100066354498267,-0.999949932098389,-2.04571524164976e-008,0.11712957918644,-0.993116676807404,-2.21910081421584e-008,0.127056941390038,-0.991895496845245,3.85524253943004e-006,0.0273308772593737,-0.999626457691193,-1.35927139126579e-005,-0.0963624939322472,-0.995346367359161,-7.24661608497712e-010,-4.49282788395067e-006,-1,1.61946718435502e-006,0.0100405318662524,-0.99994957447052,-1.88035501196282e-005,-0.116580083966255,-0.99318128824234,-2.04115167434793e-005,-0.126549333333969,-0.991960346698761,4.00809227585341e-007,-0.246208056807518,0.96921706199646,-3.86143392461236e-006,-0.246211215853691,0.969216227531433,3.94814776427665e-007,-0.97476452589035,0.223235681653023,7.89878029650026e-008,-0.974764585494995,0.2232356518507,1.71047048524997e-007,-0.326648414134979,-0.945145905017853,2.17813020952917e-008,-0.0415957383811474,-0.999134540557861,-2.10961133007004e-008,0.0965779945254326,-0.995325446128845,5.97120131118345e-009,-0.0273361578583717,-0.999626398086548,5.85022945642777e-008,0.974768102169037,0.223219960927963,-1.90741570804676e-006,0.974767863750458,0.223221153020859,-7.96218319010222e-006,0.246211752295494,0.969216108322144,2.90865443730581e-007,0.24621507525444,0.969215214252472,0,0.326640516519547,-0.945148646831512,0,0.0415894389152527,-0.99913477897644,-1.35927139126579e-005,-0.0963624939322472,-0.995346367359161,3.85524253943004e-006,0.0273308772593737,-0.999626457691193,1.46908985243499e-006,-0.039150420576334,-0.999233365058899,3.32813897330198e-007,-0.99902606010437,-0.0441243052482605,5.62596824238426e-007,-0.999026119709015,-0.044123936444521,-2.03701461032324e-006,-0.0391509905457497,-0.999233305454254,6.07630397553294e-007,0.999027848243713,-0.0440828502178192,1.54714336986217e-006,0.0391511470079422,-0.999233365058899,-8.53695291880285e-006,0.0391523763537407,-0.999233245849609,5.34317962319619e-007,0.999027967453003,-0.0440827496349812,1.13949067781505e-006,-0.974764585494995,0.223235636949539,7.89878029650026e-008,-0.974764585494995,0.2232356518507,
- 3.32813897330198e-007,-0.99902606010437,-0.0441243052482605,2.95307046371818e-007,-0.9990234375,-0.0441832914948463,8.64110370457638e-006,-0.246211424469948,0.969216227531433,4.00809227585341e-007,-0.246208056807518,0.96921706199646,7.89878029650026e-008,-0.974764585494995,0.2232356518507,1.13949067781505e-006,-0.974764585494995,0.223235636949539,8.54260179039557e-006,0.246211901307106,0.969216048717499,2.90865443730581e-007,0.24621507525444,0.969215214252472,-2.55676286542439e-006,-0.246208056807518,0.96921706199646,8.56021779327421e-006,-0.246211424469948,0.969216227531433,2.12509212360601e-006,0.974767863750458,0.223221033811569,5.85022945642777e-008,0.974768102169037,0.223219960927963,2.90865443730581e-007,0.24621507525444,0.969215214252472,8.54260179039557e-006,0.246211901307106,0.969216048717499,7.55219389247941e-007,0.999025344848633,-0.044142097234726,6.07630397553294e-007,0.999027848243713,-0.0440828502178192,5.85022945642777e-008,0.974768102169037,0.223219960927963,2.12509212360601e-006,0.974767863750458,0.223221033811569,7.55219389247941e-007,0.999025344848633,-0.044142097234726,2.35044535656925e-006,0.0390974208712578,-0.999235391616821,1.54714336986217e-006,0.0391511470079422,-0.999233365058899,6.07630397553294e-007,0.999027848243713,-0.0440828502178192,0,-0.0390960723161697,-0.999235510826111,1.46908985243499e-006,-0.039150420576334,-0.999233365058899,1.54714336986217e-006,0.0391511470079422,-0.999233365058899,2.35044535656925e-006,0.0390974208712578,-0.999235391616821,0,-0.0390960723161697,-0.999235510826111,2.95307046371818e-007,-0.9990234375,-0.0441832914948463,3.32813897330198e-007,-0.99902606010437,-0.0441243052482605,1.46908985243499e-006,-0.039150420576334,-0.999233365058899,-0.0181861165910959,-0.178541719913483,0.983764290809631,-0.0201480593532324,0.157225102186203,0.987357258796692,0.0423882491886616,-0.292445510625839,0.955342352390289,0.0351000688970089,0.0191023033112288,0.99920129776001,0.0318341925740242,-0.00902469735592604,0.999452412128448,0.827027261257172,0.559844672679901,0.0509888343513012,
- 0.992232978343964,0.117840923368931,0.0398431420326233,0.0319094881415367,0.280258595943451,0.959394097328186,0.00259627401828766,-0.0566797666251659,-0.998389005661011,0.0201770309358835,-0.223752230405808,-0.974437296390533,-0.0347799956798553,0.0245171282440424,-0.999094307422638,-0.0581653490662575,0.0331174358725548,0.99775755405426,-0.0294814594089985,-0.311295539140701,0.949855744838715,0.0319094881415367,0.280258595943451,0.959394097328186,-0.217735141515732,0.248499423265457,0.943843007087708,-0.0151353683322668,0.012561708688736,-0.999806582927704,-0.334168672561646,-0.599737584590912,-0.727080583572388,0.0843832865357399,-0.208511099219322,-0.974372982978821,0.906426250934601,-0.420653194189072,0.0379770360887051,0.962686896324158,0.267574846744537,0.0404698625206947,0.94598114490509,0.322398841381073,-0.0343327932059765,0.935822427272797,0.349383920431137,-0.0465544760227203,0.0280636064708233,-0.257923424243927,-0.965757727622986,0.0252487733960152,0.168178662657738,-0.985433220863342,-0.0103995278477669,-0.115363463759422,-0.993268966674805,-0.0203642919659615,0.0413182787597179,-0.99893856048584,-0.0151353683322668,0.012561708688736,-0.999806582927704,0.0157515853643417,-0.189057350158691,-0.981839716434479,-0.0103995278477669,-0.115363463759422,-0.993268966674805,0.0252487733960152,0.168178662657738,-0.985433220863342,0.961335778236389,0.269817531108856,-0.0550648719072342,0.908179879188538,-0.418132394552231,0.019359240308404,0.992474675178528,0.120035961270332,0.0241941567510366,0.702730238437653,-0.70980578660965,-0.0484362132847309,0.0322969332337379,-0.0342926718294621,-0.998889923095703,-0.0337672531604767,0.0224433001130819,-0.999177694320679,-0.203096091747284,0.363938271999359,-0.909011006355286,0.0381831787526608,0.133941560983658,-0.990253388881683,0.00259627401828766,-0.0566797666251659,-0.998389005661011,-0.0444384850561619,-0.411747574806213,-0.910213887691498,0.0404138453304768,0.169341921806335,-0.984728455543518,-0.960606098175049,-0.248915731906891,-0.123600013554096,-0.973443746566772,-0.227621346712112,-0.0244088545441628,
- -0.965141296386719,-0.253607571125031,-0.0646961703896523,-0.806954145431519,0.590295314788818,-0.0194067973643541,-0.0166422128677368,-0.209314167499542,-0.977706909179688,-0.0121372221037745,-0.185162991285324,-0.98263293504715,0.0280636064708233,-0.257923424243927,-0.965757727622986,0.992334961891174,0.0977691113948822,-0.0755816772580147,0.984073162078857,0.158442690968513,-0.0805983170866966,0.0252487733960152,0.168178662657738,-0.985433220863342,-0.203096091747284,0.363938271999359,-0.909011006355286,-0.798968493938446,-0.595273911952972,-0.0854311659932137,-0.967096269130707,0.252993553876877,-0.0268190205097198,-0.979940474033356,-0.198373898863792,-0.0190888345241547,-0.992260992527008,0.104987882077694,0.0663005113601685,-0.999211728572845,0.0371510349214077,0.0139924800023437,0.0404138453304768,0.169341921806335,-0.984728455543518,0.94598114490509,0.322398841381073,-0.0343327932059765,0.887602746486664,0.439666837453842,-0.137311518192291,-0.935492873191834,-0.348217934370041,-0.059978011995554,-0.997923910617828,0.0582628659904003,0.0274504348635674,-0.973443746566772,-0.227621346712112,-0.0244088545441628,-0.960606098175049,-0.248915731906891,-0.123600013554096,-0.924598515033722,0.379312217235565,-0.0352142639458179,-0.979940474033356,-0.198373898863792,-0.0190888345241547,-0.959870159626007,-0.2782341837883,0.035144779831171,-0.847748517990112,-0.530350208282471,0.0071613285690546,-0.0201480593532324,0.157225102186203,0.987357258796692,-0.0181861165910959,-0.178541719913483,0.983764290809631,-0.800926089286804,0.597378075122833,0.0407074391841888,-0.965141296386719,-0.253607571125031,-0.0646961703896523,-0.973443746566772,-0.227621346712112,-0.0244088545441628,-0.847748517990112,-0.530350208282471,0.0071613285690546,0.702730238437653,-0.70980578660965,-0.0484362132847309,0.992474675178528,0.120035961270332,0.0241941567510366,0.958588659763336,-0.269069015979767,-0.0933258384466171,0.935822427272797,0.349383920431137,-0.0465544760227203,0.0381831787526608,0.133941560983658,-0.990253388881683,0.958588659763336,-0.269069015979767,-0.0933258384466171,
- -0.203096091747284,0.363938271999359,-0.909011006355286,0.0378363206982613,0.0240900591015816,-0.998993635177612,0.0381831787526608,0.133941560983658,-0.990253388881683,0.958588659763336,-0.269069015979767,-0.0933258384466171,0.0381831787526608,0.133941560983658,-0.990253388881683,0.702730238437653,-0.70980578660965,-0.0484362132847309,0.0423882491886616,-0.292445510625839,0.955342352390289,0.962686896324158,0.267574846744537,0.0404698625206947,0.906426250934601,-0.420653194189072,0.0379770360887051,0.0351000688970089,0.0191023033112288,0.99920129776001,0.0423882491886616,-0.292445510625839,0.955342352390289,-0.0219025555998087,0.0194399952888489,0.999571084976196,-0.013324536383152,0.222048610448837,0.974944591522217,0.0193067379295826,0.086660735309124,0.996050775051117,-0.0413464494049549,-0.00560280634090304,0.999129176139832,-0.0373717099428177,0.129376128315926,0.99089115858078,0.0138347800821066,-0.25176465511322,0.967689573764801,0.998667895793915,-0.0343489237129688,0.0385058708488941,0.982492029666901,0.182390108704567,-0.0379920937120914,0.915233671665192,0.389760762453079,0.102147497236729,0.992232978343964,0.117840923368931,0.0398431420326233,0.89490270614624,0.441629141569138,-0.0641320571303368,0.0319094881415367,0.280258595943451,0.959394097328186,-0.0708006471395493,-0.27425754070282,0.959046483039856,0.906426250934601,-0.420653194189072,0.0379770360887051,0.959360539913177,-0.278068959712982,0.0480117611587048,0.0201770309358835,-0.223752230405808,-0.974437296390533,0.00259627401828766,-0.0566797666251659,-0.998389005661011,-0.107682518661022,0.133599206805229,-0.985167920589447,0.887602746486664,0.439666837453842,-0.137311518192291,0.915233671665192,0.389760762453079,0.102147497236729,0.982492029666901,0.182390108704567,-0.0379920937120914,-0.0708006471395493,-0.27425754070282,0.959046483039856,0.992474675178528,0.120035961270332,0.0241941567510366,0.0138347800821066,-0.25176465511322,0.967689573764801,0.998667895793915,-0.0343489237129688,0.0385058708488941,0.0294549912214279,0.252877444028854,0.967049837112427,
- 0.0331285186111927,-0.371269196271896,0.927934169769287,0.989350557327271,-0.142850711941719,0.0279146954417229,0.998667895793915,-0.0343489237129688,0.0385058708488941,0.915233671665192,0.389760762453079,0.102147497236729,0.0294549912214279,0.252877444028854,0.967049837112427,0.915233671665192,0.389760762453079,0.102147497236729,0.0423882491886616,-0.292445510625839,0.955342352390289,-0.013324536383152,0.222048610448837,0.974944591522217,0.986078917980194,0.113061837852001,-0.12192364782095,0.992334961891174,0.0977691113948822,-0.0755816772580147,0.0280636064708233,-0.257923424243927,-0.965757727622986,-0.107682518661022,0.133599206805229,-0.985167920589447,0.00259627401828766,-0.0566797666251659,-0.998389005661011,0.0404138453304768,0.169341921806335,-0.984728455543518,-0.967096269130707,0.252993553876877,-0.0268190205097198,-0.798968493938446,-0.595273911952972,-0.0854311659932137,-0.998255848884583,0.054591603577137,0.0224765110760927,-0.801689982414246,-0.596769630908966,-0.0340498238801956,-0.0201480593532324,0.157225102186203,0.987357258796692,-0.847748517990112,-0.530350208282471,0.0071613285690546,-0.801689982414246,-0.596769630908966,-0.0340498238801956,-0.894973456859589,0.445221871137619,0.0282880868762732,-0.0245124623179436,0.145397797226906,0.989069640636444,-0.0219025555998087,0.0194399952888489,0.999571084976196,-0.821250021457672,0.538087248802185,-0.189764603972435,-0.86461877822876,0.499105095863342,0.0576938763260841,-0.0413464494049549,-0.00560280634090304,0.999129176139832,-0.999211728572845,0.0371510349214077,0.0139924800023437,-0.959870159626007,-0.2782341837883,0.035144779831171,-0.979940474033356,-0.198373898863792,-0.0190888345241547,-0.0294814594089985,-0.311295539140701,0.949855744838715,-0.984370529651642,0.171115905046463,0.0416440218687058,-0.689260721206665,-0.723975896835327,0.0279046222567558,-0.0296191964298487,0.00584296556189656,0.999544262886047,-0.0219025555998087,0.0194399952888489,0.999571084976196,-0.0201480593532324,0.157225102186203,0.987357258796692,-0.801689982414246,-0.596769630908966,-0.0340498238801956,
- 0.0423882491886616,-0.292445510625839,0.955342352390289,-0.0201480593532324,0.157225102186203,0.987357258796692,-0.0219025555998087,0.0194399952888489,0.999571084976196,-0.806954145431519,0.590295314788818,-0.0194067973643541,-0.0121372221037745,-0.185162991285324,-0.98263293504715,-0.203096091747284,0.363938271999359,-0.909011006355286,0.988392949104309,-0.148836150765419,-0.0304533876478672,0.961335778236389,0.269817531108856,-0.0550648719072342,0.0422746576368809,-0.104155696928501,-0.993662238121033,0.0404138453304768,0.169341921806335,-0.984728455543518,0.887602746486664,0.439666837453842,-0.137311518192291,-0.107682518661022,0.133599206805229,-0.985167920589447,0.887602746486664,0.439666837453842,-0.137311518192291,0.0201770309358835,-0.223752230405808,-0.974437296390533,-0.107682518661022,0.133599206805229,-0.985167920589447,-0.203096091747284,0.363938271999359,-0.909011006355286,-0.967096269130707,0.252993553876877,-0.0268190205097198,-0.806954145431519,0.590295314788818,-0.0194067973643541,-0.924598515033722,0.379312217235565,-0.0352142639458179,-0.959870159626007,-0.2782341837883,0.035144779831171,-0.99821811914444,-0.0498604327440262,0.0327800586819649,-0.907056629657745,-0.414564400911331,-0.0733813121914864,-0.998021304607391,-0.0277882181107998,-0.0564027763903141,0.982492029666901,0.182390108704567,-0.0379920937120914,0.0201770309358835,-0.223752230405808,-0.974437296390533,0.887602746486664,0.439666837453842,-0.137311518192291,0.0280636064708233,-0.257923424243927,-0.965757727622986,0.0843832865357399,-0.208511099219322,-0.974372982978821,0.986078917980194,0.113061837852001,-0.12192364782095,-0.0151353683322668,0.012561708688736,-0.999806582927704,0.0843832865357399,-0.208511099219322,-0.974372982978821,0.0280636064708233,-0.257923424243927,-0.965757727622986,-0.86461877822876,0.499105095863342,0.0576938763260841,-0.996381998062134,-0.0484433174133301,0.0698292180895805,-0.0373717099428177,0.129376128315926,0.99089115858078,-0.0413464494049549,-0.00560280634090304,0.999129176139832,0.0252487733960152,0.168178662657738,-0.985433220863342,
- 0.984073162078857,0.158442690968513,-0.0805983170866966,0.988392949104309,-0.148836150765419,-0.0304533876478672,0.0422746576368809,-0.104155696928501,-0.993662238121033,0.0422746576368809,-0.104155696928501,-0.993662238121033,0.0157515853643417,-0.189057350158691,-0.981839716434479,0.0252487733960152,0.168178662657738,-0.985433220863342,0.0322969332337379,-0.0342926718294621,-0.998889923095703,0.0381831787526608,0.133941560983658,-0.990253388881683,0.935822427272797,0.349383920431137,-0.0465544760227203,0.00259627401828766,-0.0566797666251659,-0.998389005661011,-0.960606098175049,-0.248915731906891,-0.123600013554096,-0.0444384850561619,-0.411747574806213,-0.910213887691498,0.962686896324158,0.267574846744537,0.0404698625206947,0.0423882491886616,-0.292445510625839,0.955342352390289,0.915233671665192,0.389760762453079,0.102147497236729,-0.0337672531604767,0.0224433001130819,-0.999177694320679,-0.0444384850561619,-0.411747574806213,-0.910213887691498,-0.965141296386719,-0.253607571125031,-0.0646961703896523,-0.798968493938446,-0.595273911952972,-0.0854311659932137,-0.0444384850561619,-0.411747574806213,-0.910213887691498,-0.960606098175049,-0.248915731906891,-0.123600013554096,-0.965141296386719,-0.253607571125031,-0.0646961703896523,0.94598114490509,0.322398841381073,-0.0343327932059765,0.915233671665192,0.389760762453079,0.102147497236729,0.887602746486664,0.439666837453842,-0.137311518192291,0.962686896324158,0.267574846744537,0.0404698625206947,0.915233671665192,0.389760762453079,0.102147497236729,0.94598114490509,0.322398841381073,-0.0343327932059765,0.961335778236389,0.269817531108856,-0.0550648719072342,0.0369085147976875,-0.0709105059504509,-0.99679958820343,0.0422746576368809,-0.104155696928501,-0.993662238121033,0.0405500717461109,0.280204564332962,0.959083557128906,0.166803747415543,0.359921276569366,0.917950570583344,-0.0296191964298487,0.00584296556189656,0.999544262886047,0.906426250934601,-0.420653194189072,0.0379770360887051,-0.0708006471395493,-0.27425754070282,0.959046483039856,0.0351000688970089,0.0191023033112288,0.99920129776001,
- 0.0351000688970089,0.0191023033112288,0.99920129776001,-0.0708006471395493,-0.27425754070282,0.959046483039856,-0.0181861165910959,-0.178541719913483,0.983764290809631,-0.0064581511542201,0.228583216667175,-0.973503053188324,-0.979940474033356,-0.198373898863792,-0.0190888345241547,0.0157515853643417,-0.189057350158691,-0.981839716434479,-0.806954145431519,0.590295314788818,-0.0194067973643541,-0.967096269130707,0.252993553876877,-0.0268190205097198,-0.948009252548218,0.312545597553253,0.0599475875496864,-0.800926089286804,0.597378075122833,0.0407074391841888,-0.0181861165910959,-0.178541719913483,0.983764290809631,-0.081536166369915,-0.0512107983231544,0.995353937149048,-0.985477805137634,-0.168110519647598,0.023924857378006,0.992474675178528,0.120035961270332,0.0241941567510366,-0.0708006471395493,-0.27425754070282,0.959046483039856,0.959360539913177,-0.278068959712982,0.0480117611587048,-0.0708006471395493,-0.27425754070282,0.959046483039856,-0.081536166369915,-0.0512107983231544,0.995353937149048,-0.0181861165910959,-0.178541719913483,0.983764290809631,0.908179879188538,-0.418132394552231,0.019359240308404,0.166803747415543,0.359921276569366,0.917950570583344,0.0193067379295826,0.086660735309124,0.996050775051117,0.958588659763336,-0.269069015979767,-0.0933258384466171,0.906426250934601,-0.420653194189072,0.0379770360887051,0.935822427272797,0.349383920431137,-0.0465544760227203,0.702730238437653,-0.70980578660965,-0.0484362132847309,0.0381831787526608,0.133941560983658,-0.990253388881683,0.0378363206982613,0.0240900591015816,-0.998993635177612,0.0378363206982613,0.0240900591015816,-0.998993635177612,0.0369085147976875,-0.0709105059504509,-0.99679958820343,0.961335778236389,0.269817531108856,-0.0550648719072342,0.702730238437653,-0.70980578660965,-0.0484362132847309,0.908179879188538,-0.418132394552231,0.019359240308404,0.99856048822403,0.0534179098904133,-0.00484635634347796,0.166803747415543,0.359921276569366,0.917950570583344,0.984073162078857,0.158442690968513,-0.0805983170866966,0.992334961891174,0.0977691113948822,-0.0755816772580147,
- 0.992232978343964,0.117840923368931,0.0398431420326233,0.827027261257172,0.559844672679901,0.0509888343513012,0.986078917980194,0.113061837852001,-0.12192364782095,0.89490270614624,0.441629141569138,-0.0641320571303368,0.992232978343964,0.117840923368931,0.0398431420326233,0.992334961891174,0.0977691113948822,-0.0755816772580147,-0.984350085258484,-0.173031106591225,0.0333960317075253,-0.991652190685272,-0.0315070077776909,-0.125033602118492,-0.907056629657745,-0.414564400911331,-0.0733813121914864,-0.99821811914444,-0.0498604327440262,0.0327800586819649,-0.334168672561646,-0.599737584590912,-0.727080583572388,-0.0151353683322668,0.012561708688736,-0.999806582927704,-0.907056629657745,-0.414564400911331,-0.0733813121914864,-0.991652190685272,-0.0315070077776909,-0.125033602118492,0.0157515853643417,-0.189057350158691,-0.981839716434479,-0.924598515033722,0.379312217235565,-0.0352142639458179,-0.0103995278477669,-0.115363463759422,-0.993268966674805,-0.974069178104401,-0.222420334815979,-0.0414556786417961,-0.992260992527008,0.104987882077694,0.0663005113601685,-0.979940474033356,-0.198373898863792,-0.0190888345241547,-0.967096269130707,0.252993553876877,-0.0268190205097198,-0.925745844841003,0.248979181051254,0.284611999988556,-0.948009252548218,0.312545597553253,0.0599475875496864,0.0405500717461109,0.280204564332962,0.959083557128906,-0.0296191964298487,0.00584296556189656,0.999544262886047,-0.689260721206665,-0.723975896835327,0.0279046222567558,0.0405500717461109,0.280204564332962,0.959083557128906,-0.689260721206665,-0.723975896835327,0.0279046222567558,-0.821250021457672,0.538087248802185,-0.189764603972435,-0.821250021457672,0.538087248802185,-0.189764603972435,-0.0413464494049549,-0.00560280634090304,0.999129176139832,0.0405500717461109,0.280204564332962,0.959083557128906,-0.979940474033356,-0.198373898863792,-0.0190888345241547,-0.924598515033722,0.379312217235565,-0.0352142639458179,0.0157515853643417,-0.189057350158691,-0.981839716434479,-0.0064581511542201,0.228583216667175,-0.973503053188324,-0.974069178104401,-0.222420334815979,-0.0414556786417961,
- -0.979940474033356,-0.198373898863792,-0.0190888345241547,-0.0121372221037745,-0.185162991285324,-0.98263293504715,-0.0166422128677368,-0.209314167499542,-0.977706909179688,-0.0064581511542201,0.228583216667175,-0.973503053188324,0.0369085147976875,-0.0709105059504509,-0.99679958820343,0.0378363206982613,0.0240900591015816,-0.998993635177612,0.0294549912214279,0.252877444028854,0.967049837112427,-0.013324536383152,0.222048610448837,0.974944591522217,0.112266071140766,0.173495054244995,0.978415012359619,0.99856048822403,0.0534179098904133,-0.00484635634347796,0.988392949104309,-0.148836150765419,-0.0304533876478672,0.984073162078857,0.158442690968513,-0.0805983170866966,0.908179879188538,-0.418132394552231,0.019359240308404,0.988392949104309,-0.148836150765419,-0.0304533876478672,0.99856048822403,0.0534179098904133,-0.00484635634347796,0.908179879188538,-0.418132394552231,0.019359240308404,0.961335778236389,0.269817531108856,-0.0550648719072342,0.988392949104309,-0.148836150765419,-0.0304533876478672,-0.0294814594089985,-0.311295539140701,0.949855744838715,-0.0296191964298487,0.00584296556189656,0.999544262886047,0.0318341925740242,-0.00902469735592604,0.999452412128448,0.0319094881415367,0.280258595943451,0.959394097328186,0.0193067379295826,0.086660735309124,0.996050775051117,0.0138347800821066,-0.25176465511322,0.967689573764801,0.992474675178528,0.120035961270332,0.0241941567510366,0.908179879188538,-0.418132394552231,0.019359240308404,-0.847748517990112,-0.530350208282471,0.0071613285690546,-0.998255848884583,0.054591603577137,0.0224765110760927,-0.798968493938446,-0.595273911952972,-0.0854311659932137,-0.965141296386719,-0.253607571125031,-0.0646961703896523,0.94598114490509,0.322398841381073,-0.0343327932059765,0.0404138453304768,0.169341921806335,-0.984728455543518,0.0322969332337379,-0.0342926718294621,-0.998889923095703,0.935822427272797,0.349383920431137,-0.0465544760227203,0.982492029666901,0.182390108704567,-0.0379920937120914,0.998667895793915,-0.0343489237129688,0.0385058708488941,0.989350557327271,-0.142850711941719,0.0279146954417229,
- 0.836811184883118,-0.545936465263367,-0.0412371754646301,-0.944629073143005,0.319946467876434,-0.0728712379932404,-0.999710738658905,-0.00220871064811945,-0.0239527802914381,-0.9730304479599,-0.228738307952881,0.0298423580825329,-0.997923910617828,0.0582628659904003,0.0274504348635674,-0.935492873191834,-0.348217934370041,-0.059978011995554,0.982492029666901,0.182390108704567,-0.0379920937120914,0.836811184883118,-0.545936465263367,-0.0412371754646301,0.0213014408946037,0.0900037214159966,-0.995713710784912,0.0201770309358835,-0.223752230405808,-0.974437296390533,-0.0347799956798553,0.0245171282440424,-0.999094307422638,-0.935492873191834,-0.348217934370041,-0.059978011995554,-0.960606098175049,-0.248915731906891,-0.123600013554096,0.00259627401828766,-0.0566797666251659,-0.998389005661011,0.0294549912214279,0.252877444028854,0.967049837112427,-0.0245124623179436,0.145397797226906,0.989069640636444,-0.0331045873463154,0.0840285941958427,0.995913326740265,0.0331285186111927,-0.371269196271896,0.927934169769287,-0.0294814594089985,-0.311295539140701,0.949855744838715,-0.941957890987396,0.32942208647728,-0.0647796615958214,-0.984370529651642,0.171115905046463,0.0416440218687058,-0.0337672531604767,0.0224433001130819,-0.999177694320679,-0.798968493938446,-0.595273911952972,-0.0854311659932137,-0.203096091747284,0.363938271999359,-0.909011006355286,0.0369085147976875,-0.0709105059504509,-0.99679958820343,0.0157515853643417,-0.189057350158691,-0.981839716434479,0.0422746576368809,-0.104155696928501,-0.993662238121033,0.0405500717461109,0.280204564332962,0.959083557128906,-0.0413464494049549,-0.00560280634090304,0.999129176139832,0.0193067379295826,0.086660735309124,0.996050775051117,0.166803747415543,0.359921276569366,0.917950570583344,0.0213014408946037,0.0900037214159966,-0.995713710784912,-0.0477567352354527,-0.0980583801865578,-0.994034171104431,-0.0347799956798553,0.0245171282440424,-0.999094307422638,0.0201770309358835,-0.223752230405808,-0.974437296390533,-0.354775756597519,-0.0350958108901978,-0.934292495250702,
- -0.92687314748764,-0.0513603687286377,-0.371844619512558,-0.944629073143005,0.319946467876434,-0.0728712379932404,-0.0477567352354527,-0.0980583801865578,-0.994034171104431,0.836811184883118,-0.545936465263367,-0.0412371754646301,0.890268981456757,-0.232902675867081,-0.391378879547119,0.173265278339386,0.0870491936802864,-0.981020748615265,-0.0331045873463154,0.0840285941958427,0.995913326740265,-0.850715219974518,-0.524273812770844,0.0376917794346809,-0.898607015609741,-0.188779026269913,0.396065562963486,-0.181731328368187,0.13055457174778,0.974643230438232,-0.92687314748764,-0.0513603687286377,-0.371844619512558,-0.999710738658905,-0.00220871064811945,-0.0239527802914381,-0.944629073143005,0.319946467876434,-0.0728712379932404,0.917362451553345,0.195041567087173,0.346994191408157,0.0331285186111927,-0.371269196271896,0.927934169769287,0.364506185054779,-0.110113814473152,0.924667596817017,0.0213014408946037,0.0900037214159966,-0.995713710784912,0.836811184883118,-0.545936465263367,-0.0412371754646301,0.173265278339386,0.0870491936802864,-0.981020748615265,-0.354775756597519,-0.0350958108901978,-0.934292495250702,-0.0731918886303902,-0.0606970265507698,-0.995469212532043,0.0213014408946037,0.0900037214159966,-0.995713710784912,0.173265278339386,0.0870491936802864,-0.981020748615265,-0.0347799956798553,0.0245171282440424,-0.999094307422638,-0.0477567352354527,-0.0980583801865578,-0.994034171104431,-0.944629073143005,0.319946467876434,-0.0728712379932404,-0.935492873191834,-0.348217934370041,-0.059978011995554,-0.0477567352354527,-0.0980583801865578,-0.994034171104431,-0.0731918886303902,-0.0606970265507698,-0.995469212532043,-0.354775756597519,-0.0350958108901978,-0.934292495250702,-0.9730304479599,-0.228738307952881,0.0298423580825329,-0.999710738658905,-0.00220871064811945,-0.0239527802914381,-0.92687314748764,-0.0513603687286377,-0.371844619512558,-0.98842990398407,-0.0676233991980553,0.135769933462143,-0.0477567352354527,-0.0980583801865578,-0.994034171104431,0.0213014408946037,0.0900037214159966,-0.995713710784912,
- -0.0731918886303902,-0.0606970265507698,-0.995469212532043,0.0331285186111927,-0.371269196271896,0.927934169769287,-0.181731328368187,0.13055457174778,0.974643230438232,0.364506185054779,-0.110113814473152,0.924667596817017,0.0331285186111927,-0.371269196271896,0.927934169769287,-0.0331045873463154,0.0840285941958427,0.995913326740265,-0.181731328368187,0.13055457174778,0.974643230438232,0.989350557327271,-0.142850711941719,0.0279146954417229,0.0331285186111927,-0.371269196271896,0.927934169769287,0.917362451553345,0.195041567087173,0.346994191408157,-0.260937482118607,0.0038822207134217,-0.96534788608551,0.0274032074958086,-0.243787854909897,-0.969441473484039,-0.0394216068089008,-0.00210875156335533,-0.999220550060272,-0.032235749065876,-0.0596757829189301,0.997697174549103,-0.925378501415253,0.376262664794922,0.0458386018872261,-0.793192803859711,-0.608163416385651,0.0313428714871407,-0.0403662733733654,0.228167027235031,0.97278493642807,0.997318208217621,-0.0614046230912209,0.0398236662149429,0.993818938732147,-0.0234944336116314,-0.108498446643353,0.845833420753479,-0.0074468539096415,0.533395111560822,0.0274032074958086,-0.243787854909897,-0.969441473484039,-0.260937482118607,0.0038822207134217,-0.96534788608551,0.423301815986633,-0.0140902698040009,-0.905879139900208,0.763582110404968,0.0179013535380363,-0.645462691783905,0.845833420753479,-0.0074468539096415,0.533395111560822,0.993818938732147,-0.0234944336116314,-0.108498446643353,0.997318208217621,-0.0614046230912209,0.0398236662149429,0.0239977054297924,0.0864723473787308,0.995965182781219,0.0447083413600922,-0.18986688554287,0.980791449546814,0.883975327014923,0.466373294591904,0.0329167954623699,0.997318208217621,-0.0614046230912209,0.0398236662149429,0.845833420753479,-0.0074468539096415,0.533395111560822,0.0239977054297924,0.0864723473787308,0.995965182781219,0.763582110404968,0.0179013535380363,-0.645462691783905,0.0274032074958086,-0.243787854909897,-0.969441473484039,0.423301815986633,-0.0140902698040009,-0.905879139900208,0.993818938732147,-0.0234944336116314,-0.108498446643353,
- 0.0274032074958086,-0.243787854909897,-0.969441473484039,0.763582110404968,0.0179013535380363,-0.645462691783905,0.845833420753479,-0.0074468539096415,0.533395111560822,-0.0540668442845345,0.0145431431010365,0.998431503772736,0.0239977054297924,0.0864723473787308,0.995965182781219,-0.032235749065876,-0.0596757829189301,0.997697174549103,-0.0403662733733654,0.228167027235031,0.97278493642807,0.0447083413600922,-0.18986688554287,0.980791449546814,0.0239977054297924,0.0864723473787308,0.995965182781219,0.993818938732147,-0.0234944336116314,-0.108498446643353,0.997318208217621,-0.0614046230912209,0.0398236662149429,0.883975327014923,0.466373294591904,0.0329167954623699,0.980518460273743,0.181218475103378,-0.0757861360907555,-0.996614515781403,0.0431619100272655,-0.0699767544865608,-0.963936328887939,-0.264814913272858,0.0264545306563377,-0.958799660205841,-0.284048229455948,-0.00446475110948086,-0.975643634796143,-0.211623415350914,-0.0577505268156528,0.993818938732147,-0.0234944336116314,-0.108498446643353,0.980518460273743,0.181218475103378,-0.0757861360907555,0.0360755249857903,0.149595037102699,-0.988089025020599,0.0274032074958086,-0.243787854909897,-0.969441473484039,0.0239977054297924,0.0864723473787308,0.995965182781219,-0.0540668442845345,0.0145431431010365,0.998431503772736,-0.032235749065876,-0.0596757829189301,0.997697174549103,0.0360755249857903,0.149595037102699,-0.988089025020599,-0.0438458397984505,-0.363675147294998,-0.930493474006653,-0.0394216068089008,-0.00210875156335533,-0.999220550060272,0.0274032074958086,-0.243787854909897,-0.969441473484039,-0.334168672561646,-0.599737584590912,-0.727080583572388,-0.991652190685272,-0.0315070077776909,-0.125033602118492,-0.0438458397984505,-0.363675147294998,-0.930493474006653,0.980518460273743,0.181218475103378,-0.0757861360907555,0.883975327014923,0.466373294591904,0.0329167954623699,0.89490270614624,0.441629141569138,-0.0641320571303368,0.986078917980194,0.113061837852001,-0.12192364782095,-0.0403662733733654,0.228167027235031,0.97278493642807,-0.793192803859711,-0.608163416385651,0.0313428714871407,
- -0.941957890987396,0.32942208647728,-0.0647796615958214,-0.0581653490662575,0.0331174358725548,0.99775755405426,0.0360755249857903,0.149595037102699,-0.988089025020599,0.980518460273743,0.181218475103378,-0.0757861360907555,0.986078917980194,0.113061837852001,-0.12192364782095,0.0843832865357399,-0.208511099219322,-0.974372982978821,0.0360755249857903,0.149595037102699,-0.988089025020599,0.986078917980194,0.113061837852001,-0.12192364782095,-0.0394216068089008,-0.00210875156335533,-0.999220550060272,-0.0438458397984505,-0.363675147294998,-0.930493474006653,-0.996614515781403,0.0431619100272655,-0.0699767544865608,-0.975643634796143,-0.211623415350914,-0.0577505268156528,-0.0438458397984505,-0.363675147294998,-0.930493474006653,0.0843832865357399,-0.208511099219322,-0.974372982978821,-0.334168672561646,-0.599737584590912,-0.727080583572388,-0.963936328887939,-0.264814913272858,0.0264545306563377,-0.996614515781403,0.0431619100272655,-0.0699767544865608,-0.991652190685272,-0.0315070077776909,-0.125033602118492,-0.984350085258484,-0.173031106591225,0.0333960317075253,-0.0438458397984505,-0.363675147294998,-0.930493474006653,0.0360755249857903,0.149595037102699,-0.988089025020599,0.0843832865357399,-0.208511099219322,-0.974372982978821,-0.0581653490662575,0.0331174358725548,0.99775755405426,-0.217735141515732,0.248499423265457,0.943843007087708,0.0447083413600922,-0.18986688554287,0.980791449546814,-0.0403662733733654,0.228167027235031,0.97278493642807,0.883975327014923,0.466373294591904,0.0329167954623699,0.0447083413600922,-0.18986688554287,0.980791449546814,0.89490270614624,0.441629141569138,-0.0641320571303368,0.0345365814864635,-0.0189056824892759,0.999224662780762,0.032827477902174,-0.0371869094669819,0.998768985271454,0.0341908931732178,0.000514805724378675,0.999415278434753,0.0370589680969715,0.00265451590530574,0.999309599399567,0.0372232012450695,0.0215212684124708,0.999075293540955,0.0328425541520119,0.0164466984570026,0.999325215816498,-0.0394216068089008,-0.00210875156335533,-0.999220550060272,-0.975643634796143,-0.211623415350914,-0.0577505268156528,
- -0.936675429344177,-0.00241870223544538,-0.35019063949585,-0.260937482118607,0.0038822207134217,-0.96534788608551,-0.0540668442845345,0.0145431431010365,0.998431503772736,-0.925378501415253,0.376262664794922,0.0458386018872261,-0.032235749065876,-0.0596757829189301,0.997697174549103,-0.931775391101837,-0.0259583629667759,-0.362106263637543,-0.936675429344177,-0.00241870223544538,-0.35019063949585,-0.975643634796143,-0.211623415350914,-0.0577505268156528,-0.958799660205841,-0.284048229455948,-0.00446475110948086,-0.0294814594089985,-0.311295539140701,0.949855744838715,-0.0581653490662575,0.0331174358725548,0.99775755405426,-0.941957890987396,0.32942208647728,-0.0647796615958214,0.0138347800821066,-0.25176465511322,0.967689573764801,-0.0373717099428177,0.129376128315926,0.99089115858078,-0.0708006471395493,-0.27425754070282,0.959046483039856,0.166803747415543,0.359921276569366,0.917950570583344,0.0318341925740242,-0.00902469735592604,0.999452412128448,-0.0296191964298487,0.00584296556189656,0.999544262886047,0.99856048822403,0.0534179098904133,-0.00484635634347796,0.827027261257172,0.559844672679901,0.0509888343513012,0.0318341925740242,-0.00902469735592604,0.999452412128448,0.166803747415543,0.359921276569366,0.917950570583344,0.984073162078857,0.158442690968513,-0.0805983170866966,0.827027261257172,0.559844672679901,0.0509888343513012,0.99856048822403,0.0534179098904133,-0.00484635634347796,-0.0064581511542201,0.228583216667175,-0.973503053188324,0.0157515853643417,-0.189057350158691,-0.981839716434479,0.0369085147976875,-0.0709105059504509,-0.99679958820343,-0.992260992527008,0.104987882077694,0.0663005113601685,-0.974069178104401,-0.222420334815979,-0.0414556786417961,-0.998976171016693,0.0251396037638187,-0.0376128330826759,-0.806954145431519,0.590295314788818,-0.0194067973643541,-0.948009252548218,0.312545597553253,0.0599475875496864,-0.203096091747284,0.363938271999359,-0.909011006355286,-0.0121372221037745,-0.185162991285324,-0.98263293504715,0.0378363206982613,0.0240900591015816,-0.998993635177612,-0.0438458397984505,-0.363675147294998,-0.930493474006653,
- -0.991652190685272,-0.0315070077776909,-0.125033602118492,-0.996614515781403,0.0431619100272655,-0.0699767544865608,-0.0219025555998087,0.0194399952888489,0.999571084976196,-0.0245124623179436,0.145397797226906,0.989069640636444,0.112266071140766,0.173495054244995,0.978415012359619,-0.013324536383152,0.222048610448837,0.974944591522217,-0.0245124623179436,0.145397797226906,0.989069640636444,-0.894973456859589,0.445221871137619,0.0282880868762732,-0.850715219974518,-0.524273812770844,0.0376917794346809,-0.0331045873463154,0.0840285941958427,0.995913326740265,-0.0373717099428177,0.129376128315926,0.99089115858078,-0.081536166369915,-0.0512107983231544,0.995353937149048,-0.0708006471395493,-0.27425754070282,0.959046483039856,-0.985477805137634,-0.168110519647598,0.023924857378006,-0.081536166369915,-0.0512107983231544,0.995353937149048,-0.0373717099428177,0.129376128315926,0.99089115858078,-0.996381998062134,-0.0484433174133301,0.0698292180895805,-0.985477805137634,-0.168110519647598,0.023924857378006,-0.0373717099428177,0.129376128315926,0.99089115858078,0.0404138453304768,0.169341921806335,-0.984728455543518,-0.0444384850561619,-0.411747574806213,-0.910213887691498,-0.0337672531604767,0.0224433001130819,-0.999177694320679,0.0322969332337379,-0.0342926718294621,-0.998889923095703,0.992474675178528,0.120035961270332,0.0241941567510366,0.959360539913177,-0.278068959712982,0.0480117611587048,0.958588659763336,-0.269069015979767,-0.0933258384466171,0.959360539913177,-0.278068959712982,0.0480117611587048,0.906426250934601,-0.420653194189072,0.0379770360887051,0.958588659763336,-0.269069015979767,-0.0933258384466171,-0.998255848884583,0.054591603577137,0.0224765110760927,-0.925745844841003,0.248979181051254,0.284611999988556,-0.967096269130707,0.252993553876877,-0.0268190205097198,-0.998976171016693,0.0251396037638187,-0.0376128330826759,-0.974069178104401,-0.222420334815979,-0.0414556786417961,-0.0064581511542201,0.228583216667175,-0.973503053188324,-0.0166422128677368,-0.209314167499542,-0.977706909179688,-0.806954145431519,0.590295314788818,-0.0194067973643541,
- -0.998976171016693,0.0251396037638187,-0.0376128330826759,-0.0166422128677368,-0.209314167499542,-0.977706909179688,-0.924598515033722,0.379312217235565,-0.0352142639458179,-0.998021304607391,-0.0277882181107998,-0.0564027763903141,-0.0203642919659615,0.0413182787597179,-0.99893856048584,-0.0103995278477669,-0.115363463759422,-0.993268966674805,-0.0203642919659615,0.0413182787597179,-0.99893856048584,-0.998021304607391,-0.0277882181107998,-0.0564027763903141,-0.907056629657745,-0.414564400911331,-0.0733813121914864,-0.0151353683322668,0.012561708688736,-0.999806582927704,0.836811184883118,-0.545936465263367,-0.0412371754646301,0.989350557327271,-0.142850711941719,0.0279146954417229,0.917362451553345,0.195041567087173,0.346994191408157,0.890268981456757,-0.232902675867081,-0.391378879547119,-0.217735141515732,0.248499423265457,0.943843007087708,0.0319094881415367,0.280258595943451,0.959394097328186,0.89490270614624,0.441629141569138,-0.0641320571303368,0.0447083413600922,-0.18986688554287,0.980791449546814,-0.217735141515732,0.248499423265457,0.943843007087708,0.89490270614624,0.441629141569138,-0.0641320571303368,0.0294549912214279,0.252877444028854,0.967049837112427,0.112266071140766,0.173495054244995,0.978415012359619,-0.0245124623179436,0.145397797226906,0.989069640636444,0.0294549912214279,0.252877444028854,0.967049837112427,0.915233671665192,0.389760762453079,0.102147497236729,-0.013324536383152,0.222048610448837,0.974944591522217,-0.103438399732113,-0.264852583408356,0.958725035190582,0.0405333526432514,0.171620279550552,0.984328985214233,-0.0684488788247108,-0.315492361783981,0.94645631313324,0.0405397489666939,0.0257128365337849,0.99884706735611,-0.151269316673279,-0.130746558308601,0.979807615280151,0.614350378513336,-0.786542296409607,0.0626495555043221,0.246591031551361,-0.96711391210556,0.0623176880180836,0.131796643137932,0.0362833701074123,0.990612626075745,0.879748702049255,-0.0142018422484398,0.475226849317551,0.0416383966803551,-0.0895203500986099,0.995114266872406,-0.00471649458631873,0.0011177024571225,0.999988257884979,
- 0.128818064928055,-0.0241342075169086,0.991374611854553,-0.0508347675204277,-0.0157380811870098,-0.998583078384399,0.00375221716240048,-0.263229876756668,-0.964725852012634,-0.0276859626173973,0.31642284989357,-0.9482142329216,0.049199104309082,0.00942447129637003,0.998744606971741,-0.157002925872803,-0.0510269924998283,0.986279010772705,0.131796643137932,0.0362833701074123,0.990612626075745,-0.511954724788666,0.0905373692512512,0.854227900505066,0.107388518750668,0.0910816788673401,-0.990036368370056,-0.774252414703369,0.632377207279205,0.0251474604010582,-0.351895242929459,0.0735519155859947,-0.93314516544342,0.90397047996521,-0.424859374761581,0.0482896640896797,0.976767480373383,-0.206125169992447,0.0586321912705898,0.898274958133698,-0.438122779130936,-0.033922091126442,0.991616547107697,0.125842109322548,-0.0293325278908014,-0.239530965685844,-0.173225313425064,-0.955310463905334,0.144413471221924,0.0682856217026711,-0.987158417701721,-0.119503743946552,-0.0480230376124382,-0.991671681404114,0.0313514322042465,0.055918987840414,-0.997942984104156,0.107388518750668,0.0910816788673401,-0.990036368370056,-0.201640233397484,-0.341642647981644,-0.917944192886353,-0.119503743946552,-0.0480230376124382,-0.991671681404114,0.144413471221924,0.0682856217026711,-0.987158417701721,0.928464889526367,-0.368190109729767,-0.0488770604133606,0.808194875717163,-0.58845329284668,0.0233222097158432,0.976942837238312,-0.209559425711632,0.0408355854451656,0.653788387775421,-0.755437850952148,-0.0432962886989117,0.0462310276925564,-0.0241017825901508,-0.998640060424805,-0.0225354190915823,0.0203563328832388,-0.999538838863373,0.151985868811607,-0.309300303459167,-0.938740491867065,-0.191903248429298,0.613632440567017,-0.765916705131531,-0.0508347675204277,-0.0157380811870098,-0.998583078384399,-0.116802282631397,-0.229687184095383,-0.96623033285141,0.0848619714379311,0.10134045034647,-0.991225838661194,-0.803220629692078,0.563220262527466,-0.193957775831223,-0.811769485473633,0.583576858043671,0.0216452591121197,-0.902874886989594,0.426718950271606,-0.052229430526495,
- -0.707855641841888,0.706356287002563,0.00111258123070002,-0.173162326216698,-0.16726079583168,-0.970586776733398,-0.153447359800339,-0.166567265987396,-0.974017143249512,-0.239530965685844,-0.173225313425064,-0.955310463905334,0.614126026630402,-0.786458313465118,-0.0658223479986191,0.558290362358093,-0.826726615428925,-0.0695342570543289,0.144413471221924,0.0682856217026711,-0.987158417701721,0.151985868811607,-0.309300303459167,-0.938740491867065,-0.98127955198288,-0.172079533338547,-0.0864820629358292,-0.974735140800476,0.0224495939910412,-0.222232952713966,-0.910406053066254,0.413515776395798,0.0128731969743967,-0.868269801139832,0.489309310913086,0.0817552804946899,-0.916338622570038,0.282375574111938,0.283879578113556,0.0848619714379311,0.10134045034647,-0.991225838661194,0.898274958133698,-0.438122779130936,-0.033922091126442,0.887538075447083,-0.458708196878433,-0.0431642383337021,-0.968991875648499,0.241897374391556,-0.0504040159285069,-0.789724409580231,0.612623810768127,0.0320550464093685,-0.811769485473633,0.583576858043671,0.0216452591121197,-0.803220629692078,0.563220262527466,-0.193957775831223,-0.0124452002346516,-0.0429488457739353,0.998999774456024,-0.0181031059473753,-0.0292199701070786,0.999409079551697,-0.0128784524276853,0.0221298672258854,0.999672174453735,-0.333503127098084,0.942120850086212,-0.0344097688794136,-0.910406053066254,0.413515776395798,0.0128731969743967,-0.755325853824615,0.653490722179413,0.0493230745196342,-0.998064577579498,-0.0568756721913815,0.0251457467675209,0.0405333526432514,0.171620279550552,0.984328985214233,-0.103438399732113,-0.264852583408356,0.958725035190582,-0.884982645511627,0.463816732168198,0.0409867092967033,-0.902874886989594,0.426718950271606,-0.052229430526495,-0.811769485473633,0.583576858043671,0.0216452591121197,-0.998064577579498,-0.0568756721913815,0.0251457467675209,0.653788387775421,-0.755437850952148,-0.0432962886989117,0.976942837238312,-0.209559425711632,0.0408355854451656,0.996089935302734,-0.070425346493721,0.0533395558595657,0.991616547107697,0.125842109322548,-0.0293325278908014,
- -0.191903248429298,0.613632440567017,-0.765916705131531,0.996089935302734,-0.070425346493721,0.0533395558595657,-0.010773504152894,0.0256646834313869,0.99961256980896,-0.0100321192294359,-0.0189374554902315,0.999770402908325,-0.0124452002346516,-0.0429488457739353,0.998999774456024,-0.0128784524276853,0.0221298672258854,0.999672174453735,-0.996817529201508,0.0632248073816299,0.0485540367662907,-0.937271118164063,0.346153914928436,-0.0412360206246376,-0.967735409736633,-0.00738995056599379,-0.251860588788986,0.151985868811607,-0.309300303459167,-0.938740491867065,0.0662447139620781,0.0387726128101349,-0.997049808502197,-0.191903248429298,0.613632440567017,-0.765916705131531,0.996089935302734,-0.070425346493721,0.0533395558595657,-0.191903248429298,0.613632440567017,-0.765916705131531,0.653788387775421,-0.755437850952148,-0.0432962886989117,-0.0684488788247108,-0.315492361783981,0.94645631313324,0.976767480373383,-0.206125169992447,0.0586321912705898,0.90397047996521,-0.424859374761581,0.0482896640896797,0.0405397489666939,0.0257128365337849,0.99884706735611,-0.0684488788247108,-0.315492361783981,0.94645631313324,0.0184664446860552,0.0460253059864044,0.998769640922546,0.0656650215387344,-0.14962637424469,0.986559748649597,0.0665675029158592,0.0619495287537575,0.995856940746307,-0.0515359081327915,-0.00320918671786785,0.998666048049927,0.0397123135626316,0.112489126622677,0.992859125137329,-0.170456945896149,-0.245979309082031,0.954169154167175,0.988534390926361,-0.145033031702042,0.0420141778886318,0.987204372882843,-0.156098142266274,-0.0325726941227913,0.959957480430603,-0.229574233293533,0.160553589463234,0.246591031551361,-0.96711391210556,0.0623176880180836,0.318647652864456,-0.947729289531708,0.0165232885628939,0.131796643137932,0.0362833701074123,0.990612626075745,0.0454223453998566,-0.0472983680665493,0.997847557067871,0.90397047996521,-0.424859374761581,0.0482896640896797,0.986489772796631,-0.15706242620945,0.0465760864317417,0.00375221716240048,-0.263229876756668,-0.964725852012634,-0.0508347675204277,-0.0157380811870098,-0.998583078384399,
- -0.23793426156044,-0.299724847078323,-0.923878967761993,0.887538075447083,-0.458708196878433,-0.0431642383337021,0.959957480430603,-0.229574233293533,0.160553589463234,0.987204372882843,-0.156098142266274,-0.0325726941227913,0.0454223453998566,-0.0472983680665493,0.997847557067871,0.976942837238312,-0.209559425711632,0.0408355854451656,-0.170456945896149,-0.245979309082031,0.954169154167175,0.988534390926361,-0.145033031702042,0.0420141778886318,0.0365930497646332,0.232606500387192,0.971882343292236,0.0103872297331691,-0.391019195318222,0.92032390832901,0.999179005622864,0.014657543040812,0.0377701111137867,0.988534390926361,-0.145033031702042,0.0420141778886318,0.959957480430603,-0.229574233293533,0.160553589463234,0.0365930497646332,0.232606500387192,0.971882343292236,0.959957480430603,-0.229574233293533,0.160553589463234,-0.0684488788247108,-0.315492361783981,0.94645631313324,0.0656650215387344,-0.14962637424469,0.986559748649597,0.244953349232674,-0.969326317310333,-0.0201100818812847,0.614126026630402,-0.786458313465118,-0.0658223479986191,-0.239530965685844,-0.173225313425064,-0.955310463905334,-0.23793426156044,-0.299724847078323,-0.923878967761993,-0.0508347675204277,-0.0157380811870098,-0.998583078384399,0.0848619714379311,0.10134045034647,-0.991225838661194,-0.974735140800476,0.0224495939910412,-0.222232952713966,-0.98127955198288,-0.172079533338547,-0.0864820629358292,-0.965865612030029,0.257283419370651,0.0301485508680344,-0.999697148799896,-0.00827281828969717,-0.0231770146638155,0.0405333526432514,0.171620279550552,0.984328985214233,-0.998064577579498,-0.0568756721913815,0.0251457467675209,-0.999697148799896,-0.00827281828969717,-0.0231770146638155,-0.800311505794525,0.59871643781662,0.032250665128231,-0.0158030446618795,0.14824640750885,0.988824188709259,0.0184664446860552,0.0460253059864044,0.998769640922546,-0.892184257507324,0.379076480865479,0.245577186346054,-0.862503290176392,0.499369472265244,0.0819652825593948,-0.0515359081327915,-0.00320918671786785,0.998666048049927,-0.916338622570038,0.282375574111938,0.283879578113556,
- -0.755325853824615,0.653490722179413,0.0493230745196342,-0.910406053066254,0.413515776395798,0.0128731969743967,-0.157002925872803,-0.0510269924998283,0.986279010772705,-0.197773292660713,0.978615760803223,0.0565418750047684,-0.910018026828766,0.412000000476837,0.0460801906883717,0.00814575050026178,0.038890216499567,0.999210357666016,0.995167076587677,-0.071811743080616,-0.0669741109013557,0.879748702049255,-0.0142018422484398,0.475226849317551,0.570372819900513,0.0103994840756059,-0.821320056915283,0.0184664446860552,0.0460253059864044,0.998769640922546,0.0405333526432514,0.171620279550552,0.984328985214233,-0.999697148799896,-0.00827281828969717,-0.0231770146638155,-0.0684488788247108,-0.315492361783981,0.94645631313324,0.0405333526432514,0.171620279550552,0.984328985214233,0.0184664446860552,0.0460253059864044,0.998769640922546,-0.707855641841888,0.706356287002563,0.00111258123070002,-0.153447359800339,-0.166567265987396,-0.974017143249512,0.151985868811607,-0.309300303459167,-0.938740491867065,0.624320685863495,-0.779683232307434,-0.0481434091925621,0.928464889526367,-0.368190109729767,-0.0488770604133606,-0.0166521538048983,-0.0674088448286057,-0.997586488723755,0.0848619714379311,0.10134045034647,-0.991225838661194,0.887538075447083,-0.458708196878433,-0.0431642383337021,-0.23793426156044,-0.299724847078323,-0.923878967761993,0.887538075447083,-0.458708196878433,-0.0431642383337021,0.00375221716240048,-0.263229876756668,-0.964725852012634,-0.23793426156044,-0.299724847078323,-0.923878967761993,0.151985868811607,-0.309300303459167,-0.938740491867065,-0.974735140800476,0.0224495939910412,-0.222232952713966,-0.707855641841888,0.706356287002563,0.00111258123070002,-0.333503127098084,0.942120850086212,-0.0344097688794136,-0.755325853824615,0.653490722179413,0.0493230745196342,-0.303878396749496,0.951136767864227,0.0547430291771889,-0.328507333993912,0.943760633468628,-0.0374005995690823,-0.548074424266815,0.835098922252655,-0.0471622124314308,0.987204372882843,-0.156098142266274,-0.0325726941227913,0.00375221716240048,-0.263229876756668,-0.964725852012634,
- 0.887538075447083,-0.458708196878433,-0.0431642383337021,-0.239530965685844,-0.173225313425064,-0.955310463905334,-0.351895242929459,0.0735519155859947,-0.93314516544342,0.244953349232674,-0.969326317310333,-0.0201100818812847,0.107388518750668,0.0910816788673401,-0.990036368370056,-0.351895242929459,0.0735519155859947,-0.93314516544342,-0.239530965685844,-0.173225313425064,-0.955310463905334,-0.862503290176392,0.499369472265244,0.0819652825593948,-0.952177762985229,0.292192906141281,0.0893358141183853,0.0397123135626316,0.112489126622677,0.992859125137329,-0.0515359081327915,-0.00320918671786785,0.998666048049927,0.144413471221924,0.0682856217026711,-0.987158417701721,0.558290362358093,-0.826726615428925,-0.0695342570543289,0.624320685863495,-0.779683232307434,-0.0481434091925621,-0.0166521538048983,-0.0674088448286057,-0.997586488723755,-0.0166521538048983,-0.0674088448286057,-0.997586488723755,-0.201640233397484,-0.341642647981644,-0.917944192886353,0.144413471221924,0.0682856217026711,-0.987158417701721,0.0462310276925564,-0.0241017825901508,-0.998640060424805,-0.191903248429298,0.613632440567017,-0.765916705131531,0.991616547107697,0.125842109322548,-0.0293325278908014,-0.0508347675204277,-0.0157380811870098,-0.998583078384399,-0.803220629692078,0.563220262527466,-0.193957775831223,-0.116802282631397,-0.229687184095383,-0.96623033285141,-0.045341745018959,0.111347205936909,-0.992746651172638,-0.992639183998108,-0.0953509956598282,-0.0746699720621109,-0.998035371303558,0.0553969629108906,-0.0292683634907007,-0.033254973590374,0.239556238055229,-0.970312833786011,0.976767480373383,-0.206125169992447,0.0586321912705898,-0.0684488788247108,-0.315492361783981,0.94645631313324,0.959957480430603,-0.229574233293533,0.160553589463234,-0.0225354190915823,0.0203563328832388,-0.999538838863373,-0.116802282631397,-0.229687184095383,-0.96623033285141,-0.902874886989594,0.426718950271606,-0.052229430526495,-0.98127955198288,-0.172079533338547,-0.0864820629358292,-0.116802282631397,-0.229687184095383,-0.96623033285141,-0.803220629692078,0.563220262527466,-0.193957775831223,
- -0.902874886989594,0.426718950271606,-0.052229430526495,0.898274958133698,-0.438122779130936,-0.033922091126442,0.959957480430603,-0.229574233293533,0.160553589463234,0.887538075447083,-0.458708196878433,-0.0431642383337021,0.976767480373383,-0.206125169992447,0.0586321912705898,0.959957480430603,-0.229574233293533,0.160553589463234,0.898274958133698,-0.438122779130936,-0.033922091126442,-0.937271118164063,0.346153914928436,-0.0412360206246376,-0.448806524276733,-0.00406402349472046,-0.89361971616745,-0.967735409736633,-0.00738995056599379,-0.251860588788986,-0.448806524276733,-0.00406402349472046,-0.89361971616745,-0.0236574597656727,-0.113393671810627,-0.993268489837646,-0.0635725557804108,-0.0975708514451981,-0.993196129798889,0.928464889526367,-0.368190109729767,-0.0488770604133606,-0.0270447079092264,-0.0771311894059181,-0.996654152870178,-0.0166521538048983,-0.0674088448286057,-0.997586488723755,0.0451654195785522,0.112215586006641,0.992657005786896,0.10062712430954,0.140552878379822,0.984946310520172,0.00814575050026178,0.038890216499567,0.999210357666016,-0.937271118164063,0.346153914928436,-0.0412360206246376,-0.0236574597656727,-0.113393671810627,-0.993268489837646,-0.448806524276733,-0.00406402349472046,-0.89361971616745,0.90397047996521,-0.424859374761581,0.0482896640896797,0.0454223453998566,-0.0472983680665493,0.997847557067871,0.0405397489666939,0.0257128365337849,0.99884706735611,0.0405397489666939,0.0257128365337849,0.99884706735611,0.0454223453998566,-0.0472983680665493,0.997847557067871,-0.103438399732113,-0.264852583408356,0.958725035190582,0.118345692753792,0.18704879283905,-0.975196003913879,-0.910406053066254,0.413515776395798,0.0128731969743967,-0.201640233397484,-0.341642647981644,-0.917944192886353,-0.707855641841888,0.706356287002563,0.00111258123070002,-0.974735140800476,0.0224495939910412,-0.222232952713966,-0.957702100276947,0.273646116256714,0.0890195220708847,-0.967735409736633,-0.00738995056599379,-0.251860588788986,-0.989965796470642,0.0355650894343853,0.136758998036385,-0.996817529201508,0.0632248073816299,0.0485540367662907,
- -0.884982645511627,0.463816732168198,0.0409867092967033,-0.103438399732113,-0.264852583408356,0.958725035190582,-0.0269322171807289,-0.332235753536224,0.942811846733093,-0.980478227138519,0.175064787268639,0.0895265340805054,0.976942837238312,-0.209559425711632,0.0408355854451656,0.0454223453998566,-0.0472983680665493,0.997847557067871,0.986489772796631,-0.15706242620945,0.0465760864317417,0.128818064928055,-0.0241342075169086,0.991374611854553,-0.00471649458631873,0.0011177024571225,0.999988257884979,-0.953002333641052,-0.300300478935242,0.0400788076221943,0.995167076587677,-0.071811743080616,-0.0669741109013557,0.570372819900513,0.0103994840756059,-0.821320056915283,0.0240583624690771,0.134947016835213,-0.990560710430145,0.0454223453998566,-0.0472983680665493,0.997847557067871,-0.0269322171807289,-0.332235753536224,0.942811846733093,-0.103438399732113,-0.264852583408356,0.958725035190582,0.570372819900513,0.0103994840756059,-0.821320056915283,-0.448806524276733,-0.00406402349472046,-0.89361971616745,-0.0635725557804108,-0.0975708514451981,-0.993196129798889,0.570372819900513,0.0103994840756059,-0.821320056915283,-0.0635725557804108,-0.0975708514451981,-0.993196129798889,0.0240583624690771,0.134947016835213,-0.990560710430145,0.808194875717163,-0.58845329284668,0.0233222097158432,0.10062712430954,0.140552878379822,0.984946310520172,0.0665675029158592,0.0619495287537575,0.995856940746307,0.996089935302734,-0.070425346493721,0.0533395558595657,0.90397047996521,-0.424859374761581,0.0482896640896797,0.991616547107697,0.125842109322548,-0.0293325278908014,0.653788387775421,-0.755437850952148,-0.0432962886989117,-0.191903248429298,0.613632440567017,-0.765916705131531,0.0662447139620781,0.0387726128101349,-0.997049808502197,0.0662447139620781,0.0387726128101349,-0.997049808502197,-0.0270447079092264,-0.0771311894059181,-0.996654152870178,0.928464889526367,-0.368190109729767,-0.0488770604133606,0.653788387775421,-0.755437850952148,-0.0432962886989117,0.808194875717163,-0.58845329284668,0.0233222097158432,0.814679622650146,-0.578558444976807,0.0395895279943943,
- 0.10062712430954,0.140552878379822,0.984946310520172,0.558290362358093,-0.826726615428925,-0.0695342570543289,0.614126026630402,-0.786458313465118,-0.0658223479986191,0.246591031551361,-0.96711391210556,0.0623176880180836,0.614350378513336,-0.786542296409607,0.0626495555043221,0.244953349232674,-0.969326317310333,-0.0201100818812847,0.318647652864456,-0.947729289531708,0.0165232885628939,0.246591031551361,-0.96711391210556,0.0623176880180836,0.614126026630402,-0.786458313465118,-0.0658223479986191,-0.389413833618164,0.920554399490356,0.0306032039225101,-0.135663360357285,0.980178356170654,-0.144381448626518,-0.328507333993912,0.943760633468628,-0.0374005995690823,-0.303878396749496,0.951136767864227,0.0547430291771889,-0.774252414703369,0.632377207279205,0.0251474604010582,0.107388518750668,0.0910816788673401,-0.990036368370056,-0.328507333993912,0.943760633468628,-0.0374005995690823,-0.135663360357285,0.980178356170654,-0.144381448626518,-0.201640233397484,-0.341642647981644,-0.917944192886353,-0.333503127098084,0.942120850086212,-0.0344097688794136,-0.119503743946552,-0.0480230376124382,-0.991671681404114,-0.896255254745483,0.442751377820969,-0.0264147259294987,-0.868269801139832,0.489309310913086,0.0817552804946899,-0.910406053066254,0.413515776395798,0.0128731969743967,-0.974735140800476,0.0224495939910412,-0.222232952713966,-0.993421316146851,0.0828892141580582,0.0790158733725548,-0.957702100276947,0.273646116256714,0.0890195220708847,0.0451654195785522,0.112215586006641,0.992657005786896,0.00814575050026178,0.038890216499567,0.999210357666016,-0.910018026828766,0.412000000476837,0.0460801906883717,0.0451654195785522,0.112215586006641,0.992657005786896,-0.910018026828766,0.412000000476837,0.0460801906883717,-0.892184257507324,0.379076480865479,0.245577186346054,-0.892184257507324,0.379076480865479,0.245577186346054,-0.0515359081327915,-0.00320918671786785,0.998666048049927,0.0451654195785522,0.112215586006641,0.992657005786896,0.995167076587677,-0.071811743080616,-0.0669741109013557,0.995671033859253,0.0790332332253456,0.0489193201065063,
- 0.879748702049255,-0.0142018422484398,0.475226849317551,0.0416383966803551,-0.0895203500986099,0.995114266872406,0.879748702049255,-0.0142018422484398,0.475226849317551,0.995671033859253,0.0790332332253456,0.0489193201065063,-0.910406053066254,0.413515776395798,0.0128731969743967,-0.333503127098084,0.942120850086212,-0.0344097688794136,-0.201640233397484,-0.341642647981644,-0.917944192886353,0.118345692753792,0.18704879283905,-0.975196003913879,-0.896255254745483,0.442751377820969,-0.0264147259294987,-0.910406053066254,0.413515776395798,0.0128731969743967,-0.153447359800339,-0.166567265987396,-0.974017143249512,-0.173162326216698,-0.16726079583168,-0.970586776733398,0.118345692753792,0.18704879283905,-0.975196003913879,-0.0270447079092264,-0.0771311894059181,-0.996654152870178,0.0662447139620781,0.0387726128101349,-0.997049808502197,0.0365930497646332,0.232606500387192,0.971882343292236,0.0656650215387344,-0.14962637424469,0.986559748649597,0.126614779233933,0.0958301424980164,0.987312197685242,0.814679622650146,-0.578558444976807,0.0395895279943943,0.624320685863495,-0.779683232307434,-0.0481434091925621,0.558290362358093,-0.826726615428925,-0.0695342570543289,0.808194875717163,-0.58845329284668,0.0233222097158432,0.624320685863495,-0.779683232307434,-0.0481434091925621,0.814679622650146,-0.578558444976807,0.0395895279943943,0.808194875717163,-0.58845329284668,0.0233222097158432,0.928464889526367,-0.368190109729767,-0.0488770604133606,0.624320685863495,-0.779683232307434,-0.0481434091925621,-0.157002925872803,-0.0510269924998283,0.986279010772705,0.00814575050026178,0.038890216499567,0.999210357666016,-0.151269316673279,-0.130746558308601,0.979807615280151,0.131796643137932,0.0362833701074123,0.990612626075745,0.0665675029158592,0.0619495287537575,0.995856940746307,-0.170456945896149,-0.245979309082031,0.954169154167175,0.976942837238312,-0.209559425711632,0.0408355854451656,0.808194875717163,-0.58845329284668,0.0233222097158432,-0.998064577579498,-0.0568756721913815,0.0251457467675209,-0.965865612030029,0.257283419370651,0.0301485508680344,
- -0.98127955198288,-0.172079533338547,-0.0864820629358292,-0.902874886989594,0.426718950271606,-0.052229430526495,0.898274958133698,-0.438122779130936,-0.033922091126442,0.0848619714379311,0.10134045034647,-0.991225838661194,0.0462310276925564,-0.0241017825901508,-0.998640060424805,0.991616547107697,0.125842109322548,-0.0293325278908014,0.987204372882843,-0.156098142266274,-0.0325726941227913,0.988534390926361,-0.145033031702042,0.0420141778886318,0.999179005622864,0.014657543040812,0.0377701111137867,0.97295743227005,-0.22865429520607,-0.0327298790216446,-0.0236574597656727,-0.113393671810627,-0.993268489837646,0.0240583624690771,0.134947016835213,-0.990560710430145,-0.0635725557804108,-0.0975708514451981,-0.993196129798889,-0.953421831130981,0.293649733066559,-0.0689690336585045,-0.999552428722382,0.0169418826699257,-0.0246591176837683,-0.980060517787933,-0.195858985185623,0.0334795080125332,-0.789724409580231,0.612623810768127,0.0320550464093685,-0.968991875648499,0.241897374391556,-0.0504040159285069,0.987204372882843,-0.156098142266274,-0.0325726941227913,0.97295743227005,-0.22865429520607,-0.0327298790216446,0.0212511103600264,0.10018852353096,-0.994741499423981,0.00375221716240048,-0.263229876756668,-0.964725852012634,-0.0276859626173973,0.31642284989357,-0.9482142329216,-0.968991875648499,0.241897374391556,-0.0504040159285069,-0.803220629692078,0.563220262527466,-0.193957775831223,-0.0508347675204277,-0.0157380811870098,-0.998583078384399,0.0365930497646332,0.232606500387192,0.971882343292236,-0.0158030446618795,0.14824640750885,0.988824188709259,-0.0302274487912655,0.0894274562597275,0.995534539222717,0.0103872297331691,-0.391019195318222,0.92032390832901,-0.157002925872803,-0.0510269924998283,0.986279010772705,-0.386037737131119,0.921962082386017,0.0309984460473061,-0.197773292660713,0.978615760803223,0.0565418750047684,-0.0225354190915823,0.0203563328832388,-0.999538838863373,-0.98127955198288,-0.172079533338547,-0.0864820629358292,0.151985868811607,-0.309300303459167,-0.938740491867065,-0.0270447079092264,-0.0771311894059181,-0.996654152870178,
- -0.201640233397484,-0.341642647981644,-0.917944192886353,-0.0166521538048983,-0.0674088448286057,-0.997586488723755,0.0451654195785522,0.112215586006641,0.992657005786896,-0.0515359081327915,-0.00320918671786785,0.998666048049927,0.0665675029158592,0.0619495287537575,0.995856940746307,0.10062712430954,0.140552878379822,0.984946310520172,0.0212511103600264,0.10018852353096,-0.994741499423981,-0.0585271306335926,-0.0999792367219925,-0.993266701698303,-0.0276859626173973,0.31642284989357,-0.9482142329216,0.00375221716240048,-0.263229876756668,-0.964725852012634,-0.395631670951843,-0.125978514552116,-0.909728050231934,-0.930030047893524,0.028746236115694,-0.366357654333115,-0.953421831130981,0.293649733066559,-0.0689690336585045,-0.0585271306335926,-0.0999792367219925,-0.993266701698303,-0.0638835802674294,0.0685098543763161,0.995603024959564,-0.983368277549744,0.174767181277275,-0.0494308471679688,-0.814144790172577,0.5762819647789,0.0711862817406654,-0.00733510218560696,-0.0241962820291519,0.999680399894714,-0.997641623020172,0.062972255051136,-0.0273102503269911,-0.930030047893524,0.028746236115694,-0.366357654333115,-0.998035371303558,0.0553969629108906,-0.0292683634907007,-0.980476379394531,0.189362734556198,0.0529899261891842,-0.395631670951843,-0.125978514552116,-0.909728050231934,0.0172142889350653,0.0298226717859507,-0.999407052993774,-0.033254973590374,0.239556238055229,-0.970312833786011,0.97295743227005,-0.22865429520607,-0.0327298790216446,0.984598338603973,0.159648269414902,0.0712645426392555,0.0172142889350653,0.0298226717859507,-0.999407052993774,-0.0302274487912655,0.0894274562597275,0.995534539222717,-0.860001087188721,-0.508675336837769,0.0405921898782253,-0.983368277549744,0.174767181277275,-0.0494308471679688,-0.0638835802674294,0.0685098543763161,0.995603024959564,-0.930030047893524,0.028746236115694,-0.366357654333115,-0.999552428722382,0.0169418826699257,-0.0246591176837683,-0.953421831130981,0.293649733066559,-0.0689690336585045,0.97513484954834,-0.203147068619728,-0.0885634794831276,0.0103872297331691,-0.391019195318222,0.92032390832901,
- -0.0802077054977417,0.281409859657288,0.956229686737061,0.0212511103600264,0.10018852353096,-0.994741499423981,0.97295743227005,-0.22865429520607,-0.0327298790216446,0.0172142889350653,0.0298226717859507,-0.999407052993774,-0.395631670951843,-0.125978514552116,-0.909728050231934,-0.0364428050816059,-0.0939408093690872,-0.994910597801209,0.0212511103600264,0.10018852353096,-0.994741499423981,0.0172142889350653,0.0298226717859507,-0.999407052993774,-0.0276859626173973,0.31642284989357,-0.9482142329216,-0.0585271306335926,-0.0999792367219925,-0.993266701698303,-0.953421831130981,0.293649733066559,-0.0689690336585045,-0.968991875648499,0.241897374391556,-0.0504040159285069,-0.033254973590374,0.239556238055229,-0.970312833786011,-0.998035371303558,0.0553969629108906,-0.0292683634907007,-0.930030047893524,0.028746236115694,-0.366357654333115,-0.395631670951843,-0.125978514552116,-0.909728050231934,-0.953002333641052,-0.300300478935242,0.0400788076221943,-0.00471649458631873,0.0011177024571225,0.999988257884979,-0.00733510218560696,-0.0241962820291519,0.999680399894714,-0.814144790172577,0.5762819647789,0.0711862817406654,-0.937271118164063,0.346153914928436,-0.0412360206246376,-0.996817529201508,0.0632248073816299,0.0485540367662907,-0.980476379394531,0.189362734556198,0.0529899261891842,-0.998035371303558,0.0553969629108906,-0.0292683634907007,-0.992639183998108,-0.0953509956598282,-0.0746699720621109,0.995167076587677,-0.071811743080616,-0.0669741109013557,0.0240583624690771,0.134947016835213,-0.990560710430145,0.0251780804246664,-0.0867210552096367,-0.995914459228516,0.987934291362762,0.141119003295898,-0.0638073831796646,0.0240583624690771,0.134947016835213,-0.990560710430145,-0.0236574597656727,-0.113393671810627,-0.993268489837646,-0.045341745018959,0.111347205936909,-0.992746651172638,-0.033254973590374,0.239556238055229,-0.970312833786011,0.0251780804246664,-0.0867210552096367,-0.995914459228516,-0.00471649458631873,0.0011177024571225,0.999988257884979,0.0416383966803551,-0.0895203500986099,0.995114266872406,0.0465505123138428,0.308924078941345,0.949946939945221,
- -0.00733510218560696,-0.0241962820291519,0.999680399894714,0.0416383966803551,-0.0895203500986099,0.995114266872406,0.995671033859253,0.0790332332253456,0.0489193201065063,0.994831800460815,-0.0929118990898132,0.0409528762102127,0.0465505123138428,0.308924078941345,0.949946939945221,0.994831800460815,-0.0929118990898132,0.0409528762102127,0.987934291362762,0.141119003295898,-0.0638073831796646,0.97513484954834,-0.203147068619728,-0.0885634794831276,0.97513484954834,-0.203147068619728,-0.0885634794831276,-0.0802077054977417,0.281409859657288,0.956229686737061,0.0465505123138428,0.308924078941345,0.949946939945221,-0.045341745018959,0.111347205936909,-0.992746651172638,-0.0236574597656727,-0.113393671810627,-0.993268489837646,-0.937271118164063,0.346153914928436,-0.0412360206246376,-0.992639183998108,-0.0953509956598282,-0.0746699720621109,-0.0585271306335926,-0.0999792367219925,-0.993266701698303,-0.0364428050816059,-0.0939408093690872,-0.994910597801209,-0.395631670951843,-0.125978514552116,-0.909728050231934,-0.980060517787933,-0.195858985185623,0.0334795080125332,-0.999552428722382,0.0169418826699257,-0.0246591176837683,-0.930030047893524,0.028746236115694,-0.366357654333115,-0.997641623020172,0.062972255051136,-0.0273102503269911,-0.0585271306335926,-0.0999792367219925,-0.993266701698303,0.0212511103600264,0.10018852353096,-0.994741499423981,-0.0364428050816059,-0.0939408093690872,-0.994910597801209,0.97513484954834,-0.203147068619728,-0.0885634794831276,0.0465505123138428,0.308924078941345,0.949946939945221,0.994831800460815,-0.0929118990898132,0.0409528762102127,0.0103872297331691,-0.391019195318222,0.92032390832901,-0.0638835802674294,0.0685098543763161,0.995603024959564,-0.0802077054977417,0.281409859657288,0.956229686737061,0.0172142889350653,0.0298226717859507,-0.999407052993774,0.984598338603973,0.159648269414902,0.0712645426392555,0.987934291362762,0.141119003295898,-0.0638073831796646,0.995671033859253,0.0790332332253456,0.0489193201065063,0.995167076587677,-0.071811743080616,-0.0669741109013557,0.987934291362762,0.141119003295898,-0.0638073831796646,
- 0.994831800460815,-0.0929118990898132,0.0409528762102127,0.0103872297331691,-0.391019195318222,0.92032390832901,-0.0302274487912655,0.0894274562597275,0.995534539222717,-0.0638835802674294,0.0685098543763161,0.995603024959564,-0.0638835802674294,0.0685098543763161,0.995603024959564,-0.00733510218560696,-0.0241962820291519,0.999680399894714,0.0465505123138428,0.308924078941345,0.949946939945221,-0.0638835802674294,0.0685098543763161,0.995603024959564,0.0465505123138428,0.308924078941345,0.949946939945221,-0.0802077054977417,0.281409859657288,0.956229686737061,0.999179005622864,0.014657543040812,0.0377701111137867,0.0103872297331691,-0.391019195318222,0.92032390832901,0.97513484954834,-0.203147068619728,-0.0885634794831276,-0.033254973590374,0.239556238055229,-0.970312833786011,0.0172142889350653,0.0298226717859507,-0.999407052993774,0.0251780804246664,-0.0867210552096367,-0.995914459228516,-0.000741491676308215,0.184577286243439,-0.982817769050598,-0.256343632936478,-0.076806366443634,-0.963529288768768,-0.00532975001260638,0.036779161542654,-0.999309301376343,-0.0651896893978119,0.0162415057420731,0.997740685939789,0.243369713425636,0.968954265117645,0.0435756146907806,-0.459684312343597,0.887398183345795,0.0348528213799,0.43793597817421,0.106085620820522,0.892725050449371,0.0499496050179005,-0.996587455272675,0.0657163113355637,0.0987833738327026,-0.99138343334198,-0.0860278755426407,-0.0112063055858016,-0.855437159538269,0.517785549163818,-0.256343632936478,-0.076806366443634,-0.963529288768768,-0.000741491676308215,0.184577286243439,-0.982817769050598,-0.0247238874435425,-0.613110959529877,-0.789609849452972,0.00642420910298824,-0.751258254051209,-0.65997713804245,-0.0112063055858016,-0.855437159538269,0.517785549163818,0.0987833738327026,-0.99138343334198,-0.0860278755426407,0.0499496050179005,-0.996587455272675,0.0657163113355637,0.0885501429438591,-0.00519286096096039,0.996058225631714,-0.233174666762352,-0.0755077004432678,0.969498991966248,0.0935063883662224,-0.994727671146393,0.0421140342950821,0.0499496050179005,-0.996587455272675,0.0657163113355637,
- -0.0112063055858016,-0.855437159538269,0.517785549163818,0.0885501429438591,-0.00519286096096039,0.996058225631714,0.00642420910298824,-0.751258254051209,-0.65997713804245,-0.256343632936478,-0.076806366443634,-0.963529288768768,-0.0247238874435425,-0.613110959529877,-0.789609849452972,0.0987833738327026,-0.99138343334198,-0.0860278755426407,-0.256343632936478,-0.076806366443634,-0.963529288768768,0.00642420910298824,-0.751258254051209,-0.65997713804245,-0.0112063055858016,-0.855437159538269,0.517785549163818,0.0163755211979151,0.0632103458046913,0.997865915298462,0.0885501429438591,-0.00519286096096039,0.996058225631714,-0.0651896893978119,0.0162415057420731,0.997740685939789,0.43793597817421,0.106085620820522,0.892725050449371,-0.233174666762352,-0.0755077004432678,0.969498991966248,0.0885501429438591,-0.00519286096096039,0.996058225631714,0.0987833738327026,-0.99138343334198,-0.0860278755426407,0.0499496050179005,-0.996587455272675,0.0657163113355637,0.0935063883662224,-0.994727671146393,0.0421140342950821,-0.37479430437088,-0.924142241477966,-0.0740966573357582,0.0507103838026524,0.997225224971771,-0.0545007102191448,-0.169185608625412,0.98525869846344,0.0253280866891146,-0.362750887870789,0.931885480880737,-0.0011045242426917,-0.308811545372009,0.949889540672302,-0.0484284833073616,0.0987833738327026,-0.99138343334198,-0.0860278755426407,-0.37479430437088,-0.924142241477966,-0.0740966573357582,0.101927526295185,-0.0249498710036278,-0.99447900056839,-0.256343632936478,-0.076806366443634,-0.963529288768768,0.0885501429438591,-0.00519286096096039,0.996058225631714,0.0163755211979151,0.0632103458046913,0.997865915298462,-0.0651896893978119,0.0162415057420731,0.997740685939789,0.101927526295185,-0.0249498710036278,-0.99447900056839,-0.318658351898193,-0.00831825286149979,-0.947833180427551,-0.00532975001260638,0.036779161542654,-0.999309301376343,-0.256343632936478,-0.076806366443634,-0.963529288768768,-0.774252414703369,0.632377207279205,0.0251474604010582,-0.135663360357285,0.980178356170654,-0.144381448626518,-0.318658351898193,-0.00831825286149979,-0.947833180427551,
- -0.37479430437088,-0.924142241477966,-0.0740966573357582,0.0935063883662224,-0.994727671146393,0.0421140342950821,0.318647652864456,-0.947729289531708,0.0165232885628939,0.244953349232674,-0.969326317310333,-0.0201100818812847,0.43793597817421,0.106085620820522,0.892725050449371,-0.459684312343597,0.887398183345795,0.0348528213799,-0.386037737131119,0.921962082386017,0.0309984460473061,0.049199104309082,0.00942447129637003,0.998744606971741,0.101927526295185,-0.0249498710036278,-0.99447900056839,-0.37479430437088,-0.924142241477966,-0.0740966573357582,0.244953349232674,-0.969326317310333,-0.0201100818812847,-0.351895242929459,0.0735519155859947,-0.93314516544342,0.101927526295185,-0.0249498710036278,-0.99447900056839,0.244953349232674,-0.969326317310333,-0.0201100818812847,-0.00532975001260638,0.036779161542654,-0.999309301376343,-0.318658351898193,-0.00831825286149979,-0.947833180427551,0.0507103838026524,0.997225224971771,-0.0545007102191448,-0.308811545372009,0.949889540672302,-0.0484284833073616,-0.318658351898193,-0.00831825286149979,-0.947833180427551,-0.351895242929459,0.0735519155859947,-0.93314516544342,-0.774252414703369,0.632377207279205,0.0251474604010582,-0.169185608625412,0.98525869846344,0.0253280866891146,0.0507103838026524,0.997225224971771,-0.0545007102191448,-0.135663360357285,0.980178356170654,-0.144381448626518,-0.389413833618164,0.920554399490356,0.0306032039225101,-0.318658351898193,-0.00831825286149979,-0.947833180427551,0.101927526295185,-0.0249498710036278,-0.99447900056839,-0.351895242929459,0.0735519155859947,-0.93314516544342,0.049199104309082,0.00942447129637003,0.998744606971741,-0.511954724788666,0.0905373692512512,0.854227900505066,-0.233174666762352,-0.0755077004432678,0.969498991966248,0.43793597817421,0.106085620820522,0.892725050449371,0.0935063883662224,-0.994727671146393,0.0421140342950821,-0.233174666762352,-0.0755077004432678,0.969498991966248,0.318647652864456,-0.947729289531708,0.0165232885628939,-0.0190184582024813,-0.0342234820127487,0.999233305454254,-0.0262368265539408,-0.0343256108462811,0.999066233634949,
- 0.00423020729795098,-0.0352719277143478,0.999368846416473,0.00555858807638288,-0.035000778734684,0.999371826648712,0.0230107456445694,-0.0343642756342888,0.999144494533539,0.0183734502643347,-0.0351798571646214,0.999212145805359,-0.00532975001260638,0.036779161542654,-0.999309301376343,-0.308811545372009,0.949889540672302,-0.0484284833073616,0.00343369180336595,0.941143274307251,-0.337990671396255,-0.000741491676308215,0.184577286243439,-0.982817769050598,0.0163755211979151,0.0632103458046913,0.997865915298462,0.243369713425636,0.968954265117645,0.0435756146907806,-0.0651896893978119,0.0162415057420731,0.997740685939789,-0.0249613299965858,0.936991691589355,-0.348458915948868,0.00343369180336595,0.941143274307251,-0.337990671396255,-0.308811545372009,0.949889540672302,-0.0484284833073616,-0.362750887870789,0.931885480880737,-0.0011045242426917,-0.157002925872803,-0.0510269924998283,0.986279010772705,0.049199104309082,0.00942447129637003,0.998744606971741,-0.386037737131119,0.921962082386017,0.0309984460473061,-0.170456945896149,-0.245979309082031,0.954169154167175,0.0397123135626316,0.112489126622677,0.992859125137329,0.0454223453998566,-0.0472983680665493,0.997847557067871,0.10062712430954,0.140552878379822,0.984946310520172,-0.151269316673279,-0.130746558308601,0.979807615280151,0.00814575050026178,0.038890216499567,0.999210357666016,0.814679622650146,-0.578558444976807,0.0395895279943943,0.614350378513336,-0.786542296409607,0.0626495555043221,-0.151269316673279,-0.130746558308601,0.979807615280151,0.10062712430954,0.140552878379822,0.984946310520172,0.558290362358093,-0.826726615428925,-0.0695342570543289,0.614350378513336,-0.786542296409607,0.0626495555043221,0.814679622650146,-0.578558444976807,0.0395895279943943,0.0172142889350653,0.0298226717859507,-0.999407052993774,0.987934291362762,0.141119003295898,-0.0638073831796646,0.0251780804246664,-0.0867210552096367,-0.995914459228516,0.118345692753792,0.18704879283905,-0.975196003913879,-0.201640233397484,-0.341642647981644,-0.917944192886353,-0.0270447079092264,-0.0771311894059181,-0.996654152870178,
- -0.868269801139832,0.489309310913086,0.0817552804946899,-0.896255254745483,0.442751377820969,-0.0264147259294987,-0.75993812084198,0.649526357650757,-0.024693101644516,-0.707855641841888,0.706356287002563,0.00111258123070002,-0.957702100276947,0.273646116256714,0.0890195220708847,0.151985868811607,-0.309300303459167,-0.938740491867065,-0.153447359800339,-0.166567265987396,-0.974017143249512,0.0662447139620781,0.0387726128101349,-0.997049808502197,-0.318658351898193,-0.00831825286149979,-0.947833180427551,-0.135663360357285,0.980178356170654,-0.144381448626518,0.0507103838026524,0.997225224971771,-0.0545007102191448,0.0184664446860552,0.0460253059864044,0.998769640922546,-0.0158030446618795,0.14824640750885,0.988824188709259,0.126614779233933,0.0958301424980164,0.987312197685242,0.0656650215387344,-0.14962637424469,0.986559748649597,-0.0158030446618795,0.14824640750885,0.988824188709259,-0.800311505794525,0.59871643781662,0.032250665128231,-0.860001087188721,-0.508675336837769,0.0405921898782253,-0.0302274487912655,0.0894274562597275,0.995534539222717,0.0397123135626316,0.112489126622677,0.992859125137329,-0.0269322171807289,-0.332235753536224,0.942811846733093,0.0454223453998566,-0.0472983680665493,0.997847557067871,-0.980478227138519,0.175064787268639,0.0895265340805054,-0.0269322171807289,-0.332235753536224,0.942811846733093,0.0397123135626316,0.112489126622677,0.992859125137329,-0.952177762985229,0.292192906141281,0.0893358141183853,-0.980478227138519,0.175064787268639,0.0895265340805054,0.0397123135626316,0.112489126622677,0.992859125137329,0.0848619714379311,0.10134045034647,-0.991225838661194,-0.116802282631397,-0.229687184095383,-0.96623033285141,-0.0225354190915823,0.0203563328832388,-0.999538838863373,0.0462310276925564,-0.0241017825901508,-0.998640060424805,0.976942837238312,-0.209559425711632,0.0408355854451656,0.986489772796631,-0.15706242620945,0.0465760864317417,0.996089935302734,-0.070425346493721,0.0533395558595657,0.986489772796631,-0.15706242620945,0.0465760864317417,0.90397047996521,-0.424859374761581,0.0482896640896797,
- 0.996089935302734,-0.070425346493721,0.0533395558595657,-0.965865612030029,0.257283419370651,0.0301485508680344,-0.993421316146851,0.0828892141580582,0.0790158733725548,-0.974735140800476,0.0224495939910412,-0.222232952713966,-0.75993812084198,0.649526357650757,-0.024693101644516,-0.896255254745483,0.442751377820969,-0.0264147259294987,0.118345692753792,0.18704879283905,-0.975196003913879,-0.173162326216698,-0.16726079583168,-0.970586776733398,-0.707855641841888,0.706356287002563,0.00111258123070002,-0.75993812084198,0.649526357650757,-0.024693101644516,-0.173162326216698,-0.16726079583168,-0.970586776733398,-0.333503127098084,0.942120850086212,-0.0344097688794136,-0.548074424266815,0.835098922252655,-0.0471622124314308,0.0313514322042465,0.055918987840414,-0.997942984104156,-0.119503743946552,-0.0480230376124382,-0.991671681404114,0.0313514322042465,0.055918987840414,-0.997942984104156,-0.548074424266815,0.835098922252655,-0.0471622124314308,-0.328507333993912,0.943760633468628,-0.0374005995690823,0.107388518750668,0.0910816788673401,-0.990036368370056,0.97295743227005,-0.22865429520607,-0.0327298790216446,0.999179005622864,0.014657543040812,0.0377701111137867,0.97513484954834,-0.203147068619728,-0.0885634794831276,0.984598338603973,0.159648269414902,0.0712645426392555,0.987934291362762,0.141119003295898,-0.0638073831796646,0.984598338603973,0.159648269414902,0.0712645426392555,0.97513484954834,-0.203147068619728,-0.0885634794831276,-0.511954724788666,0.0905373692512512,0.854227900505066,0.131796643137932,0.0362833701074123,0.990612626075745,0.318647652864456,-0.947729289531708,0.0165232885628939,-0.233174666762352,-0.0755077004432678,0.969498991966248,-0.511954724788666,0.0905373692512512,0.854227900505066,0.318647652864456,-0.947729289531708,0.0165232885628939,0.0365930497646332,0.232606500387192,0.971882343292236,0.126614779233933,0.0958301424980164,0.987312197685242,-0.0158030446618795,0.14824640750885,0.988824188709259,0.0365930497646332,0.232606500387192,0.971882343292236,0.959957480430603,-0.229574233293533,0.160553589463234,
- 0.0656650215387344,-0.14962637424469,0.986559748649597,-0.135640770196915,0.207972392439842,0.968684196472168,0.13787454366684,-0.146869704127312,0.979499876499176,-0.225331202149391,0.234443083405495,0.945654511451721,-0.00734347570687532,-0.0409189909696579,0.999135494232178,-0.0314546413719654,0.00800868589431047,0.999473094940186,-0.718907117843628,-0.692943871021271,0.0547848120331764,-0.993135333061218,-0.108783766627312,0.0429934412240982,-0.0282893162220716,-0.281907081604004,0.959024608135223,-0.0220749080181122,-0.881313264369965,0.472016543149948,-0.0867067500948906,-0.0155970510095358,0.996111869812012,0.00623789150267839,0.000668603111989796,0.999980390071869,-0.0280688237398863,-0.119742155075073,0.992408215999603,-0.0321181640028954,0.0283380821347237,-0.999082326889038,-0.1942138671875,0.0968617722392082,-0.976165413856506,0.0393259264528751,0.0211514476686716,-0.999002575874329,0.0581643879413605,-0.0331170819699764,0.99775767326355,0.0253749154508114,0.312773853540421,0.949488699436188,-0.0282893162220716,-0.281907081604004,0.959024608135223,0.217730909585953,-0.248498126864433,0.943844199180603,0.0170982703566551,-0.00770429195836186,-0.999824106693268,0.334173053503037,0.599749147891998,-0.727069020271301,-0.0843829065561295,0.208510428667068,-0.974373161792755,-0.98819887638092,-0.144830301403999,0.049872700124979,-0.576094746589661,-0.815414071083069,0.0567004680633545,-0.449040979146957,-0.893188774585724,-0.0240017026662827,-0.568573653697968,-0.821894466876984,-0.0348365791141987,-0.0308257378637791,0.305589765310287,-0.9516641497612,-0.0234113149344921,-0.161916822195053,-0.986526668071747,0.0097861522808671,0.124474905431271,-0.992174565792084,0.0226718131452799,-0.0467447675764561,-0.998649537563324,0.0170982703566551,-0.00770429195836186,-0.999824106693268,-0.085723988711834,0.274817317724228,-0.957667469978333,0.0097861522808671,0.124474905431271,-0.992174565792084,-0.0234113149344921,-0.161916822195053,-0.986526668071747,-0.862806022167206,-0.503126740455627,-0.0492890477180481,-0.976877093315125,0.211943700909615,0.0281286276876926,
- -0.902956068515778,-0.42809197306633,0.0375195220112801,-0.908087611198425,0.416624933481216,-0.042435560375452,-0.049983661621809,0.00286633730866015,-0.998746037483215,0.0378074198961258,0.000313149765133858,-0.999284982681274,0.741774320602417,-0.493256688117981,-0.45438826084137,0.0609650164842606,-0.186506286263466,-0.980560421943665,-0.0321181640028954,0.0283380821347237,-0.999082326889038,-0.227043002843857,0.372822880744934,-0.899697005748749,0.0747935548424721,-0.175843566656113,-0.981572687625885,0.384661167860031,0.914784848690033,-0.123306430876255,0.461837321519852,0.886847674846649,-0.0144055671989918,0.548793196678162,0.834280252456665,-0.0529375001788139,0.980124533176422,-0.197916269302368,-0.0136086633428931,-0.042223896831274,0.240461081266403,-0.969740092754364,-0.0320689678192139,0.176921874284744,-0.983702301979065,-0.0308257378637791,0.305589765310287,-0.9516641497612,-0.988537788391113,-0.131647914648056,-0.0739044100046158,-0.983346521854401,-0.165902569890022,-0.0742023959755898,-0.0234113149344921,-0.161916822195053,-0.986526668071747,0.741774320602417,-0.493256688117981,-0.45438826084137,0.373409986495972,0.92445582151413,-0.0771132186055183,0.876610517501831,0.478713065385818,-0.0488657057285309,0.937058687210083,0.349162399768829,-0.00261935987509787,0.985348045825958,0.147412225604057,0.0857845693826675,0.995596051216125,0.0908574238419533,0.0231001432985067,0.0747935548424721,-0.175843566656113,-0.981572687625885,-0.449040979146957,-0.893188774585724,-0.0240017026662827,-0.164023414254189,-0.968274056911469,-0.188525080680847,0.224638044834137,0.97294020652771,-0.0540847703814507,0.609077870845795,0.791904985904694,0.0437122993171215,0.461837321519852,0.886847674846649,-0.0144055671989918,0.384661167860031,0.914784848690033,-0.123306430876255,-0.038570549339056,0.0121794585138559,0.999181747436523,-0.0239051058888435,0.0178643669933081,0.999554693698883,0.0173393022269011,0.0127007840201259,0.999769032001495,0.958942055702209,-0.28170844912529,-0.0327186696231365,0.937058687210083,0.349162399768829,-0.00261935987509787,
- 0.90456086397171,0.424544334411621,0.0391397066414356,0.293660491704941,0.955747425556183,0.0176181495189667,0.13787454366684,-0.146869704127312,0.979499876499176,-0.135640770196915,0.207972392439842,0.968684196472168,0.996806204319,-0.0594692192971706,0.0533008687198162,0.548793196678162,0.834280252456665,-0.0529375001788139,0.461837321519852,0.886847674846649,-0.0144055671989918,0.293660491704941,0.955747425556183,0.0176181495189667,-0.908087611198425,0.416624933481216,-0.042435560375452,-0.902956068515778,-0.42809197306633,0.0375195220112801,-0.977585256099701,-0.193122908473015,-0.0838495641946793,-0.568573653697968,-0.821894466876984,-0.0348365791141987,0.0609650164842606,-0.186506286263466,-0.980560421943665,-0.977585256099701,-0.193122908473015,-0.0838495641946793,0.031266313046217,0.010194094851613,0.999459147453308,-0.0217173267155886,0.00939438864588737,0.99972003698349,-0.038570549339056,0.0121794585138559,0.999181747436523,0.0173393022269011,0.0127007840201259,0.999769032001495,0.103944048285484,0.992366492748261,0.0663654953241348,0.442761212587357,0.895858108997345,-0.0374268144369125,-0.00672459928318858,0.98332279920578,-0.181744500994682,0.741774320602417,-0.493256688117981,-0.45438826084137,-0.0255835521966219,-0.031770795583725,-0.999167680740356,0.0609650164842606,-0.186506286263466,-0.980560421943665,-0.977585256099701,-0.193122908473015,-0.0838495641946793,0.0609650164842606,-0.186506286263466,-0.980560421943665,-0.908087611198425,0.416624933481216,-0.042435560375452,-0.225331202149391,0.234443083405495,0.945654511451721,-0.576094746589661,-0.815414071083069,0.0567004680633545,-0.98819887638092,-0.144830301403999,0.049872700124979,-0.00734347570687532,-0.0409189909696579,0.999135494232178,-0.225331202149391,0.234443083405495,0.945654511451721,0.0291887726634741,0.00114353571552783,0.999573349952698,0.0744521245360374,-0.13503722846508,0.988039493560791,0.00987419113516808,-0.0996207818388939,0.994976580142975,0.0350615233182907,0.0182474963366985,0.999218583106995,0.0680563449859619,-0.106701545417309,0.99195921421051,
- -0.0878133028745651,0.264069974422455,0.960497736930847,-0.582088112831116,-0.811699330806732,0.0481436774134636,-0.389505445957184,-0.920617699623108,-0.0273638255894184,-0.309202462434769,-0.943200290203094,0.121520265936852,-0.993135333061218,-0.108783766627312,0.0429934412240982,-0.894903481006622,-0.441627860069275,-0.064129576086998,-0.0282893162220716,-0.281907081604004,0.959024608135223,-0.0691189914941788,0.228343352675438,0.971124053001404,-0.98819887638092,-0.144830301403999,0.049872700124979,-0.983364403247833,-0.175840243697166,0.0455494113266468,-0.1942138671875,0.0968617722392082,-0.976165413856506,-0.0321181640028954,0.0283380821347237,-0.999082326889038,0.266062766313553,0.0167064908891916,-0.963811039924622,-0.164023414254189,-0.968274056911469,-0.188525080680847,-0.309202462434769,-0.943200290203094,0.121520265936852,-0.389505445957184,-0.920617699623108,-0.0273638255894184,-0.0691189914941788,0.228343352675438,0.971124053001404,-0.902956068515778,-0.42809197306633,0.0375195220112801,-0.0878133028745651,0.264069974422455,0.960497736930847,-0.582088112831116,-0.811699330806732,0.0481436774134636,0.194516912102699,-0.148067846894264,0.969659328460693,-0.357084810733795,0.189379692077637,0.914672613143921,-0.595180988311768,-0.802872955799103,0.033982016146183,-0.582088112831116,-0.811699330806732,0.0481436774134636,-0.309202462434769,-0.943200290203094,0.121520265936852,0.194516912102699,-0.148067846894264,0.969659328460693,-0.309202462434769,-0.943200290203094,0.121520265936852,-0.225331202149391,0.234443083405495,0.945654511451721,0.0744521245360374,-0.13503722846508,0.988039493560791,-0.986078977584839,-0.113062284886837,-0.121923871338367,-0.988537788391113,-0.131647914648056,-0.0739044100046158,-0.0308257378637791,0.305589765310287,-0.9516641497612,0.266062766313553,0.0167064908891916,-0.963811039924622,-0.0321181640028954,0.0283380821347237,-0.999082326889038,0.0747935548424721,-0.175843566656113,-0.981572687625885,0.876610517501831,0.478713065385818,-0.0488657057285309,0.373409986495972,0.92445582151413,-0.0771132186055183,
- 0.858827650547028,0.510857760906219,0.0379394069314003,0.156706795096397,0.987379491329193,-0.0229107551276684,0.13787454366684,-0.146869704127312,0.979499876499176,0.293660491704941,0.955747425556183,0.0176181495189667,0.156706795096397,0.987379491329193,-0.0229107551276684,0.873736977577209,0.484399139881134,0.0440606810152531,0.139713630080223,-0.0550599545240402,0.988659977912903,0.0291887726634741,0.00114353571552783,0.999573349952698,0.914728105068207,-0.379877656698227,-0.137715429067612,0.953870713710785,-0.291262984275818,0.072778582572937,0.0350615233182907,0.0182474963366985,0.999218583106995,0.995596051216125,0.0908574238419533,0.0231001432985067,0.90456086397171,0.424544334411621,0.0391397066414356,0.937058687210083,0.349162399768829,-0.00261935987509787,0.0253749154508114,0.312773853540421,0.949488699436188,0.985974133014679,-0.160862743854523,0.0444765873253345,0.66314023733139,0.747830629348755,0.031535591930151,0.0291725695133209,-0.00472401734441519,0.999563336372375,-0.224236577749252,-0.973014295101166,-0.0544171370565891,-0.0220749080181122,-0.881313264369965,0.472016543149948,0.00776489078998566,-0.566058933734894,-0.824328303337097,0.0291887726634741,0.00114353571552783,0.999573349952698,0.13787454366684,-0.146869704127312,0.979499876499176,0.156706795096397,0.987379491329193,-0.0229107551276684,-0.225331202149391,0.234443083405495,0.945654511451721,0.13787454366684,-0.146869704127312,0.979499876499176,0.0291887726634741,0.00114353571552783,0.999573349952698,0.980124533176422,-0.197916269302368,-0.0136086633428931,-0.0320689678192139,0.176921874284744,-0.983702301979065,0.741774320602417,-0.493256688117981,-0.45438826084137,-0.986202776432037,0.156499892473221,0.0539624243974686,-0.862806022167206,-0.503126740455627,-0.0492890477180481,-0.0547151491045952,0.0867767408490181,-0.994724094867706,0.0747935548424721,-0.175843566656113,-0.981572687625885,-0.164023414254189,-0.968274056911469,-0.188525080680847,0.266062766313553,0.0167064908891916,-0.963811039924622,-0.164023414254189,-0.968274056911469,-0.188525080680847,
- -0.1942138671875,0.0968617722392082,-0.976165413856506,0.266062766313553,0.0167064908891916,-0.963811039924622,0.750311255455017,-0.500380337238312,-0.432033240795136,-0.673571884632111,0.730857610702515,-0.110218964517117,-0.717366278171539,0.69613116979599,0.0280541460961103,0.958942055702209,-0.28170844912529,-0.0327186696231365,0.90456086397171,0.424544334411621,0.0391397066414356,0.997959315776825,0.0528304949402809,0.0358629375696182,0.907113134860992,0.414369463920593,-0.0737819820642471,0.997180998325348,0.0507301725447178,-0.0552863068878651,-0.389505445957184,-0.920617699623108,-0.0273638255894184,-0.1942138671875,0.0968617722392082,-0.976165413856506,-0.164023414254189,-0.968274056911469,-0.188525080680847,-0.0308257378637791,0.305589765310287,-0.9516641497612,-0.0843829065561295,0.208510428667068,-0.974373161792755,-0.986078977584839,-0.113062284886837,-0.121923871338367,0.0170982703566551,-0.00770429195836186,-0.999824106693268,-0.0843829065561295,0.208510428667068,-0.974373161792755,-0.0308257378637791,0.305589765310287,-0.9516641497612,0.953870713710785,-0.291262984275818,0.072778582572937,0.926781177520752,0.36505663394928,0.0883757919073105,0.0680563449859619,-0.106701545417309,0.99195921421051,0.0350615233182907,0.0182474963366985,0.999218583106995,-0.0234113149344921,-0.161916822195053,-0.986526668071747,-0.983346521854401,-0.165902569890022,-0.0742023959755898,-0.986202776432037,0.156499892473221,0.0539624243974686,-0.0547151491045952,0.0867767408490181,-0.994724094867706,-0.0547151491045952,0.0867767408490181,-0.994724094867706,-0.085723988711834,0.274817317724228,-0.957667469978333,-0.0234113149344921,-0.161916822195053,-0.986526668071747,-0.049983661621809,0.00286633730866015,-0.998746037483215,0.0609650164842606,-0.186506286263466,-0.980560421943665,-0.568573653697968,-0.821894466876984,-0.0348365791141987,-0.0321181640028954,0.0283380821347237,-0.999082326889038,0.384661167860031,0.914784848690033,-0.123306430876255,-0.227043002843857,0.372822880744934,-0.899697005748749,0.143135458230972,0.0266897287219763,-0.989343225955963,
- 0.115127004683018,0.991106331348419,-0.0667383447289467,0.794696092605591,0.606251120567322,0.0302974991500378,0.259803950786591,-0.0161961894482374,-0.96552562713623,-0.576094746589661,-0.815414071083069,0.0567004680633545,-0.225331202149391,0.234443083405495,0.945654511451721,-0.309202462434769,-0.943200290203094,0.121520265936852,0.0378074198961258,0.000313149765133858,-0.999284982681274,-0.227043002843857,0.372822880744934,-0.899697005748749,0.548793196678162,0.834280252456665,-0.0529375001788139,0.373409986495972,0.92445582151413,-0.0771132186055183,-0.227043002843857,0.372822880744934,-0.899697005748749,0.384661167860031,0.914784848690033,-0.123306430876255,0.548793196678162,0.834280252456665,-0.0529375001788139,-0.449040979146957,-0.893188774585724,-0.0240017026662827,-0.309202462434769,-0.943200290203094,0.121520265936852,-0.164023414254189,-0.968274056911469,-0.188525080680847,-0.576094746589661,-0.815414071083069,0.0567004680633545,-0.309202462434769,-0.943200290203094,0.121520265936852,-0.449040979146957,-0.893188774585724,-0.0240017026662827,0.442761212587357,0.895858108997345,-0.0374268144369125,0.00138654571492225,0.447450637817383,-0.894307613372803,-0.00672459928318858,0.98332279920578,-0.181744500994682,0.00138654571492225,0.447450637817383,-0.894307613372803,-0.106869414448738,0.054711576551199,-0.992766618728638,-0.110965177416801,0.0850947797298431,-0.990174531936646,-0.862806022167206,-0.503126740455627,-0.0492890477180481,-0.0534424632787704,0.068704180419445,-0.996204674243927,-0.0547151491045952,0.0867767408490181,-0.994724094867706,0.00484753213822842,-0.214421525597572,0.976729214191437,0.00299689639359713,0.0688022449612617,0.997625827789307,0.0291725695133209,-0.00472401734441519,0.999563336372375,0.442761212587357,0.895858108997345,-0.0374268144369125,-0.106869414448738,0.054711576551199,-0.992766618728638,0.00138654571492225,0.447450637817383,-0.894307613372803,-0.98819887638092,-0.144830301403999,0.049872700124979,-0.0691189914941788,0.228343352675438,0.971124053001404,-0.00734347570687532,-0.0409189909696579,0.999135494232178,
- -0.00734347570687532,-0.0409189909696579,0.999135494232178,-0.0691189914941788,0.228343352675438,0.971124053001404,-0.135640770196915,0.207972392439842,0.968684196472168,0.0798604637384415,-0.217871606349945,-0.972704648971558,0.937058687210083,0.349162399768829,-0.00261935987509787,-0.085723988711834,0.274817317724228,-0.957667469978333,0.980124533176422,-0.197916269302368,-0.0136086633428931,0.876610517501831,0.478713065385818,-0.0488657057285309,0.995933055877686,0.0420612953603268,0.0796765387058258,-0.00672459928318858,0.98332279920578,-0.181744500994682,0.0466847307980061,0.988580524921417,0.143280237913132,0.103944048285484,0.992366492748261,0.0663654953241348,0.996806204319,-0.0594692192971706,0.0533008687198162,-0.135640770196915,0.207972392439842,0.968684196472168,0.0154868718236685,0.0086980639025569,0.999842345714569,0.856716752052307,0.507923543453217,0.0897227078676224,-0.902956068515778,-0.42809197306633,0.0375195220112801,-0.0691189914941788,0.228343352675438,0.971124053001404,-0.983364403247833,-0.175840243697166,0.0455494113266468,-0.0280688237398863,-0.119742155075073,0.992408215999603,0.00623789150267839,0.000668603111989796,0.999980390071869,-0.104337096214294,0.992694854736328,0.0605876371264458,-0.224236577749252,-0.973014295101166,-0.0544171370565891,0.00776489078998566,-0.566058933734894,-0.824328303337097,0.136562421917915,-0.0490058027207851,-0.989418625831604,-0.0691189914941788,0.228343352675438,0.971124053001404,0.0154868718236685,0.0086980639025569,0.999842345714569,-0.135640770196915,0.207972392439842,0.968684196472168,0.00776489078998566,-0.566058933734894,-0.824328303337097,0.00138654571492225,0.447450637817383,-0.894307613372803,-0.110965177416801,0.0850947797298431,-0.990174531936646,0.00776489078998566,-0.566058933734894,-0.824328303337097,-0.110965177416801,0.0850947797298431,-0.990174531936646,0.136562421917915,-0.0490058027207851,-0.989418625831604,-0.976877093315125,0.211943700909615,0.0281286276876926,0.00299689639359713,0.0688022449612617,0.997625827789307,0.00987419113516808,-0.0996207818388939,0.994976580142975,
- -0.977585256099701,-0.193122908473015,-0.0838495641946793,-0.98819887638092,-0.144830301403999,0.049872700124979,-0.568573653697968,-0.821894466876984,-0.0348365791141987,-0.908087611198425,0.416624933481216,-0.042435560375452,0.0609650164842606,-0.186506286263466,-0.980560421943665,-0.0255835521966219,-0.031770795583725,-0.999167680740356,-0.0255835521966219,-0.031770795583725,-0.999167680740356,-0.0534424632787704,0.068704180419445,-0.996204674243927,-0.862806022167206,-0.503126740455627,-0.0492890477180481,-0.908087611198425,0.416624933481216,-0.042435560375452,-0.976877093315125,0.211943700909615,0.0281286276876926,-0.987943947315216,-0.154707178473473,0.00569441542029381,0.00299689639359713,0.0688022449612617,0.997625827789307,-0.983346521854401,-0.165902569890022,-0.0742023959755898,-0.988537788391113,-0.131647914648056,-0.0739044100046158,-0.993135333061218,-0.108783766627312,0.0429934412240982,-0.718907117843628,-0.692943871021271,0.0547848120331764,-0.986078977584839,-0.113062284886837,-0.121923871338367,-0.894903481006622,-0.441627860069275,-0.064129576086998,-0.993135333061218,-0.108783766627312,0.0429934412240982,-0.988537788391113,-0.131647914648056,-0.0739044100046158,0.984349429607391,0.173034816980362,0.0333962514996529,0.991651952266693,0.0315060503780842,-0.125035613775253,0.907113134860992,0.414369463920593,-0.0737819820642471,0.997959315776825,0.0528304949402809,0.0358629375696182,0.334173053503037,0.599749147891998,-0.727069020271301,0.0170982703566551,-0.00770429195836186,-0.999824106693268,0.907113134860992,0.414369463920593,-0.0737819820642471,0.991651952266693,0.0315060503780842,-0.125035613775253,-0.085723988711834,0.274817317724228,-0.957667469978333,0.958942055702209,-0.28170844912529,-0.0327186696231365,0.0097861522808671,0.124474905431271,-0.992174565792084,0.898489892482758,0.438289105892181,-0.0248721037060022,0.985348045825958,0.147412225604057,0.0857845693826675,0.937058687210083,0.349162399768829,-0.00261935987509787,0.876610517501831,0.478713065385818,-0.0488657057285309,0.949437439441681,0.129496783018112,0.286005705595016,
- 0.995933055877686,0.0420612953603268,0.0796765387058258,0.00484753213822842,-0.214421525597572,0.976729214191437,0.0291725695133209,-0.00472401734441519,0.999563336372375,0.66314023733139,0.747830629348755,0.031535591930151,0.00484753213822842,-0.214421525597572,0.976729214191437,0.66314023733139,0.747830629348755,0.031535591930151,0.914728105068207,-0.379877656698227,-0.137715429067612,0.914728105068207,-0.379877656698227,-0.137715429067612,0.0350615233182907,0.0182474963366985,0.999218583106995,0.00484753213822842,-0.214421525597572,0.976729214191437,-0.224236577749252,-0.973014295101166,-0.0544171370565891,-0.0779548957943916,-0.994401514530182,0.0713355168700218,-0.0220749080181122,-0.881313264369965,0.472016543149948,-0.0867067500948906,-0.0155970510095358,0.996111869812012,-0.0220749080181122,-0.881313264369965,0.472016543149948,-0.0779548957943916,-0.994401514530182,0.0713355168700218,0.937058687210083,0.349162399768829,-0.00261935987509787,0.958942055702209,-0.28170844912529,-0.0327186696231365,-0.085723988711834,0.274817317724228,-0.957667469978333,0.0798604637384415,-0.217871606349945,-0.972704648971558,0.898489892482758,0.438289105892181,-0.0248721037060022,0.937058687210083,0.349162399768829,-0.00261935987509787,-0.0320689678192139,0.176921874284744,-0.983702301979065,-0.042223896831274,0.240461081266403,-0.969740092754364,0.0798604637384415,-0.217871606349945,-0.972704648971558,-0.0534424632787704,0.068704180419445,-0.996204674243927,-0.0255835521966219,-0.031770795583725,-0.999167680740356,0.194516912102699,-0.148067846894264,0.969659328460693,0.0744521245360374,-0.13503722846508,0.988039493560791,0.0589764080941677,-0.176888346672058,0.982462406158447,-0.987943947315216,-0.154707178473473,0.00569441542029381,-0.986202776432037,0.156499892473221,0.0539624243974686,-0.983346521854401,-0.165902569890022,-0.0742023959755898,-0.976877093315125,0.211943700909615,0.0281286276876926,-0.986202776432037,0.156499892473221,0.0539624243974686,-0.987943947315216,-0.154707178473473,0.00569441542029381,-0.976877093315125,0.211943700909615,0.0281286276876926,
- -0.862806022167206,-0.503126740455627,-0.0492890477180481,-0.986202776432037,0.156499892473221,0.0539624243974686,0.0253749154508114,0.312773853540421,0.949488699436188,0.0291725695133209,-0.00472401734441519,0.999563336372375,-0.0314546413719654,0.00800868589431047,0.999473094940186,-0.0282893162220716,-0.281907081604004,0.959024608135223,0.00987419113516808,-0.0996207818388939,0.994976580142975,-0.0878133028745651,0.264069974422455,0.960497736930847,-0.902956068515778,-0.42809197306633,0.0375195220112801,-0.976877093315125,0.211943700909615,0.0281286276876926,0.293660491704941,0.955747425556183,0.0176181495189667,0.858827650547028,0.510857760906219,0.0379394069314003,0.373409986495972,0.92445582151413,-0.0771132186055183,0.548793196678162,0.834280252456665,-0.0529375001788139,-0.449040979146957,-0.893188774585724,-0.0240017026662827,0.0747935548424721,-0.175843566656113,-0.981572687625885,-0.049983661621809,0.00286633730866015,-0.998746037483215,-0.568573653697968,-0.821894466876984,-0.0348365791141987,-0.389505445957184,-0.920617699623108,-0.0273638255894184,-0.582088112831116,-0.811699330806732,0.0481436774134636,-0.595180988311768,-0.802872955799103,0.033982016146183,-0.884203612804413,-0.465263545513153,-0.0413968302309513,-0.106869414448738,0.054711576551199,-0.992766618728638,0.136562421917915,-0.0490058027207851,-0.989418625831604,-0.110965177416801,0.0850947797298431,-0.990174531936646,0.756057679653168,0.650173187255859,-0.0751772001385689,0.480074167251587,0.87675952911377,-0.0286654643714428,0.305685728788376,0.951154887676239,0.0431357659399509,0.609077870845795,0.791904985904694,0.0437122993171215,0.224638044834137,0.97294020652771,-0.0540847703814507,-0.389505445957184,-0.920617699623108,-0.0273638255894184,-0.884203612804413,-0.465263545513153,-0.0413968302309513,0.0473151691257954,-0.0519327446818352,-0.997529149055481,-0.1942138671875,0.0968617722392082,-0.976165413856506,0.0393259264528751,0.0211514476686716,-0.999002575874329,0.224638044834137,0.97294020652771,-0.0540847703814507,0.384661167860031,0.914784848690033,-0.123306430876255,
- -0.0321181640028954,0.0283380821347237,-0.999082326889038,0.194516912102699,-0.148067846894264,0.969659328460693,0.139713630080223,-0.0550599545240402,0.988659977912903,0.0895822569727898,-0.0119250100106001,0.99590802192688,-0.357084810733795,0.189379692077637,0.914672613143921,0.0253749154508114,0.312773853540421,0.949488699436188,0.941959381103516,-0.329418420791626,-0.0647777169942856,0.985974133014679,-0.160862743854523,0.0444765873253345,0.0378074198961258,0.000313149765133858,-0.999284982681274,0.373409986495972,0.92445582151413,-0.0771132186055183,0.741774320602417,-0.493256688117981,-0.45438826084137,-0.0534424632787704,0.068704180419445,-0.996204674243927,-0.085723988711834,0.274817317724228,-0.957667469978333,-0.0547151491045952,0.0867767408490181,-0.994724094867706,0.00484753213822842,-0.214421525597572,0.976729214191437,0.0350615233182907,0.0182474963366985,0.999218583106995,0.00987419113516808,-0.0996207818388939,0.994976580142975,0.00299689639359713,0.0688022449612617,0.997625827789307,0.0473151691257954,-0.0519327446818352,-0.997529149055481,-0.0593476295471191,0.107224568724632,-0.992462038993835,0.0393259264528751,0.0211514476686716,-0.999002575874329,-0.1942138671875,0.0968617722392082,-0.976165413856506,0.0775302946567535,0.547373533248901,-0.833289384841919,0.508706212043762,0.670794010162354,-0.539679050445557,0.756057679653168,0.650173187255859,-0.0751772001385689,-0.0593476295471191,0.107224568724632,-0.992462038993835,0.170267209410667,-0.176419883966446,0.969476699829102,0.651252925395966,0.757641732692719,-0.0429970435798168,0.919078767299652,0.384791314601898,0.0850291401147842,-0.0209134891629219,0.0108206626027822,0.99972277879715,0.81212592124939,0.579500257968903,-0.0680513605475426,0.508706212043762,0.670794010162354,-0.539679050445557,0.794696092605591,0.606251120567322,0.0302974991500378,0.487993508577347,0.869551658630371,0.0757782757282257,0.0310534611344337,0.685161530971527,-0.72772890329361,0.0687947794795036,-0.400190860033035,-0.913846135139465,-0.478232771158218,0.057689193636179,0.876336395740509,
- -0.884203612804413,-0.465263545513153,-0.0413968302309513,-0.796165287494659,-0.317095190286636,-0.515336275100708,-0.0400979854166508,0.234117045998573,-0.97138124704361,0.0895822569727898,-0.0119250100106001,0.99590802192688,-0.0373563915491104,0.997820019721985,0.0544039644300938,0.651252925395966,0.757641732692719,-0.0429970435798168,0.170267209410667,-0.176419883966446,0.969476699829102,0.508706212043762,0.670794010162354,-0.539679050445557,0.480074167251587,0.87675952911377,-0.0286654643714428,0.756057679653168,0.650173187255859,-0.0751772001385689,-0.753702342510223,-0.643609583377838,-0.133040353655815,-0.357084810733795,0.189379692077637,0.914672613143921,-0.378161638975143,0.262110412120819,0.887858152389526,0.0473151691257954,-0.0519327446818352,-0.997529149055481,-0.884203612804413,-0.465263545513153,-0.0413968302309513,-0.0400979854166508,0.234117045998573,-0.97138124704361,0.0775302946567535,0.547373533248901,-0.833289384841919,-0.0319236889481544,0.113137796521187,-0.993066310882568,0.0473151691257954,-0.0519327446818352,-0.997529149055481,-0.0400979854166508,0.234117045998573,-0.97138124704361,0.0393259264528751,0.0211514476686716,-0.999002575874329,-0.0593476295471191,0.107224568724632,-0.992462038993835,0.756057679653168,0.650173187255859,-0.0751772001385689,0.224638044834137,0.97294020652771,-0.0540847703814507,0.259803950786591,-0.0161961894482374,-0.96552562713623,0.794696092605591,0.606251120567322,0.0302974991500378,0.508706212043762,0.670794010162354,-0.539679050445557,0.0775302946567535,0.547373533248901,-0.833289384841919,-0.104337096214294,0.992694854736328,0.0605876371264458,0.00623789150267839,0.000668603111989796,0.999980390071869,-0.0209134891629219,0.0108206626027822,0.99972277879715,0.919078767299652,0.384791314601898,0.0850291401147842,0.442761212587357,0.895858108997345,-0.0374268144369125,0.103944048285484,0.992366492748261,0.0663654953241348,0.487993508577347,0.869551658630371,0.0757782757282257,0.794696092605591,0.606251120567322,0.0302974991500378,0.115127004683018,0.991106331348419,-0.0667383447289467,
- -0.224236577749252,-0.973014295101166,-0.0544171370565891,0.136562421917915,-0.0490058027207851,-0.989418625831604,-0.0938858687877655,-0.00190548086538911,-0.995581209659576,-0.350698262453079,-0.935466408729553,-0.0437441244721413,0.136562421917915,-0.0490058027207851,-0.989418625831604,-0.106869414448738,0.054711576551199,-0.992766618728638,0.143135458230972,0.0266897287219763,-0.989343225955963,0.259803950786591,-0.0161961894482374,-0.96552562713623,-0.0938858687877655,-0.00190548086538911,-0.995581209659576,0.00623789150267839,0.000668603111989796,0.999980390071869,-0.0867067500948906,-0.0155970510095358,0.996111869812012,0.299379020929337,-0.123724296689034,0.946078538894653,-0.0209134891629219,0.0108206626027822,0.99972277879715,-0.0867067500948906,-0.0155970510095358,0.996111869812012,-0.0779548957943916,-0.994401514530182,0.0713355168700218,-0.638840734958649,-0.767081201076508,0.0588989555835724,0.299379020929337,-0.123724296689034,0.946078538894653,-0.638840734958649,-0.767081201076508,0.0588989555835724,-0.350698262453079,-0.935466408729553,-0.0437441244721413,-0.753702342510223,-0.643609583377838,-0.133040353655815,-0.753702342510223,-0.643609583377838,-0.133040353655815,-0.378161638975143,0.262110412120819,0.887858152389526,0.299379020929337,-0.123724296689034,0.946078538894653,0.143135458230972,0.0266897287219763,-0.989343225955963,-0.106869414448738,0.054711576551199,-0.992766618728638,0.442761212587357,0.895858108997345,-0.0374268144369125,0.115127004683018,0.991106331348419,-0.0667383447289467,-0.0593476295471191,0.107224568724632,-0.992462038993835,-0.0319236889481544,0.113137796521187,-0.993066310882568,0.0775302946567535,0.547373533248901,-0.833289384841919,0.305685728788376,0.951154887676239,0.0431357659399509,0.480074167251587,0.87675952911377,-0.0286654643714428,0.508706212043762,0.670794010162354,-0.539679050445557,0.81212592124939,0.579500257968903,-0.0680513605475426,-0.0593476295471191,0.107224568724632,-0.992462038993835,0.0473151691257954,-0.0519327446818352,-0.997529149055481,-0.0319236889481544,0.113137796521187,-0.993066310882568,
- -0.753702342510223,-0.643609583377838,-0.133040353655815,0.299379020929337,-0.123724296689034,0.946078538894653,-0.638840734958649,-0.767081201076508,0.0588989555835724,-0.357084810733795,0.189379692077637,0.914672613143921,0.170267209410667,-0.176419883966446,0.969476699829102,-0.378161638975143,0.262110412120819,0.887858152389526,0.0687947794795036,-0.400190860033035,-0.913846135139465,-0.66058474779129,-0.692889094352722,-0.289020001888275,0.338842123746872,0.939808011054993,0.0441261455416679,-0.0779548957943916,-0.994401514530182,0.0713355168700218,-0.224236577749252,-0.973014295101166,-0.0544171370565891,-0.350698262453079,-0.935466408729553,-0.0437441244721413,-0.638840734958649,-0.767081201076508,0.0588989555835724,-0.357084810733795,0.189379692077637,0.914672613143921,0.0895822569727898,-0.0119250100106001,0.99590802192688,0.170267209410667,-0.176419883966446,0.969476699829102,0.170267209410667,-0.176419883966446,0.969476699829102,-0.0209134891629219,0.0108206626027822,0.99972277879715,0.299379020929337,-0.123724296689034,0.946078538894653,0.170267209410667,-0.176419883966446,0.969476699829102,0.299379020929337,-0.123724296689034,0.946078538894653,-0.378161638975143,0.262110412120819,0.887858152389526,-0.595180988311768,-0.802872955799103,0.033982016146183,-0.357084810733795,0.189379692077637,0.914672613143921,-0.753702342510223,-0.643609583377838,-0.133040353655815,0.259803950786591,-0.0161961894482374,-0.96552562713623,-0.0400979854166508,0.234117045998573,-0.97138124704361,-0.0938858687877655,-0.00190548086538911,-0.995581209659576,0.260936796665192,-0.00388260721229017,-0.965348184108734,-0.0274031236767769,0.243787854909897,-0.969441413879395,0.0394216552376747,0.00210875784978271,-0.999220430850983,0.0322357527911663,0.0596757642924786,0.997697174549103,0.925378561019897,-0.376262605190277,0.0458387546241283,0.793192744255066,0.608163475990295,0.0313426963984966,0.040366105735302,-0.22816726565361,0.972784817218781,-0.997318267822266,0.0614046342670918,0.0398236587643623,-0.993818998336792,0.0234944447875023,-0.108498506247997,
- -0.845833957195282,0.00744702806696296,0.533394455909729,-0.0274031236767769,0.243787854909897,-0.969441413879395,0.260936796665192,-0.00388260721229017,-0.965348184108734,-0.423302203416824,0.014089884236455,-0.905879020690918,-0.763581812381744,-0.0179012157022953,-0.645462930202484,-0.845833957195282,0.00744702806696296,0.533394455909729,-0.993818998336792,0.0234944447875023,-0.108498506247997,-0.997318267822266,0.0614046342670918,0.0398236587643623,-0.0239977389574051,-0.0864723324775696,0.995965182781219,-0.0447082556784153,0.189867004752159,0.980791389942169,-0.883975327014923,-0.466373264789581,0.0329168252646923,-0.997318267822266,0.0614046342670918,0.0398236587643623,-0.845833957195282,0.00744702806696296,0.533394455909729,-0.0239977389574051,-0.0864723324775696,0.995965182781219,-0.763581812381744,-0.0179012157022953,-0.645462930202484,-0.0274031236767769,0.243787854909897,-0.969441413879395,-0.423302203416824,0.014089884236455,-0.905879020690918,-0.993818998336792,0.0234944447875023,-0.108498506247997,-0.0274031236767769,0.243787854909897,-0.969441413879395,-0.763581812381744,-0.0179012157022953,-0.645462930202484,-0.845833957195282,0.00744702806696296,0.533394455909729,0.0540665201842785,-0.0145428497344255,0.998431503772736,-0.0239977389574051,-0.0864723324775696,0.995965182781219,0.0322357527911663,0.0596757642924786,0.997697174549103,0.040366105735302,-0.22816726565361,0.972784817218781,-0.0447082556784153,0.189867004752159,0.980791389942169,-0.0239977389574051,-0.0864723324775696,0.995965182781219,-0.993818998336792,0.0234944447875023,-0.108498506247997,-0.997318267822266,0.0614046342670918,0.0398236587643623,-0.883975327014923,-0.466373264789581,0.0329168252646923,-0.980518400669098,-0.181218475103378,-0.0757861435413361,0.996614515781403,-0.0431619361042976,-0.0699766799807549,0.963936388492584,0.264815002679825,0.02645443379879,0.958799660205841,0.284048020839691,-0.00446488196030259,0.975643634796143,0.211623415350914,-0.0577504858374596,-0.993818998336792,0.0234944447875023,-0.108498506247997,
- -0.980518400669098,-0.181218475103378,-0.0757861435413361,-0.0360755249857903,-0.149595037102699,-0.988089025020599,-0.0274031236767769,0.243787854909897,-0.969441413879395,-0.0239977389574051,-0.0864723324775696,0.995965182781219,0.0540665201842785,-0.0145428497344255,0.998431503772736,0.0322357527911663,0.0596757642924786,0.997697174549103,-0.0360755249857903,-0.149595037102699,-0.988089025020599,0.0438458621501923,0.363675147294998,-0.930493474006653,0.0394216552376747,0.00210875784978271,-0.999220430850983,-0.0274031236767769,0.243787854909897,-0.969441413879395,0.334173053503037,0.599749147891998,-0.727069020271301,0.991651952266693,0.0315060503780842,-0.125035613775253,0.0438458621501923,0.363675147294998,-0.930493474006653,-0.980518400669098,-0.181218475103378,-0.0757861435413361,-0.883975327014923,-0.466373264789581,0.0329168252646923,-0.894903481006622,-0.441627860069275,-0.064129576086998,-0.986078977584839,-0.113062284886837,-0.121923871338367,0.040366105735302,-0.22816726565361,0.972784817218781,0.793192744255066,0.608163475990295,0.0313426963984966,0.941959381103516,-0.329418420791626,-0.0647777169942856,0.0581643879413605,-0.0331170819699764,0.99775767326355,-0.0360755249857903,-0.149595037102699,-0.988089025020599,-0.980518400669098,-0.181218475103378,-0.0757861435413361,-0.986078977584839,-0.113062284886837,-0.121923871338367,-0.0843829065561295,0.208510428667068,-0.974373161792755,-0.0360755249857903,-0.149595037102699,-0.988089025020599,-0.986078977584839,-0.113062284886837,-0.121923871338367,0.0394216552376747,0.00210875784978271,-0.999220430850983,0.0438458621501923,0.363675147294998,-0.930493474006653,0.996614515781403,-0.0431619361042976,-0.0699766799807549,0.975643634796143,0.211623415350914,-0.0577504858374596,0.0438458621501923,0.363675147294998,-0.930493474006653,-0.0843829065561295,0.208510428667068,-0.974373161792755,0.334173053503037,0.599749147891998,-0.727069020271301,0.963936388492584,0.264815002679825,0.02645443379879,0.996614515781403,-0.0431619361042976,-0.0699766799807549,0.991651952266693,0.0315060503780842,-0.125035613775253,
- 0.984349429607391,0.173034816980362,0.0333962514996529,0.0438458621501923,0.363675147294998,-0.930493474006653,-0.0360755249857903,-0.149595037102699,-0.988089025020599,-0.0843829065561295,0.208510428667068,-0.974373161792755,0.0581643879413605,-0.0331170819699764,0.99775767326355,0.217730909585953,-0.248498126864433,0.943844199180603,-0.0447082556784153,0.189867004752159,0.980791389942169,0.040366105735302,-0.22816726565361,0.972784817218781,-0.883975327014923,-0.466373264789581,0.0329168252646923,-0.0447082556784153,0.189867004752159,0.980791389942169,-0.894903481006622,-0.441627860069275,-0.064129576086998,-0.0345365665853024,0.0189061053097248,0.999224662780762,-0.0328274853527546,0.0371866747736931,0.998768985271454,-0.0341908782720566,-0.00051439058734104,0.999415159225464,-0.0370589308440685,-0.00265410006977618,0.999309539794922,-0.0372231863439083,-0.0215209666639566,0.99907523393631,-0.0328425690531731,-0.0164463985711336,0.999325275421143,0.0394216552376747,0.00210875784978271,-0.999220430850983,0.975643634796143,0.211623415350914,-0.0577504858374596,0.936675310134888,0.00241860607638955,-0.350190699100494,0.260936796665192,-0.00388260721229017,-0.965348184108734,0.0540665201842785,-0.0145428497344255,0.998431503772736,0.925378561019897,-0.376262605190277,0.0458387546241283,0.0322357527911663,0.0596757642924786,0.997697174549103,0.931775391101837,0.0259582307189703,-0.362106323242188,0.936675310134888,0.00241860607638955,-0.350190699100494,0.975643634796143,0.211623415350914,-0.0577504858374596,0.958799660205841,0.284048020839691,-0.00446488196030259,0.0253749154508114,0.312773853540421,0.949488699436188,0.0581643879413605,-0.0331170819699764,0.99775767326355,0.941959381103516,-0.329418420791626,-0.0647777169942856,-0.0878133028745651,0.264069974422455,0.960497736930847,0.0680563449859619,-0.106701545417309,0.99195921421051,-0.0691189914941788,0.228343352675438,0.971124053001404,0.00299689639359713,0.0688022449612617,0.997625827789307,-0.0314546413719654,0.00800868589431047,0.999473094940186,0.0291725695133209,-0.00472401734441519,0.999563336372375,
- -0.987943947315216,-0.154707178473473,0.00569441542029381,-0.718907117843628,-0.692943871021271,0.0547848120331764,-0.0314546413719654,0.00800868589431047,0.999473094940186,0.00299689639359713,0.0688022449612617,0.997625827789307,-0.983346521854401,-0.165902569890022,-0.0742023959755898,-0.718907117843628,-0.692943871021271,0.0547848120331764,-0.987943947315216,-0.154707178473473,0.00569441542029381,-0.0400979854166508,0.234117045998573,-0.97138124704361,-0.350698262453079,-0.935466408729553,-0.0437441244721413,-0.0938858687877655,-0.00190548086538911,-0.995581209659576,0.0798604637384415,-0.217871606349945,-0.972704648971558,-0.085723988711834,0.274817317724228,-0.957667469978333,-0.0534424632787704,0.068704180419445,-0.996204674243927,0.985348045825958,0.147412225604057,0.0857845693826675,0.898489892482758,0.438289105892181,-0.0248721037060022,0.968256771564484,0.248595908284187,-0.0260590463876724,0.980124533176422,-0.197916269302368,-0.0136086633428931,0.995933055877686,0.0420612953603268,0.0796765387058258,0.741774320602417,-0.493256688117981,-0.45438826084137,-0.0320689678192139,0.176921874284744,-0.983702301979065,-0.0255835521966219,-0.031770795583725,-0.999167680740356,0.0438458621501923,0.363675147294998,-0.930493474006653,0.991651952266693,0.0315060503780842,-0.125035613775253,0.996614515781403,-0.0431619361042976,-0.0699766799807549,0.0291887726634741,0.00114353571552783,0.999573349952698,0.139713630080223,-0.0550599545240402,0.988659977912903,0.0589764080941677,-0.176888346672058,0.982462406158447,0.0744521245360374,-0.13503722846508,0.988039493560791,0.139713630080223,-0.0550599545240402,0.988659977912903,0.873736977577209,0.484399139881134,0.0440606810152531,-0.0373563915491104,0.997820019721985,0.0544039644300938,0.0895822569727898,-0.0119250100106001,0.99590802192688,0.0680563449859619,-0.106701545417309,0.99195921421051,0.0154868718236685,0.0086980639025569,0.999842345714569,-0.0691189914941788,0.228343352675438,0.971124053001404,0.856716752052307,0.507923543453217,0.0897227078676224,0.0154868718236685,0.0086980639025569,0.999842345714569,
- 0.0680563449859619,-0.106701545417309,0.99195921421051,0.926781177520752,0.36505663394928,0.0883757919073105,0.856716752052307,0.507923543453217,0.0897227078676224,0.0680563449859619,-0.106701545417309,0.99195921421051,0.0747935548424721,-0.175843566656113,-0.981572687625885,-0.227043002843857,0.372822880744934,-0.899697005748749,0.0378074198961258,0.000313149765133858,-0.999284982681274,-0.049983661621809,0.00286633730866015,-0.998746037483215,-0.902956068515778,-0.42809197306633,0.0375195220112801,-0.983364403247833,-0.175840243697166,0.0455494113266468,-0.977585256099701,-0.193122908473015,-0.0838495641946793,-0.983364403247833,-0.175840243697166,0.0455494113266468,-0.98819887638092,-0.144830301403999,0.049872700124979,-0.977585256099701,-0.193122908473015,-0.0838495641946793,0.858827650547028,0.510857760906219,0.0379394069314003,0.949437439441681,0.129496783018112,0.286005705595016,0.876610517501831,0.478713065385818,-0.0488657057285309,0.968256771564484,0.248595908284187,-0.0260590463876724,0.898489892482758,0.438289105892181,-0.0248721037060022,0.0798604637384415,-0.217871606349945,-0.972704648971558,-0.042223896831274,0.240461081266403,-0.969740092754364,0.980124533176422,-0.197916269302368,-0.0136086633428931,0.968256771564484,0.248595908284187,-0.0260590463876724,-0.042223896831274,0.240461081266403,-0.969740092754364,0.958942055702209,-0.28170844912529,-0.0327186696231365,0.997180998325348,0.0507301725447178,-0.0552863068878651,0.0226718131452799,-0.0467447675764561,-0.998649537563324,0.0097861522808671,0.124474905431271,-0.992174565792084,0.0226718131452799,-0.0467447675764561,-0.998649537563324,0.997180998325348,0.0507301725447178,-0.0552863068878651,0.907113134860992,0.414369463920593,-0.0737819820642471,0.0170982703566551,-0.00770429195836186,-0.999824106693268,-0.884203612804413,-0.465263545513153,-0.0413968302309513,-0.595180988311768,-0.802872955799103,0.033982016146183,-0.753702342510223,-0.643609583377838,-0.133040353655815,-0.796165287494659,-0.317095190286636,-0.515336275100708,-0.350698262453079,-0.935466408729553,-0.0437441244721413,
- -0.796165287494659,-0.317095190286636,-0.515336275100708,-0.753702342510223,-0.643609583377838,-0.133040353655815,0.217730909585953,-0.248498126864433,0.943844199180603,-0.0282893162220716,-0.281907081604004,0.959024608135223,-0.894903481006622,-0.441627860069275,-0.064129576086998,-0.0447082556784153,0.189867004752159,0.980791389942169,0.217730909585953,-0.248498126864433,0.943844199180603,-0.894903481006622,-0.441627860069275,-0.064129576086998,0.194516912102699,-0.148067846894264,0.969659328460693,0.0589764080941677,-0.176888346672058,0.982462406158447,0.139713630080223,-0.0550599545240402,0.988659977912903,0.194516912102699,-0.148067846894264,0.969659328460693,-0.309202462434769,-0.943200290203094,0.121520265936852,0.0744521245360374,-0.13503722846508,0.988039493560791,0.0167707819491625,0.281120777130127,0.959525942802429,0.0152614479884505,-0.176459670066834,0.984189569950104,-0.0379197560250759,0.312591224908829,0.949130594730377,-0.0347497388720512,-0.0388606078922749,0.998640298843384,-0.0341817066073418,0.202346295118332,0.978717386722565,-0.998002290725708,-0.0468839108943939,0.0423500798642635,-0.962297260761261,0.268525242805481,0.0433374047279358,-0.0398499630391598,-0.125758334994316,0.991260290145874,-0.879748940467834,0.0142016094177961,0.475226491689682,-0.0416384004056454,0.0895203575491905,0.995114266872406,0.00471647316589952,-0.0011177163105458,0.999988257884979,-0.1288181245327,0.0241341516375542,0.991374611854553,0.0455008484423161,0.0209132246673107,-0.998745441436768,-0.00761957000941038,0.241504907608032,-0.970369696617126,0.03246009349823,-0.290955513715744,-0.956185877323151,0.0586741268634796,0.0294868461787701,0.997841715812683,0.038767896592617,0.150996863842011,0.987773835659027,-0.0398499630391598,-0.125758334994316,0.991260290145874,-0.10117007791996,-0.0559688396751881,0.993293642997742,0.0118546560406685,-0.12772661447525,-0.991738617420197,0.127764031291008,0.0666771084070206,-0.989560782909393,-0.118302278220654,0.0657960548996925,-0.990795373916626,-0.998016119003296,0.0517703965306282,0.0358277596533298,
- -0.996983051300049,-0.0650612637400627,0.042332012206316,-0.981924653053284,0.184269025921822,-0.0432318449020386,-0.885940849781036,-0.462365478277206,-0.036429725587368,-0.0295530036091805,0.301919221878052,-0.952875375747681,-0.0249322336167097,-0.148188829421997,-0.988644778728485,0.0123652229085565,0.110073886811733,-0.993846535682678,0.0189622938632965,-0.0658356994390488,-0.997650325298309,0.0118546560406685,-0.12772661447525,-0.991738617420197,-0.0447469837963581,0.233907341957092,-0.971228718757629,0.0123652229085565,0.110073886811733,-0.993846535682678,-0.0249322336167097,-0.148188829421997,-0.988644778728485,-0.947992265224457,-0.313491761684418,-0.0550783760845661,-0.991620242595673,-0.128240138292313,0.0156130958348513,-0.919076263904572,-0.393056213855743,0.0283864159137011,-0.966565191745758,0.250941127538681,-0.0527295470237732,-0.0491411499679089,0.0016192807815969,-0.998790621757507,0.029702465981245,-0.0188376996666193,-0.999381363391876,-0.0853871554136276,0.0856646001338959,-0.99265843629837,0.265935182571411,-0.352722436189651,-0.897142887115479,0.0455008484423161,0.0209132246673107,-0.998745441436768,0.0389268510043621,0.22237454354763,-0.974183976650238,-0.0454764850437641,-0.144860908389091,-0.988406419754028,0.898663938045502,-0.398744404315948,-0.18277308344841,0.902480602264404,-0.430633157491684,0.00916305836290121,0.985233068466187,-0.158674582839012,-0.0643288865685463,0.982659518718719,-0.185411885380745,-0.00165866548195481,0.0231487452983856,0.209460377693176,-0.97754317522049,0.0119777712970972,0.200708344578743,-0.979577839374542,-0.0295530036091805,0.301919221878052,-0.952875375747681,-0.98351377248764,-0.163281410932541,-0.0777168497443199,-0.99604344367981,0.0113631701096892,-0.0881385877728462,-0.0249322336167097,-0.148188829421997,-0.988644778728485,-0.0853871554136276,0.0856646001338959,-0.99265843629837,0.848279595375061,0.520671129226685,-0.0965582802891731,0.869622349739075,0.440367192029953,-0.223234802484512,0.924297988414764,0.381670743227005,-0.000925514963455498,0.975735008716583,0.209618806838989,0.0632565468549728,
- 0.760927081108093,0.536264479160309,0.365253955125809,-0.0454764850437641,-0.144860908389091,-0.988406419754028,-0.981924653053284,0.184269025921822,-0.0432318449020386,-0.954037964344025,0.297307133674622,-0.0376837439835072,0.98147052526474,-0.183675780892372,-0.0545805394649506,0.819995045661926,-0.571769893169403,0.0262211002409458,0.902480602264404,-0.430633157491684,0.00916305836290121,0.898663938045502,-0.398744404315948,-0.18277308344841,0.0124452002346516,0.0429487824440002,0.998999774456024,0.0181030742824078,0.0292193181812763,0.999409139156342,0.0128784589469433,-0.0221295766532421,0.99967223405838,0.910344898700714,-0.412027716636658,-0.0388001911342144,0.924297988414764,0.381670743227005,-0.000925514963455498,0.98910927772522,0.143211081624031,0.0339631363749504,0.948105156421661,0.317640572786331,0.0141850393265486,0.0152614479884505,-0.176459670066834,0.984189569950104,0.0167707819491625,0.281120777130127,0.959525942802429,0.99102658033371,-0.130883634090424,0.0271279625594616,0.985233068466187,-0.158674582839012,-0.0643288865685463,0.902480602264404,-0.430633157491684,0.00916305836290121,0.948105156421661,0.317640572786331,0.0141850393265486,-0.966565191745758,0.250941127538681,-0.0527295470237732,-0.919076263904572,-0.393056213855743,0.0283864159137011,-0.916501045227051,-0.398967295885086,0.0291726905852556,-0.885940849781036,-0.462365478277206,-0.036429725587368,0.265935182571411,-0.352722436189651,-0.897142887115479,-0.916501045227051,-0.398967295885086,0.0291726905852556,0.0107735125347972,-0.0256651267409325,0.999612510204315,0.0100321210920811,0.0189374070614576,0.999770402908325,0.0124452002346516,0.0429487824440002,0.998999774456024,0.0128784589469433,-0.0221295766532421,0.99967223405838,0.996817588806152,-0.0632248297333717,0.0485540591180325,0.937271058559418,-0.346153914928436,-0.0412360094487667,0.967735409736633,0.00738996267318726,-0.251860588788986,-0.0853871554136276,0.0856646001338959,-0.99265843629837,-0.0324660688638687,-0.0717795118689537,-0.996892035007477,0.265935182571411,-0.352722436189651,-0.897142887115479,
- -0.916501045227051,-0.398967295885086,0.0291726905852556,0.265935182571411,-0.352722436189651,-0.897142887115479,-0.966565191745758,0.250941127538681,-0.0527295470237732,-0.0379197560250759,0.312591224908829,0.949130594730377,-0.996983051300049,-0.0650612637400627,0.042332012206316,-0.998016119003296,0.0517703965306282,0.0358277596533298,-0.0347497388720512,-0.0388606078922749,0.998640298843384,-0.0379197560250759,0.312591224908829,0.949130594730377,-0.022320207208395,-0.0569835640490055,0.998125612735748,-0.0697250515222549,0.155699715018272,0.985340595245361,-0.0155502166599035,-0.102128744125366,0.994649648666382,0.0414807200431824,0.0485845021903515,0.997957408428192,0.0398441553115845,-0.0989152789115906,0.994297921657562,-0.0201905015856028,0.230829805135727,0.972784698009491,-0.992775499820709,0.113944798707962,0.0375938378274441,-0.994640648365021,0.0959402322769165,-0.038543451577425,-0.984303295612335,0.101144455373287,0.144626632332802,-0.962297260761261,0.268525242805481,0.0433374047279358,-0.840093374252319,0.381325274705887,0.385790407657623,-0.0398499630391598,-0.125758334994316,0.991260290145874,-0.0689524635672569,0.0261440221220255,0.99727737903595,-0.998016119003296,0.0517703965306282,0.0358277596533298,-0.937962234020233,-0.34299647808075,0.0507982149720192,-0.00761957000941038,0.241504907608032,-0.970369696617126,0.0455008484423161,0.0209132246673107,-0.998745441436768,0.114821575582027,0.260526180267334,-0.958614766597748,-0.954037964344025,0.297307133674622,-0.0376837439835072,-0.984303295612335,0.101144455373287,0.144626632332802,-0.994640648365021,0.0959402322769165,-0.038543451577425,-0.0689524635672569,0.0261440221220255,0.99727737903595,-0.919076263904572,-0.393056213855743,0.0283864159137011,-0.0201905015856028,0.230829805135727,0.972784698009491,-0.992775499820709,0.113944798707962,0.0375938378274441,-0.0384612046182156,-0.243762880563736,0.969071924686432,-0.0211782306432724,0.382954150438309,0.923524677753448,-0.999126136302948,-0.0216005053371191,0.0357844866812229,-0.992775499820709,0.113944798707962,0.0375938378274441,
- -0.984303295612335,0.101144455373287,0.144626632332802,-0.0384612046182156,-0.243762880563736,0.969071924686432,-0.984303295612335,0.101144455373287,0.144626632332802,-0.0379197560250759,0.312591224908829,0.949130594730377,-0.0697250515222549,0.155699715018272,0.985340595245361,-0.815506100654602,-0.38905543088913,-0.428469061851501,-0.98351377248764,-0.163281410932541,-0.0777168497443199,-0.0295530036091805,0.301919221878052,-0.952875375747681,0.114821575582027,0.260526180267334,-0.958614766597748,0.0455008484423161,0.0209132246673107,-0.998745441436768,-0.0454764850437641,-0.144860908389091,-0.988406419754028,0.869622349739075,0.440367192029953,-0.223234802484512,0.848279595375061,0.520671129226685,-0.0965582802891731,0.994256496429443,0.105833791196346,0.0159205626696348,0.975761711597443,0.215524703264236,-0.037923626601696,0.0152614479884505,-0.176459670066834,0.984189569950104,0.948105156421661,0.317640572786331,0.0141850393265486,0.975761711597443,0.215524703264236,-0.037923626601696,0.827927231788635,-0.560217559337616,0.0263258777558804,0.0160803105682135,-0.142632827162743,0.989645004272461,-0.022320207208395,-0.0569835640490055,0.998125612735748,0.83135724067688,0.454938381910324,0.319180607795715,0.966521203517914,0.248875126242638,0.0624342262744904,0.0414807200431824,0.0485845021903515,0.997957408428192,0.760927081108093,0.536264479160309,0.365253955125809,0.98910927772522,0.143211081624031,0.0339631363749504,0.924297988414764,0.381670743227005,-0.000925514963455498,0.038767896592617,0.150996863842011,0.987773835659027,0.947666704654694,-0.31666898727417,0.0406033247709274,0.857627391815186,0.513231217861176,0.032698031514883,0.030142180621624,-0.0292974598705769,0.999116182327271,-0.995167076587677,0.0718116983771324,-0.0669742003083229,-0.879748940467834,0.0142016094177961,0.475226491689682,-0.570372700691223,-0.0103997346013784,-0.821320235729218,-0.022320207208395,-0.0569835640490055,0.998125612735748,0.0152614479884505,-0.176459670066834,0.984189569950104,0.975761711597443,0.215524703264236,-0.037923626601696,
- -0.0379197560250759,0.312591224908829,0.949130594730377,0.0152614479884505,-0.176459670066834,0.984189569950104,-0.022320207208395,-0.0569835640490055,0.998125612735748,0.982659518718719,-0.185411885380745,-0.00165866548195481,0.0119777712970972,0.200708344578743,-0.979577839374542,-0.0853871554136276,0.0856646001338959,-0.99265843629837,-0.994404673576355,-0.0334594510495663,-0.100199356675148,-0.947992265224457,-0.313491761684418,-0.0550783760845661,-0.0417245626449585,0.0770661234855652,-0.996152579784393,-0.0454764850437641,-0.144860908389091,-0.988406419754028,-0.954037964344025,0.297307133674622,-0.0376837439835072,0.114821575582027,0.260526180267334,-0.958614766597748,-0.954037964344025,0.297307133674622,-0.0376837439835072,-0.00761957000941038,0.241504907608032,-0.970369696617126,0.114821575582027,0.260526180267334,-0.958614766597748,-0.0853871554136276,0.0856646001338959,-0.99265843629837,0.869622349739075,0.440367192029953,-0.223234802484512,0.982659518718719,-0.185411885380745,-0.00165866548195481,0.910344898700714,-0.412027716636658,-0.0388001911342144,0.98910927772522,0.143211081624031,0.0339631363749504,0.880681455135345,-0.471819847822189,0.0422631651163101,0.995680749416351,-0.0827580690383911,-0.0420848093926907,0.997867524623871,0.0376023277640343,-0.0533523410558701,-0.994640648365021,0.0959402322769165,-0.038543451577425,-0.00761957000941038,0.241504907608032,-0.970369696617126,-0.954037964344025,0.297307133674622,-0.0376837439835072,-0.0295530036091805,0.301919221878052,-0.952875375747681,-0.118302278220654,0.0657960548996925,-0.990795373916626,-0.815506100654602,-0.38905543088913,-0.428469061851501,0.0118546560406685,-0.12772661447525,-0.991738617420197,-0.118302278220654,0.0657960548996925,-0.990795373916626,-0.0295530036091805,0.301919221878052,-0.952875375747681,0.966521203517914,0.248875126242638,0.0624342262744904,0.940517425537109,0.332032293081284,0.0719827115535736,0.0398441553115845,-0.0989152789115906,0.994297921657562,0.0414807200431824,0.0485845021903515,0.997957408428192,-0.0249322336167097,-0.148188829421997,-0.988644778728485,
- -0.99604344367981,0.0113631701096892,-0.0881385877728462,-0.994404673576355,-0.0334594510495663,-0.100199356675148,-0.0417245626449585,0.0770661234855652,-0.996152579784393,-0.0417245626449585,0.0770661234855652,-0.996152579784393,-0.0447469837963581,0.233907341957092,-0.971228718757629,-0.0249322336167097,-0.148188829421997,-0.988644778728485,-0.0491411499679089,0.0016192807815969,-0.998790621757507,0.265935182571411,-0.352722436189651,-0.897142887115479,-0.885940849781036,-0.462365478277206,-0.036429725587368,0.0455008484423161,0.0209132246673107,-0.998745441436768,0.898663938045502,-0.398744404315948,-0.18277308344841,0.0389268510043621,0.22237454354763,-0.974183976650238,0.0453416742384434,-0.111347213387489,-0.992746710777283,0.992639243602753,0.09535101801157,-0.0746699273586273,0.998035430908203,-0.0553969293832779,-0.0292683467268944,0.0332548879086971,-0.239556267857552,-0.970312833786011,-0.996983051300049,-0.0650612637400627,0.042332012206316,-0.0379197560250759,0.312591224908829,0.949130594730377,-0.984303295612335,0.101144455373287,0.144626632332802,0.029702465981245,-0.0188376996666193,-0.999381363391876,0.0389268510043621,0.22237454354763,-0.974183976650238,0.985233068466187,-0.158674582839012,-0.0643288865685463,0.848279595375061,0.520671129226685,-0.0965582802891731,0.0389268510043621,0.22237454354763,-0.974183976650238,0.898663938045502,-0.398744404315948,-0.18277308344841,0.985233068466187,-0.158674582839012,-0.0643288865685463,-0.981924653053284,0.184269025921822,-0.0432318449020386,-0.984303295612335,0.101144455373287,0.144626632332802,-0.954037964344025,0.297307133674622,-0.0376837439835072,-0.996983051300049,-0.0650612637400627,0.042332012206316,-0.984303295612335,0.101144455373287,0.144626632332802,-0.981924653053284,0.184269025921822,-0.0432318449020386,0.937271058559418,-0.346153914928436,-0.0412360094487667,0.44880598783493,0.00406468054279685,-0.893619954586029,0.967735409736633,0.00738996267318726,-0.251860588788986,0.44880598783493,0.00406468054279685,-0.893619954586029,0.0236574523150921,0.113393671810627,-0.993268489837646,
- 0.0635727569460869,0.0975708141922951,-0.993196070194244,-0.947992265224457,-0.313491761684418,-0.0550783760845661,-0.0311214532703161,0.0707291588187218,-0.997009932994843,-0.0417245626449585,0.0770661234855652,-0.996152579784393,0.0621086433529854,-0.112711817026138,0.991684794425964,0.053862389177084,-0.189466908574104,0.980408668518066,0.030142180621624,-0.0292974598705769,0.999116182327271,0.937271058559418,-0.346153914928436,-0.0412360094487667,0.0236574523150921,0.113393671810627,-0.993268489837646,0.44880598783493,0.00406468054279685,-0.893619954586029,-0.998016119003296,0.0517703965306282,0.0358277596533298,-0.0689524635672569,0.0261440221220255,0.99727737903595,-0.0347497388720512,-0.0388606078922749,0.998640298843384,-0.0347497388720512,-0.0388606078922749,0.998640298843384,-0.0689524635672569,0.0261440221220255,0.99727737903595,0.0167707819491625,0.281120777130127,0.959525942802429,0.0132666956633329,-0.224633604288101,-0.974353075027466,0.924297988414764,0.381670743227005,-0.000925514963455498,-0.0447469837963581,0.233907341957092,-0.971228718757629,0.982659518718719,-0.185411885380745,-0.00165866548195481,0.869622349739075,0.440367192029953,-0.223234802484512,0.948884665966034,0.307259052991867,0.0721789225935936,0.967735409736633,0.00738996267318726,-0.251860588788986,0.989965796470642,-0.0355650335550308,0.136758968234062,0.996817588806152,-0.0632248297333717,0.0485540591180325,0.99102658033371,-0.130883634090424,0.0271279625594616,0.0167707819491625,0.281120777130127,0.959525942802429,-0.197215750813484,0.370445668697357,0.907676219940186,0.941279709339142,0.327483475208282,0.0821404531598091,-0.919076263904572,-0.393056213855743,0.0283864159137011,-0.0689524635672569,0.0261440221220255,0.99727737903595,-0.937962234020233,-0.34299647808075,0.0507982149720192,-0.1288181245327,0.0241341516375542,0.991374611854553,0.00471647316589952,-0.0011177163105458,0.999988257884979,0.953002393245697,0.300300478935242,0.0400788187980652,-0.995167076587677,0.0718116983771324,-0.0669742003083229,-0.570372700691223,-0.0103997346013784,-0.821320235729218,
- -0.0240583550184965,-0.134947016835213,-0.990560710430145,-0.0689524635672569,0.0261440221220255,0.99727737903595,-0.197215750813484,0.370445668697357,0.907676219940186,0.0167707819491625,0.281120777130127,0.959525942802429,-0.570372700691223,-0.0103997346013784,-0.821320235729218,0.44880598783493,0.00406468054279685,-0.893619954586029,0.0635727569460869,0.0975708141922951,-0.993196070194244,-0.570372700691223,-0.0103997346013784,-0.821320235729218,0.0635727569460869,0.0975708141922951,-0.993196070194244,-0.0240583550184965,-0.134947016835213,-0.990560710430145,-0.991620242595673,-0.128240138292313,0.0156130958348513,0.053862389177084,-0.189466908574104,0.980408668518066,-0.0155502166599035,-0.102128744125366,0.994649648666382,-0.916501045227051,-0.398967295885086,0.0291726905852556,-0.998016119003296,0.0517703965306282,0.0358277596533298,-0.885940849781036,-0.462365478277206,-0.036429725587368,-0.966565191745758,0.250941127538681,-0.0527295470237732,0.265935182571411,-0.352722436189651,-0.897142887115479,-0.0324660688638687,-0.0717795118689537,-0.996892035007477,-0.0324660688638687,-0.0717795118689537,-0.996892035007477,-0.0311214532703161,0.0707291588187218,-0.997009932994843,-0.947992265224457,-0.313491761684418,-0.0550783760845661,-0.966565191745758,0.250941127538681,-0.0527295470237732,-0.991620242595673,-0.128240138292313,0.0156130958348513,-0.964117884635925,-0.263974577188492,0.0281840059906244,0.053862389177084,-0.189466908574104,0.980408668518066,-0.99604344367981,0.0113631701096892,-0.0881385877728462,-0.98351377248764,-0.163281410932541,-0.0777168497443199,-0.962297260761261,0.268525242805481,0.0433374047279358,-0.998002290725708,-0.0468839108943939,0.0423500798642635,-0.815506100654602,-0.38905543088913,-0.428469061851501,-0.840093374252319,0.381325274705887,0.385790407657623,-0.962297260761261,0.268525242805481,0.0433374047279358,-0.98351377248764,-0.163281410932541,-0.0777168497443199,0.910861670970917,-0.285323321819305,0.298197746276855,0.945562243461609,0.12594735622406,-0.300082147121429,0.995680749416351,-0.0827580690383911,-0.0420848093926907,
- 0.880681455135345,-0.471819847822189,0.0422631651163101,0.127764031291008,0.0666771084070206,-0.989560782909393,0.0118546560406685,-0.12772661447525,-0.991738617420197,0.995680749416351,-0.0827580690383911,-0.0420848093926907,0.945562243461609,0.12594735622406,-0.300082147121429,-0.0447469837963581,0.233907341957092,-0.971228718757629,0.910344898700714,-0.412027716636658,-0.0388001911342144,0.0123652229085565,0.110073886811733,-0.993846535682678,0.964803636074066,0.259566903114319,-0.0421785339713097,0.975735008716583,0.209618806838989,0.0632565468549728,0.924297988414764,0.381670743227005,-0.000925514963455498,0.869622349739075,0.440367192029953,-0.223234802484512,0.90549099445343,0.418562412261963,0.0699412748217583,0.948884665966034,0.307259052991867,0.0721789225935936,0.0621086433529854,-0.112711817026138,0.991684794425964,0.030142180621624,-0.0292974598705769,0.999116182327271,0.857627391815186,0.513231217861176,0.032698031514883,0.0621086433529854,-0.112711817026138,0.991684794425964,0.857627391815186,0.513231217861176,0.032698031514883,0.83135724067688,0.454938381910324,0.319180607795715,0.83135724067688,0.454938381910324,0.319180607795715,0.0414807200431824,0.0485845021903515,0.997957408428192,0.0621086433529854,-0.112711817026138,0.991684794425964,-0.995167076587677,0.0718116983771324,-0.0669742003083229,-0.995670974254608,-0.079033225774765,0.0489193350076675,-0.879748940467834,0.0142016094177961,0.475226491689682,-0.0416384004056454,0.0895203575491905,0.995114266872406,-0.879748940467834,0.0142016094177961,0.475226491689682,-0.995670974254608,-0.079033225774765,0.0489193350076675,0.924297988414764,0.381670743227005,-0.000925514963455498,0.910344898700714,-0.412027716636658,-0.0388001911342144,-0.0447469837963581,0.233907341957092,-0.971228718757629,0.0132666956633329,-0.224633604288101,-0.974353075027466,0.964803636074066,0.259566903114319,-0.0421785339713097,0.924297988414764,0.381670743227005,-0.000925514963455498,0.0119777712970972,0.200708344578743,-0.979577839374542,0.0231487452983856,0.209460377693176,-0.97754317522049,
- 0.0132666956633329,-0.224633604288101,-0.974353075027466,-0.0311214532703161,0.0707291588187218,-0.997009932994843,-0.0324660688638687,-0.0717795118689537,-0.996892035007477,-0.0384612046182156,-0.243762880563736,0.969071924686432,-0.0697250515222549,0.155699715018272,0.985340595245361,-0.128399461507797,-0.116524420678616,0.984853148460388,-0.964117884635925,-0.263974577188492,0.0281840059906244,-0.994404673576355,-0.0334594510495663,-0.100199356675148,-0.99604344367981,0.0113631701096892,-0.0881385877728462,-0.991620242595673,-0.128240138292313,0.0156130958348513,-0.994404673576355,-0.0334594510495663,-0.100199356675148,-0.964117884635925,-0.263974577188492,0.0281840059906244,-0.991620242595673,-0.128240138292313,0.0156130958348513,-0.947992265224457,-0.313491761684418,-0.0550783760845661,-0.994404673576355,-0.0334594510495663,-0.100199356675148,0.038767896592617,0.150996863842011,0.987773835659027,0.030142180621624,-0.0292974598705769,0.999116182327271,-0.0341817066073418,0.202346295118332,0.978717386722565,-0.0398499630391598,-0.125758334994316,0.991260290145874,-0.0155502166599035,-0.102128744125366,0.994649648666382,-0.0201905015856028,0.230829805135727,0.972784698009491,-0.919076263904572,-0.393056213855743,0.0283864159137011,-0.991620242595673,-0.128240138292313,0.0156130958348513,0.948105156421661,0.317640572786331,0.0141850393265486,0.994256496429443,0.105833791196346,0.0159205626696348,0.848279595375061,0.520671129226685,-0.0965582802891731,0.985233068466187,-0.158674582839012,-0.0643288865685463,-0.981924653053284,0.184269025921822,-0.0432318449020386,-0.0454764850437641,-0.144860908389091,-0.988406419754028,-0.0491411499679089,0.0016192807815969,-0.998790621757507,-0.885940849781036,-0.462365478277206,-0.036429725587368,-0.994640648365021,0.0959402322769165,-0.038543451577425,-0.992775499820709,0.113944798707962,0.0375938378274441,-0.999126136302948,-0.0216005053371191,0.0357844866812229,-0.974510788917542,0.221623092889786,-0.0348144024610519,0.0236574523150921,0.113393671810627,-0.993268489837646,-0.0240583550184965,-0.134947016835213,-0.990560710430145,
- 0.0635727569460869,0.0975708141922951,-0.993196070194244,0.95556777715683,-0.286232173442841,-0.0704382583498955,0.999657273292542,-0.009649190120399,-0.0243358854204416,0.977223515510559,0.210034146904945,0.030331127345562,0.819995045661926,-0.571769893169403,0.0262211002409458,0.98147052526474,-0.183675780892372,-0.0545805394649506,-0.994640648365021,0.0959402322769165,-0.038543451577425,-0.974510788917542,0.221623092889786,-0.0348144024610519,-0.0199056230485439,-0.1026206985116,-0.99452143907547,-0.00761957000941038,0.241504907608032,-0.970369696617126,0.03246009349823,-0.290955513715744,-0.956185877323151,0.98147052526474,-0.183675780892372,-0.0545805394649506,0.898663938045502,-0.398744404315948,-0.18277308344841,0.0455008484423161,0.0209132246673107,-0.998745441436768,-0.0384612046182156,-0.243762880563736,0.969071924686432,0.0160803105682135,-0.142632827162743,0.989645004272461,0.0285078976303339,-0.0882982015609741,0.995686054229736,-0.0211782306432724,0.382954150438309,0.923524677753448,0.038767896592617,0.150996863842011,0.987773835659027,0.583577811717987,-0.58106517791748,0.567274391651154,0.947666704654694,-0.31666898727417,0.0406033247709274,0.029702465981245,-0.0188376996666193,-0.999381363391876,0.848279595375061,0.520671129226685,-0.0965582802891731,-0.0853871554136276,0.0856646001338959,-0.99265843629837,-0.0311214532703161,0.0707291588187218,-0.997009932994843,-0.0447469837963581,0.233907341957092,-0.971228718757629,-0.0417245626449585,0.0770661234855652,-0.996152579784393,0.0621086433529854,-0.112711817026138,0.991684794425964,0.0414807200431824,0.0485845021903515,0.997957408428192,-0.0155502166599035,-0.102128744125366,0.994649648666382,0.053862389177084,-0.189466908574104,0.980408668518066,-0.0199056230485439,-0.1026206985116,-0.99452143907547,0.0545558296144009,0.101866520941257,-0.993301093578339,0.03246009349823,-0.290955513715744,-0.956185877323151,-0.00761957000941038,0.241504907608032,-0.970369696617126,0.395633161067963,0.125978633761406,-0.909727334976196,0.930029571056366,-0.0287471078336239,-0.366358429193497,
- 0.95556777715683,-0.286232173442841,-0.0704382583498955,0.0545558296144009,0.101866520941257,-0.993301093578339,0.0638831108808517,-0.0685099884867668,0.995603084564209,0.983367621898651,-0.17477023601532,-0.0494324564933777,0.814144790172577,-0.5762819647789,0.0711862072348595,0.00733511615544558,0.0241962671279907,0.99968034029007,0.997641623020172,-0.0629715472459793,-0.0273103788495064,0.930029571056366,-0.0287471078336239,-0.366358429193497,0.998035430908203,-0.0553969293832779,-0.0292683467268944,0.980476379394531,-0.189362734556198,0.0529899038374424,0.395633161067963,0.125978633761406,-0.909727334976196,-0.017213886603713,-0.0298230350017548,-0.99940699338913,0.0332548879086971,-0.239556267857552,-0.970312833786011,-0.974510788917542,0.221623092889786,-0.0348144024610519,-0.984597504138947,-0.159652337431908,0.0712678357958794,-0.017213886603713,-0.0298230350017548,-0.99940699338913,0.0285078976303339,-0.0882982015609741,0.995686054229736,0.855872094631195,0.515812039375305,0.0376941785216331,0.983367621898651,-0.17477023601532,-0.0494324564933777,0.0638831108808517,-0.0685099884867668,0.995603084564209,0.930029571056366,-0.0287471078336239,-0.366358429193497,0.999657273292542,-0.009649190120399,-0.0243358854204416,0.95556777715683,-0.286232173442841,-0.0704382583498955,-0.975134134292603,0.203148603439331,-0.0885668098926544,-0.0211782306432724,0.382954150438309,0.923524677753448,0.0802234709262848,-0.281430214643478,0.956222414970398,-0.0199056230485439,-0.1026206985116,-0.99452143907547,-0.974510788917542,0.221623092889786,-0.0348144024610519,-0.017213886603713,-0.0298230350017548,-0.99940699338913,0.395633161067963,0.125978633761406,-0.909727334976196,0.0364426858723164,0.0939408540725708,-0.994910657405853,-0.0199056230485439,-0.1026206985116,-0.99452143907547,-0.017213886603713,-0.0298230350017548,-0.99940699338913,0.03246009349823,-0.290955513715744,-0.956185877323151,0.0545558296144009,0.101866520941257,-0.993301093578339,0.95556777715683,-0.286232173442841,-0.0704382583498955,0.98147052526474,-0.183675780892372,-0.0545805394649506,
- 0.0332548879086971,-0.239556267857552,-0.970312833786011,0.998035430908203,-0.0553969293832779,-0.0292683467268944,0.930029571056366,-0.0287471078336239,-0.366358429193497,0.395633161067963,0.125978633761406,-0.909727334976196,0.953002393245697,0.300300478935242,0.0400788187980652,0.00471647316589952,-0.0011177163105458,0.999988257884979,0.00733511615544558,0.0241962671279907,0.99968034029007,0.814144790172577,-0.5762819647789,0.0711862072348595,0.937271058559418,-0.346153914928436,-0.0412360094487667,0.996817588806152,-0.0632248297333717,0.0485540591180325,0.980476379394531,-0.189362734556198,0.0529899038374424,0.998035430908203,-0.0553969293832779,-0.0292683467268944,0.992639243602753,0.09535101801157,-0.0746699273586273,-0.995167076587677,0.0718116983771324,-0.0669742003083229,-0.0240583550184965,-0.134947016835213,-0.990560710430145,-0.0251780655235052,0.0867210626602173,-0.99591451883316,-0.987934291362762,-0.141119003295898,-0.0638073831796646,-0.0240583550184965,-0.134947016835213,-0.990560710430145,0.0236574523150921,0.113393671810627,-0.993268489837646,0.0453416742384434,-0.111347213387489,-0.992746710777283,0.0332548879086971,-0.239556267857552,-0.970312833786011,-0.0251780655235052,0.0867210626602173,-0.99591451883316,0.00471647316589952,-0.0011177163105458,0.999988257884979,-0.0416384004056454,0.0895203575491905,0.995114266872406,-0.0465505383908749,-0.308924078941345,0.949946939945221,0.00733511615544558,0.0241962671279907,0.99968034029007,-0.0416384004056454,0.0895203575491905,0.995114266872406,-0.995670974254608,-0.079033225774765,0.0489193350076675,-0.99483186006546,0.092911884188652,0.0409529097378254,-0.0465505383908749,-0.308924078941345,0.949946939945221,-0.99483186006546,0.092911884188652,0.0409529097378254,-0.987934291362762,-0.141119003295898,-0.0638073831796646,-0.975134134292603,0.203148603439331,-0.0885668098926544,-0.975134134292603,0.203148603439331,-0.0885668098926544,0.0802234709262848,-0.281430214643478,0.956222414970398,-0.0465505383908749,-0.308924078941345,0.949946939945221,0.0453416742384434,-0.111347213387489,-0.992746710777283,
- 0.0236574523150921,0.113393671810627,-0.993268489837646,0.937271058559418,-0.346153914928436,-0.0412360094487667,0.992639243602753,0.09535101801157,-0.0746699273586273,0.0545558296144009,0.101866520941257,-0.993301093578339,0.0364426858723164,0.0939408540725708,-0.994910657405853,0.395633161067963,0.125978633761406,-0.909727334976196,0.977223515510559,0.210034146904945,0.030331127345562,0.999657273292542,-0.009649190120399,-0.0243358854204416,0.930029571056366,-0.0287471078336239,-0.366358429193497,0.997641623020172,-0.0629715472459793,-0.0273103788495064,0.0545558296144009,0.101866520941257,-0.993301093578339,-0.0199056230485439,-0.1026206985116,-0.99452143907547,0.0364426858723164,0.0939408540725708,-0.994910657405853,-0.975134134292603,0.203148603439331,-0.0885668098926544,-0.0465505383908749,-0.308924078941345,0.949946939945221,-0.99483186006546,0.092911884188652,0.0409529097378254,-0.0211782306432724,0.382954150438309,0.923524677753448,0.0638831108808517,-0.0685099884867668,0.995603084564209,0.0802234709262848,-0.281430214643478,0.956222414970398,-0.017213886603713,-0.0298230350017548,-0.99940699338913,-0.984597504138947,-0.159652337431908,0.0712678357958794,-0.987934291362762,-0.141119003295898,-0.0638073831796646,-0.995670974254608,-0.079033225774765,0.0489193350076675,-0.995167076587677,0.0718116983771324,-0.0669742003083229,-0.987934291362762,-0.141119003295898,-0.0638073831796646,-0.99483186006546,0.092911884188652,0.0409529097378254,-0.0211782306432724,0.382954150438309,0.923524677753448,0.0285078976303339,-0.0882982015609741,0.995686054229736,0.0638831108808517,-0.0685099884867668,0.995603084564209,0.0638831108808517,-0.0685099884867668,0.995603084564209,0.00733511615544558,0.0241962671279907,0.99968034029007,-0.0465505383908749,-0.308924078941345,0.949946939945221,0.0638831108808517,-0.0685099884867668,0.995603084564209,-0.0465505383908749,-0.308924078941345,0.949946939945221,0.0802234709262848,-0.281430214643478,0.956222414970398,-0.999126136302948,-0.0216005053371191,0.0357844866812229,-0.0211782306432724,0.382954150438309,0.923524677753448,
- -0.975134134292603,0.203148603439331,-0.0885668098926544,0.0332548879086971,-0.239556267857552,-0.970312833786011,-0.017213886603713,-0.0298230350017548,-0.99940699338913,-0.0251780655235052,0.0867210626602173,-0.99591451883316,0.038767896592617,0.150996863842011,0.987773835659027,0.0586741268634796,0.0294868461787701,0.997841715812683,0.583577811717987,-0.58106517791748,0.567274391651154,-0.0201905015856028,0.230829805135727,0.972784698009491,0.0398441553115845,-0.0989152789115906,0.994297921657562,-0.0689524635672569,0.0261440221220255,0.99727737903595,0.053862389177084,-0.189466908574104,0.980408668518066,-0.0341817066073418,0.202346295118332,0.978717386722565,0.030142180621624,-0.0292974598705769,0.999116182327271,-0.964117884635925,-0.263974577188492,0.0281840059906244,-0.998002290725708,-0.0468839108943939,0.0423500798642635,-0.0341817066073418,0.202346295118332,0.978717386722565,0.053862389177084,-0.189466908574104,0.980408668518066,-0.99604344367981,0.0113631701096892,-0.0881385877728462,-0.998002290725708,-0.0468839108943939,0.0423500798642635,-0.964117884635925,-0.263974577188492,0.0281840059906244,-0.017213886603713,-0.0298230350017548,-0.99940699338913,-0.987934291362762,-0.141119003295898,-0.0638073831796646,-0.0251780655235052,0.0867210626602173,-0.99591451883316,0.0132666956633329,-0.224633604288101,-0.974353075027466,-0.0447469837963581,0.233907341957092,-0.971228718757629,-0.0311214532703161,0.0707291588187218,-0.997009932994843,0.975735008716583,0.209618806838989,0.0632565468549728,0.964803636074066,0.259566903114319,-0.0421785339713097,0.998828113079071,-0.03245560079813,-0.0359036140143871,0.982659518718719,-0.185411885380745,-0.00165866548195481,0.948884665966034,0.307259052991867,0.0721789225935936,-0.0853871554136276,0.0856646001338959,-0.99265843629837,0.0119777712970972,0.200708344578743,-0.979577839374542,-0.0324660688638687,-0.0717795118689537,-0.996892035007477,-0.022320207208395,-0.0569835640490055,0.998125612735748,0.0160803105682135,-0.142632827162743,0.989645004272461,-0.128399461507797,-0.116524420678616,0.984853148460388,
- -0.0697250515222549,0.155699715018272,0.985340595245361,0.0160803105682135,-0.142632827162743,0.989645004272461,0.827927231788635,-0.560217559337616,0.0263258777558804,0.855872094631195,0.515812039375305,0.0376941785216331,0.0285078976303339,-0.0882982015609741,0.995686054229736,0.0398441553115845,-0.0989152789115906,0.994297921657562,-0.197215750813484,0.370445668697357,0.907676219940186,-0.0689524635672569,0.0261440221220255,0.99727737903595,0.941279709339142,0.327483475208282,0.0821404531598091,-0.197215750813484,0.370445668697357,0.907676219940186,0.0398441553115845,-0.0989152789115906,0.994297921657562,0.940517425537109,0.332032293081284,0.0719827115535736,0.941279709339142,0.327483475208282,0.0821404531598091,0.0398441553115845,-0.0989152789115906,0.994297921657562,-0.0454764850437641,-0.144860908389091,-0.988406419754028,0.0389268510043621,0.22237454354763,-0.974183976650238,0.029702465981245,-0.0188376996666193,-0.999381363391876,-0.0491411499679089,0.0016192807815969,-0.998790621757507,-0.919076263904572,-0.393056213855743,0.0283864159137011,-0.937962234020233,-0.34299647808075,0.0507982149720192,-0.916501045227051,-0.398967295885086,0.0291726905852556,-0.937962234020233,-0.34299647808075,0.0507982149720192,-0.998016119003296,0.0517703965306282,0.0358277596533298,-0.916501045227051,-0.398967295885086,0.0291726905852556,0.994256496429443,0.105833791196346,0.0159205626696348,0.90549099445343,0.418562412261963,0.0699412748217583,0.869622349739075,0.440367192029953,-0.223234802484512,0.998828113079071,-0.03245560079813,-0.0359036140143871,0.964803636074066,0.259566903114319,-0.0421785339713097,0.0132666956633329,-0.224633604288101,-0.974353075027466,0.0231487452983856,0.209460377693176,-0.97754317522049,0.982659518718719,-0.185411885380745,-0.00165866548195481,0.998828113079071,-0.03245560079813,-0.0359036140143871,0.0231487452983856,0.209460377693176,-0.97754317522049,0.910344898700714,-0.412027716636658,-0.0388001911342144,0.997867524623871,0.0376023277640343,-0.0533523410558701,0.0189622938632965,-0.0658356994390488,-0.997650325298309,
- 0.0123652229085565,0.110073886811733,-0.993846535682678,0.0189622938632965,-0.0658356994390488,-0.997650325298309,0.997867524623871,0.0376023277640343,-0.0533523410558701,0.995680749416351,-0.0827580690383911,-0.0420848093926907,0.0118546560406685,-0.12772661447525,-0.991738617420197,-0.974510788917542,0.221623092889786,-0.0348144024610519,-0.999126136302948,-0.0216005053371191,0.0357844866812229,-0.975134134292603,0.203148603439331,-0.0885668098926544,-0.984597504138947,-0.159652337431908,0.0712678357958794,-0.987934291362762,-0.141119003295898,-0.0638073831796646,-0.984597504138947,-0.159652337431908,0.0712678357958794,-0.975134134292603,0.203148603439331,-0.0885668098926544,-0.10117007791996,-0.0559688396751881,0.993293642997742,-0.0398499630391598,-0.125758334994316,0.991260290145874,-0.840093374252319,0.381325274705887,0.385790407657623,-0.0384612046182156,-0.243762880563736,0.969071924686432,-0.128399461507797,-0.116524420678616,0.984853148460388,0.0160803105682135,-0.142632827162743,0.989645004272461,-0.0384612046182156,-0.243762880563736,0.969071924686432,-0.984303295612335,0.101144455373287,0.144626632332802,-0.0697250515222549,0.155699715018272,0.985340595245361,0.0181854385882616,-0.178533151745796,-0.983765840530396,0.0201502740383148,0.157252982258797,-0.987352848052979,-0.0423893891274929,-0.29248121380806,-0.955331265926361,-0.0351053401827812,0.0192636903375387,-0.999198019504547,-0.0318309292197227,-0.00895679835230112,-0.999453186988831,-0.827025473117828,0.559848546981812,-0.0509741380810738,-0.992233991622925,0.117834582924843,-0.0398354418575764,-0.0319091714918613,0.280349999666214,-0.959367454051971,-0.00256133475340903,-0.0566291064023972,0.998392105102539,-0.0201756302267313,-0.223738685250282,0.974440336227417,0.0347900278866291,0.0247207581996918,0.999088823795319,0.0583048909902573,0.03325454890728,-0.997744798660278,0.0294814705848694,-0.311209738254547,-0.949883878231049,-0.0319091714918613,0.280349999666214,-0.959367454051971,0.217704191803932,0.248455822467804,-0.943861603736877,0.0151378884911537,0.0126403691247106,0.999805569648743,
- 0.334291696548462,-0.600020408630371,0.726790606975555,-0.0844089686870575,-0.208597630262375,0.974352180957794,-0.906427979469299,-0.420649826526642,-0.0379758663475513,-0.962687134742737,0.267574310302734,-0.0404657647013664,-0.945978581905365,0.322405934333801,0.0343391634523869,-0.935822486877441,0.349382519721985,0.0465635396540165,-0.0280633009970188,-0.257836520671844,0.965780973434448,-0.025250032544136,0.168328911066055,0.985407471656799,0.0103982519358397,-0.115205362439156,0.993287324905396,0.0203652940690517,0.0413389392197132,0.998937606811523,0.0151378884911537,0.0126403691247106,0.999805569648743,-0.0157025549560785,-0.188856765627861,0.981879115104675,0.0103982519358397,-0.115205362439156,0.993287324905396,-0.025250032544136,0.168328911066055,0.985407471656799,-0.961336433887482,0.2698113322258,0.0550841093063354,-0.9081791639328,-0.418134093284607,-0.0193516258150339,-0.992475032806396,0.120035901665688,-0.0241834875196218,-0.70272958278656,-0.709805905818939,0.0484437458217144,-0.0322965271770954,-0.0343000069260597,0.998889684677124,0.0337672680616379,0.0224787183105946,0.999176919460297,0.204455614089966,0.367110580205917,0.907429218292236,-0.0381834544241428,0.133938834071159,0.990253686904907,-0.00256133475340903,-0.0566291064023972,0.998392105102539,0.0444402247667313,-0.411837577819824,0.910172998905182,-0.0404140800237656,0.169349104166031,0.984727263450623,0.96056854724884,-0.248997420072556,0.123727604746819,0.973426461219788,-0.227691382169724,0.0244469624012709,0.965142726898193,-0.253603845834732,0.0646899789571762,0.806953907012939,0.590295672416687,0.0194058921188116,0.0166435725986958,-0.209327861666679,0.977703928947449,0.0121276630088687,-0.18498457968235,0.982666552066803,-0.0280633009970188,-0.257836520671844,0.965780973434448,-0.9923335313797,0.0977767109870911,0.0755904242396355,-0.984071254730225,0.158449560403824,0.0806071534752846,-0.025250032544136,0.168328911066055,0.985407471656799,0.204455614089966,0.367110580205917,0.907429218292236,0.798973560333252,-0.59526789188385,0.0854259207844734,
- 0.967089951038361,0.253022044897079,0.0267763435840607,0.979938805103302,-0.198385551571846,0.0190602969378233,0.992260694503784,0.104990154504776,-0.0663005858659744,0.999212443828583,0.0371228195726871,-0.0140189034864306,-0.0404140800237656,0.169349104166031,0.984727263450623,-0.945978581905365,0.322405934333801,0.0343391634523869,-0.887593865394592,0.439682900905609,0.13731737434864,0.935494303703308,-0.348216474056244,0.0599642619490623,0.997924029827118,0.0582588762044907,-0.0274511910974979,0.973426461219788,-0.227691382169724,0.0244469624012709,0.96056854724884,-0.248997420072556,0.123727604746819,0.924597203731537,0.379315584897995,0.0352111496031284,0.979938805103302,-0.198385551571846,0.0190602969378233,0.959869503974915,-0.278235554695129,-0.0351493582129478,0.847747981548309,-0.530350923538208,-0.00716460589319468,0.0201502740383148,0.157252982258797,-0.987352848052979,0.0181854385882616,-0.178533151745796,-0.983765840530396,0.800925076007843,0.597378969192505,-0.0407126061618328,0.965142726898193,-0.253603845834732,0.0646899789571762,0.973426461219788,-0.227691382169724,0.0244469624012709,0.847747981548309,-0.530350923538208,-0.00716460589319468,-0.70272958278656,-0.709805905818939,0.0484437458217144,-0.992475032806396,0.120035901665688,-0.0241834875196218,-0.958584606647491,-0.269074767827988,0.0933502390980721,-0.935822486877441,0.349382519721985,0.0465635396540165,-0.0381834544241428,0.133938834071159,0.990253686904907,-0.958584606647491,-0.269074767827988,0.0933502390980721,0.204455614089966,0.367110580205917,0.907429218292236,-0.0378400795161724,0.0241726748645306,0.998991429805756,-0.0381834544241428,0.133938834071159,0.990253686904907,-0.958584606647491,-0.269074767827988,0.0933502390980721,-0.0381834544241428,0.133938834071159,0.990253686904907,-0.70272958278656,-0.709805905818939,0.0484437458217144,-0.0423893891274929,-0.29248121380806,-0.955331265926361,-0.962687134742737,0.267574310302734,-0.0404657647013664,-0.906427979469299,-0.420649826526642,-0.0379758663475513,-0.0351053401827812,0.0192636903375387,-0.999198019504547,
- -0.0423893891274929,-0.29248121380806,-0.955331265926361,0.0220253579318523,0.0196881964802742,-0.999563574790955,0.0138797517865896,0.222919762134552,-0.974737942218781,-0.0193067789077759,0.0866555199027061,-0.996051251888275,0.0413414649665356,-0.00554187502712011,-0.999129712581635,0.0373716913163662,0.129419177770615,-0.990885496139526,-0.0138353053480387,-0.251697689294815,-0.96770703792572,-0.998667895793915,-0.0343519486486912,-0.0385018773376942,-0.982492208480835,0.182392001152039,0.0379781201481819,-0.915243685245514,0.389727592468262,-0.102183602750301,-0.992233991622925,0.117834582924843,-0.0398354418575764,-0.894924819469452,0.441595762968063,0.0640524700284004,-0.0319091714918613,0.280349999666214,-0.959367454051971,0.0707627758383751,-0.274135410785675,-0.959084153175354,-0.906427979469299,-0.420649826526642,-0.0379758663475513,-0.959359884262085,-0.278071016073227,-0.0480126515030861,-0.0201756302267313,-0.223738685250282,0.974440336227417,-0.00256133475340903,-0.0566291064023972,0.998392105102539,0.10773753374815,0.133665218949318,0.985152959823608,-0.887593865394592,0.439682900905609,0.13731737434864,-0.915243685245514,0.389727592468262,-0.102183602750301,-0.982492208480835,0.182392001152039,0.0379781201481819,0.0707627758383751,-0.274135410785675,-0.959084153175354,-0.992475032806396,0.120035901665688,-0.0241834875196218,-0.0138353053480387,-0.251697689294815,-0.96770703792572,-0.998667895793915,-0.0343519486486912,-0.0385018773376942,-0.0294536966830492,0.252889096736908,-0.967046856880188,-0.0331270843744278,-0.371205240488052,-0.927959740161896,-0.989351868629456,-0.14284186065197,-0.0279139187186956,-0.998667895793915,-0.0343519486486912,-0.0385018773376942,-0.915243685245514,0.389727592468262,-0.102183602750301,-0.0294536966830492,0.252889096736908,-0.967046856880188,-0.915243685245514,0.389727592468262,-0.102183602750301,-0.0423893891274929,-0.29248121380806,-0.955331265926361,0.0138797517865896,0.222919762134552,-0.974737942218781,-0.986080169677734,0.113075368106365,0.121901303529739,-0.9923335313797,0.0977767109870911,0.0755904242396355,
- -0.0280633009970188,-0.257836520671844,0.965780973434448,0.10773753374815,0.133665218949318,0.985152959823608,-0.00256133475340903,-0.0566291064023972,0.998392105102539,-0.0404140800237656,0.169349104166031,0.984727263450623,0.967089951038361,0.253022044897079,0.0267763435840607,0.798973560333252,-0.59526789188385,0.0854259207844734,0.998255610466003,0.0545934960246086,-0.0224812068045139,0.80166757106781,-0.596794903278351,0.0341345071792603,0.0201502740383148,0.157252982258797,-0.987352848052979,0.847747981548309,-0.530350923538208,-0.00716460589319468,0.80166757106781,-0.596794903278351,0.0341345071792603,0.89497309923172,0.445222586393356,-0.0282849818468094,0.0244996771216393,0.145650207996368,-0.989032804965973,0.0220253579318523,0.0196881964802742,-0.999563574790955,0.821283578872681,0.538072884082794,0.1896603256464,0.864620089530945,0.499102354049683,-0.0576982088387012,0.0413414649665356,-0.00554187502712011,-0.999129712581635,0.999212443828583,0.0371228195726871,-0.0140189034864306,0.959869503974915,-0.278235554695129,-0.0351493582129478,0.979938805103302,-0.198385551571846,0.0190602969378233,0.0294814705848694,-0.311209738254547,-0.949883878231049,0.984371542930603,0.171108856797218,-0.0416463650763035,0.68926078081131,-0.723975598812103,-0.0279091708362103,0.0296195987612009,0.00584054086357355,-0.999544203281403,0.0220253579318523,0.0196881964802742,-0.999563574790955,0.0201502740383148,0.157252982258797,-0.987352848052979,0.80166757106781,-0.596794903278351,0.0341345071792603,-0.0423893891274929,-0.29248121380806,-0.955331265926361,0.0201502740383148,0.157252982258797,-0.987352848052979,0.0220253579318523,0.0196881964802742,-0.999563574790955,0.806953907012939,0.590295672416687,0.0194058921188116,0.0121276630088687,-0.18498457968235,0.982666552066803,0.204455614089966,0.367110580205917,0.907429218292236,-0.988396525382996,-0.148800268769264,0.0305112898349762,-0.961336433887482,0.2698113322258,0.0550841093063354,-0.0422459132969379,-0.104074873030186,0.993671834468842,-0.0404140800237656,0.169349104166031,0.984727263450623,
- -0.887593865394592,0.439682900905609,0.13731737434864,0.10773753374815,0.133665218949318,0.985152959823608,-0.887593865394592,0.439682900905609,0.13731737434864,-0.0201756302267313,-0.223738685250282,0.974440336227417,0.10773753374815,0.133665218949318,0.985152959823608,0.204455614089966,0.367110580205917,0.907429218292236,0.967089951038361,0.253022044897079,0.0267763435840607,0.806953907012939,0.590295672416687,0.0194058921188116,0.924597203731537,0.379315584897995,0.0352111496031284,0.959869503974915,-0.278235554695129,-0.0351493582129478,0.998217642307281,-0.0498677231371403,-0.0327841751277447,0.90705007314682,-0.414579510688782,0.0733771920204163,0.99802166223526,-0.0277878642082214,0.0563976801931858,-0.982492208480835,0.182392001152039,0.0379781201481819,-0.0201756302267313,-0.223738685250282,0.974440336227417,-0.887593865394592,0.439682900905609,0.13731737434864,-0.0280633009970188,-0.257836520671844,0.965780973434448,-0.0844089686870575,-0.208597630262375,0.974352180957794,-0.986080169677734,0.113075368106365,0.121901303529739,0.0151378884911537,0.0126403691247106,0.999805569648743,-0.0844089686870575,-0.208597630262375,0.974352180957794,-0.0280633009970188,-0.257836520671844,0.965780973434448,0.864620089530945,0.499102354049683,-0.0576982088387012,0.99638170003891,-0.0484537780284882,-0.0698276609182358,0.0373716913163662,0.129419177770615,-0.990885496139526,0.0413414649665356,-0.00554187502712011,-0.999129712581635,-0.025250032544136,0.168328911066055,0.985407471656799,-0.984071254730225,0.158449560403824,0.0806071534752846,-0.988396525382996,-0.148800268769264,0.0305112898349762,-0.0422459132969379,-0.104074873030186,0.993671834468842,-0.0422459132969379,-0.104074873030186,0.993671834468842,-0.0157025549560785,-0.188856765627861,0.981879115104675,-0.025250032544136,0.168328911066055,0.985407471656799,-0.0322965271770954,-0.0343000069260597,0.998889684677124,-0.0381834544241428,0.133938834071159,0.990253686904907,-0.935822486877441,0.349382519721985,0.0465635396540165,-0.00256133475340903,-0.0566291064023972,0.998392105102539,
- 0.96056854724884,-0.248997420072556,0.123727604746819,0.0444402247667313,-0.411837577819824,0.910172998905182,-0.962687134742737,0.267574310302734,-0.0404657647013664,-0.0423893891274929,-0.29248121380806,-0.955331265926361,-0.915243685245514,0.389727592468262,-0.102183602750301,0.0337672680616379,0.0224787183105946,0.999176919460297,0.0444402247667313,-0.411837577819824,0.910172998905182,0.965142726898193,-0.253603845834732,0.0646899789571762,0.798973560333252,-0.59526789188385,0.0854259207844734,0.0444402247667313,-0.411837577819824,0.910172998905182,0.96056854724884,-0.248997420072556,0.123727604746819,0.965142726898193,-0.253603845834732,0.0646899789571762,-0.945978581905365,0.322405934333801,0.0343391634523869,-0.915243685245514,0.389727592468262,-0.102183602750301,-0.887593865394592,0.439682900905609,0.13731737434864,-0.962687134742737,0.267574310302734,-0.0404657647013664,-0.915243685245514,0.389727592468262,-0.102183602750301,-0.945978581905365,0.322405934333801,0.0343391634523869,-0.961336433887482,0.2698113322258,0.0550841093063354,-0.0369096584618092,-0.0710028186440468,0.99679297208786,-0.0422459132969379,-0.104074873030186,0.993671834468842,-0.0405045263469219,0.280120134353638,-0.959110140800476,-0.167257145047188,0.36097639799118,-0.917453646659851,0.0296195987612009,0.00584054086357355,-0.999544203281403,-0.906427979469299,-0.420649826526642,-0.0379758663475513,0.0707627758383751,-0.274135410785675,-0.959084153175354,-0.0351053401827812,0.0192636903375387,-0.999198019504547,-0.0351053401827812,0.0192636903375387,-0.999198019504547,0.0707627758383751,-0.274135410785675,-0.959084153175354,0.0181854385882616,-0.178533151745796,-0.983765840530396,0.00645525846630335,0.22848929464817,0.973525106906891,0.979938805103302,-0.198385551571846,0.0190602969378233,-0.0157025549560785,-0.188856765627861,0.981879115104675,0.806953907012939,0.590295672416687,0.0194058921188116,0.967089951038361,0.253022044897079,0.0267763435840607,0.948012053966522,0.312536299228668,-0.0599512755870819,0.800925076007843,0.597378969192505,-0.0407126061618328,
- 0.0181854385882616,-0.178533151745796,-0.983765840530396,0.0810486078262329,-0.0508337393403053,-0.99541300535202,0.985491156578064,-0.168022036552429,-0.0239950679242611,-0.992475032806396,0.120035901665688,-0.0241834875196218,0.0707627758383751,-0.274135410785675,-0.959084153175354,-0.959359884262085,-0.278071016073227,-0.0480126515030861,0.0707627758383751,-0.274135410785675,-0.959084153175354,0.0810486078262329,-0.0508337393403053,-0.99541300535202,0.0181854385882616,-0.178533151745796,-0.983765840530396,-0.9081791639328,-0.418134093284607,-0.0193516258150339,-0.167257145047188,0.36097639799118,-0.917453646659851,-0.0193067789077759,0.0866555199027061,-0.996051251888275,-0.958584606647491,-0.269074767827988,0.0933502390980721,-0.906427979469299,-0.420649826526642,-0.0379758663475513,-0.935822486877441,0.349382519721985,0.0465635396540165,-0.70272958278656,-0.709805905818939,0.0484437458217144,-0.0381834544241428,0.133938834071159,0.990253686904907,-0.0378400795161724,0.0241726748645306,0.998991429805756,-0.0378400795161724,0.0241726748645306,0.998991429805756,-0.0369096584618092,-0.0710028186440468,0.99679297208786,-0.961336433887482,0.2698113322258,0.0550841093063354,-0.70272958278656,-0.709805905818939,0.0484437458217144,-0.9081791639328,-0.418134093284607,-0.0193516258150339,-0.998560607433319,0.0534155182540417,0.00485587026923895,-0.167257145047188,0.36097639799118,-0.917453646659851,-0.984071254730225,0.158449560403824,0.0806071534752846,-0.9923335313797,0.0977767109870911,0.0755904242396355,-0.992233991622925,0.117834582924843,-0.0398354418575764,-0.827025473117828,0.559848546981812,-0.0509741380810738,-0.986080169677734,0.113075368106365,0.121901303529739,-0.894924819469452,0.441595762968063,0.0640524700284004,-0.992233991622925,0.117834582924843,-0.0398354418575764,-0.9923335313797,0.0977767109870911,0.0755904242396355,0.984350085258484,-0.173029571771622,-0.033404279500246,0.991654396057129,-0.031513299793005,0.125014185905457,0.90705007314682,-0.414579510688782,0.0733771920204163,0.998217642307281,-0.0498677231371403,-0.0327841751277447,
- 0.334291696548462,-0.600020408630371,0.726790606975555,0.0151378884911537,0.0126403691247106,0.999805569648743,0.90705007314682,-0.414579510688782,0.0733771920204163,0.991654396057129,-0.031513299793005,0.125014185905457,-0.0157025549560785,-0.188856765627861,0.981879115104675,0.924597203731537,0.379315584897995,0.0352111496031284,0.0103982519358397,-0.115205362439156,0.993287324905396,0.974067807197571,-0.222426682710648,0.0414529740810394,0.992260694503784,0.104990154504776,-0.0663005858659744,0.979938805103302,-0.198385551571846,0.0190602969378233,0.967089951038361,0.253022044897079,0.0267763435840607,0.92570424079895,0.249114573001862,-0.284629046916962,0.948012053966522,0.312536299228668,-0.0599512755870819,-0.0405045263469219,0.280120134353638,-0.959110140800476,0.0296195987612009,0.00584054086357355,-0.999544203281403,0.68926078081131,-0.723975598812103,-0.0279091708362103,-0.0405045263469219,0.280120134353638,-0.959110140800476,0.68926078081131,-0.723975598812103,-0.0279091708362103,0.821283578872681,0.538072884082794,0.1896603256464,0.821283578872681,0.538072884082794,0.1896603256464,0.0413414649665356,-0.00554187502712011,-0.999129712581635,-0.0405045263469219,0.280120134353638,-0.959110140800476,0.979938805103302,-0.198385551571846,0.0190602969378233,0.924597203731537,0.379315584897995,0.0352111496031284,-0.0157025549560785,-0.188856765627861,0.981879115104675,0.00645525846630335,0.22848929464817,0.973525106906891,0.974067807197571,-0.222426682710648,0.0414529740810394,0.979938805103302,-0.198385551571846,0.0190602969378233,0.0121276630088687,-0.18498457968235,0.982666552066803,0.0166435725986958,-0.209327861666679,0.977703928947449,0.00645525846630335,0.22848929464817,0.973525106906891,-0.0369096584618092,-0.0710028186440468,0.99679297208786,-0.0378400795161724,0.0241726748645306,0.998991429805756,-0.0294536966830492,0.252889096736908,-0.967046856880188,0.0138797517865896,0.222919762134552,-0.974737942218781,-0.112340472638607,0.173664510250092,-0.97837632894516,-0.998560607433319,0.0534155182540417,0.00485587026923895,
- -0.988396525382996,-0.148800268769264,0.0305112898349762,-0.984071254730225,0.158449560403824,0.0806071534752846,-0.9081791639328,-0.418134093284607,-0.0193516258150339,-0.988396525382996,-0.148800268769264,0.0305112898349762,-0.998560607433319,0.0534155182540417,0.00485587026923895,-0.9081791639328,-0.418134093284607,-0.0193516258150339,-0.961336433887482,0.2698113322258,0.0550841093063354,-0.988396525382996,-0.148800268769264,0.0305112898349762,0.0294814705848694,-0.311209738254547,-0.949883878231049,0.0296195987612009,0.00584054086357355,-0.999544203281403,-0.0318309292197227,-0.00895679835230112,-0.999453186988831,-0.0319091714918613,0.280349999666214,-0.959367454051971,-0.0193067789077759,0.0866555199027061,-0.996051251888275,-0.0138353053480387,-0.251697689294815,-0.96770703792572,-0.992475032806396,0.120035901665688,-0.0241834875196218,-0.9081791639328,-0.418134093284607,-0.0193516258150339,0.847747981548309,-0.530350923538208,-0.00716460589319468,0.998255610466003,0.0545934960246086,-0.0224812068045139,0.798973560333252,-0.59526789188385,0.0854259207844734,0.965142726898193,-0.253603845834732,0.0646899789571762,-0.945978581905365,0.322405934333801,0.0343391634523869,-0.0404140800237656,0.169349104166031,0.984727263450623,-0.0322965271770954,-0.0343000069260597,0.998889684677124,-0.935822486877441,0.349382519721985,0.0465635396540165,-0.982492208480835,0.182392001152039,0.0379781201481819,-0.998667895793915,-0.0343519486486912,-0.0385018773376942,-0.989351868629456,-0.14284186065197,-0.0279139187186956,-0.836810290813446,-0.545939147472382,0.0412182658910751,0.944630742073059,0.319941312074661,0.0728721022605896,0.99971079826355,-0.0022063737269491,0.023949870839715,0.973031401634216,-0.228733658790588,-0.0298483576625586,0.997924029827118,0.0582588762044907,-0.0274511910974979,0.935494303703308,-0.348216474056244,0.0599642619490623,-0.982492208480835,0.182392001152039,0.0379781201481819,-0.836810290813446,-0.545939147472382,0.0412182658910751,-0.0213034432381392,0.0900579914450645,0.995708644390106,-0.0201756302267313,-0.223738685250282,0.974440336227417,
- 0.0347900278866291,0.0247207581996918,0.999088823795319,0.935494303703308,-0.348216474056244,0.0599642619490623,0.96056854724884,-0.248997420072556,0.123727604746819,-0.00256133475340903,-0.0566291064023972,0.998392105102539,-0.0294536966830492,0.252889096736908,-0.967046856880188,0.0244996771216393,0.145650207996368,-0.989032804965973,0.0331073403358459,0.0842455253005028,-0.995894968509674,-0.0331270843744278,-0.371205240488052,-0.927959740161896,0.0294814705848694,-0.311209738254547,-0.949883878231049,0.94196355342865,0.329410433769226,0.0647569373250008,0.984371542930603,0.171108856797218,-0.0416463650763035,0.0337672680616379,0.0224787183105946,0.999176919460297,0.798973560333252,-0.59526789188385,0.0854259207844734,0.204455614089966,0.367110580205917,0.907429218292236,-0.0369096584618092,-0.0710028186440468,0.99679297208786,-0.0157025549560785,-0.188856765627861,0.981879115104675,-0.0422459132969379,-0.104074873030186,0.993671834468842,-0.0405045263469219,0.280120134353638,-0.959110140800476,0.0413414649665356,-0.00554187502712011,-0.999129712581635,-0.0193067789077759,0.0866555199027061,-0.996051251888275,-0.167257145047188,0.36097639799118,-0.917453646659851,-0.0213034432381392,0.0900579914450645,0.995708644390106,0.0477553009986877,-0.0981661826372147,0.994023621082306,0.0347900278866291,0.0247207581996918,0.999088823795319,-0.0201756302267313,-0.223738685250282,0.974440336227417,0.354868590831757,-0.0351545885205269,0.934255063533783,0.926870822906494,-0.0513491034507751,0.371851891279221,0.944630742073059,0.319941312074661,0.0728721022605896,0.0477553009986877,-0.0981661826372147,0.994023621082306,-0.836810290813446,-0.545939147472382,0.0412182658910751,-0.890286266803741,-0.232886478304863,0.391349345445633,-0.173311054706573,0.0870705246925354,0.981010735034943,0.0331073403358459,0.0842455253005028,-0.995894968509674,0.850722312927246,-0.524261593818665,-0.0377022624015808,0.898607492446899,-0.188787713646889,-0.396060168743134,0.181889176368713,0.130747258663177,-0.974587917327881,0.926870822906494,-0.0513491034507751,0.371851891279221,
- 0.99971079826355,-0.0022063737269491,0.023949870839715,0.944630742073059,0.319941312074661,0.0728721022605896,-0.917364120483398,0.195040717720985,-0.346990287303925,-0.0331270843744278,-0.371205240488052,-0.927959740161896,-0.364560574293137,-0.1101328805089,-0.924643874168396,-0.0213034432381392,0.0900579914450645,0.995708644390106,-0.836810290813446,-0.545939147472382,0.0412182658910751,-0.173311054706573,0.0870705246925354,0.981010735034943,0.354868590831757,-0.0351545885205269,0.934255063533783,0.0732279047369957,-0.0607585720717907,0.995462775230408,-0.0213034432381392,0.0900579914450645,0.995708644390106,-0.173311054706573,0.0870705246925354,0.981010735034943,0.0347900278866291,0.0247207581996918,0.999088823795319,0.0477553009986877,-0.0981661826372147,0.994023621082306,0.944630742073059,0.319941312074661,0.0728721022605896,0.935494303703308,-0.348216474056244,0.0599642619490623,0.0477553009986877,-0.0981661826372147,0.994023621082306,0.0732279047369957,-0.0607585720717907,0.995462775230408,0.354868590831757,-0.0351545885205269,0.934255063533783,0.973031401634216,-0.228733658790588,-0.0298483576625586,0.99971079826355,-0.0022063737269491,0.023949870839715,0.926870822906494,-0.0513491034507751,0.371851891279221,0.988430738449097,-0.0676256865262985,-0.135762348771095,0.0477553009986877,-0.0981661826372147,0.994023621082306,-0.0213034432381392,0.0900579914450645,0.995708644390106,0.0732279047369957,-0.0607585720717907,0.995462775230408,-0.0331270843744278,-0.371205240488052,-0.927959740161896,0.181889176368713,0.130747258663177,-0.974587917327881,-0.364560574293137,-0.1101328805089,-0.924643874168396,-0.0331270843744278,-0.371205240488052,-0.927959740161896,0.0331073403358459,0.0842455253005028,-0.995894968509674,0.181889176368713,0.130747258663177,-0.974587917327881,-0.989351868629456,-0.14284186065197,-0.0279139187186956,-0.0331270843744278,-0.371205240488052,-0.927959740161896,-0.917364120483398,0.195040717720985,-0.346990287303925,0.260480582714081,0.0038677197881043,0.96547144651413,-0.0274023376405239,-0.243837013840675,0.969429016113281,
- 0.0394215174019337,-0.00221223291009665,0.999220252037048,0.0322346985340118,-0.0596123337745667,-0.997700989246368,0.925375699996948,0.376269370317459,-0.0458390042185783,0.793192267417908,-0.608164548873901,-0.0313374139368534,0.0403689816594124,0.228219017386436,-0.972772598266602,-0.997318387031555,-0.061405424028635,-0.0398192256689072,-0.993818521499634,-0.0234940983355045,0.108502894639969,-0.845737874507904,-0.00745122414082289,-0.53354674577713,-0.0274023376405239,-0.243837013840675,0.969429016113281,0.260480582714081,0.0038677197881043,0.96547144651413,-0.42329803109169,-0.0140903079882264,0.905880987644196,-0.763592958450317,0.0179004371166229,0.645449817180634,-0.845737874507904,-0.00745122414082289,-0.53354674577713,-0.993818521499634,-0.0234940983355045,0.108502894639969,-0.997318387031555,-0.061405424028635,-0.0398192256689072,-0.0239977855235338,0.086444653570652,-0.995967566967011,-0.044712670147419,-0.18994052708149,-0.980776965618134,-0.88397628068924,0.466371864080429,-0.0329126976430416,-0.997318387031555,-0.061405424028635,-0.0398192256689072,-0.845737874507904,-0.00745122414082289,-0.53354674577713,-0.0239977855235338,0.086444653570652,-0.995967566967011,-0.763592958450317,0.0179004371166229,0.645449817180634,-0.0274023376405239,-0.243837013840675,0.969429016113281,-0.42329803109169,-0.0140903079882264,0.905880987644196,-0.993818521499634,-0.0234940983355045,0.108502894639969,-0.0274023376405239,-0.243837013840675,0.969429016113281,-0.763592958450317,0.0179004371166229,0.645449817180634,-0.845737874507904,-0.00745122414082289,-0.53354674577713,0.0539603382349014,0.0145458932965994,-0.998437166213989,-0.0239977855235338,0.086444653570652,-0.995967566967011,0.0322346985340118,-0.0596123337745667,-0.997700989246368,0.0403689816594124,0.228219017386436,-0.972772598266602,-0.044712670147419,-0.18994052708149,-0.980776965618134,-0.0239977855235338,0.086444653570652,-0.995967566967011,-0.993818521499634,-0.0234940983355045,0.108502894639969,-0.997318387031555,-0.061405424028635,-0.0398192256689072,
- -0.88397628068924,0.466371864080429,-0.0329126976430416,-0.980518639087677,0.181215807795525,0.0757894739508629,0.996614456176758,0.0431667156517506,0.0699732527136803,0.963935971260071,-0.264816522598267,-0.0264523178339005,0.958800137042999,-0.284046828746796,0.00446306960657239,0.975641071796417,-0.211635634303093,0.0577487610280514,-0.993818521499634,-0.0234940983355045,0.108502894639969,-0.980518639087677,0.181215807795525,0.0757894739508629,-0.0360735692083836,0.149539545178413,0.988097488880157,-0.0274023376405239,-0.243837013840675,0.969429016113281,-0.0239977855235338,0.086444653570652,-0.995967566967011,0.0539603382349014,0.0145458932965994,-0.998437166213989,0.0322346985340118,-0.0596123337745667,-0.997700989246368,-0.0360735692083836,0.149539545178413,0.988097488880157,0.0438512675464153,-0.3637875020504,0.930449247360229,0.0394215174019337,-0.00221223291009665,0.999220252037048,-0.0274023376405239,-0.243837013840675,0.969429016113281,0.334291696548462,-0.600020408630371,0.726790606975555,0.991654396057129,-0.031513299793005,0.125014185905457,0.0438512675464153,-0.3637875020504,0.930449247360229,-0.980518639087677,0.181215807795525,0.0757894739508629,-0.88397628068924,0.466371864080429,-0.0329126976430416,-0.894924819469452,0.441595762968063,0.0640524700284004,-0.986080169677734,0.113075368106365,0.121901303529739,0.0403689816594124,0.228219017386436,-0.972772598266602,0.793192267417908,-0.608164548873901,-0.0313374139368534,0.94196355342865,0.329410433769226,0.0647569373250008,0.0583048909902573,0.03325454890728,-0.997744798660278,-0.0360735692083836,0.149539545178413,0.988097488880157,-0.980518639087677,0.181215807795525,0.0757894739508629,-0.986080169677734,0.113075368106365,0.121901303529739,-0.0844089686870575,-0.208597630262375,0.974352180957794,-0.0360735692083836,0.149539545178413,0.988097488880157,-0.986080169677734,0.113075368106365,0.121901303529739,0.0394215174019337,-0.00221223291009665,0.999220252037048,0.0438512675464153,-0.3637875020504,0.930449247360229,0.996614456176758,0.0431667156517506,0.0699732527136803,
- 0.975641071796417,-0.211635634303093,0.0577487610280514,0.0438512675464153,-0.3637875020504,0.930449247360229,-0.0844089686870575,-0.208597630262375,0.974352180957794,0.334291696548462,-0.600020408630371,0.726790606975555,0.963935971260071,-0.264816522598267,-0.0264523178339005,0.996614456176758,0.0431667156517506,0.0699732527136803,0.991654396057129,-0.031513299793005,0.125014185905457,0.984350085258484,-0.173029571771622,-0.033404279500246,0.0438512675464153,-0.3637875020504,0.930449247360229,-0.0360735692083836,0.149539545178413,0.988097488880157,-0.0844089686870575,-0.208597630262375,0.974352180957794,0.0583048909902573,0.03325454890728,-0.997744798660278,0.217704191803932,0.248455822467804,-0.943861603736877,-0.044712670147419,-0.18994052708149,-0.980776965618134,0.0403689816594124,0.228219017386436,-0.972772598266602,-0.88397628068924,0.466371864080429,-0.0329126976430416,-0.044712670147419,-0.18994052708149,-0.980776965618134,-0.894924819469452,0.441595762968063,0.0640524700284004,-0.0345550775527954,-0.0189059805124998,-0.999223947525024,-0.0328342579305172,-0.0371867157518864,-0.998768866062164,-0.0341936536133289,0.00051469833124429,-0.999415099620819,-0.0370888635516167,0.00265395222231746,-0.999308526515961,-0.0372574105858803,0.0215211622416973,-0.999074041843414,-0.0328498110175133,0.0164471119642258,-0.999325037002563,0.0394215174019337,-0.00221223291009665,0.999220252037048,0.975641071796417,-0.211635634303093,0.0577487610280514,0.936643719673157,-0.00242106732912362,0.350275367498398,0.260480582714081,0.0038677197881043,0.96547144651413,0.0539603382349014,0.0145458932965994,-0.998437166213989,0.925375699996948,0.376269370317459,-0.0458390042185783,0.0322346985340118,-0.0596123337745667,-0.997700989246368,0.931785881519318,-0.0259573329240084,0.362079203128815,0.936643719673157,-0.00242106732912362,0.350275367498398,0.975641071796417,-0.211635634303093,0.0577487610280514,0.958800137042999,-0.284046828746796,0.00446306960657239,0.0294814705848694,-0.311209738254547,-0.949883878231049,0.0583048909902573,0.03325454890728,-0.997744798660278,
- 0.94196355342865,0.329410433769226,0.0647569373250008,-0.0138353053480387,-0.251697689294815,-0.96770703792572,0.0373716913163662,0.129419177770615,-0.990885496139526,0.0707627758383751,-0.274135410785675,-0.959084153175354,-0.167257145047188,0.36097639799118,-0.917453646659851,-0.0318309292197227,-0.00895679835230112,-0.999453186988831,0.0296195987612009,0.00584054086357355,-0.999544203281403,-0.998560607433319,0.0534155182540417,0.00485587026923895,-0.827025473117828,0.559848546981812,-0.0509741380810738,-0.0318309292197227,-0.00895679835230112,-0.999453186988831,-0.167257145047188,0.36097639799118,-0.917453646659851,-0.984071254730225,0.158449560403824,0.0806071534752846,-0.827025473117828,0.559848546981812,-0.0509741380810738,-0.998560607433319,0.0534155182540417,0.00485587026923895,0.00645525846630335,0.22848929464817,0.973525106906891,-0.0157025549560785,-0.188856765627861,0.981879115104675,-0.0369096584618092,-0.0710028186440468,0.99679297208786,0.992260694503784,0.104990154504776,-0.0663005858659744,0.974067807197571,-0.222426682710648,0.0414529740810394,0.998976349830627,0.0251414813101292,0.0376070812344551,0.806953907012939,0.590295672416687,0.0194058921188116,0.948012053966522,0.312536299228668,-0.0599512755870819,0.204455614089966,0.367110580205917,0.907429218292236,0.0121276630088687,-0.18498457968235,0.982666552066803,-0.0378400795161724,0.0241726748645306,0.998991429805756,0.0438512675464153,-0.3637875020504,0.930449247360229,0.991654396057129,-0.031513299793005,0.125014185905457,0.996614456176758,0.0431667156517506,0.0699732527136803,0.0220253579318523,0.0196881964802742,-0.999563574790955,0.0244996771216393,0.145650207996368,-0.989032804965973,-0.112340472638607,0.173664510250092,-0.97837632894516,0.0138797517865896,0.222919762134552,-0.974737942218781,0.0244996771216393,0.145650207996368,-0.989032804965973,0.89497309923172,0.445222586393356,-0.0282849818468094,0.850722312927246,-0.524261593818665,-0.0377022624015808,0.0331073403358459,0.0842455253005028,-0.995894968509674,0.0373716913163662,0.129419177770615,-0.990885496139526,
- 0.0810486078262329,-0.0508337393403053,-0.99541300535202,0.0707627758383751,-0.274135410785675,-0.959084153175354,0.985491156578064,-0.168022036552429,-0.0239950679242611,0.0810486078262329,-0.0508337393403053,-0.99541300535202,0.0373716913163662,0.129419177770615,-0.990885496139526,0.99638170003891,-0.0484537780284882,-0.0698276609182358,0.985491156578064,-0.168022036552429,-0.0239950679242611,0.0373716913163662,0.129419177770615,-0.990885496139526,-0.0404140800237656,0.169349104166031,0.984727263450623,0.0444402247667313,-0.411837577819824,0.910172998905182,0.0337672680616379,0.0224787183105946,0.999176919460297,-0.0322965271770954,-0.0343000069260597,0.998889684677124,-0.992475032806396,0.120035901665688,-0.0241834875196218,-0.959359884262085,-0.278071016073227,-0.0480126515030861,-0.958584606647491,-0.269074767827988,0.0933502390980721,-0.959359884262085,-0.278071016073227,-0.0480126515030861,-0.906427979469299,-0.420649826526642,-0.0379758663475513,-0.958584606647491,-0.269074767827988,0.0933502390980721,0.998255610466003,0.0545934960246086,-0.0224812068045139,0.92570424079895,0.249114573001862,-0.284629046916962,0.967089951038361,0.253022044897079,0.0267763435840607,0.998976349830627,0.0251414813101292,0.0376070812344551,0.974067807197571,-0.222426682710648,0.0414529740810394,0.00645525846630335,0.22848929464817,0.973525106906891,0.0166435725986958,-0.209327861666679,0.977703928947449,0.806953907012939,0.590295672416687,0.0194058921188116,0.998976349830627,0.0251414813101292,0.0376070812344551,0.0166435725986958,-0.209327861666679,0.977703928947449,0.924597203731537,0.379315584897995,0.0352111496031284,0.99802166223526,-0.0277878642082214,0.0563976801931858,0.0203652940690517,0.0413389392197132,0.998937606811523,0.0103982519358397,-0.115205362439156,0.993287324905396,0.0203652940690517,0.0413389392197132,0.998937606811523,0.99802166223526,-0.0277878642082214,0.0563976801931858,0.90705007314682,-0.414579510688782,0.0733771920204163,0.0151378884911537,0.0126403691247106,0.999805569648743,-0.836810290813446,-0.545939147472382,0.0412182658910751,
- -0.989351868629456,-0.14284186065197,-0.0279139187186956,-0.917364120483398,0.195040717720985,-0.346990287303925,-0.890286266803741,-0.232886478304863,0.391349345445633,0.217704191803932,0.248455822467804,-0.943861603736877,-0.0319091714918613,0.280349999666214,-0.959367454051971,-0.894924819469452,0.441595762968063,0.0640524700284004,-0.044712670147419,-0.18994052708149,-0.980776965618134,0.217704191803932,0.248455822467804,-0.943861603736877,-0.894924819469452,0.441595762968063,0.0640524700284004,-0.0294536966830492,0.252889096736908,-0.967046856880188,-0.112340472638607,0.173664510250092,-0.97837632894516,0.0244996771216393,0.145650207996368,-0.989032804965973,-0.0294536966830492,0.252889096736908,-0.967046856880188,-0.915243685245514,0.389727592468262,-0.102183602750301,0.0138797517865896,0.222919762134552,-0.974737942218781,0.103423453867435,-0.264808297157288,-0.95873886346817,-0.0405409894883633,0.17164820432663,-0.984323799610138,0.0684598535299301,-0.315527468919754,-0.946443676948547,-0.0405917279422283,0.0258652120828629,-0.998841047286987,0.151221677660942,-0.130716949701309,-0.979818999767303,-0.614356219768524,-0.786538422107697,-0.062640592455864,-0.246593043208122,-0.967113554477692,-0.0623159483075142,-0.131834983825684,0.0363032482564449,-0.990606784820557,-0.879651069641113,-0.0141915213316679,-0.475408047437668,-0.0416333340108395,-0.0894007459282875,-0.995125234127045,0.00472289463505149,0.00131173443514854,-0.9999880194664,-0.12854266166687,-0.0241241231560707,-0.991410553455353,0.0507511608302593,-0.0156435035169125,0.998588800430298,-0.00375237036496401,-0.263202488422394,0.964733302593231,0.0276787187904119,0.316637337207794,0.948142766952515,-0.0491602085530758,0.00943397451192141,-0.998746395111084,0.156979918479919,-0.0510141476988792,-0.986283421516418,-0.131834983825684,0.0363032482564449,-0.990606784820557,0.512097775936127,0.0905581563711166,-0.854139983654022,-0.10741900652647,0.0911001861095428,0.990031361579895,0.774245619773865,0.632379949092865,-0.0252850614488125,0.351759105920792,0.0735242143273354,0.933198750019073,
- -0.903974235057831,-0.424851924180985,-0.0482852384448051,-0.976767420768738,-0.206126645207405,-0.0586275942623615,-0.898276090621948,-0.438119739294052,0.0339289791882038,-0.991616547107697,0.125840917229652,0.0293401442468166,0.239457905292511,-0.173179388046265,0.955337047576904,-0.144536674022675,0.0683595165610313,0.987135291099548,0.11934357136488,-0.0479260608553886,0.991695642471313,-0.031373992562294,0.0559343360364437,0.997941434383392,-0.10741900652647,0.0911001861095428,0.990031361579895,0.201552242040634,-0.341451346874237,0.918034732341766,0.11934357136488,-0.0479260608553886,0.991695642471313,-0.144536674022675,0.0683595165610313,0.987135291099548,-0.92846155166626,-0.368195831775665,0.0488974899053574,-0.808191955089569,-0.588457643985748,-0.0233142543584108,-0.976943135261536,-0.209559589624405,-0.0408284440636635,-0.653795421123505,-0.755430698394775,0.0433142781257629,-0.0462278909981251,-0.0241110101342201,0.998639941215515,0.0225190594792366,0.0204129591584206,0.999538064002991,-0.151990711688995,-0.309297382831573,0.938740670681,0.191903755068779,0.61363160610199,0.765917301177979,0.0507511608302593,-0.0156435035169125,0.998588800430298,0.116822317242622,-0.229744777083397,0.966214239597321,-0.0848661735653877,0.101352237164974,0.99122428894043,0.803222715854645,0.563264071941376,0.193821489810944,0.811766862869263,0.583577454090118,-0.0217250492423773,0.902875185012817,0.426718831062317,0.0522250533103943,0.707856833934784,0.706355035305023,-0.00110727467108518,0.173173606395721,-0.167272374033928,0.970582723617554,0.153301358222961,-0.166388064622879,0.97407078742981,0.239457905292511,-0.173179388046265,0.955337047576904,-0.614127576351166,-0.786456525325775,0.0658296644687653,-0.558295488357544,-0.82672256231308,0.0695419237017632,-0.144536674022675,0.0683595165610313,0.987135291099548,-0.151990711688995,-0.309297382831573,0.938740670681,0.981280505657196,-0.172076195478439,0.0864775776863098,0.974733233451843,0.0224645435810089,0.222239688038826,0.91040974855423,0.41350582242012,-0.0129229426383972,
- 0.868269264698029,0.489310771226883,-0.0817529335618019,0.91636335849762,0.282340586185455,-0.283834457397461,-0.0848661735653877,0.101352237164974,0.99122428894043,-0.898276090621948,-0.438119739294052,0.0339289791882038,-0.887546539306641,-0.458687990903854,0.0432026386260986,0.96899139881134,0.241901069879532,0.0503953136503696,0.789725422859192,0.612622797489166,-0.0320495218038559,0.811766862869263,0.583577454090118,-0.0217250492423773,0.803222715854645,0.563264071941376,0.193821489810944,0.0124276094138622,-0.0429497212171555,-0.998999953269959,0.0181031040847301,-0.0292199589312077,-0.999409079551697,0.0128672607243061,0.0221300441771746,-0.99967235326767,0.333501011133194,0.942121744155884,0.0344067253172398,0.91040974855423,0.41350582242012,-0.0129229426383972,0.755328357219696,0.653487503528595,-0.0493277236819267,0.998064696788788,-0.0568713285028934,-0.0251509677618742,-0.0405409894883633,0.17164820432663,-0.984323799610138,0.103423453867435,-0.264808297157288,-0.95873886346817,0.884980022907257,0.463820785284042,-0.0409951955080032,0.902875185012817,0.426718831062317,0.0522250533103943,0.811766862869263,0.583577454090118,-0.0217250492423773,0.998064696788788,-0.0568713285028934,-0.0251509677618742,-0.653795421123505,-0.755430698394775,0.0433142781257629,-0.976943135261536,-0.209559589624405,-0.0408284440636635,-0.996090412139893,-0.0704312846064568,-0.0533240027725697,-0.991616547107697,0.125840917229652,0.0293401442468166,0.191903755068779,0.61363160610199,0.765917301177979,-0.996090412139893,-0.0704312846064568,-0.0533240027725697,0.010747080668807,0.0256644170731306,-0.999612867832184,0.0100016919896007,-0.0189375728368759,-0.999770641326904,0.0124276094138622,-0.0429497212171555,-0.998999953269959,0.0128672607243061,0.0221300441771746,-0.99967235326767,0.996817171573639,0.0632281079888344,-0.0485574826598167,0.937269687652588,0.346158623695374,0.0412279777228832,0.967724680900574,-0.00738755986094475,0.251901477575302,-0.151990711688995,-0.309297382831573,0.938740670681,-0.0663140937685966,0.0388594679534435,0.997041881084442,
- 0.191903755068779,0.61363160610199,0.765917301177979,-0.996090412139893,-0.0704312846064568,-0.0533240027725697,0.191903755068779,0.61363160610199,0.765917301177979,-0.653795421123505,-0.755430698394775,0.0433142781257629,0.0684598535299301,-0.315527468919754,-0.946443676948547,-0.976767420768738,-0.206126645207405,-0.0586275942623615,-0.903974235057831,-0.424851924180985,-0.0482852384448051,-0.0405917279422283,0.0258652120828629,-0.998841047286987,0.0684598535299301,-0.315527468919754,-0.946443676948547,-0.018469987437129,0.0460452921688557,-0.99876868724823,-0.065727524459362,-0.14946012198925,-0.986580789089203,-0.0665650218725204,0.0619459748268127,-0.995857357978821,0.0515010133385658,-0.00316597521305084,-0.99866795539856,-0.0397457964718342,0.112533330917358,-0.992852807044983,0.17042264342308,-0.245934993028641,-0.954186618328094,-0.988534271717072,-0.145035862922668,-0.0420087687671185,-0.987205862998962,-0.156092494726181,0.0325562208890915,-0.959951817989349,-0.229593962430954,-0.160559058189392,-0.246593043208122,-0.967113554477692,-0.0623159483075142,-0.318646281957626,-0.947729706764221,-0.0165243167430162,-0.131834983825684,0.0363032482564449,-0.990606784820557,-0.045402929186821,-0.0471154078841209,-0.99785703420639,-0.903974235057831,-0.424851924180985,-0.0482852384448051,-0.9864821434021,-0.157100409269333,-0.0466107800602913,-0.00375237036496401,-0.263202488422394,0.964733302593231,0.0507511608302593,-0.0156435035169125,0.998588800430298,0.237993702292442,-0.299788922071457,0.923842906951904,-0.887546539306641,-0.458687990903854,0.0432026386260986,-0.959951817989349,-0.229593962430954,-0.160559058189392,-0.987205862998962,-0.156092494726181,0.0325562208890915,-0.045402929186821,-0.0471154078841209,-0.99785703420639,-0.976943135261536,-0.209559589624405,-0.0408284440636635,0.17042264342308,-0.245934993028641,-0.954186618328094,-0.988534271717072,-0.145035862922668,-0.0420087687671185,-0.0365923270583153,0.232620015740395,-0.971879124641418,-0.0103890299797058,-0.390953123569489,-0.920352041721344,
- -0.999179005622864,0.0146711971610785,-0.0377652570605278,-0.988534271717072,-0.145035862922668,-0.0420087687671185,-0.959951817989349,-0.229593962430954,-0.160559058189392,-0.0365923270583153,0.232620015740395,-0.971879124641418,-0.959951817989349,-0.229593962430954,-0.160559058189392,0.0684598535299301,-0.315527468919754,-0.946443676948547,-0.065727524459362,-0.14946012198925,-0.986580789089203,-0.245011255145073,-0.969311594963074,0.0201159697026014,-0.614127576351166,-0.786456525325775,0.0658296644687653,0.239457905292511,-0.173179388046265,0.955337047576904,0.237993702292442,-0.299788922071457,0.923842906951904,0.0507511608302593,-0.0156435035169125,0.998588800430298,-0.0848661735653877,0.101352237164974,0.99122428894043,0.974733233451843,0.0224645435810089,0.222239688038826,0.981280505657196,-0.172076195478439,0.0864775776863098,0.965864479541779,0.257286667823792,-0.0301576368510723,0.999695837497711,-0.0083285178989172,0.0232121534645557,-0.0405409894883633,0.17164820432663,-0.984323799610138,0.998064696788788,-0.0568713285028934,-0.0251509677618742,0.999695837497711,-0.0083285178989172,0.0232121534645557,0.800311386585236,0.598716855049133,-0.0322452895343304,0.015774579718709,0.148477077484131,-0.988790035247803,-0.018469987437129,0.0460452921688557,-0.99876868724823,0.892199337482452,0.379070997238159,-0.24553120136261,0.86250627040863,0.499364644289017,-0.081962950527668,0.0515010133385658,-0.00316597521305084,-0.99866795539856,0.91636335849762,0.282340586185455,-0.283834457397461,0.755328357219696,0.653487503528595,-0.0493277236819267,0.91040974855423,0.41350582242012,-0.0129229426383972,0.156979918479919,-0.0510141476988792,-0.986283421516418,0.197774156928062,0.978615522384644,-0.0565428994596004,0.910018026828766,0.411999464035034,-0.0460847951471806,-0.00814483594149351,0.0388899259269238,-0.99921041727066,-0.995166420936584,-0.0718128383159637,0.0669841915369034,-0.879651069641113,-0.0141915213316679,-0.475408047437668,-0.570299029350281,0.0103940013796091,0.821371495723724,-0.018469987437129,0.0460452921688557,-0.99876868724823,
- -0.0405409894883633,0.17164820432663,-0.984323799610138,0.999695837497711,-0.0083285178989172,0.0232121534645557,0.0684598535299301,-0.315527468919754,-0.946443676948547,-0.0405409894883633,0.17164820432663,-0.984323799610138,-0.018469987437129,0.0460452921688557,-0.99876868724823,0.707856833934784,0.706355035305023,-0.00110727467108518,0.153301358222961,-0.166388064622879,0.97407078742981,-0.151990711688995,-0.309297382831573,0.938740670681,-0.624381959438324,-0.779629945755005,0.0482113808393478,-0.92846155166626,-0.368195831775665,0.0488974899053574,0.0166006200015545,-0.0672816187143326,0.997595906257629,-0.0848661735653877,0.101352237164974,0.99122428894043,-0.887546539306641,-0.458687990903854,0.0432026386260986,0.237993702292442,-0.299788922071457,0.923842906951904,-0.887546539306641,-0.458687990903854,0.0432026386260986,-0.00375237036496401,-0.263202488422394,0.964733302593231,0.237993702292442,-0.299788922071457,0.923842906951904,-0.151990711688995,-0.309297382831573,0.938740670681,0.974733233451843,0.0224645435810089,0.222239688038826,0.707856833934784,0.706355035305023,-0.00110727467108518,0.333501011133194,0.942121744155884,0.0344067253172398,0.755328357219696,0.653487503528595,-0.0493277236819267,0.303879737854004,0.951136291027069,-0.0547447465360165,0.328514903783798,0.943758070468903,0.0374009683728218,0.548073410987854,0.835099756717682,0.0471579357981682,-0.987205862998962,-0.156092494726181,0.0325562208890915,-0.00375237036496401,-0.263202488422394,0.964733302593231,-0.887546539306641,-0.458687990903854,0.0432026386260986,0.239457905292511,-0.173179388046265,0.955337047576904,0.351759105920792,0.0735242143273354,0.933198750019073,-0.245011255145073,-0.969311594963074,0.0201159697026014,-0.10741900652647,0.0911001861095428,0.990031361579895,0.351759105920792,0.0735242143273354,0.933198750019073,0.239457905292511,-0.173179388046265,0.955337047576904,0.86250627040863,0.499364644289017,-0.081962950527668,0.952179193496704,0.292189240455627,-0.0893323794007301,-0.0397457964718342,0.112533330917358,-0.992852807044983,
- 0.0515010133385658,-0.00316597521305084,-0.99866795539856,-0.144536674022675,0.0683595165610313,0.987135291099548,-0.558295488357544,-0.82672256231308,0.0695419237017632,-0.624381959438324,-0.779629945755005,0.0482113808393478,0.0166006200015545,-0.0672816187143326,0.997595906257629,0.0166006200015545,-0.0672816187143326,0.997595906257629,0.201552242040634,-0.341451346874237,0.918034732341766,-0.144536674022675,0.0683595165610313,0.987135291099548,-0.0462278909981251,-0.0241110101342201,0.998639941215515,0.191903755068779,0.61363160610199,0.765917301177979,-0.991616547107697,0.125840917229652,0.0293401442468166,0.0507511608302593,-0.0156435035169125,0.998588800430298,0.803222715854645,0.563264071941376,0.193821489810944,0.116822317242622,-0.229744777083397,0.966214239597321,0.0453453697264194,0.11141013354063,0.99273943901062,0.99263995885849,-0.0953477248549461,0.0746649876236916,0.998035550117493,0.0553924851119518,0.0292691569775343,0.0332563668489456,0.239642605185509,0.970291495323181,-0.976767420768738,-0.206126645207405,-0.0586275942623615,0.0684598535299301,-0.315527468919754,-0.946443676948547,-0.959951817989349,-0.229593962430954,-0.160559058189392,0.0225190594792366,0.0204129591584206,0.999538064002991,0.116822317242622,-0.229744777083397,0.966214239597321,0.902875185012817,0.426718831062317,0.0522250533103943,0.981280505657196,-0.172076195478439,0.0864775776863098,0.116822317242622,-0.229744777083397,0.966214239597321,0.803222715854645,0.563264071941376,0.193821489810944,0.902875185012817,0.426718831062317,0.0522250533103943,-0.898276090621948,-0.438119739294052,0.0339289791882038,-0.959951817989349,-0.229593962430954,-0.160559058189392,-0.887546539306641,-0.458687990903854,0.0432026386260986,-0.976767420768738,-0.206126645207405,-0.0586275942623615,-0.959951817989349,-0.229593962430954,-0.160559058189392,-0.898276090621948,-0.438119739294052,0.0339289791882038,0.937269687652588,0.346158623695374,0.0412279777228832,0.448866724967957,-0.00407096184790134,0.893589437007904,0.967724680900574,-0.00738755986094475,0.251901477575302,
- 0.448866724967957,-0.00407096184790134,0.893589437007904,0.0236572548747063,-0.113389052450657,0.993268966674805,0.0635695978999138,-0.0975642278790474,0.993196964263916,-0.92846155166626,-0.368195831775665,0.0488974899053574,0.0271010044962168,-0.0772053077816963,0.996646821498871,0.0166006200015545,-0.0672816187143326,0.997595906257629,-0.0451908558607101,0.112271659076214,-0.992649435997009,-0.100662641227245,0.140607476234436,-0.98493480682373,-0.00814483594149351,0.0388899259269238,-0.99921041727066,0.937269687652588,0.346158623695374,0.0412279777228832,0.0236572548747063,-0.113389052450657,0.993268966674805,0.448866724967957,-0.00407096184790134,0.893589437007904,-0.903974235057831,-0.424851924180985,-0.0482852384448051,-0.045402929186821,-0.0471154078841209,-0.99785703420639,-0.0405917279422283,0.0258652120828629,-0.998841047286987,-0.0405917279422283,0.0258652120828629,-0.998841047286987,-0.045402929186821,-0.0471154078841209,-0.99785703420639,0.103423453867435,-0.264808297157288,-0.95873886346817,-0.118291772902012,0.186975419521332,0.975216507911682,0.91040974855423,0.41350582242012,-0.0129229426383972,0.201552242040634,-0.341451346874237,0.918034732341766,0.707856833934784,0.706355035305023,-0.00110727467108518,0.974733233451843,0.0224645435810089,0.222239688038826,0.957701742649078,0.273648887872696,-0.08901596814394,0.967724680900574,-0.00738755986094475,0.251901477575302,0.989968419075012,0.0355721972882748,-0.136738047003746,0.996817171573639,0.0632281079888344,-0.0485574826598167,0.884980022907257,0.463820785284042,-0.0409951955080032,0.103423453867435,-0.264808297157288,-0.95873886346817,0.0269173011183739,-0.332291066646576,-0.942792773246765,0.980472981929779,0.17509414255619,-0.0895257070660591,-0.976943135261536,-0.209559589624405,-0.0408284440636635,-0.045402929186821,-0.0471154078841209,-0.99785703420639,-0.9864821434021,-0.157100409269333,-0.0466107800602913,-0.12854266166687,-0.0241241231560707,-0.991410553455353,0.00472289463505149,0.00131173443514854,-0.9999880194664,0.953002393245697,-0.300299972295761,-0.0400813519954681,
- -0.995166420936584,-0.0718128383159637,0.0669841915369034,-0.570299029350281,0.0103940013796091,0.821371495723724,-0.0240587517619133,0.134968787431717,0.990557789802551,-0.045402929186821,-0.0471154078841209,-0.99785703420639,0.0269173011183739,-0.332291066646576,-0.942792773246765,0.103423453867435,-0.264808297157288,-0.95873886346817,-0.570299029350281,0.0103940013796091,0.821371495723724,0.448866724967957,-0.00407096184790134,0.893589437007904,0.0635695978999138,-0.0975642278790474,0.993196964263916,-0.570299029350281,0.0103940013796091,0.821371495723724,0.0635695978999138,-0.0975642278790474,0.993196964263916,-0.0240587517619133,0.134968787431717,0.990557789802551,-0.808191955089569,-0.588457643985748,-0.0233142543584108,-0.100662641227245,0.140607476234436,-0.98493480682373,-0.0665650218725204,0.0619459748268127,-0.995857357978821,-0.996090412139893,-0.0704312846064568,-0.0533240027725697,-0.903974235057831,-0.424851924180985,-0.0482852384448051,-0.991616547107697,0.125840917229652,0.0293401442468166,-0.653795421123505,-0.755430698394775,0.0433142781257629,0.191903755068779,0.61363160610199,0.765917301177979,-0.0663140937685966,0.0388594679534435,0.997041881084442,-0.0663140937685966,0.0388594679534435,0.997041881084442,0.0271010044962168,-0.0772053077816963,0.996646821498871,-0.92846155166626,-0.368195831775665,0.0488974899053574,-0.653795421123505,-0.755430698394775,0.0433142781257629,-0.808191955089569,-0.588457643985748,-0.0233142543584108,-0.814680695533752,-0.578557670116425,-0.0395801775157452,-0.100662641227245,0.140607476234436,-0.98493480682373,-0.558295488357544,-0.82672256231308,0.0695419237017632,-0.614127576351166,-0.786456525325775,0.0658296644687653,-0.246593043208122,-0.967113554477692,-0.0623159483075142,-0.614356219768524,-0.786538422107697,-0.062640592455864,-0.245011255145073,-0.969311594963074,0.0201159697026014,-0.318646281957626,-0.947729706764221,-0.0165243167430162,-0.246593043208122,-0.967113554477692,-0.0623159483075142,-0.614127576351166,-0.786456525325775,0.0658296644687653,0.389405608177185,0.920557796955109,-0.0306029133498669,
- 0.135714367032051,0.980175733566284,0.144351065158844,0.328514903783798,0.943758070468903,0.0374009683728218,0.303879737854004,0.951136291027069,-0.0547447465360165,0.774245619773865,0.632379949092865,-0.0252850614488125,-0.10741900652647,0.0911001861095428,0.990031361579895,0.328514903783798,0.943758070468903,0.0374009683728218,0.135714367032051,0.980175733566284,0.144351065158844,0.201552242040634,-0.341451346874237,0.918034732341766,0.333501011133194,0.942121744155884,0.0344067253172398,0.11934357136488,-0.0479260608553886,0.991695642471313,0.896256983280182,0.442747920751572,0.0264140963554382,0.868269264698029,0.489310771226883,-0.0817529335618019,0.91040974855423,0.41350582242012,-0.0129229426383972,0.974733233451843,0.0224645435810089,0.222239688038826,0.993418097496033,0.0829260870814323,-0.0790177136659622,0.957701742649078,0.273648887872696,-0.08901596814394,-0.0451908558607101,0.112271659076214,-0.992649435997009,-0.00814483594149351,0.0388899259269238,-0.99921041727066,0.910018026828766,0.411999464035034,-0.0460847951471806,-0.0451908558607101,0.112271659076214,-0.992649435997009,0.910018026828766,0.411999464035034,-0.0460847951471806,0.892199337482452,0.379070997238159,-0.24553120136261,0.892199337482452,0.379070997238159,-0.24553120136261,0.0515010133385658,-0.00316597521305084,-0.99866795539856,-0.0451908558607101,0.112271659076214,-0.992649435997009,-0.995166420936584,-0.0718128383159637,0.0669841915369034,-0.995671033859253,0.079039067029953,-0.0489085055887699,-0.879651069641113,-0.0141915213316679,-0.475408047437668,-0.0416333340108395,-0.0894007459282875,-0.995125234127045,-0.879651069641113,-0.0141915213316679,-0.475408047437668,-0.995671033859253,0.079039067029953,-0.0489085055887699,0.91040974855423,0.41350582242012,-0.0129229426383972,0.333501011133194,0.942121744155884,0.0344067253172398,0.201552242040634,-0.341451346874237,0.918034732341766,-0.118291772902012,0.186975419521332,0.975216507911682,0.896256983280182,0.442747920751572,0.0264140963554382,0.91040974855423,0.41350582242012,-0.0129229426383972,
- 0.153301358222961,-0.166388064622879,0.97407078742981,0.173173606395721,-0.167272374033928,0.970582723617554,-0.118291772902012,0.186975419521332,0.975216507911682,0.0271010044962168,-0.0772053077816963,0.996646821498871,-0.0663140937685966,0.0388594679534435,0.997041881084442,-0.0365923270583153,0.232620015740395,-0.971879124641418,-0.065727524459362,-0.14946012198925,-0.986580789089203,-0.126693487167358,0.0959278121590614,-0.987292587757111,-0.814680695533752,-0.578557670116425,-0.0395801775157452,-0.624381959438324,-0.779629945755005,0.0482113808393478,-0.558295488357544,-0.82672256231308,0.0695419237017632,-0.808191955089569,-0.588457643985748,-0.0233142543584108,-0.624381959438324,-0.779629945755005,0.0482113808393478,-0.814680695533752,-0.578557670116425,-0.0395801775157452,-0.808191955089569,-0.588457643985748,-0.0233142543584108,-0.92846155166626,-0.368195831775665,0.0488974899053574,-0.624381959438324,-0.779629945755005,0.0482113808393478,0.156979918479919,-0.0510141476988792,-0.986283421516418,-0.00814483594149351,0.0388899259269238,-0.99921041727066,0.151221677660942,-0.130716949701309,-0.979818999767303,-0.131834983825684,0.0363032482564449,-0.990606784820557,-0.0665650218725204,0.0619459748268127,-0.995857357978821,0.17042264342308,-0.245934993028641,-0.954186618328094,-0.976943135261536,-0.209559589624405,-0.0408284440636635,-0.808191955089569,-0.588457643985748,-0.0233142543584108,0.998064696788788,-0.0568713285028934,-0.0251509677618742,0.965864479541779,0.257286667823792,-0.0301576368510723,0.981280505657196,-0.172076195478439,0.0864775776863098,0.902875185012817,0.426718831062317,0.0522250533103943,-0.898276090621948,-0.438119739294052,0.0339289791882038,-0.0848661735653877,0.101352237164974,0.99122428894043,-0.0462278909981251,-0.0241110101342201,0.998639941215515,-0.991616547107697,0.125840917229652,0.0293401442468166,-0.987205862998962,-0.156092494726181,0.0325562208890915,-0.988534271717072,-0.145035862922668,-0.0420087687671185,-0.999179005622864,0.0146711971610785,-0.0377652570605278,-0.972956299781799,-0.228661432862282,0.0327134840190411,
- 0.0236572548747063,-0.113389052450657,0.993268966674805,-0.0240587517619133,0.134968787431717,0.990557789802551,0.0635695978999138,-0.0975642278790474,0.993196964263916,0.953423261642456,0.293645232915878,0.0689678564667702,0.999552428722382,0.0169453267008066,0.0246553979814053,0.980061173439026,-0.19585420191288,-0.0334860309958458,0.789725422859192,0.612622797489166,-0.0320495218038559,0.96899139881134,0.241901069879532,0.0503953136503696,-0.987205862998962,-0.156092494726181,0.0325562208890915,-0.972956299781799,-0.228661432862282,0.0327134840190411,-0.0212536286562681,0.1002426892519,0.994735956192017,-0.00375237036496401,-0.263202488422394,0.964733302593231,0.0276787187904119,0.316637337207794,0.948142766952515,0.96899139881134,0.241901069879532,0.0503953136503696,0.803222715854645,0.563264071941376,0.193821489810944,0.0507511608302593,-0.0156435035169125,0.998588800430298,-0.0365923270583153,0.232620015740395,-0.971879124641418,0.015774579718709,0.148477077484131,-0.988790035247803,0.0302187334746122,0.0896539017558098,-0.995514512062073,-0.0103890299797058,-0.390953123569489,-0.920352041721344,0.156979918479919,-0.0510141476988792,-0.986283421516418,0.386037737131119,0.921962141990662,-0.0309971831738949,0.197774156928062,0.978615522384644,-0.0565428994596004,0.0225190594792366,0.0204129591584206,0.999538064002991,0.981280505657196,-0.172076195478439,0.0864775776863098,-0.151990711688995,-0.309297382831573,0.938740670681,0.0271010044962168,-0.0772053077816963,0.996646821498871,0.201552242040634,-0.341451346874237,0.918034732341766,0.0166006200015545,-0.0672816187143326,0.997595906257629,-0.0451908558607101,0.112271659076214,-0.992649435997009,0.0515010133385658,-0.00316597521305084,-0.99866795539856,-0.0665650218725204,0.0619459748268127,-0.995857357978821,-0.100662641227245,0.140607476234436,-0.98493480682373,-0.0212536286562681,0.1002426892519,0.994735956192017,0.0585301928222179,-0.100084409117699,0.993255913257599,0.0276787187904119,0.316637337207794,0.948142766952515,-0.00375237036496401,-0.263202488422394,0.964733302593231,
- 0.395640790462494,-0.126063317060471,0.909712255001068,0.930036664009094,0.0286965593695641,0.366344690322876,0.953423261642456,0.293645232915878,0.0689678564667702,0.0585301928222179,-0.100084409117699,0.993255913257599,0.0638448372483253,0.0687844753265381,-0.995586574077606,0.9833624958992,0.17479482293129,0.0494485944509506,0.814143478870392,0.576283276081085,-0.0711909756064415,0.0073334607295692,-0.0241382773965597,-0.999681770801544,0.997641265392303,0.0629739910364151,0.0273159444332123,0.930036664009094,0.0286965593695641,0.366344690322876,0.998035550117493,0.0553924851119518,0.0292691569775343,0.980476379394531,0.189361497759819,-0.052993543446064,0.395640790462494,-0.126063317060471,0.909712255001068,-0.01731270365417,0.0300763677805662,0.999397754669189,0.0332563668489456,0.239642605185509,0.970291495323181,-0.972956299781799,-0.228661432862282,0.0327134840190411,-0.984598219394684,0.159652173519135,-0.0712577775120735,-0.01731270365417,0.0300763677805662,0.999397754669189,0.0302187334746122,0.0896539017558098,-0.995514512062073,0.860008060932159,-0.508662521839142,-0.0406029187142849,0.9833624958992,0.17479482293129,0.0494485944509506,0.0638448372483253,0.0687844753265381,-0.995586574077606,0.930036664009094,0.0286965593695641,0.366344690322876,0.999552428722382,0.0169453267008066,0.0246553979814053,0.953423261642456,0.293645232915878,0.0689678564667702,-0.975139498710632,-0.203124612569809,0.0885634645819664,-0.0103890299797058,-0.390953123569489,-0.920352041721344,0.0802202671766281,0.281413048505783,-0.956227719783783,-0.0212536286562681,0.1002426892519,0.994735956192017,-0.972956299781799,-0.228661432862282,0.0327134840190411,-0.01731270365417,0.0300763677805662,0.999397754669189,0.395640790462494,-0.126063317060471,0.909712255001068,0.0364566631615162,-0.0940081775188446,0.994903683662415,-0.0212536286562681,0.1002426892519,0.994735956192017,-0.01731270365417,0.0300763677805662,0.999397754669189,0.0276787187904119,0.316637337207794,0.948142766952515,0.0585301928222179,-0.100084409117699,0.993255913257599,
- 0.953423261642456,0.293645232915878,0.0689678564667702,0.96899139881134,0.241901069879532,0.0503953136503696,0.0332563668489456,0.239642605185509,0.970291495323181,0.998035550117493,0.0553924851119518,0.0292691569775343,0.930036664009094,0.0286965593695641,0.366344690322876,0.395640790462494,-0.126063317060471,0.909712255001068,0.953002393245697,-0.300299972295761,-0.0400813519954681,0.00472289463505149,0.00131173443514854,-0.9999880194664,0.0073334607295692,-0.0241382773965597,-0.999681770801544,0.814143478870392,0.576283276081085,-0.0711909756064415,0.937269687652588,0.346158623695374,0.0412279777228832,0.996817171573639,0.0632281079888344,-0.0485574826598167,0.980476379394531,0.189361497759819,-0.052993543446064,0.998035550117493,0.0553924851119518,0.0292691569775343,0.99263995885849,-0.0953477248549461,0.0746649876236916,-0.995166420936584,-0.0718128383159637,0.0669841915369034,-0.0240587517619133,0.134968787431717,0.990557789802551,-0.0251754336059093,-0.0864573270082474,0.995937407016754,-0.987934112548828,0.141118288040161,0.0638113841414452,-0.0240587517619133,0.134968787431717,0.990557789802551,0.0236572548747063,-0.113389052450657,0.993268966674805,0.0453453697264194,0.11141013354063,0.99273943901062,0.0332563668489456,0.239642605185509,0.970291495323181,-0.0251754336059093,-0.0864573270082474,0.995937407016754,0.00472289463505149,0.00131173443514854,-0.9999880194664,-0.0416333340108395,-0.0894007459282875,-0.995125234127045,-0.0465506538748741,0.308943808078766,-0.94994044303894,0.0073334607295692,-0.0241382773965597,-0.999681770801544,-0.0416333340108395,-0.0894007459282875,-0.995125234127045,-0.995671033859253,0.079039067029953,-0.0489085055887699,-0.994830429553986,-0.0929322466254234,-0.0409397035837173,-0.0465506538748741,0.308943808078766,-0.94994044303894,-0.994830429553986,-0.0929322466254234,-0.0409397035837173,-0.987934112548828,0.141118288040161,0.0638113841414452,-0.975139498710632,-0.203124612569809,0.0885634645819664,-0.975139498710632,-0.203124612569809,0.0885634645819664,0.0802202671766281,0.281413048505783,-0.956227719783783,
- -0.0465506538748741,0.308943808078766,-0.94994044303894,0.0453453697264194,0.11141013354063,0.99273943901062,0.0236572548747063,-0.113389052450657,0.993268966674805,0.937269687652588,0.346158623695374,0.0412279777228832,0.99263995885849,-0.0953477248549461,0.0746649876236916,0.0585301928222179,-0.100084409117699,0.993255913257599,0.0364566631615162,-0.0940081775188446,0.994903683662415,0.395640790462494,-0.126063317060471,0.909712255001068,0.980061173439026,-0.19585420191288,-0.0334860309958458,0.999552428722382,0.0169453267008066,0.0246553979814053,0.930036664009094,0.0286965593695641,0.366344690322876,0.997641265392303,0.0629739910364151,0.0273159444332123,0.0585301928222179,-0.100084409117699,0.993255913257599,-0.0212536286562681,0.1002426892519,0.994735956192017,0.0364566631615162,-0.0940081775188446,0.994903683662415,-0.975139498710632,-0.203124612569809,0.0885634645819664,-0.0465506538748741,0.308943808078766,-0.94994044303894,-0.994830429553986,-0.0929322466254234,-0.0409397035837173,-0.0103890299797058,-0.390953123569489,-0.920352041721344,0.0638448372483253,0.0687844753265381,-0.995586574077606,0.0802202671766281,0.281413048505783,-0.956227719783783,-0.01731270365417,0.0300763677805662,0.999397754669189,-0.984598219394684,0.159652173519135,-0.0712577775120735,-0.987934112548828,0.141118288040161,0.0638113841414452,-0.995671033859253,0.079039067029953,-0.0489085055887699,-0.995166420936584,-0.0718128383159637,0.0669841915369034,-0.987934112548828,0.141118288040161,0.0638113841414452,-0.994830429553986,-0.0929322466254234,-0.0409397035837173,-0.0103890299797058,-0.390953123569489,-0.920352041721344,0.0302187334746122,0.0896539017558098,-0.995514512062073,0.0638448372483253,0.0687844753265381,-0.995586574077606,0.0638448372483253,0.0687844753265381,-0.995586574077606,0.0073334607295692,-0.0241382773965597,-0.999681770801544,-0.0465506538748741,0.308943808078766,-0.94994044303894,0.0638448372483253,0.0687844753265381,-0.995586574077606,-0.0465506538748741,0.308943808078766,-0.94994044303894,0.0802202671766281,0.281413048505783,-0.956227719783783,
- -0.999179005622864,0.0146711971610785,-0.0377652570605278,-0.0103890299797058,-0.390953123569489,-0.920352041721344,-0.975139498710632,-0.203124612569809,0.0885634645819664,0.0332563668489456,0.239642605185509,0.970291495323181,-0.01731270365417,0.0300763677805662,0.999397754669189,-0.0251754336059093,-0.0864573270082474,0.995937407016754,0.000758967478759587,0.184064388275146,0.982913970947266,0.256401687860489,-0.0768156200647354,0.963513195514679,0.00545058539137244,0.0367582254111767,0.999309420585632,0.0651274397969246,0.0162517428398132,-0.997744619846344,-0.243376240134239,0.968952596187592,-0.0435759015381336,0.459689557552338,0.887395679950714,-0.0348505936563015,-0.437923341989517,0.106082886457443,-0.892731547355652,-0.049948412925005,-0.996587812900543,-0.0657113194465637,-0.0987836718559265,-0.991383016109467,0.0860318243503571,0.0112104984000325,-0.855341613292694,-0.517943143844604,0.256401687860489,-0.0768156200647354,0.963513195514679,0.000758967478759587,0.184064388275146,0.982913970947266,0.0247236173599958,-0.613095045089722,0.789622187614441,-0.00642345193773508,-0.751269221305847,0.659964680671692,0.0112104984000325,-0.855341613292694,-0.517943143844604,-0.0987836718559265,-0.991383016109467,0.0860318243503571,-0.049948412925005,-0.996587812900543,-0.0657113194465637,-0.0885180905461311,-0.00519884843379259,-0.996061086654663,0.233253672719002,-0.0755226090550423,-0.969478726387024,-0.093502588570118,-0.994728207588196,-0.0421097204089165,-0.049948412925005,-0.996587812900543,-0.0657113194465637,0.0112104984000325,-0.855341613292694,-0.517943143844604,-0.0885180905461311,-0.00519884843379259,-0.996061086654663,-0.00642345193773508,-0.751269221305847,0.659964680671692,0.256401687860489,-0.0768156200647354,0.963513195514679,0.0247236173599958,-0.613095045089722,0.789622187614441,-0.0987836718559265,-0.991383016109467,0.0860318243503571,0.256401687860489,-0.0768156200647354,0.963513195514679,-0.00642345193773508,-0.751269221305847,0.659964680671692,0.0112104984000325,-0.855341613292694,-0.517943143844604,
- -0.0163782332092524,0.0630989074707031,-0.997872948646545,-0.0885180905461311,-0.00519884843379259,-0.996061086654663,0.0651274397969246,0.0162517428398132,-0.997744619846344,-0.437923341989517,0.106082886457443,-0.892731547355652,0.233253672719002,-0.0755226090550423,-0.969478726387024,-0.0885180905461311,-0.00519884843379259,-0.996061086654663,-0.0987836718559265,-0.991383016109467,0.0860318243503571,-0.049948412925005,-0.996587812900543,-0.0657113194465637,-0.093502588570118,-0.994728207588196,-0.0421097204089165,0.374796241521835,-0.924141407012939,0.0740979015827179,-0.0507141761481762,0.997225403785706,0.0544949881732464,0.169189170002937,0.985258102416992,-0.0253290981054306,0.36274915933609,0.931886196136475,0.00110272131860256,0.308823853731155,0.949885785579681,0.0484252870082855,-0.0987836718559265,-0.991383016109467,0.0860318243503571,0.374796241521835,-0.924141407012939,0.0740979015827179,-0.101895861327648,-0.0249522477388382,0.994482100009918,0.256401687860489,-0.0768156200647354,0.963513195514679,-0.0885180905461311,-0.00519884843379259,-0.996061086654663,-0.0163782332092524,0.0630989074707031,-0.997872948646545,0.0651274397969246,0.0162517428398132,-0.997744619846344,-0.101895861327648,-0.0249522477388382,0.994482100009918,0.318737089633942,-0.00832680147141218,0.947806656360626,0.00545058539137244,0.0367582254111767,0.999309420585632,0.256401687860489,-0.0768156200647354,0.963513195514679,0.774245619773865,0.632379949092865,-0.0252850614488125,0.135714367032051,0.980175733566284,0.144351065158844,0.318737089633942,-0.00832680147141218,0.947806656360626,0.374796241521835,-0.924141407012939,0.0740979015827179,-0.093502588570118,-0.994728207588196,-0.0421097204089165,-0.318646281957626,-0.947729706764221,-0.0165243167430162,-0.245011255145073,-0.969311594963074,0.0201159697026014,-0.437923341989517,0.106082886457443,-0.892731547355652,0.459689557552338,0.887395679950714,-0.0348505936563015,0.386037737131119,0.921962141990662,-0.0309971831738949,-0.0491602085530758,0.00943397451192141,-0.998746395111084,
- -0.101895861327648,-0.0249522477388382,0.994482100009918,0.374796241521835,-0.924141407012939,0.0740979015827179,-0.245011255145073,-0.969311594963074,0.0201159697026014,0.351759105920792,0.0735242143273354,0.933198750019073,-0.101895861327648,-0.0249522477388382,0.994482100009918,-0.245011255145073,-0.969311594963074,0.0201159697026014,0.00545058539137244,0.0367582254111767,0.999309420585632,0.318737089633942,-0.00832680147141218,0.947806656360626,-0.0507141761481762,0.997225403785706,0.0544949881732464,0.308823853731155,0.949885785579681,0.0484252870082855,0.318737089633942,-0.00832680147141218,0.947806656360626,0.351759105920792,0.0735242143273354,0.933198750019073,0.774245619773865,0.632379949092865,-0.0252850614488125,0.169189170002937,0.985258102416992,-0.0253290981054306,-0.0507141761481762,0.997225403785706,0.0544949881732464,0.135714367032051,0.980175733566284,0.144351065158844,0.389405608177185,0.920557796955109,-0.0306029133498669,0.318737089633942,-0.00832680147141218,0.947806656360626,-0.101895861327648,-0.0249522477388382,0.994482100009918,0.351759105920792,0.0735242143273354,0.933198750019073,-0.0491602085530758,0.00943397451192141,-0.998746395111084,0.512097775936127,0.0905581563711166,-0.854139983654022,0.233253672719002,-0.0755226090550423,-0.969478726387024,-0.437923341989517,0.106082886457443,-0.892731547355652,-0.093502588570118,-0.994728207588196,-0.0421097204089165,0.233253672719002,-0.0755226090550423,-0.969478726387024,-0.318646281957626,-0.947729706764221,-0.0165243167430162,0.0190188437700272,-0.034231711179018,-0.99923300743103,0.0262365620583296,-0.0343220382928848,-0.999066352844238,-0.00423022452741861,-0.0352713391184807,-0.999368846416473,-0.00555849354714155,-0.0350126549601555,-0.999371409416199,-0.0230109132826328,-0.0343738086521626,-0.999144196510315,-0.01837376691401,-0.0351839996874332,-0.999211966991425,0.00545058539137244,0.0367582254111767,0.999309420585632,0.308823853731155,0.949885785579681,0.0484252870082855,-0.00343100167810917,0.941113591194153,0.338073283433914,0.000758967478759587,0.184064388275146,0.982913970947266,
- -0.0163782332092524,0.0630989074707031,-0.997872948646545,-0.243376240134239,0.968952596187592,-0.0435759015381336,0.0651274397969246,0.0162517428398132,-0.997744619846344,0.024960070848465,0.937001466751099,0.348432600498199,-0.00343100167810917,0.941113591194153,0.338073283433914,0.308823853731155,0.949885785579681,0.0484252870082855,0.36274915933609,0.931886196136475,0.00110272131860256,0.156979918479919,-0.0510141476988792,-0.986283421516418,-0.0491602085530758,0.00943397451192141,-0.998746395111084,0.386037737131119,0.921962141990662,-0.0309971831738949,0.17042264342308,-0.245934993028641,-0.954186618328094,-0.0397457964718342,0.112533330917358,-0.992852807044983,-0.045402929186821,-0.0471154078841209,-0.99785703420639,-0.100662641227245,0.140607476234436,-0.98493480682373,0.151221677660942,-0.130716949701309,-0.979818999767303,-0.00814483594149351,0.0388899259269238,-0.99921041727066,-0.814680695533752,-0.578557670116425,-0.0395801775157452,-0.614356219768524,-0.786538422107697,-0.062640592455864,0.151221677660942,-0.130716949701309,-0.979818999767303,-0.100662641227245,0.140607476234436,-0.98493480682373,-0.558295488357544,-0.82672256231308,0.0695419237017632,-0.614356219768524,-0.786538422107697,-0.062640592455864,-0.814680695533752,-0.578557670116425,-0.0395801775157452,-0.01731270365417,0.0300763677805662,0.999397754669189,-0.987934112548828,0.141118288040161,0.0638113841414452,-0.0251754336059093,-0.0864573270082474,0.995937407016754,-0.118291772902012,0.186975419521332,0.975216507911682,0.201552242040634,-0.341451346874237,0.918034732341766,0.0271010044962168,-0.0772053077816963,0.996646821498871,0.868269264698029,0.489310771226883,-0.0817529335618019,0.896256983280182,0.442747920751572,0.0264140963554382,0.759937226772308,0.649527490139008,0.0246900767087936,0.707856833934784,0.706355035305023,-0.00110727467108518,0.957701742649078,0.273648887872696,-0.08901596814394,-0.151990711688995,-0.309297382831573,0.938740670681,0.153301358222961,-0.166388064622879,0.97407078742981,-0.0663140937685966,0.0388594679534435,0.997041881084442,
- 0.318737089633942,-0.00832680147141218,0.947806656360626,0.135714367032051,0.980175733566284,0.144351065158844,-0.0507141761481762,0.997225403785706,0.0544949881732464,-0.018469987437129,0.0460452921688557,-0.99876868724823,0.015774579718709,0.148477077484131,-0.988790035247803,-0.126693487167358,0.0959278121590614,-0.987292587757111,-0.065727524459362,-0.14946012198925,-0.986580789089203,0.015774579718709,0.148477077484131,-0.988790035247803,0.800311386585236,0.598716855049133,-0.0322452895343304,0.860008060932159,-0.508662521839142,-0.0406029187142849,0.0302187334746122,0.0896539017558098,-0.995514512062073,-0.0397457964718342,0.112533330917358,-0.992852807044983,0.0269173011183739,-0.332291066646576,-0.942792773246765,-0.045402929186821,-0.0471154078841209,-0.99785703420639,0.980472981929779,0.17509414255619,-0.0895257070660591,0.0269173011183739,-0.332291066646576,-0.942792773246765,-0.0397457964718342,0.112533330917358,-0.992852807044983,0.952179193496704,0.292189240455627,-0.0893323794007301,0.980472981929779,0.17509414255619,-0.0895257070660591,-0.0397457964718342,0.112533330917358,-0.992852807044983,-0.0848661735653877,0.101352237164974,0.99122428894043,0.116822317242622,-0.229744777083397,0.966214239597321,0.0225190594792366,0.0204129591584206,0.999538064002991,-0.0462278909981251,-0.0241110101342201,0.998639941215515,-0.976943135261536,-0.209559589624405,-0.0408284440636635,-0.9864821434021,-0.157100409269333,-0.0466107800602913,-0.996090412139893,-0.0704312846064568,-0.0533240027725697,-0.9864821434021,-0.157100409269333,-0.0466107800602913,-0.903974235057831,-0.424851924180985,-0.0482852384448051,-0.996090412139893,-0.0704312846064568,-0.0533240027725697,0.965864479541779,0.257286667823792,-0.0301576368510723,0.993418097496033,0.0829260870814323,-0.0790177136659622,0.974733233451843,0.0224645435810089,0.222239688038826,0.759937226772308,0.649527490139008,0.0246900767087936,0.896256983280182,0.442747920751572,0.0264140963554382,-0.118291772902012,0.186975419521332,0.975216507911682,0.173173606395721,-0.167272374033928,0.970582723617554,
- 0.707856833934784,0.706355035305023,-0.00110727467108518,0.759937226772308,0.649527490139008,0.0246900767087936,0.173173606395721,-0.167272374033928,0.970582723617554,0.333501011133194,0.942121744155884,0.0344067253172398,0.548073410987854,0.835099756717682,0.0471579357981682,-0.031373992562294,0.0559343360364437,0.997941434383392,0.11934357136488,-0.0479260608553886,0.991695642471313,-0.031373992562294,0.0559343360364437,0.997941434383392,0.548073410987854,0.835099756717682,0.0471579357981682,0.328514903783798,0.943758070468903,0.0374009683728218,-0.10741900652647,0.0911001861095428,0.990031361579895,-0.972956299781799,-0.228661432862282,0.0327134840190411,-0.999179005622864,0.0146711971610785,-0.0377652570605278,-0.975139498710632,-0.203124612569809,0.0885634645819664,-0.984598219394684,0.159652173519135,-0.0712577775120735,-0.987934112548828,0.141118288040161,0.0638113841414452,-0.984598219394684,0.159652173519135,-0.0712577775120735,-0.975139498710632,-0.203124612569809,0.0885634645819664,0.512097775936127,0.0905581563711166,-0.854139983654022,-0.131834983825684,0.0363032482564449,-0.990606784820557,-0.318646281957626,-0.947729706764221,-0.0165243167430162,0.233253672719002,-0.0755226090550423,-0.969478726387024,0.512097775936127,0.0905581563711166,-0.854139983654022,-0.318646281957626,-0.947729706764221,-0.0165243167430162,-0.0365923270583153,0.232620015740395,-0.971879124641418,-0.126693487167358,0.0959278121590614,-0.987292587757111,0.015774579718709,0.148477077484131,-0.988790035247803,-0.0365923270583153,0.232620015740395,-0.971879124641418,-0.959951817989349,-0.229593962430954,-0.160559058189392,-0.065727524459362,-0.14946012198925,-0.986580789089203,0.135640561580658,0.207971572875977,-0.968684434890747,-0.13789165019989,-0.146888136863709,-0.979494690895081,0.225356265902519,0.234473884105682,-0.945640802383423,0.00722518842667341,-0.0410837195813656,-0.99912965297699,0.0314502641558647,0.00793501269072294,-0.999473869800568,0.718904256820679,-0.692948043346405,-0.0547692105174065,0.99313622713089,-0.108778797090054,-0.0429863668978214,
- 0.0282880254089832,-0.281998664140701,-0.958997666835785,0.022062549367547,-0.881218791007996,-0.472193717956543,0.0865887850522995,-0.0156202185899019,-0.996121764183044,-0.00645172642543912,0.000623466446995735,-0.999979019165039,0.0280555728822947,-0.119469605386257,-0.992441356182098,0.0320490039885044,0.0283377151936293,0.99908447265625,0.194204553961754,0.0968580842018127,0.976167619228363,-0.039492916315794,0.02106106095016,0.998997867107391,-0.0583043545484543,-0.0332543812692165,-0.997744917869568,-0.0253762863576412,0.312687516212463,-0.949517130851746,0.0282880254089832,-0.281998664140701,-0.958997666835785,-0.21770204603672,-0.248455226421356,-0.94386225938797,-0.01710070297122,-0.00776368007063866,0.999823689460754,-0.334287285804749,0.600013732910156,0.726798117160797,0.0844091475009918,0.208597660064697,0.974352121353149,0.988198220729828,-0.144834518432617,-0.0498719401657581,0.576095640659332,-0.8154137134552,-0.056695930659771,0.449035555124283,-0.893191337585449,0.0240076314657927,0.568574666976929,-0.821893393993378,0.0348442457616329,0.0308246314525604,0.305499583482742,0.951693117618561,0.0234108939766884,-0.162070393562317,0.986501455307007,-0.00978667847812176,0.124305941164494,0.992195665836334,-0.0226731449365616,-0.0467686243355274,0.998648405075073,-0.01710070297122,-0.00776368007063866,0.999823689460754,0.0856038853526115,0.274543166160584,0.957756757736206,-0.00978667847812176,0.124305941164494,0.992195665836334,0.0234108939766884,-0.162070393562317,0.986501455307007,0.862809002399445,-0.503119587898254,0.0493091382086277,0.97687703371048,0.211944341659546,-0.0281256772577763,0.902957379817963,-0.42808997631073,-0.0375122167170048,0.908087134361267,0.416624695062637,0.0424454398453236,0.0499879643321037,0.00287285819649696,0.998745739459991,-0.0378261096775532,0.000288736104266718,0.999284386634827,-0.74201762676239,-0.493356138467789,0.453882813453674,-0.0609669014811516,-0.186507448554039,0.980560064315796,0.0320490039885044,0.0283377151936293,0.99908447265625,0.227104246616364,0.372907876968384,0.89964634180069,
- -0.0747929587960243,-0.17584253847599,0.981572985649109,-0.384486019611359,0.914835214614868,0.123478934168816,-0.46177014708519,0.886882185935974,0.0144394412636757,-0.548794746398926,0.834279417991638,0.0529347211122513,-0.980124473571777,-0.197916358709335,0.0136097706854343,0.0422267615795136,0.24047714471817,0.969735860824585,0.0320413671433926,0.176800012588501,0.983725190162659,0.0308246314525604,0.305499583482742,0.951693117618561,0.988535821437836,-0.131658092141151,0.0739124119281769,0.983344793319702,-0.165909096598625,0.0742105841636658,0.0234108939766884,-0.162070393562317,0.986501455307007,-0.74201762676239,-0.493356138467789,0.453882813453674,-0.373416483402252,0.924453556537628,0.077109694480896,-0.876628518104553,0.47868224978447,0.0488466843962669,-0.93705415725708,0.349174588918686,0.00258522853255272,-0.985348582267761,0.147408008575439,-0.0857856273651123,-0.995593130588531,0.0908836796879768,-0.0231205150485039,-0.0747929587960243,-0.17584253847599,0.981572985649109,0.449035555124283,-0.893191337585449,0.0240076314657927,0.163987800478935,-0.96827894449234,0.188531115651131,-0.224639683961868,0.972940444946289,0.0540730878710747,-0.609073519706726,0.791908323764801,-0.0437095649540424,-0.46177014708519,0.886882185935974,0.0144394412636757,-0.384486019611359,0.914835214614868,0.123478934168816,0.0385714285075665,0.0121628530323505,-0.999181926250458,0.0239050909876823,0.0178643669933081,-0.999554693698883,-0.0173394847661257,0.0126901138573885,-0.99976921081543,-0.958941459655762,-0.281711101531982,0.0327157974243164,-0.93705415725708,0.349174588918686,0.00258522853255272,-0.904559314250946,0.424547106027603,-0.0391440838575363,-0.29365998506546,0.955747544765472,-0.0176225919276476,-0.13789165019989,-0.146888136863709,-0.979494690895081,0.135640561580658,0.207971572875977,-0.968684434890747,-0.996805608272552,-0.0594708770513535,-0.0533088557422161,-0.548794746398926,0.834279417991638,0.0529347211122513,-0.46177014708519,0.886882185935974,0.0144394412636757,-0.29365998506546,0.955747544765472,-0.0176225919276476,
- 0.908087134361267,0.416624695062637,0.0424454398453236,0.902957379817963,-0.42808997631073,-0.0375122167170048,0.977585017681122,-0.193113535642624,0.0838742703199387,0.568574666976929,-0.821893393993378,0.0348442457616329,-0.0609669014811516,-0.186507448554039,0.980560064315796,0.977585017681122,-0.193113535642624,0.0838742703199387,-0.0312659814953804,0.0101691614836454,-0.999459445476532,0.0217176247388124,0.0093658734112978,-0.999720275402069,0.0385714285075665,0.0121628530323505,-0.999181926250458,-0.0173394847661257,0.0126901138573885,-0.99976921081543,-0.103945434093475,0.992366194725037,-0.0663686767220497,-0.442764818668365,0.895856618881226,0.0374219231307507,0.00672339834272861,0.983318328857422,0.181768834590912,-0.74201762676239,-0.493356138467789,0.453882813453674,0.0255689434707165,-0.0318338610231876,0.999166131019592,-0.0609669014811516,-0.186507448554039,0.980560064315796,0.977585017681122,-0.193113535642624,0.0838742703199387,-0.0609669014811516,-0.186507448554039,0.980560064315796,0.908087134361267,0.416624695062637,0.0424454398453236,0.225356265902519,0.234473884105682,-0.945640802383423,0.576095640659332,-0.8154137134552,-0.056695930659771,0.988198220729828,-0.144834518432617,-0.0498719401657581,0.00722518842667341,-0.0410837195813656,-0.99912965297699,0.225356265902519,0.234473884105682,-0.945640802383423,-0.0293120723217726,0.00110828410834074,-0.999569773674011,-0.0749632194638252,-0.135157540440559,-0.987984299659729,-0.00987283419817686,-0.0996164008975029,-0.994976937770844,-0.0350759997963905,0.0181790869683027,-0.999219298362732,-0.0680675655603409,-0.106740236282349,-0.991954386234283,0.0877972841262817,0.264011591672897,-0.960515320301056,0.582091152667999,-0.811697602272034,-0.0481355339288712,0.38950452208519,-0.920618414878845,0.0273517537862062,0.309233546257019,-0.943185925483704,-0.121552921831608,0.99313622713089,-0.108778797090054,-0.0429863668978214,0.894925653934479,-0.441594511270523,0.0640501603484154,0.0282880254089832,-0.281998664140701,-0.958997666835785,0.0690975338220596,0.22823141515255,-0.971151947975159,
- 0.988198220729828,-0.144834518432617,-0.0498719401657581,0.983364820480347,-0.175837770104408,-0.0455507598817348,0.194204553961754,0.0968580842018127,0.976167619228363,0.0320490039885044,0.0283377151936293,0.99908447265625,-0.266208708286285,0.0167163461446762,0.963770508766174,0.163987800478935,-0.96827894449234,0.188531115651131,0.309233546257019,-0.943185925483704,-0.121552921831608,0.38950452208519,-0.920618414878845,0.0273517537862062,0.0690975338220596,0.22823141515255,-0.971151947975159,0.902957379817963,-0.42808997631073,-0.0375122167170048,0.0877972841262817,0.264011591672897,-0.960515320301056,0.582091152667999,-0.811697602272034,-0.0481355339288712,-0.194529801607132,-0.148074045777321,-0.969655752182007,0.357030004262924,0.189348295331001,-0.914700448513031,0.595169305801392,-0.802881717681885,-0.0339766293764114,0.582091152667999,-0.811697602272034,-0.0481355339288712,0.309233546257019,-0.943185925483704,-0.121552921831608,-0.194529801607132,-0.148074045777321,-0.969655752182007,0.309233546257019,-0.943185925483704,-0.121552921831608,0.225356265902519,0.234473884105682,-0.945640802383423,-0.0749632194638252,-0.135157540440559,-0.987984299659729,0.98608011007309,-0.113075762987137,0.121901541948318,0.988535821437836,-0.131658092141151,0.0739124119281769,0.0308246314525604,0.305499583482742,0.951693117618561,-0.266208708286285,0.0167163461446762,0.963770508766174,0.0320490039885044,0.0283377151936293,0.99908447265625,-0.0747929587960243,-0.17584253847599,0.981572985649109,-0.876628518104553,0.47868224978447,0.0488466843962669,-0.373416483402252,0.924453556537628,0.077109694480896,-0.858827650547028,0.510857284069061,-0.0379479937255383,-0.15667787194252,0.987382411956787,0.0229802560061216,-0.13789165019989,-0.146888136863709,-0.979494690895081,-0.29365998506546,0.955747544765472,-0.0176225919276476,-0.15667787194252,0.987382411956787,0.0229802560061216,-0.873737752437592,0.484398126602173,-0.0440542437136173,-0.139921739697456,-0.0552076697349548,-0.988622307777405,-0.0293120723217726,0.00110828410834074,-0.999569773674011,
- -0.914749443531036,-0.379856497049332,0.137631610035896,-0.953871250152588,-0.291259735822678,-0.0727842226624489,-0.0350759997963905,0.0181790869683027,-0.999219298362732,-0.995593130588531,0.0908836796879768,-0.0231205150485039,-0.904559314250946,0.424547106027603,-0.0391440838575363,-0.93705415725708,0.349174588918686,0.00258522853255272,-0.0253762863576412,0.312687516212463,-0.949517130851746,-0.985975325107574,-0.160855576395988,-0.0444783568382263,-0.663140296936035,0.747830390930176,-0.0315398834645748,-0.0291728992015123,-0.00472272932529449,-0.999563276767731,0.224237591028214,-0.973013699054718,0.0544220693409443,0.022062549367547,-0.881218791007996,-0.472193717956543,-0.00776044744998217,-0.565983951091766,0.824379801750183,-0.0293120723217726,0.00110828410834074,-0.999569773674011,-0.13789165019989,-0.146888136863709,-0.979494690895081,-0.15667787194252,0.987382411956787,0.0229802560061216,0.225356265902519,0.234473884105682,-0.945640802383423,-0.13789165019989,-0.146888136863709,-0.979494690895081,-0.0293120723217726,0.00110828410834074,-0.999569773674011,-0.980124473571777,-0.197916358709335,0.0136097706854343,0.0320413671433926,0.176800012588501,0.983725190162659,-0.74201762676239,-0.493356138467789,0.453882813453674,0.986227571964264,0.156384810805321,-0.0538417920470238,0.862809002399445,-0.503119587898254,0.0493091382086277,0.0546602495014668,0.086676649749279,0.994735836982727,-0.0747929587960243,-0.17584253847599,0.981572985649109,0.163987800478935,-0.96827894449234,0.188531115651131,-0.266208708286285,0.0167163461446762,0.963770508766174,0.163987800478935,-0.96827894449234,0.188531115651131,0.194204553961754,0.0968580842018127,0.976167619228363,-0.266208708286285,0.0167163461446762,0.963770508766174,-0.750312507152557,-0.500277459621429,0.43215000629425,0.673531055450439,0.730880796909332,0.110314294695854,0.717366397380829,0.69613128900528,-0.0280496925115585,-0.958941459655762,-0.281711101531982,0.0327157974243164,-0.904559314250946,0.424547106027603,-0.0391440838575363,-0.997958898544312,0.0528358928859234,-0.0358665287494659,
- -0.907106518745422,0.414384454488754,0.0737784206867218,-0.997181355953217,0.0507295355200768,0.0552817955613136,0.38950452208519,-0.920618414878845,0.0273517537862062,0.194204553961754,0.0968580842018127,0.976167619228363,0.163987800478935,-0.96827894449234,0.188531115651131,0.0308246314525604,0.305499583482742,0.951693117618561,0.0844091475009918,0.208597660064697,0.974352121353149,0.98608011007309,-0.113075762987137,0.121901541948318,-0.01710070297122,-0.00776368007063866,0.999823689460754,0.0844091475009918,0.208597660064697,0.974352121353149,0.0308246314525604,0.305499583482742,0.951693117618561,-0.953871250152588,-0.291259735822678,-0.0727842226624489,-0.926777184009552,0.365067034959793,-0.0883757546544075,-0.0680675655603409,-0.106740236282349,-0.991954386234283,-0.0350759997963905,0.0181790869683027,-0.999219298362732,0.0234108939766884,-0.162070393562317,0.986501455307007,0.983344793319702,-0.165909096598625,0.0742105841636658,0.986227571964264,0.156384810805321,-0.0538417920470238,0.0546602495014668,0.086676649749279,0.994735836982727,0.0546602495014668,0.086676649749279,0.994735836982727,0.0856038853526115,0.274543166160584,0.957756757736206,0.0234108939766884,-0.162070393562317,0.986501455307007,0.0499879643321037,0.00287285819649696,0.998745739459991,-0.0609669014811516,-0.186507448554039,0.980560064315796,0.568574666976929,-0.821893393993378,0.0348442457616329,0.0320490039885044,0.0283377151936293,0.99908447265625,-0.384486019611359,0.914835214614868,0.123478934168816,0.227104246616364,0.372907876968384,0.89964634180069,-0.143208459019661,0.0266788154840469,0.989332914352417,-0.115130938589573,0.99110609292984,0.0667360723018646,-0.794699609279633,0.60624635219574,-0.0302992183715105,-0.259929925203323,-0.0162208694964647,0.965491235256195,0.576095640659332,-0.8154137134552,-0.056695930659771,0.225356265902519,0.234473884105682,-0.945640802383423,0.309233546257019,-0.943185925483704,-0.121552921831608,-0.0378261096775532,0.000288736104266718,0.999284386634827,0.227104246616364,0.372907876968384,0.89964634180069,
- -0.548794746398926,0.834279417991638,0.0529347211122513,-0.373416483402252,0.924453556537628,0.077109694480896,0.227104246616364,0.372907876968384,0.89964634180069,-0.384486019611359,0.914835214614868,0.123478934168816,-0.548794746398926,0.834279417991638,0.0529347211122513,0.449035555124283,-0.893191337585449,0.0240076314657927,0.309233546257019,-0.943185925483704,-0.121552921831608,0.163987800478935,-0.96827894449234,0.188531115651131,0.576095640659332,-0.8154137134552,-0.056695930659771,0.309233546257019,-0.943185925483704,-0.121552921831608,0.449035555124283,-0.893191337585449,0.0240076314657927,-0.442764818668365,0.895856618881226,0.0374219231307507,-0.00138129119295627,0.447512626647949,0.894276678562164,0.00672339834272861,0.983318328857422,0.181768834590912,-0.00138129119295627,0.447512626647949,0.894276678562164,0.106859974563122,0.0547094568610191,0.992767810821533,0.110953114926815,0.0850867182016373,0.990176558494568,0.862809002399445,-0.503119587898254,0.0493091382086277,0.0534710474312305,0.0687982067465782,0.996196627616882,0.0546602495014668,0.086676649749279,0.994735836982727,-0.00486674904823303,-0.214400306344032,-0.976733803749084,-0.00293385982513428,0.0685402378439903,-0.997644126415253,-0.0291728992015123,-0.00472272932529449,-0.999563276767731,-0.442764818668365,0.895856618881226,0.0374219231307507,0.106859974563122,0.0547094568610191,0.992767810821533,-0.00138129119295627,0.447512626647949,0.894276678562164,0.988198220729828,-0.144834518432617,-0.0498719401657581,0.0690975338220596,0.22823141515255,-0.971151947975159,0.00722518842667341,-0.0410837195813656,-0.99912965297699,0.00722518842667341,-0.0410837195813656,-0.99912965297699,0.0690975338220596,0.22823141515255,-0.971151947975159,0.135640561580658,0.207971572875977,-0.968684434890747,-0.0798315182328224,-0.217781960964203,0.972727179527283,-0.93705415725708,0.349174588918686,0.00258522853255272,0.0856038853526115,0.274543166160584,0.957756757736206,-0.980124473571777,-0.197916358709335,0.0136097706854343,-0.876628518104553,0.47868224978447,0.0488466843962669,
- -0.995932221412659,0.0420710109174252,-0.079681433737278,0.00672339834272861,0.983318328857422,0.181768834590912,-0.0466923788189888,0.988583147525787,-0.14325937628746,-0.103945434093475,0.992366194725037,-0.0663686767220497,-0.996805608272552,-0.0594708770513535,-0.0533088557422161,0.135640561580658,0.207971572875977,-0.968684434890747,-0.0153771135956049,0.00842487532645464,-0.999846339225769,-0.856734156608582,0.507891595363617,-0.0897372364997864,0.902957379817963,-0.42808997631073,-0.0375122167170048,0.0690975338220596,0.22823141515255,-0.971151947975159,0.983364820480347,-0.175837770104408,-0.0455507598817348,0.0280555728822947,-0.119469605386257,-0.992441356182098,-0.00645172642543912,0.000623466446995735,-0.999979019165039,0.104336313903332,0.992694675922394,-0.0605904720723629,0.224237591028214,-0.973013699054718,0.0544220693409443,-0.00776044744998217,-0.565983951091766,0.824379801750183,-0.136589854955673,-0.0490120947360992,0.989414513111115,0.0690975338220596,0.22823141515255,-0.971151947975159,-0.0153771135956049,0.00842487532645464,-0.999846339225769,0.135640561580658,0.207971572875977,-0.968684434890747,-0.00776044744998217,-0.565983951091766,0.824379801750183,-0.00138129119295627,0.447512626647949,0.894276678562164,0.110953114926815,0.0850867182016373,0.990176558494568,-0.00776044744998217,-0.565983951091766,0.824379801750183,0.110953114926815,0.0850867182016373,0.990176558494568,-0.136589854955673,-0.0490120947360992,0.989414513111115,0.97687703371048,0.211944341659546,-0.0281256772577763,-0.00293385982513428,0.0685402378439903,-0.997644126415253,-0.00987283419817686,-0.0996164008975029,-0.994976937770844,0.977585017681122,-0.193113535642624,0.0838742703199387,0.988198220729828,-0.144834518432617,-0.0498719401657581,0.568574666976929,-0.821893393993378,0.0348442457616329,0.908087134361267,0.416624695062637,0.0424454398453236,-0.0609669014811516,-0.186507448554039,0.980560064315796,0.0255689434707165,-0.0318338610231876,0.999166131019592,0.0255689434707165,-0.0318338610231876,0.999166131019592,0.0534710474312305,0.0687982067465782,0.996196627616882,
- 0.862809002399445,-0.503119587898254,0.0493091382086277,0.908087134361267,0.416624695062637,0.0424454398453236,0.97687703371048,0.211944341659546,-0.0281256772577763,0.987944304943085,-0.154705658555031,-0.00568405678495765,-0.00293385982513428,0.0685402378439903,-0.997644126415253,0.983344793319702,-0.165909096598625,0.0742105841636658,0.988535821437836,-0.131658092141151,0.0739124119281769,0.99313622713089,-0.108778797090054,-0.0429863668978214,0.718904256820679,-0.692948043346405,-0.0547692105174065,0.98608011007309,-0.113075762987137,0.121901541948318,0.894925653934479,-0.441594511270523,0.0640501603484154,0.99313622713089,-0.108778797090054,-0.0429863668978214,0.988535821437836,-0.131658092141151,0.0739124119281769,-0.984349370002747,0.173033118247986,-0.0334045402705669,-0.991654217243195,0.0315122716128826,0.125016137957573,-0.907106518745422,0.414384454488754,0.0737784206867218,-0.997958898544312,0.0528358928859234,-0.0358665287494659,-0.334287285804749,0.600013732910156,0.726798117160797,-0.01710070297122,-0.00776368007063866,0.999823689460754,-0.907106518745422,0.414384454488754,0.0737784206867218,-0.991654217243195,0.0315122716128826,0.125016137957573,0.0856038853526115,0.274543166160584,0.957756757736206,-0.958941459655762,-0.281711101531982,0.0327157974243164,-0.00978667847812176,0.124305941164494,0.992195665836334,-0.898488104343414,0.438292980194092,0.024871502071619,-0.985348582267761,0.147408008575439,-0.0857856273651123,-0.93705415725708,0.349174588918686,0.00258522853255272,-0.876628518104553,0.47868224978447,0.0488466843962669,-0.949454843997955,0.129430368542671,-0.28597766160965,-0.995932221412659,0.0420710109174252,-0.079681433737278,-0.00486674904823303,-0.214400306344032,-0.976733803749084,-0.0291728992015123,-0.00472272932529449,-0.999563276767731,-0.663140296936035,0.747830390930176,-0.0315398834645748,-0.00486674904823303,-0.214400306344032,-0.976733803749084,-0.663140296936035,0.747830390930176,-0.0315398834645748,-0.914749443531036,-0.379856497049332,0.137631610035896,-0.914749443531036,-0.379856497049332,0.137631610035896,
- -0.0350759997963905,0.0181790869683027,-0.999219298362732,-0.00486674904823303,-0.214400306344032,-0.976733803749084,0.224237591028214,-0.973013699054718,0.0544220693409443,0.0779467225074768,-0.994403183460236,-0.0713218227028847,0.022062549367547,-0.881218791007996,-0.472193717956543,0.0865887850522995,-0.0156202185899019,-0.996121764183044,0.022062549367547,-0.881218791007996,-0.472193717956543,0.0779467225074768,-0.994403183460236,-0.0713218227028847,-0.93705415725708,0.349174588918686,0.00258522853255272,-0.958941459655762,-0.281711101531982,0.0327157974243164,0.0856038853526115,0.274543166160584,0.957756757736206,-0.0798315182328224,-0.217781960964203,0.972727179527283,-0.898488104343414,0.438292980194092,0.024871502071619,-0.93705415725708,0.349174588918686,0.00258522853255272,0.0320413671433926,0.176800012588501,0.983725190162659,0.0422267615795136,0.24047714471817,0.969735860824585,-0.0798315182328224,-0.217781960964203,0.972727179527283,0.0534710474312305,0.0687982067465782,0.996196627616882,0.0255689434707165,-0.0318338610231876,0.999166131019592,-0.194529801607132,-0.148074045777321,-0.969655752182007,-0.0749632194638252,-0.135157540440559,-0.987984299659729,-0.0590606704354286,-0.177041098475456,-0.982429802417755,0.987944304943085,-0.154705658555031,-0.00568405678495765,0.986227571964264,0.156384810805321,-0.0538417920470238,0.983344793319702,-0.165909096598625,0.0742105841636658,0.97687703371048,0.211944341659546,-0.0281256772577763,0.986227571964264,0.156384810805321,-0.0538417920470238,0.987944304943085,-0.154705658555031,-0.00568405678495765,0.97687703371048,0.211944341659546,-0.0281256772577763,0.862809002399445,-0.503119587898254,0.0493091382086277,0.986227571964264,0.156384810805321,-0.0538417920470238,-0.0253762863576412,0.312687516212463,-0.949517130851746,-0.0291728992015123,-0.00472272932529449,-0.999563276767731,0.0314502641558647,0.00793501269072294,-0.999473869800568,0.0282880254089832,-0.281998664140701,-0.958997666835785,-0.00987283419817686,-0.0996164008975029,-0.994976937770844,0.0877972841262817,0.264011591672897,-0.960515320301056,
- 0.902957379817963,-0.42808997631073,-0.0375122167170048,0.97687703371048,0.211944341659546,-0.0281256772577763,-0.29365998506546,0.955747544765472,-0.0176225919276476,-0.858827650547028,0.510857284069061,-0.0379479937255383,-0.373416483402252,0.924453556537628,0.077109694480896,-0.548794746398926,0.834279417991638,0.0529347211122513,0.449035555124283,-0.893191337585449,0.0240076314657927,-0.0747929587960243,-0.17584253847599,0.981572985649109,0.0499879643321037,0.00287285819649696,0.998745739459991,0.568574666976929,-0.821893393993378,0.0348442457616329,0.38950452208519,-0.920618414878845,0.0273517537862062,0.582091152667999,-0.811697602272034,-0.0481355339288712,0.595169305801392,-0.802881717681885,-0.0339766293764114,0.884205996990204,-0.465260863304138,0.0413773097097874,0.106859974563122,0.0547094568610191,0.992767810821533,-0.136589854955673,-0.0490120947360992,0.989414513111115,0.110953114926815,0.0850867182016373,0.990176558494568,-0.756052017211914,0.650179207324982,0.0751816257834435,-0.480078011751175,0.876757502555847,0.028660936281085,-0.305691331624985,0.951152682304382,-0.0431439466774464,-0.609073519706726,0.791908323764801,-0.0437095649540424,-0.224639683961868,0.972940444946289,0.0540730878710747,0.38950452208519,-0.920618414878845,0.0273517537862062,0.884205996990204,-0.465260863304138,0.0413773097097874,-0.0473388582468033,-0.0519504211843014,0.997527122497559,0.194204553961754,0.0968580842018127,0.976167619228363,-0.039492916315794,0.02106106095016,0.998997867107391,-0.224639683961868,0.972940444946289,0.0540730878710747,-0.384486019611359,0.914835214614868,0.123478934168816,0.0320490039885044,0.0283377151936293,0.99908447265625,-0.194529801607132,-0.148074045777321,-0.969655752182007,-0.139921739697456,-0.0552076697349548,-0.988622307777405,-0.0897673740983009,-0.0120365861803293,-0.995890021324158,0.357030004262924,0.189348295331001,-0.914700448513031,-0.0253762863576412,0.312687516212463,-0.949517130851746,-0.94196492433548,-0.329406946897507,0.064755029976368,-0.985975325107574,-0.160855576395988,-0.0444783568382263,
- -0.0378261096775532,0.000288736104266718,0.999284386634827,-0.373416483402252,0.924453556537628,0.077109694480896,-0.74201762676239,-0.493356138467789,0.453882813453674,0.0534710474312305,0.0687982067465782,0.996196627616882,0.0856038853526115,0.274543166160584,0.957756757736206,0.0546602495014668,0.086676649749279,0.994735836982727,-0.00486674904823303,-0.214400306344032,-0.976733803749084,-0.0350759997963905,0.0181790869683027,-0.999219298362732,-0.00987283419817686,-0.0996164008975029,-0.994976937770844,-0.00293385982513428,0.0685402378439903,-0.997644126415253,-0.0473388582468033,-0.0519504211843014,0.997527122497559,0.0594512373209,0.10728856921196,0.99244886636734,-0.039492916315794,0.02106106095016,0.998997867107391,0.194204553961754,0.0968580842018127,0.976167619228363,-0.0774978548288345,0.547474503517151,0.833226144313812,-0.508684277534485,0.6708043217659,0.539686858654022,-0.756052017211914,0.650179207324982,0.0751816257834435,0.0594512373209,0.10728856921196,0.99244886636734,-0.170401990413666,-0.1766287535429,-0.969415068626404,-0.651269376277924,0.757626116275787,0.0430232435464859,-0.919078588485718,0.384790450334549,-0.0850353538990021,0.020842595025897,0.0107995681464672,-0.999724507331848,-0.812124729156494,0.579497516155243,0.0680897682905197,-0.508684277534485,0.6708043217659,0.539686858654022,-0.794699609279633,0.60624635219574,-0.0302992183715105,-0.487992078065872,0.86955201625824,-0.0757832229137421,-0.0310619249939919,0.685149073600769,0.727740287780762,-0.0687831044197083,-0.400194853544235,0.913845241069794,0.478229641914368,0.05768983066082,-0.876338064670563,0.884205996990204,-0.465260863304138,0.0413773097097874,0.796183407306671,-0.317087978124619,0.515312910079956,0.0400225408375263,0.233717650175095,0.971480548381805,-0.0897673740983009,-0.0120365861803293,-0.995890021324158,0.0373380295932293,0.997819900512695,-0.0544178485870361,-0.651269376277924,0.757626116275787,0.0430232435464859,-0.170401990413666,-0.1766287535429,-0.969415068626404,-0.508684277534485,0.6708043217659,0.539686858654022,
- -0.480078011751175,0.876757502555847,0.028660936281085,-0.756052017211914,0.650179207324982,0.0751816257834435,0.753705680370331,-0.64359837770462,0.133074745535851,0.357030004262924,0.189348295331001,-0.914700448513031,0.378162920475006,0.262091964483261,-0.887863039970398,-0.0473388582468033,-0.0519504211843014,0.997527122497559,0.884205996990204,-0.465260863304138,0.0413773097097874,0.0400225408375263,0.233717650175095,0.971480548381805,-0.0774978548288345,0.547474503517151,0.833226144313812,0.0319681093096733,0.113215498626232,0.993056058883667,-0.0473388582468033,-0.0519504211843014,0.997527122497559,0.0400225408375263,0.233717650175095,0.971480548381805,-0.039492916315794,0.02106106095016,0.998997867107391,0.0594512373209,0.10728856921196,0.99244886636734,-0.756052017211914,0.650179207324982,0.0751816257834435,-0.224639683961868,0.972940444946289,0.0540730878710747,-0.259929925203323,-0.0162208694964647,0.965491235256195,-0.794699609279633,0.60624635219574,-0.0302992183715105,-0.508684277534485,0.6708043217659,0.539686858654022,-0.0774978548288345,0.547474503517151,0.833226144313812,0.104336313903332,0.992694675922394,-0.0605904720723629,-0.00645172642543912,0.000623466446995735,-0.999979019165039,0.020842595025897,0.0107995681464672,-0.999724507331848,-0.919078588485718,0.384790450334549,-0.0850353538990021,-0.442764818668365,0.895856618881226,0.0374219231307507,-0.103945434093475,0.992366194725037,-0.0663686767220497,-0.487992078065872,0.86955201625824,-0.0757832229137421,-0.794699609279633,0.60624635219574,-0.0302992183715105,-0.115130938589573,0.99110609292984,0.0667360723018646,0.224237591028214,-0.973013699054718,0.0544220693409443,-0.136589854955673,-0.0490120947360992,0.989414513111115,0.0936179235577583,-0.00195982144214213,0.995606362819672,0.350697964429855,-0.935466110706329,0.0437506176531315,-0.136589854955673,-0.0490120947360992,0.989414513111115,0.106859974563122,0.0547094568610191,0.992767810821533,-0.143208459019661,0.0266788154840469,0.989332914352417,-0.259929925203323,-0.0162208694964647,0.965491235256195,
- 0.0936179235577583,-0.00195982144214213,0.995606362819672,-0.00645172642543912,0.000623466446995735,-0.999979019165039,0.0865887850522995,-0.0156202185899019,-0.996121764183044,-0.299403518438339,-0.12373098731041,-0.946069955825806,0.020842595025897,0.0107995681464672,-0.999724507331848,0.0865887850522995,-0.0156202185899019,-0.996121764183044,0.0779467225074768,-0.994403183460236,-0.0713218227028847,0.638849854469299,-0.76707535982132,-0.0588744804263115,-0.299403518438339,-0.12373098731041,-0.946069955825806,0.638849854469299,-0.76707535982132,-0.0588744804263115,0.350697964429855,-0.935466110706329,0.0437506176531315,0.753705680370331,-0.64359837770462,0.133074745535851,0.753705680370331,-0.64359837770462,0.133074745535851,0.378162920475006,0.262091964483261,-0.887863039970398,-0.299403518438339,-0.12373098731041,-0.946069955825806,-0.143208459019661,0.0266788154840469,0.989332914352417,0.106859974563122,0.0547094568610191,0.992767810821533,-0.442764818668365,0.895856618881226,0.0374219231307507,-0.115130938589573,0.99110609292984,0.0667360723018646,0.0594512373209,0.10728856921196,0.99244886636734,0.0319681093096733,0.113215498626232,0.993056058883667,-0.0774978548288345,0.547474503517151,0.833226144313812,-0.305691331624985,0.951152682304382,-0.0431439466774464,-0.480078011751175,0.876757502555847,0.028660936281085,-0.508684277534485,0.6708043217659,0.539686858654022,-0.812124729156494,0.579497516155243,0.0680897682905197,0.0594512373209,0.10728856921196,0.99244886636734,-0.0473388582468033,-0.0519504211843014,0.997527122497559,0.0319681093096733,0.113215498626232,0.993056058883667,0.753705680370331,-0.64359837770462,0.133074745535851,-0.299403518438339,-0.12373098731041,-0.946069955825806,0.638849854469299,-0.76707535982132,-0.0588744804263115,0.357030004262924,0.189348295331001,-0.914700448513031,-0.170401990413666,-0.1766287535429,-0.969415068626404,0.378162920475006,0.262091964483261,-0.887863039970398,-0.0687831044197083,-0.400194853544235,0.913845241069794,0.660567700862885,-0.69292539358139,0.288972109556198,
- -0.33885732293129,0.939802229404449,-0.0441319532692432,0.0779467225074768,-0.994403183460236,-0.0713218227028847,0.224237591028214,-0.973013699054718,0.0544220693409443,0.350697964429855,-0.935466110706329,0.0437506176531315,0.638849854469299,-0.76707535982132,-0.0588744804263115,0.357030004262924,0.189348295331001,-0.914700448513031,-0.0897673740983009,-0.0120365861803293,-0.995890021324158,-0.170401990413666,-0.1766287535429,-0.969415068626404,-0.170401990413666,-0.1766287535429,-0.969415068626404,0.020842595025897,0.0107995681464672,-0.999724507331848,-0.299403518438339,-0.12373098731041,-0.946069955825806,-0.170401990413666,-0.1766287535429,-0.969415068626404,-0.299403518438339,-0.12373098731041,-0.946069955825806,0.378162920475006,0.262091964483261,-0.887863039970398,0.595169305801392,-0.802881717681885,-0.0339766293764114,0.357030004262924,0.189348295331001,-0.914700448513031,0.753705680370331,-0.64359837770462,0.133074745535851,-0.259929925203323,-0.0162208694964647,0.965491235256195,0.0400225408375263,0.233717650175095,0.971480548381805,0.0936179235577583,-0.00195982144214213,0.995606362819672,-0.260479837656021,-0.00386809650808573,0.965471625328064,0.02740228921175,0.243837013840675,0.969429016113281,-0.0394215770065784,0.00221224105916917,0.999220252037048,-0.0322346724569798,0.0596123449504375,-0.997700989246368,-0.925375699996948,-0.376269340515137,-0.0458391532301903,-0.793192207813263,0.608164608478546,-0.0313372761011124,-0.0403689742088318,-0.228218957781792,-0.972772538661957,0.99731832742691,0.0614054314792156,-0.039819210767746,0.993818461894989,0.02349410392344,0.108502946794033,0.845738232135773,0.00745140435174108,-0.533545970916748,0.02740228921175,0.243837013840675,0.969429016113281,-0.260479837656021,-0.00386809650808573,0.965471625328064,0.423298388719559,0.0140899261459708,0.905880868434906,0.763592541217804,-0.017900301143527,0.645450174808502,0.845738232135773,0.00745140435174108,-0.533545970916748,0.993818461894989,0.02349410392344,0.108502946794033,0.99731832742691,0.0614054314792156,-0.039819210767746,
- 0.0239977613091469,-0.0864446759223938,-0.995967566967011,0.0447126999497414,0.189940482378006,-0.980776965618134,0.88397628068924,-0.466371864080429,-0.0329127348959446,0.99731832742691,0.0614054314792156,-0.039819210767746,0.845738232135773,0.00745140435174108,-0.533545970916748,0.0239977613091469,-0.0864446759223938,-0.995967566967011,0.763592541217804,-0.017900301143527,0.645450174808502,0.02740228921175,0.243837013840675,0.969429016113281,0.423298388719559,0.0140899261459708,0.905880868434906,0.993818461894989,0.02349410392344,0.108502946794033,0.02740228921175,0.243837013840675,0.969429016113281,0.763592541217804,-0.017900301143527,0.645450174808502,0.845738232135773,0.00745140435174108,-0.533545970916748,-0.0539600104093552,-0.0145455971360207,-0.998437225818634,0.0239977613091469,-0.0864446759223938,-0.995967566967011,-0.0322346724569798,0.0596123449504375,-0.997700989246368,-0.0403689742088318,-0.228218957781792,-0.972772538661957,0.0447126999497414,0.189940482378006,-0.980776965618134,0.0239977613091469,-0.0864446759223938,-0.995967566967011,0.993818461894989,0.02349410392344,0.108502946794033,0.99731832742691,0.0614054314792156,-0.039819210767746,0.88397628068924,-0.466371864080429,-0.0329127348959446,0.980518639087677,-0.181215837597847,0.0757894888520241,-0.996614575386047,-0.0431667491793633,0.0699731856584549,-0.963935971260071,0.264816552400589,-0.0264522414654493,-0.958800137042999,0.284046649932861,0.00446319812908769,-0.975641131401062,0.211635649204254,0.057748731225729,0.993818461894989,0.02349410392344,0.108502946794033,0.980518639087677,-0.181215837597847,0.0757894888520241,0.0360735356807709,-0.149539545178413,0.988097488880157,0.02740228921175,0.243837013840675,0.969429016113281,0.0239977613091469,-0.0864446759223938,-0.995967566967011,-0.0539600104093552,-0.0145455971360207,-0.998437225818634,-0.0322346724569798,0.0596123449504375,-0.997700989246368,0.0360735356807709,-0.149539545178413,0.988097488880157,-0.0438512377440929,0.363787561655045,0.930449247360229,-0.0394215770065784,0.00221224105916917,0.999220252037048,
- 0.02740228921175,0.243837013840675,0.969429016113281,-0.334287285804749,0.600013732910156,0.726798117160797,-0.991654217243195,0.0315122716128826,0.125016137957573,-0.0438512377440929,0.363787561655045,0.930449247360229,0.980518639087677,-0.181215837597847,0.0757894888520241,0.88397628068924,-0.466371864080429,-0.0329127348959446,0.894925653934479,-0.441594511270523,0.0640501603484154,0.98608011007309,-0.113075762987137,0.121901541948318,-0.0403689742088318,-0.228218957781792,-0.972772538661957,-0.793192207813263,0.608164608478546,-0.0313372761011124,-0.94196492433548,-0.329406946897507,0.064755029976368,-0.0583043545484543,-0.0332543812692165,-0.997744917869568,0.0360735356807709,-0.149539545178413,0.988097488880157,0.980518639087677,-0.181215837597847,0.0757894888520241,0.98608011007309,-0.113075762987137,0.121901541948318,0.0844091475009918,0.208597660064697,0.974352121353149,0.0360735356807709,-0.149539545178413,0.988097488880157,0.98608011007309,-0.113075762987137,0.121901541948318,-0.0394215770065784,0.00221224105916917,0.999220252037048,-0.0438512377440929,0.363787561655045,0.930449247360229,-0.996614575386047,-0.0431667491793633,0.0699731856584549,-0.975641131401062,0.211635649204254,0.057748731225729,-0.0438512377440929,0.363787561655045,0.930449247360229,0.0844091475009918,0.208597660064697,0.974352121353149,-0.334287285804749,0.600013732910156,0.726798117160797,-0.963935971260071,0.264816552400589,-0.0264522414654493,-0.996614575386047,-0.0431667491793633,0.0699731856584549,-0.991654217243195,0.0315122716128826,0.125016137957573,-0.984349370002747,0.173033118247986,-0.0334045402705669,-0.0438512377440929,0.363787561655045,0.930449247360229,0.0360735356807709,-0.149539545178413,0.988097488880157,0.0844091475009918,0.208597660064697,0.974352121353149,-0.0583043545484543,-0.0332543812692165,-0.997744917869568,-0.21770204603672,-0.248455226421356,-0.94386225938797,0.0447126999497414,0.189940482378006,-0.980776965618134,-0.0403689742088318,-0.228218957781792,-0.972772538661957,0.88397628068924,-0.466371864080429,-0.0329127348959446,
- 0.0447126999497414,0.189940482378006,-0.980776965618134,0.894925653934479,-0.441594511270523,0.0640501603484154,0.0345550589263439,0.0189064051955938,-0.999224007129669,0.0328342616558075,0.0371864773333073,-0.998768866062164,0.0341936461627483,-0.000514282030053437,-0.999415099620819,0.0370888337492943,-0.0026535380166024,-0.999308466911316,0.0372573956847191,-0.0215208698064089,-0.999074041843414,0.0328498184680939,-0.0164468083530664,-0.999325037002563,-0.0394215770065784,0.00221224105916917,0.999220252037048,-0.975641131401062,0.211635649204254,0.057748731225729,-0.936643660068512,0.00242097559385002,0.350275456905365,-0.260479837656021,-0.00386809650808573,0.965471625328064,-0.0539600104093552,-0.0145455971360207,-0.998437225818634,-0.925375699996948,-0.376269340515137,-0.0458391532301903,-0.0322346724569798,0.0596123449504375,-0.997700989246368,-0.931785881519318,0.0259572267532349,0.362079203128815,-0.936643660068512,0.00242097559385002,0.350275456905365,-0.975641131401062,0.211635649204254,0.057748731225729,-0.958800137042999,0.284046649932861,0.00446319812908769,-0.0253762863576412,0.312687516212463,-0.949517130851746,-0.0583043545484543,-0.0332543812692165,-0.997744917869568,-0.94196492433548,-0.329406946897507,0.064755029976368,0.0877972841262817,0.264011591672897,-0.960515320301056,-0.0680675655603409,-0.106740236282349,-0.991954386234283,0.0690975338220596,0.22823141515255,-0.971151947975159,-0.00293385982513428,0.0685402378439903,-0.997644126415253,0.0314502641558647,0.00793501269072294,-0.999473869800568,-0.0291728992015123,-0.00472272932529449,-0.999563276767731,0.987944304943085,-0.154705658555031,-0.00568405678495765,0.718904256820679,-0.692948043346405,-0.0547692105174065,0.0314502641558647,0.00793501269072294,-0.999473869800568,-0.00293385982513428,0.0685402378439903,-0.997644126415253,0.983344793319702,-0.165909096598625,0.0742105841636658,0.718904256820679,-0.692948043346405,-0.0547692105174065,0.987944304943085,-0.154705658555031,-0.00568405678495765,0.0400225408375263,0.233717650175095,0.971480548381805,
- 0.350697964429855,-0.935466110706329,0.0437506176531315,0.0936179235577583,-0.00195982144214213,0.995606362819672,-0.0798315182328224,-0.217781960964203,0.972727179527283,0.0856038853526115,0.274543166160584,0.957756757736206,0.0534710474312305,0.0687982067465782,0.996196627616882,-0.985348582267761,0.147408008575439,-0.0857856273651123,-0.898488104343414,0.438292980194092,0.024871502071619,-0.968257248401642,0.248594403266907,0.0260559730231762,-0.980124473571777,-0.197916358709335,0.0136097706854343,-0.995932221412659,0.0420710109174252,-0.079681433737278,-0.74201762676239,-0.493356138467789,0.453882813453674,0.0320413671433926,0.176800012588501,0.983725190162659,0.0255689434707165,-0.0318338610231876,0.999166131019592,-0.0438512377440929,0.363787561655045,0.930449247360229,-0.991654217243195,0.0315122716128826,0.125016137957573,-0.996614575386047,-0.0431667491793633,0.0699731856584549,-0.0293120723217726,0.00110828410834074,-0.999569773674011,-0.139921739697456,-0.0552076697349548,-0.988622307777405,-0.0590606704354286,-0.177041098475456,-0.982429802417755,-0.0749632194638252,-0.135157540440559,-0.987984299659729,-0.139921739697456,-0.0552076697349548,-0.988622307777405,-0.873737752437592,0.484398126602173,-0.0440542437136173,0.0373380295932293,0.997819900512695,-0.0544178485870361,-0.0897673740983009,-0.0120365861803293,-0.995890021324158,-0.0680675655603409,-0.106740236282349,-0.991954386234283,-0.0153771135956049,0.00842487532645464,-0.999846339225769,0.0690975338220596,0.22823141515255,-0.971151947975159,-0.856734156608582,0.507891595363617,-0.0897372364997864,-0.0153771135956049,0.00842487532645464,-0.999846339225769,-0.0680675655603409,-0.106740236282349,-0.991954386234283,-0.926777184009552,0.365067034959793,-0.0883757546544075,-0.856734156608582,0.507891595363617,-0.0897372364997864,-0.0680675655603409,-0.106740236282349,-0.991954386234283,-0.0747929587960243,-0.17584253847599,0.981572985649109,0.227104246616364,0.372907876968384,0.89964634180069,-0.0378261096775532,0.000288736104266718,0.999284386634827,
- 0.0499879643321037,0.00287285819649696,0.998745739459991,0.902957379817963,-0.42808997631073,-0.0375122167170048,0.983364820480347,-0.175837770104408,-0.0455507598817348,0.977585017681122,-0.193113535642624,0.0838742703199387,0.983364820480347,-0.175837770104408,-0.0455507598817348,0.988198220729828,-0.144834518432617,-0.0498719401657581,0.977585017681122,-0.193113535642624,0.0838742703199387,-0.858827650547028,0.510857284069061,-0.0379479937255383,-0.949454843997955,0.129430368542671,-0.28597766160965,-0.876628518104553,0.47868224978447,0.0488466843962669,-0.968257248401642,0.248594403266907,0.0260559730231762,-0.898488104343414,0.438292980194092,0.024871502071619,-0.0798315182328224,-0.217781960964203,0.972727179527283,0.0422267615795136,0.24047714471817,0.969735860824585,-0.980124473571777,-0.197916358709335,0.0136097706854343,-0.968257248401642,0.248594403266907,0.0260559730231762,0.0422267615795136,0.24047714471817,0.969735860824585,-0.958941459655762,-0.281711101531982,0.0327157974243164,-0.997181355953217,0.0507295355200768,0.0552817955613136,-0.0226731449365616,-0.0467686243355274,0.998648405075073,-0.00978667847812176,0.124305941164494,0.992195665836334,-0.0226731449365616,-0.0467686243355274,0.998648405075073,-0.997181355953217,0.0507295355200768,0.0552817955613136,-0.907106518745422,0.414384454488754,0.0737784206867218,-0.01710070297122,-0.00776368007063866,0.999823689460754,0.884205996990204,-0.465260863304138,0.0413773097097874,0.595169305801392,-0.802881717681885,-0.0339766293764114,0.753705680370331,-0.64359837770462,0.133074745535851,0.796183407306671,-0.317087978124619,0.515312910079956,0.350697964429855,-0.935466110706329,0.0437506176531315,0.796183407306671,-0.317087978124619,0.515312910079956,0.753705680370331,-0.64359837770462,0.133074745535851,-0.21770204603672,-0.248455226421356,-0.94386225938797,0.0282880254089832,-0.281998664140701,-0.958997666835785,0.894925653934479,-0.441594511270523,0.0640501603484154,0.0447126999497414,0.189940482378006,-0.980776965618134,-0.21770204603672,-0.248455226421356,-0.94386225938797,
- 0.894925653934479,-0.441594511270523,0.0640501603484154,-0.194529801607132,-0.148074045777321,-0.969655752182007,-0.0590606704354286,-0.177041098475456,-0.982429802417755,-0.139921739697456,-0.0552076697349548,-0.988622307777405,-0.194529801607132,-0.148074045777321,-0.969655752182007,0.309233546257019,-0.943185925483704,-0.121552921831608,-0.0749632194638252,-0.135157540440559,-0.987984299659729,-0.0167702157050371,0.28106963634491,-0.959540903568268,-0.0152624743059278,-0.176486313343048,-0.984184801578522,0.0379201173782349,0.312629282474518,-0.949118077754974,0.034751620143652,-0.0390285737812519,-0.998633623123169,0.0341813489794731,0.202289149165154,-0.978729128837585,0.998002231121063,-0.0468903966248035,-0.0423424392938614,0.962297856807709,0.268523782491684,-0.0433344282209873,0.0398529656231403,-0.12579932808876,-0.991254925727844,0.879651188850403,0.0141913322731853,-0.475407600402832,0.0416333489120007,0.0894007310271263,-0.995125234127045,-0.00472286669537425,-0.00131175084970891,-0.999988079071045,0.128542721271515,0.0241240747272968,-0.991410553455353,-0.0454542115330696,0.0208312310278416,0.998749256134033,0.0076192538253963,0.241486832499504,0.970374286174774,-0.0324572846293449,-0.291147619485855,0.956127405166626,-0.0586270950734615,0.0294513739645481,-0.997845411300659,-0.0387667380273342,0.150973290205002,-0.987777471542358,0.0398529656231403,-0.12579932808876,-0.991254925727844,0.10117944329977,-0.0559744760394096,-0.993292331695557,-0.0118544716387987,-0.12775807082653,0.991734623908997,-0.127772629261017,0.0666669011116028,0.98956036567688,0.118211172521114,0.0657214820384979,0.990811228752136,0.998016655445099,0.0517633855342865,-0.0358240716159344,0.996983170509338,-0.0650600790977478,-0.0423284359276295,0.981925010681152,0.184265688061714,0.0432387292385101,0.885941088199615,-0.462364375591278,0.036437850445509,0.0295526124536991,0.30182734131813,0.952904462814331,0.0249335058033466,-0.148326933383942,0.988624095916748,-0.0123638641089201,0.109913766384125,0.993864238262177,-0.0189633369445801,-0.065866693854332,0.997648239135742,
- -0.0118544716387987,-0.12775807082653,0.991734623908997,0.044656727463007,0.233643680810928,0.971296310424805,-0.0123638641089201,0.109913766384125,0.993864238262177,0.0249335058033466,-0.148326933383942,0.988624095916748,0.947992920875549,-0.313486367464066,0.0550974644720554,0.991621494293213,-0.12823212146759,-0.0156010184437037,0.919076144695282,-0.393057078123093,-0.0283762142062187,0.966566264629364,0.250933706760406,0.0527449697256088,0.0491409935057163,0.0016275797970593,0.998790562152863,-0.0297054313123226,-0.0189499501138926,0.99937915802002,0.0851073488593102,0.0854272767901421,0.992702841758728,-0.265932977199554,-0.35272005200386,0.897144556045532,-0.0454542115330696,0.0208312310278416,0.998749256134033,-0.038927610963583,0.222426995635033,0.974171996116638,0.0454772152006626,-0.144880920648575,0.98840343952179,-0.898657202720642,-0.398806244134903,0.182671308517456,-0.902478933334351,-0.430635243654251,-0.00923387706279755,-0.98523360490799,-0.158674120903015,0.0643214583396912,-0.982659637928009,-0.185411050915718,0.00166245689615607,-0.0231501590460539,0.209474071860313,0.977540135383606,-0.011973587796092,0.200498446822166,0.97962087392807,0.0295526124536991,0.30182734131813,0.952904462814331,0.98351263999939,-0.163284257054329,0.07772546261549,0.996042907238007,0.0113574843853712,0.0881448984146118,0.0249335058033466,-0.148326933383942,0.988624095916748,0.0851073488593102,0.0854272767901421,0.992702841758728,-0.848281919956207,0.520668506622314,0.0965514481067657,-0.869625627994537,0.440357506275177,0.22324126958847,-0.924294412136078,0.381679326295853,0.000880710780620575,-0.975735425949097,0.209617763757706,-0.0632532611489296,-0.760911643505096,0.536322236061096,-0.365201473236084,0.0454772152006626,-0.144880920648575,0.98840343952179,0.981925010681152,0.184265688061714,0.0432387292385101,0.954041481018066,0.297292172908783,0.037715170532465,-0.98147052526474,-0.183678954839706,0.0545696392655373,-0.819995820522308,-0.571768879890442,-0.026215773075819,-0.902478933334351,-0.430635243654251,-0.00923387706279755,
- -0.898657202720642,-0.398806244134903,0.182671308517456,-0.0124276094138622,0.0429496504366398,-0.998999953269959,-0.0181030742824078,0.0292193237692118,-0.999409139156342,-0.0128672663122416,-0.0221297461539507,-0.99967235326767,-0.91034334897995,-0.412031471729279,0.0387965179979801,-0.924294412136078,0.381679326295853,0.000880710780620575,-0.989108979701996,0.143212303519249,-0.0339683257043362,-0.948105990886688,0.317637920379639,-0.0141896363347769,-0.0152624743059278,-0.176486313343048,-0.984184801578522,-0.0167702157050371,0.28106963634491,-0.959540903568268,-0.991025865077972,-0.130887985229492,-0.0271321348845959,-0.98523360490799,-0.158674120903015,0.0643214583396912,-0.902478933334351,-0.430635243654251,-0.00923387706279755,-0.948105990886688,0.317637920379639,-0.0141896363347769,0.966566264629364,0.250933706760406,0.0527449697256088,0.919076144695282,-0.393057078123093,-0.0283762142062187,0.916504383087158,-0.398960798978806,-0.029153635725379,0.885941088199615,-0.462364375591278,0.036437850445509,-0.265932977199554,-0.35272005200386,0.897144556045532,0.916504383087158,-0.398960798978806,-0.029153635725379,-0.0107470909133554,-0.0256648734211922,-0.999612867832184,-0.0100016929209232,0.018937524408102,-0.999770700931549,-0.0124276094138622,0.0429496504366398,-0.998999953269959,-0.0128672663122416,-0.0221297461539507,-0.99967235326767,-0.996817171573639,-0.063228115439415,-0.0485574901103973,-0.937269687652588,-0.346158593893051,0.0412279814481735,-0.967724680900574,0.00738757755607367,0.251901477575302,0.0851073488593102,0.0854272767901421,0.992702841758728,0.0324668660759926,-0.0718790218234062,0.996884882450104,-0.265932977199554,-0.35272005200386,0.897144556045532,0.916504383087158,-0.398960798978806,-0.029153635725379,-0.265932977199554,-0.35272005200386,0.897144556045532,0.966566264629364,0.250933706760406,0.0527449697256088,0.0379201173782349,0.312629282474518,-0.949118077754974,0.996983170509338,-0.0650600790977478,-0.0423284359276295,0.998016655445099,0.0517633855342865,-0.0358240716159344,0.034751620143652,-0.0390285737812519,-0.998633623123169,
- 0.0379201173782349,0.312629282474518,-0.949118077754974,0.0223136637359858,-0.0569934546947479,-0.99812513589859,0.0697737783193588,0.155517727136612,-0.985365867614746,0.015550528652966,-0.102123603224754,-0.99465024471283,-0.0414800196886063,0.048514012247324,-0.997960805892944,-0.0398449599742889,-0.0989519208669662,-0.994294166564941,0.0201890151947737,0.230759873986244,-0.972801268100739,0.99277538061142,0.113947406411171,-0.0375906825065613,0.994641721248627,0.0959354117512703,0.0385263599455357,0.984299778938293,0.101168803870678,-0.144633769989014,0.962297856807709,0.268523782491684,-0.0433344282209873,0.840114951133728,0.381326168775558,-0.385742574930191,0.0398529656231403,-0.12579932808876,-0.991254925727844,0.0687700435519218,0.025913467630744,-0.99729597568512,0.998016655445099,0.0517633855342865,-0.0358240716159344,0.937978804111481,-0.342944592237473,-0.0508409664034843,0.0076192538253963,0.241486832499504,0.970374286174774,-0.0454542115330696,0.0208312310278416,0.998749256134033,-0.114850357174873,0.260576099157333,0.958597719669342,0.954041481018066,0.297292172908783,0.037715170532465,0.984299778938293,0.101168803870678,-0.144633769989014,0.994641721248627,0.0959354117512703,0.0385263599455357,0.0687700435519218,0.025913467630744,-0.99729597568512,0.919076144695282,-0.393057078123093,-0.0283762142062187,0.0201890151947737,0.230759873986244,-0.972801268100739,0.99277538061142,0.113947406411171,-0.0375906825065613,0.0384602583944798,-0.243772387504578,-0.96906965970993,0.0211790334433317,0.382889211177826,-0.923551499843597,0.999126017093658,-0.0216123014688492,-0.0357809066772461,0.99277538061142,0.113947406411171,-0.0375906825065613,0.984299778938293,0.101168803870678,-0.144633769989014,0.0384602583944798,-0.243772387504578,-0.96906965970993,0.984299778938293,0.101168803870678,-0.144633769989014,0.0379201173782349,0.312629282474518,-0.949118077754974,0.0697737783193588,0.155517727136612,-0.985365867614746,0.815453350543976,-0.389138489961624,0.428494095802307,0.98351263999939,-0.163284257054329,0.07772546261549,
- 0.0295526124536991,0.30182734131813,0.952904462814331,-0.114850357174873,0.260576099157333,0.958597719669342,-0.0454542115330696,0.0208312310278416,0.998749256134033,0.0454772152006626,-0.144880920648575,0.98840343952179,-0.869625627994537,0.440357506275177,0.22324126958847,-0.848281919956207,0.520668506622314,0.0965514481067657,-0.994256734848022,0.105830073356628,-0.0159251820296049,-0.975744247436523,0.215594336390495,0.0379781052470207,-0.0152624743059278,-0.176486313343048,-0.984184801578522,-0.948105990886688,0.317637920379639,-0.0141896363347769,-0.975744247436523,0.215594336390495,0.0379781052470207,-0.827926993370056,-0.560217916965485,-0.0263206865638494,-0.0160571336746216,-0.142850160598755,-0.989614069461823,0.0223136637359858,-0.0569934546947479,-0.99812513589859,-0.83137059211731,0.454956948757172,-0.319119483232498,-0.966520488262177,0.248878702521324,-0.0624303556978703,-0.0414800196886063,0.048514012247324,-0.997960805892944,-0.760911643505096,0.536322236061096,-0.365201473236084,-0.989108979701996,0.143212303519249,-0.0339683257043362,-0.924294412136078,0.381679326295853,0.000880710780620575,-0.0387667380273342,0.150973290205002,-0.987777471542358,-0.947667002677917,-0.316667914390564,-0.0406066253781319,-0.857627272605896,0.513231039047241,-0.0327032096683979,-0.0301426574587822,-0.0292964652180672,-0.999116241931915,0.99516636133194,0.071812778711319,0.0669842958450317,0.879651188850403,0.0141913322731853,-0.475407600402832,0.570298850536346,-0.0103942267596722,0.821371495723724,0.0223136637359858,-0.0569934546947479,-0.99812513589859,-0.0152624743059278,-0.176486313343048,-0.984184801578522,-0.975744247436523,0.215594336390495,0.0379781052470207,0.0379201173782349,0.312629282474518,-0.949118077754974,-0.0152624743059278,-0.176486313343048,-0.984184801578522,0.0223136637359858,-0.0569934546947479,-0.99812513589859,-0.982659637928009,-0.185411050915718,0.00166245689615607,-0.011973587796092,0.200498446822166,0.97962087392807,0.0851073488593102,0.0854272767901421,0.992702841758728,0.994398891925812,-0.0335109792649746,0.100239984691143,
- 0.947992920875549,-0.313486367464066,0.0550974644720554,0.0416855104267597,0.0769736096262932,0.99616140127182,0.0454772152006626,-0.144880920648575,0.98840343952179,0.954041481018066,0.297292172908783,0.037715170532465,-0.114850357174873,0.260576099157333,0.958597719669342,0.954041481018066,0.297292172908783,0.037715170532465,0.0076192538253963,0.241486832499504,0.970374286174774,-0.114850357174873,0.260576099157333,0.958597719669342,0.0851073488593102,0.0854272767901421,0.992702841758728,-0.869625627994537,0.440357506275177,0.22324126958847,-0.982659637928009,-0.185411050915718,0.00166245689615607,-0.91034334897995,-0.412031471729279,0.0387965179979801,-0.989108979701996,0.143212303519249,-0.0339683257043362,-0.880682229995728,-0.471818298101425,-0.0422654077410698,-0.995681464672089,-0.0827497541904449,0.0420833826065063,-0.99786788225174,0.037601612508297,0.0533464550971985,0.994641721248627,0.0959354117512703,0.0385263599455357,0.0076192538253963,0.241486832499504,0.970374286174774,0.954041481018066,0.297292172908783,0.037715170532465,0.0295526124536991,0.30182734131813,0.952904462814331,0.118211172521114,0.0657214820384979,0.990811228752136,0.815453350543976,-0.389138489961624,0.428494095802307,-0.0118544716387987,-0.12775807082653,0.991734623908997,0.118211172521114,0.0657214820384979,0.990811228752136,0.0295526124536991,0.30182734131813,0.952904462814331,-0.966520488262177,0.248878702521324,-0.0624303556978703,-0.940516412258148,0.332036197185516,-0.0719779208302498,-0.0398449599742889,-0.0989519208669662,-0.994294166564941,-0.0414800196886063,0.048514012247324,-0.997960805892944,0.0249335058033466,-0.148326933383942,0.988624095916748,0.996042907238007,0.0113574843853712,0.0881448984146118,0.994398891925812,-0.0335109792649746,0.100239984691143,0.0416855104267597,0.0769736096262932,0.99616140127182,0.0416855104267597,0.0769736096262932,0.99616140127182,0.044656727463007,0.233643680810928,0.971296310424805,0.0249335058033466,-0.148326933383942,0.988624095916748,0.0491409935057163,0.0016275797970593,0.998790562152863,
- -0.265932977199554,-0.35272005200386,0.897144556045532,0.885941088199615,-0.462364375591278,0.036437850445509,-0.0454542115330696,0.0208312310278416,0.998749256134033,-0.898657202720642,-0.398806244134903,0.182671308517456,-0.038927610963583,0.222426995635033,0.974171996116638,-0.0453452952206135,-0.11141013354063,0.99273943901062,-0.992639899253845,0.0953477099537849,0.0746649205684662,-0.998035609722137,-0.0553924553096294,0.0292691364884377,-0.0332563705742359,-0.23964262008667,0.970291495323181,0.996983170509338,-0.0650600790977478,-0.0423284359276295,0.0379201173782349,0.312629282474518,-0.949118077754974,0.984299778938293,0.101168803870678,-0.144633769989014,-0.0297054313123226,-0.0189499501138926,0.99937915802002,-0.038927610963583,0.222426995635033,0.974171996116638,-0.98523360490799,-0.158674120903015,0.0643214583396912,-0.848281919956207,0.520668506622314,0.0965514481067657,-0.038927610963583,0.222426995635033,0.974171996116638,-0.898657202720642,-0.398806244134903,0.182671308517456,-0.98523360490799,-0.158674120903015,0.0643214583396912,0.981925010681152,0.184265688061714,0.0432387292385101,0.984299778938293,0.101168803870678,-0.144633769989014,0.954041481018066,0.297292172908783,0.037715170532465,0.996983170509338,-0.0650600790977478,-0.0423284359276295,0.984299778938293,0.101168803870678,-0.144633769989014,0.981925010681152,0.184265688061714,0.0432387292385101,-0.937269687652588,-0.346158593893051,0.0412279814481735,-0.448866367340088,0.00407147035002708,0.893589615821838,-0.967724680900574,0.00738757755607367,0.251901477575302,-0.448866367340088,0.00407147035002708,0.893589615821838,-0.0236572250723839,0.113389074802399,0.993268966674805,-0.0635696202516556,0.0975642651319504,0.993196964263916,0.947992920875549,-0.313486367464066,0.0550974644720554,0.0311228670179844,0.0708209797739983,0.997003376483917,0.0416855104267597,0.0769736096262932,0.99616140127182,-0.0621426105499268,-0.112778536975384,-0.991674959659576,-0.0538851246237755,-0.189537689089775,-0.980393767356873,-0.0301426574587822,-0.0292964652180672,-0.999116241931915,
- -0.937269687652588,-0.346158593893051,0.0412279814481735,-0.0236572250723839,0.113389074802399,0.993268966674805,-0.448866367340088,0.00407147035002708,0.893589615821838,0.998016655445099,0.0517633855342865,-0.0358240716159344,0.0687700435519218,0.025913467630744,-0.99729597568512,0.034751620143652,-0.0390285737812519,-0.998633623123169,0.034751620143652,-0.0390285737812519,-0.998633623123169,0.0687700435519218,0.025913467630744,-0.99729597568512,-0.0167702157050371,0.28106963634491,-0.959540903568268,-0.0132636222988367,-0.224540114402771,0.974374651908875,-0.924294412136078,0.381679326295853,0.000880710780620575,0.044656727463007,0.233643680810928,0.971296310424805,-0.982659637928009,-0.185411050915718,0.00166245689615607,-0.869625627994537,0.440357506275177,0.22324126958847,-0.948885142803192,0.307258605957031,-0.072174459695816,-0.967724680900574,0.00738757755607367,0.251901477575302,-0.989968359470367,-0.0355722047388554,-0.136738047003746,-0.996817171573639,-0.063228115439415,-0.0485574901103973,-0.991025865077972,-0.130887985229492,-0.0271321348845959,-0.0167702157050371,0.28106963634491,-0.959540903568268,0.19729508459568,0.370538145303726,-0.907621145248413,-0.941291391849518,0.327450126409531,-0.0821406543254852,0.919076144695282,-0.393057078123093,-0.0283762142062187,0.0687700435519218,0.025913467630744,-0.99729597568512,0.937978804111481,-0.342944592237473,-0.0508409664034843,0.128542721271515,0.0241240747272968,-0.991410553455353,-0.00472286669537425,-0.00131175084970891,-0.999988079071045,-0.953002393245697,0.300299972295761,-0.0400813557207584,0.99516636133194,0.071812778711319,0.0669842958450317,0.570298850536346,-0.0103942267596722,0.821371495723724,0.0240587182343006,-0.134968802332878,0.990557789802551,0.0687700435519218,0.025913467630744,-0.99729597568512,0.19729508459568,0.370538145303726,-0.907621145248413,-0.0167702157050371,0.28106963634491,-0.959540903568268,0.570298850536346,-0.0103942267596722,0.821371495723724,-0.448866367340088,0.00407147035002708,0.893589615821838,-0.0635696202516556,0.0975642651319504,0.993196964263916,
- 0.570298850536346,-0.0103942267596722,0.821371495723724,-0.0635696202516556,0.0975642651319504,0.993196964263916,0.0240587182343006,-0.134968802332878,0.990557789802551,0.991621494293213,-0.12823212146759,-0.0156010184437037,-0.0538851246237755,-0.189537689089775,-0.980393767356873,0.015550528652966,-0.102123603224754,-0.99465024471283,0.916504383087158,-0.398960798978806,-0.029153635725379,0.998016655445099,0.0517633855342865,-0.0358240716159344,0.885941088199615,-0.462364375591278,0.036437850445509,0.966566264629364,0.250933706760406,0.0527449697256088,-0.265932977199554,-0.35272005200386,0.897144556045532,0.0324668660759926,-0.0718790218234062,0.996884882450104,0.0324668660759926,-0.0718790218234062,0.996884882450104,0.0311228670179844,0.0708209797739983,0.997003376483917,0.947992920875549,-0.313486367464066,0.0550974644720554,0.966566264629364,0.250933706760406,0.0527449697256088,0.991621494293213,-0.12823212146759,-0.0156010184437037,0.964117705821991,-0.263976037502289,-0.0281763691455126,-0.0538851246237755,-0.189537689089775,-0.980393767356873,0.996042907238007,0.0113574843853712,0.0881448984146118,0.98351263999939,-0.163284257054329,0.07772546261549,0.962297856807709,0.268523782491684,-0.0433344282209873,0.998002231121063,-0.0468903966248035,-0.0423424392938614,0.815453350543976,-0.389138489961624,0.428494095802307,0.840114951133728,0.381326168775558,-0.385742574930191,0.962297856807709,0.268523782491684,-0.0433344282209873,0.98351263999939,-0.163284257054329,0.07772546261549,-0.91087543964386,-0.285322308540344,-0.298156291246414,-0.945560097694397,0.125970497727394,0.30007940530777,-0.995681464672089,-0.0827497541904449,0.0420833826065063,-0.880682229995728,-0.471818298101425,-0.0422654077410698,-0.127772629261017,0.0666669011116028,0.98956036567688,-0.0118544716387987,-0.12775807082653,0.991734623908997,-0.995681464672089,-0.0827497541904449,0.0420833826065063,-0.945560097694397,0.125970497727394,0.30007940530777,0.044656727463007,0.233643680810928,0.971296310424805,-0.91034334897995,-0.412031471729279,0.0387965179979801,
- -0.0123638641089201,0.109913766384125,0.993864238262177,-0.964802205562592,0.259572565555573,0.0421759821474552,-0.975735425949097,0.209617763757706,-0.0632532611489296,-0.924294412136078,0.381679326295853,0.000880710780620575,-0.869625627994537,0.440357506275177,0.22324126958847,-0.905509531497955,0.418521642684937,-0.0699446648359299,-0.948885142803192,0.307258605957031,-0.072174459695816,-0.0621426105499268,-0.112778536975384,-0.991674959659576,-0.0301426574587822,-0.0292964652180672,-0.999116241931915,-0.857627272605896,0.513231039047241,-0.0327032096683979,-0.0621426105499268,-0.112778536975384,-0.991674959659576,-0.857627272605896,0.513231039047241,-0.0327032096683979,-0.83137059211731,0.454956948757172,-0.319119483232498,-0.83137059211731,0.454956948757172,-0.319119483232498,-0.0414800196886063,0.048514012247324,-0.997960805892944,-0.0621426105499268,-0.112778536975384,-0.991674959659576,0.99516636133194,0.071812778711319,0.0669842958450317,0.995671093463898,-0.0790390819311142,-0.048908531665802,0.879651188850403,0.0141913322731853,-0.475407600402832,0.0416333489120007,0.0894007310271263,-0.995125234127045,0.879651188850403,0.0141913322731853,-0.475407600402832,0.995671093463898,-0.0790390819311142,-0.048908531665802,-0.924294412136078,0.381679326295853,0.000880710780620575,-0.91034334897995,-0.412031471729279,0.0387965179979801,0.044656727463007,0.233643680810928,0.971296310424805,-0.0132636222988367,-0.224540114402771,0.974374651908875,-0.964802205562592,0.259572565555573,0.0421759821474552,-0.924294412136078,0.381679326295853,0.000880710780620575,-0.011973587796092,0.200498446822166,0.97962087392807,-0.0231501590460539,0.209474071860313,0.977540135383606,-0.0132636222988367,-0.224540114402771,0.974374651908875,0.0311228670179844,0.0708209797739983,0.997003376483917,0.0324668660759926,-0.0718790218234062,0.996884882450104,0.0384602583944798,-0.243772387504578,-0.96906965970993,0.0697737783193588,0.155517727136612,-0.985365867614746,0.128471925854683,-0.116625435650349,-0.984831690788269,0.964117705821991,-0.263976037502289,-0.0281763691455126,
- 0.994398891925812,-0.0335109792649746,0.100239984691143,0.996042907238007,0.0113574843853712,0.0881448984146118,0.991621494293213,-0.12823212146759,-0.0156010184437037,0.994398891925812,-0.0335109792649746,0.100239984691143,0.964117705821991,-0.263976037502289,-0.0281763691455126,0.991621494293213,-0.12823212146759,-0.0156010184437037,0.947992920875549,-0.313486367464066,0.0550974644720554,0.994398891925812,-0.0335109792649746,0.100239984691143,-0.0387667380273342,0.150973290205002,-0.987777471542358,-0.0301426574587822,-0.0292964652180672,-0.999116241931915,0.0341813489794731,0.202289149165154,-0.978729128837585,0.0398529656231403,-0.12579932808876,-0.991254925727844,0.015550528652966,-0.102123603224754,-0.99465024471283,0.0201890151947737,0.230759873986244,-0.972801268100739,0.919076144695282,-0.393057078123093,-0.0283762142062187,0.991621494293213,-0.12823212146759,-0.0156010184437037,-0.948105990886688,0.317637920379639,-0.0141896363347769,-0.994256734848022,0.105830073356628,-0.0159251820296049,-0.848281919956207,0.520668506622314,0.0965514481067657,-0.98523360490799,-0.158674120903015,0.0643214583396912,0.981925010681152,0.184265688061714,0.0432387292385101,0.0454772152006626,-0.144880920648575,0.98840343952179,0.0491409935057163,0.0016275797970593,0.998790562152863,0.885941088199615,-0.462364375591278,0.036437850445509,0.994641721248627,0.0959354117512703,0.0385263599455357,0.99277538061142,0.113947406411171,-0.0375906825065613,0.999126017093658,-0.0216123014688492,-0.0357809066772461,0.974509716033936,0.22163051366806,0.0347975492477417,-0.0236572250723839,0.113389074802399,0.993268966674805,0.0240587182343006,-0.134968802332878,0.990557789802551,-0.0635696202516556,0.0975642651319504,0.993196964263916,-0.955569207668304,-0.286227345466614,0.0704374834895134,-0.999657332897186,-0.00965171679854393,0.024333069100976,-0.977224230766296,0.210029631853104,-0.0303368363529444,-0.819995820522308,-0.571768879890442,-0.026215773075819,-0.98147052526474,-0.183678954839706,0.0545696392655373,0.994641721248627,0.0959354117512703,0.0385263599455357,
- 0.974509716033936,0.22163051366806,0.0347975492477417,0.0199071392416954,-0.102676622569561,0.994515597820282,0.0076192538253963,0.241486832499504,0.970374286174774,-0.0324572846293449,-0.291147619485855,0.956127405166626,-0.98147052526474,-0.183678954839706,0.0545696392655373,-0.898657202720642,-0.398806244134903,0.182671308517456,-0.0454542115330696,0.0208312310278416,0.998749256134033,0.0384602583944798,-0.243772387504578,-0.96906965970993,-0.0160571336746216,-0.142850160598755,-0.989614069461823,-0.0285032354295254,-0.088520735502243,-0.99566650390625,0.0211790334433317,0.382889211177826,-0.923551499843597,-0.0387667380273342,0.150973290205002,-0.987777471542358,-0.583593428134918,-0.581096649169922,-0.567226111888886,-0.947667002677917,-0.316667914390564,-0.0406066253781319,-0.0297054313123226,-0.0189499501138926,0.99937915802002,-0.848281919956207,0.520668506622314,0.0965514481067657,0.0851073488593102,0.0854272767901421,0.992702841758728,0.0311228670179844,0.0708209797739983,0.997003376483917,0.044656727463007,0.233643680810928,0.971296310424805,0.0416855104267597,0.0769736096262932,0.99616140127182,-0.0621426105499268,-0.112778536975384,-0.991674959659576,-0.0414800196886063,0.048514012247324,-0.997960805892944,0.015550528652966,-0.102123603224754,-0.99465024471283,-0.0538851246237755,-0.189537689089775,-0.980393767356873,0.0199071392416954,-0.102676622569561,0.994515597820282,-0.0545571185648441,0.101972006261349,0.9932901263237,-0.0324572846293449,-0.291147619485855,0.956127405166626,0.0076192538253963,0.241486832499504,0.970374286174774,-0.395642518997192,0.126063406467438,0.909711599349976,-0.930036246776581,-0.0286973528563976,0.366345554590225,-0.955569207668304,-0.286227345466614,0.0704374834895134,-0.0545571185648441,0.101972006261349,0.9932901263237,-0.0638453960418701,-0.0687844753265381,-0.995586574077606,-0.983361780643463,-0.174798130989075,0.0494503751397133,-0.814143419265747,-0.57628333568573,-0.0711908712983131,-0.00733345514163375,0.02413828112185,-0.999681770801544,-0.997641384601593,-0.0629731938242912,0.0273161046206951,
- -0.930036246776581,-0.0286973528563976,0.366345554590225,-0.998035609722137,-0.0553924553096294,0.0292691364884377,-0.980476438999176,-0.18936151266098,-0.0529935173690319,-0.395642518997192,0.126063406467438,0.909711599349976,0.0173120517283678,-0.0300754569470882,0.999397695064545,-0.0332563705742359,-0.23964262008667,0.970291495323181,0.974509716033936,0.22163051366806,0.0347975492477417,0.984597325325012,-0.159656122326851,-0.0712609812617302,0.0173120517283678,-0.0300754569470882,0.999397695064545,-0.0285032354295254,-0.088520735502243,-0.99566650390625,-0.855878949165344,0.515800058841705,-0.0377041697502136,-0.983361780643463,-0.174798130989075,0.0494503751397133,-0.0638453960418701,-0.0687844753265381,-0.995586574077606,-0.930036246776581,-0.0286973528563976,0.366345554590225,-0.999657332897186,-0.00965171679854393,0.024333069100976,-0.955569207668304,-0.286227345466614,0.0704374834895134,0.975138783454895,0.203126072883606,0.0885667130351067,0.0211790334433317,0.382889211177826,-0.923551499843597,-0.0802226737141609,-0.281414479017258,-0.95622718334198,0.0199071392416954,-0.102676622569561,0.994515597820282,0.974509716033936,0.22163051366806,0.0347975492477417,0.0173120517283678,-0.0300754569470882,0.999397695064545,-0.395642518997192,0.126063406467438,0.909711599349976,-0.0364566631615162,0.0940081998705864,0.994903683662415,0.0199071392416954,-0.102676622569561,0.994515597820282,0.0173120517283678,-0.0300754569470882,0.999397695064545,-0.0324572846293449,-0.291147619485855,0.956127405166626,-0.0545571185648441,0.101972006261349,0.9932901263237,-0.955569207668304,-0.286227345466614,0.0704374834895134,-0.98147052526474,-0.183678954839706,0.0545696392655373,-0.0332563705742359,-0.23964262008667,0.970291495323181,-0.998035609722137,-0.0553924553096294,0.0292691364884377,-0.930036246776581,-0.0286973528563976,0.366345554590225,-0.395642518997192,0.126063406467438,0.909711599349976,-0.953002393245697,0.300299972295761,-0.0400813557207584,-0.00472286669537425,-0.00131175084970891,-0.999988079071045,-0.00733345514163375,0.02413828112185,-0.999681770801544,
- -0.814143419265747,-0.57628333568573,-0.0711908712983131,-0.937269687652588,-0.346158593893051,0.0412279814481735,-0.996817171573639,-0.063228115439415,-0.0485574901103973,-0.980476438999176,-0.18936151266098,-0.0529935173690319,-0.998035609722137,-0.0553924553096294,0.0292691364884377,-0.992639899253845,0.0953477099537849,0.0746649205684662,0.99516636133194,0.071812778711319,0.0669842958450317,0.0240587182343006,-0.134968802332878,0.990557789802551,0.0251754261553288,0.0864573195576668,0.995937407016754,0.987934052944183,-0.141118258237839,0.0638113841414452,0.0240587182343006,-0.134968802332878,0.990557789802551,-0.0236572250723839,0.113389074802399,0.993268966674805,-0.0453452952206135,-0.11141013354063,0.99273943901062,-0.0332563705742359,-0.23964262008667,0.970291495323181,0.0251754261553288,0.0864573195576668,0.995937407016754,-0.00472286669537425,-0.00131175084970891,-0.999988079071045,0.0416333489120007,0.0894007310271263,-0.995125234127045,0.0465506948530674,-0.308943778276443,-0.94994044303894,-0.00733345514163375,0.02413828112185,-0.999681770801544,0.0416333489120007,0.0894007310271263,-0.995125234127045,0.995671093463898,-0.0790390819311142,-0.048908531665802,0.99483048915863,0.0929322093725204,-0.0409397482872009,0.0465506948530674,-0.308943778276443,-0.94994044303894,0.99483048915863,0.0929322093725204,-0.0409397482872009,0.987934052944183,-0.141118258237839,0.0638113841414452,0.975138783454895,0.203126072883606,0.0885667130351067,0.975138783454895,0.203126072883606,0.0885667130351067,-0.0802226737141609,-0.281414479017258,-0.95622718334198,0.0465506948530674,-0.308943778276443,-0.94994044303894,-0.0453452952206135,-0.11141013354063,0.99273943901062,-0.0236572250723839,0.113389074802399,0.993268966674805,-0.937269687652588,-0.346158593893051,0.0412279814481735,-0.992639899253845,0.0953477099537849,0.0746649205684662,-0.0545571185648441,0.101972006261349,0.9932901263237,-0.0364566631615162,0.0940081998705864,0.994903683662415,-0.395642518997192,0.126063406467438,0.909711599349976,-0.977224230766296,0.210029631853104,-0.0303368363529444,
- -0.999657332897186,-0.00965171679854393,0.024333069100976,-0.930036246776581,-0.0286973528563976,0.366345554590225,-0.997641384601593,-0.0629731938242912,0.0273161046206951,-0.0545571185648441,0.101972006261349,0.9932901263237,0.0199071392416954,-0.102676622569561,0.994515597820282,-0.0364566631615162,0.0940081998705864,0.994903683662415,0.975138783454895,0.203126072883606,0.0885667130351067,0.0465506948530674,-0.308943778276443,-0.94994044303894,0.99483048915863,0.0929322093725204,-0.0409397482872009,0.0211790334433317,0.382889211177826,-0.923551499843597,-0.0638453960418701,-0.0687844753265381,-0.995586574077606,-0.0802226737141609,-0.281414479017258,-0.95622718334198,0.0173120517283678,-0.0300754569470882,0.999397695064545,0.984597325325012,-0.159656122326851,-0.0712609812617302,0.987934052944183,-0.141118258237839,0.0638113841414452,0.995671093463898,-0.0790390819311142,-0.048908531665802,0.99516636133194,0.071812778711319,0.0669842958450317,0.987934052944183,-0.141118258237839,0.0638113841414452,0.99483048915863,0.0929322093725204,-0.0409397482872009,0.0211790334433317,0.382889211177826,-0.923551499843597,-0.0285032354295254,-0.088520735502243,-0.99566650390625,-0.0638453960418701,-0.0687844753265381,-0.995586574077606,-0.0638453960418701,-0.0687844753265381,-0.995586574077606,-0.00733345514163375,0.02413828112185,-0.999681770801544,0.0465506948530674,-0.308943778276443,-0.94994044303894,-0.0638453960418701,-0.0687844753265381,-0.995586574077606,0.0465506948530674,-0.308943778276443,-0.94994044303894,-0.0802226737141609,-0.281414479017258,-0.95622718334198,0.999126017093658,-0.0216123014688492,-0.0357809066772461,0.0211790334433317,0.382889211177826,-0.923551499843597,0.975138783454895,0.203126072883606,0.0885667130351067,-0.0332563705742359,-0.23964262008667,0.970291495323181,0.0173120517283678,-0.0300754569470882,0.999397695064545,0.0251754261553288,0.0864573195576668,0.995937407016754,-0.0387667380273342,0.150973290205002,-0.987777471542358,-0.0586270950734615,0.0294513739645481,-0.997845411300659,-0.583593428134918,-0.581096649169922,-0.567226111888886,
- 0.0201890151947737,0.230759873986244,-0.972801268100739,-0.0398449599742889,-0.0989519208669662,-0.994294166564941,0.0687700435519218,0.025913467630744,-0.99729597568512,-0.0538851246237755,-0.189537689089775,-0.980393767356873,0.0341813489794731,0.202289149165154,-0.978729128837585,-0.0301426574587822,-0.0292964652180672,-0.999116241931915,0.964117705821991,-0.263976037502289,-0.0281763691455126,0.998002231121063,-0.0468903966248035,-0.0423424392938614,0.0341813489794731,0.202289149165154,-0.978729128837585,-0.0538851246237755,-0.189537689089775,-0.980393767356873,0.996042907238007,0.0113574843853712,0.0881448984146118,0.998002231121063,-0.0468903966248035,-0.0423424392938614,0.964117705821991,-0.263976037502289,-0.0281763691455126,0.0173120517283678,-0.0300754569470882,0.999397695064545,0.987934052944183,-0.141118258237839,0.0638113841414452,0.0251754261553288,0.0864573195576668,0.995937407016754,-0.0132636222988367,-0.224540114402771,0.974374651908875,0.044656727463007,0.233643680810928,0.971296310424805,0.0311228670179844,0.0708209797739983,0.997003376483917,-0.975735425949097,0.209617763757706,-0.0632532611489296,-0.964802205562592,0.259572565555573,0.0421759821474552,-0.998828291893005,-0.0324574261903763,0.0358980484306812,-0.982659637928009,-0.185411050915718,0.00166245689615607,-0.948885142803192,0.307258605957031,-0.072174459695816,0.0851073488593102,0.0854272767901421,0.992702841758728,-0.011973587796092,0.200498446822166,0.97962087392807,0.0324668660759926,-0.0718790218234062,0.996884882450104,0.0223136637359858,-0.0569934546947479,-0.99812513589859,-0.0160571336746216,-0.142850160598755,-0.989614069461823,0.128471925854683,-0.116625435650349,-0.984831690788269,0.0697737783193588,0.155517727136612,-0.985365867614746,-0.0160571336746216,-0.142850160598755,-0.989614069461823,-0.827926993370056,-0.560217916965485,-0.0263206865638494,-0.855878949165344,0.515800058841705,-0.0377041697502136,-0.0285032354295254,-0.088520735502243,-0.99566650390625,-0.0398449599742889,-0.0989519208669662,-0.994294166564941,0.19729508459568,0.370538145303726,-0.907621145248413,
- 0.0687700435519218,0.025913467630744,-0.99729597568512,-0.941291391849518,0.327450126409531,-0.0821406543254852,0.19729508459568,0.370538145303726,-0.907621145248413,-0.0398449599742889,-0.0989519208669662,-0.994294166564941,-0.940516412258148,0.332036197185516,-0.0719779208302498,-0.941291391849518,0.327450126409531,-0.0821406543254852,-0.0398449599742889,-0.0989519208669662,-0.994294166564941,0.0454772152006626,-0.144880920648575,0.98840343952179,-0.038927610963583,0.222426995635033,0.974171996116638,-0.0297054313123226,-0.0189499501138926,0.99937915802002,0.0491409935057163,0.0016275797970593,0.998790562152863,0.919076144695282,-0.393057078123093,-0.0283762142062187,0.937978804111481,-0.342944592237473,-0.0508409664034843,0.916504383087158,-0.398960798978806,-0.029153635725379,0.937978804111481,-0.342944592237473,-0.0508409664034843,0.998016655445099,0.0517633855342865,-0.0358240716159344,0.916504383087158,-0.398960798978806,-0.029153635725379,-0.994256734848022,0.105830073356628,-0.0159251820296049,-0.905509531497955,0.418521642684937,-0.0699446648359299,-0.869625627994537,0.440357506275177,0.22324126958847,-0.998828291893005,-0.0324574261903763,0.0358980484306812,-0.964802205562592,0.259572565555573,0.0421759821474552,-0.0132636222988367,-0.224540114402771,0.974374651908875,-0.0231501590460539,0.209474071860313,0.977540135383606,-0.982659637928009,-0.185411050915718,0.00166245689615607,-0.998828291893005,-0.0324574261903763,0.0358980484306812,-0.0231501590460539,0.209474071860313,0.977540135383606,-0.91034334897995,-0.412031471729279,0.0387965179979801,-0.99786788225174,0.037601612508297,0.0533464550971985,-0.0189633369445801,-0.065866693854332,0.997648239135742,-0.0123638641089201,0.109913766384125,0.993864238262177,-0.0189633369445801,-0.065866693854332,0.997648239135742,-0.99786788225174,0.037601612508297,0.0533464550971985,-0.995681464672089,-0.0827497541904449,0.0420833826065063,-0.0118544716387987,-0.12775807082653,0.991734623908997,0.974509716033936,0.22163051366806,0.0347975492477417,0.999126017093658,-0.0216123014688492,-0.0357809066772461,
- 0.975138783454895,0.203126072883606,0.0885667130351067,0.984597325325012,-0.159656122326851,-0.0712609812617302,0.987934052944183,-0.141118258237839,0.0638113841414452,0.984597325325012,-0.159656122326851,-0.0712609812617302,0.975138783454895,0.203126072883606,0.0885667130351067,0.10117944329977,-0.0559744760394096,-0.993292331695557,0.0398529656231403,-0.12579932808876,-0.991254925727844,0.840114951133728,0.381326168775558,-0.385742574930191,0.0384602583944798,-0.243772387504578,-0.96906965970993,0.128471925854683,-0.116625435650349,-0.984831690788269,-0.0160571336746216,-0.142850160598755,-0.989614069461823,0.0384602583944798,-0.243772387504578,-0.96906965970993,0.984299778938293,0.101168803870678,-0.144633769989014,0.0697737783193588,0.155517727136612,-0.985365867614746,0.00809251796454191,0.999967277050018,-0,-0.000881035928614438,0.999999701976776,0,0.00324196927249432,0.99999475479126,-0,0.00357237691059709,0.999993622303009,-0,0.00606847088783979,0.999981641769409,-0,0.00584476022049785,0.999983012676239,-0,0.00505618890747428,0.999987304210663,-0,0.00196098093874753,0.999998152256012,0,0.00654623936861753,0.99997866153717,0,0.000419638818129897,0.999999940395355,0,-0.00577384978532791,0.999983310699463,0,-0.00297538819722831,0.999995589256287,0,-0.00469586905092001,0.999989032745361,1.68843758419079e-011,-0.00411003781482577,0.999991655349731,1.56127211853319e-011,-0.00313678290694952,0.999995112419128,0,-0.000940060068387538,0.999999642372131,0,0.000561516208108515,0.999999940395355,-0,-0.000468125101178885,0.99999988079071,0,0,1,-2.39837390836328e-006,0,1,-2.68599933406222e-006,-0.00676223868504167,0.999977171421051,-2.97717929242936e-006,-0.00676223868504167,0.999977171421051,-2.64677760242193e-006,-0.00246748840436339,0.999997019767761,0,-0.00100141169968992,0.999999523162842,0,-0.00577384978532791,0.999983310699463,0,-0.00411003781482577,0.999991655349731,1.56127211853319e-011,0.00164736446458846,0.99999862909317,-0,0.00143434957135469,0.999999046325684,-0,0.00194134772755206,0.999998211860657,-0,0.000785759068094194,0.999999701976776,-0,
- 0,0.995012700557709,-0.099748283624649,0,0.99512505531311,-0.098621554672718,0,0.995355188846588,-0.0962710157036781,0,0.99518084526062,-0.0980566143989563,0.000907652720343322,0.999999582767487,0,0.00348115549422801,0.999994039535522,0,0.0071881115436554,0.999974250793457,0,0.00240172701887786,0.999997138977051,0,-0.0028674325440079,0.999995887279511,0,-0.000670827401336282,0.999999761581421,0,-0.00246748840436339,0.999997019767761,0,-0.00836140476167202,0.999965131282806,0,0.000561516208108515,0.999999940395355,-0,-0.000940060068387538,0.999999642372131,0,-0.00160763715393841,0.99999874830246,0,0.00104676722548902,0.999999463558197,-0,0.000785759068094194,0.999999701976776,-0,0.00194134772755206,0.999998211860657,-0,0.00908942893147469,0.999958753585815,0,0.00337222078815103,0.999994337558746,0,0.00348115549422801,0.999994039535522,0,0.00328929419629276,0.999994575977325,0
- }
- BinormalsW: *6060 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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: *18180 {
- a: 0.999999940395355,-0.000476084707770497,0,0.999999940395355,-0.00028425149503164,-0,1,0,-0,1,-0.000166321566211991,-0,1,-1.78571291087337e-009,-0,1,0.000213302570045926,-0,0.999999940395355,-9.99173644231632e-005,0,0.999999642372131,0.000950704328715801,-0,1,-0.000173302003531717,-0,0.99999988079071,-0.00041368865640834,-0,0.999999940395355,-9.99173644231632e-005,0,1,0.000213302570045926,-0,1,0,-0,0.999999940395355,-0.00028425149503164,-0,0.99999988079071,-0.00041368865640834,-0,1,-0.000173302003531717,-0,0.99999874830246,0.00159261864610016,-0,1,-0,0,1,-0,0,1,-0,0,0.99999874830246,0.00159261864610016,-0,1,-0,0,1,-0,-0,1,3.43785613949876e-005,0,1,3.43785613949876e-005,0,1,-0,-0,1,-0,0,1,-0.000166252400958911,0,0.999994933605194,-0.00318331341259182,0,1,-0.000166252400958911,0,1,-0,0,1,-0,0,1,-0,0,0.99999874830246,0.00159261864610016,-0,0.999999582767487,0.000881035812199116,0,0.999961376190186,0.00878970697522163,-0,1,0.00012032495578751,0,0.999994814395905,-0.00324196950532496,0,0.999999582767487,0.000881035812199116,0,0.99999874830246,0.00159261864610016,-0,1,3.43785613949876e-005,0,1,-0.000166252400958911,0,0.999982893466949,-0.00584475975483656,0,0.999997854232788,-0.0020931214094162,0,1,0.00012032495578751,0,1,3.43785613949876e-005,0,0.999964892864227,-0.00837212707847357,0,0.999982893466949,-0.00584475975483656,0,1,-0.000166252400958911,0,0.999994933605194,-0.00318331341259182,0,0.999999821186066,-0.000561516149900854,0,0.999965012073517,0.00836140383034945,0,0.999961376190186,0.00878970697522163,-0,0.999999582767487,0.000881035812199116,0,0.999999821186066,-0.000561516149900854,0,0.999999582767487,0.000881035812199116,0,0.999967277050018,-0.00809251796454191,-0,0.99999988079071,0.000468125101178885,0,0.99998939037323,-0.00461799325421453,0,0.999987185001373,-0.00505618844181299,0,0.999982893466949,-0.00584475975483656,0,0.999964892864227,-0.00837212707847357,0,0.99999874830246,0.00160763715393841,0,0.999999523162842,0.000940059951972216,0,0.99999988079071,-0.000505111180245876,0,0.99999988079071,-0.000505111180245876,0,
- 0.999999523162842,0.000940059951972216,0,0.999995112419128,0.00313678290694952,0,1,0.000286438502371311,-0,0.999999463558197,-0.00104676722548902,0,0.999998092651367,-0.00194134749472141,0,0.999987185001373,-0.00505618844181299,0,0.99998939037323,-0.00461799325421453,0,0.999999940395355,-0.00028425149503164,-0,0.999999940395355,-0.000476084707770497,0,0.99999874830246,0.00160763715393841,0,0.99999988079071,-0.000505111180245876,0,0.999999940395355,-0.00028425149503164,-0,0.99999988079071,-0.000505111180245876,0,1,0.000286438502371311,-0,1,-1.53574728756212e-005,-0,0.99999988079071,-0.00041368865640834,-0,0.99999988079071,-0.00041368865640834,-0,1,-1.53574728756212e-005,-0,0.99999862909317,-0.00164736446458846,0,0.999999701976776,-0.000785759068094194,0,0.999999940395355,-9.99173644231632e-005,0,0.999999642372131,0.000950704328715801,-0,0.999999940395355,-9.99173644231632e-005,0,0.999999701976776,-0.000785759068094194,0,0.999999463558197,-0.00104676722548902,0,0,-0.00622495822608471,0.999980568885803,0,-0.00390823092311621,0.999992311000824,0,-0.00192590849474072,0.999998152256012,0,-0.00340652861632407,0.999994277954102,0,-0.00216462183743715,0.999997675418854,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0.00216462183743715,0.999997675418854,0,-0.00821684766560793,0.999966204166412,0,-0.00439478224143386,0.999990403652191,0,-0.0106358462944627,0.999943435192108,0,-0.00989745184779167,0.999951004981995,0,-0.00439478224143386,0.999990403652191,0,-0.00821684766560793,0.999966204166412,0,-0.00989745184779167,0.999951004981995,0,-0.0106358462944627,0.999943435192108,0,-0.00756447343155742,0.999971389770508,0,-0.00977246928960085,0.999952256679535,0,-0.00390823092311621,0.999992311000824,0,-0.00622495822608471,0.999980568885803,0,-0.00977246928960085,0.999952256679535,0,-0.00756447343155742,0.999971389770508,-0,1.77460751729086e-005,-1,0,0.000363965780707076,-1,-0,0.00142037065234035,-0.999998986721039,-0,0.000719037838280201,-0.999999761581421,0,-0,-1,0,-0.000146833001053892,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.000146833001053892,-1,0,-0.000597437960095704,-0.999999821186066,
- 0,-0.000298719009151682,-1,0,-0.000597437960095704,-0.999999821186066,0,-0.00015188600809779,-1,0,0,-1,0,-0.000298719009151682,-1,0,0,-1,0,-0.00015188600809779,-1,0,0,-1,0,4.44685656475485e-006,-1,0,0,-1,0,0.000363965780707076,-1,-0,1.77460751729086e-005,-1,0,4.44685656475485e-006,-1,-1,0,0,-0.99999988079071,0,-0.00057110155466944,-0.999999344348907,0,-0.00114304758608341,-0.99999988079071,0,-0.000571523909457028,-1,0,0,-0.99999988079071,0,-0.000380452780518681,-0.999999821186066,0,-0.00061760371318087,-0.99999988079071,0,-0.00057110155466944,-0.99999988079071,0,-0.000380452780518681,-0.999999940395355,0,-0.000237150903558359,-0.999999940395355,0,-0.000376215379219502,-0.999999821186066,0,-0.00061760371318087,-0.999999940395355,0,-0.00041719333967194,-0.999999940395355,0,-0.000376215379219502,-0.999999940395355,0,-0.000237150903558359,-1,0,-0.00020859666983597,-0.99999988079071,0,-0.000380004028556868,-0.99999988079071,0,-0.000569928262848407,-0.999999344348907,0,-0.00113985629286617,-0.999999701976776,0,-0.000759956252295524,-0.999999940395355,0,-0.000237286178162321,-0.99999988079071,0,-0.000380004028556868,-0.999999701976776,0,-0.000759956252295524,-0.999999821186066,0,-0.00061729020671919,-1,0,0,-0.999999940395355,0,-0.000237286178162321,-0.999999821186066,0,-0.00061729020671919,-1,0,-0.000282064487691969,-0.999999940395355,0,-0.000416399358073249,-1,0,-0.000208199679036625,-1,0,0,-1,0,-0.000282064487691969,-1,0.000155956615344621,0,-1,-0.000270239688688889,0,-1,-0.000179738257429563,0,-0.999999761581421,-0.000814980128780007,0,-0.999999701976776,0.000808751443400979,0,-1,0.000227230935706757,0,-1,-3.83042752218898e-005,0,-1,-7.6574768172577e-005,0,-1,0.000227230935706757,0,-0.999999940395355,0.000227306896704249,0,-0.99999988079071,0.000338021287461743,0,-1,-3.83042752218898e-005,0,-0.999999940395355,0.000227306896704249,0,-1,-0.000179738257429563,0,-1,-0.000270239688688889,0,-0.99999988079071,0.000338021287461743,0,-0.999997198581696,0.00235929666087031,0,-1,0,0,-1,0,0,-1,0,0,-0.999997198581696,0.00235929666087031,0,
- -1,0,0,-1,-0,0,-0.99999988079071,-0.000332970434101298,0,-0.99999988079071,-0.000332970434101298,0,-1,-0,0,-1,0,0,-1,-2.40918780036736e-006,0,-1,0,0,-0.9999960064888,-0.00286102830432355,0,-1,-2.40918780036736e-006,0,-1,0,0,-1,0,0,-0.999997198581696,0.00235929666087031,0,-0.999978542327881,0.00654623843729496,0,-0.999967575073242,0.00804474856704474,0,-0.99999988079071,-0.000332970434101298,0,-0.999999344348907,-0.00116540014278144,0,-0.999999940395355,0.000419638818129897,0,-0.999978542327881,0.00654623843729496,0,-0.999997198581696,0.00235929666087031,0,-1,-2.40918780036736e-006,0,-0.999988913536072,-0.00469586858525872,3.59554097606463e-009,-1,-0.000113728463475127,0,-0.999999344348907,-0.00116540014278144,0,-0.99999988079071,-0.000332970434101298,0,-0.999933063983917,-0.011569345369935,4.57732918235365e-009,-0.999988913536072,-0.00469586858525872,3.59554097606463e-009,-1,-2.40918780036736e-006,0,-0.9999960064888,-0.00286102830432355,0,-0.999994218349457,0.00337222032248974,0,-0.999958634376526,0.00908942800015211,0,-0.999967575073242,0.00804474856704474,0,-0.999978542327881,0.00654623843729496,0,-0.999994218349457,0.00337222032248974,0,-0.999978542327881,0.00654623843729496,0,-0.999998033046722,0.00196098070591688,0,-0.999996364116669,0.00269239884801209,0,-0.999933063983917,-0.011569345369935,4.57732918235365e-009,-0.999974370002747,-0.0071581294760108,4.5775205848031e-009,-0.999991536140442,-0.00411003734916449,3.79864806276942e-009,-0.999988913536072,-0.00469586858525872,3.59554097606463e-009,-0.999994575977325,0.00328929419629276,0,-0.999993920326233,0.00348115502856672,0,-0.999999463558197,0.000907652603928,0,-0.999974250793457,0.0071881115436554,0,-0.999993920326233,0.00348115502856672,0,-0.999994218349457,0.00337222032248974,0,-0.999996364116669,0.00269239884801209,0,-0.999995887279511,-0.0028674325440079,0,-0.999996900558472,-0.00246748817153275,0,-0.999991536140442,-0.00411003734916449,3.79864806276942e-009,-0.999974370002747,-0.0071581294760108,4.5775205848031e-009,-1,-0.000270239688688889,0,-1,0.000155956615344621,0,
- -0.999994575977325,0.00328929419629276,0,-0.999999463558197,0.000907652603928,0,-1,-0.000270239688688889,0,-0.999999463558197,0.000907652603928,0,-0.999997138977051,0.00240172701887786,0,-1,5.88060720474459e-005,0,-0.99999988079071,0.000338021287461743,0,-0.99999988079071,0.000338021287461743,0,-1,5.88060720474459e-005,0,-1,-5.33239199285163e-006,0,-0.999999761581421,-0.000670827401336282,0,-1,-3.83042752218898e-005,0,-0.999995887279511,-0.0028674325440079,0,-1,-7.6574768172577e-005,0,-1,-3.83042752218898e-005,0,-0.999999761581421,-0.000670827401336282,0,0.999982893466949,-0.00584475975483656,0,0.99998152256012,-0.00606846995651722,0,0.999997854232788,-0.0020931214094162,0,0.999998092651367,-0.00194134749472141,0,0.999999046325684,-0.00143434957135469,0,0.999993622303009,-0.00357237691059709,0,0.999987185001373,-0.00505618844181299,0,-0.999988913536072,-0.00469586858525872,3.59554097606463e-009,-0.999995589256287,-0.00297538819722831,0,-1,-0.000113728463475127,0,-1,-5.33239199285163e-006,0,-0.999999523162842,-0.00100141169968992,0,-0.999996900558472,-0.00246748817153275,0,-0.999999761581421,-0.000670827401336282,0,-0.057002104818821,-0.0519863478839397,-0.997019708156586,-0.0156550146639347,-0.0853244736790657,-0.99623030424118,-0.0158483050763607,-0.0863779485225677,-0.996136426925659,-0.0601171515882015,-0.0548272952437401,-0.996684372425079,-2.01323953064048e-008,2.97711108032672e-006,1,-2.32750210216182e-007,1.26855752569099e-006,1,-3.9118546624195e-007,2.13207658816827e-006,1,-1.78981416354418e-008,2.64671712102427e-006,1,3.58691613655537e-006,0,1,2.90369757749431e-006,0,1,4.92040385324799e-007,-4.48744572167925e-007,1,1.88259389233281e-006,-1.71693989159394e-006,1,0,2.11127348848095e-006,1,0,2.32425395552127e-006,1,0,2.68599933406222e-006,1,0,2.39837390836328e-006,1,0,-0.0980566143989563,-0.99518084526062,0,-0.0962710008025169,-0.995355069637299,-0.000607803172897547,-0.0898799002170563,-0.995952546596527,-0.000637358520179987,-0.0942504405975342,-0.99554830789566,1,-0,-9.38132529881841e-007,1,-0,-9.38132529881841e-007,
- 1,0,7.8177762929954e-008,1,0,-4.6906629336263e-007,1,0,-4.6906629336263e-007,1,0,7.8177762929954e-008,1,-0,7.03599539519928e-007,1,0,5.86332930652134e-007,-0.0601171515882015,-0.0548272952437401,-0.996684372425079,-0.0794878005981445,0,-0.996835827827454,-0.0782759785652161,0,-0.996931731700897,-0.057002104818821,-0.0519863478839397,-0.997019708156586,-0.0158483050763607,-0.0863779485225677,-0.996136426925659,-0.0156550146639347,-0.0853244736790657,-0.99623030424118,-0.000637358520179987,-0.0942504405975342,-0.99554830789566,-0.000607803172897547,-0.0898799002170563,-0.995952546596527,-3.9118546624195e-007,2.13207658816827e-006,1,-2.32750210216182e-007,1.26855752569099e-006,1,1.88259389233281e-006,-1.71693989159394e-006,1,4.92040385324799e-007,-4.48744572167925e-007,1,-1,3.86838962640468e-007,8.85855797605473e-008,-1,3.84852995694018e-007,8.81308324096608e-008,-1,5.6204225984402e-007,-2.48120173296229e-008,-1,3.32486479237559e-007,-1.46780223531096e-008,-1,1.28032240365172e-009,-3.26766809166656e-008,-1,3.80477516159772e-009,-9.71060245547051e-008,-1,-0,0,-1,-3.80384745923834e-009,-9.70824416413052e-008,-1,-6.08245613875624e-007,-2.68454307672528e-008,-1,-3.45667785950354e-007,-1.52563366384584e-008,-1,3.15480974677484e-010,-7.22621962268022e-011,-1,-4.81432778087765e-008,1.10251381357784e-008,-1,-6.18733864143906e-008,2.4356569383599e-007,-1,-7.8374789325153e-008,3.08523794956272e-007,-1,3.2612270217669e-008,1.28377763530807e-007,-1,4.35869047521464e-008,1.71579216612372e-007,-1.16067731426028e-007,0.999626576900482,0.0273276194930077,-1.15566521685651e-007,0.99533087015152,-0.096520870923996,1.7465298540742e-008,1,7.4817025961238e-006,1.74644227968201e-008,0.99994969367981,0.0100326919928193,1.7345399783153e-008,0.99313497543335,-0.116973780095577,1.7324040868516e-008,0.991912066936493,-0.126927182078362,4.50604211721384e-008,-0.999626159667969,0.0273414291441441,4.48688695087185e-008,-0.99533349275589,-0.096494048833847,-6.11285457807753e-008,-1,-4.49072058472666e-006,-6.11254691307295e-008,-0.99994969367981,0.0100303469225764,
- -6.07093397775316e-008,-0.993142306804657,-0.116911619901657,-6.06345835763022e-008,-0.991919279098511,-0.126870363950729,-1,9.21826313060592e-008,3.62875738346702e-007,-1,6.86448800024664e-008,2.70219743470079e-007,-1,3.84852995694018e-007,8.81308324096608e-008,-1,3.86838962640468e-007,8.85855797605473e-008,-9.89833779385663e-007,0.945146024227142,0.326648443937302,-1.04637570075283e-006,0.999135076999664,0.0415828078985214,-1.15566521685651e-007,0.99533087015152,-0.096520870923996,-1.16067731426028e-007,0.999626576900482,0.0273276194930077,-1,-4.81432778087765e-008,1.10251381357784e-008,-1,3.15480974677484e-010,-7.22621962268022e-011,-1,-7.8374789325153e-008,3.08523794956272e-007,-1,-6.18733864143906e-008,2.4356569383599e-007,7.42370161788131e-007,-0.945139408111572,0.326667279005051,7.84780809226504e-007,-0.999134063720703,0.0416055433452129,4.48688695087185e-008,-0.99533349275589,-0.096494048833847,4.50604211721384e-008,-0.999626159667969,0.0273414291441441,-1,1.28032240365172e-009,-3.26766809166656e-008,-1,3.32486479237559e-007,-1.46780223531096e-008,-1,5.6204225984402e-007,-2.48120173296229e-008,-1,3.80477516159772e-009,-9.71060245547051e-008,-1,-6.08245613875624e-007,-2.68454307672528e-008,-1,-3.80384745923834e-009,-9.70824416413052e-008,-1,-0,0,-1,-3.45667785950354e-007,-1.52563366384584e-008,-1,4.85113218928745e-007,1.110902161372e-007,-1,3.86838962640468e-007,8.85855797605473e-008,-1,3.32486479237559e-007,-1.46780223531096e-008,-1,2.95016064910669e-007,-1.30238468898369e-008,-1,6.93012225383427e-008,2.72803191592175e-007,-1,9.21826313060592e-008,3.62875738346702e-007,-1,3.86838962640468e-007,8.85855797605473e-008,-1,4.85113218928745e-007,1.110902161372e-007,-1,-4.50491697279176e-008,1.77336843876219e-007,-1,-6.18733864143906e-008,2.4356569383599e-007,-1,4.35869047521464e-008,1.71579216612372e-007,-1,4.93858749450737e-008,1.94406709397299e-007,-1,-1.94734525393869e-007,4.45955308236989e-008,-1,-4.81432778087765e-008,1.10251381357784e-008,-1,-6.18733864143906e-008,2.4356569383599e-007,-1,-4.50491697279176e-008,1.77336843876219e-007,
- -1,-1.13485020847293e-006,-5.00875714237736e-008,-1,-6.08245613875624e-007,-2.68454307672528e-008,-1,-4.81432778087765e-008,1.10251381357784e-008,-1,-1.94734525393869e-007,4.45955308236989e-008,-1,-1.13485020847293e-006,-5.00875714237736e-008,-1,-7.68099273074085e-009,-1.96036310740055e-007,-1,-3.80384745923834e-009,-9.70824416413052e-008,-1,-6.08245613875624e-007,-2.68454307672528e-008,-1,0,0,-1,1.28032240365172e-009,-3.26766809166656e-008,-1,-3.80384745923834e-009,-9.70824416413052e-008,-1,-7.68099273074085e-009,-1.96036310740055e-007,-1,0,0,-1,2.95016064910669e-007,-1.30238468898369e-008,-1,3.32486479237559e-007,-1.46780223531096e-008,-1,1.28032240365172e-009,-3.26766809166656e-008,1,7.69944534795286e-008,-1.76330878787212e-008,1,6.26178405127575e-007,9.65623939919169e-007,1,5.62048853680608e-007,2.48239651057247e-008,1,3.32489747734144e-007,1.46851801829939e-008,1,5.75154857074267e-008,1.46796344324684e-006,1,-7.97511390260297e-008,-2.03545278054662e-006,1,3.34241974542238e-007,-8.53040728543419e-006,1,-6.05724181923506e-008,1.54595704771054e-006,1,-6.07039680744492e-007,2.67856066216154e-008,1,-1.80610769007217e-007,8.02769227448152e-006,1,2.74098965746816e-009,8.53299025038723e-006,1,-5.70260958454583e-008,-1.30592123781526e-008,1,-7.16152825930294e-008,-2.81911241017951e-007,1,-7.62720802072181e-008,8.23445134301437e-006,1,-9.79536025624839e-007,8.15800831333036e-006,1,-6.29495559678617e-007,2.47805792241707e-006,-2.18354387016007e-007,0.999626338481903,-0.0273361559957266,-2.17414921621639e-007,0.99532550573349,0.0965780019760132,-1.7465404766881e-007,1,-7.47292324376758e-006,-1.74645293782305e-007,0.999949932098389,-0.0100066354498267,-1.73451823570758e-007,0.993116676807404,0.11712957918644,-1.73238547063193e-007,0.991895496845245,0.127056941390038,-0.000141005424666218,-0.999626398086548,-0.0273308753967285,-0.00014040173846297,-0.995346307754517,0.0963624864816666,-0.000161292977281846,-1,4.49282788395067e-006,-0.000161284857313149,-0.99994969367981,-0.010040532797575,-0.000160193259944208,-0.993181228637695,0.116580076515675,
- -0.000159996197908185,-0.991960346698761,0.126549333333969,1,9.8682406246553e-008,-3.88471107726218e-007,1,7.58763007979724e-008,4.00335375161376e-006,1,6.26178405127575e-007,9.65623939919169e-007,1,7.69944534795286e-008,-1.76330878787212e-008,-4.94918765525654e-007,0.945146024227142,-0.326648443937302,-5.23189498835563e-007,0.999134540557861,-0.0415957383811474,-2.17414921621639e-007,0.99532550573349,0.0965780019760132,-2.18354387016007e-007,0.999626338481903,-0.0273361559957266,1,-5.70260958454583e-008,-1.30592123781526e-008,1,2.74098965746816e-009,8.53299025038723e-006,1,-7.62720802072181e-008,8.23445134301437e-006,1,-7.16152825930294e-008,-2.81911241017951e-007,0,-0.945148646831512,-0.326640516519547,0,-0.99913477897644,-0.0415894389152527,-0.00014040173846297,-0.995346307754517,0.0963624864816666,-0.000141005424666218,-0.999626398086548,-0.0273308753967285,1,5.75154857074267e-008,1.46796344324684e-006,1,3.32489747734144e-007,1.46851801829939e-008,1,5.62048853680608e-007,2.48239651057247e-008,1,-7.97511390260297e-008,-2.03545278054662e-006,1,-6.07039680744492e-007,2.67856066216154e-008,1,-6.05724181923506e-008,1.54595704771054e-006,1,3.34241974542238e-007,-8.53040728543419e-006,1,-1.80610769007217e-007,8.02769227448152e-006,1,8.67102016854915e-007,-1.31820524984505e-006,1,7.69944534795286e-008,-1.76330878787212e-008,1,3.32489747734144e-007,1.46851801829939e-008,1,2.95018679707937e-007,1.30476385251654e-008,1,1.09112261270639e-006,-8.63837885844987e-006,1,9.8682406246553e-008,-3.88471107726218e-007,1,7.69944534795286e-008,-1.76330878787212e-008,1,8.67102016854915e-007,-1.31820524984505e-006,1,-4.71716070649109e-008,-8.80194602359552e-006,1,-7.16152825930294e-008,-2.81911241017951e-007,1,-6.29495559678617e-007,2.47805792241707e-006,1,1.07120763459534e-006,-8.55998314364115e-006,1,-1.9718447674677e-007,-8.65905440150527e-006,1,-5.70260958454583e-008,-1.30592123781526e-008,1,-7.16152825930294e-008,-2.81911241017951e-007,1,-4.71716070649109e-008,-8.80194602359552e-006,1,-1.11149472559191e-006,-8.0465597420698e-006,
- 1,-6.07039680744492e-007,2.67856066216154e-008,1,-5.70260958454583e-008,-1.30592123781526e-008,1,-1.9718447674677e-007,-8.65905440150527e-006,1,-1.11149472559191e-006,-8.0465597420698e-006,1,-9.18963536378214e-008,2.34864819503855e-006,1,-6.05724181923506e-008,1.54595704771054e-006,1,-6.07039680744492e-007,2.67856066216154e-008,1,-0,0,1,5.75154857074267e-008,1.46796344324684e-006,1,-6.05724181923506e-008,1.54595704771054e-006,1,-9.18963536378214e-008,2.34864819503855e-006,1,-0,0,1,2.95018679707937e-007,1.30476385251654e-008,1,3.32489747734144e-007,1.46851801829939e-008,1,5.75154857074267e-008,1.46796344324684e-006,-0.0234636552631855,-0.983579754829407,-0.178941994905472,0.0399423614144325,-0.986642718315125,0.157926380634308,0.0266630277037621,-0.955529987812042,-0.293686002492905,-0.0293166730552912,-0.999367356300354,0.0201353188604116,0.0482352450489998,-0.998780250549316,-0.0105549991130829,0.560462832450867,-0.82817554473877,0.00258170580491424,0.116694137454033,-0.992715179920197,0.0299849826842546,0.00214289408177137,-0.959899842739105,0.280335038900375,0.603573381900787,-0.795935332775116,0.0467557944357395,0.0432191975414753,-0.97352933883667,0.224438652396202,0.0507215559482574,-0.998367369174957,-0.0262649841606617,0.702102065086365,-0.709151983261108,0.0644678696990013,0.00246374099515378,-0.950288474559784,-0.311360895633698,0.00214289408177137,-0.959899842739105,0.280335038900375,0.623053133487701,-0.708974242210388,0.330394178628922,0.0418623089790344,-0.999036431312561,-0.0131857572123408,-0.226272135972977,-0.697818279266357,0.679595768451691,0.257579892873764,-0.940059244632721,0.223475232720375,-0.420897662639618,-0.907106578350067,-0.0017005376284942,0.267549574375153,-0.963524520397186,0.0061396905221045,0.321630388498306,-0.946505486965179,-0.0260982066392899,0.349540799856186,-0.936907827854156,-0.00499190203845501,0.00225527421571314,-0.966119468212128,0.258085578680038,-0.00441602198407054,-0.98571902513504,-0.168340593576431,-0.00753418449312449,-0.993285357952118,0.115444250404835,0.0030192022677511,-0.999138653278351,-0.041388101875782,
- 0.0418623089790344,-0.999036431312561,-0.0131857572123408,0.217916205525398,-0.957707524299622,0.187906593084335,-0.00753418449312449,-0.993285357952118,0.115444250404835,-0.00441602198407054,-0.98571902513504,-0.168340593576431,0.270780622959137,-0.962581515312195,0.0107101425528526,-0.41814711689949,-0.908372700214386,-0.00347374123521149,0.120564848184586,-0.992467522621155,-0.0217310972511768,-0.70977920293808,-0.704118967056274,0.0207364372909069,0.00641266629099846,-0.999383568763733,0.0345169603824615,-0.0206074640154839,-0.999550938606262,-0.0217552538961172,0.350377917289734,-0.839875221252441,-0.414541870355606,0.0959476456046104,-0.986888766288757,-0.129786819219589,0.603573381900787,-0.795935332775116,0.0467557944357395,-0.0209429021924734,-0.910529732704163,0.412912905216217,-0.0312523581087589,-0.984837174415588,-0.170643225312233,0.259142071008682,-0.962940096855164,-0.074777640402317,0.228287220001221,-0.973154127597809,-0.0292560234665871,0.253000378608704,-0.967306971549988,0.0175474639981985,-0.590607643127441,-0.806354522705078,0.0312233660370111,-0.0131433475762606,-0.977711856365204,0.209538951516151,-0.0496719405055046,-0.981380343437195,0.185540497303009,0.00225527421571314,-0.966119468212128,0.258085578680038,0.0997152104973793,-0.994763612747192,0.0224094223231077,0.155466392636299,-0.986948251724243,-0.0419913418591022,-0.00441602198407054,-0.98571902513504,-0.168340593576431,0.350377917289734,-0.839875221252441,-0.414541870355606,0.597921311855316,-0.801524639129639,-0.00694803427904844,-0.247075304389,-0.959109306335449,-0.138068780303001,0.195735275745392,-0.976045966148376,0.0949846431612968,-0.104741513729095,-0.994473516941071,0.00719071784988046,-0.0293665789067745,-0.928891122341156,0.369186639785767,-0.0312523581087589,-0.984837174415588,-0.170643225312233,0.321630388498306,-0.946505486965179,-0.0260982066392899,0.459241420030594,-0.867689847946167,0.190293356776237,0.348604589700699,-0.937260270118713,0.0042299902997911,-0.0584953874349594,-0.998257637023926,-0.00774460751563311,
- 0.228287220001221,-0.973154127597809,-0.0292560234665871,0.259142071008682,-0.962940096855164,-0.074777640402317,-0.379258394241333,-0.925252199172974,-0.00845355167984962,0.195735275745392,-0.976045966148376,0.0949846431612968,0.278237730264664,-0.960499823093414,-0.00488823838531971,0.530036807060242,-0.847591638565063,-0.0254850834608078,0.0399423614144325,-0.986642718315125,0.157926380634308,-0.0234636552631855,-0.983579754829407,-0.178941994905472,-0.598420679569244,-0.8009153008461,-0.0206711478531361,0.253000378608704,-0.967306971549988,0.0175474639981985,0.228287220001221,-0.973154127597809,-0.0292560234665871,0.530036807060242,-0.847591638565063,-0.0254850834608078,-0.70977920293808,-0.704118967056274,0.0207364372909069,0.120564848184586,-0.992467522621155,-0.0217310972511768,-0.283587902784348,-0.931953191757202,-0.225922793149948,0.349540799856186,-0.936907827854156,-0.00499190203845501,0.0959476456046104,-0.986888766288757,-0.129786819219589,-0.283587902784348,-0.931953191757202,-0.225922793149948,0.350377917289734,-0.839875221252441,-0.414541870355606,-0.0441280789673328,-0.998693943023682,-0.0257541574537754,0.0959476456046104,-0.986888766288757,-0.129786819219589,-0.283587902784348,-0.931953191757202,-0.225922793149948,0.0959476456046104,-0.986888766288757,-0.129786819219589,-0.70977920293808,-0.704118967056274,0.0207364372909069,0.0266630277037621,-0.955529987812042,-0.293686002492905,0.267549574375153,-0.963524520397186,0.0061396905221045,-0.420897662639618,-0.907106578350067,-0.0017005376284942,-0.0293166730552912,-0.999367356300354,0.0201353188604116,0.0266630277037621,-0.955529987812042,-0.293686002492905,0.395803272724152,-0.917952120304108,0.0265254657715559,0.540196359157562,-0.818898141384125,0.193891078233719,-0.0580761358141899,-0.994457125663757,0.0876477807760239,-0.0760105922818184,-0.997068822383881,-0.00873675942420959,-0.00653676874935627,-0.991594195365906,0.129221394658089,-0.00122630246914923,-0.967785835266113,-0.251772165298462,-0.0343642011284828,-0.999409317970276,-0.00026519870152697,
- 0.182306662201881,-0.983225286006927,-0.00567805767059326,0.377443820238113,-0.918069541454315,0.121179468929768,0.116694137454033,-0.992715179920197,0.0299849826842546,0.445692300796509,-0.891739368438721,0.0784807503223419,0.00214289408177137,-0.959899842739105,0.280335038900375,-0.394706398248672,-0.875282227993011,-0.279442369937897,-0.420897662639618,-0.907106578350067,-0.0017005376284942,-0.281092286109924,-0.956664741039276,0.0760246217250824,0.0432191975414753,-0.97352933883667,0.224438652396202,0.603573381900787,-0.795935332775116,0.0467557944357395,0.626885056495667,-0.759983241558075,-0.171582654118538,0.459241420030594,-0.867689847946167,0.190293356776237,0.377443820238113,-0.918069541454315,0.121179468929768,0.182306662201881,-0.983225286006927,-0.00567805767059326,-0.394706398248672,-0.875282227993011,-0.279442369937897,0.120564848184586,-0.992467522621155,-0.0217310972511768,-0.00122630246914923,-0.967785835266113,-0.251772165298462,-0.0343642011284828,-0.999409317970276,-0.00026519870152697,-0.00781787279993296,-0.967381715774536,0.253202348947525,0.017818920314312,-0.92807674407959,-0.371962428092957,-0.141598537564278,-0.989006340503693,-0.0426176972687244,-0.0343642011284828,-0.999409317970276,-0.00026519870152697,0.377443820238113,-0.918069541454315,0.121179468929768,-0.00781787279993296,-0.967381715774536,0.253202348947525,0.377443820238113,-0.918069541454315,0.121179468929768,0.0266630277037621,-0.955529987812042,-0.293686002492905,0.540196359157562,-0.818898141384125,0.193891078233719,0.144548341631889,-0.945282459259033,0.292483806610107,0.0997152104973793,-0.994763612747192,0.0224094223231077,0.00225527421571314,-0.966119468212128,0.258085578680038,0.626885056495667,-0.759983241558075,-0.171582654118538,0.603573381900787,-0.795935332775116,0.0467557944357395,-0.0312523581087589,-0.984837174415588,-0.170643225312233,-0.247075304389,-0.959109306335449,-0.138068780303001,0.597921311855316,-0.801524639129639,-0.00694803427904844,-0.0554543249309063,-0.99767005443573,-0.0397391207516193,0.597495675086975,-0.801689803600311,-0.0170972310006619,
- 0.0399423614144325,-0.986642718315125,0.157926380634308,0.530036807060242,-0.847591638565063,-0.0254850834608078,0.597495675086975,-0.801689803600311,-0.0170972310006619,-0.445304721593857,-0.895371675491333,0.00364544754847884,-0.0390630103647709,-0.988750457763672,0.144382774829865,0.395803272724152,-0.917952120304108,0.0265254657715559,-0.569942891597748,-0.758077263832092,0.316992044448853,-0.497982949018478,-0.86654144525528,0.0334496833384037,-0.0760105922818184,-0.997068822383881,-0.00873675942420959,-0.0293665789067745,-0.928891122341156,0.369186639785767,0.278237730264664,-0.960499823093414,-0.00488823838531971,0.195735275745392,-0.976045966148376,0.0949846431612968,0.00246374099515378,-0.950288474559784,-0.311360895633698,-0.172617852687836,-0.984344959259033,-0.0356074459850788,0.72366189956665,-0.689806520938873,-0.0219176411628723,0.0462147630751133,-0.99890547990799,0.00720870029181242,0.395803272724152,-0.917952120304108,0.0265254657715559,0.0399423614144325,-0.986642718315125,0.157926380634308,0.597495675086975,-0.801689803600311,-0.0170972310006619,0.0266630277037621,-0.955529987812042,-0.293686002492905,0.0399423614144325,-0.986642718315125,0.157926380634308,0.395803272724152,-0.917952120304108,0.0265254657715559,-0.590607643127441,-0.806354522705078,0.0312233660370111,-0.0496719405055046,-0.981380343437195,0.185540497303009,0.350377917289734,-0.839875221252441,-0.414541870355606,-0.125409185886383,-0.912493169307709,0.389395445585251,0.270780622959137,-0.962581515312195,0.0107101425528526,0.272663176059723,-0.955595672130585,0.111765824258327,-0.0312523581087589,-0.984837174415588,-0.170643225312233,0.459241420030594,-0.867689847946167,0.190293356776237,0.626885056495667,-0.759983241558075,-0.171582654118538,0.459241420030594,-0.867689847946167,0.190293356776237,0.0432191975414753,-0.97352933883667,0.224438652396202,0.626885056495667,-0.759983241558075,-0.171582654118538,0.350377917289734,-0.839875221252441,-0.414541870355606,-0.247075304389,-0.959109306335449,-0.138068780303001,-0.590607643127441,-0.806354522705078,0.0312233660370111,
- -0.379258394241333,-0.925252199172974,-0.00845355167984962,0.278237730264664,-0.960499823093414,-0.00488823838531971,0.0484009236097336,-0.997862577438354,-0.0439042299985886,0.41698545217514,-0.90867555141449,-0.0207803137600422,0.028357433155179,-0.999554455280304,-0.00931665953248739,0.182306662201881,-0.983225286006927,-0.00567805767059326,0.0432191975414753,-0.97352933883667,0.224438652396202,0.459241420030594,-0.867689847946167,0.190293356776237,0.00225527421571314,-0.966119468212128,0.258085578680038,0.257579892873764,-0.940059244632721,0.223475232720375,0.144548341631889,-0.945282459259033,0.292483806610107,0.0418623089790344,-0.999036431312561,-0.0131857572123408,0.257579892873764,-0.940059244632721,0.223475232720375,0.00225527421571314,-0.966119468212128,0.258085578680038,-0.497982949018478,-0.86654144525528,0.0334496833384037,0.0495805814862251,-0.998662710189819,0.014645223505795,-0.00653676874935627,-0.991594195365906,0.129221394658089,-0.0760105922818184,-0.997068822383881,-0.00873675942420959,-0.00441602198407054,-0.98571902513504,-0.168340593576431,0.155466392636299,-0.986948251724243,-0.0419913418591022,-0.125409185886383,-0.912493169307709,0.389395445585251,0.272663176059723,-0.955595672130585,0.111765824258327,0.272663176059723,-0.955595672130585,0.111765824258327,0.217916205525398,-0.957707524299622,0.187906593084335,-0.00441602198407054,-0.98571902513504,-0.168340593576431,0.00641266629099846,-0.999383568763733,0.0345169603824615,0.0959476456046104,-0.986888766288757,-0.129786819219589,0.349540799856186,-0.936907827854156,-0.00499190203845501,0.603573381900787,-0.795935332775116,0.0467557944357395,0.259142071008682,-0.962940096855164,-0.074777640402317,-0.0209429021924734,-0.910529732704163,0.412912905216217,0.267549574375153,-0.963524520397186,0.0061396905221045,0.0266630277037621,-0.955529987812042,-0.293686002492905,0.377443820238113,-0.918069541454315,0.121179468929768,-0.0206074640154839,-0.999550938606262,-0.0217552538961172,-0.0209429021924734,-0.910529732704163,0.412912905216217,0.253000378608704,-0.967306971549988,0.0175474639981985,
- 0.597921311855316,-0.801524639129639,-0.00694803427904844,-0.0209429021924734,-0.910529732704163,0.412912905216217,0.259142071008682,-0.962940096855164,-0.074777640402317,0.253000378608704,-0.967306971549988,0.0175474639981985,0.321630388498306,-0.946505486965179,-0.0260982066392899,0.377443820238113,-0.918069541454315,0.121179468929768,0.459241420030594,-0.867689847946167,0.190293356776237,0.267549574375153,-0.963524520397186,0.0061396905221045,0.377443820238113,-0.918069541454315,0.121179468929768,0.321630388498306,-0.946505486965179,-0.0260982066392899,0.270780622959137,-0.962581515312195,0.0107101425528526,0.0111661916598678,-0.997387707233429,0.0713657960295677,0.272663176059723,-0.955595672130585,0.111765824258327,-0.221520096063614,-0.933464765548706,0.282085686922073,-0.355271875858307,-0.846517980098724,0.396470725536346,0.0462147630751133,-0.99890547990799,0.00720870029181242,-0.420897662639618,-0.907106578350067,-0.0017005376284942,-0.394706398248672,-0.875282227993011,-0.279442369937897,-0.0293166730552912,-0.999367356300354,0.0201353188604116,-0.0293166730552912,-0.999367356300354,0.0201353188604116,-0.394706398248672,-0.875282227993011,-0.279442369937897,-0.0234636552631855,-0.983579754829407,-0.178941994905472,0.0193225778639317,-0.973312973976135,-0.22866678237915,0.195735275745392,-0.976045966148376,0.0949846431612968,0.217916205525398,-0.957707524299622,0.187906593084335,-0.590607643127441,-0.806354522705078,0.0312233660370111,-0.247075304389,-0.959109306335449,-0.138068780303001,-0.310666710138321,-0.949731171131134,0.0386896207928658,-0.598420679569244,-0.8009153008461,-0.0206711478531361,-0.0234636552631855,-0.983579754829407,-0.178941994905472,-0.782315492630005,-0.615478992462158,-0.0957510396838188,0.127556666731834,-0.825906217098236,-0.549188733100891,0.120564848184586,-0.992467522621155,-0.0217310972511768,-0.394706398248672,-0.875282227993011,-0.279442369937897,-0.281092286109924,-0.956664741039276,0.0760246217250824,-0.394706398248672,-0.875282227993011,-0.279442369937897,-0.782315492630005,-0.615478992462158,-0.0957510396838188,
- -0.0234636552631855,-0.983579754829407,-0.178941994905472,-0.41814711689949,-0.908372700214386,-0.00347374123521149,-0.355271875858307,-0.846517980098724,0.396470725536346,-0.0580761358141899,-0.994457125663757,0.0876477807760239,-0.283587902784348,-0.931953191757202,-0.225922793149948,-0.420897662639618,-0.907106578350067,-0.0017005376284942,0.349540799856186,-0.936907827854156,-0.00499190203845501,-0.70977920293808,-0.704118967056274,0.0207364372909069,0.0959476456046104,-0.986888766288757,-0.129786819219589,-0.0441280789673328,-0.998693943023682,-0.0257541574537754,-0.0441280789673328,-0.998693943023682,-0.0257541574537754,0.0111661916598678,-0.997387707233429,0.0713657960295677,0.270780622959137,-0.962581515312195,0.0107101425528526,-0.70977920293808,-0.704118967056274,0.0207364372909069,-0.41814711689949,-0.908372700214386,-0.00347374123521149,0.0534505359828472,-0.998546898365021,0.00687182182446122,-0.355271875858307,-0.846517980098724,0.396470725536346,0.155466392636299,-0.986948251724243,-0.0419913418591022,0.0997152104973793,-0.994763612747192,0.0224094223231077,0.116694137454033,-0.992715179920197,0.0299849826842546,0.560462832450867,-0.82817554473877,0.00258170580491424,0.144548341631889,-0.945282459259033,0.292483806610107,0.445692300796509,-0.891739368438721,0.0784807503223419,0.116694137454033,-0.992715179920197,0.0299849826842546,0.0997152104973793,-0.994763612747192,0.0224094223231077,0.176223948597908,-0.9660604596138,0.18887086212635,0.0274016316980124,-0.999031782150269,0.0344196632504463,0.41698545217514,-0.90867555141449,-0.0207803137600422,0.0484009236097336,-0.997862577438354,-0.0439042299985886,-0.226272135972977,-0.697818279266357,0.679595768451691,0.0418623089790344,-0.999036431312561,-0.0131857572123408,0.41698545217514,-0.90867555141449,-0.0207803137600422,0.0274016316980124,-0.999031782150269,0.0344196632504463,0.217916205525398,-0.957707524299622,0.187906593084335,-0.379258394241333,-0.925252199172974,-0.00845355167984962,-0.00753418449312449,-0.993285357952118,0.115444250404835,0.22234208881855,-0.974946737289429,0.00654692342504859,
- -0.104741513729095,-0.994473516941071,0.00719071784988046,0.195735275745392,-0.976045966148376,0.0949846431612968,-0.247075304389,-0.959109306335449,-0.138068780303001,-0.361153423786163,-0.805227637290955,-0.470294117927551,-0.310666710138321,-0.949731171131134,0.0386896207928658,-0.221520096063614,-0.933464765548706,0.282085686922073,0.0462147630751133,-0.99890547990799,0.00720870029181242,0.72366189956665,-0.689806520938873,-0.0219176411628723,-0.221520096063614,-0.933464765548706,0.282085686922073,0.72366189956665,-0.689806520938873,-0.0219176411628723,-0.569942891597748,-0.758077263832092,0.316992044448853,-0.569942891597748,-0.758077263832092,0.316992044448853,-0.0760105922818184,-0.997068822383881,-0.00873675942420959,-0.221520096063614,-0.933464765548706,0.282085686922073,0.195735275745392,-0.976045966148376,0.0949846431612968,-0.379258394241333,-0.925252199172974,-0.00845355167984962,0.217916205525398,-0.957707524299622,0.187906593084335,0.0193225778639317,-0.973312973976135,-0.22866678237915,0.22234208881855,-0.974946737289429,0.00654692342504859,0.195735275745392,-0.976045966148376,0.0949846431612968,-0.0496719405055046,-0.981380343437195,0.185540497303009,-0.0131433475762606,-0.977711856365204,0.209538951516151,0.0193225778639317,-0.973312973976135,-0.22866678237915,0.0111661916598678,-0.997387707233429,0.0713657960295677,-0.0441280789673328,-0.998693943023682,-0.0257541574537754,-0.00781787279993296,-0.967381715774536,0.253202348947525,0.540196359157562,-0.818898141384125,0.193891078233719,-0.400942504405975,-0.893019139766693,0.204357713460922,0.0534505359828472,-0.998546898365021,0.00687182182446122,-0.125409185886383,-0.912493169307709,0.389395445585251,0.155466392636299,-0.986948251724243,-0.0419913418591022,-0.41814711689949,-0.908372700214386,-0.00347374123521149,-0.125409185886383,-0.912493169307709,0.389395445585251,0.0534505359828472,-0.998546898365021,0.00687182182446122,-0.41814711689949,-0.908372700214386,-0.00347374123521149,0.270780622959137,-0.962581515312195,0.0107101425528526,-0.125409185886383,-0.912493169307709,0.389395445585251,
- 0.00246374099515378,-0.950288474559784,-0.311360895633698,0.0462147630751133,-0.99890547990799,0.00720870029181242,0.0482352450489998,-0.998780250549316,-0.0105549991130829,0.00214289408177137,-0.959899842739105,0.280335038900375,-0.0580761358141899,-0.994457125663757,0.0876477807760239,-0.00122630246914923,-0.967785835266113,-0.251772165298462,0.120564848184586,-0.992467522621155,-0.0217310972511768,-0.41814711689949,-0.908372700214386,-0.00347374123521149,0.530036807060242,-0.847591638565063,-0.0254850834608078,-0.0554543249309063,-0.99767005443573,-0.0397391207516193,0.597921311855316,-0.801524639129639,-0.00694803427904844,0.253000378608704,-0.967306971549988,0.0175474639981985,0.321630388498306,-0.946505486965179,-0.0260982066392899,-0.0312523581087589,-0.984837174415588,-0.170643225312233,0.00641266629099846,-0.999383568763733,0.0345169603824615,0.349540799856186,-0.936907827854156,-0.00499190203845501,0.182306662201881,-0.983225286006927,-0.00567805767059326,-0.0343642011284828,-0.999409317970276,-0.00026519870152697,-0.141598537564278,-0.989006340503693,-0.0426176972687244,-0.546833753585815,-0.837122678756714,-0.0140846390277147,-0.32167375087738,-0.946760892868042,0.0130307329818606,0.00124345754738897,-0.999189376831055,0.0402384400367737,0.229602158069611,-0.972831666469574,0.0296900812536478,-0.0584953874349594,-0.998257637023926,-0.00774460751563311,0.348604589700699,-0.937260270118713,0.0042299902997911,0.182306662201881,-0.983225286006927,-0.00567805767059326,-0.546833753585815,-0.837122678756714,-0.0140846390277147,-0.0344107635319233,-0.995283484458923,-0.0907009840011597,0.0432191975414753,-0.97352933883667,0.224438652396202,0.0507215559482574,-0.998367369174957,-0.0262649841606617,0.348604589700699,-0.937260270118713,0.0042299902997911,0.259142071008682,-0.962940096855164,-0.074777640402317,0.603573381900787,-0.795935332775116,0.0467557944357395,-0.00781787279993296,-0.967381715774536,0.253202348947525,-0.0390630103647709,-0.988750457763672,0.144382774829865,0.010299202054739,-0.996377885341644,0.0844101458787918,
- 0.017818920314312,-0.92807674407959,-0.371962428092957,0.00246374099515378,-0.950288474559784,-0.311360895633698,-0.335730761289597,-0.924496531486511,0.180530071258545,-0.172617852687836,-0.984344959259033,-0.0356074459850788,-0.0206074640154839,-0.999550938606262,-0.0217552538961172,0.597921311855316,-0.801524639129639,-0.00694803427904844,0.350377917289734,-0.839875221252441,-0.414541870355606,0.0111661916598678,-0.997387707233429,0.0713657960295677,0.217916205525398,-0.957707524299622,0.187906593084335,0.272663176059723,-0.955595672130585,0.111765824258327,-0.221520096063614,-0.933464765548706,0.282085686922073,-0.0760105922818184,-0.997068822383881,-0.00873675942420959,-0.0580761358141899,-0.994457125663757,0.0876477807760239,-0.355271875858307,-0.846517980098724,0.396470725536346,-0.0344107635319233,-0.995283484458923,-0.0907009840011597,0.000341020757332444,-0.995171248912811,0.0981541648507118,0.0507215559482574,-0.998367369174957,-0.0262649841606617,0.0432191975414753,-0.97352933883667,0.224438652396202,-0.82754921913147,-0.453237056732178,0.331267923116684,-0.301783293485641,-0.487145632505417,0.819521844387054,-0.32167375087738,-0.946760892868042,0.0130307329818606,0.000341020757332444,-0.995171248912811,0.0981541648507118,-0.546833753585815,-0.837122678756714,-0.0140846390277147,-0.455420255661011,-0.462181508541107,-0.760907769203186,-0.890298247337341,-0.41207754611969,-0.193807110190392,0.010299202054739,-0.996377885341644,0.0844101458787918,0.525156259536743,-0.850799381732941,0.0187455788254738,0.438737362623215,-0.378646016120911,0.814945995807648,0.643518269062042,-0.733651995658875,0.218263536691666,-0.301783293485641,-0.487145632505417,0.819521844387054,0.00124345754738897,-0.999189376831055,0.0402384400367737,-0.32167375087738,-0.946760892868042,0.0130307329818606,0.397880285978317,-0.474976927042007,-0.784912824630737,0.017818920314312,-0.92807674407959,-0.371962428092957,0.872204482555389,-0.307451456785202,-0.380437880754471,-0.0344107635319233,-0.995283484458923,-0.0907009840011597,-0.546833753585815,-0.837122678756714,-0.0140846390277147,
- -0.890298247337341,-0.41207754611969,-0.193807110190392,-0.82754921913147,-0.453237056732178,0.331267923116684,-0.513218224048615,-0.853549599647522,0.0897780954837799,-0.0344107635319233,-0.995283484458923,-0.0907009840011597,-0.890298247337341,-0.41207754611969,-0.193807110190392,0.0507215559482574,-0.998367369174957,-0.0262649841606617,0.000341020757332444,-0.995171248912811,0.0981541648507118,-0.32167375087738,-0.946760892868042,0.0130307329818606,0.348604589700699,-0.937260270118713,0.0042299902997911,0.000341020757332444,-0.995171248912811,0.0981541648507118,-0.513218224048615,-0.853549599647522,0.0897780954837799,-0.82754921913147,-0.453237056732178,0.331267923116684,0.229602158069611,-0.972831666469574,0.0296900812536478,0.00124345754738897,-0.999189376831055,0.0402384400367737,-0.301783293485641,-0.487145632505417,0.819521844387054,0.151629045605659,-0.41765695810318,0.895863354206085,0.000341020757332444,-0.995171248912811,0.0981541648507118,-0.0344107635319233,-0.995283484458923,-0.0907009840011597,-0.513218224048615,-0.853549599647522,0.0897780954837799,0.017818920314312,-0.92807674407959,-0.371962428092957,0.643518269062042,-0.733651995658875,0.218263536691666,0.872204482555389,-0.307451456785202,-0.380437880754471,0.017818920314312,-0.92807674407959,-0.371962428092957,0.010299202054739,-0.996377885341644,0.0844101458787918,0.643518269062042,-0.733651995658875,0.218263536691666,-0.141598537564278,-0.989006340503693,-0.0426176972687244,0.017818920314312,-0.92807674407959,-0.371962428092957,0.397880285978317,-0.474976927042007,-0.784912824630737,0.96493136882782,-0.0285998955368996,-0.26093989610672,-0.0109309796243906,-0.969820618629456,0.243574202060699,-0.0131612531840801,-0.999909996986389,0.00262944889254868,0.0050245001912117,-0.998212993144989,-0.0595442950725555,-0.378610730171204,-0.923319399356842,-0.0643044635653496,0.608618855476379,-0.793433129787445,0.0068644555285573,0.0412470884621143,-0.972367942333221,0.229780793190002,-0.0620567202568054,-0.997954547405243,0.0153494738042355,-0.0235711634159088,-0.999722003936768,0.000575432495679706,
- -0.533437550067902,-0.0177988708019257,0.845652163028717,-0.0109309796243906,-0.969820618629456,0.243574202060699,0.96493136882782,-0.0285998955368996,-0.26093989610672,0.905492782592773,-0.0265019796788692,0.423533499240875,0.645663619041443,-0.0332535170018673,0.762897551059723,-0.533437550067902,-0.0177988708019257,0.845652163028717,-0.0235711634159088,-0.999722003936768,0.000575432495679706,-0.0620567202568054,-0.997954547405243,0.0153494738042355,-0.0105544431135058,-0.996174693107605,0.0867448449134827,0.0589059852063656,-0.97956383228302,-0.192314401268959,0.466683357954025,-0.884422242641449,-0.00199466897174716,-0.0620567202568054,-0.997954547405243,0.0153494738042355,-0.533437550067902,-0.0177988708019257,0.845652163028717,-0.0105544431135058,-0.996174693107605,0.0867448449134827,0.645663619041443,-0.0332535170018673,0.762897551059723,-0.0109309796243906,-0.969820618629456,0.243574202060699,0.905492782592773,-0.0265019796788692,0.423533499240875,-0.0235711634159088,-0.999722003936768,0.000575432495679706,-0.0109309796243906,-0.969820618629456,0.243574202060699,0.645663619041443,-0.0332535170018673,0.762897551059723,-0.533437550067902,-0.0177988708019257,0.845652163028717,-0.998300731182098,-0.0225499980151653,-0.0537312999367714,-0.0105544431135058,-0.996174693107605,0.0867448449134827,0.0050245001912117,-0.998212993144989,-0.0595442950725555,0.0412470884621143,-0.972367942333221,0.229780793190002,0.0589059852063656,-0.97956383228302,-0.192314401268959,-0.0105544431135058,-0.996174693107605,0.0867448449134827,-0.0235711634159088,-0.999722003936768,0.000575432495679706,-0.0620567202568054,-0.997954547405243,0.0153494738042355,0.466683357954025,-0.884422242641449,-0.00199466897174716,0.177324533462524,-0.982594966888428,-0.0553450509905815,-0.0443902909755707,-0.998884677886963,0.0160944517701864,0.265327244997025,-0.963987469673157,0.0181563664227724,0.28350430727005,-0.955724358558655,-0.0788435488939285,0.213454872369766,-0.97656387090683,-0.0275688171386719,-0.0235711634159088,-0.999722003936768,0.000575432495679706,
- 0.177324533462524,-0.982594966888428,-0.0553450509905815,-0.032854825258255,-0.988020598888397,-0.150784224271774,-0.0109309796243906,-0.969820618629456,0.243574202060699,-0.0105544431135058,-0.996174693107605,0.0867448449134827,-0.998300731182098,-0.0225499980151653,-0.0537312999367714,0.0050245001912117,-0.998212993144989,-0.0595442950725555,-0.032854825258255,-0.988020598888397,-0.150784224271774,-0.0384450890123844,-0.930085062980652,0.365327090024948,-0.0131612531840801,-0.999909996986389,0.00262944889254868,-0.0109309796243906,-0.969820618629456,0.243574202060699,-0.226272135972977,-0.697818279266357,0.679595768451691,0.0274016316980124,-0.999031782150269,0.0344196632504463,-0.0384450890123844,-0.930085062980652,0.365327090024948,0.177324533462524,-0.982594966888428,-0.0553450509905815,0.466683357954025,-0.884422242641449,-0.00199466897174716,0.445692300796509,-0.891739368438721,0.0784807503223419,0.144548341631889,-0.945282459259033,0.292483806610107,0.0412470884621143,-0.972367942333221,0.229780793190002,0.608618855476379,-0.793433129787445,0.0068644555285573,-0.335730761289597,-0.924496531486511,0.180530071258545,0.702102065086365,-0.709151983261108,0.0644678696990013,-0.032854825258255,-0.988020598888397,-0.150784224271774,0.177324533462524,-0.982594966888428,-0.0553450509905815,0.144548341631889,-0.945282459259033,0.292483806610107,0.257579892873764,-0.940059244632721,0.223475232720375,-0.032854825258255,-0.988020598888397,-0.150784224271774,0.144548341631889,-0.945282459259033,0.292483806610107,-0.0131612531840801,-0.999909996986389,0.00262944889254868,-0.0384450890123844,-0.930085062980652,0.365327090024948,-0.0443902909755707,-0.998884677886963,0.0160944517701864,0.213454872369766,-0.97656387090683,-0.0275688171386719,-0.0384450890123844,-0.930085062980652,0.365327090024948,0.257579892873764,-0.940059244632721,0.223475232720375,-0.226272135972977,-0.697818279266357,0.679595768451691,0.265327244997025,-0.963987469673157,0.0181563664227724,-0.0443902909755707,-0.998884677886963,0.0160944517701864,0.0274016316980124,-0.999031782150269,0.0344196632504463,
- 0.176223948597908,-0.9660604596138,0.18887086212635,-0.0384450890123844,-0.930085062980652,0.365327090024948,-0.032854825258255,-0.988020598888397,-0.150784224271774,0.257579892873764,-0.940059244632721,0.223475232720375,0.702102065086365,-0.709151983261108,0.0644678696990013,0.623053133487701,-0.708974242210388,0.330394178628922,0.0589059852063656,-0.97956383228302,-0.192314401268959,0.0412470884621143,-0.972367942333221,0.229780793190002,0.466683357954025,-0.884422242641449,-0.00199466897174716,0.0589059852063656,-0.97956383228302,-0.192314401268959,0.445692300796509,-0.891739368438721,0.0784807503223419,-0.999398350715637,-0.00385104166343808,0.0344697199761868,-0.999430656433105,0.00658406130969524,0.0330943688750267,-0.998965740203857,0.0300103165209293,0.0341600552201271,-0.998903155326843,0.0287397056818008,0.0369675531983376,-0.999291598796844,0.00635137548670173,0.0370944477617741,-0.999224245548248,-0.0212015230208635,0.0331881679594517,-0.0131612531840801,-0.999909996986389,0.00262944889254868,0.213454872369766,-0.97656387090683,-0.0275688171386719,0.350155055522919,-0.0223082583397627,-0.936426043510437,0.96493136882782,-0.0285998955368996,-0.26093989610672,-0.998300731182098,-0.0225499980151653,-0.0537312999367714,-0.378610730171204,-0.923319399356842,-0.0643044635653496,0.0050245001912117,-0.998212993144989,-0.0595442950725555,0.362384408712387,-0.00679427850991488,-0.932003974914551,0.350155055522919,-0.0223082583397627,-0.936426043510437,0.213454872369766,-0.97656387090683,-0.0275688171386719,0.28350430727005,-0.955724358558655,-0.0788435488939285,0.00246374099515378,-0.950288474559784,-0.311360895633698,0.702102065086365,-0.709151983261108,0.0644678696990013,-0.335730761289597,-0.924496531486511,0.180530071258545,-0.00122630246914923,-0.967785835266113,-0.251772165298462,-0.00653676874935627,-0.991594195365906,0.129221394658089,-0.394706398248672,-0.875282227993011,-0.279442369937897,-0.355271875858307,-0.846517980098724,0.396470725536346,0.0482352450489998,-0.998780250549316,-0.0105549991130829,0.0462147630751133,-0.99890547990799,0.00720870029181242,
- 0.0534505359828472,-0.998546898365021,0.00687182182446122,0.560462832450867,-0.82817554473877,0.00258170580491424,0.0482352450489998,-0.998780250549316,-0.0105549991130829,-0.355271875858307,-0.846517980098724,0.396470725536346,0.155466392636299,-0.986948251724243,-0.0419913418591022,0.560462832450867,-0.82817554473877,0.00258170580491424,0.0534505359828472,-0.998546898365021,0.00687182182446122,0.0193225778639317,-0.973312973976135,-0.22866678237915,0.217916205525398,-0.957707524299622,0.187906593084335,0.0111661916598678,-0.997387707233429,0.0713657960295677,-0.104741513729095,-0.994473516941071,0.00719071784988046,0.22234208881855,-0.974946737289429,0.00654692342504859,-0.025452084839344,-0.999645233154297,0.0078522190451622,-0.590607643127441,-0.806354522705078,0.0312233660370111,-0.310666710138321,-0.949731171131134,0.0386896207928658,0.350377917289734,-0.839875221252441,-0.414541870355606,-0.0496719405055046,-0.981380343437195,0.185540497303009,-0.0441280789673328,-0.998693943023682,-0.0257541574537754,-0.0384450890123844,-0.930085062980652,0.365327090024948,0.0274016316980124,-0.999031782150269,0.0344196632504463,-0.0443902909755707,-0.998884677886963,0.0160944517701864,0.395803272724152,-0.917952120304108,0.0265254657715559,-0.0390630103647709,-0.988750457763672,0.144382774829865,-0.400942504405975,-0.893019139766693,0.204357713460922,0.540196359157562,-0.818898141384125,0.193891078233719,-0.0390630103647709,-0.988750457763672,0.144382774829865,-0.445304721593857,-0.895371675491333,0.00364544754847884,0.525156259536743,-0.850799381732941,0.0187455788254738,0.010299202054739,-0.996377885341644,0.0844101458787918,-0.00653676874935627,-0.991594195365906,0.129221394658089,-0.782315492630005,-0.615478992462158,-0.0957510396838188,-0.394706398248672,-0.875282227993011,-0.279442369937897,0.127556666731834,-0.825906217098236,-0.549188733100891,-0.782315492630005,-0.615478992462158,-0.0957510396838188,-0.00653676874935627,-0.991594195365906,0.129221394658089,0.0495805814862251,-0.998662710189819,0.014645223505795,0.127556666731834,-0.825906217098236,-0.549188733100891,
- -0.00653676874935627,-0.991594195365906,0.129221394658089,-0.0312523581087589,-0.984837174415588,-0.170643225312233,-0.0209429021924734,-0.910529732704163,0.412912905216217,-0.0206074640154839,-0.999550938606262,-0.0217552538961172,0.00641266629099846,-0.999383568763733,0.0345169603824615,0.120564848184586,-0.992467522621155,-0.0217310972511768,-0.281092286109924,-0.956664741039276,0.0760246217250824,-0.283587902784348,-0.931953191757202,-0.225922793149948,-0.281092286109924,-0.956664741039276,0.0760246217250824,-0.420897662639618,-0.907106578350067,-0.0017005376284942,-0.283587902784348,-0.931953191757202,-0.225922793149948,-0.0554543249309063,-0.99767005443573,-0.0397391207516193,-0.361153423786163,-0.805227637290955,-0.470294117927551,-0.247075304389,-0.959109306335449,-0.138068780303001,-0.025452084839344,-0.999645233154297,0.0078522190451622,0.22234208881855,-0.974946737289429,0.00654692342504859,0.0193225778639317,-0.973312973976135,-0.22866678237915,-0.0131433475762606,-0.977711856365204,0.209538951516151,-0.590607643127441,-0.806354522705078,0.0312233660370111,-0.025452084839344,-0.999645233154297,0.0078522190451622,-0.0131433475762606,-0.977711856365204,0.209538951516151,-0.379258394241333,-0.925252199172974,-0.00845355167984962,0.028357433155179,-0.999554455280304,-0.00931665953248739,0.0030192022677511,-0.999138653278351,-0.041388101875782,-0.00753418449312449,-0.993285357952118,0.115444250404835,0.0030192022677511,-0.999138653278351,-0.041388101875782,0.028357433155179,-0.999554455280304,-0.00931665953248739,0.41698545217514,-0.90867555141449,-0.0207803137600422,0.0418623089790344,-0.999036431312561,-0.0131857572123408,-0.546833753585815,-0.837122678756714,-0.0140846390277147,-0.141598537564278,-0.989006340503693,-0.0426176972687244,0.397880285978317,-0.474976927042007,-0.784912824630737,-0.455420255661011,-0.462181508541107,-0.760907769203186,0.623053133487701,-0.708974242210388,0.330394178628922,0.00214289408177137,-0.959899842739105,0.280335038900375,0.445692300796509,-0.891739368438721,0.0784807503223419,
- 0.0589059852063656,-0.97956383228302,-0.192314401268959,0.623053133487701,-0.708974242210388,0.330394178628922,0.445692300796509,-0.891739368438721,0.0784807503223419,-0.00781787279993296,-0.967381715774536,0.253202348947525,-0.400942504405975,-0.893019139766693,0.204357713460922,-0.0390630103647709,-0.988750457763672,0.144382774829865,-0.00781787279993296,-0.967381715774536,0.253202348947525,0.377443820238113,-0.918069541454315,0.121179468929768,0.540196359157562,-0.818898141384125,0.193891078233719,-0.304511457681656,-0.909178614616394,-0.284019351005554,-0.299777448177338,-0.937666058540344,0.175828918814659,-0.286513239145279,-0.902501106262207,-0.321561306715012,-0.319526642560959,-0.94684112071991,0.0373425558209419,-0.830114781856537,-0.521356582641602,-0.197729095816612,-0.78693950176239,-0.616566181182861,-0.0239235181361437,-0.968926608562469,-0.247315123677254,-0.00406430894508958,-0.882097363471985,-0.451635628938675,0.133901312947273,0.474503189325333,-0.0364564023911953,-0.879498541355133,0.0322369746863842,-0.995339095592499,-0.0908894613385201,0.029520945623517,-0.99956339597702,0.00125646451488137,0.990918278694153,-0.0357397571206093,-0.129628837108612,-0.633571684360504,-0.772407531738281,0.0444266311824322,-0.0227843075990677,-0.964504778385162,0.263080954551697,-0.0317689813673496,-0.948377132415771,-0.315549612045288,-0.986541330814362,0.156575322151184,0.047120463103056,-0.876578152179718,-0.452826946973801,-0.162967801094055,-0.882097363471985,-0.451635628938675,0.133901312947273,-0.836486220359802,0.173695951700211,-0.519731342792511,-0.836545944213867,-0.529844224452972,-0.13948430120945,-0.0136757548898458,-0.0564433708786964,0.998312175273895,-0.888933181762695,0.286008894443512,0.357766270637512,-0.426083475351334,-0.904499530792236,0.0182593706995249,-0.206502959132195,-0.978445947170258,0.000392979098251089,-0.438404470682144,-0.89877724647522,-0.000972058856859803,0.125941127538681,-0.992036521434784,0.00154573225881904,-0.808408737182617,-0.509331583976746,0.295053869485855,-0.844651103019714,-0.511182069778442,-0.158926233649254,
- -0.848181128501892,-0.514228284358978,0.12711426615715,-0.849244832992554,-0.525010585784912,-0.056098498404026,-0.836545944213867,-0.529844224452972,-0.13948430120945,-0.408223450183868,-0.822600960731506,0.395830005407333,-0.848181128501892,-0.514228284358978,0.12711426615715,-0.844651103019714,-0.511182069778442,-0.158926233649254,-0.368333637714386,-0.929671823978424,0.00636530155315995,-0.588870108127594,-0.807989239692688,0.0196312963962555,-0.209501951932907,-0.977791428565979,-0.0057297102175653,-0.756470143795013,-0.653877913951874,-0.0140262888744473,-0.233974009752274,-0.972160756587982,0.0126311238855124,-0.284471392631531,-0.958594918251038,-0.0131088411435485,0.436703205108643,-0.831023991107941,0.344513416290283,0.28212958574295,-0.712985932826996,-0.641914308071136,-0.633571684360504,-0.772407531738281,0.0444266311824322,-0.326867252588272,-0.909797489643097,0.255785465240479,-0.349145114421844,-0.928715467453003,-0.124840959906578,-0.592941522598267,-0.787151157855988,0.169745028018951,-0.583542227745056,-0.809174358844757,-0.0686676502227783,-0.426336258649826,-0.904368817806244,-0.0188210885971785,-0.706064641475677,-0.707606971263886,0.0276610311120749,-0.610423445701599,-0.755144655704498,0.239039361476898,-0.611243188381195,-0.758487522602081,0.226005107164383,-0.808408737182617,-0.509331583976746,0.295053869485855,-0.787675082683563,-0.61599338054657,0.0109594417735934,-0.82955276966095,-0.557517886161804,-0.0318749770522118,-0.844651103019714,-0.511182069778442,-0.158926233649254,0.436703205108643,-0.831023991107941,0.344513416290283,0.174764975905418,-0.984306573867798,-0.0244477931410074,0.0214613154530525,-0.980920255184174,-0.193222299218178,-0.410121738910675,-0.906152129173279,0.103384457528591,-0.492195397615433,-0.870286345481873,-0.0185818839818239,-0.177540838718414,-0.922015607357025,0.344044357538223,-0.349145114421844,-0.928715467453003,-0.124840959906578,-0.438404470682144,-0.89877724647522,-0.000972058856859803,-0.460601270198822,-0.885632157325745,-0.0591795779764652,-0.240910977125168,-0.970227956771851,-0.0248951315879822,
- -0.612607657909393,-0.790303766727448,0.011471969075501,-0.583542227745056,-0.809174358844757,-0.0686676502227783,-0.592941522598267,-0.787151157855988,0.169745028018951,0.999746918678284,0.0181937273591757,0.013236690312624,0.997736275196075,0.0642210021615028,0.0199504494667053,0.998616814613342,0.0512534938752651,0.0117302518337965,-0.942628860473633,-0.333821058273315,-0.00378074217587709,-0.410121738910675,-0.906152129173279,0.103384457528591,-0.654440820217133,-0.756101131439209,-0.00427799625322223,0.0562360212206841,-0.998093008995056,-0.0254526361823082,-0.299777448177338,-0.937666058540344,0.175828918814659,-0.304511457681656,-0.909178614616394,-0.284019351005554,-0.465363442897797,-0.883998870849609,-0.0445293076336384,-0.426336258649826,-0.904368817806244,-0.0188210885971785,-0.583542227745056,-0.809174358844757,-0.0686676502227783,0.0562360212206841,-0.998093008995056,-0.0254526361823082,-0.756470143795013,-0.653877913951874,-0.0140262888744473,-0.209501951932907,-0.977791428565979,-0.0057297102175653,-0.0610178224742413,-0.985049426555634,-0.161103844642639,0.125941127538681,-0.992036521434784,0.00154573225881904,0.28212958574295,-0.712985932826996,-0.641914308071136,-0.0610178224742413,-0.985049426555634,-0.161103844642639,0.999497413635254,-0.0295310653746128,0.0115304617211223,0.999205946922302,-0.0387447588145733,0.00929255969822407,0.999746918678284,0.0181937273591757,0.013236690312624,0.998616814613342,0.0512534938752651,0.0117302518337965,-0.0639959573745728,-0.997844934463501,-0.0144938509911299,-0.345019072294235,-0.938041150569916,-0.0322585664689541,-0.251270800828934,-0.0460544116795063,0.966820538043976,0.436703205108643,-0.831023991107941,0.344513416290283,-0.621753692626953,-0.779929578304291,-0.0716391503810883,0.28212958574295,-0.712985932826996,-0.641914308071136,-0.0610178224742413,-0.985049426555634,-0.161103844642639,0.28212958574295,-0.712985932826996,-0.641914308071136,-0.756470143795013,-0.653877913951874,-0.0140262888744473,-0.286513239145279,-0.902501106262207,-0.321561306715012,
- -0.206502959132195,-0.978445947170258,0.000392979098251089,-0.426083475351334,-0.904499530792236,0.0182593706995249,-0.319526642560959,-0.94684112071991,0.0373425558209419,-0.286513239145279,-0.902501106262207,-0.321561306715012,-0.631726443767548,-0.773744821548462,0.0473358258605003,-0.460076004266739,-0.881870269775391,-0.103126190602779,-0.623188197612762,-0.77687793970108,0.0899841114878654,-0.624551296234131,-0.780210852622986,-0.0347369983792305,-0.599502086639404,-0.792250335216522,0.113739356398582,-0.571915328502655,-0.763846337795258,-0.299084633588791,-0.145048961043358,-0.989420831203461,-0.00268520903773606,-0.155886992812157,-0.987734496593475,0.00893985200673342,-0.247030571103096,-0.963975369930267,0.0986272320151329,-0.968926608562469,-0.247315123677254,-0.00406430894508958,-0.930656909942627,-0.309505164623261,0.195151388645172,-0.882097363471985,-0.451635628938675,0.133901312947273,0.0986349135637283,-0.993785202503204,-0.0515957064926624,-0.426083475351334,-0.904499530792236,0.0182593706995249,-0.154300346970558,-0.986323595046997,-0.0579409152269363,-0.0227843075990677,-0.964504778385162,0.263080954551697,-0.633571684360504,-0.772407531738281,0.0444266311824322,-0.618549287319183,-0.686610758304596,0.382050424814224,-0.460601270198822,-0.885632157325745,-0.0591795779764652,-0.247030571103096,-0.963975369930267,0.0986272320151329,-0.155886992812157,-0.987734496593475,0.00893985200673342,0.0986349135637283,-0.993785202503204,-0.0515957064926624,-0.209501951932907,-0.977791428565979,-0.0057297102175653,-0.571915328502655,-0.763846337795258,-0.299084633588791,-0.145048961043358,-0.989420831203461,-0.00268520903773606,-0.0568258464336395,-0.970475733280182,0.234409436583519,-0.028672780841589,-0.92011159658432,-0.390605360269547,0.0159786194562912,-0.999262452125549,-0.0349157005548477,-0.145048961043358,-0.989420831203461,-0.00268520903773606,-0.247030571103096,-0.963975369930267,0.0986272320151329,-0.0568258464336395,-0.970475733280182,0.234409436583519,-0.247030571103096,-0.963975369930267,0.0986272320151329,
- -0.286513239145279,-0.902501106262207,-0.321561306715012,-0.460076004266739,-0.881870269775391,-0.103126190602779,-0.967013359069824,-0.245758667588234,0.0669907927513123,-0.787675082683563,-0.61599338054657,0.0109594417735934,-0.808408737182617,-0.509331583976746,0.295053869485855,-0.618549287319183,-0.686610758304596,0.382050424814224,-0.633571684360504,-0.772407531738281,0.0444266311824322,-0.349145114421844,-0.928715467453003,-0.124840959906578,0.0214613154530525,-0.980920255184174,-0.193222299218178,0.174764975905418,-0.984306573867798,-0.0244477931410074,-0.258574903011322,-0.964564681053162,-0.0524769835174084,0.00983603484928608,-0.997625529766083,-0.0681658983230591,-0.299777448177338,-0.937666058540344,0.175828918814659,0.0562360212206841,-0.998093008995056,-0.0254526361823082,0.00983603484928608,-0.997625529766083,-0.0681658983230591,-0.598710536956787,-0.800891220569611,0.010909928008914,-0.111064948141575,-0.983087956905365,0.14561140537262,-0.631726443767548,-0.773744821548462,0.0473358258605003,-0.274234116077423,-0.886650860309601,0.372351944446564,-0.502231955528259,-0.864553153514862,-0.0176324862986803,-0.624551296234131,-0.780210852622986,-0.0347369983792305,-0.177540838718414,-0.922015607357025,0.344044357538223,-0.654440820217133,-0.756101131439209,-0.00427799625322223,-0.410121738910675,-0.906152129173279,0.103384457528591,-0.876578152179718,-0.452826946973801,-0.162967801094055,-0.98024594783783,-0.19733253121376,-0.0133306598290801,-0.413131058216095,-0.910491585731506,-0.0181020144373178,-0.843291223049164,-0.536739110946655,0.02776506729424,-0.0731224417686462,-0.997172474861145,-0.0173254385590553,0.474503189325333,-0.0364564023911953,-0.879498541355133,-0.819802582263947,-0.0548498518764973,-0.570013463497162,-0.631726443767548,-0.773744821548462,0.0473358258605003,-0.299777448177338,-0.937666058540344,0.175828918814659,0.00983603484928608,-0.997625529766083,-0.0681658983230591,-0.286513239145279,-0.902501106262207,-0.321561306715012,-0.299777448177338,-0.937666058540344,0.175828918814659,
- -0.631726443767548,-0.773744821548462,0.0473358258605003,-0.706064641475677,-0.707606971263886,0.0276610311120749,-0.611243188381195,-0.758487522602081,0.226005107164383,0.436703205108643,-0.831023991107941,0.344513416290283,-0.695695817470551,-0.582983493804932,0.419687390327454,-0.368333637714386,-0.929671823978424,0.00636530155315995,-0.408472985029221,-0.910209715366364,0.0683230385184288,-0.349145114421844,-0.928715467453003,-0.124840959906578,-0.460601270198822,-0.885632157325745,-0.0591795779764652,-0.618549287319183,-0.686610758304596,0.382050424814224,-0.460601270198822,-0.885632157325745,-0.0591795779764652,-0.0227843075990677,-0.964504778385162,0.263080954551697,-0.618549287319183,-0.686610758304596,0.382050424814224,0.436703205108643,-0.831023991107941,0.344513416290283,0.0214613154530525,-0.980920255184174,-0.193222299218178,-0.706064641475677,-0.707606971263886,0.0276610311120749,-0.942628860473633,-0.333821058273315,-0.00378074217587709,-0.654440820217133,-0.756101131439209,-0.00427799625322223,-0.952709019184113,-0.303261876106262,-0.0194393955171108,-0.942167460918427,-0.330220580101013,-0.0572251342236996,-0.835792183876038,-0.548986196517944,-0.00808766949921846,-0.155886992812157,-0.987734496593475,0.00893985200673342,-0.0227843075990677,-0.964504778385162,0.263080954551697,-0.460601270198822,-0.885632157325745,-0.0591795779764652,-0.808408737182617,-0.509331583976746,0.295053869485855,-0.888933181762695,0.286008894443512,0.357766270637512,-0.967013359069824,-0.245758667588234,0.0669907927513123,-0.836545944213867,-0.529844224452972,-0.13948430120945,-0.888933181762695,0.286008894443512,0.357766270637512,-0.808408737182617,-0.509331583976746,0.295053869485855,-0.502231955528259,-0.864553153514862,-0.0176324862986803,-0.294657707214355,-0.955477476119995,-0.0154780941084027,-0.599502086639404,-0.792250335216522,0.113739356398582,-0.624551296234131,-0.780210852622986,-0.0347369983792305,-0.844651103019714,-0.511182069778442,-0.158926233649254,-0.82955276966095,-0.557517886161804,-0.0318749770522118,
- -0.695695817470551,-0.582983493804932,0.419687390327454,-0.408472985029221,-0.910209715366364,0.0683230385184288,-0.408472985029221,-0.910209715366364,0.0683230385184288,-0.408223450183868,-0.822600960731506,0.395830005407333,-0.844651103019714,-0.511182069778442,-0.158926233649254,-0.233974009752274,-0.972160756587982,0.0126311238855124,0.28212958574295,-0.712985932826996,-0.641914308071136,0.125941127538681,-0.992036521434784,0.00154573225881904,-0.633571684360504,-0.772407531738281,0.0444266311824322,-0.592941522598267,-0.787151157855988,0.169745028018951,-0.326867252588272,-0.909797489643097,0.255785465240479,0.0217165946960449,-0.993424117565155,-0.112415060400963,0.100264444947243,-0.992830634117126,-0.0650733709335327,-0.0524702221155167,-0.994306564331055,-0.0927426964044571,0.0312079880386591,-0.970127522945404,-0.240580052137375,-0.206502959132195,-0.978445947170258,0.000392979098251089,-0.286513239145279,-0.902501106262207,-0.321561306715012,-0.247030571103096,-0.963975369930267,0.0986272320151329,-0.284471392631531,-0.958594918251038,-0.0131088411435485,-0.326867252588272,-0.909797489643097,0.255785465240479,-0.426336258649826,-0.904368817806244,-0.0188210885971785,0.174764975905418,-0.984306573867798,-0.0244477931410074,-0.326867252588272,-0.909797489643097,0.255785465240479,-0.592941522598267,-0.787151157855988,0.169745028018951,-0.426336258649826,-0.904368817806244,-0.0188210885971785,-0.438404470682144,-0.89877724647522,-0.000972058856859803,-0.247030571103096,-0.963975369930267,0.0986272320151329,-0.460601270198822,-0.885632157325745,-0.0591795779764652,-0.206502959132195,-0.978445947170258,0.000392979098251089,-0.247030571103096,-0.963975369930267,0.0986272320151329,-0.438404470682144,-0.89877724647522,-0.000972058856859803,-0.345019072294235,-0.938041150569916,-0.0322585664689541,-0.891278922557831,-0.0704388469457626,0.447951227426529,-0.251270800828934,-0.0460544116795063,0.966820538043976,-0.891278922557831,-0.0704388469457626,0.447951227426529,0.00342288427054882,-0.993549883365631,0.113344267010689,
- -0.439071714878082,-0.890979766845703,0.115633323788643,-0.368333637714386,-0.929671823978424,0.00636530155315995,-0.604584813117981,-0.7927365899086,0.0777556970715523,-0.408472985029221,-0.910209715366364,0.0683230385184288,-0.47987362742424,-0.869081199169159,0.120079897344112,-0.516502976417542,-0.838739037513733,0.172457531094551,-0.843291223049164,-0.536739110946655,0.02776506729424,-0.345019072294235,-0.938041150569916,-0.0322585664689541,0.00342288427054882,-0.993549883365631,0.113344267010689,-0.891278922557831,-0.0704388469457626,0.447951227426529,-0.426083475351334,-0.904499530792236,0.0182593706995249,0.0986349135637283,-0.993785202503204,-0.0515957064926624,-0.319526642560959,-0.94684112071991,0.0373425558209419,-0.319526642560959,-0.94684112071991,0.0373425558209419,0.0986349135637283,-0.993785202503204,-0.0515957064926624,-0.304511457681656,-0.909178614616394,-0.284019351005554,-0.587187170982361,-0.778800547122955,-0.22063747048378,-0.410121738910675,-0.906152129173279,0.103384457528591,-0.408223450183868,-0.822600960731506,0.395830005407333,-0.706064641475677,-0.707606971263886,0.0276610311120749,0.0214613154530525,-0.980920255184174,-0.193222299218178,-0.276174306869507,-0.960953533649445,-0.0172042045742273,-0.251270800828934,-0.0460544116795063,0.966820538043976,0.135944962501526,-0.0243907999247313,0.99041610956192,-0.0639959573745728,-0.997844934463501,-0.0144938509911299,-0.465363442897797,-0.883998870849609,-0.0445293076336384,-0.304511457681656,-0.909178614616394,-0.284019351005554,-0.0380907468497753,-0.94212794303894,-0.333082854747772,-0.184300050139427,-0.976903557777405,-0.108133256435394,-0.209501951932907,-0.977791428565979,-0.0057297102175653,0.0986349135637283,-0.993785202503204,-0.0515957064926624,-0.154300346970558,-0.986323595046997,-0.0579409152269363,0.990918278694153,-0.0357397571206093,-0.129628837108612,0.029520945623517,-0.99956339597702,0.00125646451488137,0.299211084842682,-0.953683078289032,-0.0310041159391403,-0.0731224417686462,-0.997172474861145,-0.0173254385590553,
- -0.819802582263947,-0.0548498518764973,-0.570013463497162,-0.01265037804842,-0.990727007389069,-0.135276913642883,0.0986349135637283,-0.993785202503204,-0.0515957064926624,-0.0380907468497753,-0.94212794303894,-0.333082854747772,-0.304511457681656,-0.909178614616394,-0.284019351005554,-0.819802582263947,-0.0548498518764973,-0.570013463497162,-0.891278922557831,-0.0704388469457626,0.447951227426529,-0.439071714878082,-0.890979766845703,0.115633323788643,-0.819802582263947,-0.0548498518764973,-0.570013463497162,-0.439071714878082,-0.890979766845703,0.115633323788643,-0.01265037804842,-0.990727007389069,-0.135276913642883,-0.588870108127594,-0.807989239692688,0.0196312963962555,-0.516502976417542,-0.838739037513733,0.172457531094551,-0.623188197612762,-0.77687793970108,0.0899841114878654,-0.0610178224742413,-0.985049426555634,-0.161103844642639,-0.426083475351334,-0.904499530792236,0.0182593706995249,0.125941127538681,-0.992036521434784,0.00154573225881904,-0.756470143795013,-0.653877913951874,-0.0140262888744473,0.28212958574295,-0.712985932826996,-0.641914308071136,-0.621753692626953,-0.779929578304291,-0.0716391503810883,-0.621753692626953,-0.779929578304291,-0.0716391503810883,-0.604584813117981,-0.7927365899086,0.0777556970715523,-0.368333637714386,-0.929671823978424,0.00636530155315995,-0.756470143795013,-0.653877913951874,-0.0140262888744473,-0.588870108127594,-0.807989239692688,0.0196312963962555,-0.579657375812531,-0.814443349838257,0.0260666664689779,-0.516502976417542,-0.838739037513733,0.172457531094551,-0.82955276966095,-0.557517886161804,-0.0318749770522118,-0.787675082683563,-0.61599338054657,0.0109594417735934,-0.968926608562469,-0.247315123677254,-0.00406430894508958,-0.78693950176239,-0.616566181182861,-0.0239235181361437,-0.967013359069824,-0.245758667588234,0.0669907927513123,-0.930656909942627,-0.309505164623261,0.195151388645172,-0.968926608562469,-0.247315123677254,-0.00406430894508958,-0.787675082683563,-0.61599338054657,0.0109594417735934,-0.916927397251129,-0.384306311607361,-0.107484370470047,
- -0.9657022356987,-0.0982569083571434,0.240343257784843,-0.942167460918427,-0.330220580101013,-0.0572251342236996,-0.952709019184113,-0.303261876106262,-0.0194393955171108,-0.0136757548898458,-0.0564433708786964,0.998312175273895,-0.836545944213867,-0.529844224452972,-0.13948430120945,-0.942167460918427,-0.330220580101013,-0.0572251342236996,-0.9657022356987,-0.0982569083571434,0.240343257784843,-0.408223450183868,-0.822600960731506,0.395830005407333,-0.942628860473633,-0.333821058273315,-0.00378074217587709,-0.848181128501892,-0.514228284358978,0.12711426615715,-0.443055629730225,-0.896468758583069,0.00674418406561017,-0.492195397615433,-0.870286345481873,-0.0185818839818239,-0.410121738910675,-0.906152129173279,0.103384457528591,0.0214613154530525,-0.980920255184174,-0.193222299218178,-0.0917495563626289,-0.988998353481293,-0.116035744547844,-0.276174306869507,-0.960953533649445,-0.0172042045742273,-0.47987362742424,-0.869081199169159,0.120079897344112,-0.843291223049164,-0.536739110946655,0.02776506729424,-0.413131058216095,-0.910491585731506,-0.0181020144373178,-0.47987362742424,-0.869081199169159,0.120079897344112,-0.413131058216095,-0.910491585731506,-0.0181020144373178,-0.274234116077423,-0.886650860309601,0.372351944446564,-0.274234116077423,-0.886650860309601,0.372351944446564,-0.624551296234131,-0.780210852622986,-0.0347369983792305,-0.47987362742424,-0.869081199169159,0.120079897344112,-0.0731224417686462,-0.997172474861145,-0.0173254385590553,0.0798519030213356,-0.996693670749664,-0.0150103494524956,0.474503189325333,-0.0364564023911953,-0.879498541355133,0.0322369746863842,-0.995339095592499,-0.0908894613385201,0.474503189325333,-0.0364564023911953,-0.879498541355133,0.0798519030213356,-0.996693670749664,-0.0150103494524956,-0.410121738910675,-0.906152129173279,0.103384457528591,-0.942628860473633,-0.333821058273315,-0.00378074217587709,-0.408223450183868,-0.822600960731506,0.395830005407333,-0.587187170982361,-0.778800547122955,-0.22063747048378,-0.443055629730225,-0.896468758583069,0.00674418406561017,
- -0.410121738910675,-0.906152129173279,0.103384457528591,-0.611243188381195,-0.758487522602081,0.226005107164383,-0.610423445701599,-0.755144655704498,0.239039361476898,-0.587187170982361,-0.778800547122955,-0.22063747048378,-0.604584813117981,-0.7927365899086,0.0777556970715523,-0.621753692626953,-0.779929578304291,-0.0716391503810883,-0.0568258464336395,-0.970475733280182,0.234409436583519,-0.460076004266739,-0.881870269775391,-0.103126190602779,-0.613649368286133,-0.774441838264465,0.153864160180092,-0.579657375812531,-0.814443349838257,0.0260666664689779,-0.695695817470551,-0.582983493804932,0.419687390327454,-0.82955276966095,-0.557517886161804,-0.0318749770522118,-0.588870108127594,-0.807989239692688,0.0196312963962555,-0.695695817470551,-0.582983493804932,0.419687390327454,-0.579657375812531,-0.814443349838257,0.0260666664689779,-0.588870108127594,-0.807989239692688,0.0196312963962555,-0.368333637714386,-0.929671823978424,0.00636530155315995,-0.695695817470551,-0.582983493804932,0.419687390327454,-0.876578152179718,-0.452826946973801,-0.162967801094055,-0.843291223049164,-0.536739110946655,0.02776506729424,-0.830114781856537,-0.521356582641602,-0.197729095816612,-0.882097363471985,-0.451635628938675,0.133901312947273,-0.623188197612762,-0.77687793970108,0.0899841114878654,-0.571915328502655,-0.763846337795258,-0.299084633588791,-0.209501951932907,-0.977791428565979,-0.0057297102175653,-0.588870108127594,-0.807989239692688,0.0196312963962555,0.0562360212206841,-0.998093008995056,-0.0254526361823082,-0.258574903011322,-0.964564681053162,-0.0524769835174084,0.174764975905418,-0.984306573867798,-0.0244477931410074,-0.426336258649826,-0.904368817806244,-0.0188210885971785,-0.438404470682144,-0.89877724647522,-0.000972058856859803,-0.349145114421844,-0.928715467453003,-0.124840959906578,-0.233974009752274,-0.972160756587982,0.0126311238855124,0.125941127538681,-0.992036521434784,0.00154573225881904,-0.155886992812157,-0.987734496593475,0.00893985200673342,-0.145048961043358,-0.989420831203461,-0.00268520903773606,
- 0.0159786194562912,-0.999262452125549,-0.0349157005548477,-0.229839399456978,-0.972458124160767,-0.0387177914381027,0.00342288427054882,-0.993549883365631,0.113344267010689,-0.01265037804842,-0.990727007389069,-0.135276913642883,-0.439071714878082,-0.890979766845703,0.115633323788643,-0.295404255390167,-0.955228805541992,0.0165607761591673,-0.0178825370967388,-0.999100983142853,0.0384394079446793,0.196790218353271,-0.980067729949951,0.0272180140018463,-0.612607657909393,-0.790303766727448,0.011471969075501,-0.240910977125168,-0.970227956771851,-0.0248951315879822,-0.155886992812157,-0.987734496593475,0.00893985200673342,-0.229839399456978,-0.972458124160767,-0.0387177914381027,-0.0392583198845387,-0.994115233421326,-0.100964143872261,-0.0227843075990677,-0.964504778385162,0.263080954551697,-0.0317689813673496,-0.948377132415771,-0.315549612045288,-0.240910977125168,-0.970227956771851,-0.0248951315879822,-0.592941522598267,-0.787151157855988,0.169745028018951,-0.633571684360504,-0.772407531738281,0.0444266311824322,-0.0568258464336395,-0.970475733280182,0.234409436583519,-0.111064948141575,-0.983087956905365,0.14561140537262,-0.0392725393176079,-0.99532687664032,0.0882163643836975,-0.028672780841589,-0.92011159658432,-0.390605360269547,-0.876578152179718,-0.452826946973801,-0.162967801094055,-0.918353855609894,-0.380916863679886,-0.107371062040329,-0.98024594783783,-0.19733253121376,-0.0133306598290801,-0.284471392631531,-0.958594918251038,-0.0131088411435485,0.174764975905418,-0.984306573867798,-0.0244477931410074,0.436703205108643,-0.831023991107941,0.344513416290283,-0.604584813117981,-0.7927365899086,0.0777556970715523,-0.408223450183868,-0.822600960731506,0.395830005407333,-0.408472985029221,-0.910209715366364,0.0683230385184288,-0.47987362742424,-0.869081199169159,0.120079897344112,-0.624551296234131,-0.780210852622986,-0.0347369983792305,-0.623188197612762,-0.77687793970108,0.0899841114878654,-0.516502976417542,-0.838739037513733,0.172457531094551,-0.0392583198845387,-0.994115233421326,-0.100964143872261,-0.0427086688578129,-0.993810415267944,0.102550528943539,
- -0.0317689813673496,-0.948377132415771,-0.315549612045288,-0.0227843075990677,-0.964504778385162,0.263080954551697,-0.228826239705086,-0.945787847042084,0.230486303567886,-0.149107024073601,-0.94070166349411,0.304708749055862,-0.295404255390167,-0.955228805541992,0.0165607761591673,-0.0427086688578129,-0.993810415267944,0.102550528943539,-0.152315512299538,-0.986621677875519,0.0581183917820454,-0.181045144796371,-0.964932262897491,0.190074622631073,-0.579184770584106,-0.814687132835388,-0.0288083702325821,-0.0209519937634468,-0.999484002590179,-0.0243452619761229,-0.0670948848128319,-0.978607356548309,0.194488883018494,-0.149107024073601,-0.94070166349411,0.304708749055862,-0.0524702221155167,-0.994306564331055,-0.0927426964044571,-0.192231118679047,-0.979774296283722,-0.0555830523371696,-0.228826239705086,-0.945787847042084,0.230486303567886,-0.35463073849678,-0.934388399124146,-0.0339908301830292,0.0312079880386591,-0.970127522945404,-0.240580052137375,-0.229839399456978,-0.972458124160767,-0.0387177914381027,0.173661261796951,-0.845976591110229,-0.504148423671722,-0.35463073849678,-0.934388399124146,-0.0339908301830292,-0.0392725393176079,-0.99532687664032,0.0882163643836975,0.509551763534546,-0.8603156208992,0.0146277919411659,-0.181045144796371,-0.964932262897491,0.190074622631073,-0.152315512299538,-0.986621677875519,0.0581183917820454,-0.149107024073601,-0.94070166349411,0.304708749055862,-0.0178825370967388,-0.999100983142853,0.0384394079446793,-0.295404255390167,-0.955228805541992,0.0165607761591673,-0.220736786723137,-0.854852139949799,-0.469577640295029,-0.028672780841589,-0.92011159658432,-0.390605360269547,0.388262659311295,-0.874732077121735,0.289992958307266,-0.0392583198845387,-0.994115233421326,-0.100964143872261,-0.229839399456978,-0.972458124160767,-0.0387177914381027,-0.35463073849678,-0.934388399124146,-0.0339908301830292,-0.228826239705086,-0.945787847042084,0.230486303567886,-0.21203650534153,-0.972176969051361,0.0995609909296036,-0.0392583198845387,-0.994115233421326,-0.100964143872261,-0.35463073849678,-0.934388399124146,-0.0339908301830292,
- -0.0317689813673496,-0.948377132415771,-0.315549612045288,-0.0427086688578129,-0.993810415267944,0.102550528943539,-0.295404255390167,-0.955228805541992,0.0165607761591673,-0.240910977125168,-0.970227956771851,-0.0248951315879822,0.0312079880386591,-0.970127522945404,-0.240580052137375,-0.0524702221155167,-0.994306564331055,-0.0927426964044571,-0.149107024073601,-0.94070166349411,0.304708749055862,-0.228826239705086,-0.945787847042084,0.230486303567886,0.299211084842682,-0.953683078289032,-0.0310041159391403,0.029520945623517,-0.99956339597702,0.00125646451488137,-0.0209519937634468,-0.999484002590179,-0.0243452619761229,-0.579184770584106,-0.814687132835388,-0.0288083702325821,-0.345019072294235,-0.938041150569916,-0.0322585664689541,-0.0639959573745728,-0.997844934463501,-0.0144938509911299,-0.192231118679047,-0.979774296283722,-0.0555830523371696,-0.0524702221155167,-0.994306564331055,-0.0927426964044571,0.100264444947243,-0.992830634117126,-0.0650733709335327,-0.0731224417686462,-0.997172474861145,-0.0173254385590553,-0.01265037804842,-0.990727007389069,-0.135276913642883,0.0114260083064437,-0.99614018201828,0.0870295763015747,0.142435669898987,-0.989665567874908,0.0165571048855782,-0.01265037804842,-0.990727007389069,-0.135276913642883,0.00342288427054882,-0.993549883365631,0.113344267010689,0.0217165946960449,-0.993424117565155,-0.112415060400963,0.0312079880386591,-0.970127522945404,-0.240580052137375,0.0114260083064437,-0.99614018201828,0.0870295763015747,0.029520945623517,-0.99956339597702,0.00125646451488137,0.0322369746863842,-0.995339095592499,-0.0908894613385201,0.00121220434084535,-0.950994551181793,0.309205383062363,-0.0209519937634468,-0.999484002590179,-0.0243452619761229,0.0322369746863842,-0.995339095592499,-0.0908894613385201,0.0798519030213356,-0.996693670749664,-0.0150103494524956,-0.0937625840306282,-0.995406329631805,0.0193612854927778,0.00121220434084535,-0.950994551181793,0.309205383062363,-0.0937625840306282,-0.995406329631805,0.0193612854927778,0.142435669898987,-0.989665567874908,0.0165571048855782,
- -0.220736786723137,-0.854852139949799,-0.469577640295029,-0.220736786723137,-0.854852139949799,-0.469577640295029,0.388262659311295,-0.874732077121735,0.289992958307266,0.00121220434084535,-0.950994551181793,0.309205383062363,0.0217165946960449,-0.993424117565155,-0.112415060400963,0.00342288427054882,-0.993549883365631,0.113344267010689,-0.345019072294235,-0.938041150569916,-0.0322585664689541,0.100264444947243,-0.992830634117126,-0.0650733709335327,-0.0427086688578129,-0.993810415267944,0.102550528943539,-0.21203650534153,-0.972176969051361,0.0995609909296036,-0.228826239705086,-0.945787847042084,0.230486303567886,0.196790218353271,-0.980067729949951,0.0272180140018463,-0.0178825370967388,-0.999100983142853,0.0384394079446793,-0.149107024073601,-0.94070166349411,0.304708749055862,-0.0670948848128319,-0.978607356548309,0.194488883018494,-0.0427086688578129,-0.993810415267944,0.102550528943539,-0.0392583198845387,-0.994115233421326,-0.100964143872261,-0.21203650534153,-0.972176969051361,0.0995609909296036,-0.220736786723137,-0.854852139949799,-0.469577640295029,0.00121220434084535,-0.950994551181793,0.309205383062363,-0.0937625840306282,-0.995406329631805,0.0193612854927778,-0.028672780841589,-0.92011159658432,-0.390605360269547,-0.152315512299538,-0.986621677875519,0.0581183917820454,0.388262659311295,-0.874732077121735,0.289992958307266,-0.35463073849678,-0.934388399124146,-0.0339908301830292,0.173661261796951,-0.845976591110229,-0.504148423671722,0.142435669898987,-0.989665567874908,0.0165571048855782,0.0798519030213356,-0.996693670749664,-0.0150103494524956,-0.0731224417686462,-0.997172474861145,-0.0173254385590553,0.142435669898987,-0.989665567874908,0.0165571048855782,-0.0937625840306282,-0.995406329631805,0.0193612854927778,-0.028672780841589,-0.92011159658432,-0.390605360269547,-0.0392725393176079,-0.99532687664032,0.0882163643836975,-0.152315512299538,-0.986621677875519,0.0581183917820454,-0.152315512299538,-0.986621677875519,0.0581183917820454,-0.0209519937634468,-0.999484002590179,-0.0243452619761229,0.00121220434084535,-0.950994551181793,0.309205383062363,
- -0.152315512299538,-0.986621677875519,0.0581183917820454,0.00121220434084535,-0.950994551181793,0.309205383062363,0.388262659311295,-0.874732077121735,0.289992958307266,0.0159786194562912,-0.999262452125549,-0.0349157005548477,-0.028672780841589,-0.92011159658432,-0.390605360269547,-0.220736786723137,-0.854852139949799,-0.469577640295029,0.0312079880386591,-0.970127522945404,-0.240580052137375,-0.35463073849678,-0.934388399124146,-0.0339908301830292,0.0114260083064437,-0.99614018201828,0.0870295763015747,-0.03214006498456,-0.982314586639404,-0.184458538889885,-0.951773643493652,-0.153785660862923,0.265474885702133,-0.987380921840668,-0.15836201608181,-0.000562317087315023,-0.982163369655609,-0.177764177322388,-0.0612782128155231,-0.967268049716949,0.245784297585487,-0.0631084144115448,-0.887219309806824,-0.460613608360291,0.026020098477602,-0.878523051738739,-0.160264790058136,0.450013846158981,-0.998737335205078,-0.049487043172121,0.00864883325994015,-0.995011568069458,-0.0996134057641029,0.00539928814396262,-0.0153968194499612,0.517904281616211,0.855300068855286,-0.951773643493652,-0.153785660862923,0.265474885702133,-0.03214006498456,-0.982314586639404,-0.184458538889885,-0.0230093989521265,-0.789293050765991,0.613585412502289,-0.0286543797701597,-0.659858047962189,0.750843822956085,-0.0153968194499612,0.517904281616211,0.855300068855286,-0.995011568069458,-0.0996134057641029,0.00539928814396262,-0.998737335205078,-0.049487043172121,0.00864883325994015,-0.982390165328979,-0.165627017617226,0.0864715650677681,-0.952772438526154,-0.181733384728432,-0.243305742740631,-0.995128571987152,-0.0947037860751152,-0.0273922327905893,-0.998737335205078,-0.049487043172121,0.00864883325994015,-0.0153968194499612,0.517904281616211,0.855300068855286,-0.982390165328979,-0.165627017617226,0.0864715650677681,-0.0286543797701597,-0.659858047962189,0.750843822956085,-0.951773643493652,-0.153785660862923,0.265474885702133,-0.0230093989521265,-0.789293050765991,0.613585412502289,-0.995011568069458,-0.0996134057641029,0.00539928814396262,
- -0.951773643493652,-0.153785660862923,0.265474885702133,-0.0286543797701597,-0.659858047962189,0.750843822956085,-0.0153968194499612,0.517904281616211,0.855300068855286,-0.021131468936801,0.997798562049866,-0.0628592967987061,-0.982390165328979,-0.165627017617226,0.0864715650677681,-0.982163369655609,-0.177764177322388,-0.0612782128155231,-0.878523051738739,-0.160264790058136,0.450013846158981,-0.952772438526154,-0.181733384728432,-0.243305742740631,-0.982390165328979,-0.165627017617226,0.0864715650677681,-0.995011568069458,-0.0996134057641029,0.00539928814396262,-0.998737335205078,-0.049487043172121,0.00864883325994015,-0.995128571987152,-0.0947037860751152,-0.0273922327905893,-0.927075505256653,0.374250739812851,0.0216162838041782,-0.998710691928864,0.0507613830268383,-0.000448967184638605,-0.984806656837463,-0.170016959309578,0.0353588722646236,-0.929111421108246,-0.361761927604675,-0.0766829326748848,-0.950392842292786,-0.310169249773026,-0.0234208665788174,-0.995011568069458,-0.0996134057641029,0.00539928814396262,-0.927075505256653,0.374250739812851,0.0216162838041782,-0.992030262947083,-0.076986275613308,-0.099745087325573,-0.951773643493652,-0.153785660862923,0.265474885702133,-0.982390165328979,-0.165627017617226,0.0864715650677681,-0.021131468936801,0.997798562049866,-0.0628592967987061,-0.982163369655609,-0.177764177322388,-0.0612782128155231,-0.992030262947083,-0.076986275613308,-0.099745087325573,-0.941384613513947,-0.113993734121323,0.317490786314011,-0.987380921840668,-0.15836201608181,-0.000562317087315023,-0.951773643493652,-0.153785660862923,0.265474885702133,-0.0136757548898458,-0.0564433708786964,0.998312175273895,-0.9657022356987,-0.0982569083571434,0.240343257784843,-0.941384613513947,-0.113993734121323,0.317490786314011,-0.927075505256653,0.374250739812851,0.0216162838041782,-0.995128571987152,-0.0947037860751152,-0.0273922327905893,-0.930656909942627,-0.309505164623261,0.195151388645172,-0.967013359069824,-0.245758667588234,0.0669907927513123,-0.878523051738739,-0.160264790058136,0.450013846158981,
- -0.887219309806824,-0.460613608360291,0.026020098477602,-0.918353855609894,-0.380916863679886,-0.107371062040329,-0.986541330814362,0.156575322151184,0.047120463103056,-0.992030262947083,-0.076986275613308,-0.099745087325573,-0.927075505256653,0.374250739812851,0.0216162838041782,-0.967013359069824,-0.245758667588234,0.0669907927513123,-0.888933181762695,0.286008894443512,0.357766270637512,-0.992030262947083,-0.076986275613308,-0.099745087325573,-0.967013359069824,-0.245758667588234,0.0669907927513123,-0.987380921840668,-0.15836201608181,-0.000562317087315023,-0.941384613513947,-0.113993734121323,0.317490786314011,-0.998710691928864,0.0507613830268383,-0.000448967184638605,-0.950392842292786,-0.310169249773026,-0.0234208665788174,-0.941384613513947,-0.113993734121323,0.317490786314011,-0.888933181762695,0.286008894443512,0.357766270637512,-0.0136757548898458,-0.0564433708786964,0.998312175273895,-0.984806656837463,-0.170016959309578,0.0353588722646236,-0.998710691928864,0.0507613830268383,-0.000448967184638605,-0.9657022356987,-0.0982569083571434,0.240343257784843,-0.916927397251129,-0.384306311607361,-0.107484370470047,-0.941384613513947,-0.113993734121323,0.317490786314011,-0.992030262947083,-0.076986275613308,-0.099745087325573,-0.888933181762695,0.286008894443512,0.357766270637512,-0.986541330814362,0.156575322151184,0.047120463103056,-0.836486220359802,0.173695951700211,-0.519731342792511,-0.952772438526154,-0.181733384728432,-0.243305742740631,-0.878523051738739,-0.160264790058136,0.450013846158981,-0.995128571987152,-0.0947037860751152,-0.0273922327905893,-0.952772438526154,-0.181733384728432,-0.243305742740631,-0.930656909942627,-0.309505164623261,0.195151388645172,0.000962167687248439,0.999412894248962,0.0342479459941387,0.0131901539862156,0.999311447143555,0.0346804298460484,0.0335082858800888,0.998821616172791,0.0351107753813267,0.0316644683480263,0.998892366886139,0.0348078683018684,0.0128592560067773,0.999336659908295,0.0340747311711311,-0.0194194763898849,0.999179720878601,0.0355358012020588,-0.987380921840668,-0.15836201608181,-0.000562317087315023,
- -0.950392842292786,-0.310169249773026,-0.0234208665788174,-0.0261356066912413,-0.337792724370956,-0.940857589244843,-0.03214006498456,-0.982314586639404,-0.184458538889885,-0.021131468936801,0.997798562049866,-0.0628592967987061,-0.967268049716949,0.245784297585487,-0.0631084144115448,-0.982163369655609,-0.177764177322388,-0.0612782128155231,-0.00957243796437979,-0.348775565624237,-0.937157392501831,-0.0261356066912413,-0.337792724370956,-0.940857589244843,-0.950392842292786,-0.310169249773026,-0.0234208665788174,-0.929111421108246,-0.361761927604675,-0.0766829326748848,-0.876578152179718,-0.452826946973801,-0.162967801094055,-0.986541330814362,0.156575322151184,0.047120463103056,-0.918353855609894,-0.380916863679886,-0.107371062040329,-0.571915328502655,-0.763846337795258,-0.299084633588791,-0.599502086639404,-0.792250335216522,0.113739356398582,0.0986349135637283,-0.993785202503204,-0.0515957064926624,-0.516502976417542,-0.838739037513733,0.172457531094551,-0.830114781856537,-0.521356582641602,-0.197729095816612,-0.843291223049164,-0.536739110946655,0.02776506729424,-0.579657375812531,-0.814443349838257,0.0260666664689779,-0.78693950176239,-0.616566181182861,-0.0239235181361437,-0.830114781856537,-0.521356582641602,-0.197729095816612,-0.516502976417542,-0.838739037513733,0.172457531094551,-0.82955276966095,-0.557517886161804,-0.0318749770522118,-0.78693950176239,-0.616566181182861,-0.0239235181361437,-0.579657375812531,-0.814443349838257,0.0260666664689779,-0.35463073849678,-0.934388399124146,-0.0339908301830292,0.142435669898987,-0.989665567874908,0.0165571048855782,0.0114260083064437,-0.99614018201828,0.0870295763015747,-0.587187170982361,-0.778800547122955,-0.22063747048378,-0.408223450183868,-0.822600960731506,0.395830005407333,-0.604584813117981,-0.7927365899086,0.0777556970715523,-0.492195397615433,-0.870286345481873,-0.0185818839818239,-0.443055629730225,-0.896468758583069,0.00674418406561017,-0.649884343147278,-0.759962201118469,0.0103842010721564,-0.706064641475677,-0.707606971263886,0.0276610311120749,
- -0.276174306869507,-0.960953533649445,-0.0172042045742273,0.436703205108643,-0.831023991107941,0.344513416290283,-0.611243188381195,-0.758487522602081,0.226005107164383,-0.621753692626953,-0.779929578304291,-0.0716391503810883,-0.941384613513947,-0.113993734121323,0.317490786314011,-0.9657022356987,-0.0982569083571434,0.240343257784843,-0.998710691928864,0.0507613830268383,-0.000448967184638605,-0.631726443767548,-0.773744821548462,0.0473358258605003,-0.111064948141575,-0.983087956905365,0.14561140537262,-0.613649368286133,-0.774441838264465,0.153864160180092,-0.460076004266739,-0.881870269775391,-0.103126190602779,-0.111064948141575,-0.983087956905365,0.14561140537262,-0.598710536956787,-0.800891220569611,0.010909928008914,0.509551763534546,-0.8603156208992,0.0146277919411659,-0.0392725393176079,-0.99532687664032,0.0882163643836975,-0.599502086639404,-0.792250335216522,0.113739356398582,-0.0380907468497753,-0.94212794303894,-0.333082854747772,0.0986349135637283,-0.993785202503204,-0.0515957064926624,-0.184300050139427,-0.976903557777405,-0.108133256435394,-0.0380907468497753,-0.94212794303894,-0.333082854747772,-0.599502086639404,-0.792250335216522,0.113739356398582,-0.294657707214355,-0.955477476119995,-0.0154780941084027,-0.184300050139427,-0.976903557777405,-0.108133256435394,-0.599502086639404,-0.792250335216522,0.113739356398582,-0.349145114421844,-0.928715467453003,-0.124840959906578,-0.326867252588272,-0.909797489643097,0.255785465240479,-0.284471392631531,-0.958594918251038,-0.0131088411435485,-0.233974009752274,-0.972160756587982,0.0126311238855124,-0.209501951932907,-0.977791428565979,-0.0057297102175653,-0.154300346970558,-0.986323595046997,-0.0579409152269363,-0.0610178224742413,-0.985049426555634,-0.161103844642639,-0.154300346970558,-0.986323595046997,-0.0579409152269363,-0.426083475351334,-0.904499530792236,0.0182593706995249,-0.0610178224742413,-0.985049426555634,-0.161103844642639,-0.258574903011322,-0.964564681053162,-0.0524769835174084,-0.0917495563626289,-0.988998353481293,-0.116035744547844,0.0214613154530525,-0.980920255184174,-0.193222299218178,
- -0.649884343147278,-0.759962201118469,0.0103842010721564,-0.443055629730225,-0.896468758583069,0.00674418406561017,-0.587187170982361,-0.778800547122955,-0.22063747048378,-0.610423445701599,-0.755144655704498,0.239039361476898,-0.706064641475677,-0.707606971263886,0.0276610311120749,-0.649884343147278,-0.759962201118469,0.0103842010721564,-0.610423445701599,-0.755144655704498,0.239039361476898,-0.942628860473633,-0.333821058273315,-0.00378074217587709,-0.835792183876038,-0.548986196517944,-0.00808766949921846,-0.849244832992554,-0.525010585784912,-0.056098498404026,-0.848181128501892,-0.514228284358978,0.12711426615715,-0.849244832992554,-0.525010585784912,-0.056098498404026,-0.835792183876038,-0.548986196517944,-0.00808766949921846,-0.942167460918427,-0.330220580101013,-0.0572251342236996,-0.836545944213867,-0.529844224452972,-0.13948430120945,-0.229839399456978,-0.972458124160767,-0.0387177914381027,0.0159786194562912,-0.999262452125549,-0.0349157005548477,-0.220736786723137,-0.854852139949799,-0.469577640295029,0.173661261796951,-0.845976591110229,-0.504148423671722,0.142435669898987,-0.989665567874908,0.0165571048855782,0.173661261796951,-0.845976591110229,-0.504148423671722,-0.220736786723137,-0.854852139949799,-0.469577640295029,-0.836486220359802,0.173695951700211,-0.519731342792511,-0.882097363471985,-0.451635628938675,0.133901312947273,-0.930656909942627,-0.309505164623261,0.195151388645172,-0.952772438526154,-0.181733384728432,-0.243305742740631,-0.836486220359802,0.173695951700211,-0.519731342792511,-0.930656909942627,-0.309505164623261,0.195151388645172,-0.0568258464336395,-0.970475733280182,0.234409436583519,-0.613649368286133,-0.774441838264465,0.153864160180092,-0.111064948141575,-0.983087956905365,0.14561140537262,-0.0568258464336395,-0.970475733280182,0.234409436583519,-0.247030571103096,-0.963975369930267,0.0986272320151329,-0.460076004266739,-0.881870269775391,-0.103126190602779,-0.571631133556366,0.782144904136658,-0.247966304421425,-0.622326970100403,0.756502091884613,0.201031446456909,-0.591854512691498,0.738057971000671,-0.324004054069519,
- -0.584019243717194,0.811224222183228,0.0289307571947575,-0.0602560043334961,0.998133838176727,-0.00989428535103798,-0.693378150463104,0.720443069934845,0.0137282963842154,-0.107567310333252,0.993755102157593,0.0296679530292749,-0.0142194535583258,0.95942485332489,0.281605303287506,-0.0467582307755947,-0.470704823732376,-0.881050825119019,-0.9753697514534,0.204890534281731,-0.0816930830478668,-0.977940857410431,0.208797127008438,0.00596080301329494,-0.047328382730484,-0.99152672290802,-0.120974406599998,-0.999023497104645,-0.0312549620866776,0.0312297530472279,-0.855703055858612,0.46983078122139,0.216866970062256,-0.879968762397766,0.474394351243973,-0.0245959926396608,-0.702098488807678,0.709155678749084,0.0644668489694595,-0.0144040156155825,0.949810266494751,-0.312494844198227,-0.0142194535583258,0.95942485332489,0.281605303287506,-0.623050034046173,0.708978652954102,0.330390453338623,-0.0544195212423801,0.99848085641861,-0.00862458441406488,0.226267084479332,0.697807908058167,0.679608166217804,-0.257578641176224,0.940059781074524,0.223474442958832,-0.145463794469833,0.989319920539856,-0.0092966528609395,-0.816326439380646,0.577489912509918,0.0107940025627613,-0.892897427082062,0.449565976858139,-0.0249878708273172,-0.822394967079163,0.568917155265808,6.36427794233896e-005,-0.0115303844213486,0.951944530010223,0.306053280830383,-0.00651915045455098,0.986800849437714,-0.161807119846344,-0.00366657203994691,0.992219865322113,0.124444425106049,-0.0134688718244433,0.998801410198212,-0.0470576547086239,-0.0544195212423801,0.99848085641861,-0.00862458441406488,-0.367996037006378,0.884503364562988,0.286762326955795,-0.00366657203994691,0.992219865322113,0.124444425106049,-0.00651915045455098,0.986800849437714,-0.161807119846344,-0.504156947135925,0.863548874855042,0.0104506043717265,0.21183255314827,0.97728157043457,-0.00690794223919511,-0.429004371166229,0.903064846992493,-0.0207173023372889,0.416537016630173,0.90904837846756,0.0113139487802982,-0.609975218772888,0.79174143075943,0.0327993221580982,-0.586645662784576,0.809546411037445,-0.0219417363405228,
- -0.351204335689545,0.291500687599182,-0.889765620231628,-0.54237949848175,0.818504989147186,-0.18940444290638,-0.999023497104645,-0.0312549620866776,0.0312297530472279,-0.5268874168396,0.729922890663147,0.435433328151703,-0.569839835166931,0.800247192382813,-0.186780527234077,-0.922490417957306,0.376296073198318,-0.0860970467329025,-0.886756539344788,0.46131619811058,-0.0291585363447666,-0.834885597229004,0.550195932388306,0.0158315859735012,0.19825091958046,0.979669809341431,0.0307158045470715,-0.256075382232666,0.935579001903534,0.243140250444412,-0.220401883125305,0.958728969097137,0.179615512490273,-0.0115303844213486,0.951944530010223,0.306053280830383,-0.133505314588547,0.990830659866333,0.0207600779831409,-0.163309991359711,0.985772490501404,-0.0397814474999905,-0.00651915045455098,0.986800849437714,-0.161807119846344,-0.351204335689545,0.291500687599182,-0.889765620231628,-0.927564144134521,0.373311191797256,-0.016236063092947,-0.48088076710701,0.867797315120697,-0.125225365161896,-0.346806704998016,0.931555986404419,0.109217718243599,-0.148881584405899,0.988794386386871,0.0109553979709744,-0.0934343039989471,0.941528737545013,0.323718428611755,-0.569839835166931,0.800247192382813,-0.186780527234077,-0.892897427082062,0.449565976858139,-0.0249878708273172,-0.967100858688354,0.120168082416058,0.224222406744957,-0.974372625350952,0.224939078092575,-0.000533974380232394,-0.792358458042145,0.609974980354309,-0.00993260554969311,-0.886756539344788,0.46131619811058,-0.0291585363447666,-0.922490417957306,0.376296073198318,-0.0860970467329025,0.0134512232616544,-0.99982875585556,0.0127065908163786,0.0426754802465439,-0.99891072511673,0.0188734754920006,0.039888147264719,-0.99913215637207,0.0120009016245604,0.281694680452347,0.959490478038788,-0.00512530328705907,-0.346806704998016,0.931555986404419,0.109217718243599,-0.424447029829025,0.905383765697479,-0.011175200343132,-0.95522278547287,0.294098228216171,-0.0324919484555721,-0.622326970100403,0.756502091884613,0.201031446456909,-0.571631133556366,0.782144904136658,-0.247966304421425,
- 0.0601369850337505,0.998129367828369,-0.0110119264572859,-0.834885597229004,0.550195932388306,0.0158315859735012,-0.886756539344788,0.46131619811058,-0.0291585363447666,-0.95522278547287,0.294098228216171,-0.0324919484555721,0.416537016630173,0.90904837846756,0.0113139487802982,-0.429004371166229,0.903064846992493,-0.0207173023372889,-0.166341751813889,0.952605426311493,-0.25470232963562,-0.822394967079163,0.568917155265808,6.36427794233896e-005,-0.54237949848175,0.818504989147186,-0.18940444290638,-0.166341751813889,0.952605426311493,-0.25470232963562,-0.0411831699311733,-0.999085664749146,0.011478628963232,-0.0505588911473751,-0.998686730861664,0.00828636717051268,0.0134512232616544,-0.99982875585556,0.0127065908163786,0.039888147264719,-0.99913215637207,0.0120009016245604,-0.994195282459259,0.105535306036472,-0.0209298208355904,-0.896581649780273,0.441872417926788,-0.0298343300819397,-0.0402914434671402,0.181334599852562,0.982595801353455,-0.351204335689545,0.291500687599182,-0.889765620231628,-0.227265581488609,0.973508298397064,-0.0251357946544886,-0.54237949848175,0.818504989147186,-0.18940444290638,-0.166341751813889,0.952605426311493,-0.25470232963562,-0.54237949848175,0.818504989147186,-0.18940444290638,0.416537016630173,0.90904837846756,0.0113139487802982,-0.591854512691498,0.738057971000671,-0.324004054069519,-0.816326439380646,0.577489912509918,0.0107940025627613,-0.145463794469833,0.989319920539856,-0.0092966528609395,-0.584019243717194,0.811224222183228,0.0289307571947575,-0.591854512691498,0.738057971000671,-0.324004054069519,-0.927732944488525,0.372291088104248,0.0266650337725878,-0.969399452209473,0.222616225481033,0.103472925722599,-0.22222712635994,0.969923257827759,0.0993177369236946,-0.207137852907181,0.978254318237305,-0.0105964047834277,-0.271430134773254,0.954780578613281,0.121324643492699,-0.2676902115345,0.922498941421509,-0.278096497058868,-0.812631249427795,0.582778036594391,0.000364728359272704,-0.920903921127319,0.389762729406357,-0.0045824428088963,-0.938964664936066,0.323049753904343,0.118255361914635,
- -0.107567310333252,0.993755102157593,0.0296679530292749,-0.445690661668777,0.891740620136261,0.0784759074449539,-0.0142194535583258,0.95942485332489,0.281605303287506,-0.0848613083362579,0.968578040599823,-0.233784630894661,-0.145463794469833,0.989319920539856,-0.0092966528609395,-0.172699049115181,0.982788264751434,0.0655909478664398,-0.855703055858612,0.46983078122139,0.216866970062256,-0.999023497104645,-0.0312549620866776,0.0312297530472279,-0.96159154176712,-0.0653831735253334,-0.266583383083344,-0.967100858688354,0.120168082416058,0.224222406744957,-0.938964664936066,0.323049753904343,0.118255361914635,-0.920903921127319,0.389762729406357,-0.0045824428088963,-0.0848613083362579,0.968578040599823,-0.233784630894661,-0.429004371166229,0.903064846992493,-0.0207173023372889,-0.2676902115345,0.922498941421509,-0.278096497058868,-0.812631249427795,0.582778036594391,0.000364728359272704,-0.816678047180176,0.523109495639801,0.24370764195919,-0.789540231227875,0.462051123380661,-0.403899639844894,-0.803193509578705,0.593023002147675,-0.0566018931567669,-0.812631249427795,0.582778036594391,0.000364728359272704,-0.938964664936066,0.323049753904343,0.118255361914635,-0.816678047180176,0.523109495639801,0.24370764195919,-0.938964664936066,0.323049753904343,0.118255361914635,-0.591854512691498,0.738057971000671,-0.324004054069519,-0.969399452209473,0.222616225481033,0.103472925722599,-0.14454847574234,0.945283591747284,0.292479991912842,-0.133505314588547,0.990830659866333,0.0207600779831409,-0.0115303844213486,0.951944530010223,0.306053280830383,-0.96159154176712,-0.0653831735253334,-0.266583383083344,-0.999023497104645,-0.0312549620866776,0.0312297530472279,-0.569839835166931,0.800247192382813,-0.186780527234077,-0.48088076710701,0.867797315120697,-0.125225365161896,-0.927564144134521,0.373311191797256,-0.016236063092947,-0.509562492370605,0.859548270702362,-0.0390236750245094,-0.987458348274231,0.156183704733849,-0.0230832416564226,-0.622326970100403,0.756502091884613,0.201031446456909,-0.95522278547287,0.294098228216171,-0.0324919484555721,
- -0.987458348274231,0.156183704733849,-0.0230832416564226,-0.485171735286713,0.874379992485046,0.008250892162323,-0.812938630580902,0.563679695129395,0.146273523569107,-0.927732944488525,0.372291088104248,0.0266650337725878,0.403997302055359,0.866270363330841,0.293873608112335,0.288456559181213,0.956352710723877,0.0467150174081326,-0.207137852907181,0.978254318237305,-0.0105964047834277,-0.0934343039989471,0.941528737545013,0.323718428611755,-0.424447029829025,0.905383765697479,-0.011175200343132,-0.346806704998016,0.931555986404419,0.109217718243599,-0.0144040156155825,0.949810266494751,-0.312494844198227,0.162486121058464,0.986066341400146,-0.0356542468070984,-0.747415959835052,0.663857758045197,-0.0257353503257036,-0.058555856347084,0.998263418674469,0.00642684428021312,-0.974048793315887,0.225538149476051,-0.0190098099410534,-0.0467582307755947,-0.470704823732376,-0.881050825119019,-0.0427949652075768,0.823409736156464,-0.565831303596497,-0.927732944488525,0.372291088104248,0.0266650337725878,-0.622326970100403,0.756502091884613,0.201031446456909,-0.987458348274231,0.156183704733849,-0.0230832416564226,-0.591854512691498,0.738057971000671,-0.324004054069519,-0.622326970100403,0.756502091884613,0.201031446456909,-0.927732944488525,0.372291088104248,0.0266650337725878,0.19825091958046,0.979669809341431,0.0307158045470715,-0.220401883125305,0.958728969097137,0.179615512490273,-0.351204335689545,0.291500687599182,-0.889765620231628,0.163884952664375,0.876995444297791,0.451686441898346,-0.504156947135925,0.863548874855042,0.0104506043717265,-0.436203449964523,0.894049763679504,0.101987741887569,-0.569839835166931,0.800247192382813,-0.186780527234077,-0.967100858688354,0.120168082416058,0.224222406744957,-0.96159154176712,-0.0653831735253334,-0.266583383083344,-0.967100858688354,0.120168082416058,0.224222406744957,-0.855703055858612,0.46983078122139,0.216866970062256,-0.96159154176712,-0.0653831735253334,-0.266583383083344,0.332576870918274,-0.279094368219376,0.90083235502243,0.738913595676422,0.669391989707947,-0.0769482254981995,
- 0.696658492088318,0.717164874076843,0.0184830036014318,0.281694680452347,0.959490478038788,-0.00512530328705907,-0.424447029829025,0.905383765697479,-0.011175200343132,-0.0512246862053871,0.997703731060028,-0.0443084873259068,-0.416837483644485,0.908732652664185,-0.0212477426975966,-0.0512764230370522,0.998648345470428,-0.00850604940205812,-0.920903921127319,0.389762729406357,-0.0045824428088963,-0.855703055858612,0.46983078122139,0.216866970062256,-0.967100858688354,0.120168082416058,0.224222406744957,-0.0115303844213486,0.951944530010223,0.306053280830383,-0.257578641176224,0.940059781074524,0.223474442958832,-0.14454847574234,0.945283591747284,0.292479991912842,-0.0544195212423801,0.99848085641861,-0.00862458441406488,-0.257578641176224,0.940059781074524,0.223474442958832,-0.0115303844213486,0.951944530010223,0.306053280830383,0.288456559181213,0.956352710723877,0.0467150174081326,-0.367446035146713,0.92996883392334,0.0118895778432488,-0.271430134773254,0.954780578613281,0.121324643492699,-0.207137852907181,0.978254318237305,-0.0105964047834277,-0.00651915045455098,0.986800849437714,-0.161807119846344,-0.163309991359711,0.985772490501404,-0.0397814474999905,0.163884952664375,0.876995444297791,0.451686441898346,-0.436203449964523,0.894049763679504,0.101987741887569,-0.436203449964523,0.894049763679504,0.101987741887569,-0.367996037006378,0.884503364562988,0.286762326955795,-0.00651915045455098,0.986800849437714,-0.161807119846344,-0.609975218772888,0.79174143075943,0.0327993221580982,-0.54237949848175,0.818504989147186,-0.18940444290638,-0.822394967079163,0.568917155265808,6.36427794233896e-005,-0.999023497104645,-0.0312549620866776,0.0312297530472279,-0.922490417957306,0.376296073198318,-0.0860970467329025,-0.5268874168396,0.729922890663147,0.435433328151703,-0.973887741565704,0.181790888309479,-0.13599519431591,-0.991779446601868,0.110907800495625,-0.0638189613819122,-0.602056562900543,0.79359358549118,-0.0879617854952812,-0.949759840965271,0.176417306065559,-0.258520990610123,-0.816326439380646,0.577489912509918,0.0107940025627613,
- -0.591854512691498,0.738057971000671,-0.324004054069519,-0.938964664936066,0.323049753904343,0.118255361914635,-0.586645662784576,0.809546411037445,-0.0219417363405228,-0.5268874168396,0.729922890663147,0.435433328151703,-0.834885597229004,0.550195932388306,0.0158315859735012,-0.927564144134521,0.373311191797256,-0.016236063092947,-0.5268874168396,0.729922890663147,0.435433328151703,-0.922490417957306,0.376296073198318,-0.0860970467329025,-0.834885597229004,0.550195932388306,0.0158315859735012,-0.892897427082062,0.449565976858139,-0.0249878708273172,-0.938964664936066,0.323049753904343,0.118255361914635,-0.967100858688354,0.120168082416058,0.224222406744957,-0.816326439380646,0.577489912509918,0.0107940025627613,-0.938964664936066,0.323049753904343,0.118255361914635,-0.892897427082062,0.449565976858139,-0.0249878708273172,-0.896581649780273,0.441872417926788,-0.0298343300819397,-0.0488951466977596,0.893269062042236,0.446855217218399,-0.0402914434671402,0.181334599852562,0.982595801353455,-0.0488951466977596,0.893269062042236,0.446855217218399,-0.972812294960022,0.20057974755764,0.115775354206562,-0.837251484394073,0.528784871101379,0.13927099108696,-0.504156947135925,0.863548874855042,0.0104506043717265,-0.287503868341446,0.954327881336212,0.0812395662069321,-0.436203449964523,0.894049763679504,0.101987741887569,0.0890008807182312,0.972956895828247,0.213151678442955,0.236884370446205,0.969186425209045,-0.0675524994730949,-0.058555856347084,0.998263418674469,0.00642684428021312,-0.896581649780273,0.441872417926788,-0.0298343300819397,-0.972812294960022,0.20057974755764,0.115775354206562,-0.0488951466977596,0.893269062042236,0.446855217218399,-0.145463794469833,0.989319920539856,-0.0092966528609395,-0.0848613083362579,0.968578040599823,-0.233784630894661,-0.584019243717194,0.811224222183228,0.0289307571947575,-0.584019243717194,0.811224222183228,0.0289307571947575,-0.0848613083362579,0.968578040599823,-0.233784630894661,-0.571631133556366,0.782144904136658,-0.247966304421425,-0.287375450134277,0.92935699224472,-0.231756299734116,
- -0.346806704998016,0.931555986404419,0.109217718243599,-0.367996037006378,0.884503364562988,0.286762326955795,0.19825091958046,0.979669809341431,0.0307158045470715,-0.48088076710701,0.867797315120697,-0.125225365161896,-0.045359056442976,0.998167991638184,0.0400411821901798,-0.0402914434671402,0.181334599852562,0.982595801353455,-0.0291268937289715,-0.14202843606472,0.989433944225311,-0.994195282459259,0.105535306036472,-0.0209298208355904,0.0601369850337505,0.998129367828369,-0.0110119264572859,-0.571631133556366,0.782144904136658,-0.247966304421425,0.361433833837509,0.932296991348267,-0.0137088187038898,-0.40926605463028,0.775289714336395,-0.481068879365921,-0.429004371166229,0.903064846992493,-0.0207173023372889,-0.0848613083362579,0.968578040599823,-0.233784630894661,-0.172699049115181,0.982788264751434,0.0655909478664398,-0.047328382730484,-0.99152672290802,-0.120974406599998,-0.977940857410431,0.208797127008438,0.00596080301329494,-0.994154095649719,-0.10240139067173,-0.034228291362524,-0.974048793315887,0.225538149476051,-0.0190098099410534,-0.0427949652075768,0.823409736156464,-0.565831303596497,-0.965432226657867,0.217257708311081,-0.14401251077652,-0.0848613083362579,0.968578040599823,-0.233784630894661,0.361433833837509,0.932296991348267,-0.0137088187038898,-0.571631133556366,0.782144904136658,-0.247966304421425,-0.0427949652075768,0.823409736156464,-0.565831303596497,-0.0488951466977596,0.893269062042236,0.446855217218399,-0.837251484394073,0.528784871101379,0.13927099108696,-0.0427949652075768,0.823409736156464,-0.565831303596497,-0.837251484394073,0.528784871101379,0.13927099108696,-0.965432226657867,0.217257708311081,-0.14401251077652,0.21183255314827,0.97728157043457,-0.00690794223919511,0.236884370446205,0.969186425209045,-0.0675524994730949,-0.22222712635994,0.969923257827759,0.0993177369236946,-0.166341751813889,0.952605426311493,-0.25470232963562,-0.145463794469833,0.989319920539856,-0.0092966528609395,-0.822394967079163,0.568917155265808,6.36427794233896e-005,0.416537016630173,0.90904837846756,0.0113139487802982,
- -0.54237949848175,0.818504989147186,-0.18940444290638,-0.227265581488609,0.973508298397064,-0.0251357946544886,-0.227265581488609,0.973508298397064,-0.0251357946544886,-0.287503868341446,0.954327881336212,0.0812395662069321,-0.504156947135925,0.863548874855042,0.0104506043717265,0.416537016630173,0.90904837846756,0.0113139487802982,0.21183255314827,0.97728157043457,-0.00690794223919511,-0.154680833220482,0.987952768802643,0.00481206504628062,0.236884370446205,0.969186425209045,-0.0675524994730949,-0.163309991359711,0.985772490501404,-0.0397814474999905,-0.133505314588547,0.990830659866333,0.0207600779831409,-0.107567310333252,0.993755102157593,0.0296679530292749,-0.693378150463104,0.720443069934845,0.0137282963842154,-0.14454847574234,0.945283591747284,0.292479991912842,-0.445690661668777,0.891740620136261,0.0784759074449539,-0.107567310333252,0.993755102157593,0.0296679530292749,-0.133505314588547,0.990830659866333,0.0207600779831409,-0.176227644085884,0.96606057882309,0.188867375254631,-0.0274012219160795,0.999031960964203,0.0344148129224777,-0.416837483644485,0.908732652664185,-0.0212477426975966,-0.0512246862053871,0.997703731060028,-0.0443084873259068,0.226267084479332,0.697807908058167,0.679608166217804,-0.0544195212423801,0.99848085641861,-0.00862458441406488,-0.416837483644485,0.908732652664185,-0.0212477426975966,-0.0274012219160795,0.999031960964203,0.0344148129224777,-0.367996037006378,0.884503364562988,0.286762326955795,0.281694680452347,0.959490478038788,-0.00512530328705907,-0.00366657203994691,0.992219865322113,0.124444425106049,-0.438328415155411,0.898805320262909,0.00413776934146881,-0.148881584405899,0.988794386386871,0.0109553979709744,-0.346806704998016,0.931555986404419,0.109217718243599,-0.48088076710701,0.867797315120697,-0.125225365161896,-0.00555941928178072,0.917764008045197,-0.397087067365646,-0.045359056442976,0.998167991638184,0.0400411821901798,0.0890008807182312,0.972956895828247,0.213151678442955,-0.058555856347084,0.998263418674469,0.00642684428021312,-0.747415959835052,0.663857758045197,-0.0257353503257036,
- 0.0890008807182312,0.972956895828247,0.213151678442955,-0.747415959835052,0.663857758045197,-0.0257353503257036,0.403997302055359,0.866270363330841,0.293873608112335,0.403997302055359,0.866270363330841,0.293873608112335,-0.207137852907181,0.978254318237305,-0.0105964047834277,0.0890008807182312,0.972956895828247,0.213151678442955,-0.974048793315887,0.225538149476051,-0.0190098099410534,-0.996946930885315,0.0774339288473129,-0.0100438185036182,-0.0467582307755947,-0.470704823732376,-0.881050825119019,-0.9753697514534,0.204890534281731,-0.0816930830478668,-0.0467582307755947,-0.470704823732376,-0.881050825119019,-0.996946930885315,0.0774339288473129,-0.0100438185036182,-0.346806704998016,0.931555986404419,0.109217718243599,0.281694680452347,0.959490478038788,-0.00512530328705907,-0.367996037006378,0.884503364562988,0.286762326955795,-0.287375450134277,0.92935699224472,-0.231756299734116,-0.438328415155411,0.898805320262909,0.00413776934146881,-0.346806704998016,0.931555986404419,0.109217718243599,-0.220401883125305,0.958728969097137,0.179615512490273,-0.256075382232666,0.935579001903534,0.243140250444412,-0.287375450134277,0.92935699224472,-0.231756299734116,-0.287503868341446,0.954327881336212,0.0812395662069321,-0.227265581488609,0.973508298397064,-0.0251357946544886,-0.816678047180176,0.523109495639801,0.24370764195919,-0.969399452209473,0.222616225481033,0.103472925722599,-0.471768766641617,0.862397074699402,0.183590963482857,-0.154680833220482,0.987952768802643,0.00481206504628062,0.163884952664375,0.876995444297791,0.451686441898346,-0.163309991359711,0.985772490501404,-0.0397814474999905,0.21183255314827,0.97728157043457,-0.00690794223919511,0.163884952664375,0.876995444297791,0.451686441898346,-0.154680833220482,0.987952768802643,0.00481206504628062,0.21183255314827,0.97728157043457,-0.00690794223919511,-0.504156947135925,0.863548874855042,0.0104506043717265,0.163884952664375,0.876995444297791,0.451686441898346,-0.0144040156155825,0.949810266494751,-0.312494844198227,-0.058555856347084,0.998263418674469,0.00642684428021312,
- -0.0602560043334961,0.998133838176727,-0.00989428535103798,-0.0142194535583258,0.95942485332489,0.281605303287506,-0.22222712635994,0.969923257827759,0.0993177369236946,-0.2676902115345,0.922498941421509,-0.278096497058868,-0.429004371166229,0.903064846992493,-0.0207173023372889,0.21183255314827,0.97728157043457,-0.00690794223919511,-0.95522278547287,0.294098228216171,-0.0324919484555721,-0.509562492370605,0.859548270702362,-0.0390236750245094,-0.927564144134521,0.373311191797256,-0.016236063092947,-0.834885597229004,0.550195932388306,0.0158315859735012,-0.892897427082062,0.449565976858139,-0.0249878708273172,-0.569839835166931,0.800247192382813,-0.186780527234077,-0.609975218772888,0.79174143075943,0.0327993221580982,-0.822394967079163,0.568917155265808,6.36427794233896e-005,-0.920903921127319,0.389762729406357,-0.0045824428088963,-0.812631249427795,0.582778036594391,0.000364728359272704,-0.803193509578705,0.593023002147675,-0.0566018931567669,-0.4645916223526,0.885167062282562,-0.0251801628619432,-0.972812294960022,0.20057974755764,0.115775354206562,-0.965432226657867,0.217257708311081,-0.14401251077652,-0.837251484394073,0.528784871101379,0.13927099108696,-0.650682508945465,0.759063184261322,0.0208711829036474,-0.875272989273071,0.480928868055344,0.0510373562574387,-0.951790511608124,0.30404806137085,0.0406154096126556,-0.792358458042145,0.609974980354309,-0.00993260554969311,-0.974372625350952,0.224939078092575,-0.000533974380232394,-0.920903921127319,0.389762729406357,-0.0045824428088963,-0.4645916223526,0.885167062282562,-0.0251801628619432,-0.812068819999695,0.57950496673584,-0.0686881765723228,-0.855703055858612,0.46983078122139,0.216866970062256,-0.879968762397766,0.474394351243973,-0.0245959926396608,-0.974372625350952,0.224939078092575,-0.000533974380232394,-0.922490417957306,0.376296073198318,-0.0860970467329025,-0.999023497104645,-0.0312549620866776,0.0312297530472279,-0.816678047180176,0.523109495639801,0.24370764195919,-0.812938630580902,0.563679695129395,0.146273523569107,-0.853446185588837,0.51454097032547,0.0829288884997368,
- -0.789540231227875,0.462051123380661,-0.403899639844894,-0.0144040156155825,0.949810266494751,-0.312494844198227,0.335726767778397,0.924498498439789,0.18052713572979,0.162486121058464,0.986066341400146,-0.0356542468070984,-0.586645662784576,0.809546411037445,-0.0219417363405228,-0.927564144134521,0.373311191797256,-0.016236063092947,-0.351204335689545,0.291500687599182,-0.889765620231628,-0.287503868341446,0.954327881336212,0.0812395662069321,-0.367996037006378,0.884503364562988,0.286762326955795,-0.436203449964523,0.894049763679504,0.101987741887569,0.0890008807182312,0.972956895828247,0.213151678442955,-0.207137852907181,0.978254318237305,-0.0105964047834277,-0.22222712635994,0.969923257827759,0.0993177369236946,0.236884370446205,0.969186425209045,-0.0675524994730949,-0.812068819999695,0.57950496673584,-0.0686881765723228,-0.836193978786469,0.537676095962524,0.10809301584959,-0.879968762397766,0.474394351243973,-0.0245959926396608,-0.855703055858612,0.46983078122139,0.216866970062256,-0.252705782651901,0.819300055503845,0.514672100543976,-0.485202193260193,0.741192758083344,0.463909596204758,-0.650682508945465,0.759063184261322,0.0208711829036474,-0.836193978786469,0.537676095962524,0.10809301584959,-0.45543447136879,0.858367502689362,0.236187875270844,-0.750668227672577,0.651490330696106,0.109806522727013,-0.38726007938385,0.921862900257111,0.0140852862969041,-0.958702564239502,0.283469200134277,-0.023123549297452,-0.572786808013916,0.814027070999146,0.0963080003857613,-0.485202193260193,0.741192758083344,0.463909596204758,-0.602056562900543,0.79359358549118,-0.0879617854952812,-0.86979216337204,0.491706818342209,-0.0410609468817711,0.262501120567322,-0.708112955093384,-0.655491590499878,0.154589131474495,-0.900675714015961,0.406060814857483,-0.86071789264679,0.167503386735916,-0.480736196041107,-0.4645916223526,0.885167062282562,-0.0251801628619432,-0.11558973044157,0.915704548358917,-0.384869068861008,-0.16438527405262,0.957370817661285,0.237526059150696,-0.853446185588837,0.51454097032547,0.0829288884997368,
- -0.998976230621338,-0.0386789478361607,0.0234630517661572,-0.750668227672577,0.651490330696106,0.109806522727013,-0.45543447136879,0.858367502689362,0.236187875270844,-0.485202193260193,0.741192758083344,0.463909596204758,-0.875272989273071,0.480928868055344,0.0510373562574387,-0.650682508945465,0.759063184261322,0.0208711829036474,-0.579675078392029,0.746403336524963,-0.326892882585526,-0.789540231227875,0.462051123380661,-0.403899639844894,-0.673716723918915,0.57984471321106,-0.458133041858673,-0.812068819999695,0.57950496673584,-0.0686881765723228,-0.4645916223526,0.885167062282562,-0.0251801628619432,-0.16438527405262,0.957370817661285,0.237526059150696,-0.252705782651901,0.819300055503845,0.514672100543976,-0.48258963227272,0.868337690830231,0.114441350102425,-0.812068819999695,0.57950496673584,-0.0686881765723228,-0.16438527405262,0.957370817661285,0.237526059150696,-0.879968762397766,0.474394351243973,-0.0245959926396608,-0.836193978786469,0.537676095962524,0.10809301584959,-0.650682508945465,0.759063184261322,0.0208711829036474,-0.974372625350952,0.224939078092575,-0.000533974380232394,-0.949759840965271,0.176417306065559,-0.258520990610123,-0.602056562900543,0.79359358549118,-0.0879617854952812,-0.485202193260193,0.741192758083344,0.463909596204758,-0.252705782651901,0.819300055503845,0.514672100543976,-0.994154095649719,-0.10240139067173,-0.034228291362524,-0.977940857410431,0.208797127008438,0.00596080301329494,-0.958702564239502,0.283469200134277,-0.023123549297452,-0.38726007938385,0.921862900257111,0.0140852862969041,-0.896581649780273,0.441872417926788,-0.0298343300819397,-0.994195282459259,0.105535306036472,-0.0209298208355904,-0.86979216337204,0.491706818342209,-0.0410609468817711,-0.602056562900543,0.79359358549118,-0.0879617854952812,-0.991779446601868,0.110907800495625,-0.0638189613819122,-0.974048793315887,0.225538149476051,-0.0190098099410534,-0.965432226657867,0.217257708311081,-0.14401251077652,-0.97571337223053,0.198964715003967,0.0916314721107483,-0.936394691467285,0.349619150161743,0.0305194593966007,
- -0.965432226657867,0.217257708311081,-0.14401251077652,-0.972812294960022,0.20057974755764,0.115775354206562,-0.973887741565704,0.181790888309479,-0.13599519431591,-0.949759840965271,0.176417306065559,-0.258520990610123,-0.97571337223053,0.198964715003967,0.0916314721107483,-0.977940857410431,0.208797127008438,0.00596080301329494,-0.9753697514534,0.204890534281731,-0.0816930830478668,-0.913891851902008,0.247748404741287,0.321593314409256,-0.958702564239502,0.283469200134277,-0.023123549297452,-0.9753697514534,0.204890534281731,-0.0816930830478668,-0.996946930885315,0.0774339288473129,-0.0100438185036182,-0.768623352050781,0.639674782752991,-0.00586467701941729,-0.913891851902008,0.247748404741287,0.321593314409256,-0.768623352050781,0.639674782752991,-0.00586467701941729,-0.936394691467285,0.349619150161743,0.0305194593966007,-0.579675078392029,0.746403336524963,-0.326892882585526,-0.579675078392029,0.746403336524963,-0.326892882585526,-0.673716723918915,0.57984471321106,-0.458133041858673,-0.913891851902008,0.247748404741287,0.321593314409256,-0.973887741565704,0.181790888309479,-0.13599519431591,-0.972812294960022,0.20057974755764,0.115775354206562,-0.896581649780273,0.441872417926788,-0.0298343300819397,-0.991779446601868,0.110907800495625,-0.0638189613819122,-0.836193978786469,0.537676095962524,0.10809301584959,-0.48258963227272,0.868337690830231,0.114441350102425,-0.252705782651901,0.819300055503845,0.514672100543976,-0.951790511608124,0.30404806137085,0.0406154096126556,-0.875272989273071,0.480928868055344,0.0510373562574387,-0.485202193260193,0.741192758083344,0.463909596204758,-0.572786808013916,0.814027070999146,0.0963080003857613,-0.836193978786469,0.537676095962524,0.10809301584959,-0.812068819999695,0.57950496673584,-0.0686881765723228,-0.48258963227272,0.868337690830231,0.114441350102425,-0.579675078392029,0.746403336524963,-0.326892882585526,-0.913891851902008,0.247748404741287,0.321593314409256,-0.768623352050781,0.639674782752991,-0.00586467701941729,-0.789540231227875,0.462051123380661,-0.403899639844894,
- -0.45543447136879,0.858367502689362,0.236187875270844,-0.673716723918915,0.57984471321106,-0.458133041858673,0.154589131474495,-0.900675714015961,0.406060814857483,0.459203571081162,-0.677472472190857,0.574598252773285,-0.940749883651733,0.337774813175201,0.0299645271152258,-0.996946930885315,0.0774339288473129,-0.0100438185036182,-0.974048793315887,0.225538149476051,-0.0190098099410534,-0.936394691467285,0.349619150161743,0.0305194593966007,-0.768623352050781,0.639674782752991,-0.00586467701941729,-0.789540231227875,0.462051123380661,-0.403899639844894,-0.853446185588837,0.51454097032547,0.0829288884997368,-0.45543447136879,0.858367502689362,0.236187875270844,-0.45543447136879,0.858367502689362,0.236187875270844,-0.958702564239502,0.283469200134277,-0.023123549297452,-0.913891851902008,0.247748404741287,0.321593314409256,-0.45543447136879,0.858367502689362,0.236187875270844,-0.913891851902008,0.247748404741287,0.321593314409256,-0.673716723918915,0.57984471321106,-0.458133041858673,-0.803193509578705,0.593023002147675,-0.0566018931567669,-0.789540231227875,0.462051123380661,-0.403899639844894,-0.579675078392029,0.746403336524963,-0.326892882585526,-0.949759840965271,0.176417306065559,-0.258520990610123,-0.16438527405262,0.957370817661285,0.237526059150696,-0.97571337223053,0.198964715003967,0.0916314721107483,-0.964931488037109,0.0285995882004499,-0.260939180850983,0.0109309954568744,0.969820618629456,0.243574216961861,0.0131613798439503,0.999909996986389,0.00262946123257279,-0.0050241663120687,0.998212993144989,-0.0595442876219749,0.378610700368881,0.923319399356842,-0.0643049106001854,-0.608618915081024,0.7934330701828,0.0068642939440906,-0.0412466563284397,0.972367942333221,0.229781031608582,0.0620567128062248,0.997954547405243,0.0153492167592049,0.0235711839050055,0.999722003936768,0.00057534349616617,0.53343677520752,0.0177991669625044,0.84565258026123,0.0109309954568744,0.969820618629456,0.243574216961861,-0.964931488037109,0.0285995882004499,-0.260939180850983,-0.905492544174194,0.0265018939971924,0.423533797264099,
- -0.645663917064667,0.0332527123391628,0.762897312641144,0.53343677520752,0.0177991669625044,0.84565258026123,0.0235711839050055,0.999722003936768,0.00057534349616617,0.0620567128062248,0.997954547405243,0.0153492167592049,0.0105547402054071,0.996174693107605,0.0867448374629021,-0.0589053481817245,0.979563772678375,-0.192314475774765,-0.466683328151703,0.884422242641449,-0.00199475116096437,0.0620567128062248,0.997954547405243,0.0153492167592049,0.53343677520752,0.0177991669625044,0.84565258026123,0.0105547402054071,0.996174693107605,0.0867448374629021,-0.645663917064667,0.0332527123391628,0.762897312641144,0.0109309954568744,0.969820618629456,0.243574216961861,-0.905492544174194,0.0265018939971924,0.423533797264099,0.0235711839050055,0.999722003936768,0.00057534349616617,0.0109309954568744,0.969820618629456,0.243574216961861,-0.645663917064667,0.0332527123391628,0.762897312641144,0.53343677520752,0.0177991669625044,0.84565258026123,0.998300850391388,0.0225499644875526,-0.0537309870123863,0.0105547402054071,0.996174693107605,0.0867448374629021,-0.0050241663120687,0.998212993144989,-0.0595442876219749,-0.0412466563284397,0.972367942333221,0.229781031608582,-0.0589053481817245,0.979563772678375,-0.192314475774765,0.0105547402054071,0.996174693107605,0.0867448374629021,0.0235711839050055,0.999722003936768,0.00057534349616617,0.0620567128062248,0.997954547405243,0.0153492167592049,-0.466683328151703,0.884422242641449,-0.00199475116096437,-0.177324548363686,0.982594966888428,-0.055345181375742,0.0443903021514416,0.998884677886963,0.0160942915827036,-0.265327304601669,0.963987410068512,0.0181561559438705,-0.283504098653793,0.95572429895401,-0.0788440853357315,-0.213454887270927,0.97656387090683,-0.0275689084082842,0.0235711839050055,0.999722003936768,0.00057534349616617,-0.177324548363686,0.982594966888428,-0.055345181375742,0.032855000346899,0.988020479679108,-0.150784209370613,0.0109309954568744,0.969820618629456,0.243574216961861,0.0105547402054071,0.996174693107605,0.0867448374629021,0.998300850391388,0.0225499644875526,-0.0537309870123863,
- -0.0050241663120687,0.998212993144989,-0.0595442876219749,0.032855000346899,0.988020479679108,-0.150784209370613,0.0384451560676098,0.930085062980652,0.365327090024948,0.0131613798439503,0.999909996986389,0.00262946123257279,0.0109309954568744,0.969820618629456,0.243574216961861,0.226267084479332,0.697807908058167,0.679608166217804,-0.0274012219160795,0.999031960964203,0.0344148129224777,0.0384451560676098,0.930085062980652,0.365327090024948,-0.177324548363686,0.982594966888428,-0.055345181375742,-0.466683328151703,0.884422242641449,-0.00199475116096437,-0.445690661668777,0.891740620136261,0.0784759074449539,-0.14454847574234,0.945283591747284,0.292479991912842,-0.0412466563284397,0.972367942333221,0.229781031608582,-0.608618915081024,0.7934330701828,0.0068642939440906,0.335726767778397,0.924498498439789,0.18052713572979,-0.702098488807678,0.709155678749084,0.0644668489694595,0.032855000346899,0.988020479679108,-0.150784209370613,-0.177324548363686,0.982594966888428,-0.055345181375742,-0.14454847574234,0.945283591747284,0.292479991912842,-0.257578641176224,0.940059781074524,0.223474442958832,0.032855000346899,0.988020479679108,-0.150784209370613,-0.14454847574234,0.945283591747284,0.292479991912842,0.0131613798439503,0.999909996986389,0.00262946123257279,0.0384451560676098,0.930085062980652,0.365327090024948,0.0443903021514416,0.998884677886963,0.0160942915827036,-0.213454887270927,0.97656387090683,-0.0275689084082842,0.0384451560676098,0.930085062980652,0.365327090024948,-0.257578641176224,0.940059781074524,0.223474442958832,0.226267084479332,0.697807908058167,0.679608166217804,-0.265327304601669,0.963987410068512,0.0181561559438705,0.0443903021514416,0.998884677886963,0.0160942915827036,-0.0274012219160795,0.999031960964203,0.0344148129224777,-0.176227644085884,0.96606057882309,0.188867375254631,0.0384451560676098,0.930085062980652,0.365327090024948,0.032855000346899,0.988020479679108,-0.150784209370613,-0.257578641176224,0.940059781074524,0.223474442958832,-0.702098488807678,0.709155678749084,0.0644668489694595,
- -0.623050034046173,0.708978652954102,0.330390453338623,-0.0589053481817245,0.979563772678375,-0.192314475774765,-0.0412466563284397,0.972367942333221,0.229781031608582,-0.466683328151703,0.884422242641449,-0.00199475116096437,-0.0589053481817245,0.979563772678375,-0.192314475774765,-0.445690661668777,0.891740620136261,0.0784759074449539,0.999398350715637,0.00385109893977642,0.0344697050750256,0.999430656433105,-0.00658405991271138,0.033094372600317,0.998965740203857,-0.0300102606415749,0.0341600589454174,0.998903155326843,-0.0287397019565105,0.0369675308465958,0.999291598796844,-0.0063513508066535,0.0370944328606129,0.999224245548248,0.0212015081197023,0.033188171684742,0.0131613798439503,0.999909996986389,0.00262946123257279,-0.213454887270927,0.97656387090683,-0.0275689084082842,-0.350155115127563,0.0223078783601522,-0.936426043510437,-0.964931488037109,0.0285995882004499,-0.260939180850983,0.998300850391388,0.0225499644875526,-0.0537309870123863,0.378610700368881,0.923319399356842,-0.0643049106001854,-0.0050241663120687,0.998212993144989,-0.0595442876219749,-0.362384438514709,0.00679400702938437,-0.932003974914551,-0.350155115127563,0.0223078783601522,-0.936426043510437,-0.213454887270927,0.97656387090683,-0.0275689084082842,-0.283504098653793,0.95572429895401,-0.0788440853357315,-0.0144040156155825,0.949810266494751,-0.312494844198227,-0.702098488807678,0.709155678749084,0.0644668489694595,0.335726767778397,0.924498498439789,0.18052713572979,-0.2676902115345,0.922498941421509,-0.278096497058868,-0.271430134773254,0.954780578613281,0.121324643492699,-0.0848613083362579,0.968578040599823,-0.233784630894661,0.236884370446205,0.969186425209045,-0.0675524994730949,-0.0602560043334961,0.998133838176727,-0.00989428535103798,-0.058555856347084,0.998263418674469,0.00642684428021312,-0.154680833220482,0.987952768802643,0.00481206504628062,-0.693378150463104,0.720443069934845,0.0137282963842154,-0.0602560043334961,0.998133838176727,-0.00989428535103798,0.236884370446205,0.969186425209045,-0.0675524994730949,-0.163309991359711,0.985772490501404,-0.0397814474999905,
- -0.693378150463104,0.720443069934845,0.0137282963842154,-0.154680833220482,0.987952768802643,0.00481206504628062,-0.16438527405262,0.957370817661285,0.237526059150696,-0.936394691467285,0.349619150161743,0.0305194593966007,-0.97571337223053,0.198964715003967,0.0916314721107483,-0.287375450134277,0.92935699224472,-0.231756299734116,-0.367996037006378,0.884503364562988,0.286762326955795,-0.287503868341446,0.954327881336212,0.0812395662069321,-0.148881584405899,0.988794386386871,0.0109553979709744,-0.438328415155411,0.898805320262909,0.00413776934146881,-0.248413801193237,0.968601703643799,0.0100572798401117,0.19825091958046,0.979669809341431,0.0307158045470715,-0.045359056442976,0.998167991638184,0.0400411821901798,-0.351204335689545,0.291500687599182,-0.889765620231628,-0.220401883125305,0.958728969097137,0.179615512490273,-0.227265581488609,0.973508298397064,-0.0251357946544886,0.0384451560676098,0.930085062980652,0.365327090024948,-0.0274012219160795,0.999031960964203,0.0344148129224777,0.0443903021514416,0.998884677886963,0.0160942915827036,-0.927732944488525,0.372291088104248,0.0266650337725878,-0.812938630580902,0.563679695129395,0.146273523569107,-0.471768766641617,0.862397074699402,0.183590963482857,-0.969399452209473,0.222616225481033,0.103472925722599,-0.812938630580902,0.563679695129395,0.146273523569107,-0.485171735286713,0.874379992485046,0.008250892162323,-0.998976230621338,-0.0386789478361607,0.0234630517661572,-0.853446185588837,0.51454097032547,0.0829288884997368,-0.271430134773254,0.954780578613281,0.121324643492699,0.361433833837509,0.932296991348267,-0.0137088187038898,-0.0848613083362579,0.968578040599823,-0.233784630894661,-0.40926605463028,0.775289714336395,-0.481068879365921,0.361433833837509,0.932296991348267,-0.0137088187038898,-0.271430134773254,0.954780578613281,0.121324643492699,-0.367446035146713,0.92996883392334,0.0118895778432488,-0.40926605463028,0.775289714336395,-0.481068879365921,-0.271430134773254,0.954780578613281,0.121324643492699,-0.569839835166931,0.800247192382813,-0.186780527234077,
- -0.5268874168396,0.729922890663147,0.435433328151703,-0.586645662784576,0.809546411037445,-0.0219417363405228,-0.609975218772888,0.79174143075943,0.0327993221580982,-0.429004371166229,0.903064846992493,-0.0207173023372889,-0.172699049115181,0.982788264751434,0.0655909478664398,-0.166341751813889,0.952605426311493,-0.25470232963562,-0.172699049115181,0.982788264751434,0.0655909478664398,-0.145463794469833,0.989319920539856,-0.0092966528609395,-0.166341751813889,0.952605426311493,-0.25470232963562,-0.509562492370605,0.859548270702362,-0.0390236750245094,-0.00555941928178072,0.917764008045197,-0.397087067365646,-0.48088076710701,0.867797315120697,-0.125225365161896,-0.248413801193237,0.968601703643799,0.0100572798401117,-0.438328415155411,0.898805320262909,0.00413776934146881,-0.287375450134277,0.92935699224472,-0.231756299734116,-0.256075382232666,0.935579001903534,0.243140250444412,0.19825091958046,0.979669809341431,0.0307158045470715,-0.248413801193237,0.968601703643799,0.0100572798401117,-0.256075382232666,0.935579001903534,0.243140250444412,0.281694680452347,0.959490478038788,-0.00512530328705907,-0.0512764230370522,0.998648345470428,-0.00850604940205812,-0.0134688718244433,0.998801410198212,-0.0470576547086239,-0.00366657203994691,0.992219865322113,0.124444425106049,-0.0134688718244433,0.998801410198212,-0.0470576547086239,-0.0512764230370522,0.998648345470428,-0.00850604940205812,-0.416837483644485,0.908732652664185,-0.0212477426975966,-0.0544195212423801,0.99848085641861,-0.00862458441406488,-0.4645916223526,0.885167062282562,-0.0251801628619432,-0.803193509578705,0.593023002147675,-0.0566018931567669,-0.579675078392029,0.746403336524963,-0.326892882585526,-0.11558973044157,0.915704548358917,-0.384869068861008,-0.936394691467285,0.349619150161743,0.0305194593966007,-0.11558973044157,0.915704548358917,-0.384869068861008,-0.579675078392029,0.746403336524963,-0.326892882585526,-0.623050034046173,0.708978652954102,0.330390453338623,-0.0142194535583258,0.95942485332489,0.281605303287506,-0.445690661668777,0.891740620136261,0.0784759074449539,
- -0.0589053481817245,0.979563772678375,-0.192314475774765,-0.623050034046173,0.708978652954102,0.330390453338623,-0.445690661668777,0.891740620136261,0.0784759074449539,-0.816678047180176,0.523109495639801,0.24370764195919,-0.471768766641617,0.862397074699402,0.183590963482857,-0.812938630580902,0.563679695129395,0.146273523569107,-0.816678047180176,0.523109495639801,0.24370764195919,-0.938964664936066,0.323049753904343,0.118255361914635,-0.969399452209473,0.222616225481033,0.103472925722599,0.00629124511033297,0.959612131118774,-0.2812559902668,-0.00467173429206014,0.984280824661255,0.176548480987549,-0.00903172418475151,0.949667751789093,-0.313128978013992,0.00659901509061456,0.999212980270386,0.0391125194728374,-0.00825614295899868,0.97919899225235,-0.20273420214653,-0.0479654148221016,0.998538732528687,-0.0248923618346453,0.268684506416321,0.963225662708282,-0.0022156978957355,0.0727287903428078,0.989051878452301,0.128401964902878,-0.474502801895142,0.0364565290510654,-0.879498720169067,-0.032236885279417,0.995339095592499,-0.0908894613385201,-0.0295208096504211,0.99956339597702,0.00125647708773613,-0.990918278694153,0.0357397086918354,-0.129628896713257,0.449575006961823,0.892383396625519,0.0391677990555763,0.00518891960382462,0.970394372940063,0.24147030711174,0.0136298025026917,0.956729769706726,-0.290658324956894,0.813526809215546,0.577893018722534,-0.0649133175611496,0.0690820962190628,0.985746622085571,-0.153398290276527,0.0727287903428078,0.989051878452301,0.128401964902878,0.80970710515976,0.575476288795471,0.114897415041924,-0.0155992582440376,0.991663932800293,-0.127903461456299,-0.637202382087708,0.770097434520721,-0.0303808245807886,-0.777435719966888,0.614600539207459,0.133640825748444,0.0524980649352074,0.998427093029022,0.0196760762482882,-0.0651801154017448,0.997872412204742,-0.00143214245326817,0.184405952692032,0.982849776744843,0.000833493890240788,-0.462605744600296,0.886561870574951,-0.00203892472200096,-0.00635744770988822,0.953215718269348,0.30222424864769,0.00573308579623699,0.988914728164673,-0.148373872041702,
- 0.00783303286880255,0.993881285190582,0.11017519235611,-0.00278516602702439,0.997822344303131,-0.065899983048439,-0.0155992582440376,0.991663932800293,-0.127903461456299,-0.293095499277115,0.926344931125641,0.23660135269165,0.00783303286880255,0.993881285190582,0.11017519235611,0.00573308579623699,0.988914728164673,-0.148373872041702,-0.314303815364838,0.949299931526184,0.00653400598093867,-0.127953514456749,0.991614043712616,0.0181532334536314,-0.393493682146072,0.919252455234528,-0.0117252757772803,0.251818418502808,0.967716574668884,-0.0106020867824554,-0.0704116374254227,0.997505068778992,0.00508149480447173,-0.0243121683597565,0.99951297044754,-0.0195627603679895,-0.754690706729889,0.644906640052795,0.120571747422218,-0.610558569431305,0.658560276031494,-0.439905375242233,0.449575006961823,0.892383396625519,0.0391677990555763,0.0281777009367943,0.97429084777832,0.223524853587151,0.0395620949566364,0.988392651081085,-0.146679133176804,0.427300602197647,0.88994038105011,0.159437790513039,0.430100381374359,0.899805903434753,-0.0732320994138718,0.157733216881752,0.987289369106293,-0.0194896291941404,0.185374289751053,0.982184588909149,0.0308200437575579,0.0129048125818372,0.97766101360321,0.209791228175163,0.0140045965090394,0.979518294334412,0.200867384672165,-0.00635744770988822,0.953215718269348,0.30222424864769,-0.164402261376381,0.986359238624573,0.00820632930845022,0.0138324368745089,0.999527275562286,-0.0274557247757912,0.00573308579623699,0.988914728164673,-0.148373872041702,-0.754690706729889,0.644906640052795,0.120571747422218,-0.524361371994019,0.851347804069519,-0.0158745367079973,-0.479633808135986,0.860751688480377,-0.170463964343071,-0.379870653152466,0.920168578624725,0.094804972410202,-0.208816215395927,0.977768063545227,-0.0191170889884233,-0.647426128387451,0.66464763879776,0.372938185930252,0.0395620949566364,0.988392651081085,-0.146679133176804,0.184405952692032,0.982849776744843,0.000833493890240788,0.298833876848221,0.953249573707581,-0.0448722392320633,0.182546585798264,0.982878267765045,-0.0250426307320595,
- 0.571784853935242,0.820367813110352,0.0076606054790318,0.430100381374359,0.899805903434753,-0.0732320994138718,0.427300602197647,0.88994038105011,0.159437790513039,-0.999746918678284,-0.0181937292218208,0.0132366893813014,-0.99773633480072,-0.0642212852835655,0.0199503861367702,-0.998616874217987,-0.0512535348534584,0.0117302723228931,0.411899775266647,0.911155223846436,-0.011606858111918,-0.379870653152466,0.920168578624725,0.094804972410202,-0.143411070108414,0.989656984806061,0.0035152102354914,-0.317301601171494,0.948071658611298,-0.0219047535210848,-0.00467173429206014,0.984280824661255,0.176548480987549,0.00629124511033297,0.959612131118774,-0.2812559902668,0.131996855139732,0.990255951881409,-0.0443857200443745,0.157733216881752,0.987289369106293,-0.0194896291941404,0.430100381374359,0.899805903434753,-0.0732320994138718,-0.317301601171494,0.948071658611298,-0.0219047535210848,0.251818418502808,0.967716574668884,-0.0106020867824554,-0.393493682146072,0.919252455234528,-0.0117252757772803,-0.398667901754379,0.904924690723419,-0.148912936449051,-0.462605744600296,0.886561870574951,-0.00203892472200096,-0.610558569431305,0.658560276031494,-0.439905375242233,-0.398667901754379,0.904924690723419,-0.148912936449051,-0.999497413635254,0.0295310243964195,0.0115304831415415,-0.999205946922302,0.0387446954846382,0.00929256435483694,-0.999746918678284,-0.0181937292218208,0.0132366893813014,-0.998616874217987,-0.0512535348534584,0.0117302723228931,0.0639959648251534,0.997844934463501,-0.0144937792792916,0.345019102096558,0.938041150569916,-0.032258540391922,0.251270800828934,0.046054195612669,0.966820538043976,-0.754690706729889,0.644906640052795,0.120571747422218,0.00692403875291348,0.997377693653107,-0.0720399841666222,-0.610558569431305,0.658560276031494,-0.439905375242233,-0.398667901754379,0.904924690723419,-0.148912936449051,-0.610558569431305,0.658560276031494,-0.439905375242233,0.251818418502808,0.967716574668884,-0.0106020867824554,-0.00903172418475151,0.949667751789093,-0.313128978013992,-0.0651801154017448,0.997872412204742,-0.00143214245326817,
- 0.0524980649352074,0.998427093029022,0.0196760762482882,0.00659901509061456,0.999212980270386,0.0391125194728374,-0.00903172418475151,0.949667751789093,-0.313128978013992,0.572523832321167,0.817727208137512,0.0594873614609241,0.381913810968399,0.916656851768494,-0.11782144755125,0.00632857764139771,0.994739949703217,0.102236956357956,0.00139529549051076,0.998813211917877,-0.0486841611564159,-0.0210871119052172,0.994783222675323,0.09980858117342,-0.0253410469740629,0.972552180290222,-0.231300592422485,0.113921962678432,0.993485927581787,-0.00275634392164648,0.0956667512655258,0.995373725891113,0.00888210255652666,0.118145957589149,0.986402750015259,0.114241011440754,0.268684506416321,0.963225662708282,-0.0022156978957355,0.542425096035004,0.596144914627075,0.591934382915497,0.0727287903428078,0.989051878452301,0.128401964902878,-0.614567637443542,0.786335945129395,-0.0631057471036911,0.0524980649352074,0.998427093029022,0.0196760762482882,-0.345900028944016,0.935777544975281,-0.0683633089065552,0.00518891960382462,0.970394372940063,0.24147030711174,0.449575006961823,0.892383396625519,0.0391677990555763,0.461450129747391,0.840575754642487,0.283718168735504,0.298833876848221,0.953249573707581,-0.0448722392320633,0.118145957589149,0.986402750015259,0.114241011440754,0.0956667512655258,0.995373725891113,0.00888210255652666,-0.614567637443542,0.786335945129395,-0.0631057471036911,-0.393493682146072,0.919252455234528,-0.0117252757772803,-0.0253410469740629,0.972552180290222,-0.231300592422485,0.113921962678432,0.993485927581787,-0.00275634392164648,0.0392536632716656,0.968672394752502,0.245220303535461,0.0144213233143091,0.923752665519714,-0.382717967033386,-0.0228486862033606,0.999131560325623,-0.0348467156291008,0.113921962678432,0.993485927581787,-0.00275634392164648,0.118145957589149,0.986402750015259,0.114241011440754,0.0392536632716656,0.968672394752502,0.245220303535461,0.118145957589149,0.986402750015259,0.114241011440754,-0.00903172418475151,0.949667751789093,-0.313128978013992,0.381913810968399,0.916656851768494,-0.11782144755125,
- -0.578232765197754,0.578970372676849,0.574839174747467,-0.164402261376381,0.986359238624573,0.00820632930845022,-0.00635744770988822,0.953215718269348,0.30222424864769,0.461450129747391,0.840575754642487,0.283718168735504,0.449575006961823,0.892383396625519,0.0391677990555763,0.0395620949566364,0.988392651081085,-0.146679133176804,-0.479633808135986,0.860751688480377,-0.170463964343071,-0.524361371994019,0.851347804069519,-0.0158745367079973,-0.10493316501379,0.993245422840118,-0.049523264169693,-0.217592760920525,0.973983883857727,-0.0633142814040184,-0.00467173429206014,0.984280824661255,0.176548480987549,-0.317301601171494,0.948071658611298,-0.0219047535210848,-0.217592760920525,0.973983883857727,-0.0633142814040184,0.560237765312195,0.828299760818481,0.00729240477085114,0.0929287523031235,0.985702097415924,0.140554592013359,0.572523832321167,0.817727208137512,0.0594873614609241,-0.554090023040771,0.722749769687653,0.413058161735535,-0.247991189360619,0.968520224094391,-0.0216522496193647,0.00139529549051076,0.998813211917877,-0.0486841611564159,-0.647426128387451,0.66464763879776,0.372938185930252,-0.143411070108414,0.989656984806061,0.0035152102354914,-0.379870653152466,0.920168578624725,0.094804972410202,0.0690820962190628,0.985746622085571,-0.153398290276527,0.317414879798889,0.948193490505219,-0.013300035148859,-0.513204872608185,0.858209848403931,-0.00983314402401447,-0.0143759110942483,0.999454319477081,0.0297410786151886,0.0731224194169044,0.997172474861145,-0.0173257496207953,-0.474502801895142,0.0364565290510654,-0.879498720169067,0.819802701473236,0.0548497289419174,-0.570013344287872,0.572523832321167,0.817727208137512,0.0594873614609241,-0.00467173429206014,0.984280824661255,0.176548480987549,-0.217592760920525,0.973983883857727,-0.0633142814040184,-0.00903172418475151,0.949667751789093,-0.313128978013992,-0.00467173429206014,0.984280824661255,0.176548480987549,0.572523832321167,0.817727208137512,0.0594873614609241,0.185374289751053,0.982184588909149,0.0308200437575579,0.0140045965090394,0.979518294334412,0.200867384672165,
- -0.754690706729889,0.644906640052795,0.120571747422218,-0.06736771017313,0.931468367576599,0.357530772686005,-0.314303815364838,0.949299931526184,0.00653400598093867,-0.337926775217056,0.937174379825592,0.0866576507687569,0.0395620949566364,0.988392651081085,-0.146679133176804,0.298833876848221,0.953249573707581,-0.0448722392320633,0.461450129747391,0.840575754642487,0.283718168735504,0.298833876848221,0.953249573707581,-0.0448722392320633,0.00518891960382462,0.970394372940063,0.24147030711174,0.461450129747391,0.840575754642487,0.283718168735504,-0.754690706729889,0.644906640052795,0.120571747422218,-0.479633808135986,0.860751688480377,-0.170463964343071,0.185374289751053,0.982184588909149,0.0308200437575579,0.411899775266647,0.911155223846436,-0.011606858111918,-0.143411070108414,0.989656984806061,0.0035152102354914,0.472466349601746,0.88132631778717,-0.00627260562032461,0.0804488882422447,0.995301067829132,-0.0538860931992531,-0.0381244458258152,0.999234199523926,-0.00880218856036663,0.0956667512655258,0.995373725891113,0.00888210255652666,0.00518891960382462,0.970394372940063,0.24147030711174,0.298833876848221,0.953249573707581,-0.0448722392320633,-0.00635744770988822,0.953215718269348,0.30222424864769,-0.777435719966888,0.614600539207459,0.133640825748444,-0.578232765197754,0.578970372676849,0.574839174747467,-0.0155992582440376,0.991663932800293,-0.127903461456299,-0.777435719966888,0.614600539207459,0.133640825748444,-0.00635744770988822,0.953215718269348,0.30222424864769,-0.247991189360619,0.968520224094391,-0.0216522496193647,-0.332309186458588,0.943132698535919,-0.00844514556229115,-0.0210871119052172,0.994783222675323,0.09980858117342,0.00139529549051076,0.998813211917877,-0.0486841611564159,0.00573308579623699,0.988914728164673,-0.148373872041702,0.0138324368745089,0.999527275562286,-0.0274557247757912,-0.06736771017313,0.931468367576599,0.357530772686005,-0.337926775217056,0.937174379825592,0.0866576507687569,-0.337926775217056,0.937174379825592,0.0866576507687569,-0.293095499277115,0.926344931125641,0.23660135269165,
- 0.00573308579623699,0.988914728164673,-0.148373872041702,-0.0704116374254227,0.997505068778992,0.00508149480447173,-0.610558569431305,0.658560276031494,-0.439905375242233,-0.462605744600296,0.886561870574951,-0.00203892472200096,0.449575006961823,0.892383396625519,0.0391677990555763,0.427300602197647,0.88994038105011,0.159437790513039,0.0281777009367943,0.97429084777832,0.223524853587151,-0.0217165071517229,0.993424117565155,-0.112415052950382,-0.100264444947243,0.992830634117126,-0.0650732964277267,0.0524702072143555,0.994306683540344,-0.0927422568202019,-0.0312078502029181,0.970127522945404,-0.240580081939697,-0.0651801154017448,0.997872412204742,-0.00143214245326817,-0.00903172418475151,0.949667751789093,-0.313128978013992,0.118145957589149,0.986402750015259,0.114241011440754,-0.0243121683597565,0.99951297044754,-0.0195627603679895,0.0281777009367943,0.97429084777832,0.223524853587151,0.157733216881752,0.987289369106293,-0.0194896291941404,-0.524361371994019,0.851347804069519,-0.0158745367079973,0.0281777009367943,0.97429084777832,0.223524853587151,0.427300602197647,0.88994038105011,0.159437790513039,0.157733216881752,0.987289369106293,-0.0194896291941404,0.184405952692032,0.982849776744843,0.000833493890240788,0.118145957589149,0.986402750015259,0.114241011440754,0.298833876848221,0.953249573707581,-0.0448722392320633,-0.0651801154017448,0.997872412204742,-0.00143214245326817,0.118145957589149,0.986402750015259,0.114241011440754,0.184405952692032,0.982849776744843,0.000833493890240788,0.345019102096558,0.938041150569916,-0.032258540391922,0.89127916097641,0.0704386979341507,0.447950780391693,0.251270800828934,0.046054195612669,0.966820538043976,0.89127916097641,0.0704386979341507,0.447950780391693,-0.00342282489873469,0.993549883365631,0.113344267010689,0.439075589179993,0.890977799892426,0.115633442997932,-0.314303815364838,0.949299931526184,0.00653400598093867,-0.014650909230113,0.997353732585907,0.0712108686566353,-0.337926775217056,0.937174379825592,0.0866576507687569,-0.381213456392288,0.915591597557068,0.127938479185104,
- -0.322467356920242,0.925927639007568,0.196654245257378,-0.0143759110942483,0.999454319477081,0.0297410786151886,0.345019102096558,0.938041150569916,-0.032258540391922,-0.00342282489873469,0.993549883365631,0.113344267010689,0.89127916097641,0.0704386979341507,0.447950780391693,0.0524980649352074,0.998427093029022,0.0196760762482882,-0.614567637443542,0.786335945129395,-0.0631057471036911,0.00659901509061456,0.999212980270386,0.0391125194728374,0.00659901509061456,0.999212980270386,0.0391125194728374,-0.614567637443542,0.786335945129395,-0.0631057471036911,0.00629124511033297,0.959612131118774,-0.2812559902668,-0.0212228987365961,0.974156022071838,-0.224877148866653,-0.379870653152466,0.920168578624725,0.094804972410202,-0.293095499277115,0.926344931125641,0.23660135269165,0.185374289751053,0.982184588909149,0.0308200437575579,-0.479633808135986,0.860751688480377,-0.170463964343071,-0.307604253292084,0.951491832733154,-0.00656015472486615,0.251270800828934,0.046054195612669,0.966820538043976,-0.135944932699203,0.0243907459080219,0.99041610956192,0.0639959648251534,0.997844934463501,-0.0144937792792916,0.131996855139732,0.990255951881409,-0.0443857200443745,0.00629124511033297,0.959612131118774,-0.2812559902668,-0.451810836791992,0.787330448627472,-0.419496923685074,-0.316885709762573,0.940867364406586,-0.119800046086311,-0.393493682146072,0.919252455234528,-0.0117252757772803,-0.614567637443542,0.786335945129395,-0.0631057471036911,-0.345900028944016,0.935777544975281,-0.0683633089065552,-0.990918278694153,0.0357397086918354,-0.129628896713257,-0.0295208096504211,0.99956339597702,0.00125647708773613,-0.299211084842682,0.953683078289032,-0.0310041438788176,0.0731224194169044,0.997172474861145,-0.0173257496207953,0.819802701473236,0.0548497289419174,-0.570013344287872,0.0126502644270658,0.990727007389069,-0.135276913642883,-0.614567637443542,0.786335945129395,-0.0631057471036911,-0.451810836791992,0.787330448627472,-0.419496923685074,0.00629124511033297,0.959612131118774,-0.2812559902668,0.819802701473236,0.0548497289419174,-0.570013344287872,
- 0.89127916097641,0.0704386979341507,0.447950780391693,0.439075589179993,0.890977799892426,0.115633442997932,0.819802701473236,0.0548497289419174,-0.570013344287872,0.439075589179993,0.890977799892426,0.115633442997932,0.0126502644270658,0.990727007389069,-0.135276913642883,-0.127953514456749,0.991614043712616,0.0181532334536314,-0.322467356920242,0.925927639007568,0.196654245257378,0.00632857764139771,0.994739949703217,0.102236956357956,-0.398667901754379,0.904924690723419,-0.148912936449051,0.0524980649352074,0.998427093029022,0.0196760762482882,-0.462605744600296,0.886561870574951,-0.00203892472200096,0.251818418502808,0.967716574668884,-0.0106020867824554,-0.610558569431305,0.658560276031494,-0.439905375242233,0.00692403875291348,0.997377693653107,-0.0720399841666222,0.00692403875291348,0.997377693653107,-0.0720399841666222,-0.014650909230113,0.997353732585907,0.0712108686566353,-0.314303815364838,0.949299931526184,0.00653400598093867,0.251818418502808,0.967716574668884,-0.0106020867824554,-0.127953514456749,0.991614043712616,0.0181532334536314,-0.263290286064148,0.964371860027313,0.0257867779582739,-0.322467356920242,0.925927639007568,0.196654245257378,0.0138324368745089,0.999527275562286,-0.0274557247757912,-0.164402261376381,0.986359238624573,0.00820632930845022,0.268684506416321,0.963225662708282,-0.0022156978957355,-0.0479654148221016,0.998538732528687,-0.0248923618346453,-0.578232765197754,0.578970372676849,0.574839174747467,0.542425096035004,0.596144914627075,0.591934382915497,0.268684506416321,0.963225662708282,-0.0022156978957355,-0.164402261376381,0.986359238624573,0.00820632930845022,0.412077933549881,0.668783128261566,-0.618805944919586,-0.29654124379158,0.713309347629547,-0.635022044181824,0.0804488882422447,0.995301067829132,-0.0538860931992531,0.472466349601746,0.88132631778717,-0.00627260562032461,-0.637202382087708,0.770097434520721,-0.0303808245807886,-0.0155992582440376,0.991663932800293,-0.127903461456299,0.0804488882422447,0.995301067829132,-0.0538860931992531,-0.29654124379158,0.713309347629547,-0.635022044181824,
- -0.293095499277115,0.926344931125641,0.23660135269165,0.411899775266647,0.911155223846436,-0.011606858111918,0.00783303286880255,0.993881285190582,0.11017519235611,-0.259382098913193,0.965724110603333,0.00989186763763428,-0.208816215395927,0.977768063545227,-0.0191170889884233,-0.379870653152466,0.920168578624725,0.094804972410202,-0.479633808135986,0.860751688480377,-0.170463964343071,-0.408056735992432,0.904036700725555,-0.127307996153831,-0.307604253292084,0.951491832733154,-0.00656015472486615,-0.381213456392288,0.915591597557068,0.127938479185104,-0.0143759110942483,0.999454319477081,0.0297410786151886,-0.513204872608185,0.858209848403931,-0.00983314402401447,-0.381213456392288,0.915591597557068,0.127938479185104,-0.513204872608185,0.858209848403931,-0.00983314402401447,-0.554090023040771,0.722749769687653,0.413058161735535,-0.554090023040771,0.722749769687653,0.413058161735535,0.00139529549051076,0.998813211917877,-0.0486841611564159,-0.381213456392288,0.915591597557068,0.127938479185104,0.0731224194169044,0.997172474861145,-0.0173257496207953,-0.0798518881201744,0.996693670749664,-0.0150101892650127,-0.474502801895142,0.0364565290510654,-0.879498720169067,-0.032236885279417,0.995339095592499,-0.0908894613385201,-0.474502801895142,0.0364565290510654,-0.879498720169067,-0.0798518881201744,0.996693670749664,-0.0150101892650127,-0.379870653152466,0.920168578624725,0.094804972410202,0.411899775266647,0.911155223846436,-0.011606858111918,-0.293095499277115,0.926344931125641,0.23660135269165,-0.0212228987365961,0.974156022071838,-0.224877148866653,-0.259382098913193,0.965724110603333,0.00989186763763428,-0.379870653152466,0.920168578624725,0.094804972410202,0.0140045965090394,0.979518294334412,0.200867384672165,0.0129048125818372,0.97766101360321,0.209791228175163,-0.0212228987365961,0.974156022071838,-0.224877148866653,-0.014650909230113,0.997353732585907,0.0712108686566353,0.00692403875291348,0.997377693653107,-0.0720399841666222,0.0392536632716656,0.968672394752502,0.245220303535461,0.381913810968399,0.916656851768494,-0.11782144755125,
- 0.574577212333679,0.800676107406616,0.169643297791481,-0.263290286064148,0.964371860027313,0.0257867779582739,-0.06736771017313,0.931468367576599,0.357530772686005,0.0138324368745089,0.999527275562286,-0.0274557247757912,-0.127953514456749,0.991614043712616,0.0181532334536314,-0.06736771017313,0.931468367576599,0.357530772686005,-0.263290286064148,0.964371860027313,0.0257867779582739,-0.127953514456749,0.991614043712616,0.0181532334536314,-0.314303815364838,0.949299931526184,0.00653400598093867,-0.06736771017313,0.931468367576599,0.357530772686005,0.0690820962190628,0.985746622085571,-0.153398290276527,-0.0143759110942483,0.999454319477081,0.0297410786151886,-0.00825614295899868,0.97919899225235,-0.20273420214653,0.0727287903428078,0.989051878452301,0.128401964902878,0.00632857764139771,0.994739949703217,0.102236956357956,-0.0253410469740629,0.972552180290222,-0.231300592422485,-0.393493682146072,0.919252455234528,-0.0117252757772803,-0.127953514456749,0.991614043712616,0.0181532334536314,-0.317301601171494,0.948071658611298,-0.0219047535210848,-0.10493316501379,0.993245422840118,-0.049523264169693,-0.524361371994019,0.851347804069519,-0.0158745367079973,0.157733216881752,0.987289369106293,-0.0194896291941404,0.184405952692032,0.982849776744843,0.000833493890240788,0.0395620949566364,0.988392651081085,-0.146679133176804,-0.0704116374254227,0.997505068778992,0.00508149480447173,-0.462605744600296,0.886561870574951,-0.00203892472200096,0.0956667512655258,0.995373725891113,0.00888210255652666,0.113921962678432,0.993485927581787,-0.00275634392164648,-0.0228486862033606,0.999131560325623,-0.0348467156291008,0.222888216376305,0.974102735519409,-0.0380103141069412,-0.00342282489873469,0.993549883365631,0.113344267010689,0.0126502644270658,0.990727007389069,-0.135276913642883,0.439075589179993,0.890977799892426,0.115633442997932,0.287988513708115,0.957500755786896,0.0159716717898846,0.0105735659599304,0.999216318130493,0.0381459258496761,-0.210872948169708,0.977119624614716,0.0277444794774055,0.571784853935242,0.820367813110352,0.0076606054790318,
- 0.182546585798264,0.982878267765045,-0.0250426307320595,0.0956667512655258,0.995373725891113,0.00888210255652666,0.222888216376305,0.974102735519409,-0.0380103141069412,0.0219432003796101,0.99443393945694,-0.103050865232944,0.00518891960382462,0.970394372940063,0.24147030711174,0.0136298025026917,0.956729769706726,-0.290658324956894,0.182546585798264,0.982878267765045,-0.0250426307320595,0.427300602197647,0.88994038105011,0.159437790513039,0.449575006961823,0.892383396625519,0.0391677990555763,0.0392536632716656,0.968672394752502,0.245220303535461,0.0929287523031235,0.985702097415924,0.140554592013359,0.0224260985851288,0.995896697044373,0.0876747891306877,0.0144213233143091,0.923752665519714,-0.382717967033386,0.0690820962190628,0.985746622085571,-0.153398290276527,0.811735093593597,0.437085330486298,-0.387353211641312,0.317414879798889,0.948193490505219,-0.013300035148859,-0.0243121683597565,0.99951297044754,-0.0195627603679895,-0.524361371994019,0.851347804069519,-0.0158745367079973,-0.754690706729889,0.644906640052795,0.120571747422218,-0.014650909230113,0.997353732585907,0.0712108686566353,-0.293095499277115,0.926344931125641,0.23660135269165,-0.337926775217056,0.937174379825592,0.0866576507687569,-0.381213456392288,0.915591597557068,0.127938479185104,0.00139529549051076,0.998813211917877,-0.0486841611564159,0.00632857764139771,0.994739949703217,0.102236956357956,-0.322467356920242,0.925927639007568,0.196654245257378,0.0219432003796101,0.99443393945694,-0.103050865232944,0.0252861026674509,0.994322538375854,0.103360071778297,0.0136298025026917,0.956729769706726,-0.290658324956894,0.00518891960382462,0.970394372940063,0.24147030711174,0.228826403617859,0.945787608623505,0.230487018823624,0.149108827114105,0.940700888633728,0.304710328578949,0.287988513708115,0.957500755786896,0.0159716717898846,0.0252861026674509,0.994322538375854,0.103360071778297,0.152324140071869,0.986620306968689,0.0581179484724998,0.181048527359962,0.964930415153503,0.190080627799034,0.579184770584106,0.814687132835388,-0.0288082510232925,
- 0.0209523439407349,0.999484002590179,-0.0243452526628971,0.0670943111181259,0.978606104850769,0.194495156407356,0.149108827114105,0.940700888633728,0.304710328578949,0.0524702072143555,0.994306683540344,-0.0927422568202019,0.192231118679047,0.979774296283722,-0.0555829107761383,0.228826403617859,0.945787608623505,0.230487018823624,0.354629009962082,0.934388995170593,-0.0339910164475441,-0.0312078502029181,0.970127522945404,-0.240580081939697,0.222888216376305,0.974102735519409,-0.0380103141069412,-0.17366635799408,0.84597373008728,-0.504151165485382,0.354629009962082,0.934388995170593,-0.0339910164475441,0.0224260985851288,0.995896697044373,0.0876747891306877,-0.516639113426209,0.856046199798584,0.0163976326584816,0.181048527359962,0.964930415153503,0.190080627799034,0.152324140071869,0.986620306968689,0.0581179484724998,0.149108827114105,0.940700888633728,0.304710328578949,0.0105735659599304,0.999216318130493,0.0381459258496761,0.287988513708115,0.957500755786896,0.0159716717898846,0.220739498734474,0.854846000671387,-0.469587445259094,0.0144213233143091,0.923752665519714,-0.382717967033386,-0.38827446103096,0.87471878528595,0.290017277002335,0.0219432003796101,0.99443393945694,-0.103050865232944,0.222888216376305,0.974102735519409,-0.0380103141069412,0.354629009962082,0.934388995170593,-0.0339910164475441,0.228826403617859,0.945787608623505,0.230487018823624,0.212036103010178,0.972177088260651,0.0995610058307648,0.0219432003796101,0.99443393945694,-0.103050865232944,0.354629009962082,0.934388995170593,-0.0339910164475441,0.0136298025026917,0.956729769706726,-0.290658324956894,0.0252861026674509,0.994322538375854,0.103360071778297,0.287988513708115,0.957500755786896,0.0159716717898846,0.182546585798264,0.982878267765045,-0.0250426307320595,-0.0312078502029181,0.970127522945404,-0.240580081939697,0.0524702072143555,0.994306683540344,-0.0927422568202019,0.149108827114105,0.940700888633728,0.304710328578949,0.228826403617859,0.945787608623505,0.230487018823624,-0.299211084842682,0.953683078289032,-0.0310041438788176,
- -0.0295208096504211,0.99956339597702,0.00125647708773613,0.0209523439407349,0.999484002590179,-0.0243452526628971,0.579184770584106,0.814687132835388,-0.0288082510232925,0.345019102096558,0.938041150569916,-0.032258540391922,0.0639959648251534,0.997844934463501,-0.0144937792792916,0.192231118679047,0.979774296283722,-0.0555829107761383,0.0524702072143555,0.994306683540344,-0.0927422568202019,-0.100264444947243,0.992830634117126,-0.0650732964277267,0.0731224194169044,0.997172474861145,-0.0173257496207953,0.0126502644270658,0.990727007389069,-0.135276913642883,-0.0114261172711849,0.99614018201828,0.0870295837521553,-0.142435669898987,0.989665567874908,0.0165570955723524,0.0126502644270658,0.990727007389069,-0.135276913642883,-0.00342282489873469,0.993549883365631,0.113344267010689,-0.0217165071517229,0.993424117565155,-0.112415052950382,-0.0312078502029181,0.970127522945404,-0.240580081939697,-0.0114261172711849,0.99614018201828,0.0870295837521553,-0.0295208096504211,0.99956339597702,0.00125647708773613,-0.032236885279417,0.995339095592499,-0.0908894613385201,-0.0012120419414714,0.950994551181793,0.309205383062363,0.0209523439407349,0.999484002590179,-0.0243452526628971,-0.032236885279417,0.995339095592499,-0.0908894613385201,-0.0798518881201744,0.996693670749664,-0.0150101892650127,0.0937625542283058,0.995406329631805,0.019361162558198,-0.0012120419414714,0.950994551181793,0.309205383062363,0.0937625542283058,0.995406329631805,0.019361162558198,-0.142435669898987,0.989665567874908,0.0165570955723524,0.220739498734474,0.854846000671387,-0.469587445259094,0.220739498734474,0.854846000671387,-0.469587445259094,-0.38827446103096,0.87471878528595,0.290017277002335,-0.0012120419414714,0.950994551181793,0.309205383062363,-0.0217165071517229,0.993424117565155,-0.112415052950382,-0.00342282489873469,0.993549883365631,0.113344267010689,0.345019102096558,0.938041150569916,-0.032258540391922,-0.100264444947243,0.992830634117126,-0.0650732964277267,0.0252861026674509,0.994322538375854,0.103360071778297,0.212036103010178,0.972177088260651,0.0995610058307648,
- 0.228826403617859,0.945787608623505,0.230487018823624,-0.210872948169708,0.977119624614716,0.0277444794774055,0.0105735659599304,0.999216318130493,0.0381459258496761,0.149108827114105,0.940700888633728,0.304710328578949,0.0670943111181259,0.978606104850769,0.194495156407356,0.0252861026674509,0.994322538375854,0.103360071778297,0.0219432003796101,0.99443393945694,-0.103050865232944,0.212036103010178,0.972177088260651,0.0995610058307648,0.220739498734474,0.854846000671387,-0.469587445259094,-0.0012120419414714,0.950994551181793,0.309205383062363,0.0937625542283058,0.995406329631805,0.019361162558198,0.0144213233143091,0.923752665519714,-0.382717967033386,0.152324140071869,0.986620306968689,0.0581179484724998,-0.38827446103096,0.87471878528595,0.290017277002335,0.354629009962082,0.934388995170593,-0.0339910164475441,-0.17366635799408,0.84597373008728,-0.504151165485382,-0.142435669898987,0.989665567874908,0.0165570955723524,-0.0798518881201744,0.996693670749664,-0.0150101892650127,0.0731224194169044,0.997172474861145,-0.0173257496207953,-0.142435669898987,0.989665567874908,0.0165570955723524,0.0937625542283058,0.995406329631805,0.019361162558198,0.0144213233143091,0.923752665519714,-0.382717967033386,0.0224260985851288,0.995896697044373,0.0876747891306877,0.152324140071869,0.986620306968689,0.0581179484724998,0.152324140071869,0.986620306968689,0.0581179484724998,0.0209523439407349,0.999484002590179,-0.0243452526628971,-0.0012120419414714,0.950994551181793,0.309205383062363,0.152324140071869,0.986620306968689,0.0581179484724998,-0.0012120419414714,0.950994551181793,0.309205383062363,-0.38827446103096,0.87471878528595,0.290017277002335,-0.0228486862033606,0.999131560325623,-0.0348467156291008,0.0144213233143091,0.923752665519714,-0.382717967033386,0.220739498734474,0.854846000671387,-0.469587445259094,-0.0312078502029181,0.970127522945404,-0.240580081939697,0.354629009962082,0.934388995170593,-0.0339910164475441,-0.0114261172711849,0.99614018201828,0.0870295837521553,0.0690820962190628,0.985746622085571,-0.153398290276527,
- 0.813526809215546,0.577893018722534,-0.0649133175611496,0.811735093593597,0.437085330486298,-0.387353211641312,-0.0253410469740629,0.972552180290222,-0.231300592422485,-0.0210871119052172,0.994783222675323,0.09980858117342,-0.614567637443542,0.786335945129395,-0.0631057471036911,-0.322467356920242,0.925927639007568,0.196654245257378,-0.00825614295899868,0.97919899225235,-0.20273420214653,-0.0143759110942483,0.999454319477081,0.0297410786151886,-0.263290286064148,0.964371860027313,0.0257867779582739,-0.0479654148221016,0.998538732528687,-0.0248923618346453,-0.00825614295899868,0.97919899225235,-0.20273420214653,-0.322467356920242,0.925927639007568,0.196654245257378,0.0138324368745089,0.999527275562286,-0.0274557247757912,-0.0479654148221016,0.998538732528687,-0.0248923618346453,-0.263290286064148,0.964371860027313,0.0257867779582739,0.354629009962082,0.934388995170593,-0.0339910164475441,-0.142435669898987,0.989665567874908,0.0165570955723524,-0.0114261172711849,0.99614018201828,0.0870295837521553,-0.0212228987365961,0.974156022071838,-0.224877148866653,-0.293095499277115,0.926344931125641,0.23660135269165,-0.014650909230113,0.997353732585907,0.0712108686566353,-0.208816215395927,0.977768063545227,-0.0191170889884233,-0.259382098913193,0.965724110603333,0.00989186763763428,0.0327894128859043,0.999423980712891,0.00874788593500853,0.185374289751053,0.982184588909149,0.0308200437575579,-0.307604253292084,0.951491832733154,-0.00656015472486615,-0.754690706729889,0.644906640052795,0.120571747422218,0.0140045965090394,0.979518294334412,0.200867384672165,0.00692403875291348,0.997377693653107,-0.0720399841666222,0.572523832321167,0.817727208137512,0.0594873614609241,0.0929287523031235,0.985702097415924,0.140554592013359,0.574577212333679,0.800676107406616,0.169643297791481,0.381913810968399,0.916656851768494,-0.11782144755125,0.0929287523031235,0.985702097415924,0.140554592013359,0.560237765312195,0.828299760818481,0.00729240477085114,-0.516639113426209,0.856046199798584,0.0163976326584816,0.0224260985851288,0.995896697044373,0.0876747891306877,
- -0.0210871119052172,0.994783222675323,0.09980858117342,-0.451810836791992,0.787330448627472,-0.419496923685074,-0.614567637443542,0.786335945129395,-0.0631057471036911,-0.316885709762573,0.940867364406586,-0.119800046086311,-0.451810836791992,0.787330448627472,-0.419496923685074,-0.0210871119052172,0.994783222675323,0.09980858117342,-0.332309186458588,0.943132698535919,-0.00844514556229115,-0.316885709762573,0.940867364406586,-0.119800046086311,-0.0210871119052172,0.994783222675323,0.09980858117342,0.0395620949566364,0.988392651081085,-0.146679133176804,0.0281777009367943,0.97429084777832,0.223524853587151,-0.0243121683597565,0.99951297044754,-0.0195627603679895,-0.0704116374254227,0.997505068778992,0.00508149480447173,-0.393493682146072,0.919252455234528,-0.0117252757772803,-0.345900028944016,0.935777544975281,-0.0683633089065552,-0.398667901754379,0.904924690723419,-0.148912936449051,-0.345900028944016,0.935777544975281,-0.0683633089065552,0.0524980649352074,0.998427093029022,0.0196760762482882,-0.398667901754379,0.904924690723419,-0.148912936449051,-0.10493316501379,0.993245422840118,-0.049523264169693,-0.408056735992432,0.904036700725555,-0.127307996153831,-0.479633808135986,0.860751688480377,-0.170463964343071,0.0327894128859043,0.999423980712891,0.00874788593500853,-0.259382098913193,0.965724110603333,0.00989186763763428,-0.0212228987365961,0.974156022071838,-0.224877148866653,0.0129048125818372,0.97766101360321,0.209791228175163,0.185374289751053,0.982184588909149,0.0308200437575579,0.0327894128859043,0.999423980712891,0.00874788593500853,0.0129048125818372,0.97766101360321,0.209791228175163,0.411899775266647,0.911155223846436,-0.011606858111918,-0.0381244458258152,0.999234199523926,-0.00880218856036663,-0.00278516602702439,0.997822344303131,-0.065899983048439,0.00783303286880255,0.993881285190582,0.11017519235611,-0.00278516602702439,0.997822344303131,-0.065899983048439,-0.0381244458258152,0.999234199523926,-0.00880218856036663,0.0804488882422447,0.995301067829132,-0.0538860931992531,-0.0155992582440376,0.991663932800293,-0.127903461456299,
- 0.222888216376305,0.974102735519409,-0.0380103141069412,-0.0228486862033606,0.999131560325623,-0.0348467156291008,0.220739498734474,0.854846000671387,-0.469587445259094,-0.17366635799408,0.84597373008728,-0.504151165485382,-0.142435669898987,0.989665567874908,0.0165570955723524,-0.17366635799408,0.84597373008728,-0.504151165485382,0.220739498734474,0.854846000671387,-0.469587445259094,0.80970710515976,0.575476288795471,0.114897415041924,0.0727287903428078,0.989051878452301,0.128401964902878,0.542425096035004,0.596144914627075,0.591934382915497,0.0392536632716656,0.968672394752502,0.245220303535461,0.574577212333679,0.800676107406616,0.169643297791481,0.0929287523031235,0.985702097415924,0.140554592013359,0.0392536632716656,0.968672394752502,0.245220303535461,0.118145957589149,0.986402750015259,0.114241011440754,0.381913810968399,0.916656851768494,-0.11782144755125,0.0234622303396463,-0.98358142375946,0.178933382034302,-0.0399438589811325,-0.986638188362122,-0.157954350113869,-0.0266627948731184,-0.955519020557404,0.29372176527977,0.02930623665452,-0.999364376068115,-0.0202965289354324,-0.0482399351894856,-0.99878066778183,0.0104871327057481,-0.560465931892395,-0.828173398971558,-0.00259028631262481,-0.116687543690205,-0.99271559715271,-0.0299952551722527,-0.00214617792516947,-0.959873139858246,-0.280426383018494,-0.603590369224548,-0.795926034450531,-0.0466936565935612,-0.043217483907938,-0.973532557487488,-0.224425062537193,-0.0507102012634277,-0.99836266040802,0.0264686085283756,-0.702105760574341,-0.709130585193634,-0.0646638497710228,-0.0024605430662632,-0.950316607952118,0.311275154352188,-0.00214617792516947,-0.959873139858246,-0.280426383018494,-0.623078167438507,-0.708977043628693,-0.330341011285782,-0.0418602302670479,-0.9990354180336,0.013264431618154,0.226167291402817,-0.697549521923065,-0.679906666278839,-0.257570564746857,-0.940040409564972,-0.223565429449081,0.420894503593445,-0.907108008861542,0.00169243721757084,-0.267549008131027,-0.963524699211121,-0.00614044489338994,-0.321637213230133,-0.946503162384033,0.0261018220335245,
- -0.349539577960968,-0.93690824508667,0.00499056465923786,-0.00225884327664971,-0.966142654418945,-0.257998704910278,0.00441165221855044,-0.985693275928497,0.168490797281265,0.00753648951649666,-0.993303775787354,-0.115286163985729,-0.00301964534446597,-0.999137818813324,0.0414087846875191,-0.0418602302670479,-0.9990354180336,0.013264431618154,-0.217919483780861,-0.957747220993042,-0.187700212001801,0.00753648951649666,-0.993303775787354,-0.115286163985729,0.00441165221855044,-0.985693275928497,0.168490797281265,-0.270774960517883,-0.962583124637604,-0.0107108941301703,0.418149024248123,-0.908371865749359,0.00346270529553294,-0.120564557611942,-0.992467641830444,0.0217324141412973,0.709778606891632,-0.704119026660919,-0.0207548215985298,-0.00641288096085191,-0.999383389949799,-0.0345243066549301,0.0206088460981846,-0.99955016374588,0.0217906385660172,-0.34965991973877,-0.838463068008423,0.417992502450943,-0.0959452539682388,-0.98688930273056,0.129784196615219,-0.603590369224548,-0.795926034450531,-0.0466936565935612,0.0209385566413403,-0.910488963127136,-0.413002878427505,0.0312512256205082,-0.984835922718048,0.170650362968445,-0.259278893470764,-0.962871432304382,0.0751866698265076,-0.228360667824745,-0.973133087158203,0.0293823890388012,-0.252996981143951,-0.967307984828949,-0.0175425559282303,0.590608060359955,-0.806354701519012,-0.0312139950692654,0.0131440181285143,-0.977708995342255,-0.209552690386772,0.0496757812798023,-0.981413960456848,-0.185361847281456,-0.00225884327664971,-0.966142654418945,-0.257998704910278,-0.0997235476970673,-0.994762718677521,-0.022415379062295,-0.155473932623863,-0.986947596073151,0.0419810526072979,0.00441165221855044,-0.985693275928497,0.168490797281265,-0.34965991973877,-0.838463068008423,0.417992502450943,-0.597915530204773,-0.801528990268707,0.00695517426356673,0.247104033827782,-0.959090292453766,0.138150006532669,-0.195745974779129,-0.976034998893738,-0.0950746983289719,0.104744471609592,-0.994473278522491,-0.00718065351247787,0.0293344855308533,-0.928945779800415,-0.369051873683929,
- 0.0312512256205082,-0.984835922718048,0.170650362968445,-0.321637213230133,-0.946503162384033,0.0261018220335245,-0.45925760269165,-0.867687106132507,-0.19026742875576,-0.348602622747421,-0.937260985374451,-0.00423546927049756,0.0584911406040192,-0.998257875442505,0.00773489195853472,-0.228360667824745,-0.973133087158203,0.0293823890388012,-0.259278893470764,-0.962871432304382,0.0751866698265076,0.37926197052002,-0.925250887870789,0.00845001172274351,-0.195745974779129,-0.976034998893738,-0.0950746983289719,-0.278239190578461,-0.960499405860901,0.00488710030913353,-0.530037462711334,-0.84759122133255,0.0254851393401623,-0.0399438589811325,-0.986638188362122,-0.157954350113869,0.0234622303396463,-0.98358142375946,0.178933382034302,0.598421812057495,-0.800914466381073,0.0206705015152693,-0.252996981143951,-0.967307984828949,-0.0175425559282303,-0.228360667824745,-0.973133087158203,0.0293823890388012,-0.530037462711334,-0.84759122133255,0.0254851393401623,0.709778606891632,-0.704119026660919,-0.0207548215985298,-0.120564557611942,-0.992467641830444,0.0217324141412973,0.283600002527237,-0.931945025920868,0.225941568613052,-0.349539577960968,-0.93690824508667,0.00499056465923786,-0.0959452539682388,-0.98688930273056,0.129784196615219,0.283600002527237,-0.931945025920868,0.225941568613052,-0.34965991973877,-0.838463068008423,0.417992502450943,0.0441250503063202,-0.998691856861115,0.0258368067443371,-0.0959452539682388,-0.98688930273056,0.129784196615219,0.283600002527237,-0.931945025920868,0.225941568613052,-0.0959452539682388,-0.98688930273056,0.129784196615219,0.709778606891632,-0.704119026660919,-0.0207548215985298,-0.0266627948731184,-0.955519020557404,0.29372176527977,-0.267549008131027,-0.963524699211121,-0.00614044489338994,0.420894503593445,-0.907108008861542,0.00169243721757084,0.02930623665452,-0.999364376068115,-0.0202965289354324,-0.0266627948731184,-0.955519020557404,0.29372176527977,-0.395933300256729,-0.917888045310974,-0.0268038287758827,-0.540094912052155,-0.818718612194061,-0.194929257035255,0.058076448738575,-0.99445766210556,-0.0876425951719284,
- 0.0760220065712929,-0.997068405151367,0.00867603998631239,0.00653918785974383,-0.991588592529297,-0.129264384508133,0.00122476473916322,-0.967803120613098,0.251705169677734,0.0343675129115582,-0.999409258365631,0.000257752253673971,-0.18230913579464,-0.983225047588348,0.00566301960498095,-0.377415627241135,-0.918088257312775,-0.121125519275665,-0.116687543690205,-0.99271559715271,-0.0299952551722527,-0.445648223161697,-0.891772866249084,-0.0783502086997032,-0.00214617792516947,-0.959873139858246,-0.280426383018494,0.394762605428696,-0.875298023223877,0.279313027858734,0.420894503593445,-0.907108008861542,0.00169243721757084,0.281093776226044,-0.956666171550751,-0.0759996399283409,-0.043217483907938,-0.973532557487488,-0.224425062537193,-0.603590369224548,-0.795926034450531,-0.0466936565935612,-0.626871764659882,-0.759974777698517,0.171668589115143,-0.45925760269165,-0.867687106132507,-0.19026742875576,-0.377415627241135,-0.918088257312775,-0.121125519275665,-0.18230913579464,-0.983225047588348,0.00566301960498095,0.394762605428696,-0.875298023223877,0.279313027858734,-0.120564557611942,-0.992467641830444,0.0217324141412973,0.00122476473916322,-0.967803120613098,0.251705169677734,0.0343675129115582,-0.999409258365631,0.000257752253673971,0.00781772471964359,-0.967378675937653,-0.253214001655579,-0.0178192872554064,-0.928102374076843,0.37189844250679,0.141590178012848,-0.989008069038391,0.0426039732992649,0.0343675129115582,-0.999409258365631,0.000257752253673971,-0.377415627241135,-0.918088257312775,-0.121125519275665,0.00781772471964359,-0.967378675937653,-0.253214001655579,-0.377415627241135,-0.918088257312775,-0.121125519275665,-0.0266627948731184,-0.955519020557404,0.29372176527977,-0.540094912052155,-0.818718612194061,-0.194929257035255,-0.144543021917343,-0.945323884487152,-0.292352616786957,-0.0997235476970673,-0.994762718677521,-0.022415379062295,-0.00225884327664971,-0.966142654418945,-0.257998704910278,-0.626871764659882,-0.759974777698517,0.171668589115143,-0.603590369224548,-0.795926034450531,-0.0466936565935612,
- 0.0312512256205082,-0.984835922718048,0.170650362968445,0.247104033827782,-0.959090292453766,0.138150006532669,-0.597915530204773,-0.801528990268707,0.00695517426356673,0.0554564632475376,-0.99766993522644,0.039741437882185,-0.597525596618652,-0.801665306091309,0.0171992387622595,-0.0399438589811325,-0.986638188362122,-0.157954350113869,-0.530037462711334,-0.84759122133255,0.0254851393401623,-0.597525596618652,-0.801665306091309,0.0171992387622595,0.44530525803566,-0.895371437072754,-0.00365475937724113,0.0390776470303535,-0.988713026046753,-0.144635125994682,-0.395933300256729,-0.917888045310974,-0.0268038287758827,0.569894075393677,-0.758152902126312,-0.316898673772812,0.497980833053589,-0.866543054580688,-0.0334401875734329,0.0760220065712929,-0.997068405151367,0.00867603998631239,0.0293344855308533,-0.928945779800415,-0.369051873683929,-0.278239190578461,-0.960499405860901,0.00488710030913353,-0.195745974779129,-0.976034998893738,-0.0950746983289719,-0.0024605430662632,-0.950316607952118,0.311275154352188,0.172610625624657,-0.984346628189087,0.0355991460382938,-0.723661601543427,-0.689806759357452,0.0219189170747995,-0.0462173409759998,-0.998905420303345,-0.00720637151971459,-0.395933300256729,-0.917888045310974,-0.0268038287758827,-0.0399438589811325,-0.986638188362122,-0.157954350113869,-0.597525596618652,-0.801665306091309,0.0171992387622595,-0.0266627948731184,-0.955519020557404,0.29372176527977,-0.0399438589811325,-0.986638188362122,-0.157954350113869,-0.395933300256729,-0.917888045310974,-0.0268038287758827,0.590608060359955,-0.806354701519012,-0.0312139950692654,0.0496757812798023,-0.981413960456848,-0.185361847281456,-0.34965991973877,-0.838463068008423,0.417992502450943,0.125362202525139,-0.912537395954132,-0.389306843280792,-0.270774960517883,-0.962583124637604,-0.0107108941301703,-0.272651761770248,-0.95560896396637,-0.111680038273335,0.0312512256205082,-0.984835922718048,0.170650362968445,-0.45925760269165,-0.867687106132507,-0.19026742875576,-0.626871764659882,-0.759974777698517,0.171668589115143,
- -0.45925760269165,-0.867687106132507,-0.19026742875576,-0.043217483907938,-0.973532557487488,-0.224425062537193,-0.626871764659882,-0.759974777698517,0.171668589115143,-0.34965991973877,-0.838463068008423,0.417992502450943,0.247104033827782,-0.959090292453766,0.138150006532669,0.590608060359955,-0.806354701519012,-0.0312139950692654,0.37926197052002,-0.925250887870789,0.00845001172274351,-0.278239190578461,-0.960499405860901,0.00488710030913353,-0.0484082996845245,-0.997862577438354,0.0438966527581215,-0.416999965906143,-0.908669054508209,0.0207729917019606,-0.0283568594604731,-0.999554455280304,0.00931383296847343,-0.18230913579464,-0.983225047588348,0.00566301960498095,-0.043217483907938,-0.973532557487488,-0.224425062537193,-0.45925760269165,-0.867687106132507,-0.19026742875576,-0.00225884327664971,-0.966142654418945,-0.257998704910278,-0.257570564746857,-0.940040409564972,-0.223565429449081,-0.144543021917343,-0.945323884487152,-0.292352616786957,-0.0418602302670479,-0.9990354180336,0.013264431618154,-0.257570564746857,-0.940040409564972,-0.223565429449081,-0.00225884327664971,-0.966142654418945,-0.257998704910278,0.497980833053589,-0.866543054580688,-0.0334401875734329,-0.0495900362730026,-0.998662531375885,-0.0146308317780495,0.00653918785974383,-0.991588592529297,-0.129264384508133,0.0760220065712929,-0.997068405151367,0.00867603998631239,0.00441165221855044,-0.985693275928497,0.168490797281265,-0.155473932623863,-0.986947596073151,0.0419810526072979,0.125362202525139,-0.912537395954132,-0.389306843280792,-0.272651761770248,-0.95560896396637,-0.111680038273335,-0.272651761770248,-0.95560896396637,-0.111680038273335,-0.217919483780861,-0.957747220993042,-0.187700212001801,0.00441165221855044,-0.985693275928497,0.168490797281265,-0.00641288096085191,-0.999383389949799,-0.0345243066549301,-0.0959452539682388,-0.98688930273056,0.129784196615219,-0.349539577960968,-0.93690824508667,0.00499056465923786,-0.603590369224548,-0.795926034450531,-0.0466936565935612,-0.259278893470764,-0.962871432304382,0.0751866698265076,
- 0.0209385566413403,-0.910488963127136,-0.413002878427505,-0.267549008131027,-0.963524699211121,-0.00614044489338994,-0.0266627948731184,-0.955519020557404,0.29372176527977,-0.377415627241135,-0.918088257312775,-0.121125519275665,0.0206088460981846,-0.99955016374588,0.0217906385660172,0.0209385566413403,-0.910488963127136,-0.413002878427505,-0.252996981143951,-0.967307984828949,-0.0175425559282303,-0.597915530204773,-0.801528990268707,0.00695517426356673,0.0209385566413403,-0.910488963127136,-0.413002878427505,-0.259278893470764,-0.962871432304382,0.0751866698265076,-0.252996981143951,-0.967307984828949,-0.0175425559282303,-0.321637213230133,-0.946503162384033,0.0261018220335245,-0.377415627241135,-0.918088257312775,-0.121125519275665,-0.45925760269165,-0.867687106132507,-0.19026742875576,-0.267549008131027,-0.963524699211121,-0.00614044489338994,-0.377415627241135,-0.918088257312775,-0.121125519275665,-0.321637213230133,-0.946503162384033,0.0261018220335245,-0.270774960517883,-0.962583124637604,-0.0107108941301703,-0.0111622158437967,-0.997381150722504,-0.0714580416679382,-0.272651761770248,-0.95560896396637,-0.111680038273335,0.22145913541317,-0.933506667613983,-0.281994849443436,0.355083167552948,-0.846058428287506,-0.397619366645813,-0.0462173409759998,-0.998905420303345,-0.00720637151971459,0.420894503593445,-0.907108008861542,0.00169243721757084,0.394762605428696,-0.875298023223877,0.279313027858734,0.02930623665452,-0.999364376068115,-0.0202965289354324,0.02930623665452,-0.999364376068115,-0.0202965289354324,0.394762605428696,-0.875298023223877,0.279313027858734,0.0234622303396463,-0.98358142375946,0.178933382034302,-0.0193233601748943,-0.973334968090057,0.228572800755501,-0.195745974779129,-0.976034998893738,-0.0950746983289719,-0.217919483780861,-0.957747220993042,-0.187700212001801,0.590608060359955,-0.806354701519012,-0.0312139950692654,0.247104033827782,-0.959090292453766,0.138150006532669,0.31065833568573,-0.949734508991241,-0.0386756956577301,0.598421812057495,-0.800914466381073,0.0206705015152693,0.0234622303396463,-0.98358142375946,0.178933382034302,
- 0.78235125541687,-0.615529000759125,0.0951345041394234,-0.127459555864334,-0.825995326042175,0.549077212810516,-0.120564557611942,-0.992467641830444,0.0217324141412973,0.394762605428696,-0.875298023223877,0.279313027858734,0.281093776226044,-0.956666171550751,-0.0759996399283409,0.394762605428696,-0.875298023223877,0.279313027858734,0.78235125541687,-0.615529000759125,0.0951345041394234,0.0234622303396463,-0.98358142375946,0.178933382034302,0.418149024248123,-0.908371865749359,0.00346270529553294,0.355083167552948,-0.846058428287506,-0.397619366645813,0.058076448738575,-0.99445766210556,-0.0876425951719284,0.283600002527237,-0.931945025920868,0.225941568613052,0.420894503593445,-0.907108008861542,0.00169243721757084,-0.349539577960968,-0.93690824508667,0.00499056465923786,0.709778606891632,-0.704119026660919,-0.0207548215985298,-0.0959452539682388,-0.98688930273056,0.129784196615219,0.0441250503063202,-0.998691856861115,0.0258368067443371,0.0441250503063202,-0.998691856861115,0.0258368067443371,-0.0111622158437967,-0.997381150722504,-0.0714580416679382,-0.270774960517883,-0.962583124637604,-0.0107108941301703,0.709778606891632,-0.704119026660919,-0.0207548215985298,0.418149024248123,-0.908371865749359,0.00346270529553294,-0.0534481443464756,-0.9985471367836,-0.00685716047883034,0.355083167552948,-0.846058428287506,-0.397619366645813,-0.155473932623863,-0.986947596073151,0.0419810526072979,-0.0997235476970673,-0.994762718677521,-0.022415379062295,-0.116687543690205,-0.99271559715271,-0.0299952551722527,-0.560465931892395,-0.828173398971558,-0.00259028631262481,-0.144543021917343,-0.945323884487152,-0.292352616786957,-0.445648223161697,-0.891772866249084,-0.0783502086997032,-0.116687543690205,-0.99271559715271,-0.0299952551722527,-0.0997235476970673,-0.994762718677521,-0.022415379062295,-0.176224038004875,-0.966065406799316,-0.188845828175545,-0.0274118967354298,-0.999032437801361,-0.0343935377895832,-0.416999965906143,-0.908669054508209,0.0207729917019606,-0.0484082996845245,-0.997862577438354,0.0438966527581215,0.226167291402817,-0.697549521923065,-0.679906666278839,
- -0.0418602302670479,-0.9990354180336,0.013264431618154,-0.416999965906143,-0.908669054508209,0.0207729917019606,-0.0274118967354298,-0.999032437801361,-0.0343935377895832,-0.217919483780861,-0.957747220993042,-0.187700212001801,0.37926197052002,-0.925250887870789,0.00845001172274351,0.00753648951649666,-0.993303775787354,-0.115286163985729,-0.222348630428314,-0.974945306777954,-0.00654233573004603,0.104744471609592,-0.994473278522491,-0.00718065351247787,-0.195745974779129,-0.976034998893738,-0.0950746983289719,0.247104033827782,-0.959090292453766,0.138150006532669,0.361262381076813,-0.805258691310883,0.470157295465469,0.31065833568573,-0.949734508991241,-0.0386756956577301,0.22145913541317,-0.933506667613983,-0.281994849443436,-0.0462173409759998,-0.998905420303345,-0.00720637151971459,-0.723661601543427,-0.689806759357452,0.0219189170747995,0.22145913541317,-0.933506667613983,-0.281994849443436,-0.723661601543427,-0.689806759357452,0.0219189170747995,0.569894075393677,-0.758152902126312,-0.316898673772812,0.569894075393677,-0.758152902126312,-0.316898673772812,0.0760220065712929,-0.997068405151367,0.00867603998631239,0.22145913541317,-0.933506667613983,-0.281994849443436,-0.195745974779129,-0.976034998893738,-0.0950746983289719,0.37926197052002,-0.925250887870789,0.00845001172274351,-0.217919483780861,-0.957747220993042,-0.187700212001801,-0.0193233601748943,-0.973334968090057,0.228572800755501,-0.222348630428314,-0.974945306777954,-0.00654233573004603,-0.195745974779129,-0.976034998893738,-0.0950746983289719,0.0496757812798023,-0.981413960456848,-0.185361847281456,0.0131440181285143,-0.977708995342255,-0.209552690386772,-0.0193233601748943,-0.973334968090057,0.228572800755501,-0.0111622158437967,-0.997381150722504,-0.0714580416679382,0.0441250503063202,-0.998691856861115,0.0258368067443371,0.00781772471964359,-0.967378675937653,-0.253214001655579,-0.540094912052155,-0.818718612194061,-0.194929257035255,0.400897234678268,-0.892997205257416,-0.204541847109795,-0.0534481443464756,-0.9985471367836,-0.00685716047883034,
- 0.125362202525139,-0.912537395954132,-0.389306843280792,-0.155473932623863,-0.986947596073151,0.0419810526072979,0.418149024248123,-0.908371865749359,0.00346270529553294,0.125362202525139,-0.912537395954132,-0.389306843280792,-0.0534481443464756,-0.9985471367836,-0.00685716047883034,0.418149024248123,-0.908371865749359,0.00346270529553294,-0.270774960517883,-0.962583124637604,-0.0107108941301703,0.125362202525139,-0.912537395954132,-0.389306843280792,-0.0024605430662632,-0.950316607952118,0.311275154352188,-0.0462173409759998,-0.998905420303345,-0.00720637151971459,-0.0482399351894856,-0.99878066778183,0.0104871327057481,-0.00214617792516947,-0.959873139858246,-0.280426383018494,0.058076448738575,-0.99445766210556,-0.0876425951719284,0.00122476473916322,-0.967803120613098,0.251705169677734,-0.120564557611942,-0.992467641830444,0.0217324141412973,0.418149024248123,-0.908371865749359,0.00346270529553294,-0.530037462711334,-0.84759122133255,0.0254851393401623,0.0554564632475376,-0.99766993522644,0.039741437882185,-0.597915530204773,-0.801528990268707,0.00695517426356673,-0.252996981143951,-0.967307984828949,-0.0175425559282303,-0.321637213230133,-0.946503162384033,0.0261018220335245,0.0312512256205082,-0.984835922718048,0.170650362968445,-0.00641288096085191,-0.999383389949799,-0.0345243066549301,-0.349539577960968,-0.93690824508667,0.00499056465923786,-0.18230913579464,-0.983225047588348,0.00566301960498095,0.0343675129115582,-0.999409258365631,0.000257752253673971,0.141590178012848,-0.989008069038391,0.0426039732992649,0.546835839748383,-0.837121367454529,0.0140845291316509,0.321670293807983,-0.946761727333069,-0.0130564514547586,-0.00124084122944623,-0.999188601970673,-0.0402549616992474,-0.229598060250282,-0.972832143306732,-0.0297057684510946,0.0584911406040192,-0.998257875442505,0.00773489195853472,-0.348602622747421,-0.937260985374451,-0.00423546927049756,-0.18230913579464,-0.983225047588348,0.00566301960498095,0.546835839748383,-0.837121367454529,0.0140845291316509,0.0344062075018883,-0.995278775691986,0.0907552391290665,
- -0.043217483907938,-0.973532557487488,-0.224425062537193,-0.0507102012634277,-0.99836266040802,0.0264686085283756,-0.348602622747421,-0.937260985374451,-0.00423546927049756,-0.259278893470764,-0.962871432304382,0.0751866698265076,-0.603590369224548,-0.795926034450531,-0.0466936565935612,0.00781772471964359,-0.967378675937653,-0.253214001655579,0.0390776470303535,-0.988713026046753,-0.144635125994682,-0.010289485566318,-0.996359527111053,-0.0846268907189369,-0.0178192872554064,-0.928102374076843,0.37189844250679,-0.0024605430662632,-0.950316607952118,0.311275154352188,0.335714936256409,-0.924505412578583,-0.180513486266136,0.172610625624657,-0.984346628189087,0.0355991460382938,0.0206088460981846,-0.99955016374588,0.0217906385660172,-0.597915530204773,-0.801528990268707,0.00695517426356673,-0.34965991973877,-0.838463068008423,0.417992502450943,-0.0111622158437967,-0.997381150722504,-0.0714580416679382,-0.217919483780861,-0.957747220993042,-0.187700212001801,-0.272651761770248,-0.95560896396637,-0.111680038273335,0.22145913541317,-0.933506667613983,-0.281994849443436,0.0760220065712929,-0.997068405151367,0.00867603998631239,0.058076448738575,-0.99445766210556,-0.0876425951719284,0.355083167552948,-0.846058428287506,-0.397619366645813,0.0344062075018883,-0.995278775691986,0.0907552391290665,-0.000348297035088763,-0.995160579681396,-0.0982617363333702,-0.0507102012634277,-0.99836266040802,0.0264686085283756,-0.043217483907938,-0.973532557487488,-0.224425062537193,0.827512145042419,-0.453224748373032,-0.331377387046814,0.301791906356812,-0.487156450748444,-0.819512188434601,0.321670293807983,-0.946761727333069,-0.0130564514547586,-0.000348297035088763,-0.995160579681396,-0.0982617363333702,0.546835839748383,-0.837121367454529,0.0140845291316509,0.455386579036713,-0.46219077706337,0.760922312736511,0.890289008617401,-0.412073701620102,0.193857625126839,-0.010289485566318,-0.996359527111053,-0.0846268907189369,-0.525144636631012,-0.85080623626709,-0.0187589079141617,-0.438736200332642,-0.378659635782242,-0.81494015455246,
- -0.64347779750824,-0.733613431453705,-0.218512445688248,0.301791906356812,-0.487156450748444,-0.819512188434601,-0.00124084122944623,-0.999188601970673,-0.0402549616992474,0.321670293807983,-0.946761727333069,-0.0130564514547586,-0.397876501083374,-0.474978059530258,0.784914076328278,-0.0178192872554064,-0.928102374076843,0.37189844250679,-0.872182011604309,-0.307443886995316,0.380495518445969,0.0344062075018883,-0.995278775691986,0.0907552391290665,0.546835839748383,-0.837121367454529,0.0140845291316509,0.890289008617401,-0.412073701620102,0.193857625126839,0.827512145042419,-0.453224748373032,-0.331377387046814,0.513197898864746,-0.853554368019104,-0.0898488163948059,0.0344062075018883,-0.995278775691986,0.0907552391290665,0.890289008617401,-0.412073701620102,0.193857625126839,-0.0507102012634277,-0.99836266040802,0.0264686085283756,-0.000348297035088763,-0.995160579681396,-0.0982617363333702,0.321670293807983,-0.946761727333069,-0.0130564514547586,-0.348602622747421,-0.937260985374451,-0.00423546927049756,-0.000348297035088763,-0.995160579681396,-0.0982617363333702,0.513197898864746,-0.853554368019104,-0.0898488163948059,0.827512145042419,-0.453224748373032,-0.331377387046814,-0.229598060250282,-0.972832143306732,-0.0297057684510946,-0.00124084122944623,-0.999188601970673,-0.0402549616992474,0.301791906356812,-0.487156450748444,-0.819512188434601,-0.151623249053955,-0.417672961950302,-0.895856976509094,-0.000348297035088763,-0.995160579681396,-0.0982617363333702,0.0344062075018883,-0.995278775691986,0.0907552391290665,0.513197898864746,-0.853554368019104,-0.0898488163948059,-0.0178192872554064,-0.928102374076843,0.37189844250679,-0.64347779750824,-0.733613431453705,-0.218512445688248,-0.872182011604309,-0.307443886995316,0.380495518445969,-0.0178192872554064,-0.928102374076843,0.37189844250679,-0.010289485566318,-0.996359527111053,-0.0846268907189369,-0.64347779750824,-0.733613431453705,-0.218512445688248,0.141590178012848,-0.989008069038391,0.0426039732992649,-0.0178192872554064,-0.928102374076843,0.37189844250679,
- -0.397876501083374,-0.474978059530258,0.784914076328278,-0.965054869651794,-0.028598764911294,0.260482758283615,0.0109328869730234,-0.969808340072632,-0.2436233907938,0.0131555758416653,-0.999909698963165,-0.00273277680389583,-0.00502141611650586,-0.998216807842255,0.0594809204339981,0.378617495298386,-0.923316955566406,0.064301572740078,-0.608619689941406,-0.793432474136353,-0.00685690622776747,-0.0412430725991726,-0.972355842590332,-0.229832783341408,0.0620576329529285,-0.997954487800598,-0.0153544330969453,0.023570416495204,-0.999722063541412,-0.000579284853301942,0.533589124679565,-0.0177971534430981,-0.845556557178497,0.0109328869730234,-0.969808340072632,-0.2436233907938,-0.965054869651794,-0.028598764911294,0.260482758283615,-0.905494391918182,-0.0265023596584797,-0.423529624938965,-0.645650744438171,-0.0332531668245792,-0.762908339500427,0.533589124679565,-0.0177971534430981,-0.845556557178497,0.023570416495204,-0.999722063541412,-0.000579284853301942,0.0620576329529285,-0.997954487800598,-0.0153544330969453,0.0105570647865534,-0.996177017688751,-0.0867172032594681,-0.0588989071547985,-0.979549825191498,0.192388013005257,-0.466681838035584,-0.884423017501831,0.00199529970996082,0.0620576329529285,-0.997954487800598,-0.0153544330969453,0.533589124679565,-0.0177971534430981,-0.845556557178497,0.0105570647865534,-0.996177017688751,-0.0867172032594681,-0.645650744438171,-0.0332531668245792,-0.762908339500427,0.0109328869730234,-0.969808340072632,-0.2436233907938,-0.905494391918182,-0.0265023596584797,-0.423529624938965,0.023570416495204,-0.999722063541412,-0.000579284853301942,0.0109328869730234,-0.969808340072632,-0.2436233907938,-0.645650744438171,-0.0332531668245792,-0.762908339500427,0.533589124679565,-0.0177971534430981,-0.845556557178497,0.998306572437286,-0.0225472263991833,0.0536247976124287,0.0105570647865534,-0.996177017688751,-0.0867172032594681,-0.00502141611650586,-0.998216807842255,0.0594809204339981,-0.0412430725991726,-0.972355842590332,-0.229832783341408,-0.0588989071547985,-0.979549825191498,0.192388013005257,
- 0.0105570647865534,-0.996177017688751,-0.0867172032594681,0.023570416495204,-0.999722063541412,-0.000579284853301942,0.0620576329529285,-0.997954487800598,-0.0153544330969453,-0.466681838035584,-0.884423017501831,0.00199529970996082,-0.177321791648865,-0.982595443725586,0.0553443022072315,0.0443943478167057,-0.998884618282318,-0.0160844307392836,-0.265328615903854,-0.963987231254578,-0.0181473027914763,-0.283502787351608,-0.955724954605103,0.0788415744900703,-0.213466987013817,-0.97656124830246,0.0275678709149361,0.023570416495204,-0.999722063541412,-0.000579284853301942,-0.177321791648865,-0.982595443725586,0.0553443022072315,0.0328578352928162,-0.988028943538666,0.15072874724865,0.0109328869730234,-0.969808340072632,-0.2436233907938,0.0105570647865534,-0.996177017688751,-0.0867172032594681,0.998306572437286,-0.0225472263991833,0.0536247976124287,-0.00502141611650586,-0.998216807842255,0.0594809204339981,0.0328578352928162,-0.988028943538666,0.15072874724865,0.0384389981627464,-0.930041015148163,-0.365439504384995,0.0131555758416653,-0.999909698963165,-0.00273277680389583,0.0109328869730234,-0.969808340072632,-0.2436233907938,0.226167291402817,-0.697549521923065,-0.679906666278839,-0.0274118967354298,-0.999032437801361,-0.0343935377895832,0.0384389981627464,-0.930041015148163,-0.365439504384995,-0.177321791648865,-0.982595443725586,0.0553443022072315,-0.466681838035584,-0.884423017501831,0.00199529970996082,-0.445648223161697,-0.891772866249084,-0.0783502086997032,-0.144543021917343,-0.945323884487152,-0.292352616786957,-0.0412430725991726,-0.972355842590332,-0.229832783341408,-0.608619689941406,-0.793432474136353,-0.00685690622776747,0.335714936256409,-0.924505412578583,-0.180513486266136,-0.702105760574341,-0.709130585193634,-0.0646638497710228,0.0328578352928162,-0.988028943538666,0.15072874724865,-0.177321791648865,-0.982595443725586,0.0553443022072315,-0.144543021917343,-0.945323884487152,-0.292352616786957,-0.257570564746857,-0.940040409564972,-0.223565429449081,0.0328578352928162,-0.988028943538666,0.15072874724865,
- -0.144543021917343,-0.945323884487152,-0.292352616786957,0.0131555758416653,-0.999909698963165,-0.00273277680389583,0.0384389981627464,-0.930041015148163,-0.365439504384995,0.0443943478167057,-0.998884618282318,-0.0160844307392836,-0.213466987013817,-0.97656124830246,0.0275678709149361,0.0384389981627464,-0.930041015148163,-0.365439504384995,-0.257570564746857,-0.940040409564972,-0.223565429449081,0.226167291402817,-0.697549521923065,-0.679906666278839,-0.265328615903854,-0.963987231254578,-0.0181473027914763,0.0443943478167057,-0.998884618282318,-0.0160844307392836,-0.0274118967354298,-0.999032437801361,-0.0343935377895832,-0.176224038004875,-0.966065406799316,-0.188845828175545,0.0384389981627464,-0.930041015148163,-0.365439504384995,0.0328578352928162,-0.988028943538666,0.15072874724865,-0.257570564746857,-0.940040409564972,-0.223565429449081,-0.702105760574341,-0.709130585193634,-0.0646638497710228,-0.623078167438507,-0.708977043628693,-0.330341011285782,-0.0588989071547985,-0.979549825191498,0.192388013005257,-0.0412430725991726,-0.972355842590332,-0.229832783341408,-0.466681838035584,-0.884423017501831,0.00199529970996082,-0.0588989071547985,-0.979549825191498,0.192388013005257,-0.445648223161697,-0.891772866249084,-0.0783502086997032,0.999397695064545,-0.00385021604597569,-0.0344882346689701,0.999430418014526,0.00658406782895327,-0.0331011451780796,0.998965620994568,0.0300106927752495,-0.0341628193855286,0.998902142047882,0.028736799955368,-0.0369974635541439,0.999290347099304,0.00635178340598941,-0.0371286533772945,0.999224007129669,-0.0212003886699677,-0.0331954099237919,0.0131555758416653,-0.999909698963165,-0.00273277680389583,-0.213466987013817,-0.97656124830246,0.0275678709149361,-0.350239813327789,-0.022308012470603,0.936394333839417,-0.965054869651794,-0.028598764911294,0.260482758283615,0.998306572437286,-0.0225472263991833,0.0536247976124287,0.378617495298386,-0.923316955566406,0.064301572740078,-0.00502141611650586,-0.998216807842255,0.0594809204339981,-0.362357318401337,-0.00679564056918025,0.932014465332031,
- -0.350239813327789,-0.022308012470603,0.936394333839417,-0.213466987013817,-0.97656124830246,0.0275678709149361,-0.283502787351608,-0.955724954605103,0.0788415744900703,-0.0024605430662632,-0.950316607952118,0.311275154352188,-0.702105760574341,-0.709130585193634,-0.0646638497710228,0.335714936256409,-0.924505412578583,-0.180513486266136,0.00122476473916322,-0.967803120613098,0.251705169677734,0.00653918785974383,-0.991588592529297,-0.129264384508133,0.394762605428696,-0.875298023223877,0.279313027858734,0.355083167552948,-0.846058428287506,-0.397619366645813,-0.0482399351894856,-0.99878066778183,0.0104871327057481,-0.0462173409759998,-0.998905420303345,-0.00720637151971459,-0.0534481443464756,-0.9985471367836,-0.00685716047883034,-0.560465931892395,-0.828173398971558,-0.00259028631262481,-0.0482399351894856,-0.99878066778183,0.0104871327057481,0.355083167552948,-0.846058428287506,-0.397619366645813,-0.155473932623863,-0.986947596073151,0.0419810526072979,-0.560465931892395,-0.828173398971558,-0.00259028631262481,-0.0534481443464756,-0.9985471367836,-0.00685716047883034,-0.0193233601748943,-0.973334968090057,0.228572800755501,-0.217919483780861,-0.957747220993042,-0.187700212001801,-0.0111622158437967,-0.997381150722504,-0.0714580416679382,0.104744471609592,-0.994473278522491,-0.00718065351247787,-0.222348630428314,-0.974945306777954,-0.00654233573004603,0.0254535470157862,-0.999645292758942,-0.0078423423692584,0.590608060359955,-0.806354701519012,-0.0312139950692654,0.31065833568573,-0.949734508991241,-0.0386756956577301,-0.34965991973877,-0.838463068008423,0.417992502450943,0.0496757812798023,-0.981413960456848,-0.185361847281456,0.0441250503063202,-0.998691856861115,0.0258368067443371,0.0384389981627464,-0.930041015148163,-0.365439504384995,-0.0274118967354298,-0.999032437801361,-0.0343935377895832,0.0443943478167057,-0.998884618282318,-0.0160844307392836,-0.395933300256729,-0.917888045310974,-0.0268038287758827,0.0390776470303535,-0.988713026046753,-0.144635125994682,0.400897234678268,-0.892997205257416,-0.204541847109795,
- -0.540094912052155,-0.818718612194061,-0.194929257035255,0.0390776470303535,-0.988713026046753,-0.144635125994682,0.44530525803566,-0.895371437072754,-0.00365475937724113,-0.525144636631012,-0.85080623626709,-0.0187589079141617,-0.010289485566318,-0.996359527111053,-0.0846268907189369,0.00653918785974383,-0.991588592529297,-0.129264384508133,0.78235125541687,-0.615529000759125,0.0951345041394234,0.394762605428696,-0.875298023223877,0.279313027858734,-0.127459555864334,-0.825995326042175,0.549077212810516,0.78235125541687,-0.615529000759125,0.0951345041394234,0.00653918785974383,-0.991588592529297,-0.129264384508133,-0.0495900362730026,-0.998662531375885,-0.0146308317780495,-0.127459555864334,-0.825995326042175,0.549077212810516,0.00653918785974383,-0.991588592529297,-0.129264384508133,0.0312512256205082,-0.984835922718048,0.170650362968445,0.0209385566413403,-0.910488963127136,-0.413002878427505,0.0206088460981846,-0.99955016374588,0.0217906385660172,-0.00641288096085191,-0.999383389949799,-0.0345243066549301,-0.120564557611942,-0.992467641830444,0.0217324141412973,0.281093776226044,-0.956666171550751,-0.0759996399283409,0.283600002527237,-0.931945025920868,0.225941568613052,0.281093776226044,-0.956666171550751,-0.0759996399283409,0.420894503593445,-0.907108008861542,0.00169243721757084,0.283600002527237,-0.931945025920868,0.225941568613052,0.0554564632475376,-0.99766993522644,0.039741437882185,0.361262381076813,-0.805258691310883,0.470157295465469,0.247104033827782,-0.959090292453766,0.138150006532669,0.0254535470157862,-0.999645292758942,-0.0078423423692584,-0.222348630428314,-0.974945306777954,-0.00654233573004603,-0.0193233601748943,-0.973334968090057,0.228572800755501,0.0131440181285143,-0.977708995342255,-0.209552690386772,0.590608060359955,-0.806354701519012,-0.0312139950692654,0.0254535470157862,-0.999645292758942,-0.0078423423692584,0.0131440181285143,-0.977708995342255,-0.209552690386772,0.37926197052002,-0.925250887870789,0.00845001172274351,-0.0283568594604731,-0.999554455280304,0.00931383296847343,-0.00301964534446597,-0.999137818813324,0.0414087846875191,
- 0.00753648951649666,-0.993303775787354,-0.115286163985729,-0.00301964534446597,-0.999137818813324,0.0414087846875191,-0.0283568594604731,-0.999554455280304,0.00931383296847343,-0.416999965906143,-0.908669054508209,0.0207729917019606,-0.0418602302670479,-0.9990354180336,0.013264431618154,0.546835839748383,-0.837121367454529,0.0140845291316509,0.141590178012848,-0.989008069038391,0.0426039732992649,-0.397876501083374,-0.474978059530258,0.784914076328278,0.455386579036713,-0.46219077706337,0.760922312736511,-0.623078167438507,-0.708977043628693,-0.330341011285782,-0.00214617792516947,-0.959873139858246,-0.280426383018494,-0.445648223161697,-0.891772866249084,-0.0783502086997032,-0.0588989071547985,-0.979549825191498,0.192388013005257,-0.623078167438507,-0.708977043628693,-0.330341011285782,-0.445648223161697,-0.891772866249084,-0.0783502086997032,0.00781772471964359,-0.967378675937653,-0.253214001655579,0.400897234678268,-0.892997205257416,-0.204541847109795,0.0390776470303535,-0.988713026046753,-0.144635125994682,0.00781772471964359,-0.967378675937653,-0.253214001655579,-0.377415627241135,-0.918088257312775,-0.121125519275665,-0.540094912052155,-0.818718612194061,-0.194929257035255,0.304516822099686,-0.909191429615021,0.283972650766373,0.299775898456573,-0.937661170959473,-0.175857841968536,0.28651025891304,-0.902489006519318,0.321598172187805,0.319518804550171,-0.946837484836578,-0.0375034362077713,0.830122888088226,-0.521364986896515,0.197673052549362,0.786936223506927,-0.616571009159088,0.0239086076617241,0.968926250934601,-0.247316271066666,0.00405099056661129,0.882091581821442,-0.451634019613266,-0.133944481611252,-0.474684506654739,-0.0364584811031818,0.879400610923767,-0.032244399189949,-0.995349764823914,0.0907699391245842,-0.0295149479061365,-0.999563276767731,-0.00145057495683432,-0.990953862667084,-0.0357529520988464,0.129353433847427,0.633561134338379,-0.772423386573792,-0.0442998893558979,0.0227844715118408,-0.96451210975647,-0.263053506612778,0.0317752808332443,-0.948305606842041,0.315764099359512,0.986546218395233,0.156556501984596,-0.0470808856189251,
- 0.876584947109222,-0.452823311090469,0.162941619753838,0.882091581821442,-0.451634019613266,-0.133944481611252,0.836402237415314,0.173667699098587,0.519875884056091,0.836542189121246,-0.529840767383575,0.139519944787025,0.0135670639574528,-0.0565270036458969,-0.998308897018433,0.88897317647934,0.286059260368347,-0.357626616954803,0.426076263189316,-0.904502689838409,-0.0182720627635717,0.206504479050636,-0.978445589542389,-0.000394548173062503,0.438401520252228,-0.898778676986694,0.000970386783592403,-0.125940024852753,-0.992036640644073,-0.00154768046922982,0.80842924118042,-0.50934886932373,-0.294967621564865,0.844629466533661,-0.511172950267792,0.159069865942001,0.848203957080841,-0.514236927032471,-0.126927092671394,0.849243104457855,-0.525010526180267,0.0561258010566235,0.836542189121246,-0.529840767383575,0.139519944787025,0.408273994922638,-0.82267689704895,-0.395619750022888,0.848203957080841,-0.514236927032471,-0.126927092671394,0.844629466533661,-0.511172950267792,0.159069865942001,0.368339598178864,-0.929669499397278,-0.00636593578383327,0.588874220848084,-0.807986080646515,-0.0196379031985998,0.209501981735229,-0.977791368961334,0.00573210977017879,0.756463587284088,-0.653885722160339,0.014015169814229,0.233973935246468,-0.972160696983337,-0.0126408468931913,0.284472674131393,-0.958593666553497,0.013167760334909,-0.436729043722153,-0.831010639667511,-0.344512790441513,-0.2821304500103,-0.71298623085022,0.641913592815399,0.633561134338379,-0.772423386573792,-0.0442998893558979,0.32685786485672,-0.909783780574799,-0.255846321582794,0.349141359329224,-0.928715169429779,0.124853320419788,0.592933177947998,-0.787217915058136,-0.1694645434618,0.583544731140137,-0.80915904045105,0.0688281878829002,0.426335990428925,-0.904368996620178,0.0188241750001907,0.706063628196716,-0.707608163356781,-0.0276547987014055,0.610421597957611,-0.755141019821167,-0.239055499434471,0.611280024051666,-0.758526742458344,-0.225773990154266,0.80842924118042,-0.50934886932373,-0.294967621564865,0.78767317533493,-0.615995705127716,-0.0109675033017993,
- 0.829549133777618,-0.557524085044861,0.0318628884851933,0.844629466533661,-0.511172950267792,0.159069865942001,-0.436729043722153,-0.831010639667511,-0.344512790441513,-0.174761906266212,-0.984307050704956,0.024453017860651,-0.0214612614363432,-0.980908691883087,0.193280816078186,0.410102069377899,-0.906149804592133,-0.103482700884342,0.492197483778,-0.870285034179688,0.0185942221432924,0.177555531263351,-0.922046661376953,-0.343953400850296,0.349141359329224,-0.928715169429779,0.124853320419788,0.438401520252228,-0.898778676986694,0.000970386783592403,0.460584819316864,-0.885635435581207,0.0592582672834396,0.240915074944496,-0.970227062702179,0.0248900149017572,0.612606287002563,-0.790304780006409,-0.011481593362987,0.583544731140137,-0.80915904045105,0.0688281878829002,0.592933177947998,-0.787217915058136,-0.1694645434618,-0.999747157096863,0.0181943271309137,-0.013219129294157,-0.997735977172852,0.0642256364226341,-0.0199505779892206,-0.998617053031921,0.0512516982853413,-0.0117191039025784,0.942629754543304,-0.333818793296814,0.00377729837782681,0.410102069377899,-0.906149804592133,-0.103482700884342,0.654437720775604,-0.756103754043579,0.00427774433046579,-0.0562317222356796,-0.99809342622757,0.0254463814198971,0.299775898456573,-0.937661170959473,-0.175857841968536,0.304516822099686,-0.909191429615021,0.283972650766373,0.465368002653122,-0.883996665477753,0.0445253476500511,0.426335990428925,-0.904368996620178,0.0188241750001907,0.583544731140137,-0.80915904045105,0.0688281878829002,-0.0562317222356796,-0.99809342622757,0.0254463814198971,0.756463587284088,-0.653885722160339,0.014015169814229,0.209501981735229,-0.977791368961334,0.00573210977017879,0.0610261373221874,-0.985048830509186,0.16110397875309,-0.125940024852753,-0.992036640644073,-0.00154768046922982,-0.2821304500103,-0.71298623085022,0.641913592815399,0.0610261373221874,-0.985048830509186,0.16110397875309,-0.999497771263123,-0.0295288376510143,-0.0115039767697454,-0.999206006526947,-0.038750696927309,-0.0092620300129056,-0.999747157096863,0.0181943271309137,-0.013219129294157,
- -0.998617053031921,0.0512516982853413,-0.0117191039025784,0.0639993920922279,-0.997844696044922,0.0144954901188612,0.345023602247238,-0.938039243221283,0.0322646200656891,0.251311749219894,-0.0460557788610458,-0.966809809207916,-0.436729043722153,-0.831010639667511,-0.344512790441513,0.621746361255646,-0.779925167560577,0.0717502683401108,-0.2821304500103,-0.71298623085022,0.641913592815399,0.0610261373221874,-0.985048830509186,0.16110397875309,-0.2821304500103,-0.71298623085022,0.641913592815399,0.756463587284088,-0.653885722160339,0.014015169814229,0.28651025891304,-0.902489006519318,0.321598172187805,0.206504479050636,-0.978445589542389,-0.000394548173062503,0.426076263189316,-0.904502689838409,-0.0182720627635717,0.319518804550171,-0.946837484836578,-0.0375034362077713,0.28651025891304,-0.902489006519318,0.321598172187805,0.631701469421387,-0.773764073848724,-0.047354020178318,0.460127264261246,-0.881864964962006,0.102942019701004,0.623188436031342,-0.776878237724304,-0.0899797827005386,0.624554395675659,-0.780210852622986,0.0346815101802349,0.599502384662628,-0.792242109775543,-0.113794662058353,0.571925342082977,-0.763860762119293,0.299028635025024,0.145052060484886,-0.989420413970947,0.00267799873836339,0.155881062150002,-0.987735271453857,-0.00894998200237751,0.247044593095779,-0.963976860046387,-0.0985782518982887,0.968926250934601,-0.247316271066666,0.00405099056661129,0.930674016475677,-0.309510797262192,-0.19506111741066,0.882091581821442,-0.451634019613266,-0.133944481611252,-0.0986132696270943,-0.99379700422287,0.0514106526970863,0.426076263189316,-0.904502689838409,-0.0182720627635717,0.154331505298615,-0.986313343048096,0.0580327287316322,0.0227844715118408,-0.96451210975647,-0.263053506612778,0.633561134338379,-0.772423386573792,-0.0442998893558979,0.618527412414551,-0.68658173084259,-0.38213774561882,0.460584819316864,-0.885635435581207,0.0592582672834396,0.247044593095779,-0.963976860046387,-0.0985782518982887,0.155881062150002,-0.987735271453857,-0.00894998200237751,-0.0986132696270943,-0.99379700422287,0.0514106526970863,
- 0.209501981735229,-0.977791368961334,0.00573210977017879,0.571925342082977,-0.763860762119293,0.299028635025024,0.145052060484886,-0.989420413970947,0.00267799873836339,0.056825302541256,-0.970472514629364,-0.234422877430916,0.028673779219389,-0.92013955116272,0.390539169311523,-0.0159916244447231,-0.999262750148773,0.0349028818309307,0.145052060484886,-0.989420413970947,0.00267799873836339,0.247044593095779,-0.963976860046387,-0.0985782518982887,0.056825302541256,-0.970472514629364,-0.234422877430916,0.247044593095779,-0.963976860046387,-0.0985782518982887,0.28651025891304,-0.902489006519318,0.321598172187805,0.460127264261246,-0.881864964962006,0.102942019701004,0.967005252838135,-0.245816558599472,-0.0668959319591522,0.78767317533493,-0.615995705127716,-0.0109675033017993,0.80842924118042,-0.50934886932373,-0.294967621564865,0.618527412414551,-0.68658173084259,-0.38213774561882,0.633561134338379,-0.772423386573792,-0.0442998893558979,0.349141359329224,-0.928715169429779,0.124853320419788,-0.0214612614363432,-0.980908691883087,0.193280816078186,-0.174761906266212,-0.984307050704956,0.024453017860651,0.258578687906265,-0.96456390619278,0.0524750389158726,-0.00989798922091722,-0.997612953186035,0.0683410093188286,0.299775898456573,-0.937661170959473,-0.175857841968536,-0.0562317222356796,-0.99809342622757,0.0254463814198971,-0.00989798922091722,-0.997612953186035,0.0683410093188286,0.598710536956787,-0.800891041755676,-0.0109197096899152,0.111077725887299,-0.9830521941185,-0.145843401551247,0.631701469421387,-0.773764073848724,-0.047354020178318,0.274277478456497,-0.886674463748932,-0.372263878583908,0.50222784280777,-0.864555299282074,0.0176454316824675,0.624554395675659,-0.780210852622986,0.0346815101802349,0.177555531263351,-0.922046661376953,-0.343953400850296,0.654437720775604,-0.756103754043579,0.00427774433046579,0.410102069377899,-0.906149804592133,-0.103482700884342,0.876584947109222,-0.452823311090469,0.162941619753838,0.980245769023895,-0.197333768010139,0.0133243426680565,0.413130670785904,-0.910491704940796,0.0181029159575701,
- 0.843290567398071,-0.53674042224884,-0.027764180675149,0.0731246173381805,-0.997172057628632,0.0173384919762611,-0.474684506654739,-0.0364584811031818,0.879400610923767,0.819854021072388,-0.0548492111265659,0.569939494132996,0.631701469421387,-0.773764073848724,-0.047354020178318,0.299775898456573,-0.937661170959473,-0.175857841968536,-0.00989798922091722,-0.997612953186035,0.0683410093188286,0.28651025891304,-0.902489006519318,0.321598172187805,0.299775898456573,-0.937661170959473,-0.175857841968536,0.631701469421387,-0.773764073848724,-0.047354020178318,0.706063628196716,-0.707608163356781,-0.0276547987014055,0.611280024051666,-0.758526742458344,-0.225773990154266,-0.436729043722153,-0.831010639667511,-0.344512790441513,0.695670127868652,-0.583087742328644,-0.419585138559341,0.368339598178864,-0.929669499397278,-0.00636593578383327,0.408493965864182,-0.91021054983139,-0.0681856200098991,0.349141359329224,-0.928715169429779,0.124853320419788,0.460584819316864,-0.885635435581207,0.0592582672834396,0.618527412414551,-0.68658173084259,-0.38213774561882,0.460584819316864,-0.885635435581207,0.0592582672834396,0.0227844715118408,-0.96451210975647,-0.263053506612778,0.618527412414551,-0.68658173084259,-0.38213774561882,-0.436729043722153,-0.831010639667511,-0.344512790441513,-0.0214612614363432,-0.980908691883087,0.193280816078186,0.706063628196716,-0.707608163356781,-0.0276547987014055,0.942629754543304,-0.333818793296814,0.00377729837782681,0.654437720775604,-0.756103754043579,0.00427774433046579,0.952708601951599,-0.303263545036316,0.019433256238699,0.942165374755859,-0.330228000879288,0.0572169944643974,0.835793197154999,-0.548985004425049,0.00808440521359444,0.155881062150002,-0.987735271453857,-0.00894998200237751,0.0227844715118408,-0.96451210975647,-0.263053506612778,0.460584819316864,-0.885635435581207,0.0592582672834396,0.80842924118042,-0.50934886932373,-0.294967621564865,0.88897317647934,0.286059260368347,-0.357626616954803,0.967005252838135,-0.245816558599472,-0.0668959319591522,0.836542189121246,-0.529840767383575,0.139519944787025,
- 0.88897317647934,0.286059260368347,-0.357626616954803,0.80842924118042,-0.50934886932373,-0.294967621564865,0.50222784280777,-0.864555299282074,0.0176454316824675,0.294654875993729,-0.955478250980377,0.0154902068898082,0.599502384662628,-0.792242109775543,-0.113794662058353,0.624554395675659,-0.780210852622986,0.0346815101802349,0.844629466533661,-0.511172950267792,0.159069865942001,0.829549133777618,-0.557524085044861,0.0318628884851933,0.695670127868652,-0.583087742328644,-0.419585138559341,0.408493965864182,-0.91021054983139,-0.0681856200098991,0.408493965864182,-0.91021054983139,-0.0681856200098991,0.408273994922638,-0.82267689704895,-0.395619750022888,0.844629466533661,-0.511172950267792,0.159069865942001,0.233973935246468,-0.972160696983337,-0.0126408468931913,-0.2821304500103,-0.71298623085022,0.641913592815399,-0.125940024852753,-0.992036640644073,-0.00154768046922982,0.633561134338379,-0.772423386573792,-0.0442998893558979,0.592933177947998,-0.787217915058136,-0.1694645434618,0.32685786485672,-0.909783780574799,-0.255846321582794,-0.0217161066830158,-0.993416905403137,0.112478092312813,-0.100261405110359,-0.992830276489258,0.0650823786854744,0.0524655729532242,-0.994306564331055,0.092746302485466,-0.0312045812606812,-0.970106244087219,0.240666374564171,0.206504479050636,-0.978445589542389,-0.000394548173062503,0.28651025891304,-0.902489006519318,0.321598172187805,0.247044593095779,-0.963976860046387,-0.0985782518982887,0.284472674131393,-0.958593666553497,0.013167760334909,0.32685786485672,-0.909783780574799,-0.255846321582794,0.426335990428925,-0.904368996620178,0.0188241750001907,-0.174761906266212,-0.984307050704956,0.024453017860651,0.32685786485672,-0.909783780574799,-0.255846321582794,0.592933177947998,-0.787217915058136,-0.1694645434618,0.426335990428925,-0.904368996620178,0.0188241750001907,0.438401520252228,-0.898778676986694,0.000970386783592403,0.247044593095779,-0.963976860046387,-0.0985782518982887,0.460584819316864,-0.885635435581207,0.0592582672834396,0.206504479050636,-0.978445589542389,-0.000394548173062503,
- 0.247044593095779,-0.963976860046387,-0.0985782518982887,0.438401520252228,-0.898778676986694,0.000970386783592403,0.345023602247238,-0.938039243221283,0.0322646200656891,0.891248226165771,-0.0704426616430283,-0.448011606931686,0.251311749219894,-0.0460557788610458,-0.966809809207916,0.891248226165771,-0.0704426616430283,-0.448011606931686,-0.00342275248840451,-0.993550479412079,-0.11333967000246,0.439066559076309,-0.890983164310455,-0.115625970065594,0.368339598178864,-0.929669499397278,-0.00636593578383327,0.604583203792572,-0.79272872209549,-0.0778487175703049,0.408493965864182,-0.91021054983139,-0.0681856200098991,0.479857176542282,-0.869081735610962,-0.120141513645649,0.516500413417816,-0.838727176189423,-0.172522678971291,0.843290567398071,-0.53674042224884,-0.027764180675149,0.345023602247238,-0.938039243221283,0.0322646200656891,-0.00342275248840451,-0.993550479412079,-0.11333967000246,0.891248226165771,-0.0704426616430283,-0.448011606931686,0.426076263189316,-0.904502689838409,-0.0182720627635717,-0.0986132696270943,-0.99379700422287,0.0514106526970863,0.319518804550171,-0.946837484836578,-0.0375034362077713,0.319518804550171,-0.946837484836578,-0.0375034362077713,-0.0986132696270943,-0.99379700422287,0.0514106526970863,0.304516822099686,-0.909191429615021,0.283972650766373,0.587197661399841,-0.778818428516388,0.220546454191208,0.410102069377899,-0.906149804592133,-0.103482700884342,0.408273994922638,-0.82267689704895,-0.395619750022888,0.706063628196716,-0.707608163356781,-0.0276547987014055,-0.0214612614363432,-0.980908691883087,0.193280816078186,0.276177853345871,-0.960952341556549,0.0172155983746052,0.251311749219894,-0.0460557788610458,-0.966809809207916,-0.135923892259598,-0.0243898779153824,-0.990419030189514,0.0639993920922279,-0.997844696044922,0.0144954901188612,0.465368002653122,-0.883996665477753,0.0445253476500511,0.304516822099686,-0.909191429615021,0.283972650766373,0.0380544476211071,-0.942110180854797,0.333136975765228,0.18432791531086,-0.976900458335876,0.108114145696163,0.209501981735229,-0.977791368961334,0.00573210977017879,
- -0.0986132696270943,-0.99379700422287,0.0514106526970863,0.154331505298615,-0.986313343048096,0.0580327287316322,-0.990953862667084,-0.0357529520988464,0.129353433847427,-0.0295149479061365,-0.999563276767731,-0.00145057495683432,-0.299210399389267,-0.953683197498322,0.0310069806873798,0.0731246173381805,-0.997172057628632,0.0173384919762611,0.819854021072388,-0.0548492111265659,0.569939494132996,0.0126512870192528,-0.990723967552185,0.13529871404171,-0.0986132696270943,-0.99379700422287,0.0514106526970863,0.0380544476211071,-0.942110180854797,0.333136975765228,0.304516822099686,-0.909191429615021,0.283972650766373,0.819854021072388,-0.0548492111265659,0.569939494132996,0.891248226165771,-0.0704426616430283,-0.448011606931686,0.439066559076309,-0.890983164310455,-0.115625970065594,0.819854021072388,-0.0548492111265659,0.569939494132996,0.439066559076309,-0.890983164310455,-0.115625970065594,0.0126512870192528,-0.990723967552185,0.13529871404171,0.588874220848084,-0.807986080646515,-0.0196379031985998,0.516500413417816,-0.838727176189423,-0.172522678971291,0.623188436031342,-0.776878237724304,-0.0899797827005386,0.0610261373221874,-0.985048830509186,0.16110397875309,0.426076263189316,-0.904502689838409,-0.0182720627635717,-0.125940024852753,-0.992036640644073,-0.00154768046922982,0.756463587284088,-0.653885722160339,0.014015169814229,-0.2821304500103,-0.71298623085022,0.641913592815399,0.621746361255646,-0.779925167560577,0.0717502683401108,0.621746361255646,-0.779925167560577,0.0717502683401108,0.604583203792572,-0.79272872209549,-0.0778487175703049,0.368339598178864,-0.929669499397278,-0.00636593578383327,0.756463587284088,-0.653885722160339,0.014015169814229,0.588874220848084,-0.807986080646515,-0.0196379031985998,0.579656064510345,-0.814444184303284,-0.0260655917227268,0.516500413417816,-0.838727176189423,-0.172522678971291,0.829549133777618,-0.557524085044861,0.0318628884851933,0.78767317533493,-0.615995705127716,-0.0109675033017993,0.968926250934601,-0.247316271066666,0.00405099056661129,0.786936223506927,-0.616571009159088,0.0239086076617241,
- 0.967005252838135,-0.245816558599472,-0.0668959319591522,0.930674016475677,-0.309510797262192,-0.19506111741066,0.968926250934601,-0.247316271066666,0.00405099056661129,0.78767317533493,-0.615995705127716,-0.0109675033017993,0.91693103313446,-0.384298324584961,0.107482418417931,0.965700149536133,-0.0983170419931412,-0.24032661318779,0.942165374755859,-0.330228000879288,0.0572169944643974,0.952708601951599,-0.303263545036316,0.019433256238699,0.0135670639574528,-0.0565270036458969,-0.998308897018433,0.836542189121246,-0.529840767383575,0.139519944787025,0.942165374755859,-0.330228000879288,0.0572169944643974,0.965700149536133,-0.0983170419931412,-0.24032661318779,0.408273994922638,-0.82267689704895,-0.395619750022888,0.942629754543304,-0.333818793296814,0.00377729837782681,0.848203957080841,-0.514236927032471,-0.126927092671394,0.443052023649216,-0.896470546722412,-0.0067386357113719,0.492197483778,-0.870285034179688,0.0185942221432924,0.410102069377899,-0.906149804592133,-0.103482700884342,-0.0214612614363432,-0.980908691883087,0.193280816078186,0.0917851328849792,-0.988997399806976,0.116016045212746,0.276177853345871,-0.960952341556549,0.0172155983746052,0.479857176542282,-0.869081735610962,-0.120141513645649,0.843290567398071,-0.53674042224884,-0.027764180675149,0.413130670785904,-0.910491704940796,0.0181029159575701,0.479857176542282,-0.869081735610962,-0.120141513645649,0.413130670785904,-0.910491704940796,0.0181029159575701,0.274277478456497,-0.886674463748932,-0.372263878583908,0.274277478456497,-0.886674463748932,-0.372263878583908,0.624554395675659,-0.780210852622986,0.0346815101802349,0.479857176542282,-0.869081735610962,-0.120141513645649,0.0731246173381805,-0.997172057628632,0.0173384919762611,-0.0798577293753624,-0.996693253517151,0.0150141827762127,-0.474684506654739,-0.0364584811031818,0.879400610923767,-0.032244399189949,-0.995349764823914,0.0907699391245842,-0.474684506654739,-0.0364584811031818,0.879400610923767,-0.0798577293753624,-0.996693253517151,0.0150141827762127,0.410102069377899,-0.906149804592133,-0.103482700884342,
- 0.942629754543304,-0.333818793296814,0.00377729837782681,0.408273994922638,-0.82267689704895,-0.395619750022888,0.587197661399841,-0.778818428516388,0.220546454191208,0.443052023649216,-0.896470546722412,-0.0067386357113719,0.410102069377899,-0.906149804592133,-0.103482700884342,0.611280024051666,-0.758526742458344,-0.225773990154266,0.610421597957611,-0.755141019821167,-0.239055499434471,0.587197661399841,-0.778818428516388,0.220546454191208,0.604583203792572,-0.79272872209549,-0.0778487175703049,0.621746361255646,-0.779925167560577,0.0717502683401108,0.056825302541256,-0.970472514629364,-0.234422877430916,0.460127264261246,-0.881864964962006,0.102942019701004,0.613613367080688,-0.774445831775665,-0.153988510370255,0.579656064510345,-0.814444184303284,-0.0260655917227268,0.695670127868652,-0.583087742328644,-0.419585138559341,0.829549133777618,-0.557524085044861,0.0318628884851933,0.588874220848084,-0.807986080646515,-0.0196379031985998,0.695670127868652,-0.583087742328644,-0.419585138559341,0.579656064510345,-0.814444184303284,-0.0260655917227268,0.588874220848084,-0.807986080646515,-0.0196379031985998,0.368339598178864,-0.929669499397278,-0.00636593578383327,0.695670127868652,-0.583087742328644,-0.419585138559341,0.876584947109222,-0.452823311090469,0.162941619753838,0.843290567398071,-0.53674042224884,-0.027764180675149,0.830122888088226,-0.521364986896515,0.197673052549362,0.882091581821442,-0.451634019613266,-0.133944481611252,0.623188436031342,-0.776878237724304,-0.0899797827005386,0.571925342082977,-0.763860762119293,0.299028635025024,0.209501981735229,-0.977791368961334,0.00573210977017879,0.588874220848084,-0.807986080646515,-0.0196379031985998,-0.0562317222356796,-0.99809342622757,0.0254463814198971,0.258578687906265,-0.96456390619278,0.0524750389158726,-0.174761906266212,-0.984307050704956,0.024453017860651,0.426335990428925,-0.904368996620178,0.0188241750001907,0.438401520252228,-0.898778676986694,0.000970386783592403,0.349141359329224,-0.928715169429779,0.124853320419788,0.233973935246468,-0.972160696983337,-0.0126408468931913,
- -0.125940024852753,-0.992036640644073,-0.00154768046922982,0.155881062150002,-0.987735271453857,-0.00894998200237751,0.145052060484886,-0.989420413970947,0.00267799873836339,-0.0159916244447231,-0.999262750148773,0.0349028818309307,0.229845643043518,-0.972456872463226,0.0387110039591789,-0.00342275248840451,-0.993550479412079,-0.11333967000246,0.0126512870192528,-0.990723967552185,0.13529871404171,0.439066559076309,-0.890983164310455,-0.115625970065594,0.295401185750961,-0.95522928237915,-0.016585186123848,0.0178862027823925,-0.999100208282471,-0.0384547635912895,-0.196786060929298,-0.980068147182465,-0.027232363820076,0.612606287002563,-0.790304780006409,-0.011481593362987,0.240915074944496,-0.970227062702179,0.0248900149017572,0.155881062150002,-0.987735271453857,-0.00894998200237751,0.229845643043518,-0.972456872463226,0.0387110039591789,0.0392558127641678,-0.994109869003296,0.101018346846104,0.0227844715118408,-0.96451210975647,-0.263053506612778,0.0317752808332443,-0.948305606842041,0.315764099359512,0.240915074944496,-0.970227062702179,0.0248900149017572,0.592933177947998,-0.787217915058136,-0.1694645434618,0.633561134338379,-0.772423386573792,-0.0442998893558979,0.056825302541256,-0.970472514629364,-0.234422877430916,0.111077725887299,-0.9830521941185,-0.145843401551247,0.0392819344997406,-0.995306313037872,-0.0884427577257156,0.028673779219389,-0.92013955116272,0.390539169311523,0.876584947109222,-0.452823311090469,0.162941619753838,0.918353974819183,-0.380917102098465,0.107369430363178,0.980245769023895,-0.197333768010139,0.0133243426680565,0.284472674131393,-0.958593666553497,0.013167760334909,-0.174761906266212,-0.984307050704956,0.024453017860651,-0.436729043722153,-0.831010639667511,-0.344512790441513,0.604583203792572,-0.79272872209549,-0.0778487175703049,0.408273994922638,-0.82267689704895,-0.395619750022888,0.408493965864182,-0.91021054983139,-0.0681856200098991,0.479857176542282,-0.869081735610962,-0.120141513645649,0.624554395675659,-0.780210852622986,0.0346815101802349,0.623188436031342,-0.776878237724304,-0.0899797827005386,
- 0.516500413417816,-0.838727176189423,-0.172522678971291,0.0392558127641678,-0.994109869003296,0.101018346846104,0.0427011325955391,-0.993799984455109,-0.102655507624149,0.0317752808332443,-0.948305606842041,0.315764099359512,0.0227844715118408,-0.96451210975647,-0.263053506612778,0.228837743401527,-0.945761680603027,-0.230582147836685,0.149079889059067,-0.940682172775269,-0.304782420396805,0.295401185750961,-0.95522928237915,-0.016585186123848,0.0427011325955391,-0.993799984455109,-0.102655507624149,0.152225136756897,-0.986618757247925,-0.0584030263125896,0.181076571345329,-0.96491527557373,-0.190130770206451,0.579186379909515,-0.814685821533203,0.0288095772266388,0.0209541190415621,-0.999485433101654,0.0242872517555952,0.0670985728502274,-0.978595435619354,-0.194547459483147,0.149079889059067,-0.940682172775269,-0.304782420396805,0.0524655729532242,-0.994306564331055,0.092746302485466,0.19223028421402,-0.979774355888367,0.0555862635374069,0.228837743401527,-0.945761680603027,-0.230582147836685,0.354664832353592,-0.934365510940552,0.0342631600797176,-0.0312045812606812,-0.970106244087219,0.240666374564171,0.229845643043518,-0.972456872463226,0.0387110039591789,-0.173662185668945,-0.846001923084259,0.50410532951355,0.354664832353592,-0.934365510940552,0.0342631600797176,0.0392819344997406,-0.995306313037872,-0.0884427577257156,-0.509539723396301,-0.860322535037994,-0.0146396029740572,0.181076571345329,-0.96491527557373,-0.190130770206451,0.152225136756897,-0.986618757247925,-0.0584030263125896,0.149079889059067,-0.940682172775269,-0.304782420396805,0.0178862027823925,-0.999100208282471,-0.0384547635912895,0.295401185750961,-0.95522928237915,-0.016585186123848,0.220716148614883,-0.854833900928497,0.469620496034622,0.028673779219389,-0.92013955116272,0.390539169311523,-0.388290673494339,-0.87471741437912,-0.289999604225159,0.0392558127641678,-0.994109869003296,0.101018346846104,0.229845643043518,-0.972456872463226,0.0387110039591789,0.354664832353592,-0.934365510940552,0.0342631600797176,0.228837743401527,-0.945761680603027,-0.230582147836685,
- 0.212020739912987,-0.972173392772675,-0.0996295586228371,0.0392558127641678,-0.994109869003296,0.101018346846104,0.354664832353592,-0.934365510940552,0.0342631600797176,0.0317752808332443,-0.948305606842041,0.315764099359512,0.0427011325955391,-0.993799984455109,-0.102655507624149,0.295401185750961,-0.95522928237915,-0.016585186123848,0.240915074944496,-0.970227062702179,0.0248900149017572,-0.0312045812606812,-0.970106244087219,0.240666374564171,0.0524655729532242,-0.994306564331055,0.092746302485466,0.149079889059067,-0.940682172775269,-0.304782420396805,0.228837743401527,-0.945761680603027,-0.230582147836685,-0.299210399389267,-0.953683197498322,0.0310069806873798,-0.0295149479061365,-0.999563276767731,-0.00145057495683432,0.0209541190415621,-0.999485433101654,0.0242872517555952,0.579186379909515,-0.814685821533203,0.0288095772266388,0.345023602247238,-0.938039243221283,0.0322646200656891,0.0639993920922279,-0.997844696044922,0.0144954901188612,0.19223028421402,-0.979774355888367,0.0555862635374069,0.0524655729532242,-0.994306564331055,0.092746302485466,-0.100261405110359,-0.992830276489258,0.0650823786854744,0.0731246173381805,-0.997172057628632,0.0173384919762611,0.0126512870192528,-0.990723967552185,0.13529871404171,-0.0114341583102942,-0.996163129806519,-0.0867659598588943,-0.142434060573578,-0.989666044712067,-0.0165408682078123,0.0126512870192528,-0.990723967552185,0.13529871404171,-0.00342275248840451,-0.993550479412079,-0.11333967000246,-0.0217161066830158,-0.993416905403137,0.112478092312813,-0.0312045812606812,-0.970106244087219,0.240666374564171,-0.0114341583102942,-0.996163129806519,-0.0867659598588943,-0.0295149479061365,-0.999563276767731,-0.00145057495683432,-0.032244399189949,-0.995349764823914,0.0907699391245842,-0.00121384114027023,-0.950988054275513,-0.309225052595139,0.0209541190415621,-0.999485433101654,0.0242872517555952,-0.032244399189949,-0.995349764823914,0.0907699391245842,-0.0798577293753624,-0.996693253517151,0.0150141827762127,0.0937818288803101,-0.995404839515686,-0.0193408094346523,
- -0.00121384114027023,-0.950988054275513,-0.309225052595139,0.0937818288803101,-0.995404839515686,-0.0193408094346523,-0.142434060573578,-0.989666044712067,-0.0165408682078123,0.220716148614883,-0.854833900928497,0.469620496034622,0.220716148614883,-0.854833900928497,0.469620496034622,-0.388290673494339,-0.87471741437912,-0.289999604225159,-0.00121384114027023,-0.950988054275513,-0.309225052595139,-0.0217161066830158,-0.993416905403137,0.112478092312813,-0.00342275248840451,-0.993550479412079,-0.11333967000246,0.345023602247238,-0.938039243221283,0.0322646200656891,-0.100261405110359,-0.992830276489258,0.0650823786854744,0.0427011325955391,-0.993799984455109,-0.102655507624149,0.212020739912987,-0.972173392772675,-0.0996295586228371,0.228837743401527,-0.945761680603027,-0.230582147836685,-0.196786060929298,-0.980068147182465,-0.027232363820076,0.0178862027823925,-0.999100208282471,-0.0384547635912895,0.149079889059067,-0.940682172775269,-0.304782420396805,0.0670985728502274,-0.978595435619354,-0.194547459483147,0.0427011325955391,-0.993799984455109,-0.102655507624149,0.0392558127641678,-0.994109869003296,0.101018346846104,0.212020739912987,-0.972173392772675,-0.0996295586228371,0.220716148614883,-0.854833900928497,0.469620496034622,-0.00121384114027023,-0.950988054275513,-0.309225052595139,0.0937818288803101,-0.995404839515686,-0.0193408094346523,0.028673779219389,-0.92013955116272,0.390539169311523,0.152225136756897,-0.986618757247925,-0.0584030263125896,-0.388290673494339,-0.87471741437912,-0.289999604225159,0.354664832353592,-0.934365510940552,0.0342631600797176,-0.173662185668945,-0.846001923084259,0.50410532951355,-0.142434060573578,-0.989666044712067,-0.0165408682078123,-0.0798577293753624,-0.996693253517151,0.0150141827762127,0.0731246173381805,-0.997172057628632,0.0173384919762611,-0.142434060573578,-0.989666044712067,-0.0165408682078123,0.0937818288803101,-0.995404839515686,-0.0193408094346523,0.028673779219389,-0.92013955116272,0.390539169311523,0.0392819344997406,-0.995306313037872,-0.0884427577257156,0.152225136756897,-0.986618757247925,-0.0584030263125896,
- 0.152225136756897,-0.986618757247925,-0.0584030263125896,0.0209541190415621,-0.999485433101654,0.0242872517555952,-0.00121384114027023,-0.950988054275513,-0.309225052595139,0.152225136756897,-0.986618757247925,-0.0584030263125896,-0.00121384114027023,-0.950988054275513,-0.309225052595139,-0.388290673494339,-0.87471741437912,-0.289999604225159,-0.0159916244447231,-0.999262750148773,0.0349028818309307,0.028673779219389,-0.92013955116272,0.390539169311523,0.220716148614883,-0.854833900928497,0.469620496034622,-0.0312045812606812,-0.970106244087219,0.240666374564171,0.354664832353592,-0.934365510940552,0.0342631600797176,-0.0114341583102942,-0.996163129806519,-0.0867659598588943,0.0321370773017406,-0.982410907745361,0.183945387601852,0.951758086681366,-0.153780519962311,-0.265533626079559,0.987380027770996,-0.158367589116097,0.000439816561993212,0.982167601585388,-0.177762478590012,0.0612151771783829,0.96726655960083,0.245790705084801,0.0631050914525986,0.887216985225677,-0.46061846613884,-0.0260095726698637,0.878529608249664,-0.160265371203423,-0.450000941753387,0.998737335205078,-0.049485556781292,-0.00865363609045744,0.995011389255524,-0.0996140763163567,-0.00540300877764821,0.0153942257165909,0.518061935901642,-0.855204582214355,0.951758086681366,-0.153780519962311,-0.265533626079559,0.0321370773017406,-0.982410907745361,0.183945387601852,0.0230101011693478,-0.78930538892746,-0.613569498062134,0.0286544449627399,-0.659845530986786,-0.750854671001434,0.0153942257165909,0.518061935901642,-0.855204582214355,0.995011389255524,-0.0996140763163567,-0.00540300877764821,0.998737335205078,-0.049485556781292,-0.00865363609045744,0.982393264770508,-0.165625765919685,-0.0864389911293983,0.952753365039825,-0.181725844740868,0.243386089801788,0.995128989219666,-0.09469985216856,0.0273923315107822,0.998737335205078,-0.049485556781292,-0.00865363609045744,0.0153942257165909,0.518061935901642,-0.855204582214355,0.982393264770508,-0.165625765919685,-0.0864389911293983,0.0286544449627399,-0.659845530986786,-0.750854671001434,0.951758086681366,-0.153780519962311,-0.265533626079559,
- 0.0230101011693478,-0.78930538892746,-0.613569498062134,0.995011389255524,-0.0996140763163567,-0.00540300877764821,0.951758086681366,-0.153780519962311,-0.265533626079559,0.0286544449627399,-0.659845530986786,-0.750854671001434,0.0153942257165909,0.518061935901642,-0.855204582214355,0.0211285576224327,0.997805833816528,0.0627478733658791,0.982393264770508,-0.165625765919685,-0.0864389911293983,0.982167601585388,-0.177762478590012,0.0612151771783829,0.878529608249664,-0.160265371203423,-0.450000941753387,0.952753365039825,-0.181725844740868,0.243386089801788,0.982393264770508,-0.165625765919685,-0.0864389911293983,0.995011389255524,-0.0996140763163567,-0.00540300877764821,0.998737335205078,-0.049485556781292,-0.00865363609045744,0.995128989219666,-0.09469985216856,0.0273923315107822,0.927074790000916,0.374252319335938,-0.0216214284300804,0.998710572719574,0.0507648028433323,0.000455673522083089,0.984806418418884,-0.170020341873169,-0.035348255187273,0.929112315177917,-0.36176010966301,0.0766803994774818,0.95038890838623,-0.310181379318237,0.023420050740242,0.995011389255524,-0.0996140763163567,-0.00540300877764821,0.927074790000916,0.374252319335938,-0.0216214284300804,0.992033779621124,-0.0769827514886856,0.0997134521603584,0.951758086681366,-0.153780519962311,-0.265533626079559,0.982393264770508,-0.165625765919685,-0.0864389911293983,0.0211285576224327,0.997805833816528,0.0627478733658791,0.982167601585388,-0.177762478590012,0.0612151771783829,0.992033779621124,-0.0769827514886856,0.0997134521603584,0.941357851028442,-0.113994084298611,-0.31756991147995,0.987380027770996,-0.158367589116097,0.000439816561993212,0.951758086681366,-0.153780519962311,-0.265533626079559,0.0135670639574528,-0.0565270036458969,-0.998308897018433,0.965700149536133,-0.0983170419931412,-0.24032661318779,0.941357851028442,-0.113994084298611,-0.31756991147995,0.927074790000916,0.374252319335938,-0.0216214284300804,0.995128989219666,-0.09469985216856,0.0273923315107822,0.930674016475677,-0.309510797262192,-0.19506111741066,0.967005252838135,-0.245816558599472,-0.0668959319591522,
- 0.878529608249664,-0.160265371203423,-0.450000941753387,0.887216985225677,-0.46061846613884,-0.0260095726698637,0.918353974819183,-0.380917102098465,0.107369430363178,0.986546218395233,0.156556501984596,-0.0470808856189251,0.992033779621124,-0.0769827514886856,0.0997134521603584,0.927074790000916,0.374252319335938,-0.0216214284300804,0.967005252838135,-0.245816558599472,-0.0668959319591522,0.88897317647934,0.286059260368347,-0.357626616954803,0.992033779621124,-0.0769827514886856,0.0997134521603584,0.967005252838135,-0.245816558599472,-0.0668959319591522,0.987380027770996,-0.158367589116097,0.000439816561993212,0.941357851028442,-0.113994084298611,-0.31756991147995,0.998710572719574,0.0507648028433323,0.000455673522083089,0.95038890838623,-0.310181379318237,0.023420050740242,0.941357851028442,-0.113994084298611,-0.31756991147995,0.88897317647934,0.286059260368347,-0.357626616954803,0.0135670639574528,-0.0565270036458969,-0.998308897018433,0.984806418418884,-0.170020341873169,-0.035348255187273,0.998710572719574,0.0507648028433323,0.000455673522083089,0.965700149536133,-0.0983170419931412,-0.24032661318779,0.91693103313446,-0.384298324584961,0.107482418417931,0.941357851028442,-0.113994084298611,-0.31756991147995,0.992033779621124,-0.0769827514886856,0.0997134521603584,0.88897317647934,0.286059260368347,-0.357626616954803,0.986546218395233,0.156556501984596,-0.0470808856189251,0.836402237415314,0.173667699098587,0.519875884056091,0.952753365039825,-0.181725844740868,0.243386089801788,0.878529608249664,-0.160265371203423,-0.450000941753387,0.995128989219666,-0.09469985216856,0.0273923315107822,0.952753365039825,-0.181725844740868,0.243386089801788,0.930674016475677,-0.309510797262192,-0.19506111741066,-0.00096338358707726,0.999412596225739,-0.0342562012374401,-0.0131904343143106,0.999311566352844,-0.0346768572926521,-0.033508587628603,0.998821616172791,-0.0351101830601692,-0.0316617488861084,0.998891949653625,-0.0348197557032108,-0.012859171256423,0.999336242675781,-0.0340842641890049,0.0194182321429253,0.999179601669312,-0.0355399288237095,
- 0.987380027770996,-0.158367589116097,0.000439816561993212,0.95038890838623,-0.310181379318237,0.023420050740242,0.0261358805000782,-0.337875366210938,0.940827906131744,0.0321370773017406,-0.982410907745361,0.183945387601852,0.0211285576224327,0.997805833816528,0.0627478733658791,0.96726655960083,0.245790705084801,0.0631050914525986,0.982167601585388,-0.177762478590012,0.0612151771783829,0.0095738098025322,-0.348749250173569,0.937167167663574,0.0261358805000782,-0.337875366210938,0.940827906131744,0.95038890838623,-0.310181379318237,0.023420050740242,0.929112315177917,-0.36176010966301,0.0766803994774818,0.876584947109222,-0.452823311090469,0.162941619753838,0.986546218395233,0.156556501984596,-0.0470808856189251,0.918353974819183,-0.380917102098465,0.107369430363178,0.571925342082977,-0.763860762119293,0.299028635025024,0.599502384662628,-0.792242109775543,-0.113794662058353,-0.0986132696270943,-0.99379700422287,0.0514106526970863,0.516500413417816,-0.838727176189423,-0.172522678971291,0.830122888088226,-0.521364986896515,0.197673052549362,0.843290567398071,-0.53674042224884,-0.027764180675149,0.579656064510345,-0.814444184303284,-0.0260655917227268,0.786936223506927,-0.616571009159088,0.0239086076617241,0.830122888088226,-0.521364986896515,0.197673052549362,0.516500413417816,-0.838727176189423,-0.172522678971291,0.829549133777618,-0.557524085044861,0.0318628884851933,0.786936223506927,-0.616571009159088,0.0239086076617241,0.579656064510345,-0.814444184303284,-0.0260655917227268,0.354664832353592,-0.934365510940552,0.0342631600797176,-0.142434060573578,-0.989666044712067,-0.0165408682078123,-0.0114341583102942,-0.996163129806519,-0.0867659598588943,0.587197661399841,-0.778818428516388,0.220546454191208,0.408273994922638,-0.82267689704895,-0.395619750022888,0.604583203792572,-0.79272872209549,-0.0778487175703049,0.492197483778,-0.870285034179688,0.0185942221432924,0.443052023649216,-0.896470546722412,-0.0067386357113719,0.649885296821594,-0.759961545467377,-0.0103738391771913,0.706063628196716,-0.707608163356781,-0.0276547987014055,
- 0.276177853345871,-0.960952341556549,0.0172155983746052,-0.436729043722153,-0.831010639667511,-0.344512790441513,0.611280024051666,-0.758526742458344,-0.225773990154266,0.621746361255646,-0.779925167560577,0.0717502683401108,0.941357851028442,-0.113994084298611,-0.31756991147995,0.965700149536133,-0.0983170419931412,-0.24032661318779,0.998710572719574,0.0507648028433323,0.000455673522083089,0.631701469421387,-0.773764073848724,-0.047354020178318,0.111077725887299,-0.9830521941185,-0.145843401551247,0.613613367080688,-0.774445831775665,-0.153988510370255,0.460127264261246,-0.881864964962006,0.102942019701004,0.111077725887299,-0.9830521941185,-0.145843401551247,0.598710536956787,-0.800891041755676,-0.0109197096899152,-0.509539723396301,-0.860322535037994,-0.0146396029740572,0.0392819344997406,-0.995306313037872,-0.0884427577257156,0.599502384662628,-0.792242109775543,-0.113794662058353,0.0380544476211071,-0.942110180854797,0.333136975765228,-0.0986132696270943,-0.99379700422287,0.0514106526970863,0.18432791531086,-0.976900458335876,0.108114145696163,0.0380544476211071,-0.942110180854797,0.333136975765228,0.599502384662628,-0.792242109775543,-0.113794662058353,0.294654875993729,-0.955478250980377,0.0154902068898082,0.18432791531086,-0.976900458335876,0.108114145696163,0.599502384662628,-0.792242109775543,-0.113794662058353,0.349141359329224,-0.928715169429779,0.124853320419788,0.32685786485672,-0.909783780574799,-0.255846321582794,0.284472674131393,-0.958593666553497,0.013167760334909,0.233973935246468,-0.972160696983337,-0.0126408468931913,0.209501981735229,-0.977791368961334,0.00573210977017879,0.154331505298615,-0.986313343048096,0.0580327287316322,0.0610261373221874,-0.985048830509186,0.16110397875309,0.154331505298615,-0.986313343048096,0.0580327287316322,0.426076263189316,-0.904502689838409,-0.0182720627635717,0.0610261373221874,-0.985048830509186,0.16110397875309,0.258578687906265,-0.96456390619278,0.0524750389158726,0.0917851328849792,-0.988997399806976,0.116016045212746,-0.0214612614363432,-0.980908691883087,0.193280816078186,
- 0.649885296821594,-0.759961545467377,-0.0103738391771913,0.443052023649216,-0.896470546722412,-0.0067386357113719,0.587197661399841,-0.778818428516388,0.220546454191208,0.610421597957611,-0.755141019821167,-0.239055499434471,0.706063628196716,-0.707608163356781,-0.0276547987014055,0.649885296821594,-0.759961545467377,-0.0103738391771913,0.610421597957611,-0.755141019821167,-0.239055499434471,0.942629754543304,-0.333818793296814,0.00377729837782681,0.835793197154999,-0.548985004425049,0.00808440521359444,0.849243104457855,-0.525010526180267,0.0561258010566235,0.848203957080841,-0.514236927032471,-0.126927092671394,0.849243104457855,-0.525010526180267,0.0561258010566235,0.835793197154999,-0.548985004425049,0.00808440521359444,0.942165374755859,-0.330228000879288,0.0572169944643974,0.836542189121246,-0.529840767383575,0.139519944787025,0.229845643043518,-0.972456872463226,0.0387110039591789,-0.0159916244447231,-0.999262750148773,0.0349028818309307,0.220716148614883,-0.854833900928497,0.469620496034622,-0.173662185668945,-0.846001923084259,0.50410532951355,-0.142434060573578,-0.989666044712067,-0.0165408682078123,-0.173662185668945,-0.846001923084259,0.50410532951355,0.220716148614883,-0.854833900928497,0.469620496034622,0.836402237415314,0.173667699098587,0.519875884056091,0.882091581821442,-0.451634019613266,-0.133944481611252,0.930674016475677,-0.309510797262192,-0.19506111741066,0.952753365039825,-0.181725844740868,0.243386089801788,0.836402237415314,0.173667699098587,0.519875884056091,0.930674016475677,-0.309510797262192,-0.19506111741066,0.056825302541256,-0.970472514629364,-0.234422877430916,0.613613367080688,-0.774445831775665,-0.153988510370255,0.111077725887299,-0.9830521941185,-0.145843401551247,0.056825302541256,-0.970472514629364,-0.234422877430916,0.247044593095779,-0.963976860046387,-0.0985782518982887,0.460127264261246,-0.881864964962006,0.102942019701004,0.571631550788879,0.782144784927368,0.247965484857559,0.622324526309967,0.756497442722321,-0.201056584715843,0.591845750808716,0.73804759979248,0.324043810367584,
- 0.584023773670197,0.811213552951813,-0.0291333440691233,0.0602599419653416,0.998134434223175,0.00982056744396687,0.693381607532501,0.720439612865448,-0.0137345371767879,0.107562020421028,0.993755280971527,-0.0296784024685621,0.014221727848053,0.959398031234741,-0.281696885824203,0.0467620752751827,-0.470882117748261,0.880955934524536,0.975380718708038,0.204886108636856,0.081573024392128,0.977938413619995,0.208801954984665,-0.00617934018373489,0.0473431944847107,-0.991559267044067,0.120701782405376,0.999024927616119,-0.0312780365347862,-0.0311599336564541,0.855703413486481,0.4698346555233,-0.216856986284256,0.879958391189575,0.47440367937088,0.0247855167835951,0.702104091644287,0.709132194519043,-0.0646632984280586,0.0144004495814443,0.949838697910309,0.312408566474915,0.014221727848053,0.959398031234741,-0.281696885824203,0.623076617717743,0.708979189395905,-0.330339133739471,0.0544179603457451,0.998480439186096,0.00868399906903505,-0.226170912384987,0.697555959224701,-0.679898858070374,0.257570654153824,0.940040349960327,-0.223565518856049,0.145467594265938,0.989319443702698,0.00928795151412487,0.816325902938843,0.577490627765656,-0.0107941795140505,0.892899990081787,0.449560821056366,0.0249916706234217,0.822394132614136,0.568918228149414,-6.57322671031579e-005,0.0115346238017082,0.951973438262939,-0.305963158607483,0.0065234238281846,0.986775577068329,0.161960631608963,0.00366430752910674,0.992241024971008,-0.124275483191013,0.0134694548323751,0.998800218105316,0.0470815449953079,0.0544179603457451,0.998480439186096,0.00868399906903505,0.36801615357399,0.884591937065125,-0.286463439464569,0.00366430752910674,0.992241024971008,-0.124275483191013,0.0065234238281846,0.986775577068329,0.161960631608963,0.50415050983429,0.863552510738373,-0.0104519044980407,-0.211833447217941,0.977281391620636,0.00689855450764298,0.42900213599205,0.903065800666809,0.0207195784896612,-0.416536033153534,0.909048497676849,-0.011332836933434,0.609975039958954,0.791741251945496,-0.0328071191906929,0.586644411087036,0.809546530246735,0.0219724550843239,
- 0.350807726383209,0.291190981864929,0.890023469924927,0.542381346225739,0.818503320217133,0.18940632045269,0.999024927616119,-0.0312780365347862,-0.0311599336564541,0.526860892772675,0.729879558086395,-0.435538023710251,0.569840550422668,0.800246953964233,0.18677930533886,0.922550976276398,0.376051247119904,0.0865170285105705,0.886789500713348,0.461245208978653,0.029279537498951,0.834884822368622,0.550197184085846,-0.0158274117857218,-0.198250994086266,0.979670166969299,-0.0307058673352003,0.256073355674744,0.935575366020203,-0.243156552314758,0.220403537154198,0.958752036094666,-0.179490596055985,0.0115346238017082,0.951973438262939,-0.305963158607483,0.133516162633896,0.990828990936279,-0.0207658335566521,0.163317158818245,0.985771656036377,0.039770819246769,0.0065234238281846,0.986775577068329,0.161960631608963,0.350807726383209,0.291190981864929,0.890023469924927,0.927561581134796,0.373317211866379,0.0162412542849779,0.480846077203751,0.867803275585175,0.125317618250847,0.346817880868912,0.931539058685303,-0.109326653182507,0.148876547813416,0.988795220851898,-0.010945288464427,0.0934667438268662,0.941567957401276,-0.323595136404037,0.569840550422668,0.800246953964233,0.18677930533886,0.892899990081787,0.449560821056366,0.0249916706234217,0.967111527919769,0.1201381534338,-0.224192410707474,0.974372208118439,0.224941179156303,0.000523247988894582,0.792362153530121,0.609970271587372,0.00992277171462774,0.886789500713348,0.461245208978653,0.029279537498951,0.922550976276398,0.376051247119904,0.0865170285105705,-0.0134518481791019,-0.999828934669495,-0.0126900104805827,-0.0426794588565826,-0.998910546302795,-0.0188735667616129,-0.0398866049945354,-0.999132335186005,-0.0119902566075325,-0.281697392463684,0.959489643573761,0.00512182712554932,0.346817880868912,0.931539058685303,-0.109326653182507,0.424449861049652,0.905382454395294,0.0111748250201344,0.95522278547287,0.294097870588303,0.0324920974671841,0.622324526309967,0.756497442722321,-0.201056584715843,0.571631550788879,0.782144784927368,0.247965484857559,-0.0601385794579983,0.998129367828369,0.0110083082690835,
- 0.834884822368622,0.550197184085846,-0.0158274117857218,0.886789500713348,0.461245208978653,0.029279537498951,0.95522278547287,0.294097870588303,0.0324920974671841,-0.416536033153534,0.909048497676849,-0.011332836933434,0.42900213599205,0.903065800666809,0.0207195784896612,0.166323855519295,0.952602803707123,0.254723966121674,0.822394132614136,0.568918228149414,-6.57322671031579e-005,0.542381346225739,0.818503320217133,0.18940632045269,0.166323855519295,0.952602803707123,0.254723966121674,0.0411809757351875,-0.999086141586304,-0.0114536238834262,0.050565205514431,-0.998686611652374,-0.00825772620737553,-0.0134518481791019,-0.999828934669495,-0.0126900104805827,-0.0398866049945354,-0.999132335186005,-0.0119902566075325,0.99419504404068,0.105536848306656,0.0209309887140989,0.896579742431641,0.441875696182251,0.0298412516713142,0.0402926355600357,0.18135891854763,-0.982591152191162,0.350807726383209,0.291190981864929,0.890023469924927,0.227266862988472,0.973506391048431,0.0252005085349083,0.542381346225739,0.818503320217133,0.18940632045269,0.166323855519295,0.952602803707123,0.254723966121674,0.542381346225739,0.818503320217133,0.18940632045269,-0.416536033153534,0.909048497676849,-0.011332836933434,0.591845750808716,0.73804759979248,0.324043810367584,0.816325902938843,0.577490627765656,-0.0107941795140505,0.145467594265938,0.989319443702698,0.00928795151412487,0.584023773670197,0.811213552951813,-0.0291333440691233,0.591845750808716,0.73804759979248,0.324043810367584,0.927773356437683,0.372180938720703,-0.0267940070480108,0.969340085983276,0.222627505660057,-0.104004323482513,0.222226902842522,0.969923734664917,-0.0993131771683693,0.207127079367638,0.978257477283478,0.0105268573388457,0.271426349878311,0.954776525497437,-0.121364861726761,0.267695814371109,0.922515511512756,0.278035908937454,0.812628984451294,0.582781255245209,-0.000374039402231574,0.920904576778412,0.389761179685593,0.00456442683935165,0.938959896564484,0.323081731796265,-0.118205606937408,0.107562020421028,0.993755280971527,-0.0296784024685621,0.445646643638611,0.891774117946625,-0.0783457085490227,
- 0.014221727848053,0.959398031234741,-0.281696885824203,0.0848237350583076,0.968609154224396,0.233669027686119,0.145467594265938,0.989319443702698,0.00928795151412487,0.172697767615318,0.982790052890778,-0.0655686631798744,0.855703413486481,0.4698346555233,-0.216856986284256,0.999024927616119,-0.0312780365347862,-0.0311599336564541,0.961551487445831,-0.0653759762644768,0.266729682683945,0.967111527919769,0.1201381534338,-0.224192410707474,0.938959896564484,0.323081731796265,-0.118205606937408,0.920904576778412,0.389761179685593,0.00456442683935165,0.0848237350583076,0.968609154224396,0.233669027686119,0.42900213599205,0.903065800666809,0.0207195784896612,0.267695814371109,0.922515511512756,0.278035908937454,0.812628984451294,0.582781255245209,-0.000374039402231574,0.816675126552582,0.523107469081879,-0.243721842765808,0.789564073085785,0.462065637111664,0.403836488723755,0.803202569484711,0.593012630939484,0.0565831586718559,0.812628984451294,0.582781255245209,-0.000374039402231574,0.938959896564484,0.323081731796265,-0.118205606937408,0.816675126552582,0.523107469081879,-0.243721842765808,0.938959896564484,0.323081731796265,-0.118205606937408,0.591845750808716,0.73804759979248,0.324043810367584,0.969340085983276,0.222627505660057,-0.104004323482513,0.144543200731277,0.945324897766113,-0.292349457740784,0.133516162633896,0.990828990936279,-0.0207658335566521,0.0115346238017082,0.951973438262939,-0.305963158607483,0.961551487445831,-0.0653759762644768,0.266729682683945,0.999024927616119,-0.0312780365347862,-0.0311599336564541,0.569840550422668,0.800246953964233,0.18677930533886,0.480846077203751,0.867803275585175,0.125317618250847,0.927561581134796,0.373317211866379,0.0162412542849779,0.509561777114868,0.859548628330231,0.03902518004179,0.987461030483246,0.156150653958321,0.0231884457170963,0.622324526309967,0.756497442722321,-0.201056584715843,0.95522278547287,0.294097870588303,0.0324920974671841,0.987461030483246,0.156150653958321,0.0231884457170963,0.485170841217041,0.87438040971756,-0.0082590552046895,0.812896966934204,0.563673734664917,-0.146528229117393,
- 0.927773356437683,0.372180938720703,-0.0267940070480108,-0.403949320316315,0.8663250207901,-0.29377868771553,-0.288453996181488,0.956353962421417,-0.0467057675123215,0.207127079367638,0.978257477283478,0.0105268573388457,0.0934667438268662,0.941567957401276,-0.323595136404037,0.424449861049652,0.905382454395294,0.0111748250201344,0.346817880868912,0.931539058685303,-0.109326653182507,0.0144004495814443,0.949838697910309,0.312408566474915,-0.162478730082512,0.9860680103302,0.0356458835303783,0.747415661811829,0.663857936859131,0.0257365927100182,0.05855767801404,0.998263299465179,-0.00642563076689839,0.97404819726944,0.225540012121201,0.0190237127244473,0.0467620752751827,-0.470882117748261,0.880955934524536,0.0427945144474506,0.823461294174194,0.56575620174408,0.927773356437683,0.372180938720703,-0.0267940070480108,0.622324526309967,0.756497442722321,-0.201056584715843,0.987461030483246,0.156150653958321,0.0231884457170963,0.591845750808716,0.73804759979248,0.324043810367584,0.622324526309967,0.756497442722321,-0.201056584715843,0.927773356437683,0.372180938720703,-0.0267940070480108,-0.198250994086266,0.979670166969299,-0.0307058673352003,0.220403537154198,0.958752036094666,-0.179490596055985,0.350807726383209,0.291190981864929,0.890023469924927,-0.163729980587959,0.877065122127533,-0.451607376337051,0.50415050983429,0.863552510738373,-0.0104519044980407,0.436192691326141,0.89406806230545,-0.101873502135277,0.569840550422668,0.800246953964233,0.18677930533886,0.967111527919769,0.1201381534338,-0.224192410707474,0.961551487445831,-0.0653759762644768,0.266729682683945,0.967111527919769,0.1201381534338,-0.224192410707474,0.855703413486481,0.4698346555233,-0.216856986284256,0.961551487445831,-0.0653759762644768,0.266729682683945,-0.332697033882141,-0.279132455587387,-0.900776207447052,-0.738949418067932,0.669352293014526,0.0769497528672218,-0.696658372879028,0.717165172100067,-0.0184740666300058,-0.281697392463684,0.959489643573761,0.00512182712554932,0.424449861049652,0.905382454395294,0.0111748250201344,0.0512302294373512,0.997703790664673,0.0443006083369255,
- 0.416851878166199,0.908726155757904,0.0212400928139687,0.0512755624949932,0.998648345470428,0.00850323028862476,0.920904576778412,0.389761179685593,0.00456442683935165,0.855703413486481,0.4698346555233,-0.216856986284256,0.967111527919769,0.1201381534338,-0.224192410707474,0.0115346238017082,0.951973438262939,-0.305963158607483,0.257570654153824,0.940040349960327,-0.223565518856049,0.144543200731277,0.945324897766113,-0.292349457740784,0.0544179603457451,0.998480439186096,0.00868399906903505,0.257570654153824,0.940040349960327,-0.223565518856049,0.0115346238017082,0.951973438262939,-0.305963158607483,-0.288453996181488,0.956353962421417,-0.0467057675123215,0.367455244064331,0.929965376853943,-0.0118742370977998,0.271426349878311,0.954776525497437,-0.121364861726761,0.207127079367638,0.978257477283478,0.0105268573388457,0.0065234238281846,0.986775577068329,0.161960631608963,0.163317158818245,0.985771656036377,0.039770819246769,-0.163729980587959,0.877065122127533,-0.451607376337051,0.436192691326141,0.89406806230545,-0.101873502135277,0.436192691326141,0.89406806230545,-0.101873502135277,0.36801615357399,0.884591937065125,-0.286463439464569,0.0065234238281846,0.986775577068329,0.161960631608963,0.609975039958954,0.791741251945496,-0.0328071191906929,0.542381346225739,0.818503320217133,0.18940632045269,0.822394132614136,0.568918228149414,-6.57322671031579e-005,0.999024927616119,-0.0312780365347862,-0.0311599336564541,0.922550976276398,0.376051247119904,0.0865170285105705,0.526860892772675,0.729879558086395,-0.435538023710251,0.973877608776093,0.181789979338646,0.136069029569626,0.991778552532196,0.110911227762699,0.0638275593519211,0.602051496505737,0.793597042560577,0.0879647955298424,0.949725389480591,0.176415175199509,0.258649349212646,0.816325902938843,0.577490627765656,-0.0107941795140505,0.591845750808716,0.73804759979248,0.324043810367584,0.938959896564484,0.323081731796265,-0.118205606937408,0.586644411087036,0.809546530246735,0.0219724550843239,0.526860892772675,0.729879558086395,-0.435538023710251,0.834884822368622,0.550197184085846,-0.0158274117857218,
- 0.927561581134796,0.373317211866379,0.0162412542849779,0.526860892772675,0.729879558086395,-0.435538023710251,0.922550976276398,0.376051247119904,0.0865170285105705,0.834884822368622,0.550197184085846,-0.0158274117857218,0.892899990081787,0.449560821056366,0.0249916706234217,0.938959896564484,0.323081731796265,-0.118205606937408,0.967111527919769,0.1201381534338,-0.224192410707474,0.816325902938843,0.577490627765656,-0.0107941795140505,0.938959896564484,0.323081731796265,-0.118205606937408,0.892899990081787,0.449560821056366,0.0249916706234217,0.896579742431641,0.441875696182251,0.0298412516713142,0.04889877140522,0.893237888813019,-0.44691726565361,0.0402926355600357,0.18135891854763,-0.982591152191162,0.04889877140522,0.893237888813019,-0.44691726565361,0.972813308238983,0.200580403208733,-0.115765690803528,0.837258338928223,0.528777956962585,-0.13925638794899,0.50415050983429,0.863552510738373,-0.0104519044980407,0.287498146295547,0.954321205615997,-0.0813377797603607,0.436192691326141,0.89406806230545,-0.101873502135277,-0.0889433771371841,0.972966909408569,-0.213130280375481,-0.236904934048653,0.969200313091278,0.0672827735543251,0.05855767801404,0.998263299465179,-0.00642563076689839,0.896579742431641,0.441875696182251,0.0298412516713142,0.972813308238983,0.200580403208733,-0.115765690803528,0.04889877140522,0.893237888813019,-0.44691726565361,0.145467594265938,0.989319443702698,0.00928795151412487,0.0848237350583076,0.968609154224396,0.233669027686119,0.584023773670197,0.811213552951813,-0.0291333440691233,0.584023773670197,0.811213552951813,-0.0291333440691233,0.0848237350583076,0.968609154224396,0.233669027686119,0.571631550788879,0.782144784927368,0.247965484857559,0.287383437156677,0.929377973079681,0.231662094593048,0.346817880868912,0.931539058685303,-0.109326653182507,0.36801615357399,0.884591937065125,-0.286463439464569,-0.198250994086266,0.979670166969299,-0.0307058673352003,0.480846077203751,0.867803275585175,0.125317618250847,0.0453678779304028,0.998168110847473,-0.0400267653167248,0.0402926355600357,0.18135891854763,-0.982591152191162,
- 0.0291258711367846,-0.142007455229759,-0.989436984062195,0.99419504404068,0.105536848306656,0.0209309887140989,-0.0601385794579983,0.998129367828369,0.0110083082690835,0.571631550788879,0.782144784927368,0.247965484857559,-0.361411482095718,0.932309925556183,0.0134141221642494,0.409269988536835,0.775353968143463,0.480961829423904,0.42900213599205,0.903065800666809,0.0207195784896612,0.0848237350583076,0.968609154224396,0.233669027686119,0.172697767615318,0.982790052890778,-0.0655686631798744,0.0473431944847107,-0.991559267044067,0.120701782405376,0.977938413619995,0.208801954984665,-0.00617934018373489,0.994154155254364,-0.102400429546833,0.0342301391065121,0.97404819726944,0.225540012121201,0.0190237127244473,0.0427945144474506,0.823461294174194,0.56575620174408,0.965428054332733,0.217257782816887,0.144040659070015,0.0848237350583076,0.968609154224396,0.233669027686119,-0.361411482095718,0.932309925556183,0.0134141221642494,0.571631550788879,0.782144784927368,0.247965484857559,0.0427945144474506,0.823461294174194,0.56575620174408,0.04889877140522,0.893237888813019,-0.44691726565361,0.837258338928223,0.528777956962585,-0.13925638794899,0.0427945144474506,0.823461294174194,0.56575620174408,0.837258338928223,0.528777956962585,-0.13925638794899,0.965428054332733,0.217257782816887,0.144040659070015,-0.211833447217941,0.977281391620636,0.00689855450764298,-0.236904934048653,0.969200313091278,0.0672827735543251,0.222226902842522,0.969923734664917,-0.0993131771683693,0.166323855519295,0.952602803707123,0.254723966121674,0.145467594265938,0.989319443702698,0.00928795151412487,0.822394132614136,0.568918228149414,-6.57322671031579e-005,-0.416536033153534,0.909048497676849,-0.011332836933434,0.542381346225739,0.818503320217133,0.18940632045269,0.227266862988472,0.973506391048431,0.0252005085349083,0.227266862988472,0.973506391048431,0.0252005085349083,0.287498146295547,0.954321205615997,-0.0813377797603607,0.50415050983429,0.863552510738373,-0.0104519044980407,-0.416536033153534,0.909048497676849,-0.011332836933434,-0.211833447217941,0.977281391620636,0.00689855450764298,
- 0.154679417610168,0.987953066825867,-0.00479923281818628,-0.236904934048653,0.969200313091278,0.0672827735543251,0.163317158818245,0.985771656036377,0.039770819246769,0.133516162633896,0.990828990936279,-0.0207658335566521,0.107562020421028,0.993755280971527,-0.0296784024685621,0.693381607532501,0.720439612865448,-0.0137345371767879,0.144543200731277,0.945324897766113,-0.292349457740784,0.445646643638611,0.891774117946625,-0.0783457085490227,0.107562020421028,0.993755280971527,-0.0296784024685621,0.133516162633896,0.990828990936279,-0.0207658335566521,0.176227554678917,0.966065287590027,-0.188842743635178,0.02741146273911,0.999032557010651,-0.0343882963061333,0.416851878166199,0.908726155757904,0.0212400928139687,0.0512302294373512,0.997703790664673,0.0443006083369255,-0.226170912384987,0.697555959224701,-0.679898858070374,0.0544179603457451,0.998480439186096,0.00868399906903505,0.416851878166199,0.908726155757904,0.0212400928139687,0.02741146273911,0.999032557010651,-0.0343882963061333,0.36801615357399,0.884591937065125,-0.286463439464569,-0.281697392463684,0.959489643573761,0.00512182712554932,0.00366430752910674,0.992241024971008,-0.124275483191013,0.438332408666611,0.898803412914276,-0.00413242913782597,0.148876547813416,0.988795220851898,-0.010945288464427,0.346817880868912,0.931539058685303,-0.109326653182507,0.480846077203751,0.867803275585175,0.125317618250847,0.00554510438814759,0.917810082435608,0.396980881690979,0.0453678779304028,0.998168110847473,-0.0400267653167248,-0.0889433771371841,0.972966909408569,-0.213130280375481,0.05855767801404,0.998263299465179,-0.00642563076689839,0.747415661811829,0.663857936859131,0.0257365927100182,-0.0889433771371841,0.972966909408569,-0.213130280375481,0.747415661811829,0.663857936859131,0.0257365927100182,-0.403949320316315,0.8663250207901,-0.29377868771553,-0.403949320316315,0.8663250207901,-0.29377868771553,0.207127079367638,0.978257477283478,0.0105268573388457,-0.0889433771371841,0.972966909408569,-0.213130280375481,0.97404819726944,0.225540012121201,0.0190237127244473,
- 0.996947467327118,0.0774255990982056,0.0100464206188917,0.0467620752751827,-0.470882117748261,0.880955934524536,0.975380718708038,0.204886108636856,0.081573024392128,0.0467620752751827,-0.470882117748261,0.880955934524536,0.996947467327118,0.0774255990982056,0.0100464206188917,0.346817880868912,0.931539058685303,-0.109326653182507,-0.281697392463684,0.959489643573761,0.00512182712554932,0.36801615357399,0.884591937065125,-0.286463439464569,0.287383437156677,0.929377973079681,0.231662094593048,0.438332408666611,0.898803412914276,-0.00413242913782597,0.346817880868912,0.931539058685303,-0.109326653182507,0.220403537154198,0.958752036094666,-0.179490596055985,0.256073355674744,0.935575366020203,-0.243156552314758,0.287383437156677,0.929377973079681,0.231662094593048,0.287498146295547,0.954321205615997,-0.0813377797603607,0.227266862988472,0.973506391048431,0.0252005085349083,0.816675126552582,0.523107469081879,-0.243721842765808,0.969340085983276,0.222627505660057,-0.104004323482513,0.471779465675354,0.862354099750519,-0.183764517307281,0.154679417610168,0.987953066825867,-0.00479923281818628,-0.163729980587959,0.877065122127533,-0.451607376337051,0.163317158818245,0.985771656036377,0.039770819246769,-0.211833447217941,0.977281391620636,0.00689855450764298,-0.163729980587959,0.877065122127533,-0.451607376337051,0.154679417610168,0.987953066825867,-0.00479923281818628,-0.211833447217941,0.977281391620636,0.00689855450764298,0.50415050983429,0.863552510738373,-0.0104519044980407,-0.163729980587959,0.877065122127533,-0.451607376337051,0.0144004495814443,0.949838697910309,0.312408566474915,0.05855767801404,0.998263299465179,-0.00642563076689839,0.0602599419653416,0.998134434223175,0.00982056744396687,0.014221727848053,0.959398031234741,-0.281696885824203,0.222226902842522,0.969923734664917,-0.0993131771683693,0.267695814371109,0.922515511512756,0.278035908937454,0.42900213599205,0.903065800666809,0.0207195784896612,-0.211833447217941,0.977281391620636,0.00689855450764298,0.95522278547287,0.294097870588303,0.0324920974671841,
- 0.509561777114868,0.859548628330231,0.03902518004179,0.927561581134796,0.373317211866379,0.0162412542849779,0.834884822368622,0.550197184085846,-0.0158274117857218,0.892899990081787,0.449560821056366,0.0249916706234217,0.569840550422668,0.800246953964233,0.18677930533886,0.609975039958954,0.791741251945496,-0.0328071191906929,0.822394132614136,0.568918228149414,-6.57322671031579e-005,0.920904576778412,0.389761179685593,0.00456442683935165,0.812628984451294,0.582781255245209,-0.000374039402231574,0.803202569484711,0.593012630939484,0.0565831586718559,0.464589148759842,0.885168433189392,0.0251758228987455,0.972813308238983,0.200580403208733,-0.115765690803528,0.965428054332733,0.217257782816887,0.144040659070015,0.837258338928223,0.528777956962585,-0.13925638794899,0.65068644285202,0.759058833122253,-0.0209023505449295,0.875269711017609,0.480932414531708,-0.051057755947113,0.951788306236267,0.304052442312241,-0.0406344532966614,0.792362153530121,0.609970271587372,0.00992277171462774,0.974372208118439,0.224941179156303,0.000523247988894582,0.920904576778412,0.389761179685593,0.00456442683935165,0.464589148759842,0.885168433189392,0.0251758228987455,0.812070190906525,0.579499781131744,0.0687176585197449,0.855703413486481,0.4698346555233,-0.216856986284256,0.879958391189575,0.47440367937088,0.0247855167835951,0.974372208118439,0.224941179156303,0.000523247988894582,0.922550976276398,0.376051247119904,0.0865170285105705,0.999024927616119,-0.0312780365347862,-0.0311599336564541,0.816675126552582,0.523107469081879,-0.243721842765808,0.812896966934204,0.563673734664917,-0.146528229117393,0.853425085544586,0.514541029930115,-0.0831447690725327,0.789564073085785,0.462065637111664,0.403836488723755,0.0144004495814443,0.949838697910309,0.312408566474915,-0.335711121559143,0.924507319927216,-0.180510997772217,-0.162478730082512,0.9860680103302,0.0356458835303783,0.586644411087036,0.809546530246735,0.0219724550843239,0.927561581134796,0.373317211866379,0.0162412542849779,0.350807726383209,0.291190981864929,0.890023469924927,0.287498146295547,0.954321205615997,-0.0813377797603607,
- 0.36801615357399,0.884591937065125,-0.286463439464569,0.436192691326141,0.89406806230545,-0.101873502135277,-0.0889433771371841,0.972966909408569,-0.213130280375481,0.207127079367638,0.978257477283478,0.0105268573388457,0.222226902842522,0.969923734664917,-0.0993131771683693,-0.236904934048653,0.969200313091278,0.0672827735543251,0.812070190906525,0.579499781131744,0.0687176585197449,0.836188316345215,0.537660419940948,-0.108214393258095,0.879958391189575,0.47440367937088,0.0247855167835951,0.855703413486481,0.4698346555233,-0.216856986284256,0.252688348293304,0.819237172603607,-0.514780640602112,0.485170423984528,0.741184413433075,-0.463956266641617,0.65068644285202,0.759058833122253,-0.0209023505449295,0.836188316345215,0.537660419940948,-0.108214393258095,0.45546692609787,0.858280539512634,-0.236441031098366,0.750644624233246,0.651507079601288,-0.109868839383125,0.38725945353508,0.92186313867569,-0.0140854567289352,0.958703577518463,0.283471375703812,0.0230495892465115,0.572776257991791,0.814027845859528,-0.0963636115193367,0.485170423984528,0.741184413433075,-0.463956266641617,0.602051496505737,0.793597042560577,0.0879647955298424,0.869792520999908,0.491705924272537,0.0410647764801979,-0.26247364282608,-0.708130359649658,0.655483782291412,-0.154562801122665,-0.900679290294647,-0.406062781810761,0.860719680786133,0.167503267526627,0.480733305215836,0.464589148759842,0.885168433189392,0.0251758228987455,0.115602716803551,0.915709733963013,0.384852737188339,0.164373636245728,0.957473516464233,-0.237119629979134,0.853425085544586,0.514541029930115,-0.0831447690725327,0.998976528644562,-0.0386617667973042,-0.0234788488596678,0.750644624233246,0.651507079601288,-0.109868839383125,0.45546692609787,0.858280539512634,-0.236441031098366,0.485170423984528,0.741184413433075,-0.463956266641617,0.875269711017609,0.480932414531708,-0.051057755947113,0.65068644285202,0.759058833122253,-0.0209023505449295,0.579642295837402,0.74640816450119,0.326939702033997,0.789564073085785,0.462065637111664,0.403836488723755,0.673739433288574,0.579825818538666,0.458123505115509,
- 0.812070190906525,0.579499781131744,0.0687176585197449,0.464589148759842,0.885168433189392,0.0251758228987455,0.164373636245728,0.957473516464233,-0.237119629979134,0.252688348293304,0.819237172603607,-0.514780640602112,0.482601821422577,0.868319153785706,-0.114530347287655,0.812070190906525,0.579499781131744,0.0687176585197449,0.164373636245728,0.957473516464233,-0.237119629979134,0.879958391189575,0.47440367937088,0.0247855167835951,0.836188316345215,0.537660419940948,-0.108214393258095,0.65068644285202,0.759058833122253,-0.0209023505449295,0.974372208118439,0.224941179156303,0.000523247988894582,0.949725389480591,0.176415175199509,0.258649349212646,0.602051496505737,0.793597042560577,0.0879647955298424,0.485170423984528,0.741184413433075,-0.463956266641617,0.252688348293304,0.819237172603607,-0.514780640602112,0.994154155254364,-0.102400429546833,0.0342301391065121,0.977938413619995,0.208801954984665,-0.00617934018373489,0.958703577518463,0.283471375703812,0.0230495892465115,0.38725945353508,0.92186313867569,-0.0140854567289352,0.896579742431641,0.441875696182251,0.0298412516713142,0.99419504404068,0.105536848306656,0.0209309887140989,0.869792520999908,0.491705924272537,0.0410647764801979,0.602051496505737,0.793597042560577,0.0879647955298424,0.991778552532196,0.110911227762699,0.0638275593519211,0.97404819726944,0.225540012121201,0.0190237127244473,0.965428054332733,0.217257782816887,0.144040659070015,0.975739181041718,0.198963850736618,-0.0913581401109695,0.936395108699799,0.349619567394257,-0.0305043421685696,0.965428054332733,0.217257782816887,0.144040659070015,0.972813308238983,0.200580403208733,-0.115765690803528,0.973877608776093,0.181789979338646,0.136069029569626,0.949725389480591,0.176415175199509,0.258649349212646,0.975739181041718,0.198963850736618,-0.0913581401109695,0.977938413619995,0.208801954984665,-0.00617934018373489,0.975380718708038,0.204886108636856,0.081573024392128,0.913883924484253,0.247744858264923,-0.32161870598793,0.958703577518463,0.283471375703812,0.0230495892465115,0.975380718708038,0.204886108636856,0.081573024392128,
- 0.996947467327118,0.0774255990982056,0.0100464206188917,0.768616795539856,0.639682650566101,0.00587579142302275,0.913883924484253,0.247744858264923,-0.32161870598793,0.768616795539856,0.639682650566101,0.00587579142302275,0.936395108699799,0.349619567394257,-0.0305043421685696,0.579642295837402,0.74640816450119,0.326939702033997,0.579642295837402,0.74640816450119,0.326939702033997,0.673739433288574,0.579825818538666,0.458123505115509,0.913883924484253,0.247744858264923,-0.32161870598793,0.973877608776093,0.181789979338646,0.136069029569626,0.972813308238983,0.200580403208733,-0.115765690803528,0.896579742431641,0.441875696182251,0.0298412516713142,0.991778552532196,0.110911227762699,0.0638275593519211,0.836188316345215,0.537660419940948,-0.108214393258095,0.482601821422577,0.868319153785706,-0.114530347287655,0.252688348293304,0.819237172603607,-0.514780640602112,0.951788306236267,0.304052442312241,-0.0406344532966614,0.875269711017609,0.480932414531708,-0.051057755947113,0.485170423984528,0.741184413433075,-0.463956266641617,0.572776257991791,0.814027845859528,-0.0963636115193367,0.836188316345215,0.537660419940948,-0.108214393258095,0.812070190906525,0.579499781131744,0.0687176585197449,0.482601821422577,0.868319153785706,-0.114530347287655,0.579642295837402,0.74640816450119,0.326939702033997,0.913883924484253,0.247744858264923,-0.32161870598793,0.768616795539856,0.639682650566101,0.00587579142302275,0.789564073085785,0.462065637111664,0.403836488723755,0.45546692609787,0.858280539512634,-0.236441031098366,0.673739433288574,0.579825818538666,0.458123505115509,-0.154562801122665,-0.900679290294647,-0.406062781810761,-0.459262698888779,-0.677439033985138,-0.574590384960175,0.940744638442993,0.337790697813034,-0.0299499370157719,0.996947467327118,0.0774255990982056,0.0100464206188917,0.97404819726944,0.225540012121201,0.0190237127244473,0.936395108699799,0.349619567394257,-0.0305043421685696,0.768616795539856,0.639682650566101,0.00587579142302275,0.789564073085785,0.462065637111664,0.403836488723755,0.853425085544586,0.514541029930115,-0.0831447690725327,
- 0.45546692609787,0.858280539512634,-0.236441031098366,0.45546692609787,0.858280539512634,-0.236441031098366,0.958703577518463,0.283471375703812,0.0230495892465115,0.913883924484253,0.247744858264923,-0.32161870598793,0.45546692609787,0.858280539512634,-0.236441031098366,0.913883924484253,0.247744858264923,-0.32161870598793,0.673739433288574,0.579825818538666,0.458123505115509,0.803202569484711,0.593012630939484,0.0565831586718559,0.789564073085785,0.462065637111664,0.403836488723755,0.579642295837402,0.74640816450119,0.326939702033997,0.949725389480591,0.176415175199509,0.258649349212646,0.164373636245728,0.957473516464233,-0.237119629979134,0.975739181041718,0.198963850736618,-0.0913581401109695,0.965055048465729,0.0285988729447126,0.260482043027878,-0.0109328264370561,0.969808340072632,-0.2436233907938,-0.01315544731915,0.999909698963165,-0.00273278052918613,0.00502160703763366,0.998216807842255,0.0594809241592884,-0.378617435693741,0.923316836357117,0.064301997423172,0.608619749546051,0.793432414531708,-0.00685676699504256,0.0412432514131069,0.972355782985687,-0.229832723736763,-0.0620576329529285,0.997954487800598,-0.0153541825711727,-0.0235704351216555,0.999722063541412,-0.000579183455556631,-0.533588409423828,0.0177981033921242,-0.845556914806366,-0.0109328264370561,0.969808340072632,-0.2436233907938,0.965055048465729,0.0285988729447126,0.260482043027878,0.905494272708893,0.0265025068074465,-0.423529952764511,0.64565122127533,0.0332530289888382,-0.762908160686493,-0.533588409423828,0.0177981033921242,-0.845556914806366,-0.0235704351216555,0.999722063541412,-0.000579183455556631,-0.0620576329529285,0.997954487800598,-0.0153541825711727,-0.0105567015707493,0.996177017688751,-0.0867172181606293,0.0588989853858948,0.979549825191498,0.192387983202934,0.466681838035584,0.884423017501831,0.00199539074674249,-0.0620576329529285,0.997954487800598,-0.0153541825711727,-0.533588409423828,0.0177981033921242,-0.845556914806366,-0.0105567015707493,0.996177017688751,-0.0867172181606293,0.64565122127533,0.0332530289888382,-0.762908160686493,
- -0.0109328264370561,0.969808340072632,-0.2436233907938,0.905494272708893,0.0265025068074465,-0.423529952764511,-0.0235704351216555,0.999722063541412,-0.000579183455556631,-0.0109328264370561,0.969808340072632,-0.2436233907938,0.64565122127533,0.0332530289888382,-0.762908160686493,-0.533588409423828,0.0177981033921242,-0.845556914806366,-0.998306632041931,0.022547222673893,0.0536244735121727,-0.0105567015707493,0.996177017688751,-0.0867172181606293,0.00502160703763366,0.998216807842255,0.0594809241592884,0.0412432514131069,0.972355782985687,-0.229832723736763,0.0588989853858948,0.979549825191498,0.192387983202934,-0.0105567015707493,0.996177017688751,-0.0867172181606293,-0.0235704351216555,0.999722063541412,-0.000579183455556631,-0.0620576329529285,0.997954487800598,-0.0153541825711727,0.466681838035584,0.884423017501831,0.00199539074674249,0.177321806550026,0.982595443725586,0.0553442798554897,-0.0443943627178669,0.998884618282318,-0.0160842277109623,0.265328645706177,0.963987231254578,-0.0181471221148968,0.283502638339996,0.955724954605103,0.0788420289754868,0.213467001914978,0.976561188697815,0.0275681167840958,-0.0235704351216555,0.999722063541412,-0.000579183455556631,0.177321806550026,0.982595443725586,0.0553442798554897,-0.0328577496111393,0.988028943538666,0.15072874724865,-0.0109328264370561,0.969808340072632,-0.2436233907938,-0.0105567015707493,0.996177017688751,-0.0867172181606293,-0.998306632041931,0.022547222673893,0.0536244735121727,0.00502160703763366,0.998216807842255,0.0594809241592884,-0.0328577496111393,0.988028943538666,0.15072874724865,-0.0384389273822308,0.930041015148163,-0.365439563989639,-0.01315544731915,0.999909698963165,-0.00273278052918613,-0.0109328264370561,0.969808340072632,-0.2436233907938,-0.226170912384987,0.697555959224701,-0.679898858070374,0.02741146273911,0.999032557010651,-0.0343882963061333,-0.0384389273822308,0.930041015148163,-0.365439563989639,0.177321806550026,0.982595443725586,0.0553442798554897,0.466681838035584,0.884423017501831,0.00199539074674249,0.445646643638611,0.891774117946625,-0.0783457085490227,
- 0.144543200731277,0.945324897766113,-0.292349457740784,0.0412432514131069,0.972355782985687,-0.229832723736763,0.608619749546051,0.793432414531708,-0.00685676699504256,-0.335711121559143,0.924507319927216,-0.180510997772217,0.702104091644287,0.709132194519043,-0.0646632984280586,-0.0328577496111393,0.988028943538666,0.15072874724865,0.177321806550026,0.982595443725586,0.0553442798554897,0.144543200731277,0.945324897766113,-0.292349457740784,0.257570654153824,0.940040349960327,-0.223565518856049,-0.0328577496111393,0.988028943538666,0.15072874724865,0.144543200731277,0.945324897766113,-0.292349457740784,-0.01315544731915,0.999909698963165,-0.00273278052918613,-0.0384389273822308,0.930041015148163,-0.365439563989639,-0.0443943627178669,0.998884618282318,-0.0160842277109623,0.213467001914978,0.976561188697815,0.0275681167840958,-0.0384389273822308,0.930041015148163,-0.365439563989639,0.257570654153824,0.940040349960327,-0.223565518856049,-0.226170912384987,0.697555959224701,-0.679898858070374,0.265328645706177,0.963987231254578,-0.0181471221148968,-0.0443943627178669,0.998884618282318,-0.0160842277109623,0.02741146273911,0.999032557010651,-0.0343882963061333,0.176227554678917,0.966065287590027,-0.188842743635178,-0.0384389273822308,0.930041015148163,-0.365439563989639,-0.0328577496111393,0.988028943538666,0.15072874724865,0.257570654153824,0.940040349960327,-0.223565518856049,0.702104091644287,0.709132194519043,-0.0646632984280586,0.623076617717743,0.708979189395905,-0.330339133739471,0.0588989853858948,0.979549825191498,0.192387983202934,0.0412432514131069,0.972355782985687,-0.229832723736763,0.466681838035584,0.884423017501831,0.00199539074674249,0.0588989853858948,0.979549825191498,0.192387983202934,0.445646643638611,0.891774117946625,-0.0783457085490227,-0.999397695064545,0.0038502630777657,-0.0344882160425186,-0.999430418014526,-0.00658407388255,-0.0331011489033699,-0.998965620994568,-0.0300106462091208,-0.0341628231108189,-0.998902142047882,-0.0287367776036263,-0.0369974486529827,-0.999290347099304,-0.00635176384821534,-0.0371286422014236,
- -0.999224007129669,0.0212004035711288,-0.0331954136490822,-0.01315544731915,0.999909698963165,-0.00273278052918613,0.213467001914978,0.976561188697815,0.0275681167840958,0.350239902734756,0.0223077461123466,0.936394333839417,0.965055048465729,0.0285988729447126,0.260482043027878,-0.998306632041931,0.022547222673893,0.0536244735121727,-0.378617435693741,0.923316836357117,0.064301997423172,0.00502160703763366,0.998216807842255,0.0594809241592884,0.362357318401337,0.00679535465314984,0.932014465332031,0.350239902734756,0.0223077461123466,0.936394333839417,0.213467001914978,0.976561188697815,0.0275681167840958,0.283502638339996,0.955724954605103,0.0788420289754868,0.0144004495814443,0.949838697910309,0.312408566474915,0.702104091644287,0.709132194519043,-0.0646632984280586,-0.335711121559143,0.924507319927216,-0.180510997772217,0.267695814371109,0.922515511512756,0.278035908937454,0.271426349878311,0.954776525497437,-0.121364861726761,0.0848237350583076,0.968609154224396,0.233669027686119,-0.236904934048653,0.969200313091278,0.0672827735543251,0.0602599419653416,0.998134434223175,0.00982056744396687,0.05855767801404,0.998263299465179,-0.00642563076689839,0.154679417610168,0.987953066825867,-0.00479923281818628,0.693381607532501,0.720439612865448,-0.0137345371767879,0.0602599419653416,0.998134434223175,0.00982056744396687,-0.236904934048653,0.969200313091278,0.0672827735543251,0.163317158818245,0.985771656036377,0.039770819246769,0.693381607532501,0.720439612865448,-0.0137345371767879,0.154679417610168,0.987953066825867,-0.00479923281818628,0.164373636245728,0.957473516464233,-0.237119629979134,0.936395108699799,0.349619567394257,-0.0305043421685696,0.975739181041718,0.198963850736618,-0.0913581401109695,0.287383437156677,0.929377973079681,0.231662094593048,0.36801615357399,0.884591937065125,-0.286463439464569,0.287498146295547,0.954321205615997,-0.0813377797603607,0.148876547813416,0.988795220851898,-0.010945288464427,0.438332408666611,0.898803412914276,-0.00413242913782597,0.248412609100342,0.968602240085602,-0.0100469021126628,
- -0.198250994086266,0.979670166969299,-0.0307058673352003,0.0453678779304028,0.998168110847473,-0.0400267653167248,0.350807726383209,0.291190981864929,0.890023469924927,0.220403537154198,0.958752036094666,-0.179490596055985,0.227266862988472,0.973506391048431,0.0252005085349083,-0.0384389273822308,0.930041015148163,-0.365439563989639,0.02741146273911,0.999032557010651,-0.0343882963061333,-0.0443943627178669,0.998884618282318,-0.0160842277109623,0.927773356437683,0.372180938720703,-0.0267940070480108,0.812896966934204,0.563673734664917,-0.146528229117393,0.471779465675354,0.862354099750519,-0.183764517307281,0.969340085983276,0.222627505660057,-0.104004323482513,0.812896966934204,0.563673734664917,-0.146528229117393,0.485170841217041,0.87438040971756,-0.0082590552046895,0.998976528644562,-0.0386617667973042,-0.0234788488596678,0.853425085544586,0.514541029930115,-0.0831447690725327,0.271426349878311,0.954776525497437,-0.121364861726761,-0.361411482095718,0.932309925556183,0.0134141221642494,0.0848237350583076,0.968609154224396,0.233669027686119,0.409269988536835,0.775353968143463,0.480961829423904,-0.361411482095718,0.932309925556183,0.0134141221642494,0.271426349878311,0.954776525497437,-0.121364861726761,0.367455244064331,0.929965376853943,-0.0118742370977998,0.409269988536835,0.775353968143463,0.480961829423904,0.271426349878311,0.954776525497437,-0.121364861726761,0.569840550422668,0.800246953964233,0.18677930533886,0.526860892772675,0.729879558086395,-0.435538023710251,0.586644411087036,0.809546530246735,0.0219724550843239,0.609975039958954,0.791741251945496,-0.0328071191906929,0.42900213599205,0.903065800666809,0.0207195784896612,0.172697767615318,0.982790052890778,-0.0655686631798744,0.166323855519295,0.952602803707123,0.254723966121674,0.172697767615318,0.982790052890778,-0.0655686631798744,0.145467594265938,0.989319443702698,0.00928795151412487,0.166323855519295,0.952602803707123,0.254723966121674,0.509561777114868,0.859548628330231,0.03902518004179,0.00554510438814759,0.917810082435608,0.396980881690979,0.480846077203751,0.867803275585175,0.125317618250847,
- 0.248412609100342,0.968602240085602,-0.0100469021126628,0.438332408666611,0.898803412914276,-0.00413242913782597,0.287383437156677,0.929377973079681,0.231662094593048,0.256073355674744,0.935575366020203,-0.243156552314758,-0.198250994086266,0.979670166969299,-0.0307058673352003,0.248412609100342,0.968602240085602,-0.0100469021126628,0.256073355674744,0.935575366020203,-0.243156552314758,-0.281697392463684,0.959489643573761,0.00512182712554932,0.0512755624949932,0.998648345470428,0.00850323028862476,0.0134694548323751,0.998800218105316,0.0470815449953079,0.00366430752910674,0.992241024971008,-0.124275483191013,0.0134694548323751,0.998800218105316,0.0470815449953079,0.0512755624949932,0.998648345470428,0.00850323028862476,0.416851878166199,0.908726155757904,0.0212400928139687,0.0544179603457451,0.998480439186096,0.00868399906903505,0.464589148759842,0.885168433189392,0.0251758228987455,0.803202569484711,0.593012630939484,0.0565831586718559,0.579642295837402,0.74640816450119,0.326939702033997,0.115602716803551,0.915709733963013,0.384852737188339,0.936395108699799,0.349619567394257,-0.0305043421685696,0.115602716803551,0.915709733963013,0.384852737188339,0.579642295837402,0.74640816450119,0.326939702033997,0.623076617717743,0.708979189395905,-0.330339133739471,0.014221727848053,0.959398031234741,-0.281696885824203,0.445646643638611,0.891774117946625,-0.0783457085490227,0.0588989853858948,0.979549825191498,0.192387983202934,0.623076617717743,0.708979189395905,-0.330339133739471,0.445646643638611,0.891774117946625,-0.0783457085490227,0.816675126552582,0.523107469081879,-0.243721842765808,0.471779465675354,0.862354099750519,-0.183764517307281,0.812896966934204,0.563673734664917,-0.146528229117393,0.816675126552582,0.523107469081879,-0.243721842765808,0.938959896564484,0.323081731796265,-0.118205606937408,0.969340085983276,0.222627505660057,-0.104004323482513,-0.00629223836585879,0.959627091884613,0.281204849481583,0.00467213941738009,0.984275996685028,-0.176575139164925,0.00903101079165936,0.949655115604401,0.313167005777359,
- -0.00659185368567705,0.999206483364105,-0.0392803549766541,0.0082590002566576,0.979210793972015,0.202677145600319,0.047971099615097,0.998538851737976,0.0248776748776436,-0.268683582544327,0.963225960731506,0.00220202561467886,-0.0727275311946869,0.989046633243561,-0.12844306230545,0.474684119224548,0.0364588424563408,0.879400789737701,0.0322444513440132,0.995349764823914,0.090769924223423,0.029515078291297,0.999563276767731,-0.00145059102214873,0.990953862667084,0.0357530787587166,0.129353493452072,-0.449562638998032,0.892393827438354,-0.0390730462968349,-0.00518902996554971,0.970398843288422,-0.24145220220089,-0.0136365555226803,0.956671357154846,0.290850341320038,-0.813530087471008,0.577895045280457,0.0648544430732727,-0.0690889954566956,0.985749840736389,0.153374880552292,-0.0727275311946869,0.989046633243561,-0.12844306230545,-0.809706091880798,0.575475454330444,-0.114908322691917,0.0155987199395895,0.991659820079803,0.127934888005257,0.637163639068604,0.770129323005676,0.0303871668875217,0.777449369430542,0.614608824253082,-0.133523121476173,-0.052491370588541,0.998427331447601,-0.0196872986853123,0.0651788339018822,0.997872591018677,0.0014299915637821,-0.184402585029602,0.982850432395935,-0.000835159851703793,0.462604761123657,0.886562287807465,0.00203751469962299,0.00636219885200262,0.953244626522064,-0.302132427692413,-0.00572848133742809,0.988894045352936,0.148511901497841,-0.00783563125878572,0.993899047374725,-0.110015094280243,0.00278589362278581,0.997820198535919,0.0659310072660446,0.0155987199395895,0.991659820079803,0.127934888005257,0.293097287416458,0.926415324211121,-0.236323192715645,-0.00783563125878572,0.993899047374725,-0.110015094280243,-0.00572848133742809,0.988894045352936,0.148511901497841,0.314298897981644,0.949301660060883,-0.00653413543477654,0.127945572137833,0.991614878177643,-0.0181587990373373,0.393494486808777,0.919252216815948,0.0117276143282652,-0.251810789108276,0.967718601226807,0.0105904247611761,0.0704114213585854,0.997505068778992,-0.00508976168930531,0.0243088118731976,0.999510943889618,0.019675001502037,
- 0.754740953445435,0.644916236400604,-0.120204590260983,0.610559046268463,0.658561944961548,0.439902126789093,-0.449562638998032,0.892393827438354,-0.0390730462968349,-0.0281736329197884,0.97427886724472,-0.223577201366425,-0.039559181779623,0.988389790058136,0.14669905602932,-0.427311152219772,0.889983832836151,-0.159166514873505,-0.430103480815887,0.899790525436401,0.0734023749828339,-0.157732680439949,0.987289488315582,0.0194920320063829,-0.185373604297638,0.982184886932373,-0.0308136381208897,-0.0129055231809616,0.977658033370972,-0.209804967045784,-0.0140076810494065,0.979561328887939,-0.200657457113266,0.00636219885200262,0.953244626522064,-0.302132427692413,0.164405792951584,0.98635858297348,-0.00821272749453783,-0.0138259315863252,0.9995276927948,0.0274445787072182,-0.00572848133742809,0.988894045352936,0.148511901497841,0.754740953445435,0.644916236400604,-0.120204590260983,0.524358808994293,0.851349234580994,0.0158811863511801,0.479632258415222,0.860742330551147,0.17051562666893,0.379880100488663,0.920156180858612,-0.0948876664042473,0.208814367651939,0.977768123149872,0.0191292129456997,0.647443950176239,0.664682388305664,-0.372845351696014,-0.039559181779623,0.988389790058136,0.14669905602932,-0.184402585029602,0.982850432395935,-0.000835159851703793,-0.298822075128555,0.953250169754028,0.0449370518326759,-0.182550147175789,0.982877612113953,0.0250386949628592,-0.571783542633057,0.820368707180023,-0.00767143815755844,-0.430103480815887,0.899790525436401,0.0734023749828339,-0.427311152219772,0.889983832836151,-0.159166514873505,0.999747157096863,-0.0181943289935589,-0.0132191274315119,0.997735977172852,-0.0642255842685699,-0.0199505053460598,0.998617053031921,-0.0512516833841801,-0.011719124391675,-0.41190367937088,0.911153554916382,0.0116030378267169,0.379880100488663,0.920156180858612,-0.0948876664042473,0.143412381410599,0.989656746387482,-0.0035162135027349,0.317298978567123,0.948072612285614,0.0218993797898293,0.00467213941738009,0.984275996685028,-0.176575139164925,-0.00629223836585879,0.959627091884613,0.281204849481583,
- -0.132001355290413,0.99025547504425,0.0443831793963909,-0.157732680439949,0.987289488315582,0.0194920320063829,-0.430103480815887,0.899790525436401,0.0734023749828339,0.317298978567123,0.948072612285614,0.0218993797898293,-0.251810789108276,0.967718601226807,0.0105904247611761,0.393494486808777,0.919252216815948,0.0117276143282652,0.398658752441406,0.904928803443909,0.148913249373436,0.462604761123657,0.886562287807465,0.00203751469962299,0.610559046268463,0.658561944961548,0.439902126789093,0.398658752441406,0.904928803443909,0.148913249373436,0.999497771263123,0.0295288488268852,-0.0115040009841323,0.999206006526947,0.0387506894767284,-0.0092620337381959,0.999747157096863,-0.0181943289935589,-0.0132191274315119,0.998617053031921,-0.0512516833841801,-0.011719124391675,-0.0639993995428085,0.997844696044922,0.0144954910501838,-0.345023602247238,0.938039243221283,0.0322645716369152,-0.251311749219894,0.0460557155311108,-0.966809809207916,0.754740953445435,0.644916236400604,-0.120204590260983,-0.00692096166312695,0.997370541095734,0.0721394494175911,0.610559046268463,0.658561944961548,0.439902126789093,0.398658752441406,0.904928803443909,0.148913249373436,0.610559046268463,0.658561944961548,0.439902126789093,-0.251810789108276,0.967718601226807,0.0105904247611761,0.00903101079165936,0.949655115604401,0.313167005777359,0.0651788339018822,0.997872591018677,0.0014299915637821,-0.052491370588541,0.998427331447601,-0.0196872986853123,-0.00659185368567705,0.999206483364105,-0.0392803549766541,0.00903101079165936,0.949655115604401,0.313167005777359,-0.572489798069,0.817750692367554,-0.0594923235476017,-0.38197660446167,0.916656017303467,0.117625661194324,-0.00632862746715546,0.994740545749664,-0.102231808006763,-0.00139737338759005,0.998816609382629,0.0486136972904205,0.0210823230445385,0.994779646396637,-0.0998450815677643,0.0253424793481827,0.972568929195404,0.231230720877647,-0.113924838602543,0.993485629558563,0.00274907541461289,-0.0956616103649139,0.995374202728271,-0.00889286678284407,-0.11816393584013,0.986407101154327,-0.114185735583305,
- -0.268683582544327,0.963225960731506,0.00220202561467886,-0.542391657829285,0.596199810504913,-0.59190970659256,-0.0727275311946869,0.989046633243561,-0.12844306230545,0.614557325839996,0.78636771440506,0.0628104880452156,-0.052491370588541,0.998427331447601,-0.0196872986853123,0.34585440158844,0.935786485671997,0.0684722736477852,-0.00518902996554971,0.970398843288422,-0.24145220220089,-0.449562638998032,0.892393827438354,-0.0390730462968349,-0.461444169282913,0.840559661388397,-0.283775746822357,-0.298822075128555,0.953250169754028,0.0449370518326759,-0.11816393584013,0.986407101154327,-0.114185735583305,-0.0956616103649139,0.995374202728271,-0.00889286678284407,0.614557325839996,0.78636771440506,0.0628104880452156,0.393494486808777,0.919252216815948,0.0117276143282652,0.0253424793481827,0.972568929195404,0.231230720877647,-0.113924838602543,0.993485629558563,0.00274907541461289,-0.0392532907426357,0.968669891357422,-0.245229691267014,-0.0144215831533074,0.923779606819153,0.382653087377548,0.0228598974645138,0.999131679534912,0.0348337553441525,-0.113924838602543,0.993485629558563,0.00274907541461289,-0.11816393584013,0.986407101154327,-0.114185735583305,-0.0392532907426357,0.968669891357422,-0.245229691267014,-0.11816393584013,0.986407101154327,-0.114185735583305,0.00903101079165936,0.949655115604401,0.313167005777359,-0.38197660446167,0.916656017303467,0.117625661194324,0.578307390213013,0.578970789909363,-0.574763774871826,0.164405792951584,0.98635858297348,-0.00821272749453783,0.00636219885200262,0.953244626522064,-0.302132427692413,-0.461444169282913,0.840559661388397,-0.283775746822357,-0.449562638998032,0.892393827438354,-0.0390730462968349,-0.039559181779623,0.988389790058136,0.14669905602932,0.479632258415222,0.860742330551147,0.17051562666893,0.524358808994293,0.851349234580994,0.0158811863511801,0.104929268360138,0.993245840072632,0.0495217889547348,0.217670157551765,0.97395521402359,0.0634888336062431,0.00467213941738009,0.984275996685028,-0.176575139164925,0.317298978567123,0.948072612285614,0.0218993797898293,
- 0.217670157551765,0.97395521402359,0.0634888336062431,-0.56023782491684,0.828299582004547,-0.00730335433036089,-0.0929416641592979,0.985669732093811,-0.140772759914398,-0.572489798069,0.817750692367554,-0.0594923235476017,0.554069578647614,0.72281277179718,-0.41297522187233,0.247994035482407,0.968519389629364,0.0216645412147045,-0.00139737338759005,0.998816609382629,0.0486136972904205,0.647443950176239,0.664682388305664,-0.372845351696014,0.143412381410599,0.989656746387482,-0.0035162135027349,0.379880100488663,0.920156180858612,-0.0948876664042473,-0.0690889954566956,0.985749840736389,0.153374880552292,-0.317413657903671,0.948194026947021,0.01329405605793,0.51320469379425,0.858209848403931,0.00983416102826595,0.0143771059811115,0.999454259872437,-0.0297401249408722,-0.0731245875358582,0.997172057628632,0.0173388347029686,0.474684119224548,0.0364588424563408,0.879400789737701,-0.819854080677032,0.0548490472137928,0.569939315319061,-0.572489798069,0.817750692367554,-0.0594923235476017,0.00467213941738009,0.984275996685028,-0.176575139164925,0.217670157551765,0.97395521402359,0.0634888336062431,0.00903101079165936,0.949655115604401,0.313167005777359,0.00467213941738009,0.984275996685028,-0.176575139164925,-0.572489798069,0.817750692367554,-0.0594923235476017,-0.185373604297638,0.982184886932373,-0.0308136381208897,-0.0140076810494065,0.979561328887939,-0.200657457113266,0.754740953445435,0.644916236400604,-0.120204590260983,0.0674222186207771,0.931502103805542,-0.357432574033737,0.314298897981644,0.949301660060883,-0.00653413543477654,0.337912976741791,0.937188684940338,-0.0865571275353432,-0.039559181779623,0.988389790058136,0.14669905602932,-0.298822075128555,0.953250169754028,0.0449370518326759,-0.461444169282913,0.840559661388397,-0.283775746822357,-0.298822075128555,0.953250169754028,0.0449370518326759,-0.00518902996554971,0.970398843288422,-0.24145220220089,-0.461444169282913,0.840559661388397,-0.283775746822357,0.754740953445435,0.644916236400604,-0.120204590260983,0.479632258415222,0.860742330551147,0.17051562666893,
- -0.185373604297638,0.982184886932373,-0.0308136381208897,-0.41190367937088,0.911153554916382,0.0116030378267169,0.143412381410599,0.989656746387482,-0.0035162135027349,-0.472464621067047,0.881327390670776,0.00626618787646294,-0.080440990626812,0.995302140712738,0.0538788363337517,0.0381235294044018,0.999234318733215,0.00879953801631927,-0.0956616103649139,0.995374202728271,-0.00889286678284407,-0.00518902996554971,0.970398843288422,-0.24145220220089,-0.298822075128555,0.953250169754028,0.0449370518326759,0.00636219885200262,0.953244626522064,-0.302132427692413,0.777449369430542,0.614608824253082,-0.133523121476173,0.578307390213013,0.578970789909363,-0.574763774871826,0.0155987199395895,0.991659820079803,0.127934888005257,0.777449369430542,0.614608824253082,-0.133523121476173,0.00636219885200262,0.953244626522064,-0.302132427692413,0.247994035482407,0.968519389629364,0.0216645412147045,0.332312226295471,0.943131506443024,0.00845667906105518,0.0210823230445385,0.994779646396637,-0.0998450815677643,-0.00139737338759005,0.998816609382629,0.0486136972904205,-0.00572848133742809,0.988894045352936,0.148511901497841,-0.0138259315863252,0.9995276927948,0.0274445787072182,0.0674222186207771,0.931502103805542,-0.357432574033737,0.337912976741791,0.937188684940338,-0.0865571275353432,0.337912976741791,0.937188684940338,-0.0865571275353432,0.293097287416458,0.926415324211121,-0.236323192715645,-0.00572848133742809,0.988894045352936,0.148511901497841,0.0704114213585854,0.997505068778992,-0.00508976168930531,0.610559046268463,0.658561944961548,0.439902126789093,0.462604761123657,0.886562287807465,0.00203751469962299,-0.449562638998032,0.892393827438354,-0.0390730462968349,-0.427311152219772,0.889983832836151,-0.159166514873505,-0.0281736329197884,0.97427886724472,-0.223577201366425,0.0217162072658539,0.993416905403137,0.112478092312813,0.100261397659779,0.992830276489258,0.0650822669267654,-0.0524655506014824,0.994306564331055,0.0927460193634033,0.0312048103660345,0.97010612487793,0.24066635966301,0.0651788339018822,0.997872591018677,0.0014299915637821,
- 0.00903101079165936,0.949655115604401,0.313167005777359,-0.11816393584013,0.986407101154327,-0.114185735583305,0.0243088118731976,0.999510943889618,0.019675001502037,-0.0281736329197884,0.97427886724472,-0.223577201366425,-0.157732680439949,0.987289488315582,0.0194920320063829,0.524358808994293,0.851349234580994,0.0158811863511801,-0.0281736329197884,0.97427886724472,-0.223577201366425,-0.427311152219772,0.889983832836151,-0.159166514873505,-0.157732680439949,0.987289488315582,0.0194920320063829,-0.184402585029602,0.982850432395935,-0.000835159851703793,-0.11816393584013,0.986407101154327,-0.114185735583305,-0.298822075128555,0.953250169754028,0.0449370518326759,0.0651788339018822,0.997872591018677,0.0014299915637821,-0.11816393584013,0.986407101154327,-0.114185735583305,-0.184402585029602,0.982850432395935,-0.000835159851703793,-0.345023602247238,0.938039243221283,0.0322645716369152,-0.891248404979706,0.0704422667622566,-0.44801127910614,-0.251311749219894,0.0460557155311108,-0.966809809207916,-0.891248404979706,0.0704422667622566,-0.44801127910614,0.00342293083667755,0.993550479412079,-0.113339684903622,-0.439068824052811,0.890982091426849,-0.115626059472561,0.314298897981644,0.949301660060883,-0.00653413543477654,0.0146471364423633,0.997347235679626,-0.0713026374578476,0.337912976741791,0.937188684940338,-0.0865571275353432,0.381228119134903,0.915575087070465,-0.128013446927071,0.322458624839783,0.925914824008942,-0.196728557348251,0.0143771059811115,0.999454259872437,-0.0297401249408722,-0.345023602247238,0.938039243221283,0.0322645716369152,0.00342293083667755,0.993550479412079,-0.113339684903622,-0.891248404979706,0.0704422667622566,-0.44801127910614,-0.052491370588541,0.998427331447601,-0.0196872986853123,0.614557325839996,0.78636771440506,0.0628104880452156,-0.00659185368567705,0.999206483364105,-0.0392803549766541,-0.00659185368567705,0.999206483364105,-0.0392803549766541,0.614557325839996,0.78636771440506,0.0628104880452156,-0.00629223836585879,0.959627091884613,0.281204849481583,0.0212246179580688,0.974177539348602,0.22478361427784,
- 0.379880100488663,0.920156180858612,-0.0948876664042473,0.293097287416458,0.926415324211121,-0.236323192715645,-0.185373604297638,0.982184886932373,-0.0308136381208897,0.479632258415222,0.860742330551147,0.17051562666893,0.307602941989899,0.951492130756378,0.00657146796584129,-0.251311749219894,0.0460557155311108,-0.966809809207916,0.135923907160759,0.0243899039924145,-0.990419030189514,-0.0639993995428085,0.997844696044922,0.0144954910501838,-0.132001355290413,0.99025547504425,0.0443831793963909,-0.00629223836585879,0.959627091884613,0.281204849481583,0.4518181681633,0.787262856960297,0.41961607336998,0.316854655742645,0.940880298614502,0.119780160486698,0.393494486808777,0.919252216815948,0.0117276143282652,0.614557325839996,0.78636771440506,0.0628104880452156,0.34585440158844,0.935786485671997,0.0684722736477852,0.990953862667084,0.0357530787587166,0.129353493452072,0.029515078291297,0.999563276767731,-0.00145059102214873,0.299210399389267,0.953683197498322,0.0310069862753153,-0.0731245875358582,0.997172057628632,0.0173388347029686,-0.819854080677032,0.0548490472137928,0.569939315319061,-0.0126510122790933,0.990724086761475,0.135298743844032,0.614557325839996,0.78636771440506,0.0628104880452156,0.4518181681633,0.787262856960297,0.41961607336998,-0.00629223836585879,0.959627091884613,0.281204849481583,-0.819854080677032,0.0548490472137928,0.569939315319061,-0.891248404979706,0.0704422667622566,-0.44801127910614,-0.439068824052811,0.890982091426849,-0.115626059472561,-0.819854080677032,0.0548490472137928,0.569939315319061,-0.439068824052811,0.890982091426849,-0.115626059472561,-0.0126510122790933,0.990724086761475,0.135298743844032,0.127945572137833,0.991614878177643,-0.0181587990373373,0.322458624839783,0.925914824008942,-0.196728557348251,-0.00632862746715546,0.994740545749664,-0.102231808006763,0.398658752441406,0.904928803443909,0.148913249373436,-0.052491370588541,0.998427331447601,-0.0196872986853123,0.462604761123657,0.886562287807465,0.00203751469962299,-0.251810789108276,0.967718601226807,0.0105904247611761,
- 0.610559046268463,0.658561944961548,0.439902126789093,-0.00692096166312695,0.997370541095734,0.0721394494175911,-0.00692096166312695,0.997370541095734,0.0721394494175911,0.0146471364423633,0.997347235679626,-0.0713026374578476,0.314298897981644,0.949301660060883,-0.00653413543477654,-0.251810789108276,0.967718601226807,0.0105904247611761,0.127945572137833,0.991614878177643,-0.0181587990373373,0.263292014598846,0.964371562004089,-0.0257827620953321,0.322458624839783,0.925914824008942,-0.196728557348251,-0.0138259315863252,0.9995276927948,0.0274445787072182,0.164405792951584,0.98635858297348,-0.00821272749453783,-0.268683582544327,0.963225960731506,0.00220202561467886,0.047971099615097,0.998538851737976,0.0248776748776436,0.578307390213013,0.578970789909363,-0.574763774871826,-0.542391657829285,0.596199810504913,-0.59190970659256,-0.268683582544327,0.963225960731506,0.00220202561467886,0.164405792951584,0.98635858297348,-0.00821272749453783,-0.412047326564789,0.668835282325745,0.618770003318787,0.296545445919037,0.713360786437988,0.634962379932404,-0.080440990626812,0.995302140712738,0.0538788363337517,-0.472464621067047,0.881327390670776,0.00626618787646294,0.637163639068604,0.770129323005676,0.0303871668875217,0.0155987199395895,0.991659820079803,0.127934888005257,-0.080440990626812,0.995302140712738,0.0538788363337517,0.296545445919037,0.713360786437988,0.634962379932404,0.293097287416458,0.926415324211121,-0.236323192715645,-0.41190367937088,0.911153554916382,0.0116030378267169,-0.00783563125878572,0.993899047374725,-0.110015094280243,0.259388029575348,0.965722620487213,-0.00988665968179703,0.208814367651939,0.977768123149872,0.0191292129456997,0.379880100488663,0.920156180858612,-0.0948876664042473,0.479632258415222,0.860742330551147,0.17051562666893,0.40801814198494,0.904056966304779,0.127287551760674,0.307602941989899,0.951492130756378,0.00657146796584129,0.381228119134903,0.915575087070465,-0.128013446927071,0.0143771059811115,0.999454259872437,-0.0297401249408722,0.51320469379425,0.858209848403931,0.00983416102826595,
- 0.381228119134903,0.915575087070465,-0.128013446927071,0.51320469379425,0.858209848403931,0.00983416102826595,0.554069578647614,0.72281277179718,-0.41297522187233,0.554069578647614,0.72281277179718,-0.41297522187233,-0.00139737338759005,0.998816609382629,0.0486136972904205,0.381228119134903,0.915575087070465,-0.128013446927071,-0.0731245875358582,0.997172057628632,0.0173388347029686,0.0798577293753624,0.996693253517151,0.0150140346959233,0.474684119224548,0.0364588424563408,0.879400789737701,0.0322444513440132,0.995349764823914,0.090769924223423,0.474684119224548,0.0364588424563408,0.879400789737701,0.0798577293753624,0.996693253517151,0.0150140346959233,0.379880100488663,0.920156180858612,-0.0948876664042473,-0.41190367937088,0.911153554916382,0.0116030378267169,0.293097287416458,0.926415324211121,-0.236323192715645,0.0212246179580688,0.974177539348602,0.22478361427784,0.259388029575348,0.965722620487213,-0.00988665968179703,0.379880100488663,0.920156180858612,-0.0948876664042473,-0.0140076810494065,0.979561328887939,-0.200657457113266,-0.0129055231809616,0.977658033370972,-0.209804967045784,0.0212246179580688,0.974177539348602,0.22478361427784,0.0146471364423633,0.997347235679626,-0.0713026374578476,-0.00692096166312695,0.997370541095734,0.0721394494175911,-0.0392532907426357,0.968669891357422,-0.245229691267014,-0.38197660446167,0.916656017303467,0.117625661194324,-0.574537634849548,0.800678372383118,-0.169766485691071,0.263292014598846,0.964371562004089,-0.0257827620953321,0.0674222186207771,0.931502103805542,-0.357432574033737,-0.0138259315863252,0.9995276927948,0.0274445787072182,0.127945572137833,0.991614878177643,-0.0181587990373373,0.0674222186207771,0.931502103805542,-0.357432574033737,0.263292014598846,0.964371562004089,-0.0257827620953321,0.127945572137833,0.991614878177643,-0.0181587990373373,0.314298897981644,0.949301660060883,-0.00653413543477654,0.0674222186207771,0.931502103805542,-0.357432574033737,-0.0690889954566956,0.985749840736389,0.153374880552292,0.0143771059811115,0.999454259872437,-0.0297401249408722,
- 0.0082590002566576,0.979210793972015,0.202677145600319,-0.0727275311946869,0.989046633243561,-0.12844306230545,-0.00632862746715546,0.994740545749664,-0.102231808006763,0.0253424793481827,0.972568929195404,0.231230720877647,0.393494486808777,0.919252216815948,0.0117276143282652,0.127945572137833,0.991614878177643,-0.0181587990373373,0.317298978567123,0.948072612285614,0.0218993797898293,0.104929268360138,0.993245840072632,0.0495217889547348,0.524358808994293,0.851349234580994,0.0158811863511801,-0.157732680439949,0.987289488315582,0.0194920320063829,-0.184402585029602,0.982850432395935,-0.000835159851703793,-0.039559181779623,0.988389790058136,0.14669905602932,0.0704114213585854,0.997505068778992,-0.00508976168930531,0.462604761123657,0.886562287807465,0.00203751469962299,-0.0956616103649139,0.995374202728271,-0.00889286678284407,-0.113924838602543,0.993485629558563,0.00274907541461289,0.0228598974645138,0.999131679534912,0.0348337553441525,-0.222894698381424,0.974101483821869,0.0380037687718868,0.00342293083667755,0.993550479412079,-0.113339684903622,-0.0126510122790933,0.990724086761475,0.135298743844032,-0.439068824052811,0.890982091426849,-0.115626059472561,-0.287985175848007,0.957501173019409,-0.0159962140023708,-0.010576356202364,0.999215662479401,-0.0381614789366722,0.210869029164314,0.977120161056519,-0.0277590937912464,-0.571783542633057,0.820368707180023,-0.00767143815755844,-0.182550147175789,0.982877612113953,0.0250386949628592,-0.0956616103649139,0.995374202728271,-0.00889286678284407,-0.222894698381424,0.974101483821869,0.0380037687718868,-0.0219407062977552,0.994428217411041,0.103106781840324,-0.00518902996554971,0.970398843288422,-0.24145220220089,-0.0136365555226803,0.956671357154846,0.290850341320038,-0.182550147175789,0.982877612113953,0.0250386949628592,-0.427311152219772,0.889983832836151,-0.159166514873505,-0.449562638998032,0.892393827438354,-0.0390730462968349,-0.0392532907426357,0.968669891357422,-0.245229691267014,-0.0929416641592979,0.985669732093811,-0.140772759914398,-0.0224349703639746,0.995876908302307,-0.0878971964120865,
- -0.0144215831533074,0.923779606819153,0.382653087377548,-0.0690889954566956,0.985749840736389,0.153374880552292,-0.811723947525024,0.437122613191605,0.387334525585175,-0.317413657903671,0.948194026947021,0.01329405605793,0.0243088118731976,0.999510943889618,0.019675001502037,0.524358808994293,0.851349234580994,0.0158811863511801,0.754740953445435,0.644916236400604,-0.120204590260983,0.0146471364423633,0.997347235679626,-0.0713026374578476,0.293097287416458,0.926415324211121,-0.236323192715645,0.337912976741791,0.937188684940338,-0.0865571275353432,0.381228119134903,0.915575087070465,-0.128013446927071,-0.00139737338759005,0.998816609382629,0.0486136972904205,-0.00632862746715546,0.994740545749664,-0.102231808006763,0.322458624839783,0.925914824008942,-0.196728557348251,-0.0219407062977552,0.994428217411041,0.103106781840324,-0.0252788010984659,0.99431174993515,-0.103465341031551,-0.0136365555226803,0.956671357154846,0.290850341320038,-0.00518902996554971,0.970398843288422,-0.24145220220089,-0.228837803006172,0.945761501789093,-0.2305828332901,-0.149081543087959,0.940681517124176,-0.30478373169899,-0.287985175848007,0.957501173019409,-0.0159962140023708,-0.0252788010984659,0.99431174993515,-0.103465341031551,-0.152219280600548,0.986619591712952,-0.0584033690392971,-0.181080251932144,0.964913308620453,-0.190137341618538,-0.57918643951416,0.814685881137848,0.0288094226270914,-0.0209538247436285,0.999485433101654,0.0242872536182404,-0.0670979171991348,0.978594124317169,-0.194554299116135,-0.149081543087959,0.940681517124176,-0.30478373169899,-0.0524655506014824,0.994306564331055,0.0927460193634033,-0.192230269312859,0.979774355888367,0.0555860698223114,-0.228837803006172,0.945761501789093,-0.2305828332901,-0.354669064283371,0.934363961219788,0.0342621095478535,0.0312048103660345,0.97010612487793,0.24066635966301,-0.222894698381424,0.974101483821869,0.0380037687718868,0.173667132854462,0.84599906206131,0.504108369350433,-0.354669064283371,0.934363961219788,0.0342621095478535,-0.0224349703639746,0.995876908302307,-0.0878971964120865,
- 0.516627788543701,0.856052815914154,-0.0164099521934986,-0.181080251932144,0.964913308620453,-0.190137341618538,-0.152219280600548,0.986619591712952,-0.0584033690392971,-0.149081543087959,0.940681517124176,-0.30478373169899,-0.010576356202364,0.999215662479401,-0.0381614789366722,-0.287985175848007,0.957501173019409,-0.0159962140023708,-0.220718786120415,0.854828119277954,0.469629794359207,-0.0144215831533074,0.923779606819153,0.382653087377548,0.388291031122208,0.874716460704803,-0.290001839399338,-0.0219407062977552,0.994428217411041,0.103106781840324,-0.222894698381424,0.974101483821869,0.0380037687718868,-0.354669064283371,0.934363961219788,0.0342621095478535,-0.228837803006172,0.945761501789093,-0.2305828332901,-0.212021753191948,0.97217321395874,-0.0996296107769012,-0.0219407062977552,0.994428217411041,0.103106781840324,-0.354669064283371,0.934363961219788,0.0342621095478535,-0.0136365555226803,0.956671357154846,0.290850341320038,-0.0252788010984659,0.99431174993515,-0.103465341031551,-0.287985175848007,0.957501173019409,-0.0159962140023708,-0.182550147175789,0.982877612113953,0.0250386949628592,0.0312048103660345,0.97010612487793,0.24066635966301,-0.0524655506014824,0.994306564331055,0.0927460193634033,-0.149081543087959,0.940681517124176,-0.30478373169899,-0.228837803006172,0.945761501789093,-0.2305828332901,0.299210399389267,0.953683197498322,0.0310069862753153,0.029515078291297,0.999563276767731,-0.00145059102214873,-0.0209538247436285,0.999485433101654,0.0242872536182404,-0.57918643951416,0.814685881137848,0.0288094226270914,-0.345023602247238,0.938039243221283,0.0322645716369152,-0.0639993995428085,0.997844696044922,0.0144954910501838,-0.192230269312859,0.979774355888367,0.0555860698223114,-0.0524655506014824,0.994306564331055,0.0927460193634033,0.100261397659779,0.992830276489258,0.0650822669267654,-0.0731245875358582,0.997172057628632,0.0173388347029686,-0.0126510122790933,0.990724086761475,0.135298743844032,0.0114343259483576,0.996163129806519,-0.0867659524083138,0.142434045672417,0.989666044712067,-0.0165408011525869,
- -0.0126510122790933,0.990724086761475,0.135298743844032,0.00342293083667755,0.993550479412079,-0.113339684903622,0.0217162072658539,0.993416905403137,0.112478092312813,0.0312048103660345,0.97010612487793,0.24066635966301,0.0114343259483576,0.996163129806519,-0.0867659524083138,0.029515078291297,0.999563276767731,-0.00145059102214873,0.0322444513440132,0.995349764823914,0.090769924223423,0.00121366220992059,0.950988054275513,-0.309225022792816,-0.0209538247436285,0.999485433101654,0.0242872536182404,0.0322444513440132,0.995349764823914,0.090769924223423,0.0798577293753624,0.996693253517151,0.0150140346959233,-0.0937817841768265,0.995404839515686,-0.0193407014012337,0.00121366220992059,0.950988054275513,-0.309225022792816,-0.0937817841768265,0.995404839515686,-0.0193407014012337,0.142434045672417,0.989666044712067,-0.0165408011525869,-0.220718786120415,0.854828119277954,0.469629794359207,-0.220718786120415,0.854828119277954,0.469629794359207,0.388291031122208,0.874716460704803,-0.290001839399338,0.00121366220992059,0.950988054275513,-0.309225022792816,0.0217162072658539,0.993416905403137,0.112478092312813,0.00342293083667755,0.993550479412079,-0.113339684903622,-0.345023602247238,0.938039243221283,0.0322645716369152,0.100261397659779,0.992830276489258,0.0650822669267654,-0.0252788010984659,0.99431174993515,-0.103465341031551,-0.212021753191948,0.97217321395874,-0.0996296107769012,-0.228837803006172,0.945761501789093,-0.2305828332901,0.210869029164314,0.977120161056519,-0.0277590937912464,-0.010576356202364,0.999215662479401,-0.0381614789366722,-0.149081543087959,0.940681517124176,-0.30478373169899,-0.0670979171991348,0.978594124317169,-0.194554299116135,-0.0252788010984659,0.99431174993515,-0.103465341031551,-0.0219407062977552,0.994428217411041,0.103106781840324,-0.212021753191948,0.97217321395874,-0.0996296107769012,-0.220718786120415,0.854828119277954,0.469629794359207,0.00121366220992059,0.950988054275513,-0.309225022792816,-0.0937817841768265,0.995404839515686,-0.0193407014012337,-0.0144215831533074,0.923779606819153,0.382653087377548,
- -0.152219280600548,0.986619591712952,-0.0584033690392971,0.388291031122208,0.874716460704803,-0.290001839399338,-0.354669064283371,0.934363961219788,0.0342621095478535,0.173667132854462,0.84599906206131,0.504108369350433,0.142434045672417,0.989666044712067,-0.0165408011525869,0.0798577293753624,0.996693253517151,0.0150140346959233,-0.0731245875358582,0.997172057628632,0.0173388347029686,0.142434045672417,0.989666044712067,-0.0165408011525869,-0.0937817841768265,0.995404839515686,-0.0193407014012337,-0.0144215831533074,0.923779606819153,0.382653087377548,-0.0224349703639746,0.995876908302307,-0.0878971964120865,-0.152219280600548,0.986619591712952,-0.0584033690392971,-0.152219280600548,0.986619591712952,-0.0584033690392971,-0.0209538247436285,0.999485433101654,0.0242872536182404,0.00121366220992059,0.950988054275513,-0.309225022792816,-0.152219280600548,0.986619591712952,-0.0584033690392971,0.00121366220992059,0.950988054275513,-0.309225022792816,0.388291031122208,0.874716460704803,-0.290001839399338,0.0228598974645138,0.999131679534912,0.0348337553441525,-0.0144215831533074,0.923779606819153,0.382653087377548,-0.220718786120415,0.854828119277954,0.469629794359207,0.0312048103660345,0.97010612487793,0.24066635966301,-0.354669064283371,0.934363961219788,0.0342621095478535,0.0114343259483576,0.996163129806519,-0.0867659524083138,-0.0690889954566956,0.985749840736389,0.153374880552292,-0.813530087471008,0.577895045280457,0.0648544430732727,-0.811723947525024,0.437122613191605,0.387334525585175,0.0253424793481827,0.972568929195404,0.231230720877647,0.0210823230445385,0.994779646396637,-0.0998450815677643,0.614557325839996,0.78636771440506,0.0628104880452156,0.322458624839783,0.925914824008942,-0.196728557348251,0.0082590002566576,0.979210793972015,0.202677145600319,0.0143771059811115,0.999454259872437,-0.0297401249408722,0.263292014598846,0.964371562004089,-0.0257827620953321,0.047971099615097,0.998538851737976,0.0248776748776436,0.0082590002566576,0.979210793972015,0.202677145600319,0.322458624839783,0.925914824008942,-0.196728557348251,
- -0.0138259315863252,0.9995276927948,0.0274445787072182,0.047971099615097,0.998538851737976,0.0248776748776436,0.263292014598846,0.964371562004089,-0.0257827620953321,-0.354669064283371,0.934363961219788,0.0342621095478535,0.142434045672417,0.989666044712067,-0.0165408011525869,0.0114343259483576,0.996163129806519,-0.0867659524083138,0.0212246179580688,0.974177539348602,0.22478361427784,0.293097287416458,0.926415324211121,-0.236323192715645,0.0146471364423633,0.997347235679626,-0.0713026374578476,0.208814367651939,0.977768123149872,0.0191292129456997,0.259388029575348,0.965722620487213,-0.00988665968179703,-0.0327908247709274,0.99942409992218,-0.0087377093732357,-0.185373604297638,0.982184886932373,-0.0308136381208897,0.307602941989899,0.951492130756378,0.00657146796584129,0.754740953445435,0.644916236400604,-0.120204590260983,-0.0140076810494065,0.979561328887939,-0.200657457113266,-0.00692096166312695,0.997370541095734,0.0721394494175911,-0.572489798069,0.817750692367554,-0.0594923235476017,-0.0929416641592979,0.985669732093811,-0.140772759914398,-0.574537634849548,0.800678372383118,-0.169766485691071,-0.38197660446167,0.916656017303467,0.117625661194324,-0.0929416641592979,0.985669732093811,-0.140772759914398,-0.56023782491684,0.828299582004547,-0.00730335433036089,0.516627788543701,0.856052815914154,-0.0164099521934986,-0.0224349703639746,0.995876908302307,-0.0878971964120865,0.0210823230445385,0.994779646396637,-0.0998450815677643,0.4518181681633,0.787262856960297,0.41961607336998,0.614557325839996,0.78636771440506,0.0628104880452156,0.316854655742645,0.940880298614502,0.119780160486698,0.4518181681633,0.787262856960297,0.41961607336998,0.0210823230445385,0.994779646396637,-0.0998450815677643,0.332312226295471,0.943131506443024,0.00845667906105518,0.316854655742645,0.940880298614502,0.119780160486698,0.0210823230445385,0.994779646396637,-0.0998450815677643,-0.039559181779623,0.988389790058136,0.14669905602932,-0.0281736329197884,0.97427886724472,-0.223577201366425,0.0243088118731976,0.999510943889618,0.019675001502037,
- 0.0704114213585854,0.997505068778992,-0.00508976168930531,0.393494486808777,0.919252216815948,0.0117276143282652,0.34585440158844,0.935786485671997,0.0684722736477852,0.398658752441406,0.904928803443909,0.148913249373436,0.34585440158844,0.935786485671997,0.0684722736477852,-0.052491370588541,0.998427331447601,-0.0196872986853123,0.398658752441406,0.904928803443909,0.148913249373436,0.104929268360138,0.993245840072632,0.0495217889547348,0.40801814198494,0.904056966304779,0.127287551760674,0.479632258415222,0.860742330551147,0.17051562666893,-0.0327908247709274,0.99942409992218,-0.0087377093732357,0.259388029575348,0.965722620487213,-0.00988665968179703,0.0212246179580688,0.974177539348602,0.22478361427784,-0.0129055231809616,0.977658033370972,-0.209804967045784,-0.185373604297638,0.982184886932373,-0.0308136381208897,-0.0327908247709274,0.99942409992218,-0.0087377093732357,-0.0129055231809616,0.977658033370972,-0.209804967045784,-0.41190367937088,0.911153554916382,0.0116030378267169,0.0381235294044018,0.999234318733215,0.00879953801631927,0.00278589362278581,0.997820198535919,0.0659310072660446,-0.00783563125878572,0.993899047374725,-0.110015094280243,0.00278589362278581,0.997820198535919,0.0659310072660446,0.0381235294044018,0.999234318733215,0.00879953801631927,-0.080440990626812,0.995302140712738,0.0538788363337517,0.0155987199395895,0.991659820079803,0.127934888005257,-0.222894698381424,0.974101483821869,0.0380037687718868,0.0228598974645138,0.999131679534912,0.0348337553441525,-0.220718786120415,0.854828119277954,0.469629794359207,0.173667132854462,0.84599906206131,0.504108369350433,0.142434045672417,0.989666044712067,-0.0165408011525869,0.173667132854462,0.84599906206131,0.504108369350433,-0.220718786120415,0.854828119277954,0.469629794359207,-0.809706091880798,0.575475454330444,-0.114908322691917,-0.0727275311946869,0.989046633243561,-0.12844306230545,-0.542391657829285,0.596199810504913,-0.59190970659256,-0.0392532907426357,0.968669891357422,-0.245229691267014,-0.574537634849548,0.800678372383118,-0.169766485691071,
- -0.0929416641592979,0.985669732093811,-0.140772759914398,-0.0392532907426357,0.968669891357422,-0.245229691267014,-0.11816393584013,0.986407101154327,-0.114185735583305,-0.38197660446167,0.916656017303467,0.117625661194324,0.999967277050018,-0.00809251796454191,-0,0.999999582767487,0.000881035812199116,0,0.999994814395905,-0.00324196950532496,0,0.999993622303009,-0.00357237691059709,0,0.99998152256012,-0.00606846995651722,0,0.999982893466949,-0.00584475975483656,0,0.999987185001373,-0.00505618844181299,0,-0.999998033046722,0.00196098070591688,0,-0.999978542327881,0.00654623843729496,0,-0.999999940395355,0.000419638818129897,0,-0.999983429908752,-0.0057738502509892,0,-0.999995589256287,-0.00297538819722831,0,-0.999988913536072,-0.00469586858525872,3.59554097606463e-009,-0.999991536140442,-0.00411003734916449,3.79864806276942e-009,0.999995112419128,0.00313678290694952,0,0.999999523162842,0.000940059951972216,0,0.999999821186066,-0.000561516149900854,0,0.99999988079071,0.000468125101178885,0,0,2.39837390836328e-006,1,0,2.68599933406222e-006,1,-2.01323953064048e-008,2.97711108032672e-006,1,-1.78981416354418e-008,2.64671712102427e-006,1,-0.999996900558472,-0.00246748817153275,0,-0.999999523162842,-0.00100141169968992,0,-0.999983429908752,-0.0057738502509892,0,-0.999991536140442,-0.00411003734916449,3.79864806276942e-009,0.99999862909317,-0.00164736446458846,0,0.999999046325684,-0.00143434957135469,0,0.999998092651367,-0.00194134749472141,0,0.999999701976776,-0.000785759068094194,0,0,-0.099748283624649,-0.995012700557709,0,-0.098621554672718,-0.99512505531311,0,-0.0962710008025169,-0.995355069637299,0,-0.0980566143989563,-0.99518084526062,-0.999999463558197,0.000907652603928,0,-0.999993920326233,0.00348115502856672,0,-0.999974250793457,0.0071881115436554,0,-0.999997138977051,0.00240172701887786,0,-0.999995887279511,-0.0028674325440079,0,-0.999999761581421,-0.000670827401336282,0,-0.999996900558472,-0.00246748817153275,0,0.999965012073517,0.00836140383034945,0,0.999999821186066,-0.000561516149900854,0,0.999999523162842,0.000940059951972216,0,
- 0.99999874830246,0.00160763715393841,0,0.999999463558197,-0.00104676722548902,0,0.999999701976776,-0.000785759068094194,0,0.999998092651367,-0.00194134749472141,0,-0.999958634376526,0.00908942800015211,0,-0.999994218349457,0.00337222032248974,0,-0.999993920326233,0.00348115502856672,0,-0.999994575977325,0.00328929419629276,0
- }
- TangentsW: *6060 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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: *3244 {
- a: 9.80350023382925e-010,0,0.999999940395355,0,0.999999940395355,1.51805567741394,0.00018782913684845,1.51805567741394,0.249999538064003,4.46428227718343e-010,0.249999552965164,1.51805567741394,0.50000011920929,0,0.50000011920929,1.51805567741394,0.749784827232361,2.5902409106493e-009,0.749784827232361,1.51805567741394,0.999999940395355,1.25547873973846,0.749784648418427,1.25547873973846,0.500000059604645,1.25547873973846,0.249999672174454,1.25547873973846,0.00018782913684845,1.25547873973846,0.999999940395355,1,0.750102698802948,1.00331044197083,0.499998778104782,1.14971947669983,0.250032007694244,1.00243973731995,0,1,0.999999940395355,0.75,0.750003159046173,0.751485764980316,0.249893486499786,0.751461386680603,6.21678708512263e-010,0.75,0.999999940395355,0.5,0.749863564968109,0.357657551765442,0.499889969825745,0.357614070177078,0.249970644712448,0.357544332742691,0,0.5,1,0.25,0.749766528606415,0.249916836619377,0.499962896108627,0.249786972999573,0.249948352575302,0.249676764011383,9.80350023382925e-010,0.25,1,0.25,0.625219404697418,0.24847275018692,0.625219404697418,-0.000599614344537258,0.999999940395355,0,0.625219404697418,1.51805567741394,0.999999940395355,1.51805567741394,0.625219404697418,1.25547873973846,0.999999940395355,1.25547873973846,0.625219404697418,0.997909188270569,0.999999940395355,1,0.625219404697418,0.746394872665405,0.999999940395355,0.75,0.625219404697418,0.497226119041443,0.999999940395355,0.5,1.24490416049957,0.25,0.871270895004272,0.250005543231964,0.871270895004272,-3.07559967041016e-005,1.24490416049957,-0.000474686734378338,0.871270895004272,1.51805567741394,1.24490416049957,1.51805567741394,0.871270895004272,1.25547873973846,1.24490416049957,1.25547873973846,0.871270895004272,0.998278379440308,1.24490416049957,0.998467206954956,0.871270895004272,0.749634683132172,1.24490416049957,0.749634683132172,0.871270895004272,0.49931013584137,1.24490416049957,0.49931013584137,0.749999463558197,1.51805567741394,0.749999105930328,1.14370119571686,0.999999940395355,1.14404320716858,
- 0.999999940395355,1.51805567741394,0.49999988079071,1.51805567741394,0.500201106071472,1.14335906505585,0.249995529651642,1.51805567741394,0.250211387872696,1.14314568042755,0.00018782913684845,1.14302051067352,0.00018782913684845,1.51805567741394,0.749996960163116,1.51805567741394,0.999999940395355,1.51805567741394,0.999999940395355,1.89206945896149,0.749997138977051,1.89241051673889,0.49999988079071,1.51805567741394,0.500199735164642,1.89275193214417,0.249994575977325,1.51805567741394,0.250210464000702,1.89296531677246,0.000187382102012634,1.89309024810791,0.00018782913684845,1.51805567741394,1,0.25,0.749338209629059,0.249980568885803,0.748273015022278,-0.000388632353860885,0.999999940395355,0,9.80350023382925e-010,0,0.247651979327202,-0.000202187933609821,0.24876394867897,0.25000935792923,9.80350023382925e-010,0.25,0.498136192560196,0.250025182962418,0.49798858165741,-0.000179754308192059,0.752734899520874,1.51805567741394,0.999999940395355,1.51805567741394,0.500025629997253,1.51805567741394,0.247411534190178,1.51805567741394,0.00018782913684845,1.51805567741394,0.75178200006485,1.25547873973846,0.999999940395355,1.25547873973846,0.499477565288544,1.25547873973846,0.247217148542404,1.25547873973846,0.00018782913684845,1.25547873973846,0.750343263149261,1.00303149223328,0.999999940395355,1,0.499404400587082,1.14968550205231,0.249117404222488,1.00292372703552,0,1,0.749869108200073,0.751897156238556,0.999999940395355,0.75,0.248764619231224,0.751649975776672,6.21678708512263e-010,0.75,0.749091744422913,0.358004003763199,0.999999940395355,0.5,0.498730212450027,0.358098119497299,0.248565137386322,0.358108282089233,0,0.5,0.366341412067413,1.10348045825958,0.302139729261398,0.751648545265198,0.302172839641571,0.357682555913925,0.633717894554138,1.1039514541626,0.697375178337097,0.751920282840729,0.696784198284149,0.35806280374527,0.633547306060791,1.10344791412354,0.697580337524414,0.751440405845642,0.69769674539566,0.357604324817657,0.365144670009613,1.10363614559174,0.30071023106575,0.751952290534973,0.300513505935669,
- 0.358110308647156,0.305387884378433,0.970599114894867,0.694536805152893,0.970873415470123,0.694380700588226,0.970181226730347,0.303903818130493,0.970699489116669,0.216861352324486,0.97518664598465,0.0690305233001709,0.975186586380005,0.0690305829048157,0.937184929847717,0.216861471533775,0.937185049057007,0.216861426830292,0.934246897697449,0.06903076171875,0.934246897697449,0.069030225276947,0.818747878074646,0.21686115860939,0.818747878074646,0.216861307621002,0.815809786319733,0.0690304934978485,0.815809607505798,0.0690304934978485,0.777808368206024,0.216861307621002,0.777808308601379,0.216861337423325,0.761872351169586,0.0690304934978485,0.761872231960297,0.0690304934978485,0.672368705272675,0.216861248016357,0.672368764877319,0.0293155312538147,0.936116814613342,0.0293146669864655,0.816877901554108,0.0666472911834717,0.816877603530884,0.066648006439209,0.936116695404053,0.722924470901489,0.816878259181976,0.72292423248291,0.936117112636566,0.685591578483582,0.936116933822632,0.683209002017975,0.934246897697449,0.68320906162262,0.818747878074646,0.685591816902161,0.816878139972687,0.216861411929131,0.991122305393219,0.0690305829048157,0.991122245788574,0.0163487792015076,0.920461773872375,0.016348123550415,0.832533061504364,0.735891461372375,0.832533538341522,0.735890984535217,0.920462071895599,0.38221600651741,0.975186765193939,0.382216185331345,0.937185108661652,0.382216066122055,0.991122364997864,0.38221600651741,0.761872470378876,0.382215827703476,0.672368824481964,0.382215946912766,0.777808248996735,0.382215946912766,0.815810024738312,0.382215946912766,0.818747878074646,0.382215887308121,0.934246897697449,0.216861352324486,0.97518664598465,0.0690305233001709,0.975186586380005,0.0690305829048157,0.937184929847717,0.216861471533775,0.937185049057007,0.216861426830292,0.934246897697449,0.06903076171875,0.934246897697449,0.069030225276947,0.818747878074646,0.21686115860939,0.818747878074646,0.216861307621002,0.815809786319733,0.0690304934978485,0.815809607505798,0.0690304934978485,0.777808368206024,0.216861307621002,
- 0.777808308601379,0.216861337423325,0.761872351169586,0.0690304934978485,0.761872231960297,0.0690304934978485,0.672368705272675,0.216861248016357,0.672368764877319,0.0293155312538147,0.936116814613342,0.0293146669864655,0.816877901554108,0.0666472911834717,0.816877603530884,0.066648006439209,0.936116695404053,0.722924470901489,0.816878259181976,0.72292423248291,0.936117112636566,0.685591578483582,0.936116933822632,0.683209002017975,0.934246897697449,0.68320906162262,0.818747878074646,0.685591816902161,0.816878139972687,0.216861411929131,0.991122305393219,0.0690305829048157,0.991122245788574,0.0163487792015076,0.920461773872375,0.016348123550415,0.832533061504364,0.735891461372375,0.832533538341522,0.735890984535217,0.920462071895599,0.38221600651741,0.975186765193939,0.382216185331345,0.937185108661652,0.382216066122055,0.991122364997864,0.38221600651741,0.761872470378876,0.382215827703476,0.672368824481964,0.382215946912766,0.777808248996735,0.382215946912766,0.815810024738312,0.382215946912766,0.818747878074646,0.382215887308121,0.934246897697449,0.00571004115045071,0.507967829704285,0.0196220558136702,0.38517639040947,0.317786276340485,0.410094857215881,0.305327296257019,0.530186414718628,0.0370689816772938,0.175949439406395,0.333465963602066,0.203502595424652,0.0800629928708076,-0.190124526619911,0.37516063451767,-0.160870358347893,0.836332857608795,0.265686184167862,0.836462497711182,0.544603407382965,0.435051947832108,0.544604241847992,0.434923142194748,0.265687376260757,0.836387097835541,0.709464013576508,0.434976488351822,0.709463238716125,0.435053646564484,-0.237968012690544,0.836462557315826,-0.237968862056732,0.00832258071750402,0.625938415527344,0.434900969266891,0.858753085136414,0.543643116950989,0.937492609024048,0.543643116950989,0.536084234714508,0.797788619995117,0.536083996295929,0.797788619995117,0.937492370605469,1.05193316936493,0.536084175109863,1.05193328857422,0.937492489814758,0.836311519145966,0.858754336833954,0.30820095539093,0.647589683532715,0.479084223508835,0.25440526008606,0.638779819011688,
- 0.252803444862366,0.631535887718201,0.455329656600952,0.47800549864769,0.458112359046936,0.302226305007935,0.457487612962723,0.302556395530701,0.469370186328888,0.154430508613586,0.46727180480957,0.154554039239883,0.457157909870148,0.646946430206299,0.818127274513245,0.6544149518013,0.633289217948914,0.655656158924103,0.823191463947296,0.144863128662109,0.262468010187149,0.150510236620903,0.256046086549759,0.147958397865295,0.45259040594101,0.153547555208206,0.800095915794373,0.144896566867828,0.801938831806183,0.145597100257874,0.64131623506546,0.477944374084473,0.465473979711533,0.630967438220978,0.462062954902649,0.637860536575317,0.622895538806915,0.475632756948471,0.623556673526764,0.154968798160553,0.635550022125244,0.302634537220001,0.635574102401733,0.301255524158478,0.823950052261353,0.199605047702789,0.821413040161133,0.308543652296066,0.814047515392303,0.322596669197083,0.62402206659317,0.318911284208298,0.467043071985245,0.457506358623505,0.465020716190338,0.461021810770035,0.624950647354126,0.475998312234879,0.634154736995697,0.476615071296692,0.824751734733582,0.469513922929764,0.799820244312286,0.467472225427628,0.636497616767883,0.63967752456665,0.828363239765167,0.637572348117828,0.634709179401398,0.647224068641663,0.840048372745514,0.646592736244202,0.990113437175751,0.638385772705078,0.836674213409424,0.460546225309372,0.869059920310974,0.434145510196686,0.820970416069031,0.462758332490921,0.800662755966187,0.156035184860229,0.624931812286377,0.300447463989258,0.628248155117035,0.475013971328735,0.831753134727478,0.469623774290085,0.870288372039795,0.307776868343353,0.846295833587646,0.316366255283356,0.990113437175751,0.310962796211243,0.990113437175751,0.646979033946991,0.621370732784271,0.654889643192291,0.833439409732819,0.651490867137909,0.990113437175751,0.301962316036224,0.829365372657776,0.301462322473526,0.990113437175751,0.637963593006134,0.246441945433617,0.479848444461823,0.246441945433617,0.637515306472778,0.990113437175751,0.468208909034729,0.617062568664551,0.460271388292313,0.632040560245514,
- 0.646235227584839,0.256196677684784,0.644327759742737,0.425722509622574,0.319774508476257,0.460508435964584,0.318121343851089,0.255976319313049,0.464608460664749,0.259521842002869,0.45824521780014,0.459809601306915,0.670395016670227,0.464191019535065,0.658431231975555,0.626773953437805,0.643404841423035,0.491437375545502,0.147755146026611,0.472101747989655,0.469157218933105,0.451575875282288,0.468007743358612,0.473629474639893,0.64585554599762,0.638867616653442,0.669328033924103,0.457765817642212,0.773786962032318,0.456493347883224,0.776052594184875,0.462837040424347,0.144998133182526,0.622331500053406,0.477063953876495,0.990113437175751,0.647136569023132,0.246441945433617,0.653607249259949,0.246441945433617,0.6539106965065,0.256612300872803,0.313303411006927,0.246441945433617,0.318301796913147,0.246441945433617,0.150022804737091,0.246441945433617,0.301718890666962,0.246441945433617,0.300914734601974,0.255166172981262,0.309347212314606,0.623211205005646,0.30987811088562,0.640125215053558,0.150431513786316,0.990113437175751,0.152628064155579,0.841279149055481,0.199288994073868,0.828286290168762,0.464168429374695,0.246441945433617,0.321422010660172,0.631576597690582,0.31108146905899,0.257758557796478,0.309988111257553,0.454735457897186,0.316969335079193,0.824111461639404,0.460973143577576,0.990113437175751,0.471312612295151,0.266330271959305,0.470264196395874,0.246441945433617,0.309572011232376,0.474284440279007,0.14291250705719,0.990113437175751,0.142434567213058,0.841507077217102,0.319989085197449,0.830329477787018,0.46804291009903,0.990113437175751,0.654197454452515,0.42426472902298,0.778667986392975,0.627540051937103,0.756119847297668,0.83412092924118,0.777250707149506,0.872854650020599,0.782012522220612,0.990113437175751,0.778395354747772,0.631696701049805,0.779507100582123,0.254941195249558,0.145352065563202,0.246441945433617,0.754274487495422,0.827646613121033,0.785900712013245,0.804888367652893,0.788744211196899,0.865757703781128,0.786948561668396,0.622786998748779,0.786681413650513,0.639372587203979,0.780132353305817,
- 0.246441945433617,0.786849498748779,0.246441945433617,0.786357343196869,0.25886008143425,0.786559820175171,0.472667187452316,0.787777841091156,0.450602173805237,0.774298787117004,0.801520705223084,0.791013598442078,0.990113437175751,0.00931772589683533,0.809959292411804,0.019786149263382,0.636090278625488,0.01873779296875,0.812894821166992,0.018329530954361,0.256851524114609,0.0198614597320557,0.246441960334778,0.140292853116989,0.246441945433617,0.139520302414894,0.252775698900223,0.0221665501594543,0.467731684446335,0.0270044207572937,0.627540826797485,0.00931772589683533,0.462930709123611,0.00931772589683533,0.660382509231567,0.00931772589683533,0.60849404335022,0.0151942074298859,0.459919482469559,0.142049551010132,0.456382751464844,0.142015665769577,0.464433133602142,0.00931772589683533,0.263703227043152,0.137153655290604,0.62606805562973,0.131695419549942,0.828087091445923,0.135987251996994,0.990113437175751,0.0192233622074127,0.990113437175751,0.0155375301837921,0.82286137342453,0.138761848211288,0.639794766902924,0.135247349739075,0.819815516471863,0.329141795635223,0.198342621326447,0.213426113128662,0.202185690402985,0.190390050411224,0.176189988851547,0.189275994896889,0.0514355227351189,0.19822484254837,0.0436908602714539,0.330073714256287,0.0461084544658661,0.00931772589683533,0.829274892807007,0.00931772589683533,0.990113437175751,0.417898833751678,0.830902397632599,0.479084223508835,0.25440526008606,0.638779819011688,0.252803444862366,0.631535887718201,0.455329656600952,0.47800549864769,0.458112359046936,0.302226305007935,0.457487612962723,0.302556395530701,0.469370186328888,0.154430508613586,0.46727180480957,0.154554039239883,0.457157909870148,0.988298177719116,0.461585104465485,0.976987063884735,0.459093362092972,0.977511286735535,0.256801068782806,0.988298177719116,0.25913080573082,0.646946430206299,0.818127274513245,0.6544149518013,0.633289217948914,0.655656158924103,0.823191463947296,0.144863128662109,0.262468010187149,0.150510236620903,0.256046086549759,0.147958397865295,0.45259040594101,0.153547555208206,
- 0.800095915794373,0.144896566867828,0.801938831806183,0.145597100257874,0.64131623506546,0.477944374084473,0.465473979711533,0.630967438220978,0.462062954902649,0.637860536575317,0.622895538806915,0.475632756948471,0.623556673526764,0.154968798160553,0.635550022125244,0.302634537220001,0.635574102401733,0.301255524158478,0.823950052261353,0.199605047702789,0.821413040161133,0.308543652296066,0.814047515392303,0.322596669197083,0.62402206659317,0.318911284208298,0.467043071985245,0.457506358623505,0.465020716190338,0.461021810770035,0.624950647354126,0.475998312234879,0.634154736995697,0.476615071296692,0.824751734733582,0.469513922929764,0.799820244312286,0.467472225427628,0.636497616767883,0.63967752456665,0.828363239765167,0.637572348117828,0.634709179401398,0.647224068641663,0.840048372745514,0.646592736244202,0.990113437175751,0.638385772705078,0.836674213409424,0.460546225309372,0.869059920310974,0.434145510196686,0.820970416069031,0.462758332490921,0.800662755966187,0.156035184860229,0.624931812286377,0.300447463989258,0.628248155117035,0.475013971328735,0.831753134727478,0.469623774290085,0.870288372039795,0.307776868343353,0.846295833587646,0.316366255283356,0.990113437175751,0.310962796211243,0.990113437175751,0.646979033946991,0.621370732784271,0.654889643192291,0.833439409732819,0.651490867137909,0.990113437175751,0.120709821581841,0.0325034633278847,0.160105615854263,0.0517915412783623,0.162340641021729,0.203708902001381,0.301962316036224,0.829365372657776,0.301462322473526,0.990113437175751,0.637963593006134,0.246441945433617,0.479848444461823,0.246441945433617,0.637515306472778,0.990113437175751,0.468208909034729,0.617062568664551,0.0164990574121475,0.208789885044098,0.0123893916606903,0.0358026176691055,0.977701485157013,0.990113437175751,0.973392009735107,0.827605247497559,0.988298177719116,0.869029998779297,0.460271388292313,0.632040560245514,0.646235227584839,0.256196677684784,0.644327759742737,0.425722509622574,0.319774508476257,0.460508435964584,0.318121343851089,0.255976319313049,0.464608460664749,
- 0.259521842002869,0.45824521780014,0.459809601306915,0.670395016670227,0.464191019535065,0.658431231975555,0.626773953437805,0.643404841423035,0.491437375545502,0.147755146026611,0.472101747989655,0.469157218933105,0.451575875282288,0.468007743358612,0.473629474639893,0.64585554599762,0.638867616653442,0.669328033924103,0.457765817642212,0.773786962032318,0.456493347883224,0.776052594184875,0.462837040424347,0.144998133182526,0.622331500053406,0.477063953876495,0.990113437175751,0.647136569023132,0.246441945433617,0.653607249259949,0.246441945433617,0.6539106965065,0.256612300872803,0.313303411006927,0.246441945433617,0.318301796913147,0.246441945433617,0.150022804737091,0.246441945433617,0.301718890666962,0.246441945433617,0.300914734601974,0.255166172981262,0.975131750106812,0.62737500667572,0.988298177719116,0.62959760427475,0.309347212314606,0.623211205005646,0.30987811088562,0.640125215053558,0.150431513786316,0.990113437175751,0.152628064155579,0.841279149055481,0.199288994073868,0.828286290168762,0.464168429374695,0.246441945433617,0.839141190052032,0.821341633796692,0.841726124286652,0.830593645572662,0.798527598381042,0.871484339237213,0.795401692390442,0.800222992897034,0.988298177719116,0.803985059261322,0.972247242927551,0.821140050888062,0.97880494594574,0.799790799617767,0.321422010660172,0.631576597690582,0.31108146905899,0.257758557796478,0.309988111257553,0.454735457897186,0.316969335079193,0.824111461639404,0.460973143577576,0.990113437175751,0.988298177719116,0.990113437175751,0.471312612295151,0.266330271959305,0.470264196395874,0.246441945433617,0.972951948642731,0.246441945433617,0.976223707199097,0.633273482322693,0.309572011232376,0.474284440279007,0.14291250705719,0.990113437175751,0.142434567213058,0.841507077217102,0.319989085197449,0.830329477787018,0.46804291009903,0.990113437175751,0.972543179988861,0.466220885515213,0.654197454452515,0.42426472902298,0.778667986392975,0.627540051937103,0.756119847297668,0.83412092924118,0.777250707149506,0.872854650020599,0.782012522220612,0.990113437175751,
- 0.778395354747772,0.631696701049805,0.779507100582123,0.254941195249558,0.145352065563202,0.246441945433617,0.754274487495422,0.827646613121033,0.785900712013245,0.804888367652893,0.788744211196899,0.865757703781128,0.786357343196869,0.25886008143425,0.786849498748779,0.246441945433617,0.796091675758362,0.246441945433617,0.796553075313568,0.25792384147644,0.791013598442078,0.990113437175751,0.79875236749649,0.990113437175751,0.786681413650513,0.639372587203979,0.786948561668396,0.622786998748779,0.780132353305817,0.246441945433617,0.786559820175171,0.472667187452316,0.787777841091156,0.450602173805237,0.774298787117004,0.801520705223084,0.795651733875275,0.633572697639465,0.796568751335144,0.625395596027374,0.79806911945343,0.457486718893051,0.797308146953583,0.465166181325912,0.00931772589683533,0.809959292411804,0.019786149263382,0.636090278625488,0.01873779296875,0.812894821166992,0.018329530954361,0.256851524114609,0.0198614597320557,0.246441960334778,0.140292853116989,0.246441945433617,0.139520302414894,0.252775698900223,0.0221665501594543,0.467731684446335,0.0270044207572937,0.627540826797485,0.00931772589683533,0.462930709123611,0.00931772589683533,0.660382509231567,0.00931772589683533,0.60849404335022,0.0151942074298859,0.459919482469559,0.142049551010132,0.456382751464844,0.142015665769577,0.464433133602142,0.00931772589683533,0.263703227043152,0.137153655290604,0.62606805562973,0.131695419549942,0.828087091445923,0.135987251996994,0.990113437175751,0.0192233622074127,0.990113437175751,0.0155375301837921,0.82286137342453,0.138761848211288,0.639794766902924,0.135247349739075,0.819815516471863,0.329141795635223,0.198342621326447,0.213426113128662,0.202185690402985,0.190390050411224,0.176189988851547,0.189275994896889,0.0514355227351189,0.19822484254837,0.0436908602714539,0.330073714256287,0.0461084544658661,0.00931772589683533,0.829274892807007,0.00931772589683533,0.990113437175751,0.417898833751678,0.830902397632599,0.479084223508835,0.25440526008606,0.638779819011688,0.252803444862366,0.631535887718201,0.455329656600952,
- 0.47800549864769,0.458112359046936,0.302226305007935,0.457487612962723,0.302556395530701,0.469370186328888,0.154430508613586,0.46727180480957,0.154554039239883,0.457157909870148,0.988298177719116,0.461585104465485,0.976987063884735,0.459093362092972,0.977511286735535,0.256801068782806,0.988298177719116,0.25913080573082,0.646946430206299,0.818127274513245,0.6544149518013,0.633289217948914,0.655656158924103,0.823191463947296,0.144863128662109,0.262468010187149,0.150510236620903,0.256046086549759,0.147958397865295,0.45259040594101,0.153547555208206,0.800095915794373,0.144896566867828,0.801938831806183,0.145597100257874,0.64131623506546,0.477944374084473,0.465473979711533,0.630967438220978,0.462062954902649,0.637860536575317,0.622895538806915,0.475632756948471,0.623556673526764,0.154968798160553,0.635550022125244,0.302634537220001,0.635574102401733,0.301255524158478,0.823950052261353,0.199605047702789,0.821413040161133,0.308543652296066,0.814047515392303,0.322596669197083,0.62402206659317,0.318911284208298,0.467043071985245,0.457506358623505,0.465020716190338,0.461021810770035,0.624950647354126,0.475998312234879,0.634154736995697,0.476615071296692,0.824751734733582,0.469513922929764,0.799820244312286,0.467472225427628,0.636497616767883,0.63967752456665,0.828363239765167,0.637572348117828,0.634709179401398,0.647224068641663,0.840048372745514,0.646592736244202,0.990113437175751,0.638385772705078,0.836674213409424,0.460546225309372,0.869059920310974,0.434145510196686,0.820970416069031,0.462758332490921,0.800662755966187,0.156035184860229,0.624931812286377,0.300447463989258,0.628248155117035,0.475013971328735,0.831753134727478,0.469623774290085,0.870288372039795,0.307776868343353,0.846295833587646,0.316366255283356,0.990113437175751,0.310962796211243,0.990113437175751,0.646979033946991,0.621370732784271,0.654889643192291,0.833439409732819,0.651490867137909,0.990113437175751,0.120709821581841,0.0325034633278847,0.160105615854263,0.0517915412783623,0.162340641021729,0.203708902001381,0.301962316036224,0.829365372657776,0.301462322473526,
- 0.990113437175751,0.637963593006134,0.246441945433617,0.479848444461823,0.246441945433617,0.637515306472778,0.990113437175751,0.468208909034729,0.617062568664551,0.0164990574121475,0.208789885044098,0.0123893916606903,0.0358026176691055,0.977701485157013,0.990113437175751,0.973392009735107,0.827605247497559,0.988298177719116,0.869029998779297,0.460271388292313,0.632040560245514,0.646235227584839,0.256196677684784,0.644327759742737,0.425722509622574,0.319774508476257,0.460508435964584,0.318121343851089,0.255976319313049,0.464608460664749,0.259521842002869,0.45824521780014,0.459809601306915,0.670395016670227,0.464191019535065,0.658431231975555,0.626773953437805,0.643404841423035,0.491437375545502,0.147755146026611,0.472101747989655,0.469157218933105,0.451575875282288,0.468007743358612,0.473629474639893,0.64585554599762,0.638867616653442,0.669328033924103,0.457765817642212,0.773786962032318,0.456493347883224,0.776052594184875,0.462837040424347,0.144998133182526,0.622331500053406,0.477063953876495,0.990113437175751,0.647136569023132,0.246441945433617,0.653607249259949,0.246441945433617,0.6539106965065,0.256612300872803,0.313303411006927,0.246441945433617,0.318301796913147,0.246441945433617,0.150022804737091,0.246441945433617,0.301718890666962,0.246441945433617,0.300914734601974,0.255166172981262,0.975131750106812,0.62737500667572,0.988298177719116,0.62959760427475,0.309347212314606,0.623211205005646,0.30987811088562,0.640125215053558,0.150431513786316,0.990113437175751,0.152628064155579,0.841279149055481,0.199288994073868,0.828286290168762,0.464168429374695,0.246441945433617,0.839141190052032,0.821341633796692,0.841726124286652,0.830593645572662,0.798527598381042,0.871484339237213,0.795401692390442,0.800222992897034,0.988298177719116,0.803985059261322,0.972247242927551,0.821140050888062,0.97880494594574,0.799790799617767,0.321422010660172,0.631576597690582,0.31108146905899,0.257758557796478,0.309988111257553,0.454735457897186,0.316969335079193,0.824111461639404,0.460973143577576,0.990113437175751,0.988298177719116,0.990113437175751,
- 0.471312612295151,0.266330271959305,0.470264196395874,0.246441945433617,0.972951948642731,0.246441945433617,0.976223707199097,0.633273482322693,0.309572011232376,0.474284440279007,0.14291250705719,0.990113437175751,0.142434567213058,0.841507077217102,0.319989085197449,0.830329477787018,0.46804291009903,0.990113437175751,0.972543179988861,0.466220885515213,0.654197454452515,0.42426472902298,0.778667986392975,0.627540051937103,0.756119847297668,0.83412092924118,0.777250707149506,0.872854650020599,0.782012522220612,0.990113437175751,0.778395354747772,0.631696701049805,0.779507100582123,0.254941195249558,0.145352065563202,0.246441945433617,0.754274487495422,0.827646613121033,0.785900712013245,0.804888367652893,0.788744211196899,0.865757703781128,0.786357343196869,0.25886008143425,0.786849498748779,0.246441945433617,0.796091675758362,0.246441945433617,0.796553075313568,0.25792384147644,0.791013598442078,0.990113437175751,0.79875236749649,0.990113437175751,0.786681413650513,0.639372587203979,0.786948561668396,0.622786998748779,0.780132353305817,0.246441945433617,0.786559820175171,0.472667187452316,0.787777841091156,0.450602173805237,0.774298787117004,0.801520705223084,0.795651733875275,0.633572697639465,0.796568751335144,0.625395596027374,0.79806911945343,0.457486718893051,0.797308146953583,0.465166181325912,0.00931772589683533,0.809959292411804,0.019786149263382,0.636090278625488,0.01873779296875,0.812894821166992,0.018329530954361,0.256851524114609,0.0198614597320557,0.246441960334778,0.140292853116989,0.246441945433617,0.139520302414894,0.252775698900223,0.0221665501594543,0.467731684446335,0.0270044207572937,0.627540826797485,0.00931772589683533,0.462930709123611,0.00931772589683533,0.660382509231567,0.00931772589683533,0.60849404335022,0.0151942074298859,0.459919482469559,0.142049551010132,0.456382751464844,0.142015665769577,0.464433133602142,0.00931772589683533,0.263703227043152,0.137153655290604,0.62606805562973,0.131695419549942,0.828087091445923,0.135987251996994,0.990113437175751,0.0192233622074127,0.990113437175751,
- 0.0155375301837921,0.82286137342453,0.138761848211288,0.639794766902924,0.135247349739075,0.819815516471863,0.329141795635223,0.198342621326447,0.213426113128662,0.202185690402985,0.190390050411224,0.176189988851547,0.189275994896889,0.0514355227351189,0.19822484254837,0.0436908602714539,0.330073714256287,0.0461084544658661,0.00931772589683533,0.829274892807007,0.00931772589683533,0.990113437175751,0.417898833751678,0.830902397632599,0.479084223508835,0.25440526008606,0.638779819011688,0.252803444862366,0.631535887718201,0.455329656600952,0.47800549864769,0.458112359046936,0.302226305007935,0.457487612962723,0.302556395530701,0.469370186328888,0.154430508613586,0.46727180480957,0.154554039239883,0.457157909870148,0.988298177719116,0.461585104465485,0.976987063884735,0.459093362092972,0.977511286735535,0.256801068782806,0.988298177719116,0.25913080573082,0.646946430206299,0.818127274513245,0.6544149518013,0.633289217948914,0.655656158924103,0.823191463947296,0.144863128662109,0.262468010187149,0.150510236620903,0.256046086549759,0.147958397865295,0.45259040594101,0.153547555208206,0.800095915794373,0.144896566867828,0.801938831806183,0.145597100257874,0.64131623506546,0.477944374084473,0.465473979711533,0.630967438220978,0.462062954902649,0.637860536575317,0.622895538806915,0.475632756948471,0.623556673526764,0.154968798160553,0.635550022125244,0.302634537220001,0.635574102401733,0.301255524158478,0.823950052261353,0.199605047702789,0.821413040161133,0.308543652296066,0.814047515392303,0.322596669197083,0.62402206659317,0.318911284208298,0.467043071985245,0.457506358623505,0.465020716190338,0.461021810770035,0.624950647354126,0.475998312234879,0.634154736995697,0.476615071296692,0.824751734733582,0.469513922929764,0.799820244312286,0.467472225427628,0.636497616767883,0.63967752456665,0.828363239765167,0.637572348117828,0.634709179401398,0.647224068641663,0.840048372745514,0.646592736244202,0.990113437175751,0.638385772705078,0.836674213409424,0.460546225309372,0.869059920310974,0.434145510196686,0.820970416069031,0.462758332490921,
- 0.800662755966187,0.156035184860229,0.624931812286377,0.300447463989258,0.628248155117035,0.475013971328735,0.831753134727478,0.469623774290085,0.870288372039795,0.307776868343353,0.846295833587646,0.316366255283356,0.990113437175751,0.310962796211243,0.990113437175751,0.646979033946991,0.621370732784271,0.654889643192291,0.833439409732819,0.651490867137909,0.990113437175751,0.120709821581841,0.0325034633278847,0.160105615854263,0.0517915412783623,0.162340641021729,0.203708902001381,0.301962316036224,0.829365372657776,0.301462322473526,0.990113437175751,0.637963593006134,0.246441945433617,0.479848444461823,0.246441945433617,0.637515306472778,0.990113437175751,0.468208909034729,0.617062568664551,0.0164990574121475,0.208789885044098,0.0123893916606903,0.0358026176691055,0.977701485157013,0.990113437175751,0.973392009735107,0.827605247497559,0.988298177719116,0.869029998779297,0.460271388292313,0.632040560245514,0.646235227584839,0.256196677684784,0.644327759742737,0.425722509622574,0.319774508476257,0.460508435964584,0.318121343851089,0.255976319313049,0.464608460664749,0.259521842002869,0.45824521780014,0.459809601306915,0.670395016670227,0.464191019535065,0.658431231975555,0.626773953437805,0.643404841423035,0.491437375545502,0.147755146026611,0.472101747989655,0.469157218933105,0.451575875282288,0.468007743358612,0.473629474639893,0.64585554599762,0.638867616653442,0.669328033924103,0.457765817642212,0.773786962032318,0.456493347883224,0.776052594184875,0.462837040424347,0.144998133182526,0.622331500053406,0.477063953876495,0.990113437175751,0.647136569023132,0.246441945433617,0.653607249259949,0.246441945433617,0.6539106965065,0.256612300872803,0.313303411006927,0.246441945433617,0.318301796913147,0.246441945433617,0.150022804737091,0.246441945433617,0.301718890666962,0.246441945433617,0.300914734601974,0.255166172981262,0.975131750106812,0.62737500667572,0.988298177719116,0.62959760427475,0.309347212314606,0.623211205005646,0.30987811088562,0.640125215053558,0.150431513786316,0.990113437175751,0.152628064155579,
- 0.841279149055481,0.199288994073868,0.828286290168762,0.464168429374695,0.246441945433617,0.839141190052032,0.821341633796692,0.841726124286652,0.830593645572662,0.798527598381042,0.871484339237213,0.795401692390442,0.800222992897034,0.988298177719116,0.803985059261322,0.972247242927551,0.821140050888062,0.97880494594574,0.799790799617767,0.321422010660172,0.631576597690582,0.31108146905899,0.257758557796478,0.309988111257553,0.454735457897186,0.316969335079193,0.824111461639404,0.460973143577576,0.990113437175751,0.988298177719116,0.990113437175751,0.471312612295151,0.266330271959305,0.470264196395874,0.246441945433617,0.972951948642731,0.246441945433617,0.976223707199097,0.633273482322693,0.309572011232376,0.474284440279007,0.14291250705719,0.990113437175751,0.142434567213058,0.841507077217102,0.319989085197449,0.830329477787018,0.46804291009903,0.990113437175751,0.972543179988861,0.466220885515213,0.654197454452515,0.42426472902298,0.778667986392975,0.627540051937103,0.756119847297668,0.83412092924118,0.777250707149506,0.872854650020599,0.782012522220612,0.990113437175751,0.778395354747772,0.631696701049805,0.779507100582123,0.254941195249558,0.145352065563202,0.246441945433617,0.754274487495422,0.827646613121033,0.785900712013245,0.804888367652893,0.788744211196899,0.865757703781128,0.786357343196869,0.25886008143425,0.786849498748779,0.246441945433617,0.796091675758362,0.246441945433617,0.796553075313568,0.25792384147644,0.791013598442078,0.990113437175751,0.79875236749649,0.990113437175751,0.786681413650513,0.639372587203979,0.786948561668396,0.622786998748779,0.780132353305817,0.246441945433617,0.786559820175171,0.472667187452316,0.787777841091156,0.450602173805237,0.774298787117004,0.801520705223084,0.795651733875275,0.633572697639465,0.796568751335144,0.625395596027374,0.79806911945343,0.457486718893051,0.797308146953583,0.465166181325912,0.417898833751678,0.830902397632599,0.479084223508835,0.25440526008606,0.638779819011688,0.252803444862366,0.631535887718201,0.455329656600952,0.47800549864769,0.458112359046936,
- 0.302226305007935,0.457487612962723,0.302556395530701,0.469370186328888,0.154430508613586,0.46727180480957,0.154554039239883,0.457157909870148,0.646946430206299,0.818127274513245,0.6544149518013,0.633289217948914,0.655656158924103,0.823191463947296,0.144863128662109,0.262468010187149,0.150510236620903,0.256046086549759,0.147958397865295,0.45259040594101,0.153547555208206,0.800095915794373,0.144896566867828,0.801938831806183,0.145597100257874,0.64131623506546,0.477944374084473,0.465473979711533,0.630967438220978,0.462062954902649,0.637860536575317,0.622895538806915,0.475632756948471,0.623556673526764,0.154968798160553,0.635550022125244,0.302634537220001,0.635574102401733,0.301255524158478,0.823950052261353,0.199605047702789,0.821413040161133,0.308543652296066,0.814047515392303,0.322596669197083,0.62402206659317,0.318911284208298,0.467043071985245,0.457506358623505,0.465020716190338,0.461021810770035,0.624950647354126,0.475998312234879,0.634154736995697,0.476615071296692,0.824751734733582,0.469513922929764,0.799820244312286,0.467472225427628,0.636497616767883,0.63967752456665,0.828363239765167,0.637572348117828,0.634709179401398,0.647224068641663,0.840048372745514,0.646592736244202,0.990113437175751,0.638385772705078,0.836674213409424,0.460546225309372,0.869059920310974,0.434145510196686,0.820970416069031,0.462758332490921,0.800662755966187,0.156035184860229,0.624931812286377,0.300447463989258,0.628248155117035,0.475013971328735,0.831753134727478,0.469623774290085,0.870288372039795,0.307776868343353,0.846295833587646,0.316366255283356,0.990113437175751,0.310962796211243,0.990113437175751,0.646979033946991,0.621370732784271,0.654889643192291,0.833439409732819,0.651490867137909,0.990113437175751,0.301962316036224,0.829365372657776,0.301462322473526,0.990113437175751,0.637963593006134,0.246441945433617,0.479848444461823,0.246441945433617,0.637515306472778,0.990113437175751,0.468208909034729,0.617062568664551,0.460271388292313,0.632040560245514,0.646235227584839,0.256196677684784,0.644327759742737,0.425722509622574,0.319774508476257,
- 0.460508435964584,0.318121343851089,0.255976319313049,0.464608460664749,0.259521842002869,0.45824521780014,0.459809601306915,0.670395016670227,0.464191019535065,0.658431231975555,0.626773953437805,0.643404841423035,0.491437375545502,0.147755146026611,0.472101747989655,0.469157218933105,0.451575875282288,0.468007743358612,0.473629474639893,0.64585554599762,0.638867616653442,0.669328033924103,0.457765817642212,0.773786962032318,0.456493347883224,0.776052594184875,0.462837040424347,0.144998133182526,0.622331500053406,0.477063953876495,0.990113437175751,0.647136569023132,0.246441945433617,0.653607249259949,0.246441945433617,0.6539106965065,0.256612300872803,0.313303411006927,0.246441945433617,0.318301796913147,0.246441945433617,0.150022804737091,0.246441945433617,0.301718890666962,0.246441945433617,0.300914734601974,0.255166172981262,0.309347212314606,0.623211205005646,0.30987811088562,0.640125215053558,0.150431513786316,0.990113437175751,0.152628064155579,0.841279149055481,0.199288994073868,0.828286290168762,0.464168429374695,0.246441945433617,0.321422010660172,0.631576597690582,0.31108146905899,0.257758557796478,0.309988111257553,0.454735457897186,0.316969335079193,0.824111461639404,0.460973143577576,0.990113437175751,0.471312612295151,0.266330271959305,0.470264196395874,0.246441945433617,0.309572011232376,0.474284440279007,0.14291250705719,0.990113437175751,0.142434567213058,0.841507077217102,0.319989085197449,0.830329477787018,0.46804291009903,0.990113437175751,0.654197454452515,0.42426472902298,0.778667986392975,0.627540051937103,0.756119847297668,0.83412092924118,0.777250707149506,0.872854650020599,0.782012522220612,0.990113437175751,0.778395354747772,0.631696701049805,0.779507100582123,0.254941195249558,0.145352065563202,0.246441945433617,0.754274487495422,0.827646613121033,0.785900712013245,0.804888367652893,0.788744211196899,0.865757703781128,0.786948561668396,0.622786998748779,0.786681413650513,0.639372587203979,0.780132353305817,0.246441945433617,0.786849498748779,0.246441945433617,0.786357343196869,0.25886008143425,
- 0.786559820175171,0.472667187452316,0.787777841091156,0.450602173805237,0.774298787117004,0.801520705223084,0.791013598442078,0.990113437175751,0.00931772589683533,0.809959292411804,0.019786149263382,0.636090278625488,0.01873779296875,0.812894821166992,0.018329530954361,0.256851524114609,0.0198614597320557,0.246441960334778,0.140292853116989,0.246441945433617,0.139520302414894,0.252775698900223,0.0221665501594543,0.467731684446335,0.0270044207572937,0.627540826797485,0.00931772589683533,0.462930709123611,0.00931772589683533,0.660382509231567,0.00931772589683533,0.60849404335022,0.0151942074298859,0.459919482469559,0.142049551010132,0.456382751464844,0.142015665769577,0.464433133602142,0.00931772589683533,0.263703227043152,0.137153655290604,0.62606805562973,0.131695419549942,0.828087091445923,0.135987251996994,0.990113437175751,0.0192233622074127,0.990113437175751,0.0155375301837921,0.82286137342453,0.138761848211288,0.639794766902924,0.135247349739075,0.819815516471863,0.329141795635223,0.198342621326447,0.213426113128662,0.202185690402985,0.190390050411224,0.176189988851547,0.189275994896889,0.0514355227351189,0.19822484254837,0.0436908602714539,0.330073714256287,0.0461084544658661,0.00931772589683533,0.829274892807007,0.00931772589683533,0.990113437175751,0.417898833751678,0.830902397632599,0.479084223508835,0.25440526008606,0.638779819011688,0.252803444862366,0.631535887718201,0.455329656600952,0.47800549864769,0.458112359046936,0.302226305007935,0.457487612962723,0.302556395530701,0.469370186328888,0.154430508613586,0.46727180480957,0.154554039239883,0.457157909870148,0.988298177719116,0.461585104465485,0.976987063884735,0.459093362092972,0.977511286735535,0.256801068782806,0.988298177719116,0.25913080573082,0.646946430206299,0.818127274513245,0.6544149518013,0.633289217948914,0.655656158924103,0.823191463947296,0.144863128662109,0.262468010187149,0.150510236620903,0.256046086549759,0.147958397865295,0.45259040594101,0.153547555208206,0.800095915794373,0.144896566867828,0.801938831806183,0.145597100257874,0.64131623506546,
- 0.477944374084473,0.465473979711533,0.630967438220978,0.462062954902649,0.637860536575317,0.622895538806915,0.475632756948471,0.623556673526764,0.154968798160553,0.635550022125244,0.302634537220001,0.635574102401733,0.301255524158478,0.823950052261353,0.199605047702789,0.821413040161133,0.308543652296066,0.814047515392303,0.322596669197083,0.62402206659317,0.318911284208298,0.467043071985245,0.457506358623505,0.465020716190338,0.461021810770035,0.624950647354126,0.475998312234879,0.634154736995697,0.476615071296692,0.824751734733582,0.469513922929764,0.799820244312286,0.467472225427628,0.636497616767883,0.63967752456665,0.828363239765167,0.637572348117828,0.634709179401398,0.647224068641663,0.840048372745514,0.646592736244202,0.990113437175751,0.638385772705078,0.836674213409424,0.460546225309372,0.869059920310974,0.434145510196686,0.820970416069031,0.462758332490921,0.800662755966187,0.156035184860229,0.624931812286377,0.300447463989258,0.628248155117035,0.475013971328735,0.831753134727478,0.469623774290085,0.870288372039795,0.307776868343353,0.846295833587646,0.316366255283356,0.990113437175751,0.310962796211243,0.990113437175751,0.646979033946991,0.621370732784271,0.654889643192291,0.833439409732819,0.651490867137909,0.990113437175751,0.120709821581841,0.0325034633278847,0.160105615854263,0.0517915412783623,0.162340641021729,0.203708902001381,0.301962316036224,0.829365372657776,0.301462322473526,0.990113437175751,0.637963593006134,0.246441945433617,0.479848444461823,0.246441945433617,0.637515306472778,0.990113437175751,0.468208909034729,0.617062568664551,0.0164990574121475,0.208789885044098,0.0123893916606903,0.0358026176691055,0.977701485157013,0.990113437175751,0.973392009735107,0.827605247497559,0.988298177719116,0.869029998779297,0.460271388292313,0.632040560245514,0.646235227584839,0.256196677684784,0.644327759742737,0.425722509622574,0.319774508476257,0.460508435964584,0.318121343851089,0.255976319313049,0.464608460664749,0.259521842002869,0.45824521780014,0.459809601306915,0.670395016670227,0.464191019535065,
- 0.658431231975555,0.626773953437805,0.643404841423035,0.491437375545502,0.147755146026611,0.472101747989655,0.469157218933105,0.451575875282288,0.468007743358612,0.473629474639893,0.64585554599762,0.638867616653442,0.669328033924103,0.457765817642212,0.773786962032318,0.456493347883224,0.776052594184875,0.462837040424347,0.144998133182526,0.622331500053406,0.477063953876495,0.990113437175751,0.647136569023132,0.246441945433617,0.653607249259949,0.246441945433617,0.6539106965065,0.256612300872803,0.313303411006927,0.246441945433617,0.318301796913147,0.246441945433617,0.150022804737091,0.246441945433617,0.301718890666962,0.246441945433617,0.300914734601974,0.255166172981262,0.975131750106812,0.62737500667572,0.988298177719116,0.62959760427475,0.309347212314606,0.623211205005646,0.30987811088562,0.640125215053558,0.150431513786316,0.990113437175751,0.152628064155579,0.841279149055481,0.199288994073868,0.828286290168762,0.464168429374695,0.246441945433617,0.839141190052032,0.821341633796692,0.841726124286652,0.830593645572662,0.798527598381042,0.871484339237213,0.795401692390442,0.800222992897034,0.988298177719116,0.803985059261322,0.972247242927551,0.821140050888062,0.97880494594574,0.799790799617767,0.321422010660172,0.631576597690582,0.31108146905899,0.257758557796478,0.309988111257553,0.454735457897186,0.316969335079193,0.824111461639404,0.460973143577576,0.990113437175751,0.988298177719116,0.990113437175751,0.471312612295151,0.266330271959305,0.470264196395874,0.246441945433617,0.972951948642731,0.246441945433617,0.976223707199097,0.633273482322693,0.309572011232376,0.474284440279007,0.14291250705719,0.990113437175751,0.142434567213058,0.841507077217102,0.319989085197449,0.830329477787018,0.46804291009903,0.990113437175751,0.972543179988861,0.466220885515213,0.654197454452515,0.42426472902298,0.778667986392975,0.627540051937103,0.756119847297668,0.83412092924118,0.777250707149506,0.872854650020599,0.782012522220612,0.990113437175751,0.778395354747772,0.631696701049805,0.779507100582123,0.254941195249558,0.145352065563202,
- 0.246441945433617,0.754274487495422,0.827646613121033,0.785900712013245,0.804888367652893,0.788744211196899,0.865757703781128,0.786357343196869,0.25886008143425,0.786849498748779,0.246441945433617,0.796091675758362,0.246441945433617,0.796553075313568,0.25792384147644,0.791013598442078,0.990113437175751,0.79875236749649,0.990113437175751,0.786681413650513,0.639372587203979,0.786948561668396,0.622786998748779,0.780132353305817,0.246441945433617,0.786559820175171,0.472667187452316,0.787777841091156,0.450602173805237,0.774298787117004,0.801520705223084,0.795651733875275,0.633572697639465,0.796568751335144,0.625395596027374,0.79806911945343,0.457486718893051,0.797308146953583,0.465166181325912,0.00931772589683533,0.809959292411804,0.019786149263382,0.636090278625488,0.01873779296875,0.812894821166992,0.018329530954361,0.256851524114609,0.0198614597320557,0.246441960334778,0.140292853116989,0.246441945433617,0.139520302414894,0.252775698900223,0.0221665501594543,0.467731684446335,0.0270044207572937,0.627540826797485,0.00931772589683533,0.462930709123611,0.00931772589683533,0.660382509231567,0.00931772589683533,0.60849404335022,0.0151942074298859,0.459919482469559,0.142049551010132,0.456382751464844,0.142015665769577,0.464433133602142,0.00931772589683533,0.263703227043152,0.137153655290604,0.62606805562973,0.131695419549942,0.828087091445923,0.135987251996994,0.990113437175751,0.0192233622074127,0.990113437175751,0.0155375301837921,0.82286137342453,0.138761848211288,0.639794766902924,0.135247349739075,0.819815516471863,0.329141795635223,0.198342621326447,0.213426113128662,0.202185690402985,0.190390050411224,0.176189988851547,0.189275994896889,0.0514355227351189,0.19822484254837,0.0436908602714539,0.330073714256287,0.0461084544658661,0.00931772589683533,0.829274892807007,0.00931772589683533,0.990113437175751,0.417898833751678,0.830902397632599,0.479084223508835,0.25440526008606,0.638779819011688,0.252803444862366,0.631535887718201,0.455329656600952,0.47800549864769,0.458112359046936,0.302226305007935,0.457487612962723,0.302556395530701,
- 0.469370186328888,0.154430508613586,0.46727180480957,0.154554039239883,0.457157909870148,0.988298177719116,0.461585104465485,0.976987063884735,0.459093362092972,0.977511286735535,0.256801068782806,0.988298177719116,0.25913080573082,0.646946430206299,0.818127274513245,0.6544149518013,0.633289217948914,0.655656158924103,0.823191463947296,0.144863128662109,0.262468010187149,0.150510236620903,0.256046086549759,0.147958397865295,0.45259040594101,0.153547555208206,0.800095915794373,0.144896566867828,0.801938831806183,0.145597100257874,0.64131623506546,0.477944374084473,0.465473979711533,0.630967438220978,0.462062954902649,0.637860536575317,0.622895538806915,0.475632756948471,0.623556673526764,0.154968798160553,0.635550022125244,0.302634537220001,0.635574102401733,0.301255524158478,0.823950052261353,0.199605047702789,0.821413040161133,0.308543652296066,0.814047515392303,0.322596669197083,0.62402206659317,0.318911284208298,0.467043071985245,0.457506358623505,0.465020716190338,0.461021810770035,0.624950647354126,0.475998312234879,0.634154736995697,0.476615071296692,0.824751734733582,0.469513922929764,0.799820244312286,0.467472225427628,0.636497616767883,0.63967752456665,0.828363239765167,0.637572348117828,0.634709179401398,0.647224068641663,0.840048372745514,0.646592736244202,0.990113437175751,0.638385772705078,0.836674213409424,0.460546225309372,0.869059920310974,0.434145510196686,0.820970416069031,0.462758332490921,0.800662755966187,0.156035184860229,0.624931812286377,0.300447463989258,0.628248155117035,0.475013971328735,0.831753134727478,0.469623774290085,0.870288372039795,0.307776868343353,0.846295833587646,0.316366255283356,0.990113437175751,0.310962796211243,0.990113437175751,0.646979033946991,0.621370732784271,0.654889643192291,0.833439409732819,0.651490867137909,0.990113437175751,0.120709821581841,0.0325034633278847,0.160105615854263,0.0517915412783623,0.162340641021729,0.203708902001381,0.301962316036224,0.829365372657776,0.301462322473526,0.990113437175751,0.637963593006134,0.246441945433617,0.479848444461823,0.246441945433617,
- 0.637515306472778,0.990113437175751,0.468208909034729,0.617062568664551,0.0164990574121475,0.208789885044098,0.0123893916606903,0.0358026176691055,0.977701485157013,0.990113437175751,0.973392009735107,0.827605247497559,0.988298177719116,0.869029998779297,0.460271388292313,0.632040560245514,0.646235227584839,0.256196677684784,0.644327759742737,0.425722509622574,0.319774508476257,0.460508435964584,0.318121343851089,0.255976319313049,0.464608460664749,0.259521842002869,0.45824521780014,0.459809601306915,0.670395016670227,0.464191019535065,0.658431231975555,0.626773953437805,0.643404841423035,0.491437375545502,0.147755146026611,0.472101747989655,0.469157218933105,0.451575875282288,0.468007743358612,0.473629474639893,0.64585554599762,0.638867616653442,0.669328033924103,0.457765817642212,0.773786962032318,0.456493347883224,0.776052594184875,0.462837040424347,0.144998133182526,0.622331500053406,0.477063953876495,0.990113437175751,0.647136569023132,0.246441945433617,0.653607249259949,0.246441945433617,0.6539106965065,0.256612300872803,0.313303411006927,0.246441945433617,0.318301796913147,0.246441945433617,0.150022804737091,0.246441945433617,0.301718890666962,0.246441945433617,0.300914734601974,0.255166172981262,0.975131750106812,0.62737500667572,0.988298177719116,0.62959760427475,0.309347212314606,0.623211205005646,0.30987811088562,0.640125215053558,0.150431513786316,0.990113437175751,0.152628064155579,0.841279149055481,0.199288994073868,0.828286290168762,0.464168429374695,0.246441945433617,0.839141190052032,0.821341633796692,0.841726124286652,0.830593645572662,0.798527598381042,0.871484339237213,0.795401692390442,0.800222992897034,0.988298177719116,0.803985059261322,0.972247242927551,0.821140050888062,0.97880494594574,0.799790799617767,0.321422010660172,0.631576597690582,0.31108146905899,0.257758557796478,0.309988111257553,0.454735457897186,0.316969335079193,0.824111461639404,0.460973143577576,0.990113437175751,0.988298177719116,0.990113437175751,0.471312612295151,0.266330271959305,0.470264196395874,0.246441945433617,0.972951948642731,
- 0.246441945433617,0.976223707199097,0.633273482322693,0.309572011232376,0.474284440279007,0.14291250705719,0.990113437175751,0.142434567213058,0.841507077217102,0.319989085197449,0.830329477787018,0.46804291009903,0.990113437175751,0.972543179988861,0.466220885515213,0.654197454452515,0.42426472902298,0.778667986392975,0.627540051937103,0.756119847297668,0.83412092924118,0.777250707149506,0.872854650020599,0.782012522220612,0.990113437175751,0.778395354747772,0.631696701049805,0.779507100582123,0.254941195249558,0.145352065563202,0.246441945433617,0.754274487495422,0.827646613121033,0.785900712013245,0.804888367652893,0.788744211196899,0.865757703781128,0.786357343196869,0.25886008143425,0.786849498748779,0.246441945433617,0.796091675758362,0.246441945433617,0.796553075313568,0.25792384147644,0.791013598442078,0.990113437175751,0.79875236749649,0.990113437175751,0.786681413650513,0.639372587203979,0.786948561668396,0.622786998748779,0.780132353305817,0.246441945433617,0.786559820175171,0.472667187452316,0.787777841091156,0.450602173805237,0.774298787117004,0.801520705223084,0.795651733875275,0.633572697639465,0.796568751335144,0.625395596027374,0.79806911945343,0.457486718893051,0.797308146953583,0.465166181325912,0.00931772589683533,0.809959292411804,0.019786149263382,0.636090278625488,0.01873779296875,0.812894821166992,0.018329530954361,0.256851524114609,0.0198614597320557,0.246441960334778,0.140292853116989,0.246441945433617,0.139520302414894,0.252775698900223,0.0221665501594543,0.467731684446335,0.0270044207572937,0.627540826797485,0.00931772589683533,0.462930709123611,0.00931772589683533,0.660382509231567,0.00931772589683533,0.60849404335022,0.0151942074298859,0.459919482469559,0.142049551010132,0.456382751464844,0.142015665769577,0.464433133602142,0.00931772589683533,0.263703227043152,0.137153655290604,0.62606805562973,0.131695419549942,0.828087091445923,0.135987251996994,0.990113437175751,0.0192233622074127,0.990113437175751,0.0155375301837921,0.82286137342453,0.138761848211288,0.639794766902924,0.135247349739075,
- 0.819815516471863,0.329141795635223,0.198342621326447,0.213426113128662,0.202185690402985,0.190390050411224,0.176189988851547,0.189275994896889,0.0514355227351189,0.19822484254837,0.0436908602714539,0.330073714256287,0.0461084544658661,0.00931772589683533,0.829274892807007,0.00931772589683533,0.990113437175751,0.417898833751678,0.830902397632599,0.479084223508835,0.25440526008606,0.638779819011688,0.252803444862366,0.631535887718201,0.455329656600952,0.47800549864769,0.458112359046936,0.302226305007935,0.457487612962723,0.302556395530701,0.469370186328888,0.154430508613586,0.46727180480957,0.154554039239883,0.457157909870148,0.988298177719116,0.461585104465485,0.976987063884735,0.459093362092972,0.977511286735535,0.256801068782806,0.988298177719116,0.25913080573082,0.646946430206299,0.818127274513245,0.6544149518013,0.633289217948914,0.655656158924103,0.823191463947296,0.144863128662109,0.262468010187149,0.150510236620903,0.256046086549759,0.147958397865295,0.45259040594101,0.153547555208206,0.800095915794373,0.144896566867828,0.801938831806183,0.145597100257874,0.64131623506546,0.477944374084473,0.465473979711533,0.630967438220978,0.462062954902649,0.637860536575317,0.622895538806915,0.475632756948471,0.623556673526764,0.154968798160553,0.635550022125244,0.302634537220001,0.635574102401733,0.301255524158478,0.823950052261353,0.199605047702789,0.821413040161133,0.308543652296066,0.814047515392303,0.322596669197083,0.62402206659317,0.318911284208298,0.467043071985245,0.457506358623505,0.465020716190338,0.461021810770035,0.624950647354126,0.475998312234879,0.634154736995697,0.476615071296692,0.824751734733582,0.469513922929764,0.799820244312286,0.467472225427628,0.636497616767883,0.63967752456665,0.828363239765167,0.637572348117828,0.634709179401398,0.647224068641663,0.840048372745514,0.646592736244202,0.990113437175751,0.638385772705078,0.836674213409424,0.460546225309372,0.869059920310974,0.434145510196686,0.820970416069031,0.462758332490921,0.800662755966187,0.156035184860229,0.624931812286377,0.300447463989258,0.628248155117035,
- 0.475013971328735,0.831753134727478,0.469623774290085,0.870288372039795,0.307776868343353,0.846295833587646,0.316366255283356,0.990113437175751,0.310962796211243,0.990113437175751,0.646979033946991,0.621370732784271,0.654889643192291,0.833439409732819,0.651490867137909,0.990113437175751,0.120709821581841,0.0325034633278847,0.160105615854263,0.0517915412783623,0.162340641021729,0.203708902001381,0.301962316036224,0.829365372657776,0.301462322473526,0.990113437175751,0.637963593006134,0.246441945433617,0.479848444461823,0.246441945433617,0.637515306472778,0.990113437175751,0.468208909034729,0.617062568664551,0.0164990574121475,0.208789885044098,0.0123893916606903,0.0358026176691055,0.977701485157013,0.990113437175751,0.973392009735107,0.827605247497559,0.988298177719116,0.869029998779297,0.460271388292313,0.632040560245514,0.646235227584839,0.256196677684784,0.644327759742737,0.425722509622574,0.319774508476257,0.460508435964584,0.318121343851089,0.255976319313049,0.464608460664749,0.259521842002869,0.45824521780014,0.459809601306915,0.670395016670227,0.464191019535065,0.658431231975555,0.626773953437805,0.643404841423035,0.491437375545502,0.147755146026611,0.472101747989655,0.469157218933105,0.451575875282288,0.468007743358612,0.473629474639893,0.64585554599762,0.638867616653442,0.669328033924103,0.457765817642212,0.773786962032318,0.456493347883224,0.776052594184875,0.462837040424347,0.144998133182526,0.622331500053406,0.477063953876495,0.990113437175751,0.647136569023132,0.246441945433617,0.653607249259949,0.246441945433617,0.6539106965065,0.256612300872803,0.313303411006927,0.246441945433617,0.318301796913147,0.246441945433617,0.150022804737091,0.246441945433617,0.301718890666962,0.246441945433617,0.300914734601974,0.255166172981262,0.975131750106812,0.62737500667572,0.988298177719116,0.62959760427475,0.309347212314606,0.623211205005646,0.30987811088562,0.640125215053558,0.150431513786316,0.990113437175751,0.152628064155579,0.841279149055481,0.199288994073868,0.828286290168762,0.464168429374695,0.246441945433617,
- 0.839141190052032,0.821341633796692,0.841726124286652,0.830593645572662,0.798527598381042,0.871484339237213,0.795401692390442,0.800222992897034,0.988298177719116,0.803985059261322,0.972247242927551,0.821140050888062,0.97880494594574,0.799790799617767,0.321422010660172,0.631576597690582,0.31108146905899,0.257758557796478,0.309988111257553,0.454735457897186,0.316969335079193,0.824111461639404,0.460973143577576,0.990113437175751,0.988298177719116,0.990113437175751,0.471312612295151,0.266330271959305,0.470264196395874,0.246441945433617,0.972951948642731,0.246441945433617,0.976223707199097,0.633273482322693,0.309572011232376,0.474284440279007,0.14291250705719,0.990113437175751,0.142434567213058,0.841507077217102,0.319989085197449,0.830329477787018,0.46804291009903,0.990113437175751,0.972543179988861,0.466220885515213,0.654197454452515,0.42426472902298,0.778667986392975,0.627540051937103,0.756119847297668,0.83412092924118,0.777250707149506,0.872854650020599,0.782012522220612,0.990113437175751,0.778395354747772,0.631696701049805,0.779507100582123,0.254941195249558,0.145352065563202,0.246441945433617,0.754274487495422,0.827646613121033,0.785900712013245,0.804888367652893,0.788744211196899,0.865757703781128,0.786357343196869,0.25886008143425,0.786849498748779,0.246441945433617,0.796091675758362,0.246441945433617,0.796553075313568,0.25792384147644,0.791013598442078,0.990113437175751,0.79875236749649,0.990113437175751,0.786681413650513,0.639372587203979,0.786948561668396,0.622786998748779,0.780132353305817,0.246441945433617,0.786559820175171,0.472667187452316,0.787777841091156,0.450602173805237,0.774298787117004,0.801520705223084,0.795651733875275,0.633572697639465,0.796568751335144,0.625395596027374,0.79806911945343,0.457486718893051,0.797308146953583,0.465166181325912,0.417898833751678,0.830902397632599,0.749918282032013,0.500156879425049,0.697580754756927,0.50032114982605,0.837752521038055,-0.0549683049321175,0.436343193054199,-0.0549672842025757,0.300573498010635,0.500900268554688,0.248699516057968,0.500947535037994,0.250023752450943,
- 0.500546097755432,0.0624312795698643,-0.057381022721529,0.302186816930771,0.500533699989319,0.69687682390213,0.500997364521027,0.358178585767746,-0.0289773605763912,0.749408900737762,0.500620782375336
- }
- UVIndex: *6060 {
- a: 29,30,8,1,0,4,32,33,6,31,32,4,8,30,31,6,11,10,2,9,11,9,7,12,12,7,5,13,14,13,5,3,10,11,16,15,17,122,16,11,12,13,18,116,17,12,19,18,13,14,21,20,15,16,21,16,130,123,23,22,18,19,24,1610,25,25,1610,1611,124,28,1616,22,23,30,29,24,25,30,25,124,26,31,31,26,118,27,32,33,32,27,28,34,35,36,37,40,41,39,38,41,40,42,43,44,45,43,42,45,44,46,47,35,34,47,46,48,49,50,51,52,54,55,53,55,54,56,57,56,58,59,57,59,58,60,61,60,49,48,61,62,63,64,65,62,66,67,63,66,68,69,67,70,69,68,71,72,73,74,75,76,72,75,77,78,76,77,79,80,81,78,79,82,83,84,85,86,87,88,89,87,91,90,88,91,84,83,90,97,98,93,92,97,92,94,99,99,94,95,100,96,101,100,95,98,97,102,103,99,104,119,102,97,100,105,125,104,99,106,105,100,101,107,108,103,102,107,102,129,120,106,110,109,105,112,1621,111,1619,1621,107,120,115,1615,109,110,83,82,112,111,83,111,121,113,90,90,113,127,114,88,115,89,88,114,18,128,116,1616,1618,117,22,105,131,125,127,1614,1615,114,214,215,216,217,222,223,224,225,238,231,227,226,228,229,1612,1613,1617,1620,219,218,232,233,234,235,235,234,236,237,217,239,230,214,216,215,218,219,224,223,226,227,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,138,137,151,152,153,154,155,156,157,158,159,133,132,160,161,149,148,143,142,145,144,162,163,153,152,136,135,134,137,140,139,138,141,164,132,135,165,166,158,132,164,167,144,147,168,169,143,144,167,170,140,143,169,170,171,139,140,172,136,139,171,172,165,135,136,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,179,178,192,193,194,195,196,197,198,199,200,174,173,201,202,190,189,184,183,186,185,203,204,194,193,177,176,175,178,181,180,179,182,205,173,176,206,207,199,173,205,208,185,188,209,210,184,185,208,211,181,184,210,211,212,180,181,213,177,180,212,213,206,176,177,240,241,242,243,244,245,246,247,248,249,250,251,252,247,253,254,255,256,257,258,259,260,261,262,263,264,254,265,263,262,266,267,268,269,270,271,272,273,248,274,275,276,277,278,279,280,281,261,282,283,262,272,284,285,286,287,288,275,259,289,290,291,277,276,292,286,293,294,241,240,295,278,277,296,
- 269,268,297,260,273,297,272,298,273,297,273,269,242,258,257,243,242,299,300,301,302,303,304,305,306,307,246,308,247,309,257,310,249,248,311,289,307,306,309,268,304,305,312,313,314,305,307,312,307,242,300,315,282,261,311,248,275,285,284,316,317,241,294,317,318,319,299,320,321,302,288,293,286,252,322,323,324,299,241,317,242,241,299,279,281,272,325,266,326,275,289,311,289,249,311,272,285,279,292,293,327,328,329,306,249,289,261,256,315,254,256,261,321,330,303,302,262,283,325,326,326,265,262,270,273,260,248,276,274,258,242,307,271,274,278,284,274,276,278,259,307,289,258,307,259,266,331,326,332,333,324,257,309,243,243,309,240,334,286,265,279,285,335,295,240,336,337,268,309,310,309,336,240,267,333,301,297,257,260,269,273,298,298,331,266,269,267,338,333,283,282,246,245,315,308,246,282,339,340,328,327,255,254,328,340,265,292,263,341,287,286,285,342,335,332,324,323,332,323,320,320,302,332,286,292,265,334,341,286,281,280,334,331,298,312,300,343,338,325,283,267,325,338,267,266,325,252,324,244,247,301,304,268,267,296,316,284,278,259,275,270,260,306,305,314,344,345,346,347,291,290,306,344,348,249,250,290,276,248,312,319,349,313,252,350,322,271,284,272,331,265,326,332,302,301,333,348,351,250,249,352,353,345,351,344,354,355,349,356,357,358,353,346,345,359,313,360,348,344,355,352,361,348,355,250,351,345,290,351,361,352,347,346,353,362,351,348,361,313,358,360,313,349,358,314,313,359,363,364,365,366,367,368,369,370,371,372,364,363,373,374,372,371,370,375,376,377,370,372,375,374,364,373,371,364,374,372,378,375,366,369,376,375,371,370,377,379,380,381,382,383,371,379,384,364,375,378,366,384,385,365,364,255,340,385,379,377,308,315,369,368,350,251,384,379,315,256,384,315,365,385,380,383,385,256,255,381,380,340,339,385,384,256,251,253,376,369,377,376,308,386,387,388,389,390,391,365,383,392,363,378,367,366,393,392,383,382,252,251,350,304,303,309,333,244,324,338,245,244,333,283,245,338,334,265,331,287,341,394,279,335,272,281,298,385,340,380,299,319,343,300,319,318,356,349,303,336,309,337,336,303,330,337,303,275,274,271,270,268,310,297,310,257,
- 297,316,342,285,394,341,334,280,279,394,280,292,329,264,263,264,329,328,254,344,314,359,354,253,247,308,376,253,308,312,343,319,312,307,300,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,402,412,413,414,415,416,417,418,419,420,421,422,423,413,424,422,421,425,426,427,428,429,430,431,432,407,433,434,435,436,437,438,439,440,420,441,442,421,431,443,444,445,446,447,434,418,448,449,450,436,435,451,452,453,454,445,455,456,396,395,457,437,436,458,428,427,459,419,432,459,460,461,451,453,462,463,464,431,465,432,459,432,428,397,417,416,398,397,466,467,468,469,470,471,472,473,474,401,475,402,476,416,477,408,407,478,448,474,473,476,427,471,472,479,480,481,472,474,479,474,397,467,482,441,420,478,407,434,444,443,483,484,396,456,484,485,486,466,487,488,469,447,455,445,411,489,490,491,492,403,493,466,396,484,397,396,466,438,440,431,494,425,495,434,448,478,448,408,478,431,444,438,454,455,496,497,498,473,408,448,420,415,482,413,415,420,488,499,470,469,421,442,494,495,495,424,421,429,432,419,407,435,433,500,501,502,503,417,397,474,430,433,437,443,433,435,437,418,474,448,417,474,418,463,504,464,504,505,506,425,507,495,508,509,491,463,505,504,416,476,398,398,476,395,510,445,424,438,444,511,464,512,462,457,395,513,514,427,476,477,406,405,515,492,493,516,476,513,395,493,504,506,493,506,516,426,509,468,459,416,419,428,432,465,465,507,425,428,426,517,509,442,441,401,400,482,475,401,441,518,519,497,496,414,413,497,519,424,454,422,520,446,445,444,521,511,508,491,490,508,490,487,487,469,508,492,522,403,404,403,522,445,454,424,510,520,445,440,439,510,507,465,479,467,523,517,494,442,426,494,517,426,425,494,411,491,399,402,468,471,427,426,458,483,443,437,418,434,429,419,473,472,481,524,505,516,506,525,526,527,450,449,473,524,528,408,409,449,435,407,479,486,529,480,411,530,489,430,443,431,507,424,495,508,469,468,509,528,531,409,408,532,533,525,531,534,535,536,537,538,533,502,539,532,540,503,524,541,540,529,542,535,534,533,526,525,543,480,544,528,524,540,532,545,528,540,409,531,525,449,503,502,533,532,515,405,537,536,463,462,539,
- 502,501,492,516,546,547,516,505,500,503,546,405,404,548,537,404,522,549,548,549,547,543,543,544,548,500,505,463,501,531,545,532,527,526,533,538,531,528,545,543,548,549,480,534,544,540,541,547,522,492,547,549,480,529,534,534,537,548,534,548,544,481,480,543,503,540,546,550,551,552,553,554,555,556,557,558,559,551,550,560,561,559,558,557,562,563,564,557,559,562,561,551,560,558,551,561,559,565,562,553,556,563,562,558,557,564,566,567,568,569,570,558,566,571,551,562,565,553,571,572,552,551,414,519,572,566,564,475,482,556,555,530,410,571,566,482,415,571,482,552,572,567,570,572,415,414,568,567,519,518,572,571,415,410,412,563,556,564,563,475,573,574,575,576,577,578,552,570,579,550,565,554,553,580,579,570,569,411,410,530,471,470,476,509,399,491,517,400,399,509,442,400,517,540,547,546,510,424,507,446,520,581,438,511,431,440,465,572,519,567,466,486,523,467,486,485,542,529,470,513,476,514,513,470,499,514,470,434,433,430,429,427,477,459,477,416,459,483,521,444,581,520,510,439,438,581,439,454,498,423,422,423,498,497,413,524,481,543,541,547,541,543,412,402,475,563,412,475,479,523,486,479,474,467,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,589,599,600,601,602,603,604,605,606,607,608,609,610,600,611,609,608,612,613,614,615,616,617,618,619,594,620,621,622,623,624,625,626,627,607,628,629,608,618,630,631,632,633,634,621,605,635,636,637,623,622,638,639,640,641,632,642,643,583,582,644,624,623,645,615,614,646,606,619,646,647,648,638,640,649,650,651,618,652,619,646,619,615,584,604,603,585,584,653,654,655,656,657,658,659,660,661,588,662,589,663,603,664,595,594,665,635,661,660,663,614,658,659,666,667,668,659,661,666,661,584,654,669,628,607,665,594,621,631,630,670,671,583,643,671,672,673,653,674,675,656,634,642,632,598,676,677,678,679,590,680,653,583,671,584,583,653,625,627,618,681,612,682,621,635,665,635,595,665,618,631,625,641,642,683,684,685,660,595,635,607,602,669,600,602,607,675,686,657,656,608,629,681,682,682,611,608,616,619,606,594,622,620,687,688,689,690,604,584,661,617,620,624,630,620,622,624,605,661,635,604,661,
- 605,650,691,651,691,692,693,612,694,682,695,696,678,650,692,691,603,663,585,585,663,582,697,632,611,625,631,698,651,699,649,644,582,700,701,614,663,664,593,592,702,679,680,703,663,700,582,680,691,693,680,693,703,613,696,655,646,603,606,615,619,652,652,694,612,615,613,704,696,629,628,588,587,669,662,588,628,705,706,684,683,601,600,684,706,611,641,609,707,633,632,631,708,698,695,678,677,695,677,674,674,656,695,679,709,590,591,590,709,632,641,611,697,707,632,627,626,697,694,652,666,654,710,704,681,629,613,681,704,613,612,681,598,678,586,589,655,658,614,613,645,670,630,624,605,621,616,606,660,659,668,711,692,703,693,712,713,714,637,636,660,711,715,595,596,636,622,594,666,673,716,667,598,717,676,617,630,618,694,611,682,695,656,655,696,715,718,596,595,719,720,712,718,721,722,723,724,725,720,689,726,719,727,690,711,728,727,716,729,722,721,720,713,712,730,667,731,715,711,727,719,732,715,727,596,718,712,636,690,689,720,719,702,592,724,723,650,649,726,689,688,679,703,733,734,703,692,687,690,733,592,591,735,724,591,709,736,735,736,734,730,730,731,735,687,692,650,688,718,732,719,714,713,720,725,718,715,732,730,735,736,667,721,731,727,728,734,709,679,734,736,667,716,721,721,724,735,721,735,731,668,667,730,690,727,733,737,738,739,740,741,742,743,744,745,746,738,737,747,748,746,745,744,749,750,751,744,746,749,748,738,747,745,738,748,746,752,749,740,743,750,749,745,744,751,753,754,755,756,757,745,753,758,738,749,752,740,758,759,739,738,601,706,759,753,751,662,669,743,742,717,597,758,753,669,602,758,669,739,759,754,757,759,602,601,755,754,706,705,759,758,602,597,599,750,743,751,750,662,760,761,762,763,764,765,739,757,766,737,752,741,740,767,766,757,756,598,597,717,658,657,663,696,586,678,704,587,586,696,629,587,704,727,734,733,697,611,694,633,707,768,625,698,618,627,652,759,706,754,653,673,710,654,673,672,729,716,657,700,663,701,700,657,686,701,657,621,620,617,616,614,664,646,664,603,646,670,708,631,768,707,697,626,625,768,626,641,685,610,609,610,685,684,600,711,668,730,728,734,728,730,599,589,662,750,599,662,666,710,673,666,661,654,
- 769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,776,786,787,788,789,790,791,792,793,794,795,796,797,787,798,796,795,799,800,801,802,803,804,805,806,781,807,808,809,810,811,812,813,814,794,815,816,795,805,817,818,819,820,821,808,792,822,823,824,810,809,825,826,827,828,819,829,830,770,769,831,811,810,832,802,801,833,793,806,833,834,835,825,827,836,837,838,805,839,806,833,806,802,771,791,790,772,771,840,841,842,843,844,845,846,847,848,775,849,776,850,790,851,782,781,852,822,848,847,850,801,845,846,853,854,855,846,848,853,848,771,841,856,815,794,852,781,808,818,817,857,858,770,830,858,859,860,840,861,862,843,821,829,819,785,863,864,865,866,777,867,840,770,858,771,770,840,812,814,805,868,799,869,808,822,852,822,782,852,805,818,812,828,829,870,871,872,847,782,822,794,789,856,787,789,794,862,873,844,843,795,816,868,869,869,798,795,803,806,793,781,809,807,874,875,876,877,791,771,848,804,807,811,817,807,809,811,792,848,822,791,848,792,837,878,838,878,879,880,799,881,869,882,883,865,837,879,878,790,850,772,772,850,769,884,819,798,812,818,885,838,886,836,831,769,887,888,801,850,851,780,779,889,866,867,890,850,887,769,867,878,880,867,880,890,800,883,842,833,790,793,802,806,839,839,881,799,802,800,891,883,816,815,775,774,856,849,775,815,892,893,871,870,788,787,871,893,798,828,796,894,820,819,818,895,885,882,865,864,882,864,861,861,843,882,866,896,777,778,777,896,819,828,798,884,894,819,814,813,884,881,839,853,841,897,891,868,816,800,868,891,800,799,868,785,865,773,776,842,845,801,800,832,857,817,811,792,808,803,793,847,846,855,898,879,890,880,899,900,901,824,823,847,898,902,782,783,823,809,781,853,860,903,854,785,904,863,804,817,805,881,798,869,882,843,842,883,902,905,783,782,906,907,899,905,908,909,910,911,912,907,876,913,906,914,877,898,915,914,903,916,909,908,907,900,899,917,854,918,902,898,914,906,919,902,914,783,905,899,823,877,876,907,906,889,779,911,910,837,836,913,876,875,866,890,920,921,890,879,874,877,920,779,778,922,911,778,896,923,922,923,921,917,917,918,922,874,879,837,875,905,919,906,901,900,907,
- 912,905,902,919,917,922,923,854,908,918,914,915,921,896,866,921,923,854,903,908,908,911,922,908,922,918,855,854,917,877,914,920,785,784,904,845,844,850,883,773,865,891,774,773,883,816,774,891,914,921,920,884,798,881,820,894,924,812,885,805,814,839,840,860,897,841,860,859,916,903,844,887,850,888,887,844,873,888,844,808,807,804,803,801,851,833,851,790,833,857,895,818,924,894,884,813,812,924,813,828,872,797,796,797,872,871,787,898,855,917,915,921,915,917,786,776,849,853,897,860,853,848,841,925,926,927,928,929,930,931,932,933,934,935,936,937,932,938,939,940,941,942,943,944,945,946,947,948,949,939,950,948,947,951,952,953,954,955,956,957,958,933,959,960,961,962,963,964,965,966,946,967,968,947,957,969,970,971,972,973,960,944,974,975,976,962,961,977,971,978,979,926,925,980,963,962,981,954,953,982,945,958,982,957,983,958,982,958,954,927,943,942,928,927,984,985,986,987,988,989,990,991,992,931,993,932,994,942,995,934,933,996,974,992,991,994,953,989,990,997,998,999,990,992,997,992,927,985,1000,967,946,996,933,960,970,969,1001,1002,926,979,1002,1003,1004,984,1005,1006,987,973,978,971,937,1007,1008,1009,984,926,1002,927,926,984,964,966,957,1010,951,1011,960,974,996,974,934,996,957,970,964,977,978,1012,1013,1014,991,934,974,946,941,1000,939,941,946,1006,1015,988,987,947,968,1010,1011,1011,950,947,955,958,945,933,961,959,943,927,992,956,959,963,969,959,961,963,944,992,974,943,992,944,951,1016,1011,1017,1018,1009,942,994,928,928,994,925,1019,971,950,964,970,1020,980,925,1021,1022,953,994,995,994,1021,925,952,1018,986,982,942,945,954,958,983,983,1016,951,954,952,1023,1018,968,967,931,930,1000,993,931,967,1024,1025,1013,1012,940,939,1013,1025,950,977,948,1026,972,971,970,1027,1020,1017,1009,1008,1017,1008,1005,1005,987,1017,971,977,950,1019,1026,971,966,965,1019,1016,983,997,985,1028,1023,1010,968,952,1010,1023,952,951,1010,937,1009,929,932,986,989,953,952,981,1001,969,963,944,960,955,945,991,990,999,1029,1030,1031,1032,976,975,991,1029,1033,934,935,975,961,933,997,1004,1034,998,937,1035,1007,956,969,957,1016,950,1011,1017,987,986,1018,
- 1033,1036,935,934,1037,1038,1030,1036,1029,1039,1040,1034,1041,1042,1043,1038,1031,1030,1044,998,1045,1033,1029,1040,1037,1046,1033,1040,935,1036,1030,975,1036,1046,1037,1032,1031,1038,1047,1036,1033,1046,998,1043,1045,998,1034,1043,999,998,1044,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1049,1048,1058,1059,1057,1056,1055,1060,1061,1062,1055,1057,1060,1059,1049,1058,1056,1049,1059,1057,1063,1060,1051,1054,1061,1060,1056,1055,1062,1064,1065,1066,1067,1068,1056,1064,1069,1049,1060,1063,1051,1069,1070,1050,1049,940,1025,1070,1064,1062,993,1000,1054,1053,1035,936,1069,1064,1000,941,1069,1000,1050,1070,1065,1068,1070,941,940,1066,1065,1025,1024,1070,1069,941,936,938,1061,1054,1062,1061,993,1071,1072,1073,1074,1075,1076,1050,1068,1077,1048,1063,1052,1051,1078,1077,1068,1067,937,936,1035,989,988,994,1018,929,1009,1023,930,929,1018,968,930,1023,1019,950,1016,972,1026,1079,964,1020,957,966,983,1070,1025,1065,984,1004,1028,985,1004,1003,1041,1034,988,1021,994,1022,1021,988,1015,1022,988,960,959,956,955,953,995,982,995,942,982,1001,1027,970,1079,1026,1019,965,964,1079,965,977,1014,949,948,949,1014,1013,939,1029,999,1044,1039,938,932,993,1061,938,993,997,1028,1004,997,992,985,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1087,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1098,1109,1107,1106,1110,1111,1112,1113,1114,1115,1116,1117,1092,1118,1119,1120,1121,1122,1123,1124,1125,1105,1126,1127,1106,1116,1128,1129,1130,1131,1132,1119,1103,1133,1134,1135,1121,1120,1136,1137,1138,1139,1130,1140,1141,1081,1080,1142,1122,1121,1143,1113,1112,1144,1104,1117,1144,1145,1146,1136,1138,1147,1148,1149,1116,1150,1117,1144,1117,1113,1082,1102,1101,1083,1082,1151,1152,1153,1154,1155,1156,1157,1158,1159,1086,1160,1087,1161,1101,1162,1093,1092,1163,1133,1159,1158,1161,1112,1156,1157,1164,1165,1166,1157,1159,1164,1159,1082,1152,1167,1126,1105,1163,1092,1119,1129,1128,1168,1169,1081,1141,1169,1170,1171,1151,1172,1173,1154,1132,1140,1130,1096,1174,1175,1176,1177,1088,1178,1151,1081,1169,1082,
- 1081,1151,1123,1125,1116,1179,1110,1180,1119,1133,1163,1133,1093,1163,1116,1129,1123,1139,1140,1181,1182,1183,1158,1093,1133,1105,1100,1167,1098,1100,1105,1173,1184,1155,1154,1106,1127,1179,1180,1180,1109,1106,1114,1117,1104,1092,1120,1118,1185,1186,1187,1188,1102,1082,1159,1115,1118,1122,1128,1118,1120,1122,1103,1159,1133,1102,1159,1103,1148,1189,1149,1189,1190,1191,1110,1192,1180,1193,1194,1176,1148,1190,1189,1101,1161,1083,1083,1161,1080,1195,1130,1109,1123,1129,1196,1149,1197,1147,1142,1080,1198,1199,1112,1161,1162,1091,1090,1200,1177,1178,1201,1161,1198,1080,1178,1189,1191,1178,1191,1201,1111,1194,1153,1144,1101,1104,1113,1117,1150,1150,1192,1110,1113,1111,1202,1194,1127,1126,1086,1085,1167,1160,1086,1126,1203,1204,1182,1181,1099,1098,1182,1204,1109,1139,1107,1205,1131,1130,1129,1206,1196,1193,1176,1175,1193,1175,1172,1172,1154,1193,1177,1207,1088,1089,1088,1207,1130,1139,1109,1195,1205,1130,1125,1124,1195,1192,1150,1164,1152,1208,1202,1179,1127,1111,1179,1202,1111,1110,1179,1096,1176,1084,1087,1153,1156,1112,1111,1143,1168,1128,1122,1103,1119,1114,1104,1158,1157,1166,1209,1190,1201,1191,1210,1211,1212,1135,1134,1158,1209,1213,1093,1094,1134,1120,1092,1164,1171,1214,1165,1096,1215,1174,1115,1128,1116,1192,1109,1180,1193,1154,1153,1194,1213,1216,1094,1093,1217,1218,1210,1216,1219,1220,1221,1222,1223,1218,1187,1224,1217,1225,1188,1209,1226,1225,1214,1227,1220,1219,1218,1211,1210,1228,1165,1229,1213,1209,1225,1217,1230,1213,1225,1094,1216,1210,1134,1188,1187,1218,1217,1200,1090,1222,1221,1148,1147,1224,1187,1186,1177,1201,1231,1232,1201,1190,1185,1188,1231,1090,1089,1233,1222,1089,1207,1234,1233,1234,1232,1228,1228,1229,1233,1185,1190,1148,1186,1216,1230,1217,1212,1211,1218,1223,1216,1213,1230,1228,1233,1234,1165,1219,1229,1225,1226,1232,1207,1177,1232,1234,1165,1214,1219,1219,1222,1233,1219,1233,1229,1166,1165,1228,1188,1225,1231,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1236,1235,1245,1246,1244,1243,1242,1247,1248,1249,1242,1244,1247,1246,1236,1245,1243,1236,1246,1244,1250,1247,1238,1241,1248,1247,1243,
- 1242,1249,1251,1252,1253,1254,1255,1243,1251,1256,1236,1247,1250,1238,1256,1257,1237,1236,1099,1204,1257,1251,1249,1160,1167,1241,1240,1215,1095,1256,1251,1167,1100,1256,1167,1237,1257,1252,1255,1257,1100,1099,1253,1252,1204,1203,1257,1256,1100,1095,1097,1248,1241,1249,1248,1160,1258,1259,1260,1261,1262,1263,1237,1255,1264,1235,1250,1239,1238,1265,1264,1255,1254,1096,1095,1215,1156,1155,1161,1194,1084,1176,1202,1085,1084,1194,1127,1085,1202,1225,1232,1231,1195,1109,1192,1131,1205,1266,1123,1196,1116,1125,1150,1257,1204,1252,1151,1171,1208,1152,1171,1170,1227,1214,1155,1198,1161,1199,1198,1155,1184,1199,1155,1119,1118,1115,1114,1112,1162,1144,1162,1101,1144,1168,1206,1129,1266,1205,1195,1124,1123,1266,1124,1139,1183,1108,1107,1108,1183,1182,1098,1209,1166,1228,1226,1232,1226,1228,1097,1087,1160,1248,1097,1160,1164,1208,1171,1164,1159,1152,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1274,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1285,1296,1294,1293,1297,1298,1299,1300,1301,1302,1303,1304,1279,1305,1306,1307,1308,1309,1310,1311,1312,1292,1313,1314,1293,1303,1315,1316,1317,1318,1319,1306,1290,1320,1321,1322,1308,1307,1323,1324,1325,1326,1317,1327,1328,1268,1267,1329,1309,1308,1330,1300,1299,1331,1291,1304,1331,1332,1333,1323,1325,1334,1335,1336,1303,1337,1304,1331,1304,1300,1269,1289,1288,1270,1269,1338,1339,1340,1341,1342,1343,1344,1345,1346,1273,1347,1274,1348,1288,1349,1280,1279,1350,1320,1346,1345,1348,1299,1343,1344,1351,1352,1353,1344,1346,1351,1346,1269,1339,1354,1313,1292,1350,1279,1306,1316,1315,1355,1356,1268,1328,1356,1357,1358,1338,1359,1360,1341,1319,1327,1317,1283,1361,1362,1363,1364,1275,1365,1338,1268,1356,1269,1268,1338,1310,1312,1303,1366,1297,1367,1306,1320,1350,1320,1280,1350,1303,1316,1310,1326,1327,1368,1369,1370,1345,1280,1320,1292,1287,1354,1285,1287,1292,1360,1371,1342,1341,1293,1314,1366,1367,1367,1296,1293,1301,1304,1291,1279,1307,1305,1372,1373,1374,1375,1289,1269,1346,1302,1305,1309,1315,1305,1307,1309,1290,1346,1320,1289,1346,1290,
- 1335,1376,1336,1376,1377,1378,1297,1379,1367,1380,1381,1363,1335,1377,1376,1288,1348,1270,1270,1348,1267,1382,1317,1296,1310,1316,1383,1336,1384,1334,1329,1267,1385,1386,1299,1348,1349,1278,1277,1387,1364,1365,1388,1348,1385,1267,1365,1376,1378,1365,1378,1388,1298,1381,1340,1331,1288,1291,1300,1304,1337,1337,1379,1297,1300,1298,1389,1381,1314,1313,1273,1272,1354,1347,1273,1313,1390,1391,1369,1368,1286,1285,1369,1391,1296,1326,1294,1392,1318,1317,1316,1393,1383,1380,1363,1362,1380,1362,1359,1359,1341,1380,1364,1394,1275,1276,1275,1394,1317,1326,1296,1382,1392,1317,1312,1311,1382,1379,1337,1351,1339,1395,1389,1366,1314,1298,1366,1389,1298,1297,1366,1283,1363,1271,1274,1340,1343,1299,1298,1330,1355,1315,1309,1290,1306,1301,1291,1345,1344,1353,1396,1377,1388,1378,1397,1398,1399,1322,1321,1345,1396,1400,1280,1281,1321,1307,1279,1351,1358,1401,1352,1283,1402,1361,1302,1315,1303,1379,1296,1367,1380,1341,1340,1381,1400,1403,1281,1280,1404,1405,1397,1403,1406,1407,1408,1409,1410,1405,1374,1411,1404,1412,1375,1396,1413,1412,1401,1414,1407,1406,1405,1398,1397,1415,1352,1416,1400,1396,1412,1404,1417,1400,1412,1281,1403,1397,1321,1375,1374,1405,1404,1387,1277,1409,1408,1335,1334,1411,1374,1373,1364,1388,1418,1419,1388,1377,1372,1375,1418,1277,1276,1420,1409,1276,1394,1421,1420,1421,1419,1415,1415,1416,1420,1372,1377,1335,1373,1403,1417,1404,1399,1398,1405,1410,1403,1400,1417,1415,1420,1421,1352,1406,1416,1412,1413,1419,1394,1364,1419,1421,1352,1401,1406,1406,1409,1420,1406,1420,1416,1353,1352,1415,1375,1412,1418,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1423,1422,1432,1433,1431,1430,1429,1434,1435,1436,1429,1431,1434,1433,1423,1432,1430,1423,1433,1431,1437,1434,1425,1428,1435,1434,1430,1429,1436,1438,1439,1440,1441,1442,1430,1438,1443,1423,1434,1437,1425,1443,1444,1424,1423,1286,1391,1444,1438,1436,1347,1354,1428,1427,1402,1282,1443,1438,1354,1287,1443,1354,1424,1444,1439,1442,1444,1287,1286,1440,1439,1391,1390,1444,1443,1287,1282,1284,1435,1428,1436,1435,1347,1445,1446,1447,1448,1449,1450,1424,1442,1451,1422,1437,1426,
- 1425,1452,1451,1442,1441,1283,1282,1402,1343,1342,1348,1381,1271,1363,1389,1272,1271,1381,1314,1272,1389,1412,1419,1418,1382,1296,1379,1318,1392,1453,1310,1383,1303,1312,1337,1444,1391,1439,1338,1358,1395,1339,1358,1357,1414,1401,1342,1385,1348,1386,1385,1342,1371,1386,1342,1306,1305,1302,1301,1299,1349,1331,1349,1288,1331,1355,1393,1316,1453,1392,1382,1311,1310,1453,1311,1326,1370,1295,1294,1295,1370,1369,1285,1396,1353,1415,1413,1419,1413,1415,1284,1274,1347,1435,1284,1347,1351,1395,1358,1351,1346,1339,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1461,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1472,1483,1481,1480,1484,1485,1486,1487,1488,1489,1490,1491,1466,1492,1493,1494,1495,1496,1497,1498,1499,1479,1500,1501,1480,1490,1502,1503,1504,1505,1506,1493,1477,1507,1508,1509,1495,1494,1510,1511,1512,1513,1504,1514,1515,1455,1454,1516,1496,1495,1517,1487,1486,1518,1478,1491,1518,1519,1520,1510,1512,1521,1522,1523,1490,1524,1491,1518,1491,1487,1456,1476,1475,1457,1456,1525,1526,1527,1528,1529,1530,1531,1532,1533,1460,1534,1461,1535,1475,1536,1467,1466,1537,1507,1533,1532,1535,1486,1530,1531,1538,1539,1540,1531,1533,1538,1533,1456,1526,1541,1500,1479,1537,1466,1493,1503,1502,1542,1543,1455,1515,1543,1544,1545,1525,1546,1547,1528,1506,1514,1504,1470,1548,1549,1550,1551,1462,1552,1525,1455,1543,1456,1455,1525,1497,1499,1490,1553,1484,1554,1493,1507,1537,1507,1467,1537,1490,1503,1497,1513,1514,1555,1556,1557,1532,1467,1507,1479,1474,1541,1472,1474,1479,1547,1558,1529,1528,1480,1501,1553,1554,1554,1483,1480,1488,1491,1478,1466,1494,1492,1559,1560,1561,1562,1476,1456,1533,1489,1492,1496,1502,1492,1494,1496,1477,1533,1507,1476,1533,1477,1522,1563,1523,1563,1564,1565,1484,1566,1554,1567,1568,1550,1522,1564,1563,1475,1535,1457,1457,1535,1454,1569,1504,1483,1497,1503,1570,1523,1571,1521,1516,1454,1572,1573,1486,1535,1536,1465,1464,1574,1551,1552,1575,1535,1572,1454,1552,1563,1565,1552,1565,1575,1485,1568,1527,1518,1475,1478,1487,1491,1524,1524,1566,1484,1487,1485,1576,1568,
- 1501,1500,1460,1459,1541,1534,1460,1500,1577,1578,1556,1555,1473,1472,1556,1578,1483,1513,1481,1579,1505,1504,1503,1580,1570,1567,1550,1549,1567,1549,1546,1546,1528,1567,1551,1581,1462,1463,1462,1581,1504,1513,1483,1569,1579,1504,1499,1498,1569,1566,1524,1538,1526,1582,1576,1553,1501,1485,1553,1576,1485,1484,1553,1470,1550,1458,1461,1527,1530,1486,1485,1517,1542,1502,1496,1477,1493,1488,1478,1532,1531,1540,1583,1564,1575,1565,1584,1585,1586,1509,1508,1532,1583,1587,1467,1468,1508,1494,1466,1538,1545,1588,1539,1470,1589,1548,1489,1502,1490,1566,1483,1554,1567,1528,1527,1568,1587,1590,1468,1467,1591,1592,1584,1590,1593,1594,1595,1596,1597,1592,1561,1598,1591,1599,1562,1583,1600,1599,1588,1601,1594,1593,1592,1585,1584,1602,1539,1603,1587,1583,1599,1591,1604,1587,1599,1468,1590,1584,1508,1562,1561,1592,1591,1574,1464,1596,1595,1522,1521,1598,1561,1560,1551,1575,1605,1606,1575,1564,1559,1562,1605,1464,1463,1607,1596,1463,1581,1608,1607,1608,1606,1602,1602,1603,1607,1559,1564,1522,1560,1590,1604,1591,1586,1585,1592,1597,1590,1587,1604,1602,1607,1608,1539,1593,1603,1599,1600,1606,1581,1551,1606,1608,1539,1588,1593,1593,1596,1607,1593,1607,1603,1540,1539,1602,1562,1599,1605,1470,1469,1589,1530,1529,1535,1568,1458,1550,1576,1459,1458,1568,1501,1459,1576,1599,1606,1605,1569,1483,1566,1505,1579,1609,1497,1570,1490,1499,1524,1525,1545,1582,1526,1545,1544,1601,1588,1529,1572,1535,1573,1572,1529,1558,1573,1529,1493,1492,1489,1488,1486,1536,1518,1536,1475,1518,1542,1580,1503,1609,1579,1569,1498,1497,1609,1498,1513,1557,1482,1481,1482,1557,1556,1472,1583,1540,1602,1600,1606,1600,1602,1471,1461,1534,1538,1582,1545,1538,1533,1526,130,16,122,117,128,18,22,129,102,119,126,131,105,109,1611,1610,21,123,1613,1612,222,225,1615,1614,126,109,118,1618,1616,27,220,221,1620,1617,111,1621,1619,121,115,114,1615,20,21,1610,24,28,27,1616,108,107,1621,112
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *3046 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,1,1,1,0,1,1,0,0,1,1,0,1,0,0,0,0,1,1,0,1,1,1,0,1,1,1,0,0,1,1,0,1,0,0,0,0,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,0,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,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,1,1,0,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,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,0,0,0,0,0,0,0,0,1,1,1,1,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,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,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,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,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,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,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,1,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,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "ByPolygon"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1758 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
- 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,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: 2267733773984, "Geometry::", "Mesh" {
- Vertices: *2184 {
- a: -200,0,62.5,200,0,62.5,-200,600,62.5,200,600,62.5,-200,600,-62.5,200,600,-62.5,-200,0,-62.5,200,0,-62.5,-100,0,62.5,-100,0,-62.5,-100,600,-62.5,-100,600,62.5,0,0,62.5,0,0,-62.5,0,600,-62.5,0,600,62.5,100,0,62.5,100,0,-62.5,100,600,-62.5,100,600,62.5,200,500,-62.5,200,500,62.5,100,500,62.5,0,500,62.5,-100,500,62.5,-200,500,62.5,-200,500,-62.5,200,400,-62.5,200,400,62.5,100,399.999938964844,62.5,0,458.178955078125,62.5,-100,399.999938964844,62.5,-200,400,62.5,-200,400,-62.5,200,300,-62.5,200,300,62.5,100,300,62.5,-100,300,62.5,-200,300,62.5,-200,300,-62.5,200,200,-62.5,200,200,62.5,100,143.139282226563,62.5,0,143.139282226563,62.5,-100,143.139282226563,62.5,-200,200,62.5,-200,200,-62.5,200,100,-62.5,200,100,62.5,100,100,62.5,0,100,62.5,-100,100,62.5,-200,100,62.5,-200,100,-62.5,-100,500,-62.5,0,500,-62.5,100,500,-62.5,-100,399.999938964844,-62.5,0,458.178955078125,-62.5,100,399.999938964844,-62.5,-100,300,-62.5,100,300,-62.5,-100,143.139282226563,-62.5,0,143.139282226563,-62.5,100,143.139282226563,-62.5,-100,100,-62.5,0,100,-62.5,100,100,-62.5,-53.4765625,439.876708984375,62.5,-79.140625,300,62.5,-79.140625,143.139282226563,62.5,-53.4765625,439.876708984375,-62.5,-79.140625,300,-62.5,-79.140625,143.139282226563,-62.5,53.4765625,439.876708984375,62.5,79.140625,300,62.5,79.140625,143.139282226563,62.5,53.4765625,439.876708984375,-62.5,79.140625,300,-62.5,79.140625,143.139282226563,-62.5,-77.875,387.156372070313,62.5,-77.875,387.156372070313,-62.5,77.875,387.156372070313,62.5,77.875,387.156372070313,-62.5,100,200,62.5,79.140625,200,62.5,79.140625,200,-62.5,100,200,-62.5,-100,200,62.5,-79.140625,200,62.5,-79.140625,200,-62.5,-100,200,-62.5,110.845703125,128.276184082031,72.07763671875,-116.69921875,120.603866577148,65.361328125,110.845703125,120.580749511719,65.24169921875,-116.685546875,127.88843536377,72.00244140625,110.845703125,150.432189941406,72.07763671875,-116.681640625,150.434524536133,72.07763671875,-116.681640625,151.841903686523,71.14599609375,110.845703125,151.84619140625,71.037109375,110.845703125,151.844024658203,35.93310546875,
- -116.681640625,151.84619140625,35.98876953125,-116.681640625,150.432189941406,34.94873046875,110.845703125,150.434509277344,34.94873046875,110.8515625,127.709495544434,35.08203125,-116.681640625,128.276184082031,34.94873046875,-116.68359375,120.600563049316,41.69140625,110.845703125,120.580749511719,41.78466796875,-117.765625,128.276184082031,-72.078125,109.77734375,120.598411560059,-65.3779296875,-117.765625,120.580749511719,-65.2421875,109.765625,127.888496398926,-72.0029296875,-117.765625,150.434051513672,-72.078125,109.76171875,150.432189941406,-72.078125,109.765625,151.841842651367,-71.14697265625,-117.76171875,151.84619140625,-71.037109375,-117.76171875,151.844024658203,-35.93310546875,109.765625,151.84619140625,-35.98828125,109.76171875,150.432189941406,-34.94921875,-117.765625,150.434204101563,-34.94873046875,-117.77734375,127.734794616699,-35.03271484375,109.76171875,128.276184082031,-34.94921875,-117.765625,120.596977233887,-41.73046875,109.76171875,120.580749511719,-41.78515625,-110.76953125,314.153259277344,67.10693359375,-111.369140625,314.212829589844,18.52490234375,-87.31640625,314.948181152344,17.85400390625,-78.375,314.578063964844,65.99951171875,-78.609375,314.536071777344,23.40673828125,-3.54296875,484.994750976563,67.10693359375,-3.46875,485.59375,18.52490234375,-2.818359375,459.92236328125,17.85400390625,-3.205078125,450.983642578125,65.99951171875,-3.23828125,451.216552734375,23.40673828125,103.607421875,323.228332519531,67.10693359375,104.20703125,323.168762207031,18.52490234375,80.154296875,322.433410644531,17.85400390625,71.212890625,322.803527832031,65.99951171875,71.447265625,322.845520019531,23.40673828125,69.3359375,315.866088867188,-17.07470703125,105.77734375,315.152282714844,-19.1474609375,69.54296875,315.293884277344,-58.724609375,104.48046875,316.308532714844,-66.8818359375,74.5546875,315.549743652344,-67.0791015625,-4.04296875,448.305877685547,-17.087890625,-3.529296875,483.35888671875,-19.1474609375,-3.578125,447.732177734375,-58.724609375,-4.87890625,482.103149414063,-66.8818359375,
- -3.814453125,453.263793945313,-67.0791015625,-75.990234375,321.518371582031,-17.0751953125,-112.455078125,322.229309082031,-19.1474609375,-76.220703125,322.087707519531,-58.724609375,-111.158203125,321.073059082031,-66.8818359375,-81.232421875,321.831848144531,-67.0791015625,-76.462890625,315.293884277344,58.724609375,-111.400390625,316.308532714844,66.8818359375,-81.474609375,315.549743652344,67.07958984375,-112.697265625,315.152282714844,19.14697265625,-76.255859375,315.866088867188,17.07470703125,-3.341796875,447.732177734375,58.724609375,-2.041015625,482.103149414063,66.8818359375,-3.10546875,453.263793945313,67.07958984375,-3.390625,483.35888671875,19.14697265625,-2.876953125,448.305938720703,17.087890625,69.30078125,322.087707519531,58.724609375,104.23828125,321.073059082031,66.8818359375,74.3125,321.831848144531,67.07958984375,105.53515625,322.229309082031,19.14697265625,69.0703125,321.518341064453,17.0751953125,80.396484375,314.948181152344,-17.853515625,71.689453125,314.536071777344,-23.40625,71.455078125,314.578063964844,-65.9990234375,103.849609375,314.153259277344,-67.107421875,104.44921875,314.212829589844,-18.525390625,-4.1015625,459.92236328125,-17.853515625,-3.681640625,451.216552734375,-23.40625,-3.71484375,450.983642578125,-65.9990234375,-3.376953125,484.994750976563,-67.107421875,-3.451171875,485.59375,-18.525390625,-87.07421875,322.433410644531,-17.853515625,-78.3671875,322.845520019531,-23.40625,-78.1328125,322.803527832031,-65.9990234375,-110.52734375,323.228332519531,-67.107421875,-111.126953125,323.168762207031,-18.525390625,-97.06640625,428.176513671875,17.3203125,-75.822265625,457.036346435547,17.34521484375,-75.87890625,454.427490234375,16.69140625,-98.546875,428.83935546875,19.3173828125,-96.86328125,425.250518798828,16.84130859375,-97.95703125,426.289672851563,17.9208984375,-108.5,390.964019775391,15.75927734375,-76.3046875,457.272399902344,66.85107421875,-109.017578125,391.703674316406,17.07275390625,-109.755859375,389.600341796875,16.54443359375,-97.0625,426.145568847656,67.14501953125,
- -110.796875,389.731750488281,18.23583984375,-98.453125,429.500854492188,68.07666015625,-109.1953125,390.046905517578,66.38232421875,-94.958984375,431.512969970703,68.62939453125,-113.119140625,315.078826904297,18.19873046875,-111.05078125,349.678253173828,17.14501953125,-111.66796875,315.879821777344,15.9423828125,-110.830078125,385.519104003906,67.5791015625,-111.78515625,315.874938964844,67.06005859375,-112.212890625,352.503387451172,66.83154296875,-110.55859375,316.911071777344,68.79541015625,-77.974609375,316.703308105469,68.09814453125,-109.96484375,383.658660888672,68.28662109375,-101.53125,389.784729003906,66.8818359375,-77.49609375,384.019104003906,68.71337890625,-107.275390625,393.053588867188,67.615234375,-69.251953125,412.438781738281,67.482421875,-76.822265625,384.889251708984,67.42138671875,-76.755859375,316.452087402344,66.18994140625,-77.00390625,316.830963134766,18.03466796875,-77.044921875,339.924743652344,19.12744140625,-78.37109375,317.140563964844,16.29052734375,-78.59765625,339.434509277344,17.4033203125,-77.09765625,350.541076660156,25.67041015625,-87.388671875,349.559509277344,17.80810546875,-79.00390625,355.03857421875,17.25048828125,-77.39453125,355.377532958984,18.30517578125,-77.44921875,385.789764404297,16.84814453125,-76.8046875,384.251586914063,19.35205078125,-75.453125,385.671905517578,18.93505859375,-73.83984375,387.262390136719,66.95703125,-66.6015625,409.056945800781,18.85205078125,-67.380859375,408.334716796875,66.31591796875,-67.486328125,409.47802734375,17.07080078125,-68.6015625,411.774353027344,25.36376953125,-68.21875,412.113098144531,67.05908203125,-74.98828125,416.406829833984,16.7060546875,-67.919921875,412.408325195313,19.7802734375,-63.97265625,419.166748046875,16.2685546875,-54.451171875,432.306549072266,16.66357421875,-74.982421875,458.2587890625,15.68896484375,-53.908203125,430.666534423828,18.15234375,-53.34765625,430.721984863281,66.5322265625,-54.4765625,431.78662109375,67.7294921875,-52.689453125,432.616943359375,65.5166015625,-53.00390625,432.274291992188,17.806640625,
- -32.017578125,449.228302001953,16.3974609375,-44.021484375,476.4873046875,16.22998046875,-40.6171875,475.474792480469,16.50390625,-39.435546875,441.703491210938,17.64697265625,-31.15625,445.520629882813,23.38037109375,-28.03515625,445.43115234375,16.39306640625,-3.9375,482.298828125,16.3359375,-30.60546875,446.895263671875,23.07958984375,-3.658203125,449.11474609375,16.56005859375,-28.263671875,443.556518554688,18.10302734375,-4.462890625,447.6689453125,18.74755859375,-4.896484375,447.241455078125,65.396484375,-28.380859375,444.2119140625,64.13818359375,-6.220703125,448.9306640625,67.28564453125,-30.841796875,447.869384765625,63.7783203125,-31.33984375,445.658569335938,65.50634765625,-32.05078125,446.668914794922,67.6376953125,-44.716796875,475.574768066406,67.8759765625,-5.11328125,481.452880859375,67.833984375,-3.037109375,483.103271484375,66.47802734375,-40.67578125,477.033935546875,66.36376953125,-4.931640625,484.06396484375,17.49755859375,-41.181640625,476.267364501953,17.67626953125,-44.650390625,478.198181152344,66.408203125,-44.673828125,477.821533203125,17.76513671875,-76.09765625,456.6162109375,68.341796875,-75.572265625,458.856079101563,65.9619140625,-75.62890625,459.40673828125,17.3583984375,-1.45703125,485.873046875,15.9423828125,-1.091796875,450.937744140625,16.29052734375,16.984375,447.838623046875,17.4033203125,-1.34375,449.645874023438,18.02490234375,28.369140625,453.66845703125,17.80810546875,37.349609375,475.620971679688,17.37939453125,38.392578125,472.400939941406,16.9833984375,16.935546875,446.236083984375,19.12744140625,24.517578125,443.872802734375,25.51904296875,-1.701171875,449.339721679688,66.18994140625,-1.4765625,450.40283203125,68.10986328125,24.509765625,444.32861328125,66.83251953125,26.12890625,444.066497802734,22.3349609375,25.7890625,444.487060546875,65.24853515625,28.521484375,441.727630615234,17.08837890625,69.947265625,454.68896484375,16.1220703125,28.640625,439.546173095703,17.7626953125,22.779296875,444.788696289063,68.1396484375,25.4765625,441.506591796875,67.48974609375,42.755859375,431.74560546875,19.35205078125,
- 47.21875,432.144348144531,16.68017578125,92.1875,425.0712890625,16.75537109375,43.552734375,430.872833251953,67.2919921875,63.875,407.312927246094,16.74462890625,90.978515625,421.900543212891,17.49462890625,45.416015625,432.966186523438,20.68896484375,101.62890625,384.409606933594,16.33349609375,46.177734375,432.135009765625,17.98095703125,46.0546875,431.2275390625,66.95703125,47.16796875,431.183746337891,68.6083984375,62.546875,408.439178466797,19.2646484375,62.099609375,409.457702636719,66.3515625,62.630859375,411.110931396484,67.4609375,61.119140625,406.992553710938,67.05908203125,61.404296875,404.899505615234,19.71240234375,68.455078125,382.476165771484,18.19970703125,67.5625,384.033050537109,66.5166015625,68.765625,385.253814697266,67.75390625,68.375,382.644958496094,65.5166015625,71.58203125,366.271148681641,16.3212890625,102.33984375,351.722351074219,16.30712890625,103.888671875,350.189270019531,16.33349609375,104.431640625,322.694152832031,16.3359375,68.78125,324.426727294922,64.67333984375,68.48828125,323.511535644531,18.74755859375,69.98828125,322.489074707031,16.56005859375,70.365234375,325.693237304688,67.24951171875,103.697265625,323.745239257813,67.73681640625,101.59375,385.559112548828,68.34619140625,105.26953125,321.930480957031,66.47802734375,103.2421875,384.187469482422,66.30908203125,89.8203125,427.238006591797,68.48779296875,106.279296875,323.526184082031,17.49755859375,104.015625,350.573425292969,18.08154296875,102.96875,384.844360351563,17.49169921875,92.064453125,422.734466552734,19.52001953125,92.01171875,423.128082275391,66.22021484375,93.771484375,425.6513671875,17.73876953125,92.58203125,426.025268554688,67.21240234375,69.244140625,454.871826171875,67.615234375,67.890625,457.561645507813,66.111328125,68.615234375,456.546997070313,17.95166015625,61.880859375,450.309448242188,66.8818359375,61.45703125,458.893798828125,68.47900390625,62.802734375,459.588012695313,67.5791015625,36.130859375,474.738616943359,68.14892578125,37.419921875,475.954864501953,66.90673828125,-0.2421875,484.7314453125,68.79541015625,
- -1.458984375,485.990356445313,67.06005859375,38.486328125,473.908905029297,18.06298828125,38.0859375,477.272338867188,18.73193359375,-1.98828125,486.945678710938,17.9873046875,103.38671875,215.151184082031,17.3203125,104.513671875,185.311401367188,17.1923828125,102.947265625,186.364074707031,16.69140625,104.9296875,215.32243347168,19.26025390625,101.7421875,217.469589233398,16.81201171875,103.22265625,217.510559082031,17.73876953125,102.201171875,248.267105102539,15.7587890625,105.546875,185.654312133789,66.56640625,102.986328125,247.346496582031,16.9423828125,103.31640625,218.365493774414,66.3720703125,104.212890625,248.992141723633,18.3046875,103.4375,249.793762207031,16.54443359375,103.73828125,249.680923461914,66.68359375,105.76171875,322.14111328125,18.09423828125,103.865234375,287.388397216797,17.1552734375,104.505859375,321.501770019531,15.9423828125,104.623046875,321.506652832031,67.06005859375,103.396484375,320.470520019531,68.79541015625,101.5859375,248.841110229492,68.19091796875,70.646484375,320.704071044922,68.1142578125,104.7421875,151.366271972656,68.03076171875,71.05078125,218.240478515625,67.916015625,69.59375,320.929504394531,66.18994140625,70.212890625,286.056610107422,67.01953125,69.841796875,320.550628662109,18.03466796875,69.8828125,297.456848144531,19.12744140625,71.208984375,320.241027832031,16.29052734375,71.435546875,297.947082519531,17.4033203125,69.9375,286.820587158203,25.66943359375,80.2265625,287.822082519531,17.80810546875,71.8203125,282.304321289063,17.26025390625,70.216796875,281.980682373047,18.30517578125,69.404296875,219.555328369141,16.86279296875,67.896484375,218.49934387207,66.857421875,67.6640625,218.153686523438,19.1591796875,78.525390625,214.705673217773,16.72705078125,70.5390625,215.763488769531,25.36376953125,70.279296875,215.209579467773,66.8173828125,70.142578125,214.46321105957,19.5185546875,70.541015625,205.082824707031,16.2685546875,72.068359375,185.618469238281,16.64794921875,105.201171875,183.645324707031,15.68896484375,71.232421875,163.098770141602,17.42724609375,
- 73.560546875,150.570877075195,16.30859375,104.5625,150.959045410156,16.22998046875,102.712890625,148.700302124023,17.77783203125,75.44921875,148.694396972656,17.89697265625,71.125,149.104690551758,23.39453125,71.228515625,150.676818847656,65.50634765625,73.265625,149.152862548828,65.4111328125,72.658203125,150.516662597656,68.19970703125,102.7890625,148.816467285156,66.81396484375,106.521484375,151.301818847656,66.5458984375,106.04296875,151.045959472656,17.76513671875,106.4921875,183.426574707031,17.3583984375,90.146484375,428.176513671875,-17.3203125,68.90234375,457.036499023438,-17.345703125,68.958984375,454.427490234375,-16.69140625,91.626953125,428.83935546875,-19.3173828125,89.943359375,425.250946044922,-16.841796875,91.037109375,426.289703369141,-17.92138671875,101.580078125,390.963958740234,-15.7587890625,69.384765625,457.272369384766,-66.85107421875,102.09765625,391.703674316406,-17.07275390625,102.8359375,389.600341796875,-16.5439453125,90.142578125,426.145538330078,-67.14501953125,103.876953125,389.731750488281,-18.236328125,91.533203125,429.500854492188,-68.076171875,102.275390625,390.046752929688,-66.38232421875,88.0390625,431.513702392578,-68.6298828125,106.19921875,315.078796386719,-18.1982421875,104.1328125,349.678131103516,-17.14501953125,104.748046875,315.879821777344,-15.9423828125,103.91015625,385.519104003906,-67.5791015625,104.865234375,315.874938964844,-67.060546875,105.29296875,352.503387451172,-66.83154296875,103.638671875,316.911071777344,-68.794921875,71.0546875,316.702972412109,-68.09814453125,103.044921875,383.659729003906,-68.2861328125,94.611328125,389.784729003906,-66.8818359375,70.576171875,384.019439697266,-68.71337890625,100.35546875,393.053588867188,-67.615234375,62.33203125,412.438720703125,-67.482421875,69.90234375,384.889251708984,-67.42138671875,69.8359375,316.452087402344,-66.189453125,70.083984375,316.830932617188,-18.03466796875,70.125,339.924743652344,-19.126953125,71.451171875,317.140563964844,-16.291015625,71.677734375,339.434509277344,-17.4033203125,70.177734375,350.541107177734,-25.6708984375,
- 80.46875,349.559509277344,-17.80859375,72.083984375,355.038543701172,-17.2509765625,70.474609375,355.377380371094,-18.3046875,70.529296875,385.788665771484,-16.84765625,69.884765625,384.251586914063,-19.3515625,68.533203125,385.671936035156,-18.93505859375,66.919921875,387.262390136719,-66.95703125,59.681640625,409.056945800781,-18.8515625,60.4609375,408.334716796875,-66.3154296875,60.56640625,409.47802734375,-17.0703125,61.681640625,411.774353027344,-25.36328125,61.298828125,412.113098144531,-67.05859375,68.068359375,416.406982421875,-16.7060546875,61,412.408355712891,-19.779296875,57.052734375,419.166748046875,-16.2685546875,47.53125,432.306243896484,-16.6640625,68.0625,458.2587890625,-15.689453125,46.98828125,430.666564941406,-18.15234375,46.427734375,430.721984863281,-66.53173828125,47.556640625,431.786590576172,-67.72900390625,45.76953125,432.616943359375,-65.5166015625,46.083984375,432.274291992188,-17.806640625,25.09765625,449.228485107422,-16.39697265625,37.1015625,476.4873046875,-16.2294921875,33.6953125,475.474822998047,-16.50439453125,32.515625,441.703491210938,-17.646484375,24.236328125,445.520629882813,-23.380859375,21.115234375,445.43115234375,-16.392578125,-2.982421875,482.298828125,-16.3359375,23.685546875,446.895263671875,-23.080078125,-3.26171875,449.11474609375,-16.560546875,21.34375,443.556518554688,-18.1025390625,-2.45703125,447.6689453125,-18.748046875,-2.0234375,447.241455078125,-65.396484375,21.4609375,444.2119140625,-64.1376953125,-0.69921875,448.9306640625,-67.28515625,23.921875,447.869384765625,-63.7783203125,24.419921875,445.658569335938,-65.505859375,25.130859375,446.668823242188,-67.63720703125,37.796875,475.57470703125,-67.8759765625,-1.806640625,481.452880859375,-67.833984375,-3.8828125,483.103271484375,-66.4775390625,33.755859375,477.033935546875,-66.3642578125,-1.98828125,484.06396484375,-17.498046875,34.263671875,476.267425537109,-17.67724609375,37.73046875,478.198181152344,-66.408203125,37.75390625,477.821533203125,-17.765625,69.177734375,456.616363525391,-68.34228515625,68.65234375,458.856079101563,-65.9619140625,
- 68.708984375,459.40673828125,-17.3583984375,-5.462890625,485.873046875,-15.9423828125,-5.828125,450.937744140625,-16.291015625,-23.904296875,447.838623046875,-17.4033203125,-5.576171875,449.645874023438,-18.02490234375,-35.2890625,453.66845703125,-17.80859375,-44.26953125,475.620971679688,-17.3798828125,-45.3125,472.400970458984,-16.9833984375,-23.85546875,446.236083984375,-19.126953125,-31.4375,443.872802734375,-25.51953125,-5.21875,449.339721679688,-66.189453125,-33.048828125,444.066619873047,-22.3349609375,-5.443359375,450.40283203125,-68.109375,-31.4296875,444.32861328125,-66.83203125,-32.708984375,444.487060546875,-65.2490234375,-29.701171875,444.787536621094,-68.14013671875,-6.677734375,484.7314453125,-68.794921875,-35.560546875,439.546112060547,-17.76220703125,-43.05078125,474.73876953125,-68.14892578125,-5.4609375,485.990356445313,-67.060546875,-44.33984375,475.955017089844,-66.9072265625,-4.931640625,486.945678710938,-17.9873046875,-45.005859375,477.272338867188,-18.732421875,-45.40625,473.908905029297,-18.06298828125,-76.8671875,454.688873291016,-16.1220703125,-68.376953125,458.893798828125,-68.478515625,-69.72265625,459.588012695313,-67.5791015625,-75.53515625,456.546997070313,-17.95166015625,-100.69140625,425.6513671875,-17.7392578125,-99.107421875,425.0712890625,-16.755859375,-97.8984375,421.900787353516,-17.49462890625,-74.810546875,457.561614990234,-66.111328125,-68.80078125,450.309448242188,-66.8818359375,-54.087890625,431.183380126953,-68.6083984375,-76.1640625,454.871826171875,-67.615234375,-99.501953125,426.025268554688,-67.212890625,-98.931640625,423.127838134766,-66.22216796875,-96.740234375,427.240020751953,-68.48828125,-98.984375,422.734466552734,-19.52001953125,-110.162109375,384.187072753906,-66.30908203125,-109.888671875,384.844848632813,-17.49169921875,-108.548828125,384.409149169922,-16.33349609375,-109.259765625,351.722778320313,-16.306640625,-110.935546875,350.572692871094,-18.08203125,-110.80859375,350.189270019531,-16.333984375,-113.19921875,323.526184082031,-17.498046875,-111.3515625,322.694152832031,-16.3359375,
- -112.189453125,321.930480957031,-66.4775390625,-110.6171875,323.745330810547,-67.73681640625,-108.513671875,385.558959960938,-68.34619140625,-77.28515625,325.693237304688,-67.24951171875,-75.685546875,385.253784179688,-67.75390625,-75.701171875,324.4267578125,-64.6728515625,-69.55078125,411.11083984375,-67.46044921875,-76.908203125,322.489074707031,-16.560546875,-75.408203125,323.511535644531,-18.748046875,-78.501953125,366.267761230469,-16.32080078125,-75.375,382.475921630859,-18.19970703125,-70.794921875,407.313049316406,-16.74462890625,-75.294921875,382.644958496094,-65.5166015625,-74.482421875,384.033020019531,-66.5166015625,-68.32421875,404.899749755859,-19.71240234375,-68.0390625,406.992553710938,-67.05859375,-69.466796875,408.439147949219,-19.26416015625,-69.01953125,409.457794189453,-66.3515625,-52.974609375,431.2275390625,-66.95703125,-53.09765625,432.135009765625,-17.98046875,-54.138671875,432.144805908203,-16.68017578125,-52.3359375,432.966186523438,-20.689453125,-50.47265625,430.872833251953,-67.2919921875,-49.67578125,431.74560546875,-19.3515625,-35.439453125,441.727722167969,-17.0888671875,-32.396484375,441.506591796875,-67.490234375,-110.306640625,215.151184082031,-17.3203125,-111.43359375,185.311325073242,-17.19287109375,-109.8671875,186.364074707031,-16.69140625,-111.849609375,215.322463989258,-19.26025390625,-108.662109375,217.468856811523,-16.8125,-110.142578125,217.510559082031,-17.7392578125,-109.12109375,248.266464233398,-15.75830078125,-112.466796875,185.654342651367,-66.56689453125,-109.90625,247.346496582031,-16.9423828125,-110.236328125,218.366165161133,-66.37255859375,-111.1328125,248.992172241211,-18.30517578125,-110.357421875,249.793762207031,-16.5439453125,-110.66015625,249.681610107422,-66.68310546875,-112.681640625,322.14111328125,-18.09375,-110.78515625,287.38818359375,-17.15576171875,-111.42578125,321.501770019531,-15.9423828125,-111.54296875,321.506652832031,-67.060546875,-110.31640625,320.470520019531,-68.794921875,-108.505859375,248.816009521484,-68.19091796875,-77.56640625,320.704437255859,-68.1142578125,
- -111.662109375,151.366271972656,-68.0302734375,-77.970703125,218.240859985352,-67.916015625,-76.513671875,320.929504394531,-66.189453125,-77.1328125,286.056518554688,-67.01953125,-76.76171875,320.550659179688,-18.03466796875,-76.802734375,297.456848144531,-19.126953125,-78.12890625,320.241027832031,-16.291015625,-78.35546875,297.947082519531,-17.4033203125,-76.857421875,286.820526123047,-25.669921875,-87.146484375,287.822082519531,-17.80859375,-78.7421875,282.304382324219,-17.26025390625,-77.13671875,281.980804443359,-18.3046875,-76.32421875,219.555740356445,-16.8623046875,-74.81640625,218.499389648438,-66.85693359375,-74.583984375,218.153686523438,-19.15869140625,-85.4453125,214.705612182617,-16.72705078125,-77.458984375,215.763488769531,-25.36328125,-77.19921875,215.209594726563,-66.8173828125,-77.0625,214.463150024414,-19.51806640625,-77.4609375,205.082824707031,-16.2685546875,-78.98828125,185.618835449219,-16.64794921875,-112.12109375,183.645324707031,-15.689453125,-78.15234375,163.097534179688,-17.42724609375,-80.48046875,150.570053100586,-16.30859375,-111.482421875,150.959045410156,-16.2294921875,-109.6328125,148.700302124023,-17.7783203125,-82.369140625,148.694396972656,-17.896484375,-78.044921875,149.104644775391,-23.39501953125,-78.1484375,150.676818847656,-65.505859375,-80.185546875,149.152862548828,-65.41162109375,-79.578125,150.516662597656,-68.19921875,-109.708984375,148.816452026367,-66.8134765625,-113.44140625,151.301818847656,-66.5458984375,-112.962890625,151.045959472656,-17.765625,-113.412109375,183.426574707031,-17.3583984375,-111.59375,314.687438964844,16.3359375,-77.150390625,314.892517089844,16.56005859375,-79.380859375,284.793182373047,16.40087890625,-111.05078125,287.192321777344,16.33349609375,-109.501953125,285.639312744141,16.30712890625,-75.650390625,313.870056152344,18.74755859375,-76.115234375,312.878601074219,64.82421875,-75.763671875,267.409301757813,17.60009765625,-74.6875,232.746627807617,16.34619140625,-109.802734375,253.088806152344,15.68896484375,-107.845703125,251.310394287109,16.72314453125,
- -78.63671875,221.6044921875,16.86328125,-108.515625,220.331726074219,17.4814453125,-111.103515625,218.377868652344,16.75537109375,-76.013671875,222.769073486328,19.0732421875,-79.91796875,184.142333984375,16.5009765625,-111.30859375,185.886657714844,15.66845703125,-109.763671875,183.903198242188,16.56298828125,-75.427734375,221.150634765625,66.60986328125,-78.453125,184.638610839844,17.98095703125,-76.7578125,184.983932495117,67.23291015625,-76.5234375,183.383392333984,19.794921875,-77.2734375,182.204040527344,17.33837890625,-76.44140625,151.120498657227,17.29443359375,-108.3828125,149.865234375,16.70947265625,-108.970703125,148.74560546875,18.1181640625,-84.498046875,148.7861328125,19.8759765625,-78.06640625,148.9140625,25.11083984375,-75.009765625,154.657699584961,18.09375,-77.916015625,148.729690551758,66.248046875,-75.0703125,149.9287109375,67.48974609375,-78.115234375,185.27326965332,68.15966796875,-75.859375,149.7939453125,68.26123046875,-109.083984375,149.9091796875,68.1875,-107.615234375,148.812835693359,66.2607421875,-108.794921875,179.144470214844,68.47900390625,-110.69921875,149.9345703125,67.09130859375,-109.91796875,149.865234375,17.85400390625,-110.173828125,179.680603027344,67.5791015625,-111.2421875,184.003280639648,17.66845703125,-102.470703125,184.322204589844,66.8818359375,-111.505859375,183.991317749023,66.111328125,-112.779296875,218.546813964844,17.73876953125,-110.79296875,186.436462402344,67.615234375,-111.890625,217.816345214844,67.21240234375,-109.08203125,223.588455200195,68.57421875,-109.146484375,219.594665527344,20.87255859375,-109.86328125,219.75080871582,67.5537109375,-109.875,220.789001464844,19.3173828125,-110.109375,251.562606811523,17.5712890625,-110.796875,285.070220947266,65.703125,-110.646484375,285.454040527344,17.76513671875,-110.318359375,286.448181152344,19.38916015625,-109.857421875,286.559722900391,67.87939453125,-112.345703125,287.250915527344,16.93310546875,-112.90234375,286.586761474609,66.3134765625,-113.44140625,313.855407714844,17.49755859375,-112.431640625,315.451110839844,66.47802734375,
- -110.72265625,313.668884277344,67.833984375,-77.216796875,311.734527587891,67.37548828125,104.673828125,314.687438964844,-16.3359375,70.23046875,314.892517089844,-16.560546875,72.4609375,284.792633056641,-16.40087890625,104.130859375,287.192321777344,-16.333984375,102.58203125,285.639099121094,-16.30712890625,68.73046875,313.870056152344,-18.748046875,69.1953125,312.878601074219,-64.82373046875,68.84375,267.411071777344,-17.60009765625,67.767578125,232.746109008789,-16.34619140625,102.8828125,253.088806152344,-15.689453125,100.92578125,251.310485839844,-16.72314453125,71.716796875,221.604629516602,-16.86279296875,101.595703125,220.331695556641,-17.4814453125,104.18359375,218.377868652344,-16.755859375,69.09375,222.768951416016,-19.072265625,72.998046875,184.141403198242,-16.50146484375,104.388671875,185.886657714844,-15.66796875,102.84375,183.902893066406,-16.5625,68.5078125,221.150588989258,-66.60986328125,71.533203125,184.638610839844,-17.98046875,69.837890625,184.983764648438,-67.23291015625,69.603515625,183.383392333984,-19.79443359375,70.353515625,182.204040527344,-17.337890625,69.521484375,151.12043762207,-17.29443359375,101.462890625,149.865234375,-16.7099609375,102.05078125,148.74560546875,-18.11865234375,77.578125,148.7861328125,-19.8759765625,71.146484375,148.9140625,-25.111328125,68.08984375,154.657699584961,-18.0927734375,70.99609375,148.729690551758,-66.248046875,68.150390625,149.9287109375,-67.490234375,71.1953125,185.274520874023,-68.1591796875,68.939453125,149.7939453125,-68.26171875,102.1640625,149.9091796875,-68.1875,100.6953125,148.812835693359,-66.26123046875,101.875,179.144470214844,-68.478515625,103.779296875,149.9345703125,-67.091796875,102.998046875,149.865234375,-17.853515625,103.25390625,179.680603027344,-67.5791015625,104.322265625,184.003326416016,-17.66845703125,95.55078125,184.322204589844,-66.8818359375,104.5859375,183.991317749023,-66.111328125,105.859375,218.546813964844,-17.7392578125,103.873046875,186.436462402344,-67.615234375,104.970703125,217.816345214844,-67.212890625,102.162109375,223.58952331543,-68.57470703125,
- 102.2265625,219.594665527344,-20.873046875,102.943359375,219.750854492188,-67.55419921875,102.955078125,220.789001464844,-19.3173828125,103.189453125,251.56282043457,-17.5712890625,103.876953125,285.070220947266,-65.70263671875,103.7265625,285.454040527344,-17.765625,103.3984375,286.448181152344,-19.388671875,102.9375,286.559692382813,-67.87890625,105.42578125,287.250915527344,-16.9326171875,105.982421875,286.586761474609,-66.3134765625,106.521484375,313.855407714844,-17.498046875,105.51171875,315.451110839844,-66.4775390625,103.802734375,313.668884277344,-67.833984375,70.296875,311.734527587891,-67.37548828125
- }
- PolygonVertexIndex: *4028 {
- a: 48,49,16,-2,0,8,51,-53,12,50,51,-9,16,49,50,-13,22,21,3,-20,22,19,15,-24,23,15,11,-25,25,24,11,-3,21,22,29,-29,30,74,29,22,-24,24,31,68,30,-24,32,31,24,-26,36,35,28,-30,36,29,82,-76,38,37,31,-33,41,84,-43,42,84,85,-77,45,88,37,-39,49,48,41,-43,49,42,76,43,-51,50,43,70,44,-52,52,51,44,-46,52,53,6,-1,26,25,2,-5,25,26,33,-33,39,38,32,-34,38,39,46,-46,53,52,45,-47,47,48,1,-8,3,21,20,-6,20,21,28,-28,28,35,34,-28,34,35,41,-41,41,48,47,-41,11,10,4,-3,11,15,14,-11,15,19,18,-15,5,18,19,-4,8,0,6,-10,12,8,9,-14,16,12,13,-18,7,1,16,-18,53,65,9,-7,7,17,67,-48,17,13,66,-68,13,9,65,-67,54,26,4,-11,54,10,14,-56,55,14,18,-57,5,20,56,-19,26,54,57,-34,55,58,71,57,-55,56,59,77,58,-56,27,59,56,-21,60,39,33,-58,60,57,81,-73,27,34,61,-60,46,91,-63,90,91,60,-73,40,87,61,-35,65,53,46,-63,65,62,73,63,-67,66,63,79,64,-68,40,47,67,-65,31,80,-69,88,89,69,-38,59,83,-78,79,86,87,-65,68,80,81,-72,75,82,83,-79,30,58,77,-75,79,76,85,-87,89,90,72,-70,73,70,43,-64,63,43,76,-80,71,58,30,-69,81,80,69,-73,83,82,74,-78,82,29,-75,69,80,31,-38,81,57,-72,78,83,59,-62,85,84,36,-76,86,85,75,-79,87,86,78,-62,70,89,88,-45,70,73,90,-90,62,91,90,-74,40,64,-88,35,36,84,-42,45,44,-89,39,60,91,-47,92,93,-95,92,95,-94,96,95,-93,96,97,-96,97,96,-99,99,98,-97,100,98,-100,98,100,-102,101,100,-103,103,102,-101,104,102,-104,104,105,-103,106,105,-105,107,106,-105,94,106,-108,94,93,-107,108,109,-111,109,108,-112,111,108,-113,111,112,-114,114,113,-113,112,115,-115,115,116,-115,116,117,-115,116,118,-118,118,116,-120,118,119,-121,118,120,-122,122,121,-121,121,122,-124,123,122,-110,109,122,-111,100,104,-104,99,104,-101,104,99,-93,92,99,-97,92,107,-105,107,92,-95,105,101,-103,101,105,-99,98,105,-96,98,95,-98,95,105,-107,95,106,-94,121,117,-119,117,121,-115,114,121,-112,114,111,-114,111,121,-124,111,123,-110,108,115,-113,120,115,-109,120,108,-111,120,110,-123,115,120,-117,116,120,-120,124,125,-127,126,127,-125,126,128,-128,129,130,-132,131,132,-130,131,133,-133,134,135,-137,136,137,-135,136,138,-138,139,140,-142,142,141,-141,141,142,-144,144,145,-147,147,146,-146,
- 146,147,-149,149,150,-152,152,151,-151,151,152,-154,154,155,-157,155,154,-158,157,154,-159,159,160,-162,160,159,-163,162,159,-164,164,165,-167,165,164,-168,167,164,-169,169,170,-172,172,169,-172,169,172,-174,174,175,-177,177,174,-177,174,177,-179,179,180,-182,182,179,-182,179,182,-184,184,185,-187,185,184,-188,184,188,-188,188,189,-188,190,189,-189,191,185,-188,192,189,-191,193,192,-191,187,189,-195,192,193,-196,196,187,-195,187,196,-192,197,189,-193,197,194,-190,195,197,-193,194,198,-197,197,198,-195,198,191,-197,193,199,-196,199,193,-201,201,199,-201,125,199,-202,202,195,-200,202,197,-196,125,203,-200,203,125,-125,204,202,-200,199,203,-205,203,124,-206,205,204,-204,206,205,-125,204,205,-208,202,204,-208,206,207,-206,206,124,-128,207,208,-203,202,208,-198,207,206,-210,207,209,-209,210,197,-209,210,208,-210,198,197,-211,211,210,-210,210,211,-199,212,209,-207,206,127,-214,213,212,-207,127,214,-214,127,128,-215,213,214,-216,216,214,-129,216,128,-127,214,217,-216,217,214,-217,213,215,-219,217,218,-216,212,213,-219,201,216,-127,201,217,-217,126,125,-202,217,201,-220,218,217,-220,219,201,-201,200,220,-220,218,219,-221,193,220,-201,218,220,-222,221,212,-219,222,220,-194,222,221,-221,222,193,-191,188,222,-191,212,221,-224,221,222,-224,224,212,-224,223,222,-225,212,224,-226,225,209,-213,222,226,-225,225,224,-227,227,209,-226,226,227,-226,211,209,-228,226,222,-229,222,188,-229,227,226,-230,226,228,-230,211,227,-231,229,230,-228,231,228,-189,229,228,-232,231,188,-185,184,186,-232,231,232,-230,229,232,-231,231,186,-234,231,233,-233,186,234,-234,234,186,-186,185,235,-235,236,232,-234,236,233,-235,230,232,-238,237,232,-237,230,237,-239,238,211,-231,211,238,-199,237,236,-240,238,237,-240,236,234,-241,236,240,-240,235,241,-235,241,240,-235,242,241,-236,241,242,-244,240,241,-245,245,240,-245,245,244,-242,240,245,-240,243,246,-242,246,243,-248,245,241,-249,249,246,-248,248,241,-251,250,241,-247,247,163,-250,163,247,-163,251,246,-250,163,251,-250,246,251,-251,163,252,-252,252,163,-160,161,252,-160,253,250,-252,251,252,-254,254,252,
- -162,254,253,-253,161,160,-255,250,253,-256,250,255,-249,245,248,-256,245,255,-257,239,245,-257,255,253,-258,256,255,-258,257,239,-257,254,257,-254,239,257,-239,254,258,-258,238,257,-259,259,254,-161,258,254,-260,259,160,-261,160,162,-261,259,261,-259,260,261,-260,260,162,-263,261,260,-263,162,247,-263,247,243,-263,261,262,-264,262,243,-264,261,264,-259,261,263,-265,265,263,-244,264,263,-266,265,243,-243,264,266,-259,266,238,-259,238,266,-199,198,266,-192,266,264,-268,191,266,-268,267,264,-266,191,267,-269,267,265,-269,242,268,-266,185,191,-269,268,242,-236,185,268,-236,131,130,-270,269,270,-132,270,133,-132,269,271,-271,270,272,-134,271,272,-271,132,133,-273,271,269,-274,273,269,-275,273,274,-276,272,271,-277,271,273,-277,277,272,-277,276,273,-278,132,272,-279,272,277,-279,279,132,-279,279,129,-133,280,278,-278,278,280,-280,277,273,-282,275,281,-274,277,282,-281,281,282,-278,275,283,-282,284,283,-276,285,282,-282,281,283,-286,282,286,-281,286,279,-281,282,285,-288,287,286,-283,283,288,-286,287,285,-289,289,283,-285,288,283,-290,290,289,-285,288,291,-288,289,290,-293,290,293,-293,289,294,-289,294,291,-289,293,295,-293,294,289,-297,292,296,-290,291,294,-298,294,296,-298,287,291,-299,297,298,-292,298,286,-288,297,296,-300,296,292,-300,299,300,-298,301,297,-301,297,301,-299,299,302,-301,301,300,-303,292,303,-300,299,303,-303,304,303,-293,302,303,-306,305,303,-305,302,305,-307,306,301,-303,305,304,-308,306,305,-308,304,292,-309,308,292,-296,309,308,-296,310,308,-310,311,308,-311,307,304,-313,312,306,-308,308,313,-305,312,304,-314,311,314,-309,313,308,-315,311,168,-315,313,314,-169,168,311,-168,168,312,-314,312,168,-165,166,312,-165,315,312,-167,306,312,-316,166,165,-316,306,315,-317,316,315,-166,317,306,-317,316,165,-319,165,167,-319,319,317,-317,319,316,-319,306,317,-321,320,317,-320,320,301,-307,318,167,-322,318,321,-320,167,311,-322,311,310,-322,321,310,-323,319,321,-323,322,310,-310,309,323,-323,319,322,-324,323,309,-296,293,323,-296,319,323,-325,323,293,-325,325,319,-325,320,319,-326,293,326,-325,325,324,-327,326,
- 293,-291,284,326,-291,320,325,-328,327,325,-327,327,328,-321,328,301,-321,301,328,-299,329,327,-327,328,327,-330,330,326,-285,329,326,-331,328,331,-299,328,329,-332,332,298,-332,332,286,-299,333,331,-330,332,331,-334,333,329,-331,286,332,-335,334,279,-287,333,335,-333,332,335,-335,279,334,-337,335,336,-335,279,336,-130,337,129,-337,336,335,-338,337,130,-130,338,335,-334,333,330,-339,284,338,-331,338,284,-276,338,275,-275,338,339,-336,339,338,-275,339,337,-336,274,340,-340,337,339,-341,130,337,-341,340,274,-270,130,340,-270,341,342,-344,342,341,-345,341,345,-345,345,346,-345,345,347,-347,348,342,-345,346,347,-350,350,344,-347,350,348,-345,351,349,-348,352,351,-348,353,346,-350,353,349,-352,353,350,-347,352,354,-352,353,351,-355,354,352,-356,356,354,-356,135,354,-357,135,357,-355,354,357,-354,357,135,-135,358,353,-358,357,134,-359,359,350,-354,353,358,-360,359,348,-351,360,358,-135,358,360,-360,360,134,-138,361,348,-360,359,360,-363,359,362,-362,360,137,-364,364,362,-361,363,364,-361,137,365,-364,137,138,-366,363,365,-367,367,365,-139,367,138,-137,365,368,-367,368,365,-368,363,366,-370,368,369,-367,364,363,-370,356,367,-137,356,368,-368,136,135,-357,368,356,-371,369,368,-371,370,356,-356,355,371,-371,369,370,-372,352,371,-356,369,371,-373,372,364,-370,373,371,-353,373,372,-372,373,352,-348,345,373,-348,372,374,-365,362,364,-375,372,373,-376,374,372,-376,376,373,-346,376,345,-342,375,373,-378,374,375,-378,377,373,-377,343,376,-342,377,378,-375,362,374,-379,376,379,-378,377,379,-379,376,343,-381,376,380,-380,380,343,-382,381,343,-343,342,382,-382,383,379,-381,383,380,-382,378,379,-384,382,384,-382,384,383,-382,385,384,-383,384,385,-387,386,387,-385,387,388,-385,388,383,-385,388,378,-384,378,388,-390,389,362,-379,388,390,-390,362,389,-392,390,391,-390,362,391,-362,392,391,-391,391,392,-362,361,392,-394,392,386,-394,348,361,-394,393,386,-395,348,393,-395,394,386,-386,348,394,-396,385,395,-395,342,348,-396,395,385,-383,342,395,-383,396,397,-399,397,396,-400,396,400,-400,400,401,-400,400,402,-402,399,403,-398,404,401,-403,
- 405,404,-403,399,401,-407,404,405,-408,408,399,-407,403,399,-409,404,409,-402,401,409,-407,407,409,-405,406,410,-409,406,409,-411,403,408,-411,405,411,-408,411,405,-413,412,413,-412,173,411,-414,411,414,-408,414,409,-408,173,415,-412,415,173,-173,414,411,-417,411,415,-417,415,172,-418,417,416,-416,418,417,-173,416,417,-420,416,419,-415,417,418,-420,418,172,-172,419,420,-415,414,420,-410,419,418,-422,419,421,-421,422,409,-421,422,420,-422,422,410,-410,423,422,-422,422,423,-411,424,421,-419,418,171,-426,424,418,-426,171,426,-426,171,170,-427,427,425,-427,428,426,-171,428,170,-170,426,429,-428,429,426,-429,430,425,-428,429,430,-428,425,430,-425,413,428,-170,413,429,-429,169,173,-414,429,413,-432,430,429,-432,431,413,-413,412,432,-432,430,431,-433,405,432,-413,433,430,-433,433,424,-431,434,432,-406,434,433,-433,434,405,-403,400,434,-403,424,433,-436,433,434,-436,436,424,-436,434,436,-436,424,436,-438,437,421,-425,434,438,-437,438,437,-437,437,439,-422,437,438,-440,423,421,-440,434,440,-439,434,400,-441,439,438,-442,438,440,-442,423,439,-443,441,442,-440,443,440,-401,441,440,-444,443,400,-397,398,443,-397,443,444,-442,441,444,-443,398,445,-444,443,445,-445,445,398,-447,446,398,-398,397,447,-447,445,448,-445,445,446,-449,444,449,-443,448,449,-445,450,442,-450,450,423,-443,450,410,-424,449,448,-452,451,450,-450,448,446,-453,448,452,-452,447,453,-447,453,452,-447,454,453,-448,453,454,-456,452,453,-457,457,452,-457,453,457,-457,452,457,-452,455,458,-454,459,458,-456,457,453,-461,458,459,-462,460,453,-463,462,453,-459,461,459,-145,145,144,-460,458,461,-464,144,463,-462,458,463,-463,144,464,-464,464,144,-147,148,464,-147,463,465,-463,465,463,-465,466,464,-149,465,464,-467,148,147,-467,462,465,-468,462,467,-461,457,460,-468,457,467,-469,451,457,-469,467,465,-470,468,467,-470,469,451,-469,465,466,-470,451,469,-451,466,470,-470,470,450,-470,471,466,-148,466,471,-471,471,147,-473,147,145,-473,472,473,-472,471,473,-471,472,145,-475,474,473,-473,145,459,-475,459,455,-475,475,473,-475,475,474,-456,473,476,-471,473,475,-477,477,475,
- -456,477,476,-476,477,455,-455,476,478,-471,450,470,-479,410,450,-479,410,478,-404,478,476,-480,478,479,-404,477,479,-477,403,479,-481,480,479,-478,454,480,-478,397,403,-481,480,454,-448,397,480,-448,174,178,-482,481,482,-175,482,175,-175,481,483,-483,482,484,-176,483,484,-483,176,175,-485,483,481,-486,485,481,-487,485,486,-488,484,483,-489,485,488,-484,489,484,-489,485,489,-489,176,484,-491,484,489,-491,487,491,-486,489,485,-492,492,176,-491,492,177,-177,490,489,-494,493,492,-491,489,494,-494,491,494,-490,492,493,-496,494,495,-494,492,496,-178,497,494,-492,492,498,-497,498,492,-496,499,177,-497,499,178,-178,500,496,-499,496,500,-500,178,499,-502,178,501,-482,501,486,-482,499,502,-502,486,501,-503,502,499,-501,503,486,-503,503,502,-501,487,486,-504,503,504,-488,498,505,-501,495,505,-499,506,503,-501,500,505,-507,504,503,-508,503,506,-508,507,508,-505,509,504,-509,508,510,-510,506,511,-508,507,511,-509,505,512,-507,506,512,-512,505,513,-513,505,495,-514,514,511,-513,514,512,-514,508,511,-516,514,515,-512,515,516,-509,515,514,-518,517,516,-516,516,518,-509,510,508,-519,519,518,-517,519,516,-518,520,510,-519,518,519,-521,510,520,-522,520,522,-522,522,520,-524,520,519,-524,523,524,-523,523,525,-525,523,519,-526,524,525,-527,150,526,-526,527,150,-526,525,519,-528,152,150,-528,527,519,-529,528,152,-528,519,529,-529,517,529,-520,528,530,-153,153,152,-531,531,528,-530,528,531,-531,517,531,-530,530,532,-154,530,531,-533,153,532,-152,532,149,-152,531,517,-534,514,533,-518,533,514,-514,150,149,-527,534,526,-150,149,535,-535,149,532,-536,536,526,-535,536,534,-536,524,526,-537,524,536,-523,522,536,-522,535,532,-538,535,537,-537,536,538,-522,538,536,-538,521,538,-511,509,510,-539,539,537,-533,539,532,-532,540,537,-540,539,531,-541,537,540,-542,538,537,-542,531,542,-541,541,540,-543,531,533,-543,543,541,-543,538,541,-544,533,544,-543,543,542,-545,533,545,-545,545,543,-545,545,533,-514,546,538,-544,543,545,-547,538,546,-548,547,509,-539,509,547,-505,548,546,-546,548,547,-547,549,548,-546,545,513,-550,547,548,-551,548,549,-551,547,
- 551,-505,551,547,-551,504,551,-488,487,551,-492,497,491,-552,551,550,-498,552,550,-550,550,552,-498,552,549,-514,494,497,-553,552,513,-496,552,495,-495,553,554,-556,554,553,-557,553,557,-557,557,558,-557,559,558,-558,556,560,-555,561,558,-560,562,556,-559,560,556,-563,563,561,-560,564,563,-560,561,565,-559,565,561,-564,558,565,-563,564,566,-564,566,565,-564,566,564,-568,567,568,-567,183,566,-569,183,569,-567,566,569,-566,569,183,-183,570,565,-570,569,182,-571,571,562,-566,565,570,-572,560,562,-572,572,570,-183,572,571,-571,572,182,-182,571,573,-561,571,572,-575,574,573,-572,572,181,-576,576,574,-573,576,572,-576,181,577,-576,181,180,-578,578,575,-578,579,577,-181,579,180,-180,577,580,-579,580,577,-580,581,575,-579,580,581,-579,575,581,-577,568,579,-180,568,580,-580,179,183,-569,580,568,-583,581,580,-583,582,568,-568,567,583,-583,581,582,-584,564,583,-568,584,581,-584,584,576,-582,585,583,-565,585,584,-584,585,564,-560,557,585,-560,584,586,-577,576,586,-575,584,585,-588,586,584,-588,588,585,-558,588,557,-554,587,585,-590,586,587,-590,589,585,-589,588,553,-556,589,590,-587,574,586,-591,588,591,-590,589,591,-591,555,592,-589,588,592,-592,592,555,-594,593,555,-555,554,594,-594,592,595,-592,592,593,-596,595,590,-592,594,596,-594,596,595,-594,597,596,-595,596,597,-599,596,598,-600,599,600,-597,595,596,-601,600,590,-596,590,600,-602,590,601,-575,600,602,-602,603,574,-602,602,603,-602,573,574,-604,604,603,-603,603,604,-574,573,604,-606,598,605,-605,605,560,-574,606,605,-599,606,560,-606,606,598,-598,607,560,-607,597,607,-607,554,560,-608,607,597,-595,554,607,-595,158,608,-158,608,158,-610,610,608,-610,611,608,-611,611,610,-613,613,609,-159,613,610,-610,158,614,-614,614,158,-155,156,614,-155,610,613,-616,614,615,-614,616,612,-611,616,610,-616,612,616,-618,618,617,-617,618,616,-620,619,620,-619,621,620,-620,615,622,-617,619,616,-623,623,621,-620,622,623,-620,621,623,-625,623,625,-625,626,622,-616,626,615,-615,623,622,-628,626,628,-623,628,627,-623,629,623,-628,629,627,-629,625,623,-631,629,630,-624,630,631,-626,625,631,-633,
- 631,633,-633,633,631,-635,635,634,-632,636,630,-630,630,636,-632,635,631,-637,628,636,-630,636,637,-636,636,628,-639,637,636,-639,639,638,-629,639,628,-627,614,639,-627,638,640,-638,638,639,-641,641,637,-641,637,641,-643,640,643,-642,643,640,-640,641,644,-643,643,644,-642,644,633,-643,644,645,-634,632,633,-646,645,625,-633,646,644,-644,644,646,-646,625,645,-648,646,647,-646,625,647,-625,643,648,-647,643,639,-649,646,649,-648,646,648,-650,647,650,-625,649,650,-648,624,650,-622,651,649,-649,651,648,-640,651,652,-650,649,652,-651,651,639,-654,652,651,-654,650,654,-622,621,654,-621,652,655,-651,655,654,-651,653,655,-653,620,654,-657,656,654,-656,657,620,-657,620,657,-619,657,617,-619,657,612,-618,655,658,-657,658,657,-657,658,655,-654,612,657,-660,658,659,-658,659,660,-613,659,658,-661,660,611,-613,661,658,-654,611,660,-663,660,658,-664,663,662,-661,663,658,-662,662,664,-612,663,664,-663,611,664,-609,157,608,-665,665,157,-665,665,664,-664,155,157,-666,665,663,-667,666,155,-666,666,663,-662,666,667,-156,667,666,-662,653,667,-662,156,155,-668,667,653,-640,667,614,-157,639,614,-668,140,139,-669,669,668,-140,668,669,-671,668,670,-672,671,670,-673,139,673,-670,670,669,-674,139,674,-674,674,139,-142,143,674,-142,673,675,-671,673,674,-676,676,672,-671,670,675,-677,672,676,-678,678,677,-677,679,678,-677,678,679,-681,681,680,-680,676,675,-683,679,676,-683,683,681,-680,683,679,-683,681,683,-685,683,685,-685,675,686,-683,686,675,-675,683,682,-688,688,682,-687,682,688,-688,689,683,-688,689,687,-689,685,683,-691,689,690,-684,690,691,-686,685,691,-693,691,693,-693,693,691,-695,694,691,-696,696,690,-690,690,696,-692,696,695,-692,688,696,-690,696,697,-696,696,688,-699,697,696,-699,698,688,-700,699,688,-687,686,674,-700,698,700,-698,698,699,-701,701,697,-701,697,701,-703,700,703,-702,703,700,-700,701,704,-703,701,703,-705,704,693,-703,704,705,-694,692,693,-706,705,685,-693,704,703,-707,706,705,-705,685,705,-708,705,706,-708,685,707,-685,703,708,-707,703,699,-709,706,709,-708,706,708,-710,710,684,-708,707,709,-711,681,684,-711,711,709,
- -709,711,708,-700,711,712,-710,710,709,-713,711,699,-714,712,711,-714,714,681,-711,714,680,-682,712,715,-711,715,714,-711,713,715,-713,680,714,-717,716,714,-716,717,680,-717,680,717,-679,717,677,-679,717,672,-678,718,716,-716,716,718,-718,713,718,-716,672,717,-720,717,718,-720,719,720,-673,719,718,-721,720,671,-673,713,721,-719,671,720,-723,720,718,-724,723,722,-721,723,718,-722,724,671,-723,722,723,-725,668,671,-725,140,668,-725,725,140,-725,724,723,-726,142,140,-726,723,726,-726,726,142,-726,721,726,-724,726,727,-143,727,726,-722,713,727,-722,143,142,-728,727,713,-700,727,674,-144,727,699,-675
- }
- Edges: *2024 {
- a: 4,30,140,157,97,93,117,7,98,3,11,161,26,145,25,15,165,22,149,21,2,170,151,18,19,121,31,126,17,33,40,100,16,23,27,28,35,53,59,49,106,34,37,43,46,129,61,134,51,331,70,108,50,57,58,132,76,80,85,72,114,64,68,83,89,137,90,118,74,1,8,5,92,0,13,9,6,95,101,103,109,91,120,125,128,133,115,139,144,148,158,162,166,197,193,190,204,187,194,198,200,224,231,205,209,214,217,237,241,221,228,230,247,251,256,235,249,254,261,172,180,176,171,185,181,177,41,207,212,42,267,84,263,266,208,250,278,239,36,79,313,333,213,329,255,270,337,294,279,286,283,288,296,298,284,309,227,277,56,282,281,122,55,262,226,269,63,67,272,274,66,290,273,344,342,347,234,265,292,236,240,62,69,233,368,369,370,371,372,374,376,377,378,381,382,383,385,386,388,390,391,393,394,395,397,398,400,401,402,404,406,407,409,410,412,414,416,417,418,420,421,423,424,426,427,428,430,431,432,434,435,437,438,440,441,444,445,447,448,450,451,452,454,456,457,459,460,462,464,467,471,472,476,482,486,489,490,496,500,504,507,508,514,518,521,523,526,531,536,537,538,539,540,542,543,545,546,547,548,549,551,552,554,555,556,557,558,560,561,563,564,565,566,568,570,571,572,573,574,575,577,579,580,581,582,583,584,586,588,589,590,591,592,594,595,597,598,599,600,601,603,604,606,607,608,609,610,612,613,615,616,617,618,619,620,622,624,625,626,627,628,629,631,633,634,635,636,637,638,640,642,643,644,645,646,648,649,650,651,653,654,656,658,659,661,662,664,665,667,669,670,672,673,674,676,678,680,682,683,686,689,690,692,695,698,699,702,703,704,706,707,709,710,712,713,716,717,721,722,724,726,729,730,731,734,736,738,739,742,743,748,749,750,753,756,757,759,761,763,766,769,770,772,774,776,778,780,781,782,785,786,789,792,793,794,796,799,800,801,805,807,808,809,814,815,817,818,825,826,829,832,833,834,838,839,843,844,845,848,850,851,856,857,861,862,864,866,868,870,873,874,875,878,879,883,884,886,887,892,894,895,897,900,901,903,906,907,908,911,913,916,919,921,923,924,927,930,931,933,935,936,940,941,942,944,946,949,951,952,955,957,958,959,963,966,967,970,972,973,975,977,978,980,983,985,987,988,990,
- 991,992,994,997,999,1001,1002,1005,1006,1008,1009,1010,1012,1014,1015,1018,1019,1020,1023,1025,1027,1028,1032,1034,1035,1039,1040,1043,1045,1047,1049,1051,1052,1056,1059,1060,1062,1066,1068,1069,1072,1074,1075,1078,1079,1082,1086,1088,1089,1093,1094,1096,1099,1101,1102,1104,1106,1107,1109,1113,1114,1117,1119,1122,1125,1126,1128,1130,1131,1134,1136,1138,1141,1144,1145,1146,1148,1152,1155,1158,1159,1162,1165,1167,1168,1170,1172,1177,1180,1185,1186,1187,1188,1190,1193,1194,1196,1197,1199,1204,1206,1207,1209,1210,1212,1213,1215,1216,1218,1220,1222,1224,1227,1228,1230,1232,1234,1235,1238,1240,1242,1245,1246,1247,1250,1251,1253,1256,1257,1259,1261,1262,1264,1266,1268,1269,1271,1275,1276,1277,1280,1281,1285,1286,1288,1291,1292,1294,1295,1296,1299,1300,1301,1302,1304,1305,1307,1310,1311,1314,1315,1316,1320,1321,1323,1326,1327,1328,1331,1335,1336,1338,1340,1341,1343,1345,1347,1349,1350,1354,1355,1356,1359,1361,1363,1365,1366,1369,1371,1372,1373,1377,1378,1381,1383,1384,1387,1388,1390,1391,1393,1394,1396,1398,1399,1400,1403,1404,1408,1409,1410,1414,1415,1416,1420,1422,1424,1429,1430,1433,1435,1438,1440,1443,1444,1447,1448,1450,1452,1453,1455,1457,1459,1462,1464,1465,1468,1469,1473,1474,1476,1479,1482,1485,1486,1489,1492,1493,1494,1498,1501,1502,1506,1507,1509,1511,1513,1516,1517,1518,1522,1525,1526,1530,1531,1534,1535,1536,1538,1542,1544,1546,1549,1550,1552,1555,1556,1557,1560,1562,1564,1565,1568,1570,1573,1576,1578,1579,1580,1583,1584,1587,1590,1591,1592,1596,1598,1600,1602,1604,1607,1609,1611,1613,1618,1621,1622,1623,1627,1628,1631,1632,1636,1639,1642,1646,1647,1648,1650,1651,1652,1653,1655,1656,1658,1659,1661,1663,1665,1666,1667,1669,1670,1673,1675,1676,1678,1679,1681,1684,1685,1688,1689,1693,1695,1696,1697,1699,1700,1702,1703,1704,1707,1711,1712,1714,1716,1718,1720,1722,1724,1727,1729,1731,1735,1736,1738,1740,1741,1743,1746,1747,1748,1750,1751,1754,1755,1758,1761,1762,1763,1765,1768,1769,1770,1774,1776,1777,1778,1783,1784,1786,1787,1794,1795,1798,1801,1802,1803,1807,1808,1812,1813,1814,1817,1819,1820,1825,1826,1829,1830,
- 1834,1836,1837,1840,1841,1843,1846,1848,1849,1852,1855,1856,1859,1860,1864,1865,1866,1869,1872,1873,1875,1878,1879,1882,1883,1884,1886,1888,1891,1894,1895,1896,1898,1901,1903,1905,1906,1907,1908,1910,1911,1913,1916,1920,1921,1922,1925,1926,1929,1930,1931,1935,1937,1939,1941,1944,1945,1946,1947,1951,1953,1954,1957,1960,1962,1963,1964,1969,1972,1976,1977,1978,1980,1981,1982,1983,1985,1986,1988,1989,1991,1992,1994,1996,1997,1999,2001,2002,2004,2005,2006,2008,2011,2012,2013,2016,2018,2021,2022,2025,2029,2030,2031,2034,2035,2036,2037,2039,2041,2042,2043,2045,2048,2049,2053,2055,2056,2058,2061,2062,2063,2066,2068,2070,2071,2073,2076,2080,2081,2082,2085,2088,2089,2091,2093,2095,2098,2099,2102,2104,2106,2108,2110,2112,2113,2116,2117,2118,2121,2123,2125,2126,2128,2131,2132,2133,2137,2138,2140,2141,2145,2147,2149,2150,2157,2158,2161,2164,2165,2166,2170,2171,2174,2176,2177,2180,2182,2183,2188,2189,2193,2194,2196,2198,2200,2201,2205,2206,2207,2210,2211,2213,2216,2217,2220,2224,2225,2226,2229,2232,2233,2235,2238,2239,2240,2243,2245,2248,2251,2252,2255,2256,2259,2261,2262,2265,2268,2269,2272,2273,2274,2276,2277,2280,2282,2283,2285,2288,2290,2291,2294,2298,2299,2300,2304,2305,2307,2309,2310,2312,2315,2317,2319,2320,2322,2323,2324,2326,2327,2331,2333,2334,2336,2338,2340,2341,2343,2344,2346,2347,2350,2352,2353,2356,2358,2359,2360,2364,2366,2367,2371,2372,2375,2376,2380,2381,2383,2386,2388,2391,2392,2394,2398,2400,2401,2404,2406,2407,2410,2411,2415,2418,2420,2421,2423,2426,2428,2430,2433,2434,2436,2438,2439,2442,2445,2446,2447,2451,2454,2456,2458,2461,2462,2463,2466,2468,2470,2471,2476,2477,2478,2482,2485,2487,2490,2491,2493,2495,2499,2500,2503,2504,2509,2512,2517,2518,2519,2520,2522,2525,2526,2528,2529,2531,2536,2538,2539,2541,2542,2544,2545,2547,2548,2549,2552,2554,2555,2559,2560,2562,2564,2565,2569,2570,2572,2573,2577,2578,2579,2582,2583,2585,2589,2590,2591,2594,2595,2597,2599,2600,2601,2605,2606,2608,2609,2612,2614,2616,2619,2620,2622,2624,2627,2628,2632,2635,2636,2638,2641,2644,2645,2646,2648,2649,2651,2654,2656,2658,2661,2662,
- 2664,2666,2667,2669,2671,2672,2673,2675,2676,2679,2681,2682,2685,2687,2688,2691,2693,2695,2698,2700,2701,2702,2705,2706,2709,2710,2711,2714,2715,2719,2720,2722,2725,2726,2728,2730,2733,2734,2735,2736,2739,2740,2742,2744,2745,2747,2748,2751,2754,2755,2756,2758,2759,2761,2763,2767,2769,2770,2771,2774,2775,2777,2780,2781,2785,2786,2788,2790,2792,2795,2796,2799,2802,2804,2808,2809,2810,2815,2817,2819,2821,2822,2823,2826,2828,2830,2833,2836,2838,2841,2844,2845,2847,2849,2850,2854,2856,2860,2861,2863,2866,2867,2869,2871,2874,2875,2878,2879,2880,2884,2886,2888,2890,2893,2894,2895,2899,2900,2901,2903,2908,2909,2911,2913,2916,2917,2918,2922,2924,2926,2927,2930,2932,2934,2937,2938,2940,2942,2943,2947,2949,2952,2956,2958,2960,2962,2964,2968,2971,2974,2978,2979,2980,2982,2983,2984,2985,2987,2988,2990,2992,2993,2994,2996,2998,2999,3001,3004,3005,3007,3008,3010,3011,3012,3016,3018,3020,3021,3023,3027,3028,3029,3030,3032,3034,3035,3036,3039,3043,3044,3046,3048,3050,3052,3054,3058,3059,3061,3062,3067,3068,3069,3072,3073,3074,3078,3079,3080,3082,3085,3086,3087,3090,3092,3094,3095,3097,3100,3101,3102,3106,3107,3109,3110,3114,3116,3118,3119,3126,3127,3130,3133,3134,3135,3139,3140,3143,3145,3146,3149,3151,3152,3157,3158,3161,3162,3165,3168,3169,3172,3173,3175,3178,3180,3181,3184,3187,3190,3191,3192,3196,3197,3198,3201,3203,3204,3207,3210,3211,3214,3215,3216,3218,3219,3222,3224,3227,3228,3230,3233,3235,3237,3238,3240,3241,3242,3243,3247,3248,3252,3253,3255,3257,3258,3260,3262,3263,3268,3269,3271,3273,3276,3277,3278,3280,3281,3284,3286,3287,3292,3293,3295,3296,3301,3304,3308,3309,3312,3313,3314,3316,3317,3319,3321,3322,3323,3325,3326,3329,3330,3334,3335,3339,3340,3341,3344,3346,3349,3351,3352,3353,3355,3357,3358,3359,3360,3362,3364,3365,3366,3370,3371,3373,3374,3378,3379,3380,3381,3383,3385,3388,3390,3391,3392,3393,3395,3398,3400,3403,3405,3406,3407,3410,3411,3414,3415,3416,3417,3420,3421,3422,3424,3425,3427,3429,3433,3434,3437,3438,3441,3442,3445,3446,3448,3451,3452,3455,3456,3459,3461,3463,3465,3466,3467,3468,3472,3473,3474,3476,3479,
- 3480,3482,3483,3487,3488,3491,3493,3495,3498,3499,3500,3504,3506,3507,3510,3512,3513,3516,3518,3519,3521,3525,3527,3529,3532,3533,3534,3537,3540,3541,3544,3545,3546,3549,3551,3552,3554,3557,3561,3562,3565,3566,3568,3570,3572,3575,3578,3579,3581,3586,3588,3589,3590,3593,3594,3597,3599,3602,3604,3606,3607,3609,3610,3611,3616,3617,3618,3620,3624,3628,3629,3631,3634,3637,3639,3640,3641,3646,3647,3648,3652,3653,3658,3661,3662,3669,3670,3671,3673,3675,3676,3678,3679,3681,3682,3683,3684,3688,3689,3690,3694,3695,3698,3699,3702,3704,3706,3708,3711,3712,3713,3715,3716,3718,3720,3721,3722,3724,3726,3727,3730,3731,3733,3736,3738,3739,3740,3741,3743,3744,3748,3750,3751,3752,3754,3756,3758,3760,3763,3765,3766,3767,3770,3771,3774,3775,3776,3777,3780,3781,3783,3784,3785,3787,3789,3791,3794,3797,3798,3801,3802,3805,3807,3808,3811,3813,3815,3816,3819,3821,3823,3825,3826,3827,3828,3832,3833,3834,3837,3839,3840,3842,3843,3847,3848,3852,3853,3854,3858,3859,3861,3864,3866,3867,3870,3872,3873,3876,3878,3880,3882,3886,3887,3889,3892,3893,3894,3898,3900,3901,3904,3905,3907,3908,3911,3912,3914,3917,3921,3922,3925,3926,3928,3930,3932,3935,3938,3940,3942,3944,3948,3949,3951,3953,3954,3957,3959,3962,3963,3966,3967,3969,3970,3971,3976,3977,3979,3981,3985,3988,3989,3991,3993,3997,3998,3999,4001,4004,4007,4008,4012,4013,4018,4021,4022
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *12084 {
- a: 0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,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,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,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,0.999999940395355,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,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,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-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,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,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,-1,0,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-0.999999940395355,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,-1,0,0,-1,0,0,-1,0,0,-1,-3.59558072204891e-009,0,-1,0,0,-1,0,0,-1,0,0,-1,-4.57763560390845e-009,0,-1,-3.59558072204891e-009,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,-4.57763560390845e-009,0,-1,-4.5776378243545e-009,0,-1,-3.79868048128174e-009,0,-1,-3.59558072204891e-009,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.79868048128174e-009,0,-1,-4.5776378243545e-009,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-0.999999940395355,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,-0.999999940395355,0,0,-0.999999940395355,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.59558072204891e-009,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.673851847648621,-0.738866567611694,0,0.98358166217804,-0.180463910102844,0,0.98358166217804,-0.180463910102844,0,0.673851847648621,-0.738866567611694,0,-0.999977171421051,-0.00676223868504167,0,-0.98358166217804,-0.180463910102844,0,-0.98358166217804,-0.180463910102844,0,-0.999977171421051,-0.00676223868504167,0,0,-1,0,0,-1,0,-0.673851847648621,-0.738866567611694,0,-0.673851847648621,-0.738866567611694,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,0.999977171421051,-0.00676223868504167,0,0.999977171421051,-0.00676223868504167,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.673851847648621,-0.738866567611694,0,0,-1,0,0,-1,0,0.673851847648621,-0.738866567611694,0,0.98358166217804,-0.180463910102844,0,0.98358166217804,-0.180463910102844,0,0.999977171421051,-0.00676223868504167,0,0.999977171421051,-0.00676223868504167,0,-0.98358166217804,-0.180463910102844,0,-0.98358166217804,-0.180463910102844,0,-0.673851847648621,-0.738866567611694,0,-0.673851847648621,-0.738866567611694,0,0,0,1,0,0,1,0,0,0.999999940395355,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.59558072204891e-009,0,-1,-3.79868048128174e-009,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-0.999977171421051,-0.00676223868504167,0,-0.999977171421051,-0.00676223868504167,0,0,0,-1,0,0,-1,0,0,-1,-3.79868048128174e-009,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,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,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.22026090323925,0.975441098213196,0,-0.965842843055725,0.259128570556641,0,-0.969677090644836,0.244390159845352,0,-0.22026090323925,0.975441098213196,
- 0,-0.236956179141998,0.971520364284515,0,-0.965842843055725,0.259128570556641,0,0.047191459685564,0.998885869979858,0,-0.236956179141998,0.971520364284515,0,-0.22026090323925,0.975441098213196,0,0.047191459685564,0.998885869979858,0,0.047191459685564,0.998885869979858,0,-0.236956179141998,0.971520364284515,0,0.047191459685564,0.998885869979858,0,0.047191459685564,0.998885869979858,0,0.999225914478302,0.0393396019935608,0,0.999225914478302,0.0393396019935608,0,0.999225914478302,0.0393396019935608,0,0.047191459685564,0.998885869979858,0,0.999225914478302,-0.0393396019935608,0,0.999225914478302,0.0393396019935608,0,0.999225914478302,0.0393396019935608,0,0.999225914478302,0.0393396019935608,0,0.999225914478302,-0.0393396019935608,0,0.999225914478302,-0.0393396019935608,0,0.999225914478302,-0.0393396019935608,0,0.999225914478302,-0.0393396019935608,0,0.047191459685564,-0.998885869979858,0,0.047191459685564,-0.998885869979858,0,0.047191459685564,-0.998885869979858,0,0.999225914478302,-0.0393396019935608,0,-0.244390159845352,-0.969677090644836,0,0.047191459685564,-0.998885869979858,0,0.047191459685564,-0.998885869979858,0,-0.244390159845352,-0.969677090644836,0,-0.22026090323925,-0.975441098213196,0,0.047191459685564,-0.998885869979858,0,-0.96778416633606,-0.25178125500679,0,-0.22026090323925,-0.975441098213196,0,-0.244390159845352,-0.969677090644836,0,-0.969677090644836,-0.244390159845352,0,-0.96778416633606,-0.25178125500679,0,-0.244390159845352,-0.969677090644836,0,-0.969677090644836,0.244390159845352,0,-0.96778416633606,-0.25178125500679,0,-0.969677090644836,-0.244390159845352,0,-0.969677090644836,0.244390159845352,0,-0.96778416633606,0.25178125500679,0,-0.96778416633606,-0.25178125500679,0,-0.22026090323925,-0.975441098213196,0,-0.965842843055725,-0.259128570556641,0,-0.969677090644836,-0.244390159845352,0,-0.965842843055725,-0.259128570556641,0,-0.22026090323925,-0.975441098213196,0,-0.236956179141998,-0.971520364284515,0,-0.236956179141998,-0.971520364284515,0,-0.22026090323925,-0.975441098213196,0,0.047191459685564,-0.998885869979858,
- 0,-0.236956179141998,-0.971520364284515,0,0.047191459685564,-0.998885869979858,0,0.047191459685564,-0.998885869979858,0,0.999225914478302,-0.0393396019935608,0,0.047191459685564,-0.998885869979858,0,0.047191459685564,-0.998885869979858,0,0.047191459685564,-0.998885869979858,0,0.999225914478302,-0.0393396019935608,0,0.999225914478302,-0.0393396019935608,0,0.999225914478302,-0.0393396019935608,0,0.999225914478302,0.0393396019935608,0,0.999225914478302,-0.0393396019935608,0,0.999225914478302,0.0393396019935608,0,0.999225914478302,0.0393396019935608,0,0.999225914478302,-0.0393396019935608,0,0.999225914478302,0.0393396019935608,0,0.047191459685564,0.998885869979858,0,0.999225914478302,0.0393396019935608,0,0.047191459685564,0.998885869979858,0,0.999225914478302,0.0393396019935608,0,0.047191459685564,0.998885869979858,0,0.047191459685564,0.998885869979858,0,0.047191459685564,0.998885869979858,0,-0.236956179141998,0.971520364284515,0,0.047191459685564,0.998885869979858,0,-0.236956179141998,0.971520364284515,0,-0.22026090323925,0.975441098213196,0,-0.96778416633606,0.25178125500679,0,-0.22026090323925,0.975441098213196,0,-0.236956179141998,0.971520364284515,0,-0.22026090323925,0.975441098213196,0,-0.96778416633606,0.25178125500679,0,-0.969677090644836,0.244390159845352,0,-0.969677090644836,0.244390159845352,0,-0.96778416633606,0.25178125500679,0,-0.96778416633606,-0.25178125500679,0,-0.96778416633606,-0.25178125500679,0,-0.96778416633606,0.25178125500679,0,-0.969677090644836,-0.244390159845352,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,-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,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.0314716808497906,-0.999225914478302,0.0236037615686655,-0.0393347330391407,-0.999102234840393,-0.0157338920980692,
- 0.0157338920980692,-0.999102234840393,-0.0393347330391407,0.0157338920980692,-0.999102234840393,-0.0393347330391407,0.047178328037262,-0.998607933521271,0.023589164018631,-0.0314716808497906,-0.999225914478302,0.0236037615686655,0.0157338920980692,-0.999102234840393,-0.0393347330391407,0.0628364831209183,-0.997529208660126,-0.0314182415604591,0.047178328037262,-0.998607933521271,0.023589164018631,-0.998731434345245,0.039320133626461,0.031456109136343,-0.998607933521271,0.047178328037262,-0.023589164018631,-0.999102234840393,-0.0157338920980692,-0.0393347330391407,-0.999102234840393,-0.0157338920980692,-0.0393347330391407,-0.999102234840393,-0.0393347330391407,0.0157338920980692,-0.998731434345245,0.039320133626461,0.031456109136343,-0.999102234840393,-0.0157338920980692,-0.0393347330391407,-0.99894767999649,-0.0393286496400833,-0.0235971882939339,-0.999102234840393,-0.0393347330391407,0.0157338920980692,0.0314716808497906,0.999225914478302,0.0236037615686655,0.0393347330391407,0.999102234840393,-0.0157338920980692,-0.0157338920980692,0.999102234840393,-0.0393347330391407,-0.0157338920980692,0.999102234840393,-0.0393347330391407,-0.047178328037262,0.998607933521271,0.023589164018631,0.0314716808497906,0.999225914478302,0.0236037615686655,-0.0157338920980692,0.999102234840393,-0.0393347330391407,-0.0628364831209183,0.997529208660126,-0.0314182415604591,-0.047178328037262,0.998607933521271,0.023589164018631,-0.023614726960659,0.999690115451813,0.00787157565355301,0.0236125327646732,0.999597251415253,0.0157416891306639,-0.0314804539084435,0.999504387378693,2.21934556816337e-016,0,0.999876022338867,-0.0157460793852806,-0.0314804539084435,0.999504387378693,2.21934556816337e-016,0.0236125327646732,0.999597251415253,0.0157416891306639,-0.0314804539084435,0.999504387378693,2.21934556816337e-016,0,0.999876022338867,-0.0157460793852806,-0.00786767713725567,0.999194979667664,-0.0393383838236332,-0.999473392963409,-0.0314794778823853,0.00786986947059631,-0.999597251415253,0.0236125327646732,0.0157416891306639,-0.999473392963409,-0.0314794778823853,0.00786986947059631,
- -0.999876022338867,3.49633197622281e-018,-0.0157460793852806,-0.999473392963409,-0.0314794778823853,0.00786986947059631,-0.999597251415253,0.0236125327646732,0.0157416891306639,-0.999473392963409,-0.0314794778823853,0.00786986947059631,-0.999876022338867,3.49633197622281e-018,-0.0157460793852806,-0.999597251415253,-0.0157416891306639,-0.0236125327646732,0.023614726960659,-0.999690115451813,0.00787157565355301,-0.0236125327646732,-0.999597251415253,0.0157416891306639,0.0314804539084435,-0.999504387378693,-2.21934556816337e-016,0,-0.999876022338867,-0.0157460793852806,0.0314804539084435,-0.999504387378693,-2.21934556816337e-016,-0.0236125327646732,-0.999597251415253,0.0157416891306639,0.0314804539084435,-0.999504387378693,-2.21934556816337e-016,0,-0.999876022338867,-0.0157460793852806,0.00786767713725567,-0.999194979667664,-0.0393383838236332,0.0314804539084435,0.999504387378693,2.21934556816337e-016,0,0.999876022338867,0.0157460793852806,0.00786767713725567,0.999194979667664,0.0393383838236332,0,0.999876022338867,0.0157460793852806,0.0314804539084435,0.999504387378693,2.21934556816337e-016,-0.0236125327646732,0.999597251415253,-0.0157416891306639,-0.0236125327646732,0.999597251415253,-0.0157416891306639,0.0314804539084435,0.999504387378693,2.21934556816337e-016,0.023614726960659,0.999690115451813,-0.00787157565355301,0.999473392963409,-0.0314794778823853,-0.00786986947059631,0.999876022338867,-3.49633197622281e-018,0.0157460793852806,0.999597251415253,-0.0157416891306639,0.0236125327646732,0.999876022338867,-3.49633197622281e-018,0.0157460793852806,0.999473392963409,-0.0314794778823853,-0.00786986947059631,0.999597251415253,0.0236125327646732,-0.0157416891306639,0.999597251415253,0.0236125327646732,-0.0157416891306639,0.999473392963409,-0.0314794778823853,-0.00786986947059631,0.999473392963409,-0.0314794778823853,-0.00786986947059631,-0.0314804539084435,-0.999504387378693,-2.21934556816337e-016,0,-0.999876022338867,0.0157460793852806,-0.00786767713725567,-0.999194979667664,0.0393383838236332,0,-0.999876022338867,0.0157460793852806,
- -0.0314804539084435,-0.999504387378693,-2.21934556816337e-016,0.0236125327646732,-0.999597251415253,-0.0157416891306639,0.0236125327646732,-0.999597251415253,-0.0157416891306639,-0.0314804539084435,-0.999504387378693,-2.21934556816337e-016,-0.023614726960659,-0.999690115451813,-0.00787157565355301,-0.0157338920980692,-0.999102234840393,0.0393347330391407,-0.0628364831209183,-0.997529208660126,0.0314182415604591,-0.047178328037262,-0.998607933521271,-0.023589164018631,0.0314716808497906,-0.999225914478302,-0.0236037615686655,-0.0157338920980692,-0.999102234840393,0.0393347330391407,-0.047178328037262,-0.998607933521271,-0.023589164018631,-0.0157338920980692,-0.999102234840393,0.0393347330391407,0.0314716808497906,-0.999225914478302,-0.0236037615686655,0.0393347330391407,-0.999102234840393,0.0157338920980692,0.999102234840393,-0.0157338920980692,0.0393347330391407,0.99894767999649,-0.0393286496400833,0.0235971882939339,0.999102234840393,-0.0393347330391407,-0.0157338920980692,0.998731434345245,0.039320133626461,-0.031456109136343,0.999102234840393,-0.0157338920980692,0.0393347330391407,0.999102234840393,-0.0393347330391407,-0.0157338920980692,0.999102234840393,-0.0157338920980692,0.0393347330391407,0.998731434345245,0.039320133626461,-0.031456109136343,0.998607933521271,0.047178328037262,0.023589164018631,0.0157338920980692,0.999102234840393,0.0393347330391407,0.0628364831209183,0.997529208660126,0.0314182415604591,0.047178328037262,0.998607933521271,-0.023589164018631,-0.0314716808497906,0.999225914478302,-0.0236037615686655,0.0157338920980692,0.999102234840393,0.0393347330391407,0.047178328037262,0.998607933521271,-0.023589164018631,0.0157338920980692,0.999102234840393,0.0393347330391407,-0.0314716808497906,0.999225914478302,-0.0236037615686655,-0.0393347330391407,0.999102234840393,0.0157338920980692,-0.0790544673800468,0.0395272336900234,-0.996086359024048,-0.794364988803864,0.605605006217957,-0.047189999371767,-0.0627726167440414,0.0549260377883911,-0.996515274047852,-0.794364988803864,0.605605006217957,-0.047189999371767,
- -0.0790544673800468,0.0395272336900234,-0.996086359024048,-0.801264047622681,0.597020268440247,-0.0392776504158974,-0.0790544673800468,0.0395272336900234,-0.996086359024048,-0.062921941280365,0.117978647351265,-0.991020619869232,-0.801264047622681,0.597020268440247,-0.0392776504158974,-0.062921941280365,0.117978647351265,-0.991020619869232,-0.949348151683807,0.313834100961685,-0.0156917050480843,-0.801264047622681,0.597020268440247,-0.0392776504158974,-0.157592713832855,0.0709167197346687,-0.984954476356506,-0.949348151683807,0.313834100961685,-0.0156917050480843,-0.062921941280365,0.117978647351265,-0.991020619869232,-0.784585237503052,0.619822382926941,0.0156917050480843,-0.794364988803864,0.605605006217957,-0.047189999371767,-0.801264047622681,0.597020268440247,-0.0392776504158974,-0.940366268157959,0.339796215295792,-0.0158044751733541,-0.949348151683807,0.313834100961685,-0.0156917050480843,-0.157592713832855,0.0709167197346687,-0.984954476356506,-0.0314794778823853,0.00786986947059631,-0.999473392963409,-0.940366268157959,0.339796215295792,-0.0158044751733541,-0.157592713832855,0.0709167197346687,-0.984954476356506,-0.801264047622681,0.597020268440247,-0.0392776504158974,-0.949348151683807,0.313834100961685,-0.0156917050480843,-0.971035838127136,0.236838012933731,0.0315783992409706,-0.940366268157959,0.339796215295792,-0.0158044751733541,-0.0314794778823853,0.00786986947059631,-0.999473392963409,-0.993389487266541,0.110376611351967,-0.0315361730754375,-0.801858007907867,0.597462892532349,0.00786135345697403,-0.801264047622681,0.597020268440247,-0.0392776504158974,-0.971035838127136,0.236838012933731,0.0315783992409706,-0.801264047622681,0.597020268440247,-0.0392776504158974,-0.801858007907867,0.597462892532349,0.00786135345697403,-0.784585237503052,0.619822382926941,0.0156917050480843,-0.943129301071167,0.330095231533051,0.0392970517277718,-0.949348151683807,0.313834100961685,-0.0156917050480843,-0.940366268157959,0.339796215295792,-0.0158044751733541,-0.943129301071167,0.330095231533051,0.0392970517277718,-0.971035838127136,0.236838012933731,0.0315783992409706,
- -0.949348151683807,0.313834100961685,-0.0156917050480843,-0.993389487266541,0.110376611351967,-0.0315361730754375,-0.943129301071167,0.330095231533051,0.0392970517277718,-0.940366268157959,0.339796215295792,-0.0158044751733541,-0.971035838127136,0.236838012933731,0.0315783992409706,-0.0393383838236332,0.00786767713725567,0.999194979667664,-0.801858007907867,0.597462892532349,0.00786135345697403,-0.943129301071167,0.330095231533051,0.0392970517277718,-0.0393383838236332,0.00786767713725567,0.999194979667664,-0.971035838127136,0.236838012933731,0.0315783992409706,-0.0393383838236332,0.00786767713725567,0.999194979667664,-0.784585237503052,0.619822382926941,0.0156917050480843,-0.801858007907867,0.597462892532349,0.00786135345697403,-0.0314794778823853,0.00786986947059631,-0.999473392963409,-0.999690115451813,-0.023614726960659,-0.00787157565355301,-0.993389487266541,0.110376611351967,-0.0315361730754375,-0.999690115451813,-0.023614726960659,-0.00787157565355301,-0.0314794778823853,0.00786986947059631,-0.999473392963409,-0.188532739877701,0.0157110616564751,-0.981941342353821,-0.0471856184303761,0.0157285407185555,-0.998762309551239,-0.999690115451813,-0.023614726960659,-0.00787157565355301,-0.188532739877701,0.0157110616564751,-0.981941342353821,-0.0393347330391407,-0.999102234840393,-0.0157338920980692,-0.999690115451813,-0.023614726960659,-0.00787157565355301,-0.0471856184303761,0.0157285407185555,-0.998762309551239,-0.997744739055634,0.0628500655293465,0.0235687755048275,-0.993389487266541,0.110376611351967,-0.0315361730754375,-0.999690115451813,-0.023614726960659,-0.00787157565355301,-0.997744739055634,0.0628500655293465,0.0235687755048275,-0.943129301071167,0.330095231533051,0.0392970517277718,-0.993389487266541,0.110376611351967,-0.0315361730754375,-0.0393347330391407,-0.999102234840393,-0.0157338920980692,-0.998453617095947,-0.0393091961741447,0.0393091961741447,-0.999690115451813,-0.023614726960659,-0.00787157565355301,-0.998453617095947,-0.0393091961741447,0.0393091961741447,-0.0393347330391407,-0.999102234840393,-0.0157338920980692,
- -0.0314716808497906,-0.999225914478302,0.0236037615686655,-0.999380588531494,0.0157382767647505,0.031476553529501,-0.997744739055634,0.0628500655293465,0.0235687755048275,-0.999690115451813,-0.023614726960659,-0.00787157565355301,-0.999690115451813,-0.023614726960659,-0.00787157565355301,-0.998453617095947,-0.0393091961741447,0.0393091961741447,-0.999380588531494,0.0157382767647505,0.031476553529501,-0.998453617095947,-0.0393091961741447,0.0393091961741447,-0.0314716808497906,-0.999225914478302,0.0236037615686655,-0.0471856184303761,-0.0157285407185555,0.998762309551239,-0.0471856184303761,-0.0157285407185555,0.998762309551239,-0.999380588531494,0.0157382767647505,0.031476553529501,-0.998453617095947,-0.0393091961741447,0.0393091961741447,0.0550073832273483,-0.0314327888190746,0.99799108505249,-0.0471856184303761,-0.0157285407185555,0.998762309551239,-0.0314716808497906,-0.999225914478302,0.0236037615686655,-0.999380588531494,0.0157382767647505,0.031476553529501,-0.0471856184303761,-0.0157285407185555,0.998762309551239,-0.0393396019935608,-2.21872723411188e-016,0.999225914478302,-0.997744739055634,0.0628500655293465,0.0235687755048275,-0.999380588531494,0.0157382767647505,0.031476553529501,-0.0393396019935608,-2.21872723411188e-016,0.999225914478302,0.0550073832273483,-0.0314327888190746,0.99799108505249,-0.0393396019935608,-2.21872723411188e-016,0.999225914478302,-0.0471856184303761,-0.0157285407185555,0.998762309551239,0.0550073832273483,-0.0314327888190746,0.99799108505249,-0.0314716808497906,-0.999225914478302,0.0236037615686655,0.047178328037262,-0.998607933521271,0.023589164018631,-0.0393396019935608,-2.21872723411188e-016,0.999225914478302,-0.133552238345146,0.133552238345146,0.982001841068268,-0.997744739055634,0.0628500655293465,0.0235687755048275,-0.997744739055634,0.0628500655293465,0.0235687755048275,-0.133552238345146,0.133552238345146,0.982001841068268,-0.943129301071167,0.330095231533051,0.0392970517277718,-0.0393396019935608,-2.21872723411188e-016,0.999225914478302,0.0550073832273483,-0.0314327888190746,0.99799108505249,
- 0.023615462705493,-2.21982705345433e-016,0.999721229076386,-0.0393396019935608,-2.21872723411188e-016,0.999225914478302,0.023615462705493,-2.21982705345433e-016,0.999721229076386,-0.133552238345146,0.133552238345146,0.982001841068268,-0.0550277717411518,0.0157222207635641,0.998361051082611,-0.943129301071167,0.330095231533051,0.0392970517277718,-0.133552238345146,0.133552238345146,0.982001841068268,-0.0550277717411518,0.0157222207635641,0.998361051082611,-0.133552238345146,0.133552238345146,0.982001841068268,0.023615462705493,-2.21982705345433e-016,0.999721229076386,-0.0393383838236332,0.00786767713725567,0.999194979667664,-0.943129301071167,0.330095231533051,0.0392970517277718,-0.0550277717411518,0.0157222207635641,0.998361051082611,0.0157416891306639,-0.0236125327646732,0.999597251415253,-0.0550277717411518,0.0157222207635641,0.998361051082611,0.023615462705493,-2.21982705345433e-016,0.999721229076386,-0.0550277717411518,0.0157222207635641,0.998361051082611,0.0157416891306639,-0.0236125327646732,0.999597251415253,-0.0393383838236332,0.00786767713725567,0.999194979667664,0.99722158908844,-0.0706692412495613,0.0235564168542624,0.023615462705493,-2.21982705345433e-016,0.999721229076386,0.0550073832273483,-0.0314327888190746,0.99799108505249,0.0550073832273483,-0.0314327888190746,0.99799108505249,0.047178328037262,-0.998607933521271,0.023589164018631,0.999597251415253,-0.0157416891306639,0.0236125327646732,0.999597251415253,-0.0157416891306639,0.0236125327646732,0.99722158908844,-0.0706692412495613,0.0235564168542624,0.0550073832273483,-0.0314327888190746,0.99799108505249,0.047178328037262,-0.998607933521271,0.023589164018631,0.999225914478302,-0.0314716808497906,-0.0236037615686655,0.999597251415253,-0.0157416891306639,0.0236125327646732,0.047178328037262,-0.998607933521271,0.023589164018631,0.0628364831209183,-0.997529208660126,-0.0314182415604591,0.999225914478302,-0.0314716808497906,-0.0236037615686655,0.999597251415253,-0.0157416891306639,0.0236125327646732,0.999225914478302,-0.0314716808497906,-0.0236037615686655,
- 0.99894767999649,0.0235971882939339,-0.0393286496400833,0.0471856184303761,0.0157285407185555,-0.998762309551239,0.999225914478302,-0.0314716808497906,-0.0236037615686655,0.0628364831209183,-0.997529208660126,-0.0314182415604591,0.0471856184303761,0.0157285407185555,-0.998762309551239,0.0628364831209183,-0.997529208660126,-0.0314182415604591,0.0157338920980692,-0.999102234840393,-0.0393347330391407,0.999225914478302,-0.0314716808497906,-0.0236037615686655,0.0710669010877609,0.0710669010877609,-0.99493670463562,0.99894767999649,0.0235971882939339,-0.0393286496400833,0.0710669010877609,0.0710669010877609,-0.99493670463562,0.999225914478302,-0.0314716808497906,-0.0236037615686655,0.0471856184303761,0.0157285407185555,-0.998762309551239,0.999597251415253,-0.0157416891306639,0.0236125327646732,0.99894767999649,0.0235971882939339,-0.0393286496400833,0.99799108505249,-0.00785819720476866,-0.0628655776381493,0.0710669010877609,0.0710669010877609,-0.99493670463562,0.99799108505249,-0.00785819720476866,-0.0628655776381493,0.99894767999649,0.0235971882939339,-0.0393286496400833,0.99722158908844,-0.0706692412495613,0.0235564168542624,0.999597251415253,-0.0157416891306639,0.0236125327646732,0.99799108505249,-0.00785819720476866,-0.0628655776381493,-0.0471856184303761,0.0157285407185555,-0.998762309551239,0.0471856184303761,0.0157285407185555,-0.998762309551239,0.0157338920980692,-0.999102234840393,-0.0393347330391407,-0.0471856184303761,0.0157285407185555,-0.998762309551239,0.0710669010877609,0.0710669010877609,-0.99493670463562,0.0471856184303761,0.0157285407185555,-0.998762309551239,0.0157338920980692,-0.999102234840393,-0.0393347330391407,-0.0393347330391407,-0.999102234840393,-0.0157338920980692,-0.0471856184303761,0.0157285407185555,-0.998762309551239,0.0710669010877609,0.0710669010877609,-0.99493670463562,-0.0471856184303761,0.0157285407185555,-0.998762309551239,0.0315872617065907,0.0947617813944817,-0.994998693466187,0.99799108505249,-0.00785819720476866,-0.0628655776381493,0.0710669010877609,0.0710669010877609,-0.99493670463562,
- 0.0315872617065907,0.0947617813944817,-0.994998693466187,0.0315872617065907,0.0947617813944817,-0.994998693466187,-0.0471856184303761,0.0157285407185555,-0.998762309551239,-0.0314794778823853,-0.00786986947059631,-0.999473392963409,-0.0314794778823853,-0.00786986947059631,-0.999473392963409,0.0627977550029755,-0.0470983162522316,-0.996914327144623,0.0315872617065907,0.0947617813944817,-0.994998693466187,0.99799108505249,-0.00785819720476866,-0.0628655776381493,0.0315872617065907,0.0947617813944817,-0.994998693466187,0.0627977550029755,-0.0470983162522316,-0.996914327144623,-0.0314794778823853,0.00786986947059631,-0.999473392963409,0.0627977550029755,-0.0470983162522316,-0.996914327144623,-0.0314794778823853,-0.00786986947059631,-0.999473392963409,0.99799108505249,-0.00785819720476866,-0.0628655776381493,0.0627977550029755,-0.0470983162522316,-0.996914327144623,0.99737536907196,-0.0549734458327293,-0.0471200942993164,0.99737536907196,-0.0549734458327293,-0.0471200942993164,0.99722158908844,-0.0706692412495613,0.0235564168542624,0.99799108505249,-0.00785819720476866,-0.0628655776381493,0.0550345741212368,2.21708081382065e-016,-0.998484432697296,0.0627977550029755,-0.0470983162522316,-0.996914327144623,-0.0314794778823853,0.00786986947059631,-0.999473392963409,0.0550345741212368,2.21708081382065e-016,-0.998484432697296,0.99737536907196,-0.0549734458327293,-0.0471200942993164,0.0627977550029755,-0.0470983162522316,-0.996914327144623,0.0550345741212368,2.21708081382065e-016,-0.998484432697296,-0.0314794778823853,0.00786986947059631,-0.999473392963409,-0.0236088763922453,0.0236088763922453,-0.999442458152771,-0.0157149396836758,0.0628597587347031,-0.997898638248444,0.0550345741212368,2.21708081382065e-016,-0.998484432697296,-0.0236088763922453,0.0236088763922453,-0.999442458152771,0.99722158908844,-0.0706692412495613,0.0235564168542624,0.99737536907196,-0.0549734458327293,-0.0471200942993164,0.99894767999649,-0.0235971882939339,-0.0393286496400833,0.99737536907196,-0.0549734458327293,-0.0471200942993164,0.0550345741212368,2.21708081382065e-016,-0.998484432697296,
- 0.99894767999649,-0.0235971882939339,-0.0393286496400833,0.919097006320953,-0.392776489257813,-0.0314221195876598,0.99722158908844,-0.0706692412495613,0.0235564168542624,0.99894767999649,-0.0235971882939339,-0.0393286496400833,0.99894767999649,-0.0235971882939339,-0.0393286496400833,0.0550345741212368,2.21708081382065e-016,-0.998484432697296,0.919097006320953,-0.392776489257813,-0.0314221195876598,0.99722158908844,-0.0706692412495613,0.0235564168542624,0.919097006320953,-0.392776489257813,-0.0314221195876598,0.9343181848526,-0.353313624858856,0.0471084825694561,0.9343181848526,-0.353313624858856,0.0471084825694561,0.023615462705493,-2.21982705345433e-016,0.999721229076386,0.99722158908844,-0.0706692412495613,0.0235564168542624,0.0550345741212368,2.21708081382065e-016,-0.998484432697296,0.958848118782043,-0.282938778400421,-0.0235782321542501,0.919097006320953,-0.392776489257813,-0.0314221195876598,0.9343181848526,-0.353313624858856,0.0471084825694561,0.919097006320953,-0.392776489257813,-0.0314221195876598,0.958848118782043,-0.282938778400421,-0.0235782321542501,0.975622236728668,-0.212433889508247,0.0550754480063915,0.023615462705493,-2.21982705345433e-016,0.999721229076386,0.9343181848526,-0.353313624858856,0.0471084825694561,0.958848118782043,-0.282938778400421,-0.0235782321542501,0.975622236728668,-0.212433889508247,0.0550754480063915,0.9343181848526,-0.353313624858856,0.0471084825694561,0.0157416891306639,-0.0236125327646732,0.999597251415253,0.023615462705493,-2.21982705345433e-016,0.999721229076386,0.975622236728668,-0.212433889508247,0.0550754480063915,0.958848118782043,-0.282938778400421,-0.0235782321542501,0.0550345741212368,2.21708081382065e-016,-0.998484432697296,0.0790544673800468,0.0395272336900234,-0.996086359024048,0.0550345741212368,2.21708081382065e-016,-0.998484432697296,-0.0157149396836758,0.0628597587347031,-0.997898638248444,0.0790544673800468,0.0395272336900234,-0.996086359024048,0.975622236728668,-0.212433889508247,0.0550754480063915,0.958848118782043,-0.282938778400421,-0.0235782321542501,
- 0.88641768693924,0.462819844484329,-0.0078444043174386,0.958848118782043,-0.282938778400421,-0.0235782321542501,0.0790544673800468,0.0395272336900234,-0.996086359024048,0.88641768693924,0.462819844484329,-0.0078444043174386,0.0157416891306639,-0.0236125327646732,0.999597251415253,0.975622236728668,-0.212433889508247,0.0550754480063915,0.781249105930328,-0.62342095375061,0.0315656177699566,0.88641768693924,0.462819844484329,-0.0078444043174386,0.781249105930328,-0.62342095375061,0.0315656177699566,0.975622236728668,-0.212433889508247,0.0550754480063915,0.0078735277056694,0.0078735277056694,-0.999938011169434,0.0790544673800468,0.0395272336900234,-0.996086359024048,-0.0157149396836758,0.0628597587347031,-0.997898638248444,0.88641768693924,0.462819844484329,-0.0078444043174386,0.0790544673800468,0.0395272336900234,-0.996086359024048,0.0078735277056694,0.0078735277056694,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.999938011169434,-0.0157149396836758,0.0628597587347031,-0.997898638248444,-0.0790544673800468,0.0395272336900234,-0.996086359024048,-0.0790544673800468,0.0395272336900234,-0.996086359024048,-0.0627726167440414,0.0549260377883911,-0.996515274047852,0.0078735277056694,0.0078735277056694,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.999938011169434,0.77057933807373,-0.636907398700714,-0.023589164018631,0.88641768693924,0.462819844484329,-0.0078444043174386,0.88641768693924,0.462819844484329,-0.0078444043174386,0.77057933807373,-0.636907398700714,-0.023589164018631,0.781249105930328,-0.62342095375061,0.0315656177699566,0.0078735277056694,0.0078735277056694,-0.999938011169434,-0.0627726167440414,0.0549260377883911,-0.996515274047852,0.0157416891306639,-0.0236125327646732,-0.999597251415253,0.0078735277056694,0.0078735277056694,-0.999938011169434,0.0157416891306639,-0.0236125327646732,-0.999597251415253,0.77057933807373,-0.636907398700714,-0.023589164018631,-0.0627726167440414,0.0549260377883911,-0.996515274047852,0.0157338920980692,-0.0393347330391407,-0.999102234840393,0.0157416891306639,-0.0236125327646732,-0.999597251415253,
- 0.0157338920980692,-0.0393347330391407,-0.999102234840393,-0.0627726167440414,0.0549260377883911,-0.996515274047852,-0.377777129411697,-0.283332824707031,-0.881479978561401,-0.377777129411697,-0.283332824707031,-0.881479978561401,-0.031456109136343,0.039320133626461,-0.998731434345245,0.0157338920980692,-0.0393347330391407,-0.999102234840393,0.801783680915833,-0.597407519817352,-0.0157212503254414,0.77057933807373,-0.636907398700714,-0.023589164018631,0.0157416891306639,-0.0236125327646732,-0.999597251415253,0.801783680915833,-0.597407519817352,-0.0157212503254414,0.0157416891306639,-0.0236125327646732,-0.999597251415253,0.0157338920980692,-0.0393347330391407,-0.999102234840393,0.781249105930328,-0.62342095375061,0.0315656177699566,0.77057933807373,-0.636907398700714,-0.023589164018631,0.801659882068634,-0.59731525182724,0.0235782321542501,0.801659882068634,-0.59731525182724,0.0235782321542501,0.77057933807373,-0.636907398700714,-0.023589164018631,0.801783680915833,-0.597407519817352,-0.0157212503254414,0.781249105930328,-0.62342095375061,0.0315656177699566,0.801659882068634,-0.59731525182724,0.0235782321542501,0.031456109136343,-0.039320133626461,0.998731434345245,0.031456109136343,-0.039320133626461,0.998731434345245,0.0157416891306639,-0.0236125327646732,0.999597251415253,0.781249105930328,-0.62342095375061,0.0315656177699566,0.0157416891306639,-0.0236125327646732,0.999597251415253,0.031456109136343,-0.039320133626461,0.998731434345245,-0.0393383838236332,0.00786767713725567,0.999194979667664,0.801659882068634,-0.59731525182724,0.0235782321542501,0.801783680915833,-0.597407519817352,-0.0157212503254414,0.512112736701965,-0.858773708343506,0.0157573148608208,0.031456109136343,-0.039320133626461,0.998731434345245,0.801659882068634,-0.59731525182724,0.0235782321542501,0.512112736701965,-0.858773708343506,0.0157573148608208,0.801783680915833,-0.597407519817352,-0.0157212503254414,0.0157338920980692,-0.0393347330391407,-0.999102234840393,0.517810344696045,-0.855171620845795,-0.0235368330031633,0.801783680915833,-0.597407519817352,-0.0157212503254414,
- 0.517810344696045,-0.855171620845795,-0.0235368330031633,0.512112736701965,-0.858773708343506,0.0157573148608208,-0.031456109136343,0.039320133626461,-0.998731434345245,0.0314648635685444,-0.0314648635685444,-0.999009490013123,0.0157338920980692,-0.0393347330391407,-0.999102234840393,0.0314648635685444,-0.0314648635685444,-0.999009490013123,0.517810344696045,-0.855171620845795,-0.0235368330031633,0.0157338920980692,-0.0393347330391407,-0.999102234840393,0,0.0550345741212368,-0.998484432697296,0.0314648635685444,-0.0314648635685444,-0.999009490013123,-0.031456109136343,0.039320133626461,-0.998731434345245,0.0314648635685444,-0.0314648635685444,-0.999009490013123,0,0.0550345741212368,-0.998484432697296,-0.0314716808497906,0.0236037615686655,-0.999225914478302,0.517810344696045,-0.855171620845795,-0.0235368330031633,0.0314648635685444,-0.0314648635685444,-0.999009490013123,0.526906073093414,-0.849341154098511,-0.0314570814371109,0.536298274993896,-0.843881130218506,-0.0157734788954258,0.517810344696045,-0.855171620845795,-0.0235368330031633,0.526906073093414,-0.849341154098511,-0.0314570814371109,0.536298274993896,-0.843881130218506,-0.0157734788954258,0.526906073093414,-0.849341154098511,-0.0314570814371109,0.0314648635685444,-0.0314648635685444,-0.999009490013123,0.517810344696045,-0.855171620845795,-0.0235368330031633,0.536298274993896,-0.843881130218506,-0.0157734788954258,0.512112736701965,-0.858773708343506,0.0157573148608208,-0.0314716808497906,0.0236037615686655,-0.999225914478302,0,-0.0550345741212368,-0.998484432697296,0.0314648635685444,-0.0314648635685444,-0.999009490013123,0,-0.0550345741212368,-0.998484432697296,-0.0314716808497906,0.0236037615686655,-0.999225914478302,0.0706692412495613,0.0235564168542624,-0.99722158908844,0.536298274993896,-0.843881130218506,-0.0157734788954258,0.0314648635685444,-0.0314648635685444,-0.999009490013123,-0.631410598754883,-0.773478031158447,-0.0552484281361103,0.0393091961741447,-0.0393091961741447,-0.998453617095947,0,-0.0550345741212368,-0.998484432697296,0.0706692412495613,0.0235564168542624,-0.99722158908844,
- -0.631410598754883,-0.773478031158447,-0.0552484281361103,0.0314648635685444,-0.0314648635685444,-0.999009490013123,0.110376611351967,-0.993389487266541,-0.0315361730754375,0.110376611351967,-0.993389487266541,-0.0315361730754375,0.0314648635685444,-0.0314648635685444,-0.999009490013123,0,-0.0550345741212368,-0.998484432697296,0.0706692412495613,0.0235564168542624,-0.99722158908844,0.994719624519348,-0.0394730009138584,-0.0947351977229118,0.0393091961741447,-0.0393091961741447,-0.998453617095947,0.994719624519348,-0.0394730009138584,-0.0947351977229118,0.0706692412495613,0.0235564168542624,-0.99722158908844,0.999597251415253,0.0236125327646732,-0.0157416891306639,0.157867401838303,-0.986671268939972,-0.0394668504595757,0,-0.0550345741212368,-0.998484432697296,0.0393091961741447,-0.0393091961741447,-0.998453617095947,0.994719624519348,-0.0394730009138584,-0.0947351977229118,0.157867401838303,-0.986671268939972,-0.0394668504595757,0.0393091961741447,-0.0393091961741447,-0.998453617095947,0,-0.0550345741212368,-0.998484432697296,0.157867401838303,-0.986671268939972,-0.0394668504595757,0.110376611351967,-0.993389487266541,-0.0315361730754375,0.994719624519348,-0.0394730009138584,-0.0947351977229118,0.165595769882202,-0.985689163208008,0.0315420515835285,0.157867401838303,-0.986671268939972,-0.0394668504595757,0.165595769882202,-0.985689163208008,0.0315420515835285,0.994719624519348,-0.0394730009138584,-0.0947351977229118,0.999473392963409,-0.0314794778823853,-0.00786986947059631,0.999597251415253,-0.0157416891306639,0.0236125327646732,0.165595769882202,-0.985689163208008,0.0315420515835285,0.999473392963409,-0.0314794778823853,-0.00786986947059631,0.07065399736166,-0.997006475925446,0.0314017795026302,0.110376611351967,-0.993389487266541,-0.0315361730754375,0.157867401838303,-0.986671268939972,-0.0394668504595757,0.157867401838303,-0.986671268939972,-0.0394668504595757,0.165595769882202,-0.985689163208008,0.0315420515835285,0.07065399736166,-0.997006475925446,0.0314017795026302,0.0156873594969511,-0.0862804874777794,0.996147394180298,
- 0.165595769882202,-0.985689163208008,0.0315420515835285,0.999597251415253,-0.0157416891306639,0.0236125327646732,0.0156873594969511,-0.0862804874777794,0.996147394180298,0.07065399736166,-0.997006475925446,0.0314017795026302,0.165595769882202,-0.985689163208008,0.0315420515835285,0.999597251415253,-0.0157416891306639,0.0236125327646732,0.999876022338867,-3.49633197622281e-018,0.0157460793852806,0.0156873594969511,-0.0862804874777794,0.996147394180298,0.110376611351967,-0.993389487266541,-0.0315361730754375,0.07065399736166,-0.997006475925446,0.0314017795026302,-0.292273312807083,-0.955812692642212,0.0315971150994301,0.110376611351967,-0.993389487266541,-0.0315361730754375,-0.292273312807083,-0.955812692642212,0.0315971150994301,-0.631410598754883,-0.773478031158447,-0.0552484281361103,0.536298274993896,-0.843881130218506,-0.0157734788954258,-0.631410598754883,-0.773478031158447,-0.0552484281361103,-0.292273312807083,-0.955812692642212,0.0315971150994301,0.536298274993896,-0.843881130218506,-0.0157734788954258,-0.292273312807083,-0.955812692642212,0.0315971150994301,0.536298274993896,-0.843881130218506,0.0157734788954258,0.512112736701965,-0.858773708343506,0.0157573148608208,0.536298274993896,-0.843881130218506,-0.0157734788954258,0.536298274993896,-0.843881130218506,0.0157734788954258,-0.292273312807083,-0.955812692642212,0.0315971150994301,0.07065399736166,-0.997006475925446,0.0314017795026302,0.0392958410084248,-0.0471550077199936,0.998114347457886,0.536298274993896,-0.843881130218506,0.0157734788954258,-0.292273312807083,-0.955812692642212,0.0315971150994301,0.0392958410084248,-0.0471550077199936,0.998114347457886,0.0392958410084248,-0.0471550077199936,0.998114347457886,0.512112736701965,-0.858773708343506,0.0157573148608208,0.536298274993896,-0.843881130218506,0.0157734788954258,0.0156873594969511,-0.0862804874777794,0.996147394180298,0.0392958410084248,-0.0471550077199936,0.998114347457886,0.07065399736166,-0.997006475925446,0.0314017795026302,0.512112736701965,-0.858773708343506,0.0157573148608208,0.0392958410084248,-0.0471550077199936,0.998114347457886,
- 0.031456109136343,-0.039320133626461,0.998731434345245,0.0156873594969511,-0.0862804874777794,0.996147394180298,-0.0157285407185555,0.0471856184303761,0.998762309551239,0.0392958410084248,-0.0471550077199936,0.998114347457886,0.031456109136343,-0.039320133626461,0.998731434345245,0.0392958410084248,-0.0471550077199936,0.998114347457886,-0.0157285407185555,0.0471856184303761,0.998762309551239,0.00785819720476866,0.0628655776381493,0.99799108505249,0.0156873594969511,-0.0862804874777794,0.996147394180298,0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.0157285407185555,0.0471856184303761,0.998762309551239,0.0156873594969511,-0.0862804874777794,0.996147394180298,0.00785819720476866,0.0628655776381493,0.99799108505249,0.00785819720476866,0.0628655776381493,0.99799108505249,0.999876022338867,-3.49633197622281e-018,0.0157460793852806,-0.165631830692291,0.985903739929199,0.0236616898328066,0.999876022338867,-3.49633197622281e-018,0.0157460793852806,0.999597251415253,0.0236125327646732,-0.0157416891306639,-0.165631830692291,0.985903739929199,0.0236616898328066,0.00785819720476866,0.0628655776381493,0.99799108505249,-0.196019649505615,0.980098307132721,0.0313631445169449,-0.0157285407185555,0.0471856184303761,0.998762309551239,-0.165631830692291,0.985903739929199,0.0236616898328066,-0.196019649505615,0.980098307132721,0.0313631445169449,0.00785819720476866,0.0628655776381493,0.99799108505249,-0.165631830692291,0.985903739929199,0.0236616898328066,0.999597251415253,0.0236125327646732,-0.0157416891306639,-0.173287451267242,0.984587788581848,-0.0236301068216562,-0.196019649505615,0.980098307132721,0.0313631445169449,-0.165631830692291,0.985903739929199,0.0236616898328066,-0.173287451267242,0.984587788581848,-0.0236301068216562,0.999597251415253,0.0236125327646732,-0.0157416891306639,0.0706692412495613,0.0235564168542624,-0.99722158908844,-0.173287451267242,0.984587788581848,-0.0236301068216562,0.0706692412495613,0.0235564168542624,-0.99722158908844,-0.0707325115799904,0.172901704907417,-0.982396006584167,-0.173287451267242,0.984587788581848,-0.0236301068216562,
- -0.196019649505615,0.980098307132721,0.0313631445169449,-0.173287451267242,0.984587788581848,-0.0236301068216562,-0.125937417149544,0.991757094860077,-0.0236132647842169,-0.173287451267242,0.984587788581848,-0.0236301068216562,-0.0707325115799904,0.172901704907417,-0.982396006584167,-0.125937417149544,0.991757094860077,-0.0236132647842169,-0.196019649505615,0.980098307132721,0.0313631445169449,-0.434311300516129,0.90020889043808,0.0315862745046616,-0.0157285407185555,0.0471856184303761,0.998762309551239,-0.196019649505615,0.980098307132721,0.0313631445169449,-0.125937417149544,0.991757094860077,-0.0236132647842169,-0.434311300516129,0.90020889043808,0.0315862745046616,-0.456508964300156,0.889405429363251,-0.0236125327646732,-0.125937417149544,0.991757094860077,-0.0236132647842169,-0.0707325115799904,0.172901704907417,-0.982396006584167,-0.434311300516129,0.90020889043808,0.0315862745046616,-0.125937417149544,0.991757094860077,-0.0236132647842169,-0.456508964300156,0.889405429363251,-0.0236125327646732,-0.456508964300156,0.889405429363251,-0.0236125327646732,-0.0707325115799904,0.172901704907417,-0.982396006584167,0,0.0550345741212368,-0.998484432697296,-0.434311300516129,0.90020889043808,0.0315862745046616,-0.0314648635685444,0.0314648635685444,0.999009490013123,-0.0157285407185555,0.0471856184303761,0.998762309551239,-0.0314648635685444,0.0314648635685444,0.999009490013123,0.031456109136343,-0.039320133626461,0.998731434345245,-0.0157285407185555,0.0471856184303761,0.998762309551239,0.031456109136343,-0.039320133626461,0.998731434345245,-0.0314648635685444,0.0314648635685444,0.999009490013123,-0.0393383838236332,0.00786767713725567,0.999194979667664,-0.0393383838236332,0.00786767713725567,0.999194979667664,-0.0314648635685444,0.0314648635685444,0.999009490013123,-0.784585237503052,0.619822382926941,0.0156917050480843,-0.0314648635685444,0.0314648635685444,0.999009490013123,-0.434311300516129,0.90020889043808,0.0315862745046616,-0.536098301410675,0.843566477298737,0.0315351933240891,-0.784585237503052,0.619822382926941,0.0156917050480843,
- -0.0314648635685444,0.0314648635685444,0.999009490013123,-0.536098301410675,0.843566477298737,0.0315351933240891,-0.536098301410675,0.843566477298737,0.0315351933240891,-0.434311300516129,0.90020889043808,0.0315862745046616,-0.456508964300156,0.889405429363251,-0.0236125327646732,-0.784585237503052,0.619822382926941,0.0156917050480843,-0.536098301410675,0.843566477298737,0.0315351933240891,-0.536098301410675,0.843566477298737,-0.0315351933240891,-0.536098301410675,0.843566477298737,0.0315351933240891,-0.456508964300156,0.889405429363251,-0.0236125327646732,-0.536098301410675,0.843566477298737,-0.0315351933240891,0,0.0550345741212368,-0.998484432697296,-0.536098301410675,0.843566477298737,-0.0315351933240891,-0.456508964300156,0.889405429363251,-0.0236125327646732,-0.794364988803864,0.605605006217957,-0.047189999371767,-0.784585237503052,0.619822382926941,0.0156917050480843,-0.536098301410675,0.843566477298737,-0.0315351933240891,-0.536098301410675,0.843566477298737,-0.0315351933240891,0,0.0550345741212368,-0.998484432697296,-0.031456109136343,0.039320133626461,-0.998731434345245,-0.794364988803864,0.605605006217957,-0.047189999371767,-0.536098301410675,0.843566477298737,-0.0315351933240891,-0.031456109136343,0.039320133626461,-0.998731434345245,-0.999102234840393,-0.0157338920980692,-0.0393347330391407,-0.998607933521271,0.047178328037262,-0.023589164018631,0.0314182415604591,0.0628364831209183,-0.997529208660126,0.0314182415604591,0.0628364831209183,-0.997529208660126,0.00786499958485365,-0.047189999371767,-0.998854994773865,-0.999102234840393,-0.0157338920980692,-0.0393347330391407,0.00786499958485365,-0.047189999371767,-0.998854994773865,-0.99894767999649,-0.0393286496400833,-0.0235971882939339,-0.999102234840393,-0.0157338920980692,-0.0393347330391407,0.0314182415604591,0.0628364831209183,-0.997529208660126,0.0553294867277145,-0.0711379051208496,-0.995930731296539,0.00786499958485365,-0.047189999371767,-0.998854994773865,0.00786499958485365,-0.047189999371767,-0.998854994773865,-0.220151916146278,-0.974958479404449,-0.0314502716064453,
- -0.99894767999649,-0.0393286496400833,-0.0235971882939339,0.0553294867277145,-0.0711379051208496,-0.995930731296539,-0.220151916146278,-0.974958479404449,-0.0314502716064453,0.00786499958485365,-0.047189999371767,-0.998854994773865,-0.999102234840393,-0.0393347330391407,0.0157338920980692,-0.99894767999649,-0.0393286496400833,-0.0235971882939339,-0.220151916146278,-0.974958479404449,-0.0314502716064453,0.0553294867277145,-0.0711379051208496,-0.995930731296539,0.0314182415604591,0.0628364831209183,-0.997529208660126,0.0789952501654625,-0.0552966743707657,-0.995340168476105,0.0789952501654625,-0.0552966743707657,-0.995340168476105,0.0314182415604591,0.0628364831209183,-0.997529208660126,0.0706104934215546,0.0470736660063267,-0.996392607688904,0.0789952501654625,-0.0552966743707657,-0.995340168476105,0.0706104934215546,0.0470736660063267,-0.996392607688904,-0.00786183960735798,0.0550328753888607,-0.998453617095947,-0.220151916146278,-0.974958479404449,-0.0314502716064453,0.0553294867277145,-0.0711379051208496,-0.995930731296539,-0.173072829842567,-0.983368337154388,-0.0550686232745647,0.0553294867277145,-0.0711379051208496,-0.995930731296539,0.0789952501654625,-0.0552966743707657,-0.995340168476105,-0.173072829842567,-0.983368337154388,-0.0550686232745647,-0.173249840736389,-0.984374046325684,-0.0314999707043171,-0.220151916146278,-0.974958479404449,-0.0314502716064453,-0.173072829842567,-0.983368337154388,-0.0550686232745647,-0.173072829842567,-0.983368337154388,-0.0550686232745647,0.0789952501654625,-0.0552966743707657,-0.995340168476105,-0.173249840736389,-0.984374046325684,-0.0314999707043171,-0.999102234840393,-0.0393347330391407,0.0157338920980692,-0.220151916146278,-0.974958479404449,-0.0314502716064453,-0.220233619213104,-0.975320279598236,0.0157309714704752,-0.220151916146278,-0.974958479404449,-0.0314502716064453,-0.173249840736389,-0.984374046325684,-0.0314999707043171,-0.220233619213104,-0.975320279598236,0.0157309714704752,-0.0314454175531864,-0.0471681281924248,0.99839198589325,-0.999102234840393,-0.0393347330391407,0.0157338920980692,
- -0.220233619213104,-0.975320279598236,0.0157309714704752,-0.0314454175531864,-0.0471681281924248,0.99839198589325,-0.998731434345245,0.039320133626461,0.031456109136343,-0.999102234840393,-0.0393347330391407,0.0157338920980692,-0.197580605745316,-0.979999899864197,0.0237096734344959,-0.220233619213104,-0.975320279598236,0.0157309714704752,-0.173249840736389,-0.984374046325684,-0.0314999707043171,-0.220233619213104,-0.975320279598236,0.0157309714704752,-0.197580605745316,-0.979999899864197,0.0237096734344959,-0.0314454175531864,-0.0471681281924248,0.99839198589325,-0.173249840736389,-0.984374046325684,-0.0314999707043171,0.0789952501654625,-0.0552966743707657,-0.995340168476105,-0.921688616275787,-0.157553613185883,-0.354495644569397,-0.00786183960735798,0.0550328753888607,-0.998453617095947,-0.921688616275787,-0.157553613185883,-0.354495644569397,0.0789952501654625,-0.0552966743707657,-0.995340168476105,-0.173249840736389,-0.984374046325684,-0.0314999707043171,-0.986179888248444,-0.165678218007088,-3.6787954462067e-017,-0.197580605745316,-0.979999899864197,0.0237096734344959,-0.921688616275787,-0.157553613185883,-0.354495644569397,-0.986179888248444,-0.165678218007088,-3.6787954462067e-017,-0.173249840736389,-0.984374046325684,-0.0314999707043171,-0.00786183960735798,0.0550328753888607,-0.998453617095947,-0.0628500655293465,-0.0235687755048275,-0.997744739055634,-0.921688616275787,-0.157553613185883,-0.354495644569397,0.0393347330391407,0.0157338920980692,-0.999102234840393,-0.0628500655293465,-0.0235687755048275,-0.997744739055634,-0.00786183960735798,0.0550328753888607,-0.998453617095947,-0.596817791461945,-0.80099231004715,-0.0471171997487545,-0.986179888248444,-0.165678218007088,-3.6787954462067e-017,-0.921688616275787,-0.157553613185883,-0.354495644569397,-0.921688616275787,-0.157553613185883,-0.354495644569397,-0.0628500655293465,-0.0235687755048275,-0.997744739055634,-0.596817791461945,-0.80099231004715,-0.0471171997487545,-0.986179888248444,-0.165678218007088,-3.6787954462067e-017,-0.031476553529501,-0.0157382767647505,0.999380588531494,
- -0.197580605745316,-0.979999899864197,0.0237096734344959,-0.031476553529501,-0.0157382767647505,0.999380588531494,-0.0314454175531864,-0.0471681281924248,0.99839198589325,-0.197580605745316,-0.979999899864197,0.0237096734344959,-0.986179888248444,-0.165678218007088,-3.6787954462067e-017,-0.596817791461945,-0.80099231004715,-0.0471171997487545,-0.583401083946228,-0.812031149864197,0.0157675947993994,-0.583401083946228,-0.812031149864197,0.0157675947993994,-0.031476553529501,-0.0157382767647505,0.999380588531494,-0.986179888248444,-0.165678218007088,-3.6787954462067e-017,-0.0628500655293465,-0.0235687755048275,-0.997744739055634,-0.471856266260147,-0.88079833984375,-0.0393213555216789,-0.596817791461945,-0.80099231004715,-0.0471171997487545,-0.583401083946228,-0.812031149864197,0.0157675947993994,-0.596817791461945,-0.80099231004715,-0.0471171997487545,-0.471856266260147,-0.88079833984375,-0.0393213555216789,-0.031456109136343,-0.039320133626461,-0.998731434345245,-0.0628500655293465,-0.0235687755048275,-0.997744739055634,0.0393347330391407,0.0157338920980692,-0.999102234840393,-0.471856266260147,-0.88079833984375,-0.0393213555216789,-0.0628500655293465,-0.0235687755048275,-0.997744739055634,-0.031456109136343,-0.039320133626461,-0.998731434345245,0.0550277717411518,-0.0157222207635641,-0.998361051082611,-0.031456109136343,-0.039320133626461,-0.998731434345245,0.0393347330391407,0.0157338920980692,-0.999102234840393,-0.471856266260147,-0.88079833984375,-0.0393213555216789,-0.456622123718262,-0.889625906944275,0.00787279568612576,-0.583401083946228,-0.812031149864197,0.0157675947993994,-0.031456109136343,-0.039320133626461,-0.998731434345245,0.0550277717411518,-0.0157222207635641,-0.998361051082611,-0.0393347330391407,-0.0157338920980692,-0.999102234840393,0.0550277717411518,-0.0157222207635641,-0.998361051082611,0.102626599371433,0.00789435394108295,-0.994688630104065,-0.0393347330391407,-0.0157338920980692,-0.999102234840393,-0.031456109136343,-0.039320133626461,-0.998731434345245,0.0314648635685444,-0.999009490013123,-0.0314648635685444,
- -0.471856266260147,-0.88079833984375,-0.0393213555216789,0.0314648635685444,-0.999009490013123,-0.0314648635685444,-0.456622123718262,-0.889625906944275,0.00787279568612576,-0.471856266260147,-0.88079833984375,-0.0393213555216789,0.102626599371433,0.00789435394108295,-0.994688630104065,0.0628364831209183,0.0314182415604591,-0.997529208660126,-0.0393347330391407,-0.0157338920980692,-0.999102234840393,0.0314648635685444,-0.999009490013123,-0.0314648635685444,-0.031456109136343,-0.039320133626461,-0.998731434345245,-0.818086445331573,-0.574233829975128,-0.0314648672938347,-0.0393347330391407,-0.0157338920980692,-0.999102234840393,-0.818086445331573,-0.574233829975128,-0.0314648672938347,-0.031456109136343,-0.039320133626461,-0.998731434345245,-0.456622123718262,-0.889625906944275,0.00787279568612576,0.0314648635685444,-0.999009490013123,-0.0314648635685444,-0.817858874797821,-0.574074029922485,0.0393201373517513,0.0314648635685444,-0.999009490013123,-0.0314648635685444,-0.818086445331573,-0.574233829975128,-0.0314648672938347,-0.817858874797821,-0.574074029922485,0.0393201373517513,-0.583401083946228,-0.812031149864197,0.0157675947993994,-0.456622123718262,-0.889625906944275,0.00787279568612576,-0.0157416891306639,-0.0236125327646732,0.999597251415253,-0.817858874797821,-0.574074029922485,0.0393201373517513,-0.0157416891306639,-0.0236125327646732,0.999597251415253,-0.456622123718262,-0.889625906944275,0.00787279568612576,-0.0157416891306639,-0.0236125327646732,0.999597251415253,-0.031476553529501,-0.0157382767647505,0.999380588531494,-0.583401083946228,-0.812031149864197,0.0157675947993994,-0.817858874797821,-0.574074029922485,0.0393201373517513,-0.818086445331573,-0.574233829975128,-0.0314648672938347,-0.794635474681854,-0.605811178684235,-0.0393383875489235,-0.818086445331573,-0.574233829975128,-0.0314648672938347,-0.0393347330391407,-0.0157338920980692,-0.999102234840393,-0.794635474681854,-0.605811178684235,-0.0393383875489235,-0.794635474681854,-0.605811178684235,-0.0393383875489235,-0.801264047622681,-0.597020268440247,0.0392776504158974,
- -0.817858874797821,-0.574074029922485,0.0393201373517513,-0.0314794778823853,-0.00786986947059631,0.999473392963409,-0.817858874797821,-0.574074029922485,0.0393201373517513,-0.801264047622681,-0.597020268440247,0.0392776504158974,-0.817858874797821,-0.574074029922485,0.0393201373517513,-0.0314794778823853,-0.00786986947059631,0.999473392963409,-0.0157416891306639,-0.0236125327646732,0.999597251415253,-0.794635474681854,-0.605811178684235,-0.0393383875489235,-0.97324526309967,-0.227613806724548,0.0313950069248676,-0.801264047622681,-0.597020268440247,0.0392776504158974,-0.0314794778823853,-0.00786986947059631,0.999473392963409,-0.801264047622681,-0.597020268440247,0.0392776504158974,-0.97324526309967,-0.227613806724548,0.0313950069248676,-0.0393347330391407,-0.0157338920980692,-0.999102234840393,-0.978442788124084,-0.205157354474068,-0.0236720032989979,-0.794635474681854,-0.605811178684235,-0.0393383875489235,-0.794635474681854,-0.605811178684235,-0.0393383875489235,-0.978442788124084,-0.205157354474068,-0.0236720032989979,-0.97324526309967,-0.227613806724548,0.0313950069248676,-0.996638000011444,-0.0784754380583763,-0.0235426295548677,-0.978442788124084,-0.205157354474068,-0.0236720032989979,-0.0393347330391407,-0.0157338920980692,-0.999102234840393,-0.97324526309967,-0.227613806724548,0.0313950069248676,-0.978442788124084,-0.205157354474068,-0.0236720032989979,-0.951311945915222,-0.306621193885803,0.0314483270049095,-0.951311945915222,-0.306621193885803,0.0314483270049095,-0.978442788124084,-0.205157354474068,-0.0236720032989979,-0.996638000011444,-0.0784754380583763,-0.0235426295548677,-0.97324526309967,-0.227613806724548,0.0313950069248676,-0.951311945915222,-0.306621193885803,0.0314483270049095,-0.0550328753888607,-0.00786183960735798,0.998453617095947,-0.0550328753888607,-0.00786183960735798,0.998453617095947,-0.0314794778823853,-0.00786986947059631,0.999473392963409,-0.97324526309967,-0.227613806724548,0.0313950069248676,-0.951311945915222,-0.306621193885803,0.0314483270049095,-0.996638000011444,-0.0784754380583763,-0.0235426295548677,
- -0.999721229076386,-5.243686086563e-018,0.023615462705493,-0.0550328753888607,-0.00786183960735798,0.998453617095947,-0.951311945915222,-0.306621193885803,0.0314483270049095,-0.999721229076386,-5.243686086563e-018,0.023615462705493,-0.996638000011444,-0.0784754380583763,-0.0235426295548677,-0.0393347330391407,-0.0157338920980692,-0.999102234840393,-0.0550345741212368,2.21708081382065e-016,-0.998484432697296,-0.0550345741212368,2.21708081382065e-016,-0.998484432697296,-0.0393347330391407,-0.0157338920980692,-0.999102234840393,0.0628364831209183,0.0314182415604591,-0.997529208660126,0.0393091961741447,-0.0393091961741447,-0.998453617095947,-0.0550345741212368,2.21708081382065e-016,-0.998484432697296,0.0628364831209183,0.0314182415604591,-0.997529208660126,0.0236088763922453,0.0236088763922453,-0.999442458152771,-0.0550345741212368,2.21708081382065e-016,-0.998484432697296,0.0393091961741447,-0.0393091961741447,-0.998453617095947,0.0156975034624338,-0.0784875229001045,-0.996791481971741,-0.0550345741212368,2.21708081382065e-016,-0.998484432697296,0.0236088763922453,0.0236088763922453,-0.999442458152771,-0.999721229076386,-5.243686086563e-018,0.023615462705493,-0.996638000011444,-0.0784754380583763,-0.0235426295548677,-0.999473392963409,0.00786986947059631,0.0314794778823853,-0.999473392963409,0.00786986947059631,0.0314794778823853,-0.0550328753888607,-0.00786183960735798,0.998453617095947,-0.999721229076386,-5.243686086563e-018,0.023615462705493,-0.0550345741212368,2.21708081382065e-016,-0.998484432697296,-0.999102234840393,0.0157338920980692,-0.0393347330391407,-0.996638000011444,-0.0784754380583763,-0.0235426295548677,-0.999473392963409,0.00786986947059631,0.0314794778823853,-0.996638000011444,-0.0784754380583763,-0.0235426295548677,-0.999102234840393,0.0157338920980692,-0.0393347330391407,0.0156975034624338,-0.0784875229001045,-0.996791481971741,-0.0471550077199936,-0.0392958410084248,-0.998114347457886,-0.0550345741212368,2.21708081382065e-016,-0.998484432697296,-0.999102234840393,0.0157338920980692,-0.0393347330391407,
- -0.0550345741212368,2.21708081382065e-016,-0.998484432697296,-0.0471550077199936,-0.0392958410084248,-0.998114347457886,0.0156975034624338,-0.0784875229001045,-0.996791481971741,-0.0395013242959976,-0.995433330535889,-0.086902916431427,-0.0471550077199936,-0.0392958410084248,-0.998114347457886,-0.999102234840393,0.0157338920980692,-0.0393347330391407,-0.0471550077199936,-0.0392958410084248,-0.998114347457886,-0.0395013242959976,-0.995433330535889,-0.086902916431427,-0.0395013242959976,-0.995433330535889,-0.086902916431427,0.0156975034624338,-0.0784875229001045,-0.996791481971741,0.0236125327646732,-0.999597251415253,-0.0157416891306639,-0.0395013242959976,-0.995433330535889,-0.086902916431427,-0.999473392963409,0.00786986947059631,0.0314794778823853,-0.999102234840393,0.0157338920980692,-0.0393347330391407,-0.999473392963409,0.00786986947059631,0.0314794778823853,-0.0395013242959976,-0.995433330535889,-0.086902916431427,-0.0314804539084435,-0.999504387378693,-2.21934556816337e-016,-0.00786767713725567,-0.999194979667664,0.0393383838236332,-0.999473392963409,0.00786986947059631,0.0314794778823853,-0.0314804539084435,-0.999504387378693,-2.21934556816337e-016,-0.102626599371433,0.00789435394108295,0.994688630104065,-0.999473392963409,0.00786986947059631,0.0314794778823853,-0.00786767713725567,-0.999194979667664,0.0393383838236332,-0.0550328753888607,-0.00786183960735798,0.998453617095947,-0.999473392963409,0.00786986947059631,0.0314794778823853,-0.102626599371433,0.00789435394108295,0.994688630104065,-0.00786767713725567,-0.999194979667664,0.0393383838236332,0,-0.999876022338867,0.0157460793852806,-0.102626599371433,0.00789435394108295,0.994688630104065,-0.0550328753888607,-0.00786183960735798,0.998453617095947,-0.102626599371433,0.00789435394108295,0.994688630104065,0.031476553529501,-0.0157382767647505,0.999380588531494,0.031476553529501,-0.0157382767647505,0.999380588531494,-0.102626599371433,0.00789435394108295,0.994688630104065,0,-0.999876022338867,0.0157460793852806,0.0393347330391407,0.0157338920980692,0.999102234840393,
- -0.0550328753888607,-0.00786183960735798,0.998453617095947,0.031476553529501,-0.0157382767647505,0.999380588531494,0.031476553529501,-0.0157382767647505,0.999380588531494,0,-0.999876022338867,0.0157460793852806,0.999597251415253,-0.0157416891306639,0.0236125327646732,0,-0.999876022338867,0.0157460793852806,0.0236125327646732,-0.999597251415253,-0.0157416891306639,0.999597251415253,-0.0157416891306639,0.0236125327646732,0.992495357990265,0.118154212832451,0.0315077900886536,0.0393347330391407,0.0157338920980692,0.999102234840393,0.031476553529501,-0.0157382767647505,0.999380588531494,0.992495357990265,0.118154212832451,0.0315077900886536,0.031476553529501,-0.0157382767647505,0.999380588531494,0.999597251415253,-0.0157416891306639,0.0236125327646732,-0.0550328753888607,-0.00786183960735798,0.998453617095947,0.0393347330391407,0.0157338920980692,0.999102234840393,0.0393286496400833,0.0235971882939339,0.99894767999649,0.0393286496400833,0.0235971882939339,0.99894767999649,0.0393347330391407,0.0157338920980692,0.999102234840393,0.992495357990265,0.118154212832451,0.0315077900886536,0.0393286496400833,0.0235971882939339,0.99894767999649,-0.0314794778823853,-0.00786986947059631,0.999473392963409,-0.0550328753888607,-0.00786183960735798,0.998453617095947,0.999597251415253,-0.0157416891306639,0.0236125327646732,0.0236125327646732,-0.999597251415253,-0.0157416891306639,0.999504387378693,6.99006495096098e-018,-0.0314804539084435,0.999597251415253,-0.0157416891306639,0.0236125327646732,0.999504387378693,6.99006495096098e-018,-0.0314804539084435,0.992495357990265,0.118154212832451,0.0315077900886536,0.0236125327646732,-0.999597251415253,-0.0157416891306639,0.0156975034624338,-0.0784875229001045,-0.996791481971741,0.999504387378693,6.99006495096098e-018,-0.0314804539084435,0.0156975034624338,-0.0784875229001045,-0.996791481971741,0.0236088763922453,0.0236088763922453,-0.999442458152771,0.999504387378693,6.99006495096098e-018,-0.0314804539084435,0.999504387378693,6.99006495096098e-018,-0.0314804539084435,0.0236088763922453,0.0236088763922453,-0.999442458152771,
- 0.998731434345245,0.039320133626461,-0.031456109136343,0.992495357990265,0.118154212832451,0.0315077900886536,0.999504387378693,6.99006495096098e-018,-0.0314804539084435,0.998731434345245,0.039320133626461,-0.031456109136343,0.998731434345245,0.039320133626461,-0.031456109136343,0.0236088763922453,0.0236088763922453,-0.999442458152771,0.173072829842567,-0.0550686232745647,-0.983368337154388,0.173072829842567,-0.0550686232745647,-0.983368337154388,0.99422413110733,0.102578677237034,-0.0315626710653305,0.998731434345245,0.039320133626461,-0.031456109136343,0.992495357990265,0.118154212832451,0.0315077900886536,0.998731434345245,0.039320133626461,-0.031456109136343,0.99422413110733,0.102578677237034,-0.0315626710653305,0.99422413110733,0.102578677237034,-0.0315626710653305,0.173072829842567,-0.0550686232745647,-0.983368337154388,0.346113532781601,0.0629297345876694,-0.936079740524292,0.212697386741638,0.0236330423504114,-0.976832389831543,0.99422413110733,0.102578677237034,-0.0315626710653305,0.346113532781601,0.0629297345876694,-0.936079740524292,0.992495357990265,0.118154212832451,0.0315077900886536,0.99422413110733,0.102578677237034,-0.0315626710653305,0.967305243015289,0.251656651496887,-0.0314570814371109,0.99422413110733,0.102578677237034,-0.0315626710653305,0.212697386741638,0.0236330423504114,-0.976832389831543,0.967305243015289,0.251656651496887,-0.0314570814371109,0.95899623632431,0.282982468605042,0.0157212484627962,0.992495357990265,0.118154212832451,0.0315077900886536,0.967305243015289,0.251656651496887,-0.0314570814371109,0.0393286496400833,0.0235971882939339,0.99894767999649,0.992495357990265,0.118154212832451,0.0315077900886536,0.95899623632431,0.282982468605042,0.0157212484627962,0.212697386741638,0.0236330423504114,-0.976832389831543,0.808296978473663,0.588565766811371,-0.0156950876116753,0.967305243015289,0.251656651496887,-0.0314570814371109,0.95899623632431,0.282982468605042,0.0157212484627962,0.967305243015289,0.251656651496887,-0.0314570814371109,0.808296978473663,0.588565766811371,-0.0156950876116753,
- 0.808296978473663,0.588565766811371,-0.0156950876116753,0.212697386741638,0.0236330423504114,-0.976832389831543,0.0550277717411518,-0.0157222207635641,-0.998361051082611,0.173298224806786,0.126035064458847,-0.976771771907806,0.808296978473663,0.588565766811371,-0.0156950876116753,0.0550277717411518,-0.0157222207635641,-0.998361051082611,0.0393286496400833,0.0235971882939339,0.99894767999649,0.95899623632431,0.282982468605042,0.0157212484627962,0.811728477478027,0.583183646202087,0.0315234363079071,0.811728477478027,0.583183646202087,0.0315234363079071,0.95899623632431,0.282982468605042,0.0157212484627962,0.808296978473663,0.588565766811371,-0.0156950876116753,0.811728477478027,0.583183646202087,0.0315234363079071,0.0393091961741447,0.0393091961741447,0.998453617095947,0.0393286496400833,0.0235971882939339,0.99894767999649,0.0393091961741447,0.0393091961741447,0.998453617095947,-0.0314794778823853,-0.00786986947059631,0.999473392963409,0.0393286496400833,0.0235971882939339,0.99894767999649,-0.0314794778823853,-0.00786986947059631,0.999473392963409,0.0393091961741447,0.0393091961741447,0.998453617095947,-0.0157416891306639,-0.0236125327646732,0.999597251415253,0.76718807220459,0.640641570091248,0.0316366218030453,0.811728477478027,0.583183646202087,0.0315234363079071,0.808296978473663,0.588565766811371,-0.0156950876116753,0.0393091961741447,0.0393091961741447,0.998453617095947,0.811728477478027,0.583183646202087,0.0315234363079071,0.76718807220459,0.640641570091248,0.0316366218030453,0.674826383590698,0.737600982189178,-0.0235404558479786,0.808296978473663,0.588565766811371,-0.0156950876116753,0.173298224806786,0.126035064458847,-0.976771771907806,0.76718807220459,0.640641570091248,0.0316366218030453,0.808296978473663,0.588565766811371,-0.0156950876116753,0.674826383590698,0.737600982189178,-0.0235404558479786,0.0393091961741447,0.0393091961741447,0.998453617095947,0.149806126952171,0.0788453295826912,0.98556661605835,-0.0157416891306639,-0.0236125327646732,0.999597251415253,0.0393091961741447,0.0393091961741447,0.998453617095947,
- 0.76718807220459,0.640641570091248,0.0316366218030453,0.149806126952171,0.0788453295826912,0.98556661605835,0.031456109136343,0.039320133626461,0.998731434345245,-0.0157416891306639,-0.0236125327646732,0.999597251415253,0.149806126952171,0.0788453295826912,0.98556661605835,0.031456109136343,0.039320133626461,0.998731434345245,-0.031476553529501,-0.0157382767647505,0.999380588531494,-0.0157416891306639,-0.0236125327646732,0.999597251415253,0.541881144046783,0.840308487415314,0.0157067012041807,0.149806126952171,0.0788453295826912,0.98556661605835,0.76718807220459,0.640641570091248,0.0316366218030453,0.031456109136343,0.039320133626461,0.998731434345245,0.149806126952171,0.0788453295826912,0.98556661605835,0.541881144046783,0.840308487415314,0.0157067012041807,0.541881144046783,0.840308487415314,0.0157067012041807,0.76718807220459,0.640641570091248,0.0316366218030453,0.674826383590698,0.737600982189178,-0.0235404558479786,-0.031476553529501,-0.0157382767647505,0.999380588531494,0.031456109136343,0.039320133626461,0.998731434345245,0.00786183960735798,0.0550328753888607,0.998453617095947,0.00786183960735798,0.0550328753888607,0.998453617095947,-0.0314454175531864,-0.0471681281924248,0.99839198589325,-0.031476553529501,-0.0157382767647505,0.999380588531494,0.541881144046783,0.840308487415314,0.0157067012041807,0.3535315990448,0.934894561767578,0.0314250290393829,0.031456109136343,0.039320133626461,0.998731434345245,0.031456109136343,0.039320133626461,0.998731434345245,0.3535315990448,0.934894561767578,0.0314250290393829,0.00786183960735798,0.0550328753888607,0.998453617095947,-0.0314454175531864,-0.0471681281924248,0.99839198589325,0.00786183960735798,0.0550328753888607,0.998453617095947,-0.00785407610237598,0.0706866830587387,0.997467637062073,0.3535315990448,0.934894561767578,0.0314250290393829,-0.00785407610237598,0.0706866830587387,0.997467637062073,0.00786183960735798,0.0550328753888607,0.998453617095947,-0.0314454175531864,-0.0471681281924248,0.99839198589325,-0.00785407610237598,0.0706866830587387,0.997467637062073,
- -0.998731434345245,0.039320133626461,0.031456109136343,0.205112636089325,0.978229522705078,0.0315557904541492,-0.998731434345245,0.039320133626461,0.031456109136343,-0.00785407610237598,0.0706866830587387,0.997467637062073,-0.00785407610237598,0.0706866830587387,0.997467637062073,0.3535315990448,0.934894561767578,0.0314250290393829,0.205112636089325,0.978229522705078,0.0315557904541492,0.205112636089325,0.978229522705078,0.0315557904541492,-0.998607933521271,0.047178328037262,-0.023589164018631,-0.998731434345245,0.039320133626461,0.031456109136343,0.55971485376358,0.827747464179993,-0.0394165441393852,0.3535315990448,0.934894561767578,0.0314250290393829,0.541881144046783,0.840308487415314,0.0157067012041807,0.541881144046783,0.840308487415314,0.0157067012041807,0.674826383590698,0.737600982189178,-0.0235404558479786,0.55971485376358,0.827747464179993,-0.0394165441393852,0.173298224806786,0.126035064458847,-0.976771771907806,0.55971485376358,0.827747464179993,-0.0394165441393852,0.674826383590698,0.737600982189178,-0.0235404558479786,0.55971485376358,0.827747464179993,-0.0394165441393852,0.173298224806786,0.126035064458847,-0.976771771907806,0,0.165678218007088,-0.986179888248444,0.55971485376358,0.827747464179993,-0.0394165441393852,0,0.165678218007088,-0.986179888248444,0.0706104934215546,0.0470736660063267,-0.996392607688904,0.55971485376358,0.827747464179993,-0.0394165441393852,0.283008694648743,0.95908510684967,-0.00786135345697403,0.3535315990448,0.934894561767578,0.0314250290393829,0.283008694648743,0.95908510684967,-0.00786135345697403,0.55971485376358,0.827747464179993,-0.0394165441393852,0.0706104934215546,0.0470736660063267,-0.996392607688904,0.283008694648743,0.95908510684967,-0.00786135345697403,0.205112636089325,0.978229522705078,0.0315557904541492,0.3535315990448,0.934894561767578,0.0314250290393829,0.0706104934215546,0.0470736660063267,-0.996392607688904,0.212756782770157,0.97710520029068,2.16960938168738e-016,0.283008694648743,0.95908510684967,-0.00786135345697403,0.205112636089325,0.978229522705078,0.0315557904541492,
- 0.283008694648743,0.95908510684967,-0.00786135345697403,0.212756782770157,0.97710520029068,2.16960938168738e-016,-0.998607933521271,0.047178328037262,-0.023589164018631,0.205112636089325,0.978229522705078,0.0315557904541492,0.212756782770157,0.97710520029068,2.16960938168738e-016,0.212756782770157,0.97710520029068,2.16960938168738e-016,0.0706104934215546,0.0470736660063267,-0.996392607688904,0.0314182415604591,0.0628364831209183,-0.997529208660126,-0.998607933521271,0.047178328037262,-0.023589164018631,0.212756782770157,0.97710520029068,2.16960938168738e-016,0.0314182415604591,0.0628364831209183,-0.997529208660126,0.0706801414489746,0.0157066993415356,-0.99737536907196,0.996975898742676,0.0549514293670654,-0.0549514293670654,0.0628655776381493,-0.00785819720476866,-0.99799108505249,0.996975898742676,0.0549514293670654,-0.0549514293670654,0.0706801414489746,0.0157066993415356,-0.99737536907196,0.998731434345245,0.031456109136343,-0.039320133626461,0.0706801414489746,0.0157066993415356,-0.99737536907196,0.165426135063171,-0.0551420450210571,-0.984679400920868,0.998731434345245,0.031456109136343,-0.039320133626461,0.165426135063171,-0.0551420450210571,-0.984679400920868,0.999845147132874,-0.00787279661744833,-0.0157455932348967,0.998731434345245,0.031456109136343,-0.039320133626461,0.165426135063171,-0.0551420450210571,-0.984679400920868,0.157990500330925,2.19255868060205e-016,-0.987440645694733,0.999845147132874,-0.00787279661744833,-0.0157455932348967,0.999442577362061,0.0236088801175356,0.0236088801175356,0.996975898742676,0.0549514293670654,-0.0549514293670654,0.998731434345245,0.031456109136343,-0.039320133626461,0.999845147132874,-0.00787279661744833,-0.0157455932348967,0.157990500330925,2.19255868060205e-016,-0.987440645694733,0.999845147132874,0.00787279661744833,-0.0157455932348967,0.998206853866577,0.055019274353981,0.0235796887427568,0.998731434345245,0.031456109136343,-0.039320133626461,0.999845147132874,-0.00787279661744833,-0.0157455932348967,0.998206853866577,0.055019274353981,0.0235796887427568,0.999442577362061,0.0236088801175356,0.0236088801175356,
- 0.998731434345245,0.031456109136343,-0.039320133626461,0.991542160511017,-0.125910118222237,-0.0314775295555592,0.999845147132874,0.00787279661744833,-0.0157455932348967,0.157990500330925,2.19255868060205e-016,-0.987440645694733,0.0236147306859493,-0.00787157658487558,-0.999690234661102,0.991542160511017,-0.125910118222237,-0.0314775295555592,0.157990500330925,2.19255868060205e-016,-0.987440645694733,0.99839198589325,-0.0471681281924248,0.0314454175531864,0.999845147132874,-0.00787279661744833,-0.0157455932348967,0.999845147132874,0.00787279661744833,-0.0157455932348967,0.99839198589325,-0.0471681281924248,0.0314454175531864,0.999845147132874,0.00787279661744833,-0.0157455932348967,0.991542160511017,-0.125910118222237,-0.0314775295555592,0.99839198589325,-0.0471681281924248,0.0314454175531864,0.998206853866577,0.055019274353981,0.0235796887427568,0.999845147132874,-0.00787279661744833,-0.0157455932348967,0.0236147306859493,-0.00787157658487558,-0.999690234661102,0.999473392963409,0.0314794778823853,-0.00786986947059631,0.991542160511017,-0.125910118222237,-0.0314775295555592,0.99839198589325,-0.0471681281924248,0.0314454175531864,0.991542160511017,-0.125910118222237,-0.0314775295555592,0.999473392963409,0.0314794778823853,-0.00786986947059631,0.999473392963409,0.0314794778823853,-0.00786986947059631,0.0236147306859493,-0.00787157658487558,-0.999690234661102,0.188532739877701,-0.0157110616564751,-0.981941342353821,0.0471856184303761,-0.0157285407185555,-0.998762309551239,0.999473392963409,0.0314794778823853,-0.00786986947059631,0.188532739877701,-0.0157110616564751,-0.981941342353821,0.0393347330391407,0.999102234840393,-0.0157338920980692,0.999473392963409,0.0314794778823853,-0.00786986947059631,0.0471856184303761,-0.0157285407185555,-0.998762309551239,0.0393347330391407,0.999102234840393,-0.0157338920980692,0.998453617095947,0.0393091961741447,0.0393091961741447,0.999473392963409,0.0314794778823853,-0.00786986947059631,0.999473392963409,0.0314794778823853,-0.00786986947059631,0.998453617095947,0.0393091961741447,0.0393091961741447,
- 0.99839198589325,-0.0471681281924248,0.0314454175531864,0.998453617095947,0.0393091961741447,0.0393091961741447,0.0393347330391407,0.999102234840393,-0.0157338920980692,0.0314716808497906,0.999225914478302,0.0236037615686655,0.0471856184303761,0.0157285407185555,0.998762309551239,0.99839198589325,-0.0471681281924248,0.0314454175531864,0.998453617095947,0.0393091961741447,0.0393091961741447,0.998453617095947,0.0393091961741447,0.0393091961741447,0.0314716808497906,0.999225914478302,0.0236037615686655,0.0471856184303761,0.0157285407185555,0.998762309551239,0.0393396019935608,-2.21872723411188e-016,0.999225914478302,0.998206853866577,0.055019274353981,0.0235796887427568,0.99839198589325,-0.0471681281924248,0.0314454175531864,0.99839198589325,-0.0471681281924248,0.0314454175531864,0.0471856184303761,0.0157285407185555,0.998762309551239,0.0393396019935608,-2.21872723411188e-016,0.999225914478302,0.0393396019935608,-2.21872723411188e-016,0.999225914478302,0.999442577362061,0.0236088801175356,0.0236088801175356,0.998206853866577,0.055019274353981,0.0235796887427568,-0.0550073832273483,0.0314327888190746,0.99799108505249,0.0471856184303761,0.0157285407185555,0.998762309551239,0.0314716808497906,0.999225914478302,0.0236037615686655,0.0471856184303761,0.0157285407185555,0.998762309551239,-0.0550073832273483,0.0314327888190746,0.99799108505249,0.0393396019935608,-2.21872723411188e-016,0.999225914478302,-0.0550073832273483,0.0314327888190746,0.99799108505249,0.0314716808497906,0.999225914478302,0.0236037615686655,-0.047178328037262,0.998607933521271,0.023589164018631,0.0393383838236332,-0.00786767713725567,0.999194979667664,0.999442577362061,0.0236088801175356,0.0236088801175356,0.0393396019935608,-2.21872723411188e-016,0.999225914478302,0.0393396019935608,-2.21872723411188e-016,0.999225914478302,-0.0550073832273483,0.0314327888190746,0.99799108505249,-0.047189999371767,0.00786499958485365,0.998854994773865,0.0393396019935608,-2.21872723411188e-016,0.999225914478302,-0.047189999371767,0.00786499958485365,0.998854994773865,0.0393383838236332,-0.00786767713725567,0.999194979667664,
- -0.0550073832273483,0.0314327888190746,0.99799108505249,-0.047178328037262,0.998607933521271,0.023589164018631,-0.999597251415253,0.0157416891306639,0.0236125327646732,-0.99894767999649,0.0393286496400833,0.0235971882939339,-0.047189999371767,0.00786499958485365,0.998854994773865,-0.0550073832273483,0.0314327888190746,0.99799108505249,-0.999597251415253,0.0157416891306639,0.0236125327646732,-0.99894767999649,0.0393286496400833,0.0235971882939339,-0.0550073832273483,0.0314327888190746,0.99799108505249,-0.047178328037262,0.998607933521271,0.023589164018631,-0.999225914478302,0.0314716808497906,-0.0236037615686655,-0.999597251415253,0.0157416891306639,0.0236125327646732,-0.047178328037262,0.998607933521271,0.023589164018631,-0.0628364831209183,0.997529208660126,-0.0314182415604591,-0.999225914478302,0.0314716808497906,-0.0236037615686655,-0.999597251415253,0.0157416891306639,0.0236125327646732,-0.999225914478302,0.0314716808497906,-0.0236037615686655,-0.99894767999649,-0.0235971882939339,-0.0393286496400833,-0.0471856184303761,-0.0157285407185555,-0.998762309551239,-0.999225914478302,0.0314716808497906,-0.0236037615686655,-0.0628364831209183,0.997529208660126,-0.0314182415604591,-0.0471856184303761,-0.0157285407185555,-0.998762309551239,-0.0628364831209183,0.997529208660126,-0.0314182415604591,-0.0157338920980692,0.999102234840393,-0.0393347330391407,-0.999225914478302,0.0314716808497906,-0.0236037615686655,-0.0710669010877609,-0.0710669010877609,-0.99493670463562,-0.99894767999649,-0.0235971882939339,-0.0393286496400833,-0.0710669010877609,-0.0710669010877609,-0.99493670463562,-0.999225914478302,0.0314716808497906,-0.0236037615686655,-0.0471856184303761,-0.0157285407185555,-0.998762309551239,-0.999597251415253,0.0157416891306639,0.0236125327646732,-0.99894767999649,-0.0235971882939339,-0.0393286496400833,-0.99799108505249,0.00785819720476866,-0.0628655776381493,-0.0710669010877609,-0.0710669010877609,-0.99493670463562,-0.99799108505249,0.00785819720476866,-0.0628655776381493,-0.99894767999649,-0.0235971882939339,-0.0393286496400833,
- -0.99894767999649,0.0393286496400833,0.0235971882939339,-0.999597251415253,0.0157416891306639,0.0236125327646732,-0.99799108505249,0.00785819720476866,-0.0628655776381493,0.0471856184303761,-0.0157285407185555,-0.998762309551239,-0.0471856184303761,-0.0157285407185555,-0.998762309551239,-0.0157338920980692,0.999102234840393,-0.0393347330391407,0.0471856184303761,-0.0157285407185555,-0.998762309551239,-0.0710669010877609,-0.0710669010877609,-0.99493670463562,-0.0471856184303761,-0.0157285407185555,-0.998762309551239,-0.0157338920980692,0.999102234840393,-0.0393347330391407,0.0393347330391407,0.999102234840393,-0.0157338920980692,0.0471856184303761,-0.0157285407185555,-0.998762309551239,-0.0710669010877609,-0.0710669010877609,-0.99493670463562,0.0471856184303761,-0.0157285407185555,-0.998762309551239,-0.0315872617065907,-0.0947617813944817,-0.994998693466187,-0.99799108505249,0.00785819720476866,-0.0628655776381493,-0.0710669010877609,-0.0710669010877609,-0.99493670463562,-0.0315872617065907,-0.0947617813944817,-0.994998693466187,-0.0315872617065907,-0.0947617813944817,-0.994998693466187,0.0471856184303761,-0.0157285407185555,-0.998762309551239,0.0314794778823853,0.00786986947059631,-0.999473392963409,0.0314794778823853,0.00786986947059631,-0.999473392963409,-0.0627977550029755,0.0470983162522316,-0.996914327144623,-0.0315872617065907,-0.0947617813944817,-0.994998693466187,-0.99799108505249,0.00785819720476866,-0.0628655776381493,-0.0315872617065907,-0.0947617813944817,-0.994998693466187,-0.0627977550029755,0.0470983162522316,-0.996914327144623,0.0236147306859493,-0.00787157658487558,-0.999690234661102,-0.0627977550029755,0.0470983162522316,-0.996914327144623,0.0314794778823853,0.00786986947059631,-0.999473392963409,-0.99799108505249,0.00785819720476866,-0.0628655776381493,-0.0627977550029755,0.0470983162522316,-0.996914327144623,-0.998114347457886,0.0392958410084248,-0.0471550077199936,-0.998114347457886,0.0392958410084248,-0.0471550077199936,-0.99894767999649,0.0393286496400833,0.0235971882939339,-0.99799108505249,0.00785819720476866,-0.0628655776381493,
- -0.0627726167440414,-0.0549260377883911,-0.996515274047852,-0.0627977550029755,0.0470983162522316,-0.996914327144623,0.0236147306859493,-0.00787157658487558,-0.999690234661102,-0.0627726167440414,-0.0549260377883911,-0.996515274047852,-0.998114347457886,0.0392958410084248,-0.0471550077199936,-0.0627977550029755,0.0470983162522316,-0.996914327144623,-0.0627726167440414,-0.0549260377883911,-0.996515274047852,0.0236147306859493,-0.00787157658487558,-0.999690234661102,0.0157416891306639,-0.0236125327646732,-0.999597251415253,0.023589164018631,-0.047178328037262,-0.998607933521271,-0.0627726167440414,-0.0549260377883911,-0.996515274047852,0.0157416891306639,-0.0236125327646732,-0.999597251415253,-0.998114347457886,0.0392958410084248,-0.0471550077199936,-0.998731434345245,-0.031456109136343,0.039320133626461,-0.99894767999649,0.0393286496400833,0.0235971882939339,-0.047189999371767,0.00786499958485365,0.998854994773865,-0.99894767999649,0.0393286496400833,0.0235971882939339,-0.998731434345245,-0.031456109136343,0.039320133626461,-0.998114347457886,0.0392958410084248,-0.0471550077199936,-0.0627726167440414,-0.0549260377883911,-0.996515274047852,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.998731434345245,-0.031456109136343,0.039320133626461,-0.998114347457886,0.0392958410084248,-0.0471550077199936,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.0078735277056694,-0.0078735277056694,-0.999938011169434,-0.0627726167440414,-0.0549260377883911,-0.996515274047852,0.023589164018631,-0.047178328037262,-0.998607933521271,-0.0078735277056694,-0.0078735277056694,-0.999938011169434,0.023589164018631,-0.047178328037262,-0.998607933521271,0.0706801414489746,0.0157066993415356,-0.99737536907196,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.0627726167440414,-0.0549260377883911,-0.996515274047852,-0.654009759426117,-0.756445050239563,-0.00787963625043631,-0.998731434345245,-0.031456109136343,0.039320133626461,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.654009759426117,-0.756445050239563,-0.00787963625043631,
- -0.654009759426117,-0.756445050239563,-0.00787963625043631,-0.0627726167440414,-0.0549260377883911,-0.996515274047852,-0.0078735277056694,-0.0078735277056694,-0.999938011169434,0.0628655776381493,-0.00785819720476866,-0.99799108505249,-0.0078735277056694,-0.0078735277056694,-0.999938011169434,0.0706801414489746,0.0157066993415356,-0.99737536907196,-0.654009759426117,-0.756445050239563,-0.00787963625043631,-0.999504387378693,-6.99006495096098e-018,0.0314804539084435,-0.998731434345245,-0.031456109136343,0.039320133626461,-0.047189999371767,0.00786499958485365,0.998854994773865,-0.998731434345245,-0.031456109136343,0.039320133626461,-0.999504387378693,-6.99006495096098e-018,0.0314804539084435,-0.0078735277056694,-0.0078735277056694,-0.999938011169434,-0.999442577362061,0.0236088801175356,-0.0236088801175356,-0.654009759426117,-0.756445050239563,-0.00787963625043631,-0.654009759426117,-0.756445050239563,-0.00787963625043631,-0.999442577362061,0.0236088801175356,-0.0236088801175356,-0.999504387378693,-6.99006495096098e-018,0.0314804539084435,-0.0078735277056694,-0.0078735277056694,-0.999938011169434,0.0628655776381493,-0.00785819720476866,-0.99799108505249,-0.0393383838236332,0.00786767713725567,-0.999194979667664,-0.0078735277056694,-0.0078735277056694,-0.999938011169434,-0.0393383838236332,0.00786767713725567,-0.999194979667664,-0.999442577362061,0.0236088801175356,-0.0236088801175356,-0.0393383838236332,0.00786767713725567,-0.999194979667664,0.0628655776381493,-0.00785819720476866,-0.99799108505249,-0.047189999371767,0.00786499958485365,-0.998854994773865,-0.047189999371767,0.00786499958485365,-0.998854994773865,0.0628655776381493,-0.00785819720476866,-0.99799108505249,0.0473513714969158,0.520865082740784,-0.852324724197388,0.0473513714969158,0.520865082740784,-0.852324724197388,0.0314794778823853,0.00786986947059631,-0.999473392963409,-0.047189999371767,0.00786499958485365,-0.998854994773865,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.999442577362061,0.0236088801175356,-0.0236088801175356,-0.0393383838236332,0.00786767713725567,-0.999194979667664,
- -0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.0393383838236332,0.00786767713725567,-0.999194979667664,-0.047189999371767,0.00786499958485365,-0.998854994773865,-0.999504387378693,-6.99006495096098e-018,0.0314804539084435,-0.999442577362061,0.0236088801175356,-0.0236088801175356,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,0.0314794778823853,0.00786986947059631,-0.999473392963409,-0.055019274353981,-0.0235796887427568,-0.998206853866577,-0.047189999371767,0.00786499958485365,-0.998854994773865,-0.055019274353981,-0.0235796887427568,-0.998206853866577,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.047189999371767,0.00786499958485365,-0.998854994773865,0.0314716808497906,-0.0236037615686655,-0.999225914478302,-0.055019274353981,-0.0235796887427568,-0.998206853866577,0.0314794778823853,0.00786986947059631,-0.999473392963409,-0.055019274353981,-0.0235796887427568,-0.998206853866577,0.0314716808497906,-0.0236037615686655,-0.999225914478302,0.0315273553133011,-0.662074446678162,-0.748774647712708,0.0315273553133011,-0.662074446678162,-0.748774647712708,-0.133841663599014,-0.692827463150024,-0.708573579788208,-0.055019274353981,-0.0235796887427568,-0.998206853866577,-0.133841663599014,-0.692827463150024,-0.708573579788208,-0.998762309551239,-0.0471856184303761,-0.0157285407185555,-0.055019274353981,-0.0235796887427568,-0.998206853866577,-0.998762309551239,-0.0471856184303761,-0.0157285407185555,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.055019274353981,-0.0235796887427568,-0.998206853866577,-0.998762309551239,-0.0471856184303761,-0.0157285407185555,-0.999504387378693,-6.99006495096098e-018,0.0314804539084435,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.999504387378693,-6.99006495096098e-018,0.0314804539084435,-0.998762309551239,-0.0471856184303761,-0.0157285407185555,-0.999597251415253,-0.0157416891306639,0.0236125327646732,-0.999597251415253,-0.0157416891306639,0.0236125327646732,-0.047189999371767,0.00786499958485365,0.998854994773865,-0.999504387378693,-6.99006495096098e-018,0.0314804539084435,
- -0.998762309551239,-0.0471856184303761,-0.0157285407185555,-0.449656099081039,-0.851979970932007,0.268215894699097,-0.999597251415253,-0.0157416891306639,0.0236125327646732,-0.047189999371767,0.00786499958485365,0.998854994773865,-0.999597251415253,-0.0157416891306639,0.0236125327646732,-0.0784754380583763,-0.0235426295548677,0.996638000011444,-0.449656099081039,-0.851979970932007,0.268215894699097,-0.0784754380583763,-0.0235426295548677,0.996638000011444,-0.999597251415253,-0.0157416891306639,0.0236125327646732,-0.047189999371767,0.00786499958485365,0.998854994773865,-0.0784754380583763,-0.0235426295548677,0.996638000011444,0.0393383838236332,-0.00786767713725567,0.999194979667664,0.354100257158279,-0.865578413009644,0.354100257158279,-0.0784754380583763,-0.0235426295548677,0.996638000011444,-0.449656099081039,-0.851979970932007,0.268215894699097,-0.0784754380583763,-0.0235426295548677,0.996638000011444,0.354100257158279,-0.865578413009644,0.354100257158279,0.0393383838236332,-0.00786767713725567,0.999194979667664,0.0393383838236332,-0.00786767713725567,0.999194979667664,0.354100257158279,-0.865578413009644,0.354100257158279,0.996423363685608,-0.0784585326910019,0.0313834138214588,0.354100257158279,-0.865578413009644,0.354100257158279,0.574074029922485,-0.817858874797821,-0.0393201373517513,0.996423363685608,-0.0784585326910019,0.0313834138214588,0.999442577362061,0.0236088801175356,0.0236088801175356,0.0393383838236332,-0.00786767713725567,0.999194979667664,0.996423363685608,-0.0784585326910019,0.0313834138214588,0.996423363685608,-0.0784585326910019,0.0313834138214588,0.574074029922485,-0.817858874797821,-0.0393201373517513,0.997006475925446,-0.07065399736166,-0.0314017795026302,0.999442577362061,0.0236088801175356,0.0236088801175356,0.996423363685608,-0.0784585326910019,0.0313834138214588,0.997006475925446,-0.07065399736166,-0.0314017795026302,0.997006475925446,-0.07065399736166,-0.0314017795026302,0.574074029922485,-0.817858874797821,-0.0393201373517513,0.0314716808497906,-0.0236037615686655,-0.999225914478302,
- 0.999442577362061,0.0236088801175356,0.0236088801175356,0.997006475925446,-0.07065399736166,-0.0314017795026302,0.999380588531494,0.0157382767647505,-0.031476553529501,0.0314716808497906,-0.0236037615686655,-0.999225914478302,0.999380588531494,0.0157382767647505,-0.031476553529501,0.997006475925446,-0.07065399736166,-0.0314017795026302,0.996975898742676,0.0549514293670654,-0.0549514293670654,0.999442577362061,0.0236088801175356,0.0236088801175356,0.999380588531494,0.0157382767647505,-0.031476553529501,0.999380588531494,0.0157382767647505,-0.031476553529501,0.0314716808497906,-0.0236037615686655,-0.999225914478302,0.0314794778823853,0.00786986947059631,-0.999473392963409,0.996975898742676,0.0549514293670654,-0.0549514293670654,0.999380588531494,0.0157382767647505,-0.031476553529501,0.0314794778823853,0.00786986947059631,-0.999473392963409,0.0790544673800468,0.0395272336900234,0.996086359024048,0.794364988803864,0.605605006217957,0.047189999371767,0.0627726167440414,0.0549260377883911,0.996515274047852,0.794364988803864,0.605605006217957,0.047189999371767,0.0790544673800468,0.0395272336900234,0.996086359024048,0.801264047622681,0.597020268440247,0.0392776504158974,0.0790544673800468,0.0395272336900234,0.996086359024048,0.062921941280365,0.117978647351265,0.991020619869232,0.801264047622681,0.597020268440247,0.0392776504158974,0.062921941280365,0.117978647351265,0.991020619869232,0.949348151683807,0.313834100961685,0.0156917050480843,0.801264047622681,0.597020268440247,0.0392776504158974,0.062921941280365,0.117978647351265,0.991020619869232,0.157592713832855,0.0709167197346687,0.984954476356506,0.949348151683807,0.313834100961685,0.0156917050480843,0.801264047622681,0.597020268440247,0.0392776504158974,0.784585237503052,0.619822382926941,-0.0156917050480843,0.794364988803864,0.605605006217957,0.047189999371767,0.940366268157959,0.339796215295792,0.0158044751733541,0.949348151683807,0.313834100961685,0.0156917050480843,0.157592713832855,0.0709167197346687,0.984954476356506,0.0314794778823853,0.00786986947059631,0.999473392963409,
- 0.940366268157959,0.339796215295792,0.0158044751733541,0.157592713832855,0.0709167197346687,0.984954476356506,0.801264047622681,0.597020268440247,0.0392776504158974,0.949348151683807,0.313834100961685,0.0156917050480843,0.971035838127136,0.236838012933731,-0.0315783992409706,0.940366268157959,0.339796215295792,0.0158044751733541,0.0314794778823853,0.00786986947059631,0.999473392963409,0.993389487266541,0.110376611351967,0.0315361730754375,0.801858007907867,0.597462892532349,-0.00786135345697403,0.801264047622681,0.597020268440247,0.0392776504158974,0.971035838127136,0.236838012933731,-0.0315783992409706,0.784585237503052,0.619822382926941,-0.0156917050480843,0.801264047622681,0.597020268440247,0.0392776504158974,0.801858007907867,0.597462892532349,-0.00786135345697403,0.940366268157959,0.339796215295792,0.0158044751733541,0.943129301071167,0.330095231533051,-0.0392970517277718,0.949348151683807,0.313834100961685,0.0156917050480843,0.949348151683807,0.313834100961685,0.0156917050480843,0.943129301071167,0.330095231533051,-0.0392970517277718,0.971035838127136,0.236838012933731,-0.0315783992409706,0.993389487266541,0.110376611351967,0.0315361730754375,0.943129301071167,0.330095231533051,-0.0392970517277718,0.940366268157959,0.339796215295792,0.0158044751733541,0.971035838127136,0.236838012933731,-0.0315783992409706,0.0393383838236332,0.00786767713725567,-0.999194979667664,0.801858007907867,0.597462892532349,-0.00786135345697403,0.971035838127136,0.236838012933731,-0.0315783992409706,0.943129301071167,0.330095231533051,-0.0392970517277718,0.0393383838236332,0.00786767713725567,-0.999194979667664,0.784585237503052,0.619822382926941,-0.0156917050480843,0.801858007907867,0.597462892532349,-0.00786135345697403,0.0393383838236332,0.00786767713725567,-0.999194979667664,0.0314794778823853,0.00786986947059631,0.999473392963409,0.999690115451813,-0.023614726960659,0.00787157565355301,0.993389487266541,0.110376611351967,0.0315361730754375,0.999690115451813,-0.023614726960659,0.00787157565355301,0.0314794778823853,0.00786986947059631,0.999473392963409,
- 0.188532739877701,0.0157110616564751,0.981941342353821,0.188532739877701,0.0157110616564751,0.981941342353821,0.0471856184303761,0.0157285407185555,0.998762309551239,0.999690115451813,-0.023614726960659,0.00787157565355301,0.0393347330391407,-0.999102234840393,0.0157338920980692,0.999690115451813,-0.023614726960659,0.00787157565355301,0.0471856184303761,0.0157285407185555,0.998762309551239,0.999690115451813,-0.023614726960659,0.00787157565355301,0.997744739055634,0.0628500655293465,-0.0235687755048275,0.993389487266541,0.110376611351967,0.0315361730754375,0.997744739055634,0.0628500655293465,-0.0235687755048275,0.943129301071167,0.330095231533051,-0.0392970517277718,0.993389487266541,0.110376611351967,0.0315361730754375,0.0393347330391407,-0.999102234840393,0.0157338920980692,0.998453617095947,-0.0393091961741447,-0.0393091961741447,0.999690115451813,-0.023614726960659,0.00787157565355301,0.998453617095947,-0.0393091961741447,-0.0393091961741447,0.0393347330391407,-0.999102234840393,0.0157338920980692,0.0314716808497906,-0.999225914478302,-0.0236037615686655,0.997744739055634,0.0628500655293465,-0.0235687755048275,0.999690115451813,-0.023614726960659,0.00787157565355301,0.999380588531494,0.0157382767647505,-0.031476553529501,0.999690115451813,-0.023614726960659,0.00787157565355301,0.998453617095947,-0.0393091961741447,-0.0393091961741447,0.999380588531494,0.0157382767647505,-0.031476553529501,0.998453617095947,-0.0393091961741447,-0.0393091961741447,0.0314716808497906,-0.999225914478302,-0.0236037615686655,0.0471856184303761,-0.0157285407185555,-0.998762309551239,0.0471856184303761,-0.0157285407185555,-0.998762309551239,0.999380588531494,0.0157382767647505,-0.031476553529501,0.998453617095947,-0.0393091961741447,-0.0393091961741447,-0.0550073832273483,-0.0314327888190746,-0.99799108505249,0.0471856184303761,-0.0157285407185555,-0.998762309551239,0.0314716808497906,-0.999225914478302,-0.0236037615686655,0.999380588531494,0.0157382767647505,-0.031476553529501,0.0471856184303761,-0.0157285407185555,-0.998762309551239,
- 0.0393396019935608,2.21872723411188e-016,-0.999225914478302,0.999380588531494,0.0157382767647505,-0.031476553529501,0.0393396019935608,2.21872723411188e-016,-0.999225914478302,0.997744739055634,0.0628500655293465,-0.0235687755048275,0.0471856184303761,-0.0157285407185555,-0.998762309551239,-0.0550073832273483,-0.0314327888190746,-0.99799108505249,0.0393396019935608,2.21872723411188e-016,-0.999225914478302,-0.0550073832273483,-0.0314327888190746,-0.99799108505249,0.0314716808497906,-0.999225914478302,-0.0236037615686655,-0.047178328037262,-0.998607933521271,-0.023589164018631,0.0393396019935608,2.21872723411188e-016,-0.999225914478302,0.133552238345146,0.133552238345146,-0.982001841068268,0.997744739055634,0.0628500655293465,-0.0235687755048275,0.997744739055634,0.0628500655293465,-0.0235687755048275,0.133552238345146,0.133552238345146,-0.982001841068268,0.943129301071167,0.330095231533051,-0.0392970517277718,0.0393396019935608,2.21872723411188e-016,-0.999225914478302,-0.0550073832273483,-0.0314327888190746,-0.99799108505249,-0.023615462705493,2.21982705345433e-016,-0.999721229076386,0.0393396019935608,2.21872723411188e-016,-0.999225914478302,-0.023615462705493,2.21982705345433e-016,-0.999721229076386,0.133552238345146,0.133552238345146,-0.982001841068268,0.0550277717411518,0.0157222207635641,-0.998361051082611,0.943129301071167,0.330095231533051,-0.0392970517277718,0.133552238345146,0.133552238345146,-0.982001841068268,0.0550277717411518,0.0157222207635641,-0.998361051082611,0.133552238345146,0.133552238345146,-0.982001841068268,-0.023615462705493,2.21982705345433e-016,-0.999721229076386,0.0550277717411518,0.0157222207635641,-0.998361051082611,0.0393383838236332,0.00786767713725567,-0.999194979667664,0.943129301071167,0.330095231533051,-0.0392970517277718,-0.0157416891306639,-0.0236125327646732,-0.999597251415253,0.0550277717411518,0.0157222207635641,-0.998361051082611,-0.023615462705493,2.21982705345433e-016,-0.999721229076386,0.0550277717411518,0.0157222207635641,-0.998361051082611,-0.0157416891306639,-0.0236125327646732,-0.999597251415253,
- 0.0393383838236332,0.00786767713725567,-0.999194979667664,-0.99722158908844,-0.0706692412495613,-0.0235564168542624,-0.023615462705493,2.21982705345433e-016,-0.999721229076386,-0.0550073832273483,-0.0314327888190746,-0.99799108505249,-0.0550073832273483,-0.0314327888190746,-0.99799108505249,-0.047178328037262,-0.998607933521271,-0.023589164018631,-0.999597251415253,-0.0157416891306639,-0.0236125327646732,-0.99722158908844,-0.0706692412495613,-0.0235564168542624,-0.0550073832273483,-0.0314327888190746,-0.99799108505249,-0.999597251415253,-0.0157416891306639,-0.0236125327646732,-0.047178328037262,-0.998607933521271,-0.023589164018631,-0.999225914478302,-0.0314716808497906,0.0236037615686655,-0.999597251415253,-0.0157416891306639,-0.0236125327646732,-0.047178328037262,-0.998607933521271,-0.023589164018631,-0.0628364831209183,-0.997529208660126,0.0314182415604591,-0.999225914478302,-0.0314716808497906,0.0236037615686655,-0.99894767999649,0.0235971882939339,0.0393286496400833,-0.999597251415253,-0.0157416891306639,-0.0236125327646732,-0.999225914478302,-0.0314716808497906,0.0236037615686655,-0.0471856184303761,0.0157285407185555,0.998762309551239,-0.999225914478302,-0.0314716808497906,0.0236037615686655,-0.0628364831209183,-0.997529208660126,0.0314182415604591,-0.0471856184303761,0.0157285407185555,0.998762309551239,-0.0628364831209183,-0.997529208660126,0.0314182415604591,-0.0157338920980692,-0.999102234840393,0.0393347330391407,-0.999225914478302,-0.0314716808497906,0.0236037615686655,-0.0710669010877609,0.0710669010877609,0.99493670463562,-0.99894767999649,0.0235971882939339,0.0393286496400833,-0.0710669010877609,0.0710669010877609,0.99493670463562,-0.999225914478302,-0.0314716808497906,0.0236037615686655,-0.0471856184303761,0.0157285407185555,0.998762309551239,-0.99799108505249,-0.00785819720476866,0.0628655776381493,-0.999597251415253,-0.0157416891306639,-0.0236125327646732,-0.99894767999649,0.0235971882939339,0.0393286496400833,-0.0710669010877609,0.0710669010877609,0.99493670463562,-0.99799108505249,-0.00785819720476866,0.0628655776381493,
- -0.99894767999649,0.0235971882939339,0.0393286496400833,-0.999597251415253,-0.0157416891306639,-0.0236125327646732,-0.99799108505249,-0.00785819720476866,0.0628655776381493,-0.99722158908844,-0.0706692412495613,-0.0235564168542624,0.0471856184303761,0.0157285407185555,0.998762309551239,-0.0471856184303761,0.0157285407185555,0.998762309551239,-0.0157338920980692,-0.999102234840393,0.0393347330391407,0.0471856184303761,0.0157285407185555,0.998762309551239,-0.0710669010877609,0.0710669010877609,0.99493670463562,-0.0471856184303761,0.0157285407185555,0.998762309551239,-0.0157338920980692,-0.999102234840393,0.0393347330391407,0.0393347330391407,-0.999102234840393,0.0157338920980692,0.0471856184303761,0.0157285407185555,0.998762309551239,-0.0710669010877609,0.0710669010877609,0.99493670463562,0.0471856184303761,0.0157285407185555,0.998762309551239,-0.0315872617065907,0.0947617813944817,0.994998693466187,-0.99799108505249,-0.00785819720476866,0.0628655776381493,-0.0710669010877609,0.0710669010877609,0.99493670463562,-0.0315872617065907,0.0947617813944817,0.994998693466187,-0.0315872617065907,0.0947617813944817,0.994998693466187,0.0471856184303761,0.0157285407185555,0.998762309551239,0.0314794778823853,-0.00786986947059631,0.999473392963409,0.0314794778823853,-0.00786986947059631,0.999473392963409,-0.0627977550029755,-0.0470983162522316,0.996914327144623,-0.0315872617065907,0.0947617813944817,0.994998693466187,-0.99799108505249,-0.00785819720476866,0.0628655776381493,-0.0315872617065907,0.0947617813944817,0.994998693466187,-0.0627977550029755,-0.0470983162522316,0.996914327144623,0.0314794778823853,0.00786986947059631,0.999473392963409,-0.0627977550029755,-0.0470983162522316,0.996914327144623,0.0314794778823853,-0.00786986947059631,0.999473392963409,-0.99737536907196,-0.0549734458327293,0.0471200942993164,-0.99799108505249,-0.00785819720476866,0.0628655776381493,-0.0627977550029755,-0.0470983162522316,0.996914327144623,-0.99737536907196,-0.0549734458327293,0.0471200942993164,-0.99722158908844,-0.0706692412495613,-0.0235564168542624,
- -0.99799108505249,-0.00785819720476866,0.0628655776381493,-0.0550345741212368,-2.21708081382065e-016,0.998484432697296,-0.0627977550029755,-0.0470983162522316,0.996914327144623,0.0314794778823853,0.00786986947059631,0.999473392963409,-0.0550345741212368,-2.21708081382065e-016,0.998484432697296,-0.99737536907196,-0.0549734458327293,0.0471200942993164,-0.0627977550029755,-0.0470983162522316,0.996914327144623,-0.0550345741212368,-2.21708081382065e-016,0.998484432697296,0.0314794778823853,0.00786986947059631,0.999473392963409,0.0236088763922453,0.0236088763922453,0.999442458152771,0.0157149396836758,0.0628597587347031,0.997898638248444,-0.0550345741212368,-2.21708081382065e-016,0.998484432697296,0.0236088763922453,0.0236088763922453,0.999442458152771,-0.99722158908844,-0.0706692412495613,-0.0235564168542624,-0.99737536907196,-0.0549734458327293,0.0471200942993164,-0.99894767999649,-0.0235971882939339,0.0393286496400833,-0.99737536907196,-0.0549734458327293,0.0471200942993164,-0.0550345741212368,-2.21708081382065e-016,0.998484432697296,-0.99894767999649,-0.0235971882939339,0.0393286496400833,-0.919097006320953,-0.392776489257813,0.0314221195876598,-0.99722158908844,-0.0706692412495613,-0.0235564168542624,-0.99894767999649,-0.0235971882939339,0.0393286496400833,-0.0550345741212368,-2.21708081382065e-016,0.998484432697296,-0.919097006320953,-0.392776489257813,0.0314221195876598,-0.99894767999649,-0.0235971882939339,0.0393286496400833,-0.99722158908844,-0.0706692412495613,-0.0235564168542624,-0.919097006320953,-0.392776489257813,0.0314221195876598,-0.9343181848526,-0.353313624858856,-0.0471084825694561,-0.9343181848526,-0.353313624858856,-0.0471084825694561,-0.023615462705493,2.21982705345433e-016,-0.999721229076386,-0.99722158908844,-0.0706692412495613,-0.0235564168542624,-0.0550345741212368,-2.21708081382065e-016,0.998484432697296,-0.958848118782043,-0.282938778400421,0.0235782321542501,-0.919097006320953,-0.392776489257813,0.0314221195876598,-0.958848118782043,-0.282938778400421,0.0235782321542501,-0.9343181848526,-0.353313624858856,-0.0471084825694561,
- -0.919097006320953,-0.392776489257813,0.0314221195876598,-0.9343181848526,-0.353313624858856,-0.0471084825694561,-0.975622236728668,-0.212433889508247,-0.0550754480063915,-0.023615462705493,2.21982705345433e-016,-0.999721229076386,-0.9343181848526,-0.353313624858856,-0.0471084825694561,-0.958848118782043,-0.282938778400421,0.0235782321542501,-0.975622236728668,-0.212433889508247,-0.0550754480063915,-0.0157416891306639,-0.0236125327646732,-0.999597251415253,-0.023615462705493,2.21982705345433e-016,-0.999721229076386,-0.975622236728668,-0.212433889508247,-0.0550754480063915,-0.0550345741212368,-2.21708081382065e-016,0.998484432697296,-0.0790544673800468,0.0395272336900234,0.996086359024048,-0.958848118782043,-0.282938778400421,0.0235782321542501,-0.0550345741212368,-2.21708081382065e-016,0.998484432697296,0.0157149396836758,0.0628597587347031,0.997898638248444,-0.0790544673800468,0.0395272336900234,0.996086359024048,-0.975622236728668,-0.212433889508247,-0.0550754480063915,-0.958848118782043,-0.282938778400421,0.0235782321542501,-0.88641768693924,0.462819844484329,0.0078444043174386,-0.958848118782043,-0.282938778400421,0.0235782321542501,-0.0790544673800468,0.0395272336900234,0.996086359024048,-0.88641768693924,0.462819844484329,0.0078444043174386,-0.0157416891306639,-0.0236125327646732,-0.999597251415253,-0.975622236728668,-0.212433889508247,-0.0550754480063915,-0.781249105930328,-0.62342095375061,-0.0315656177699566,-0.88641768693924,0.462819844484329,0.0078444043174386,-0.781249105930328,-0.62342095375061,-0.0315656177699566,-0.975622236728668,-0.212433889508247,-0.0550754480063915,-0.0078735277056694,0.0078735277056694,0.999938011169434,-0.0790544673800468,0.0395272336900234,0.996086359024048,0.0157149396836758,0.0628597587347031,0.997898638248444,-0.88641768693924,0.462819844484329,0.0078444043174386,-0.0790544673800468,0.0395272336900234,0.996086359024048,-0.0078735277056694,0.0078735277056694,0.999938011169434,-0.0078735277056694,0.0078735277056694,0.999938011169434,0.0157149396836758,0.0628597587347031,0.997898638248444,
- 0.0790544673800468,0.0395272336900234,0.996086359024048,0.0627726167440414,0.0549260377883911,0.996515274047852,-0.0078735277056694,0.0078735277056694,0.999938011169434,0.0790544673800468,0.0395272336900234,0.996086359024048,-0.0078735277056694,0.0078735277056694,0.999938011169434,-0.77057933807373,-0.636907398700714,0.023589164018631,-0.88641768693924,0.462819844484329,0.0078444043174386,-0.88641768693924,0.462819844484329,0.0078444043174386,-0.77057933807373,-0.636907398700714,0.023589164018631,-0.781249105930328,-0.62342095375061,-0.0315656177699566,0.0627726167440414,0.0549260377883911,0.996515274047852,-0.0157416891306639,-0.0236125327646732,0.999597251415253,-0.0078735277056694,0.0078735277056694,0.999938011169434,-0.0078735277056694,0.0078735277056694,0.999938011169434,-0.0157416891306639,-0.0236125327646732,0.999597251415253,-0.77057933807373,-0.636907398700714,0.023589164018631,-0.0157416891306639,-0.0236125327646732,0.999597251415253,0.0627726167440414,0.0549260377883911,0.996515274047852,-0.0157338920980692,-0.0393347330391407,0.999102234840393,-0.0157338920980692,-0.0393347330391407,0.999102234840393,0.0627726167440414,0.0549260377883911,0.996515274047852,0.377777129411697,-0.283332824707031,0.881479978561401,0.377777129411697,-0.283332824707031,0.881479978561401,0.031456109136343,0.039320133626461,0.998731434345245,-0.0157338920980692,-0.0393347330391407,0.999102234840393,-0.0157416891306639,-0.0236125327646732,0.999597251415253,-0.801783680915833,-0.597407519817352,0.0157212503254414,-0.77057933807373,-0.636907398700714,0.023589164018631,-0.0157416891306639,-0.0236125327646732,0.999597251415253,-0.0157338920980692,-0.0393347330391407,0.999102234840393,-0.801783680915833,-0.597407519817352,0.0157212503254414,-0.77057933807373,-0.636907398700714,0.023589164018631,-0.801659882068634,-0.59731525182724,-0.0235782321542501,-0.781249105930328,-0.62342095375061,-0.0315656177699566,-0.801783680915833,-0.597407519817352,0.0157212503254414,-0.801659882068634,-0.59731525182724,-0.0235782321542501,-0.77057933807373,-0.636907398700714,0.023589164018631,
- -0.031456109136343,-0.039320133626461,-0.998731434345245,-0.781249105930328,-0.62342095375061,-0.0315656177699566,-0.801659882068634,-0.59731525182724,-0.0235782321542501,-0.031456109136343,-0.039320133626461,-0.998731434345245,-0.0157416891306639,-0.0236125327646732,-0.999597251415253,-0.781249105930328,-0.62342095375061,-0.0315656177699566,-0.031456109136343,-0.039320133626461,-0.998731434345245,0.0393383838236332,0.00786767713725567,-0.999194979667664,-0.0157416891306639,-0.0236125327646732,-0.999597251415253,-0.801659882068634,-0.59731525182724,-0.0235782321542501,-0.801783680915833,-0.597407519817352,0.0157212503254414,-0.512112736701965,-0.858773708343506,-0.0157573148608208,-0.512112736701965,-0.858773708343506,-0.0157573148608208,-0.031456109136343,-0.039320133626461,-0.998731434345245,-0.801659882068634,-0.59731525182724,-0.0235782321542501,-0.801783680915833,-0.597407519817352,0.0157212503254414,-0.0157338920980692,-0.0393347330391407,0.999102234840393,-0.517810344696045,-0.855171620845795,0.0235368330031633,-0.801783680915833,-0.597407519817352,0.0157212503254414,-0.517810344696045,-0.855171620845795,0.0235368330031633,-0.512112736701965,-0.858773708343506,-0.0157573148608208,0.031456109136343,0.039320133626461,0.998731434345245,-0.0314648635685444,-0.0314648635685444,0.999009490013123,-0.0157338920980692,-0.0393347330391407,0.999102234840393,-0.0314648635685444,-0.0314648635685444,0.999009490013123,-0.517810344696045,-0.855171620845795,0.0235368330031633,-0.0157338920980692,-0.0393347330391407,0.999102234840393,0,0.0550345741212368,0.998484432697296,-0.0314648635685444,-0.0314648635685444,0.999009490013123,0.031456109136343,0.039320133626461,0.998731434345245,-0.0314648635685444,-0.0314648635685444,0.999009490013123,0,0.0550345741212368,0.998484432697296,0.0314716808497906,0.0236037615686655,0.999225914478302,-0.517810344696045,-0.855171620845795,0.0235368330031633,-0.0314648635685444,-0.0314648635685444,0.999009490013123,-0.526906073093414,-0.849341154098511,0.0314570814371109,-0.536298274993896,-0.843881130218506,0.0157734788954258,
- -0.517810344696045,-0.855171620845795,0.0235368330031633,-0.526906073093414,-0.849341154098511,0.0314570814371109,-0.0314648635685444,-0.0314648635685444,0.999009490013123,-0.536298274993896,-0.843881130218506,0.0157734788954258,-0.526906073093414,-0.849341154098511,0.0314570814371109,-0.517810344696045,-0.855171620845795,0.0235368330031633,-0.536298274993896,-0.843881130218506,0.0157734788954258,-0.512112736701965,-0.858773708343506,-0.0157573148608208,0.0314716808497906,0.0236037615686655,0.999225914478302,0,-0.0550345741212368,0.998484432697296,-0.0314648635685444,-0.0314648635685444,0.999009490013123,-0.0706692412495613,0.0235564168542624,0.99722158908844,0,-0.0550345741212368,0.998484432697296,0.0314716808497906,0.0236037615686655,0.999225914478302,-0.536298274993896,-0.843881130218506,0.0157734788954258,-0.0314648635685444,-0.0314648635685444,0.999009490013123,0.631410598754883,-0.773478031158447,0.0552484281361103,0,-0.0550345741212368,0.998484432697296,-0.0706692412495613,0.0235564168542624,0.99722158908844,-0.0393091961741447,-0.0393091961741447,0.998453617095947,0.631410598754883,-0.773478031158447,0.0552484281361103,-0.0314648635685444,-0.0314648635685444,0.999009490013123,-0.110376611351967,-0.993389487266541,0.0315361730754375,-0.110376611351967,-0.993389487266541,0.0315361730754375,-0.0314648635685444,-0.0314648635685444,0.999009490013123,0,-0.0550345741212368,0.998484432697296,-0.0393091961741447,-0.0393091961741447,0.998453617095947,-0.0706692412495613,0.0235564168542624,0.99722158908844,-0.994719624519348,-0.0394730009138584,0.0947351977229118,-0.999597251415253,0.0236125327646732,0.0157416891306639,-0.994719624519348,-0.0394730009138584,0.0947351977229118,-0.0706692412495613,0.0235564168542624,0.99722158908844,0,-0.0550345741212368,0.998484432697296,-0.0393091961741447,-0.0393091961741447,0.998453617095947,-0.157867401838303,-0.986671268939972,0.0394668504595757,-0.994719624519348,-0.0394730009138584,0.0947351977229118,-0.157867401838303,-0.986671268939972,0.0394668504595757,-0.0393091961741447,-0.0393091961741447,0.998453617095947,
- 0,-0.0550345741212368,0.998484432697296,-0.157867401838303,-0.986671268939972,0.0394668504595757,-0.110376611351967,-0.993389487266541,0.0315361730754375,-0.994719624519348,-0.0394730009138584,0.0947351977229118,-0.165595769882202,-0.985689163208008,-0.0315420515835285,-0.157867401838303,-0.986671268939972,0.0394668504595757,-0.165595769882202,-0.985689163208008,-0.0315420515835285,-0.994719624519348,-0.0394730009138584,0.0947351977229118,-0.999473392963409,-0.0314794778823853,0.00786986947059631,-0.999597251415253,-0.0157416891306639,-0.0236125327646732,-0.165595769882202,-0.985689163208008,-0.0315420515835285,-0.999473392963409,-0.0314794778823853,0.00786986947059631,-0.157867401838303,-0.986671268939972,0.0394668504595757,-0.07065399736166,-0.997006475925446,-0.0314017795026302,-0.110376611351967,-0.993389487266541,0.0315361730754375,-0.07065399736166,-0.997006475925446,-0.0314017795026302,-0.157867401838303,-0.986671268939972,0.0394668504595757,-0.165595769882202,-0.985689163208008,-0.0315420515835285,-0.0156873594969511,-0.0862804874777794,-0.996147394180298,-0.165595769882202,-0.985689163208008,-0.0315420515835285,-0.999597251415253,-0.0157416891306639,-0.0236125327646732,-0.07065399736166,-0.997006475925446,-0.0314017795026302,-0.165595769882202,-0.985689163208008,-0.0315420515835285,-0.0156873594969511,-0.0862804874777794,-0.996147394180298,-0.999597251415253,-0.0157416891306639,-0.0236125327646732,-0.999876022338867,3.49633197622281e-018,-0.0157460793852806,-0.0156873594969511,-0.0862804874777794,-0.996147394180298,-0.110376611351967,-0.993389487266541,0.0315361730754375,-0.07065399736166,-0.997006475925446,-0.0314017795026302,0.292273312807083,-0.955812692642212,-0.0315971150994301,-0.110376611351967,-0.993389487266541,0.0315361730754375,0.292273312807083,-0.955812692642212,-0.0315971150994301,0.631410598754883,-0.773478031158447,0.0552484281361103,-0.536298274993896,-0.843881130218506,0.0157734788954258,0.631410598754883,-0.773478031158447,0.0552484281361103,0.292273312807083,-0.955812692642212,-0.0315971150994301,
- -0.536298274993896,-0.843881130218506,0.0157734788954258,0.292273312807083,-0.955812692642212,-0.0315971150994301,-0.536298274993896,-0.843881130218506,-0.0157734788954258,-0.512112736701965,-0.858773708343506,-0.0157573148608208,-0.536298274993896,-0.843881130218506,0.0157734788954258,-0.536298274993896,-0.843881130218506,-0.0157734788954258,0.292273312807083,-0.955812692642212,-0.0315971150994301,-0.07065399736166,-0.997006475925446,-0.0314017795026302,-0.0392958410084248,-0.0471550077199936,-0.998114347457886,-0.536298274993896,-0.843881130218506,-0.0157734788954258,0.292273312807083,-0.955812692642212,-0.0315971150994301,-0.0392958410084248,-0.0471550077199936,-0.998114347457886,-0.0392958410084248,-0.0471550077199936,-0.998114347457886,-0.512112736701965,-0.858773708343506,-0.0157573148608208,-0.536298274993896,-0.843881130218506,-0.0157734788954258,-0.07065399736166,-0.997006475925446,-0.0314017795026302,-0.0156873594969511,-0.0862804874777794,-0.996147394180298,-0.0392958410084248,-0.0471550077199936,-0.998114347457886,-0.512112736701965,-0.858773708343506,-0.0157573148608208,-0.0392958410084248,-0.0471550077199936,-0.998114347457886,-0.031456109136343,-0.039320133626461,-0.998731434345245,-0.0156873594969511,-0.0862804874777794,-0.996147394180298,0.0157285407185555,0.0471856184303761,-0.998762309551239,-0.0392958410084248,-0.0471550077199936,-0.998114347457886,0.0157285407185555,0.0471856184303761,-0.998762309551239,-0.031456109136343,-0.039320133626461,-0.998731434345245,-0.0392958410084248,-0.0471550077199936,-0.998114347457886,-0.00785819720476866,0.0628655776381493,-0.99799108505249,-0.0156873594969511,-0.0862804874777794,-0.996147394180298,-0.999876022338867,3.49633197622281e-018,-0.0157460793852806,-0.0156873594969511,-0.0862804874777794,-0.996147394180298,-0.00785819720476866,0.0628655776381493,-0.99799108505249,0.0157285407185555,0.0471856184303761,-0.998762309551239,-0.00785819720476866,0.0628655776381493,-0.99799108505249,-0.999876022338867,3.49633197622281e-018,-0.0157460793852806,0.165631830692291,0.985903739929199,-0.0236616898328066,
- -0.999876022338867,3.49633197622281e-018,-0.0157460793852806,-0.999597251415253,0.0236125327646732,0.0157416891306639,0.165631830692291,0.985903739929199,-0.0236616898328066,0.165631830692291,0.985903739929199,-0.0236616898328066,0.196019649505615,0.980098307132721,-0.0313631445169449,-0.00785819720476866,0.0628655776381493,-0.99799108505249,-0.00785819720476866,0.0628655776381493,-0.99799108505249,0.196019649505615,0.980098307132721,-0.0313631445169449,0.0157285407185555,0.0471856184303761,-0.998762309551239,0.165631830692291,0.985903739929199,-0.0236616898328066,-0.999597251415253,0.0236125327646732,0.0157416891306639,0.173287451267242,0.984587788581848,0.0236301068216562,0.173287451267242,0.984587788581848,0.0236301068216562,0.196019649505615,0.980098307132721,-0.0313631445169449,0.165631830692291,0.985903739929199,-0.0236616898328066,-0.999597251415253,0.0236125327646732,0.0157416891306639,-0.0706692412495613,0.0235564168542624,0.99722158908844,0.173287451267242,0.984587788581848,0.0236301068216562,-0.0706692412495613,0.0235564168542624,0.99722158908844,0.0707325115799904,0.172901704907417,0.982396006584167,0.173287451267242,0.984587788581848,0.0236301068216562,0.125937417149544,0.991757094860077,0.0236132647842169,0.196019649505615,0.980098307132721,-0.0313631445169449,0.173287451267242,0.984587788581848,0.0236301068216562,0.125937417149544,0.991757094860077,0.0236132647842169,0.173287451267242,0.984587788581848,0.0236301068216562,0.0707325115799904,0.172901704907417,0.982396006584167,0.196019649505615,0.980098307132721,-0.0313631445169449,0.434311300516129,0.90020889043808,-0.0315862745046616,0.0157285407185555,0.0471856184303761,-0.998762309551239,0.196019649505615,0.980098307132721,-0.0313631445169449,0.125937417149544,0.991757094860077,0.0236132647842169,0.434311300516129,0.90020889043808,-0.0315862745046616,0.456508964300156,0.889405429363251,0.0236125327646732,0.125937417149544,0.991757094860077,0.0236132647842169,0.0707325115799904,0.172901704907417,0.982396006584167,0.456508964300156,0.889405429363251,0.0236125327646732,
- 0.434311300516129,0.90020889043808,-0.0315862745046616,0.125937417149544,0.991757094860077,0.0236132647842169,0.456508964300156,0.889405429363251,0.0236125327646732,0.0707325115799904,0.172901704907417,0.982396006584167,0,0.0550345741212368,0.998484432697296,0.434311300516129,0.90020889043808,-0.0315862745046616,0.0314648635685444,0.0314648635685444,-0.999009490013123,0.0157285407185555,0.0471856184303761,-0.998762309551239,-0.031456109136343,-0.039320133626461,-0.998731434345245,0.0157285407185555,0.0471856184303761,-0.998762309551239,0.0314648635685444,0.0314648635685444,-0.999009490013123,0.0393383838236332,0.00786767713725567,-0.999194979667664,-0.031456109136343,-0.039320133626461,-0.998731434345245,0.0314648635685444,0.0314648635685444,-0.999009490013123,0.0393383838236332,0.00786767713725567,-0.999194979667664,0.0314648635685444,0.0314648635685444,-0.999009490013123,0.784585237503052,0.619822382926941,-0.0156917050480843,0.0314648635685444,0.0314648635685444,-0.999009490013123,0.434311300516129,0.90020889043808,-0.0315862745046616,0.536098301410675,0.843566477298737,-0.0315351933240891,0.0314648635685444,0.0314648635685444,-0.999009490013123,0.536098301410675,0.843566477298737,-0.0315351933240891,0.784585237503052,0.619822382926941,-0.0156917050480843,0.456508964300156,0.889405429363251,0.0236125327646732,0.536098301410675,0.843566477298737,-0.0315351933240891,0.434311300516129,0.90020889043808,-0.0315862745046616,0.784585237503052,0.619822382926941,-0.0156917050480843,0.536098301410675,0.843566477298737,-0.0315351933240891,0.536098301410675,0.843566477298737,0.0315351933240891,0.536098301410675,0.843566477298737,0.0315351933240891,0.536098301410675,0.843566477298737,-0.0315351933240891,0.456508964300156,0.889405429363251,0.0236125327646732,0,0.0550345741212368,0.998484432697296,0.536098301410675,0.843566477298737,0.0315351933240891,0.456508964300156,0.889405429363251,0.0236125327646732,0.794364988803864,0.605605006217957,0.047189999371767,0.784585237503052,0.619822382926941,-0.0156917050480843,0.536098301410675,0.843566477298737,0.0315351933240891,
- 0.536098301410675,0.843566477298737,0.0315351933240891,0,0.0550345741212368,0.998484432697296,0.031456109136343,0.039320133626461,0.998731434345245,0.794364988803864,0.605605006217957,0.047189999371767,0.536098301410675,0.843566477298737,0.0315351933240891,0.031456109136343,0.039320133626461,0.998731434345245,0.999102234840393,-0.0157338920980692,0.0393347330391407,0.998607933521271,0.047178328037262,0.023589164018631,-0.0314182415604591,0.0628364831209183,0.997529208660126,-0.0314182415604591,0.0628364831209183,0.997529208660126,-0.00786499958485365,-0.047189999371767,0.998854994773865,0.999102234840393,-0.0157338920980692,0.0393347330391407,-0.00786499958485365,-0.047189999371767,0.998854994773865,0.99894767999649,-0.0393286496400833,0.0235971882939339,0.999102234840393,-0.0157338920980692,0.0393347330391407,-0.0314182415604591,0.0628364831209183,0.997529208660126,-0.0553294867277145,-0.0711379051208496,0.995930731296539,-0.00786499958485365,-0.047189999371767,0.998854994773865,-0.00786499958485365,-0.047189999371767,0.998854994773865,0.220151916146278,-0.974958479404449,0.0314502716064453,0.99894767999649,-0.0393286496400833,0.0235971882939339,-0.0553294867277145,-0.0711379051208496,0.995930731296539,0.220151916146278,-0.974958479404449,0.0314502716064453,-0.00786499958485365,-0.047189999371767,0.998854994773865,0.999102234840393,-0.0393347330391407,-0.0157338920980692,0.99894767999649,-0.0393286496400833,0.0235971882939339,0.220151916146278,-0.974958479404449,0.0314502716064453,-0.0553294867277145,-0.0711379051208496,0.995930731296539,-0.0314182415604591,0.0628364831209183,0.997529208660126,-0.0789952501654625,-0.0552966743707657,0.995340168476105,-0.0789952501654625,-0.0552966743707657,0.995340168476105,-0.0314182415604591,0.0628364831209183,0.997529208660126,-0.0706104934215546,0.0470736660063267,0.996392607688904,-0.0789952501654625,-0.0552966743707657,0.995340168476105,-0.0706104934215546,0.0470736660063267,0.996392607688904,0.00786183960735798,0.0550328753888607,0.998453617095947,0.220151916146278,-0.974958479404449,0.0314502716064453,
- -0.0553294867277145,-0.0711379051208496,0.995930731296539,0.173072829842567,-0.983368337154388,0.0550686232745647,-0.0789952501654625,-0.0552966743707657,0.995340168476105,0.173072829842567,-0.983368337154388,0.0550686232745647,-0.0553294867277145,-0.0711379051208496,0.995930731296539,0.173249840736389,-0.984374046325684,0.0314999707043171,0.220151916146278,-0.974958479404449,0.0314502716064453,0.173072829842567,-0.983368337154388,0.0550686232745647,-0.0789952501654625,-0.0552966743707657,0.995340168476105,0.173249840736389,-0.984374046325684,0.0314999707043171,0.173072829842567,-0.983368337154388,0.0550686232745647,0.999102234840393,-0.0393347330391407,-0.0157338920980692,0.220151916146278,-0.974958479404449,0.0314502716064453,0.220233619213104,-0.975320279598236,-0.0157309714704752,0.220151916146278,-0.974958479404449,0.0314502716064453,0.173249840736389,-0.984374046325684,0.0314999707043171,0.220233619213104,-0.975320279598236,-0.0157309714704752,0.00786183960735798,0.0550328753888607,0.998453617095947,0.921688616275787,-0.157553613185883,0.354495644569397,-0.0789952501654625,-0.0552966743707657,0.995340168476105,0.173249840736389,-0.984374046325684,0.0314999707043171,-0.0789952501654625,-0.0552966743707657,0.995340168476105,0.921688616275787,-0.157553613185883,0.354495644569397,0.0314454175531864,-0.0471681281924248,-0.99839198589325,0.999102234840393,-0.0393347330391407,-0.0157338920980692,0.220233619213104,-0.975320279598236,-0.0157309714704752,0.0314454175531864,-0.0471681281924248,-0.99839198589325,0.998731434345245,0.039320133626461,-0.031456109136343,0.999102234840393,-0.0393347330391407,-0.0157338920980692,0.220233619213104,-0.975320279598236,-0.0157309714704752,0.173249840736389,-0.984374046325684,0.0314999707043171,0.197580605745316,-0.979999899864197,-0.0237096734344959,0.197580605745316,-0.979999899864197,-0.0237096734344959,0.0314454175531864,-0.0471681281924248,-0.99839198589325,0.220233619213104,-0.975320279598236,-0.0157309714704752,0.173249840736389,-0.984374046325684,0.0314999707043171,0.986179888248444,-0.165678218007088,-3.6787954462067e-017,
- 0.197580605745316,-0.979999899864197,-0.0237096734344959,0.921688616275787,-0.157553613185883,0.354495644569397,0.986179888248444,-0.165678218007088,-3.6787954462067e-017,0.173249840736389,-0.984374046325684,0.0314999707043171,0.0314454175531864,-0.0471681281924248,-0.99839198589325,0.197580605745316,-0.979999899864197,-0.0237096734344959,0.031476553529501,-0.0157382767647505,-0.999380588531494,0.986179888248444,-0.165678218007088,-3.6787954462067e-017,0.031476553529501,-0.0157382767647505,-0.999380588531494,0.197580605745316,-0.979999899864197,-0.0237096734344959,0.0314454175531864,-0.0471681281924248,-0.99839198589325,0.00785407610237598,0.0706866830587387,-0.997467637062073,0.998731434345245,0.039320133626461,-0.031456109136343,0.596817791461945,-0.80099231004715,0.0471171997487545,0.986179888248444,-0.165678218007088,-3.6787954462067e-017,0.921688616275787,-0.157553613185883,0.354495644569397,0.0314454175531864,-0.0471681281924248,-0.99839198589325,-0.00786183960735798,0.0550328753888607,-0.998453617095947,0.00785407610237598,0.0706866830587387,-0.997467637062073,-0.00786183960735798,0.0550328753888607,-0.998453617095947,0.0314454175531864,-0.0471681281924248,-0.99839198589325,0.031476553529501,-0.0157382767647505,-0.999380588531494,-0.205112636089325,0.978229522705078,-0.0315557904541492,0.998731434345245,0.039320133626461,-0.031456109136343,0.00785407610237598,0.0706866830587387,-0.997467637062073,-0.205112636089325,0.978229522705078,-0.0315557904541492,0.998607933521271,0.047178328037262,0.023589164018631,0.998731434345245,0.039320133626461,-0.031456109136343,-0.3535315990448,0.934894561767578,-0.0314250290393829,0.00785407610237598,0.0706866830587387,-0.997467637062073,-0.00786183960735798,0.0550328753888607,-0.998453617095947,0.00785407610237598,0.0706866830587387,-0.997467637062073,-0.3535315990448,0.934894561767578,-0.0314250290393829,-0.205112636089325,0.978229522705078,-0.0315557904541492,0.998607933521271,0.047178328037262,0.023589164018631,-0.205112636089325,0.978229522705078,-0.0315557904541492,-0.212756782770157,0.97710520029068,2.16960938168738e-016,
- 0.998607933521271,0.047178328037262,0.023589164018631,-0.212756782770157,0.97710520029068,2.16960938168738e-016,-0.0314182415604591,0.0628364831209183,0.997529208660126,-0.212756782770157,0.97710520029068,2.16960938168738e-016,-0.0706104934215546,0.0470736660063267,0.996392607688904,-0.0314182415604591,0.0628364831209183,0.997529208660126,-0.205112636089325,0.978229522705078,-0.0315557904541492,-0.283008694648743,0.95908510684967,0.00786135345697403,-0.212756782770157,0.97710520029068,2.16960938168738e-016,-0.0706104934215546,0.0470736660063267,0.996392607688904,-0.212756782770157,0.97710520029068,2.16960938168738e-016,-0.283008694648743,0.95908510684967,0.00786135345697403,-0.283008694648743,0.95908510684967,0.00786135345697403,-0.205112636089325,0.978229522705078,-0.0315557904541492,-0.3535315990448,0.934894561767578,-0.0314250290393829,-0.55971485376358,0.827747464179993,0.0394165441393852,-0.0706104934215546,0.0470736660063267,0.996392607688904,-0.283008694648743,0.95908510684967,0.00786135345697403,-0.55971485376358,0.827747464179993,0.0394165441393852,-0.283008694648743,0.95908510684967,0.00786135345697403,-0.3535315990448,0.934894561767578,-0.0314250290393829,0,0.165678218007088,0.986179888248444,-0.0706104934215546,0.0470736660063267,0.996392607688904,-0.55971485376358,0.827747464179993,0.0394165441393852,-0.55971485376358,0.827747464179993,0.0394165441393852,-0.173298224806786,0.126035064458847,0.976771771907806,0,0.165678218007088,0.986179888248444,-0.00786183960735798,0.0550328753888607,-0.998453617095947,-0.031456109136343,0.039320133626461,-0.998731434345245,-0.3535315990448,0.934894561767578,-0.0314250290393829,0.031476553529501,-0.0157382767647505,-0.999380588531494,-0.031456109136343,0.039320133626461,-0.998731434345245,-0.00786183960735798,0.0550328753888607,-0.998453617095947,-0.541881144046783,0.840308487415314,-0.0157067012041807,-0.55971485376358,0.827747464179993,0.0394165441393852,-0.3535315990448,0.934894561767578,-0.0314250290393829,-0.3535315990448,0.934894561767578,-0.0314250290393829,-0.031456109136343,0.039320133626461,-0.998731434345245,
- -0.541881144046783,0.840308487415314,-0.0157067012041807,-0.173298224806786,0.126035064458847,0.976771771907806,-0.55971485376358,0.827747464179993,0.0394165441393852,-0.674826383590698,0.737600982189178,0.0235404558479786,-0.55971485376358,0.827747464179993,0.0394165441393852,-0.541881144046783,0.840308487415314,-0.0157067012041807,-0.674826383590698,0.737600982189178,0.0235404558479786,-0.674826383590698,0.737600982189178,0.0235404558479786,-0.808296978473663,0.588565766811371,0.0156950876116753,-0.173298224806786,0.126035064458847,0.976771771907806,-0.0550277717411518,-0.0157222207635641,0.998361051082611,-0.173298224806786,0.126035064458847,0.976771771907806,-0.808296978473663,0.588565766811371,0.0156950876116753,-0.808296978473663,0.588565766811371,0.0156950876116753,-0.212697386741638,0.0236330423504114,0.976832389831543,-0.0550277717411518,-0.0157222207635641,0.998361051082611,-0.541881144046783,0.840308487415314,-0.0157067012041807,-0.76718807220459,0.640641570091248,-0.0316366218030453,-0.674826383590698,0.737600982189178,0.0235404558479786,-0.674826383590698,0.737600982189178,0.0235404558479786,-0.76718807220459,0.640641570091248,-0.0316366218030453,-0.808296978473663,0.588565766811371,0.0156950876116753,-0.031456109136343,0.039320133626461,-0.998731434345245,-0.149806126952171,0.0788453295826912,-0.98556661605835,-0.541881144046783,0.840308487415314,-0.0157067012041807,-0.541881144046783,0.840308487415314,-0.0157067012041807,-0.149806126952171,0.0788453295826912,-0.98556661605835,-0.76718807220459,0.640641570091248,-0.0316366218030453,-0.031456109136343,0.039320133626461,-0.998731434345245,0.0157416891306639,-0.0236125327646732,-0.999597251415253,-0.149806126952171,0.0788453295826912,-0.98556661605835,-0.031456109136343,0.039320133626461,-0.998731434345245,0.031476553529501,-0.0157382767647505,-0.999380588531494,0.0157416891306639,-0.0236125327646732,-0.999597251415253,-0.0393091961741447,0.0393091961741447,-0.998453617095947,-0.76718807220459,0.640641570091248,-0.0316366218030453,-0.149806126952171,0.0788453295826912,-0.98556661605835,
- -0.0393091961741447,0.0393091961741447,-0.998453617095947,-0.149806126952171,0.0788453295826912,-0.98556661605835,0.0157416891306639,-0.0236125327646732,-0.999597251415253,-0.808296978473663,0.588565766811371,0.0156950876116753,-0.76718807220459,0.640641570091248,-0.0316366218030453,-0.811728477478027,0.583183646202087,-0.0315234363079071,-0.0393091961741447,0.0393091961741447,-0.998453617095947,-0.811728477478027,0.583183646202087,-0.0315234363079071,-0.76718807220459,0.640641570091248,-0.0316366218030453,-0.811728477478027,0.583183646202087,-0.0315234363079071,-0.95899623632431,0.282982468605042,-0.0157212484627962,-0.808296978473663,0.588565766811371,0.0156950876116753,-0.811728477478027,0.583183646202087,-0.0315234363079071,-0.0393091961741447,0.0393091961741447,-0.998453617095947,-0.0393286496400833,0.0235971882939339,-0.99894767999649,-0.0393286496400833,0.0235971882939339,-0.99894767999649,-0.95899623632431,0.282982468605042,-0.0157212484627962,-0.811728477478027,0.583183646202087,-0.0315234363079071,-0.95899623632431,0.282982468605042,-0.0157212484627962,-0.967305243015289,0.251656651496887,0.0314570814371109,-0.808296978473663,0.588565766811371,0.0156950876116753,-0.212697386741638,0.0236330423504114,0.976832389831543,-0.808296978473663,0.588565766811371,0.0156950876116753,-0.967305243015289,0.251656651496887,0.0314570814371109,-0.992495357990265,0.118154212832451,-0.0315077900886536,-0.967305243015289,0.251656651496887,0.0314570814371109,-0.95899623632431,0.282982468605042,-0.0157212484627962,-0.992495357990265,0.118154212832451,-0.0315077900886536,-0.95899623632431,0.282982468605042,-0.0157212484627962,-0.0393286496400833,0.0235971882939339,-0.99894767999649,-0.99422413110733,0.102578677237034,0.0315626710653305,-0.212697386741638,0.0236330423504114,0.976832389831543,-0.967305243015289,0.251656651496887,0.0314570814371109,-0.967305243015289,0.251656651496887,0.0314570814371109,-0.992495357990265,0.118154212832451,-0.0315077900886536,-0.99422413110733,0.102578677237034,0.0315626710653305,-0.212697386741638,0.0236330423504114,0.976832389831543,
- -0.99422413110733,0.102578677237034,0.0315626710653305,-0.346113532781601,0.0629297345876694,0.936079740524292,-0.99422413110733,0.102578677237034,0.0315626710653305,-0.173072829842567,-0.0550686232745647,0.983368337154388,-0.346113532781601,0.0629297345876694,0.936079740524292,-0.173072829842567,-0.0550686232745647,0.983368337154388,-0.99422413110733,0.102578677237034,0.0315626710653305,-0.998731434345245,0.039320133626461,0.031456109136343,-0.99422413110733,0.102578677237034,0.0315626710653305,-0.992495357990265,0.118154212832451,-0.0315077900886536,-0.998731434345245,0.039320133626461,0.031456109136343,-0.998731434345245,0.039320133626461,0.031456109136343,-0.0236088763922453,0.0236088763922453,0.999442458152771,-0.173072829842567,-0.0550686232745647,0.983368337154388,-0.998731434345245,0.039320133626461,0.031456109136343,-0.999504387378693,-6.99006495096098e-018,0.0314804539084435,-0.0236088763922453,0.0236088763922453,0.999442458152771,-0.998731434345245,0.039320133626461,0.031456109136343,-0.992495357990265,0.118154212832451,-0.0315077900886536,-0.999504387378693,-6.99006495096098e-018,0.0314804539084435,-0.0236088763922453,0.0236088763922453,0.999442458152771,-0.999504387378693,-6.99006495096098e-018,0.0314804539084435,-0.0156975034624338,-0.0784875229001045,0.996791481971741,-0.0236125327646732,-0.999597251415253,0.0157416891306639,-0.0156975034624338,-0.0784875229001045,0.996791481971741,-0.999504387378693,-6.99006495096098e-018,0.0314804539084435,-0.999597251415253,-0.0157416891306639,-0.0236125327646732,-0.0236125327646732,-0.999597251415253,0.0157416891306639,-0.999504387378693,-6.99006495096098e-018,0.0314804539084435,-0.999504387378693,-6.99006495096098e-018,0.0314804539084435,-0.992495357990265,0.118154212832451,-0.0315077900886536,-0.999597251415253,-0.0157416891306639,-0.0236125327646732,0,-0.999876022338867,-0.0157460793852806,-0.0236125327646732,-0.999597251415253,0.0157416891306639,-0.999597251415253,-0.0157416891306639,-0.0236125327646732,-0.999597251415253,-0.0157416891306639,-0.0236125327646732,
- -0.992495357990265,0.118154212832451,-0.0315077900886536,-0.031476553529501,-0.0157382767647505,-0.999380588531494,-0.031476553529501,-0.0157382767647505,-0.999380588531494,0,-0.999876022338867,-0.0157460793852806,-0.999597251415253,-0.0157416891306639,-0.0236125327646732,-0.992495357990265,0.118154212832451,-0.0315077900886536,-0.0393347330391407,0.0157338920980692,-0.999102234840393,-0.031476553529501,-0.0157382767647505,-0.999380588531494,-0.0393286496400833,0.0235971882939339,-0.99894767999649,-0.0393347330391407,0.0157338920980692,-0.999102234840393,-0.992495357990265,0.118154212832451,-0.0315077900886536,-0.031476553529501,-0.0157382767647505,-0.999380588531494,0.102626599371433,0.00789435394108295,-0.994688630104065,0,-0.999876022338867,-0.0157460793852806,0.00786767713725567,-0.999194979667664,-0.0393383838236332,0,-0.999876022338867,-0.0157460793852806,0.102626599371433,0.00789435394108295,-0.994688630104065,0.0550328753888607,-0.00786183960735798,-0.998453617095947,-0.031476553529501,-0.0157382767647505,-0.999380588531494,-0.0393347330391407,0.0157338920980692,-0.999102234840393,-0.031476553529501,-0.0157382767647505,-0.999380588531494,0.0550328753888607,-0.00786183960735798,-0.998453617095947,0.102626599371433,0.00789435394108295,-0.994688630104065,-0.0393286496400833,0.0235971882939339,-0.99894767999649,0.0550328753888607,-0.00786183960735798,-0.998453617095947,-0.0393347330391407,0.0157338920980692,-0.999102234840393,0.102626599371433,0.00789435394108295,-0.994688630104065,0.999473392963409,0.00786986947059631,-0.0314794778823853,0.00786767713725567,-0.999194979667664,-0.0393383838236332,0.102626599371433,0.00789435394108295,-0.994688630104065,0.0550328753888607,-0.00786183960735798,-0.998453617095947,0.999473392963409,0.00786986947059631,-0.0314794778823853,0.00786767713725567,-0.999194979667664,-0.0393383838236332,0.999473392963409,0.00786986947059631,-0.0314794778823853,0.0314804539084435,-0.999504387378693,-2.21934556816337e-016,0.999473392963409,0.00786986947059631,-0.0314794778823853,0.0395013242959976,-0.995433330535889,0.086902916431427,
- 0.0314804539084435,-0.999504387378693,-2.21934556816337e-016,0.0550328753888607,-0.00786183960735798,-0.998453617095947,-0.0393286496400833,0.0235971882939339,-0.99894767999649,0.0314794778823853,-0.00786986947059631,-0.999473392963409,-0.0393091961741447,0.0393091961741447,-0.998453617095947,0.0314794778823853,-0.00786986947059631,-0.999473392963409,-0.0393286496400833,0.0235971882939339,-0.99894767999649,0.0314794778823853,-0.00786986947059631,-0.999473392963409,-0.0393091961741447,0.0393091961741447,-0.998453617095947,0.0157416891306639,-0.0236125327646732,-0.999597251415253,-0.0236125327646732,-0.999597251415253,0.0157416891306639,0.0395013242959976,-0.995433330535889,0.086902916431427,-0.0156975034624338,-0.0784875229001045,0.996791481971741,0.0471550077199936,-0.0392958410084248,0.998114347457886,-0.0156975034624338,-0.0784875229001045,0.996791481971741,0.0395013242959976,-0.995433330535889,0.086902916431427,0.0395013242959976,-0.995433330535889,0.086902916431427,0.999102234840393,0.0157338920980692,0.0393347330391407,0.0471550077199936,-0.0392958410084248,0.998114347457886,0.0395013242959976,-0.995433330535889,0.086902916431427,0.999473392963409,0.00786986947059631,-0.0314794778823853,0.999102234840393,0.0157338920980692,0.0393347330391407,0.0550345741212368,-2.21708081382065e-016,0.998484432697296,-0.0156975034624338,-0.0784875229001045,0.996791481971741,0.0471550077199936,-0.0392958410084248,0.998114347457886,0.0550345741212368,-2.21708081382065e-016,0.998484432697296,0.0471550077199936,-0.0392958410084248,0.998114347457886,0.999102234840393,0.0157338920980692,0.0393347330391407,-0.0236088763922453,0.0236088763922453,0.999442458152771,-0.0156975034624338,-0.0784875229001045,0.996791481971741,0.0550345741212368,-2.21708081382065e-016,0.998484432697296,-0.0236088763922453,0.0236088763922453,0.999442458152771,0.0550345741212368,-2.21708081382065e-016,0.998484432697296,-0.0393091961741447,-0.0393091961741447,0.998453617095947,-0.0393091961741447,-0.0393091961741447,0.998453617095947,0.0550345741212368,-2.21708081382065e-016,0.998484432697296,
- -0.0628364831209183,0.0314182415604591,0.997529208660126,0.999102234840393,0.0157338920980692,0.0393347330391407,0.999473392963409,0.00786986947059631,-0.0314794778823853,0.996638000011444,-0.0784754380583763,0.0235426295548677,0.999102234840393,0.0157338920980692,0.0393347330391407,0.996638000011444,-0.0784754380583763,0.0235426295548677,0.0550345741212368,-2.21708081382065e-016,0.998484432697296,0.0550345741212368,-2.21708081382065e-016,0.998484432697296,0.0393347330391407,-0.0157338920980692,0.999102234840393,-0.0628364831209183,0.0314182415604591,0.997529208660126,0.0393347330391407,-0.0157338920980692,0.999102234840393,0.0550345741212368,-2.21708081382065e-016,0.998484432697296,0.996638000011444,-0.0784754380583763,0.0235426295548677,-0.0628364831209183,0.0314182415604591,0.997529208660126,0.0393347330391407,-0.0157338920980692,0.999102234840393,-0.102626599371433,0.00789435394108295,0.994688630104065,-0.0550277717411518,-0.0157222207635641,0.998361051082611,-0.102626599371433,0.00789435394108295,0.994688630104065,0.0393347330391407,-0.0157338920980692,0.999102234840393,0.999721229076386,5.243686086563e-018,-0.023615462705493,0.996638000011444,-0.0784754380583763,0.0235426295548677,0.999473392963409,0.00786986947059631,-0.0314794778823853,0.999721229076386,5.243686086563e-018,-0.023615462705493,0.999473392963409,0.00786986947059631,-0.0314794778823853,0.0550328753888607,-0.00786183960735798,-0.998453617095947,0.951311945915222,-0.306621193885803,-0.0314483270049095,0.996638000011444,-0.0784754380583763,0.0235426295548677,0.999721229076386,5.243686086563e-018,-0.023615462705493,0.999721229076386,5.243686086563e-018,-0.023615462705493,0.0550328753888607,-0.00786183960735798,-0.998453617095947,0.951311945915222,-0.306621193885803,-0.0314483270049095,0.996638000011444,-0.0784754380583763,0.0235426295548677,0.951311945915222,-0.306621193885803,-0.0314483270049095,0.978442788124084,-0.205157354474068,0.0236720032989979,0.0393347330391407,-0.0157338920980692,0.999102234840393,0.996638000011444,-0.0784754380583763,0.0235426295548677,
- 0.978442788124084,-0.205157354474068,0.0236720032989979,0.0550328753888607,-0.00786183960735798,-0.998453617095947,0.97324526309967,-0.227613806724548,-0.0313950069248676,0.951311945915222,-0.306621193885803,-0.0314483270049095,0.978442788124084,-0.205157354474068,0.0236720032989979,0.951311945915222,-0.306621193885803,-0.0314483270049095,0.97324526309967,-0.227613806724548,-0.0313950069248676,0.0550328753888607,-0.00786183960735798,-0.998453617095947,0.0314794778823853,-0.00786986947059631,-0.999473392963409,0.97324526309967,-0.227613806724548,-0.0313950069248676,0.794635474681854,-0.605811178684235,0.0393383875489235,0.978442788124084,-0.205157354474068,0.0236720032989979,0.97324526309967,-0.227613806724548,-0.0313950069248676,0.0393347330391407,-0.0157338920980692,0.999102234840393,0.978442788124084,-0.205157354474068,0.0236720032989979,0.794635474681854,-0.605811178684235,0.0393383875489235,0.0314794778823853,-0.00786986947059631,-0.999473392963409,0.801264047622681,-0.597020268440247,-0.0392776504158974,0.97324526309967,-0.227613806724548,-0.0313950069248676,0.794635474681854,-0.605811178684235,0.0393383875489235,0.97324526309967,-0.227613806724548,-0.0313950069248676,0.801264047622681,-0.597020268440247,-0.0392776504158974,0.0314794778823853,-0.00786986947059631,-0.999473392963409,0.817858874797821,-0.574074029922485,-0.0393201373517513,0.801264047622681,-0.597020268440247,-0.0392776504158974,0.817858874797821,-0.574074029922485,-0.0393201373517513,0.794635474681854,-0.605811178684235,0.0393383875489235,0.801264047622681,-0.597020268440247,-0.0392776504158974,0.817858874797821,-0.574074029922485,-0.0393201373517513,0.0314794778823853,-0.00786986947059631,-0.999473392963409,0.0157416891306639,-0.0236125327646732,-0.999597251415253,0.818086445331573,-0.574233829975128,0.0314648672938347,0.0393347330391407,-0.0157338920980692,0.999102234840393,0.794635474681854,-0.605811178684235,0.0393383875489235,0.794635474681854,-0.605811178684235,0.0393383875489235,0.817858874797821,-0.574074029922485,-0.0393201373517513,0.818086445331573,-0.574233829975128,0.0314648672938347,
- 0.0393347330391407,-0.0157338920980692,0.999102234840393,0.818086445331573,-0.574233829975128,0.0314648672938347,0.031456109136343,-0.039320133626461,0.998731434345245,0.031456109136343,-0.039320133626461,0.998731434345245,-0.0550277717411518,-0.0157222207635641,0.998361051082611,0.0393347330391407,-0.0157338920980692,0.999102234840393,-0.0550277717411518,-0.0157222207635641,0.998361051082611,0.031456109136343,-0.039320133626461,0.998731434345245,-0.0393347330391407,0.0157338920980692,0.999102234840393,-0.0314648635685444,-0.999009490013123,0.0314648635685444,0.818086445331573,-0.574233829975128,0.0314648672938347,0.817858874797821,-0.574074029922485,-0.0393201373517513,-0.0314648635685444,-0.999009490013123,0.0314648635685444,0.031456109136343,-0.039320133626461,0.998731434345245,0.818086445331573,-0.574233829975128,0.0314648672938347,0.456622123718262,-0.889625906944275,-0.00787279568612576,-0.0314648635685444,-0.999009490013123,0.0314648635685444,0.817858874797821,-0.574074029922485,-0.0393201373517513,0.817858874797821,-0.574074029922485,-0.0393201373517513,0.0157416891306639,-0.0236125327646732,-0.999597251415253,0.456622123718262,-0.889625906944275,-0.00787279568612576,0.031456109136343,-0.039320133626461,0.998731434345245,-0.0314648635685444,-0.999009490013123,0.0314648635685444,0.471856266260147,-0.88079833984375,0.0393213555216789,-0.0314648635685444,-0.999009490013123,0.0314648635685444,0.456622123718262,-0.889625906944275,-0.00787279568612576,0.471856266260147,-0.88079833984375,0.0393213555216789,0.031456109136343,-0.039320133626461,0.998731434345245,0.0628500655293465,-0.0235687755048275,0.997744739055634,-0.0393347330391407,0.0157338920980692,0.999102234840393,0.0628500655293465,-0.0235687755048275,0.997744739055634,0.031456109136343,-0.039320133626461,0.998731434345245,0.471856266260147,-0.88079833984375,0.0393213555216789,-0.0393347330391407,0.0157338920980692,0.999102234840393,0.0628500655293465,-0.0235687755048275,0.997744739055634,0.00786183960735798,0.0550328753888607,0.998453617095947,0.00786183960735798,0.0550328753888607,0.998453617095947,
- 0.0628500655293465,-0.0235687755048275,0.997744739055634,0.921688616275787,-0.157553613185883,0.354495644569397,0.596817791461945,-0.80099231004715,0.0471171997487545,0.921688616275787,-0.157553613185883,0.354495644569397,0.0628500655293465,-0.0235687755048275,0.997744739055634,0.0628500655293465,-0.0235687755048275,0.997744739055634,0.471856266260147,-0.88079833984375,0.0393213555216789,0.596817791461945,-0.80099231004715,0.0471171997487545,0.583401083946228,-0.812031149864197,-0.0157675947993994,0.471856266260147,-0.88079833984375,0.0393213555216789,0.456622123718262,-0.889625906944275,-0.00787279568612576,0.471856266260147,-0.88079833984375,0.0393213555216789,0.583401083946228,-0.812031149864197,-0.0157675947993994,0.596817791461945,-0.80099231004715,0.0471171997487545,0.583401083946228,-0.812031149864197,-0.0157675947993994,0.456622123718262,-0.889625906944275,-0.00787279568612576,0.0157416891306639,-0.0236125327646732,-0.999597251415253,0.986179888248444,-0.165678218007088,-3.6787954462067e-017,0.596817791461945,-0.80099231004715,0.0471171997487545,0.583401083946228,-0.812031149864197,-0.0157675947993994,0.583401083946228,-0.812031149864197,-0.0157675947993994,0.0157416891306639,-0.0236125327646732,-0.999597251415253,0.031476553529501,-0.0157382767647505,-0.999380588531494,0.583401083946228,-0.812031149864197,-0.0157675947993994,0.031476553529501,-0.0157382767647505,-0.999380588531494,0.986179888248444,-0.165678218007088,-3.6787954462067e-017,-0.0706801414489746,0.0157066993415356,0.99737536907196,-0.996975898742676,0.0549514293670654,0.0549514293670654,-0.0628655776381493,-0.00785819720476866,0.99799108505249,-0.996975898742676,0.0549514293670654,0.0549514293670654,-0.0706801414489746,0.0157066993415356,0.99737536907196,-0.998731434345245,0.031456109136343,0.039320133626461,-0.0706801414489746,0.0157066993415356,0.99737536907196,-0.165426135063171,-0.0551420450210571,0.984679400920868,-0.998731434345245,0.031456109136343,0.039320133626461,-0.165426135063171,-0.0551420450210571,0.984679400920868,-0.999845147132874,-0.00787279661744833,0.0157455932348967,
- -0.998731434345245,0.031456109136343,0.039320133626461,-0.157990500330925,-2.19255868060205e-016,0.987440645694733,-0.999845147132874,-0.00787279661744833,0.0157455932348967,-0.165426135063171,-0.0551420450210571,0.984679400920868,-0.998731434345245,0.031456109136343,0.039320133626461,-0.999442577362061,0.0236088801175356,-0.0236088801175356,-0.996975898742676,0.0549514293670654,0.0549514293670654,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.999845147132874,-0.00787279661744833,0.0157455932348967,-0.157990500330925,-2.19255868060205e-016,0.987440645694733,-0.998206853866577,0.055019274353981,-0.0235796887427568,-0.998731434345245,0.031456109136343,0.039320133626461,-0.999845147132874,-0.00787279661744833,0.0157455932348967,-0.999442577362061,0.0236088801175356,-0.0236088801175356,-0.998731434345245,0.031456109136343,0.039320133626461,-0.998206853866577,0.055019274353981,-0.0235796887427568,-0.991542160511017,-0.125910118222237,0.0314775295555592,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.157990500330925,-2.19255868060205e-016,0.987440645694733,-0.0236147306859493,-0.00787157658487558,0.999690234661102,-0.991542160511017,-0.125910118222237,0.0314775295555592,-0.157990500330925,-2.19255868060205e-016,0.987440645694733,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.99839198589325,-0.0471681281924248,-0.0314454175531864,-0.999845147132874,-0.00787279661744833,0.0157455932348967,-0.99839198589325,-0.0471681281924248,-0.0314454175531864,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.991542160511017,-0.125910118222237,0.0314775295555592,-0.999845147132874,-0.00787279661744833,0.0157455932348967,-0.99839198589325,-0.0471681281924248,-0.0314454175531864,-0.998206853866577,0.055019274353981,-0.0235796887427568,-0.0236147306859493,-0.00787157658487558,0.999690234661102,-0.999473392963409,0.0314794778823853,0.00786986947059631,-0.991542160511017,-0.125910118222237,0.0314775295555592,-0.999473392963409,0.0314794778823853,0.00786986947059631,-0.99839198589325,-0.0471681281924248,-0.0314454175531864,
- -0.991542160511017,-0.125910118222237,0.0314775295555592,-0.999473392963409,0.0314794778823853,0.00786986947059631,-0.0236147306859493,-0.00787157658487558,0.999690234661102,-0.188532739877701,-0.0157110616564751,0.981941342353821,-0.188532739877701,-0.0157110616564751,0.981941342353821,-0.0471856184303761,-0.0157285407185555,0.998762309551239,-0.999473392963409,0.0314794778823853,0.00786986947059631,-0.0393347330391407,0.999102234840393,0.0157338920980692,-0.999473392963409,0.0314794778823853,0.00786986947059631,-0.0471856184303761,-0.0157285407185555,0.998762309551239,-0.0393347330391407,0.999102234840393,0.0157338920980692,-0.998453617095947,0.0393091961741447,-0.0393091961741447,-0.999473392963409,0.0314794778823853,0.00786986947059631,-0.999473392963409,0.0314794778823853,0.00786986947059631,-0.998453617095947,0.0393091961741447,-0.0393091961741447,-0.99839198589325,-0.0471681281924248,-0.0314454175531864,-0.998453617095947,0.0393091961741447,-0.0393091961741447,-0.0393347330391407,0.999102234840393,0.0157338920980692,-0.0314716808497906,0.999225914478302,-0.0236037615686655,-0.0471856184303761,0.0157285407185555,-0.998762309551239,-0.99839198589325,-0.0471681281924248,-0.0314454175531864,-0.998453617095947,0.0393091961741447,-0.0393091961741447,-0.998453617095947,0.0393091961741447,-0.0393091961741447,-0.0314716808497906,0.999225914478302,-0.0236037615686655,-0.0471856184303761,0.0157285407185555,-0.998762309551239,-0.0393396019935608,2.21872723411188e-016,-0.999225914478302,-0.998206853866577,0.055019274353981,-0.0235796887427568,-0.99839198589325,-0.0471681281924248,-0.0314454175531864,-0.99839198589325,-0.0471681281924248,-0.0314454175531864,-0.0471856184303761,0.0157285407185555,-0.998762309551239,-0.0393396019935608,2.21872723411188e-016,-0.999225914478302,-0.999442577362061,0.0236088801175356,-0.0236088801175356,-0.998206853866577,0.055019274353981,-0.0235796887427568,-0.0393396019935608,2.21872723411188e-016,-0.999225914478302,0.0550073832273483,0.0314327888190746,-0.99799108505249,-0.0471856184303761,0.0157285407185555,-0.998762309551239,
- -0.0314716808497906,0.999225914478302,-0.0236037615686655,0.0550073832273483,0.0314327888190746,-0.99799108505249,-0.0393396019935608,2.21872723411188e-016,-0.999225914478302,-0.0471856184303761,0.0157285407185555,-0.998762309551239,0.0550073832273483,0.0314327888190746,-0.99799108505249,-0.0314716808497906,0.999225914478302,-0.0236037615686655,0.047178328037262,0.998607933521271,-0.023589164018631,-0.0393396019935608,2.21872723411188e-016,-0.999225914478302,-0.0393383838236332,-0.00786767713725567,-0.999194979667664,-0.999442577362061,0.0236088801175356,-0.0236088801175356,-0.0393396019935608,2.21872723411188e-016,-0.999225914478302,0.0550073832273483,0.0314327888190746,-0.99799108505249,0.047189999371767,0.00786499958485365,-0.998854994773865,0.047189999371767,0.00786499958485365,-0.998854994773865,-0.0393383838236332,-0.00786767713725567,-0.999194979667664,-0.0393396019935608,2.21872723411188e-016,-0.999225914478302,0.0550073832273483,0.0314327888190746,-0.99799108505249,0.047178328037262,0.998607933521271,-0.023589164018631,0.999597251415253,0.0157416891306639,-0.0236125327646732,0.99894767999649,0.0393286496400833,-0.0235971882939339,0.047189999371767,0.00786499958485365,-0.998854994773865,0.0550073832273483,0.0314327888190746,-0.99799108505249,0.99894767999649,0.0393286496400833,-0.0235971882939339,0.0550073832273483,0.0314327888190746,-0.99799108505249,0.999597251415253,0.0157416891306639,-0.0236125327646732,0.047178328037262,0.998607933521271,-0.023589164018631,0.999225914478302,0.0314716808497906,0.0236037615686655,0.999597251415253,0.0157416891306639,-0.0236125327646732,0.047178328037262,0.998607933521271,-0.023589164018631,0.0628364831209183,0.997529208660126,0.0314182415604591,0.999225914478302,0.0314716808497906,0.0236037615686655,0.99894767999649,-0.0235971882939339,0.0393286496400833,0.999597251415253,0.0157416891306639,-0.0236125327646732,0.999225914478302,0.0314716808497906,0.0236037615686655,0.0471856184303761,-0.0157285407185555,0.998762309551239,0.999225914478302,0.0314716808497906,0.0236037615686655,
- 0.0628364831209183,0.997529208660126,0.0314182415604591,0.0471856184303761,-0.0157285407185555,0.998762309551239,0.0628364831209183,0.997529208660126,0.0314182415604591,0.0157338920980692,0.999102234840393,0.0393347330391407,0.999225914478302,0.0314716808497906,0.0236037615686655,0.0710669010877609,-0.0710669010877609,0.99493670463562,0.99894767999649,-0.0235971882939339,0.0393286496400833,0.0710669010877609,-0.0710669010877609,0.99493670463562,0.999225914478302,0.0314716808497906,0.0236037615686655,0.0471856184303761,-0.0157285407185555,0.998762309551239,0.99799108505249,0.00785819720476866,0.0628655776381493,0.999597251415253,0.0157416891306639,-0.0236125327646732,0.99894767999649,-0.0235971882939339,0.0393286496400833,0.0710669010877609,-0.0710669010877609,0.99493670463562,0.99799108505249,0.00785819720476866,0.0628655776381493,0.99894767999649,-0.0235971882939339,0.0393286496400833,0.999597251415253,0.0157416891306639,-0.0236125327646732,0.99799108505249,0.00785819720476866,0.0628655776381493,0.99894767999649,0.0393286496400833,-0.0235971882939339,-0.0471856184303761,-0.0157285407185555,0.998762309551239,0.0471856184303761,-0.0157285407185555,0.998762309551239,0.0157338920980692,0.999102234840393,0.0393347330391407,-0.0471856184303761,-0.0157285407185555,0.998762309551239,0.0710669010877609,-0.0710669010877609,0.99493670463562,0.0471856184303761,-0.0157285407185555,0.998762309551239,0.0157338920980692,0.999102234840393,0.0393347330391407,-0.0393347330391407,0.999102234840393,0.0157338920980692,-0.0471856184303761,-0.0157285407185555,0.998762309551239,0.0710669010877609,-0.0710669010877609,0.99493670463562,-0.0471856184303761,-0.0157285407185555,0.998762309551239,0.0315872617065907,-0.0947617813944817,0.994998693466187,0.99799108505249,0.00785819720476866,0.0628655776381493,0.0710669010877609,-0.0710669010877609,0.99493670463562,0.0315872617065907,-0.0947617813944817,0.994998693466187,0.0315872617065907,-0.0947617813944817,0.994998693466187,-0.0471856184303761,-0.0157285407185555,0.998762309551239,-0.0314794778823853,0.00786986947059631,0.999473392963409,
- -0.0314794778823853,0.00786986947059631,0.999473392963409,0.0627977550029755,0.0470983162522316,0.996914327144623,0.0315872617065907,-0.0947617813944817,0.994998693466187,0.99799108505249,0.00785819720476866,0.0628655776381493,0.0315872617065907,-0.0947617813944817,0.994998693466187,0.0627977550029755,0.0470983162522316,0.996914327144623,-0.0236147306859493,-0.00787157658487558,0.999690234661102,0.0627977550029755,0.0470983162522316,0.996914327144623,-0.0314794778823853,0.00786986947059631,0.999473392963409,0.998114347457886,0.0392958410084248,0.0471550077199936,0.99799108505249,0.00785819720476866,0.0628655776381493,0.0627977550029755,0.0470983162522316,0.996914327144623,0.998114347457886,0.0392958410084248,0.0471550077199936,0.99894767999649,0.0393286496400833,-0.0235971882939339,0.99799108505249,0.00785819720476866,0.0628655776381493,0.0627726167440414,-0.0549260377883911,0.996515274047852,0.0627977550029755,0.0470983162522316,0.996914327144623,-0.0236147306859493,-0.00787157658487558,0.999690234661102,0.0627726167440414,-0.0549260377883911,0.996515274047852,0.998114347457886,0.0392958410084248,0.0471550077199936,0.0627977550029755,0.0470983162522316,0.996914327144623,0.0627726167440414,-0.0549260377883911,0.996515274047852,-0.0236147306859493,-0.00787157658487558,0.999690234661102,-0.0157416891306639,-0.0236125327646732,0.999597251415253,-0.023589164018631,-0.047178328037262,0.998607933521271,0.0627726167440414,-0.0549260377883911,0.996515274047852,-0.0157416891306639,-0.0236125327646732,0.999597251415253,0.998114347457886,0.0392958410084248,0.0471550077199936,0.998731434345245,-0.031456109136343,-0.039320133626461,0.99894767999649,0.0393286496400833,-0.0235971882939339,0.99894767999649,0.0393286496400833,-0.0235971882939339,0.998731434345245,-0.031456109136343,-0.039320133626461,0.047189999371767,0.00786499958485365,-0.998854994773865,0.998114347457886,0.0392958410084248,0.0471550077199936,0.0627726167440414,-0.0549260377883911,0.996515274047852,0.999690115451813,-0.00787157565355301,0.023614726960659,0.998731434345245,-0.031456109136343,-0.039320133626461,
- 0.998114347457886,0.0392958410084248,0.0471550077199936,0.999690115451813,-0.00787157565355301,0.023614726960659,0.0078735277056694,-0.0078735277056694,0.999938011169434,0.0627726167440414,-0.0549260377883911,0.996515274047852,-0.023589164018631,-0.047178328037262,0.998607933521271,0.0078735277056694,-0.0078735277056694,0.999938011169434,-0.023589164018631,-0.047178328037262,0.998607933521271,-0.0706801414489746,0.0157066993415356,0.99737536907196,0.999690115451813,-0.00787157565355301,0.023614726960659,0.0627726167440414,-0.0549260377883911,0.996515274047852,0.654009759426117,-0.756445050239563,0.00787963625043631,0.998731434345245,-0.031456109136343,-0.039320133626461,0.999690115451813,-0.00787157565355301,0.023614726960659,0.654009759426117,-0.756445050239563,0.00787963625043631,0.654009759426117,-0.756445050239563,0.00787963625043631,0.0627726167440414,-0.0549260377883911,0.996515274047852,0.0078735277056694,-0.0078735277056694,0.999938011169434,0.0078735277056694,-0.0078735277056694,0.999938011169434,-0.0706801414489746,0.0157066993415356,0.99737536907196,-0.0628655776381493,-0.00785819720476866,0.99799108505249,0.654009759426117,-0.756445050239563,0.00787963625043631,0.999504387378693,6.99006495096098e-018,-0.0314804539084435,0.998731434345245,-0.031456109136343,-0.039320133626461,0.047189999371767,0.00786499958485365,-0.998854994773865,0.998731434345245,-0.031456109136343,-0.039320133626461,0.999504387378693,6.99006495096098e-018,-0.0314804539084435,0.0078735277056694,-0.0078735277056694,0.999938011169434,0.999442577362061,0.0236088801175356,0.0236088801175356,0.654009759426117,-0.756445050239563,0.00787963625043631,0.654009759426117,-0.756445050239563,0.00787963625043631,0.999442577362061,0.0236088801175356,0.0236088801175356,0.999504387378693,6.99006495096098e-018,-0.0314804539084435,-0.0628655776381493,-0.00785819720476866,0.99799108505249,0.0393383838236332,0.00786767713725567,0.999194979667664,0.0078735277056694,-0.0078735277056694,0.999938011169434,0.0078735277056694,-0.0078735277056694,0.999938011169434,
- 0.0393383838236332,0.00786767713725567,0.999194979667664,0.999442577362061,0.0236088801175356,0.0236088801175356,0.0393383838236332,0.00786767713725567,0.999194979667664,-0.0628655776381493,-0.00785819720476866,0.99799108505249,0.047189999371767,0.00786499958485365,0.998854994773865,0.047189999371767,0.00786499958485365,0.998854994773865,-0.0628655776381493,-0.00785819720476866,0.99799108505249,-0.0473513714969158,0.520865082740784,0.852324724197388,-0.0473513714969158,0.520865082740784,0.852324724197388,-0.0314794778823853,0.00786986947059631,0.999473392963409,0.047189999371767,0.00786499958485365,0.998854994773865,0.0393383838236332,0.00786767713725567,0.999194979667664,0.999597251415253,-0.0236125327646732,0.0157416891306639,0.999442577362061,0.0236088801175356,0.0236088801175356,0.0393383838236332,0.00786767713725567,0.999194979667664,0.047189999371767,0.00786499958485365,0.998854994773865,0.999597251415253,-0.0236125327646732,0.0157416891306639,0.999597251415253,-0.0236125327646732,0.0157416891306639,0.999504387378693,6.99006495096098e-018,-0.0314804539084435,0.999442577362061,0.0236088801175356,0.0236088801175356,-0.0314794778823853,0.00786986947059631,0.999473392963409,0.055019274353981,-0.0235796887427568,0.998206853866577,0.047189999371767,0.00786499958485365,0.998854994773865,0.055019274353981,-0.0235796887427568,0.998206853866577,0.999597251415253,-0.0236125327646732,0.0157416891306639,0.047189999371767,0.00786499958485365,0.998854994773865,-0.0314716808497906,-0.0236037615686655,0.999225914478302,0.055019274353981,-0.0235796887427568,0.998206853866577,-0.0314794778823853,0.00786986947059631,0.999473392963409,0.055019274353981,-0.0235796887427568,0.998206853866577,-0.0314716808497906,-0.0236037615686655,0.999225914478302,-0.0315273553133011,-0.662074446678162,0.748774647712708,0.055019274353981,-0.0235796887427568,0.998206853866577,-0.0315273553133011,-0.662074446678162,0.748774647712708,0.133841663599014,-0.692827463150024,0.708573579788208,0.133841663599014,-0.692827463150024,0.708573579788208,0.998762309551239,-0.0471856184303761,0.0157285407185555,
- 0.055019274353981,-0.0235796887427568,0.998206853866577,0.999597251415253,-0.0236125327646732,0.0157416891306639,0.055019274353981,-0.0235796887427568,0.998206853866577,0.998762309551239,-0.0471856184303761,0.0157285407185555,0.998762309551239,-0.0471856184303761,0.0157285407185555,0.999504387378693,6.99006495096098e-018,-0.0314804539084435,0.999597251415253,-0.0236125327646732,0.0157416891306639,0.999504387378693,6.99006495096098e-018,-0.0314804539084435,0.998762309551239,-0.0471856184303761,0.0157285407185555,0.999597251415253,-0.0157416891306639,-0.0236125327646732,0.999504387378693,6.99006495096098e-018,-0.0314804539084435,0.999597251415253,-0.0157416891306639,-0.0236125327646732,0.047189999371767,0.00786499958485365,-0.998854994773865,0.998762309551239,-0.0471856184303761,0.0157285407185555,0.449656099081039,-0.851979970932007,-0.268215894699097,0.999597251415253,-0.0157416891306639,-0.0236125327646732,0.0784754380583763,-0.0235426295548677,-0.996638000011444,0.047189999371767,0.00786499958485365,-0.998854994773865,0.999597251415253,-0.0157416891306639,-0.0236125327646732,0.449656099081039,-0.851979970932007,-0.268215894699097,0.0784754380583763,-0.0235426295548677,-0.996638000011444,0.999597251415253,-0.0157416891306639,-0.0236125327646732,-0.0393383838236332,-0.00786767713725567,-0.999194979667664,0.047189999371767,0.00786499958485365,-0.998854994773865,0.0784754380583763,-0.0235426295548677,-0.996638000011444,-0.354100257158279,-0.865578413009644,-0.354100257158279,0.0784754380583763,-0.0235426295548677,-0.996638000011444,0.449656099081039,-0.851979970932007,-0.268215894699097,0.0784754380583763,-0.0235426295548677,-0.996638000011444,-0.354100257158279,-0.865578413009644,-0.354100257158279,-0.0393383838236332,-0.00786767713725567,-0.999194979667664,-0.0393383838236332,-0.00786767713725567,-0.999194979667664,-0.354100257158279,-0.865578413009644,-0.354100257158279,-0.996423363685608,-0.0784585326910019,-0.0313834138214588,-0.574074029922485,-0.817858874797821,0.0393201373517513,-0.996423363685608,-0.0784585326910019,-0.0313834138214588,
- -0.354100257158279,-0.865578413009644,-0.354100257158279,-0.996423363685608,-0.0784585326910019,-0.0313834138214588,-0.999442577362061,0.0236088801175356,-0.0236088801175356,-0.0393383838236332,-0.00786767713725567,-0.999194979667664,-0.997006475925446,-0.07065399736166,0.0314017795026302,-0.996423363685608,-0.0784585326910019,-0.0313834138214588,-0.574074029922485,-0.817858874797821,0.0393201373517513,-0.997006475925446,-0.07065399736166,0.0314017795026302,-0.999442577362061,0.0236088801175356,-0.0236088801175356,-0.996423363685608,-0.0784585326910019,-0.0313834138214588,-0.997006475925446,-0.07065399736166,0.0314017795026302,-0.574074029922485,-0.817858874797821,0.0393201373517513,-0.0314716808497906,-0.0236037615686655,0.999225914478302,-0.999380588531494,0.0157382767647505,0.031476553529501,-0.999442577362061,0.0236088801175356,-0.0236088801175356,-0.997006475925446,-0.07065399736166,0.0314017795026302,-0.0314716808497906,-0.0236037615686655,0.999225914478302,-0.999380588531494,0.0157382767647505,0.031476553529501,-0.997006475925446,-0.07065399736166,0.0314017795026302,-0.996975898742676,0.0549514293670654,0.0549514293670654,-0.999442577362061,0.0236088801175356,-0.0236088801175356,-0.999380588531494,0.0157382767647505,0.031476553529501,-0.999380588531494,0.0157382767647505,0.031476553529501,-0.0314716808497906,-0.0236037615686655,0.999225914478302,-0.0314794778823853,0.00786986947059631,0.999473392963409,-0.996975898742676,0.0549514293670654,0.0549514293670654,-0.999380588531494,0.0157382767647505,0.031476553529501,-0.0314794778823853,0.00786986947059631,0.999473392963409,0.0395013242959976,0.995433330535889,-0.086902916431427,-0.0156975034624338,0.0784875229001045,-0.996791481971741,-0.0236125327646732,0.999597251415253,-0.0157416891306639,-0.0156975034624338,0.0784875229001045,-0.996791481971741,0.0395013242959976,0.995433330535889,-0.086902916431427,0.0471550077199936,0.0392958410084248,-0.998114347457886,0.0628675222396851,2.21605378637211e-016,-0.998021900653839,-0.0156975034624338,0.0784875229001045,-0.996791481971741,
- 0.0471550077199936,0.0392958410084248,-0.998114347457886,-0.0236088763922453,-0.0236088763922453,-0.999442458152771,-0.0156975034624338,0.0784875229001045,-0.996791481971741,0.0628675222396851,2.21605378637211e-016,-0.998021900653839,-0.0236088763922453,-0.0236088763922453,-0.999442458152771,0.0628675222396851,2.21605378637211e-016,-0.998021900653839,-0.031456109136343,0.039320133626461,-0.998731434345245,0.999102234840393,-0.0157338920980692,-0.0393347330391407,0.0471550077199936,0.0392958410084248,-0.998114347457886,0.0395013242959976,0.995433330535889,-0.086902916431427,0.999102234840393,-0.0157338920980692,-0.0393347330391407,0.0628675222396851,2.21605378637211e-016,-0.998021900653839,0.0471550077199936,0.0392958410084248,-0.998114347457886,0.0395013242959976,0.995433330535889,-0.086902916431427,0.999473392963409,-0.00786986947059631,0.0314794778823853,0.999102234840393,-0.0157338920980692,-0.0393347330391407,0.999473392963409,-0.00786986947059631,0.0314794778823853,0.0395013242959976,0.995433330535889,-0.086902916431427,0.0314804539084435,0.999504387378693,2.21934556816337e-016,0.00786767713725567,0.999194979667664,0.0393383838236332,0.999473392963409,-0.00786986947059631,0.0314794778823853,0.0314804539084435,0.999504387378693,2.21934556816337e-016,0.0628675222396851,2.21605378637211e-016,-0.998021900653839,0.999102234840393,-0.0157338920980692,-0.0393347330391407,0.999597251415253,0.0157416891306639,-0.0236125327646732,0.999473392963409,-0.00786986947059631,0.0314794778823853,0.999597251415253,0.0157416891306639,-0.0236125327646732,0.999102234840393,-0.0157338920980692,-0.0393347330391407,0.0393286496400833,-0.0235971882939339,-0.99894767999649,-0.031456109136343,0.039320133626461,-0.998731434345245,0.0628675222396851,2.21605378637211e-016,-0.998021900653839,0.0393286496400833,-0.0235971882939339,-0.99894767999649,0.0628675222396851,2.21605378637211e-016,-0.998021900653839,0.999597251415253,0.0157416891306639,-0.0236125327646732,-0.031456109136343,0.039320133626461,-0.998731434345245,0.0393286496400833,-0.0235971882939339,-0.99894767999649,
- -0.0314794778823853,-0.00786986947059631,-0.999473392963409,-0.0628500655293465,-0.0235687755048275,-0.997744739055634,-0.0314794778823853,-0.00786986947059631,-0.999473392963409,0.0393286496400833,-0.0235971882939339,-0.99894767999649,-0.0628500655293465,-0.0235687755048275,-0.997744739055634,0.0393286496400833,-0.0235971882939339,-0.99894767999649,0.0550328753888607,0.00786183960735798,-0.998453617095947,0.0550328753888607,0.00786183960735798,-0.998453617095947,-0.0706692412495613,0.0235564168542624,-0.99722158908844,-0.0628500655293465,-0.0235687755048275,-0.997744739055634,-0.0235971882939339,0.0393286496400833,-0.99894767999649,-0.0706692412495613,0.0235564168542624,-0.99722158908844,0.0550328753888607,0.00786183960735798,-0.998453617095947,0.999597251415253,0.0157416891306639,-0.0236125327646732,0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.0393286496400833,-0.0235971882939339,-0.99894767999649,0.0550328753888607,0.00786183960735798,-0.998453617095947,0.0393286496400833,-0.0235971882939339,-0.99894767999649,0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.0706888660788536,2.21489163069869e-016,-0.997498512268066,-0.0235971882939339,0.0393286496400833,-0.99894767999649,0.0550328753888607,0.00786183960735798,-0.998453617095947,0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.0706888660788536,2.21489163069869e-016,-0.997498512268066,0.0550328753888607,0.00786183960735798,-0.998453617095947,-0.0235971882939339,0.0393286496400833,-0.99894767999649,0.0706888660788536,2.21489163069869e-016,-0.997498512268066,-0.0157441273331642,0.0157441273331642,-0.999752104282379,0.0706888660788536,2.21489163069869e-016,-0.997498512268066,-0.0236147306859493,0.00787157658487558,-0.999690234661102,-0.0157441273331642,0.0157441273331642,-0.999752104282379,0.999102234840393,-0.0157338920980692,0.0393347330391407,0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.999597251415253,0.0157416891306639,-0.0236125327646732,0.999102234840393,-0.0157338920980692,0.0393347330391407,0.999597251415253,0.0157416891306639,-0.0236125327646732,
- 0.999473392963409,-0.00786986947059631,0.0314794778823853,0.0706888660788536,2.21489163069869e-016,-0.997498512268066,0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.998731434345245,-0.039320133626461,-0.031456109136343,0.999102234840393,-0.0157338920980692,0.0393347330391407,0.999442577362061,0.0236088801175356,0.0236088801175356,0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.999442577362061,0.0236088801175356,0.0236088801175356,0.998731434345245,-0.039320133626461,-0.031456109136343,0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.991542160511017,0.125910118222237,-0.0314775295555592,0.0706888660788536,2.21489163069869e-016,-0.997498512268066,0.998731434345245,-0.039320133626461,-0.031456109136343,0.991542160511017,0.125910118222237,-0.0314775295555592,0.998731434345245,-0.039320133626461,-0.031456109136343,0.999442577362061,0.0236088801175356,0.0236088801175356,-0.0236147306859493,0.00787157658487558,-0.999690234661102,0.0706888660788536,2.21489163069869e-016,-0.997498512268066,0.0550277717411518,0.0157222207635641,-0.998361051082611,0.991542160511017,0.125910118222237,-0.0314775295555592,0.0550277717411518,0.0157222207635641,-0.998361051082611,0.0706888660788536,2.21489163069869e-016,-0.997498512268066,0.0550277717411518,0.0157222207635641,-0.998361051082611,0.054992102086544,-0.0392800718545914,-0.99771386384964,-0.0236147306859493,0.00787157658487558,-0.999690234661102,-0.0236147306859493,0.00787157658487558,-0.999690234661102,0.054992102086544,-0.0392800718545914,-0.99771386384964,-0.0235971882939339,-0.0393286496400833,-0.99894767999649,0.054992102086544,-0.0392800718545914,-0.99771386384964,-0.015693636611104,-0.855303227901459,-0.51789003610611,-0.0235971882939339,-0.0393286496400833,-0.99894767999649,-0.015693636611104,-0.855303227901459,-0.51789003610611,0.054992102086544,-0.0392800718545914,-0.99771386384964,0.220465630292892,-0.873988747596741,-0.433057516813278,0.433689743280411,-0.891035318374634,-0.13404954969883,0.220465630292892,-0.873988747596741,-0.433057516813278,
- 0.054992102086544,-0.0392800718545914,-0.99771386384964,0.998607933521271,-0.023589164018631,-0.047178328037262,0.0550277717411518,0.0157222207635641,-0.998361051082611,0.991542160511017,0.125910118222237,-0.0314775295555592,0.0550277717411518,0.0157222207635641,-0.998361051082611,0.998607933521271,-0.023589164018631,-0.047178328037262,0.054992102086544,-0.0392800718545914,-0.99771386384964,0.433689743280411,-0.891035318374634,-0.13404954969883,0.054992102086544,-0.0392800718545914,-0.99771386384964,0.998607933521271,-0.023589164018631,-0.047178328037262,0.999442577362061,0.0236088801175356,0.0236088801175356,0.998607933521271,-0.023589164018631,-0.047178328037262,0.991542160511017,0.125910118222237,-0.0314775295555592,0.998607933521271,-0.023589164018631,-0.047178328037262,0.323749244213104,-0.939662396907806,0.11054852604866,0.433689743280411,-0.891035318374634,-0.13404954969883,0.998607933521271,-0.023589164018631,-0.047178328037262,0.999442577362061,0.0236088801175356,0.0236088801175356,0.999102234840393,-0.0393347330391407,0.0157338920980692,0.323749244213104,-0.939662396907806,0.11054852604866,0.998607933521271,-0.023589164018631,-0.047178328037262,0.999102234840393,-0.0393347330391407,0.0157338920980692,0.0393396019935608,-2.21872723411188e-016,0.999225914478302,0.999102234840393,-0.0393347330391407,0.0157338920980692,0.999442577362061,0.0236088801175356,0.0236088801175356,0.0393396019935608,-2.21872723411188e-016,0.999225914478302,0.999442577362061,0.0236088801175356,0.0236088801175356,0.999102234840393,-0.0157338920980692,0.0393347330391407,0.999473392963409,-0.00786986947059631,0.0314794778823853,0.0393396019935608,-2.21872723411188e-016,0.999225914478302,0.999102234840393,-0.0157338920980692,0.0393347330391407,0.999102234840393,-0.0393347330391407,0.0157338920980692,0.0236037615686655,-0.0314716808497906,0.999225914478302,0.323749244213104,-0.939662396907806,0.11054852604866,0.999102234840393,-0.0393347330391407,0.0157338920980692,0.0393396019935608,-2.21872723411188e-016,0.999225914478302,0.0236037615686655,-0.0314716808497906,0.999225914478302,
- -0.031456109136343,-0.039320133626461,0.998731434345245,0.323749244213104,-0.939662396907806,0.11054852604866,0.0236037615686655,-0.0314716808497906,0.999225914478302,0.323749244213104,-0.939662396907806,0.11054852604866,-0.031456109136343,-0.039320133626461,0.998731434345245,-0.228084981441498,-0.959529995918274,0.165164992213249,0.0236037615686655,-0.0314716808497906,0.999225914478302,-0.0393396019935608,-2.21872723411188e-016,0.999225914478302,-0.031456109136343,-0.039320133626461,0.998731434345245,-0.0393396019935608,-2.21872723411188e-016,0.999225914478302,0.0236037615686655,-0.0314716808497906,0.999225914478302,0.0393396019935608,-2.21872723411188e-016,0.999225914478302,-0.031456109136343,-0.039320133626461,0.998731434345245,-0.999225914478302,-0.0314716808497906,0.0236037615686655,-0.228084981441498,-0.959529995918274,0.165164992213249,-0.0393396019935608,-2.21872723411188e-016,0.999225914478302,-0.999225914478302,-0.0314716808497906,0.0236037615686655,-0.031456109136343,-0.039320133626461,0.998731434345245,-0.999225914478302,-0.0314716808497906,0.0236037615686655,-0.740249276161194,-0.669374346733093,-0.0629999414086342,-0.228084981441498,-0.959529995918274,0.165164992213249,-0.999225914478302,-0.0314716808497906,0.0236037615686655,-0.999380588531494,-0.0157382767647505,-0.031476553529501,-0.740249276161194,-0.669374346733093,-0.0629999414086342,-0.0235971882939339,-0.0393286496400833,-0.99894767999649,-0.740249276161194,-0.669374346733093,-0.0629999414086342,-0.999380588531494,-0.0157382767647505,-0.031476553529501,-0.999380588531494,-0.0157382767647505,-0.031476553529501,-0.141416981816292,0.00785649940371513,-0.989918947219849,-0.0235971882939339,-0.0393286496400833,-0.99894767999649,-0.999597251415253,0.0157416891306639,0.0236125327646732,-0.999225914478302,-0.0314716808497906,0.0236037615686655,-0.0393396019935608,-2.21872723411188e-016,0.999225914478302,-0.999225914478302,-0.0314716808497906,0.0236037615686655,-0.999597251415253,0.0157416891306639,0.0236125327646732,-0.999380588531494,-0.0157382767647505,-0.031476553529501,
- -0.141416981816292,0.00785649940371513,-0.989918947219849,-0.999380588531494,-0.0157382767647505,-0.031476553529501,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.999597251415253,0.0157416891306639,0.0236125327646732,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.999380588531494,-0.0157382767647505,-0.031476553529501,-0.141416981816292,0.00785649940371513,-0.989918947219849,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.0157441273331642,0.0157441273331642,-0.999752104282379,-0.0393396019935608,-2.21872723411188e-016,0.999225914478302,-0.142169266939163,0.0710846334695816,0.987286627292633,-0.999597251415253,0.0157416891306639,0.0236125327646732,-0.0393396019935608,-2.21872723411188e-016,0.999225914478302,0.0393396019935608,-2.21872723411188e-016,0.999225914478302,-0.142169266939163,0.0710846334695816,0.987286627292633,-0.999597251415253,0.0157416891306639,0.0236125327646732,-0.999473392963409,-0.00786986947059631,0.0314794778823853,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.999597251415253,0.0157416891306639,0.0236125327646732,-0.142169266939163,0.0710846334695816,0.987286627292633,-0.999473392963409,-0.00786986947059631,0.0314794778823853,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.999597251415253,0.0236125327646732,-0.0157416891306639,-0.0157441273331642,0.0157441273331642,-0.999752104282379,-0.999473392963409,-0.00786986947059631,0.0314794778823853,-0.999597251415253,0.0236125327646732,-0.0157416891306639,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.0157441273331642,0.0157441273331642,-0.999752104282379,-0.999597251415253,0.0236125327646732,-0.0157416891306639,-0.0235971882939339,0.0393286496400833,-0.99894767999649,-0.0393383838236332,-0.00786767713725567,0.999194979667664,-0.999473392963409,-0.00786986947059631,0.0314794778823853,-0.142169266939163,0.0710846334695816,0.987286627292633,-0.0393383838236332,-0.00786767713725567,0.999194979667664,-0.142169266939163,0.0710846334695816,0.987286627292633,0.0393396019935608,-2.21872723411188e-016,0.999225914478302,
- -0.0393383838236332,-0.00786767713725567,0.999194979667664,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.999473392963409,-0.00786986947059631,0.0314794778823853,-0.999473392963409,-0.00786986947059631,0.0314794778823853,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.999597251415253,0.0236125327646732,-0.0157416891306639,-0.0393383838236332,-0.00786767713725567,0.999194979667664,0.0393396019935608,-2.21872723411188e-016,0.999225914478302,-0.031476553529501,-0.0157382767647505,0.999380588531494,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.0393383838236332,-0.00786767713725567,0.999194979667664,-0.031476553529501,-0.0157382767647505,0.999380588531494,-0.999597251415253,0.0236125327646732,-0.0157416891306639,-0.615012764930725,0.788477897644043,-0.00788477901369333,-0.0235971882939339,0.0393286496400833,-0.99894767999649,-0.0235971882939339,0.0393286496400833,-0.99894767999649,-0.615012764930725,0.788477897644043,-0.00788477901369333,-0.188462942838669,0.0314104929566383,-0.98157787322998,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.998206853866577,0.055019274353981,0.0235796887427568,-0.999597251415253,0.0236125327646732,-0.0157416891306639,-0.998206853866577,0.055019274353981,0.0235796887427568,-0.615012764930725,0.788477897644043,-0.00788477901369333,-0.999597251415253,0.0236125327646732,-0.0157416891306639,-0.031476553529501,-0.0157382767647505,0.999380588531494,-0.998206853866577,0.055019274353981,0.0235796887427568,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.188462942838669,0.0314104929566383,-0.98157787322998,-0.615012764930725,0.788477897644043,-0.00788477901369333,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.615012764930725,0.788477897644043,-0.00788477901369333,-0.998206853866577,0.055019274353981,0.0235796887427568,-0.999225914478302,0.0236037615686655,-0.0314716808497906,-0.188462942838669,0.0314104929566383,-0.98157787322998,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,
- -0.188462942838669,0.0314104929566383,-0.98157787322998,-0.999225914478302,0.0236037615686655,-0.0314716808497906,-0.180872619152069,-0.0314561054110527,-0.983003377914429,-0.999225914478302,0.0236037615686655,-0.0314716808497906,-0.0314794778823853,-0.00786986947059631,-0.999473392963409,-0.180872619152069,-0.0314561054110527,-0.983003377914429,-0.999225914478302,0.0236037615686655,-0.0314716808497906,-0.173072829842567,0.0550686232745647,-0.983368337154388,-0.0314794778823853,-0.00786986947059631,-0.999473392963409,-0.998206853866577,0.055019274353981,0.0235796887427568,-0.999473392963409,0.00786986947059631,0.0314794778823853,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.999473392963409,0.00786986947059631,0.0314794778823853,-0.999225914478302,0.0236037615686655,-0.0314716808497906,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.999473392963409,0.00786986947059631,0.0314794778823853,-0.998206853866577,0.055019274353981,0.0235796887427568,-0.031476553529501,-0.0157382767647505,0.999380588531494,-0.173072829842567,0.0550686232745647,-0.983368337154388,-0.999225914478302,0.0236037615686655,-0.0314716808497906,-0.999473392963409,0.00786986947059631,-0.0314794778823853,-0.999473392963409,0.00786986947059631,0.0314794778823853,-0.999473392963409,0.00786986947059631,-0.0314794778823853,-0.999225914478302,0.0236037615686655,-0.0314716808497906,-0.999473392963409,0.00786986947059631,-0.0314794778823853,-0.710957229137421,-0.703057706356049,-0.0157990492880344,-0.173072829842567,0.0550686232745647,-0.983368337154388,-0.999473392963409,0.00786986947059631,-0.0314794778823853,-0.999473392963409,0.00786986947059631,0.0314794778823853,-0.710957229137421,-0.703057706356049,-0.0157990492880344,-0.710957229137421,-0.703057706356049,-0.0157990492880344,-0.0236088763922453,-0.0236088763922453,-0.999442458152771,-0.173072829842567,0.0550686232745647,-0.983368337154388,-0.031476553529501,0.0157382767647505,0.999380588531494,-0.999473392963409,0.00786986947059631,0.0314794778823853,-0.031476553529501,-0.0157382767647505,0.999380588531494,
- -0.0236088763922453,-0.0236088763922453,-0.999442458152771,-0.710957229137421,-0.703057706356049,-0.0157990492880344,-0.99839198589325,-0.0471681281924248,-0.0314454175531864,-0.710957229137421,-0.703057706356049,-0.0157990492880344,-0.999473392963409,0.00786986947059631,0.0314794778823853,-0.997006475925446,-0.07065399736166,0.0314017795026302,-0.997006475925446,-0.07065399736166,0.0314017795026302,-0.99839198589325,-0.0471681281924248,-0.0314454175531864,-0.710957229137421,-0.703057706356049,-0.0157990492880344,-0.997006475925446,-0.07065399736166,0.0314017795026302,-0.999473392963409,0.00786986947059631,0.0314794778823853,-0.031476553529501,0.0157382767647505,0.999380588531494,-0.99839198589325,-0.0471681281924248,-0.0314454175531864,-0.999504387378693,6.99006495096098e-018,-0.0314804539084435,-0.0236088763922453,-0.0236088763922453,-0.999442458152771,-0.997006475925446,-0.07065399736166,0.0314017795026302,-0.999504387378693,6.99006495096098e-018,-0.0314804539084435,-0.99839198589325,-0.0471681281924248,-0.0314454175531864,-0.0236088763922453,-0.0236088763922453,-0.999442458152771,-0.999504387378693,6.99006495096098e-018,-0.0314804539084435,-0.0156975034624338,0.0784875229001045,-0.996791481971741,-0.0236125327646732,0.999597251415253,-0.0157416891306639,-0.0156975034624338,0.0784875229001045,-0.996791481971741,-0.999504387378693,6.99006495096098e-018,-0.0314804539084435,-0.999597251415253,0.0157416891306639,0.0236125327646732,-0.0236125327646732,0.999597251415253,-0.0157416891306639,-0.999504387378693,6.99006495096098e-018,-0.0314804539084435,-0.999597251415253,0.0157416891306639,0.0236125327646732,-0.999504387378693,6.99006495096098e-018,-0.0314804539084435,-0.997006475925446,-0.07065399736166,0.0314017795026302,0,0.999876022338867,0.0157460793852806,-0.0236125327646732,0.999597251415253,-0.0157416891306639,-0.999597251415253,0.0157416891306639,0.0236125327646732,-0.999597251415253,0.0157416891306639,0.0236125327646732,-0.997006475925446,-0.07065399736166,0.0314017795026302,-0.0393347330391407,0.0157338920980692,0.999102234840393,
- -0.0393347330391407,0.0157338920980692,0.999102234840393,0,0.999876022338867,0.0157460793852806,-0.999597251415253,0.0157416891306639,0.0236125327646732,-0.0393347330391407,0.0157338920980692,0.999102234840393,-0.997006475925446,-0.07065399736166,0.0314017795026302,-0.031476553529501,0.0157382767647505,0.999380588531494,-0.0393347330391407,0.0157338920980692,0.999102234840393,0.0948061496019363,0.00790051184594631,0.995464503765106,0,0.999876022338867,0.0157460793852806,0.0948061496019363,0.00790051184594631,0.995464503765106,-0.0393347330391407,0.0157338920980692,0.999102234840393,-0.031476553529501,0.0157382767647505,0.999380588531494,-0.031476553529501,-0.0157382767647505,0.999380588531494,0.0948061496019363,0.00790051184594631,0.995464503765106,-0.031476553529501,0.0157382767647505,0.999380588531494,0.00786767713725567,0.999194979667664,0.0393383838236332,0,0.999876022338867,0.0157460793852806,0.0948061496019363,0.00790051184594631,0.995464503765106,0.0948061496019363,0.00790051184594631,0.995464503765106,-0.031476553529501,-0.0157382767647505,0.999380588531494,0.0393396019935608,-2.21872723411188e-016,0.999225914478302,0.0948061496019363,0.00790051184594631,0.995464503765106,0.999473392963409,-0.00786986947059631,0.0314794778823853,0.00786767713725567,0.999194979667664,0.0393383838236332,0.0393396019935608,-2.21872723411188e-016,0.999225914478302,0.999473392963409,-0.00786986947059631,0.0314794778823853,0.0948061496019363,0.00790051184594631,0.995464503765106,0.0236125327646732,0.999597251415253,0.0157416891306639,-0.0395013242959976,0.995433330535889,0.086902916431427,0.0156975034624338,0.0784875229001045,0.996791481971741,-0.0471550077199936,0.0392958410084248,0.998114347457886,0.0156975034624338,0.0784875229001045,0.996791481971741,-0.0395013242959976,0.995433330535889,0.086902916431427,0.0156975034624338,0.0784875229001045,0.996791481971741,-0.0471550077199936,0.0392958410084248,0.998114347457886,-0.0628675222396851,-2.21605378637211e-016,0.998021900653839,0.0156975034624338,0.0784875229001045,0.996791481971741,
- -0.0628675222396851,-2.21605378637211e-016,0.998021900653839,0.0236088763922453,-0.0236088763922453,0.999442458152771,0.0236088763922453,-0.0236088763922453,0.999442458152771,-0.0628675222396851,-2.21605378637211e-016,0.998021900653839,0.031456109136343,0.039320133626461,0.998731434345245,-0.0395013242959976,0.995433330535889,0.086902916431427,-0.999102234840393,-0.0157338920980692,0.0393347330391407,-0.0471550077199936,0.0392958410084248,0.998114347457886,-0.0628675222396851,-2.21605378637211e-016,0.998021900653839,-0.0471550077199936,0.0392958410084248,0.998114347457886,-0.999102234840393,-0.0157338920980692,0.0393347330391407,-0.0395013242959976,0.995433330535889,0.086902916431427,-0.999473392963409,-0.00786986947059631,-0.0314794778823853,-0.999102234840393,-0.0157338920980692,0.0393347330391407,-0.999473392963409,-0.00786986947059631,-0.0314794778823853,-0.0395013242959976,0.995433330535889,0.086902916431427,-0.0314804539084435,0.999504387378693,2.21934556816337e-016,-0.00786767713725567,0.999194979667664,-0.0393383838236332,-0.999473392963409,-0.00786986947059631,-0.0314794778823853,-0.0314804539084435,0.999504387378693,2.21934556816337e-016,-0.999102234840393,-0.0157338920980692,0.0393347330391407,-0.999597251415253,0.0157416891306639,0.0236125327646732,-0.0628675222396851,-2.21605378637211e-016,0.998021900653839,-0.999102234840393,-0.0157338920980692,0.0393347330391407,-0.999473392963409,-0.00786986947059631,-0.0314794778823853,-0.999597251415253,0.0157416891306639,0.0236125327646732,-0.0393286496400833,-0.0235971882939339,0.99894767999649,0.031456109136343,0.039320133626461,0.998731434345245,-0.0628675222396851,-2.21605378637211e-016,0.998021900653839,-0.0628675222396851,-2.21605378637211e-016,0.998021900653839,-0.999597251415253,0.0157416891306639,0.0236125327646732,-0.0393286496400833,-0.0235971882939339,0.99894767999649,0.031456109136343,0.039320133626461,0.998731434345245,-0.0393286496400833,-0.0235971882939339,0.99894767999649,0.0314794778823853,-0.00786986947059631,0.999473392963409,0.0628500655293465,-0.0235687755048275,0.997744739055634,
- 0.0314794778823853,-0.00786986947059631,0.999473392963409,-0.0393286496400833,-0.0235971882939339,0.99894767999649,-0.0550328753888607,0.00786183960735798,0.998453617095947,0.0628500655293465,-0.0235687755048275,0.997744739055634,-0.0393286496400833,-0.0235971882939339,0.99894767999649,0.0628500655293465,-0.0235687755048275,0.997744739055634,-0.0550328753888607,0.00786183960735798,0.998453617095947,0.0706692412495613,0.0235564168542624,0.99722158908844,0.0235971882939339,0.0393286496400833,0.99894767999649,0.0706692412495613,0.0235564168542624,0.99722158908844,-0.0550328753888607,0.00786183960735798,0.998453617095947,-0.0393286496400833,-0.0235971882939339,0.99894767999649,-0.999597251415253,0.0157416891306639,0.0236125327646732,-0.999009490013123,-0.0314648635685444,0.0314648635685444,-0.0550328753888607,0.00786183960735798,0.998453617095947,-0.0393286496400833,-0.0235971882939339,0.99894767999649,-0.999009490013123,-0.0314648635685444,0.0314648635685444,-0.0706888660788536,-2.21489163069869e-016,0.997498512268066,0.0235971882939339,0.0393286496400833,0.99894767999649,-0.0550328753888607,0.00786183960735798,0.998453617095947,-0.0706888660788536,-2.21489163069869e-016,0.997498512268066,-0.0550328753888607,0.00786183960735798,0.998453617095947,-0.999009490013123,-0.0314648635685444,0.0314648635685444,0.0235971882939339,0.0393286496400833,0.99894767999649,-0.0706888660788536,-2.21489163069869e-016,0.997498512268066,0.0157441273331642,0.0157441273331642,0.999752104282379,-0.0706888660788536,-2.21489163069869e-016,0.997498512268066,0.0236147306859493,0.00787157658487558,0.999690234661102,0.0157441273331642,0.0157441273331642,0.999752104282379,-0.999597251415253,0.0157416891306639,0.0236125327646732,-0.999102234840393,-0.0157338920980692,-0.0393347330391407,-0.999009490013123,-0.0314648635685444,0.0314648635685444,-0.999102234840393,-0.0157338920980692,-0.0393347330391407,-0.999597251415253,0.0157416891306639,0.0236125327646732,-0.999473392963409,-0.00786986947059631,-0.0314794778823853,-0.0706888660788536,-2.21489163069869e-016,0.997498512268066,
- -0.999009490013123,-0.0314648635685444,0.0314648635685444,-0.998731434345245,-0.039320133626461,0.031456109136343,-0.999442577362061,0.0236088801175356,-0.0236088801175356,-0.999009490013123,-0.0314648635685444,0.0314648635685444,-0.999102234840393,-0.0157338920980692,-0.0393347330391407,-0.999009490013123,-0.0314648635685444,0.0314648635685444,-0.999442577362061,0.0236088801175356,-0.0236088801175356,-0.998731434345245,-0.039320133626461,0.031456109136343,-0.991542160511017,0.125910118222237,0.0314775295555592,-0.0706888660788536,-2.21489163069869e-016,0.997498512268066,-0.998731434345245,-0.039320133626461,0.031456109136343,-0.991542160511017,0.125910118222237,0.0314775295555592,-0.998731434345245,-0.039320133626461,0.031456109136343,-0.999442577362061,0.0236088801175356,-0.0236088801175356,0.0236147306859493,0.00787157658487558,0.999690234661102,-0.0706888660788536,-2.21489163069869e-016,0.997498512268066,-0.0550277717411518,0.0157222207635641,0.998361051082611,-0.991542160511017,0.125910118222237,0.0314775295555592,-0.0550277717411518,0.0157222207635641,0.998361051082611,-0.0706888660788536,-2.21489163069869e-016,0.997498512268066,-0.0550277717411518,0.0157222207635641,0.998361051082611,-0.054992102086544,-0.0392800718545914,0.99771386384964,0.0236147306859493,0.00787157658487558,0.999690234661102,0.0236147306859493,0.00787157658487558,0.999690234661102,-0.054992102086544,-0.0392800718545914,0.99771386384964,0.0235971882939339,-0.0393286496400833,0.99894767999649,-0.054992102086544,-0.0392800718545914,0.99771386384964,0.015693636611104,-0.855303227901459,0.51789003610611,0.0235971882939339,-0.0393286496400833,0.99894767999649,0.015693636611104,-0.855303227901459,0.51789003610611,-0.054992102086544,-0.0392800718545914,0.99771386384964,-0.220465630292892,-0.873988747596741,0.433057516813278,-0.220465630292892,-0.873988747596741,0.433057516813278,-0.054992102086544,-0.0392800718545914,0.99771386384964,-0.433689743280411,-0.891035318374634,0.13404954969883,-0.998607933521271,-0.023589164018631,0.047178328037262,-0.0550277717411518,0.0157222207635641,0.998361051082611,
- -0.991542160511017,0.125910118222237,0.0314775295555592,-0.0550277717411518,0.0157222207635641,0.998361051082611,-0.998607933521271,-0.023589164018631,0.047178328037262,-0.054992102086544,-0.0392800718545914,0.99771386384964,-0.998607933521271,-0.023589164018631,0.047178328037262,-0.433689743280411,-0.891035318374634,0.13404954969883,-0.054992102086544,-0.0392800718545914,0.99771386384964,-0.999442577362061,0.0236088801175356,-0.0236088801175356,-0.998607933521271,-0.023589164018631,0.047178328037262,-0.991542160511017,0.125910118222237,0.0314775295555592,-0.998607933521271,-0.023589164018631,0.047178328037262,-0.323749244213104,-0.939662396907806,-0.11054852604866,-0.433689743280411,-0.891035318374634,0.13404954969883,-0.998607933521271,-0.023589164018631,0.047178328037262,-0.999442577362061,0.0236088801175356,-0.0236088801175356,-0.999102234840393,-0.0393347330391407,-0.0157338920980692,-0.323749244213104,-0.939662396907806,-0.11054852604866,-0.998607933521271,-0.023589164018631,0.047178328037262,-0.999102234840393,-0.0393347330391407,-0.0157338920980692,-0.999102234840393,-0.0393347330391407,-0.0157338920980692,-0.999442577362061,0.0236088801175356,-0.0236088801175356,-0.0393396019935608,2.21872723411188e-016,-0.999225914478302,-0.0393396019935608,2.21872723411188e-016,-0.999225914478302,-0.999442577362061,0.0236088801175356,-0.0236088801175356,-0.999102234840393,-0.0157338920980692,-0.0393347330391407,-0.999102234840393,-0.0157338920980692,-0.0393347330391407,-0.999473392963409,-0.00786986947059631,-0.0314794778823853,-0.0393396019935608,2.21872723411188e-016,-0.999225914478302,-0.999102234840393,-0.0393347330391407,-0.0157338920980692,-0.0236037615686655,-0.0314716808497906,-0.999225914478302,-0.323749244213104,-0.939662396907806,-0.11054852604866,-0.999102234840393,-0.0393347330391407,-0.0157338920980692,-0.0393396019935608,2.21872723411188e-016,-0.999225914478302,-0.0236037615686655,-0.0314716808497906,-0.999225914478302,0.031456109136343,-0.039320133626461,-0.998731434345245,-0.323749244213104,-0.939662396907806,-0.11054852604866,
- -0.0236037615686655,-0.0314716808497906,-0.999225914478302,-0.323749244213104,-0.939662396907806,-0.11054852604866,0.031456109136343,-0.039320133626461,-0.998731434345245,0.228084981441498,-0.959529995918274,-0.165164992213249,-0.0236037615686655,-0.0314716808497906,-0.999225914478302,0.0393396019935608,2.21872723411188e-016,-0.999225914478302,0.031456109136343,-0.039320133626461,-0.998731434345245,0.0393396019935608,2.21872723411188e-016,-0.999225914478302,-0.0236037615686655,-0.0314716808497906,-0.999225914478302,-0.0393396019935608,2.21872723411188e-016,-0.999225914478302,0.031456109136343,-0.039320133626461,-0.998731434345245,0.999225914478302,-0.0314716808497906,-0.0236037615686655,0.228084981441498,-0.959529995918274,-0.165164992213249,0.031456109136343,-0.039320133626461,-0.998731434345245,0.0393396019935608,2.21872723411188e-016,-0.999225914478302,0.999225914478302,-0.0314716808497906,-0.0236037615686655,0.999225914478302,-0.0314716808497906,-0.0236037615686655,0.740249276161194,-0.669374346733093,0.0629999414086342,0.228084981441498,-0.959529995918274,-0.165164992213249,0.999225914478302,-0.0314716808497906,-0.0236037615686655,0.999380588531494,-0.0157382767647505,0.031476553529501,0.740249276161194,-0.669374346733093,0.0629999414086342,0.0235971882939339,-0.0393286496400833,0.99894767999649,0.740249276161194,-0.669374346733093,0.0629999414086342,0.999380588531494,-0.0157382767647505,0.031476553529501,0.999380588531494,-0.0157382767647505,0.031476553529501,0.141416981816292,0.00785649940371513,0.989918947219849,0.0235971882939339,-0.0393286496400833,0.99894767999649,0.999225914478302,-0.0314716808497906,-0.0236037615686655,0.0393396019935608,2.21872723411188e-016,-0.999225914478302,0.999597251415253,0.0157416891306639,-0.0236125327646732,0.999597251415253,0.0157416891306639,-0.0236125327646732,0.999380588531494,-0.0157382767647505,0.031476553529501,0.999225914478302,-0.0314716808497906,-0.0236037615686655,0.141416981816292,0.00785649940371513,0.989918947219849,0.999380588531494,-0.0157382767647505,0.031476553529501,
- 0.999690115451813,-0.00787157565355301,0.023614726960659,0.999380588531494,-0.0157382767647505,0.031476553529501,0.999597251415253,0.0157416891306639,-0.0236125327646732,0.999690115451813,-0.00787157565355301,0.023614726960659,0.141416981816292,0.00785649940371513,0.989918947219849,0.999690115451813,-0.00787157565355301,0.023614726960659,0.0157441273331642,0.0157441273331642,0.999752104282379,0.0393396019935608,2.21872723411188e-016,-0.999225914478302,0.142169266939163,0.0710846334695816,-0.987286627292633,0.999597251415253,0.0157416891306639,-0.0236125327646732,0.0393396019935608,2.21872723411188e-016,-0.999225914478302,-0.0393396019935608,2.21872723411188e-016,-0.999225914478302,0.142169266939163,0.0710846334695816,-0.987286627292633,0.999597251415253,0.0157416891306639,-0.0236125327646732,0.999473392963409,-0.00786986947059631,-0.0314794778823853,0.999690115451813,-0.00787157565355301,0.023614726960659,0.999597251415253,0.0157416891306639,-0.0236125327646732,0.142169266939163,0.0710846334695816,-0.987286627292633,0.999473392963409,-0.00786986947059631,-0.0314794778823853,0.999597251415253,0.0236125327646732,0.0157416891306639,0.0157441273331642,0.0157441273331642,0.999752104282379,0.999690115451813,-0.00787157565355301,0.023614726960659,0.999690115451813,-0.00787157565355301,0.023614726960659,0.999473392963409,-0.00786986947059631,-0.0314794778823853,0.999597251415253,0.0236125327646732,0.0157416891306639,0.0235971882939339,0.0393286496400833,0.99894767999649,0.0157441273331642,0.0157441273331642,0.999752104282379,0.999597251415253,0.0236125327646732,0.0157416891306639,0.0393383838236332,-0.00786767713725567,-0.999194979667664,0.999473392963409,-0.00786986947059631,-0.0314794778823853,0.142169266939163,0.0710846334695816,-0.987286627292633,0.0393383838236332,-0.00786767713725567,-0.999194979667664,0.142169266939163,0.0710846334695816,-0.987286627292633,-0.0393396019935608,2.21872723411188e-016,-0.999225914478302,0.0393383838236332,-0.00786767713725567,-0.999194979667664,0.999009490013123,0.0314648635685444,-0.0314648635685444,
- 0.999473392963409,-0.00786986947059631,-0.0314794778823853,0.999597251415253,0.0236125327646732,0.0157416891306639,0.999473392963409,-0.00786986947059631,-0.0314794778823853,0.999009490013123,0.0314648635685444,-0.0314648635685444,0.0393383838236332,-0.00786767713725567,-0.999194979667664,-0.0393396019935608,2.21872723411188e-016,-0.999225914478302,0.031476553529501,-0.0157382767647505,-0.999380588531494,0.999009490013123,0.0314648635685444,-0.0314648635685444,0.0393383838236332,-0.00786767713725567,-0.999194979667664,0.031476553529501,-0.0157382767647505,-0.999380588531494,0.615012764930725,0.788477897644043,0.00788477901369333,0.0235971882939339,0.0393286496400833,0.99894767999649,0.999597251415253,0.0236125327646732,0.0157416891306639,0.615012764930725,0.788477897644043,0.00788477901369333,0.188462942838669,0.0314104929566383,0.98157787322998,0.0235971882939339,0.0393286496400833,0.99894767999649,0.999009490013123,0.0314648635685444,-0.0314648635685444,0.998206853866577,0.055019274353981,-0.0235796887427568,0.999597251415253,0.0236125327646732,0.0157416891306639,0.998206853866577,0.055019274353981,-0.0235796887427568,0.615012764930725,0.788477897644043,0.00788477901369333,0.999597251415253,0.0236125327646732,0.0157416891306639,0.031476553529501,-0.0157382767647505,-0.999380588531494,0.998206853866577,0.055019274353981,-0.0235796887427568,0.999009490013123,0.0314648635685444,-0.0314648635685444,0.188462942838669,0.0314104929566383,0.98157787322998,0.615012764930725,0.788477897644043,0.00788477901369333,0.999225914478302,-8.73514638256818e-018,0.0393396019935608,0.999225914478302,-8.73514638256818e-018,0.0393396019935608,0.615012764930725,0.788477897644043,0.00788477901369333,0.998206853866577,0.055019274353981,-0.0235796887427568,0.999225914478302,0.0236037615686655,0.0314716808497906,0.188462942838669,0.0314104929566383,0.98157787322998,0.999225914478302,-8.73514638256818e-018,0.0393396019935608,0.188462942838669,0.0314104929566383,0.98157787322998,0.999225914478302,0.0236037615686655,0.0314716808497906,0.180872619152069,-0.0314561054110527,0.983003377914429,
- 0.999225914478302,0.0236037615686655,0.0314716808497906,0.0314794778823853,-0.00786986947059631,0.999473392963409,0.180872619152069,-0.0314561054110527,0.983003377914429,0.999225914478302,0.0236037615686655,0.0314716808497906,0.173072829842567,0.0550686232745647,0.983368337154388,0.0314794778823853,-0.00786986947059631,0.999473392963409,0.999473392963409,0.00786986947059631,-0.0314794778823853,0.999225914478302,-8.73514638256818e-018,0.0393396019935608,0.998206853866577,0.055019274353981,-0.0235796887427568,0.999225914478302,-8.73514638256818e-018,0.0393396019935608,0.999473392963409,0.00786986947059631,-0.0314794778823853,0.999225914478302,0.0236037615686655,0.0314716808497906,0.031476553529501,-0.0157382767647505,-0.999380588531494,0.999473392963409,0.00786986947059631,-0.0314794778823853,0.998206853866577,0.055019274353981,-0.0235796887427568,0.173072829842567,0.0550686232745647,0.983368337154388,0.999225914478302,0.0236037615686655,0.0314716808497906,0.999473392963409,0.00786986947059631,0.0314794778823853,0.999225914478302,0.0236037615686655,0.0314716808497906,0.999473392963409,0.00786986947059631,-0.0314794778823853,0.999473392963409,0.00786986947059631,0.0314794778823853,0.999473392963409,0.00786986947059631,0.0314794778823853,0.710957229137421,-0.703057706356049,0.0157990492880344,0.173072829842567,0.0550686232745647,0.983368337154388,0.999473392963409,0.00786986947059631,0.0314794778823853,0.999473392963409,0.00786986947059631,-0.0314794778823853,0.710957229137421,-0.703057706356049,0.0157990492880344,0.710957229137421,-0.703057706356049,0.0157990492880344,0.0236088763922453,-0.0236088763922453,0.999442458152771,0.173072829842567,0.0550686232745647,0.983368337154388,0.031476553529501,-0.0157382767647505,-0.999380588531494,0.031476553529501,0.0157382767647505,-0.999380588531494,0.999473392963409,0.00786986947059631,-0.0314794778823853,0.0236088763922453,-0.0236088763922453,0.999442458152771,0.710957229137421,-0.703057706356049,0.0157990492880344,0.99839198589325,-0.0471681281924248,0.0314454175531864,0.710957229137421,-0.703057706356049,0.0157990492880344,
- 0.999473392963409,0.00786986947059631,-0.0314794778823853,0.997006475925446,-0.07065399736166,-0.0314017795026302,0.997006475925446,-0.07065399736166,-0.0314017795026302,0.99839198589325,-0.0471681281924248,0.0314454175531864,0.710957229137421,-0.703057706356049,0.0157990492880344,0.997006475925446,-0.07065399736166,-0.0314017795026302,0.999473392963409,0.00786986947059631,-0.0314794778823853,0.031476553529501,0.0157382767647505,-0.999380588531494,0.999504387378693,-6.99006495096098e-018,0.0314804539084435,0.0236088763922453,-0.0236088763922453,0.999442458152771,0.99839198589325,-0.0471681281924248,0.0314454175531864,0.99839198589325,-0.0471681281924248,0.0314454175531864,0.997006475925446,-0.07065399736166,-0.0314017795026302,0.999504387378693,-6.99006495096098e-018,0.0314804539084435,0.0156975034624338,0.0784875229001045,0.996791481971741,0.0236088763922453,-0.0236088763922453,0.999442458152771,0.999504387378693,-6.99006495096098e-018,0.0314804539084435,0.0236125327646732,0.999597251415253,0.0157416891306639,0.0156975034624338,0.0784875229001045,0.996791481971741,0.999504387378693,-6.99006495096098e-018,0.0314804539084435,0.999597251415253,0.0157416891306639,-0.0236125327646732,0.0236125327646732,0.999597251415253,0.0157416891306639,0.999504387378693,-6.99006495096098e-018,0.0314804539084435,0.999504387378693,-6.99006495096098e-018,0.0314804539084435,0.997006475925446,-0.07065399736166,-0.0314017795026302,0.999597251415253,0.0157416891306639,-0.0236125327646732,0,0.999876022338867,-0.0157460793852806,0.0236125327646732,0.999597251415253,0.0157416891306639,0.999597251415253,0.0157416891306639,-0.0236125327646732,0.997006475925446,-0.07065399736166,-0.0314017795026302,0.0393347330391407,0.0157338920980692,-0.999102234840393,0.999597251415253,0.0157416891306639,-0.0236125327646732,0.0393347330391407,0.0157338920980692,-0.999102234840393,0,0.999876022338867,-0.0157460793852806,0.999597251415253,0.0157416891306639,-0.0236125327646732,0.031476553529501,0.0157382767647505,-0.999380588531494,0.0393347330391407,0.0157338920980692,-0.999102234840393,
- 0.997006475925446,-0.07065399736166,-0.0314017795026302,0.0393347330391407,0.0157338920980692,-0.999102234840393,-0.0948061496019363,0.00790051184594631,-0.995464503765106,0,0.999876022338867,-0.0157460793852806,-0.0948061496019363,0.00790051184594631,-0.995464503765106,0.0393347330391407,0.0157338920980692,-0.999102234840393,0.031476553529501,0.0157382767647505,-0.999380588531494,0.031476553529501,-0.0157382767647505,-0.999380588531494,-0.0948061496019363,0.00790051184594631,-0.995464503765106,0.031476553529501,0.0157382767647505,-0.999380588531494,-0.00786767713725567,0.999194979667664,-0.0393383838236332,0,0.999876022338867,-0.0157460793852806,-0.0948061496019363,0.00790051184594631,-0.995464503765106,-0.0948061496019363,0.00790051184594631,-0.995464503765106,0.031476553529501,-0.0157382767647505,-0.999380588531494,-0.0393396019935608,2.21872723411188e-016,-0.999225914478302,-0.0948061496019363,0.00790051184594631,-0.995464503765106,-0.999473392963409,-0.00786986947059631,-0.0314794778823853,-0.00786767713725567,0.999194979667664,-0.0393383838236332,-0.0948061496019363,0.00790051184594631,-0.995464503765106,-0.0393396019935608,2.21872723411188e-016,-0.999225914478302,-0.999473392963409,-0.00786986947059631,-0.0314794778823853
- }
- NormalsW: *4028 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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: *12084 {
- a: 0.000476084678666666,0.99999988079071,-0,0.00028425149503164,1,-0,-0,1,0,0.000166321566211991,1,-0,1.78571291087337e-009,1,-0,-0.000213302570045926,1,0,9.99173716991208e-005,1,-0,-0.00095070427050814,0.999999582767487,0,0.000173302003531717,1,-0,0.000413688714616001,1,-0,9.99173716991208e-005,1,-0,-0.000213302570045926,1,0,-0,1,0,0.00028425149503164,1,-0,0.000413688714616001,1,-0,0.000173302003531717,1,-0,-0.00159261864610016,0.99999874830246,0,0,1,-0,0,1,-0,0,1,-0,-0.00159261864610016,0.99999874830246,0,0,1,-0,0,1,-0,-3.43785613949876e-005,1,0,-3.43785613949876e-005,1,0,0,1,-0,0,1,-0,0.000166252400958911,1,-0,0.00318331341259182,0.999994933605194,-0,0.000166252400958911,1,-0,0,1,-0,0,1,-0,0,1,-0,-0.00159261864610016,0.99999874830246,0,-0.000881035928614438,0.999999701976776,0,-0.00878970697522163,0.999961376190186,0,-0.00012032495578751,1,0,0.00324196927249432,0.99999475479126,-0,-0.000881035928614438,0.999999701976776,0,-0.00159261864610016,0.99999874830246,0,-3.43785613949876e-005,1,0,0.000166252400958911,1,-0,0.00584476022049785,0.999983012676239,-0,0.0020931214094162,0.999997854232788,-0,-0.00012032495578751,1,0,-3.43785613949876e-005,1,0,0.00837212800979614,0.999965012073517,-0,0.00584476022049785,0.999983012676239,-0,0.000166252400958911,1,-0,0.00318331341259182,0.999994933605194,-0,0.000561516208108515,0.999999940395355,-0,-0.00836140476167202,0.999965131282806,0,-0.00878970697522163,0.999961376190186,0,-0.000881035928614438,0.999999701976776,0,0.000561516208108515,0.999999940395355,-0,-0.000881035928614438,0.999999701976776,0,0.00809251796454191,0.999967277050018,-0,-0.000468125101178885,0.99999988079071,0,0.00461799325421453,0.99998939037323,-0,0.00505618890747428,0.999987304210663,-0,0.00584476022049785,0.999983012676239,-0,0.00837212800979614,0.999965012073517,-0,-0.00160763715393841,0.99999874830246,0,-0.000940060068387538,0.999999642372131,0,0.000505111180245876,0.999999940395355,-0,0.000505111180245876,0.999999940395355,-0,-0.000940060068387538,0.999999642372131,0,-0.00313678290694952,0.999995112419128,0,
- -0.000286438502371311,1,0,0.00104676722548902,0.999999463558197,-0,0.00194134772755206,0.999998211860657,-0,0.00505618890747428,0.999987304210663,-0,0.00461799325421453,0.99998939037323,-0,0.00028425149503164,1,-0,0.000476084678666666,0.99999988079071,-0,-0.00160763715393841,0.99999874830246,0,0.000505111180245876,0.999999940395355,-0,0.00028425149503164,1,-0,0.000505111180245876,0.999999940395355,-0,-0.000286438502371311,1,0,1.53574728756212e-005,1,-0,0.000413688714616001,1,-0,0.000413688714616001,1,-0,1.53574728756212e-005,1,-0,0.00164736446458846,0.99999862909317,-0,0.000785759068094194,0.999999701976776,-0,9.99173716991208e-005,1,-0,-0.00095070427050814,0.999999582767487,0,9.99173716991208e-005,1,-0,0.000785759068094194,0.999999701976776,-0,0.00104676722548902,0.999999463558197,-0,0,0.999980688095093,0.00622495915740728,0,0.999992430210114,0.00390823138877749,0,0.999998152256012,0.00192590849474072,0,0.999994277954102,0.00340652861632407,0,0.999997675418854,0.00216462183743715,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999997675418854,0.00216462183743715,0,0.999966323375702,0.0082168485969305,0,0.999990403652191,0.00439478224143386,0,0.999943435192108,0.0106358462944627,0,0.999951124191284,0.00989745277911425,0,0.999990403652191,0.00439478224143386,0,0.999966323375702,0.0082168485969305,0,0.999951124191284,0.00989745277911425,0,0.999943435192108,0.0106358462944627,0,0.999971389770508,0.00756447343155742,0,0.999952256679535,0.00977246928960085,0,0.999992430210114,0.00390823138877749,0,0.999980688095093,0.00622495915740728,0,0.999952256679535,0.00977246928960085,0,0.999971389770508,0.00756447343155742,-0,1,1.77460751729086e-005,-0,1,0.000363965780707076,-0,0.999998986721039,0.00142037065234035,-0,0.999999761581421,0.000719037838280201,0,1,-0,0,1,-0.000146833001053892,-0,1,0,-0,1,0,-0,1,0,0,1,-0.000146833001053892,0,0.999999821186066,-0.000597437960095704,0,1,-0.000298719009151682,0,0.999999821186066,-0.000597437960095704,0,1,-0.00015188600809779,-0,1,0,0,1,-0.000298719009151682,-0,1,0,0,1,-0.00015188600809779,-0,1,0,-0,1,4.44685656475485e-006,
- -0,1,0,-0,1,0.000363965780707076,-0,1,1.77460751729086e-005,-0,1,4.44685656475485e-006,0,-0,1,-0.00057110155466944,0,0.99999988079071,-0.00114304758608341,0,0.999999344348907,-0.000571523909457028,0,0.99999988079071,0,-0,1,-0.000380452838726342,0,1,-0.00061760371318087,0,0.999999821186066,-0.00057110155466944,0,0.99999988079071,-0.000380452838726342,0,1,-0.000237150932662189,0,1,-0.000376215379219502,0,0.999999940395355,-0.00061760371318087,0,0.999999821186066,-0.00041719333967194,0,0.999999940395355,-0.000376215379219502,0,0.999999940395355,-0.000237150932662189,0,1,-0.00020859666983597,0,1,0.000380004086764529,0,-1,0.000569928262848407,0,-0.99999988079071,0.00113985629286617,0,-0.999999344348907,0.000759956252295524,0,-0.999999701976776,0.000237286207266152,0,-1,0.000380004086764529,0,-1,0.000759956252295524,0,-0.999999701976776,0.00061729020671919,0,-0.999999821186066,-0,-0,-1,0.000237286207266152,0,-1,0.00061729020671919,0,-0.999999821186066,0.000282064487691969,0,-1,0.000416399358073249,0,-0.999999940395355,0.000208199679036625,0,-1,-0,-0,-1,0.000282064487691969,0,-1,0.000155956615344621,1,0,-0.000270239688688889,1,0,-0.000179738257429563,1,0,-0.000814980012364686,0.999999642372131,0,0.000808751443400979,0.999999701976776,0,0.000227230935706757,1,0,-3.83042752218898e-005,1,0,-7.6574768172577e-005,1,0,0.000227230935706757,1,0,0.00022730692580808,1,0,0.000338021316565573,1,0,-3.83042752218898e-005,1,0,0.00022730692580808,1,0,-0.000179738257429563,1,0,-0.000270239688688889,1,0,0.000338021316565573,1,0,0.00235929689370096,0.999997317790985,0,0,1,0,0,1,0,0,1,0,0.00235929689370096,0.999997317790985,0,0,1,0,0,1,0,-0.000332970463205129,1,0,-0.000332970463205129,1,0,0,1,0,0,1,0,-2.40918780036736e-006,1,0,0,1,0,-0.00286102807149291,0.999995887279511,0,-2.40918780036736e-006,1,0,0,1,0,0,1,0,0.00235929689370096,0.999997317790985,0,0.00654623936861753,0.99997866153717,0,0.00804474949836731,0.999967694282532,0,-0.000332970463205129,1,0,-0.00116540014278144,0.999999344348907,0,0.000419638818129897,0.999999940395355,0,0.00654623936861753,0.99997866153717,0,
- 0.00235929689370096,0.999997317790985,0,-2.40918780036736e-006,1,0,-0.00469586905092001,0.999989032745361,1.68843758419079e-011,-0.000113728463475127,1,0,-0.00116540014278144,0.999999344348907,0,-0.000332970463205129,1,0,-0.011569345369935,0.999933063983917,5.29602472987278e-011,-0.00469586905092001,0.999989032745361,1.68843758419079e-011,-2.40918780036736e-006,1,0,-0.00286102807149291,0.999995887279511,0,0.00337222078815103,0.999994337558746,0,0.00908942893147469,0.999958753585815,0,0.00804474949836731,0.999967694282532,0,0.00654623936861753,0.99997866153717,0,0.00337222078815103,0.999994337558746,0,0.00654623936861753,0.99997866153717,0,0.00196098093874753,0.999998152256012,0,0.00269239884801209,0.999996364116669,0,-0.011569345369935,0.999933063983917,5.29602472987278e-011,-0.0071581294760108,0.999974370002747,3.27673235767101e-011,-0.00411003781482577,0.999991655349731,1.56127211853319e-011,-0.00469586905092001,0.999989032745361,1.68843758419079e-011,0.00328929419629276,0.999994575977325,0,0.00348115549422801,0.999994039535522,0,0.000907652720343322,0.999999582767487,0,0.0071881115436554,0.999974250793457,0,0.00348115549422801,0.999994039535522,0,0.00337222078815103,0.999994337558746,0,0.00269239884801209,0.999996364116669,0,-0.0028674325440079,0.999995887279511,0,-0.00246748840436339,0.999997019767761,0,-0.00411003781482577,0.999991655349731,1.56127211853319e-011,-0.0071581294760108,0.999974370002747,3.27673235767101e-011,-0.000270239688688889,1,0,0.000155956615344621,1,0,0.00328929419629276,0.999994575977325,0,0.000907652720343322,0.999999582767487,0,-0.000270239688688889,1,0,0.000907652720343322,0.999999582767487,0,0.00240172701887786,0.999997138977051,0,5.88060720474459e-005,1,0,0.000338021316565573,1,0,0.000338021316565573,1,0,5.88060720474459e-005,1,0,-5.33239199285163e-006,1,0,-0.000670827401336282,0.999999761581421,0,-3.83042752218898e-005,1,0,-0.0028674325440079,0.999995887279511,0,-7.6574768172577e-005,1,0,-3.83042752218898e-005,1,0,-0.000670827401336282,0.999999761581421,0,0.00584476022049785,0.999983012676239,-0,
- 0.00606847088783979,0.999981641769409,-0,0.0020931214094162,0.999997854232788,-0,0.00194134772755206,0.999998211860657,-0,0.00143434957135469,0.999999046325684,-0,0.00357237691059709,0.999993622303009,-0,0.00505618890747428,0.999987304210663,-0,-0.00469586905092001,0.999989032745361,1.68843758419079e-011,-0.00297538819722831,0.999995589256287,0,-0.000113728463475127,1,0,-5.33239199285163e-006,1,0,-0.00100141169968992,0.999999523162842,0,-0.00246748840436339,0.999997019767761,0,-0.000670827401336282,0.999999761581421,0,0.736664474010468,0.671843528747559,-0.0771480426192284,0.179783597588539,0.979873716831207,-0.0867487415671349,0.179766669869423,0.97978150844574,-0.0878198146820068,0.736416757106781,0.67161762714386,-0.0813640281558037,-0.00676223868504167,0.999977171421051,-2.97717929242936e-006,-0.180463910102844,0.98358166217804,-1.28973283608502e-006,-0.180463910102844,0.98358166217804,-2.16766625271703e-006,-0.00676223868504167,0.999977171421051,-2.64677760242193e-006,-1,0,3.58691613655537e-006,-1,0,2.90369757749431e-006,-0.738866567611694,0.673851847648621,6.65939523969428e-007,-0.738866567611694,0.673851847648621,2.54794872489583e-006,0,1,-2.11127348848095e-006,0,1,-2.32425395552127e-006,0,1,-2.68599933406222e-006,0,1,-2.39837390836328e-006,0,0.99518084526062,-0.0980566143989563,0,0.995355188846588,-0.0962710157036781,0.00673486804589629,0.995929718017578,-0.089881956577301,0.00673213507980108,0.995525598526001,-0.0942525938153267,-9.38132529881841e-007,0,-1,-9.38132529881841e-007,0,-1,7.8177762929954e-008,0,-1,-4.6906629336263e-007,0,-1,-4.6906629336263e-007,0,-1,7.8177762929954e-008,0,-1,7.03599539519928e-007,0,-1,5.86332930652134e-007,0,-1,0.736416757106781,0.67161762714386,-0.0813640281558037,0.996835827827454,0,-0.0794878005981445,0.996931731700897,0,-0.0782759785652161,0.736664474010468,0.671843528747559,-0.0771480426192284,0.179766669869423,0.97978150844574,-0.0878198146820068,0.179783597588539,0.979873716831207,-0.0867487415671349,0.00673213507980108,0.995525598526001,-0.0942525938153267,0.00673486804589629,0.995929718017578,-0.089881956577301,
- -0.180463910102844,0.98358166217804,-2.16766625271703e-006,-0.180463910102844,0.98358166217804,-1.28973283608502e-006,-0.738866567611694,0.673851847648621,2.54794872489583e-006,-0.738866567611694,0.673851847648621,6.65939523969428e-007,0.00809251796454191,0.999967277050018,-0,-0.000881035928614438,0.999999701976776,0,0.00324196927249432,0.99999475479126,-0,0.00357237691059709,0.999993622303009,-0,0.00606847088783979,0.999981641769409,-0,0.00584476022049785,0.999983012676239,-0,0.00505618890747428,0.999987304210663,-0,0.00196098093874753,0.999998152256012,0,0.00654623936861753,0.99997866153717,0,0.000419638818129897,0.999999940395355,0,-0.00577384978532791,0.999983310699463,0,-0.00297538819722831,0.999995589256287,0,-0.00469586905092001,0.999989032745361,1.68843758419079e-011,-0.00411003781482577,0.999991655349731,1.56127211853319e-011,-0.00313678290694952,0.999995112419128,0,-0.000940060068387538,0.999999642372131,0,0.000561516208108515,0.999999940395355,-0,-0.000468125101178885,0.99999988079071,0,0,1,-2.39837390836328e-006,0,1,-2.68599933406222e-006,-0.00676223868504167,0.999977171421051,-2.97717929242936e-006,-0.00676223868504167,0.999977171421051,-2.64677760242193e-006,-0.00246748840436339,0.999997019767761,0,-0.00100141169968992,0.999999523162842,0,-0.00577384978532791,0.999983310699463,0,-0.00411003781482577,0.999991655349731,1.56127211853319e-011,0.00164736446458846,0.99999862909317,-0,0.00143434957135469,0.999999046325684,-0,0.00194134772755206,0.999998211860657,-0,0.000785759068094194,0.999999701976776,-0,0,0.995012700557709,-0.099748283624649,0,0.99512505531311,-0.098621554672718,0,0.995355188846588,-0.0962710157036781,0,0.99518084526062,-0.0980566143989563,0.000907652720343322,0.999999582767487,0,0.00348115549422801,0.999994039535522,0,0.0071881115436554,0.999974250793457,0,0.00240172701887786,0.999997138977051,0,-0.0028674325440079,0.999995887279511,0,-0.000670827401336282,0.999999761581421,0,-0.00246748840436339,0.999997019767761,0,-0.00836140476167202,0.999965131282806,0,0.000561516208108515,0.999999940395355,-0,
- -0.000940060068387538,0.999999642372131,0,-0.00160763715393841,0.99999874830246,0,0.00104676722548902,0.999999463558197,-0,0.000785759068094194,0.999999701976776,-0,0.00194134772755206,0.999998211860657,-0,0.00908942893147469,0.999958753585815,0,0.00337222078815103,0.999994337558746,0,0.00348115549422801,0.999994039535522,0,0.00328929419629276,0.999994575977325,0,0.000107410043710843,-0.975440979003906,-0.220260873436928,-0.000226660587941296,-0.259128570556641,-0.965842843055725,-0.000230297911912203,-0.24439013004303,-0.969676971435547,0.000183346681296825,-0.975440979003906,-0.220260873436928,0.000167275473359041,-0.971520364284515,-0.236956179141998,-0.000742691685445607,-0.259128481149673,-0.965842545032501,8.50732685648836e-005,-0.998885869979858,0.047191459685564,0.000176221408764832,-0.971520364284515,-0.236956179141998,0.00017109903274104,-0.975440979003906,-0.220260873436928,-1.02492904261453e-005,-0.998885869979858,0.047191459685564,-1.02492904261453e-005,-0.998885869979858,0.047191459685564,-9.96850030787755e-006,-0.971520364284515,-0.236956179141998,-1.02492904261453e-005,-0.998885869979858,0.047191459685564,-1.02492904261453e-005,-0.998885869979858,0.047191459685564,-4.03652705927016e-007,-0.0393396019935608,0.999225914478302,-0.000122830984764732,-0.0393396019935608,0.999225914478302,-0.000122830984764732,-0.0393396019935608,0.999225914478302,-0.000761533679906279,-0.998885571956635,0.0471914447844028,-1.06700163087226e-005,0.0393396019935608,0.999225914478302,-9.18494606594322e-006,-0.0393396019935608,0.999225914478302,-9.18494606594322e-006,-0.0393396019935608,0.999225914478302,-8.14825179986656e-005,-0.0393396019935608,0.999225914478302,-8.07301257736981e-005,0.0393396019935608,0.999225914478302,-8.07301257736981e-005,0.0393396019935608,0.999225914478302,-0.000156166453962214,0.0393396019935608,0.999225914478302,-0.000156166453962214,0.0393396019935608,0.999225914478302,-0.000514228420797735,0.998885750770569,0.0471914522349834,-1.01823015938862e-005,0.998885869979858,0.047191459685564,-1.01823015938862e-005,0.998885869979858,0.047191459685564,
- -4.01014460749138e-007,0.0393396019935608,0.999225914478302,-9.88455576589331e-006,0.969676971435547,-0.24439013004303,-1.01823015938862e-005,0.998885869979858,0.047191459685564,-1.01823015938862e-005,0.998885869979858,0.047191459685564,0.000439784664195031,0.969676971435547,-0.24439013004303,0.000427411636337638,0.975440979003906,-0.220260873436928,0.000277895567705855,0.998885869979858,0.047191459685564,-0.000838825013488531,0.251781165599823,-0.967783808708191,0.000401969824451953,0.975440919399261,-0.220260858535767,0.000373280112398788,0.969676911830902,-0.244390115141869,-0.000170235507539473,0.24439013004303,-0.969676971435547,-0.000173226464539766,0.25178125500679,-0.96778416633606,-0.00042644958011806,0.969676971435547,-0.24439013004303,0.000103040219983086,-0.24439013004303,-0.969676971435547,0.00014600477879867,0.25178125500679,-0.96778416633606,0.000145603829878382,0.24439013004303,-0.969676971435547,1.21094690257451e-005,-0.24439013004303,-0.969676971435547,1.12870966404444e-005,-0.25178125500679,-0.96778416633606,6.24061285634525e-005,0.25178125500679,-0.96778416633606,-0.00015311707102228,-0.975440979003906,0.220260873436928,0.000252675439696759,-0.259128570556641,0.965842843055725,0.000257304549450055,-0.24439013004303,0.969676971435547,0.000741711352020502,-0.259128481149673,0.965842545032501,-0.000181191833689809,-0.975440979003906,0.220260873436928,-0.000165159348398447,-0.971520364284515,0.236956179141998,-0.000175829918589443,-0.971520364284515,0.236956179141998,-0.000170705956406891,-0.975440979003906,0.220260873436928,-8.46707480377518e-005,-0.998885869979858,-0.047191459685564,-7.94873903942062e-006,-0.971520364284515,0.236956179141998,-8.17263662611367e-006,-0.998885869979858,-0.047191459685564,-8.17263662611367e-006,-0.998885869979858,-0.047191459685564,-3.21866878039145e-007,-0.0393396019935608,-0.999225914478302,-8.17263662611367e-006,-0.998885869979858,-0.047191459685564,-8.17263662611367e-006,-0.998885869979858,-0.047191459685564,0.000760052644181997,-0.998885571956635,-0.0471914447844028,
- 0.000118759249744471,-0.0393396019935608,-0.999225914478302,0.000118759249744471,-0.0393396019935608,-0.999225914478302,4.88564865008811e-006,-0.0393396019935608,-0.999225914478302,6.39182508166414e-006,0.0393396019935608,-0.999225914478302,4.88564865008811e-006,-0.0393396019935608,-0.999225914478302,8.28880365588702e-005,0.0393396019935608,-0.999225914478302,8.28880365588702e-005,0.0393396019935608,-0.999225914478302,8.36404724395834e-005,-0.0393396019935608,-0.999225914478302,0.000157953647430986,0.0393396019935608,-0.999225914478302,0.000514313636813313,0.998885750770569,-0.0471914522349834,0.000157953647430986,0.0393396019935608,-0.999225914478302,8.741249985178e-006,0.998885869979858,-0.047191459685564,-1.79612266038021e-006,0.0393396019935608,-0.999225914478302,8.741249985178e-006,0.998885869979858,-0.047191459685564,8.741249985178e-006,0.998885869979858,-0.047191459685564,8.741249985178e-006,0.998885869979858,-0.047191459685564,9.10879043658497e-006,0.971520364284515,0.236956179141998,-0.000177156092831865,0.998885869979858,-0.047191459685564,-0.000276097096502781,0.971520364284515,0.236956179141998,-0.000270734017249197,0.975440979003906,0.220260873436928,0.00113349466118962,0.251781105995178,0.967783629894257,-0.000274017627816647,0.975440979003906,0.220260873436928,-0.000249675184022635,0.971520364284515,0.236956179141998,-0.00018217321485281,0.975440979003906,0.220260873436928,-3.86015817639418e-005,0.25178125500679,0.96778416633606,-3.71882888430264e-005,0.24439013004303,0.969676971435547,0.000114279944682494,0.24439013004303,0.969676971435547,0.00011461886606412,0.25178125500679,0.96778416633606,7.86507735028863e-005,-0.25178125500679,0.96778416633606,-0.000221524736844003,-0.25178125500679,0.96778416633606,-0.000260905595496297,0.25178125500679,0.96778416633606,-0.000222574526560493,-0.24439013004303,0.969676971435547,0,-0.0033715246245265,0.999994337558746,0,-0.0033715246245265,0.999994337558746,0,-0.0033715246245265,0.999994337558746,0,-0.0183745007961988,0.999831199645996,0,-0.0183745007961988,0.999831199645996,
- 0,-0.0183745007961988,0.999831199645996,-0,0.0191570818424225,0.999816477298737,-0,0.0191570818424225,0.999816477298737,-0,0.0191570818424225,0.999816477298737,-0,0,1,-0,0,1,-0,0,1,-0,0.257187783718109,0.966361463069916,-0,0.257187783718109,0.966361463069916,-0,0.257187783718109,0.966361463069916,0,-0.325221985578537,0.945637702941895,0,-0.325221985578537,0.945637702941895,0,-0.325221985578537,0.945637702941895,0,0,1,0,0,1,0,0,1,0,-0.0189605038613081,0.999820232391357,0,-0.0189605038613081,0.999820232391357,0,-0.0189605038613081,0.999820232391357,0,0.0190954264253378,0.999817669391632,0,0.0190954264253378,0.999817669391632,0,0.0190954264253378,0.999817669391632,0,0.0032438593916595,0.99999475479126,0,0.0032438593916595,0.99999475479126,0,0.0032438593916595,0.99999475479126,0,0.248248606920242,0.968696355819702,0,0.248248606920242,0.968696355819702,0,0.248248606920242,0.968696355819702,0,-0.339711099863052,0.940529823303223,0,-0.339711099863052,0.940529823303223,0,-0.339711099863052,0.940529823303223,0,0,-1,0,0,-1,0,0,-1,0,-0.0189180448651314,-0.999821066856384,0,-0.0189180448651314,-0.999821066856384,0,-0.0189180448651314,-0.999821066856384,0,0.019075145944953,-0.999818027019501,0,0.019075145944953,-0.999818027019501,0,0.019075145944953,-0.999818027019501,0,0.00324071780778468,-0.99999475479126,0,0.00324071780778468,-0.99999475479126,0,0.00324071780778468,-0.99999475479126,0,0.245209842920303,-0.969470024108887,0,0.245209842920303,-0.969470024108887,0,0.245209842920303,-0.969470024108887,0,-0.339521050453186,-0.940598428249359,0,-0.339521050453186,-0.940598428249359,0,-0.339521050453186,-0.940598428249359,0,0,-1,0,0,-1,0,0,-1,0,0.0191445108503103,-0.999816715717316,0,0.0191445108503103,-0.999816715717316,0,0.0191445108503103,-0.999816715717316,-0,-0.247618764638901,-0.968857526779175,-0,-0.247618764638901,-0.968857526779175,-0,-0.247618764638901,-0.968857526779175,0,0.348968774080276,-0.937134325504303,0,0.348968774080276,-0.937134325504303,0,0.348968774080276,-0.937134325504303,-0,-0.0204381607472897,-0.999791145324707,
- -0,-0.0204381607472897,-0.999791145324707,-0,-0.0204381607472897,-0.999791145324707,-0,-0.00551925366744399,-0.999984741210938,-0,-0.00551925366744399,-0.999984741210938,-0,-0.00551925366744399,-0.999984741210938,-0.0127692818641663,0.0240154899656773,0.999630033969879,-0.0115723861381412,-0.0152895301580429,0.999816179275513,-0.0108256405219436,-0.0395075157284737,0.999160647392273,-0.0075862598605454,-0.0394577533006668,0.999192416667938,-0.00838557910174131,0.0232186801731586,0.999695301055908,-0.00839382968842983,0.0238788519054651,0.999679625034332,-0.0104869976639748,-0.0395023338496685,0.999164521694183,-0.0101339183747768,-0.0321165509521961,0.999432742595673,-0.00747154792770743,0.0232620090246201,0.999701499938965,0.0319533869624138,0.0120829557999969,0.999416351318359,-0.0231091286987066,0.0106946509331465,0.999675750732422,-0.0394990816712379,0.0102747930213809,0.999166786670685,-0.0394537895917892,0.00732905697077513,0.99919456243515,0.01543630938977,0.00785772688686848,0.999850034713745,0.0317945145070553,0.00801078416407108,0.999462366104126,-0.0395028181374073,0.0105186905711889,0.999164164066315,-0.0239985641092062,0.00976493395864964,0.99966436624527,0.0154370721429586,0.00783838611096144,0.999850153923035,0.0113227842375636,-0.0239703729748726,0.999648630619049,0.010125121101737,0.0153467413038015,0.999830961227417,0.00938169378787279,0.0394853837788105,0.999176144599915,0.00975201930850744,0.039491068571806,0.999172389507294,0.0105502037331462,-0.0231159869581461,0.999677181243896,0.0105605227872729,-0.0239465720951557,0.999657452106476,0.0182497650384903,0.0396200008690357,0.999048173427582,0.0179164335131645,0.0326028540730476,0.999307811260223,0.015251805074513,-0.0228925533592701,0.999621629714966,-0.0315177515149117,0.00712539115920663,-0.999477863311768,-0.0313344486057758,0.0164783447980881,-0.999373137950897,-0.0316747054457664,-0.000997628550976515,-0.999497830867767,-0.0314696244895458,-0.0157382823526859,-0.999380886554718,-0.0318273119628429,-0.00100243499036878,-0.999492883682251,-0.0322431437671185,0.0164993479847908,-0.999343872070313,
- -0.033878318965435,-0.00106703361961991,-0.999425411224365,-0.0334934704005718,-0.0157372448593378,-0.999315023422241,-0.0328525081276894,-0.0395766459405422,-0.998676359653473,-0.0068484004586935,-0.0324259921908379,-0.999450743198395,-0.0165002886205912,-0.0322839021682739,-0.999342560768127,-0.0068484004586935,-0.0324259921908379,-0.999450743198395,0.0157380793243647,-0.0318733304738998,-0.999368011951447,-0.00684300810098648,-0.0325958132743835,-0.999445199966431,-0.0165145266801119,-0.0329001992940903,-0.999322235584259,-0.00675686541944742,-0.035307951271534,-0.999353647232056,0.0157367214560509,-0.034471582621336,-0.999281764030457,0.024139242246747,-0.0341545976698399,-0.999125003814697,0.0356013104319572,-0.00702785374596715,-0.999341368675232,0.0354141667485237,-0.0165725462138653,-0.999235391616821,0.0357586182653904,0.00112625572364777,-0.999359846115112,0.0314696244895458,0.0157382823526859,-0.999380886554718,0.0318273119628429,0.00100243499036878,-0.999492883682251,0.0322431437671185,-0.0164993479847908,-0.999343872070313,0.033878318965435,0.00106703361961991,-0.999425411224365,0.0334934704005718,0.0157372448593378,-0.999315023422241,0.0328525081276894,0.0395766459405422,-0.998676359653473,0.033864788711071,-0.00106660753954202,0.999425888061523,0.0334799326956272,-0.0157372523099184,0.999315500259399,0.0328389815986156,-0.0395765602588654,0.998676836490631,0.031467579305172,-0.0157382823526859,0.999380946159363,0.0318252667784691,-0.00100237061269581,0.999492943286896,0.0322410985827446,0.0164993014186621,0.999343931674957,0.0354349575936794,0.0165730249136686,0.999234557151794,0.0357810221612453,-0.00112696143332869,0.999359011650085,0.0356229804456234,0.00702733546495438,0.99934059381485,0.0067573101259768,-0.0352939739823341,0.999354183673859,-0.0157367289066315,-0.0344575829803944,0.999282240867615,-0.0241390336304903,-0.0341406092047691,0.999125480651855,-0.0157380793243647,-0.031871248036623,0.999368071556091,0.0068430732935667,-0.032593734562397,0.999445259571075,0.0165144801139832,-0.0328981205821037,0.999322295188904,
- 0.0165986455976963,-0.0365465916693211,0.999194085597992,0.00671285018324852,-0.0366930514574051,0.999304115772247,0.00671285018324852,-0.0366930514574051,0.999304115772247,-0.0344200506806374,0.00108409614767879,0.99940687417984,-0.0340354777872562,0.0157369561493397,0.999296724796295,-0.0333938710391521,0.039580199867487,0.998658239841461,-0.034493263810873,0.0157367084175348,0.999280989170074,-0.0348500311374664,0.00109763885848224,0.999392032623291,-0.0352706238627434,-0.0165692344307899,0.999240458011627,-0.0338869020342827,-0.0165373105555773,0.999288856983185,-0.0342292226850986,0.00107808574102819,0.999413430690765,-0.0340723097324371,-0.0070643899962306,0.999394416809082,0.00845088437199593,-0.0394710786640644,-0.999184966087341,0.00809260550886393,-0.031988687813282,-0.999455571174622,0.00543096987530589,0.0233586728572845,-0.999712407588959,0.00848374143242836,0.0238816626369953,-0.999678790569305,0.00767615251243114,-0.0394591428339481,-0.999191701412201,0.00847540609538555,0.0232144203037024,-0.999694585800171,0.00509009324014187,-0.0394191257655621,-0.999209821224213,0.0070235189050436,0.0238359645009041,-0.999691247940063,0.00582365272566676,-0.0155165893957019,-0.999862670898438,0.0394715592265129,0.00848229508846998,-0.999184727668762,0.0239187199622393,0.00772510468959808,-0.99968409538269,-0.0155176017433405,0.00579801527783275,-0.999862849712372,-0.0317978635430336,0.00809643510729074,-0.999461531639099,0.0394551083445549,0.00741472048684955,-0.999193847179413,-0.015432926826179,0.00794336665421724,-0.999849379062653,0.039416179060936,0.00490014813840389,-0.999210894107819,-0.0317432768642902,0.00670034158974886,-0.999473631381989,0.0233644563704729,0.00530883762985468,-0.999712944030762,-0.0104869976639748,0.0395023338496685,-0.999164521694183,-0.0101339183747768,0.0321165509521961,-0.999432742595673,-0.00747154792770743,-0.0232620090246201,-0.999701499938965,-0.00836391840130091,-0.0238779149949551,-0.999679923057556,-0.00755638116970658,0.0394572950899601,-0.999192655086517,-0.00835569761693478,-0.0232200957834721,-0.999695479869843,
- -0.0107851186767221,0.0395068973302841,-0.999161124229431,-0.0127286836504936,-0.0240142233669758,-0.999630570411682,-0.0115317702293396,0.0152911357581615,-0.999816656112671,-0.774244725704193,0.626971006393433,0.0863277912139893,-0.0254359934478998,0.0444557145237923,0.998687505722046,-0.774476945400238,0.627087116241455,0.08334980905056,-0.017150929197669,0.055294718593359,0.99832284450531,-0.784384787082672,0.614196002483368,0.0866256132721901,-0.0111966142430902,0.0506738014519215,0.998652577400208,-0.995703339576721,-0.0514649339020252,0.0769818127155304,-0.99714195728302,-0.0490397997200489,0.0574725233018398,-0.145690336823463,-0.13101752102375,0.980616509914398,-0.997283279895782,-0.045540813356638,0.0578980445861816,-0.143106773495674,-0.38736030459404,0.910753786563873,-0.321274250745773,-0.373945206403732,0.870027542114258,-0.936930060386658,0.304366648197174,0.171823188662529,-0.0259443558752537,-0.0285188499838114,0.999256491661072,-0.945754766464233,0.310074746608734,0.096961572766304,0.0248152147978544,0.00610347464680672,0.99967348575592,-0.0244475863873959,0.0457495637238026,0.998653769493103,-0.0184653270989656,0.0409406833350658,0.998991012573242,-0.0194040928035975,-0.00719803664833307,0.999785840511322,-0.0189536344259977,-0.00734507758170366,0.999793410301209,-0.937245905399323,0.303402990102768,0.17180435359478,-0.667562365531921,0.744068443775177,0.0268843956291676,0.167909756302834,0.50408399105072,0.847175180912018,-0.606461107730865,0.780212700366974,0.153209090232849,-0.152500942349434,-0.14031095802784,0.978292524814606,-0.0555702447891235,-0.1185302734375,0.991394281387329,0.00699981953948736,-0.103909038007259,0.994562268257141,0.0698485746979713,0.238355934619904,0.968662798404694,-0.810545861721039,0.584899306297302,0.0301345139741898,0.00114430300891399,0.284228950738907,0.958755850791931,-0.129279091954231,-0.186321213841438,0.973946332931519,-0.207902759313583,-0.216268062591553,0.953941583633423,-0.000757198664359748,-0.13521334528923,0.990816235542297,-0.0101082660257816,0.0521303042769432,0.998589158058167,
- 0.0267586410045624,0.0227631330490112,0.999382793903351,0.0336336269974709,0.0172758549451828,0.999284982681274,0.0335265621542931,-0.0231585651636124,0.9991694688797,-0.0186676327139139,-0.00647935084998608,0.999804735183716,-0.0190951749682426,-0.00634257262572646,0.999797582626343,0.0362929925322533,-0.0152610503137112,0.999224662780762,0.0293497852981091,-0.0129306335002184,0.999485671520233,-0.0157914236187935,0.00222459132783115,0.999872922897339,-0.0115954848006368,0.17683282494545,0.984172642230988,0.0757716968655586,0.0983641967177391,0.992261648178101,0.0329170972108841,0.137142851948738,0.990004301071167,-0.0425985343754292,-0.301649540662766,0.95246684551239,0.761658310890198,0.64750075340271,0.0248881168663502,-0.402137219905853,-0.549348056316376,0.732463240623474,0.0344726070761681,-0.0204587560147047,0.999196231365204,0.947792291641235,-0.316394150257111,0.0398059487342834,0.0280351582914591,-0.0183143969625235,0.999439179897308,0.782081842422485,-0.622152984142303,0.03568946570158,0.0336336269974709,0.0172758549451828,0.999284982681274,0.0267586410045624,0.0227631330490112,0.999382793903351,-0.999036014080048,0.0303616020828485,0.0317047722637653,-0.00784218218177557,-0.00133708864450455,0.999968409538269,-0.0317974276840687,-0.000607121852226555,0.999494135379791,-0.00818249210715294,0.013098600320518,0.999880731105804,-0.999078214168549,0.0289538335055113,0.0316950120031834,-0.981515884399414,0.0304751861840487,0.188938647508621,-0.998622357845306,0.0222348347306252,0.0475291609764099,-0.00723370909690857,-0.0269762985408306,0.99960994720459,-0.981849908828735,0.018003087490797,0.188803225755692,0.0355850420892239,-0.0171367283910513,0.999219715595245,-0.00475992076098919,-0.129039406776428,0.991628110408783,-0.336764693260193,-0.941588282585144,0.00108197890222073,0.0234371833503246,-0.00283023435622454,0.99972128868103,-0.0318531952798367,-0.00110963138286024,0.999491930007935,-0.00782987102866173,-0.00185801298357546,0.999967634677887,0.0303056556731462,0.108488872647285,0.993635594844818,0.0737585946917534,0.0925276204943657,0.992974519729614,
- -0.0175158418715,0.125759154558182,0.99190616607666,0.074703112244606,-0.0186423510313034,0.997031569480896,0.0424498207867146,-0.0825425460934639,0.995683014392853,-0.00368182267993689,-0.172472015023232,0.985007524490356,0.048562616109848,-0.272585153579712,0.960905313491821,0.429454803466797,-0.0311210863292217,0.902552008628845,0.47897931933403,0.00564965978264809,0.877808034420013,0.0312697477638721,-0.0132182147353888,0.999423563480377,0.0228035487234592,-0.0128651456907392,0.999657154083252,-0.00759947625920177,-0.0115901874378324,0.999904036521912,-0.0075995959341526,-0.0115851443260908,0.999904096126556,0.0397714227437973,-0.0110463658347726,0.999147772789001,0.0313031673431396,-0.0111445756629109,0.999447822570801,0.047722265124321,-0.243392542004585,0.968753099441528,0.674087285995483,-0.0037828590720892,0.738642036914825,0.963894367218018,0.261613607406616,0.0496582128107548,0.998885810375214,-0.00155964342411608,0.0471668876707554,0.0312953144311905,-0.0116325924172997,0.999442517757416,0.0397944003343582,-0.0116376951336861,0.99914014339447,0.960502743721008,0.274723678827286,-0.044288381934166,0.974180161952972,0.220280155539513,0.0494932308793068,0.911626279354095,-0.0190138965845108,0.410580068826675,0.0314482301473618,-0.00204407330602407,0.999503314495087,0.998710751533508,-0.0194828454405069,0.0468763634562492,0.999036312103271,-0.0194783639162779,0.039332140237093,0.0225222781300545,-0.0173075944185257,0.99959659576416,0.0311986785382032,-0.0176004748791456,0.999358236789703,0.998620212078094,-0.0348136462271214,0.0393157564103603,0.998290777206421,-0.0180307310074568,-0.0555917993187904,0.999076306819916,-0.0173032265156507,0.0393337123095989,0.99875020980835,-0.0172382798045874,0.0469135753810406,0.994593143463135,-0.0864488407969475,-0.0575428903102875,0.9933021068573,-0.0338944718241692,-0.110463187098503,0.981750905513763,0.042000625282526,-0.185475453734398,0.972973108291626,-0.227718979120255,0.0383060276508331,0.969373226165771,-0.188467770814896,0.157466366887093,0.0412415489554405,0.29695987701416,0.953998982906342,
- 0.0375560410320759,0.231676667928696,0.972067654132843,0.901420295238495,-0.3953937292099,0.176366701722145,0.109556026756763,0.197034358978271,0.974256157875061,0.998949944972992,-0.023501256480813,0.0393287353217602,0.998190224170685,-0.0225949715822935,-0.055730015039444,0.999458372592926,-0.0229246336966753,-0.0236092526465654,0.911447942256927,-0.409847617149353,0.0358837768435478,0.906542360782623,-0.421571344137192,-0.0214143879711628,0.910226285457611,-0.375390082597733,0.174843817949295,0.983378708362579,-0.172414466738701,0.0569171607494354,-0.0789603739976883,-0.337278187274933,0.938087821006775,0.965074419975281,-0.207814812660217,0.159512922167778,0.979090809822083,0.196962162852287,0.050863865762949,0.980338752269745,0.163036584854126,0.111153081059456,0.971230626106262,0.23703345656395,-0.0229424573481083,0.956371068954468,-0.289413273334503,0.0399312488734722,0.0361075960099697,-0.0157905835658312,0.999223232269287,0.955542623996735,-0.289247065782547,0.0572227723896503,0.954455077648163,-0.297538220882416,-0.0220592506229877,0.954083681106567,-0.294024735689163,0.0572175979614258,0.954438745975494,-0.297553956508636,-0.0225457977503538,0.956922829151154,-0.284646898508072,0.0572264045476913,0.95884495973587,-0.283093005418777,-0.0217871572822332,0.957855522632599,-0.284458756446838,0.039950679987669,0.0233627315610647,-0.00356612866744399,-0.999720692634583,0.999629497528076,-0.0135446665808558,-0.0236132964491844,0.99836802482605,-0.0136312367394567,-0.0554574877023697,0.998029053211212,-0.0285023227334023,-0.0559071861207485,0.991747200489044,0.0440096631646156,-0.120418600738049,0.0274963937699795,0.743102788925171,-0.66861218214035,0.0238950755447149,0.0180089380592108,-0.999552249908447,0.0248871650546789,0.0180094670504332,-0.999528110027313,0.99848598241806,0.00195802864618599,-0.0549729913473129,0.54329377412796,0.00583618320524693,-0.839522361755371,-0.00479274243116379,0.498142063617706,-0.867082178592682,0.0282600484788418,0.476141005754471,-0.878914773464203,-0.50670713186264,-0.0442770421504974,-0.86098051071167,
- -0.543760478496552,-0.00782100483775139,-0.839204072952271,-0.0343157984316349,-0.403910577297211,-0.914154708385468,0.0243334155529737,0.0472951866686344,-0.998584508895874,-0.022102827206254,0.0472153462469578,-0.998640179634094,-0.0404080115258694,0.0471558533608913,-0.998069941997528,-0.232690870761871,0.972541153430939,0.00432234024628997,-0.0237138103693724,-0.0031279434915632,-0.999713957309723,-0.031503900885582,0.0294822342693806,-0.999068737030029,-0.603314816951752,0.797343671321869,-0.0159464664757252,-0.825961470603943,-0.0343068055808544,-0.56268173456192,-0.835944414138794,0.00843982025980949,-0.548749208450317,-0.022102827206254,0.0472153462469578,-0.998640179634094,-0.997465550899506,0.0015944242477417,-0.0711336433887482,-0.0404080115258694,0.0471558533608913,-0.998069941997528,-0.997097373008728,0.0323829352855682,-0.0689081698656082,-0.0204711407423019,0.0963910669088364,-0.99513304233551,-0.99845027923584,0.0302779506891966,-0.0466940589249134,0.0249148197472095,0.0884355083107948,-0.995770335197449,-0.0412617065012455,0.0879644379019737,-0.995268642902374,-0.061936940997839,0.0877378582954407,-0.994216203689575,-0.937368035316467,-0.336251676082611,-0.090972825884819,-0.0591944977641106,0.23799179494381,-0.969461679458618,-0.043900839984417,0.243713513016701,-0.968853235244751,0.0248871650546789,0.0180094670504332,-0.999528110027313,0.0238950755447149,0.0180089380592108,-0.999552249908447,-0.0627171099185944,0.0178946424275637,-0.997870922088623,-0.960726201534271,0.273013532161713,0.0496880635619164,-0.979752957820892,0.195492014288902,-0.0432089231908321,-0.964062929153442,-0.00472413748502731,-0.265632092952728,-0.998695373535156,0.0187977012246847,0.0474784821271896,-0.997279465198517,0.0246367417275906,-0.0694744735956192,-0.99862676858902,0.0235278755426407,-0.046808697283268,-0.994551479816437,-0.0196925420314074,0.102370046079159,-0.98971152305603,0.0367875806987286,0.138267382979393,-0.993124604225159,-0.107975885272026,0.045218862593174,-0.997169971466064,-0.0194651577621698,-0.0726167932152748,
- -0.998586058616638,-0.0252501498907804,0.0467796511948109,-0.999201238155365,-0.0213841423392296,-0.0337572619318962,-0.0544086396694183,0.402061372995377,-0.91399484872818,-0.969908475875854,-0.22794072329998,-0.0855606496334076,-0.968755483627319,-0.242109552025795,-0.0538121983408928,-0.999116361141205,0.0306080225855112,-0.0288029313087463,-0.998477756977081,0.0278456900268793,0.0476106852293015,-0.999106824398041,0.0284519195556641,0.0312439016997814,-0.988162636756897,0.150460720062256,0.0299385040998459,-0.988225817680359,0.136707484722137,-0.0687090680003166,-0.989419341087341,0.14400115609169,-0.0176957417279482,-0.0513726286590099,-0.681078910827637,-0.730405628681183,-0.859841465950012,0.51011723279953,0.0212860405445099,-0.89686506986618,0.43553763628006,-0.0770720168948174,-0.999232351779938,0.0230846256017685,0.0316536538302898,-0.997724294662476,0.0216079875826836,-0.0638696253299713,-0.999243795871735,0.0230794008821249,0.0312905162572861,-0.0633524209260941,-0.115154065191746,-0.991325438022614,-0.611886262893677,0.787311136722565,-0.075739823281765,-0.0538156814873219,-0.127472162246704,-0.990381121635437,-0.0493325665593147,-0.0396078750491142,-0.997996747493744,0.0209083687514067,-0.0379795990884304,-0.999059736728668,-0.0631304085254669,-0.0399053581058979,-0.997207164764404,-0.995557129383087,0.0765172988176346,-0.0548732243478298,-0.994878470897675,0.0763178765773773,-0.0662750750780106,-0.996462821960449,0.0777058079838753,0.0319965146481991,-0.994261741638184,0.0918714255094528,-0.0548018254339695,-0.0461692400276661,0.0184409599751234,-0.99876344203949,-0.993509531021118,0.0919750481843948,-0.0669285580515862,-0.656962394714355,0.753053367137909,-0.0362105257809162,-0.639054536819458,0.768715858459473,0.0261805839836597,-0.636846780776978,0.770273625850677,0.0332390628755093,-0.947566509246826,0.317643612623215,0.0349313542246819,-0.94602769613266,0.319863885641098,-0.052143257111311,-0.947673678398132,0.31783801317215,0.0298939757049084,0.0231180414557457,-0.00701484270393848,-0.999708235263824,
- -0.0474967621266842,-0.00556480931118131,-0.998855888843536,-0.0394741296768188,-0.00573119474574924,-0.999204158782959,-0.046874213963747,0.00575429620221257,-0.998884260654449,-0.998406648635864,0.012489371933043,-0.0550302863121033,-0.0392054244875908,0.00566227408125997,-0.999215126037598,-0.00784285739064217,0.0614938512444496,-0.998076677322388,0.0257137939333916,0.0297748874872923,-0.999225854873657,-0.0370832420885563,0.0890387967228889,-0.995337605476379,-0.0393863916397095,-0.00198693200945854,-0.999222099781036,-0.639871180057526,0.767672598361969,-0.0352684892714024,-0.0364994220435619,-0.00546314381062984,-0.999318778514862,0.0190593339502811,-0.063648484647274,-0.997790396213531,-0.0333029702305794,0.00202650926075876,-0.999443292617798,0.0239160992205143,-0.0697258114814758,-0.997279524803162,0.00677815079689026,-0.114528484642506,-0.993396937847137,0.611824631690979,-0.790861368179321,-0.0144525496289134,0.0146129289641976,-0.124499417841434,-0.992112159729004,-0.934064567089081,0.353373646736145,-0.0514838732779026,-0.0230553243309259,0.00517813954502344,-0.999720871448517,-0.0307180527597666,0.00807938911020756,-0.999495446681976,0.0428847894072533,-0.0197781398892403,-0.998884320259094,-0.0307180527597666,0.00807938911020756,-0.999495446681976,-0.0230553243309259,0.00517813954502344,-0.999720871448517,0.0474873259663582,-0.0406621508300304,-0.998043835163116,0.957377016544342,-0.287954479455948,-0.0226152073591948,0.0362454243004322,-0.0373038500547409,-0.998646438121796,-0.0292017590254545,-0.0156739633530378,-0.999450623989105,0.0477999560534954,-0.0392372868955135,-0.998085975646973,0.0367866680026054,-0.0358769036829472,-0.998678982257843,0.953270494937897,-0.301306635141373,-0.0221296139061451,0.953256130218506,-0.301323175430298,-0.0225178636610508,0.0416604615747929,-0.0671194791793823,-0.996874809265137,-0.0336058139801025,-0.0306392554193735,-0.998965382575989,-0.931508183479309,0.360078305006027,-0.0513429678976536,-0.931200563907623,0.35959580540657,-0.0596351251006126,-0.934969186782837,0.350965857505798,-0.0515337362885475,
- -0.93583756685257,0.350503325462341,0.0368165485560894,-0.934487044811249,0.350862801074982,-0.0602425038814545,0.0907929092645645,0.1622354388237,-0.982566237449646,0.00711389537900686,0.106961339712143,-0.994237720966339,-0.0460476204752922,0.0713049098849297,-0.996391177177429,-0.0360326282680035,-0.0388944521546364,-0.99859344959259,-0.629429399967194,-0.772863745689392,-0.0806239098310471,-0.00710286758840084,-0.00334483361802995,-0.999969244003296,0.988962590694427,0.147671967744827,-0.0120858997106552,0.0943061709403992,0.179222926497459,-0.979278087615967,0.191081494092941,0.190703630447388,-0.962870717048645,-0.0098956935107708,0.00200447998940945,-0.999949097633362,0.0532097481191158,0.0161259807646275,-0.998453140258789,0.0601916797459126,0.017687289044261,-0.998030185699463,-0.975317358970642,-0.220606997609138,-0.0094167273491621,-0.970164656639099,-0.226684585213661,-0.0859926119446754,-0.975581586360931,-0.219631940126419,0.00152840628288686,-0.278696000576019,0.520089566707611,-0.807363271713257,-0.774013996124268,-0.627256751060486,-0.0863208174705505,-0.742081105709076,-0.670217871665955,-0.0111204646527767,-0.992295801639557,-0.123579651117325,-0.00878642033785582,-0.991978108882904,-0.126176789402962,0.00767355877906084,-0.987995266914368,-0.136143058538437,0.0730098187923431,-0.774244725704193,0.626971006393433,0.0863277912139893,-0.774476945400238,0.627087116241455,0.08334980905056,-0.778174877166748,0.628046631813049,-0.00118211191147566,-0.295954376459122,-0.955151319503784,-0.00985122565180063,0.602773010730743,0.716257870197296,0.351623892784119,-0.389942139387131,0.737492501735687,-0.551407277584076,0.371656656265259,-0.721714496612549,-0.583951592445374,-0.239990532398224,-0.255673676729202,-0.936501860618591,-0.199702590703964,-0.297530710697174,-0.933592140674591,-0.803933620452881,0.594716787338257,-0.00164737715385854,-0.799915015697479,0.594325542449951,0.083146445453167,-0.804012656211853,0.594012677669525,-0.0266934093087912,-0.739437699317932,0.673224806785584,-0.000521361362189054,
- -0.745629251003265,0.665794670581818,-0.0274696238338947,-0.231707453727722,-0.245474293828011,-0.941304445266724,-0.804768919944763,0.587744295597076,0.0830894559621811,-0.805320799350739,0.59174656867981,-0.0359793230891228,-0.805690407752991,0.591736316680908,-0.026666060090065,-0.899037718772888,0.436747282743454,-0.0313528478145599,-0.911975681781769,0.402442008256912,0.0796291306614876,-0.902782440185547,0.324112445116043,0.282727748155594,-0.913303554058075,0.270513981580734,0.304464876651764,-0.997390985488892,0.063722625374794,0.0339226573705673,-0.999559879302979,0.0245152544230223,-0.0167062655091286,-0.033609714359045,-0.0188115015625954,-0.999258041381836,-0.0411958321928978,-0.0128393303602934,-0.99906861782074,-0.786470353603363,0.617039263248444,-0.0269610900431871,0.00535608781501651,0.0334890820086002,-0.999424815177917,-0.805797398090363,0.591590762138367,-0.0266643092036247,-0.805395662784576,0.591644942760468,-0.0359765030443668,0.0140654342249036,-0.0329740606248379,-0.999357223510742,-0.0292481444776058,0.00163449882529676,-0.999570846557617,0.00827467441558838,-0.0283509772270918,-0.999563813209534,-0.00747978035360575,-0.0494629181921482,-0.998748064041138,-0.0466178506612778,-0.0194120556116104,-0.998724222183228,-0.0386291518807411,-0.0255568381398916,-0.998926758766174,0.0138385109603405,-0.0332581140100956,-0.999350965023041,0.00803107209503651,-0.0286776348948479,-0.999556541442871,0.783386886119843,-0.619594633579254,-0.0490670911967754,0.807569444179535,-0.587768614292145,-0.0485757514834404,0.807986080646515,-0.588599562644959,-0.0266281180083752,0.0376299768686295,-0.00344019522890449,-0.999285817146301,0.821456432342529,-0.569660305976868,-0.026392862200737,0.82093209028244,-0.56898307800293,-0.0482570379972458,0.820761680603027,-0.570084095001221,0.0368023030459881,-0.0612078830599785,-0.121255271136761,-0.990732431411743,-0.0995347872376442,-0.107554465532303,-0.989204168319702,-0.130899995565414,-0.0961645841598511,-0.986720621585846,0.999238014221191,-0.0218634586781263,-0.0323328301310539,
- -0.0776544958353043,-0.143167093396187,-0.986647367477417,-0.202440559864044,-0.138509497046471,-0.969449877738953,-0.0977669656276703,-0.105170458555222,-0.989636719226837,-0.850708067417145,0.52453476190567,-0.0340479537844658,-0.15665964782238,-0.0677390471100807,-0.985327005386353,-0.085642047226429,-0.0888259261846542,-0.992358565330505,-0.140117213129997,-0.0576364062726498,-0.988456010818481,-0.102426543831825,-0.0792741104960442,-0.991576790809631,-0.571856200695038,0.818813562393188,0.0502479746937752,-0.572676539421082,0.818609476089478,-0.0438200272619724,-0.572721540927887,0.818711459636688,-0.0412519723176956,-0.584344744682312,0.810315847396851,-0.0439263135194778,0.000915043987333775,0.0280661471188068,-0.999605715274811,-0.584454238414764,0.810384690761566,-0.0411089099943638,-0.507399499416351,0.860405087471008,0.0474239028990269,-0.506325125694275,0.861266255378723,-0.0430737398564816,-0.507371008396149,0.860284686088562,0.0498496666550636,0.341246008872986,0.939785063266754,-0.0188516229391098,0.335951924324036,0.940451681613922,0.0518359169363976,0.339179486036301,0.940650939941406,0.0115372827276587,-0.0311002675443888,0.00867722649127245,-0.999478578567505,-0.585321426391602,0.80961012840271,-0.0439348518848419,-0.0356018468737602,0.0149231059476733,-0.999254703521729,-0.0533040873706341,-0.015212643891573,-0.998462438583374,-0.0584767237305641,-0.00793295260518789,-0.998257339000702,-0.0627250298857689,-0.00194870890118182,-0.998028993606567,0.12508063018322,0.0979446992278099,-0.987300217151642,0.116577975451946,0.108884289860725,-0.987194895744324,-0.606488168239594,0.793868243694305,-0.0441057123243809,-0.0283775292336941,0.0103276595473289,-0.999543964862823,-0.0241496991366148,0.00333856092765927,-0.99970281124115,-0.00809908751398325,-0.0231728255748749,-0.999698638916016,0.562084376811981,0.827077865600586,0.00183383002877235,0.56151407957077,0.826213240623474,-0.0455393083393574,0.562068283557892,0.827048718929291,-0.00834584049880505,-0.190385162830353,0.980221748352051,-0.05402797088027,
- -0.190216079354286,0.98130875825882,0.0291715785861015,-0.190373882651329,0.981663823127747,0.00969784986227751,0.0406571663916111,0.044495802372694,-0.998181939125061,-0.889379739761353,0.455203592777252,-0.0423490814864635,-0.0198974367231131,-0.0550632439553738,0.998284697532654,-0.187096446752548,0.981264054775238,-0.0459984429180622,-0.186969429254532,0.980876982212067,-0.0540640875697136,-0.18764092028141,0.982187747955322,0.00990390032529831,-0.172759279608727,0.209768518805504,-0.962367653846741,0.829784631729126,0.558018207550049,0.00855957251042128,-0.478054076433182,-0.0252451356500387,-0.877967476844788,-0.382172375917435,-0.0131303369998932,-0.923997819423676,0.409929573535919,0.911980092525482,-0.0158126149326563,0.397701680660248,0.916124224662781,-0.0504950359463692,0.0249018855392933,0.999367952346802,0.0253718197345734,0.0399425104260445,0.999197363853455,0.00306409527547657,0.0666322857141495,0.997104942798615,-0.0366327799856663,0.00346036301925778,0.935451745986938,-0.353437781333923,-0.83283543586731,0.551606893539429,-0.045989740639925,-0.0276162978261709,0.937084794044495,-0.348007798194885,-0.0411664098501205,0.0333571918308735,-0.998595416545868,-0.175487324595451,0.98298966884613,-0.0541805289685726,-0.17526850104332,0.983463227748871,-0.045619361102581,0.0421919897198677,-0.684180557727814,0.728091180324554,-0.271465241909027,-0.00493701174855232,-0.962435662746429,0.222820401191711,0.974410355091095,-0.029590155929327,-0.230777516961098,0.971531987190247,-0.0535490065813065,-0.0397116914391518,0.0335919857025146,-0.998646378517151,-0.0382731966674328,0.0274582169950008,-0.998890042304993,-0.0829780101776123,0.233878418803215,-0.968718469142914,0.0211606808006763,-0.0284249112010002,-0.999372005462646,-0.00556267751380801,0.0390788018703461,-0.999220728874207,-0.160953164100647,-0.0585672557353973,-0.985222816467285,-0.101769722998142,-0.260123878717422,-0.960197150707245,-0.0223737191408873,-0.492918640375137,-0.869787693023682,0.00723523739725351,-0.663188517093658,-0.748417437076569,
- -0.760623395442963,-0.148011773824692,-0.632095336914063,-0.0265198834240437,-0.652723133563995,-0.757132351398468,-0.0405349433422089,-0.0343241579830647,-0.998588383197784,-0.0508893728256226,0.0260397437959909,-0.998364806175232,-0.0518397688865662,0.0316318087279797,-0.99815434217453,0.00440935418009758,0.0406720153987408,-0.999162912368774,0.0135166272521019,-0.0297121573239565,-0.999467194080353,0.0136200049892068,-0.0305132772773504,-0.999441564083099,0.0103477332741022,-0.996202707290649,-0.0864482372999191,-0.583184361457825,-0.123666845262051,-0.802871465682983,-0.0128600746393204,-0.992980539798737,-0.117577165365219,0.0932720601558685,-0.991799592971802,-0.0873727574944496,0.0181074440479279,-0.030193330720067,-0.999380052089691,0.0179935749620199,-0.0289584808051586,-0.99941873550415,0.0158095508813858,-0.38208281993866,-0.923992872238159,0.0145884221419692,-0.376344949007034,-0.926364779472351,0.178722575306892,-0.979983627796173,-0.0876950025558472,0.0489878319203854,0.0371290929615498,-0.998109042644501,-0.0592441000044346,-0.0356191210448742,-0.997607827186584,-0.0380738824605942,-0.0213838908821344,-0.999046087265015,-0.210135087370873,0.00768791232258081,-0.977642118930817,-0.187245875597,0.0247941873967648,-0.982000112533569,-0.0584875345230103,0.118546672165394,-0.991224527359009,0.116340555250645,0.0924201682209969,-0.988900184631348,0.157421261072159,-0.197618335485458,0.967556595802307,0.853973031044006,-0.275719314813614,-0.441258370876312,-0.14006595313549,-0.0705535858869553,-0.987625360488892,-0.624445259571075,0.215761855244637,0.750676393508911,-0.0974300876259804,-0.0804599523544312,-0.991984724998474,0.00786266010254622,-0.013657602481544,-0.999875843524933,-0.00856984965503216,0.0132430056110024,-0.999875664710999,0.00787798408418894,-0.0136826895177364,-0.999875366687775,-0.0150486454367638,-0.028439087793231,-0.999482333660126,-0.0214058477431536,-0.032988652586937,-0.999226570129395,-0.812962174415588,-0.582299172878265,0.00449618883430958,-0.352948099374771,-0.241200998425484,-0.904018759727478,
- -0.717400670051575,0.240978896617889,0.653655469417572,0.99580192565918,-0.0807938203215599,-0.0430218316614628,0.520310759544373,-0.851815164089203,-0.0607279129326344,0.00786266010254622,-0.013657602481544,-0.999875843524933,0.00787798408418894,-0.0136826895177364,-0.999875366687775,0.12306359410286,-0.988528609275818,-0.0875586047768593,0.122339867055416,-0.991143882274628,-0.0516422241926193,0.0325553342700005,-0.029158903285861,-0.99904453754425,-0.0340039990842342,-0.0386019423604012,-0.998675942420959,0.544203817844391,-0.836735665798187,-0.0609561651945114,0.544985353946686,-0.836946487426758,-0.0501155406236649,0.125748857855797,-0.988189578056335,-0.0875715240836143,0.127903178334236,-0.990584671497345,0.0488134957849979,0.126544162631035,-0.99060845375061,-0.051782451570034,0.521326780319214,-0.851893484592438,-0.0499588549137115,0.520980834960938,-0.851404905319214,-0.0607349090278149,0.521676898002625,-0.851766049861908,0.0484562963247299,-0.0757964700460434,-0.99511331319809,0.0632811188697815,-0.122020661830902,-0.988988757133484,-0.0837388634681702,-0.00436561508104205,-0.960797607898712,0.277216553688049,0.15030100941658,-0.987424492835999,0.0490169189870358,0.149769604206085,-0.984827399253845,-0.0876585990190506,0.150213554501534,-0.986771404743195,0.060976043343544,-0.171136096119881,-0.983213007450104,0.0632822066545486,-0.0138904070481658,-0.470968276262283,0.882040798664093,0.0777442678809166,-0.0108649041503668,0.996914207935333,-0.0147215174511075,-0.354826688766479,0.934816300868988,0.0225120931863785,-0.322039663791656,0.946458518505096,0.380076229572296,0.0416764318943024,0.924015760421753,0.148214519023895,-0.987071514129639,0.0610106885433197,0.00824423227459192,-0.0303353406488895,0.999505877494812,0.148269191384315,-0.987732410430908,0.0489994697272778,0.0161695778369904,-0.0212749429047108,0.999642968177795,0.0174390226602554,-0.0284943338483572,0.999441862106323,0.17392335832119,-0.982896268367767,0.0605452433228493,-0.0111337406560779,-0.025860957801342,0.999603629112244,0.0149940466508269,0.0315126068890095,0.99939090013504,
- 0.0125763043761253,0.026203291490674,0.999577581882477,0.0233123935759068,-0.0273168794810772,0.999354958534241,0.0221747290343046,-0.0202638152986765,0.999548733234406,0.0145978452637792,0.0265581980347633,0.999540686607361,0.00382553599774837,0.437519520521164,0.899200797080994,0.630151927471161,0.773917019367218,0.0629379376769066,-0.414132118225098,-0.0510764643549919,0.908782601356506,-0.186401069164276,0.982422888278961,0.00999731756746769,-0.182859316468239,0.965925276279449,0.183168739080429,-0.00210886006243527,0.0236220955848694,0.999718844890594,0.0191450826823711,-0.0281524322926998,0.999420344829559,0.00764936814084649,0.0253378823399544,0.999649703502655,0.0077677727676928,0.0247878786176443,0.999662637710571,0.00429211463779211,0.0247478391975164,0.999684512615204,-0.201704621315002,0.962038218975067,0.183841466903687,0.00437470013275743,0.0243577491492033,0.999693691730499,-0.00798090361058712,-0.0335771180689335,0.999404311180115,-0.00991586409509182,-0.0398420989513397,0.999156832695007,-0.294686824083328,-0.954736769199371,0.0404649339616299,-0.0138906203210354,-0.0347557067871094,0.99929940700531,0.00336959329433739,0.024230282753706,0.999700725078583,-0.016273207962513,-0.0429018698632717,0.998946785926819,0.0356411337852478,0.0447988137602806,0.99836003780365,0.027963861823082,0.0273422747850418,0.999234914779663,0.401478976011276,0.90650337934494,0.130638122558594,-0.00904432404786348,-0.0394224971532822,0.999181747436523,0.0202271956950426,0.0263649076223373,0.999447703361511,0.0262950770556927,0.0400148071348667,0.998853087425232,-0.0437560118734837,0.0040641906671226,0.999033987522125,0.298059612512589,0.943531215190887,0.144601210951805,0.304637163877487,0.951025068759918,0.0524187050759792,0.0243045557290316,-0.0233419090509415,0.99943208694458,0.512012422084808,-0.857893764972687,0.0431466475129128,0.511926293373108,-0.857654571533203,0.0485809445381165,0.512449860572815,-0.857632219791412,0.0431521907448769,0.511267006397247,-0.857973158359528,-0.0498813688755035,0.512381851673126,-0.857382833957672,0.0485752746462822,
- 0.802959322929382,-0.594042837619781,-0.048677571117878,0.803629159927368,-0.593501389026642,0.0440041087567806,0.803836405277252,-0.593740522861481,0.036322221159935,0.800925433635712,-0.597666501998901,0.0362385325133801,0.800750613212585,-0.597377061843872,0.0440355129539967,0.022691834717989,0.00341404974460602,0.999736726284027,0.526559054851532,-0.849033832550049,0.0433257594704628,0.00151523109525442,-0.0343359559774399,0.999409198760986,0.00243354286067188,-0.03581253439188,0.999355554580688,0.178572088479996,0.201659858226776,0.963039636611938,0.872194766998291,-0.487281084060669,0.0428181365132332,0.277514398097992,0.140837460756302,0.950342357158661,0.00229637208394706,-0.035899605602026,0.999352812767029,0.00136301759630442,-0.0344093106687069,0.999406933784485,-0.0278292074799538,0.0122523792088032,0.999537587165833,0.123288944363594,0.131159037351608,0.98366516828537,0.202858716249466,0.0924772545695305,0.974831461906433,0.137718126177788,0.124256230890751,0.982646465301514,0.0107269147410989,-0.0305464733392,0.9994757771492,-0.0178024526685476,0.0174029022455215,0.999690055847168,-0.0215346291661263,0.0236784629523754,0.999487698078156,-0.508297026157379,0.85987663269043,0.0473947711288929,-0.0228105615824461,0.022867240011692,0.999478280544281,-0.0191702395677567,0.0167004987597466,0.999676764011383,-0.00641074683517218,0.0693241059780121,0.997573614120483,0.069624274969101,0.0629272609949112,0.995586633682251,0.043857779353857,0.065139964222908,0.996911883354187,-0.0287158545106649,0.0191116016358137,0.999404907226563,-0.507399499416351,0.860405087471008,0.0474239028990269,-0.507371008396149,0.860284686088562,0.0498496666550636,-0.0158546566963196,0.0569892600178719,0.998248934745789,0.0241193789988756,0.0526486411690712,0.998321831226349,-0.993301153182983,0.109930366277695,0.0356130413711071,-0.0193235147744417,0.995514810085297,0.0926113799214363,0.0434031412005425,0.98908931016922,0.140778988599777,-0.0601904653012753,0.996329605579376,0.0608651526272297,0.155485317111015,0.985564827919006,0.0669799968600273,
- 0.041580107063055,0.998037397861481,-0.0468239709734917,-0.0117583740502596,0.994984924793243,-0.0993312299251556,0.853642880916595,0.520552158355713,-0.0178714189678431,-0.019131226465106,0.824903249740601,-0.564950108528137,0.00887681543827057,0.830117404460907,-0.557518064975739,0.208394646644592,0.975676476955414,0.0680235400795937,0.215970918536186,0.974698066711426,-0.0576229058206081,0.215332269668579,0.975531280040741,-0.044392567127943,0.97882091999054,0.204709440469742,-0.00196406152099371,-0.00127617828547955,0.0325291343033314,-0.999469995498657,0.0221269503235817,0.0374084822833538,-0.999055087566376,0.222477227449417,0.973260998725891,-0.0571587905287743,0.126448407769203,0.0034460723400116,-0.99196720123291,0.221065670251846,0.974252939224243,-0.044287022203207,-0.0342188775539398,0.530315816402435,-0.847109377384186,-0.00231484696269035,0.557073175907135,-0.830460250377655,-0.409721434116364,0.121680922806263,-0.904058694839478,0.244102820754051,0.968154549598694,-0.0555926263332367,0.238243833184242,0.968784630298615,0.0685295388102531,0.243372291326523,0.969317972660065,-0.0345357321202755,0.256431758403778,0.965988039970398,-0.0333142727613449,0.252435773611069,0.965168297290802,0.0687487348914146,0.25270539522171,0.965455889701843,0.0635203495621681,0.969963431358337,0.234696164727211,0.0639425441622734,0.969251692295074,0.232811659574509,0.0796860978007317,0.970472872257233,0.241144254803658,0.00564989680424333,0.0635138303041458,0.0178459528833628,-0.997821450233459,0.186525985598564,0.980635523796082,-0.059682834893465,0.0682872608304024,0.0437968596816063,-0.996703922748566,0.123480707406998,0.990289211273193,-0.0638749003410339,0.111644133925438,0.992669641971588,-0.0462876670062542,0.56086540222168,-0.0524426363408566,-0.826244413852692,0.0640330463647842,0.0206576716154814,-0.997733950614929,0.0635138303041458,0.0178459528833628,-0.997821450233459,0.0682872608304024,0.0437968596816063,-0.996703922748566,0.426272422075272,-0.0243850462138653,-0.904266119003296,-0.0354007370769978,0.997675061225891,-0.0582359731197357,
- 0.427070140838623,-0.0462672524154186,-0.903034031391144,0.0100133437663317,-0.580125212669373,-0.814465761184692,0.552345275878906,-0.0980188548564911,-0.827832758426666,0.525048017501831,-0.132119804620743,-0.840755045413971,0.0791722685098648,0.0142758954316378,-0.996758759021759,0.0799486339092255,0.0178215093910694,-0.996639728546143,0.0690215528011322,-0.0316679738461971,-0.997112512588501,-0.453080296516418,-0.889689922332764,-0.0563028454780579,0.0239723846316338,-0.831125736236572,-0.555567800998688,0.608272194862366,-0.149923413991928,-0.779440820217133,-0.437680721282959,-0.897373557090759,-0.0561808235943317,-0.048460740596056,-0.920252561569214,-0.388312876224518,0.0283729769289494,-0.89706689119339,-0.440983057022095,0.0191409774124622,-0.0280386675149202,-0.999423563480377,0.0205363351851702,-0.020759392529726,-0.999573647975922,0.0296127032488585,0.0267626661807299,-0.999203145503998,0.0205363351851702,-0.020759392529726,-0.999573647975922,0.0191409774124622,-0.0280386675149202,-0.999423563480377,-0.186291456222534,-0.981105923652649,-0.0522189103066921,-0.70611971616745,0.146446138620377,-0.692783236503601,0.978042662143707,0.197459042072296,0.0666524842381477,0.254449725151062,0.444245636463165,-0.859011709690094,0.446527898311615,0.893599987030029,0.0457375757396221,0.310510367155075,-0.847392320632935,-0.430708169937134,0.520866394042969,0.85361659526825,-0.00608453899621964,-0.10458941757679,0.0501916855573654,-0.993248224258423,-0.157974347472191,0.94032347202301,-0.301389992237091,-0.0973284840583801,-0.00445576570928097,-0.995242357254028,0.180865481495857,-0.982940971851349,-0.033387579023838,0.165655091404915,-0.986042141914368,-0.0167103931307793,0.689611792564392,-0.0984129160642624,-0.717461168766022,0.943418860435486,0.331426113843918,0.0108390841633081,0.910365998744965,0.408345192670822,-0.0669918432831764,0.112861558794975,0.765377759933472,-0.633607983589172,0.489891290664673,0.871158540248871,0.0330060906708241,0.487762838602066,0.871466875076294,-0.0513110533356667,0.489911913871765,0.870654225349426,0.0441312417387962,
- -0.243222594261169,0.23655891418457,-0.940682053565979,-0.056970052421093,0.33910745382309,-0.939021110534668,0.245519518852234,0.470593422651291,-0.847503364086151,0.384691178798676,-0.253356724977493,-0.887594044208527,0.997365653514862,0.0347968153655529,-0.0636481642723084,0.404717803001404,-0.249809846282005,-0.879658162593842,0.0621038787066936,-0.369665950536728,-0.927087008953094,-0.799980103969574,-0.599026381969452,-0.0346297100186348,0.411688357591629,-0.104903295636177,-0.905266880989075,-0.225410714745522,-0.974005460739136,-0.0224382188171148,-0.225114241242409,-0.972886979579926,-0.0530533790588379,-0.00417567184194922,-0.023344874382019,-0.99971878528595,0.0160884689539671,-0.095764696598053,-0.995274007320404,0.218638509511948,-0.10584545135498,-0.970048427581787,0.114064566791058,-0.101139828562737,-0.98831170797348,0.0630671977996826,-0.0646485388278961,-0.995913207530975,-0.880687952041626,-0.47238889336586,-0.0351773984730244,0.0151458978652954,-0.090154156088829,-0.995812654495239,-0.997365653514862,-0.0347968153655529,0.0636481642723084,-0.500159800052643,0.230681985616684,0.83464127779007,-0.404717803001404,0.249809846282005,0.879658162593842,-0.0258062183856964,-0.00087061058729887,-0.999666571617126,0.00509717455133796,0.0549360439181328,-0.99847686290741,-0.000489944475702941,0.0448603816330433,-0.998993158340454,0.48698103427887,0.871999204158783,-0.0496686585247517,0.486915022134781,0.871943473815918,-0.0512689054012299,0.488686859607697,0.871836066246033,0.0329693406820297,0.0408293791115284,0.0227212142199278,-0.998907744884491,0.492077618837357,0.86902517080307,-0.0515251718461514,0.492084294557571,0.869126796722412,-0.0497163087129593,0.792356312274933,0.609105885028839,0.0340809635818005,0.792724192142487,0.607616901397705,-0.0488896146416664,0.792088329792023,0.609043061733246,0.0407758094370365,0.0324101559817791,0.0272402465343475,-0.999103367328644,0.00858975760638714,-0.0132573544979095,-0.999875247478485,0.00348979746922851,-0.0219199266284704,-0.999753713607788,0.837466716766357,0.544393002986908,-0.0478097014129162,
- 0.8377326130867,0.54478508234024,0.0375949405133724,0.837693870067596,0.544556796550751,-0.0415557697415352,0.910786986351013,-0.408972948789597,0.05664137378335,0.911235988140106,-0.401745438575745,0.0908279493451118,0.904814600944519,-0.424821764230728,-0.0289325155317783,-0.278653085231781,0.959953367710114,-0.0290169641375542,-0.00885746628046036,0.0312005151063204,-0.999473869800568,-0.015086367726326,0.052657812833786,-0.998498618602753,-0.0689912065863609,0.0292345657944679,-0.997188806533813,-0.0673496052622795,0.0257422961294651,-0.997397363185883,-0.101382754743099,0.0985067710280418,-0.989958524703979,0.957840919494629,0.268975764513016,0.100959576666355,0.960204899311066,0.270636856555939,0.0690093412995338,0.96073991060257,0.274231314659119,-0.0421430096030235,0.0590129904448986,0.0332823656499386,-0.997702240943909,-0.540255963802338,0.841346561908722,-0.016107939183712,0.404820054769516,-0.536142230033875,-0.740724086761475,0.83553010225296,0.547873497009277,-0.041522815823555,0.0359379500150681,0.0035595134831965,-0.999347686767578,0.83535099029541,0.547628700733185,-0.0478704497218132,-0.14130400121212,0.0637851506471634,-0.987909197807312,-0.136392638087273,0.0268943943083286,-0.990289747714996,-0.152014702558517,0.149652257561684,-0.976983070373535,0.334922701120377,0.0401987545192242,-0.941387832164764,0.135779097676277,-0.139693945646286,-0.980841398239136,0.0825307294726372,-0.18465556204319,-0.979331970214844,-0.00277113961055875,-0.0174235384911299,-0.999844431877136,0.0015546134673059,-0.00964707881212235,-0.999952256679535,-0.485706895589828,-0.87366396188736,-0.0282866582274437,-0.152014702558517,0.149652257561684,-0.976983070373535,0.13755002617836,-0.990267395973206,-0.0212260000407696,-0.14130400121212,0.0637851506471634,-0.987909197807312,-0.509338736534119,-0.86009955406189,-0.0283383950591087,-0.509315073490143,-0.860071420669556,-0.0295858513563871,-0.00414868025109172,-0.0164340808987617,-0.999856352806091,-0.0360391438007355,-0.0170952044427395,-0.999204158782959,0.0221739299595356,0.0231760740280151,-0.999485492706299,
- 0.0284755229949951,0.0275330990552902,-0.999215304851532,0.0297315660864115,0.0124087873846293,-0.999480962753296,0.818485200405121,0.573045134544373,-0.04124815762043,0.0364269241690636,0.0171016938984394,-0.999189972877502,0.0181017443537712,0.0411256402730942,-0.998990058898926,-0.0449734628200531,-0.00536284223198891,-0.998973786830902,-0.0445064269006252,-0.00501799816265702,-0.998996496200562,-0.805021226406097,-0.592486083507538,-0.0300202444195747,-0.0445064269006252,-0.00501799816265702,-0.998996496200562,-0.0449734628200531,-0.00536284223198891,-0.998973786830902,-0.0668732598423958,0.0269566122442484,-0.997397303581238,-0.798117280006409,-0.601761102676392,-0.0298758298158646,-0.798071682453156,-0.601966857910156,-0.0267877466976643,0.16426794230938,-0.152182251214981,-0.974605917930603,-0.0123776532709599,-0.0845019519329071,-0.996346414089203,0.0251010917127132,-0.0991328880190849,-0.99475759267807,-0.933285892009735,0.358149856328964,-0.0265747550874949,0.109928831458092,-0.211430251598358,-0.97119152545929,0.00906152091920376,-0.174553543329239,-0.984605967998505,0.96765148639679,-0.249967306852341,-0.0341600216925144,0.0308000445365906,-0.0316203758120537,-0.999025285243988,0.0837088897824287,-0.0451592989265919,-0.995466470718384,0.0539731346070766,-0.00595667259767652,-0.998524606227875,0.0233801379799843,0.00384695222601295,-0.999719262123108,-0.0376950800418854,0.0233837030827999,-0.999015688896179,0.0178174395114183,0.0728731527924538,-0.997182130813599,0.00940331537276506,0.0702478811144829,-0.997485220432281,0.952280759811401,0.302284926176071,-0.0422517582774162,-0.0354311689734459,0.0136672556400299,-0.999278664588928,0.0181596633046865,0.0287104025483131,-0.999422788619995,-0.0372703522443771,0.0131496889516711,-0.999218702316284,-0.0496305674314499,0.0516815409064293,-0.997429609298706,0.00940331537276506,0.0702478811144829,-0.997485220432281,0.0178174395114183,0.0728731527924538,-0.997182130813599,-0.0354311689734459,0.0136672556400299,-0.999278664588928,-0.0372703522443771,0.0131496889516711,-0.999218702316284,
- -0.961678147315979,-0.268583178520203,-0.0551207065582275,-0.965583205223084,-0.254164546728134,-0.0552224181592464,-0.966638743877411,-0.254080504179001,-0.0324459485709667,-0.026884850114584,-0.0228891205042601,-0.999376475811005,-0.0285493116825819,-0.0139362532645464,-0.999495267868042,0.0223628226667643,0.0158792957663536,-0.999623894691467,-0.0236140191555023,-0.0110455863177776,-0.999660134315491,-0.337490409612656,-0.940969586372375,-0.0260110422968864,-0.0683256983757019,0.110287584364414,-0.991548478603363,-0.0229712259024382,0.23198314011097,-0.972448527812958,0.022029722109437,0.0200891867280006,-0.99955552816391,0.981801927089691,0.185302287340164,-0.0415717661380768,0.981176912784576,0.185384318232536,-0.0540806166827679,0.979413390159607,0.194513276219368,-0.0539834126830101,0.980017125606537,0.194504916667938,-0.0416464172303677,0.978830873966217,0.193135842680931,0.0677416548132896,0.999023914337158,0.0216974169015884,0.0384774170815945,0.998248219490051,0.0217559672892094,-0.0550215542316437,0.997745037078857,0.0216493923217058,0.0635319575667381,0.662975132465363,0.747899234294891,0.0333277396857738,0.663429796695709,0.747344434261322,-0.036566998809576,0.663617968559265,0.748064279556274,-0.00332465721294284,0.999704420566559,0.0197432488203049,0.014188788831234,0.998290598392487,0.0197091829031706,-0.0550238899886608,0.999515175819397,0.0197403877973557,0.0240769032388926,-0.0236150696873665,0.00576320663094521,-0.999704599380493,0.0231358502060175,0.00608882447704673,-0.999713778495789,-0.0314350500702858,0.00570747489109635,-0.999489545822144,-0.0314279124140739,0.00659267138689756,-0.999484360218048,-0.9984490275383,-0.00800424907356501,-0.0550956465303898,-0.0236149355769157,0.00665973499417305,-0.99969893693924,0.998119056224823,0.0270506627857685,-0.0550144352018833,0.0394756756722927,0.00874973367899656,-0.999182224273682,0.0229604244232178,0.00831315759569407,-0.999701797962189,-0.0312715657055378,0.0252766367048025,-0.999191343784332,0.0216167457401752,0.0253011770546436,-0.999446213245392,
- 0.0397247150540352,0.0252933073788881,-0.998890519142151,0.999714314937592,0.0192032363265753,0.0142314657568932,0.998672783374786,0.0188666917383671,-0.0479241721332073,0.998307526111603,0.0188235305249691,-0.0550248213112354,0.0401187837123871,0.0530830584466457,-0.997783899307251,0.998456418514252,0.00749301072210073,-0.0550330281257629,0.998847603797913,0.00709378067404032,-0.0474689342081547,0.994871377944946,-0.0984012708067894,0.0234153978526592,0.992069780826569,-0.0494555123150349,0.115549579262733,0.990349411964417,-0.132207870483398,-0.0415831245481968,0.0419815182685852,0.243088096380234,-0.969095349311829,0.975870609283447,-0.215081945061684,-0.0376363284885883,-0.67237913608551,-0.037854976952076,0.739238381385803,0.930552959442139,-0.00496351346373558,-0.366123855113983,0.512222647666931,0.856796324253082,-0.0593977868556976,0.932036459445953,0.0277064330875874,-0.361303776502609,0.0443555302917957,0.085138238966465,-0.995381355285645,-0.0309263188391924,0.0625960230827332,-0.997559666633606,0.0405213311314583,0.0840008854866028,-0.995641469955444,-0.032134898006916,-0.105555444955826,-0.993894159793854,0.544581234455109,0.0514721721410751,-0.837127208709717,0.334243416786194,-0.0105273518711329,-0.94242799282074,-0.644334256649017,-0.0250184163451195,-0.764334678649902,-0.0183807592839003,0.662167012691498,-0.749130845069885,-0.620511054992676,0.0195436552166939,-0.78395414352417,-0.994103193283081,-0.0360218621790409,-0.102280303835869,-0.01921421661973,0.638227224349976,-0.769608199596405,-0.989101827144623,0.0019921506755054,-0.147219747304916,-0.997950851917267,-0.0322570577263832,-0.0552591569721699,-0.0314898751676083,-0.00120022124610841,-0.999503433704376,-0.994231641292572,-0.032145481556654,-0.102324329316616,-0.974283874034882,0.0165187008678913,0.224718227982521,-0.902178883552551,0.00679226312786341,0.431308716535568,-0.994262456893921,0.0295108649879694,-0.102816842496395,-0.997924566268921,-0.0330540873110294,-0.0552639812231064,-0.994219362735748,-0.0325359404087067,-0.102319955825806,
- -0.998949527740479,-0.0338096804916859,0.0309305414557457,-0.997586786746979,-0.0624041147530079,0.0304373111575842,-0.99455451965332,-0.0190513283014297,-0.10246155411005,-0.988275051116943,-0.00240417802706361,-0.152665302157402,-0.998989701271057,-0.0211297571659088,0.039663054049015,-0.998272895812988,-0.0201572813093662,-0.0551816336810589,-0.999293327331543,-0.0210500285029411,0.0311423074454069,-0.999402821063995,-0.0147637138143182,0.0312447529286146,-0.999346256256104,-0.000569291587453336,-0.0361500158905983,-0.0263535156846046,-0.206223174929619,0.978150069713593,-0.476572036743164,0.0138429384678602,0.879026532173157,-0.451423078775406,-0.0247102752327919,0.891967833042145,-0.0283443294465542,-0.512846112251282,0.858012497425079,-0.0317693129181862,0.000330129143549129,0.999495267868042,-0.998891472816467,-0.0252547413110733,0.0397241488099098,-0.999197602272034,-0.0252723172307014,0.0310728028416634,-0.0311054922640324,-0.00524785043671727,0.999502420425415,-0.998697876930237,-0.0406579114496708,0.0308147687464952,-0.0236930437386036,-0.00494781089946628,0.999707043170929,-0.958416283130646,-0.280017614364624,-0.0550309531390667,-0.958932638168335,-0.280481576919556,0.0421702824532986,-0.958839118480682,-0.280461341142654,0.0443746447563171,-0.959990918636322,-0.276501029729843,0.044326439499855,-0.960087895393372,-0.276503920555115,0.0421531274914742,-0.02935547567904,-0.0199128314852715,0.999370634555817,-0.968788981437683,-0.243967995047569,0.043904323130846,-0.968997538089752,-0.244930729269981,-0.0324481949210167,-0.967960715293884,-0.244941204786301,-0.0552808344364166,-0.0259710531681776,-0.17204076051712,0.984747469425201,-0.280857771635056,-0.0217447187751532,0.959503054618835,0.0308230202645063,-0.203301787376404,0.978630900382996,-0.023703645914793,-0.00562672596424818,0.999703228473663,0.0314802266657352,-0.00381966051645577,0.99949711561203,-0.0310319177806377,-0.0058655864559114,0.99950122833252,0.314265340566635,-0.00752610014751554,0.949305355548859,0.672777533531189,-0.736657679080963,0.0685994699597359,
- 0.0298848617821932,0.314327120780945,0.948844313621521,0.999704420566559,0.0197432488203049,0.014188788831234,0.999515175819397,0.0197403877973557,0.0240769032388926,0.0314804464578629,0.000710420485120267,0.999504148960114,0.031474806368351,-0.0189424697309732,0.999325037002563,0.996237874031067,0.0828280374407768,0.0254897437989712,0.0322173982858658,-0.0188798345625401,0.999302566051483,-0.0288674663752317,-0.0239920727908611,0.999295353889465,0.031474806368351,-0.0189424697309732,0.999325037002563,0.0322173982858658,-0.0188798345625401,0.999302566051483,0.0295941773802042,0.0470703728497028,0.998453080654144,0.702805280685425,0.710598409175873,0.0333874896168709,0.700305938720703,0.708936214447021,0.0835534259676933,0.984836757183075,0.0217785313725472,0.172111675143242,0.0309513751417398,0.00754587724804878,0.999492406845093,0.0311825796961784,0.00755066191777587,0.999485194683075,-0.0320316813886166,0.00253715645521879,0.999483644962311,0.0313044302165508,0.00446743983775377,0.999499976634979,0.031269371509552,0.00446637533605099,0.99950098991394,0.0304772928357124,0.0121314590796828,0.999461889266968,0.984542429447174,0.036913275718689,0.171212330460548,0.936475455760956,0.0371659696102142,0.348758399486542,0.945415139198303,0.247610539197922,0.211847096681595,0.0349693559110165,-0.0315832458436489,0.998889207839966,0.90728223323822,0.231550127267838,0.351032108068466,-0.0287906266748905,-0.0246339552104473,0.999281942844391,0.0324515774846077,-0.00700801052153111,0.999448716640472,0.0341931879520416,-0.00650579389184713,0.999394059181213,0.0338501669466496,-0.020635798573494,0.999213874340057,0.937333345413208,0.27742725610733,0.210808739066124,0.037566103041172,-0.019506735727191,0.999103724956512,-0.00574397435411811,-0.036052830517292,0.999333381652832,-0.0266976598650217,-0.042075052857399,0.998757660388947,0.038541603833437,-0.0232710335403681,0.998986005783081,-0.957249939441681,-0.285828232765198,0.0444388538599014,-0.0284745525568724,-0.0272730942815542,0.999222457408905,-0.00996437203139067,-0.0217714793980122,0.999713361263275,
- 0.842302680015564,-0.511147916316986,0.171038150787354,-0.301272571086884,0.436356633901596,0.847837209701538,-0.0461617596447468,0.29666730761528,0.953864574432373,-0.0617018453776836,0.154317781329155,0.986092805862427,0.00150374881923199,0.118341445922852,0.992971837520599,-0.115237951278687,0.184289246797562,0.976093173027039,-0.19485642015934,0.292567640542984,0.9361811876297,0.930699706077576,-0.309366375207901,0.195167705416679,0.93721604347229,-0.344047129154205,0.0570756383240223,0.778877079486847,0.58944833278656,0.214245721697807,0.00248685921542346,0.0232440941035748,0.99972677230835,0.798817157745361,0.600579738616943,0.0345713421702385,-0.698265194892883,0.715761005878448,0.0105830151587725,0.0205983743071556,-0.124914139509201,0.991953730583191,0.133184775710106,-0.237391784787178,0.96224057674408,-0.167790561914444,0.181166127324104,0.969033122062683,-0.063878707587719,0.161769032478333,0.984759032726288,-0.104423746466637,0.169541284441948,0.97997522354126,-0.0265690721571445,-0.0170458368957043,0.999501645565033,-0.785904705524445,-0.615879952907562,0.0551883690059185,-0.7862708568573,-0.616203546524048,0.0455115363001823,-0.780970275402069,-0.62212061882019,0.0552397966384888,-0.780430912971497,-0.624545931816101,-0.0294981859624386,-0.781194925308228,-0.622629642486572,0.0454634912312031,-0.801686942577362,-0.596993386745453,-0.0299507193267345,-0.798556923866272,-0.599397778511047,0.0550375878810883,-0.801674008369446,-0.597163438796997,-0.0267310105264187,-0.027308814227581,-0.0166543014347553,0.999488353729248,-0.0270154736936092,-0.0164244137704372,0.999500155448914,0.0101627260446548,0.0127063263207674,0.999867677688599,-0.781733810901642,-0.621161580085754,0.0552321001887321,-0.0299835670739412,-0.0122917853295803,0.999474883079529,-0.030564283952117,-0.0127539625391364,0.999451518058777,0.0155429197475314,0.0176859311759472,0.999722838401794,0.00989167392253876,0.013078517280519,0.999865531921387,0.756532967090607,0.617963314056396,0.213960811495781,-0.0287792310118675,-0.0148927681148052,0.999474883079529,
- 0.0082822609692812,0.015288332477212,0.99984884262085,0.0135109759867191,0.0195447765290737,0.999717712402344,0.0871981382369995,-0.995548963546753,0.0357618406414986,0.0786263346672058,-0.994608461856842,0.0676174685359001,0.102440893650055,-0.994498550891876,-0.0218788478523493,-0.427623689174652,-0.902438879013062,0.0523646660149097,-0.311052143573761,0.328453451395035,0.891832292079926,-0.460987240076065,-0.876266419887543,0.140171378850937,-0.799042999744415,-0.599293529987335,0.0487609431147575,-0.81460702419281,-0.579407095909119,-0.0265152398496866,-0.764531195163727,-0.62283581495285,0.166035607457161,-0.498963534832001,-0.865192234516144,0.0497780740261078,-0.498213171958923,-0.866558134555817,-0.0293383374810219,-0.498242765665054,-0.866575062274933,-0.0283166188746691,0.206283807754517,-0.151094332337379,0.966756165027618,-0.492733001708984,-0.858257591724396,0.143556013703346,0.15387424826622,-0.231703236699104,0.960539698600769,-0.595635592937469,-0.801676988601685,0.0503222644329071,-0.535196304321289,-0.831682145595551,0.147884398698807,0.464510053396225,-0.315013885498047,0.827645242214203,0.0744789615273476,-0.0666265115141869,0.994994461536407,0.0550630241632462,-0.114919804036617,0.991847515106201,0.0833055451512337,-0.044443391263485,0.995532512664795,-0.54088968038559,-0.840548574924469,-0.0302728805691004,-0.541202962398529,-0.839398682117462,0.050092950463295,-0.541195154190063,-0.839377760887146,0.0505262911319733,-0.225212022662163,-0.972734093666077,0.0553885884582996,-0.225114241242409,-0.972886979579926,-0.0530533790588379,-0.225410714745522,-0.974005460739136,-0.0224382188171148,-0.0272120423614979,-0.00113670423161238,0.999629020690918,-0.03868542984128,-0.0189532991498709,0.999071717262268,-0.542169332504272,-0.838774442672729,0.0500988140702248,-0.542762041091919,-0.838390827178955,0.0501023791730404,-0.0380053780972958,-0.0192111749202013,0.999092936515808,-0.542758464813232,-0.838370323181152,0.0504830740392208,-0.265421360731125,-0.962628126144409,-0.0538382232189178,-0.263601005077362,-0.963053584098816,0.055157296359539,
- -0.263242900371552,-0.962460279464722,0.0661330670118332,0.00773001927882433,-0.0365131460130215,0.99930328130722,-0.263242900371552,-0.962460279464722,0.0661330670118332,-0.263601005077362,-0.963053584098816,0.055157296359539,0.18691012263298,-0.981542408466339,-0.0404851548373699,0.131016582250595,-0.988826870918274,0.0711059719324112,-0.0254542659968138,-0.933233201503754,0.358368486166,-0.211638331413269,0.012851145118475,0.977263629436493,-0.00306635908782482,-0.671026885509491,0.741426646709442,0.210468605160713,-0.975036799907684,0.0707543343305588,-0.257290452718735,-0.964057505130768,0.0662931203842163,-0.0179507993161678,-0.0268078316003084,0.999479413032532,-0.018370708450675,-0.0283876974135637,0.999428272247314,-0.202718123793602,0.0109190829098225,0.97917628288269,-0.0375778637826443,-0.322483658790588,0.945828855037689,0.0124310646206141,-0.412829726934433,0.910723388195038,0.00293276039883494,0.0455862320959568,0.998956084251404,-0.03868542984128,-0.0189532991498709,0.999071717262268,-0.0272120423614979,-0.00113670423161238,0.999629020690918,0.00647334102541208,-0.022860711440444,0.999717712402344,0.0248996391892433,0.00912315025925636,0.99964839220047,0.0338551551103592,0.024684701114893,0.999121844768524,0.49634975194931,0.845439732074738,0.197151064872742,0.0311559401452541,0.0265118349343538,0.999162912368774,0.0223699938505888,0.0114386547356844,0.99968433380127,0.0391228310763836,0.0211174804717302,0.999011278152466,0.484048068523407,0.852825999259949,0.195921555161476,0.487323522567749,0.861153483390808,0.144673779606819,0.167780116200447,-0.0666145607829094,0.983571290969849,0.951928019523621,0.302088350057602,0.0507508404552937,0.951072037220001,0.298032164573669,0.0814790651202202,-0.0424876846373081,0.0761673524975777,0.996189475059509,-0.175557911396027,0.0598584599792957,0.982647716999054,-0.226993143558502,0.0531505271792412,0.972444891929626,0.161132708191872,-0.0394642129540443,0.986143410205841,0.136729404330254,-0.0453327037394047,0.989570617675781,0.972901880741119,0.217227846384048,0.07920853048563,
- -0.00565527332946658,0.00986496079713106,0.999935328960419,-0.0156853627413511,-0.0289517045021057,0.999457716941834,-0.0153826680034399,-0.0277795251458883,0.999495804309845,0.240391537547112,0.968642592430115,0.0627982616424561,-0.0123265087604523,0.00268399808555841,0.999920427799225,-0.0102037535980344,0.011206722818315,0.999885141849518,-0.0138783194124699,-0.0293311048299074,0.999473392963409,-0.00450947228819132,0.00952692981809378,0.999944448471069,-0.00646780617535114,0.00140831270255148,0.999978125095367,-0.0201948918402195,0.0711713209748268,0.997259676456451,0.0900924503803253,-0.0509751290082932,0.994628071784973,0.0550123229622841,-0.0119784893468022,0.998413801193237,-0.0349933430552483,0.00761951832100749,0.999358534812927,0.25270539522171,0.965455889701843,0.0635203495621681,0.252435773611069,0.965168297290802,0.0687487348914146,-0.0188622828572989,0.0982403233647347,0.994983971118927,0.123490042984486,-0.0268889628350735,0.991981506347656,-0.750875353813171,0.660200297832489,0.0179377961903811,0.997376918792725,-0.0167639497667551,0.0704162493348122,0.0562658943235874,-0.0226655062288046,0.998158574104309,0.997876048088074,-0.0166093092411757,0.0629891157150269,0.0569732151925564,-0.0359278284013271,0.997729003429413,0.997445583343506,0.00924951769411564,0.0708307772874832,0.0404507890343666,-0.0361533798277378,0.998527348041534,0.806906580924988,0.586932420730591,0.0664253830909729,0.800793528556824,0.590281307697296,0.101477563381195,0.0308512542396784,0.23488849401474,0.971532702445984,0.885881066322327,0.447091460227966,0.123790889978409,0.0176032409071922,0.438247859477997,0.89868175983429,0.0215061828494072,0.439599335193634,0.897936522960663,0.986057221889496,-0.0090130278840661,0.166162341833115,0.987397909164429,-0.00931270699948072,0.157983660697937,0.016004154458642,0.0339357033371925,0.999295890331268,-0.0230893865227699,-0.0220397263765335,0.999490439891815,0.0562856234610081,-0.0230330433696508,0.9981489777565,0.0400476232171059,-0.0228413064032793,0.998936653137207,0.0158516243100166,0.0135922143235803,0.999782025814056,
- 0.987439811229706,0.00130100885871798,0.157990366220474,0.0156376231461763,0.013592442497611,0.999785304069519,-0.0353308729827404,0.22355243563652,0.974051356315613,0.0293630231171846,0.270547389984131,0.962258756160736,0.0172580424696207,0.261878073215485,0.964946687221527,-0.0214704424142838,-0.0386177115142345,0.9990234375,-0.0226840749382973,-0.0387009046971798,0.998993337154388,0.0403951890766621,-0.0343038253486156,0.998594760894775,-0.000440023781266063,-0.245795577764511,0.969321608543396,0.0172175485640764,-0.250918596982956,0.967855036258698,0.932764053344727,-0.328143268823624,0.149242252111435,0.77104115486145,-0.636361598968506,0.0232242960482836,-0.0273511987179518,-0.4398093521595,0.89767462015152,0.740931928157806,-0.661034047603607,0.118549101054668,-0.0309947934001684,0.0102548878639936,0.999467015266418,0.0158287733793259,0.0106177311390638,0.999818325042725,0.0156616196036339,0.0106164775788784,0.99982100725174,-0.0407325737178326,-0.211095154285431,0.976616501808167,0.0172242820262909,-0.252701908349991,0.967390894889832,0.000254567712545395,-0.240648359060287,0.970612347126007,-0.0319279804825783,-0.00951227266341448,0.999444961547852,-0.023083658888936,-0.00963383074849844,0.999687135219574,0.0156653095036745,-0.0101572275161743,0.999825716018677,0.999494791030884,-0.0210945159196854,0.0237762127071619,0.00778833217918873,0.0027119901496917,0.999966025352478,0.032008770853281,0.00219777296297252,0.999485194683075,-0.0313132479786873,0.0035385808441788,0.999503433704376,0.032008770853281,0.00219777296297252,0.999485194683075,0.00778833217918873,0.0027119901496917,0.999966025352478,0.00838735606521368,-0.0163407456129789,0.999831318855286,0.999649822711945,-0.011758734472096,0.0237063616514206,0.981920659542084,-0.0142387673258781,0.188756570219994,0.998727679252625,-0.0170682314783335,0.0474527701735497,0.00675378926098347,0.0354047603905201,0.999350249767303,0.981960117816925,-0.011730489321053,0.188724026083946,0.00785352382808924,0.0154364742338657,0.999850034713745,0.0074145277030766,0.0145554039627314,0.999866664409637,
- 0.445954471826553,0.895028531551361,0.00697377603501081,-0.0150688905268908,0.0163374040275812,0.999752998352051,-0.0385929010808468,-0.0188181549310684,0.99907785654068,0.00634411629289389,0.0482778027653694,0.99881386756897,0.00742185488343239,0.0143236061558127,0.9998699426651,-0.0399215966463089,0.0149170635268092,0.999091506004334,-0.0307782422751188,0.0148049714043736,0.999416589736938,-0.0467462055385113,0.210982084274292,0.976371586322784,-0.342602282762527,0.0282765440642834,0.9390549659729,-0.397460132837296,-0.00915654376149178,0.917573809623718,-0.998464167118073,0.0298036374151707,0.0467021837830544,-0.0305529944598675,0.0195232536643744,0.999342441558838,-0.04010995849967,0.0197937842458487,0.998999178409576,-0.0474941022694111,0.235680937767029,0.970669269561768,-0.653712928295136,0.00271368748508394,0.75673770904541,-0.961710333824158,-0.269527763128281,0.049679659307003,-0.999140560626984,0.0130689013749361,0.0393362417817116,-0.023083658888936,-0.00963383074849844,0.999687135219574,-0.0319279804825783,-0.00951227266341448,0.999444961547852,-0.0319876708090305,-0.0107856709510088,0.999430060386658,-0.998692035675049,0.0204544477164745,0.0468601807951927,-0.999014973640442,0.0205475501716137,0.0393312983214855,-0.99709677696228,-0.0652457922697067,0.0392557792365551,-0.0232756529003382,-0.014290988445282,0.999626934528351,-0.0228273943066597,-0.0142620196565986,0.999637722969055,-0.972373425960541,-0.228774860501289,-0.0463898777961731,-0.983838021755219,-0.172171428799629,0.0491918921470642,-0.937481284141541,0.0213210918009281,0.347382098436356,-0.998712003231049,0.0194169580936432,0.0468774661421776,-0.998244225978851,0.0202613659203053,-0.0556594878435135,-0.999036133289337,0.0194862056523561,0.0393321327865124,-0.977328836917877,0.202970504760742,-0.0602612867951393,-0.973679423332214,0.0359835289418697,-0.225063532590866,-0.955126285552979,-0.0381856374442577,-0.293727248907089,-0.998711228370667,-0.0324026048183441,0.0390641987323761,-0.0235586017370224,-0.00240542273968458,0.999719560146332,
- -0.998701214790344,-0.0324026979506016,0.0393189452588558,-0.999200940132141,0.00706464238464832,0.0393386222422123,-0.998445689678192,0.00724965427070856,-0.0552607774734497,-0.998857080936432,0.00723646534606814,-0.0472470782697201,-0.998701214790344,-0.0324026979506016,0.0393189452588558,-0.998378276824951,-0.0322505570948124,-0.0469135344028473,-0.998711228370667,-0.0324026048183441,0.0390641987323761,-0.977328836917877,0.202970504760742,-0.0602612867951393,-0.955126285552979,-0.0381856374442577,-0.293727248907089,-0.0278372913599014,-0.705654799938202,-0.708008766174316,-0.023143582046032,0.0119494013488293,-0.999660730361938,-0.99888277053833,0.00215429253876209,-0.0472082756459713,-0.998478055000305,0.00224775006063282,-0.0551050193607807,-0.0239894464612007,-0.0242010578513145,-0.999419271945953,-0.0245611779391766,-0.0242108702659607,-0.999405145645142,-0.998336613178253,-0.0190194454044104,-0.0544273927807808,-0.585768103599548,-0.00852997787296772,-0.810433804988861,0.00284599326550961,-0.540597319602966,-0.841276705265045,-0.0283563435077667,-0.520994126796722,-0.853089153766632,0.502235770225525,0.0441277697682381,-0.863604068756104,0.539708912372589,0.00748344324529171,-0.841818511486053,0.0342326909303665,0.39997211098671,-0.915887832641602,-0.0243334155529737,-0.0472951866686344,-0.998584508895874,0.022102827206254,-0.0472153462469578,-0.998640179634094,0.0404080115258694,-0.0471558533608913,-0.998069941997528,0.232690870761871,-0.972541153430939,0.00432234024628997,0.0237138103693724,0.0031279434915632,-0.999713957309723,0.031503900885582,-0.0294822342693806,-0.999068737030029,0.600186467170715,-0.799704790115356,-0.0157614909112453,0.823435842990875,0.0340309739112854,-0.566388070583344,0.833447456359863,-0.00862804893404245,-0.55253142118454,0.022102827206254,-0.0472153462469578,-0.998640179634094,0.997465550899506,-0.0015944242477417,-0.0711336433887482,0.0404080115258694,-0.0471558533608913,-0.998069941997528,0.996928513050079,-0.0379698537290096,-0.06849704682827,0.0202446654438972,-0.103081978857517,-0.994466841220856,
- 0.998273551464081,-0.0357555784285069,-0.0465994477272034,-0.0248825009912252,-0.0860716179013252,-0.995978176593781,0.0412139073014259,-0.0855928808450699,-0.995477437973022,0.0619685128331184,-0.0853649899363518,-0.994420826435089,0.944157004356384,0.316943913698196,-0.090078629553318,0.0587606430053711,-0.25616380572319,-0.964845776557922,0.0441350042819977,-0.26130273938179,-0.964247405529022,-0.0245611779391766,-0.0242108702659607,-0.999405145645142,-0.0239894464612007,-0.0242010578513145,-0.999419271945953,0.06267399340868,-0.0226233638823032,-0.99777764081955,0.950094699859619,-0.307971477508545,0.0497363023459911,0.971591114997864,-0.232867166399956,-0.0422347448766232,0.952707409858704,0.00303972326219082,-0.303873956203461,0.998595714569092,-0.0233671516180038,0.0475457347929478,0.997179687023163,-0.0291909743100405,-0.0691420435905457,0.998512208461761,-0.0280998181551695,-0.0467312857508659,0.994551479816437,0.0196925420314074,0.102370046079159,0.98971152305603,-0.0367875806987286,0.138267382979393,0.993124604225159,0.107975885272026,0.045218862593174,0.997359752655029,0.00987475924193859,-0.0719453170895576,0.998775362968445,0.015632588416338,0.046940054744482,0.999390840530396,0.0117891933768988,-0.0328494757413864,0.0544418282806873,-0.401124030351639,-0.914404511451721,0.969731152057648,0.228678986430168,-0.0856007188558578,0.968579232692719,0.24280072748661,-0.0538724288344383,0.999101221561432,-0.0311496891081333,-0.0287508629262447,0.998462080955505,-0.0283905994147062,0.04761853069067,0.99909120798111,-0.0289971921592951,0.031239116564393,0.992421507835388,-0.119081512093544,0.0303197223693132,0.992086052894592,-0.105875566601753,-0.0674956068396568,0.993454217910767,-0.112314268946648,-0.0208416320383549,0.0515440739691257,0.677675068378448,-0.733552813529968,0.858919203281403,-0.511661112308502,0.0214623473584652,0.895798444747925,-0.437720865011215,-0.0771079733967781,0.99972015619278,-0.00124083622358739,0.0236252080649138,0.998022437095642,0.000171161038451828,-0.0628594681620598,0.99950385093689,-0.00136859237682074,0.0314696617424488,
- 0.0623002164065838,0.302021682262421,-0.951263248920441,0.674160420894623,-0.734542489051819,-0.0771695971488953,0.0569806322455406,0.307499021291733,-0.949840903282166,0.0513607747852802,0.11397796869278,-0.992154777050018,-0.019162505865097,0.109550267457962,-0.993796586990356,0.063352145254612,0.114675663411617,-0.991380870342255,0.996884107589722,-0.0512412786483765,-0.0599715337157249,0.996558725833893,-0.0511924289166927,-0.0651938989758492,0.998367607593536,-0.0518326312303543,0.0239916183054447,0.996673583984375,-0.0554484948515892,-0.0597263686358929,0.0469017922878265,-0.00734173227101564,-0.998872637748718,0.996318340301514,-0.0554556995630264,-0.0653801709413528,0.755306243896484,-0.655271947383881,-0.0114609869197011,0.748194396495819,-0.663084506988525,0.0228950213640928,0.747177720069885,-0.664057075977325,0.0274529680609703,0.999606370925903,-0.0140671832486987,0.0242773424834013,0.997936248779297,-0.0169902872294188,-0.0619256496429443,0.99976772069931,-0.0143498070538044,0.0160833448171616,0.0472219996154308,0.000777757493779063,-0.99888414144516,-0.039457269012928,0.00375061109662056,-0.999214231967926,-0.0234892554581165,0.00320431054569781,-0.999719023704529,-0.998283863067627,0.0343430191278458,-0.0474334321916103,-0.0234892554581165,0.00320431054569781,-0.999719023704529,-0.039457269012928,0.00375061109662056,-0.999214231967926,0.04700867831707,-0.00464001437649131,-0.998883724212646,0.997604846954346,-0.0325208157300949,-0.06104876101017,0.0236458629369736,-0.0038854603189975,-0.999712944030762,-0.0394527837634087,0.00360723887570202,-0.999214947223663,0.0471967533230782,0.000134940011776052,-0.998885571956635,0.0236069336533546,0.00108176469802856,-0.999720811843872,0.897345900535584,0.441202014684677,-0.010539747774601,0.893685400485992,0.441391170024872,-0.0806237906217575,0.897518277168274,0.440977364778519,0.00036764150718227,0.748955070972443,0.662527680397034,-0.0111140366643667,0.749206721782684,0.66219687461853,-0.0135870948433876,0.739236116409302,0.670498251914978,0.0629458427429199,
- 0.00824443902820349,-0.999842286109924,-0.0157338455319405,0.0196289643645287,0.99822336435318,-0.0562566518783569,0.346062570810318,-0.289905160665512,-0.892297983169556,-0.0337039083242416,-0.162555396556854,-0.98612368106842,0.0242611113935709,-0.0958644822239876,-0.995098769664764,0.0662727206945419,-0.0469160228967667,-0.996697962284088,0.379976212978363,-0.319478660821915,-0.868073463439941,0.664749801158905,0.742463767528534,-0.0827971994876862,0.635758817195892,0.771808207035065,-0.0110832042992115,0.997876048088074,-0.0166093092411757,0.0629891157150269,0.999856054782867,-0.0150940222665668,-0.00775403156876564,0.997376918792725,-0.0167639497667551,0.0704162493348122,-0.00110392365604639,0.0113704213872552,-0.999934732913971,-0.0314786732196808,-0.0106362700462341,-0.999447822570801,-0.0388324744999409,-0.0159667190164328,-0.999118208885193,-0.809611737728119,-0.586001336574554,-0.0336351916193962,-0.0388324744999409,-0.0159667190164328,-0.999118208885193,-0.0314786732196808,-0.0106362700462341,-0.999447822570801,-0.320659965276718,0.947181582450867,-0.0049332408234477,-0.0298564564436674,-0.948471903800964,0.315451383590698,0.68602842092514,-0.588674783706665,-0.427582919597626,-0.476428538560867,0.41995832324028,-0.77243185043335,0.0299605093896389,0.322095096111298,-0.946233093738556,-0.029619388282299,0.338734984397888,-0.940415561199188,0.999967932701111,0.00140118680428714,-0.00788479577749968,0.99802166223526,-0.00035995029611513,0.0628703385591507,0.999224185943604,0.00218174769543111,-0.0393223538994789,0.991169810295105,-0.132427006959915,-0.00676175439730287,0.991600573062897,-0.122994519770145,-0.0400078557431698,0.0291248206049204,0.270738542079926,-0.962212204933167,0.996250450611115,0.0774218961596489,-0.0386128351092339,0.994919538497925,0.0792795196175575,0.0620478503406048,0.995929956436157,0.0772441104054451,-0.046443585306406,0.936798095703125,0.347397804260254,-0.0415227636694908,0.920943319797516,0.385799556970596,0.0549743808805943,0.814742565155029,0.473513811826706,0.334632992744446,
- 0.769363760948181,0.525178670883179,0.363684922456741,0.684047877788544,0.728926718235016,0.0272843968123198,0.660928249359131,0.750021994113922,-0.0253192745149136,0.0150445811450481,0.0294153820723295,-0.999454021453857,0.0243039019405842,0.0295989140868187,-0.999266386032104,0.999000906944275,0.0215321406722069,-0.0391611978411675,0.0161736775189638,-0.0182168465107679,-0.999703228473663,0.996250450611115,0.0774218961596489,-0.0386128351092339,0.995929956436157,0.0772441104054451,-0.046443585306406,-0.0314658768475056,0.0304292049258947,-0.999041557312012,0.0243501607328653,0.0316202640533447,-0.999203264713287,0.0149961030110717,0.0314274281263351,-0.9993936419487,0.999319970607758,0.0189620964229107,0.0316239520907402,0.99826443195343,0.0197274889796972,-0.0554884485900402,0.998700201511383,0.0196595694869757,-0.0470278859138489,0.998188018798828,0.0230951607227325,-0.0555637888610363,0.0157630853354931,-0.000720266718417406,-0.999875545501709,0.998627543449402,0.0231146607547998,-0.0469972491264343,0.999309778213501,-0.0189975798130035,0.0319230817258358,0.998302936553955,-0.0204090625047684,-0.05454246327281,0.999328553676605,-0.0190078411251307,0.0313252471387386,0.511491119861603,-0.859252333641052,-0.00789512414485216,0.524465978145599,-0.850643873214722,0.0366125628352165,0.582347691059113,-0.596688270568848,0.552118003368378,0.941519618034363,0.271121352910995,-0.200085431337357,0.93117892742157,0.156741142272949,-0.329147338867188,0.922533631324768,0.38124680519104,-0.0598541423678398,0.918108463287354,0.182463780045509,-0.351829499006271,0.0467007607221603,-0.780837178230286,-0.622986674308777,0.852812230587006,0.518844246864319,-0.0592615604400635,0.0200588908046484,-0.0927507355809212,-0.995487332344055,0.0178742595016956,-0.0930069237947464,-0.995505094528198,0.992266356945038,0.11011428385973,-0.0572929717600346,0.0154153201729059,0.00699465069919825,-0.999856770038605,-0.0314796902239323,0.00696795200929046,-0.999480128288269,0.0155805060639977,0.00699471775442362,-0.999854147434235,-0.0314781554043293,0.0120799308642745,-0.999431490898132,
- 0.015141568146646,0.0127714276313782,-0.999803841114044,-0.0238056555390358,0.0121956132352352,-0.999642312526703,-0.0238742735236883,0.0166519246995449,-0.999576330184937,-0.998757004737854,-0.0164374746382236,-0.0470559410750866,-0.0314761586487293,0.0165171436965466,-0.999368011951447,-0.00221572816371918,0.358123481273651,-0.933671653270721,-0.352968603372574,-0.106353677809238,-0.929570913314819,-0.0274770241230726,0.328782200813293,-0.944005966186523,-0.99860954284668,-0.0238987971097231,-0.0469902269542217,-0.023540485650301,-0.00474647060036659,-0.999711632728577,-0.996583044528961,-0.0239849407225847,-0.079037681221962,-0.36331045627594,-0.0998658686876297,-0.926300346851349,-0.650473833084106,-0.756380200386047,-0.0690856575965881,-0.0273488312959671,0.312233299016953,-0.949611723423004,-0.99860954284668,-0.0238987971097231,-0.0469902269542217,-0.996583044528961,-0.0239849407225847,-0.079037681221962,-0.998956143856049,-0.0235462095588446,0.0391435772180557,-0.775025308132172,-0.48350864648819,-0.406884700059891,-0.571423053741455,-0.8181312084198,-0.064319871366024,-0.71240097284317,0.160949900746346,-0.683066725730896,-0.625710725784302,0.779444754123688,-0.0308564864099026,-0.467409163713455,0.16415111720562,0.868667483329773,-0.639971137046814,0.767763614654541,0.0312410965561867,-0.640944719314575,0.766949713230133,0.0312730185687542,-0.306961715221405,0.250083565711975,0.918277144432068,-0.0379443280398846,-0.0835816338658333,0.995778262615204,-0.322515249252319,0.242382287979126,0.915005326271057,-0.0969714745879173,-0.115593045949936,0.98855185508728,-0.0458653420209885,-0.190222144126892,0.98066920042038,-0.0237946640700102,0.00761964498087764,0.999687850475311,-0.999075055122375,-0.0176863390952349,0.0391943976283073,-0.0308903716504574,0.00749023631215096,0.999494791030884,-0.0132922772318125,0.221239626407623,0.975128889083862,0.119564555585384,0.0362248718738556,0.992165327072144,0.0414933450520039,0.146237730979919,0.988378882408142,-0.023908818140626,0.0125040430575609,0.999635934829712,-0.0305094420909882,0.0123135326430202,0.999458611011505,
- 0.0324760936200619,0.0141080040484667,0.999372959136963,0.0375699922442436,0.0877388715744019,0.995434761047363,0.0920620188117027,0.016754474490881,0.995612382888794,0.610871195793152,-0.790821492671967,0.0379208587110043,-0.0235778950154781,-0.00158981012646109,0.999720811843872,0.0313150435686111,-0.00233518448658288,0.999506831169128,0.0315171480178833,-0.00233791838400066,0.999500572681427,0.999225378036499,-0.0228885542601347,0.0320123359560966,0.0314433500170708,0.00235268659889698,0.999502778053284,0.0316465981304646,0.0023479915689677,0.999496459960938,0.0600145533680916,-0.0951866805553436,0.993648707866669,-0.0190868582576513,-0.176165238022804,0.984175562858582,0.0331751443445683,-0.122890263795853,0.991865694522858,0.0312258154153824,0.0159314572811127,0.999385416507721,0.999309778213501,-0.0189975798130035,0.0319230817258358,0.999328553676605,-0.0190078411251307,0.0313252471387386,0.0593990199267864,-0.0828801020979881,0.994787812232971,0.0329786129295826,-0.106640696525574,0.99375057220459,0.743202567100525,0.668451905250549,0.0286713596433401,0.774244725704193,0.626971006393433,-0.0863277912139893,0.0254359934478998,0.0444557145237923,-0.998687505722046,0.774476945400238,0.627087116241455,-0.08334980905056,0.0170114208012819,0.0554771013557911,-0.998315095901489,0.784260094165802,0.614355564117432,-0.0866220518946648,0.011059932410717,0.0508567169308662,-0.998644709587097,0.996203064918518,-0.0396856926381588,-0.0774889066815376,0.99755722284317,-0.0376220196485519,-0.058858148753643,0.134234026074409,-0.115405760705471,-0.984206676483154,0.994180679321289,-0.0944082140922546,-0.0518835037946701,0.152312248945236,-0.415916711091995,-0.896556913852692,0.344588071107864,-0.406813770532608,-0.84602689743042,0.945959091186523,0.309469282627106,-0.0969024747610092,0.937139093875885,0.303729087114334,-0.171810746192932,0.0260991957038641,-0.0289881154894829,-0.999238967895508,0.0175244603306055,0.0422010906040668,-0.998955488204956,-0.0257894173264503,0.00733747519552708,-0.99964052438736,0.0234932638704777,0.0469985976815224,-0.998618721961975,
- 0.0188907627016306,-0.00577653432264924,-0.99980491399765,0.0184798743575811,-0.0059110289439559,-0.999811828136444,0.936910510063171,0.304426044225693,-0.171824350953102,0.66754013299942,0.744088411331177,-0.0268838498741388,-0.167925924062729,0.504127383232117,-0.847146034240723,0.606433212757111,0.780234932899475,-0.1532062292099,0.207438349723816,-0.215628609061241,-0.954187512397766,0.0787568017840385,-0.189301550388336,-0.978755533695221,0.0104372007772326,-0.174082607030869,-0.984675765037537,-0.0769997090101242,0.257887661457062,-0.963101863861084,0.802891969680786,0.595370411872864,-0.0299758911132813,-0.00394790340214968,0.307408154010773,-0.951569557189941,0.129133000969887,-0.186125889420509,-0.974002957344055,0.207767575979233,-0.21608193218708,-0.954013228416443,0.00071805709740147,-0.135055720806122,-0.990837752819061,-0.033625140786171,0.0172651018947363,-0.999285459518433,0.0101164467632771,0.0521193519234657,-0.998589634895325,-0.0267504490911961,0.0227521359920502,-0.999383211135864,0.0185472704470158,-0.0048254020512104,-0.999816417694092,-0.0340597555041313,-0.0216370690613985,-0.999185562133789,0.0181619189679623,-0.00494866585358977,-0.999822795391083,0.0172409620136023,-0.00216145743615925,-0.999849021434784,-0.0347655452787876,-0.0196225941181183,-0.999202847480774,-0.02824966609478,-0.0174362063407898,-0.999448835849762,0.00542445806786418,0.22927862405777,-0.973345696926117,-0.0913742706179619,0.143761649727821,-0.985384881496429,-0.0491034016013145,0.181572258472443,-0.982150912284851,0.0425274968147278,-0.30137050151825,-0.952558279037476,-0.761634469032288,0.647529006004334,-0.0248869564384222,0.401949942111969,-0.549100518226624,-0.732751667499542,-0.0272571444511414,-0.0214986652135849,-0.999397277832031,-0.0333908945322037,-0.0235456526279449,-0.999164998531342,-0.947537839412689,-0.317155838012695,-0.0398019291460514,-0.033625140786171,0.0172651018947363,-0.999285459518433,-0.0267504490911961,0.0227521359920502,-0.999383211135864,-0.782081186771393,-0.622153759002686,-0.0356894433498383,
- 0.9990593791008,0.0295918192714453,-0.0316994450986385,0.00781364552676678,-0.00254446524195373,-0.999966323375702,0.03193274512887,-0.00182661297731102,-0.999488353729248,0.00819991901516914,0.0138397179543972,-0.999870598316193,0.999037802219391,0.0303026288747787,-0.0317043624818325,0.981467485427856,0.031915258616209,-0.188952401280403,0.981887459754944,0.016099464148283,-0.188779979944229,0.998657941818237,0.0206301566213369,-0.0475055687129498,0.00717878714203835,-0.0292798485606909,-0.999545574188232,-0.0350647419691086,-0.0171165391802788,-0.99923849105835,0.00479311728850007,-0.12769216299057,-0.991802334785461,0.336750268936157,-0.94159334897995,-0.00108121801167727,0.00779159180819988,-0.00347718456760049,-0.999963641166687,-0.0233354009687901,-0.00444475095719099,-0.999717891216278,0.0320319794118404,-0.00272118556313217,-0.999483227729797,-0.0325705446302891,0.146292969584465,-0.988704979419708,-0.0855907946825027,0.126900389790535,-0.988215804100037,0.0132486410439014,0.162646651268005,-0.986595511436462,-0.0738420784473419,-0.0186094716191292,-0.997096359729767,-0.0423916764557362,-0.080930732190609,-0.995817840099335,0.00372182112187147,-0.170871675014496,-0.985286355018616,-0.0467830076813698,-0.212177738547325,-0.976110637187958,-0.344343394041061,-0.0283350311219692,-0.938416123390198,-0.399105787277222,0.00908784661442041,-0.916859865188599,-0.0225766319781542,-0.0164496824145317,-0.999609768390656,0.00751406047493219,-0.0151902362704277,-0.999856472015381,-0.0312115661799908,-0.0168085005134344,-0.999371528625488,0.00756224570795894,-0.0131599046289921,-0.999884903430939,-0.0398326106369495,-0.0126217100769281,-0.999126672744751,-0.0312777757644653,-0.012721030972898,-0.999429881572723,-0.0464740842580795,-0.202201083302498,-0.978240787982941,-0.562919974327087,0.00179408304393291,-0.826509475708008,-0.951782882213593,0.302714377641678,-0.0497332774102688,-0.998882949352264,-0.00329272774979472,-0.0471394620835781,-0.0312579683959484,-0.01394725125283,-0.999414026737213,-0.0398847423493862,-0.0139657780528069,-0.999106705188751,
- -0.956199884414673,0.289451211690903,0.0435873568058014,-0.970533132553101,0.235814988613129,-0.0495655797421932,-0.902444839477539,-0.0182560961693525,-0.430418282747269,-0.031448271125555,-0.00204142392612994,-0.999503314495087,-0.998710751533508,-0.0194823537021875,-0.0468763709068298,-0.999036312103271,-0.01947789080441,-0.039332140237093,-0.0311588365584612,-0.0200410839170218,-0.999313592910767,-0.99850982427597,-0.0378542542457581,-0.039311408996582,-0.0223694052547216,-0.0197189748287201,-0.999555289745331,-0.998750448226929,-0.0172250494360924,-0.0469137988984585,-0.99829113483429,-0.0180174540728331,0.0555914007127285,-0.999076545238495,-0.0172899886965752,-0.0393337197601795,-0.997451901435852,-0.0437467470765114,0.0563555136322975,-0.997196018695831,-0.0329943969845772,0.0671682581305504,-0.988737642765045,0.0433281436562538,0.143250599503517,-0.965027630329132,-0.259380280971527,-0.0379932150244713,-0.962293922901154,-0.219454780220985,-0.16071780025959,-0.0410329550504684,0.293210446834564,-0.955167055130005,-0.037724781781435,0.234623089432716,-0.971354126930237,-0.912838220596313,-0.36922213435173,-0.174360185861588,-0.111155971884727,0.201741978526115,-0.973110854625702,-0.998914003372192,-0.0249846037477255,-0.0393273234367371,-0.99815309047699,-0.0240749008953571,0.0557745806872845,-0.999423265457153,-0.0244075451046228,0.023608423769474,-0.914635896682739,-0.402671992778778,-0.0360092855989933,-0.909785091876984,-0.414522856473923,0.0214909873902798,-0.9132279753685,-0.368291795253754,-0.174286678433418,-0.983379900455475,-0.172407671809196,-0.0569171197712421,0.0789562165737152,-0.337266832590103,-0.938092291355133,-0.965076446533203,-0.207806378602982,-0.159512042999268,-0.980818867683411,0.188104495406151,-0.0510986037552357,-0.981744408607483,0.153238728642464,-0.112676776945591,-0.973243594169617,0.228622734546661,0.0229900069534779,-0.954703390598297,-0.292005836963654,-0.057219959795475,-0.955548822879791,-0.292117983102798,-0.0399201698601246,-0.0349467918276787,-0.0191051810979843,-0.99920654296875,
- -0.954436957836151,-0.297596454620361,0.0220603402704,-0.954065680503845,-0.294083029031754,-0.0572175271809101,-0.954420626163483,-0.29761216044426,0.0225453712046146,-0.955917239189148,-0.288006544113159,-0.0572238825261593,-0.957841813564301,-0.286464214324951,0.0218509938567877,-0.956850528717041,-0.287822961807251,-0.0399376042187214,-0.0233360510319471,-0.00394239975139499,0.999719977378845,-0.999626755714417,-0.0137444688007236,0.0236132312566042,-0.998364806175232,-0.0138426693156362,0.055463969707489,-0.996288478374481,0.0680028647184372,0.0527717173099518,-0.998303353786469,0.0463308058679104,0.0352692678570747,-0.0270818565040827,0.777793407440186,0.62793630361557,-0.0248876623809338,0.0180165953934193,0.999527871608734,-0.99848598241806,0.00195842096582055,0.054972980171442,-0.0238951854407787,0.0180160701274872,0.999552130699158,-0.584152042865753,0.00842606648802757,0.811600565910339,0.00292196148075163,0.538968503475189,0.84232097864151,-0.028354013338685,0.519272327423096,0.854138374328613,0.510936081409454,-0.0444175414741039,0.858470439910889,0.547591209411621,-0.00814097281545401,0.836706459522247,0.0343942865729332,-0.407651335000992,0.912489712238312,0.0404075495898724,0.0471347384154797,0.998070955276489,-0.024333106353879,0.0472740605473518,0.998585522174835,0.0221035182476044,0.0471942164003849,0.998641192913055,0.232670456171036,0.97254604101181,-0.00432338146492839,0.0237336438149214,-0.00375978602096438,0.999711334705353,0.0316715352237225,0.0294715166091919,0.999063789844513,0.600183427333832,0.799707174301147,0.0157613046467304,0.823386013507843,-0.0340255498886108,0.566460728645325,0.833399593830109,0.00863164477050304,0.552603542804718,0.0221035182476044,0.0471942164003849,0.998641192913055,0.997465550899506,0.00159292342141271,0.0711337476968765,0.0404075495898724,0.0471347384154797,0.998070955276489,0.997234702110291,0.0267987567931414,0.0693168491125107,0.0206976216286421,0.089667983353138,0.99575662612915,0.998596847057343,0.0248077381402254,0.0467871278524399,0.0619359686970711,0.087810143828392,0.994209885597229,
- -0.0249158032238483,0.0885078907012939,0.995763778686523,0.0412631630897522,0.0880367681384087,0.995262205600739,0.929542183876038,-0.357079178094864,0.0919015184044838,0.059673011302948,0.216746598482132,0.97440242767334,0.0436103455722332,0.223162233829498,0.97380530834198,-0.0238951854407787,0.0180160701274872,0.999552130699158,0.0627170503139496,0.0179017633199692,0.997870862483978,-0.0248876623809338,0.0180165953934193,0.999527871608734,0.950101435184479,0.307950675487518,-0.0497362986207008,0.971586644649506,0.232885584235191,0.0422342382371426,0.952663898468018,-0.00303366640582681,0.304010421037674,0.998771369457245,0.014414781704545,-0.0474130511283875,0.997355699539185,0.0202657841145992,0.0697921365499496,0.998717129230499,0.0191403236240149,0.0468820668756962,0.994553446769714,-0.0196918398141861,-0.102351367473602,0.989714980125427,0.0367881171405315,-0.138242021203041,0.993126034736633,-0.107962474226952,-0.0452191419899464,0.997305572032928,-0.0131332809105515,0.0721741989254951,0.998721361160278,-0.0189039967954159,-0.0468859821557999,0.999336838722229,-0.0150504512712359,0.0331583581864834,0.0542668513953686,0.40604242682457,0.912241578102112,0.971422553062439,-0.221534296870232,0.0852111950516701,0.970301806926727,-0.235958203673363,0.0532754436135292,0.999116718769073,0.0305974818766117,0.028803950175643,0.99847811460495,0.0278349947184324,-0.0476105362176895,0.999107122421265,0.0284412316977978,-0.031243996694684,0.991307735443115,0.128046974539757,-0.0302140489220619,0.991129994392395,0.11428140848875,0.0678325071930885,0.99243301153183,0.121153503656387,0.019967382773757,0.0511129945516586,-0.686164855957031,0.72564822435379,0.86533385515213,0.500787973403931,-0.0202231779694557,0.901741683483124,0.42538058757782,0.076899342238903,0.999231159687042,0.0231332927942276,-0.0316540002822876,0.997723162174225,0.0216553639620543,0.063871793448925,0.999242722988129,0.0231280531734228,-0.0312901027500629,0.0546321980655193,-0.14430658519268,0.988023817539215,0.0633519291877747,-0.133245155215263,0.989056289196014,
- 0.617584109306335,0.782835304737091,0.0758872851729393,0.0499727912247181,-0.0517262145876884,0.997410237789154,-0.0200373530387878,-0.0500984899699688,0.998543322086334,0.0631903111934662,-0.0520056262612343,0.996645629405975,0.995557188987732,0.0765182822942734,0.0548732280731201,0.99487841129303,0.0763184875249863,0.0662751048803329,0.996462523937225,0.0777095854282379,-0.0319965332746506,0.994261741638184,0.0918717682361603,0.0548018254339695,0.046172346919775,0.0183853562921286,0.998764276504517,0.993509650230408,0.0919747352600098,0.0669285506010056,0.628853142261505,0.776751279830933,0.0346611961722374,0.611670553684235,0.790701925754547,-0.0254912152886391,0.609313309192657,0.792238056659698,-0.0331075116991997,0.948422908782959,0.315094023942947,-0.0347842387855053,0.946885168552399,0.317308664321899,0.0521905198693275,0.948527812957764,0.315283626317978,-0.0298538114875555,-0.0231101904064417,-0.00712541909888387,0.999707639217377,0.0475028194487095,-0.00567532982677221,0.99885505437851,0.039476715028286,-0.00584182515740395,0.999203443527222,0.0468742102384567,0.00575434323400259,0.998884260654449,0.998406648635864,0.0124894743785262,0.0550302863121033,0.0392054244875908,0.00566232018172741,0.999215126037598,0.00746703613549471,0.0623691529035568,0.998025238513947,-0.0257949475198984,0.0309325214475393,0.999188542366028,0.037050873041153,0.0902320146560669,0.995231330394745,0.639922976493835,0.767629146575928,0.035271342843771,0.0363846644759178,-0.00519416946917772,0.999324381351471,0.0393770895898342,-0.00159152783453465,0.999223172664642,-0.0156331621110439,-0.110644489526749,0.993737161159515,0.0476384311914444,-0.0316047668457031,0.998364508152008,-0.0106447786092758,-0.104446962475777,0.994473576545715,0.00191599479876459,-0.137140050530434,0.990549802780151,-0.615419030189514,-0.788066029548645,0.0145374573767185,-0.012351886369288,-0.15498124063015,0.987840175628662,0.934064745903015,0.353373110294342,0.0514838844537735,0.0230608601123095,0.00515936827287078,0.999720752239227,0.0307257231324911,0.00806143321096897,0.999495387077332,
- 0.0230608601123095,0.00515936827287078,0.999720752239227,-0.0428778752684593,-0.0197964049875736,0.998884201049805,0.0307257231324911,0.00806143321096897,0.999495387077332,-0.0376885980367661,-0.0334983170032501,0.998727917671204,-0.0483731590211391,-0.0366233959794044,0.998157680034637,-0.959094166755676,-0.282179147005081,0.0226557701826096,-0.0387528799474239,-0.0306904874742031,0.998777389526367,0.0276378635317087,-0.0103646172210574,0.999564349651337,-0.0489883348345757,-0.033816035836935,0.998226702213287,-0.953521966934204,-0.300511240959167,0.0221147853881121,-0.953506827354431,-0.300528526306152,0.0225237850099802,-0.0417495369911194,-0.0667164623737335,0.996898233890533,0.931513786315918,0.360063970088959,0.0513432808220387,0.931206107139587,0.35958144068718,0.0596361346542835,0.033605445176363,-0.0306379981338978,0.998965501785278,0.934974491596222,0.350951761007309,0.0515340268611908,0.935842931270599,0.350489169359207,-0.0368157401680946,0.934492349624634,0.350848734378815,0.0602434873580933,-0.0994313955307007,0.204161912202835,0.973874449729919,-0.0208663064986467,0.153046816587448,0.987998723983765,0.0604054853320122,0.0988568365573883,0.993266642093658,0.0220440216362476,0.00860526319593191,0.99972003698349,0.632535398006439,-0.770308673381805,0.0807690173387527,0.0167314130812883,0.0151000628247857,0.999746024608612,-0.988457202911377,0.151025235652924,0.0119987316429615,-0.0946268886327744,0.180777981877327,0.978961229324341,-0.192641094326973,0.192693889141083,0.96216344833374,0.0098956935107708,0.00200447998940945,0.999949097633362,-0.0532097481191158,0.0161259807646275,0.998453140258789,-0.0601916797459126,0.017687289044261,0.998030185699463,0.980194211006165,-0.197821646928787,0.009275714866817,0.975207567214966,-0.204109087586403,0.0854969918727875,0.980459749698639,-0.196696251630783,-0.00304999575018883,0.282774776220322,0.528013169765472,0.800774991512299,0.776139557361603,-0.624616026878357,0.0863847211003304,0.743470251560211,-0.668676614761353,0.0111192669719458,0.992266535758972,-0.123813912272453,0.0087880352512002,
- 0.991949081420898,-0.126406371593475,-0.00765863992273808,0.987965822219849,-0.13636226952076,-0.0729987844824791,0.774476945400238,0.627087116241455,-0.08334980905056,0.778174877166748,0.628046631813049,0.00118211191147566,0.774244725704193,0.626971006393433,-0.0863277912139893,0.289742290973663,-0.957054376602173,0.00981729663908482,-0.60446435213089,0.718591213226318,-0.343874275684357,0.395291388034821,0.748048365116119,0.533074498176575,-0.404216647148132,-0.782212913036346,0.474080085754395,0.300144910812378,-0.329990267753601,0.89499694108963,0.259922057390213,-0.370867967605591,0.891570270061493,0.803924858570099,0.588896751403809,-0.0830998122692108,0.808003485202789,0.588575661182404,0.0266278274357319,0.807932734489441,0.589272201061249,0.00172173650935292,0.740836918354034,0.671684801578522,0.000544504728168249,0.74701988697052,0.664234578609467,0.027454674243927,0.232178181409836,-0.246053725481033,0.941037118434906,0.802232921123505,0.596412837505341,0.0267220810055733,0.801337540149689,0.592408180236816,-0.0831303745508194,0.801859319210052,0.59642082452774,0.0361088402569294,0.898311495780945,0.438235640525818,0.0314000099897385,0.911336064338684,0.403880923986435,-0.0796681493520737,0.902403473854065,0.325769245624542,-0.282032787799835,0.913468718528748,0.269512325525284,-0.304857641458511,0.997467160224915,0.0625420138239861,-0.0338785760104656,0.999586284160614,0.0234449934214354,0.0166645459830761,0.784735560417175,0.619243025779724,0.0269858278334141,0.0289030261337757,-0.0124881537631154,0.999504268169403,0.0361646041274071,-0.00674273818731308,0.999323129653931,0.802451252937317,0.596119403839111,0.0267185904085636,0.802012026309967,0.596215784549713,0.0361031703650951,-0.00894189439713955,0.0382963940501213,0.999226450920105,0.032510619610548,-0.00231647677719593,0.999468684196472,-0.00520987343043089,-0.0324601456522942,0.999459505081177,-0.0108679281547666,-0.0369759909808636,0.99925708770752,0.0354510992765427,-0.0212858226150274,0.999144792556763,0.00429656868800521,-0.0451994203031063,0.998968720436096,
- 0.0432291477918625,-0.0153038594871759,0.998947978019714,-0.77957421541214,-0.624379515647888,0.0491353906691074,-0.0108679281547666,-0.0369759909808636,0.99925708770752,-0.00520987343043089,-0.0324601456522942,0.999459505081177,-0.808121085166931,-0.587011098861694,0.0485633015632629,-0.808533310890198,-0.58784806728363,0.0266189835965633,-0.0378830246627331,-0.00312264962121844,0.999277293682098,-0.823240995407104,-0.565642297267914,0.0481982305645943,-0.823064744472504,-0.566749811172485,-0.0368667207658291,-0.823765277862549,-0.566318511962891,0.0263502839952707,0.0616383291780949,-0.121829152107239,0.990635395050049,0.0999602153897285,-0.108128197491169,0.989098787307739,0.131658181548119,-0.0966140627861023,0.986575841903687,0.164346605539322,-0.115978442132473,0.979560732841492,-0.999501645565033,0.00388115760870278,0.0313275642693043,0.0576955229043961,-0.116571806371212,0.991505026817322,0.124452471733093,-0.141182780265808,0.982129812240601,0.874117970466614,0.484601974487305,0.0328444540500641,0.202394664287567,-0.0957266539335251,0.974614262580872,0.124452471733093,-0.141182780265808,0.982129812240601,0.202394664287567,-0.0957266539335251,0.974614262580872,0.166181594133377,-0.117064647376537,0.979121863842011,0.571775078773499,0.81887024641037,-0.0502476468682289,0.572597801685333,0.81866455078125,0.043819285929203,0.572642683982849,0.818766534328461,0.0412528961896896,0.585442304611206,0.809522688388824,0.0439359024167061,0.00054127344628796,0.0271850153803825,0.999630331993103,0.585548996925354,0.809594750404358,0.0410950519144535,0.507398366928101,0.860405743122101,-0.0474239401519299,0.506326138973236,0.861265659332275,0.0430737510323524,0.507369875907898,0.860285341739655,-0.0498496517539024,-0.358050942420959,0.933526158332825,0.0181252025067806,-0.35290515422821,0.934241056442261,-0.0514936000108719,-0.356120258569717,0.934377074241638,-0.0108555136248469,0.029394781216979,0.00971106998622417,0.999520719051361,0.582597494125366,0.811573803424835,0.0439109057188034,0.0338880456984043,0.0159878935664892,0.999297857284546,
- 0.0457449369132519,-0.0104005364701152,0.998899102210999,0.0507902950048447,-0.00326649285852909,0.998704016208649,0.0550834760069847,0.00280850566923618,0.998477816581726,0.606493771076202,0.793864011764526,0.0441057533025742,-0.125112652778625,0.0979649424552917,0.987294137477875,-0.116610214114189,0.10890407115221,0.987188935279846,0.0242173187434673,0.0128488931804895,0.999624192714691,0.0200429912656546,0.00594990281388164,0.999781489372253,0.00391917023807764,-0.0206816773861647,0.99977844953537,-0.551585614681244,0.834115028381348,-0.0023307295050472,-0.551021337509155,0.833226501941681,0.0459258705377579,-0.551569104194641,0.834081768989563,0.00889803841710091,0.192863628268242,0.981179535388947,-0.00950997229665518,0.192870616912842,0.979737162590027,0.05400126054883,0.192702934145927,0.980821490287781,-0.0292383935302496,-0.0406965985894203,0.0445208139717579,0.998179197311401,0.889377415180206,0.455208122730255,0.0423491485416889,0.0197499580681324,-0.0551833659410477,-0.998280942440033,0.186967357993126,0.980877280235291,0.0540641024708748,0.18764129281044,0.982187688350677,-0.0099038714542985,0.187094703316689,0.981264352798462,0.0459983870387077,0.172819927334785,0.209816485643387,0.962346315383911,-0.829790413379669,0.558009445667267,-0.00856003072112799,0.478179901838303,-0.025261303409934,0.877898514270782,0.419802129268646,-0.0178370513021946,0.907440304756165,-0.362884432077408,0.931661903858185,0.0179142504930496,-0.349162667989731,0.935641944408417,0.0515708178281784,-0.0666855573654175,0.997101426124573,0.0366305448114872,-0.0249925833195448,0.999365448951721,-0.0253781862556934,-0.039952464401722,0.999196588993073,-0.00316900969482958,0.0276159308850765,0.937104463577271,0.347954839468002,-0.00346617354080081,0.935471534729004,0.353385001420975,0.832826256752014,0.551620781421661,0.0459887646138668,0.176787212491035,0.98275750875473,0.054167740046978,0.176553636789322,0.98323130607605,0.0456608198583126,0.0431799069046974,0.0330320596694946,0.998521149158478,-0.0266462881118059,-0.792089343070984,-0.609823286533356,
- 0.302519559860229,-0.01027961820364,0.95308780670166,-0.19513401389122,0.980289340019226,0.0309116262942553,0.234546825289726,0.970631659030914,0.0534993819892406,0.0433051027357578,0.0330118425190449,0.998516440391541,0.0418852381408215,0.0270526260137558,0.998756170272827,0.0926328375935555,0.0520641691982746,0.994338274002075,0.0558672249317169,-0.0413083583116531,0.997583329677582,0.0826859995722771,0.0266190432012081,0.996220111846924,0.148730129003525,-0.0565789081156254,0.987257897853851,0.101158648729324,-0.221366330981255,0.969929873943329,0.0215692743659019,-0.463345617055893,0.885915100574493,-0.00723410490900278,-0.663219392299652,0.748390078544617,0.760650217533112,-0.148015230894089,0.632062375545502,0.0265206657350063,-0.652754843235016,0.757104992866516,0.0518000163137913,0.0316382423043251,0.998156189918518,0.0404945462942123,-0.0343213528394699,0.998590230941772,0.0508492775261402,0.0260442588478327,0.99836665391922,-0.0136410389095545,-0.0305117797106504,0.99944132566452,-0.00443014688789845,0.0406753309071064,0.999162673950195,-0.0135374031960964,-0.0297086611390114,0.999467015266418,-0.067155122756958,-0.993929505348206,0.0871459469199181,0.563883543014526,-0.120875172317028,0.816960692405701,0.0108466036617756,-0.980803608894348,0.194696232676506,-0.0202534198760986,-0.030040105804801,0.999343514442444,-0.020117936655879,-0.0286006145179272,0.999388456344604,-0.0953885912895203,-0.991596877574921,0.0873885229229927,-0.0169361270964146,-0.336729496717453,0.941449105739594,-0.0148738920688629,-0.328197240829468,0.944492101669312,-0.208999052643776,-0.973979771137238,0.0876517817378044,-0.108940258622169,0.0436311475932598,0.993090271949768,0.00277961976826191,-0.0316771194338799,0.999494314193726,0.00330510875210166,-0.0320300571620464,0.999481439590454,0.217047318816185,0.00687210354954004,0.976136863231659,0.191392838954926,0.026089821010828,0.98116672039032,0.0613566152751446,0.120856449007988,0.990772008895874,-0.115321338176727,0.0917757973074913,0.989079475402832,-0.155062988400459,-0.195747569203377,-0.96831738948822,
- -0.852871894836426,-0.275458186864853,0.443545192480087,0.142081707715988,-0.0718417465686798,0.987244427204132,0.633487939834595,0.218251168727875,-0.742333829402924,0.0994793027639389,-0.081756480038166,0.991675317287445,-0.00784589722752571,-0.0136675983667374,0.999875843524933,0.00858632382005453,0.0132325366139412,0.999875664710999,-0.00786151178181171,-0.0136931585147977,0.999875426292419,-0.0103293396532536,-0.0361929908394814,0.9992915391922,-0.0189627148211002,-0.030132282525301,0.999366044998169,0.818407535552979,-0.574616014957428,-0.00507355527952313,0.338161826133728,-0.231954336166382,0.912054777145386,0.690988302230835,0.233904764056206,-0.683976471424103,-0.99625688791275,-0.0751193985342979,0.0427716597914696,-0.520309746265411,-0.851815760135651,0.0607279017567635,-0.00784589722752571,-0.0136675983667374,0.999875843524933,-0.00786151178181171,-0.0136931585147977,0.999875426292419,-0.0284648984670639,-0.0294524393975735,0.999160885810852,-0.119549162685871,-0.988961398601532,0.0875407382845879,-0.118957728147507,-0.99156129360199,0.0515287891030312,0.0363680347800255,-0.0400091409683228,0.998537302017212,-0.54375147819519,-0.837029993534088,0.0609522610902786,-0.544557869434357,-0.837224841117859,0.0501130372285843,-0.122078761458397,-0.988651156425476,0.0875537097454071,-0.124225378036499,-0.99105441570282,-0.0487777702510357,-0.122867569327354,-0.991077601909637,0.0516598671674728,-0.521675229072571,-0.85176694393158,-0.0484563149511814,-0.52132511138916,-0.851894497871399,0.0499588400125504,-0.520979106426239,-0.851405918598175,0.0607348904013634,0.0268411058932543,-0.997649013996124,-0.0630553737282753,0.0735676065087318,-0.993669271469116,0.0849073007702827,0.00219953269697726,-0.990195631980896,-0.139670327305794,-0.146161198616028,-0.985370278358459,0.0876487866044044,-0.146606743335724,-0.987309873104095,-0.061038363724947,-0.146691739559174,-0.987968564033508,-0.0489857830107212,0.0770432278513908,-0.995017230510712,-0.0632848888635635,0.00781608559191227,-0.868103682994843,-0.496321439743042,
- -0.133339881896973,-0.0013845656067133,-0.991069436073303,0.0137349860742688,-0.489007204771042,-0.872171640396118,-0.024832371622324,-0.459271013736725,-0.887949049472809,-0.53223991394043,0.069165974855423,-0.843763530254364,-0.0140542816370726,-0.021630896255374,-0.999667286872864,-0.0153209529817104,-0.0289186667650938,-0.999464392662048,-0.171804875135422,-0.983266294002533,-0.0605852380394936,-0.146606743335724,-0.987309873104095,-0.061038363724947,-0.00563966017216444,-0.0308563243597746,-0.999508023262024,-0.146691739559174,-0.987968564033508,-0.0489857830107212,0.00677572889253497,-0.0251301899552345,-0.999661207199097,-0.0151959089562297,0.0231180060654879,-0.999617278575897,-0.0169499553740025,0.0269710123538971,-0.999492526054382,-0.0116433082148433,0.0260394588112831,-0.999593138694763,-0.020365746691823,-0.0279077515006065,-0.999403119087219,-0.0192132014781237,-0.0207625757902861,-0.999599814414978,-0.00347014144062996,0.448835700750351,-0.893607556819916,-0.626915812492371,0.776554226875305,-0.0627709031105042,0.423021823167801,-0.0527418404817581,-0.904583334922791,0.18748676776886,0.982217133045197,-0.00991551764309406,0.184034988284111,0.965693771839142,-0.183212637901306,0.00277093052864075,0.0235055927187204,-0.9997199177742,-0.0125213675200939,0.0253899991512299,-0.999599277973175,-0.0238210279494524,-0.0272148586809635,-0.999345779418945,-0.0123546393588185,0.0261643677949905,-0.999581336975098,-0.00780000211670995,0.0247919596731663,-0.999662280082703,-0.00768456421792507,0.0253440644592047,-0.999649286270142,0.198609128594399,0.962702393531799,-0.183735489845276,-0.00178688624873757,-0.0316265635192394,-0.999498188495636,-0.000906187109649181,-0.0346294641494751,-0.999399840831757,0.280457466840744,-0.95899510383606,-0.0408902019262314,-0.00178688624873757,-0.0316265635192394,-0.999498188495636,-0.018717709928751,0.0261740498244762,-0.999482214450836,-0.000906187109649181,-0.0346294641494751,-0.999399840831757,0.0073316334746778,0.022777933627367,-0.999713778495789,0.00728943338617682,0.0228770207613707,-0.999711811542511,
- -0.386181354522705,0.912806272506714,-0.132848858833313,0.0399476587772369,0.00602289382368326,-0.999183714389801,0.0737951919436455,-0.0705074295401573,-0.994777858257294,0.0339657850563526,0.019478153437376,-0.999233245849609,0.0314973071217537,0.0103673133999109,-0.999450087547302,-0.30567479133606,0.941237449645996,-0.143649220466614,-0.311377942562103,0.948846042156219,-0.0522986017167568,-0.0244800001382828,-0.0232571810483933,-0.999429821968079,-0.512240350246429,-0.857757449150085,-0.0431495346128941,-0.512155115604401,-0.857518076896667,-0.0485780984163284,-0.511262178421021,-0.857976078987122,0.0498813316226006,-0.512378096580505,-0.857385098934174,-0.0485753268003464,-0.512446045875549,-0.857634544372559,-0.043152142316103,-0.806606352329254,-0.589967250823975,-0.0364015661180019,-0.805740177631378,-0.590270519256592,0.0486166402697563,-0.80640035867691,-0.589733004570007,-0.0439727008342743,-0.80173921585083,-0.596572935581207,-0.0362619645893574,-0.801580250263214,-0.596264064311981,-0.0440265908837318,-0.0247712582349777,0.00604779645800591,-0.99967485666275,-0.525704622268677,-0.849563658237457,-0.0433155335485935,-0.000220260553760454,-0.034960001707077,-0.999388694763184,-0.00122536334674805,-0.036579392850399,-0.999330043792725,-0.885417997837067,-0.462851703166962,-0.0424651838839054,-0.334438174962997,0.177943274378777,-0.925466001033783,-0.215862482786179,0.249343618750572,-0.944050371646881,0.0292903650552034,0.0115015329793096,-0.999504804611206,-0.000914981472305954,-0.036776389926672,-0.999323129653931,0.000120042823255062,-0.0351239815354347,-0.99938303232193,-0.163161590695381,0.181985035538673,-0.969669938087463,-0.263435810804367,0.131692051887512,-0.955645799636841,-0.20060758292675,0.163597911596298,-0.965915322303772,0.0201713163405657,0.0245451498776674,-0.999495208263397,-0.0120913898572326,-0.0296797249466181,-0.99948638677597,0.0163628105074167,0.0181421395391226,-0.999701619148254,0.507440686225891,0.86038076877594,-0.0474225617945194,0.0219648648053408,0.0234049372375011,-0.999484777450562,
- 0.0182836633175612,0.0171557925641537,-0.999685645103455,-0.0115856565535069,0.0927775055170059,-0.995619535446167,-0.0879217460751534,0.0861694663763046,-0.992393374443054,-0.0785021409392357,0.0870147868990898,-0.993109226226807,0.0286929272115231,0.0191261880099773,-0.999405324459076,0.507398366928101,0.860405743122101,-0.0474239401519299,0.507369875907898,0.860285341739655,-0.0498496517539024,0.000625524669885635,0.0768710002303123,-0.997040867805481,-0.052388608455658,0.0705323070287704,-0.996132850646973,0.992111563682556,0.120085075497627,-0.0359753668308258,0.0193228777498007,0.99551647901535,-0.0925945490598679,-0.0434039123356342,0.989092826843262,-0.140753358602524,0.0601751245558262,0.996330440044403,-0.0608656890690327,-0.155450105667114,0.985570430755615,-0.0669792369008064,-0.0416047051548958,0.99803638458252,0.0468237288296223,0.0117563717067242,0.994980096817017,0.099380150437355,-0.853645205497742,0.520548164844513,0.0178712103515863,0.0191275365650654,0.824853360652924,0.565023243427277,-0.00888043455779552,0.830068707466125,0.557590544223785,-0.208396330475807,0.975676119327545,-0.068023569881916,-0.21596947312355,0.97469836473465,0.0576230064034462,-0.215331166982651,0.97553151845932,0.0443925857543945,-0.97882080078125,0.204709783196449,0.00196407898329198,0.0016882698982954,0.0326220691204071,0.999466359615326,-0.0221198108047247,0.0375859141349792,0.999048590660095,-0.222474753856659,0.973261415958405,0.057158961892128,-0.126406162977219,0.00345578603446484,0.99197256565094,-0.221063762903214,0.974253356456757,0.0442870557308197,0.0342136286199093,0.530137836933136,0.84722101688385,0.00230559334158897,0.556905627250671,0.830572605133057,0.409560918807983,0.121647171676159,0.904136002063751,-0.244104400277138,0.968154191970825,0.0555925071239471,-0.238241866230965,0.968785107135773,-0.0685295090079308,-0.243373274803162,0.969317734241486,0.034535638988018,-0.256432145833969,0.965987980365753,0.0333142429590225,-0.252434968948364,0.965168535709381,-0.0687487199902534,-0.252704650163651,0.965456128120422,-0.0635202974081039,
- -0.969964981079102,0.23468978703022,-0.0639430209994316,-0.969253778457642,0.23280331492424,-0.0796858444809914,-0.970472574234009,0.241145446896553,-0.00564996525645256,-0.0634883418679237,0.0178517568856478,0.997822880744934,-0.186524450778961,0.980635821819305,0.0596829354763031,-0.068261593580246,0.0438014641404152,0.996705532073975,-0.111638069152832,0.992670357227325,0.0462881848216057,-0.560787916183472,-0.0524259880185127,0.82629805803299,-0.123472228646278,0.99029016494751,0.0638754367828369,-0.0640073344111443,0.0206622444093227,0.997735500335693,-0.0634883418679237,0.0178517568856478,0.997822880744934,-0.068261593580246,0.0438014641404152,0.996705532073975,0.0353944599628448,0.997675240039825,0.0582354851067066,-0.427153289318085,-0.0462831780314446,0.902993857860565,-0.426355987787247,-0.0244019851088524,0.904226243495941,-0.0100131807848811,-0.580121994018555,0.814468145370483,-0.552342176437378,-0.0980180948972702,0.827834844589233,-0.525044739246368,-0.132119089365005,0.840757131576538,-0.0791921094059944,0.0142713729292154,0.996757328510284,-0.0799686685204506,0.0178179368376732,0.996638178825378,-0.0690414011478424,-0.0316724255681038,0.997110903263092,-0.446494996547699,0.893616437911987,-0.0457387380301952,-0.310522586107254,-0.847365856170654,0.43075156211853,-0.520831763744354,0.853637635707855,0.00608845800161362,0.706291258335114,0.146470576524735,0.692603051662445,-0.978043377399445,0.197455689311028,-0.0666527301073074,-0.254399031400681,0.444398283958435,0.85894775390625,0.453080296516418,-0.889689922332764,0.0563028454780579,-0.0239723846316338,-0.831125736236572,0.555567800998688,-0.608272194862366,-0.149923413991928,0.779440820217133,0.437681019306183,-0.897373378276825,0.0561808235943317,0.0484607666730881,-0.920251786708832,0.388314664363861,-0.0283729117363691,-0.897065997123718,0.440984934568405,-0.0205363351851702,-0.020759392529726,0.999573647975922,-0.0296127032488585,0.0267626661807299,0.999203145503998,-0.0191409774124622,-0.0280386675149202,0.999423563480377,-0.0191409774124622,-0.0280386675149202,0.999423563480377,
- 0.186291456222534,-0.981105923652649,0.0522189103066921,-0.0205363351851702,-0.020759392529726,0.999573647975922,0.103848598897457,0.0500639900565147,0.993332326412201,0.157865822315216,0.939677536487579,0.303454369306564,0.0965816602110863,-0.00460807932540774,0.995314419269562,-0.180826798081398,-0.982951641082764,0.0332822650671005,-0.165655270218849,-0.986043274402618,0.0166428368538618,-0.689510941505432,-0.098391979932785,0.717560946941376,0.225139126181602,-0.972881078720093,0.0530538856983185,0.00413796491920948,-0.0233524758368731,0.99971878528595,0.225436806678772,-0.973999381065369,0.022438945248723,-0.061840858310461,-0.368100345134735,0.927727282047272,0.800712108612061,-0.598047196865082,0.0346373468637466,-0.410480529069901,-0.104673683643341,0.905841708183289,-0.186898827552795,-0.981544554233551,0.0404856093227863,-0.131036996841431,-0.988824188709259,-0.0711059346795082,0.0254464149475098,-0.933168649673462,-0.358537167310715,0.243281632661819,0.236601382493973,0.940656065940857,0.056981023401022,0.339172780513763,0.9389967918396,-0.24550287425518,0.470641613006592,0.847481429576874,0.265416949987412,-0.962629437446594,0.0538381487131119,0.263597905635834,-0.963054418563843,-0.0551573149859905,0.263239949941635,-0.962460994720459,-0.0661331415176392,0.22524106502533,-0.972727477550507,-0.0553884506225586,0.225139126181602,-0.972881078720093,0.0530538856983185,0.225436806678772,-0.973999381065369,0.022438945248723,0.211510136723518,0.0128233563154936,-0.977291762828827,0.00305299321189523,-0.670830011367798,-0.741604924201965,-0.210477441549301,-0.975034892559052,-0.0707542598247528,0.202718123793602,0.0109190829098225,-0.97917628288269,0.0375778637826443,-0.322483658790588,-0.945828855037689,-0.0124310646206141,-0.412829726934433,-0.910723388195038,-0.00771800894290209,-0.0365086123347282,-0.999303579330444,0.263239949941635,-0.962460994720459,-0.0661331415176392,0.263597905635834,-0.963054418563843,-0.0551573149859905,0.257286429405212,-0.964058578014374,-0.0662932395935059,0.0179431829601526,-0.0268107168376446,-0.999479532241821,
- 0.0183627605438232,-0.0283893644809723,-0.999428272247314,0.0201782807707787,0.071510910987854,-0.997235774993896,-0.0904882848262787,-0.0510568283498287,-0.994587898254395,-0.0554156824946404,-0.0120663186535239,-0.998390555381775,0.0188476666808128,0.0985352620482445,-0.994955122470856,-0.123951353132725,-0.0269894078373909,-0.991921186447144,0.750872611999512,0.660203456878662,-0.0179380904883146,0.0350052155554295,0.00762210320681334,-0.999358057975769,-0.252704650163651,0.965456128120422,-0.0635202974081039,-0.252434968948364,0.965168535709381,-0.0687487199902534,0.0138898026198149,-0.0293286982923746,-0.999473392963409,0.00452073849737644,0.00953025463968515,-0.999944448471069,0.0064792730845511,0.00141080946195871,-0.999978065490723,-0.240390807390213,0.968642771244049,-0.0627982169389725,0.0123380990698934,0.00268652173690498,-0.999920308589935,0.0102151371538639,0.0112100811675191,-0.999885082244873,0.00565530965104699,0.00986497104167938,-0.999935328960419,0.0156852509826422,-0.0289517268538475,-0.999457716941834,0.0153825683519244,-0.0277795623987913,-0.999495804309845,-0.136914700269699,-0.0454594902694225,-0.989539206027985,-0.972904860973358,0.217214807868004,-0.0792081207036972,-0.161449879407883,-0.039558257907629,-0.98608785867691,0.0423069261014462,0.0760459378361702,-0.996206402778625,0.175223901867867,0.0597604364156723,-0.982713222503662,0.226724669337273,0.053046703338623,-0.972513198852539,-0.951929450035095,0.302084058523178,-0.0507501177489758,-0.951074719429016,0.298023551702499,-0.0814788416028023,-0.167924508452415,-0.0667136982083321,-0.983539938926697,-0.0391228906810284,0.0211174394935369,-0.999011278152466,-0.484050571918488,0.852824628353119,-0.195921838283539,-0.48732602596283,0.861152112483978,-0.14467354118824,0.542761206626892,-0.838368535041809,-0.0504829958081245,0.542764782905579,-0.838389158248901,-0.0501024015247822,0.0379858873784542,-0.019218560308218,-0.999093472957611,0.540893733501434,-0.840546011924744,0.0302729662507772,0.541205883026123,-0.839396774768829,-0.0500929653644562,
- 0.541198074817657,-0.839375853538513,-0.050526212900877,0.0271984748542309,-0.00114545959513634,-0.999629378318787,-0.00294633395969868,0.0455770790576935,-0.998956561088562,0.0386700853705406,-0.0189591161906719,-0.999072194099426,0.0386700853705406,-0.0189591161906719,-0.999072194099426,0.542172193527222,-0.838772594928741,-0.0500988326966763,0.0271984748542309,-0.00114545959513634,-0.999629378318787,-0.496350139379501,0.845439553260803,-0.197151094675064,-0.031155951321125,0.0265118274837732,-0.999162912368774,-0.0223699994385242,0.0114386500790715,-0.99968433380127,-0.0338551551103592,0.024684701114893,-0.999121844768524,-0.00647334102541208,-0.022860711440444,-0.999717712402344,-0.0248996391892433,0.00912315025925636,-0.99964839220047,-0.0155336689203978,0.017694391310215,-0.99972277879715,-0.00988436210900545,0.0130885578691959,-0.999865531921387,-0.756531119346619,0.617965698242188,-0.213960766792297,-0.798816025257111,0.600581288337708,-0.0345712527632713,-0.778874456882477,0.589451789855957,-0.214245691895485,-0.00247906520962715,0.0232547894120216,-0.999726533889771,0.194748044013977,0.292420625686646,-0.936249673366547,-0.930684447288513,-0.309415489435196,-0.195163175463676,-0.937204718589783,-0.344078093767166,-0.0570755042135715,-0.0744786262512207,-0.0666262954473495,-0.994994401931763,-0.0550625547766685,-0.114919237792492,-0.991847634315491,-0.0833053439855576,-0.0444432124495506,-0.995532512664795,-0.013501837849617,0.0195531398057938,-0.999717712402344,0.0287870820611715,-0.014883360825479,-0.999474763870239,-0.00827503483742476,0.0152982557192445,-0.99984884262085,0.595648646354675,-0.801667273044586,-0.0503222905099392,0.535234212875366,-0.831657111644745,-0.147888153791428,-0.464354395866394,-0.314915806055069,-0.827769994735718,-0.206283152103424,-0.151093930006027,-0.966756343841553,0.49273669719696,-0.858255326747894,-0.143556401133537,-0.15387350320816,-0.231702342629433,-0.960539996623993,0.799040853977203,-0.599296391010284,-0.0487609878182411,0.814601361751556,-0.579414904117584,0.0265153348445892,
- 0.764534831047058,-0.622831165790558,-0.166035786271095,0.498971819877625,-0.865187466144562,-0.0497781485319138,0.49822261929512,-0.866552650928497,0.0293385498225689,0.498252183198929,-0.866569638252258,0.0283166393637657,0.427616775035858,-0.902442216873169,-0.0523645244538784,0.311053663492203,0.328455328941345,-0.89183109998703,0.460980415344238,-0.876270115375519,-0.140170633792877,-0.0871790573000908,-0.995550572872162,-0.0357626564800739,-0.0786066278815269,-0.994609713554382,-0.0676205679774284,-0.102422162890434,-0.994500458240509,0.0218791905790567,-0.010155544616282,0.0127161908894777,-0.999867677688599,0.027316614985466,-0.0166449565440416,-0.999488234519959,0.0270225796848536,-0.0164145268499851,-0.999500155448914,0.781734108924866,-0.621161222457886,-0.0552321001887321,0.0299909487366676,-0.0122815016657114,-0.999474763870239,0.030572384595871,-0.012744253501296,-0.999451398849487,0.168164983391762,0.181696161627769,-0.968868970870972,0.0640255808830261,0.16227188706398,-0.984666764736176,0.104824006557465,0.170087322592735,-0.979837894439697,0.0265767611563206,-0.0170351397246122,-0.999501705169678,0.7858966588974,-0.615890204906464,-0.0551884546875954,0.786262810230255,-0.616213977336884,-0.0455114617943764,0.698102176189423,0.715920150279999,-0.0105728376656771,-0.0203405283391476,-0.124046675860882,-0.992067933082581,-0.131783172488213,-0.23547674715519,-0.96290385723114,0.061638604849577,0.154101356863976,-0.986130654811859,-0.00156066566705704,0.11812587082386,-0.992997467517853,0.115017384290695,0.183988571166992,-0.976175785064697,-0.842284739017487,-0.511179149150848,-0.1710334867239,0.301157027482986,0.436201244592667,-0.847958207130432,0.0461222901940346,0.296521544456482,-0.95391184091568,0.0266916882246733,-0.0421247221529484,-0.998755812644959,-0.0385540127754211,-0.023318937048316,-0.998984456062317,0.00572995841503143,-0.0361002385616302,-0.999331772327423,0.0284706223756075,-0.0273058861494064,-0.999221682548523,0.00995510816574097,-0.0218028388917446,-0.999712765216827,0.9572514295578,-0.285823136568069,-0.0444387942552567,
- -0.033850185573101,-0.0206360016018152,-0.999213874340057,-0.937332570552826,0.277429848909378,-0.210808634757996,-0.0375661514699459,-0.0195069201290607,-0.999103724956512,-0.0341932065784931,-0.00650586746633053,-0.999394059181213,0.0287905912846327,-0.0246342457830906,-0.999281942844391,-0.0324515886604786,-0.00700809434056282,-0.999448716640472,-0.945416748523712,0.24760428071022,-0.211847305297852,-0.0349692739546299,-0.0315824113786221,-0.998889267444611,-0.907283663749695,0.231544271111488,-0.351032257080078,-0.0304787866771221,0.0121169630438089,-0.999461948871613,-0.984542489051819,0.0369120724499226,-0.171212390065193,-0.936475694179535,0.0371621176600456,-0.348758220672607,-0.98483669757843,0.0217793788760901,-0.172111615538597,-0.0309505127370358,0.00755424238741398,-0.999492466449738,-0.031182250007987,0.0075590368360281,-0.99948513507843,-0.0312679260969162,0.00448041595518589,-0.99950098991394,0.0320333614945412,0.00255125761032104,-0.999483644962311,-0.0313038751482964,0.00448150746524334,-0.999499917030334,-0.0295697823166847,0.0476679503917694,-0.998425483703613,-0.702893674373627,0.710510969161987,-0.033387515693903,-0.700376987457275,0.708863973617554,-0.0835699737071991,-0.0322174206376076,-0.0188803449273109,-0.999302566051483,-0.031474806368351,-0.0189429838210344,-0.999325037002563,-0.996237695217133,0.0828302651643753,-0.0254897922277451,-0.0322174206376076,-0.0188803449273109,-0.999302566051483,0.0288673862814903,-0.0239927116781473,-0.999295294284821,-0.031474806368351,-0.0189429838210344,-0.999325037002563,-0.999515175819397,0.0197399593889713,-0.0240768939256668,-0.0314804464578629,0.000692670466378331,-0.999504148960114,-0.999704420566559,0.0197429955005646,-0.0141888093203306,-0.31411799788475,-0.00753034744411707,-0.94935405254364,-0.672770857810974,-0.736663699150085,-0.0685998350381851,-0.0298866331577301,0.314156889915466,-0.948900580406189,0.0259707197546959,-0.172011986374855,-0.984752476215363,0.280812591314316,-0.0217438600957394,-0.959516286849976,-0.0308232065290213,-0.203273251652718,-0.978636801242828,
- -0.0314802229404449,-0.0038273751270026,-0.999497056007385,0.031030997633934,-0.00587328337132931,-0.999501168727875,0.0237037669867277,-0.00563445733860135,-0.999703168869019,0.476235598325729,0.0138458060100675,-0.87920868396759,0.451078325510025,-0.0247048810124397,-0.892142415046692,0.0283437222242355,-0.512476027011871,-0.858233690261841,0.0236932057887316,-0.00495819933712482,-0.999706983566284,0.0311042573302984,-0.00525818159803748,-0.999502301216125,0.998697817325592,-0.040658462792635,-0.0308147594332695,0.999402761459351,-0.0147608267143369,-0.0312447994947433,0.999345779418945,-0.000569488271139562,0.0361625030636787,0.026352658867836,-0.206143602728844,-0.978166818618774,0.0317693129181862,0.000330131006194279,-0.999495267868042,0.998891472816467,-0.025254875421524,-0.0397241525352001,0.999197602272034,-0.0252724513411522,-0.0310728009790182,0.959994554519653,-0.276488035917282,-0.0443262793123722,0.960091650485992,-0.276490956544876,-0.0421530716121197,0.0293542537838221,-0.0199230723083019,-0.999370515346527,0.997586905956268,-0.0624019540846348,-0.0304373502731323,0.99455451965332,-0.0190506614744663,0.102461561560631,0.988275110721588,-0.00240417430177331,0.152665063738823,0.974377453327179,0.0165034774690866,-0.224312826991081,0.90263706445694,0.00677715335041285,-0.430349230766296,0.994262099266052,0.0295260213315487,0.102816931903362,0.998272895812988,-0.0201573632657528,0.0551816336810589,0.999293327331543,-0.0210501123219728,-0.0311423055827618,0.998989701271057,-0.0211298409849405,-0.039663054049015,0.998949527740479,-0.0338096991181374,-0.0309305414557457,0.997924566268921,-0.0330541022121906,0.0552639812231064,0.994219303131104,-0.0325359590351582,0.102319948375225,0.958842873573303,-0.280448377132416,-0.044374480843544,0.958420395851135,-0.280003607273102,0.0550310723483562,0.958936452865601,-0.280468612909317,-0.0421702340245247,0.994104087352753,-0.0359986536204815,0.102280579507351,0.0192105434834957,0.638335406780243,0.769518613815308,0.989107429981232,0.00199368572793901,0.147181868553162,
- 0.994231641292572,-0.0321456640958786,0.102324321866035,0.997950851917267,-0.0322571620345116,0.0552591569721699,0.0314898863434792,-0.00120186794083565,0.999503433704376,0.644290626049042,-0.0250202063471079,0.764371335506439,0.0183826014399529,0.662115454673767,0.749176383018494,0.620464682579041,0.0195421949028969,0.783990979194641,0.0321358554065228,-0.10576705634594,0.993871629238129,-0.545030653476715,0.0514290258288383,0.836837232112885,-0.334896922111511,-0.0105479350313544,0.942195773124695,0.967960238456726,-0.244943007826805,0.0552808232605457,0.968789041042328,-0.243967965245247,-0.043904323130846,0.968997180461884,-0.244932100176811,0.0324481949210167,0.780947327613831,-0.622149407863617,-0.0552400276064873,0.780407011508942,-0.624575734138489,0.0294976681470871,0.781171858310699,-0.622658550739288,-0.0454632677137852,0.80168342590332,-0.596997976303101,0.0299506448209286,0.798552453517914,-0.599403738975525,-0.0550376400351524,0.801670551300049,-0.59716808795929,0.0267310664057732,-0.932057559490204,0.0277060735970736,0.361249387264252,-0.930574238300323,-0.00496909720823169,0.36606952548027,-0.512241363525391,0.856785297393799,0.0593966208398342,-0.990351676940918,-0.132191196084023,0.041583888232708,-0.994869828224182,-0.098415732383728,-0.0234165117144585,-0.992057919502258,-0.0494636334478855,-0.115648001432419,0.673133254051209,-0.0377655103802681,-0.738556385040283,-0.0419834293425083,0.24341456592083,0.969013273715973,-0.975872337818146,-0.21507366001606,0.0376367382705212,-0.0435787588357925,0.0851718112826347,0.995412826538086,0.0309237092733383,0.0628613457083702,0.997543096542358,-0.0405246205627918,0.0842658281326294,0.995618999004364,-0.998307526111603,0.0188238024711609,0.0550248213112354,-0.999714374542236,0.019205030053854,-0.0142313269898295,-0.998672783374786,0.0188671182841063,0.0479241907596588,-0.998456418514252,0.00749238068237901,0.0550330281257629,-0.998847603797913,0.00709328381344676,0.0474689155817032,-0.040118545293808,0.0530654527246952,0.997784852981567,-0.999515175819397,0.0197399593889713,-0.0240768939256668,
- -0.999704420566559,0.0197429955005646,-0.0141888093203306,-0.998290479183197,0.0197101552039385,0.0550238825380802,-0.663047909736633,0.747834801673889,-0.0333279371261597,-0.663522124290466,0.747262239456177,0.0365720838308334,-0.663701057434082,0.747990608215332,0.00331848487257957,-0.999023914337158,0.0216974299401045,-0.0384774170815945,-0.998248100280762,0.0217573754489422,0.0550215467810631,-0.997744977474213,0.0216490291059017,-0.0635319352149963,-0.039724588394165,0.0252844151109457,0.99889075756073,0.0312716439366341,0.0252677425742149,0.999191582202911,-0.0216174516826868,0.0252922810614109,0.999446392059326,-0.0394756272435188,0.00874646939337254,0.999182343482971,-0.0229606814682484,0.00830991007387638,0.999701917171478,-0.998119175434113,0.0270498842000961,0.0550144426524639,-0.979416310787201,0.1944979429245,0.0539835728704929,-0.98002016544342,0.194489449262619,0.0416462942957878,-0.97883403301239,0.1931192278862,-0.0677413269877434,-0.98180490732193,0.185286462306976,0.041571632027626,-0.981179773807526,0.185368627309799,0.0540807731449604,-0.022028861567378,0.020100049674511,0.999555349349976,-0.960206210613251,0.270632177591324,-0.0690092742443085,-0.960741281509399,0.274226605892181,0.0421429872512817,-0.957842290401459,0.268971085548401,-0.100959673523903,-0.910772919654846,-0.409004300832748,-0.0566410943865776,-0.911220490932465,-0.401780903339386,-0.0908260717988014,-0.904804527759552,-0.424843490123749,0.0289317779242992,0.0236150659620762,0.00577159412205219,0.999704480171204,-0.0231351908296347,0.0060972087085247,0.999713838100433,0.0314349792897701,0.00571586098521948,0.999489486217499,0.0236149337142706,0.00666819745674729,0.999698877334595,0.0314278453588486,0.00660113338381052,0.999484300613403,0.9984490275383,-0.008003787137568,0.0550956428050995,0.0285492148250341,-0.0139365550130606,0.999495267868042,-0.0223627928644419,0.0158796869218349,0.999623894691467,0.0236140210181475,-0.011045872233808,0.999660193920136,0.0229711607098579,0.231994822621346,0.972445785999298,0.337474554777145,-0.940975248813629,0.0260102115571499,
- 0.0683266520500183,0.110290594398975,0.991548001766205,-0.0178175624459982,0.0728716179728508,0.997182190418243,0.0496302396059036,0.0516805276274681,0.997429668903351,-0.00940361618995667,0.0702464506030083,0.997485339641571,-0.952282667160034,0.302278935909271,0.0422517396509647,-0.0178175624459982,0.0728716179728508,0.997182190418243,-0.00940361618995667,0.0702464506030083,0.997485339641571,0.961677968502045,-0.268583923578262,0.0551207065582275,0.0354265160858631,0.0136473011225462,0.999279081821442,0.0372640863060951,0.0131301954388618,0.999219238758087,-0.0181638859212399,0.0286903046071529,0.999423265457153,0.0372640863060951,0.0131301954388618,0.999219238758087,0.0354265160858631,0.0136473011225462,0.999279081821442,0.965582847595215,-0.254165917634964,0.0552224107086658,0.966638505458832,-0.254081457853317,0.032445952296257,0.0268805027008057,-0.0229076649993658,0.999376177787781,-0.0541126243770123,-0.00614020507782698,0.998515963554382,-0.0234111938625574,0.00369881559163332,0.999719083309174,0.0376607328653336,0.0232361871749163,0.999020457267761,-0.967645466327667,-0.249990895390511,0.0341594144701958,-0.0308338087052107,-0.031782116740942,0.999019086360931,-0.0838529914617538,-0.045349657535553,0.995445728302002,0.933287024497986,0.358146965503693,0.0265748128294945,-0.109788492321968,-0.211245581507683,0.971247553825378,-0.00902549922466278,-0.174403220415115,0.984632968902588,-0.164063051342964,-0.151908501982689,0.974683105945587,0.012429840862751,-0.0842812955379486,0.99636447429657,-0.0248889066278934,-0.0988503098487854,0.994791030883789,0.805020034313202,-0.592487692832947,0.0300202202051878,0.0445064194500446,-0.00501801306381822,0.998996496200562,0.0449734516441822,-0.0053628571331501,0.998973786830902,0.0445064194500446,-0.00501801306381822,0.998996496200562,-0.0181016605347395,0.0411257483065128,0.998990058898926,0.0449734516441822,-0.0053628571331501,0.998973786830902,0.0668845325708389,0.0269727557897568,0.997396051883698,0.798112332820892,-0.601767659187317,0.0298757255077362,0.798066675662994,-0.601973414421082,0.0267878230661154,
- -0.0297356247901917,0.0124029964208603,0.999480843544006,-0.818484961986542,0.573045432567596,0.0412481538951397,-0.0364312082529068,0.017096072435379,0.999189972877502,-0.0284752324223518,0.0275334790349007,0.999215304851532,0.0360394455492496,-0.01709477417171,0.999204158782959,-0.0221736524254084,0.0231764707714319,0.999485552310944,-0.835534930229187,0.547866225242615,0.041522890329361,-0.0359348431229591,0.00356394750997424,0.999347865581512,-0.835355818271637,0.547621369361877,0.0478703156113625,-0.83746999502182,0.544387936592102,0.0478096045553684,-0.837735891342163,0.544780015945435,-0.0375952012836933,-0.837697207927704,0.544551730155945,0.0415558218955994,-0.792355239391327,0.609107375144959,-0.0340808779001236,-0.792723715305328,0.607617497444153,0.048889622092247,-0.792087137699127,0.609044551849365,-0.0407757870852947,-0.333832681179047,0.0401766411960125,0.941775798797607,-0.135339066386223,-0.139058798551559,0.980992436408997,-0.0820836275815964,-0.184029221534729,0.979487419128418,-0.0604316778481007,0.0333243310451508,0.997615993022919,0.540653228759766,0.841091752052307,0.016085397452116,-0.413951635360718,-0.549993276596069,0.725363075733185,0.14130400121212,0.0637851506471634,0.987909197807312,0.136392638087273,0.0268943943083286,0.990289747714996,0.152014702558517,0.149652257561684,0.976983070373535,0.152014702558517,0.149652257561684,0.976983070373535,-0.13755002617836,-0.990267395973206,0.0212260000407696,0.14130400121212,0.0637851506471634,0.987909197807312,0.278687804937363,0.959943354129791,0.0290154740214348,0.00861177127808332,0.0312083121389151,0.9994757771492,0.0147944055497646,0.0525019727647305,0.99851131439209,0.0686344355344772,0.0292465724050999,0.997213125228882,0.0668715313076973,0.0254965778440237,0.997435867786407,0.100906416773796,0.098254881799221,0.990032255649567,-0.486926138401031,0.872029840946198,0.0496681369841099,-0.486860185861588,0.871974170207977,0.0512661747634411,-0.488633573055267,0.871866047382355,-0.0329677164554596,-0.492025643587112,0.869054734706879,0.0515225976705551,
- -0.492032378911972,0.869156241416931,0.0497158318758011,-0.0407966338098049,0.0227388013154268,0.998908698558807,-0.489893883466721,0.871157109737396,-0.0330061689019203,-0.487765401601791,0.871465444564819,0.0513111799955368,-0.489914506673813,0.870652794837952,-0.0441311411559582,-0.943546235561371,0.331064283847809,-0.010818138718605,-0.910529494285584,0.40798032283783,0.0669935196638107,-0.11289244145155,0.765325903892517,0.633665144443512,-0.403982073068619,-0.249232113361359,0.880160212516785,-0.384654819965363,-0.252665013074875,0.887806951999664,-0.997332215309143,0.0357079319655895,0.0636675730347633,0.997332215309143,-0.0357079319655895,-0.0636675730347633,0.499183863401413,0.230126231908798,-0.835378646850586,0.403982073068619,0.249232113361359,-0.880160212516785,-0.00347102200612426,-0.0219064448028803,0.999754011631012,-0.0323898680508137,0.0272511299699545,0.999103724956512,-0.00856924057006836,-0.0132468268275261,0.999875545501709,0.000492159277200699,0.0448615700006485,0.998993158340454,0.0258081369102001,-0.00086923036724329,0.999666571617126,-0.00509510934352875,0.0549375861883163,0.99847686290741,0.00278957770206034,-0.0174102950841188,0.999844551086426,-0.00153456581756473,-0.00963679049164057,0.999952435493469,0.485710680484772,-0.873661875724792,0.0282866694033146,-0.0160863623023033,-0.0957521498203278,0.995275259017944,-0.218621760606766,-0.105832666158676,0.970053553581238,-0.114046007394791,-0.101126559078693,0.988315224647522,0.004161705262959,-0.0164247248321772,0.999856472015381,0.509347975254059,-0.860093891620636,0.0283384062349796,0.509324431419373,-0.860065877437592,0.0295860581099987,-0.0631001740694046,-0.0646721571683884,0.995909571647644,0.88079047203064,-0.472197771072388,0.035177618265152,-0.0151501959189773,-0.0901797413825989,0.995810270309448,-0.997376918792725,-0.0167639497667551,-0.0704162493348122,-0.0562658943235874,-0.0226655062288046,-0.998158574104309,-0.997876048088074,-0.0166093092411757,-0.0629891157150269,-0.0571698434650898,-0.0396473817527294,-0.997576951980591,
- -0.997472882270813,0.0061385971494019,-0.0707837268710136,-0.0405608899891377,-0.0398295000195503,-0.998382985591888,-0.795583307743073,0.602253377437592,-0.0658642202615738,-0.789381921291351,0.605918824672699,-0.0986847057938576,-0.0296557061374187,0.263638317584991,-0.964165687561035,-0.915587067604065,0.37964278459549,-0.13255862891674,-0.017576739192009,0.396594494581223,-0.917825639247894,-0.0235542394220829,0.398328423500061,-0.916940450668335,-0.987422585487366,-0.00604463694617152,-0.157987609505653,-0.0160185005515814,0.0358951799571514,-0.999227166175842,-0.986111044883728,-0.00574010238051414,-0.165988102555275,-0.0400369912385941,-0.0224932413548231,-0.99894505739212,0.0230977796018124,-0.0216919165104628,-0.999497830867767,-0.0562669411301613,-0.0226850491017103,-0.998158037662506,-0.0156473554670811,0.0123877888545394,-0.999800801277161,-0.0158423874527216,0.0123874256387353,-0.999797761440277,-0.987440586090088,0.000315454351948574,-0.157990485429764,0.0302812363952398,0.124340675771236,-0.991777420043945,-0.0333306863903999,0.17234206199646,-0.9844731092453,-0.0168025307357311,0.159960716962814,-0.986980378627777,0.0227666851133108,-0.035326924175024,-0.999116539955139,-0.0402936860918999,-0.0309386439621449,-0.998708784580231,0.0216588545590639,-0.0352509915828705,-0.999143838882446,-0.0104143247008324,-0.164565026760101,-0.986311316490173,-0.0168347433209419,-0.166072726249695,-0.98596978187561,-0.954148530960083,-0.257476896047592,-0.152663767337799,-0.736263692378998,-0.67631334066391,-0.0227173585444689,0.0389303714036942,-0.519910037517548,-0.853333473205566,-0.701739311218262,-0.703530788421631,-0.112278282642365,-0.0156608577817678,0.0107111344113946,-0.999819993972778,0.0309902969747782,0.0103495260700583,-0.999466180801392,-0.0158295072615147,0.0107124010100961,-0.999817371368408,0.0380172282457352,-0.145625114440918,-0.988609194755554,-0.0169365685433149,-0.186219960451126,-0.98236209154129,-0.00837589148432016,-0.179949909448624,-0.983640134334564,-0.0157262180000544,-0.00251657725311816,-0.999873161315918,
- 0.0315689519047737,-0.00187622511293739,-0.999499797821045,0.0235060229897499,-0.00198575761169195,-0.999721765518188,-0.999483644962311,-0.0216123256832361,-0.0237800255417824,-0.00782251264899969,0.00162727630231529,-0.99996817111969,-0.0318702608346939,0.00110539572779089,-0.999491512775421,-0.00783939473330975,0.00109142588917166,-0.999968767166138,0.0313897393643856,0.00192082114517689,-0.999505460262299,-0.0318041034042835,0.000583803281188011,-0.999493956565857,-0.00832489132881165,-0.0143496654927731,-0.999862492084503,-0.999713063240051,-0.00384852522984147,-0.0236455723643303,-0.982025742530823,-0.00614964962005615,-0.188647344708443,-0.981838703155518,-0.0185374319553375,-0.188809648156166,-0.998611986637115,-0.0226817056536675,-0.0475357100367546,-0.00704243639484048,0.0263099484145641,-0.999629139900208,0.0353527441620827,0.0171277150511742,-0.999228119850159,-0.00463944347575307,0.101406261324883,-0.994834363460541,-0.426814287900925,0.904319941997528,-0.00592319387942553,0.0894097238779068,0.0192021112889051,-0.995809853076935,0.0426699444651604,0.0886699333786964,-0.995146691799164,-0.00288513069972396,0.155360519886017,-0.987853705883026,-0.00757637852802873,0.00943172071129084,-0.999926924705505,0.0397315807640553,0.010022034868598,-0.999160170555115,0.0310109555721283,0.0099148228764534,-0.999469935894012,0.0485525727272034,0.272228240966797,-0.961007058620453,0.428969115018845,0.0311056096106768,-0.902783453464508,0.478526592254639,-0.00566974747925997,-0.878054797649384,0.998627364635468,0.0235000513494015,-0.0468091666698456,0.0309649724513292,0.0108822826296091,-0.999461233615875,0.0397728122770786,0.0110821574926376,-0.999147355556488,0.0479554124176502,0.251363486051559,-0.966704070568085,0.694988131523132,0.00490503199398518,-0.719004452228546,0.966143608093262,-0.253186106681824,-0.0496317595243454,0.999050438404083,0.0187395699322224,-0.0393326953053474,0.0233062151819468,-0.00560696283355355,-0.999712646007538,0.0317369922995567,-0.00544541468843818,-0.999481379985809,0.0319220796227455,-0.00938646961003542,-0.999446332454681,
- 0.998652279376984,0.0223797783255577,-0.0468279793858528,0.998973786830902,0.0224630404263735,-0.0393296778202057,0.0232916381210089,-0.013623378239572,-0.999635934829712,0.0228643175214529,-0.0135956984013319,-0.999646127223969,0.997090041637421,-0.0653492957353592,-0.0392555110156536,0.964158773422241,-0.261498123407364,0.0449064485728741,0.977208077907562,-0.206451490521431,-0.0494185127317905,0.919297516345978,0.0196690987795591,-0.393071502447128,0.998181283473969,0.0229602344334126,0.0557410195469856,0.998980045318604,0.0221822578459978,-0.0393299236893654,0.998658001422882,0.0221121869981289,-0.0468324683606625,0.977324664592743,0.202990382909775,0.060261681675911,0.973689258098602,0.0359828360378742,0.225021153688431,0.955146610736847,-0.0381881669163704,0.293660819530487,0.998700976371765,-0.0324112325906754,-0.0393189340829849,0.998710930347443,-0.0324111357331276,-0.0390641205012798,0.0235584676265717,-0.00241104699671268,-0.999719560146332,0.999201059341431,0.00704760942608118,-0.0393386259675026,0.998445749282837,0.00723262224346399,0.0552602373063564,0.998857200145721,0.00721942959353328,0.0472469478845596,0.998377978801727,-0.0322586223483086,0.046913456171751,0.998710930347443,-0.0324111357331276,-0.0390641205012798,0.998700976371765,-0.0324112325906754,-0.0393189340829849,0.977324664592743,0.202990382909775,0.060261681675911,0.955146610736847,-0.0381881669163704,0.293660819530487,0.0278361737728119,-0.7057985663414,0.707865536212921,0.0231262594461441,0.0123864756897092,0.999655842781067,0.998882114887238,0.00241405819542706,0.0472102873027325,0.998476982116699,0.00251090386882424,0.05511324852705,0.0245617181062698,-0.0242248047143221,0.999404788017273,0.998336672782898,-0.0190201606601477,0.0544273741543293,0.0239896588027477,-0.0242149829864502,0.999418914318085,0.564640820026398,-0.00718053802847862,0.825305581092834,-0.00382700748741627,-0.519389390945435,0.854529142379761,0.0283173508942127,-0.498581290245056,0.866380333900452,-0.518489122390747,0.0446668118238449,0.853916883468628,-0.554431736469269,0.00871432665735483,0.832183599472046,
- -0.0345338881015778,0.414356619119644,0.909459173679352,-0.0403782390058041,-0.0457873046398163,0.998134851455688,0.0243133790791035,-0.0459262728691101,0.998648881912231,-0.0221474431455135,-0.0458459183573723,0.998703002929688,-0.247324168682098,-0.968926191329956,-0.00357407471165061,-0.0283096469938755,0.158632442355156,0.986931800842285,-0.076318696141243,-0.0265855602920055,0.996729016304016,-0.601937174797058,-0.798385858535767,0.0158649682998657,-0.824806392192841,0.0341805219650269,0.564381241798401,-0.834803938865662,-0.00852597784250975,0.550481379032135,-0.0221356246620417,-0.0462088659405708,0.998686611652374,-0.997461795806885,-0.000643941108137369,0.0712012648582459,-0.040385790169239,-0.0461339838802814,0.998118579387665,-0.997234702110291,-0.0267987567931414,0.0693168491125107,-0.0206976216286421,-0.089667983353138,0.99575662612915,-0.998596847057343,-0.0248077381402254,0.0467871278524399,-0.0619179233908653,-0.0891545340418816,0.994091391563416,0.0249343030154705,-0.089865617454052,0.995641708374023,-0.0412902310490608,-0.0893848016858101,0.995140969753265,-0.938306152820587,0.333657205104828,0.0908545106649399,-0.0591530315577984,-0.239770710468292,0.969025731086731,-0.0439241640269756,-0.245421454310417,0.968420922756195,0.0239896588027477,-0.0242149829864502,0.999418914318085,-0.0626738667488098,-0.0226372685283422,0.997777342796326,0.0245617181062698,-0.0242248047143221,0.999404788017273,-0.961539566516876,-0.270136088132858,-0.0496811755001545,-0.980347514152527,-0.192471250891685,0.0432845875620842,-0.964884161949158,0.00485520949587226,0.262631326913834,-0.998754858970642,-0.0154701257124543,-0.0474288873374462,-0.997339069843292,-0.0213176589459181,0.0697158053517342,-0.998697102069855,-0.0201963167637587,0.0468644835054874,-0.994553446769714,0.0196918398141861,-0.102351367473602,-0.989714980125427,-0.0367881171405315,-0.138242021203041,-0.993126034736633,0.107962474226952,-0.0452191419899464,-0.99725866317749,0.0155464317649603,0.0723432153463364,-0.99867457151413,0.0213239975273609,-0.0468456596136093,
- -0.999289989471436,0.0174647476524115,0.033386804163456,-0.0543566569685936,-0.403524965047836,0.913352608680725,-0.970645904541016,0.224843978881836,0.0853921175003052,-0.969512641429901,0.239118546247482,0.0535513758659363,-0.99915087223053,-0.0293414536863565,0.0289246495813131,-0.998513102531433,-0.0265811160206795,-0.0475924462080002,-0.999141812324524,-0.0271844398230314,-0.031254980713129,-0.990442216396332,-0.134595990180969,-0.0301352180540562,-0.990266501903534,-0.12137908488512,0.0681134387850761,-0.991572678089142,-0.128109380602837,0.0192776061594486,-0.0513966046273708,0.680605053901672,0.73084545135498,-0.862125396728516,-0.506266176700592,-0.0208467673510313,-0.898652374744415,-0.431848675012589,0.0770103260874748,-0.999716460704803,-0.00289894104935229,-0.0236381776630878,-0.99801641702652,-0.00148123758845031,0.0629371553659439,-0.999500632286072,-0.00302604050375521,-0.0314565114676952,-0.05142892152071,0.115993313491344,0.991917729377747,-0.0633367896080017,0.100079163908958,0.992961645126343,-0.599449634552002,-0.796852469444275,0.0754071846604347,-0.0507474020123482,0.0960903018712997,0.994078159332275,0.0199115220457315,0.091605119407177,0.995596349239349,-0.0633315369486809,0.0968401357531548,0.993283092975616,-0.996744096279144,-0.0540791526436806,0.0598062947392464,-0.996400952339172,-0.0540268309414387,0.0653178691864014,-0.998215734958649,-0.0546701662242413,-0.0240103732794523,-0.996181666851044,-0.0641543418169022,0.059215534478426,-0.0466682240366936,-0.0132148545235395,0.99882310628891,-0.995768547058105,-0.0641950517892838,0.0657584145665169,-0.75944995880127,-0.650455415248871,0.0119874998927116,-0.751942038536072,-0.658829748630524,-0.0229500476270914,-0.750909745693207,-0.659835875034332,-0.0274120271205902,-0.999662697315216,-0.00974600203335285,-0.0240745209157467,-0.997985243797302,-0.0126788849011064,0.0621663741767406,-0.999822020530701,-0.0100245606154203,-0.0159820299595594,-0.0470446385443211,-0.00372910802252591,0.998885869979858,0.0393154546618462,-0.000767552759498358,0.999226629734039,
- 0.0236668027937412,-0.00130536721553653,0.999719083309174,0.023563988506794,0.00130755524151027,0.999721527099609,0.0393950715661049,0.00176586548332125,0.999222159385681,0.998456239700317,0.0289546418935061,0.0473991446197033,-0.0470871776342392,-0.00265039643272758,0.998887300491333,-0.997648417949677,-0.0309829749166965,0.0611362755298615,-0.0236305650323629,-0.00192463444545865,0.999718964099884,0.0395762473344803,0.00756089529022574,0.99918794631958,-0.0473511293530464,0.00407466385513544,0.998870015144348,-0.023575559258461,0.00503268511965871,0.999709486961365,-0.881293952465057,0.472448259592056,0.0106593882665038,-0.877590715885162,0.472462862730026,0.0813225656747818,-0.881451070308685,0.472273081541061,0.00149043253622949,-0.783957183361053,0.620716333389282,0.0110604213550687,-0.783932268619537,0.620752334594727,0.0108087956905365,-0.774132609367371,0.629700601100922,-0.0647763311862946,-0.00971035473048687,-0.996843934059143,0.0787903890013695,-0.0514127016067505,0.996980726718903,0.0581902898848057,-0.379384875297546,-0.318962752819061,0.868521690368652,0.0327999033033848,-0.18608546257019,0.981985926628113,-0.0243927761912346,-0.120722509920597,0.992386639118195,-0.0786627754569054,-0.0576435066759586,0.995233416557312,-0.370274513959885,-0.311015367507935,0.875309228897095,-0.658669114112854,0.747872769832611,0.0827123075723648,-0.630559861660004,0.776061594486237,0.01107575930655,-0.999856054782867,-0.0150940222665668,0.00775403156876564,-0.997376918792725,-0.0167639497667551,-0.0704162493348122,-0.997876048088074,-0.0166093092411757,-0.0629891157150269,0.0589220933616161,0.0613219924271107,0.996377348899841,0.0313762575387955,0.0812952145934105,0.996196150779724,0.0415566675364971,0.073927529156208,0.996397435665131,0.849802255630493,-0.525870323181152,0.0360074266791344,0.0400860570371151,0.024100299924612,0.998905599117279,0.0314667895436287,0.0294600334018469,0.999070584774017,0.305701613426209,0.952113747596741,0.00508985947817564,0.0299815405160189,-0.945771038532257,-0.323447436094284,-0.673110842704773,-0.577143549919128,0.462414503097534,
- 0.353413164615631,0.314731508493423,0.880933165550232,-0.0281748902052641,0.216964185237885,0.975772857666016,0.0306030418723822,0.234449476003647,0.971646547317505,-0.997957646846771,-0.010865812189877,-0.0629490315914154,-0.999188899993896,-0.00830353703349829,0.0394035242497921,-0.999928176403046,-0.00910506304353476,0.00780175672844052,-0.992763578891754,-0.119888588786125,0.00687303114682436,-0.993090271949768,-0.110337644815445,0.039966844022274,-0.0291957389563322,0.274932950735092,0.961019992828369,-0.996871054172516,0.0689214468002319,0.0387042015790939,-0.995552659034729,0.0707936361432076,-0.0621545426547527,-0.996548056602478,0.0687462612986565,0.0465397052466869,-0.877578318119049,0.477948874235153,0.0376970171928406,-0.859543859958649,0.508596539497375,-0.0501397922635078,-0.708318591117859,0.584134817123413,-0.396322280168533,-0.800750970840454,0.490292638540268,-0.344109386205673,-0.721435010433197,0.691908955574036,-0.0281704645603895,-0.696850895881653,0.716697096824646,0.0272788051515818,-0.998979091644287,0.0225347988307476,0.0391524471342564,-0.0148217892274261,0.0386398248374462,0.999143302440643,-0.0245145130902529,0.0388362854719162,0.998944818973541,-0.997045993804932,0.0663278549909592,0.0387315079569817,-0.996722996234894,0.0661419406533241,0.0465684719383717,-0.0162117313593626,-0.0198488589376211,0.999671638011932,-0.0148082133382559,0.0392001420259476,0.999121725559235,0.0314574725925922,0.0382047295570374,0.998774707317352,-0.02452727034688,0.039398655295372,0.998922526836395,-0.999113857746124,0.0277038533240557,-0.031686294823885,-0.998042166233063,0.0284836255013943,0.0556830354034901,-0.998493134975433,0.0284153148531914,0.0469491630792618,-0.997958660125732,0.0311672482639551,0.0557418279349804,-0.0156571082770824,0.0037627168931067,0.999870419502258,-0.998412609100342,0.0311524476855993,0.0469238050282002,-0.999309778213501,-0.0189985297620296,-0.0319231040775776,-0.998302936553955,-0.0204074326902628,0.0545425042510033,-0.999328553676605,-0.0190087761729956,-0.031325239688158,
- -0.544681191444397,-0.838581025600433,0.0102127995342016,-0.559081494808197,-0.828278958797455,-0.0371745079755783,-0.616780757904053,-0.576612591743469,-0.535816609859467,-0.962401747703552,0.265076637268066,0.0593074187636375,-0.969861149787903,0.201355904340744,0.137204751372337,-0.95968097448349,0.087727777659893,0.267051339149475,-0.938912630081177,0.140108495950699,0.314345121383667,-0.0473830923438072,-0.806496322154999,0.589337527751923,-0.882622420787811,0.466281294822693,0.0596629977226257,-0.0179857555776834,-0.0980509892106056,0.99501895904541,-0.992504119873047,0.107969142496586,0.0572554022073746,-0.0202890764921904,-0.0977852120995522,0.995000720024109,-0.0159906558692455,-0.00518258847296238,0.999858796596527,0.0314800292253494,-0.00519414339214563,0.999490916728973,-0.0158682614564896,-0.00518263224512339,0.99986070394516,0.0314788296818733,0.0101613253355026,0.999452769756317,-0.0152325024828315,0.0108537273481488,0.999825060367584,0.0237759668380022,0.0102771027013659,0.999664485454559,0.0314766354858875,0.0155764166265726,0.999383151531219,0.0238599143922329,0.0157168209552765,0.999591827392578,0.998744368553162,-0.0172085873782635,0.0470492728054523,0.00533725088462234,0.416076511144638,0.909314036369324,0.388366341590881,-0.0839266106486321,0.917675256729126,0.0278907362371683,0.391303449869156,0.919838964939117,0.996508777141571,-0.0267235338687897,0.0790965259075165,0.998545050621033,-0.0264972504228354,0.0469667203724384,0.0234679188579321,-0.00930900685489178,0.999681234359741,0.424872756004334,-0.0601194724440575,0.903254508972168,0.670590698719025,-0.738494038581848,0.070247158408165,0.0279517602175474,0.402343958616257,0.915061891078949,0.99886429309845,-0.0272103045135736,-0.0391111113131046,0.998516738414764,-0.0275590624660254,0.0469570159912109,0.996482253074646,-0.0276371818035841,0.079116016626358,0.803102672100067,-0.475455462932587,0.359121769666672,0.620396375656128,-0.781394958496094,0.0673082619905472,0.739205300807953,0.18639674782753,0.647172212600708,0.626976549625397,0.778421998023987,0.0309803169220686,
- 0.468419939279556,0.163560390472412,-0.868234276771545,0.641289055347443,0.76666134595871,-0.0312843024730682,0.640948832035065,0.766946315765381,-0.0312731526792049,0.307024866342545,0.250052571296692,-0.918264448642731,0.0379523001611233,-0.0836865305900574,-0.995769143104553,0.0982223302125931,-0.116460219025612,-0.988326549530029,0.0460388921201229,-0.192616432905197,-0.980193555355072,0.323777407407761,0.241751819849014,-0.914726316928864,0.03089171461761,0.00747315119951963,-0.999494791030884,0.0237942654639483,0.00760258873924613,-0.999687969684601,0.999075174331665,-0.0176869910210371,-0.0391943976283073,-0.0321983508765697,0.0101634515449405,-0.999429821968079,0.0242639258503914,0.0901029333472252,-0.995636940002441,-0.0489494390785694,-0.0136560602113605,-0.998707890510559,-0.032475084066391,0.0140936225652695,-0.999373197555542,0.0239084828644991,0.0124896969646215,-0.999636113643646,0.0305105820298195,0.0122991483658552,-0.999458849430084,-0.0311209987848997,-0.00507161021232605,-0.999502837657928,-0.0411996208131313,-0.0191083569079638,-0.998968243598938,-0.584072589874268,-0.810832500457764,-0.0375495105981827,-0.031403474509716,0.00486944336444139,-0.999495029449463,0.0237479470670223,0.00562770897522569,-0.999702155590057,-0.0318244025111198,0.00486359326168895,-0.999481618404388,-0.999325633049011,-0.0181779600679874,-0.0319042205810547,-0.0313655994832516,0.0072477082721889,-0.999481737613678,-0.0319919101893902,0.00723600527271628,-0.999462008476257,-0.0571260750293732,-0.0388181544840336,-0.997612059116364,0.0206239800900221,-0.119533963501453,-0.992615878582001,-0.0324308536946774,-0.0645895972847939,-0.997384786605835,-0.0312262997031212,0.0159015972167253,-0.999385893344879,-0.999309778213501,-0.0189985297620296,-0.0319231040775776,-0.999328553676605,-0.0190087761729956,-0.031325239688158,-0.0554682165384293,-0.0079227751120925,-0.998429119586945,-0.0319441929459572,-0.0304020997136831,-0.999027192592621,-0.724108159542084,0.689108431339264,-0.0282326098531485,-0.930552959442139,0.00496351346373558,-0.366123855113983,
- -0.512222647666931,-0.856796324253082,-0.0593977868556976,-0.932036459445953,-0.0277064330875874,-0.361303776502609,-0.996566236019135,0.079829677939415,0.021979758515954,-0.995325148105621,0.046869333833456,0.0844464153051376,-0.992649614810944,0.113341182470322,-0.0424345768988132,-0.997836828231812,-0.0192579552531242,-0.0628558620810509,-0.999706089496613,-0.0196552965790033,0.0141957430168986,-0.998662769794464,-0.0193439554423094,-0.0479424893856049,-0.999515175819397,-0.0197403877973557,0.0240769032388926,-0.999704420566559,-0.0197432488203049,0.014188788831234,-0.997828304767609,-0.0196993574500084,-0.0628553256392479,-0.629349410533905,-0.776412665843964,0.0332069769501686,-0.62977522611618,-0.775763750076294,-0.0396708808839321,-0.630006849765778,-0.776515483856201,-0.0107287392020226,-0.041984561830759,-0.24360828101635,-0.968964576721191,-0.979324638843536,0.198608130216599,-0.0384480878710747,0.706683039665222,0.033655621111393,0.706729352474213,-0.040612630546093,-0.0914487615227699,-0.994981288909912,-0.998020529747009,-0.0016591347521171,-0.0628674328327179,-0.99888551235199,-0.00021289850701578,-0.0471998266875744,-0.0369592793285847,-0.0854557454586029,-0.995656311511993,0.0309112425893545,-0.0641246363520622,-0.99746310710907,-0.040553130209446,-0.0865748152136803,-0.99541962146759,0.0322870351374149,0.144600585103035,-0.988963186740875,-0.74714332818985,-0.0283248797059059,-0.664059162139893,-0.586275339126587,0.0184653643518686,-0.809901416301727,0.636987030506134,0.025317370891571,-0.770458698272705,0.0192893203347921,-0.636011242866516,-0.771438777446747,0.611595869064331,-0.0192628633230925,-0.790935873985291,-0.997160911560059,-0.0415290482342243,-0.0628132820129395,-0.0392876900732517,0.00328804226592183,-0.999222576618195,-0.0236773751676083,0.00394544517621398,-0.999711930751801,0.031229205429554,-0.0301239993423224,-0.999058246612549,-0.0231331698596478,-0.0299683529883623,-0.999283134937286,-0.0397921875119209,-0.0299028716981411,-0.998760402202606,-0.997834742069244,-0.0536720231175423,-0.0380169898271561,
- -0.998123049736023,-0.0537659972906113,0.0293201748281717,-0.996588528156281,-0.0535760745406151,-0.0627772286534309,-0.997908890247345,-0.0522480830550194,-0.0380535461008549,-0.996691584587097,-0.0516146160662174,-0.0627837255597115,-0.0239515546709299,0.0217077359557152,-0.999477386474609,-0.999242126941681,0.0216838959604502,0.0323258899152279,-0.998938262462616,0.0230761729180813,-0.0398733839392662,-0.999274373054504,0.0217044502496719,0.031302310526371,-0.674131214618683,-0.736182451248169,0.0598550960421562,-0.666260659694672,-0.745235323905945,0.0268525835126638,-0.657049834728241,-0.753804087638855,-0.00806171074509621,-0.993629217147827,0.0951828360557556,0.0603424049913883,-0.994954824447632,0.0914151817560196,-0.0413308627903461,-0.994392216205597,0.0908741131424904,-0.0540934763848782,-0.998392045497894,0.0140444003045559,-0.0549189001321793,-0.997324168682098,0.0170967690646648,0.0710803642868996,-0.997904360294342,0.0168957766145468,0.0624610036611557,-0.559451043605804,0.827597141265869,0.045797947794199,-0.561305463314056,0.825483083724976,0.0592771507799625,-0.548241376876831,0.835986196994781,-0.0236354563385248,-0.0228114500641823,-0.0492611080408096,-0.998525500297546,-0.0329873859882355,-0.0491005629301071,-0.998249053955078,-0.999136984348297,0.0124474354088306,-0.0396301373839378,-0.985531985759735,0.160972103476524,-0.0530531667172909,-0.985641002655029,0.163375616073608,-0.0426640324294567,-0.0375637263059616,-0.217256918549538,-0.975391447544098,-0.996169686317444,0.0515979193150997,-0.0705946981906891,-0.998382389545441,0.0507770031690598,0.0255829319357872,-0.997182011604309,0.0514939203858376,-0.0545573234558105,-0.0308004003018141,0.0213840939104557,-0.999296844005585,-0.996370375156403,0.0475455187261105,-0.0706089213490486,-0.997388541698456,0.0472729690372944,-0.0546019449830055,-0.999700784683228,0.00551267294213176,0.0238320119678974,-0.997461020946503,0.00866041146218777,-0.0706862062215805,-0.999857902526855,0.00578112341463566,0.0158368349075317,-0.705221891403198,-0.707222998142242,-0.0499763526022434,
- -0.72003573179245,-0.69384104013443,0.0115454038605094,-0.717559278011322,-0.69649738073349,0.000331683084368706,0.0387026742100716,-0.038638774305582,-0.998503446578979,-0.0326610095798969,-0.0382528975605965,-0.998734176158905,-0.0229950379580259,-0.0383166335523129,-0.999001026153564,0.0391205288469791,-0.0136978980153799,-0.999140620231628,-0.0233900099992752,-0.0141732860356569,-0.999625980854034,0.0313692316412926,-0.0137598188593984,-0.999413132667542,-0.996562898159027,0.0433006882667542,-0.0706225633621216,-0.0312127768993378,0.00847115740180016,-0.999476909637451,-0.0311462562531233,0.008468315936625,-0.999478995800018,0.0390395671129227,-0.0186466872692108,-0.999063670635223,0.0240389872342348,-0.0181033480912447,-0.999547123908997,-0.0319810956716537,-0.0160399116575718,-0.999359846115112,0.0237402636557817,-0.00530038587749004,-0.999704122543335,-0.0315521098673344,-0.00182317441795021,-0.999500453472137,-0.0315377973020077,-0.00182407640386373,-0.99950098991394,0.0171250384300947,-0.367341786623001,-0.929928421974182,-0.888995409011841,-0.453561872243881,-0.0629996731877327,-0.0443858206272125,-0.392432510852814,-0.918709218502045,-0.0197701491415501,-0.0931734889745712,-0.995453596115112,-0.0358556546270847,-0.116719573736191,-0.992517471313477,0.0242770463228226,-0.0284272767603397,-0.999301016330719,-0.719687104225159,-0.694202780723572,0.0115343183279037,-0.705487251281738,-0.706957161426544,-0.0499951504170895,-0.70548141002655,-0.706961333751678,-0.0500180535018444,-0.027161817997694,-0.0358477085828781,-0.998988091945648,-0.696541845798492,-0.715795338153839,-0.0496644377708435,-0.696553587913513,-0.715804874897003,-0.0493620559573174,-0.99848335981369,-0.000846768205519766,-0.0550478436052799,-0.998485922813416,-0.00084686535410583,-0.0550013147294521,-0.999720871448517,-0.00100782013032585,0.0236075203865767,-0.999306201934814,-0.028995294123888,0.023377351462841,-0.998119235038757,-0.0292768124490976,-0.0538618192076683,-0.999273419380188,-0.0289887357503176,0.0247461721301079,-0.664791882038116,-0.746993601322174,-0.00723287463188171,
- -0.835668563842773,-0.273177057504654,0.476479321718216,-0.698951184749603,-0.713776588439941,0.0446120984852314,-0.93945723772049,0.189934119582176,-0.285210698843002,-0.891247391700745,0.448573410511017,-0.0667842403054237,-0.90443480014801,-0.0169279407709837,-0.426275849342346,-0.725610494613647,-0.257153511047363,-0.638248801231384,-0.816132605075836,0.0778479352593422,-0.572596967220306,-0.535564243793488,0.842165470123291,-0.0626754090189934,-0.0470424927771091,0.00628075934946537,-0.998873174190521,-0.996059715747833,-0.068781204521656,-0.0559840947389603,-0.0326536595821381,0.00728751579299569,-0.99944019317627,-0.992388904094696,0.111179135739803,-0.052947748452425,-0.0452562384307384,0.0762716829776764,-0.996059536933899,-0.991998791694641,0.111575618386269,-0.0590698383748531,-0.0178375169634819,0.140249371528625,-0.989955544471741,-0.919170439243317,0.388299345970154,-0.0659503117203712,-0.0431102067232132,0.150377959012985,-0.987688302993774,0.0236095245927572,0.00025133541203104,-0.999721229076386,-0.0472729466855526,-0.00346938520669937,-0.99887603521347,-0.0313954912126064,-0.00263638864271343,-0.999503552913666,-0.0511236451566219,-0.212657138705254,-0.975788593292236,-0.142098098993301,-0.163805812597275,-0.976204812526703,-0.360658138990402,-0.0353248342871666,-0.932028889656067,-0.0469209663569927,0.0113474614918232,-0.998834192752838,0.0232647694647312,0.01474538911134,-0.999620616436005,0.0163116920739412,0.0144117716699839,-0.999763071537018,0.264660060405731,-0.0222364217042923,-0.964085400104523,-0.0259149856865406,0.559620201587677,-0.82834392786026,0.0321459844708443,0.46198633313179,-0.886304318904877,0.997519493103027,0.0584173090755939,-0.0392724201083183,0.0157778691500425,0.000807844568043947,-0.99987518787384,0.0235855728387833,0.00126513768918812,-0.999721109867096,0.998526871204376,-0.0373993739485741,-0.0393120795488358,0.0240389872342348,-0.0181033480912447,-0.999547123908997,0.0390395671129227,-0.0186466872692108,-0.999063670635223,0.0313404425978661,-0.0172060690820217,-0.999360680580139,
- 0.999140202999115,0.0130974864587188,-0.0393362268805504,0.0390650629997253,-0.0170946717262268,-0.999090433120728,0.0333064347505569,0.49977844953537,-0.865512669086456,0.37245175242424,-0.927273154258728,-0.0380035266280174,0.263598769903183,-0.0226351749151945,-0.964366793632507,0.0148010682314634,-0.0238948073238134,-0.999604940414429,0.998419880867004,0.0401571877300739,-0.0393078699707985,0.998926520347595,0.0405945368111134,-0.0223181210458279,0.326306879520416,-0.944880425930023,-0.026922632008791,0.509490787982941,0.0746884122490883,-0.857228636741638,0.33213010430336,-0.942486763000488,-0.0375302135944366,0.775485277175903,0.330474346876144,0.53796774148941,0.557521998882294,0.828643977642059,0.0501835271716118,0.714726209640503,-0.0498103424906731,0.697628438472748,0.999716758728027,0.00379411689937115,-0.0234958548098803,0.999220907688141,0.00316772749647498,0.039339404553175,0.999495089054108,0.00324555952101946,0.0316079370677471,0.998334407806396,0.0422338396310806,0.0393045023083687,0.998866558074951,0.0420672297477722,-0.0222703199833632,0.998344480991364,0.0419929027557373,-0.0393049009144306,0.51110965013504,0.858066976070404,0.0498801022768021,0.0393359549343586,-0.791138350963593,0.610370993614197,0.610901415348053,-0.00894557032734156,0.791656255722046,0.999188780784607,0.00861905515193939,0.0393381416797638,0.0235295388847589,0.00272672134451568,0.999719440937042,0.999456644058228,0.00860233511775732,0.0318176262080669,0.039335560053587,-0.807900309562683,0.588005125522614,0.321276724338531,-0.434487521648407,0.841428518295288,0.503899037837982,0.0288183987140656,0.863281726837158,0.015300689265132,0.241848230361938,0.970193445682526,-0.0340106748044491,0.202150240540504,0.978763818740845,-0.166028812527657,0.091194674372673,0.981895089149475,-0.76772278547287,-0.639317154884338,0.0433051511645317,-0.166028812527657,0.091194674372673,0.981895089149475,-0.0340106748044491,0.202150240540504,0.978763818740845,-0.0315884500741959,0.00691229151561856,0.999477088451386,-0.989413440227509,-0.0340463370084763,0.141074568033218,
- -0.999063491821289,-0.0353227443993092,0.0249905828386545,0.023420087993145,-0.0122994231060147,0.999650061130524,0.0240010321140289,-0.0123056517913938,0.999636173248291,0.99916011095047,-0.0114765036851168,0.0393370129168034,0.0238911099731922,-0.00878577772527933,0.999675929546356,0.0234763827174902,-0.00877848267555237,0.999685883522034,-0.0313567593693733,-0.00780124822631478,0.999477803707123,-0.989290952682495,-0.0376081876456738,0.141028791666031,-0.0315463840961456,0.00420875195413828,0.999493420124054,-0.023650761693716,0.00451620249077678,0.999710142612457,0.0237149819731712,0.00635346164926887,0.999698638916016,-0.023650761693716,0.00451620249077678,0.999710142612457,-0.0315463840961456,0.00420875195413828,0.999493420124054,-0.770894050598145,-0.628225803375244,0.105141788721085,-0.0248869899660349,0.335308194160461,0.941779792308807,-0.756007254123688,-0.654561400413513,0.00159757235087454,0.995848894119263,-0.0821451991796494,0.0392066463828087,0.989681959152222,-0.00774853769689798,0.143072098493576,0.028368653729558,0.576453328132629,0.816637516021729,0.971494793891907,-0.233955547213554,0.0382478274405003,0.964669167995453,-0.260712563991547,-0.0379790998995304,0.969646990299225,-0.190449804067612,0.153341546654701,0.0254098661243916,0.125962316989899,0.991709530353546,0.0302215628325939,0.127416849136353,0.99138879776001,-0.0243417248129845,0.11074723303318,0.993550539016724,0.0273040030151606,0.306666016578674,0.951425492763519,0.982208073139191,0.133769646286964,0.131806552410126,0.0275509040802717,0.306684821844101,0.951412379741669,-0.02353909984231,-0.00956620834767818,0.999677240848541,-0.0159633867442608,-0.0092299822717905,0.999830067157745,-0.998890459537506,-0.0446326546370983,0.0150276813656092,0.0315388254821301,-0.0075344261713326,0.999474108219147,-0.0159733276814222,-0.00965354684740305,0.999825894832611,-0.0235356725752354,-0.00998897291719913,0.999673128128052,-0.999857902526855,0.00578112341463566,0.0158368349075317,-0.0165243409574032,-0.0333251059055328,0.999307990074158,-0.999700784683228,0.00551267294213176,0.0238320119678974,
- 0.873807907104492,0.48476704955101,0.0382189489901066,0.0314448177814484,-0.474312961101532,0.879794657230377,0.883422911167145,0.459017634391785,0.0941636264324188,0.630589425563812,0.775499999523163,0.0309326518326998,0.631394684314728,0.77466493844986,0.035144966095686,0.618913233280182,0.785081326961517,-0.0243666619062424,0.998937964439392,0.0237010456621647,0.0395148880779743,0.0312459822744131,-0.00742413150146604,0.999484181404114,0.0315379314124584,-0.00741703482344747,0.999475061893463,0.0314581952989101,0.00281412969343364,0.999501168727875,0.0315689109265804,0.00281544961035252,0.999497592449188,-0.0156929176300764,0.00224934355355799,0.999874353408813,0.998904347419739,-0.0256789159029722,0.039124745875597,0.998945653438568,-0.0236842483282089,-0.0393285676836967,0.999192416667938,-0.0254811216145754,0.0310693494975567,0.0312153398990631,-0.00839033722877502,0.999477505683899,0.999185919761658,-0.0092602064833045,0.0392651110887527,0.99946665763855,-0.00919835921376944,0.0313344076275826,-0.028348196297884,-0.856545746326447,0.515292048454285,-0.235516712069511,-0.174141630530357,0.956141531467438,-0.139273032546043,0.989352703094482,0.0422408096492291,-0.610587656497955,0.790637612342834,0.0455507971346378,-0.134077548980713,-0.0947161316871643,0.986434042453766,-0.617757380008698,0.773192226886749,0.143351554870605,0.0246020052582026,-0.198648318648338,0.979762017726898,0.0129058388993144,-0.186839371919632,0.982305705547333,-0.0191986877471209,-0.154172897338867,0.987857341766357,0.00657553505152464,-0.29074826836586,0.956776976585388,-0.0668046772480011,-0.0421388894319534,0.996875882148743,-0.0201959982514381,-0.202207699418068,0.979134440422058,-0.689394354820251,0.724312961101532,-0.0103067047894001,-0.0129058388993144,0.186839371919632,-0.982305705547333,-0.0246020052582026,0.198648318648338,-0.979762017726898,-0.706710398197174,-0.698365449905396,0.113340690732002,0.665640234947205,0.513786911964417,-0.541244983673096,-0.0377810336649418,0.278687953948975,0.959638297557831,-0.0390996858477592,-0.110273003578186,0.993132054805756,
- -0.496100544929504,-0.379147350788116,0.781109154224396,0.0194854121655226,-0.0738001018762589,0.997082710266113,-0.0306117068976164,0.0359504297375679,0.998884618282318,-0.982041358947754,-0.0149342119693756,0.188074022531509,-0.0393144600093365,0.0357460603117943,0.998587310314178,-0.981580436229706,0.0258604288101196,0.189290970563889,-0.0308775547891855,0.0251264926046133,0.999207317829132,-0.983311891555786,0.0256730876863003,0.180107846856117,-0.0179398562759161,0.438570022583008,0.898518025875092,-0.634788036346436,-0.772246241569519,0.0260740034282207,-0.6574467420578,-0.739489614963531,0.144633859395981,-0.0317652747035027,-0.012168169952929,0.999421298503876,-0.984756350517273,0.00790576636791229,0.17375984787941,-0.99945855140686,0.00983577407896519,0.0314015634357929,0.0247909631580114,0.0214377418160439,0.999462783336639,0.0316425301134586,0.0215315502136946,0.999267399311066,-0.0393313243985176,0.0205117966979742,0.999015688896179,0.0316746979951859,0.0260518305003643,0.99915874004364,-0.0308669824153185,0.0255597792565823,0.999196648597717,-0.0393268242478371,0.0254854615777731,0.9989013671875,0.0316630527377129,0.0244053769856691,0.999200582504272,0.0249490085989237,0.0243352130055428,0.999392569065094,0.999427855014801,0.0118948947638273,0.0316653661429882,-0.984906256198883,-0.012068010866642,0.172667697072029,-0.0315115638077259,-0.00131955475080758,0.999502539634705,-0.0314908064901829,-0.0013193046906963,0.999503254890442,0.0314936079084873,0.00167787401005626,0.999502539634705,-0.031475093215704,0.000681370322126895,0.999504387378693,-0.0314643606543541,0.000681540404912084,0.999504685401917,-0.0313865728676319,-0.480614870786667,0.876369893550873,0.701980710029602,-0.71085113286972,0.0437462814152241,-0.752590656280518,0.63666832447052,0.168109387159348,-0.0324235074222088,-0.204301550984383,0.97837096452713,0.0289232227951288,-0.223682448267937,0.974232912063599,0.266500473022461,-0.290149360895157,0.919125020503998,0.0603073202073574,-0.083337627351284,0.994694888591766,-0.705109298229218,-0.708312213420868,0.0333879068493843,
- -0.699415504932404,-0.70983898639679,0.0833461508154869,0.999411523342133,0.014135068282485,0.0312549285590649,0.031592171639204,0.0146305011585355,0.99939376115799,0.999397397041321,0.0141411945223808,0.0316997766494751,-0.219602584838867,-0.975181102752686,0.0282232351601124,-0.269414007663727,0.251551449298859,0.929590225219727,-0.0563831888139248,0.768689036369324,0.63713264465332,0.153925269842148,-0.177497670054436,0.972009122371674,0.0269141551107168,-0.340842753648758,0.939735054969788,0.0518711358308792,-0.310045808553696,0.949305534362793,0.0189916491508484,0.169907629489899,0.985276997089386,-0.0330202616751194,0.0329887457191944,0.998910129070282,-0.0390253290534019,0.0170122794806957,0.999093413352966,0.0518711358308792,-0.310045808553696,0.949305534362793,0.0269141551107168,-0.340842753648758,0.939735054969788,0.585531234741211,0.810630023479462,0.00567610096186399,-0.0313643589615822,-0.00245775352232158,0.99950498342514,-0.0314803570508957,-0.0024578170850873,0.999501347541809,-0.999720513820648,-0.000682631973177195,0.0236315689980984,0.029746038839221,0.0243661422282457,0.999260544776917,-0.03147292137146,0.021877083927393,0.999265193939209,-0.0325034558773041,0.0218344368040562,0.999233067035675,-0.999515175819397,-0.0197403877973557,0.0240769032388926,-0.0314804464578629,-0.000710420485120267,0.999504148960114,-0.999704420566559,-0.0197432488203049,0.014188788831234,-0.431491404771805,0.00401371670886874,0.902108073234558,-0.704124212265015,0.706932306289673,0.0667525380849838,-0.0285449214279652,-0.421667337417603,0.906301200389862,0.0234912596642971,-0.00784486066550016,0.999693274497986,-0.0170957613736391,0.0153400395065546,0.999736189842224,-0.0314717218279839,0.0235492307692766,0.999227166175842,0.0239029079675674,0.0185207258909941,0.999542713165283,-0.0314745344221592,0.0193921364843845,0.999316453933716,0.0301711373031139,0.0184184350073338,0.99937504529953,0.476572036743164,-0.0138429384678602,0.879026532173157,0.451423078775406,0.0247102752327919,0.891967833042145,0.0283443294465542,0.512846112251282,0.858012497425079,
- 0.0237992145121098,0.0117788715288043,0.999647438526154,0.0306417103856802,0.011816119775176,0.999460577964783,0.999210476875305,0.00621440261602402,0.0392411276698112,0.994724869728088,-0.0941826105117798,0.0406455881893635,0.862800717353821,-0.00796033907681704,0.505481481552124,0.0257371794432402,0.15231591463089,0.987996757030487,0.998735666275024,0.0319413430988789,0.038817286491394,0.0312911048531532,0.00267296703532338,0.999506771564484,0.999010264873505,0.031936950981617,0.0309619456529617,0.998519062995911,-0.0369880571961403,0.0398942641913891,0.991845667362213,-0.0863033458590508,-0.0937765538692474,0.991141557693481,-0.00209123571403325,0.132793471217155,0.994974672794342,0.0315971374511719,-0.0950102657079697,0.998735666275024,0.0319413430988789,0.038817286491394,0.999010264873505,0.031936950981617,0.0309619456529617,0.999371230602264,0.0158320311456919,0.0317255817353725,0.995381832122803,0.0143756661564112,-0.0949123650789261,0.99938702583313,0.0158267896622419,0.0312275141477585,0.838295042514801,0.0148565145209432,-0.545014500617981,0.805761635303497,0.00932545773684978,-0.592166543006897,0.993800580501556,0.0575808212161064,-0.0951046645641327,0.995495557785034,-7.94900115579367e-005,-0.0948084816336632,0.999503791332245,0.000685635954141617,0.0314912311732769,0.999225914478302,0.000257517793215811,-0.0393396019935608,0.987286746501923,0.127407044172287,-0.0950384736061096,0.0167780816555023,-0.705044031143188,-0.708965063095093,0.975739598274231,0.000936393160372972,-0.218932315707207,0.999224901199341,-0.00141490425448865,-0.0393395610153675,0.0315300673246384,0.0063884574919939,-0.999482452869415,0.995495676994324,-0.00105126108974218,-0.094800777733326,0.932057559490204,-0.0277060735970736,0.361249387264252,0.930574238300323,0.00496909720823169,0.36606952548027,0.512241363525391,-0.856785297393799,0.0593966208398342,0.993168234825134,0.108620442450047,0.0426449365913868,0.99693489074707,0.0751894563436508,-0.0216201916337013,0.995988428592682,0.0462129563093185,-0.0766263604164124,0.999695658683777,-0.0202059876173735,-0.0141522157937288,
- 0.998650968074799,-0.0198934506624937,0.0479635670781136,0.997826159000397,-0.0198069512844086,0.0628551915287972,0.999704420566559,-0.0197429955005646,-0.0141888093203306,0.997828304767609,-0.0197004731744528,0.0628553256392479,0.999515175819397,-0.0197399593889713,-0.0240768939256668,0.628941655158997,-0.776743054389954,-0.0332051478326321,0.62937867641449,-0.776086807250977,0.0396459028124809,0.629605412483215,-0.77684074640274,0.0107541866600513,-0.70740407705307,0.0335643775761127,-0.706011950969696,0.0419864356517792,-0.243929013609886,0.968883812427521,0.979327201843262,0.198594927787781,0.038448728621006,0.998020529747009,-0.00165813229978085,0.0628674328327179,0.99888551235199,-0.000212161481613293,0.047199796885252,0.0406124256551266,-0.0914319083094597,0.994982838630676,0.0242934450507164,-0.0859883651137352,0.995999991893768,-0.0308662783354521,-0.0686388611793518,0.997164011001587,0.040608037263155,-0.0910695493221283,0.99501621723175,-0.0324475094676018,0.249199688434601,0.967908501625061,0.857384085655212,-0.0108988806605339,0.514561712741852,0.789939165115356,0.0248799752444029,0.612680315971375,-0.616156041622162,0.0261401198804379,0.78719025850296,-0.0198205132037401,-0.620048224925995,0.784313380718231,-0.590048491954803,-0.0185842048376799,0.807153940200806,0.039287555962801,0.00329652614891529,0.99922251701355,0.0236775055527687,0.0039539597928524,0.999711871147156,0.997160851955414,-0.0415309406816959,0.0628132820129395,0.0397876724600792,-0.0295926444232464,0.998769879341125,-0.0312319435179234,-0.0298134591430426,0.999067485332489,0.0231382772326469,-0.0296578761190176,0.999292254447937,0.997846841812134,-0.0534429252147675,0.0380228795111179,0.998135030269623,-0.0535369031131268,-0.0293295737355947,0.996600747108459,-0.0533472634851933,0.062778003513813,0.996691703796387,-0.0516125038266182,0.0627837330102921,0.023951543495059,0.0217068456113338,0.999477446079254,0.99790894985199,-0.0522459447383881,0.0380536019802094,0.999240338802338,0.0217637363821268,-0.0323289781808853,0.998936414718628,0.023155152797699,0.0398751758038998,
- 0.999272525310516,0.0217843521386385,-0.0313016213476658,0.661512076854706,-0.747583985328674,-0.0593295134603977,0.654200732707977,-0.755854725837708,-0.0265563614666462,0.645811140537262,-0.763461410999298,0.00739111565053463,0.994391620159149,0.0908804759383202,0.0540933907032013,0.993628978729248,0.0951850265264511,-0.0603423379361629,0.994954228401184,0.0914210826158524,0.0413309819996357,0.997789621353149,0.0231025367975235,-0.0623071640729904,0.998288571834564,0.0202451944351196,0.0548643693327904,0.99718850851059,0.0233076438307762,-0.0712174698710442,0.559135317802429,0.827810525894165,-0.0457988865673542,0.560984969139099,0.82570219039917,-0.0592596158385277,0.547941386699677,0.836183369159698,0.0236173719167709,0.999212741851807,0.00429504876956344,0.0394405424594879,0.0230861492455006,-0.0328212603926659,0.99919456243515,0.0324943251907825,-0.0327600091695786,0.998934864997864,0.983691036701202,0.17192217707634,0.0528654716908932,0.983790397644043,0.174128726124763,0.0428451821208,0.037299670279026,-0.206537067890167,0.977727591991425,0.995858013629913,0.0573261901736259,0.0705726146697998,0.99806821346283,0.056517269462347,-0.0258015021681786,0.99687272310257,0.0572279915213585,0.0544951260089874,0.996209263801575,0.0508259460330009,0.0705974996089935,0.997231543064117,0.0505142770707607,0.0545677654445171,0.0307131409645081,0.0240954104810953,0.999237775802612,0.999700784683228,0.00551195768639445,-0.0238319840282202,0.997461020946503,0.00866253580898046,0.0706862062215805,0.999857902526855,0.00578064797446132,-0.0158368274569511,0.705277562141418,-0.707167327404022,0.0499802902340889,0.720090687274933,-0.69378387928009,-0.0115471528843045,0.717614710330963,-0.696440279483795,-0.000333455391228199,0.0230861492455006,-0.0328212603926659,0.99919456243515,-0.0387967154383659,-0.0331514105200768,0.9986971616745,0.0324943251907825,-0.0327600091695786,0.998934864997864,-0.0391199849545956,-0.0137315252795815,0.99914026260376,0.0233894698321819,-0.0142069198191166,0.999625504016876,-0.0313689559698105,-0.0137934545055032,0.999412775039673,
- 0.996874332427979,0.0353677682578564,0.0706446319818497,0.0314598307013512,0.000655091425869614,0.999504804611206,0.0314546898007393,0.000654908770229667,0.99950498342514,-0.0240389853715897,-0.0181032884865999,0.999547123908997,0.0319810882210732,-0.0160398557782173,0.999359786510468,-0.0390395671129227,-0.0186466239392757,0.999063670635223,0.0317350961267948,-0.00812610611319542,0.999463319778442,-0.0238880459219217,-0.0116133075207472,0.999647259712219,0.0317988619208336,-0.00812209025025368,0.99946129322052,0.00709930062294006,-0.189554154872894,0.98184460401535,0.961026430130005,-0.267936795949936,0.0681042373180389,0.0386265590786934,-0.197477653622627,0.979546129703522,0.0398158244788647,0.0642650425434113,0.997138321399689,0.0281813442707062,0.0812312588095665,0.996296763420105,-0.0197893939912319,0.150639772415161,0.988390684127808,0.719514608383179,-0.694381654262543,-0.0115288384258747,0.705328345298767,-0.707116425037384,0.0499838888645172,0.705321192741394,-0.707121551036835,0.0500117391347885,0.0272075459361076,-0.035490483045578,0.99899959564209,0.696409583091736,-0.715924441814423,0.0496591813862324,0.696421325206757,-0.715934157371521,0.0493526868522167,0.99848335981369,-0.000847632240038365,0.0550478585064411,0.998486042022705,-0.000847728573717177,0.05500128865242,0.999720871448517,-0.00100744655355811,-0.0236075222492218,0.999306201934814,-0.0289948806166649,-0.0233773551881313,0.998119175434113,-0.029278626665473,0.053861740976572,0.999273419380188,-0.0289882831275463,-0.0247461553663015,0.607192575931549,-0.79455178976059,0.00218573957681656,0.793415725231171,-0.304549723863602,-0.527011394500732,0.637901484966278,-0.768782436847687,-0.0453355610370636,0.953294396400452,0.169051125645638,0.250302791595459,0.916876137256622,0.393671959638596,0.0660353824496269,0.918935060501099,-0.0372491255402565,0.392645984888077,0.825714588165283,0.0691092014312744,0.559838652610779,0.546497821807861,0.835087597370148,0.06299939006567,0.734836339950562,-0.263651788234711,0.624902665615082,0.0472177378833294,-0.00111625553108752,0.99888402223587,
- 0.995855867862701,-0.0716457664966583,0.0560179688036442,0.0317302271723747,1.37370091124467e-006,0.999496579170227,0.922468185424805,0.383464157581329,0.044805895537138,0.0403136797249317,0.235475271940231,0.971043884754181,0.919676542282104,0.38710218667984,0.06593107432127,0.0403136797249317,0.235475271940231,0.971043884754181,-0.0826239734888077,0.187466770410538,0.978789806365967,0.919676542282104,0.38710218667984,0.06593107432127,-0.0238115582615137,-0.00834101159125566,0.999681651592255,0.0474725738167763,-0.0120732458308339,0.998799562454224,0.0303098894655705,-0.0111791295930743,0.999478042125702,0.051126915961504,-0.212903425097466,0.975734710693359,0.142385900020599,-0.163898214697838,0.976147413253784,0.360868483781815,-0.0354401059448719,0.93194317817688,0.0470886714756489,0.00434211967512965,0.998881280422211,-0.0234318301081657,0.00774801289662719,0.999695420265198,-0.0160366166383028,0.00739239994436502,0.999844193458557,-0.264790028333664,-0.022187577560544,0.964050889015198,0.0259035974740982,0.559825539588928,0.828205525875092,-0.0321535542607307,0.462229311466217,0.886177361011505,-0.015699764713645,-0.0011763604125008,0.999876081943512,-0.0236327685415745,-0.000733454362489283,0.999720454216003,-0.997681319713593,0.0555805526673794,0.0392787903547287,-0.998526871204376,-0.0373992472887039,0.0393120795488358,-0.0240389853715897,-0.0181032884865999,0.999547123908997,-0.0390395671129227,-0.0186466239392757,0.999063670635223,-0.0390686169266701,-0.016877893358469,0.999094009399414,-0.031342227011919,-0.0169945526868105,0.99936431646347,-0.99913090467453,0.0137886041775346,0.0393358618021011,-0.0333133116364479,0.500005602836609,0.865381181240082,-0.372456759214401,-0.92727118730545,0.0380035825073719,-0.263718217611313,-0.0225903168320656,0.964335203170776,-0.0148000121116638,-0.0239214021712542,0.999604284763336,-0.998420000076294,0.0401547029614449,0.0393078736960888,-0.99892657995224,0.0405925028026104,0.0223181862384081,-0.326931029558182,-0.944665431976318,0.0268945097923279,-0.510289967060089,0.0750231668353081,0.856723785400391,
- -0.33278551697731,-0.942255139350891,0.0375384017825127,-0.775746583938599,0.330516964197159,-0.537564873695374,-0.557925820350647,0.828372001647949,-0.050185538828373,-0.714961409568787,-0.0499089732766151,-0.697380304336548,-0.999716997146606,0.0037146641407162,0.0234983619302511,-0.99922114610672,0.00308933947235346,-0.0393394157290459,-0.999495446681976,0.00316705205477774,-0.0316048562526703,-0.998328924179077,0.0423628278076649,-0.0393042862415314,-0.998861253261566,0.0421947054564953,0.0222661811858416,-0.998339176177979,0.0421198531985283,0.0393046922981739,-0.511103630065918,0.858070611953735,-0.0498800575733185,-0.0393358990550041,-0.791074872016907,-0.610453248023987,-0.610830366611481,-0.00891920924186707,-0.791711330413818,-0.999456644058228,0.00860268995165825,-0.0318176373839378,-0.999188780784607,0.00861949194222689,-0.0393381416797638,-0.0235291849821806,0.00273784645833075,-0.999719381332397,-0.039335560053587,-0.807900309562683,-0.588005125522614,-0.321276724338531,-0.434487521648407,-0.841428518295288,-0.503899037837982,0.0288183987140656,-0.863281726837158,-0.0152716841548681,0.242624148726463,-0.970000207424164,0.0340181216597557,0.202957972884178,-0.978596389293671,0.166448041796684,0.0916691273450851,-0.981779932975769,0.76774126291275,-0.639295041561127,-0.0433047153055668,0.166448041796684,0.0916691273450851,-0.981779932975769,0.0340181216597557,0.202957972884178,-0.978596389293671,0.0315283089876175,0.00305105606094003,-0.999498307704926,0.989219963550568,-0.039520375430584,-0.141003474593163,0.99886554479599,-0.0404134392738342,-0.0251863282173872,-0.023813808336854,-0.00631614355370402,-0.999696493148804,-0.999222934246063,-0.00244213524274528,-0.0393394865095615,-0.0235155876725912,-0.00631553214043379,-0.999703586101532,-0.0236038956791162,-0.000734260363969952,-0.999721169471741,0.0314844287931919,0.000252876488957554,-0.999504208564758,-0.023638591170311,-0.000734881847165525,-0.999720394611359,0.98929089307785,-0.0376101545989513,-0.141028761863709,0.031546164304018,0.00419445941224694,-0.999493479728699,
- 0.0236506517976522,0.00450190156698227,-0.999710202217102,0.031546164304018,0.00419445941224694,-0.999493479728699,-0.0237147565931082,0.00633914628997445,-0.99969869852066,0.0236506517976522,0.00450190156698227,-0.999710202217102,0.807712256908417,-0.579073667526245,-0.110791638493538,0.0248038563877344,0.394823640584946,-0.918422043323517,0.789569973945618,-0.613654375076294,-0.0027703249361366,-0.99825656414032,0.0440375320613384,-0.039301436394453,-0.984370112419128,0.114888459444046,-0.133477315306664,-0.0283299498260021,0.602289855480194,-0.797774612903595,-0.969835698604584,-0.240750625729561,-0.038182508200407,-0.962861478328705,-0.267321527004242,0.0379079319536686,-0.968243896961212,-0.197236135601997,-0.153628125786781,-0.0254234112799168,0.127026528120041,-0.991573452949524,-0.03020896948874,0.128472611308098,-0.991252899169922,0.0243472754955292,0.111809849739075,-0.993431389331818,-0.0272990446537733,0.306056648492813,-0.951621830463409,-0.98286247253418,0.128378421068192,-0.132288947701454,-0.0275618731975555,0.306075364351273,-0.951608300209045,0.0158110335469246,-0.00275290524587035,-0.999871253967285,0.998897254467011,-0.0444795414805412,-0.0150301996618509,0.0235909633338451,-0.00309877912513912,-0.999716997146606,0.0235909633338451,-0.00309877912513912,-0.999716997146606,-0.0314855463802814,-0.000647558947093785,-0.999504089355469,0.0158110335469246,-0.00275290524587035,-0.999871253967285,0.999700784683228,0.00551195768639445,-0.0238319840282202,0.999857902526855,0.00578064797446132,-0.0158368274569511,0.0165250338613987,-0.0333551019430161,-0.999306976795197,-0.90214616060257,0.429673254489899,-0.0389008186757565,-0.0313962399959564,-0.479582458734512,-0.876935005187988,-0.911467552185059,0.398380130529404,-0.102567948400974,-0.625135719776154,0.779910027980804,-0.0307526681572199,-0.625755548477173,0.779277861118317,-0.0340007916092873,-0.613597512245178,0.78924947977066,0.0241573825478554,-0.998970806598663,0.0222877934575081,-0.0395050533115864,-0.0311639364808798,-0.0100091546773911,-0.999464154243469,
- -0.0315575413405895,-0.010000073350966,-0.99945193529129,0.0158551298081875,-0.00462475651875138,-0.999863624572754,-0.0315121412277222,-0.00406061252579093,-0.999495208263397,-0.0313523672521114,-0.0040625324472785,-0.999500215053558,-0.998901069164276,-0.025807024911046,-0.0391236059367657,-0.998942613601685,-0.023811224848032,0.0393284484744072,-0.99918919801712,-0.0256091244518757,-0.031067231670022,-0.0312148910015821,-0.00840444304049015,-0.999477386474609,-0.999185919761658,-0.00926062278449535,-0.0392651073634624,-0.99946665763855,-0.00919866375625134,-0.0313344039022923,0.235516712069511,-0.174141630530357,-0.956141531467438,0.139273032546043,0.989352703094482,-0.0422408096492291,0.028348196297884,-0.856545746326447,-0.515292048454285,0.176837950944901,-0.128175020217896,-0.975858330726624,0.621664583683014,0.769933819770813,-0.143997475504875,0.610023260116577,0.791073083877563,-0.0455546043813229,-0.0246021710336208,-0.198643952608109,-0.97976291179657,-0.0129060782492161,-0.18683534860611,-0.982306480407715,0.0191986169666052,-0.154169455170631,-0.98785799741745,-0.00721432734280825,-0.280469685792923,-0.959835767745972,0.0635982602834702,-0.0396347567439079,-0.997188210487366,0.0199473854154348,-0.190059363842011,-0.981569945812225,0.689402878284454,0.724304795265198,0.0103071006014943,0.0129060782492161,0.18683534860611,0.982306480407715,0.0246021710336208,0.198643952608109,0.97976291179657,0.683756768703461,-0.721645295619965,-0.108188644051552,-0.516750693321228,0.395472288131714,0.759322285652161,0.0387295670807362,0.175423100590706,-0.983731031417847,0.0375130511820316,-0.301172524690628,-0.952831506729126,0.736203491687775,-0.570599734783173,-0.363896250724792,-0.00753942504525185,-0.275221049785614,-0.96135139465332,0.0306117162108421,0.035950168967247,-0.998884677886963,0.982041358947754,-0.014934103935957,-0.188074037432671,0.0393144600093365,0.0357458032667637,-0.998587310314178,0.981580436229706,0.0258603300899267,-0.189290955662727,0.0308775566518307,0.0251263920217752,-0.999207317829132,0.983311891555786,0.0256729889661074,-0.180107861757278,
- 0.0159037560224533,0.489339053630829,-0.871948599815369,0.680086731910706,-0.732627391815186,-0.0271887741982937,0.707511067390442,-0.690103948116302,-0.152265340089798,0.031915508210659,-0.0186681542545557,-0.999316215515137,0.984790682792664,0.00580480974167585,-0.173648238182068,0.99946928024292,0.00863954145461321,-0.0314113199710846,-0.031642634421587,0.0215464271605015,-0.999267041683197,0.0393313132226467,0.0205266699194908,-0.999015390872955,-0.0247917789965868,0.021452633664012,-0.999462485313416,0.0393268242478371,0.0254855938255787,-0.9989013671875,-0.0316747017204762,0.0260519590228796,-0.99915874004364,0.0308669805526733,0.0255599096417427,-0.999196648597717,-0.999427855014801,0.0118953250348568,-0.0316653735935688,-0.0316631570458412,0.0244200155138969,-0.999200224876404,-0.0249498039484024,0.024349857121706,-0.999392092227936,0.984908282756805,-0.00845079589635134,-0.172870621085167,0.0314193926751614,0.00258284411393106,-0.999503016471863,0.0314600355923176,0.00258247135207057,-0.999501705169678,0.0312994010746479,0.00763318361714482,-0.999480903148651,-0.0315471366047859,0.00862620491534472,-0.999465048313141,0.0314195044338703,0.00763125484809279,-0.99947714805603,0.0307347178459167,-0.540704369544983,-0.840651094913483,-0.698556959629059,-0.708636462688446,-0.0992603674530983,0.780661880970001,0.601087689399719,-0.171057403087616,0.0324131473898888,-0.196995556354523,-0.979868471622467,-0.0290312115103006,-0.216468259692192,-0.9758580327034,-0.257465749979019,-0.281133621931076,-0.924486458301544,0.0025795130059123,-0.0198589079082012,-0.999799489974976,0.707424283027649,-0.706000089645386,-0.0333879776299,0.704836785793304,-0.704305529594421,-0.0846101716160774,-0.999378442764282,0.0153847578912973,-0.0317187644541264,-0.999393820762634,0.0153768174350262,-0.0312348138540983,-0.0316120833158493,0.0173350181430578,-0.99934995174408,0.219613134860992,-0.975178778171539,-0.0282234307378531,0.269668906927109,0.251812487840652,-0.929445624351501,0.0563867203891277,0.769073009490967,-0.636668860912323,
- -0.15404899418354,-0.177621826529503,-0.971966743469238,-0.0269089415669441,-0.341113090515137,-0.939637124538422,-0.0518863275647163,-0.310296982526779,-0.94922262430191,-0.0198962427675724,0.158013731241226,-0.987236499786377,0.0324132181704044,0.0198953896760941,-0.999276578426361,0.0350184068083763,0.0129556311294436,-0.999302685260773,-0.0518863275647163,-0.310296982526779,-0.94922262430191,-0.0269089415669441,-0.341113090515137,-0.939637124538422,-0.585532128810883,0.810629367828369,-0.00567613914608955,0.0314797833561897,-0.00653374474495649,-0.999483048915863,0.999676585197449,-0.00889538414776325,-0.0238245353102684,0.0311715267598629,-0.00653110817074776,-0.999492704868317,0.0320968441665173,0.0131172835826874,-0.999398767948151,-0.0303676389157772,0.0156637709587812,-0.999416053295136,0.0314777344465256,0.0131427980959415,-0.999418079853058,0.999704420566559,-0.0197429955005646,-0.0141888093203306,0.999515175819397,-0.0197399593889713,-0.0240768939256668,0.0314804464578629,-0.000692670466378331,-0.999504148960114,0.31411799788475,0.00753034744411707,-0.94935405254364,0.672770857810974,0.736663699150085,-0.0685998350381851,0.0298866331577301,-0.314156889915466,-0.948900580406189,-0.0259707197546959,0.172011986374855,-0.984752476215363,-0.280812591314316,0.0217438600957394,-0.959516286849976,0.0308232065290213,0.203273251652718,-0.978636801242828,0.0314685963094234,0.0274461749941111,-0.999127864837646,-0.0295937769114971,0.0264927092939615,-0.999210953712463,-0.0240255184471607,0.0265838205814362,-0.99935781955719,-0.476235598325729,-0.0138458060100675,-0.87920868396759,-0.451078325510025,0.0247048810124397,-0.892142415046692,-0.0283437222242355,0.512476027011871,-0.858233690261841,-0.0302253514528275,0.0176587831228971,-0.999387204647064,-0.999142408370972,0.0135630648583174,-0.0391227230429649,-0.0238885041326284,0.0175800360739231,-0.999560058116913,-0.994724333286285,-0.0941882207989693,-0.0406456552445889,-0.862622201442719,-0.00796513725072145,-0.505786240100861,-0.0257355514913797,0.152181401848793,-0.988017499446869,
- -0.999010264873505,0.0319363549351692,-0.0309619549661875,-0.998735785484314,0.0319406129419804,-0.0388173013925552,-0.0312923789024353,0.00265500182285905,-0.999506771564484,-0.998445928096771,-0.0388847663998604,-0.0399212576448917,-0.991682529449463,-0.0881900861859322,0.093746043741703,-0.99048787355423,-0.00216666026972234,-0.137582927942276,-0.994974613189697,0.0315988101065159,0.0950102731585503,-0.998735785484314,0.0319406129419804,-0.0388173013925552,-0.999010264873505,0.0319363549351692,-0.0309619549661875,-0.999313235282898,0.0190631132572889,-0.031774640083313,-0.99532824754715,0.0175939667969942,0.094932809472084,-0.999332368373871,0.0190568715333939,-0.0311749279499054,-0.863330245018005,0.013063158839941,0.50447028875351,-0.837875306606293,0.00859518069773912,0.545794010162354,-0.994195520877838,0.050341010093689,0.0950848236680031,-0.995495438575745,-0.00162112223915756,0.0947962328791618,-0.999504446983337,-0.000858839834108949,-0.0314669273793697,-0.999225080013275,-0.0012883844319731,0.0393395684659481,-0.987289786338806,0.127383306622505,0.095038577914238,-0.0167744960635901,-0.705135524272919,0.708874106407166,-0.975751101970673,0.000934281386435032,0.218880981206894,-0.995494425296783,-0.00237858598120511,0.0947901159524918,-0.99922251701355,-0.00260567851364613,0.03933946788311,-0.0315102823078632,0.00382073665969074,0.999496221542358
- }
- BinormalsW: *4028 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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: *12084 {
- a: 0.999999940395355,-0.000476084707770497,0,0.999999940395355,-0.00028425149503164,-0,1,0,-0,1,-0.000166321566211991,-0,1,-1.78571291087337e-009,-0,1,0.000213302570045926,-0,0.999999940395355,-9.99173644231632e-005,0,0.999999642372131,0.000950704328715801,-0,1,-0.000173302003531717,-0,0.99999988079071,-0.00041368865640834,-0,0.999999940395355,-9.99173644231632e-005,0,1,0.000213302570045926,-0,1,0,-0,0.999999940395355,-0.00028425149503164,-0,0.99999988079071,-0.00041368865640834,-0,1,-0.000173302003531717,-0,0.99999874830246,0.00159261864610016,-0,1,-0,0,1,-0,0,1,-0,0,0.99999874830246,0.00159261864610016,-0,1,-0,0,1,-0,-0,1,3.43785613949876e-005,0,1,3.43785613949876e-005,0,1,-0,-0,1,-0,0,1,-0.000166252400958911,0,0.999994933605194,-0.00318331341259182,0,1,-0.000166252400958911,0,1,-0,0,1,-0,0,1,-0,0,0.99999874830246,0.00159261864610016,-0,0.999999582767487,0.000881035812199116,0,0.999961376190186,0.00878970697522163,-0,1,0.00012032495578751,0,0.999994814395905,-0.00324196950532496,0,0.999999582767487,0.000881035812199116,0,0.99999874830246,0.00159261864610016,-0,1,3.43785613949876e-005,0,1,-0.000166252400958911,0,0.999982893466949,-0.00584475975483656,0,0.999997854232788,-0.0020931214094162,0,1,0.00012032495578751,0,1,3.43785613949876e-005,0,0.999964892864227,-0.00837212707847357,0,0.999982893466949,-0.00584475975483656,0,1,-0.000166252400958911,0,0.999994933605194,-0.00318331341259182,0,0.999999821186066,-0.000561516149900854,0,0.999965012073517,0.00836140383034945,0,0.999961376190186,0.00878970697522163,-0,0.999999582767487,0.000881035812199116,0,0.999999821186066,-0.000561516149900854,0,0.999999582767487,0.000881035812199116,0,0.999967277050018,-0.00809251796454191,-0,0.99999988079071,0.000468125101178885,0,0.99998939037323,-0.00461799325421453,0,0.999987185001373,-0.00505618844181299,0,0.999982893466949,-0.00584475975483656,0,0.999964892864227,-0.00837212707847357,0,0.99999874830246,0.00160763715393841,0,0.999999523162842,0.000940059951972216,0,0.99999988079071,-0.000505111180245876,0,0.99999988079071,-0.000505111180245876,0,
- 0.999999523162842,0.000940059951972216,0,0.999995112419128,0.00313678290694952,0,1,0.000286438502371311,-0,0.999999463558197,-0.00104676722548902,0,0.999998092651367,-0.00194134749472141,0,0.999987185001373,-0.00505618844181299,0,0.99998939037323,-0.00461799325421453,0,0.999999940395355,-0.00028425149503164,-0,0.999999940395355,-0.000476084707770497,0,0.99999874830246,0.00160763715393841,0,0.99999988079071,-0.000505111180245876,0,0.999999940395355,-0.00028425149503164,-0,0.99999988079071,-0.000505111180245876,0,1,0.000286438502371311,-0,1,-1.53574728756212e-005,-0,0.99999988079071,-0.00041368865640834,-0,0.99999988079071,-0.00041368865640834,-0,1,-1.53574728756212e-005,-0,0.99999862909317,-0.00164736446458846,0,0.999999701976776,-0.000785759068094194,0,0.999999940395355,-9.99173644231632e-005,0,0.999999642372131,0.000950704328715801,-0,0.999999940395355,-9.99173644231632e-005,0,0.999999701976776,-0.000785759068094194,0,0.999999463558197,-0.00104676722548902,0,0,-0.00622495822608471,0.999980568885803,0,-0.00390823092311621,0.999992311000824,0,-0.00192590849474072,0.999998152256012,0,-0.00340652861632407,0.999994277954102,0,-0.00216462183743715,0.999997675418854,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0.00216462183743715,0.999997675418854,0,-0.00821684766560793,0.999966204166412,0,-0.00439478224143386,0.999990403652191,0,-0.0106358462944627,0.999943435192108,0,-0.00989745184779167,0.999951004981995,0,-0.00439478224143386,0.999990403652191,0,-0.00821684766560793,0.999966204166412,0,-0.00989745184779167,0.999951004981995,0,-0.0106358462944627,0.999943435192108,0,-0.00756447343155742,0.999971389770508,0,-0.00977246928960085,0.999952256679535,0,-0.00390823092311621,0.999992311000824,0,-0.00622495822608471,0.999980568885803,0,-0.00977246928960085,0.999952256679535,0,-0.00756447343155742,0.999971389770508,-0,1.77460751729086e-005,-1,0,0.000363965780707076,-1,-0,0.00142037065234035,-0.999998986721039,-0,0.000719037838280201,-0.999999761581421,0,-0,-1,0,-0.000146833001053892,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.000146833001053892,-1,0,-0.000597437960095704,-0.999999821186066,
- 0,-0.000298719009151682,-1,0,-0.000597437960095704,-0.999999821186066,0,-0.00015188600809779,-1,0,0,-1,0,-0.000298719009151682,-1,0,0,-1,0,-0.00015188600809779,-1,0,0,-1,0,4.44685656475485e-006,-1,0,0,-1,0,0.000363965780707076,-1,-0,1.77460751729086e-005,-1,0,4.44685656475485e-006,-1,-1,0,0,-0.99999988079071,0,-0.00057110155466944,-0.999999344348907,0,-0.00114304758608341,-0.99999988079071,0,-0.000571523909457028,-1,0,0,-0.99999988079071,0,-0.000380452780518681,-0.999999821186066,0,-0.00061760371318087,-0.99999988079071,0,-0.00057110155466944,-0.99999988079071,0,-0.000380452780518681,-0.999999940395355,0,-0.000237150903558359,-0.999999940395355,0,-0.000376215379219502,-0.999999821186066,0,-0.00061760371318087,-0.999999940395355,0,-0.00041719333967194,-0.999999940395355,0,-0.000376215379219502,-0.999999940395355,0,-0.000237150903558359,-1,0,-0.00020859666983597,-0.99999988079071,0,-0.000380004028556868,-0.99999988079071,0,-0.000569928262848407,-0.999999344348907,0,-0.00113985629286617,-0.999999701976776,0,-0.000759956252295524,-0.999999940395355,0,-0.000237286178162321,-0.99999988079071,0,-0.000380004028556868,-0.999999701976776,0,-0.000759956252295524,-0.999999821186066,0,-0.00061729020671919,-1,0,0,-0.999999940395355,0,-0.000237286178162321,-0.999999821186066,0,-0.00061729020671919,-1,0,-0.000282064487691969,-0.999999940395355,0,-0.000416399358073249,-1,0,-0.000208199679036625,-1,0,0,-1,0,-0.000282064487691969,-1,0.000155956615344621,0,-1,-0.000270239688688889,0,-1,-0.000179738257429563,0,-0.999999761581421,-0.000814980128780007,0,-0.999999701976776,0.000808751443400979,0,-1,0.000227230935706757,0,-1,-3.83042752218898e-005,0,-1,-7.6574768172577e-005,0,-1,0.000227230935706757,0,-0.999999940395355,0.000227306896704249,0,-0.99999988079071,0.000338021287461743,0,-1,-3.83042752218898e-005,0,-0.999999940395355,0.000227306896704249,0,-1,-0.000179738257429563,0,-1,-0.000270239688688889,0,-0.99999988079071,0.000338021287461743,0,-0.999997198581696,0.00235929666087031,0,-1,0,0,-1,0,0,-1,0,0,-0.999997198581696,0.00235929666087031,0,
- -1,0,0,-1,-0,0,-0.99999988079071,-0.000332970434101298,0,-0.99999988079071,-0.000332970434101298,0,-1,-0,0,-1,0,0,-1,-2.40918780036736e-006,0,-1,0,0,-0.9999960064888,-0.00286102830432355,0,-1,-2.40918780036736e-006,0,-1,0,0,-1,0,0,-0.999997198581696,0.00235929666087031,0,-0.999978542327881,0.00654623843729496,0,-0.999967575073242,0.00804474856704474,0,-0.99999988079071,-0.000332970434101298,0,-0.999999344348907,-0.00116540014278144,0,-0.999999940395355,0.000419638818129897,0,-0.999978542327881,0.00654623843729496,0,-0.999997198581696,0.00235929666087031,0,-1,-2.40918780036736e-006,0,-0.999988913536072,-0.00469586858525872,3.59554097606463e-009,-1,-0.000113728463475127,0,-0.999999344348907,-0.00116540014278144,0,-0.99999988079071,-0.000332970434101298,0,-0.999933063983917,-0.011569345369935,4.57732918235365e-009,-0.999988913536072,-0.00469586858525872,3.59554097606463e-009,-1,-2.40918780036736e-006,0,-0.9999960064888,-0.00286102830432355,0,-0.999994218349457,0.00337222032248974,0,-0.999958634376526,0.00908942800015211,0,-0.999967575073242,0.00804474856704474,0,-0.999978542327881,0.00654623843729496,0,-0.999994218349457,0.00337222032248974,0,-0.999978542327881,0.00654623843729496,0,-0.999998033046722,0.00196098070591688,0,-0.999996364116669,0.00269239884801209,0,-0.999933063983917,-0.011569345369935,4.57732918235365e-009,-0.999974370002747,-0.0071581294760108,4.5775205848031e-009,-0.999991536140442,-0.00411003734916449,3.79864806276942e-009,-0.999988913536072,-0.00469586858525872,3.59554097606463e-009,-0.999994575977325,0.00328929419629276,0,-0.999993920326233,0.00348115502856672,0,-0.999999463558197,0.000907652603928,0,-0.999974250793457,0.0071881115436554,0,-0.999993920326233,0.00348115502856672,0,-0.999994218349457,0.00337222032248974,0,-0.999996364116669,0.00269239884801209,0,-0.999995887279511,-0.0028674325440079,0,-0.999996900558472,-0.00246748817153275,0,-0.999991536140442,-0.00411003734916449,3.79864806276942e-009,-0.999974370002747,-0.0071581294760108,4.5775205848031e-009,-1,-0.000270239688688889,0,-1,0.000155956615344621,0,
- -0.999994575977325,0.00328929419629276,0,-0.999999463558197,0.000907652603928,0,-1,-0.000270239688688889,0,-0.999999463558197,0.000907652603928,0,-0.999997138977051,0.00240172701887786,0,-1,5.88060720474459e-005,0,-0.99999988079071,0.000338021287461743,0,-0.99999988079071,0.000338021287461743,0,-1,5.88060720474459e-005,0,-1,-5.33239199285163e-006,0,-0.999999761581421,-0.000670827401336282,0,-1,-3.83042752218898e-005,0,-0.999995887279511,-0.0028674325440079,0,-1,-7.6574768172577e-005,0,-1,-3.83042752218898e-005,0,-0.999999761581421,-0.000670827401336282,0,0.999982893466949,-0.00584475975483656,0,0.99998152256012,-0.00606846995651722,0,0.999997854232788,-0.0020931214094162,0,0.999998092651367,-0.00194134749472141,0,0.999999046325684,-0.00143434957135469,0,0.999993622303009,-0.00357237691059709,0,0.999987185001373,-0.00505618844181299,0,-0.999988913536072,-0.00469586858525872,3.59554097606463e-009,-0.999995589256287,-0.00297538819722831,0,-1,-0.000113728463475127,0,-1,-5.33239199285163e-006,0,-0.999999523162842,-0.00100141169968992,0,-0.999996900558472,-0.00246748817153275,0,-0.999999761581421,-0.000670827401336282,0,-0.057002104818821,-0.0519863478839397,-0.997019708156586,-0.0156550146639347,-0.0853244736790657,-0.99623030424118,-0.0158483050763607,-0.0863779485225677,-0.996136426925659,-0.0601171515882015,-0.0548272952437401,-0.996684372425079,-2.01323953064048e-008,2.97711108032672e-006,1,-2.32750210216182e-007,1.26855752569099e-006,1,-3.9118546624195e-007,2.13207658816827e-006,1,-1.78981416354418e-008,2.64671712102427e-006,1,3.58691613655537e-006,0,1,2.90369757749431e-006,0,1,4.92040385324799e-007,-4.48744572167925e-007,1,1.88259389233281e-006,-1.71693989159394e-006,1,0,2.11127348848095e-006,1,0,2.32425395552127e-006,1,0,2.68599933406222e-006,1,0,2.39837390836328e-006,1,0,-0.0980566143989563,-0.99518084526062,0,-0.0962710008025169,-0.995355069637299,-0.000607803172897547,-0.0898799002170563,-0.995952546596527,-0.000637358520179987,-0.0942504405975342,-0.99554830789566,1,-0,-9.38132529881841e-007,1,-0,-9.38132529881841e-007,
- 1,0,7.8177762929954e-008,1,0,-4.6906629336263e-007,1,0,-4.6906629336263e-007,1,0,7.8177762929954e-008,1,-0,7.03599539519928e-007,1,0,5.86332930652134e-007,-0.0601171515882015,-0.0548272952437401,-0.996684372425079,-0.0794878005981445,0,-0.996835827827454,-0.0782759785652161,0,-0.996931731700897,-0.057002104818821,-0.0519863478839397,-0.997019708156586,-0.0158483050763607,-0.0863779485225677,-0.996136426925659,-0.0156550146639347,-0.0853244736790657,-0.99623030424118,-0.000637358520179987,-0.0942504405975342,-0.99554830789566,-0.000607803172897547,-0.0898799002170563,-0.995952546596527,-3.9118546624195e-007,2.13207658816827e-006,1,-2.32750210216182e-007,1.26855752569099e-006,1,1.88259389233281e-006,-1.71693989159394e-006,1,4.92040385324799e-007,-4.48744572167925e-007,1,0.999967277050018,-0.00809251796454191,-0,0.999999582767487,0.000881035812199116,0,0.999994814395905,-0.00324196950532496,0,0.999993622303009,-0.00357237691059709,0,0.99998152256012,-0.00606846995651722,0,0.999982893466949,-0.00584475975483656,0,0.999987185001373,-0.00505618844181299,0,-0.999998033046722,0.00196098070591688,0,-0.999978542327881,0.00654623843729496,0,-0.999999940395355,0.000419638818129897,0,-0.999983429908752,-0.0057738502509892,0,-0.999995589256287,-0.00297538819722831,0,-0.999988913536072,-0.00469586858525872,3.59554097606463e-009,-0.999991536140442,-0.00411003734916449,3.79864806276942e-009,0.999995112419128,0.00313678290694952,0,0.999999523162842,0.000940059951972216,0,0.999999821186066,-0.000561516149900854,0,0.99999988079071,0.000468125101178885,0,0,2.39837390836328e-006,1,0,2.68599933406222e-006,1,-2.01323953064048e-008,2.97711108032672e-006,1,-1.78981416354418e-008,2.64671712102427e-006,1,-0.999996900558472,-0.00246748817153275,0,-0.999999523162842,-0.00100141169968992,0,-0.999983429908752,-0.0057738502509892,0,-0.999991536140442,-0.00411003734916449,3.79864806276942e-009,0.99999862909317,-0.00164736446458846,0,0.999999046325684,-0.00143434957135469,0,0.999998092651367,-0.00194134749472141,0,0.999999701976776,-0.000785759068094194,0,
- 0,-0.099748283624649,-0.995012700557709,0,-0.098621554672718,-0.99512505531311,0,-0.0962710008025169,-0.995355069637299,0,-0.0980566143989563,-0.99518084526062,-0.999999463558197,0.000907652603928,0,-0.999993920326233,0.00348115502856672,0,-0.999974250793457,0.0071881115436554,0,-0.999997138977051,0.00240172701887786,0,-0.999995887279511,-0.0028674325440079,0,-0.999999761581421,-0.000670827401336282,0,-0.999996900558472,-0.00246748817153275,0,0.999965012073517,0.00836140383034945,0,0.999999821186066,-0.000561516149900854,0,0.999999523162842,0.000940059951972216,0,0.99999874830246,0.00160763715393841,0,0.999999463558197,-0.00104676722548902,0,0.999999701976776,-0.000785759068094194,0,0.999998092651367,-0.00194134749472141,0,-0.999958634376526,0.00908942800015211,0,-0.999994218349457,0.00337222032248974,0,-0.999993920326233,0.00348115502856672,0,-0.999994575977325,0.00328929419629276,0,-1,-0.000104772152553778,-2.36582945944974e-005,-1,5.87342365179211e-005,0.000218918503378518,-1,5.62825880479068e-005,0.000223314578761347,-1,-0.000178843838511966,-4.03842896048445e-005,-1,-0.000162511511007324,-3.96369978261646e-005,-0.999999701976776,0.000192452644114383,0.000717323448043317,-1,-8.49784846650437e-005,4.0147365325538e-006,-1,-0.000171202686033212,-4.17567389376927e-005,-1,-0.000166897021699697,-3.76863645215053e-005,-1,1.02378708106698e-005,-4.8367894578405e-007,-1,1.02378708106698e-005,-4.8367894578405e-007,-1,9.68460062722443e-006,2.36209757531469e-006,-1,1.02378708106698e-005,-4.8367894578405e-007,-1,1.02378708106698e-005,-4.8367894578405e-007,-1,1.58792037296962e-008,-4.03340237653538e-007,-1,4.83209760204772e-006,-0.00012273590255063,-1,4.83209760204772e-006,-0.00012273590255063,-0.999999701976776,0.000760685245040804,-3.59378864231985e-005,-1,-4.1975357589763e-007,-1.06617562778411e-005,-1,3.61332723741725e-007,-9.17783563636476e-006,-1,3.61332723741725e-007,-9.17783563636476e-006,-1,3.20548952004174e-006,-8.14194427221082e-005,-1,-3.17589137921459e-006,-8.06676325737499e-005,-1,-3.17589137921459e-006,-8.06676325737499e-005,
- -1,-6.14350983596523e-006,-0.000156045571202412,-1,-6.14350983596523e-006,-0.000156045571202412,-0.99999988079071,-0.000513655540999025,-2.4267190383398e-005,-1,-1.01709565569763e-005,-4.80517655887525e-007,-1,-1.01709565569763e-005,-4.80517655887525e-007,-1,-1.57754183049974e-008,-4.0070403883874e-007,-1,-9.58482632995583e-006,2.41568841374828e-006,-1,-1.01709565569763e-005,-4.80517655887525e-007,-1,-1.01709565569763e-005,-4.80517655887525e-007,-1,0.000426449114456773,-0.000107478939753491,-1,0.00041691487422213,-9.41419712034985e-005,-1,0.000277585932053626,1.31143060571048e-005,-0.999999642372131,-0.000211200414923951,0.000811801583040506,-0.999999940395355,0.00039209783426486,-8.85384579305537e-005,-0.999999940395355,0.000361961108865216,-9.12262185011059e-005,-1,-4.16037983086426e-005,0.000165073477546684,-1,-4.36151785834227e-005,0.000167645834153518,-1,-0.000413518340792507,0.000104220074717887,-1,-2.51820365519961e-005,-9.99157273327e-005,-1,3.67612665286288e-005,-0.000141301105031744,-1,3.55841257260181e-005,-0.000141188676934689,-1,-2.95945710604428e-006,-1.17422687253566e-005,-1,-2.84187854049378e-006,-1.09234733827179e-005,-1,1.57126924023032e-005,-6.0395661421353e-005,1,-0.000149356652400456,3.37257697538007e-005,1,6.54754257993773e-005,-0.000244044756982476,1,6.28827619948424e-005,-0.000249502307269722,0.999999701976776,0.000192198596778326,-0.000716376584023237,1,-0.00017674190166872,3.99096570617985e-005,1,-0.000160455660079606,3.91355715692043e-005,1,-0.000170822342624888,4.16639704781119e-005,1,-0.00016651360783726,3.75997842638753e-005,1,-8.45764152472839e-005,-3.99574128095992e-006,1,-7.72236126067583e-006,1.88350270491355e-006,1,-8.16353076515952e-006,-3.85678646352972e-007,1,-8.16353076515952e-006,-3.85678646352972e-007,1,-1.26618484586061e-008,-3.21617704912569e-007,1,-8.16353076515952e-006,-3.85678646352972e-007,1,-8.16353076515952e-006,-3.85678646352972e-007,0.999999701976776,0.000759205839131027,3.58679935743567e-005,1,4.67191739517148e-006,0.000118667318020016,1,4.67191739517148e-006,0.000118667318020016,
- 1,1.92200090509687e-007,4.88186651637079e-006,1,-2.51451240274037e-007,6.38687697573914e-006,1,1.92200090509687e-007,4.88186651637079e-006,1,-3.26078293255705e-006,8.28238771646284e-005,1,-3.26078293255705e-006,8.28238771646284e-005,1,3.29038266499992e-006,8.35757309687324e-005,1,-6.21381786913844e-006,0.000157831382239237,0.99999988079071,-0.00051374058239162,2.4271206712001e-005,1,-6.21381786913844e-006,0.000157831382239237,1,-8.73151111591142e-006,4.1251237803408e-007,1,7.06590412846708e-008,-1.79473227035487e-006,1,-8.73151111591142e-006,4.1251237803408e-007,1,-8.73151111591142e-006,4.1251237803408e-007,1,-8.73151111591142e-006,4.1251237803408e-007,1,-8.84937526279828e-006,-2.15838394979073e-006,1,0.000176958710653707,-8.36025992612122e-006,1,0.000268233940005302,6.54228933854029e-005,1,0.000264085072558373,5.96320533077233e-005,0.999999463558197,-0.000285392714431509,-0.00109697820153087,1,0.000267287978203967,6.0355643654475e-005,1,0.0002425644925097,5.91621428611688e-005,1,0.000177699228515849,4.01256438635755e-005,1,9.71915596892359e-006,3.73580005543772e-005,1,9.08841320779175e-006,3.60606391041074e-005,1,-2.79288797173649e-005,-0.000110814631625544,1,-2.88588817056734e-005,-0.00011092632485088,1,1.98027901205933e-005,-7.61169721954502e-005,1,-5.57757739443332e-005,0.000214388128370047,1,6.56911433907226e-005,0.000252500321948901,1,-5.43950482096989e-005,0.000215825391933322,0,0.999994337558746,0.0033715246245265,0,0.999994337558746,0.0033715246245265,0,0.999994337558746,0.0033715246245265,0,0.999831199645996,0.0183745007961988,0,0.999831199645996,0.0183745007961988,0,0.999831199645996,0.0183745007961988,0,0.999816477298737,-0.0191570818424225,0,0.999816477298737,-0.0191570818424225,0,0.999816477298737,-0.0191570818424225,0,1,-0,0,1,-0,0,1,-0,0,0.966361463069916,-0.257187783718109,0,0.966361463069916,-0.257187783718109,0,0.966361463069916,-0.257187783718109,-0,0.945637702941895,0.325221985578537,-0,0.945637702941895,0.325221985578537,-0,0.945637702941895,0.325221985578537,0,-1,-0,0,-1,-0,0,-1,-0,0,-0.999820232391357,-0.0189605038613081,
- 0,-0.999820232391357,-0.0189605038613081,0,-0.999820232391357,-0.0189605038613081,0,-0.999817669391632,0.0190954264253378,0,-0.999817669391632,0.0190954264253378,0,-0.999817669391632,0.0190954264253378,0,-0.99999475479126,0.0032438593916595,0,-0.99999475479126,0.0032438593916595,0,-0.99999475479126,0.0032438593916595,0,-0.968696355819702,0.248248606920242,0,-0.968696355819702,0.248248606920242,0,-0.968696355819702,0.248248606920242,0,-0.940529823303223,-0.339711099863052,0,-0.940529823303223,-0.339711099863052,0,-0.940529823303223,-0.339711099863052,0,-1,0,0,-1,0,0,-1,0,0,-0.999821066856384,0.0189180448651314,0,-0.999821066856384,0.0189180448651314,0,-0.999821066856384,0.0189180448651314,0,-0.999818027019501,-0.019075145944953,0,-0.999818027019501,-0.019075145944953,0,-0.999818027019501,-0.019075145944953,0,-0.99999475479126,-0.00324071780778468,0,-0.99999475479126,-0.00324071780778468,0,-0.99999475479126,-0.00324071780778468,0,-0.969470024108887,-0.245209842920303,0,-0.969470024108887,-0.245209842920303,0,-0.969470024108887,-0.245209842920303,0,-0.940598547458649,0.339521080255508,0,-0.940598547458649,0.339521080255508,0,-0.940598547458649,0.339521080255508,0,1,0,0,1,0,0,1,0,0,0.999816715717316,0.0191445108503103,0,0.999816715717316,0.0191445108503103,0,0.999816715717316,0.0191445108503103,0,0.968857645988464,-0.247618794441223,0,0.968857645988464,-0.247618794441223,0,0.968857645988464,-0.247618794441223,0,0.937134444713593,0.348968803882599,0,0.937134444713593,0.348968803882599,0,0.937134444713593,0.348968803882599,0,0.999791145324707,-0.0204381607472897,0,0.999791145324707,-0.0204381607472897,0,0.999791145324707,-0.0204381607472897,0,0.999984860420227,-0.00551925413310528,0,0.999984860420227,-0.00551925413310528,0,0.999984860420227,-0.00551925413310528,0.999423086643219,-0.0311586353927851,0.0135152041912079,0.999159097671509,-0.0395095832645893,0.0109605873003602,0.999817609786987,0.01529486104846,0.0114375278353691,0.999847531318665,0.0154227837920189,0.00820027384907007,0.998851299285889,0.0473617576062679,0.00727848708629608,
- 0.999469399452209,-0.0312634743750095,0.00913883931934834,0.999821245670319,0.0153082450851798,0.0110991075634956,0.99797248840332,0.0624824613332748,0.0121269719675183,0.998858630657196,0.0473405048251152,0.00636368477717042,-0.038917101919651,-0.999153614044189,0.0133240390568972,-0.0474153086543083,-0.998829245567322,0.00958951283246279,0.0153166251257062,-0.999823391437531,0.010887042619288,0.0154329324141145,-0.999849379062653,0.00794323813170195,0.039452463388443,-0.999195218086243,0.00724348938092589,-0.0390470065176487,-0.99919456243515,0.00925078615546227,0.0153069933876395,-0.99982088804245,0.0111307799816132,0.0390850268304348,-0.99917870759964,0.0106984889134765,0.0394521690905094,-0.999195337295532,0.00722413556650281,-0.999440491199493,0.0311933606863022,0.0120684057474136,-0.999174892902374,0.039487399160862,0.00951237138360739,-0.999832212924957,-0.0153519017621875,0.00999452918767929,-0.99982875585556,-0.0153372781351209,0.0103646125644445,-0.998830795288086,-0.0474119670689106,0.00944494362920523,-0.999448835849762,0.0312116332352161,0.0113059859722853,-0.999709665775299,-0.0150010688230395,0.0188567582517862,-0.997862994670868,-0.0622300878167152,0.0199208147823811,-0.99877005815506,-0.0475202575325966,0.0141505403444171,0.999224185943604,0.0238504875451326,-0.0313397198915482,0.999230027198792,-0.0231044739484787,-0.0317109227180481,0.99900233745575,0.0314646437764168,-0.0316904075443745,0.999504804611206,-0.00049552321434021,-0.0314657241106033,0.998997509479523,0.0314644910395145,-0.0318430922925472,0.999201118946075,-0.0230894777923822,-0.0326197519898415,0.998930156230927,0.0314623676240444,-0.0338951200246811,0.999438941478729,-0.000527390860952437,-0.0334893204271793,0.99942934513092,0.00656489888206124,-0.0331374406814575,-0.0317173711955547,0.99897825717926,-0.0321933291852474,0.0230888053774834,0.99919980764389,-0.0326605141162872,-0.0317173711955547,0.99897825717926,-0.0321933291852474,0.000501879956573248,0.999491930007935,-0.0318693816661835,-0.0317185372114182,0.998972773551941,-0.03236323595047,
- 0.0230786260217428,0.999179780483246,-0.033276904374361,-0.0317369997501373,0.998880565166473,-0.0350766554474831,0.000542792258784175,0.999405682086945,-0.0344673097133636,-0.0149214398115873,0.99929267168045,-0.0345208384096622,-0.999087035655975,-0.0238794106990099,-0.0354243218898773,-0.99909371137619,0.0230369977653027,-0.0357912182807922,-0.998864531517029,-0.0314603038132191,-0.0357763506472111,-0.999504804611206,0.00049552321434021,-0.0314657241106033,-0.998997509479523,-0.0314644910395145,-0.0318430922925472,-0.999201118946075,0.0230894777923822,-0.0326197519898415,-0.998930156230927,-0.0314623676240444,-0.0338951200246811,-0.999438941478729,0.000527390860952437,-0.0334893204271793,-0.99942934513092,-0.00656489888206124,-0.0331374406814575,-0.998930513858795,0.0314623787999153,0.0338815823197365,-0.999439418315887,-0.000527177704498172,0.0334757827222347,-0.999429702758789,0.00656543346121907,0.0331239216029644,-0.999504864215851,-0.000495490967296064,0.0314636789262295,-0.998997569084167,0.0314644910395145,0.0318410471081734,-0.99920117855072,-0.0230895131826401,0.0326177030801773,-0.999092996120453,-0.0230366531759501,0.0358120165765285,-0.998863697052002,0.031460277736187,0.0357987657189369,-0.999086260795593,0.023879561573267,0.0354459956288338,0.0317369066178799,0.998881042003632,0.0350626669824123,-0.000542571884579957,0.999406158924103,0.0344533137977123,0.0149217778816819,0.999293148517609,0.0345068536698818,-0.000501847243867815,0.999491989612579,0.0318672992289066,0.031718522310257,0.998972833156586,0.0323611572384834,-0.0230786595493555,0.999179840087891,0.0332748219370842,-0.0230181980878115,0.999052941799164,0.0369238071143627,0.0317463390529156,0.998830676078796,0.0364624075591564,0.0317463390529156,0.998830676078796,0.0364624075591564,0.998911619186401,-0.0314617864787579,0.0344371236860752,0.999420642852783,0.00053592532640323,0.0340312607586384,0.999411404132843,-0.00654346030205488,0.0336783975362778,0.999405026435852,0.000543133704923093,0.0344889909029007,0.998896718025208,-0.0314613170921803,0.034867312759161,
- 0.999098837375641,0.0230393782258034,0.0356476604938507,0.999146699905396,0.0230623036623001,0.0342637412250042,0.998918175697327,-0.0314619950950146,0.0342461988329887,0.999140441417694,-0.0238686315715313,0.0338949300348759,-0.999840617179871,0.015388660132885,-0.00906433165073395,-0.997991025447845,0.0625480189919472,-0.010082664899528,-0.998871743679047,0.0472928732633591,-0.00432138657197356,-0.999468624591827,-0.0312613248825073,-0.00922877062112093,-0.999846756458282,0.015419234521687,-0.00829010643064976,-0.998850524425507,0.0473638474941254,-0.00736838998273015,-0.999863266944885,0.0155212404206395,-0.00570573937147856,-0.999480068683624,-0.0312961861491203,-0.00776824075728655,-0.999209225177765,-0.0394209660589695,-0.00520808389410377,-0.015387418679893,-0.999840259552002,-0.00909572094678879,-0.0391339361667633,-0.999196469783783,-0.0086576659232378,-0.0394205637276173,-0.99920928478241,-0.00518242875114083,0.0390442833304405,-0.999193966388702,-0.00933646131306887,-0.0154295535758138,-0.99984884262085,-0.00802884716540575,-0.0394537933170795,-0.999194622039795,-0.00732918595895171,-0.015528729185462,-0.999864220619202,-0.00551591813564301,0.0390886701643467,-0.999204218387604,-0.00793999154120684,0.0472900159657002,-0.998872399330139,-0.00419915141537786,0.999821245670319,-0.0153082450851798,-0.0110991075634956,0.99797248840332,-0.0624824613332748,-0.0121269719675183,0.998858630657196,-0.0473405048251152,-0.00636368477717042,0.999469637870789,0.0312641859054565,-0.00910892151296139,0.999847769737244,-0.0154239628463984,-0.00817041471600533,0.998851537704468,-0.0473610647022724,-0.00724857999011874,0.999818027019501,-0.0152964619919658,-0.0113970320671797,0.999423682689667,0.0311596151441336,-0.0134746003895998,0.999159574508667,0.0395089611411095,-0.0109199434518814,-0.62792956829071,-0.778039157390594,0.0189611092209816,-0.606907963752747,-0.794522702693939,0.0199098978191614,-0.629480004310608,-0.777010202407837,-0.00317504932172596,-0.607198655605316,-0.793842077255249,0.0335374996066093,-0.615216255187988,-0.788163006305695,0.0175503734499216,
- -0.598206102848053,-0.800624132156372,0.033918485045433,0.0482206381857395,-0.997892260551453,-0.0434259288012981,0.0418189242482185,-0.991804480552673,-0.120727136731148,-0.580301880836487,-0.791455090045929,-0.191959708929062,0.0383011512458324,-0.9919713139534,-0.120523646473885,-0.279747247695923,-0.866868019104004,-0.412651568651199,-0.504736423492432,-0.709740698337555,-0.491436094045639,-0.311972409486771,-0.94991147518158,-0.018478037789464,-0.313153296709061,-0.949049532413483,-0.0352165475487709,-0.318729907274246,-0.943363606929779,-0.0920683741569519,-0.61952418088913,-0.78471839427948,0.0201697219163179,-0.606948673725128,-0.794449329376221,0.0215362701565027,-0.598025918006897,-0.801180779933929,0.0217801220715046,-0.339609682559967,-0.940471529960632,-0.0133622288703918,-0.313654005527496,-0.949449419975281,-0.0129213333129883,-0.311021953821182,-0.950219690799713,-0.0186523012816906,-0.743888139724731,-0.668057084083557,0.018169280141592,-0.295833736658096,-0.794001281261444,0.531078696250916,-0.779339075088501,-0.621481239795685,0.0799476206302643,-0.578549444675446,-0.789860606193542,-0.203472286462784,-0.309273362159729,-0.942050278186798,-0.12996631860733,-0.238831430673599,-0.965976536273956,-0.0992415547370911,-0.332915067672729,-0.90979391336441,0.247876182198524,-0.584828555583954,-0.811067819595337,0.0120334485545754,-0.114787586033344,-0.952381730079651,0.282476305961609,-0.583361506462097,-0.779950439929962,-0.226642623543739,-0.561028003692627,-0.772525012493134,-0.297409981489182,-0.238932818174362,-0.962094247341156,-0.13147634267807,-0.59822553396225,-0.800530612468719,0.035735297948122,-0.596915185451508,-0.801573514938354,0.0342400968074799,-0.619108080863953,-0.784551978111267,0.0344012565910816,-0.330731153488159,-0.943663537502289,-0.0107745639979839,-0.313671141862869,-0.949455738067627,-0.0120096998289227,-0.339627206325531,-0.940477788448334,-0.0124528100714087,-0.330439001321793,-0.943824291229248,-0.00241300091147423,-0.237124502658844,-0.971463084220886,-0.00560496281832457,
- -0.313829094171524,-0.949475228786469,-0.00284397485665977,-0.114206127822399,-0.978032410144806,0.174383983016014,-0.323675394058228,-0.938808619976044,0.117782033979893,-0.338567167520523,-0.930446326732636,0.140149608254433,-0.235105991363525,-0.923534154891968,-0.303001463413239,0.646783709526062,-0.762024343013763,0.0314641185104847,-0.441938132047653,-0.58417022228241,-0.680761218070984,-0.330633908510208,-0.943726003170013,-0.00791600812226534,-0.316452622413635,-0.948595225811005,-0.0049895104020834,-0.237283512949944,-0.971376538276672,-0.0111441435292363,-0.621932923793793,-0.782856166362762,-0.0183213260024786,-0.619108080863953,-0.784551978111267,0.0344012565910816,-0.596915185451508,-0.801573514938354,0.0342400968074799,-0.0305951274931431,-0.999508023262024,-0.0069065154530108,0.0236245058476925,-0.999720335006714,-0.00115148338954896,-0.110301651060581,-0.99388974905014,-0.00411280151456594,0.0235088020563126,-0.999635338783264,0.0132877686992288,-0.0291880238801241,-0.999549865722656,-0.00695116305723786,-0.0328932702541351,-0.999412059783936,-0.00967509020119905,-0.0229548811912537,-0.999629139900208,-0.0146577088162303,0.0238178595900536,-0.999357104301453,-0.0267971139401197,-0.0206442717462778,-0.999714493751526,-0.0120317284017801,0.998592257499695,-0.0387441329658031,-0.0362271592020988,0.0244329180568457,-0.99135833978653,-0.128887012600899,0.940405905246735,-0.336398929357529,-0.0497262477874756,-0.0628992542624474,-0.998018980026245,-0.00135082262568176,-0.110285542905331,-0.993889212608337,-0.00461814366281033,0.0236285887658596,-0.999719500541687,-0.00167253706604242,-0.0598930530250072,-0.992108881473541,0.110148914158344,-0.324140101671219,-0.939401924610138,0.111612878739834,-0.113449141383171,-0.985901415348053,0.122994482517242,0.996429741382599,-0.0380425751209259,-0.0753693357110024,0.035894725471735,-0.995811998844147,-0.0840835720300674,0.0246184151619673,-0.984731316566467,-0.172331631183624,0.027057284489274,-0.961328327655792,-0.274072557687759,0.902231335639954,-0.0287445709109306,-0.430293351411819,
- 0.877261877059937,-0.0389317609369755,-0.47843074798584,-0.0161452684551477,-0.999788761138916,-0.0127178952097893,-0.0631317347288132,-0.997940063476563,-0.0114029264077544,0.0237036887556314,-0.999653935432434,-0.0114071359857917,0.0237036570906639,-0.999654114246368,-0.0114020928740501,0.038841474801302,-0.999166131019592,-0.0125926667824388,-0.016080379486084,-0.999814033508301,-0.0106450142338872,0.0285133272409439,-0.969130992889404,-0.244892105460167,0.737980961799622,-0.0391572266817093,-0.673684537410736,0.262070894241333,-0.965044617652893,-0.00281624752096832,-0.000815846840851009,-0.99987518787384,-0.0157846100628376,-0.016095656901598,-0.999808490276337,-0.0111328521743417,0.0388179272413254,-0.999159336090088,-0.0131839839741588,0.272779673337936,-0.961009323596954,-0.0453030876815319,0.220785990357399,-0.9753098487854,-0.00492836488410831,0.409813404083252,-0.0344394072890282,-0.9115189909935,-0.0157947987318039,-0.99987405538559,-0.00154786615166813,-0.0187214352190495,-0.999686479568481,-0.0166275724768639,-0.0194632858037949,-0.99981027841568,-0.000766271026805043,-0.0632326304912567,-0.99787300825119,-0.0158530343323946,-0.0162821784615517,-0.999721229076386,-0.0170985590666533,-0.0347866974771023,-0.999393939971924,-0.00136955443304032,-0.0197419133037329,-0.99934321641922,-0.0303872395306826,-0.0172898322343826,-0.999850392341614,-0.000680702331010252,-0.0164790637791157,-0.999727785587311,-0.0165222845971584,-0.0880839005112648,-0.995760321617126,-0.0265074744820595,-0.111177712678909,-0.0199691727757454,-0.993599891662598,-0.184226483106613,-0.0319090597331524,-0.982365727424622,0.227542728185654,0.973726987838745,0.00895838532596827,0.206105649471283,0.97295618057251,-0.104291655123234,0.0529598779976368,0.952819347381592,-0.298882156610489,-0.0556341074407101,-0.970760524272919,0.233514562249184,-0.411831617355347,-0.908750653266907,0.067580983042717,-0.313854426145554,-0.923154711723328,0.221992805600166,-0.0234830677509308,-0.9997239112854,-0.000924529857002199,-0.0243013296276331,-0.999250471591949,-0.0301330108195543,
- -0.022918239235878,-0.999737203121185,0.00054137798724696,-0.409530401229858,-0.912154138088226,-0.0161232501268387,-0.421453773975372,-0.906795263290405,0.00995555333793163,-0.391984552145004,-0.917194664478302,0.0714285671710968,-0.173026755452156,-0.98489898443222,0.00597332511097193,-0.322912335395813,-0.881635189056396,-0.34416139125824,-0.225377857685089,-0.969008266925812,0.101133741438389,0.195839658379555,-0.980285048484802,0.0262318886816502,0.145257472991943,-0.97753918170929,0.15270034968853,0.236967325210571,-0.971501469612122,-0.00559752993285656,-0.289494425058365,-0.95717191696167,-0.00386063102632761,-0.330459326505661,-0.943815529346466,-0.00297361635603011,-0.289672672748566,-0.95712548494339,-0.000893367570824921,-0.297939240932465,-0.954417884349823,-0.0178533475846052,-0.294442445039749,-0.9556685090065,-0.00117921456694603,-0.297470986843109,-0.954704999923706,0.00702686654403806,-0.285080105066299,-0.958503484725952,-0.000618532241787761,-0.283493429422379,-0.958801746368408,-0.018184395506978,-0.284544080495834,-0.958656013011932,-0.00365404970943928,-0.0707335099577904,-0.997493445873261,0.00190519390162081,-0.0135408872738481,-0.999908268451691,0.000319862825563177,-0.0153470356017351,-0.999412894248962,-0.030631672590971,-0.030202379450202,-0.999099373817444,-0.0298029575496912,-0.119212813675404,-0.0290755946189165,-0.992442905902863,0.00702145509421825,-0.668992102146149,-0.743236303329468,-0.0153094064444304,-0.999714016914368,-0.0183778367936611,-0.07021164894104,-0.997337222099304,-0.0197181850671768,0.000226140866288915,-0.999503970146179,-0.0314929038286209,-0.838216006755829,-0.0524230636656284,-0.542812764644623,-0.0390465371310711,-0.86652410030365,-0.497605621814728,-0.00259269471280277,-0.879228055477142,-0.476394087076187,-0.860826432704926,-0.0286667700856924,0.508090615272522,-0.836884796619415,-0.0698165744543076,0.542908370494843,-0.0192361529916525,-0.914256989955902,0.404677867889404,-0.0146026480942965,-0.998756885528564,-0.0476591885089874,-0.03254334628582,-0.998388826847076,-0.0464831851422787,
- 0.0216970685869455,-0.998608887195587,-0.0480597503483295,-0.971405506134033,-0.232198938727379,-0.0495498515665531,-0.0313887260854244,-0.9994997382164,0.00387183227576315,-0.997526466846466,-0.0637677535414696,0.0295734982937574,-0.796106100082397,-0.603320598602295,-0.047112450003624,-0.560213625431061,-0.061307180672884,0.826076328754425,-0.548588514328003,-0.0415155924856663,0.835061132907867,-0.03254334628582,-0.998388826847076,-0.0464831851422787,0.00346889672800899,-0.997470378875732,-0.0710000991821289,0.0216970685869455,-0.998608887195587,-0.0480597503483295,-0.0273218769580126,-0.996945738792419,-0.0731619670987129,-0.0335936993360519,-0.994845867156982,-0.0956721901893616,-0.0295060463249683,-0.999417781829834,-0.0171328466385603,-0.0135869216173887,-0.995957612991333,-0.0887920930981636,0.0200260225683451,-0.995844185352325,-0.0888455361127853,-0.0133284404873848,-0.996112704277039,-0.0870748907327652,0.341014266014099,-0.939086973667145,-0.0427194647490978,-0.0225797276943922,-0.971235394477844,-0.237048521637917,0.013277274556458,-0.969560146331787,-0.244492948055267,-0.07021164894104,-0.997337222099304,-0.0197181850671768,-0.0153094064444304,-0.999714016914368,-0.0183778367936611,-0.00896642357110977,-0.99980902671814,-0.017365850508213,-0.273457139730453,-0.961881637573242,-0.00222852593287826,-0.19457046687603,-0.980579257011414,-0.0246345177292824,-0.265207767486572,-0.0421005301177502,0.963271737098694,-0.0195212010294199,-0.999699592590332,-0.0148210385814309,-0.0195746663957834,-0.997167348861694,-0.0726244226098061,-0.0227625221014023,-0.999599456787109,-0.0168171171098948,0.103052750229836,-0.0375097095966339,0.993968486785889,0.137564435601234,-0.0210106913000345,0.990269958972931,0.107131019234657,-0.994029104709625,-0.0207153428345919,0.0245272479951382,-0.997281610965729,-0.0694824457168579,0.0244831219315529,-0.999557435512543,-0.0168977435678244,0.02447609603405,-0.995270371437073,-0.0940106436610222,-0.0324581786990166,-0.91557902097702,-0.400826036930084,0.232867106795311,-0.971078038215637,-0.0527293235063553,
- 0.245998039841652,-0.965610265731812,-0.0841534361243248,-0.0277255270630121,-0.995029330253601,-0.0956448689103127,-0.0285600759088993,-0.999488592147827,-0.0143906828016043,-0.028191052377224,-0.999564290046692,0.0087584899738431,-0.150145873427391,-0.988584756851196,0.0125131420791149,-0.139521732926369,-0.989491283893585,0.0379588529467583,-0.141604080796242,-0.985029876232147,-0.098307728767395,0.0370767675340176,-0.732167840003967,0.680114388465881,-0.509583115577698,-0.854868769645691,-0.0975932627916336,-0.43782365322113,-0.898937582969666,0.0148900616914034,-0.0233215801417828,-0.999702632427216,-0.00713713560253382,-0.0245494674891233,-0.998656630516052,0.0456342063844204,-0.0228209979832172,-0.999702751636505,0.00859044771641493,-0.000550754659343511,-0.99331659078598,0.115420557558537,-0.788448989391327,-0.614754498004913,-0.0206225551664829,-0.0484381504356861,-0.990317523479462,0.130096033215523,-0.0529969930648804,-0.997701942920685,0.0422158986330032,-0.071497455239296,-0.996776521205902,0.036396499723196,-0.00532757863402367,-0.999172687530518,0.0403212867677212,-0.0764013379812241,-0.997068345546722,-0.00421109655871987,-0.0792038291692734,-0.995970547199249,0.0420645102858543,-0.0779166892170906,-0.996945261955261,-0.00539589300751686,-0.0917321890592575,-0.995770871639252,-0.00505610508844256,-0.0557744055986404,-0.998317539691925,-0.0158544760197401,-0.0948434695601463,-0.994646847248077,0.041016798466444,-0.751911997795105,-0.657959520816803,-0.0414439514279366,-0.768517017364502,-0.639542102813721,0.0191695131361485,-0.770628869533539,-0.637276470661163,0.00315006216987967,-0.319171905517578,-0.946124315261841,-0.0545720532536507,-0.319379091262817,-0.947463512420654,-0.0176035724580288,-0.318366587162018,-0.947851061820984,-0.0148697113618255,-0.0708138570189476,-0.997475147247314,0.00536161800846457,-0.0546483360230923,-0.998472332954407,0.00816126447170973,-0.0233530085533857,-0.999705135822296,0.00665664207190275,-0.0551832504570484,-0.998471260070801,-0.00316235609352589,-0.0124704446643591,-0.999922096729279,-0.000687347433995456,
- -0.0238013602793217,-0.999705612659454,-0.00473117781803012,-0.393953293561935,-0.917575716972351,-0.0534383244812489,-0.0699131935834885,-0.997055411338806,-0.0315093360841274,-0.0269889105111361,-0.995748579502106,-0.0880700349807739,-0.0235006492584944,-0.999719679355621,0.00291424756869674,-0.766509056091309,-0.640842378139496,-0.0422485284507275,-0.39233723282814,-0.919617772102356,0.0193572733551264,-0.0720124915242195,-0.995467185974121,0.0621247328817844,-0.392621517181396,-0.919631838798523,0.0112180653959513,-0.355636954307556,-0.932902932167053,0.0566962026059628,0.356375753879547,0.928467988967896,-0.104611217975616,0.790640830993652,0.611995279788971,-0.018676545470953,0.073044627904892,0.989699840545654,-0.123120814561844,-0.352838099002838,-0.935482382774353,-0.0194477681070566,-0.282981902360916,-0.959124088287354,0.0015581960324198,-0.392832189798355,-0.919598460197449,0.00463958689942956,-0.353851079940796,-0.935295879840851,0.00332729471847415,-0.392832189798355,-0.919598460197449,0.00463958689942956,-0.282981902360916,-0.959124088287354,0.0015581960324198,-0.214257791638374,-0.97632908821106,0.029582979157567,-0.287874191999435,-0.957644104957581,0.00680017424747348,-0.354592740535736,-0.934760987758636,0.0220476593822241,-0.282413810491562,-0.959010004997253,0.0232912637293339,-0.214188262820244,-0.97638738155365,0.028126435354352,-0.354536980390549,-0.934816837310791,0.0205232128500938,-0.301707804203033,-0.953234910964966,-0.0177660565823317,-0.301239132881165,-0.953522086143494,0.00711587490513921,-0.21546658873558,-0.974867582321167,0.0566331595182419,-0.281923651695251,-0.958648562431335,0.0388867855072021,-0.359532624483109,-0.932922184467316,-0.0198167562484741,-0.355831265449524,-0.932270586490631,-0.0652354434132576,-0.350433945655823,-0.936388373374939,-0.01931525580585,-0.352081060409546,-0.93444961309433,-0.0533183850347996,-0.347108423709869,-0.935592293739319,-0.0646749660372734,-0.199795350432396,-0.963613748550415,-0.17756798863411,-0.283830404281616,-0.953155338764191,-0.104572489857674,
- 0.460590213537216,-0.883579909801483,-0.0845176801085472,-0.281623750925064,-0.958349049091339,0.0474889017641544,0.773025989532471,-0.633339762687683,0.036218736320734,0.462831795215607,-0.886446058750153,-0.000322428211802617,0.147327110171318,-0.988754510879517,-0.0256765149533749,-0.198161110281944,-0.960599303245544,-0.194887682795525,-0.5942542552948,-0.758273363113403,-0.268111258745193,0.4627805352211,-0.886450111865997,-0.00635672966018319,-0.621947824954987,-0.781720042228699,-0.045770488679409,-0.211041390895844,-0.977015435695648,-0.0300428681075573,0.220667466521263,-0.975331008434296,-0.00594223383814096,0.229196459054947,-0.973165810108185,-0.0204275008291006,0.219074368476868,-0.973555684089661,-0.0647763311862946,0.369583904743195,-0.717847228050232,-0.590002596378326,0.628213942050934,-0.777808785438538,0.0189928542822599,0.670263886451721,-0.742122650146484,-0.00056580948876217,0.123641170561314,-0.992303431034088,-0.00683985836803913,0.125429287552834,-0.9900141954422,-0.0643383637070656,0.132724359631538,-0.989900350570679,-0.0498154312372208,-0.62792956829071,-0.778039157390594,0.0189611092209816,-0.629480004310608,-0.777010202407837,-0.00317504932172596,-0.627998352050781,-0.778135895729065,-0.0110719241201878,-0.95516961812973,0.296013593673706,-0.00519021693617105,-0.207055941224098,-0.285173028707504,0.935844123363495,-0.249417006969452,0.491836041212082,0.83419930934906,0.275925934314728,-0.514709532260895,0.811750531196594,-0.590433776378632,-0.727310061454773,0.349868565797806,-0.591412603855133,-0.723064303398132,0.356944382190704,-0.594666957855225,-0.803896844387054,-0.0110123138874769,-0.596821367740631,-0.802346765995026,-0.0066287899389863,-0.594403743743896,-0.8041090965271,0.00963401328772306,-0.673178970813751,-0.739395976066589,-0.0111226411536336,-0.666175127029419,-0.745761334896088,0.00712545542046428,-0.593733191490173,-0.730815529823303,0.336733609437943,-0.590259909629822,-0.807180166244507,-0.0073085161857307,-0.592630505561829,-0.805163860321045,0.0223666038364172,-0.592127621173859,-0.805785715579987,0.00970946438610554,
- -0.437588423490524,-0.898723900318146,0.0284916926175356,-0.405413329601288,-0.913796246051788,-0.0248288847506046,-0.205592587590218,-0.902592837810516,0.378230214118958,-0.152187764644623,-0.920078635215759,0.360962867736816,-0.0649756342172623,-0.997192740440369,-0.037213109433651,-0.025150379166007,-0.9989253282547,0.0389316603541374,-0.596668481826782,-0.801717162132263,0.0351614467799664,-0.636011302471161,-0.770833373069763,0.0361316539347172,-0.617427408695221,-0.786578118801117,0.00885731726884842,-0.597590327262878,-0.801238238811493,-0.03005076572299,-0.591982126235962,-0.805892586708069,0.0097142793238163,-0.592528820037842,-0.805238544940948,0.022371144965291,-0.624061048030853,-0.781190931797028,0.0169922690838575,-0.636672675609589,-0.770938694477081,0.0173688493669033,-0.597723186016083,-0.801505386829376,0.0177852548658848,-0.597733616828918,-0.800479829311371,0.0441202186048031,-0.635636925697327,-0.770695984363556,0.0446497835218906,-0.596364557743073,-0.801530480384827,0.0435684025287628,-0.624066054821014,-0.781178772449493,0.0173556543886662,-0.59772652387619,-0.801493763923645,0.0181926265358925,-0.620737910270691,-0.783936560153961,-0.0113128423690796,-0.588932991027832,-0.808073043823242,-0.0132648264989257,-0.588991284370422,-0.808079838752747,-0.00981304608285427,-0.623084247112274,-0.781878888607025,-0.0207716636359692,-0.570054054260254,-0.821541011333466,-0.0104292500764132,-0.570158779621124,-0.821408629417419,-0.0143811656162143,-0.569914698600769,-0.821548700332642,-0.0159686990082264,-0.594638586044312,-0.792787253856659,0.133765891194344,-0.589267134666443,-0.794692575931549,0.145698249340057,-0.848885118961334,-0.50324958562851,0.161660596728325,-0.0231070537120104,-0.998987436294556,-0.0386024378240108,-0.592715203762054,-0.789124727249146,0.161155551671982,-0.834720551967621,-0.49327763915062,0.24478305876255,-0.589563012123108,-0.795011579990387,0.142730683088303,-0.525403082370758,-0.850479900836945,0.025209391489625,-0.841029286384583,-0.513899743556976,0.169046863913536,-0.591445982456207,-0.797003269195557,0.122382372617722,
- -0.843942940235138,-0.515130639076233,0.149668991565704,-0.852789163589478,-0.506185114383698,0.128558501601219,-0.819750607013702,-0.57271134853363,0.00327122700400651,-0.819177389144897,-0.573488056659698,-0.00773824704810977,-0.819599032402039,-0.572856366634369,0.00964632909744978,-0.810895323753357,-0.58514803647995,-0.0071101482026279,-0.855494976043701,-0.517584621906281,-0.0153154600411654,-0.811274111270905,-0.584576308727264,0.0102388458326459,-0.861710965633392,-0.506630480289459,-0.0279245134443045,-0.861768424510956,-0.507178902626038,-0.011168172582984,-0.861153423786163,-0.50829541683197,0.00711131328716874,-0.939447343349457,0.340314835309982,-0.0403074659407139,-0.941879153251648,0.335442781448364,0.0184889696538448,-0.940195083618164,0.338553845882416,0.0376097820699215,-0.854929983615875,-0.518272340297699,0.0221029110252857,-0.810190618038177,-0.586124002933502,-0.00705721555277705,-0.849177658557892,-0.527633309364319,0.0223750397562981,-0.842343628406525,-0.536314487457275,0.053140826523304,-0.85349452495575,-0.518284261226654,0.054115392267704,-0.847605764865875,-0.527840673923492,0.0543017312884331,-0.83470892906189,-0.527514457702637,-0.158080756664276,-0.841890454292297,-0.516491830348969,-0.156386271119118,-0.794469773769379,-0.607275247573853,-0.0058958837762475,-0.855024635791779,-0.518242120742798,0.0189198851585388,-0.843683063983917,-0.536519885063171,0.0185890141874552,-0.858880043029785,-0.511830806732178,0.018822381272912,-0.82648092508316,0.561591506004334,0.0392968356609344,-0.827467203140259,0.560663044452667,-0.0309026874601841,-0.826492130756378,0.561248958110809,-0.0437083765864372,-0.981709480285645,-0.190096586942673,0.0104777636006474,-0.981237769126892,-0.190986931324005,0.026393624022603,-0.979164779186249,-0.189159587025642,-0.073857955634594,-0.843048751354218,-0.534681916236877,-0.0581728368997574,-0.456085234880447,-0.889831364154816,0.0136612979695201,0.775193333625793,-0.631426811218262,-0.0193772837519646,-0.981554746627808,-0.188615277409554,-0.0312180891633034,
- -0.982365846633911,-0.18668606877327,0.0102897826582193,-0.979692161083221,-0.186419680714607,-0.0738306120038033,-0.755959689617157,0.598104476928711,0.266075611114502,-0.557196140289307,0.829232096672058,-0.0436670407652855,-0.871367454528809,-0.111983403563499,0.477680325508118,-0.917475581169128,-0.114040113985538,0.381095290184021,-0.911574304103851,0.409025967121124,-0.0415937229990959,-0.917514801025391,0.397098958492279,-0.0218873303383589,-0.997188925743103,0.0266257021576166,-0.0700380057096481,-0.0945382118225098,0.00683187693357468,-0.99549788236618,-0.997003078460693,0.0650892406702042,-0.0418146252632141,-0.102571442723274,-0.351243644952774,-0.930648684501648,-0.548990964889526,-0.833771526813507,-0.0586003735661507,-0.00653394917026162,-0.348302364349365,-0.93735945224762,-0.986601948738098,-0.159270375967026,0.0353517010807991,-0.984481692314148,-0.175221368670464,0.00965787097811699,-0.983735620975494,-0.176790729165077,-0.0317694842815399,0.0935559496283531,0.72824364900589,0.678902387619019,-0.949412822723389,-0.16265107691288,0.268626362085342,-0.97406667470932,0.221312656998634,-0.0470621921122074,-0.973006546497345,-0.230427727103233,0.0127007411792874,-0.986661493778229,-0.159221008419991,0.0338793061673641,-0.993152618408203,-0.111461043357849,0.0349894426763058,-0.0603947378695011,-0.971464335918427,-0.229368090629578,-0.985966682434082,-0.166159212589264,-0.0161508079618216,-0.987444639205933,-0.157963931560516,-0.000680735392961651,-0.97297078371048,-0.158071935176849,0.168348282575607,-0.0132589554414153,-0.96476811170578,0.262767463922501,-0.0235013831406832,-0.869505763053894,0.493363410234451,-0.027440907433629,-0.748286843299866,0.662807524204254,-0.627718150615692,-0.080680713057518,0.774248361587524,-0.0186973009258509,-0.756942272186279,0.6532142162323,-0.996677041053772,-0.0692814067006111,0.0428387448191643,-0.992586255073547,-0.111800968647003,0.0476787872612476,-0.986098647117615,-0.159621983766556,0.04615518450737,-0.987450480461121,-0.157561212778091,-0.0107713676989079,-0.986101090908051,-0.165933862328529,-0.00840298365801573,
- -0.997407913208008,-0.0710422396659851,-0.0114233484491706,-0.999823391437531,-0.0116640077903867,0.0147349471226335,-0.795282423496246,-0.114557288587093,0.595317184925079,-0.025297624990344,-0.117226153612137,0.992783010005951,-0.995517075061798,-0.094283364713192,0.0075111580081284,-0.997336626052856,-0.0711788088083267,-0.0159199628978968,-0.98602956533432,-0.16606704890728,-0.0129406685009599,-0.023567071184516,-0.92399400472641,0.381680071353912,-0.00592596177011728,-0.926479637622833,0.376298278570175,-0.983774542808533,-0.179409727454185,-4.69172773591708e-005,-0.992681801319122,-0.108623370528221,-0.0527621880173683,-0.995740115642548,-0.0686245709657669,0.0615833923220634,-0.955576717853546,0.293197602033615,0.0301415622234344,-0.971421718597412,-0.114536017179489,0.207897394895554,-0.937824785709381,0.292928874492645,0.186218664050102,-0.773239850997925,0.622638285160065,0.120090432465076,-0.835971891880035,-0.528510332107544,-0.147742360830307,0.759301781654358,-0.602228164672852,-0.246540173888206,-0.43047234416008,0.101984813809395,-0.896823644638062,-0.832325577735901,-0.531871140003204,0.156036794185638,0.724323332309723,-0.199672266840935,0.659914135932922,-0.838386297225952,-0.530462861061096,0.12536995112896,-0.858882248401642,-0.512173056602478,0.00024198685423471,-0.843985021114349,-0.536366701126099,0.000129733933135867,-0.843991875648499,-0.53635573387146,0.000689920387230814,-0.956216394901276,0.292597502470016,0.00607169838622212,-0.997271180152893,-0.0699271187186241,0.0236725453287363,-0.580989122390747,0.811605870723724,0.0612171739339828,-0.766688883304596,-0.479256421327591,0.427201867103577,0.632386386394501,-0.168378338217735,0.756132364273071,-0.0826701670885086,-0.995614767074585,-0.043782189488411,-0.853072464466095,-0.521715939044952,0.00893753301352263,-0.858882248401642,-0.512173056602478,0.00024198685423471,-0.843991875648499,-0.53635573387146,0.000689920387230814,-0.992274880409241,-0.123963050544262,0.00488941930234432,-0.991710126399994,-0.124138496816158,0.0331788957118988,
- -0.99696958065033,-0.0716087892651558,-0.0303976852446795,-0.858244895935059,-0.51089882850647,0.0489702820777893,-0.838032245635986,-0.545572996139526,0.00721829337999225,-0.837855279445648,-0.545870423316956,0.00489818165078759,-0.991938173770905,-0.126638159155846,0.00465241214260459,-0.99166202545166,-0.128512650728226,-0.00954526290297508,-0.991182327270508,-0.128340378403664,0.0329596027731895,-0.852777183055878,-0.522236943244934,0.00629861420020461,-0.852663397789001,-0.522385060787201,0.0088898167014122,-0.85299813747406,-0.521793305873871,0.0112186102196574,-0.997092366218567,0.076141469180584,0.00305479601956904,-0.992403566837311,0.120236918330193,0.0260426104068756,-0.0151287969201803,0.277250915765762,0.960678458213806,-0.988515138626099,-0.150885939598084,-0.00843869894742966,-0.988596558570862,-0.15056774020195,0.0025271475315094,-0.98862236738205,-0.149432629346848,0.0171975065022707,-0.985216081142426,0.171289578080177,-0.0030322908423841,-0.00741590838879347,0.882150173187256,0.470909893512726,-0.98311847448349,-0.166960269212723,0.0748487785458565,-0.00558712985366583,0.934932112693787,0.354782670736313,-0.0172788184136152,0.946431696414948,0.322441518306732,-0.910004496574402,-0.162039622664452,0.381621539592743,-0.988924026489258,-0.147437334060669,0.0170741938054562,-0.980565309524536,-0.19618134200573,0.00213383487425745,-0.988821983337402,-0.148856371641159,-0.00853941589593887,-0.986055076122284,-0.165955290198326,0.0124178379774094,-0.98044490814209,-0.196457177400589,0.011506506241858,-0.98472785949707,-0.173098176717758,0.0186575837433338,-0.986124813556671,-0.165302693843842,-0.0152601916342974,-0.0240941755473614,0.999224424362183,-0.0311458650976419,-0.984790980815887,-0.172917082905769,0.0169231779873371,-0.98032283782959,-0.196624353528023,0.0174937918782234,-0.985938310623169,-0.166081786155701,0.0185058172792196,-0.984763085842133,-0.172862902283669,0.0189750622957945,-0.0281196869909763,0.898898839950562,-0.437252968549728,-0.773249268531799,0.632848858833313,-0.0398480147123337,
- -0.89356929063797,-0.167266637086868,-0.416600316762924,-0.979928851127625,-0.1851766705513,-0.0738180205225945,-0.980591356754303,-0.192596241831779,0.0367056354880333,-0.984869062900543,-0.17328853905201,0.00201705400831997,-0.98041307926178,-0.196506455540657,0.0132456328719854,-0.984841585159302,-0.173045977950096,0.0119222113862634,-0.992007791996002,-0.125711500644684,0.0108254635706544,-0.98486202955246,-0.173131361603737,0.00851445365697145,-0.97688901424408,-0.211157381534576,0.0331723093986511,-0.992028653621674,-0.12579557299614,0.00740619329735637,-0.980567514896393,-0.195652589201927,-0.0144038451835513,-0.900708258152008,-0.433631896972656,-0.0262302234768867,-0.955464541912079,0.293685674667358,-0.0289216004312038,-0.980501592159271,-0.195446655154228,-0.0204269718378782,-0.992032468318939,-0.125820145010948,0.00639331713318825,-0.900615811347961,-0.433339893817902,-0.0332820527255535,-0.889004647731781,-0.454918742179871,0.0521504804491997,-0.991644084453583,-0.12518073618412,0.0311767794191837,-0.913132846355438,0.385170966386795,0.133535653352737,-0.900717437267303,-0.433670252561569,-0.0252634156495333,-0.991832077503204,-0.125390231609344,0.0233807973563671,-0.889330148696899,-0.455364465713501,0.0416540987789631,-0.888642311096191,-0.457101225852966,-0.0370614975690842,-0.951923012733459,0.282584518194199,0.118273332715034,-0.952468454837799,0.304175466299057,0.0167655739933252,-0.900434911251068,-0.43483230471611,0.0117415226995945,-0.858401596546173,-0.512862861156464,-0.0108831096440554,-0.858885407447815,-0.512056767940521,0.0106659019365907,-0.858140587806702,-0.513300120830536,-0.0108611173927784,-0.858846068382263,-0.512187480926514,0.006885408423841,-0.858613669872284,-0.512511670589447,0.0106916725635529,-0.595203280448914,-0.803471863269806,-0.0128861889243126,-0.59429806470871,-0.80421769618988,0.00661164056509733,-0.59354829788208,-0.804618120193481,-0.0170324668288231,-0.597470462322235,-0.801706254482269,-0.0172098111361265,-0.598170876502991,-0.801343023777008,0.0063991229981184,
- -0.619605600833893,-0.784734725952148,0.0167435202747583,-0.84955620765686,-0.527400732040405,-0.0101466262713075,-0.900761544704437,-0.434102565050125,-0.0135484682396054,-0.844152092933655,-0.535829484462738,-0.0171461813151836,-0.593749105930328,-0.758388757705688,0.268902331590652,-0.488145738840103,-0.872678220272064,0.0121112493798137,-0.797235667705536,-0.51822829246521,0.309604555368423,-0.844152510166168,-0.53582364320755,-0.0173085704445839,-0.900761842727661,-0.43409675359726,-0.0137173514813185,-0.88928347826004,-0.45695498585701,-0.0191581267863512,-0.607639610767365,-0.773703873157501,0.179322704672813,-0.819418907165527,-0.529002487659454,0.220701709389687,-0.83284604549408,-0.522451937198639,0.182787910103798,-0.844087541103363,-0.536155521869659,-0.00732704624533653,-0.889540791511536,-0.456787884235382,-0.00788901932537556,-0.843880891799927,-0.536502659320831,-0.00547190615907311,-0.861181914806366,-0.507526755332947,-0.0279739145189524,-0.843847334384918,-0.536537885665894,-0.00698313489556313,-0.889512240886688,-0.456814050674438,-0.00942618865519762,-0.607407033443451,-0.792740106582642,0.0511862635612488,-0.616099417209625,-0.782215058803558,0.0925264805555344,-0.843015730381012,-0.533059358596802,0.0719183534383774,-0.843667030334473,-0.53668475151062,-0.0139780333265662,-0.861710965633392,-0.506630480289459,-0.0279245134443045,-0.861153423786163,-0.50829541683197,0.00711131328716874,-0.607233881950378,-0.793722093105316,0.035668607801199,-0.84381115436554,-0.534437656402588,0.0485711321234703,-0.111191220581532,-0.993161261081696,-0.0355987511575222,-0.0377011336386204,-0.093288317322731,0.994925081729889,-0.0299734678119421,-0.139559149742126,0.989759981632233,-0.997692346572876,-0.0581294633448124,-0.0350851491093636,-0.987338423728943,0.157205536961555,-0.0211946163326502,-0.99910432100296,0.0411642268300056,-0.00981178600341082,-0.0407002866268158,0.0987795367836952,0.994276642799377,-0.520799458026886,0.852524816989899,-0.0443776212632656,-0.0416841134428978,0.563904166221619,0.824787557125092,
- -0.0414243564009666,0.557366669178009,0.829232454299927,-0.977540075778961,0.210016906261444,-0.0175592489540577,-0.974830865859985,0.211903810501099,-0.0692932605743408,-0.976509273052216,0.214736580848694,-0.0178340822458267,-0.204567715525627,0.977684617042542,-0.0478005968034267,-0.975464761257172,0.21999503672123,0.00840556994080544,-0.0401742160320282,0.998525857925415,0.0364988930523396,-0.973366618156433,0.218409314751625,-0.0696765929460526,-0.967235207557678,0.22236031293869,-0.122523292899132,-0.975227236747742,0.220464214682579,-0.0180945806205273,-0.0249768383800983,0.846887230873108,0.531185686588287,-0.0458062030375004,0.829531669616699,0.556577980518341,-0.885246574878693,0.186144396662712,0.426249653100967,-0.968169748783112,0.240033626556396,-0.0709324702620506,-0.970697045326233,0.23980824649334,-0.0154671017080545,-0.9667107462883,0.239510059356689,-0.0900291875004768,-0.963328838348389,0.25260517001152,-0.0904882922768593,-0.967103540897369,0.253972053527832,-0.014461712911725,-0.964963376522064,0.256279021501541,-0.0562755577266216,-0.23006671667099,0.97049468755722,-0.0721756368875504,-0.235722973942757,0.971382021903992,0.0291872881352901,-0.241082280874252,0.968927681446075,0.0553037449717522,-0.973395645618439,0.221669808030128,-0.0579945184290409,-0.980890870094299,0.182464763522148,-0.067527137696743,-0.982538998126984,0.176262855529785,-0.0595714896917343,-0.990803301334381,0.11944405734539,-0.0635763630270958,-0.990603625774384,0.107467398047447,-0.0845897272229195,-0.809614598751068,0.17388653755188,-0.560613691806793,-0.982794106006622,0.174874290823936,-0.0594535246491432,-0.973395645618439,0.221669808030128,-0.0579945184290409,-0.982538998126984,0.176262855529785,-0.0595714896917343,-0.88788378238678,0.179978132247925,-0.423403173685074,-0.996246337890625,-0.0398361422121525,-0.0768540427088737,-0.887465834617615,0.169903203845024,-0.428412526845932,-0.0411643832921982,0.813576996326447,-0.579998254776001,-0.804019808769226,0.199620351195335,-0.560092747211456,-0.82208377122879,0.176903024315834,-0.541187167167664,
- -0.972247362136841,0.221928328275681,-0.0740468129515648,-0.981627583503723,0.175186038017273,-0.0756117850542068,-0.973002135753632,0.218511909246445,-0.0742924734950066,-0.890915036201477,0.454122245311737,-0.00660556508228183,-0.0349299050867558,0.554691791534424,-0.831322371959686,-0.762562870979309,0.162090361118317,-0.626278400421143,-0.898580431938171,0.438743531703949,-0.00757349003106356,-0.0136790201067925,0.389344662427902,-0.920990586280823,-0.0314602702856064,0.440140783786774,-0.897377610206604,-0.980099856853485,0.197012916207314,-0.0242980550974607,-0.975231051445007,0.2198166847229,-0.0246014222502708,-0.984432637691498,0.174044579267502,-0.0245133470743895,-0.975231051445007,0.2198166847229,-0.0246014222502708,-0.980099856853485,0.197012916207314,-0.0242980550974607,-0.981991171836853,0.187633901834488,-0.0220642630010843,-0.686570882797241,0.0977818146348,0.720457673072815,-0.19285324215889,0.978750348091125,-0.0696808397769928,-0.292823553085327,0.881942570209503,0.369366645812988,-0.894735276699066,0.445477843284607,0.0315991453826427,0.232537403702736,0.507053375244141,-0.829953730106354,-0.849975287914276,0.517958581447601,-0.0962338000535965,-0.979308724403381,0.168785527348518,0.111650794744492,-0.0499333329498768,0.297224819660187,0.953500986099243,-0.975443005561829,0.198948219418526,0.0945015251636505,0.343188405036926,0.0948890522122383,-0.934461236000061,-0.00276850163936615,0.0164794623851776,-0.999860465526581,-0.703150153160095,0.146022781729698,-0.695885956287384,-0.331510096788406,0.941874802112579,0.0545246228575706,-0.40900319814682,0.91252326965332,0.00420811818912625,-0.371150314807892,0.62399810552597,0.687658190727234,-0.870895802974701,0.490749806165695,-0.0265588965266943,-0.870710790157318,0.489887684583664,0.0432757772505283,-0.871736586093903,0.488807410001755,0.0338062085211277,-0.764625132083893,0.549955725669861,0.336001962423325,-0.155575320124626,0.926043689250946,0.343859642744064,-0.300350487232208,0.868169724941254,0.39505809545517,-0.0500297993421555,0.954456627368927,-0.294125467538834,
- -0.0362184382975101,0.999116480350494,-0.0213196501135826,-0.692829132080078,0.54406464099884,-0.473266810178757,0.153598085045815,-0.914274513721466,0.374846369028091,0.599200367927551,-0.800574600696564,0.00626496784389019,0.889648616313934,-0.169102117419243,0.424181401729584,-0.973755240440369,0.22597736120224,-0.0271107573062181,-0.973824799060822,0.226420491933823,-0.0199746210128069,-0.98027777671814,0.197624027729034,-0.000520336208865047,-0.164895221590996,0.981519162654877,-0.0971067249774933,-0.772014260292053,0.589243531227112,-0.238298207521439,-0.804134607315063,0.574783563613892,-0.151629060506821,-0.809731900691986,0.580022394657135,-0.0889285504817963,-0.472649991512299,0.881249785423279,-0.00100866181310266,-0.164984464645386,0.982050478458405,-0.0914175659418106,-0.0362184382975101,0.999116480350494,-0.0213196501135826,-0.726080000400543,0.413497418165207,-0.549388647079468,-0.692829132080078,0.54406464099884,-0.473266810178757,-0.811774134635925,0.583613455295563,0.0204475373029709,-0.802360653877258,0.596148908138275,0.0287040118128061,-0.881675481796265,0.47136190533638,0.021599194034934,-0.872845947742462,0.487925618886948,0.00828154105693102,-0.871185183525085,0.489039093255997,0.0433257110416889,-0.871572196483612,0.48954501748085,-0.0266044996678829,-0.880729734897614,0.472946345806122,-0.0252413041889668,-0.868279635906219,0.494206190109253,0.0430206321179867,-0.869979083538055,0.493023902177811,0.00799052882939577,-0.60757178068161,0.792933166027069,-0.0459753423929214,-0.608768403530121,0.793256402015686,-0.0120567567646503,-0.609137833118439,0.792981088161469,-0.0114939128980041,-0.881079614162445,0.472707539796829,-0.0156933274120092,-0.889619290828705,0.456497520208359,-0.0136952726170421,-0.812176704406738,0.583202302455902,-0.0156219312921166,-0.545582294464111,0.837908208370209,-0.0158048160374165,-0.543301105499268,0.838428318500519,-0.0431493259966373,-0.544721722602844,0.838576376438141,0.00823981128633022,0.409193158149719,0.912411093711853,0.00818528141826391,0.398894518613815,0.915717363357544,0.048423383384943,
- 0.423985123634338,0.905140280723572,-0.0309464950114489,-0.959876537322998,-0.27738681435585,0.0411530733108521,-0.999465703964233,-0.0317270010709763,0.00786697398871183,-0.881546318531036,0.470554769039154,0.0381349734961987,-0.997121036052704,-0.0335471965372562,0.0680030137300491,-0.887107789516449,0.455963909626007,0.0716704428195953,-0.875827133655548,0.463131904602051,0.135778814554214,-0.268344134092331,0.963114619255066,-0.0200425311923027,-0.272136300802231,0.96216869354248,0.013162081129849,-0.274648189544678,0.961535036563873,-0.00432936381548643,-0.997761189937592,-0.0295357070863247,-0.0600017607212067,-0.840912580490112,-0.539063930511475,0.0477084293961525,-0.408479779958725,0.618713557720184,-0.671072125434875,-0.548034965991974,0.836413204669952,0.00840432103723288,-0.573971331119537,0.818683683872223,-0.0177247989922762,-0.54881626367569,0.835797190666199,-0.0156198479235172,-0.878367483615875,0.452213674783707,0.154833406209946,-0.990155041217804,-0.0354509018361568,0.135411307215691,-0.554975807666779,0.805011570453644,0.209662064909935,-0.941720128059387,-0.0190823823213577,-0.335855782032013,-0.558836817741394,0.806685268878937,-0.192250654101372,-0.569469630718231,0.797710120677948,-0.198400914669037,-0.812179505825043,0.583353996276855,-0.00791465863585472,-0.889659404754639,0.456588089466095,-0.00578809389844537,-0.873979985713959,0.48595654964447,-0.00228417571634054,-0.554975807666779,0.805011570453644,0.209662064909935,-0.990369737148285,-0.137160494923592,-0.0188363883644342,-0.878367483615875,0.452213674783707,0.154833406209946,-0.860422194004059,0.509579598903656,-0.00151264341548085,-0.860004305839539,0.509930849075317,-0.0190563425421715,-0.8121737241745,0.583382725715637,-0.00621880311518908,-0.574289321899414,0.818625092506409,0.00670767016708851,-0.574667632579803,0.81836324930191,0.00622701039537787,-0.60641884803772,0.795132040977478,0.00462798774242401,-0.57432621717453,0.818597257137299,-0.00692141056060791,-0.573179602622986,0.819372832775116,0.0096626179292798,-0.605993151664734,0.795424699783325,-0.00847822520881891,
- -0.606817066669464,0.794544875621796,0.0217136442661285,-0.596618235111237,0.802208244800568,0.0225530136376619,-0.573695242404938,0.818788170814514,0.021445969119668,-0.592410326004028,0.805542230606079,-0.012315739877522,-0.573695242404938,0.818788170814514,0.021445969119668,-0.596618235111237,0.802208244800568,0.0225530136376619,-0.57151985168457,0.818359613418579,0.0604369007050991,-0.60167932510376,0.798637390136719,-0.0126620437949896,-0.602356910705566,0.798171937465668,0.00936851743608713,-0.584440767765045,0.780918121337891,-0.22044475376606,-0.229435190558434,0.970078110694885,-0.0794238075613976,-0.597784161567688,0.79607754945755,-0.0944174751639366,0.357752114534378,0.933631062507629,0.0186192020773888,-0.588125467300415,0.773863077163696,-0.235041201114655,-0.22959004342556,0.95797860622406,-0.171945929527283,0.249205440282822,0.968126535415649,-0.0250573251396418,-0.204208940267563,0.978218078613281,-0.037257581949234,-0.601288378238678,0.794325649738312,-0.0865969657897949,-0.60468327999115,0.795586109161377,-0.0374309234321117,-0.205190911889076,0.978721439838409,-0.0010325867915526,-0.226655647158623,0.973470687866211,0.0313379988074303,-0.0799699351191521,0.994249045848846,0.0712299197912216,-0.206304296851158,0.976204752922058,0.066804364323616,-0.302678316831589,0.953087747097015,-0.00309278978966177,-0.227020531892776,0.973655581474304,0.0213662143796682,-0.205718532204628,0.978307843208313,0.024365896359086,-0.305968105792999,0.951740801334381,0.0239373371005058,-0.304207772016525,0.950427532196045,0.0643830522894859,-0.206304296851158,0.976204752922058,0.066804364323616,-0.0799699351191521,0.994249045848846,0.0712299197912216,-0.227020531892776,0.973655581474304,0.0213662143796682,-0.305968105792999,0.951740801334381,0.0239373371005058,-0.268601179122925,0.963224411010742,-0.00722034554928541,-0.254205644130707,0.967129051685333,-0.00639614369720221,-0.254202038049698,0.967151045799255,-0.000391000939998776,-0.22819048166275,0.973482429981232,-0.0161573644727468,-0.306904733181,0.951729714870453,-0.00450390111654997,
- -0.0788197815418243,0.996789574623108,0.0140709755942225,-0.000260714354226366,0.999939024448395,-0.0110425082966685,-0.939718902111053,0.338399976491928,-0.0491309687495232,-0.300561457872391,0.945420682430267,0.125868007540703,0.00547900795936584,0.972719788551331,0.231918439269066,-0.0789135098457336,0.996713638305664,0.0182928536087275,-0.185790002346039,0.982555627822876,-0.00815874990075827,-0.185103356838226,0.982666194438934,0.0102025466039777,-0.194218456745148,0.98089987039566,0.0107049541547894,-0.194985538721085,0.980775356292725,-0.00776868499815464,-0.194786921143532,0.980668902397156,0.0186171662062407,-0.0201513469219208,0.9989914894104,-0.0401237346231937,-0.0217229928821325,0.999763309955597,0.00119733030442148,-0.0235919635742903,0.999271929264069,0.0299870241433382,-0.748269140720367,0.66339236497879,-0.00200496450997889,-0.7462118268013,0.664436817169189,0.0411297827959061,-0.747038185596466,0.66246110200882,-0.055492103099823,-0.018566258251667,0.996719598770142,-0.0787742435932159,-0.0196793098002672,0.999805748462677,0.00108468625694513,-0.0202978104352951,0.999526381492615,0.0231313817203045,0.000136102389660664,0.999983489513397,0.00576159916818142,-0.078596331179142,0.996897578239441,0.00425275880843401,0.00804551970213652,0.999952733516693,0.00545707950368524,0.00807334389537573,0.999947309494019,0.00634186575189233,-0.00842502433806658,0.999937057495117,0.00740914884954691,0.000157274640514515,0.999977827072144,0.00665787793695927,-0.0270096678286791,0.999634087085724,0.00148872204590589,0.0153768584132195,0.999837934970856,0.00936298444867134,-0.078647755086422,0.996881484985352,0.00648338021710515,0.00865919981151819,0.999649524688721,0.0250172205269337,-0.0790276303887367,0.996594905853271,0.023519728332758,0.0147215304896235,0.999556243419647,0.0258956216275692,-0.018024630844593,0.996730148792267,-0.0787665396928787,-0.0207143351435661,0.999049484729767,-0.0383540280163288,-0.0187950022518635,0.999822795391083,0.0010359447915107,0.0136110186576843,0.99846625328064,0.0536666326224804,
- -0.00748165464028716,0.999971926212311,0.000412376422900707,-0.00894573424011469,0.999202430248261,-0.0389160476624966,0.0999233573675156,0.99204683303833,-0.0765403509140015,0.119319729506969,0.0816494151949883,-0.989492893218994,0.130324527621269,0.99044281244278,-0.0451508723199368,0.00568582536652684,0.969876706600189,0.243530407547951,0.213197395205498,0.975805103778839,-0.0484898462891579,0.739152252674103,-0.0876325592398643,0.667813301086426,-0.364020556211472,0.0953301563858986,-0.926499545574188,-0.858709275722504,0.509646773338318,-0.0536527261137962,-0.361594408750534,0.00614052824676037,-0.932315289974213,-0.998234570026398,0.0431735441088676,-0.0407898984849453,0.0098211420699954,0.998008012771606,0.0623196884989738,0.0123611781746149,0.996341466903687,0.0845630317926407,0.00449897581711411,0.994382381439209,-0.105752766132355,-0.837777435779572,0.0803933665156364,-0.540061056613922,-0.941960990428925,0.0296679306775332,-0.334409177303314,-0.764703512191772,0.0313605964183807,0.643618702888489,0.0267401989549398,0.749315023422241,0.661673724651337,-0.783565580844879,0.0246792044490576,0.620818734169006,-0.0350231043994427,0.999319911003113,-0.0115446140989661,0.0261477716267109,0.769807815551758,0.637739896774292,-0.147022858262062,0.0400679260492325,0.988321244716644,-0.0326416194438934,0.999448776245117,0.00607053190469742,0.00782817788422108,0.999968409538269,-0.00144741043914109,-0.0311669614166021,0.999452114105225,-0.0111477980390191,0.225187122821808,0.0365585349500179,0.973629415035248,0.431362181901932,0.014205795712769,0.902067005634308,0.0301657933741808,0.999533295631409,-0.00482046045362949,-0.0334374494850636,0.999422669410706,0.00602646078914404,-0.0315553769469261,0.999439418315887,-0.0111877722665668,-0.0333019457757473,0.999304473400116,0.0167859587818384,-0.0618864297866821,0.997926890850067,0.0176645535975695,-0.0181412734091282,0.999787449836731,-0.00980654265731573,-0.152684226632118,0.0155614595860243,0.988152503967285,-0.0217348411679268,0.999652922153473,-0.0148868635296822,-0.0205599386245012,0.999765932559967,0.00673894770443439,
- -0.0205468628555536,0.999654531478882,0.016389736905694,-0.0142628280445933,0.999767124652863,0.0161935817450285,-0.0361544974148273,0.0157357882708311,0.999222338199615,0.0105282822623849,0.978378355503082,0.206554964184761,0.879135429859161,0.00750414095818996,0.476512879133224,0.891997575759888,0.0139554459601641,0.451824724674225,0.00139695312827826,0.858336210250854,0.513085722923279,-0.11808418482542,0.992995321750641,-0.00408132979646325,-0.0258570872247219,0.999557316303253,-0.0147230643779039,-0.024767629802227,0.999556720256805,0.0165211334824562,-0.118260778486729,0.992981493473053,0.00153322156984359,-0.0401477515697479,0.999049186706543,0.0169975534081459,0.0156202474609017,0.999863862991333,0.00531878648325801,-0.280017256736755,0.959962666034698,-0.00787526089698076,-0.280893266201019,0.959730446338654,-0.00405507441610098,-0.281213313341141,0.959575235843658,-0.0115957409143448,-0.277256011962891,0.960723876953125,-0.0117786740884185,-0.276918917894363,0.960883975028992,-0.00422971090301871,-0.118707224726677,0.992795586585999,0.0162949189543724,-0.244747295975685,0.969496250152588,-0.0132657652720809,-0.245057091116905,0.969508647918701,-8.44075402710587e-005,-0.244997024536133,0.969506084918976,-0.00586986681446433,0.0114392600953579,0.984964072704315,0.172380298376083,0.959458887577057,0.0182350929826498,0.281258106231689,0.00640001008287072,0.979116141796112,0.20320101082325,0.0156041560694575,0.999860286712646,0.00599759491160512,0.00012024593888782,0.999992728233337,0.00381776737049222,-0.118280105292797,0.992978036403656,0.00215501524507999,0.949041485786438,0.0273625571280718,-0.313961058855057,0.73967832326889,0.67169576883316,-0.0412409640848637,-0.00989520270377398,0.949314713478088,-0.314171314239502,-0.018566258251667,0.996719598770142,-0.0787742435932159,-0.0202978104352951,0.999526381492615,0.0231313817203045,-2.23635815927992e-005,0.999999761581421,-0.000710068386979401,0.000596320896875113,0.999820590019226,0.0189330819994211,-0.0833836421370506,0.996284186840057,0.0215645786374807,
- -0.038698822259903,0.999048292636871,0.0201226770877838,-0.118826881051064,0.992705404758453,0.0204012040048838,0.000596320896875113,0.999820590019226,0.0189330819994211,-0.038698822259903,0.999048292636871,0.0201226770877838,-0.0407399237155914,0.998117387294769,-0.04584701359272,-0.710990428924561,0.703201651573181,-0.000183986572665162,-0.692544221878052,0.703119516372681,-0.161262482404709,-0.0119383651763201,0.998245060443878,-0.0580028742551804,-0.102764800190926,0.994696378707886,-0.00432734191417694,-0.0395374037325382,0.999198138713837,-0.00631497986614704,-0.118013270199299,0.992992043495178,-0.00630279397591949,-0.0394409969449043,0.999216675758362,-0.00323087815195322,-0.102668464183807,0.994714856147766,-0.00123300647828728,-0.10290639102459,0.994651019573212,-0.00893506780266762,-0.026870921254158,0.99780011177063,-0.0606060884892941,-0.0567375868558884,0.997325718402863,0.0460685044527054,-0.246880561113358,0.968571364879608,-0.0303230918943882,-0.101467840373516,0.994223356246948,0.0349879302084446,-0.238839745521545,0.970785439014435,-0.0230476092547178,-0.118845485150814,0.992689669132233,0.0210473481565714,-0.102300904691219,0.994700312614441,0.0102963726967573,-0.251299500465393,0.967794716358185,0.0148980300873518,-0.101846665143967,0.9945108294487,0.0239889100193977,-0.275981962680817,0.96045595407486,-0.0368560254573822,-0.250817507505417,0.967620074748993,0.0283227283507586,-0.283360660076141,0.958447337150574,0.032949086278677,-0.119333080947399,0.992103457450867,0.0386048518121243,-0.250669449567795,0.967536866664886,0.0322094447910786,-0.286576062440872,0.957990288734436,-0.0113471699878573,-0.118921607732773,0.992620646953583,0.0237040277570486,-0.283243626356125,0.958877980709076,0.0180590227246284,0.495263606309891,0.859167814254761,0.128626063466072,-0.505856573581696,0.680575668811798,-0.530024409294128,-0.249378696084023,0.921226024627686,-0.298584759235382,-0.276620924472809,0.946629345417023,-0.16545070707798,-0.253610670566559,0.960554122924805,-0.114093869924545,-0.577387392520905,0.787164390087128,-0.216785535216331,
- -0.555596053600311,0.7536541223526,-0.351167351007462,0.297586649656296,0.950649201869965,0.0877967476844788,0.344380587339401,0.938820719718933,0.00419703545048833,-0.602758944034576,0.797913551330566,-0.00398453092202544,-0.588769793510437,0.808115243911743,-0.0173244532197714,-0.599051833152771,0.799410283565521,-0.0456077419221401,0.714758038520813,0.697946548461914,-0.0446270108222961,-0.282669335603714,0.950956046581268,0.125621169805527,-0.568646430969238,0.776879608631134,0.270368844270706,-0.559413313865662,0.791881084442139,-0.244910418987274,-0.276126325130463,0.945384442806244,-0.173212438821793,-0.579440832138062,0.790472090244293,-0.198499947786331,-0.583430349826813,0.812161505222321,-0.00165805756114423,-0.617097020149231,0.786858856678009,-0.00668353727087379,-0.616629064083099,0.787233352661133,0.00568067422136664,-0.623329997062683,0.781933963298798,-0.00624425010755658,-0.624449133872986,0.780948460102081,-0.0135184908285737,-0.623047232627869,0.782160818576813,0.00605318043380976,-0.596914768218994,0.80220764875412,-0.0124838687479496,-0.600634336471558,0.799485504627228,-0.00782878883183002,-0.597554206848145,0.801772058010101,0.00952919386327267,-0.640840709209442,0.767659544944763,-0.00471818074584007,-0.58340984582901,0.812174320220947,-0.00242281798273325,-0.588687300682068,0.80834949016571,-0.00428905244916677,-0.622372210025787,0.782696127891541,-0.00631196517497301,-0.583264827728271,0.812247335910797,-0.00750833237543702,-0.640693604946136,0.767734169960022,-0.00979605969041586,-0.73781281709671,0.675005197525024,-0.000470460130600259,-0.58869194984436,0.808343648910522,-0.00474942615255713,-0.630575716495514,0.776039063930511,-0.0117422798648477,-0.64077627658844,0.767695665359497,-0.00701161613687873,-0.588716745376587,0.808304786682129,-0.00748285790905356,-0.737852811813354,0.674953937530518,-0.00322362105362117,-0.995415151119232,-0.0856575220823288,0.0425619296729565,-0.985584080219269,-0.0673619732260704,0.155197754502296,-0.994614541530609,-0.102055214345455,-0.018073970451951,
- -0.903101742267609,0.429020822048187,0.0186646282672882,-0.560953736305237,0.694043815135956,-0.451258540153503,-0.874670743942261,0.475332140922546,0.0949233919382095,-0.60045051574707,0.79956316947937,-0.012567050755024,-0.579799771308899,0.814696192741394,0.010114080272615,-0.62693727016449,0.77836948633194,0.0330249033868313,-0.866051912307739,0.499896377325058,0.00759626878425479,-0.8664830327034,0.498828053474426,-0.0194352436810732,-0.866894662380219,0.498487859964371,-0.00187658029608428,-0.814746618270874,0.520626902580261,0.25521719455719,-0.857188642024994,0.507126688957214,0.0897225439548492,-0.622691869735718,0.732046484947205,0.276338160037994,-0.802638709545136,0.596462965011597,0.00179714022669941,-0.831338107585907,0.54962557554245,0.0823933333158493,-0.700425088405609,0.441189378499985,0.561031758785248,-0.837148547172546,0.537998855113983,0.098688930273056,-0.639054417610168,0.759191572666168,0.123440764844418,-0.733259558677673,0.673772633075714,0.0914378240704536,-0.840504467487335,0.541507542133331,-0.0179449021816254,-0.840303480625153,0.542092084884644,0.00512404600158334,-0.840860307216644,0.540755450725555,-0.0231844689697027,-0.974278151988983,0.22529923915863,-0.00474658608436584,-0.973824799060822,0.226420491933823,-0.0199746210128069,-0.973755240440369,0.22597736120224,-0.0271107573062181,-0.840014517307281,0.542107462882996,-0.0222505480051041,-0.934622287750244,0.354419112205505,-0.0294662062078714,-0.839680254459381,0.543057441711426,0.00506641203537583,-0.839297294616699,0.54364949464798,0.00503104040399194,-0.934650182723999,0.354405224323273,-0.0287392605096102,-0.839852154254913,0.542316079139709,-0.0232784282416105,-0.963619589805603,0.266687482595444,-0.0177508201450109,-0.964599788188934,0.263626992702484,-0.00693534826859832,-0.964697599411011,0.262056827545166,-0.0261670015752316,-0.935390651226044,0.353042364120483,0.0201353039592505,-0.964697599411011,0.262056827545166,-0.0261670015752316,-0.964599788188934,0.263626992702484,-0.00693534826859832,-0.981873631477356,-0.185336470603943,-0.039681114256382,
- -0.991349160671234,-0.131243288516998,0.00149479683022946,-0.0434469170868397,-0.357113182544708,-0.933050155639648,-0.955582559108734,0.207127511501312,-0.209666788578033,-0.0502607896924019,-0.74038964509964,-0.670296192169189,-0.977569162845612,-0.210491374135017,0.0072193113155663,-0.966302216053009,0.25611823797226,-0.0257587898522615,-0.935250341892242,0.35391166806221,-0.00730468844994903,-0.97856593132019,0.205575048923492,-0.0121480925008655,-0.957514584064484,0.207238331437111,-0.200544506311417,-0.0370154194533825,-0.9453986287117,-0.323807567358017,-0.0487957149744034,-0.909959077835083,-0.411817222833633,-0.828680098056793,0.559246122837067,-0.0230877045542002,-0.934622287750244,0.354419112205505,-0.0294662062078714,-0.840014517307281,0.542107462882996,-0.0222505480051041,-0.84043025970459,0.541626453399658,0.0178273897618055,-0.737556397914886,0.675175249576569,0.0122094564139843,-0.82799357175827,0.560557782649994,0.0142071265727282,-0.850649535655975,0.518986344337463,-0.0839557349681854,-0.828099429607391,0.560474276542664,0.010950181633234,-0.737637400627136,0.675139963626862,0.00878102425485849,-0.827761292457581,0.560703456401825,0.020564055070281,-0.857709288597107,0.506757318973541,-0.0867862179875374,-0.873221516609192,0.480588614940643,0.0807388871908188,-0.811522901058197,0.557132482528687,0.17616468667984,-0.306321740150452,0.938772261142731,0.157713741064072,-0.300792574882507,0.953394532203674,0.0237262528389692,-0.827595591545105,0.555907011032104,-0.0778010487556458,-0.942913293838501,0.276717782020569,-0.185315430164337,-0.907463312149048,0.350923359394073,-0.231005072593689,-0.945485234260559,0.280353933572769,0.16570870578289,-0.817327737808228,0.55926650762558,0.1385508030653,-0.220172852277756,0.974985182285309,0.0304594933986664,-0.959100782871246,0.282945960760117,-0.0082157589495182,-0.978612780570984,0.205496415495873,-0.00940552446991205,-0.93529611825943,0.353836715221405,-0.00456023309379816,-0.968104362487793,0.243958532810211,-0.0570802167057991,-0.977027535438538,0.212739884853363,-0.0126153361052275,
- -0.959063053131104,0.282895982265472,-0.0129578690975904,-0.978639960289001,0.205442577600479,-0.0075600016862154,-0.959106743335724,0.282957524061203,-0.00702117197215557,-0.977083802223206,0.212752118706703,-0.00661935517564416,-0.0487278662621975,-0.996347784996033,0.0701194778084755,-0.974583089351654,0.201167792081833,0.098586730659008,-0.975555419921875,0.212419375777245,0.056301336735487,-0.976478397846222,0.212620303034782,-0.0358132794499397,-0.964963376522064,0.256279021501541,-0.0562755577266216,-0.967103540897369,0.253972053527832,-0.014461712911725,-0.0492590554058552,-0.99404388666153,0.0972136855125427,-0.9692702293396,0.211050808429718,0.126383572816849,-0.659696221351624,-0.748456597328186,-0.0679247155785561,0.0156139433383942,0.999736189842224,0.0168503783643246,-0.0536047481000423,0.998231768608093,0.0256888512521982,0.017070921137929,0.999831199645996,-0.00679735373705626,-0.0528523549437523,0.99784243106842,0.0389499329030514,-0.0103377578780055,0.999833881855011,0.0150128183886409,-0.0299882274121046,0.99885106086731,0.0373799353837967,-0.586435198783875,0.809483587741852,-0.0288106221705675,-0.575642168521881,0.805311977863312,-0.141805350780487,-0.039796456694603,0.971513211727142,-0.233620032668114,-0.433415621519089,0.892786979675293,-0.122809901833534,0.000174754182808101,0.8988196849823,-0.4383185505867,-0.0455306768417358,0.897643029689789,-0.438365131616592,0.0180374775081873,0.998437941074371,-0.0528822280466557,0.00919574499130249,0.999956727027893,0.0014713202835992,0.00733291357755661,0.999393105506897,-0.0340564474463463,-0.0241171885281801,0.999478280544281,0.0214823242276907,-0.053584024310112,0.998223304748535,0.0260563604533672,-0.0305245388299227,0.999244093894959,0.0240720715373755,0.00765706319361925,0.999876618385315,-0.0137149030342698,-0.00128466903697699,0.999999165534973,-0.000205546675715595,-0.00808512885123491,0.999876618385315,-0.0134672243148088,-0.0483202785253525,0.97313791513443,-0.225095465779305,-0.0409068539738655,0.962192714214325,-0.269280552864075,0.00347357103601098,0.965068876743317,-0.261973351240158,
- -0.0558761321008205,0.997738242149353,0.0373671725392342,-0.0244987867772579,0.998971879482269,0.0381437838077545,-0.0300630759447813,0.998916387557983,0.0355309844017029,0.129784435033798,0.961109459400177,0.243772104382515,-0.00366893247701228,0.967976272106171,0.251015275716782,0.324021995067596,0.944628000259399,0.0518435128033161,0.636347234249115,0.771350741386414,0.00895812641829252,0.126870393753052,0.889221251010895,0.439533293247223,0.652731895446777,0.750355899333954,0.104437097907066,0.0474654585123062,0.998834311962128,-0.00877642910927534,0.00770418765023351,0.999912738800049,-0.0107407039031386,-0.00803854875266552,0.999912679195404,-0.010491531342268,0.0394270531833172,0.976326823234558,0.212676972150803,-0.0036372949834913,0.967512130737305,0.252798348665237,0.129784896969795,0.962411046028137,0.238580942153931,0.0468428321182728,0.998841762542725,0.0110029596835375,-0.0552292242646217,0.998438835144043,0.00834650918841362,0.00803135428577662,0.999917447566986,0.0100323231890798,0.021275132894516,0.99974650144577,-0.00736945820972323,-0.0314997509121895,0.999500811100006,-0.00246538943611085,0.125776126980782,0.992039322853088,-0.00620941305533051,0.0472559742629528,0.998880684375763,-0.00205590296536684,0.125776126980782,0.992039322853088,-0.00620941305533051,-0.0314997509121895,0.999500811100006,-0.00246538943611085,-0.0313455648720264,0.999370813369751,0.016596170142293,0.0119416983798146,0.999899864196777,-0.00759114418178797,0.0169472005218267,0.999775171279907,-0.0127425473183393,0.0177934691309929,0.999730706214905,-0.0149031551554799,-0.0317376516759396,0.998877167701721,-0.0351735129952431,0.014483705163002,0.999807775020599,-0.0132160475477576,-0.999195218086243,0.0394523739814758,0.00723928399384022,-0.0315899103879929,0.999398410320282,-0.0143143320456147,-0.893811047077179,0.445731550455093,-0.0492466874420643,-0.999112486839294,0.0390878915786743,-0.0156979877501726,-0.04001260176301,0.99904990196228,0.0172719992697239,-0.031822144985199,0.998337864875793,-0.0480526722967625,-0.0315881073474884,0.999401867389679,-0.0140824280679226,
- -0.0386871062219143,0.999115765094757,-0.0164632815867662,0.0476061590015888,0.998777270317078,-0.0133294109255075,-0.0300868153572083,0.976699233055115,-0.212493374943733,-0.938656747341156,0.0315469279885292,-0.343406945466995,-0.917079627513886,0.0382590964436531,-0.396864265203476,0.0290321912616491,0.999432027339935,-0.0171106867492199,0.0477510280907154,0.998696148395538,-0.0180507302284241,-0.0384917855262756,0.999031126499176,-0.0213398672640324,-0.0288917869329453,0.971035182476044,-0.237183421850204,-0.756087958812714,0.039245817810297,-0.653292298316956,-0.269975572824478,0.962864279747009,-0.00240846211090684,0.0130587862804532,0.999914705753326,-0.000514125742483884,-0.0552292242646217,0.998438835144043,0.00834650918841362,0.0468428321182728,0.998841762542725,0.0110029596835375,0.0468020886182785,0.998828828334808,0.0122771272435784,0.0196920894086361,0.999667048454285,-0.0166731234639883,0.0205316450446844,0.999788880348206,-0.00080833287211135,-0.0651952922344208,0.997869312763214,0.00256674340926111,-0.0239374581724405,0.999619245529175,0.0137335108593106,-0.0553356409072876,0.998383522033691,0.0129805002361536,-0.226857125759125,0.972971856594086,-0.0431486964225769,-0.172732055187225,0.98494154214859,-0.00735030928626657,-0.34660992026329,0.0330607369542122,-0.937426567077637,0.0186556093394756,0.999687731266022,-0.0166244823485613,0.0219701956957579,0.999300599098206,-0.0302630793303251,0.0194711219519377,0.999810099601746,-0.00076657987665385,0.204456925392151,0.978680193424225,-0.0195552557706833,0.225738659501076,0.0158993378281593,-0.974058151245117,0.292417585849762,0.0363881476223469,-0.955598175525665,-0.0320691764354706,0.99944394826889,0.0091322036460042,-0.023659048601985,0.999718487262726,0.00184788962360471,-0.032377615571022,0.999474883079529,0.00127470924053341,0.00705917458981276,0.999975144863129,-0.000277920305961743,0.00897208973765373,0.999479591846466,-0.0309851467609406,0.00759977754205465,0.999942898750305,-0.00751452147960663,-0.032377615571022,0.999474883079529,0.00127470924053341,
- -0.0318446531891823,0.999448895454407,-0.00937414821237326,-0.0320691764354706,0.99944394826889,0.0091322036460042,0.204456925392151,0.978680193424225,-0.0195552557706833,0.292417585849762,0.0363881476223469,-0.955598175525665,-0.005517044570297,0.708380937576294,-0.705808758735657,0.0395972803235054,0.99915486574173,0.0110266199335456,0.00252311886288226,0.999966740608215,-0.00775455217808485,0.00397533923387527,0.999503433704376,-0.0312613099813461,0.0151610989123583,0.999583184719086,-0.0245689433068037,0.0387339517474175,0.998933076858521,-0.0251513551920652,-0.0172704327851534,0.999324917793274,-0.0324267111718655,0.809104382991791,0.0520526506006718,-0.5853551030159,0.0392364971339703,0.840692639350891,-0.540089249610901,0.00112706096842885,0.853415131568909,-0.521230638027191,0.863442778587341,0.0288960207253695,0.503618478775024,0.839503407478333,0.0698535591363907,0.538845598697662,0.0193836614489555,0.915986835956573,0.400739848613739,0.0146026480942965,0.998756885528564,-0.0476591885089874,0.03254334628582,0.998388826847076,-0.0464831851422787,-0.0216970685869455,0.998608887195587,-0.0480597503483295,0.971405506134033,0.232198938727379,-0.0495498515665531,0.0313887260854244,0.9994997382164,0.00387183227576315,0.997526466846466,0.0637677535414696,0.0295734982937574,0.798467099666595,0.600187361240387,-0.0471746511757374,0.563919425010681,0.0614607185125351,0.823539614677429,0.552374720573425,0.041476882994175,0.832563400268555,0.03254334628582,0.998388826847076,-0.0464831851422787,-0.00346889672800899,0.997470378875732,-0.0710000991821289,-0.0216970685869455,0.998608887195587,-0.0480597503483295,0.0329097285866737,0.996748626232147,-0.0735470131039619,0.0337306670844555,0.994174957275391,-0.102365061640739,0.0349783822894096,0.999236762523651,-0.0173885319381952,0.0136460121721029,0.996164679527283,-0.0864286497235298,-0.0201242156326771,0.996050715446472,-0.0864753425121307,0.0131808742880821,0.996318757534027,-0.084706537425518,-0.321740716695786,0.945778012275696,-0.044574074447155,0.0236858520656824,0.966601550579071,-0.255187481641769,
- -0.0124768307432532,0.96496844291687,-0.262069225311279,0.0387339517474175,0.998933076858521,-0.0251513551920652,0.0151610989123583,0.999583184719086,-0.0245689433068037,0.00926296506077051,0.999713182449341,-0.0220854096114635,0.308372586965561,0.951265573501587,-0.00041179551044479,0.231914654374123,0.972381472587585,-0.0262697096914053,0.303481578826904,0.0422555580735207,0.951899886131287,0.0240860544145107,0.99960321187973,-0.0146038588136435,0.0241294596344233,0.997044324874878,-0.0729409828782082,0.0273300241678953,0.999481379985809,-0.0170310456305742,-0.103052750229836,0.0375097095966339,0.993968486785889,-0.137564435601234,0.0210106913000345,0.990269958972931,-0.107131019234657,0.994029104709625,-0.0207153428345919,-0.0149376904591918,0.997422695159912,-0.0701774954795837,-0.0148749435320497,0.999754190444946,-0.01644691452384,-0.014843107201159,0.995430290699005,-0.0943316742777824,0.0324024744331837,0.915990054607391,-0.399890393018723,-0.23360450565815,0.970904529094696,-0.0526642650365829,-0.246691450476646,0.965436697006226,-0.0841148942708969,0.0282694157212973,0.995012521743774,-0.095660537481308,0.0291044302284718,0.99947315454483,-0.0143647221848369,0.0287360791116953,0.999548614025116,0.00877553317695856,0.118780180811882,0.992853283882141,0.0115588558837771,0.108727797865868,0.993263363838196,0.0400768369436264,0.109777569770813,0.989144027233124,-0.097689189016819,-0.0368380509316921,0.735319495201111,0.676718711853027,0.511135995388031,0.853945732116699,-0.0975546613335609,0.440001875162125,0.897876501083374,0.0147027214989066,0.00142641959246248,0.999968349933624,-0.00784007646143436,0.00278994208201766,0.998890221118927,0.0470159202814102,0.00112020946107805,0.999968111515045,0.00790904741734266,-0.0115115940570831,0.953268766403198,0.301904499530792,0.735910475254059,0.676926255226135,-0.0143757937476039,0.0228246692568064,0.95073676109314,0.30915829539299,0.0336129255592823,0.992705821990967,0.115781307220459,0.0416697561740875,0.993202924728394,0.108681343495846,0.000581317173782736,0.993371903896332,0.114943116903305,
- 0.0477687120437622,0.997174739837646,-0.0579714365303516,0.0541049800813198,0.997577607631683,0.0437214635312557,0.0520054176449776,0.998624742031097,-0.00663471501320601,0.0519747398793697,0.996949672698975,-0.0582239776849747,0.0395977348089218,0.999200642108917,-0.00548484222963452,0.0583638697862625,0.997349679470062,0.0434424206614494,0.652359008789063,0.753393530845642,-0.0826190933585167,0.663059294223785,0.7485032081604,0.00976903829723597,0.664437890052795,0.747308969497681,-0.00718938466161489,0.0151929622516036,0.998787403106689,-0.046827919781208,0.0135297486558557,0.998345851898193,-0.0558792017400265,0.0147237973287702,0.999618291854858,-0.0233811587095261,0.0392153151333332,0.999227344989777,0.00263191876001656,-0.0312839224934578,0.999498188495636,0.00498702609911561,0.0393932089209557,0.999221205711365,0.00227713794447482,0.0346767604351044,0.999379277229309,-0.00623085629194975,0.0393932089209557,0.999221205711365,0.00227713794447482,-0.0312839224934578,0.999498188495636,0.00498702609911561,0.0394707731902599,0.999216854572296,-0.00278401933610439,0.0290543232113123,0.997960686683655,-0.0568358972668648,-0.00777755910530686,0.999961495399475,-0.00407038629055023,-0.0312895774841309,0.999498605728149,0.00484369369223714,0.0392456911504269,0.999227702617645,0.00198932201601565,-0.0078949211165309,0.999968528747559,0.000895605771802366,-0.441257655620575,0.897373259067535,-0.00359146180562675,-0.444281458854675,0.895632266998291,-0.0213793199509382,-0.440346091985703,0.89627742767334,-0.052745696157217,-0.662574112415314,0.748996138572693,-0.000680486613418907,-0.661916017532349,0.747843265533447,-0.0509669855237007,-0.669727087020874,0.741744875907898,-0.0357799492776394,0.0234869960695505,0.0159236583858728,-0.999597311019897,-0.997834801673889,0.0230919402092695,0.0615829341113567,-0.672690093517303,0.586298406124115,-0.451378136873245,-0.0374112725257874,0.986197888851166,-0.161288991570473,-0.00556924566626549,0.995363295078278,-0.0960257425904274,-0.753577589988709,0.652372419834137,-0.0808152109384537,
- -0.654132485389709,0.570722579956055,-0.496373295783997,-0.744424164295197,0.667630672454834,0.0100942980498075,-0.771847605705261,0.635806679725647,0.00107119500171393,0.017070921137929,0.999831199645996,-0.00679735373705626,0.0150320352986455,0.999855101108551,-0.00799123756587505,0.0156139433383942,0.999736189842224,0.0168503783643246,-0.756485283374786,0.653958380222321,0.00827142409980297,-0.000334806070895866,0.999943435192108,-0.0106309987604618,-0.0320561565458775,0.999377608299255,-0.0147249456495047,-0.585065841674805,0.810272037982941,-0.0340210013091564,-0.0320561565458775,0.999377608299255,-0.0147249456495047,-0.000334806070895866,0.999943435192108,-0.0106309987604618,0.947161674499512,0.320601254701614,-0.00998239684849977,-0.014945100992918,0.315980434417725,0.94864809513092,0.318804413080215,-0.285049021244049,0.903941810131073,-0.587611377239227,0.501423954963684,0.635048866271973,0.0147351361811161,0.946412920951843,0.322622835636139,0.0106635186821222,0.940881848335266,0.338567078113556,-0.00146318122278899,0.999968111515045,-0.00786224380135536,0.000853274716064334,0.999969065189362,-0.00782002322375774,-0.00187061575707048,0.999966681003571,0.00794739928096533,0.132365554571152,0.991161465644836,-0.00884667318314314,0.123210288584232,0.992376267910004,0.00296318368054926,0.016324894502759,0.962363481521606,0.271275222301483,-0.0770557820796967,0.996967494487762,0.0108838304877281,-0.0786326676607132,0.996821463108063,-0.0128022255375981,-0.0767903849482536,0.996981203556061,0.0114781390875578,-0.346673429012299,0.937684893608093,0.0237616430968046,-0.38459250330925,0.922549188137054,-0.0314904488623142,-0.577886164188385,0.710270524024963,0.401949435472488,-0.637053549289703,0.672968745231628,0.375866770744324,-0.728757619857788,0.684546589851379,-0.0175628382712603,-0.748963952064514,0.66136622428894,0.0405917018651962,-0.0240626931190491,0.999288439750671,0.0290482975542545,0.0228927694261074,0.999283015727997,0.0301562007516623,-0.0212066974490881,0.999737203121185,0.00870685558766127,-0.023318761959672,0.999555289745331,-0.0185914132744074,
- -0.0770557820796967,0.996967494487762,0.0108838304877281,-0.0767903849482536,0.996981203556061,0.0114781390875578,0.000957926036790013,0.99953693151474,0.0304141230881214,0.0228435583412647,0.999221086502075,0.0321775153279305,-0.0240929331630468,0.999227106571198,0.0310606695711613,-0.0192009881138802,0.999789237976074,0.0072676008567214,-0.0210005156695843,0.999527394771576,-0.0224533751606941,-0.0192671846598387,0.999775886535645,0.00878251157701015,-0.024363923817873,0.999455153942108,-0.0222662836313248,-0.0235982537269592,0.999720931053162,-0.0010921829380095,-0.0227185618132353,0.999701976776123,0.00894498731940985,0.0197363775223494,0.999540865421295,-0.022989584133029,0.0190863702446222,0.999513626098633,-0.0246625617146492,0.0187513045966625,0.999788343906403,0.00846294034272432,0.85752546787262,0.511008322238922,-0.0593362338840961,0.850849688053131,0.525212287902832,0.0143918367102742,0.812328279018402,0.453453987836838,-0.366745501756668,-0.335480242967606,0.698677837848663,-0.631903827190399,-0.339104950428009,0.703862428665161,-0.624167859554291,-0.381974518299103,0.924172520637512,-0.000777098932303488,-0.37304612994194,0.697636783123016,-0.611669421195984,-0.0171145740896463,0.62295013666153,-0.782074332237244,-0.519311308860779,0.854543626308441,0.00843743793666363,-0.0455138459801674,0.994570672512054,-0.0935824289917946,-0.0220423080027103,0.995385527610779,-0.093391515314579,-0.111267760396004,0.993639171123505,-0.0173389185220003,-0.0472888723015785,0.99886167049408,0.00625861203297973,0.000219354304135777,0.999975740909576,0.0069644981995225,-0.0237191971391439,0.999696731567383,0.00662400526925921,0.000380282290279865,0.999927043914795,0.0120739433914423,-0.047377236187458,0.99880450963974,0.012041156180203,-0.0154480878263712,0.999801695346832,0.0125654404982924,-0.0153418248519301,0.999737441539764,0.0170210376381874,-0.0160485580563545,0.999834060668945,-0.00863090995699167,0.000519967870786786,0.999863564968109,0.0165089573711157,-0.0496886074542999,0.932481169700623,0.357784777879715,-0.820501446723938,0.512658953666687,0.252899557352066,
- -0.00709684751927853,0.944274663925171,0.32908234000206,-0.0235018488019705,0.999683439731598,-0.0089818462729454,-0.0158492270857096,0.999864935874939,-0.00437399232760072,-0.0257650632411242,0.999435186386108,0.0215799584984779,-0.815974891185761,0.513962149620056,0.264627903699875,-0.755463719367981,0.653708457946777,-0.0440433919429779,-0.00757585465908051,0.949875116348267,0.312538087368011,-0.0235018488019705,0.999683439731598,-0.0089818462729454,-0.0257650632411242,0.999435186386108,0.0215799584984779,-0.0232192855328321,0.999691784381866,0.00878573395311832,-0.523401141166687,0.130358681082726,0.84205573797226,-0.816895067691803,0.574549496173859,-0.0507503598928452,-0.538789749145508,0.498222321271896,0.679323315620422,0.776097774505615,0.626028537750244,0.0758981481194496,0.810025751590729,0.473105072975159,0.346453338861465,0.767391443252563,0.640684962272644,-0.0251675006002188,0.766578435897827,0.641659021377563,-0.0251278206706047,0.883395433425903,0.433857351541519,0.177144765853882,0.0755040347576141,0.993407487869263,0.086259737610817,0.877836525440216,0.438206344842911,0.193334594368935,0.813041090965271,0.563688993453979,0.14566795527935,0.0709718093276024,0.978600978851318,0.193140268325806,-0.0234216172248125,0.999692261219025,-0.00817716214805841,-0.0173637326806784,0.999812722206116,0.00855615362524986,0.0786539763212204,0.996889352798462,-0.00503983302041888,0.0834502205252647,0.972058296203613,-0.219405442476273,0.810026884078979,0.574277639389038,-0.11858269572258,0.0652408376336098,0.986723244190216,-0.148731648921967,-0.0233050752431154,0.999643087387085,-0.0130615327507257,0.0788025185465813,0.996841430664063,-0.00987576600164175,0.070166677236557,0.997401118278503,-0.0163603369146585,0.0675763189792633,0.993634700775146,-0.0901306942105293,0.813611507415771,0.575174987316132,-0.0849120318889618,0.791104257106781,0.611591696739197,0.0104696229100227,-0.0236398261040449,0.99972003698349,0.00103227596264333,0.0706924796104431,0.997498154640198,0.000115661052404903,-0.0156568270176649,0.999873399734497,0.0028324956074357,
- 0.0236264504492283,0.999459445476532,-0.0228651389479637,-0.0158045068383217,0.999873399734497,-0.00185636489186436,0.0705446898937225,0.997498214244843,-0.0045769214630127,-0.0493715219199657,0.993941605091095,0.0981966853141785,-0.0273941289633513,0.984077572822571,0.175616428256035,-0.0117420675233006,0.992295563220978,0.123336263000965,-0.0162300709635019,0.99974924325943,-0.0154301477596164,0.0197363775223494,0.999540865421295,-0.022989584133029,0.0187513045966625,0.999788343906403,0.00846294034272432,-0.0501104183495045,0.995043456554413,0.0858934968709946,-0.0122832152992487,0.994173049926758,0.107093662023544,-0.668325543403625,0.743713736534119,-0.0151936048641801,0.62792956829071,-0.778039157390594,-0.0189611092209816,0.606907963752747,-0.794522702693939,-0.0199098978191614,0.629480004310608,-0.777010202407837,0.00317504932172596,0.607202529907227,-0.793829262256622,-0.0337668657302856,0.615375101566315,-0.788038611412048,-0.0175679158419371,0.598208665847778,-0.800612509250641,-0.0341466553509235,-0.0364674553275108,-0.998430192470551,0.042514480650425,-0.0303401909768581,-0.992303192615509,0.120057694613934,0.583058536052704,-0.793881893157959,0.172610938549042,-0.0874393433332443,-0.988518118858337,0.123232439160347,0.274843692779541,-0.853534698486328,0.442650526762009,0.489116609096527,-0.691425621509552,0.531691372394562,0.318122863769531,-0.943562269210815,0.092130571603775,0.31134358048439,-0.950115501880646,0.0185933411121368,0.313140392303467,-0.949035227298737,0.0357106328010559,0.598054230213165,-0.8011155128479,-0.0233517624437809,0.619484424591064,-0.784707844257355,-0.0217417329549789,0.606986343860626,-0.79437643289566,-0.0231064092367888,0.339638620615005,-0.94048136472702,0.0118510685861111,0.31368225812912,-0.949459433555603,0.0114112375304103,0.312031000852585,-0.949892401695251,0.0184672921895981,0.743908166885376,-0.668034911155701,-0.0181700866669416,0.295824527740479,-0.793973684310913,-0.531125068664551,0.779360949993134,-0.62145334482193,-0.0799531191587448,0.561199843883514,-0.772703766822815,0.296620309352875,
- 0.304196387529373,-0.930415570735931,0.204429656267166,0.238705933094025,-0.955825924873352,0.171512395143509,0.331334114074707,-0.904451489448547,-0.268673032522202,0.595292866230011,-0.803412914276123,-0.0124233085662127,0.114725396037102,-0.94515472650528,-0.305811792612076,0.58339387178421,-0.779997110366821,0.22639873623848,0.561078071594238,-0.772577106952667,0.297180145978928,0.238932937383652,-0.962116360664368,0.131314024329185,0.619108498096466,-0.784552216529846,-0.0343875549733639,0.598225355148315,-0.800531327724457,-0.0357216373085976,0.596915543079376,-0.801573693752289,-0.0342263840138912,0.339657545089722,-0.94048672914505,0.0108399363234639,0.330676674842834,-0.943699717521667,0.00916359294205904,0.31370085477829,-0.949464917182922,0.0103978365659714,0.313752830028534,-0.949475467205048,0.00746277766302228,0.330603241920471,-0.943743765354156,0.00703070405870676,0.237258076667786,-0.971392691135406,0.0102405864745378,0.114665023982525,-0.967082381248474,-0.22716423869133,0.319621443748474,-0.932936072349548,-0.165748029947281,0.336600840091705,-0.922805547714233,-0.187429577112198,0.235118851065636,-0.923625230789185,0.302713662385941,-0.646811842918396,-0.762000262737274,-0.0314650386571884,0.442108511924744,-0.584402978420258,0.680450797080994,0.237374141812325,-0.971311271190643,0.0144204460084438,0.330744862556458,-0.94365394115448,0.0111844213679433,0.317213714122772,-0.948340892791748,0.0050214771181345,0.619108498096466,-0.784552216529846,-0.0343875549733639,0.596915543079376,-0.801573693752289,-0.0342263840138912,0.621933698654175,-0.78285551071167,0.0183213632553816,0.0298257041722536,-0.999531090259552,0.0069309314712882,-0.02363396063447,-0.999718010425568,0.00235915975645185,0.110262550413609,-0.993888258934021,0.00533916708081961,-0.0235027316957712,-0.999625444412231,-0.0140290707349777,0.0305361822247505,-0.999509811401367,0.00690838554874063,0.0343075543642044,-0.999367117881775,0.00940282829105854,0.0187746603041887,-0.999746978282928,0.0123912123963237,0.0213518161326647,-0.999663472175598,0.0147339841350913,
- -0.0238344743847847,-0.999292373657227,0.0291012525558472,-0.99861067533493,-0.038753055036068,0.0357065349817276,-0.0244264230132103,-0.991532683372498,0.127539396286011,-0.940410971641541,-0.336384475231171,0.0497262552380562,-0.0236412361264229,-0.999715089797974,0.0032921105157584,0.0629370883107185,-0.998013079166412,0.00296809454448521,0.110233753919601,-0.993886113166809,0.00623877765610814,0.0586921684443951,-0.987242758274078,-0.148010089993477,0.321218520402908,-0.935378789901733,-0.147936582565308,0.114026270806789,-0.98049134016037,-0.160109117627144,-0.996493935585022,-0.0380586683750153,0.0745077803730965,-0.035963386297226,-0.995944380760193,0.0824719667434692,-0.0246123988181353,-0.985010266304016,0.170730829238892,-0.030029559507966,-0.976440191268921,0.213688626885414,-0.938019514083862,-0.0314944125711918,0.345148801803589,-0.91636461019516,-0.0382754690945148,0.398510813713074,0.0632132366299629,-0.997887432575226,0.0149936405941844,-0.0237309038639069,-0.999605715274811,0.0150080854073167,0.0162574574351311,-0.999734878540039,0.0163068734109402,-0.0237156003713608,-0.999634623527527,0.0129772471264005,-0.0387787185609341,-0.999147474765778,0.0141679812222719,0.0161297172307968,-0.999795198440552,0.0122208911925554,-0.0305054802447557,-0.978554785251617,0.203715220093727,-0.825911998748779,-0.0392985977232456,0.562427759170532,-0.303121954202652,-0.952951550483704,0.000686384621076286,0.00254721753299236,-0.999870896339417,0.0158663392066956,0.0161680653691292,-0.999778866767883,0.0134466653689742,-0.038725096732378,-0.999129474163055,0.0155120175331831,-0.287499666213989,-0.956676542758942,0.0459779612720013,-0.236302703619003,-0.971670687198639,0.00413798214867711,-0.429654240608215,-0.0348470360040665,0.902320861816406,0.0157947186380625,-0.999874174594879,0.00154521805234253,0.0187209434807301,-0.999686479568481,0.0166275482624769,0.019462812691927,-0.99981027841568,0.000766252400353551,0.016358295455575,-0.999675273895264,0.0195382814854383,0.0378249473869801,-0.999283254146576,0.00148917059414089,
- 0.0632868632674217,-0.997828185558319,0.018268583342433,0.0164658445864916,-0.9997279047966,0.0165216606110334,0.0197286494076252,-0.999343454837799,0.0303879790008068,0.0172766037285328,-0.999850511550903,0.000680181547068059,0.045430276542902,-0.998548150062561,0.0289462674409151,0.0678950548171997,-0.0214236471801996,0.997462451457977,0.142029106616974,-0.0300817731767893,0.989405393600464,-0.259179502725601,0.96577525138855,-0.0102039277553558,-0.236969187855721,0.96643853187561,0.0992078185081482,-0.0531216524541378,0.953979849815369,0.2951280772686,0.0555198192596436,-0.970052540302277,-0.236464932560921,0.38586300611496,-0.91969496011734,-0.0726011320948601,0.31329134106636,-0.922137379646301,-0.22696079313755,0.0249652620404959,-0.999687850475311,0.000982884084805846,0.0257796850055456,-0.99921590089798,0.0300504378974438,0.0244007389992476,-0.999702095985413,-0.000576397695112973,0.40236023068428,-0.91534435749054,0.0158409625291824,0.414407253265381,-0.910038888454437,-0.00978909991681576,0.384939610958099,-0.920068025588989,-0.0727774575352669,0.173019975423813,-0.984900295734406,-0.00597371952608228,0.322913378477097,-0.88163959980011,0.344149321317673,0.225369423627853,-0.96900999546051,-0.101135112345219,-0.186992809176445,-0.982023179531097,-0.0257716402411461,-0.135432451963425,-0.979122936725616,-0.151579529047012,-0.228559017181396,-0.973515212535858,0.00539890769869089,0.292426884174347,-0.956287324428558,0.00105837488081306,0.292196929454803,-0.956350028514862,0.00397350080311298,0.330584108829498,-0.943754374980927,0.00648288847878575,0.29799747467041,-0.954399824142456,0.0178520046174526,0.29450061917305,-0.955650568008423,0.00118270388338715,0.29752916097641,-0.954686880111694,-0.00702824024483562,0.2884341776371,-0.957499384880066,0.000819214561488479,0.286864787340164,-0.957799911499023,0.0181076377630234,0.287905484437943,-0.957651317119598,0.00379429943859577,0.0707423165440559,-0.997492015361786,-0.00228230468928814,0.0137406345456839,-0.999905526638031,-0.000324581196764484,0.0155582474544644,-0.999410033226013,0.030619939789176,
- -0.0662074983119965,-0.997189939022064,0.0350567437708378,0.0341272689402103,-0.0252130478620529,0.999099433422089,-0.00848089344799519,-0.628322899341583,0.77790641784668,0.0702114701271057,-0.997337102890015,0.0197253301739693,-0.000226532472879626,-0.999503970146179,0.0314929261803627,0.015309234149754,-0.999713778495789,0.0183849632740021,0.810271978378296,-0.0520695708692074,0.58373636007309,0.0392309129238129,-0.841737806797028,0.538459241390228,0.00118423404637724,-0.854463875293732,0.519509494304657,0.858323097229004,-0.0284485891461372,-0.512320339679718,0.834383428096771,-0.0697799921035767,-0.546749770641327,0.0190954599529505,-0.912595152854919,-0.408418208360672,-0.0216979216784239,-0.998609781265259,0.0480386391282082,0.0146031631156802,-0.998757898807526,0.0476380623877048,0.0325428768992424,-0.998389840126038,0.0464620478451252,0.971410393714905,-0.232178509235382,0.049549762159586,0.0313737280666828,-0.999497592449188,-0.00450381031259894,0.997521281242371,-0.0637727156281471,-0.0297413989901543,0.798469424247742,-0.600184261798859,0.0471747107803822,0.563992083072662,-0.0614637210965157,-0.823489606380463,0.552446961402893,-0.041476134210825,-0.8325155377388,0.0325428768992424,-0.998389840126038,0.0464620478451252,-0.00347039778716862,-0.997470378875732,0.0709999948740005,-0.0216979216784239,-0.998609781265259,0.0480386391282082,0.0217369310557842,-0.99711149930954,0.0727748796343803,0.0334546379745007,-0.995474338531494,0.0889471769332886,0.0240411404520273,-0.999568521976471,0.0168770365417004,0.0133329350501299,-0.996106326580048,0.0871470421552658,0.0135851111263037,-0.995951175689697,0.0888644680380821,-0.0200230218470097,-0.995837688446045,0.0889178216457367,-0.361802309751511,-0.931366741657257,0.0406831577420235,0.0212829615920782,-0.9761962890625,0.215842247009277,-0.0142023852095008,-0.974495768547058,0.223956495523453,0.015309234149754,-0.999713778495789,0.0183849632740021,0.00896686967462301,-0.999808847904205,0.0173729546368122,0.0702114701271057,-0.997337102890015,0.0197253301739693,
- 0.308351814746857,-0.951272308826447,0.000412882072851062,0.231933057308197,-0.972376942634583,0.0262705087661743,0.303618162870407,-0.0422559976577759,-0.951856434345245,0.015142678283155,-0.999772369861603,0.0150290448218584,0.0152032617479563,-0.997265756130219,0.0723192095756531,0.0183792468160391,-0.999693095684052,0.0166115090250969,-0.103034049272537,-0.0375100746750832,-0.993970334529877,-0.137539088726044,-0.0210097506642342,-0.990273594856262,-0.107117615640163,-0.9940305352211,0.0207147318869829,-0.0181959792971611,-0.997385084629059,0.0699420720338821,-0.0181431509554386,-0.99969756603241,0.016600426286459,-0.0181173253804445,-0.995386302471161,0.0942235440015793,0.0326946750283241,-0.913820445537567,0.404800266027451,-0.226468279957771,-0.972559571266174,0.0532922074198723,-0.239826589822769,-0.967131912708282,0.0844942778348923,0.027714941650629,-0.995029747486115,0.0956445783376694,0.0285493861883879,-0.999488770961761,0.01439119130373,0.0281803701072931,-0.999564588069916,-0.00875815656036139,0.127741768956184,-0.991736888885498,-0.0118323210626841,0.117123559117317,-0.992331326007843,-0.0395039357244968,0.118655420839787,-0.988100230693817,0.0978716090321541,-0.0374338775873184,-0.72740364074707,-0.685188055038452,0.500199735164642,-0.860367178916931,0.0978190377354622,0.427689760923386,-0.903788208961487,-0.0157575830817223,0.0233702231198549,-0.99970144033432,0.00713559379801154,0.0245967954397202,-0.998655498027802,-0.0456311702728271,0.0228696260601282,-0.99970155954361,-0.00859196949750185,0.0475153252482414,-0.988004922866821,-0.146931156516075,-0.000604383181780577,-0.991051971912384,-0.133475303649902,0.78399395942688,-0.620443999767303,0.020073127001524,0.0523937307298183,-0.997147083282471,-0.0543376281857491,0.0717464312911034,-0.99624091386795,-0.0485432669520378,0.00456247525289655,-0.998615980148315,-0.0523977167904377,0.0764023065567017,-0.997068166732788,0.00421115010976791,0.0792044475674629,-0.995970606803894,-0.0420644730329514,0.0779204666614532,-0.996944963932037,0.00539577193558216,
- 0.091732531785965,-0.995770871639252,0.00505612418055534,0.0557718314230442,-0.998318552970886,0.0157988481223583,0.0948431417346001,-0.994646847248077,-0.0410168208181858,0.775573968887329,-0.629807591438293,0.0427481569349766,0.790486097335815,-0.612150847911835,-0.0200771298259497,0.792577981948853,-0.609755277633667,-0.0043186517432332,0.316618412733078,-0.946976482868195,0.0546659454703331,0.316827774047852,-0.948322415351868,0.0174629483371973,0.315812647342682,-0.948703765869141,0.0149501841515303,0.0708164200186729,-0.997474372386932,-0.00547244166955352,0.0546430796384811,-0.998471677303314,-0.0082718264311552,0.0233486406505108,-0.999704599380493,-0.00676721753552556,0.0551832541823387,-0.998471260070801,0.0031624031253159,0.0124705461785197,-0.999922096729279,0.000687353080138564,0.0238013621419668,-0.999705612659454,0.00473122391849756,0.393960654735565,-0.917516708374023,0.0543904304504395,0.069883294403553,-0.997020184993744,0.0326694957911968,0.0270333308726549,-0.99564117193222,0.0892627611756325,0.766465783119202,-0.640894293785095,0.0422461405396461,0.392347872257233,-0.91961932182312,-0.0190649852156639,0.0235162246972322,-0.999720394611359,-0.00251904013566673,0.0728330984711647,-0.991344392299652,-0.109232276678085,0.391140997409821,-0.919090747833252,-0.0477590970695019,0.356281220912933,-0.929656088352203,-0.0938257351517677,-0.356435060501099,0.925398409366608,0.128809377551079,-0.787846267223358,0.615590691566467,0.0186105258762836,-0.0734607800841331,0.985386550426483,0.153677746653557,0.352837562561035,-0.935482561588287,0.0194477401673794,0.282981425523758,-0.959124088287354,-0.00157776137348264,0.392831563949585,-0.919598639011383,-0.00465910229831934,0.282981425523758,-0.959124088287354,-0.00157776137348264,0.353851944208145,-0.935295462608337,-0.00334680313244462,0.392831563949585,-0.919598639011383,-0.00465910229831934,0.354442238807678,-0.934905111789703,-0.0179821942001581,0.214059561491013,-0.976489007472992,-0.0254545025527477,0.282100468873978,-0.959361732006073,-0.00666378764435649,
- 0.354327440261841,-0.935001373291016,-0.0149827580899,0.282571107149124,-0.959081947803497,-0.0177579149603844,0.213919579982758,-0.976590156555176,-0.022584892809391,0.300912380218506,-0.95348596572876,0.0177845135331154,0.300444692373276,-0.953772842884064,-0.00709710875526071,0.215449348092079,-0.974895238876343,-0.0562210381031036,0.359518259763718,-0.93292760848999,0.0198159646242857,0.355816900730133,-0.932276129722595,0.0652345195412636,0.281923711299896,-0.95864862203598,-0.0388854742050171,0.350419849157333,-0.936393558979034,0.0193144790828228,0.352066874504089,-0.934454917907715,0.0533189438283443,0.347094357013702,-0.935597538948059,0.0646740570664406,0.195639804005623,-0.955609560012817,0.220307469367981,0.283151686191559,-0.946848630905151,0.152652531862259,-0.458927989006042,-0.880922913551331,0.115585297346115,0.28306245803833,-0.959099352359772,0.00201403140090406,-0.77048659324646,-0.636445045471191,-0.0358939692378044,-0.462583810091019,-0.886323750019073,0.0211285911500454,-0.15068107843399,-0.988247871398926,0.0257173646241426,0.198008164763451,-0.960307836532593,0.196472957730293,0.593750476837158,-0.75776994228363,0.270638406276703,-0.4627805352211,-0.886450111865997,0.00635672966018319,0.621947824954987,-0.781720042228699,0.045770488679409,0.211041390895844,-0.977015435695648,0.0300428681075573,-0.197882413864136,-0.980206429958344,0.00616003246977925,-0.206689730286598,-0.978149831295013,0.0224115271121264,-0.196091204881668,-0.978447377681732,0.0647225305438042,-0.366472601890564,-0.712039291858673,0.598913908004761,-0.625586032867432,-0.77993106842041,-0.0187000744044781,-0.668722689151764,-0.74351167678833,0.000588881550356746,-0.123875446617603,-0.992274343967438,0.00683778477832675,-0.125659301877022,-0.98998486995697,0.0643401443958282,-0.132943153381348,-0.989870131015778,0.0498315989971161,0.629480004310608,-0.777010202407837,0.00317504932172596,0.627998352050781,-0.778135895729065,0.0110719241201878,0.62792956829071,-0.778039157390594,-0.0189611092209816,0.95707231760025,0.289801627397537,0.0052541121840477,
- 0.202065125107765,-0.279241234064102,-0.93871933221817,0.240849420428276,0.475627481937408,-0.846031963825226,-0.225549757480621,-0.417062073945999,-0.880446791648865,0.562245965003967,-0.696746289730072,-0.445448189973831,0.567530155181885,-0.688333809375763,-0.451781064271927,0.591408967971802,-0.806339859962463,0.00718981539830565,0.588967442512512,-0.808097302913666,-0.00981383305042982,0.589222133159637,-0.807896196842194,0.0110009321942925,0.671638906002045,-0.740795254707336,0.0111215328797698,0.664615333080292,-0.74715119600296,-0.00718285050243139,0.593549311161041,-0.730620622634888,-0.337479919195175,0.596803665161133,-0.802330553531647,-0.00955420639365911,0.594909846782684,-0.803763449192047,0.00682728458195925,0.597305715084076,-0.80170750617981,-0.0221569016575813,0.439077317714691,-0.897999048233032,-0.0284397080540657,0.406849324703217,-0.913161218166351,0.0247034262865782,0.207249939441681,-0.901996076107025,-0.378748685121536,0.151193544268608,-0.920372545719147,-0.360631227493286,0.0637947916984558,-0.997267603874207,0.0372532494366169,0.0240794382989407,-0.998951017856598,-0.0389495380222797,0.619630813598633,-0.784844279289246,-0.00878166127949953,0.596915066242218,-0.801840662956238,-0.0272796843200922,0.636317193508148,-0.770910799503326,-0.0282293148338795,0.596510171890259,-0.80254852771759,-0.00956397876143456,0.597100675106049,-0.801860153675079,-0.0221661403775215,0.597547471523285,-0.801022887229919,0.0360473804175854,0.636514365673065,-0.770936846733093,-0.0224912837147713,0.597757697105408,-0.801349401473999,-0.0229100603610277,0.624124884605408,-0.781011641025543,-0.022112162783742,0.596561968326569,-0.801655352115631,-0.0382453799247742,0.597765028476715,-0.800731956958771,-0.0388009734451771,0.635876357555389,-0.770788371562958,-0.0393258035182953,0.625519454479218,-0.780130863189697,0.0110124116763473,0.624124884605408,-0.781011641025543,-0.022112162783742,0.597757697105408,-0.801349401473999,-0.0229100603610277,0.588175892829895,-0.808623492717743,0.0133103439584374,0.588239848613739,-0.808626711368561,0.00983779784291983,
- 0.623068928718567,-0.78188019990921,0.0211775042116642,0.566819906234741,-0.823712766170502,0.0145770404487848,0.566583573818207,-0.82385241985321,0.015819413587451,0.566712558269501,-0.823848187923431,0.0105363726615906,0.594594120979309,-0.79269927740097,-0.134483054280281,0.589195072650909,-0.794614732265472,-0.146412387490273,0.848767757415771,-0.503163456916809,-0.162541881203651,0.843048512935638,-0.499055802822113,-0.2005305737257,-0.00264443014748394,-0.999219238758087,0.0394226312637329,0.594989657402039,-0.793489456176758,-0.127913355827332,0.584512174129486,-0.789412260055542,-0.187546893954277,0.485458821058273,-0.873849928379059,-0.0267585124820471,0.831209301948547,-0.509429037570953,-0.222650408744812,0.584512174129486,-0.789412260055542,-0.187546893954277,0.831209301948547,-0.509429037570953,-0.222650408744812,0.842688798904419,-0.498802214860916,-0.202662691473961,0.819807171821594,-0.572630286216736,-0.00327620026655495,0.819232404232025,-0.573409378528595,0.00774245709180832,0.819654107093811,-0.572777628898621,-0.00964236259460449,0.810103237628937,-0.586244821548462,0.0070506576448679,0.855495393276215,-0.517631709575653,0.0136138023808599,0.810484349727631,-0.585669815540314,-0.0102943349629641,0.861711621284485,-0.506629347801209,0.0279244519770145,0.861767828464508,-0.507179915904999,0.0111681213602424,0.861154198646545,-0.508294343948364,-0.00711138173937798,0.93317174911499,0.357125967741013,0.0406392924487591,0.935659110546112,0.352370291948318,-0.0194219816476107,0.933910012245178,0.355502933263779,-0.0378121994435787,0.854990303516388,-0.518253982067108,-0.0201090909540653,0.812151670455933,-0.583402097225189,0.00720470957458019,0.849247634410858,-0.527602076530457,-0.0203583929687738,0.842787981033325,-0.536429345607758,-0.0441810749471188,0.853986442089081,-0.518334686756134,-0.0451258420944214,0.84813666343689,-0.527836799621582,-0.0453048460185528,0.79446542263031,-0.607280790805817,0.00589557364583015,0.834704160690308,-0.527510702610016,0.158118635416031,0.841885983943939,-0.516487658023834,0.156424075365067,
- 0.855152606964111,-0.51818573474884,-0.014056671410799,0.843790531158447,-0.536497175693512,-0.0137229794636369,0.85890930891037,-0.511937499046326,-0.0139570301398635,0.833524465560913,0.551085352897644,-0.0392705015838146,0.83449125289917,0.550186276435852,0.0303252283483744,0.833535552024841,0.550742745399475,0.0435993149876595,0.97867751121521,-0.191655710339546,0.0738823935389519,0.981224298477173,-0.192578315734863,-0.0106145516037941,0.980752348899841,-0.193473950028419,-0.0263195857405663,0.843046844005585,-0.53467983007431,0.0582195296883583,0.456089794635773,-0.889829039573669,-0.0136610809713602,-0.775197148323059,-0.631416320800781,0.0195672009140253,0.982366144657135,-0.186683997511864,-0.0102896681055427,0.979692101478577,-0.186420053243637,0.0738306120038033,0.981555044651031,-0.188613533973694,0.0312181711196899,0.75594574213028,0.59808760881424,-0.266152769327164,0.557187438011169,0.829237937927246,0.043666947633028,0.871298432350159,-0.111979752779007,-0.477807074785233,0.900879204273224,-0.113399244844913,-0.418995797634125,0.931302785873413,0.361961334943771,0.040732741355896,0.93706214427948,0.348633497953415,0.0192160047590733,0.996999502182007,0.0651425197720528,0.0418165810406208,0.997186660766602,0.0267166029661894,0.0700356960296631,0.0945339873433113,0.00693718064576387,0.995497465133667,0.0065355091355741,-0.348249405622482,0.937379121780396,0.10257126390934,-0.351190656423569,0.930668830871582,0.549004852771759,-0.833762347698212,0.0586011372506619,0.984249114990234,-0.176519259810448,-0.00972940865904093,0.98350578546524,-0.178075507283211,0.0317098535597324,0.986515760421753,-0.159338116645813,-0.0373896881937981,-0.099110335111618,0.609127581119537,-0.786855101585388,0.939978718757629,-0.162400975823402,-0.300110191106796,0.979988515377045,0.193617150187492,0.0462049655616283,0.972104847431183,-0.234191328287125,-0.0129081839695573,0.986510276794434,-0.159342303872108,-0.0375164039433002,0.993006885051727,-0.111560180783272,-0.0386223718523979,0.0441818051040173,-0.997863292694092,0.0481327474117279,
- 0.984610021114349,-0.163433417677879,-0.0619082115590572,0.983992338180542,-0.160534054040909,-0.0773816257715225,0.974914133548737,-0.158794492483139,-0.155970916152,0.0173148382455111,-0.974391520023346,-0.224190458655357,0.0242418088018894,-0.885618448257446,-0.463780701160431,0.0274412073194981,-0.748259484767914,-0.662838399410248,0.627685725688934,-0.0806743949651718,-0.774275362491608,0.0186961889266968,-0.756914913654327,-0.65324592590332,0.986100733280182,-0.159620717167854,-0.046114943921566,0.996678590774536,-0.0692827850580215,-0.0427982620894909,0.992588222026825,-0.111799903213978,-0.0476384572684765,0.997407615184784,-0.0710428804159164,0.0114444252103567,0.987450480461121,-0.157560378313065,0.0107924081385136,0.986100792884827,-0.1659344881773,0.00842404272407293,0.997619211673737,-0.0682634860277176,-0.00979791954159737,0.809081852436066,-0.117499172687531,-0.575830280780792,0.0262240823358297,-0.194361701607704,-0.980579316616058,0.997295260429382,-0.0712436065077782,0.0180703364312649,0.98598849773407,-0.166129067540169,0.0150938918814063,0.995316505432129,-0.0963919833302498,-0.0073253633454442,0.0227709654718637,-0.941469848155975,-0.336327254772186,0.005167824216187,-0.944609224796295,-0.328156560659409,0.977790117263794,-0.209568902850151,0.0027533711399883,0.987901270389557,-0.106178753077984,0.113035969436169,0.997497022151947,-0.0705309361219406,-0.00500941229984164,0.956329107284546,0.292226225137711,0.00620246725156903,0.969900727272034,-0.114587858319283,-0.214853972196579,0.936987221240997,0.292816340923309,-0.190561071038246,0.773017585277557,0.622194111347198,-0.123768053948879,0.836113214492798,-0.528622627258301,0.146536722779274,-0.759786903858185,-0.602838814258575,0.243534877896309,0.432649850845337,0.10268796980381,0.895694851875305,0.831983745098114,-0.53169858455658,-0.158428683876991,-0.716428101062775,-0.196948245167732,-0.669284820556641,0.838145613670349,-0.530264556407928,-0.127794548869133,0.858882427215576,-0.512172758579254,-0.000261500477790833,0.843984842300415,-0.536366999149323,-0.000149249521200545,
- 0.843991935253143,-0.536355435848236,-0.000709435902535915,0.956279039382935,0.291739881038666,0.020451158285141,0.997320652008057,-0.0712046250700951,0.0167769845575094,0.573293209075928,0.817063570022583,-0.0611720271408558,0.773324489593506,-0.483799368143082,-0.409765094518662,-0.661144077777863,-0.178074926137924,-0.728819489479065,0.0769946426153183,-0.996059000492096,0.0440266206860542,0.853073060512543,-0.521714925765991,-0.00893760472536087,0.858882427215576,-0.512172758579254,-0.000261500477790833,0.843991935253143,-0.536355435848236,-0.000709435902535915,0.997094631195068,-0.0714885517954826,0.0262987539172173,0.992704331874847,-0.120461858808994,-0.00519943470135331,0.992121517658234,-0.120758295059204,-0.033354789018631,0.858147978782654,-0.510790586471558,-0.0517210997641087,0.838325798511505,-0.545121312141418,-0.00725119048729539,0.838133215904236,-0.545443415641785,-0.0049237459897995,0.992396533489227,-0.122981935739517,-0.00497631123289466,0.992129385471344,-0.124838821589947,0.00972618814557791,0.99164479970932,-0.124665901064873,-0.0331514067947865,0.852999269962311,-0.521791756153107,-0.0112185161560774,0.852778196334839,-0.52223527431488,-0.00629871431738138,0.852664411067963,-0.522383332252502,-0.00888993870466948,0.999608814716339,0.0272826831787825,-0.00615232950076461,0.997166872024536,0.0719522088766098,-0.0219354815781116,0.0155917033553123,0.139687657356262,-0.990072965621948,0.989136397838593,-0.146973073482513,-0.0028469986282289,0.989163756370544,-0.14583258330822,-0.0169749949127436,0.989057302474976,-0.147280663251877,0.00861756503582001,0.996996879577637,0.0773857682943344,-0.00297566992230713,0.013669234700501,0.496382981538773,-0.867996037006378,0.977131903171539,-0.167307689785957,-0.131230965256691,0.00769994733855128,0.872279763221741,-0.488946586847305,0.0137370098382235,0.887982308864594,-0.459672391414642,0.830233097076416,-0.152347758412361,-0.536193430423737,0.986087501049042,-0.165909260511398,-0.0102734034880996,0.980480372905731,-0.196395188570023,-0.00934741459786892,
- 0.985099673271179,-0.170983627438545,-0.0185273122042418,0.989163756370544,-0.14583258330822,-0.0169749949127436,0.980583727359772,-0.196100071072578,0.000521024514455348,0.989057302474976,-0.147280663251877,0.00861756503582001,0.986164391040802,-0.165415376424789,0.0108425756916404,0.0239673797041178,0.999453961849213,0.0227498840540648,0.984725534915924,-0.17279902100563,-0.0213624592870474,0.984802484512329,-0.17294180393219,-0.01597617007792,0.980388462543488,-0.196541354060173,-0.014489964582026,0.98600047826767,-0.166020169854164,-0.0155034242197871,0.028165752068162,0.893302261829376,0.448572993278503,0.775875389575958,0.629610002040863,0.0401106253266335,0.889395415782928,-0.166749030351639,0.425641626119614,0.979721784591675,-0.186265140771866,0.0738290548324585,0.980371475219727,-0.193754330277443,-0.0364859849214554,0.98486739397049,-0.173304378986359,-0.00134499988052994,0.991959154605865,-0.125591278076172,-0.0156157044693828,0.980310618877411,-0.196638494729996,-0.0180123019963503,0.984793901443481,-0.172922968864441,-0.0166981853544712,0.992007613182068,-0.125710710883141,-0.0108579434454441,0.984841406345367,-0.173045098781586,-0.0119579378515482,0.9775230884552,-0.208108842372894,-0.033754501491785,0.980598330497742,-0.195977345108986,0.00444810464978218,0.900762379169464,-0.43407928943634,0.0142242107540369,0.959737598896027,0.279467195272446,0.0283171534538269,0.980598330497742,-0.195977345108986,0.00444810464978218,0.991861701011658,-0.125430211424828,-0.0218597128987312,0.900762379169464,-0.43407928943634,0.0142242107540369,0.889688611030579,-0.456551373004913,-0.00387753639370203,0.992011427879334,-0.126073211431503,0.00434827478602529,0.919707059860229,0.369986295700073,-0.131336495280266,0.888821542263031,-0.45707955956459,0.0327801555395126,0.897734880447388,-0.429712384939194,0.0970532596111298,0.991456568241119,-0.126642867922783,0.0312327779829502,0.889161229133606,-0.457001715898514,0.0232811067253351,0.949505150318146,0.290133029222488,-0.119427785277367,0.950286149978638,0.310906022787094,-0.0171365514397621,
- 0.900430142879486,-0.434836864471436,-0.0119362575933337,0.85826563835144,-0.51309072971344,0.0108716497197747,0.858749032020569,-0.512285351753235,-0.0106788501143456,0.858848989009857,-0.512182652950287,-0.00688569201156497,0.858615934848785,-0.512507915496826,-0.0106914611533284,0.858142793178558,-0.513296246528625,0.0108613083139062,0.589778661727905,-0.80738890171051,0.0168622378259897,0.59143328666687,-0.806247293949127,0.0131141990423203,0.590532422065735,-0.806985139846802,-0.00681740650907159,0.596378028392792,-0.802520394325256,0.0171603914350271,0.597058713436127,-0.802171528339386,-0.00646024383604527,0.619525969028473,-0.784718811511993,-0.0200987923890352,0.850085079669952,-0.526546776294708,0.0101901814341545,0.900762915611267,-0.434052795171738,0.0149852437898517,0.844154715538025,-0.535777688026428,0.0185764729976654,0.463729411363602,-0.885877132415771,-0.013295978307724,0.775080680847168,-0.506687223911285,-0.377515912055969,0.581230938434601,-0.744075238704681,-0.329427719116211,0.889236569404602,-0.456974506378174,0.020800456404686,0.844155132770538,-0.535764217376709,0.0189439095556736,0.900762856006622,-0.434039503335953,0.0153628056868911,0.598167479038239,-0.763348996639252,-0.243913978338242,0.801997780799866,-0.520627379417419,-0.29282546043396,0.819972813129425,-0.511499166488647,-0.256930351257324,0.843914568424225,-0.536463737487793,0.00385723146609962,0.844069123268127,-0.536204218864441,0.00571135897189379,0.889568328857422,-0.456759065389633,0.00627112155780196,0.861686706542969,-0.506671607494354,0.0279267802834511,0.843869805335999,-0.536514699459076,0.00598147558048368,0.889530956745148,-0.456797182559967,0.00842981692403555,0.607330322265625,-0.790338456630707,-0.0807155296206474,0.613755464553833,-0.779996812343597,-0.122103154659271,0.840497732162476,-0.529928207397461,-0.11287023127079,0.843667924404144,-0.536684334278107,0.0139508740976453,0.861711621284485,-0.506629347801209,0.0279244519770145,0.861154198646545,-0.508294343948364,-0.00711138173937798,0.60744047164917,-0.792043805122375,-0.0606848038733006,
- 0.842528581619263,-0.532372713088989,-0.082005500793457,0.121347308158875,-0.991984724998474,0.0352325588464737,0.0377014614641666,-0.0932714715600014,-0.994926631450653,0.0299723446369171,-0.139533549547195,-0.989763617515564,0.997693359851837,-0.0581141524016857,0.0350842177867889,0.987344086170197,0.15717040002346,0.0211970079690218,0.999103188514709,0.041188795119524,0.00981293804943562,0.0407008640468121,0.098828487098217,-0.994271755218506,0.520795464515686,0.852527260780334,0.0443777069449425,0.0416858047246933,0.563977241516113,-0.82473748922348,0.0414235815405846,0.557439208030701,-0.8291836977005,0.977539718151093,0.21001860499382,0.0175591297447681,0.974831163883209,0.211902365088463,0.0692931711673737,0.976509511470795,0.214735478162766,0.0178340319544077,0.204568088054657,0.977684617042542,0.0478006042540073,0.975464165210724,0.219981282949448,-0.00882780272513628,0.0401781462132931,0.9985191822052,-0.0366764180362225,0.973367273807526,0.218406900763512,0.0696764513850212,0.967240750789642,0.222360163927078,0.12247996032238,0.975227653980255,0.220462307333946,0.0180944930762053,0.0249840300530195,0.846998631954193,-0.531007647514343,0.0458066686987877,0.82964414358139,-0.556410193443298,0.885320842266083,0.186166450381279,-0.426085740327835,0.968169271945953,0.240035176277161,0.0709325522184372,0.970697522163391,0.239806294441223,0.0154672395437956,0.96671050786972,0.239511042833328,0.0900292247533798,0.963328778743744,0.252605557441711,0.0904883071780205,0.967103660106659,0.253971219062805,0.0144617687910795,0.964963495731354,0.256278246641159,0.0562755987048149,0.230060368776321,0.970496356487274,0.0721752271056175,0.235714614391327,0.971383929252625,-0.0291879680007696,0.241083472967148,0.968927383422852,-0.0553037375211716,0.973397433757782,0.221669375896454,0.0579684041440487,0.980891168117523,0.182463228702545,0.0675270408391953,0.982540667057037,0.176261708140373,0.0595454387366772,0.990604221820831,0.1074613109231,0.0845894366502762,0.809668362140656,0.173891574144363,0.560534656047821,0.990804374217987,0.119435593485832,0.0635758191347122,
- 0.982795774936676,0.174873739480972,0.0594274289906025,0.973397433757782,0.221669375896454,0.0579684041440487,0.982540667057037,0.176261708140373,0.0595454387366772,0.996246457099915,-0.0398298539221287,0.0768544003367424,0.887425780296326,0.169898867607117,0.428497165441513,0.887843668460846,0.179975837469101,0.423488259315491,0.0411644242703915,0.813579320907593,0.579995036125183,0.804021894931793,0.199620723724365,0.560089588165283,0.822085857391357,0.176903545856476,0.541183888912201,0.972245752811432,0.221928626298904,0.0740671381354332,0.981625974178314,0.175186395645142,0.0756321251392365,0.973000764846802,0.218511253595352,0.0743128135800362,0.894751608371735,0.445444911718369,-0.0315974615514278,-0.232521206140518,0.507097721099854,0.829931318759918,0.849996507167816,0.517923831939697,0.0962335541844368,0.686394274234772,0.0977451801300049,-0.720630824565887,0.192849859595299,0.978751003742218,0.0696806088089943,0.292867571115494,0.881865680217743,-0.369515299797058,0.890915036201477,0.454122245311737,0.00660556508228183,0.0349299050867558,0.554691791534424,0.831322371959686,0.762562870979309,0.162090361118317,0.626278400421143,0.898580253124237,0.438743829727173,0.00757347233593464,0.0136789288371801,0.389346420764923,0.920989811420441,0.0314603261649609,0.440142601728439,0.897376596927643,0.975231051445007,0.2198166847229,0.0246014222502708,0.984432637691498,0.174044579267502,0.0245133470743895,0.980099856853485,0.197012916207314,0.0242980550974607,0.980099856853485,0.197012916207314,0.0242980550974607,0.981991171836853,0.187633901834488,0.0220642630010843,0.975231051445007,0.2198166847229,0.0246014222502708,0.979387640953064,0.168823450803757,-0.110899455845356,0.0502753518521786,0.299260646104813,-0.952845990657806,0.975517332553864,0.19894477725029,-0.0937395542860031,-0.343208789825439,0.0947782695293427,0.934464991092682,0.00275730900466442,0.0164128392934799,0.999861598014832,0.703249037265778,0.14603690803051,0.695783019065857,0.973819077014923,0.226445376873016,0.0199732631444931,0.980277895927429,0.197623133659363,0.000558790809009224,
- 0.973749279975891,0.226003497838974,0.0271101593971252,-0.153704181313515,-0.914905965328217,-0.373258829116821,-0.598221898078918,-0.801306366920471,-0.00622262666001916,-0.890206515789032,-0.169244349002838,-0.422952353954315,0.981875777244568,-0.185325190424919,0.0396806485950947,0.99134635925293,-0.131263628602028,-0.00149626028724015,0.0434515215456486,-0.357281893491745,0.932985424995422,0.764606237411499,0.549937427043915,-0.336074620485306,0.155571311712265,0.926019847393036,-0.343925893306732,0.300364106893539,0.868143618106842,-0.395105123519897,0.963620781898499,0.26668307185173,0.0177510678768158,0.964600622653961,0.263623923063278,0.006935172714293,0.964698433876038,0.262053906917572,0.0261668004095554,0.974271357059479,0.225328207015991,0.00474823685362935,0.973819077014923,0.226445376873016,0.0199732631444931,0.973749279975891,0.226003497838974,0.0271101593971252,0.955610930919647,0.20712922513485,0.209535673260689,0.050261601805687,-0.740568041801453,0.670099020004272,0.977567136287689,-0.210500150918961,-0.00721994927152991,0.957514584064484,0.207238331437111,0.200544506311417,0.0370154194533825,-0.9453986287117,0.323807567358017,0.0487957149744034,-0.909959077835083,0.411817222833633,0.935390770435333,0.353042840957642,-0.0201224721968174,0.964698433876038,0.262053906917572,0.0261668004095554,0.964600622653961,0.263623923063278,0.006935172714293,0.966303288936615,0.25611424446106,0.0257585160434246,0.935250461101532,0.353911459445953,0.00729654729366302,0.978566110134125,0.205574825406075,0.0121399769559503,0.0487347468733788,-0.996323466300964,-0.0704593881964684,0.974546432495117,0.201147064566612,-0.0989907085895538,0.975532472133636,0.212414368987083,-0.0567141324281693,0.0492646396160126,-0.994014620780945,-0.097508892416954,0.969211339950562,0.211037993431091,-0.126855686306953,0.659699380397797,-0.748453736305237,0.0679246261715889,0.976478040218353,0.212620228528976,0.0358254350721836,0.964963495731354,0.256278246641159,0.0562755987048149,0.967103660106659,0.253971219062805,0.0144617687910795,
- 0.978639781475067,0.205442920327187,0.00757172657176852,0.959106683731079,0.282957404851913,0.00703291734680533,0.977083683013916,0.212752103805542,0.00663108984008431,0.968104541301727,0.243957802653313,0.0570802614092827,0.977027297019959,0.212739810347557,0.0126271964982152,0.959062933921814,0.28289583325386,0.0129697360098362,0.959100782871246,0.282945960760117,0.00821579713374376,0.978612780570984,0.205496400594711,0.0094054127112031,0.93529611825943,0.353836715221405,0.00456012599170208,0.817296743392944,0.559256255626678,-0.138775140047073,0.220159843564034,0.974988102912903,-0.0304605532437563,0.945431113243103,0.280340701341629,-0.166039496660233,0.827604949474335,0.555923640727997,0.0775834769010544,0.942975401878357,0.276738971471787,0.184967368841171,0.907530307769775,0.350939065217972,0.230717346072197,0.306317418813705,0.93877375125885,-0.157713979482651,0.30078399181366,0.953397214412689,-0.0237269904464483,0.811493098735809,0.557120680809021,-0.176339715719223,0.827761292457581,0.560703456401825,-0.0205641258507967,0.857707858085632,0.506759762763977,0.086785651743412,0.873220086097717,0.480591118335724,-0.0807393118739128,0.83985036611557,0.542318820953369,0.0232785921543837,0.839295506477356,0.543652236461639,-0.00503087695688009,0.934651017189026,0.354404836893082,0.0287184324115515,0.84050178527832,0.541511535644531,0.0179447568953037,0.840301692485809,0.542095065116882,-0.0051238713786006,0.840858399868011,0.540758371353149,0.0231846459209919,0.840014934539795,0.542107462882996,0.0222344025969505,0.828680098056793,0.559246838092804,0.0230713412165642,0.934622943401337,0.354418784379959,0.0294498074799776,0.934622943401337,0.354418784379959,0.0294498074799776,0.839678406715393,0.543060302734375,-0.00506624020636082,0.840014934539795,0.542107462882996,0.0222344025969505,0.850649416446686,0.518986761569977,0.0839556604623795,0.828099429607391,0.560474276542664,-0.0109501956030726,0.737637400627136,0.675139963626862,-0.00878103077411652,0.82799357175827,0.560557782649994,-0.0142071265727282,0.84043025970459,0.541626453399658,-0.0178273897618055,
- 0.737556397914886,0.675175249576569,-0.0122094564139843,0.737813055515289,0.675004959106445,0.000482991803437471,0.588692009449005,0.808343410491943,0.00476184440776706,0.630577862262726,0.776037156581879,0.0117429066449404,0.599053382873535,0.799409151077271,0.0456078089773655,0.602762281894684,0.797910988330841,0.00398544780910015,0.588769793510437,0.80811482667923,0.0173376835882664,0.555634081363678,0.75371116399765,0.35098472237587,-0.297634720802307,0.950633347034454,-0.0878068283200264,-0.34441152215004,0.938809394836426,-0.00419891905039549,0.837148606777191,0.537998855113983,-0.098688542842865,0.639054417610168,0.759191691875458,-0.123440027236938,0.733259558677673,0.673772692680359,-0.0914375558495522,0.737852990627289,0.674953699111938,0.00323600578121841,0.640775918960571,0.767695844173431,0.00702386302873492,0.588716864585876,0.808304607868195,0.00749513087794185,0.802628934383392,0.596475958824158,-0.00179632322397083,0.831313729286194,0.549663484096527,-0.0823866054415703,0.70052832365036,0.441259384155273,-0.560847759246826,0.814746677875519,0.520626962184906,-0.255216419696808,0.857186496257782,0.507130444049835,-0.0897219106554985,0.622692108154297,0.732046782970428,-0.276337027549744,0.60045337677002,0.799561023712158,0.0125668756663799,0.579807639122009,0.81469064950943,-0.0101138260215521,0.626932740211487,0.778373181819916,-0.0330239161849022,0.866047143936157,0.499904662370682,-0.0075957914814353,0.866477608680725,0.498837471008301,0.0194349251687527,0.866889238357544,0.498497277498245,0.00187627319246531,0.903105020523071,0.429013907909393,-0.0186650287359953,0.560952842235565,0.694042861461639,0.451260924339294,0.874674320220947,0.47532531619072,-0.0949244797229767,0.995416820049286,-0.0856384336948395,-0.0425612442195416,0.985585689544678,-0.0673420876264572,-0.155196398496628,0.994616568088531,-0.102036498486996,0.018073558807373,0.588687419891357,0.808349311351776,0.00430125137791038,0.640840351581573,0.767659783363342,0.00473034661263227,0.583409547805786,0.812174499034882,0.00243498873896897,
- 0.622371792793274,0.782696306705475,0.00631198938935995,0.583264470100403,0.812247514724731,0.00752098625525832,0.640693247318268,0.767734289169312,0.00980870053172112,0.55930083990097,0.791759669780731,0.245559006929398,0.276092320680618,0.945298254489899,0.173736244440079,0.579368591308594,0.79035484790802,0.199176907539368,0.583430051803589,0.812161803245544,0.00167122448328882,0.617107152938843,0.78685075044632,0.00668281782418489,0.61663943529129,0.787225246429443,-0.00568127306178212,-0.714917242527008,0.697783291339874,0.0446294210851192,0.282688021659851,0.951069593429565,-0.124716304242611,0.568972885608673,0.777462184429169,-0.267996966838837,0.276634991168976,0.94666451215744,0.165225252509117,0.253610342741013,0.96058064699173,0.113871015608311,0.577431380748749,0.787234723567963,0.2164126932621,-0.495294213294983,0.859149217605591,-0.12863227725029,0.505925357341766,0.680675268173218,0.529830813407898,0.249385997653008,0.921272993087769,0.298433810472488,0.119334414601326,0.9921013712883,-0.0386548489332199,0.25066751241684,0.967535614967346,-0.0322589017450809,0.28336089849472,0.958445429801941,-0.032998513430357,0.118922546505928,0.992619752883911,-0.0237370375543833,0.283243954181671,0.958877265453339,-0.0180917177349329,0.286571025848389,0.957991898059845,0.0113474056124687,0.101846657693386,0.9945108294487,-0.0239891149103642,0.27598449587822,0.960455179214478,0.0368565991520882,0.250817477703094,0.967620074748993,-0.0283229183405638,0.251299500465393,0.967794716358185,-0.0148981064558029,0.118845492601395,0.992689669132233,-0.0210476405918598,0.102300904691219,0.994700312614441,-0.010296456515789,0.246874451637268,0.968572974205017,0.0303217209875584,0.101467862725258,0.994223415851593,-0.0349870957434177,0.238834261894226,0.970786869525909,0.0230454858392477,0.102905936539173,0.994651079177856,0.00892050191760063,0.0268697291612625,0.997800052165985,0.0606058724224567,0.0567339658737183,0.997325837612152,-0.0460698530077934,0.0119392015039921,0.998245000839233,0.058003019541502,0.102765060961246,0.994696319103241,0.00433574616909027,
- 0.0395376682281494,0.999198079109192,0.00632335711270571,0.102668911218643,0.994714796543121,0.00124711450189352,0.118012815713882,0.992991983890533,0.00631698733195663,0.0394414402544498,0.999216616153717,0.00324494973756373,0.0407576374709606,0.998089134693146,0.0464447997510433,0.71090304851532,0.703289985656738,0.000179835376911797,0.692472279071808,0.703192234039307,0.1612538844347,0.0386988036334515,0.999048292636871,-0.0201231855899096,-0.000596337020397186,0.999820590019226,-0.0189335942268372,0.0833858698606491,0.996284008026123,-0.0215645208954811,0.0386988036334515,0.999048292636871,-0.0201231855899096,0.118826910853386,0.992705464363098,-0.0204018522053957,-0.000596337020397186,0.999820590019226,-0.0189335942268372,0.0202973838895559,0.999526381492615,-0.0231313928961754,2.18048025999451e-005,0.999999761581421,0.000692327157594264,0.0185660049319267,0.996719598770142,0.0787742361426353,-0.949090361595154,0.0273613911122084,0.313813716173172,-0.739684343338013,0.67168915271759,0.0412403494119644,0.00988984387367964,0.949371099472046,0.314001172780991,-0.0114400191232562,0.984969079494476,-0.172351524233818,-0.959472119808197,0.0182361174374819,-0.281212896108627,-0.00639911228790879,0.979122042655945,-0.203172504901886,-0.000120488795801066,0.999992668628693,-0.00382547802291811,0.118280336260796,0.992977917194366,-0.00216276315040886,-0.0156039735302329,0.999860227108002,-0.00600532535463572,-0.879317820072174,0.00749884499236941,-0.476176619529724,-0.8921719789505,0.013964993879199,-0.451479971408844,-0.00140917452517897,0.858557283878326,-0.512715756893158,-0.0156200034543872,0.999863922595978,-0.00532917398959398,0.118261098861694,0.992981433868408,-0.001543621532619,0.0401483103632927,0.999049246311188,-0.0169975738972425,0.0142599437385798,0.999767184257507,-0.0161934923380613,0.0361669883131981,0.0157357826828957,-0.999221861362457,-0.0105304270982742,0.978395223617554,-0.206475451588631,0.11808418482542,0.992995321750641,0.0040813316591084,0.0258572213351727,0.999557316303253,0.0147230587899685,
- 0.0247677639126778,0.999556720256805,-0.0165211372077465,0.277243047952652,0.960727632045746,0.011779272928834,0.276905953884125,0.960887730121613,0.00423028087243438,0.118707522749901,0.992795407772064,-0.0163052268326283,0.061884269118309,0.997927010059357,-0.0176644884049892,0.0181406084448099,0.999787449836731,0.00980647467076778,0.152683988213539,0.0155614605173469,-0.98815256357193,-0.22478149831295,0.0365654118359089,-0.973722994327545,-0.43040257692337,0.014213009737432,-0.902525126934052,-0.0301808658987284,0.99953281879425,0.00481890188530087,0.0205600205808878,0.999765932559967,-0.00673894304782152,0.0205469466745853,0.999654531478882,-0.0163897387683392,0.0217349249869585,0.999652922153473,0.0148868598043919,0.0333019644021988,0.999304473400116,-0.0167859587818384,0.0334374643862247,0.999422669410706,-0.00602645985782146,0.0315553992986679,0.999439477920532,0.0111877750605345,0.281200349330902,0.959578990936279,0.0115963397547603,0.280003249645233,0.959966778755188,0.00787445716559887,0.280880302190781,0.959734261035919,0.00405564485117793,0.0350000113248825,0.999320685863495,0.0115422373637557,-0.0261504705995321,0.769718110561371,-0.637848079204559,0.146984979510307,0.0400678515434265,-0.988326966762543,0.0311671420931816,0.999452114105225,0.0111478166654706,0.0326417237520218,0.999448776245117,-0.00607052631676197,-0.0078281257301569,0.999968409538269,0.00144905631896108,0.764740288257599,0.0313591659069061,-0.643575072288513,-0.0267389323562384,0.749360620975494,-0.661622107028961,0.78360241651535,0.0246803667396307,-0.620772361755371,-0.00449213664978743,0.994359791278839,0.105964258313179,0.837485134601593,0.0804209783673286,0.540510237216949,0.94172877073288,0.0296606160700321,0.335062980651855,0.244998827576637,0.969505608081818,0.00586996925994754,0.24474723637104,0.969496190547943,0.0132657643407583,0.245058462023735,0.969508290290833,8.44536916702054e-005,0.623358726501465,0.781911075115204,0.00624221749603748,0.624478995800018,0.780924618244171,0.013519617728889,0.62307608127594,0.782137811183929,-0.00605486193671823,
- 0.596919417381287,0.802204191684723,0.0124840419739485,0.600640296936035,0.79948103427887,0.00782837998121977,0.597558796405792,0.801768481731415,-0.00952903646975756,0.361540019512177,0.0061421450227499,0.932336390018463,0.363966017961502,0.0953298658132553,0.926521003246307,0.858698129653931,0.509665369987488,0.0536540187895298,-0.130307838320732,0.990445017814636,0.0451501719653606,-0.0999378710985184,0.992045402526855,0.076540008187294,-0.119418412446976,0.0816444978117943,0.989481389522552,-0.738465547561646,-0.0876711383461952,-0.668567478656769,-0.00567169208079576,0.969794690608978,-0.243856593966484,-0.213189139962196,0.975806951522827,0.0484895259141922,0.998268783092499,0.0431072823703289,0.04001534730196,-0.00982936285436153,0.997991263866425,-0.0625848770141602,-0.0123504055663943,0.996319174766541,-0.0848277807235718,0.0187952741980553,0.999822795391083,-0.00103595980908722,0.0180264282971621,0.996730089187622,0.0787665694952011,0.0207147635519505,0.999049484729767,0.038354005664587,0.00748102553188801,0.999971926212311,-0.000412341731134802,0.00894523877650499,0.99920254945755,0.0389160737395287,-0.0136117255315185,0.998467206954956,-0.0536490380764008,0.0202973838895559,0.999526381492615,-0.0231313928961754,0.0185660049319267,0.996719598770142,0.0787742361426353,0.0196802839636803,0.999805748462677,-0.00108474004082382,0.74820464849472,0.663465023040771,0.00200172350741923,0.746129751205444,0.664529263973236,-0.0411252565681934,0.746964335441589,0.662544250488281,0.0554924644529819,0.0201513599604368,0.9989914894104,0.0401237346231937,0.0217244010418653,0.999763309955597,-0.00119740783702582,0.023591598495841,0.999271869659424,-0.0299870446324348,-0.0147218834608793,0.999556481838226,-0.0258867368102074,-0.00865892134606838,0.9996497631073,-0.0250083301216364,0.0790274441242218,0.99659526348114,-0.0235108099877834,-0.0153769897297025,0.999838054180145,-0.00935972202569246,0.0786476731300354,0.996881425380707,-0.00648012198507786,0.0270088855177164,0.999634087085724,-0.00148867897223681,0.194203168153763,0.980902910232544,-0.0107041113078594,
- 0.194970101118088,0.980778396129608,0.00776934111490846,0.194770395755768,0.980672240257263,-0.0186183135956526,0.185774192214012,0.982558608055115,0.00815941859036684,0.185087695717812,0.982669055461884,-0.010201683267951,0.0789137482643127,0.996713399887085,-0.0183037482202053,0.272131621837616,0.962170004844666,-0.0131624173372984,0.274643450975418,0.961536407470703,0.00432957196608186,0.268339484930038,0.963115930557251,0.0200420413166285,-0.409224480390549,0.912397027015686,-0.00818722881376743,-0.398929864168167,0.915701806545258,-0.0484269075095654,-0.424006789922714,0.905130088329315,0.0309471879154444,-0.000136300455778837,0.999983370304108,-0.00576998433098197,0.0785965174436569,0.996897399425507,-0.00426116539165378,-0.00804578419774771,0.999952793121338,-0.00546546233817935,-0.000157474496518262,0.999977767467499,-0.00666633807122707,-0.00807361025363207,0.999947249889374,-0.00635032309219241,0.00842456240206957,0.999937057495117,-0.00740917446091771,0.306904733181,0.951729714870453,0.00450421776622534,0.0788197889924049,0.996789574623108,-0.0140713676810265,0.000260721077211201,0.99993908405304,0.0110427942126989,-0.00547928363084793,0.972717046737671,-0.231930106878281,0.939724683761597,0.338384121656418,0.049131415784359,0.300561219453812,0.945420205593109,-0.125871166586876,0.0799699127674103,0.994249224662781,-0.0712283849716187,0.304207801818848,0.95042759180069,-0.0643819868564606,0.206304296851158,0.976204872131348,-0.066802904009819,0.302672326564789,0.953089654445648,0.00309305498376489,0.0799699127674103,0.994249224662781,-0.0712283849716187,0.206304296851158,0.976204872131348,-0.066802904009819,0.268601924180985,0.963224232196808,0.00722038885578513,0.227021291851997,0.973655939102173,-0.0213457383215427,0.305968850851059,0.95174103975296,-0.0239168684929609,0.205718189477921,0.978308498859406,-0.0243453700095415,0.305968850851059,0.95174103975296,-0.0239168684929609,0.227021291851997,0.973655939102173,-0.0213457383215427,0.254207015037537,0.967128694057465,0.00639622285962105,0.254202991724014,0.967150807380676,0.000391033216146752,
- 0.228190988302231,0.973482012748718,0.0161764025688171,0.604670763015747,0.795584619045258,0.0376612655818462,0.205187365412712,0.978721976280212,0.00118390144780278,0.22666135430336,0.973474204540253,-0.0311866104602814,-0.249228999018669,0.968120336532593,0.0250581540167332,0.204203844070435,0.978212833404541,0.0374227650463581,0.601268291473389,0.794314801692963,0.0868355184793472,-0.357749193906784,0.933632075786591,-0.0186191163957119,0.588151693344116,0.773913502693176,0.234809443354607,0.229591459035873,0.958005964756012,0.171791434288025,0.584498345851898,0.780971527099609,0.22010312974453,0.229432344436646,0.970097243785858,0.0791971683502197,0.59779304265976,0.796112656593323,0.0940643772482872,0.592411994934082,0.805541157722473,0.0123158022761345,0.573695242404938,0.818788170814514,-0.0214459523558617,0.596618235111237,0.802208244800568,-0.0225529950112104,0.573695242404938,0.818788170814514,-0.0214459523558617,0.606817066669464,0.794544875621796,-0.0217137839645147,0.596618235111237,0.802208244800568,-0.0225529950112104,0.571518540382385,0.818359076976776,-0.0604565739631653,0.601685881614685,0.798632442951202,0.0126622887328267,0.602363467216492,0.798166930675507,-0.00936829671263695,0.574326038360596,0.818597495555878,0.00692847790196538,0.57317990064621,0.819372594356537,-0.00966263376176357,0.605992913246155,0.795424818992615,0.00848528742790222,0.60641884803772,0.795132040977478,-0.00462846690788865,0.574289321899414,0.818625092506409,-0.00670819683000445,0.574667632579803,0.818363189697266,-0.00622749421745539,0.548027634620667,0.836418032646179,-0.00840395595878363,0.573971450328827,0.818683564662933,0.0177193842828274,0.548808932304382,0.835801899433136,0.0156202642247081,0.545577228069305,0.837911486625671,0.0158051066100597,0.543296098709106,0.838431715965271,0.0431491024792194,0.544716656208038,0.838579714298248,-0.0082395588979125,0.607573211193085,0.792931973934174,0.0459754019975662,0.608768999576569,0.793255925178528,0.0120567204430699,0.609139382839203,0.792980015277863,0.0114939920604229,
- 0.942107081413269,-0.0191288888454437,0.334766149520874,0.558943569660187,0.806795001029968,0.191478371620178,0.569534242153168,0.797854840755463,0.197631970047951,0.997676312923431,-0.0294883511960506,0.0614203624427319,0.840657353401184,-0.539461433887482,-0.0477160438895226,0.399223119020462,0.606434226036072,0.687647044658661,0.878367483615875,0.452213674783707,-0.154833406209946,0.990155041217804,-0.0354509018361568,-0.135411307215691,0.554975807666779,0.805011570453644,-0.209662064909935,0.554975807666779,0.805011570453644,-0.209662064909935,0.990369737148285,-0.137160494923592,0.0188363883644342,0.878367483615875,0.452213674783707,-0.154833406209946,0.959866464138031,-0.277421563863754,-0.0411541238427162,0.999467849731445,-0.0317193306982517,-0.00762127619236708,0.881551384925842,0.470572233200073,-0.0378042757511139,0.997145593166351,-0.0335367321968079,-0.067646212875843,0.887143969535828,0.455977708101273,-0.0711329430341721,0.875882029533386,0.463185369968414,-0.135240390896797,0.872876524925232,0.487870782613754,-0.00828466471284628,0.87121593952179,0.488984286785126,-0.0433289408683777,0.871601998806,0.489491641521454,0.0266065113246441,0.868309080600739,0.494154185056686,-0.0430237129330635,0.870008528232574,0.492972105741501,-0.0079934960231185,0.880731165409088,0.47294545173645,0.0252041593194008,0.870894253253937,0.490752309560776,0.0265587940812111,0.870709359645844,0.489890247583389,-0.0432756282389164,0.871735155582428,0.48880997300148,-0.0338063389062881,0.33114767074585,0.942002058029175,-0.054528784006834,0.408639162778854,0.912686467170715,-0.00418133195489645,0.37114092707634,0.624061763286591,-0.687605500221252,0.693258464336395,0.544329524040222,0.47233259677887,0.0503085516393185,0.954639971256256,0.293482184410095,0.037127960473299,0.999084413051605,0.0212615989148617,0.037127960473299,0.999084413051605,0.0212615989148617,0.726751267910004,0.413806915283203,0.548266708850861,0.693258464336395,0.544329524040222,0.47233259677887,0.812176883220673,0.58320289850235,0.0155988223850727,0.881080389022827,0.472706913948059,0.0156703237444162,
- 0.889619588851929,0.456497877836227,0.0136722140014172,0.881675362586975,0.471361756324768,-0.0216017030179501,0.811774075031281,0.583613455295563,-0.0204499009996653,0.802360653877258,0.596148729324341,-0.0287065785378218,0.812179505825043,0.583354413509369,0.00789196044206619,0.889659404754639,0.456588298082352,0.00576556054875255,0.873977899551392,0.485960334539413,0.00228405371308327,0.164895445108414,0.981520473957062,0.0970940142869949,0.772019028663635,0.589245796203613,0.238277181982994,0.804137289524078,0.574785888195038,0.151606246829033,0.812173545360565,0.583382964134216,0.00620276853442192,0.860416769981384,0.509588956832886,0.00151233584620059,0.859998762607574,0.509940207004547,0.0190560221672058,0.809729337692261,0.580019772052765,0.0889691114425659,0.472458928823471,0.881352126598358,0.00100103241857141,0.164984047412872,0.982048034667969,0.0914435014128685,-0.0156139433383942,0.999736189842224,-0.0168503783643246,0.0536047481000423,0.998231768608093,-0.0256888512521982,-0.017070921137929,0.999831199645996,0.00679735373705626,0.0526395998895168,0.997701585292816,-0.0426690429449081,0.00723426416516304,0.999857902526855,-0.0152331301942468,0.0298391412943602,0.998711228370667,-0.0410548560321331,0.601707220077515,0.798150479793549,0.0300713665783405,0.591194093227386,0.793613076210022,0.143762946128845,0.0406951680779457,0.96410858631134,0.262371003627777,0.366516888141632,0.923488438129425,0.113290198147297,-0.000981311197392643,0.917960166931152,0.396671414375305,0.0445056930184364,0.916703343391418,0.397082179784775,-0.00596872065216303,0.999981820583344,-0.000954996270593256,-0.0073015196248889,0.999324560165405,0.0360157266259193,-0.0148050840944052,0.998462021350861,0.0534266158938408,0.0305384863168001,0.999252021312714,-0.0237241126596928,0.0241091530770063,0.999485909938812,-0.0211345087736845,0.0536036528646946,0.998231410980225,-0.0257083959877491,0.00806628260761499,0.999892294406891,0.0122626814991236,-0.00767615763470531,0.999892294406891,0.0125102307647467,0.000311492476612329,0.999999940395355,4.98384542879649e-005,
- 0.0516349263489246,0.990713000297546,0.125783756375313,0.0377441793680191,0.984534800052643,0.171074971556664,-0.00525179132819176,0.987092077732086,0.160068228840828,0.0244220364838839,0.999096930027008,-0.0347697287797928,0.0301989782601595,0.99902617931366,-0.0321668796241283,0.055803369730711,0.997862815856934,-0.0339961238205433,-0.129366666078568,0.978296995162964,-0.161861881613731,0.0051474804058671,0.986082077026367,-0.166179522871971,-0.254243195056915,0.966284573078156,-0.0406789071857929,-0.676282644271851,0.736572027206421,-0.0101753156632185,-0.123808771371841,0.844890654087067,-0.520414412021637,-0.694694936275482,0.710664868354797,-0.111151181161404,0.00804003141820431,0.999911665916443,0.010586179792881,-0.0474683977663517,0.998833358287811,0.00887112785130739,-0.00770268868654966,0.999911725521088,0.0108353635296226,-0.0420514568686485,0.988214790821075,-0.147184118628502,0.00480196112766862,0.982476532459259,-0.186324432492256,-0.1295146048069,0.975584387779236,-0.177373319864273,-0.00791142135858536,0.999965846538544,-0.00239237793721259,-0.0470855385065079,0.998885214328766,-0.00336225633509457,0.055050790309906,0.998483300209045,-0.000688912463374436,-0.0217928141355515,0.999735534191132,0.00735714379698038,0.0314912796020508,0.999503076076508,0.00138017057906836,-0.125811293721199,0.992041051387787,0.00510883377864957,0.0314870811998844,0.999503791332245,0.000844071037136018,-0.0472052060067654,0.998885214328766,0.000437136885011569,-0.12582802772522,0.9920414686203,0.00458332384005189,0.0313622131943703,0.999401390552521,-0.014604170806706,-0.0040334602817893,0.999961614608765,0.00777843873947859,-0.00900244433432817,0.999857664108276,0.0142692606896162,-0.0211690701544285,0.999704837799072,0.0119308130815625,-0.0234012994915247,0.999619007110596,0.0146364588290453,0.0316748544573784,0.999158084392548,0.0260743983089924,0.998600482940674,0.0387481115758419,0.035994715988636,0.0321150049567223,0.994346916675568,0.101206801831722,0.903107464313507,0.426565498113632,0.0493840612471104,0.99521791934967,0.0377631187438965,0.0900847613811493,
- 0.0356328003108501,0.995285093784332,0.0902101248502731,0.0323198474943638,0.987356245517731,0.155187889933586,0.0315513983368874,0.99945992231369,0.00918825250118971,0.0388822257518768,0.999176859855652,0.0115683525800705,-0.0474549010396004,0.998837769031525,0.00843614898622036,0.0270753130316734,0.961429476737976,0.273715823888779,0.902462363243103,0.0287613179534674,0.429807513952255,0.877508878707886,0.0389288403093815,0.477977722883224,-0.0227347258478403,0.999600112438202,0.0168158151209354,-0.0474849119782448,0.998827695846558,0.00940422248095274,0.0388400480151176,0.999165654182434,0.0126284565776587,0.0281194541603327,0.967094302177429,0.252859860658646,0.71833211183548,0.0390325374901295,0.694604516029358,0.25365337729454,0.967289745807648,0.00324928108602762,-0.0187250636518002,0.999824404716492,0.000737207417842001,0.0551356859505177,0.998469650745392,-0.00431461771950126,-0.0469724424183369,0.998872220516205,-0.00693363370373845,-0.0468468517065048,0.99884295463562,-0.0108770793303847,-0.0216155424714088,0.9996258020401,0.0167633462697268,-0.0224456507712603,0.999747693538666,0.000883687345776707,0.0239219088107347,0.99962854385376,-0.0130658932030201,0.055320393294096,0.998392820358276,-0.0123133426532149,0.0652987062931061,0.997862458229065,-0.00257081468589604,0.25956130027771,0.964692115783691,0.0446905083954334,0.206973239779472,0.978330433368683,0.00562850385904312,0.392303019762039,0.0340694561600685,0.919205009937286,-0.0246662031859159,0.999242126941681,0.0301126390695572,-0.0221650861203671,0.999753952026367,0.000872641510795802,-0.0213482119143009,0.999631762504578,0.0167508106678724,-0.204476773738861,0.978676080703735,0.0195540320128202,-0.225696310400963,0.015900906175375,0.97406804561615,-0.292351216077805,0.0363854952156544,0.955618679523468,0.0323861427605152,0.99947464466095,-0.00127504498232156,0.0320777036249638,0.999443769454956,-0.00913253799080849,0.0236591771245003,0.999718368053436,-0.0018535137642175,-0.00704215466976166,0.999975264072418,0.000277250248473138,-0.00895507726818323,0.999479711055756,0.0309860892593861,
- -0.00758275995030999,0.999943017959595,0.00751532660797238,0.0318527109920979,0.999448716640472,0.00937452726066113,0.0320777036249638,0.999443769454956,-0.00913253799080849,0.0323861427605152,0.99947464466095,-0.00127504498232156,-0.204476773738861,0.978676080703735,0.0195540320128202,-0.292351216077805,0.0363854952156544,0.955618679523468,0.00552269443869591,0.708237767219543,0.70595246553421,-0.039607398211956,0.999149560928345,-0.0114639159291983,-0.0027826027944684,0.999966144561768,0.00774228852242231,-0.00423822272568941,0.999502718448639,0.0312467981129885,-0.0387336052954197,0.998932659626007,0.0251652896404266,0.0172711443156004,0.999324858188629,0.0324267521500587,-0.015160764567554,0.999582827091217,0.0245828665792942,-0.823987245559692,0.0522558987140656,0.564193546772003,-0.0391529873013496,0.853957951068878,0.518866896629334,-0.00186550943180919,0.866699993610382,0.498826235532761,-0.853781759738922,0.0280555877834558,-0.519874632358551,-0.829853713512421,0.0697107091546059,-0.553609490394592,-0.0188418161123991,0.909570395946503,-0.415122747421265,0.0217524226754904,0.998672485351563,0.0466919355094433,-0.0146359866485,0.998820900917053,0.0462905131280422,-0.0325129963457584,0.998452663421631,0.0451134108006954,-0.967783272266388,0.246849432587624,0.0496094413101673,-0.0273159686475992,0.986836016178131,-0.159400597214699,-0.995101511478424,0.0650287345051765,-0.074459582567215,-0.797148168087006,0.601940751075745,0.0471399500966072,-0.561912834644318,0.0613776780664921,-0.824916183948517,-0.550322532653809,0.0414979830384254,-0.833920300006866,-0.0325210466980934,0.998435914516449,0.0454764477908611,0.00441937241703272,0.997471332550049,0.0709322765469551,0.0217384062707424,0.998656630516052,0.0470384284853935,-0.0217369310557842,0.99711149930954,0.0727748796343803,-0.0334546379745007,0.995474338531494,0.0889471769332886,-0.0240411404520273,0.999568521976471,0.0168770365417004,-0.0134165175259113,0.995986819267273,0.0884888619184494,-0.0135511280968785,0.995829463005066,0.0902219340205193,0.0199671443551779,0.995717585086823,0.0902650728821754,
- 0.338424533605576,0.940011918544769,0.0429705120623112,-0.0226881355047226,0.970797836780548,0.23882420361042,0.0131999012082815,0.969129264354706,0.246199682354927,-0.015160764567554,0.999582827091217,0.0245828665792942,-0.00926383677870035,0.999712884426117,0.0220992881804705,-0.0387336052954197,0.998932659626007,0.0251652896404266,-0.270583152770996,0.962693691253662,0.00237709330394864,-0.191552221775055,0.981176555156708,0.0245013292878866,-0.262204527854919,0.0420856140553951,-0.964094161987305,-0.0161969661712646,0.999756634235382,0.0149789871647954,-0.016255235299468,0.997243821620941,0.0723927840590477,-0.0194342099130154,0.999672293663025,0.0166610218584538,0.103034049272537,0.0375100746750832,-0.993970334529877,0.137539088726044,0.0210097506642342,-0.990273594856262,0.107117615640163,0.9940305352211,0.0207147318869829,0.0206089224666357,0.9973503947258,0.0697672441601753,0.0205607879906893,0.999648869037628,0.0167138781398535,0.0205411929637194,0.995346784591675,0.0941428244113922,-0.0325451493263245,0.914934992790222,0.402287214994431,0.229774057865143,0.971799731254578,0.053001806139946,0.242997288703918,0.966355383396149,0.0843196660280228,-0.0264537576586008,0.995067477226257,0.0956081300973892,-0.0272967759519815,0.999522924423218,0.0144509067758918,-0.0269241500645876,0.999599456787109,-0.00871886499226093,-0.13428795337677,0.990869283676147,-0.0120316678658128,-0.124212577939034,0.991488218307495,-0.0390175506472588,-0.125641882419586,0.987222492694855,0.0980098098516464,0.0370435193181038,0.732608318328857,-0.679641664028168,-0.505709648132324,0.857155084609985,0.0976880416274071,-0.43414318561554,0.900715529918671,-0.0152059001848102,-0.00308411219157279,0.999964833259583,0.00780089013278484,-0.00444090086966753,0.998889148235321,-0.0469118729233742,-0.00277688819915056,0.999964475631714,-0.00796119775623083,-0.0335085615515709,0.992472350597382,-0.117795519530773,-0.0015113033587113,0.994948446750641,-0.100375808775425,-0.797945320606232,0.602335393428802,0.0218074787408113,-0.0345319993793964,0.994596660137177,-0.0979032665491104,
- -0.0413170866668224,0.995018482208252,-0.0907256230711937,-0.00171750620938838,0.995268940925598,-0.0971432477235794,-0.0506057739257813,0.997024834156036,0.0581418871879578,-0.056936476379633,0.997428119182587,-0.0435360409319401,-0.0548422262072563,0.998473465442657,0.00656651193276048,-0.0606782995164394,0.996427297592163,0.0587434433400631,-0.0398727394640446,0.999140322208405,0.0113560687750578,-0.0670940726995468,0.996825337409973,-0.0428677126765251,-0.647530317306519,0.757556021213531,0.0825443491339684,-0.658806264400482,0.752251029014587,-0.00963906105607748,-0.660217344760895,0.751038730144501,0.0073439534753561,-0.0108682299032807,0.99883896112442,0.0469325110316277,-0.00922015123069286,0.998410046100616,0.0556112714111805,-0.0103978998959064,0.999670922756195,0.0234505273401737,-0.0394279062747955,0.999220669269562,0.00187341740820557,0.0314619615674019,0.999504864215851,-0.000470132188638672,-0.0392867960035801,0.999225497245789,0.00223477673716843,-0.0393485501408577,0.999225497245789,-0.000379439326934516,0.0313622131943703,0.999503672122955,-0.00300284149125218,-0.0292942859232426,0.999549806118011,0.00648648897185922,-0.0393770933151245,0.999224126338959,0.000795068452134728,-0.0275170393288136,0.998009741306305,0.0567417666316032,0.00782391149550676,0.999967157840729,0.0021100474987179,0.031133271753788,0.999476552009583,-0.00879621785134077,-0.0390592962503433,0.999219298362732,-0.00592768285423517,0.00798813067376614,0.999956369400024,-0.00484554888680577,0.472502887248993,0.881323277950287,0.00321905850432813,0.475283205509186,0.87963742017746,0.0185448490083218,0.471685975790024,0.880188941955566,0.0527259223163128,0.620765030384064,0.783995747566223,0.00128527905326337,0.620398104190826,0.782585978507996,0.0516276322305202,0.629065275192261,0.776679158210754,0.0323482565581799,-0.0229198597371578,0.0789952874183655,0.996611475944519,0.99670284986496,0.054886307567358,-0.059759184718132,0.654475629329681,0.571011066436768,0.495588570833206,0.0382063202559948,0.982029914855957,0.184817641973495,
- 0.00496088108047843,0.992655098438263,0.120877109467983,0.752385139465332,0.651512145996094,0.0972034707665443,0.659672677516937,0.57537841796875,0.48349940776825,0.749809741973877,0.661565959453583,-0.0107678258791566,0.776100695133209,0.630607962608337,-0.00114561838563532,-0.0150320352986455,0.999855101108551,0.00799123756587505,-0.0156139433383942,0.999736189842224,-0.0168503783643246,-0.017070921137929,0.999831199645996,0.00679735373705626,0.754188001155853,0.651176273822784,-0.084676519036293,-0.00255923881195486,0.996690094470978,-0.0812549218535423,0.0284359194338322,0.996767401695251,-0.0751409530639648,0.524984955787659,0.850528419017792,0.0314995162189007,0.0304740369319916,0.999214649200439,-0.0253306813538074,-0.000927439774386585,0.999566078186035,-0.0294454339891672,-0.952094912528992,0.305642634630203,0.00990345608443022,0.0146925719454885,0.323974937200546,-0.945951581001282,-0.345243483781815,-0.307727426290512,-0.886628866195679,0.668857455253601,0.573354184627533,-0.473175138235092,-0.0179145596921444,0.975894153118134,-0.217508420348167,-0.00738056423142552,0.972128331661224,-0.234333276748657,-0.0113386493176222,0.999910116195679,0.00715906312689185,-0.00860686786472797,0.999934673309326,-0.00753464829176664,-0.00904307141900063,0.999927639961243,0.00794465187937021,-0.119827039539814,0.992756128311157,0.00876050069928169,-0.110563263297081,0.993863046169281,-0.00347280455753207,-0.0161977224051952,0.961173474788666,-0.275468945503235,0.0685614496469498,0.997591078281403,-0.0105543183162808,0.0701629966497421,0.997460126876831,0.012273732572794,0.0683015212416649,0.997603297233582,-0.0110819889232516,0.477105140686035,0.878352463245392,-0.0294565837830305,0.50718080997467,0.860969126224518,0.0387276671826839,0.704302966594696,0.622483849525452,-0.341278851032257,0.597123026847839,0.698793828487396,-0.393867135047913,0.691766321659088,0.721941888332367,0.0161033049225807,0.715661942958832,0.697340309619904,-0.0393016375601292,0.0222086198627949,0.999715209007263,-0.00874612852931023,0.0242005586624146,0.998974204063416,-0.0382742807269096,
- -0.0226670950651169,0.998966634273529,-0.0393933951854706,0.0659697279334068,0.997766852378845,-0.0104536656290293,0.0656999424099922,0.997779250144959,-0.0109604652971029,0.0232923217117786,0.999524116516113,0.0202236622571945,0.0242088716477156,0.998952448368073,-0.0388346910476685,-0.00120270298793912,0.999269962310791,-0.0381857939064503,-0.0226532910019159,0.998944640159607,-0.0399557501077652,0.0279386322945356,0.999585211277008,-0.00699079316109419,0.0297455415129662,0.999316215515137,0.0219663772732019,0.0280135218054056,0.999565362930298,-0.00919406674802303,0.0324257388710976,0.999236106872559,0.0218167565762997,0.0236687064170837,0.999714195728302,-0.00339149753563106,0.0307477209717035,0.999483704566956,-0.00932259857654572,-0.0197373293340206,0.999540865421295,0.0229895524680614,-0.019084744155407,0.999513626098633,0.0246624741703272,-0.0187522396445274,0.999788343906403,-0.00846297014504671,-0.836836457252502,0.544266402721405,0.0589815154671669,-0.828515231609344,0.559818625450134,-0.0128709161654115,-0.786503374576569,0.478722661733627,0.390175700187683,0.265999764204025,0.963939011096954,0.0081087714061141,0.241609945893288,0.721881747245789,0.648468494415283,0.247182056307793,0.715747117996216,0.653151631355286,0.317064076662064,0.707361102104187,0.631752073764801,0.0151232378557324,0.589353322982788,0.807733833789825,0.466851949691772,0.884322226047516,-0.00484255095943809,0.0219514258205891,0.994901239871979,0.0984361693263054,0.109125591814518,0.993874549865723,0.0174625515937805,0.0454117059707642,0.994088411331177,0.0986215472221375,0.0470974370837212,0.998872697353363,0.00593070220202208,0.000163513977895491,0.999986529350281,0.00519156875088811,0.0235276594758034,0.999707758426666,0.00555523484945297,-0.000319883722113445,0.999948382377625,-0.0101562887430191,0.047348078340292,0.998827159404755,-0.0101215383037925,0.0154937393963337,0.999823272228241,-0.0106472373008728,-0.000490353384520859,0.999878704547882,-0.015568695962429,0.0153641486540437,0.999752581119537,-0.0160860847681761,0.0168188400566578,0.99982100725174,0.00866719800978899,
- 0.049450796097517,0.908104538917542,-0.415813326835632,0.804351329803467,0.516804218292236,-0.293142229318619,0.00524013256654143,0.920127153396606,-0.39158496260643,0.0284958314150572,0.9993656873703,-0.0213632956147194,0.0260975137352943,0.99961793422699,0.00910396035760641,0.0159564800560474,0.99983274936676,0.00893583241850138,0.785679697990417,0.520111441612244,-0.334950000047684,0.737665057182312,0.673848867416382,0.0421661585569382,0.00490424176678061,0.915353238582611,-0.402621865272522,0.0268806871026754,0.999598741531372,-0.00892915111035109,0.0271581895649433,0.999589264392853,0.00915384571999311,0.0294068660587072,0.999340772628784,-0.0212909709662199,0.479206919670105,0.157213732600212,-0.863507151603699,0.780352592468262,0.623592674732208,0.0467144921422005,0.501383066177368,0.489271491765976,-0.713602423667908,-0.775075495243073,0.627299845218658,-0.0758476853370667,-0.80944162607193,0.473309606313705,-0.34753742814064,-0.766290426254272,0.642003536224365,0.0251137726008892,-0.766574919223785,0.641663074493408,0.0251276511698961,-0.883373498916626,0.433875232934952,-0.177210420370102,-0.075500026345253,0.993398666381836,-0.0863648802042007,-0.812890887260437,0.563510477542877,-0.147188797593117,-0.0708593651652336,0.978132605552673,-0.195539638400078,-0.877371728420258,0.438554495573044,-0.19465035200119,-0.078653447329998,0.996889472007751,0.00502270366996527,0.023422023281455,0.999692380428314,0.00816010590642691,0.0173643827438354,0.999812602996826,-0.0085561778396368,-0.0702945962548256,0.997449100017548,0.0124079706147313,-0.0809437185525894,0.992837250232697,0.087876945734024,-0.81733912229538,0.575256943702698,0.0321941450238228,-0.0701671540737152,0.997401416301727,0.0163459293544292,0.0233054179698229,0.999643266201019,0.0130471866577864,-0.0788020715117455,0.996841490268707,0.00986134074628353,-0.0707781612873077,0.997488081455231,-0.00285760452970862,-0.81776636838913,0.575101673603058,0.0227258652448654,-0.811091125011444,0.584802210330963,-0.0117319514974952,0.0158836022019386,0.999864280223846,0.00437219021841884,
- 0.0234689898788929,0.99970543384552,0.00618523359298706,-0.0704646483063698,0.997489035129547,0.00709755532443523,-0.0189169477671385,0.999556124210358,0.0230157524347305,0.0159582551568747,0.9998499751091,0.00674957921728492,-0.0703887641429901,0.997474730014801,0.00947470031678677,0.0526868402957916,0.997734189033508,-0.0418399050831795,0.0262563917785883,0.992549479007721,-0.118980437517166,0.0136640341952443,0.997787892818451,-0.0650600045919418,0.0162291396409273,0.999749720096588,0.0154002988710999,-0.0197373293340206,0.999540865421295,0.0229895524680614,-0.0187522396445274,0.999788343906403,-0.00846297014504671,0.05442950502038,0.998457610607147,-0.0109468586742878,0.0147659871727228,0.999413847923279,-0.0308860130608082,0.688967704772949,0.724615573883057,0.0159941334277391,0.364020556211472,-0.0953301563858986,-0.926499545574188,0.858709275722504,-0.509646773338318,-0.0536527261137962,0.361594408750534,-0.00614052824676037,-0.932315289974213,-0.0812986791133881,-0.993713796138763,-0.076964907348156,-0.0881338641047478,-0.0831609293818474,-0.992631196975708,-0.111459940671921,-0.992778718471527,-0.0443515963852406,0.0192198604345322,-0.999814569950104,0.0012107000220567,0.0184780433773994,-0.99672132730484,-0.0787729844450951,0.0211914218962193,-0.999040484428406,-0.0383311323821545,0.0202978104352951,-0.999526381492615,0.0231313817203045,0.018566258251667,-0.996719598770142,-0.0787742435932159,0.0196603871881962,-0.999805927276611,0.00123844970948994,0.776763796806335,-0.629782497882843,-0.00347199942916632,0.774229288101196,-0.631023526191711,0.0487703531980515,0.775952279567719,-0.628870129585266,-0.0491981096565723,-0.00566330691799521,-0.969746172428131,0.244050174951553,-0.196722745895386,-0.979290902614594,-0.0478487499058247,-0.706426739692688,0.0893295109272003,0.702126443386078,-0.0120578175410628,-0.995685577392578,0.092005655169487,0.0016558530041948,-0.99999862909317,0.000104302052932326,0.00206725369207561,-0.999227583408356,-0.0392420068383217,0.998535752296448,-0.0425416454672813,-0.0334148779511452,
- -0.0098684998229146,-0.997910857200623,0.0638476014137268,-0.0122564444318414,-0.996121108531952,0.0871351435780525,-0.00323105370625854,-0.989458918571472,-0.144778549671173,0.663488149642944,-0.0911601930856705,-0.742612481117249,0.809500098228455,-0.0254959035664797,-0.586566090583801,0.770834386348724,-0.0311197489500046,0.636275053024292,-0.0260923858731985,-0.77163964509964,0.63552451133728,0.790543794631958,-0.0248989909887314,0.611899137496948,0.0414469018578529,-0.999137401580811,0.00261082872748375,-0.0158509965986013,-0.999870836734772,-0.00266694161109626,0.0156439915299416,-0.999868333339691,-0.00431657768785954,-0.00881074648350477,-0.999515295028687,0.0298623684793711,0.0164380334317684,-0.999426901340485,0.02959212847054,-0.014538167975843,-0.999428987503052,0.0305021144449711,0.0527184382081032,-0.998279750347137,0.0256569404155016,0.0525449179112911,-0.997779130935669,-0.0409375987946987,0.0534700937569141,-0.998563766479492,0.00336819514632225,0.0512951426208019,-0.998355329036713,0.0256026908755302,0.0515125170350075,-0.998667061328888,0.00324488407932222,0.015220888890326,-0.99964052438736,-0.0220760311931372,-0.0229274462908506,-0.998991370201111,-0.0386082418262959,-0.0239927899092436,-0.999455273151398,0.0226645823568106,-0.0214466731995344,-0.999733448028564,0.0085474019870162,0.735932767391205,-0.676372706890106,-0.0303807333111763,0.745054244995117,-0.666755139827728,-0.0182162187993526,0.752820551395416,-0.656675457954407,0.0451506115496159,-0.0935459733009338,-0.995180785655975,0.0294008664786816,-0.0922942757606506,-0.995533227920532,0.0198828987777233,-0.0903083086013794,-0.995831370353699,-0.0128188179805875,-0.0135909179225564,-0.999870479106903,-0.00862210337072611,-0.0187236648052931,-0.999576330184937,-0.0222851634025574,-0.0153855439275503,-0.999579548835754,0.0245812870562077,-0.828527510166168,-0.559943079948425,-0.00247348146513104,-0.824586033821106,-0.563935101032257,0.0451139099895954,-0.834507644176483,-0.548694312572479,-0.0503169037401676,0.0168816559016705,-0.998661875724792,0.0488821715116501,
- -0.0298648253083229,-0.998298108577728,0.0500898621976376,-0.0133694941177964,-0.999644041061401,0.0230872798711061,-0.160306081175804,-0.986927628517151,-0.0166068654507399,-0.164210438728333,-0.98628169298172,0.0168330054730177,-0.0238545928150415,-0.975607216358185,0.218223661184311,-0.0514688454568386,-0.99866795539856,-0.0036473972722888,-0.0517297051846981,-0.997935354709625,-0.0380668342113495,-0.0509853661060333,-0.998642385005951,-0.0106735425069928,-0.0321155823767185,-0.999276101589203,-0.0203937813639641,-0.0474265739321709,-0.998869061470032,-0.00336093478836119,-0.0467705950140953,-0.99885106086731,-0.0104428753256798,-0.00644415244460106,-0.999211132526398,-0.0391867980360985,-0.00863874703645706,-0.999962508678436,-0.000612188130617142,-0.00602902751415968,-0.99985933303833,-0.0156508702784777,0.705453872680664,-0.706990599632263,0.0499927401542664,0.693535149097443,-0.720085263252258,-0.0220527481287718,0.696319460868835,-0.717386603355408,-0.0222630966454744,-0.0172301921993494,-0.999129354953766,0.0379951409995556,-0.0302214175462723,-0.99877268075943,0.039242684841156,0.0166307184845209,-0.999141752719879,0.0379392243921757,-0.0162591747939587,-0.999782383441925,0.0130700813606381,0.0160704683512449,-0.999775648117065,0.0137993795797229,-0.00829840358346701,-0.999874472618103,0.0135057037696242,-0.0431923680007458,-0.999062180519104,-0.00306087569333613,-0.0317149460315704,-0.999468982219696,-0.00748066091910005,-0.0395660251379013,-0.999190807342529,-0.00723289838060737,-0.0164526235312223,-0.999702453613281,0.0180157031863928,0.0231707990169525,-0.999557375907898,0.0186607893556356,-0.0309400241822004,-0.999376118183136,0.0170303024351597,0.0234767757356167,-0.999707221984863,0.00585791189223528,-0.0392431393265724,-0.99922502040863,0.00306149455718696,-0.0313917621970177,-0.999503195285797,0.00281460164114833,0.12865038216114,-0.921524107456207,0.366391062736511,0.452427208423615,-0.891224801540375,0.0320617035031319,-0.0237793866544962,-0.91893994808197,0.393679916858673,0.128270506858826,-0.987656593322754,0.0898961797356606,
- -0.0353544391691685,-0.992386341094971,0.117981366813183,0.0229209251701832,-0.999317049980164,0.0289845746010542,0.693896889686584,-0.719736456871033,-0.022058542817831,0.705188632011414,-0.707256495952606,0.0499739460647106,0.706588983535767,-0.707077503204346,0.0278107598423958,0.12691105902195,-0.991393744945526,0.0321245677769184,0.715402960777283,-0.698133170604706,0.0284374337643385,0.714014232158661,-0.698300421237946,0.0505994446575642,0.00171085505280644,-0.999876141548157,-0.0156517829746008,-0.00131552643142641,-0.99922788143158,0.0392671711742878,0.000821679423097521,-0.999968528747559,-0.00789317861199379,0.028802290558815,-0.999548554420471,-0.00855083204805851,0.0270941816270351,-0.998799264431,0.0408161841332912,0.0299314633011818,-0.99880576133728,0.038616020232439,0.745001792907715,-0.66366982460022,0.0671918168663979,0.549009919166565,-0.440262079238892,0.710462808609009,0.71477997303009,-0.699268400669098,0.0106456521898508,-0.342306613922119,-0.48205953836441,0.806501567363739,-0.450171142816544,-0.892882406711578,0.0103402575477958,-0.365229517221451,-0.485651403665543,0.794197797775269,-0.534230887889862,-0.374069690704346,0.758069396018982,-0.53415584564209,-0.479670286178589,0.696127831935883,-0.842702150344849,-0.537786602973938,-0.0252754613757133,-0.0238589029759169,-0.999702036380768,-0.00516232242807746,0.0695486664772034,-0.997507870197296,-0.0118753938004375,0.12561023235321,-0.99201488494873,-0.0113373044878244,-0.11016446352005,-0.993676006793976,-0.0217204950749874,-0.0270945802330971,-0.996808111667633,-0.07509795576334,-0.113640807569027,-0.992979347705841,0.0328300073742867,-0.900885701179504,-0.431724667549133,-0.0449308566749096,-0.39000216126442,-0.920695781707764,0.0147516820579767,-0.0303933005779982,-0.988347113132477,-0.149151667952538,0.0236082226037979,-0.999721229076386,0.000306198926409706,-0.0233989730477333,-0.999715745449066,0.00457968516275287,0.125930592417717,-0.992038130760193,-0.00133891985751688,-0.012985204346478,-0.976842105388641,0.213567048311234,-0.93541145324707,-0.300336867570877,0.186556249856949,
- -0.82573539018631,-0.452557414770126,0.336679130792618,-0.0240970198065043,-0.999657332897186,-0.0102248378098011,0.023948036134243,-0.999612510204315,-0.0141879133880138,-0.0390986688435078,-0.999122262001038,-0.0150404507294297,-0.90837299823761,-0.341379702091217,-0.241492077708244,-0.0459417998790741,-0.828413426876068,-0.558229804039001,-0.0275936033576727,-0.886014342308044,-0.462835997343063,0.0583720877766609,-0.99829226732254,-0.00229811365716159,-0.0393171198666096,-0.999225854873657,-0.00142773776315153,0.0236321557313204,-0.999720573425293,-0.000707603467162699,-0.0373704209923744,-0.999300420284271,0.00147127592936158,0.0231707990169525,-0.999557375907898,0.0186607893556356,-0.0164526235312223,-0.999702453613281,0.0180157031863928,-0.00840647518634796,-0.99982100725174,0.0169503632932901,0.0130873480811715,-0.999914228916168,-0.000515250489115715,-0.0163919981569052,-0.999730169773102,0.0164646804332733,-0.0261811465024948,-0.865259647369385,-0.500639855861664,-0.927751362323761,-0.373060464859009,0.0101654585450888,-0.908681631088257,-0.341353505849838,-0.240365773439407,-0.0396951548755169,-0.998940348625183,0.0232911575585604,0.0401261001825333,-0.999193370342255,-0.00157976849004626,0.0398607216775417,-0.998679935932159,-0.0323960781097412,-0.944740355014801,-0.325046062469482,-0.0425526723265648,-0.797248780727386,-0.333850562572479,-0.502929627895355,-0.942938208580017,-0.332758814096451,0.011793558485806,0.542041540145874,0.0884378775954247,-0.835685193538666,0.82956600189209,-0.55839329957962,0.00414411211386323,0.661168456077576,-0.277166306972504,-0.697162210941315,0.00305172614753246,-0.999497532844543,-0.0315523259341717,0.00316527532413602,-0.999994993209839,0.000124617465189658,0.00448427116498351,-0.999221503734589,-0.0391981899738312,0.0422011464834213,-0.999107778072357,0.00166146236006171,0.0413337796926498,-0.998618960380554,-0.0324289537966251,0.0419603958725929,-0.999117910861969,-0.00165198417380452,0.858939707279205,-0.512030303478241,0.00689457217231393,0.000535525265149772,-0.610827028751373,-0.7917640209198,
- 0.758140325546265,-0.281464397907257,-0.588218510150909,0.00861238222569227,-0.999962866306305,0.000339070102199912,0.0315272100269794,-0.999500930309296,0.00198409636504948,0.00984249729663134,-0.999189734458923,-0.0390281789004803,-0.0005640221061185,-0.58847838640213,-0.80851274728775,0.590603351593018,-0.602626442909241,-0.536683440208435,0.833104431629181,-0.280128061771393,-0.476933181285858,0.0362421199679375,-0.96980357170105,0.24117948114872,0.00904104020446539,-0.979228079319,0.202560290694237,0.651510119438171,-0.737306952476501,0.178642213344574,0.640347480773926,-0.767936766147614,0.0151074081659317,0.651510119438171,-0.737306952476501,0.178642213344574,0.00904104020446539,-0.979228079319,0.202560290694237,0.0155124729499221,-0.999852359294891,0.00740515859797597,0.0325947627425194,-0.999389469623566,-0.012588057667017,0.0362684167921543,-0.998601794242859,0.0384582988917828,-0.0160266011953354,-0.999800443649292,-0.0119257969781756,0.0311697758734226,-0.999428987503052,-0.0130514809861779,-0.0114676207304001,-0.999934256076813,-0.000451480766059831,0.0312541089951992,-0.999466121196747,-0.00953087117522955,-0.0159440264105797,-0.999837577342987,-0.00840538926422596,0.0159756168723106,-0.999845802783966,-0.00730291521176696,0.036121066659689,-0.999261677265167,-0.0130908004939556,0.015597827732563,-0.999867379665375,0.00470263091847301,0.00776264676824212,-0.99995881319046,0.00470097130164504,-0.0155869238078594,-0.999855935573578,0.00672421650961041,0.00776264676824212,-0.99995881319046,0.00470097130164504,0.015597827732563,-0.999867379665375,0.00470263091847301,0.621066570281982,-0.777991414070129,-0.0948983207345009,-0.000504874973557889,-0.942075610160828,0.33540016412735,0.654373943805695,-0.75584489107132,-0.0222081784158945,-0.0820816084742546,-0.996620357036591,-0.00323158246465027,-0.0178202539682388,-0.997440218925476,0.0692495703697205,0.000756271474529058,-0.816978454589844,0.576667726039886,-0.233774408698082,-0.972247302532196,-0.00920372828841209,-0.260510742664337,-0.965416491031647,0.0102563165128231,
- -0.198928773403168,-0.979119956493378,0.0418508872389793,-0.0126369018107653,-0.991910219192505,0.126311600208282,0.0118131302297115,-0.991818130016327,0.127111911773682,0.00520555907860398,-0.993817448616028,0.110904514789581,-0.00773588521406055,-0.951687037944794,0.306972295045853,0.122699566185474,-0.988459765911102,0.0888378322124481,0.0171417724341154,-0.951778590679169,0.306306481361389,0.00809494033455849,-0.999923288822174,-0.00937795359641314,-0.0234632268548012,-0.999678671360016,-0.00960320048034191,0.0443849936127663,-0.998879373073578,-0.0164293609559536,0.00762855401262641,-0.999940752983093,-0.00777866644784808,-0.0234564580023289,-0.999674558639526,-0.0100268283858895,0.00810489244759083,-0.999919235706329,-0.0098006147891283,-0.00602902751415968,-0.99985933303833,-0.0156508702784777,-0.0230715982615948,-0.999165594577789,-0.0337018668651581,-0.00644415244460106,-0.999211132526398,-0.0391867980360985,0.484677493572235,-0.874607920646667,0.0121951214969158,-0.0080072320997715,-0.880321145057678,-0.474310606718063,0.446488380432129,-0.885578811168671,0.12805600464344,0.775119066238403,-0.63129860162735,0.025545647367835,0.762317955493927,-0.628364026546478,0.155015990138054,0.784473598003387,-0.619392693042755,-0.0308847781270742,0.0239928532391787,-0.999688148498535,-0.00692695984616876,-0.0316822379827499,-0.999477386474609,-0.00643362756818533,0.00763225462287664,-0.999941527843475,-0.00766132865101099,0.00795453134924173,-0.999965071678162,0.00256507587619126,-0.0313604734838009,-0.99950098991394,0.003805972635746,-0.0236449744552374,-0.99971866607666,0.00187788810580969,-0.025350421667099,-0.999639272689819,-0.0088692232966423,-0.023665914312005,-0.999719500541687,0.000931729737203568,-0.024976359680295,-0.99955141544342,-0.0165276229381561,-0.0317124240100384,-0.999469637870789,-0.00739983934909105,-0.00894382782280445,-0.999926269054413,-0.00822555460035801,-0.008699513040483,-0.999833941459656,-0.0160194169729948,0.00131618569139391,-0.515530705451965,-0.856870114803314,-0.752523183822632,-0.589896261692047,-0.29279899597168,
- -0.989972829818726,-0.14012323319912,0.0178685318678617,-0.791597187519073,-0.611020028591156,-0.00535675743594766,-0.777034521102905,-0.607726633548737,-0.163968786597252,-0.763451099395752,-0.633393406867981,0.126314014196396,-0.0370784848928452,-0.979565620422363,-0.197677448391914,-0.0584513247013092,-0.980848670005798,-0.185794278979301,-0.0208988543599844,-0.987761676311493,-0.154564142227173,-0.059496808797121,-0.955216467380524,-0.289865165948868,-0.785682141780853,-0.613618135452271,-0.078589953482151,-0.0199366956949234,-0.979057967662811,-0.202603131532669,-0.723702073097229,-0.689291715621948,-0.0336487516760826,-0.0584513247013092,-0.980848670005798,-0.185794278979301,-0.0370784848928452,-0.979565620422363,-0.197677448391914,0.681940019130707,-0.715051770210266,-0.153814151883125,0.422707915306091,0.338121742010117,0.840828001499176,-0.0109635051339865,-0.960381686687469,0.27847221493721,0.00433807540684938,-0.993901431560516,-0.110187642276287,-0.612899005413055,-0.484302073717117,-0.624344706535339,-0.0565989874303341,-0.995754301548004,-0.0725957006216049,-0.0247088596224785,-0.999074876308441,0.0352000519633293,0.00875159353017807,-0.99939501285553,-0.0336609482765198,-0.00140623655170202,-0.999360918998718,0.0357183888554573,-0.0313297472894192,-0.99917197227478,-0.0259581934660673,-0.0243758242577314,-0.999405562877655,0.0243782140314579,-0.0195712372660637,-0.999175369739532,0.0355747155845165,-0.0350109785795212,-0.898387014865875,0.437807083129883,0.772044777870178,-0.635274589061737,-0.019314194098115,0.731470346450806,-0.672432661056519,-0.113072715699673,-0.0232071485370398,-0.999647319316864,-0.012908530421555,-0.017342995852232,-0.998451292514801,-0.052860900759697,-0.00958346761763096,-0.999920666217804,0.00817523151636124,-0.0544842220842838,-0.998255133628845,0.022763280197978,-0.00718630058690906,-0.999737203121185,0.0217692330479622,-0.000806926400400698,-0.999789595603943,0.020495917648077,-0.00704314978793263,-0.999629616737366,0.0262873843312263,-0.0243892092257738,-0.999394595623016,0.02481141500175,
- -0.00100258819293231,-0.999675214290619,0.0254657324403524,-0.00709530897438526,-0.999671161174774,0.0246417112648487,-0.0544120408594608,-0.99818879365921,0.0256642531603575,0.0123858833685517,-0.999805390834808,-0.0153548615053296,0.00235872738994658,-0.998409748077393,-0.0563260838389397,-0.0235504955053329,-0.999720633029938,-0.00206232513301075,-0.0078244274482131,-0.99996817111969,-0.00156643835362047,-0.00781313516199589,-0.999967634677887,0.00192484108265489,-0.00788741651922464,-0.999968826770782,0.00043330664630048,-0.0236135199666023,-0.999721169471741,-6.16644974797964e-005,0.0082325516268611,-0.876896560192108,-0.480608850717545,0.0419868119060993,-0.020011231303215,-0.998917758464813,-0.635336995124817,-0.769168972969055,0.0687458738684654,-0.00126836053095758,-0.97887647151947,-0.204449132084847,-0.014708505012095,-0.974630296230316,-0.223337024450302,0.650781989097595,-0.649248242378235,-0.393649011850357,0.700644612312317,-0.706232786178589,-0.101649016141891,0.708705544471741,-0.705504417419434,-7.56184599595144e-005,0.693443417549133,-0.702207982540131,-0.161369696259499,0.0136344134807587,-0.999776244163513,0.0161739382892847,-0.00740453694015741,-0.999862015247345,0.0148714240640402,0.0146313346922398,-0.999776124954224,-0.015283677726984,0.975303709506989,-0.220146462321281,-0.0178383551537991,0.649581372737885,-0.665155351161957,0.368255913257599,0.00588011555373669,-0.637881219387054,0.770112454891205,0.686182796955109,-0.688624978065491,-0.234411597251892,-0.0181250832974911,-0.940087378025055,-0.340451449155808,0.0573362708091736,-0.948092639446259,-0.31278258562088,0.0749492198228836,-0.982923924922943,0.168057173490524,0.0460789017379284,-0.998342216014862,0.0344931893050671,0.702151656150818,-0.710929274559021,0.0395320653915405,0.0573362708091736,-0.948092639446259,-0.31278258562088,-0.0181250832974911,-0.940087378025055,-0.340451449155808,0.810038566589355,-0.585347175598145,0.0347310975193977,0.0472220703959465,-0.998883962631226,-0.000974402937572449,7.73731808294542e-005,-0.999997079372406,-0.00245659914799035,
- 0.00124016613699496,-0.999721050262451,0.0235861614346504,0.0713668912649155,-0.997203350067139,0.0221915263682604,-0.000688702100887895,-0.999760687351227,0.0218662396073341,0.0464453585445881,-0.998648285865784,0.0233324524015188,0.0202978104352951,-0.999526381492615,0.0231313817203045,2.23635815927992e-005,-0.999999761581421,-0.000710068386979401,0.018566258251667,-0.996719598770142,-0.0787742435932159,-0.901808083057404,-0.0280934497714043,-0.431222915649414,-0.709903299808502,-0.702912867069244,-0.0441679060459137,0.013274316675961,-0.906750619411469,-0.421458333730698,-0.015922088176012,-0.999845325946808,-0.0074719088152051,-0.999575018882751,-0.0238753892481327,-0.0167266596108675,-0.000741318101063371,-0.99972277879715,0.0235375631600618,-0.0152971707284451,-0.999704658985138,0.0188895389437675,-0.000610472576227039,-0.999811947345734,0.0193825233727694,0.07118821144104,-0.997330844402313,0.0162315871566534,-0.879135429859161,-0.00750414095818996,0.476512879133224,-0.891997575759888,-0.0139554459601641,0.451824724674225,-0.00139695312827826,-0.858336210250854,0.513085722923279,-0.0154580092057586,-0.999806702136993,0.0121487658470869,0.0709869340062141,-0.997430920600891,0.00961578916758299,0.00559140741825104,-0.999856889247894,0.015965910628438,-0.0947375744581223,-0.995430707931519,0.011946240440011,-0.505544245243073,-0.0135857351124287,0.862693846225739,-0.0119561702013016,-0.988206505775452,0.152659714221954,0.03130192309618,-0.999365925788879,0.0169704034924507,0.0707030817866325,-0.997497320175171,0.00045412391773425,0.0314298793673515,-0.999365985393524,0.0167279653251171,-0.0375825390219688,-0.99919182062149,0.0142556568607688,-0.0851710215210915,-0.996237576007843,0.0160181019455194,-0.132809937000275,-0.0156065952032804,0.991018652915955,0.0322044566273689,-0.999469459056854,0.00486520677804947,0.03130192309618,-0.999365925788879,0.0169704034924507,0.0314298793673515,-0.999365985393524,0.0167279653251171,0.0163215305656195,-0.999750792980194,-0.0152300437912345,0.0150603204965591,-0.999865472316742,0.00650112284347415,
- 0.0153255211189389,-0.999750971794128,0.0162268038839102,0.545160174369812,-0.0372650474309921,0.837503254413605,0.59223997592926,-0.0126875955611467,0.805661737918854,0.0580710358917713,-0.99830961227417,0.0023925022687763,0.000669905915856361,-0.999968767166138,0.00787245947867632,0.00118082913104445,-0.999876022338867,-0.0157088879495859,0.000257318431977183,-1,-1.01308432931546e-005,0.127580031752586,-0.991819143295288,-0.00427910126745701,-0.0277738738805056,-0.709119856357574,0.704540729522705,0.218792900443077,-0.0401064939796925,0.974946737289429,-0.00141380890272558,-0.999998986721039,5.56619779672474e-005,-0.00766469072550535,-0.999948620796204,-0.00663323001936078,-0.000297518126899377,-0.999968349933624,0.00796459428966045,-0.361540019512177,-0.0061421450227499,0.932336390018463,-0.363966017961502,-0.0953298658132553,0.926521003246307,-0.858698129653931,-0.509665369987488,0.0536540187895298,0.106739856302738,-0.993306338787079,0.0441493727266788,0.0766451209783554,-0.99407559633255,0.07706668227911,0.0802924707531929,-0.0835274681448936,0.993265450000763,-0.0190303847193718,-0.996710300445557,0.078780822455883,-0.0217407066375017,-0.999029576778412,0.0383047536015511,-0.0197677705436945,-0.999803841114044,-0.00124521413818002,-0.0185660049319267,-0.996719598770142,0.0787742361426353,-0.0196615010499954,-0.999805927276611,-0.00123851979151368,-0.0202973838895559,-0.999526381492615,-0.0231313928961754,-0.777094066143036,-0.629374980926514,0.00348942563869059,-0.774551570415497,-0.630626142024994,-0.0487906523048878,-0.776278138160706,-0.628468453884125,0.0491925589740276,0.705704689025879,0.0893638357520103,-0.70284777879715,0.00564941950142384,-0.969665467739105,-0.244370624423027,0.196709558367729,-0.979293584823608,0.0478482320904732,-0.00165485253091902,-0.99999862909317,-0.000104239028587472,-0.00206651678308845,-0.999227583408356,0.0392420403659344,0.0120585029944777,-0.995687007904053,-0.0919888094067574,-0.998924255371094,-0.0414545275270939,0.0207858476787806,0.0100082522258163,-0.997610628604889,-0.0683598071336746,
- 0.0120733007788658,-0.995720326900482,-0.0916267186403275,-0.000227369542699307,-0.968420147895813,0.249323800206184,-0.513159036636353,-0.0948350802063942,0.853038191795349,-0.612376630306244,-0.0192873291671276,0.79033088684082,-0.787584960460663,-0.0304319337010384,-0.615454375743866,0.0256912000477314,-0.784524202346802,-0.619565725326538,-0.806753873825073,-0.0254095438867807,-0.590341091156006,0.0158513300120831,-0.999870777130127,0.00267542013898492,-0.0156437885016203,-0.999868273735046,0.00432509137317538,-0.0414487905800343,-0.999137341976166,-0.00261094770394266,0.0145505182445049,-0.999438226222992,-0.0301920901983976,0.00880104210227728,-0.999524474143982,-0.0295519661158323,-0.0164308473467827,-0.999436259269714,-0.0292816981673241,-0.0524894446134567,-0.998292028903961,-0.0256482157856226,-0.0523157492280006,-0.997791528701782,0.0409308709204197,-0.0532417371869087,-0.998576045036316,-0.00335381040349603,-0.0515104085206985,-0.998667180538177,-0.00324475136585534,-0.0152209084481001,-0.999640464782715,0.0220751408487558,-0.0512930117547512,-0.998355507850647,-0.025602612644434,0.0230073053389788,-0.998989641666412,0.038605660200119,0.024071728810668,-0.999453365802765,-0.0226614288985729,0.0215265434235334,-0.999731838703156,-0.00854990445077419,-0.747296214103699,-0.663748979568481,0.0313947387039661,-0.755665600299835,-0.65469217300415,0.0186454188078642,-0.762483596801758,-0.645422220230103,-0.0452652238309383,0.0903146639466286,-0.995830774307251,0.0128191635012627,0.0935481637716293,-0.995180547237396,-0.0294010005891323,0.0923001691699028,-0.995532691478729,-0.0198826529085636,0.0215819291770458,-0.999455273151398,-0.0249686725437641,0.0197825524955988,-0.999764144420624,0.0089625371620059,0.0249205157160759,-0.99945080280304,0.0218430515378714,0.828740656375885,-0.559627652168274,0.00245602778159082,0.824804127216339,-0.563614249229431,-0.0451369434595108,0.834704637527466,-0.548393785953522,0.0503253974020481,0.00522121461108327,-0.999712347984314,-0.023409690707922,-0.0165040045976639,-0.999337255954742,-0.0324446260929108,
- 0.0304005648940802,-0.998967945575714,-0.0337499938905239,0.171240702271461,-0.985079169273376,0.0171950049698353,0.174956500530243,-0.98444014787674,-0.0163664314895868,0.0242653973400593,-0.977932691574097,-0.207506105303764,0.057182788848877,-0.998355507850647,0.00405232235789299,0.0574725307524204,-0.997626721858978,0.0379190258681774,0.056711059063673,-0.998330175876617,0.0109866745769978,0.0506987981498241,-0.99870753288269,0.00359282409772277,0.0500071570277214,-0.998692393302917,0.0106200193986297,0.032199040055275,-0.999214470386505,0.0231051612645388,0.00644343672320247,-0.999211132526398,0.0391868129372597,0.00864086672663689,-0.999962508678436,0.000612338306382298,0.00602855160832405,-0.99985933303833,0.0156508777290583,-0.705398261547089,-0.707046270370483,-0.0499887950718403,-0.693477988243103,-0.720140278339386,0.0220518298447132,-0.696262359619141,-0.717442035675049,0.0222630705684423,-0.0165040045976639,-0.999337255954742,-0.0324446260929108,0.0170173943042755,-0.999326467514038,-0.0325112193822861,0.0304005648940802,-0.998967945575714,-0.0337499938905239,0.016260489821434,-0.999781906604767,-0.013103686273098,-0.0160712543874979,-0.999775171279907,-0.0138330077752471,0.00829945877194405,-0.999873995780945,-0.0135393217206001,0.0352792926132679,-0.999374389648438,0.00250010774470866,0.0314698964357376,-0.999504745006561,-0.000335436809109524,0.0393212698400021,-0.999226450920105,-0.000582724635023624,-0.0231708008795977,-0.999557375907898,-0.0186607278883457,0.0309400260448456,-0.999376177787781,-0.0170302484184504,0.016452619805932,-0.999702453613281,-0.0180156398564577,0.0311922878026962,-0.999471843242645,-0.00911659747362137,-0.0233263894915581,-0.999653816223145,-0.0121708018705249,0.0390434600412846,-0.999193668365479,-0.00936212204396725,-0.129590854048729,-0.973763763904572,-0.187057062983513,-0.267266511917114,-0.963436603546143,-0.0189401116222143,0.0323040150105953,-0.979518532752991,-0.198745936155319,-0.123526833951473,-0.989957928657532,0.0687347054481506,0.0417298041284084,-0.995919466018677,0.0800201222300529,
- -0.0268909242004156,-0.988306879997253,0.150088593363762,-0.694075703620911,-0.719563901424408,0.0220614075660706,-0.70534747838974,-0.707097172737122,-0.0499852001667023,-0.706748902797699,-0.706917285919189,-0.0278220977634192,-0.126901268959045,-0.991406619548798,-0.0317646041512489,-0.715531766414642,-0.69800078868866,-0.0284466184675694,-0.71414315700531,-0.698167860507965,-0.0506085753440857,-0.0017117178067565,-0.999876141548157,0.0156517345458269,0.00131466367747635,-0.99922788143158,-0.0392672158777714,-0.0008213059627451,-0.999968528747559,0.00789316929876804,-0.0288018770515919,-0.999548554420471,0.00855082273483276,-0.0270959958434105,-0.998799204826355,-0.040816280990839,-0.0299310106784105,-0.99880576133728,-0.0386160314083099,-0.792649447917938,-0.605924606323242,-0.0675446316599846,-0.608477830886841,-0.419172793626785,-0.673831522464752,-0.769756376743317,-0.638299942016602,-0.00694666849449277,0.301634669303894,-0.489773511886597,-0.818008840084076,0.395365804433823,-0.918411374092102,-0.0143661005422473,0.327037155628204,-0.484516650438309,-0.81135106086731,0.519220948219299,-0.481007128953934,-0.706429004669189,0.835653066635132,-0.548712909221649,0.0244567580521107,0.521467924118042,-0.369518339633942,-0.769108176231384,0.0235101822763681,-0.999721229076386,-0.00222852895967662,-0.072409063577652,-0.997306227684021,0.0117145590484142,-0.125846669077873,-0.992041647434235,0.00399651797488332,0.382131278514862,-0.923421919345856,0.0356044247746468,0.0340154245495796,-0.971594035625458,0.234196498990059,0.388807028532028,-0.921199858188629,-0.0148374047130346,0.0340154245495796,-0.971594035625458,0.234196498990059,0.897266149520874,-0.413415372371674,0.154923290014267,0.388807028532028,-0.921199858188629,-0.0148374047130346,-0.0234044343233109,-0.999686479568481,-0.00889852549880743,0.022991256788373,-0.999648928642273,-0.013176279142499,-0.126196309924126,-0.991978764533997,-0.00726825557649136,0.0129723139107227,-0.976788461208344,-0.213813066482544,0.93536776304245,-0.300286471843719,-0.186856612563133,
- 0.825643479824066,-0.452548414468765,-0.336916536092758,0.0237676352262497,-0.999712407588959,0.00322529254481196,-0.023784602060914,-0.999691247940063,0.00719049386680126,0.0392122939229012,-0.999198734760284,0.0080165583640337,0.908335089683533,-0.34138286113739,0.241630002856255,0.0459482222795486,-0.828274667263031,0.558435142040253,0.0275847855955362,-0.885887622833252,0.463079065084457,0.0393483750522137,-0.999225497245789,-0.00055775826331228,-0.023584958165884,-0.999721109867096,-0.00129098864272237,-0.0555375255644321,-0.998454213142395,0.00218651676550508,0.0373702943325043,-0.999300420284271,-0.00147127092350274,-0.0231708008795977,-0.999557375907898,-0.0186607278883457,0.016452619805932,-0.999702453613281,-0.0180156398564577,0.0163835268467665,-0.999733865261078,-0.0162480399012566,0.00839984510093927,-0.999824583530426,-0.0167389418929815,-0.0137779302895069,-0.999904930591583,0.000542438763659447,0.0261724032461643,-0.865128517150879,0.500867128372192,0.927749335765839,-0.373065441846848,-0.0101652555167675,0.908646881580353,-0.341356456279755,0.2404924929142,0.0396955497562885,-0.99893981218338,-0.0233177747577429,-0.0401236154139042,-0.999193489551544,0.00157967070117593,-0.0398586876690388,-0.998680114746094,0.0323960371315479,0.944524645805359,-0.325670301914215,0.0425704531371593,0.796737432479858,-0.333775490522385,0.503789007663727,0.942707121372223,-0.3334139585495,-0.0117674646899104,-0.541667640209198,0.0882785767316818,0.835944414138794,-0.829294443130493,-0.55879670381546,-0.00411967793479562,-0.660914063453674,-0.277148544788361,0.697410404682159,-0.00297225592657924,-0.999497830867767,0.0315504558384418,-0.00308694783598185,-0.999995231628418,-0.000121533703349996,-0.00440574204549193,-0.999221742153168,0.0392006747424603,-0.0423300340771675,-0.999102294445038,-0.0016665366711095,-0.0414612852036953,-0.998613595962524,0.0324317961931229,-0.0420872494578362,-0.999112665653229,0.00165697850752622,-0.858943343162537,-0.512024223804474,-0.00689492747187614,-0.000539613130968064,-0.610909223556519,0.791700601577759,
- -0.758197546005249,-0.281465232372284,0.588144361972809,-0.00984285119920969,-0.999189734458923,0.0390281677246094,-0.00861281994730234,-0.999962866306305,-0.000339087302563712,-0.0315274782478809,-0.99950098991394,-0.00199522404000163,0.0005640221061185,-0.58847838640213,0.80851274728775,-0.590603351593018,-0.602626442909241,0.536683440208435,-0.833104431629181,-0.280128061771393,0.476933181285858,-0.0362543538212776,-0.96960973739624,-0.241955697536469,-0.00901297945529222,-0.97906094789505,-0.203367650508881,-0.6514031291008,-0.737248122692108,-0.179274052381516,-0.640325367450714,-0.767955183982849,-0.015108653344214,-0.6514031291008,-0.737248122692108,-0.179274052381516,-0.00901297945529222,-0.97906094789505,-0.203367650508881,-0.0156343411654234,-0.999871492385864,-0.00354536669328809,-0.0380141772329807,-0.999187886714935,0.013360658660531,-0.0413614585995674,-0.998408854007721,-0.0383303947746754,-0.0313130468130112,-0.999484777450562,0.00706071546301246,0.00244024465791881,-0.999997019767761,9.60724210017361e-005,0.0158861484378576,-0.999856173992157,0.00594281358644366,0.0157546363770962,-0.999875843524933,0.000362399441655725,-0.0157225150614977,-0.999876141548157,-0.00074823055183515,-0.0314455330371857,-0.999504387378693,0.00147825886961073,-0.0361230112612247,-0.999261617660522,0.0130910770967603,-0.0155982794240117,-0.99986743927002,-0.00468834396451712,-0.00776298483833671,-0.999958872795105,-0.00468667410314083,-0.0155982794240117,-0.99986743927002,-0.00468834396451712,0.0155872646719217,-0.999856114387512,-0.00670990440994501,-0.00776298483833671,-0.999958872795105,-0.00468667410314083,-0.572365522384644,-0.815237522125244,0.0882366374135017,0.00209418428130448,-0.918723225593567,-0.394896566867828,-0.613458633422852,-0.789417922496796,0.0220925528556108,-0.0440034456551075,-0.999029874801636,-0.00173239468131214,-0.103939652442932,-0.990831792354584,-0.0863071903586388,-0.00166326924227178,-0.798122346401215,-0.602493286132813,0.240564256906509,-0.970587015151978,0.00947104580700397,0.267114609479904,-0.963607490062714,-0.0105163110420108,
- 0.205649226903915,-0.977775573730469,-0.0407863482832909,0.0126096280291677,-0.991774380207062,-0.127375572919846,-0.011845295317471,-0.991681933403015,-0.12816721200943,-0.00517952861264348,-0.993698537349701,-0.111966863274574,0.00775336427614093,-0.951883137226105,-0.306363105773926,-0.117342598736286,-0.989174485206604,-0.088117890059948,-0.0171241275966167,-0.951974749565125,-0.30569726228714,0.0235661566257477,-0.99971741437912,0.00312513508833945,-0.0442318767309189,-0.998886227607727,0.016427056863904,-0.00794252660125494,-0.999964237213135,0.00291212042793632,-0.00794252660125494,-0.999964237213135,0.00291212042793632,-0.00784558337181807,-0.999968826770782,0.000895005068741739,0.0235661566257477,-0.99971741437912,0.00312513508833945,0.00644343672320247,-0.999211132526398,0.0391868129372597,0.00602855160832405,-0.99985933303833,0.0156508777290583,0.0230711027979851,-0.999164581298828,0.0337318666279316,-0.429633408784866,-0.902950167655945,-0.00980486534535885,0.00819562189280987,-0.877461552619934,0.479577004909515,-0.386024415493011,-0.914461851119995,-0.121428765356541,-0.779524087905884,-0.625842273235321,-0.0257620364427567,-0.766953647136688,-0.622633934020996,-0.155270963907242,-0.788638412952423,-0.614072799682617,0.0310487486422062,-0.0225806646049023,-0.999720752239227,0.00698281452059746,0.0317629426717758,-0.999454736709595,0.0090186707675457,-0.0075507597066462,-0.999919056892395,0.0102431615814567,0.0235365107655525,-0.999710500240326,0.0049972734414041,-0.00773807056248188,-0.999960780143738,0.00430647004395723,0.031576968729496,-0.999496698379517,0.00307201012037694,0.0254784375429153,-0.999635994434357,0.00887423753738403,0.0237927921116352,-0.999716460704803,-0.000936724944040179,0.0251043196767569,-0.999548256397247,0.01653160341084,0.0317128635942936,-0.999469518661499,0.00741394609212875,0.00894424319267273,-0.999926269054413,0.00822557136416435,0.00869981665164232,-0.999833941459656,0.0160194262862206,0.752523183822632,-0.589896261692047,0.29279899597168,0.989972829818726,-0.14012323319912,-0.0178685318678617,
- -0.00131618569139391,-0.515530705451965,0.856870114803314,0.768432021141052,-0.601559579372406,0.218262061476707,0.760272920131683,-0.63735032081604,-0.125577196478844,0.792032063007355,-0.610456228256226,0.00532428408041596,0.0370783731341362,-0.979566514492035,0.197673082351685,0.058451272547245,-0.98084944486618,0.185790240764618,0.0208989214152098,-0.987762212753296,0.154560670256615,0.0594227351248264,-0.958284854888916,0.279569864273071,0.785948216915131,-0.613784968852997,0.0745216980576515,0.0201854426413774,-0.981488704681396,0.190453857183456,0.72369396686554,-0.689300239086151,0.0336486287415028,0.058451272547245,-0.98084944486618,0.185790240764618,0.0370783731341362,-0.979566514492035,0.197673082351685,-0.704952776432037,-0.691550076007843,0.157480537891388,-0.595589816570282,0.471068292856216,-0.650666892528534,0.00690110959112644,-0.984493136405945,-0.175287306308746,-0.0118479896336794,-0.953569769859314,0.300939410924912,0.28242564201355,-0.229604825377464,0.931406140327454,0.0593825206160545,-0.959805428981781,0.274312734603882,0.0247088484466076,-0.999074816703796,-0.0351997874677181,-0.00875148735940456,-0.99939501285553,0.0336609296500683,0.0014062263071537,-0.999360918998718,-0.0357181318104267,0.0313296504318714,-0.99917197227478,0.0259582120925188,0.0243758205324411,-0.999405562877655,-0.024378115311265,0.0195711385458708,-0.999175369739532,-0.035574696958065,0.0359816215932369,-0.871774137020111,-0.488584876060486,-0.732455551624298,-0.680584490299225,0.0177105162292719,-0.683164179325104,-0.723026394844055,0.10256539285183,0.023000106215477,-0.999547183513641,0.0194070301949978,0.0152708347886801,-0.998465716838837,0.0532264113426209,0.00838778913021088,-0.999931812286377,-0.0081376601010561,0.00718583073467016,-0.999736964702606,-0.0217841062694788,0.0008075115038082,-0.999789297580719,-0.0205107796937227,0.0544838532805443,-0.998254835605621,-0.0227781906723976,0.00100259331520647,-0.999675214290619,-0.025465864688158,0.00704314559698105,-0.999629616737366,-0.0262875128537416,0.0243892129510641,-0.999394595623016,-0.0248115453869104,
- -0.0123863127082586,-0.999805390834808,0.015354847535491,0.0070948451757431,-0.999670803546906,-0.0246563423424959,0.0544116757810116,-0.998188436031342,-0.0256789177656174,0.00120950222481042,-0.998446822166443,0.0557001493871212,0.0236733164638281,-0.999718070030212,-0.00183922878932208,0.00794724281877279,-0.999965786933899,-0.00233352510258555,0.0238317381590605,-0.999692261219025,-0.00688849110156298,0.00759410997852683,-0.999931812286377,-0.00886993389576674,0.00810598209500313,-0.999939918518066,-0.00737996911630034,-0.0104052433744073,-0.841175973415375,0.540661573410034,-0.0809814482927322,-0.0595334470272064,0.994936168193817,0.600510478019714,-0.797283530235291,-0.0610419996082783,0.00151013513095677,-0.980372905731201,0.197146907448769,0.0144941955804825,-0.976257920265198,0.216125771403313,-0.654408931732178,-0.653202772140503,0.380887269973755,-0.703230559825897,-0.710855484008789,0.0123052895069122,-0.706394731998444,-0.707818150520325,-3.36243210767861e-005,-0.687932372093201,-0.707757890224457,0.160710543394089,-0.0158744268119335,-0.999757766723633,0.0152442352846265,-0.0148757109418511,-0.999757885932922,-0.0162127446383238,0.00731905503198504,-0.999818742275238,-0.0175746716558933,-0.975301325321198,-0.220156982541084,0.0178380496799946,-0.649475574493408,-0.665056586265564,-0.368620723485947,-0.00584616046398878,-0.637418150901794,-0.770495891571045,-0.686155021190643,-0.688592970371246,0.234586864709854,0.0181328263133764,-0.939989447593689,0.340721726417542,-0.0573225282132626,-0.948010444641113,0.31303408741951,-0.074714183807373,-0.984906017780304,-0.156134963035584,-0.0465079061686993,-0.998688817024231,-0.021392248570919,-0.702362835407257,-0.711014747619629,-0.0338308624923229,-0.0573225282132626,-0.948010444641113,0.31303408741951,0.0181328263133764,-0.939989447593689,0.340721726417542,-0.810037910938263,-0.585348069667816,-0.0347310900688171,-0.000205684918910265,-0.99997866153717,0.00653050653636456,-0.00945289526134729,-0.999681711196899,-0.023391230031848,-0.047349575906992,-0.998865604400635,0.00505030294880271,
- -0.0467272885143757,-0.998800933361053,-0.0146101377904415,-0.0711046159267426,-0.997377991676331,-0.0134712876752019,0.000413742876844481,-0.99991363286972,-0.0131362844258547,-0.0185660049319267,-0.996719598770142,0.0787742361426353,-0.0202973838895559,-0.999526381492615,-0.0231313928961754,-2.18048025999451e-005,-0.999999761581421,0.000692327157594264,0.949090361595154,-0.0273613911122084,0.313813716173172,0.739684343338013,-0.67168915271759,0.0412403494119644,-0.00988984387367964,-0.949371099472046,0.314001172780991,0.0114400191232562,-0.984969079494476,-0.172351524233818,0.959472119808197,-0.0182361174374819,-0.281212896108627,0.00639911228790879,-0.979122042655945,-0.203172504901886,0.000864017405547202,-0.99962329864502,-0.0274325702339411,-0.0714301690459251,-0.997149109840393,-0.0243224855512381,0.0151038691401482,-0.999522626399994,-0.0269513167440891,0.879317820072174,-0.00749884499236941,-0.476176619529724,0.8921719789505,-0.013964993879199,-0.451479971408844,0.00140917452517897,-0.858557283878326,-0.512715756893158,-0.0711652189493179,-0.997344672679901,-0.0154703790321946,-0.0129353348165751,-0.999784231185913,-0.0162538979202509,0.0153196565806866,-0.999721646308899,-0.0179490018635988,0.0947431847453117,-0.995430171489716,-0.0119460113346577,0.50584888458252,-0.0135829206556082,-0.862515151500702,0.0119596756994724,-0.988227307796478,-0.15252523124218,-0.0314292870461941,-0.999365985393524,-0.0167279466986656,-0.0313011892139912,-0.999365925788879,-0.0169703755527735,-0.0707025155425072,-0.997497379779816,-0.000436122587416321,0.0394779741764069,-0.999119937419891,-0.0141799012199044,0.0870494544506073,-0.996072351932526,-0.0161956883966923,0.137599989771843,-0.0155963031575084,-0.990365087985992,-0.0322061218321323,-0.999469399452209,-0.00486504752188921,-0.0313011892139912,-0.999365925788879,-0.0169703755527735,-0.0314292870461941,-0.999365985393524,-0.0167279466986656,-0.019551383331418,-0.999694406986237,0.0151274278759956,-0.0182641837745905,-0.999813973903656,-0.00619558431208134,-0.018554424867034,-0.999694526195526,-0.0163276121020317,
- -0.504578053951263,-0.0379309020936489,-0.862532436847687,-0.545861661434174,-0.0131932608783245,-0.837771475315094,-0.050863903015852,-0.998700857162476,-0.00308200134895742,0.000864830741193146,-0.999967455863953,-0.00801861472427845,0.000363072613254189,-0.999875783920288,0.0157575104385614,0.00128738710191101,-0.999999165534973,-5.0684335292317e-005,-0.127556383609772,-0.991822123527527,0.00427682558074594,0.0277760364115238,-0.709028899669647,-0.704632163047791,-0.218741521239281,-0.0401065424084663,-0.97495824098587,0.00161890697199851,-0.999965965747833,-0.00809042155742645,0.00260366126894951,-0.999996602535248,-0.000102506477560382,0.00774562917649746,-0.999961733818054,0.00406670616939664
- }
- TangentsW: *4028 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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: *2000 {
- a: 9.80350023382925e-010,0,0.999999940395355,0,0.999999940395355,1.51805567741394,0.00018782913684845,1.51805567741394,0.249999538064003,4.46428227718343e-010,0.249999552965164,1.51805567741394,0.50000011920929,0,0.50000011920929,1.51805567741394,0.749784827232361,2.5902409106493e-009,0.749784827232361,1.51805567741394,0.999999940395355,1.25547873973846,0.749784648418427,1.25547873973846,0.500000059604645,1.25547873973846,0.249999672174454,1.25547873973846,0.00018782913684845,1.25547873973846,0.999999940395355,1,0.750102698802948,1.00331044197083,0.499998778104782,1.14971947669983,0.250032007694244,1.00243973731995,0,1,0.999999940395355,0.75,0.750003159046173,0.751485764980316,0.249893486499786,0.751461386680603,6.21678708512263e-010,0.75,0.999999940395355,0.5,0.749863564968109,0.357657551765442,0.499889969825745,0.357614070177078,0.249970644712448,0.357544332742691,0,0.5,1,0.25,0.749766528606415,0.249916836619377,0.499962896108627,0.249786972999573,0.249948352575302,0.249676764011383,9.80350023382925e-010,0.25,1,0.25,0.625219404697418,0.24847275018692,0.625219404697418,-0.000599614344537258,0.999999940395355,0,0.625219404697418,1.51805567741394,0.999999940395355,1.51805567741394,0.625219404697418,1.25547873973846,0.999999940395355,1.25547873973846,0.625219404697418,0.997909188270569,0.999999940395355,1,0.625219404697418,0.746394872665405,0.999999940395355,0.75,0.625219404697418,0.497226119041443,0.999999940395355,0.5,1.24490416049957,0.25,0.871270895004272,0.250005543231964,0.871270895004272,-3.07559967041016e-005,1.24490416049957,-0.000474686734378338,0.871270895004272,1.51805567741394,1.24490416049957,1.51805567741394,0.871270895004272,1.25547873973846,1.24490416049957,1.25547873973846,0.871270895004272,0.998278379440308,1.24490416049957,0.998467206954956,0.871270895004272,0.749634683132172,1.24490416049957,0.749634683132172,0.871270895004272,0.49931013584137,1.24490416049957,0.49931013584137,0.749999463558197,1.51805567741394,0.749999105930328,1.14370119571686,0.999999940395355,1.14404320716858,
- 0.999999940395355,1.51805567741394,0.49999988079071,1.51805567741394,0.500201106071472,1.14335906505585,0.249995529651642,1.51805567741394,0.250211387872696,1.14314568042755,0.00018782913684845,1.14302051067352,0.00018782913684845,1.51805567741394,0.749996960163116,1.51805567741394,0.999999940395355,1.51805567741394,0.999999940395355,1.89206945896149,0.749997138977051,1.89241051673889,0.49999988079071,1.51805567741394,0.500199735164642,1.89275193214417,0.249994575977325,1.51805567741394,0.250210464000702,1.89296531677246,0.000187382102012634,1.89309024810791,0.00018782913684845,1.51805567741394,1,0.25,0.749338209629059,0.249980568885803,0.748273015022278,-0.000388632353860885,0.999999940395355,0,9.80350023382925e-010,0,0.247651979327202,-0.000202187933609821,0.24876394867897,0.25000935792923,9.80350023382925e-010,0.25,0.498136192560196,0.250025182962418,0.49798858165741,-0.000179754308192059,0.752734899520874,1.51805567741394,0.999999940395355,1.51805567741394,0.500025629997253,1.51805567741394,0.247411534190178,1.51805567741394,0.00018782913684845,1.51805567741394,0.75178200006485,1.25547873973846,0.999999940395355,1.25547873973846,0.499477565288544,1.25547873973846,0.247217148542404,1.25547873973846,0.00018782913684845,1.25547873973846,0.750343263149261,1.00303149223328,0.999999940395355,1,0.499404400587082,1.14968550205231,0.249117404222488,1.00292372703552,0,1,0.749869108200073,0.751897156238556,0.999999940395355,0.75,0.248764619231224,0.751649975776672,6.21678708512263e-010,0.75,0.749091744422913,0.358004003763199,0.999999940395355,0.5,0.498730212450027,0.358098119497299,0.248565137386322,0.358108282089233,0,0.5,0.366341412067413,1.10348045825958,0.302139729261398,0.751648545265198,0.302172839641571,0.357682555913925,0.633717894554138,1.1039514541626,0.697375178337097,0.751920282840729,0.696784198284149,0.35806280374527,0.633547306060791,1.10344791412354,0.697580337524414,0.751440405845642,0.69769674539566,0.357604324817657,0.365144670009613,1.10363614559174,0.30071023106575,0.751952290534973,0.300513505935669,
- 0.358110308647156,0.305387884378433,0.970599114894867,0.694536805152893,0.970873415470123,0.694380700588226,0.970181226730347,0.303903818130493,0.970699489116669,0.00571004115045071,0.507967829704285,0.0196220558136702,0.38517639040947,0.317786276340485,0.410094857215881,0.305327296257019,0.530186414718628,0.0370689816772938,0.175949439406395,0.333465963602066,0.203502595424652,0.0800629928708076,-0.190124526619911,0.37516063451767,-0.160870358347893,0.836332857608795,0.265686184167862,0.836462497711182,0.544603407382965,0.435051947832108,0.544604241847992,0.434923142194748,0.265687376260757,0.836387097835541,0.709464013576508,0.434976488351822,0.709463238716125,0.435053646564484,-0.237968012690544,0.836462557315826,-0.237968862056732,0.00832258071750402,0.625938415527344,0.434900969266891,0.858753085136414,0.543643116950989,0.937492609024048,0.543643116950989,0.536084234714508,0.797788619995117,0.536083996295929,0.797788619995117,0.937492370605469,1.05193316936493,0.536084175109863,1.05193328857422,0.937492489814758,0.836311519145966,0.858754336833954,0.30820095539093,0.647589683532715,0.749918282032013,0.500156879425049,0.697580754756927,0.50032114982605,0.837752521038055,-0.0549683049321175,0.436343193054199,-0.0549672842025757,0.300573498010635,0.500900268554688,0.248699516057968,0.500947535037994,0.250023752450943,0.500546097755432,0.0624312795698643,-0.057381022721529,0.302186816930771,0.500533699989319,0.69687682390213,0.500997364521027,0.358178585767746,-0.0289773605763912,0.749408900737762,0.500620782375336,-0.9306640625,0.975189208984375,-0.62646484375,0.990997314453125,-0.9306640625,0.991127014160156,-0.625,0.975814819335938,-0.9306640625,0.93719482421875,-0.6220703125,0.93719482421875,-0.62158203125,0.93463134765625,-0.9306640625,0.93426513671875,-0.9384765625,0.818603515625,-0.61767578125,0.81884765625,-0.61767578125,0.81591796875,-0.935546875,0.81591796875,-0.9384765625,0.7769775390625,-0.61767578125,0.77783203125,-0.62451171875,0.76220703125,-0.9306640625,0.761962890625,-0.9306640625,0.672607421875,
- -0.6240234375,0.672119140625,0.0689697265625,0.975189208984375,0.37353515625,0.990982055664063,0.0689697265625,0.991127014160156,0.3779296875,0.975814819335938,0.06158447265625,0.93719482421875,0.382080078125,0.93719482421875,0.378173828125,0.93463134765625,0.06903076171875,0.93426513671875,0.061370849609375,0.818603515625,0.382080078125,0.81884765625,0.382080078125,0.81591796875,0.06427001953125,0.81591796875,0.0609130859375,0.7769775390625,0.382080078125,0.77783203125,0.063232421875,0.7620849609375,0.382080078125,0.761962890625,0.375732421875,0.671875,0.0689697265625,0.672607421875,-0.9306640625,0.818603515625,-0.97119140625,0.8172607421875,-0.93310546875,0.81689453125,-0.97021484375,0.9361572265625,-0.93310546875,0.9361572265625,-0.9833984375,0.8326416015625,-0.9833984375,0.92047119140625,1.72265625,0.81689453125,1.6826171875,0.81884765625,1.685546875,0.81689453125,1.6826171875,0.93463134765625,1.72265625,0.9359130859375,1.685546875,0.9361572265625,1.7353515625,0.832275390625,1.7353515625,0.9208984375,2.72265625,0.81689453125,2.681640625,0.81884765625,2.685546875,0.81689453125,2.681640625,0.93463134765625,2.72265625,0.9359130859375,2.685546875,0.9361572265625,2.734375,0.8326416015625,2.734375,0.92095947265625,0.0293121337890625,0.9361572265625,0.066650390625,0.9361572265625,0.0283966064453125,0.8172607421875,0.0163421630859375,0.92047119140625,0.0163726806640625,0.8323974609375,0.0689697265625,0.818603515625,0.066650390625,0.81689453125,-1.9833984375,0.208984375,-1.9873046875,0.0361328125,-1.87890625,0.03271484375,-1.8369140625,0.2041015625,-1.83984375,0.05224609375,-0.9833984375,0.208984375,-0.9873046875,0.0361328125,-0.87890625,0.03271484375,-0.83740234375,0.2041015625,-0.83984375,0.05224609375,0.0164947509765625,1.208740234375,0.0123825073242188,1.03579711914063,0.12066650390625,1.03250122070313,0.1622314453125,1.20361328125,0.1600341796875,1.05178833007813,0.18896484375,2.04296875,0.329833984375,2.0458984375,0.1903076171875,2.17578125,0.3291015625,2.1982421875,0.21337890625,2.2021484375,0.18896484375,-0.9560546875,
- 0.329833984375,-0.953125,0.1903076171875,-0.8232421875,0.3291015625,-0.80078125,0.21337890625,-0.796875,0.1888427734375,0.0439453125,0.329833984375,0.04638671875,0.1903076171875,0.17626953125,0.3291015625,0.19873046875,0.21337890625,0.20263671875,-1.8095703125,0.17626953125,-1.669921875,0.19873046875,-1.7861328125,0.20263671875,-1.669921875,0.04638671875,-1.810546875,0.0439453125,-0.8095703125,0.17626953125,-0.67041015625,0.19873046875,-0.7861328125,0.20263671875,-0.669921875,0.04638671875,-0.810546875,0.0439453125,0.1903076171875,1.1761474609375,0.3291015625,1.1982421875,0.21337890625,1.2021484375,0.329833984375,1.04608154296875,0.1888427734375,1.04345703125,0.12066650390625,2.0322265625,0.1600341796875,2.0517578125,0.1622314453125,2.203125,0.0164947509765625,2.2080078125,0.0123825073242188,2.03515625,0.12066650390625,-0.966796875,0.1600341796875,-0.947265625,0.1622314453125,-0.7958984375,0.0164947509765625,-0.791015625,0.0123825073242188,-0.9638671875,0.12066650390625,0.03271484375,0.1600341796875,0.05224609375,0.1622314453125,0.2041015625,0.0164947509765625,0.208984375,0.0123825073242188,0.0361328125,0.464111328125,1.246337890625,0.310302734375,1.25439453125,0.318115234375,1.246337890625,0.464599609375,1.259521484375,0.475830078125,1.24560546875,0.4755859375,1.2548828125,0.64501953125,1.247314453125,0.312744140625,1.459716796875,0.6416015625,1.253173828125,0.6533203125,1.246337890625,0.46923828125,1.457763671875,0.65380859375,1.256591796875,0.4580078125,1.459716796875,0.6455078125,1.455078125,0.44140625,1.466552734375,0.9501953125,1.257080078125,0.791015625,1.2476806640625,0.97265625,1.246337890625,0.98828125,1.259033203125,0.6689453125,1.457763671875,0.9765625,1.458984375,0.98828125,1.46142578125,0.77783203125,1.456298828125,0.97216796875,1.466064453125,0.94970703125,1.6298828125,0.66064453125,1.463134765625,0.98828125,1.62939453125,0.64306640625,1.4912109375,0.66064453125,1.62451171875,0.630859375,1.4619140625,0.462890625,1.62158203125,0.63916015625,1.6328125,0.97607421875,1.6328125,0.974609375,1.8212890625,0.98828125,
- 1.8037109375,0.8388671875,1.8212890625,0.97314453125,1.8271484375,0.98828125,1.86865234375,0.84130859375,1.83056640625,0.79052734375,1.7998046875,0.9775390625,1.98974609375,0.98828125,1.98974609375,0.79833984375,1.87109375,0.79345703125,1.99169921875,0.76171875,1.83251953125,0.6513671875,1.98974609375,0.759765625,1.82763671875,0.6494140625,1.83642578125,0.64501953125,1.9912109375,0.47412109375,1.99072265625,0.6552734375,1.82275390625,0.6474609375,1.82470703125,0.63720703125,1.63427734375,0.4765625,1.82470703125,0.473876953125,1.634765625,0.474853515625,1.83154296875,0.469482421875,1.7998046875,0.460205078125,1.6318359375,0.462158203125,1.8681640625,0.4609375,1.98974609375,0.316162109375,1.98974609375,0.462646484375,1.82080078125,0.417724609375,1.83056640625,0.30712890625,1.8310546875,0.3095703125,1.99560546875,0.30126953125,1.98974609375,0.313232421875,1.8232421875,0.314697265625,1.63232421875,0.313720703125,1.626953125,0.302490234375,1.63525390625,0.301025390625,1.82373046875,0.149658203125,1.8359375,0.150390625,1.98974609375,0.1390380859375,1.9912109375,0.1995849609375,1.8212890625,0.1534423828125,1.7998046875,0.131591796875,1.82763671875,0.0192108154296875,1.98974609375,0.144775390625,1.8017578125,0.015533447265625,1.82275390625,0.1351318359375,1.8193359375,0.00989532470703125,1.81884765625,0.00931549072265625,1.98974609375,0.01873779296875,1.8125,0.019775390625,1.6357421875,0.00931549072265625,1.66015625,0.00931549072265625,1.6083984375,0.138671875,1.6396484375,0.0269927978515625,1.62744140625,0.00931549072265625,1.462890625,0.1455078125,1.64111328125,0.1549072265625,1.63525390625,0.1541748046875,1.6220703125,0.158447265625,1.466796875,0.02215576171875,1.467529296875,0.0151901245117188,1.459716796875,0.00931549072265625,1.263671875,0.1419677734375,1.456298828125,0.0183258056640625,1.2568359375,0.0198516845703125,1.246337890625,0.14306640625,1.2470703125,0.143798828125,1.255615234375,0.1527099609375,1.45654296875,0.150390625,1.255859375,0.14990234375,1.246337890625,0.312255859375,1.4677734375,0.302001953125,1.457275390625,
- 0.30078125,1.255126953125,0.301513671875,1.246337890625,0.98828125,3.8671875,0.98828125,3.98828125,0.9775390625,3.98828125,0.97314453125,3.826171875,0.98828125,3.802734375,0.84130859375,3.830078125,0.974609375,3.8203125,0.98828125,3.62890625,0.79833984375,3.87109375,0.79833984375,3.98828125,0.78515625,3.990234375,0.8388671875,3.8203125,0.794921875,3.798828125,0.97607421875,3.6328125,0.97509765625,3.626953125,0.98828125,3.4609375,0.79541015625,3.6328125,0.7841796875,3.818359375,0.78662109375,3.638671875,0.75732421875,3.830078125,0.63037109375,3.990234375,0.7568359375,3.830078125,0.80126953125,3.626953125,0.7783203125,3.630859375,0.6552734375,3.822265625,0.6357421875,3.833984375,0.47705078125,3.98828125,0.65185546875,3.6328125,0.458740234375,3.8359375,0.4638671875,3.990234375,0.646484375,3.81640625,0.2939453125,3.990234375,0.6396484375,3.828125,0.63720703125,3.6328125,0.63427734375,3.625,0.47119140625,3.822265625,0.47265625,3.6328125,0.479736328125,3.623046875,0.460205078125,3.630859375,0.452880859375,3.8203125,0.28955078125,3.8203125,0.3134765625,3.630859375,0.3173828125,3.625,0.302490234375,3.634765625,0.20556640625,3.833984375,0.149658203125,3.990234375,0.135986328125,3.98828125,0.0192108154296875,3.98828125,0.0188751220703125,3.63671875,0.01873779296875,3.8125,0.015533447265625,3.822265625,0.00988006591796875,3.818359375,0.00931549072265625,3.98828125,0.00931549072265625,3.66015625,0.00931549072265625,3.607421875,0.0231475830078125,3.626953125,0.00931549072265625,3.462890625,0.01910400390625,3.46484375,0.303466796875,3.46875,0.0151901245117188,3.458984375,0.00931549072265625,3.263671875,0.29736328125,3.45703125,0.489501953125,3.466796875,0.0183258056640625,3.255859375,0.0198516845703125,3.24609375,0.1402587890625,3.24609375,0.1434326171875,3.255859375,0.1492919921875,3.24609375,0.298828125,3.25390625,0.297607421875,3.248046875,0.46728515625,3.24609375,0.468017578125,3.259765625,0.46630859375,3.451171875,0.47900390625,3.25390625,0.479736328125,3.24609375,0.63330078125,3.24609375,0.477783203125,3.45703125,0.630859375,
- 3.4609375,0.64208984375,3.453125,0.6416015625,3.255859375,0.64306640625,3.490234375,0.669921875,3.462890625,0.6689453125,3.45703125,0.80029296875,3.46484375,0.79541015625,3.45703125,0.97216796875,3.46484375,0.9765625,3.458984375,0.98828125,3.2578125,0.78466796875,3.25390625,0.78271484375,3.24609375,0.7958984375,3.24609375,0.79638671875,3.2578125,0.97705078125,3.255859375,0.97265625,3.24609375,0.464111328125,4.24609375,0.312744140625,4.251953125,0.318115234375,4.24609375,0.465087890625,4.2578125,0.47802734375,4.24609375,0.47900390625,4.25390625,0.64404296875,4.24609375,0.313720703125,4.458984375,0.638671875,4.251953125,0.476806640625,4.453125,0.650390625,4.255859375,0.6533203125,4.24609375,0.64208984375,4.453125,0.953125,4.255859375,0.7900390625,4.24609375,0.97265625,4.24609375,0.98828125,4.2578125,0.9765625,4.458984375,0.98828125,4.4609375,0.97216796875,4.46484375,0.6337890625,4.466796875,0.94921875,4.62890625,0.98828125,4.62890625,0.1544189453125,4.466796875,0.4833984375,4.623046875,0.97607421875,4.6328125,0.783203125,4.6328125,0.974609375,4.8203125,0.98828125,4.802734375,0.8388671875,4.8203125,0.97314453125,4.826171875,0.98828125,4.8671875,0.84130859375,4.830078125,0.79052734375,4.798828125,0.9775390625,4.98828125,0.98828125,4.98828125,0.79833984375,4.87109375,0.7919921875,4.990234375,0.76318359375,4.83203125,0.6513671875,4.98828125,0.75927734375,4.826171875,0.50146484375,4.8359375,0.6435546875,4.990234375,0.4755859375,4.990234375,0.5048828125,4.6328125,0.49267578125,4.822265625,0.46240234375,4.869140625,0.4609375,4.98828125,0.469482421875,4.798828125,0.316162109375,4.98828125,0.455078125,4.6328125,0.46240234375,4.8203125,0.417724609375,4.830078125,0.3076171875,4.830078125,0.311279296875,4.994140625,0.30126953125,4.98828125,0.200927734375,4.822265625,0.15087890625,4.833984375,0.150390625,4.98828125,0.143310546875,4.998046875,0.142333984375,4.83984375,0.147216796875,4.798828125,0.1549072265625,4.634765625,0.14501953125,4.6328125,0.156005859375,4.623046875,0.1475830078125,4.4609375,0.154541015625,4.45703125,0.144775390625,
- 4.25390625,0.150390625,4.255859375,0.14990234375,4.24609375,0.30078125,4.25390625,0.301513671875,4.24609375,0.464111328125,-0.7529296875,0.310302734375,-0.7451171875,0.318115234375,-0.7529296875,0.464599609375,-0.740234375,0.475830078125,-0.75390625,0.4755859375,-0.744140625,0.64501953125,-0.751953125,0.312744140625,-0.5400390625,0.6416015625,-0.74609375,0.6533203125,-0.7529296875,0.46923828125,-0.5419921875,0.65380859375,-0.7431640625,0.4580078125,-0.5400390625,0.6455078125,-0.5439453125,0.44140625,-0.533203125,0.9501953125,-0.7421875,0.791015625,-0.751953125,0.97265625,-0.7529296875,0.98828125,-0.740234375,0.6689453125,-0.5419921875,0.9765625,-0.5400390625,0.98828125,-0.5380859375,0.77783203125,-0.54296875,0.97216796875,-0.533203125,0.94970703125,-0.369140625,0.66064453125,-0.5361328125,0.98828125,-0.3701171875,0.64306640625,-0.5078125,0.66064453125,-0.375,0.630859375,-0.537109375,0.462890625,-0.3779296875,0.63916015625,-0.3662109375,0.97607421875,-0.3662109375,0.974609375,-0.177734375,0.98828125,-0.1953125,0.8388671875,-0.177734375,0.97314453125,-0.171875,0.98828125,-0.130859375,0.84130859375,-0.1689453125,0.79052734375,-0.19921875,0.9775390625,-0.009765625,0.98828125,-0.009765625,0.79833984375,-0.1279296875,0.79345703125,-0.0078125,0.76171875,-0.1669921875,0.6513671875,-0.009765625,0.759765625,-0.171875,0.6494140625,-0.1630859375,0.64501953125,-0.0078125,0.47412109375,-0.0087890625,0.6552734375,-0.1767578125,0.6474609375,-0.1748046875,0.63720703125,-0.365234375,0.4765625,-0.1748046875,0.473876953125,-0.3642578125,0.474853515625,-0.16796875,0.469482421875,-0.19921875,0.460205078125,-0.3671875,0.462158203125,-0.130859375,0.4609375,-0.009765625,0.316162109375,-0.009765625,0.462646484375,-0.1787109375,0.417724609375,-0.1689453125,0.30712890625,-0.16796875,0.3095703125,-0.00390625,0.30126953125,-0.009765625,0.313232421875,-0.17578125,0.314697265625,-0.3671875,0.313720703125,-0.3720703125,0.302490234375,-0.3642578125,0.301025390625,-0.17578125,0.149658203125,-0.1630859375,0.150390625,-0.009765625,0.1390380859375,-0.0078125,
- 0.1995849609375,-0.177734375,0.1534423828125,-0.19921875,0.131591796875,-0.171875,0.0192108154296875,-0.009765625,0.144775390625,-0.197265625,0.015533447265625,-0.1767578125,0.1351318359375,-0.1796875,0.00989532470703125,-0.1806640625,0.00931549072265625,-0.009765625,0.01873779296875,-0.1865234375,0.019775390625,-0.36328125,0.00931549072265625,-0.3388671875,0.00931549072265625,-0.390625,0.138671875,-0.359375,0.0269927978515625,-0.3720703125,0.00931549072265625,-0.5361328125,0.1455078125,-0.3583984375,0.1549072265625,-0.3642578125,0.1541748046875,-0.376953125,0.158447265625,-0.5322265625,0.02215576171875,-0.5322265625,0.0151901245117188,-0.5400390625,0.00931549072265625,-0.7353515625,0.1419677734375,-0.54296875,0.0183258056640625,-0.7421875,0.0198516845703125,-0.7529296875,0.14306640625,-0.751953125,0.143798828125,-0.744140625,0.1527099609375,-0.54296875,0.150390625,-0.7431640625,0.14990234375,-0.7529296875,0.312255859375,-0.53125,0.302001953125,-0.5419921875,0.30078125,-0.744140625,0.301513671875,-0.7529296875,0.98828125,-2.130859375,0.98828125,-2.009765625,0.9775390625,-2.009765625,0.97314453125,-2.171875,0.98828125,-2.1953125,0.84130859375,-2.16796875,0.974609375,-2.177734375,0.98828125,-2.369140625,0.79833984375,-2.126953125,0.79833984375,-2.009765625,0.78515625,-2.0078125,0.8388671875,-2.177734375,0.794921875,-2.19921875,0.97607421875,-2.365234375,0.7841796875,-2.1796875,0.97509765625,-2.37109375,0.98828125,-2.537109375,0.79541015625,-2.365234375,0.78662109375,-2.359375,0.80126953125,-2.37109375,0.97216796875,-2.533203125,0.7568359375,-2.16796875,0.80029296875,-2.533203125,0.9765625,-2.5390625,0.98828125,-2.740234375,0.79541015625,-2.541015625,0.97705078125,-2.7421875,0.97265625,-2.751953125,0.7958984375,-2.751953125,0.79638671875,-2.740234375,0.78466796875,-2.744140625,0.78271484375,-2.751953125,0.63330078125,-2.751953125,0.669921875,-2.53515625,0.6689453125,-2.541015625,0.6416015625,-2.7421875,0.47900390625,-2.744140625,0.479736328125,-2.751953125,0.46728515625,-2.751953125,0.64208984375,-2.544921875,0.64306640625,
- -2.5078125,0.63427734375,-2.373046875,0.630859375,-2.537109375,0.477783203125,-2.541015625,0.46630859375,-2.546875,0.489501953125,-2.53125,0.468017578125,-2.73828125,0.29736328125,-2.541015625,0.298828125,-2.744140625,0.297607421875,-2.75,0.1492919921875,-2.751953125,0.1434326171875,-2.7421875,0.1402587890625,-2.751953125,0.0183258056640625,-2.7421875,0.0198516845703125,-2.751953125,0.00931549072265625,-2.734375,0.0151901245117188,-2.5390625,0.00931549072265625,-2.53515625,0.01910400390625,-2.533203125,0.303466796875,-2.529296875,0.0231475830078125,-2.37109375,0.00931549072265625,-2.390625,0.3173828125,-2.373046875,0.0188751220703125,-2.361328125,0.00931549072265625,-2.337890625,0.00988006591796875,-2.1796875,0.479736328125,-2.375,0.00931549072265625,-2.009765625,0.0192108154296875,-2.009765625,0.015533447265625,-2.17578125,0.01873779296875,-2.185546875,0.20556640625,-2.1640625,0.135986328125,-2.009765625,0.149658203125,-2.0078125,0.2939453125,-2.0078125,0.28955078125,-2.177734375,0.458740234375,-2.162109375,0.4638671875,-2.0078125,0.47705078125,-2.009765625,0.302490234375,-2.36328125,0.3134765625,-2.3671875,0.452880859375,-2.177734375,0.460205078125,-2.3671875,0.47119140625,-2.17578125,0.47265625,-2.365234375,0.63720703125,-2.365234375,0.6396484375,-2.169921875,0.6357421875,-2.1640625,0.63037109375,-2.0078125,0.646484375,-2.181640625,0.65185546875,-2.365234375,0.6552734375,-2.17578125,0.75732421875,-2.16796875,0.7783203125,-2.3671875,1.4638671875,0.24658203125,1.3125,0.25390625,1.3173828125,0.24658203125,1.46484375,0.259765625,1.4775390625,0.2470703125,1.478515625,0.2548828125,1.6435546875,0.24755859375,1.3134765625,0.45947265625,1.638671875,0.2529296875,1.4765625,0.4541015625,1.650390625,0.25732421875,1.6533203125,0.24658203125,1.6416015625,0.455078125,1.953125,0.2568359375,1.7900390625,0.248046875,1.97265625,0.24658203125,1.98828125,0.25927734375,1.9765625,0.45947265625,1.98828125,0.4619140625,1.9716796875,0.46630859375,1.6328125,0.46728515625,1.94921875,0.629638671875,1.98828125,0.629638671875,1.154296875,0.46728515625,
- 1.4833984375,0.623779296875,1.9755859375,0.63330078125,1.783203125,0.63330078125,1.974609375,0.821533203125,1.98828125,0.8040771484375,1.8388671875,0.8214111328125,1.97265625,0.82763671875,1.98828125,0.869140625,1.8408203125,0.8306884765625,1.7900390625,0.800048828125,1.9775390625,0.990119934082031,1.98828125,0.990119934082031,1.7978515625,0.87158203125,1.7919921875,0.991775512695313,1.7626953125,0.8326416015625,1.6513671875,0.990119934082031,1.7587890625,0.827880859375,1.5009765625,0.83740234375,1.6435546875,0.99169921875,1.4755859375,0.991065979003906,1.5048828125,0.634521484375,1.4921875,0.822998046875,1.4619140625,0.8695068359375,1.4609375,0.990119934082031,1.46875,0.7999267578125,1.3154296875,0.990119934082031,1.455078125,0.63330078125,1.4619140625,0.8221435546875,1.4169921875,0.8309326171875,1.3076171875,0.831787109375,1.310546875,0.995037078857422,1.30078125,0.990119934082031,1.2001953125,0.822509765625,1.150390625,0.834228515625,1.150390625,0.990119934082031,1.142578125,0.998317718505859,1.1416015625,0.841552734375,1.146484375,0.800048828125,1.154296875,0.6357421875,1.14453125,0.63330078125,1.1552734375,0.625,1.1474609375,0.46142578125,1.154296875,0.45751953125,1.14453125,0.255859375,1.150390625,0.25634765625,1.1494140625,0.24658203125,1.30078125,0.25537109375,1.30078125,0.24658203125,0.0098419189453125,2.818359375,0.0192108154296875,2.9892578125,0.00931549072265625,2.9892578125,0.015533447265625,2.822265625,0.1478271484375,2.8359375,0.135986328125,2.9892578125,0.149658203125,2.9912109375,0.01873779296875,2.8125,0.0194091796875,2.6357421875,0.00931549072265625,2.66015625,0.00931549072265625,2.6083984375,0.2259521484375,2.822265625,0.394775390625,2.826171875,0.30126953125,2.9892578125,0.3115234375,2.990234375,0.462646484375,2.83984375,0.4638671875,2.9912109375,0.47705078125,2.9892578125,0.45849609375,2.8232421875,0.6416015625,2.8369140625,0.63720703125,2.9892578125,0.6484375,2.9912109375,0.459716796875,2.6337890625,0.6396484375,2.828125,0.64208984375,2.6337890625,0.6494140625,2.8212890625,0.65478515625,2.8330078125,
- 0.76953125,2.8291015625,0.78173828125,2.9892578125,0.7900390625,2.998046875,0.78857421875,2.865234375,0.78564453125,2.8046875,0.75537109375,2.828125,0.787109375,2.6328125,0.7783203125,2.630859375,0.63671875,2.623046875,0.7783203125,2.626953125,0.77587890625,2.4619140625,0.787109375,2.4599609375,0.669921875,2.4638671875,0.7734375,2.4560546875,0.7861328125,2.2548828125,0.779296875,2.2548828125,0.77978515625,2.24609375,0.650390625,2.2470703125,0.6689453125,2.45703125,0.6484375,2.2548828125,0.6376953125,2.24609375,0.64306640625,2.4912109375,0.6435546875,2.453125,0.47900390625,2.25390625,0.479736328125,2.24609375,0.630859375,2.4619140625,0.477783203125,2.4580078125,0.446533203125,2.4658203125,0.47119140625,2.265625,0.467041015625,2.2470703125,0.46630859375,2.4580078125,0.464599609375,2.2587890625,0.310302734375,2.2548828125,0.3134765625,2.2470703125,0.301513671875,2.24609375,0.1492919921875,2.2470703125,0.1513671875,2.4560546875,0.150390625,2.255859375,0.144775390625,2.26171875,0.1402587890625,2.24609375,0.1463623046875,2.466796875,0.139404296875,2.251953125,0.1435546875,2.4560546875,0.0183258056640625,2.2568359375,0.0198516845703125,2.24609375,0.00931549072265625,2.263671875,0.0151901245117188,2.458984375,0.00931549072265625,2.462890625,0.02215576171875,2.466796875,0.0244293212890625,2.6279296875,0.00931549072265625,-1.009765625,0.0098419189453125,-1.1796875,0.0192108154296875,-1.009765625,0.015533447265625,-1.17578125,0.1478271484375,-1.162109375,0.135986328125,-1.009765625,0.149658203125,-1.0078125,0.01873779296875,-1.185546875,0.0194091796875,-1.36328125,0.00931549072265625,-1.337890625,0.00931549072265625,-1.390625,0.2259521484375,-1.17578125,0.394775390625,-1.171875,0.30126953125,-1.009765625,0.3115234375,-1.0078125,0.462646484375,-1.158203125,0.4638671875,-1.0078125,0.47705078125,-1.009765625,0.45849609375,-1.17578125,0.6416015625,-1.162109375,0.63720703125,-1.009765625,0.6484375,-1.0078125,0.459716796875,-1.365234375,0.6396484375,-1.169921875,0.64208984375,-1.365234375,0.6494140625,-1.177734375,0.65478515625,-1.166015625,
- 0.76953125,-1.169921875,0.78173828125,-1.009765625,0.7900390625,-1,0.78857421875,-1.1328125,0.78564453125,-1.193359375,0.75537109375,-1.169921875,0.787109375,-1.365234375,0.7783203125,-1.3671875,0.63671875,-1.375,0.7783203125,-1.37109375,0.77587890625,-1.537109375,0.787109375,-1.5390625,0.669921875,-1.53515625,0.7734375,-1.54296875,0.7861328125,-1.744140625,0.779296875,-1.744140625,0.77978515625,-1.751953125,0.650390625,-1.751953125,0.6689453125,-1.541015625,0.6484375,-1.744140625,0.6376953125,-1.751953125,0.64306640625,-1.5078125,0.6435546875,-1.544921875,0.47900390625,-1.744140625,0.479736328125,-1.751953125,0.630859375,-1.537109375,0.477783203125,-1.541015625,0.446533203125,-1.533203125,0.47119140625,-1.732421875,0.467041015625,-1.751953125,0.46630859375,-1.541015625,0.464599609375,-1.740234375,0.310302734375,-1.744140625,0.3134765625,-1.751953125,0.301513671875,-1.751953125,0.1492919921875,-1.751953125,0.1513671875,-1.54296875,0.150390625,-1.7421875,0.144775390625,-1.736328125,0.1402587890625,-1.751953125,0.1463623046875,-1.53125,0.139404296875,-1.74609375,0.1435546875,-1.54296875,0.0183258056640625,-1.7421875,0.0198516845703125,-1.751953125,0.00931549072265625,-1.734375,0.0151901245117188,-1.5390625,0.00931549072265625,-1.53515625,0.02215576171875,-1.53125,0.0244293212890625,-1.37109375
- }
- UVIndex: *4028 {
- a: 29,30,8,1,0,4,32,33,6,31,32,4,8,30,31,6,11,10,2,9,11,9,7,12,12,7,5,13,14,13,5,3,10,11,16,15,17,122,16,11,12,13,18,116,17,12,19,18,13,14,21,20,15,16,21,16,130,123,23,22,18,19,24,158,25,25,158,159,124,28,164,22,23,30,29,24,25,30,25,124,26,31,31,26,118,27,32,33,32,27,28,34,35,36,37,40,41,39,38,41,40,42,43,44,45,43,42,45,44,46,47,35,34,47,46,48,49,50,51,52,54,55,53,55,54,56,57,56,58,59,57,59,58,60,61,60,49,48,61,62,63,64,65,62,66,67,63,66,68,69,67,70,69,68,71,72,73,74,75,76,72,75,77,78,76,77,79,80,81,78,79,82,83,84,85,86,87,88,89,87,91,90,88,91,84,83,90,97,98,93,92,97,92,94,99,99,94,95,100,96,101,100,95,98,97,102,103,99,104,119,102,97,100,105,125,104,99,106,105,100,101,107,108,103,102,107,102,129,120,106,110,109,105,112,169,111,167,169,107,120,115,163,109,110,83,82,112,111,83,111,121,113,90,90,113,127,114,88,115,89,88,114,18,128,116,164,166,117,22,105,131,125,127,162,163,114,132,133,134,135,140,141,142,143,156,149,145,144,146,147,160,161,165,168,137,136,150,151,152,153,153,152,154,155,135,157,148,132,134,133,136,137,142,141,144,145,130,16,122,117,128,18,22,129,102,119,126,131,105,109,159,158,21,123,161,160,140,143,163,162,126,109,118,166,164,27,138,139,168,165,111,169,167,121,115,114,163,20,21,158,24,28,27,164,108,107,169,112,170,171,172,170,173,171,174,173,170,174,175,173,175,174,176,177,176,174,178,176,177,176,178,179,179,178,180,181,180,178,182,180,181,182,183,180,184,183,182,185,184,182,186,184,185,186,187,184,188,189,190,189,188,191,191,188,192,191,192,193,194,193,192,192,195,194,195,196,194,196,197,194,196,198,197,198,196,199,198,199,200,198,200,201,202,201,200,201,202,203,203,202,204,204,202,205,206,207,208,177,207,206,207,177,209,209,177,210,209,211,207,211,209,212,213,214,215,214,213,216,216,213,217,216,217,218,217,213,219,217,219,220,221,222,223,222,221,224,224,221,225,224,225,226,225,221,227,225,227,228,229,195,230,231,195,229,231,229,232,231,232,233,195,231,234,234,231,235,236,237,238,238,239,236,238,240,239,241,242,243,243,244,241,243,245,244,246,247,248,248,249,246,248,250,249,251,
- 252,253,254,253,252,253,254,255,256,257,258,259,258,257,258,259,260,261,262,263,264,263,262,263,264,265,266,267,268,267,266,269,269,266,270,271,272,273,272,271,274,274,271,275,276,277,278,277,276,279,279,276,280,281,282,283,284,281,283,281,284,285,286,287,288,289,286,288,286,289,290,291,292,293,294,291,293,291,294,295,296,297,298,297,296,299,296,300,299,300,301,299,302,301,300,303,297,299,304,301,302,305,304,302,299,301,306,304,305,307,308,299,306,299,308,303,309,301,304,309,306,301,307,309,304,306,310,308,309,310,306,310,303,308,305,311,307,311,305,312,313,311,312,314,311,313,315,307,311,315,309,307,314,316,311,316,314,317,318,315,311,311,316,318,316,317,319,319,318,316,320,319,317,318,319,321,315,318,321,320,321,319,320,317,322,321,323,315,315,323,309,321,320,324,321,324,323,325,309,323,325,323,324,310,309,325,326,325,324,325,326,310,327,324,320,320,322,328,328,327,320,322,329,328,322,330,329,328,329,331,332,329,330,332,330,333,329,334,331,334,329,332,328,331,335,334,335,331,327,328,335,336,332,333,336,334,332,333,337,336,334,336,338,335,334,338,338,336,339,339,340,338,335,338,340,341,340,339,335,340,342,342,327,335,343,340,341,343,342,340,343,341,344,345,343,344,327,342,346,342,343,346,347,327,346,346,343,347,327,347,348,348,324,327,343,349,347,348,347,349,350,324,348,349,350,348,326,324,350,349,343,351,343,345,351,350,349,352,349,351,352,326,350,353,352,353,350,354,351,345,352,351,354,354,345,355,355,356,354,354,357,352,352,357,353,354,356,358,354,358,357,356,359,358,359,356,360,360,361,359,362,357,358,362,358,359,353,357,363,363,357,362,353,363,364,364,326,353,326,364,310,363,362,365,364,363,365,362,359,366,362,366,365,361,367,359,367,366,359,368,367,361,367,368,369,366,367,370,371,366,370,371,370,367,366,371,365,369,372,367,372,369,373,371,367,374,375,372,373,374,367,376,376,367,372,373,377,375,377,373,378,379,372,375,377,379,375,372,379,376,377,380,379,380,377,381,382,380,381,383,376,379,379,380,383,384,380,382,384,383,380,382,385,384,376,383,386,376,386,374,371,374,386,371,386,387,365,371,387,386,383,388,387,
- 386,388,388,365,387,384,388,383,365,388,364,384,389,388,364,388,389,390,384,385,389,384,390,390,385,391,385,392,391,390,393,389,391,393,390,391,392,394,393,391,394,392,395,394,395,396,394,393,394,397,394,396,397,393,398,389,393,397,398,399,397,396,398,397,399,399,396,400,398,401,389,401,364,389,364,401,310,310,401,303,401,398,402,303,401,402,402,398,399,303,402,403,402,399,403,400,403,399,297,303,403,403,400,404,297,403,404,405,406,407,407,408,405,408,409,405,407,410,408,408,411,409,410,411,408,412,409,411,410,407,413,413,407,414,413,414,415,411,410,416,410,413,416,417,411,416,416,413,417,412,411,418,411,417,418,419,412,418,419,420,412,421,418,417,418,421,419,417,413,422,415,422,413,417,423,421,422,423,417,415,424,422,425,424,415,426,423,422,422,424,426,423,427,421,427,419,421,423,426,428,428,427,423,424,429,426,428,426,429,430,424,425,429,424,430,431,430,425,429,432,428,430,431,433,431,434,433,430,435,429,435,432,429,434,436,433,435,430,437,433,437,430,432,435,438,435,437,438,428,432,439,438,439,432,439,427,428,438,437,440,437,433,440,440,441,438,442,438,441,438,442,439,440,443,441,442,441,443,433,444,440,440,444,443,445,444,433,443,444,446,446,444,445,443,446,447,447,442,443,446,445,448,447,446,448,445,433,449,449,433,436,450,449,436,451,449,450,452,449,451,448,445,453,453,447,448,449,454,445,453,445,454,452,455,449,454,449,455,452,456,455,454,455,456,456,452,457,456,453,454,453,456,458,459,453,458,460,453,459,447,453,460,459,461,460,447,460,462,462,460,461,463,447,462,462,461,464,461,465,464,466,463,462,466,462,464,447,463,467,467,463,466,467,442,447,464,465,468,464,468,466,465,469,468,469,470,468,468,470,471,466,468,471,471,470,472,472,473,471,466,471,473,473,472,474,475,473,474,466,473,476,473,475,476,477,466,476,467,466,477,475,478,476,477,476,478,478,475,479,480,478,479,467,477,481,481,477,478,481,482,467,482,442,467,442,482,439,483,481,478,482,481,483,484,478,480,483,478,484,482,485,439,482,483,485,486,439,485,486,427,439,487,485,483,486,485,487,487,483,484,427,486,488,488,419,427,487,489,486,486,489,488,419,
- 488,490,489,490,488,419,490,420,491,420,490,490,489,491,491,492,420,493,489,487,487,484,493,480,493,484,493,480,494,493,494,495,493,496,489,496,493,495,496,491,489,495,497,496,491,496,497,492,491,497,497,495,498,492,497,498,499,500,501,500,499,502,499,503,502,503,504,502,503,505,504,506,500,502,504,505,507,508,502,504,508,506,502,509,507,505,510,509,505,511,504,507,511,507,509,511,508,504,510,512,509,511,509,512,512,510,513,514,512,513,515,512,514,515,516,512,512,516,511,516,515,517,518,511,516,516,517,518,519,508,511,511,518,519,519,506,508,520,518,517,518,520,519,520,517,521,522,506,519,519,520,523,519,523,522,520,521,524,525,523,520,524,525,520,521,526,524,521,527,526,524,526,528,529,526,527,529,527,530,526,531,528,531,526,529,524,528,532,531,532,528,525,524,532,533,529,530,533,531,529,530,534,533,531,533,535,532,531,535,535,533,536,536,537,535,532,535,537,538,537,536,532,537,539,539,525,532,540,537,538,540,539,537,540,538,541,542,540,541,539,543,525,523,525,543,539,540,544,543,539,544,545,540,542,545,542,546,544,540,547,543,544,547,547,540,545,548,545,546,547,549,543,523,543,549,545,550,547,547,550,549,545,548,551,545,551,550,551,548,552,552,548,553,553,554,552,555,550,551,555,551,552,549,550,555,554,556,552,556,555,552,557,556,554,556,557,558,558,559,556,559,560,556,560,555,556,560,549,555,549,560,561,561,523,549,560,562,561,523,561,563,562,563,561,523,563,522,564,563,562,563,564,522,522,564,565,564,566,565,506,522,565,565,566,567,506,565,567,567,566,568,506,567,569,568,569,567,500,506,569,569,568,570,500,569,570,571,572,573,572,571,574,571,575,574,575,576,574,575,577,576,574,578,572,579,576,577,580,579,577,574,576,581,579,580,582,583,574,581,578,574,583,579,584,576,576,584,581,582,584,579,581,585,583,581,584,585,578,583,585,580,586,582,586,580,587,587,588,586,589,586,588,586,590,582,590,584,582,589,591,586,591,589,592,590,586,593,586,591,593,591,592,594,594,593,591,595,594,592,593,594,596,593,596,590,594,595,596,595,592,597,596,598,590,590,598,584,596,595,599,596,599,598,600,584,598,600,598,599,600,585,584,601,
- 600,599,600,601,585,602,599,595,595,597,603,602,595,603,597,604,603,597,605,604,606,603,604,607,604,605,607,605,608,604,609,606,609,604,607,610,603,606,609,610,606,603,610,602,611,607,608,611,609,607,608,612,611,609,611,613,610,609,613,613,611,614,614,615,613,610,613,615,616,615,614,617,610,615,617,602,610,618,615,616,618,617,615,618,616,619,620,618,619,602,617,621,617,618,621,622,602,621,618,622,621,602,622,623,623,599,602,618,624,622,624,623,622,623,625,599,623,624,625,601,599,625,618,626,624,618,620,626,625,624,627,624,626,627,601,625,628,627,628,625,629,626,620,627,626,629,629,620,630,631,629,630,629,632,627,627,632,628,631,633,629,629,633,632,633,631,634,634,631,635,635,636,634,633,637,632,633,634,637,632,638,628,637,638,632,639,628,638,639,601,628,639,585,601,638,637,640,640,639,638,637,634,641,637,641,640,636,642,634,642,641,634,643,642,636,642,643,644,641,642,645,646,641,645,642,646,645,641,646,640,644,647,642,648,647,644,646,642,649,647,648,650,649,642,651,651,642,647,650,648,652,653,652,648,647,650,654,652,654,650,647,654,651,652,655,654,655,652,656,657,655,656,654,658,651,658,654,655,659,655,657,658,655,659,657,660,659,651,658,661,651,661,649,646,649,661,646,661,662,640,646,662,661,658,663,662,661,663,663,640,662,658,659,663,640,663,639,659,664,663,664,639,663,665,659,660,659,665,664,665,660,666,660,667,666,666,668,665,665,668,664,666,667,669,669,668,666,667,670,669,670,671,669,672,668,669,672,669,671,668,673,664,668,672,673,674,672,671,674,673,672,674,671,675,673,676,664,639,664,676,585,639,676,585,676,578,676,673,677,676,677,578,674,677,673,578,677,678,678,677,674,675,678,674,572,578,678,678,675,679,572,678,679,680,681,682,682,683,680,683,684,680,682,685,683,683,686,684,685,686,683,687,684,686,685,682,688,688,682,689,688,689,690,686,685,691,688,691,685,692,686,691,688,692,691,687,686,693,686,692,693,690,694,688,692,688,694,695,687,693,695,696,687,693,692,697,697,695,693,692,698,697,694,698,692,695,697,699,698,699,697,695,700,696,701,698,694,695,702,700,702,695,699,703,696,700,703,704,696,705,700,702,700,
- 705,703,704,703,706,704,706,707,706,708,707,703,709,706,708,706,709,709,703,705,710,708,709,710,709,705,711,708,710,710,712,711,702,713,705,699,713,702,714,710,705,705,713,714,712,710,715,710,714,715,715,716,712,717,712,716,716,718,717,714,719,715,715,719,716,713,720,714,714,720,719,713,721,720,713,699,721,722,719,720,722,720,721,716,719,723,722,723,719,723,724,716,723,722,725,725,724,723,724,726,716,718,716,726,727,726,724,727,724,725,728,718,726,726,727,728,718,728,729,728,730,729,730,728,731,728,727,731,731,732,730,731,733,732,731,727,733,732,733,734,735,734,733,736,735,733,733,727,736,737,735,736,736,727,738,738,737,736,727,739,738,725,739,727,738,740,737,741,737,740,742,738,739,738,742,740,725,742,739,740,743,741,740,742,743,741,743,744,743,745,744,742,725,746,722,746,725,746,722,721,747,745,748,749,748,745,745,750,749,745,743,750,751,748,749,751,749,750,752,748,751,752,751,753,753,751,754,750,743,755,750,755,751,751,756,754,756,751,755,754,756,757,758,757,756,759,755,743,759,743,742,760,755,759,759,742,760,755,760,761,756,755,761,742,762,760,761,760,762,742,746,762,763,761,762,756,761,763,746,764,762,763,762,764,746,765,764,765,763,764,765,746,721,766,756,763,763,765,766,756,766,767,767,758,756,758,767,768,769,766,765,769,767,766,770,769,765,765,721,770,767,769,771,769,770,771,767,772,768,772,767,771,768,772,690,690,772,694,701,694,772,772,771,701,773,771,770,771,773,701,773,770,721,698,701,773,773,721,699,773,699,698,774,775,776,775,774,777,774,778,777,778,779,777,780,779,778,777,781,775,782,779,780,783,777,779,781,777,783,784,782,780,785,784,780,782,786,779,786,782,784,779,786,783,785,787,784,787,786,784,787,785,788,788,789,787,790,787,789,790,791,787,787,791,786,791,790,792,793,786,791,791,792,793,794,783,786,786,793,794,781,783,794,795,793,792,795,794,793,795,792,796,794,797,781,794,795,798,798,797,794,795,796,799,800,798,795,800,795,799,796,801,799,796,802,801,803,799,801,804,801,802,804,802,805,801,806,803,806,801,804,807,799,803,806,807,803,799,807,800,808,804,805,808,806,804,805,809,808,806,808,810,807,
- 806,810,810,808,811,811,812,810,807,810,812,813,812,811,814,807,812,814,800,807,815,812,813,815,814,812,815,813,816,817,815,816,814,818,800,800,818,798,814,815,819,818,814,819,820,815,817,820,817,821,819,815,822,818,819,822,822,815,820,820,821,823,822,824,818,798,818,824,820,825,822,822,825,824,823,826,820,820,826,825,826,823,827,827,823,828,828,829,827,826,830,825,826,827,830,830,824,825,829,831,827,831,830,827,832,831,829,831,832,833,831,833,834,834,835,831,830,831,835,835,824,830,824,835,836,824,836,798,835,837,836,838,798,836,837,838,836,797,798,838,839,838,837,838,839,797,797,839,840,841,840,839,840,781,797,842,840,841,842,781,840,842,841,843,844,781,842,843,844,842,775,781,844,844,843,845,775,844,845,846,847,848,847,846,849,850,847,849,851,847,850,851,850,852,853,849,846,853,850,849,846,854,853,854,846,855,856,854,855,850,853,857,854,857,853,858,852,850,858,850,857,852,858,859,860,859,858,860,858,861,861,862,860,863,862,861,857,864,858,861,858,864,865,863,861,864,865,861,863,865,866,865,867,866,868,864,857,868,857,854,865,864,869,868,870,864,870,869,864,871,865,869,871,869,870,867,865,872,871,872,865,872,873,867,867,873,874,873,875,874,875,873,876,877,876,873,878,872,871,872,878,873,877,873,878,870,878,871,878,879,877,878,870,880,879,878,880,881,880,870,881,870,868,854,881,868,880,882,879,880,881,882,883,879,882,879,883,884,882,885,883,885,882,881,883,886,884,885,886,883,886,887,884,886,888,887,889,887,888,888,890,889,891,886,885,886,891,888,890,888,892,891,892,888,890,892,893,885,894,891,885,881,894,891,895,892,891,894,895,892,896,893,895,896,892,893,896,897,898,895,894,898,894,881,898,899,895,895,899,896,898,881,900,899,898,900,896,901,897,897,901,902,899,903,896,903,901,896,900,903,899,902,901,904,904,901,903,905,902,904,902,905,906,905,907,906,905,908,907,903,909,904,909,905,904,909,903,900,908,905,910,909,910,905,910,911,908,910,909,911,911,912,908,913,909,900,912,911,914,911,909,915,915,914,911,915,909,913,914,916,912,915,916,914,912,916,917,918,917,916,919,918,916,919,916,915,920,918,919,919,915,921,921,
- 920,919,921,915,913,921,922,920,922,921,913,900,922,913,856,920,922,922,900,881,922,854,856,881,854,922,923,924,925,926,925,924,925,926,927,925,927,928,928,927,929,924,930,926,927,926,930,924,931,930,931,924,932,933,931,932,930,934,927,930,931,934,935,929,927,927,934,935,929,935,936,937,936,935,938,937,935,937,938,939,940,939,938,935,934,941,938,935,941,942,940,938,942,938,941,940,942,943,942,944,943,934,945,941,945,934,931,942,941,946,947,941,945,941,947,946,948,942,946,948,946,947,944,942,949,948,949,942,949,950,944,944,950,951,950,952,951,952,950,953,953,950,954,955,949,948,949,955,950,955,954,950,947,955,948,955,956,954,955,947,957,956,955,957,957,947,958,958,947,945,945,931,958,957,959,956,957,958,959,960,956,959,956,960,961,959,962,960,962,959,958,960,963,961,960,962,963,963,964,961,963,965,964,966,964,965,965,967,966,963,962,968,968,965,963,967,965,969,965,968,969,967,969,970,962,971,968,962,958,971,968,972,969,968,971,972,973,970,969,969,972,973,974,970,973,975,972,971,975,971,958,975,976,972,973,972,976,975,958,977,976,975,977,978,974,973,978,979,974,976,980,973,980,978,973,977,980,976,979,978,981,981,978,980,982,979,981,979,982,983,982,984,983,982,985,984,986,981,980,981,986,982,977,986,980,985,982,987,982,986,987,987,988,985,987,986,988,988,989,985,977,990,986,989,988,991,988,986,992,992,991,988,992,986,990,993,989,991,991,992,993,994,989,993,995,994,993,996,995,993,993,992,996,997,995,996,992,998,996,998,997,996,990,998,992,998,999,997,999,998,990,977,999,990,933,997,999,999,977,958,999,931,933,999,958,931
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *2024 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,1,1,1,0,1,1,0,0,1,1,0,1,0,0,0,0,1,1,0,1,1,1,0,1,1,1,0,0,1,1,0,1,0,0,0,0,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,0,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,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,1,1,0,0,1,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: *1312 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
- 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,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: 2267733775008, "Geometry::", "Mesh" {
- Vertices: *621 {
- a: -200,0,62.5,200,0,62.5,-200,600,62.5,200,600,62.5,-200,600,-62.5,200,600,-62.5,-200,0,-62.5,200,0,-62.5,-100,0,62.5,-100,0,-62.5,-100,600,-62.5,-100,600,62.5,100,0,62.5,100,0,-62.5,100,600,-62.5,100,600,62.5,200,400,-62.5,200,400,62.5,100,399.999938964844,62.5,0,458.178955078125,62.5,-100,399.999938964844,62.5,-200,400,62.5,-200,400,-62.5,200,143.139282226563,-62.5,200,143.139282226563,62.5,100,143.139282226563,62.5,-100,143.139282226563,62.5,-200,143.139282226563,62.5,-200,143.139282226563,-62.5,-100,399.999938964844,-62.5,0,458.178955078125,-62.5,100,399.999938964844,-62.5,-100,143.139282226563,-62.5,100,143.139282226563,-62.5,-53.4765625,439.876708984375,62.5,-79.140625,143.139282226563,62.5,-53.4765625,439.876708984375,-62.5,-79.140625,143.139282226563,-62.5,53.4765625,439.876708984375,62.5,79.140625,143.139282226563,62.5,53.4765625,439.876708984375,-62.5,79.140625,143.139282226563,-62.5,-77.875,387.156372070313,62.5,-77.875,387.156372070313,-62.5,77.875,387.156372070313,62.5,77.875,387.156372070313,-62.5,111.109375,119.403816223145,66.5751953125,-116.69921875,120.603866577148,65.361328125,-116.693359375,121.594718933105,36.84765625,110.830078125,121.978759765625,35.92529296875,-116.681640625,150.432189941406,34.94873046875,110.845703125,150.434509277344,34.94873046875,110.845703125,151.844024658203,35.93310546875,-116.681640625,151.84619140625,35.98876953125,-116.681640625,151.841903686523,71.14599609375,110.845703125,151.84619140625,71.037109375,110.845703125,150.432189941406,72.07763671875,-116.681640625,150.434524536133,72.07763671875,-116.685546875,127.88843536377,72.00244140625,-117.765625,128.276184082031,-72.078125,109.77734375,120.598411560059,-65.3779296875,-117.765625,120.580749511719,-65.2421875,109.765625,127.888496398926,-72.0029296875,-117.765625,150.434051513672,-72.078125,109.76171875,150.432189941406,-72.078125,109.765625,151.841842651367,-71.14697265625,-117.76171875,151.84619140625,-71.037109375,-117.76171875,151.844024658203,-35.93310546875,109.765625,151.84619140625,-35.98828125,
- 109.76171875,150.432189941406,-34.94921875,-117.765625,150.434204101563,-34.94873046875,-117.73046875,121.526893615723,-35.8935546875,109.744140625,122.399589538574,-36.66162109375,-78.30859375,314.348510742188,17.57568359375,-76.3359375,314.408752441406,67.3115234375,-111.8203125,313.971221923828,68.2216796875,-113.12109375,313.897521972656,16.7890625,-1.880859375,483.084228515625,67.58642578125,-3.404296875,448.116394042969,67.34423828125,-2.10546875,483.955291748047,17.341796875,-3.28125,447.758361816406,16.998046875,-2.50390625,451.989776611328,18.8935546875,-3.775390625,449.725280761719,67.587890625,-3.6015625,486.629150390625,67.99951171875,-4.1875,487.285919189453,16.5966796875,104.177734375,321.836578369141,67.9462890625,68.529296875,322.435028076172,66.45166015625,106,320.706726074219,17.509765625,68.982421875,321.848937988281,16.21240234375,71.388671875,314.3486328125,-17.57568359375,104.900390625,313.971466064453,-68.2216796875,106.201171875,313.897430419922,-16.7890625,69.416015625,314.40869140625,-67.3115234375,-5.0390625,483.084167480469,-67.58642578125,-3.515625,448.116180419922,-67.34423828125,-4.814453125,483.955352783203,-17.341796875,-3.638671875,447.758361816406,-16.99853515625,-4.416015625,451.990356445313,-18.8935546875,-3.318359375,486.62890625,-68,-2.73046875,487.286254882813,-16.59716796875,-3.14453125,449.725250244141,-67.58740234375,-111.09765625,321.836700439453,-67.9462890625,-75.44921875,322.43505859375,-66.451171875,-112.919921875,320.706481933594,-17.51025390625,-75.90234375,321.849029541016,-16.21240234375,104.625,323.145812988281,67.51025390625,105.708984375,323.592132568359,16.4912109375,72.072265625,321.783325195313,17.29736328125,70.150390625,322.182464599609,66.68212890625,70.791015625,322.109527587891,20.42041015625,68.744140625,314.850738525391,-16.5673828125,105.841796875,315.730712890625,-16.6494140625,69.142578125,314.897216796875,-65.54052734375,104.3046875,315.548400878906,-67.89111328125,72.900390625,314.43603515625,-67.51123046875,-76.064453125,314.897186279297,65.54150390625,
- -111.224609375,315.548492431641,67.89111328125,-79.8203125,314.43603515625,67.51171875,-112.763671875,315.729644775391,16.64892578125,-75.6640625,314.850738525391,16.5673828125,103.919921875,148.325393676758,14.88037109375,72.80859375,148.266082763672,16.21923828125,68.57421875,148.165237426758,64.9169921875,70.998046875,147.833419799805,69.0224609375,70.646484375,320.704071044922,68.1142578125,101.71875,319.791748046875,68.45849609375,103.90234375,154.898452758789,66.4814453125,-78.994140625,321.783203125,-17.29736328125,-77.7109375,322.109497070313,-20.4208984375,-77.0703125,322.182464599609,-66.68212890625,-111.544921875,323.145812988281,-67.51123046875,-112.62890625,323.591918945313,-16.49169921875,-110.83984375,148.324081420898,-14.88134765625,-79.7265625,148.266128540039,-16.21923828125,-75.494140625,148.165435791016,-64.91748046875,-77.91796875,147.833374023438,-69.02197265625,-77.56640625,320.704437255859,-68.1142578125,-108.638671875,319.792022705078,-68.45849609375,-110.822265625,154.898208618164,-66.48095703125,-110.607421875,388.356323242188,16.29931640625,-68.271484375,414.752502441406,17.11962890625,-97.39453125,429.431854248047,16.9091796875,-59.38671875,471.062622070313,15.90771484375,-76.986328125,381.859527587891,19.4521484375,-33.4296875,447.005950927734,16.3896484375,-55.71484375,433.090637207031,17.587890625,-55.24609375,435.503601074219,66.53466796875,-76.4375,383.296264648438,67.51708984375,-75.87109375,398.673736572266,67.97265625,-32.05078125,446.668914794922,67.6376953125,-79.38671875,464.302185058594,68.27587890625,-109.609375,382.553253173828,68.03125,-70.841796875,468.401519775391,65.24853515625,-111.00390625,385.805572509766,66.58740234375,97.890625,416.279296875,16.36962890625,59.705078125,418.298156738281,17.28662109375,58.30859375,467.610626220703,16.384765625,67.958984375,394.246398925781,18.7333984375,58.52734375,424.398498535156,63.5556640625,53.8984375,431.356353759766,67.82275390625,58.01171875,464.133422851563,68.1787109375,98.259765625,405.334594726563,68.53466796875,100.162109375,410.160491943359,65.31298828125,
- 58.1796875,467.187622070313,64.04345703125,103.6875,388.356903076172,-16.29931640625,61.353515625,414.750152587891,-17.11962890625,90.474609375,429.432159423828,-16.9091796875,52.466796875,471.062774658203,-15.90869140625,70.06640625,381.860504150391,-19.4521484375,26.509765625,447.006072998047,-16.3896484375,48.794921875,433.090667724609,-17.587890625,48.326171875,435.503662109375,-66.5341796875,69.517578125,383.296112060547,-67.51708984375,68.951171875,398.672729492188,-67.97216796875,25.130859375,446.668823242188,-67.63720703125,72.466796875,464.302795410156,-68.27587890625,102.689453125,382.553131103516,-68.03076171875,63.921875,468.401672363281,-65.24853515625,104.083984375,385.806488037109,-66.5869140625,-104.810546875,416.279815673828,-16.37060546875,-66.625,418.298492431641,-17.2861328125,-65.2265625,467.611785888672,-16.38525390625,-74.87890625,394.246520996094,-18.7333984375,-65.4453125,424.402099609375,-63.5595703125,-60.8046875,431.362487792969,-67.82177734375,-64.931640625,464.13330078125,-68.1787109375,-105.1796875,405.333831787109,-68.53515625,-107.08203125,410.158172607422,-65.31396484375,-65.099609375,467.187622070313,-64.04296875,72.884765625,314.813262939453,-16.4453125,102.39453125,148.236907958984,-15.93994140625,66.322265625,155.881408691406,-17.60400390625,69.49609375,148.952896118164,-20.74755859375,69.0390625,149.355697631836,-66.42578125,71.384765625,149.843276977539,-68.3017578125,101.615234375,148.200729370117,-68.59619140625,105.38671875,315.278991699219,-65.88916015625,103.0078125,152.35791015625,-66.58740234375,-109.314453125,148.23698425293,15.93896484375,-79.8046875,314.813079833984,16.4453125,-73.240234375,155.881118774414,17.6044921875,-76.416015625,148.953033447266,20.74755859375,-75.958984375,149.35578918457,66.42578125,-78.3046875,149.842987060547,68.3017578125,-108.53515625,148.200531005859,68.595703125,-112.306640625,315.279022216797,65.8896484375,-109.927734375,152.357025146484,66.58740234375
- }
- PolygonVertexIndex: *1000 {
- a: 12,1,24,-26,0,8,26,-28,12,25,39,35,26,-9,18,17,3,-16,19,38,18,15,11,20,-35,21,20,11,-3,18,25,24,-18,39,25,18,-45,26,20,21,-28,6,0,27,-29,22,21,2,-5,28,27,21,-23,24,1,7,-24,3,17,16,-6,17,24,23,-17,11,10,4,-3,11,15,14,-11,5,14,15,-4,8,0,6,-10,12,8,9,-14,7,1,12,-14,9,6,28,-33,23,7,13,-34,13,9,32,37,41,-34,29,22,4,-11,30,36,29,10,14,31,-41,5,16,31,-15,29,32,28,-23,29,43,37,-33,33,31,16,-24,20,42,-35,42,20,26,-36,31,45,-41,33,41,45,-32,34,42,43,-37,19,30,40,-39,41,39,44,-46,41,37,35,-40,36,30,19,-35,43,42,35,-38,45,44,38,-41,44,18,-39,43,29,-37,46,47,-49,46,48,-50,49,48,-51,49,50,-52,51,50,-53,53,52,-51,54,52,-54,52,54,-56,55,54,-57,57,56,-55,56,57,-59,56,58,-47,46,58,-48,46,55,-57,49,55,-47,55,49,-53,52,49,-52,59,60,-62,60,59,-63,62,59,-64,62,63,-65,65,64,-64,63,66,-66,66,67,-66,67,68,-66,67,69,-69,69,67,-71,69,70,-72,69,71,-73,72,71,-61,60,71,-62,48,53,-51,53,48,-55,54,48,-59,54,58,-58,58,48,-48,67,71,-71,66,71,-68,71,66,-60,71,59,-62,59,66,-64,72,68,-70,68,72,-66,65,72,-63,65,62,-65,62,72,-61,73,74,-76,75,76,-74,77,78,-80,79,78,-81,81,82,-84,83,84,-82,85,86,-88,87,86,-89,89,90,-92,90,89,-93,93,94,-96,96,95,-95,97,98,-100,98,97,-101,101,102,-104,104,103,-103,105,106,-108,107,108,-106,107,109,-109,110,111,-113,113,112,-112,112,113,-115,115,116,-118,116,115,-119,118,115,-120,120,107,-107,121,107,-121,121,109,-108,109,121,-123,109,122,-109,123,108,-123,108,123,-125,124,105,-109,125,124,-124,124,125,-106,123,126,-126,125,126,-106,123,120,-127,106,105,-127,126,120,-107,127,128,-130,130,127,-130,127,130,-132,132,127,-132,133,127,-133,133,128,-128,128,133,-135,128,134,-130,129,134,-136,129,135,-137,136,130,-130,137,136,-136,136,137,-131,137,135,-139,137,138,-131,132,138,-136,131,130,-139,131,138,-133,139,73,-77,140,73,-140,141,140,-140,141,142,-141,140,143,-74,74,73,-144,142,144,-141,144,142,-80,80,144,-80,144,145,-141,144,80,-146,140,145,-144,146,145,-81,147,143,-146,145,146,-148,147,74,-144,80,78,-147,147,148,-75,146,148,-148,78,149,-147,146,149,-149,78,150,-150,148,149,-151,150,78,-78,151,74,-149,151,148,
- -151,74,151,-76,77,152,-151,152,77,-80,152,79,-143,152,142,-142,150,153,-152,153,150,-153,153,75,-152,153,152,-142,76,75,-154,153,141,-140,153,139,-77,87,88,-155,88,155,-155,154,155,-157,157,155,-89,86,157,-89,155,81,-157,81,84,-157,158,155,-158,158,81,-156,158,157,-87,158,82,-82,86,159,-159,159,82,-159,159,86,-86,160,82,-160,82,160,-84,161,159,-86,160,159,-162,162,161,-86,162,160,-162,85,87,-163,162,87,-155,160,162,-164,163,162,-155,163,83,-161,163,154,-157,156,83,-164,83,156,-85,164,89,-92,165,89,-165,166,165,-165,167,165,-167,165,168,-90,168,92,-90,167,169,-166,95,169,-168,169,95,-97,169,170,-166,169,96,-171,165,170,-169,96,171,-171,170,172,-169,172,170,-172,92,168,-173,171,96,-95,172,173,-93,172,171,-174,171,94,-175,171,174,-174,94,175,-175,175,173,-175,94,93,-176,176,92,-174,176,173,-176,90,92,-177,93,177,-176,95,177,-94,167,177,-96,166,177,-168,176,175,-179,177,178,-176,178,90,-177,166,178,-178,91,90,-179,164,178,-167,91,178,-165,103,104,-180,104,180,-180,179,180,-182,180,104,-183,104,102,-183,180,97,-182,97,99,-182,182,183,-181,180,183,-98,183,182,-103,100,97,-184,183,102,-185,100,183,-185,101,184,-103,185,100,-185,100,185,-99,184,101,-187,185,184,-187,187,186,-102,187,185,-187,101,103,-188,179,187,-104,185,187,-189,179,188,-188,188,98,-186,181,188,-180,181,98,-189,98,181,-100,111,189,-191,189,111,-111,191,190,-190,189,110,-192,190,191,-193,191,110,-193,110,193,-193,193,110,-113,193,112,-195,114,194,-113,195,193,-195,114,195,-195,195,114,-114,195,113,-197,113,111,-197,190,196,-112,197,190,-196,196,190,-198,195,196,-198,198,118,-200,118,119,-200,200,198,-200,200,199,-120,198,200,-202,119,201,-201,202,201,-120,202,119,-116,115,203,-203,203,115,-118,204,202,-204,117,204,-204,204,117,-117,116,205,-205,116,118,-206,205,118,-199,205,206,-205,206,205,-199,206,198,-205
- }
- Edges: *508 {
- a: 4,27,66,79,47,41,54,48,1,13,83,71,21,0,88,73,16,17,28,59,15,52,14,19,24,25,39,63,37,31,3,5,44,2,9,6,7,55,45,43,58,56,65,70,80,84,106,103,108,113,115,126,92,95,91,99,96,22,111,23,11,131,107,100,146,18,10,169,112,101,138,147,150,152,157,148,145,36,141,154,60,35,130,122,137,29,136,123,118,178,179,180,182,183,185,186,188,189,191,192,193,195,196,198,200,201,203,204,205,207,209,210,212,213,215,217,220,224,229,230,231,233,234,236,237,239,240,241,243,244,245,247,248,250,251,253,254,257,258,260,261,263,264,266,267,269,271,275,278,279,286,289,293,294,301,305,308,309,316,317,318,319,320,322,323,324,326,327,328,329,330,331,332,334,335,336,338,339,340,341,342,344,345,346,347,348,349,351,352,353,354,356,357,358,359,360,361,363,364,365,366,367,368,370,371,373,374,375,376,378,380,381,382,383,384,386,387,389,390,391,393,394,396,397,401,402,404,406,408,410,411,412,415,417,419,421,422,425,427,428,432,436,437,438,439,441,443,444,445,447,448,450,451,455,456,458,461,462,464,465,466,469,471,473,476,477,479,481,483,486,490,492,493,495,496,498,499,500,502,503,507,508,509,512,513,514,517,518,521,524,526,528,529,531,533,535,539,541,542,544,547,548,551,553,554,558,561,562,564,567,569,571,572,576,579,582,583,584,588,589,594,597,600,605,606,607,608,611,612,613,615,616,619,620,623,625,627,628,633,634,637,638,640,645,646,648,650,652,654,657,658,660,661,665,669,671,672,675,676,681,682,688,690,691,693,694,696,697,699,700,701,703,706,707,709,711,714,715,716,719,722,724,725,727,728,732,735,738,739,740,743,746,747,749,751,752,754,758,760,762,765,768,769,770,772,775,778,782,783,784,787,790,795,796,803,804,805,806,809,810,812,813,815,817,818,821,823,824,827,831,834,836,837,840,841,844,846,848,851,852,855,856,858,859,863,865,869,870,871,874,877,880,886,887,888,891,892,894,896,899,900,902,904,905,909,911,912,913,916,918,919,924,926,927,929,931,934,935,936,939,943,944,945,947,949,951,954,956,957,958,961,963,966,967,968,972,973,975,976,981,982,983,986,990,991,992,996,998
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *3000 {
- a: 0,0,1,0,0,1,-2.28881846808804e-009,0,0.999999940395355,-1.2369585355998e-009,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,-1.2369585355998e-009,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,-1.34816358077217e-009,0,0.999999940395355,-2.0039523374038e-009,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,-1.34816358077217e-009,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,-1.34816358077217e-009,0,0.999999940395355,-1.2369585355998e-009,0,1,-2.28881846808804e-009,0,0.999999940395355,-2.0039523374038e-009,0,1,0,0,0.999999940395355,-1.2369585355998e-009,0,1,-1.34816358077217e-009,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,0.999999940395355,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,2.28881846808804e-009,0,-0.999999940395355,1.2369585355998e-009,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1.2369585355998e-009,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,1.34816358077217e-009,0,-0.999999940395355,2.0039523374038e-009,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,1.34816358077217e-009,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,1.34816358077217e-009,0,-0.999999940395355,1.2369585355998e-009,0,-1,2.28881846808804e-009,0,-0.999999940395355,2.0039523374038e-009,0,-1,1.34816358077217e-009,0,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,1.2369585355998e-009,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,0.999999940395355,0,0,1,0,0,0.999999940395355,0,0,1,0,0,0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,
- 0,0,-1,0,0,-0.999999940395355,0.673851847648621,-0.738866567611694,0,0.99628072977066,-0.0861657783389091,0,0.99628072977066,-0.0861657783389091,0,0.673851847648621,-0.738866567611694,0,0,-1,0,0,-1,0,-0.673851847648621,-0.738866567611694,0,-0.673851847648621,-0.738866567611694,0,-0.999986588954926,-0.00518655451014638,0,-0.999986588954926,-0.00518655451014638,0,-0.99628072977066,-0.0861657783389091,0,-0.99628072977066,-0.0861657783389091,0,0,1,0,0,1,0,0,1,0,0,1,0,0.673851847648621,-0.738866567611694,0,0,-1,0,0,-1,0,0.673851847648621,-0.738866567611694,0,0.99628072977066,-0.0861657783389091,0,0.99628072977066,-0.0861657783389091,0,0.999986588954926,-0.00518655451014638,0,0.999986588954926,-0.00518655451014638,0,-0.99628072977066,-0.0861657783389091,0,-0.99628072977066,-0.0861657783389091,0,-0.673851847648621,-0.738866567611694,0,-0.673851847648621,-0.738866567611694,0,0,0,1,-1.34816358077217e-009,0,0.999999940395355,0,0,0.999999940395355,0,0,-1,1.34816358077217e-009,0,-0.999999940395355,0,0,-0.999999940395355,0,-0.959114789962769,0.283017456531525,0,-0.96778416633606,0.25178125500679,0,-0.801882803440094,-0.597481369972229,0,-0.959114789962769,0.283017456531525,0,-0.801882803440094,-0.597481369972229,0,-0.615031838417053,-0.788502275943756,0,-0.615031838417053,-0.788502275943756,0,-0.801882803440094,-0.597481369972229,0,0.047191459685564,-0.998885869979858,0,-0.615031838417053,-0.788502275943756,0,0.047191459685564,-0.998885869979858,0,0.047191459685564,-0.998885869979858,0,0.047191459685564,-0.998885869979858,0,0.047191459685564,-0.998885869979858,0,0.999225914478302,-0.0393396019935608,0,0.999225914478302,-0.0393396019935608,0,0.999225914478302,-0.0393396019935608,0,0.047191459685564,-0.998885869979858,0,0.999225914478302,0.0393396019935608,0,0.999225914478302,-0.0393396019935608,0,0.999225914478302,-0.0393396019935608,0,0.999225914478302,-0.0393396019935608,0,0.999225914478302,0.0393396019935608,0,0.999225914478302,0.0393396019935608,0,0.999225914478302,0.0393396019935608,0,0.999225914478302,0.0393396019935608,0,0.047191459685564,0.998885869979858,
- 0,0.047191459685564,0.998885869979858,0,0.047191459685564,0.998885869979858,0,0.999225914478302,0.0393396019935608,0,0.047191459685564,0.998885869979858,0,0.047191459685564,0.998885869979858,0,-0.236956179141998,0.971520364284515,0,0.047191459685564,0.998885869979858,0,-0.236956179141998,0.971520364284515,0,-0.788502275943756,0.615031838417053,0,-0.788502275943756,0.615031838417053,0,-0.236956179141998,0.971520364284515,0,-0.965842843055725,0.259128570556641,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.22026090323925,-0.975441098213196,0,-0.965842843055725,-0.259128570556641,0,-0.969677090644836,-0.244390159845352,0,-0.965842843055725,-0.259128570556641,0,-0.22026090323925,-0.975441098213196,0,-0.236956179141998,-0.971520364284515,0,-0.236956179141998,-0.971520364284515,0,-0.22026090323925,-0.975441098213196,0,0.047191459685564,-0.998885869979858,0,-0.236956179141998,-0.971520364284515,0,0.047191459685564,-0.998885869979858,0,0.047191459685564,-0.998885869979858,0,0.999225914478302,-0.0393396019935608,0,0.047191459685564,-0.998885869979858,0,0.047191459685564,-0.998885869979858,0,0.047191459685564,-0.998885869979858,0,0.999225914478302,-0.0393396019935608,0,0.999225914478302,-0.0393396019935608,0,0.999225914478302,-0.0393396019935608,0,0.999225914478302,0.0393396019935608,0,0.999225914478302,-0.0393396019935608,0,0.999225914478302,0.0393396019935608,0,0.999225914478302,0.0393396019935608,0,0.999225914478302,-0.0393396019935608,0,0.999225914478302,0.0393396019935608,0,0.047191459685564,0.998885869979858,0,0.999225914478302,0.0393396019935608,0,0.047191459685564,0.998885869979858,0,0.999225914478302,0.0393396019935608,0,0.047191459685564,0.998885869979858,0,0.047191459685564,0.998885869979858,0,0.047191459685564,0.998885869979858,0,-0.703145503997803,0.711045980453491,0,0.047191459685564,0.998885869979858,0,-0.703145503997803,0.711045980453491,0,-0.71491938829422,0.69920688867569,0,-0.71491938829422,0.69920688867569,0,-0.703145503997803,0.711045980453491,0,-0.96778416633606,-0.25178125500679,
- 0,-0.96778416633606,-0.25178125500679,0,-0.703145503997803,0.711045980453491,0,-0.969677090644836,-0.244390159845352,-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,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.0471390038728714,-0.997775554656982,-0.0471390038728714,0.055019274353981,-0.998206853866577,0.0235796887427568,-0.0314716808497906,-0.999225914478302,0.0236037615686655,-0.0314716808497906,-0.999225914478302,0.0236037615686655,-0.0393347330391407,-0.999102234840393,-0.0157338920980692,0.0471390038728714,-0.997775554656982,-0.0471390038728714,0.999721229076386,-5.243686086563e-018,0.023615462705493,0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,0.999597251415253,0.0236125327646732,-0.0157416891306639,0.999597251415253,0.0236125327646732,-0.0157416891306639,0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,0.999473392963409,-0.0314794778823853,-0.00786986947059631,-0.998731434345245,-0.031456109136343,-0.039320133626461,-0.999102234840393,-0.0393347330391407,0.0157338920980692,-0.99839198589325,0.0471681281924248,0.0314454175531864,-0.99839198589325,0.0471681281924248,0.0314454175531864,-0.998206853866577,0.055019274353981,-0.0235796887427568,-0.998731434345245,-0.031456109136343,-0.039320133626461,0,-0.999721229076386,0.023615462705493,-0.0314794778823853,-0.999473392963409,0.00786986947059631,0.0236125327646732,-0.999597251415253,-0.0157416891306639,0.0236125327646732,-0.999597251415253,-0.0157416891306639,-0.0314794778823853,-0.999473392963409,0.00786986947059631,-0.023614726960659,-0.999690115451813,-0.00787157565355301,-0.0471390038728714,-0.997775554656982,0.0471390038728714,0.0314716808497906,-0.999225914478302,-0.0236037615686655,0.0393347330391407,-0.999102234840393,0.0157338920980692,0.0314716808497906,-0.999225914478302,-0.0236037615686655,-0.0471390038728714,-0.997775554656982,0.0471390038728714,
- -0.055019274353981,-0.998206853866577,-0.0235796887427568,-0.999721229076386,5.243686086563e-018,-0.023615462705493,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.999597251415253,0.0236125327646732,0.0157416891306639,-0.999473392963409,-0.0314794778823853,0.00786986947059631,-0.999597251415253,0.0236125327646732,0.0157416891306639,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,0.998731434345245,-0.031456109136343,0.039320133626461,0.99839198589325,0.0471681281924248,-0.0314454175531864,0.998206853866577,0.055019274353981,0.0235796887427568,0.99839198589325,0.0471681281924248,-0.0314454175531864,0.998731434345245,-0.031456109136343,0.039320133626461,0.999102234840393,-0.0393347330391407,-0.0157338920980692,0,-0.999721229076386,-0.023615462705493,0.0314794778823853,-0.999473392963409,-0.00786986947059631,-0.0236125327646732,-0.999597251415253,0.0157416891306639,0.023614726960659,-0.999690115451813,0.00787157565355301,-0.0236125327646732,-0.999597251415253,0.0157416891306639,0.0314794778823853,-0.999473392963409,-0.00786986947059631,0.0314716808497906,0.999225914478302,0.0236037615686655,0.0393286496400833,0.99894767999649,-0.0235971882939339,-0.0392958410084248,0.998114347457886,-0.0471550077199936,-0.0392958410084248,0.998114347457886,-0.0471550077199936,-0.055019274353981,0.998206853866577,0.0235796887427568,0.0314716808497906,0.999225914478302,0.0236037615686655,-0.0392958410084248,0.998114347457886,-0.0471550077199936,-0.07065399736166,0.997006475925446,-0.0314017795026302,-0.055019274353981,0.998206853866577,0.0235796887427568,-0.023614726960659,0.999690115451813,0.00787157565355301,0.0236125327646732,0.999597251415253,0.0157416891306639,-0.0314804539084435,0.999504387378693,2.21934556816337e-016,0,0.999721229076386,-0.023615462705493,-0.0314804539084435,0.999504387378693,2.21934556816337e-016,0.0236125327646732,0.999597251415253,0.0157416891306639,-0.0314804539084435,0.999504387378693,2.21934556816337e-016,0,0.999721229076386,-0.023615462705493,-0.00786767713725567,0.999194979667664,-0.0393383838236332,
- 0.0314804539084435,0.999504387378693,2.21934556816337e-016,0,0.999721229076386,0.023615462705493,0.00786767713725567,0.999194979667664,0.0393383838236332,0,0.999721229076386,0.023615462705493,0.0314804539084435,0.999504387378693,2.21934556816337e-016,-0.0236125327646732,0.999597251415253,-0.0157416891306639,-0.0236125327646732,0.999597251415253,-0.0157416891306639,0.0314804539084435,0.999504387378693,2.21934556816337e-016,0.023614726960659,0.999690115451813,-0.00787157565355301,0.0392958410084248,-0.0471550077199936,-0.998114347457886,-0.0628500655293465,0.0235687755048275,-0.997744739055634,0.0471856184303761,0.0157285407185555,-0.998762309551239,-0.0392619036138058,-0.0628190487623215,-0.997252345085144,-0.0628500655293465,0.0235687755048275,-0.997744739055634,0.0392958410084248,-0.0471550077199936,-0.998114347457886,-0.0392619036138058,-0.0628190487623215,-0.997252345085144,-0.996914327144623,0.0627977550029755,-0.0470983162522316,-0.0628500655293465,0.0235687755048275,-0.997744739055634,-0.996914327144623,0.0627977550029755,-0.0470983162522316,-0.0392619036138058,-0.0628190487623215,-0.997252345085144,-0.996515274047852,-0.0627726167440414,0.0549260377883911,-0.996914327144623,0.0627977550029755,-0.0470983162522316,-0.996515274047852,-0.0627726167440414,0.0549260377883911,-0.997467637062073,0.0706866830587387,0.00785407610237598,-0.0628597587347031,-0.0157149396836758,0.997898638248444,-0.997467637062073,0.0706866830587387,0.00785407610237598,-0.996515274047852,-0.0627726167440414,0.0549260377883911,-0.997467637062073,0.0706866830587387,0.00785407610237598,-0.0628597587347031,-0.0157149396836758,0.997898638248444,-0.0550073832273483,0.0314327888190746,0.99799108505249,-0.0550073832273483,0.0314327888190746,0.99799108505249,0.993605554103851,0.102514855563641,0.0473145507276058,-0.997467637062073,0.0706866830587387,0.00785407610237598,0.0393347330391407,0.0157338920980692,0.999102234840393,-0.0550073832273483,0.0314327888190746,0.99799108505249,-0.0628597587347031,-0.0157149396836758,0.997898638248444,-0.0550073832273483,0.0314327888190746,0.99799108505249,
- 0.0393347330391407,0.0157338920980692,0.999102234840393,0.993605554103851,0.102514855563641,0.0473145507276058,-0.0628597587347031,-0.0157149396836758,0.997898638248444,0.997467637062073,-0.0706866830587387,0.00785407610237598,0.0393347330391407,0.0157338920980692,0.999102234840393,0.0393347330391407,0.0157338920980692,0.999102234840393,0.997467637062073,-0.0706866830587387,0.00785407610237598,0.993605554103851,0.102514855563641,0.0473145507276058,-0.0628597587347031,-0.0157149396836758,0.997898638248444,0.987440645694733,-0.126392394304276,-0.0947943031787872,0.997467637062073,-0.0706866830587387,0.00785407610237598,0.998114347457886,0.0471550077199936,-0.0392958410084248,0.993605554103851,0.102514855563641,0.0473145507276058,0.997467637062073,-0.0706866830587387,0.00785407610237598,0.997467637062073,-0.0706866830587387,0.00785407610237598,0.987440645694733,-0.126392394304276,-0.0947943031787872,0.998114347457886,0.0471550077199936,-0.0392958410084248,0.0392958410084248,0.998114347457886,0.0471550077199936,0.07065399736166,0.997006475925446,0.0314017795026302,0.055019274353981,0.998206853866577,-0.0235796887427568,-0.0314716808497906,0.999225914478302,-0.0236037615686655,0.0392958410084248,0.998114347457886,0.0471550077199936,0.055019274353981,0.998206853866577,-0.0235796887427568,0.0392958410084248,0.998114347457886,0.0471550077199936,-0.0314716808497906,0.999225914478302,-0.0236037615686655,-0.0393286496400833,0.99894767999649,0.0235971882939339,-0.0392958410084248,-0.0471550077199936,0.998114347457886,0.0628500655293465,0.0235687755048275,0.997744739055634,-0.0471856184303761,0.0157285407185555,0.998762309551239,0.0392619036138058,-0.0628190487623215,0.997252345085144,0.0628500655293465,0.0235687755048275,0.997744739055634,-0.0392958410084248,-0.0471550077199936,0.998114347457886,0.0392619036138058,-0.0628190487623215,0.997252345085144,0.996914327144623,0.0627977550029755,0.0470983162522316,0.0628500655293465,0.0235687755048275,0.997744739055634,0.996914327144623,0.0627977550029755,0.0470983162522316,0.0392619036138058,-0.0628190487623215,0.997252345085144,
- 0.996515274047852,-0.0627726167440414,-0.0549260377883911,0.996914327144623,0.0627977550029755,0.0470983162522316,0.996515274047852,-0.0627726167440414,-0.0549260377883911,0.997467637062073,0.0706866830587387,-0.00785407610237598,0.997467637062073,0.0706866830587387,-0.00785407610237598,0.996515274047852,-0.0627726167440414,-0.0549260377883911,0.0628597587347031,-0.0157149396836758,-0.997898638248444,0.997467637062073,0.0706866830587387,-0.00785407610237598,0.0628597587347031,-0.0157149396836758,-0.997898638248444,0.0550073832273483,0.0314327888190746,-0.99799108505249,0.0550073832273483,0.0314327888190746,-0.99799108505249,-0.993605554103851,0.102514855563641,-0.0473145507276058,0.997467637062073,0.0706866830587387,-0.00785407610237598,-0.0393347330391407,0.0157338920980692,-0.999102234840393,0.0550073832273483,0.0314327888190746,-0.99799108505249,0.0628597587347031,-0.0157149396836758,-0.997898638248444,0.0550073832273483,0.0314327888190746,-0.99799108505249,-0.0393347330391407,0.0157338920980692,-0.999102234840393,-0.993605554103851,0.102514855563641,-0.0473145507276058,-0.0393347330391407,0.0157338920980692,-0.999102234840393,0.0628597587347031,-0.0157149396836758,-0.997898638248444,-0.997467637062073,-0.0706866830587387,-0.00785407610237598,-0.0393347330391407,0.0157338920980692,-0.999102234840393,-0.997467637062073,-0.0706866830587387,-0.00785407610237598,-0.993605554103851,0.102514855563641,-0.0473145507276058,-0.987440645694733,-0.126392394304276,0.0947943031787872,-0.997467637062073,-0.0706866830587387,-0.00785407610237598,0.0628597587347031,-0.0157149396836758,-0.997898638248444,-0.998114347457886,0.0471550077199936,0.0392958410084248,-0.993605554103851,0.102514855563641,-0.0473145507276058,-0.997467637062073,-0.0706866830587387,-0.00785407610237598,-0.998114347457886,0.0471550077199936,0.0392958410084248,-0.997467637062073,-0.0706866830587387,-0.00785407610237598,-0.987440645694733,-0.126392394304276,0.0947943031787872,-0.031476553529501,0.0157382767647505,-0.999380588531494,0.424395084381104,-0.0550141781568527,-0.903804302215576,
- -0.05489731580019,-0.0705822631716728,-0.995994210243225,0.047191459685564,2.21797218364874e-016,-0.998885869979858,0.424395084381104,-0.0550141781568527,-0.903804302215576,-0.031476553529501,0.0157382767647505,-0.999380588531494,-0.0392800718545914,0.054992102086544,-0.99771386384964,0.047191459685564,2.21797218364874e-016,-0.998885869979858,-0.031476553529501,0.0157382767647505,-0.999380588531494,-0.0392800718545914,0.054992102086544,-0.99771386384964,-0.055019274353981,0.0235796887427568,-0.998206853866577,0.047191459685564,2.21797218364874e-016,-0.998885869979858,0.047191459685564,2.21797218364874e-016,-0.998885869979858,0.991910755634308,-0.110212303698063,-0.0629784613847733,0.424395084381104,-0.0550141781568527,-0.903804302215576,0.800301671028137,-0.0627687573432922,0.596303224563599,0.424395084381104,-0.0550141781568527,-0.903804302215576,0.991910755634308,-0.110212303698063,-0.0629784613847733,-0.055019274353981,0.0235796887427568,-0.998206853866577,0.0235971882939339,-0.0393286496400833,-0.99894767999649,0.047191459685564,2.21797218364874e-016,-0.998885869979858,0.0235971882939339,-0.0393286496400833,-0.99894767999649,-0.055019274353981,0.0235796887427568,-0.998206853866577,0.110376611351967,0.0315361730754375,-0.993389487266541,0.213333785533905,-0.92444634437561,-0.316050052642822,0.0235971882939339,-0.0393286496400833,-0.99894767999649,0.110376611351967,0.0315361730754375,-0.993389487266541,0.0235971882939339,-0.0393286496400833,-0.99894767999649,0.714566648006439,-0.69886189699173,-0.0314095206558704,0.047191459685564,2.21797218364874e-016,-0.998885869979858,0.0235971882939339,-0.0393286496400833,-0.99894767999649,0.213333785533905,-0.92444634437561,-0.316050052642822,0.714566648006439,-0.69886189699173,-0.0314095206558704,0.047191459685564,2.21797218364874e-016,-0.998885869979858,0.714566648006439,-0.69886189699173,-0.0314095206558704,0.991910755634308,-0.110212303698063,-0.0629784613847733,0.550993263721466,-0.83436131477356,-0.0157426651567221,0.714566648006439,-0.69886189699173,-0.0314095206558704,
- 0.213333785533905,-0.92444634437561,-0.316050052642822,0.988150000572205,-0.150198802351952,0.0316208004951477,0.991910755634308,-0.110212303698063,-0.0629784613847733,0.714566648006439,-0.69886189699173,-0.0314095206558704,0.714566648006439,-0.69886189699173,-0.0314095206558704,0.550993263721466,-0.83436131477356,-0.0157426651567221,0.988150000572205,-0.150198802351952,0.0316208004951477,0.988150000572205,-0.150198802351952,0.0316208004951477,0.800301671028137,-0.0627687573432922,0.596303224563599,0.991910755634308,-0.110212303698063,-0.0629784613847733,0.213333785533905,-0.92444634437561,-0.316050052642822,0.221664443612099,-0.522494733333588,0.823325037956238,0.550993263721466,-0.83436131477356,-0.0157426651567221,0.988150000572205,-0.150198802351952,0.0316208004951477,0,-2.22044604925031e-016,1,0.800301671028137,-0.0627687573432922,0.596303224563599,0.550993263721466,-0.83436131477356,-0.0157426651567221,0,-2.22044604925031e-016,1,0.988150000572205,-0.150198802351952,0.0316208004951477,0.221664443612099,-0.522494733333588,0.823325037956238,0.0392958410084248,-0.0471550077199936,0.998114347457886,0.550993263721466,-0.83436131477356,-0.0157426651567221,0.550993263721466,-0.83436131477356,-0.0157426651567221,0.0392958410084248,-0.0471550077199936,0.998114347457886,0,-2.22044604925031e-016,1,0.221664443612099,-0.522494733333588,0.823325037956238,-0.0789583027362823,0.0631666406989098,0.994874656200409,0.0392958410084248,-0.0471550077199936,0.998114347457886,0,-2.22044604925031e-016,1,0.0392958410084248,-0.0471550077199936,0.998114347457886,-0.0789583027362823,0.0631666406989098,0.994874656200409,-0.0789583027362823,0.0631666406989098,0.994874656200409,0.221664443612099,-0.522494733333588,0.823325037956238,-0.0628597587347031,0.887894093990326,0.455733239650726,-0.0550328753888607,0.00786183960735798,0.998453617095947,0.800301671028137,-0.0627687573432922,0.596303224563599,0,-2.22044604925031e-016,1,-0.0550328753888607,0.00786183960735798,0.998453617095947,0,-2.22044604925031e-016,1,-0.0789583027362823,0.0631666406989098,0.994874656200409,
- 0.800301671028137,-0.0627687573432922,0.596303224563599,-0.0550328753888607,0.00786183960735798,0.998453617095947,-0.856332004070282,-0.117843858897686,0.502800464630127,-0.0628597587347031,0.887894093990326,0.455733239650726,-0.551044464111328,0.834438860416412,0.00787206459790468,-0.0789583027362823,0.0631666406989098,0.994874656200409,-0.551044464111328,0.834438860416412,0.00787206459790468,-0.0628597587347031,0.887894093990326,0.455733239650726,-0.125832229852676,0.990928769111633,-0.0471870861947536,-0.551044464111328,0.834438860416412,0.00787206459790468,-0.125832229852676,0.990928769111633,-0.0471870861947536,-0.494776338338852,0.863895177841187,-0.0942431092262268,-0.551044464111328,0.834438860416412,0.00787206459790468,-0.494776338338852,0.863895177841187,-0.0942431092262268,-0.880145370960236,0.471506476402283,-0.0550090856850147,-0.0789583027362823,0.0631666406989098,0.994874656200409,-0.986948072910309,0.157911688089371,0.0315823368728161,-0.0550328753888607,0.00786183960735798,0.998453617095947,-0.986948072910309,0.157911688089371,0.0315823368728161,-0.0789583027362823,0.0631666406989098,0.994874656200409,-0.551044464111328,0.834438860416412,0.00787206459790468,-0.986948072910309,0.157911688089371,0.0315823368728161,-0.856332004070282,-0.117843858897686,0.502800464630127,-0.0550328753888607,0.00786183960735798,0.998453617095947,-0.986948072910309,0.157911688089371,0.0315823368728161,-0.551044464111328,0.834438860416412,0.00787206459790468,-0.880145370960236,0.471506476402283,-0.0550090856850147,-0.998114347457886,-0.0471550077199936,-0.0392958410084248,-0.856332004070282,-0.117843858897686,0.502800464630127,-0.986948072910309,0.157911688089371,0.0315823368728161,-0.986948072910309,0.157911688089371,0.0315823368728161,-0.880145370960236,0.471506476402283,-0.0550090856850147,-0.979418873786926,0.173767864704132,-0.102681003510952,-0.986948072910309,0.157911688089371,0.0315823368728161,-0.979418873786926,0.173767864704132,-0.102681003510952,-0.998114347457886,-0.0471550077199936,-0.0392958410084248,0.0157597605139017,-0.118198208510876,-0.992864966392517,
- -0.471506476402283,-0.0550090856850147,-0.880145370960236,0.0790544673800468,0.0395272336900234,-0.996086359024048,-0.471506476402283,-0.0550090856850147,-0.880145370960236,-0.329972982406616,-0.361398994922638,-0.872071444988251,0.0790544673800468,0.0395272336900234,-0.996086359024048,0.0790544673800468,0.0395272336900234,-0.996086359024048,-0.329972982406616,-0.361398994922638,-0.872071444988251,0.0393396019935608,2.21872723411188e-016,-0.999225914478302,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.329972982406616,-0.361398994922638,-0.872071444988251,-0.471506476402283,-0.0550090856850147,-0.880145370960236,-0.934894561767578,-0.0314250290393829,0.3535315990448,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.471506476402283,-0.0550090856850147,-0.880145370960236,-0.329972982406616,-0.361398994922638,-0.872071444988251,-0.306735008955002,-0.770769953727722,-0.558414995670319,0.0393396019935608,2.21872723411188e-016,-0.999225914478302,-0.306735008955002,-0.770769953727722,-0.558414995670319,-0.0314017832279205,0.0706540048122406,-0.997006595134735,0.0393396019935608,2.21872723411188e-016,-0.999225914478302,-0.834051311016083,-0.550788581371307,0.031473632901907,-0.329972982406616,-0.361398994922638,-0.872071444988251,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.834051311016083,-0.550788581371307,0.031473632901907,-0.306735008955002,-0.770769953727722,-0.558414995670319,-0.329972982406616,-0.361398994922638,-0.872071444988251,-0.834051311016083,-0.550788581371307,0.031473632901907,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.934894561767578,-0.0314250290393829,0.3535315990448,-0.834051311016083,-0.550788581371307,0.031473632901907,-0.212302476167679,-0.558276832103729,0.802031576633453,-0.306735008955002,-0.770769953727722,-0.558414995670319,-0.934894561767578,-0.0314250290393829,0.3535315990448,-0.00786986947059631,0.0314794778823853,0.999473392963409,-0.834051311016083,-0.550788581371307,0.031473632901907,-0.00786986947059631,0.0314794778823853,0.999473392963409,
- -0.212302476167679,-0.558276832103729,0.802031576633453,-0.834051311016083,-0.550788581371307,0.031473632901907,-0.00786986947059631,0.0314794778823853,0.999473392963409,-0.934894561767578,-0.0314250290393829,0.3535315990448,0.0392619036138058,-0.0628190487623215,0.997252345085144,0.0471389964222908,0.0471389964222908,0.997775435447693,-0.212302476167679,-0.558276832103729,0.802031576633453,-0.00786986947059631,0.0314794778823853,0.999473392963409,-0.212302476167679,-0.558276832103729,0.802031576633453,0.0471389964222908,0.0471389964222908,0.997775435447693,0.0314775295555592,0.897109568119049,0.440685391426086,0.031476553529501,0.0157382767647505,0.999380588531494,-0.00786986947059631,0.0314794778823853,0.999473392963409,0.0392619036138058,-0.0628190487623215,0.997252345085144,0.0471389964222908,0.0471389964222908,0.997775435447693,-0.00786986947059631,0.0314794778823853,0.999473392963409,0.031476553529501,0.0157382767647505,0.999380588531494,0.965723752975464,0.259096622467041,0.0157028250396252,0.031476553529501,0.0157382767647505,0.999380588531494,0.0392619036138058,-0.0628190487623215,0.997252345085144,0.965723752975464,0.259096622467041,0.0157028250396252,0.0471389964222908,0.0471389964222908,0.997775435447693,0.031476553529501,0.0157382767647505,0.999380588531494,0.0392619036138058,-0.0628190487623215,0.997252345085144,0.99839198589325,-0.0314454175531864,-0.0471681281924248,0.965723752975464,0.259096622467041,0.0157028250396252,0.965723752975464,0.259096622467041,0.0157028250396252,0.99839198589325,-0.0314454175531864,-0.0471681281924248,0.948239743709564,0.30563098192215,-0.0862036123871803,0.0471389964222908,0.0471389964222908,0.997775435447693,0.965723752975464,0.259096622467041,0.0157028250396252,0.565249443054199,0.82432222366333,0.0314027518033981,0.565249443054199,0.82432222366333,0.0314027518033981,0.965723752975464,0.259096622467041,0.0157028250396252,0.948239743709564,0.30563098192215,-0.0862036123871803,0.565249443054199,0.82432222366333,0.0314027518033981,0.0314775295555592,0.897109568119049,0.440685391426086,
- 0.0471389964222908,0.0471389964222908,0.997775435447693,0.565249443054199,0.82432222366333,0.0314027518033981,0.948239743709564,0.30563098192215,-0.0862036123871803,0.557227075099945,0.824068307876587,-0.102027498185635,0.557227075099945,0.824068307876587,-0.102027498185635,0.0314775295555592,0.897109568119049,0.440685391426086,0.565249443054199,0.82432222366333,0.0314027518033981,0.0314775295555592,0.897109568119049,0.440685391426086,0.557227075099945,0.824068307876587,-0.102027498185635,0.109940111637115,0.989461004734039,-0.0942343771457672,0.031476553529501,0.0157382767647505,0.999380588531494,-0.424395084381104,-0.0550141781568527,0.903804302215576,0.05489731580019,-0.0705822631716728,0.995994210243225,-0.047191459685564,-2.21797218364874e-016,0.998885869979858,-0.424395084381104,-0.0550141781568527,0.903804302215576,0.031476553529501,0.0157382767647505,0.999380588531494,0.0392800718545914,0.054992102086544,0.99771386384964,-0.047191459685564,-2.21797218364874e-016,0.998885869979858,0.031476553529501,0.0157382767647505,0.999380588531494,0.055019274353981,0.0235796887427568,0.998206853866577,-0.047191459685564,-2.21797218364874e-016,0.998885869979858,0.0392800718545914,0.054992102086544,0.99771386384964,-0.047191459685564,-2.21797218364874e-016,0.998885869979858,-0.991910755634308,-0.110212303698063,0.0629784613847733,-0.424395084381104,-0.0550141781568527,0.903804302215576,-0.991910755634308,-0.110212303698063,0.0629784613847733,-0.800301671028137,-0.0627687573432922,-0.596303224563599,-0.424395084381104,-0.0550141781568527,0.903804302215576,0.055019274353981,0.0235796887427568,0.998206853866577,-0.0235971882939339,-0.0393286496400833,0.99894767999649,-0.047191459685564,-2.21797218364874e-016,0.998885869979858,-0.110376611351967,0.0315361730754375,0.993389487266541,-0.0235971882939339,-0.0393286496400833,0.99894767999649,0.055019274353981,0.0235796887427568,0.998206853866577,-0.0235971882939339,-0.0393286496400833,0.99894767999649,-0.110376611351967,0.0315361730754375,0.993389487266541,-0.213333785533905,-0.92444634437561,0.316050052642822,
- -0.0235971882939339,-0.0393286496400833,0.99894767999649,-0.714566648006439,-0.69886189699173,0.0314095206558704,-0.047191459685564,-2.21797218364874e-016,0.998885869979858,-0.0235971882939339,-0.0393286496400833,0.99894767999649,-0.213333785533905,-0.92444634437561,0.316050052642822,-0.714566648006439,-0.69886189699173,0.0314095206558704,-0.047191459685564,-2.21797218364874e-016,0.998885869979858,-0.714566648006439,-0.69886189699173,0.0314095206558704,-0.991910755634308,-0.110212303698063,0.0629784613847733,-0.213333785533905,-0.92444634437561,0.316050052642822,-0.550993263721466,-0.83436131477356,0.0157426651567221,-0.714566648006439,-0.69886189699173,0.0314095206558704,-0.714566648006439,-0.69886189699173,0.0314095206558704,-0.988150000572205,-0.150198802351952,-0.0316208004951477,-0.991910755634308,-0.110212303698063,0.0629784613847733,-0.988150000572205,-0.150198802351952,-0.0316208004951477,-0.714566648006439,-0.69886189699173,0.0314095206558704,-0.550993263721466,-0.83436131477356,0.0157426651567221,-0.800301671028137,-0.0627687573432922,-0.596303224563599,-0.991910755634308,-0.110212303698063,0.0629784613847733,-0.988150000572205,-0.150198802351952,-0.0316208004951477,-0.550993263721466,-0.83436131477356,0.0157426651567221,-0.213333785533905,-0.92444634437561,0.316050052642822,-0.221664443612099,-0.522494733333588,-0.823325037956238,-0.988150000572205,-0.150198802351952,-0.0316208004951477,0,2.22044604925031e-016,-1,-0.800301671028137,-0.0627687573432922,-0.596303224563599,-0.988150000572205,-0.150198802351952,-0.0316208004951477,-0.550993263721466,-0.83436131477356,0.0157426651567221,0,2.22044604925031e-016,-1,-0.550993263721466,-0.83436131477356,0.0157426651567221,-0.221664443612099,-0.522494733333588,-0.823325037956238,-0.0392958410084248,-0.0471550077199936,-0.998114347457886,-0.550993263721466,-0.83436131477356,0.0157426651567221,-0.0392958410084248,-0.0471550077199936,-0.998114347457886,0,2.22044604925031e-016,-1,-0.221664443612099,-0.522494733333588,-0.823325037956238,0.0789583027362823,0.0631666406989098,-0.994874656200409,
- -0.0392958410084248,-0.0471550077199936,-0.998114347457886,0.0789583027362823,0.0631666406989098,-0.994874656200409,0,2.22044604925031e-016,-1,-0.0392958410084248,-0.0471550077199936,-0.998114347457886,-0.221664443612099,-0.522494733333588,-0.823325037956238,0.0628597587347031,0.887894093990326,-0.455733239650726,0.0789583027362823,0.0631666406989098,-0.994874656200409,0.0550328753888607,0.00786183960735798,-0.998453617095947,-0.800301671028137,-0.0627687573432922,-0.596303224563599,0,2.22044604925031e-016,-1,0.0550328753888607,0.00786183960735798,-0.998453617095947,0,2.22044604925031e-016,-1,0.0789583027362823,0.0631666406989098,-0.994874656200409,0.856332004070282,-0.117843858897686,-0.502800464630127,-0.800301671028137,-0.0627687573432922,-0.596303224563599,0.0550328753888607,0.00786183960735798,-0.998453617095947,0.0628597587347031,0.887894093990326,-0.455733239650726,0.551044464111328,0.834438860416412,-0.00787206459790468,0.0789583027362823,0.0631666406989098,-0.994874656200409,0.125832229852676,0.990928769111633,0.0471870861947536,0.551044464111328,0.834438860416412,-0.00787206459790468,0.0628597587347031,0.887894093990326,-0.455733239650726,0.494776338338852,0.863895177841187,0.0942431092262268,0.551044464111328,0.834438860416412,-0.00787206459790468,0.125832229852676,0.990928769111633,0.0471870861947536,0.880145370960236,0.471506476402283,0.0550090856850147,0.551044464111328,0.834438860416412,-0.00787206459790468,0.494776338338852,0.863895177841187,0.0942431092262268,0.0550328753888607,0.00786183960735798,-0.998453617095947,0.0789583027362823,0.0631666406989098,-0.994874656200409,0.986948072910309,0.157911688089371,-0.0315823368728161,0.551044464111328,0.834438860416412,-0.00787206459790468,0.986948072910309,0.157911688089371,-0.0315823368728161,0.0789583027362823,0.0631666406989098,-0.994874656200409,0.986948072910309,0.157911688089371,-0.0315823368728161,0.856332004070282,-0.117843858897686,-0.502800464630127,0.0550328753888607,0.00786183960735798,-0.998453617095947,0.880145370960236,0.471506476402283,0.0550090856850147,
- 0.986948072910309,0.157911688089371,-0.0315823368728161,0.551044464111328,0.834438860416412,-0.00787206459790468,0.998114347457886,-0.0471550077199936,0.0392958410084248,0.856332004070282,-0.117843858897686,-0.502800464630127,0.986948072910309,0.157911688089371,-0.0315823368728161,0.979418873786926,0.173767864704132,0.102681003510952,0.986948072910309,0.157911688089371,-0.0315823368728161,0.880145370960236,0.471506476402283,0.0550090856850147,0.998114347457886,-0.0471550077199936,0.0392958410084248,0.986948072910309,0.157911688089371,-0.0315823368728161,0.979418873786926,0.173767864704132,0.102681003510952,-0.0157597605139017,-0.118198208510876,0.992864966392517,0.471506476402283,-0.0550090856850147,0.880145370960236,-0.0790544673800468,0.0395272336900234,0.996086359024048,0.471506476402283,-0.0550090856850147,0.880145370960236,0.329972982406616,-0.361398994922638,0.872071444988251,-0.0790544673800468,0.0395272336900234,0.996086359024048,-0.0790544673800468,0.0395272336900234,0.996086359024048,0.329972982406616,-0.361398994922638,0.872071444988251,-0.0393396019935608,-2.21872723411188e-016,0.999225914478302,0.329972982406616,-0.361398994922638,0.872071444988251,0.471506476402283,-0.0550090856850147,0.880145370960236,0.981789767742157,-0.188503637909889,0.0235629547387362,0.471506476402283,-0.0550090856850147,0.880145370960236,0.934894561767578,-0.0314250290393829,-0.3535315990448,0.981789767742157,-0.188503637909889,0.0235629547387362,0.329972982406616,-0.361398994922638,0.872071444988251,0.306735008955002,-0.770769953727722,0.558414995670319,-0.0393396019935608,-2.21872723411188e-016,0.999225914478302,0.306735008955002,-0.770769953727722,0.558414995670319,0.0314017832279205,0.0706540048122406,0.997006595134735,-0.0393396019935608,-2.21872723411188e-016,0.999225914478302,0.981789767742157,-0.188503637909889,0.0235629547387362,0.834051311016083,-0.550788581371307,-0.031473632901907,0.329972982406616,-0.361398994922638,0.872071444988251,0.329972982406616,-0.361398994922638,0.872071444988251,0.834051311016083,-0.550788581371307,-0.031473632901907,
- 0.306735008955002,-0.770769953727722,0.558414995670319,0.834051311016083,-0.550788581371307,-0.031473632901907,0.981789767742157,-0.188503637909889,0.0235629547387362,0.934894561767578,-0.0314250290393829,-0.3535315990448,0.212302476167679,-0.558276832103729,-0.802031576633453,0.306735008955002,-0.770769953727722,0.558414995670319,0.834051311016083,-0.550788581371307,-0.031473632901907,0.834051311016083,-0.550788581371307,-0.031473632901907,0.934894561767578,-0.0314250290393829,-0.3535315990448,0.00786986947059631,0.0314794778823853,-0.999473392963409,0.212302476167679,-0.558276832103729,-0.802031576633453,0.834051311016083,-0.550788581371307,-0.031473632901907,0.00786986947059631,0.0314794778823853,-0.999473392963409,-0.0392619036138058,-0.0628190487623215,-0.997252345085144,0.00786986947059631,0.0314794778823853,-0.999473392963409,0.934894561767578,-0.0314250290393829,-0.3535315990448,-0.0471389964222908,0.0471389964222908,-0.997775435447693,0.212302476167679,-0.558276832103729,-0.802031576633453,0.00786986947059631,0.0314794778823853,-0.999473392963409,0.212302476167679,-0.558276832103729,-0.802031576633453,-0.0471389964222908,0.0471389964222908,-0.997775435447693,-0.0314775295555592,0.897109568119049,-0.440685391426086,0.00786986947059631,0.0314794778823853,-0.999473392963409,-0.0392619036138058,-0.0628190487623215,-0.997252345085144,-0.031476553529501,0.0157382767647505,-0.999380588531494,-0.0471389964222908,0.0471389964222908,-0.997775435447693,0.00786986947059631,0.0314794778823853,-0.999473392963409,-0.031476553529501,0.0157382767647505,-0.999380588531494,-0.965723752975464,0.259096622467041,-0.0157028250396252,-0.031476553529501,0.0157382767647505,-0.999380588531494,-0.0392619036138058,-0.0628190487623215,-0.997252345085144,-0.965723752975464,0.259096622467041,-0.0157028250396252,-0.0471389964222908,0.0471389964222908,-0.997775435447693,-0.031476553529501,0.0157382767647505,-0.999380588531494,-0.0392619036138058,-0.0628190487623215,-0.997252345085144,-0.99839198589325,-0.0314454175531864,0.0471681281924248,
- -0.965723752975464,0.259096622467041,-0.0157028250396252,-0.948239743709564,0.30563098192215,0.0862036123871803,-0.965723752975464,0.259096622467041,-0.0157028250396252,-0.99839198589325,-0.0314454175531864,0.0471681281924248,-0.0471389964222908,0.0471389964222908,-0.997775435447693,-0.965723752975464,0.259096622467041,-0.0157028250396252,-0.565249443054199,0.82432222366333,-0.0314027518033981,-0.948239743709564,0.30563098192215,0.0862036123871803,-0.565249443054199,0.82432222366333,-0.0314027518033981,-0.965723752975464,0.259096622467041,-0.0157028250396252,-0.565249443054199,0.82432222366333,-0.0314027518033981,-0.0314775295555592,0.897109568119049,-0.440685391426086,-0.0471389964222908,0.0471389964222908,-0.997775435447693,-0.557227075099945,0.824068307876587,0.102027498185635,-0.565249443054199,0.82432222366333,-0.0314027518033981,-0.948239743709564,0.30563098192215,0.0862036123871803,-0.557227075099945,0.824068307876587,0.102027498185635,-0.0314775295555592,0.897109568119049,-0.440685391426086,-0.565249443054199,0.82432222366333,-0.0314027518033981,-0.0314775295555592,0.897109568119049,-0.440685391426086,-0.557227075099945,0.824068307876587,0.102027498185635,-0.109940111637115,0.989461004734039,0.0942343771457672,0.0158108938485384,0.0869599208235741,0.996086359024048,-0.0628364831209183,0.0314182415604591,0.997529208660126,0.0549260377883911,-0.0627726167440414,0.996515274047852,-0.0628364831209183,0.0314182415604591,0.997529208660126,0.0158108938485384,0.0869599208235741,0.996086359024048,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.0550277717411518,-0.0157222207635641,0.998361051082611,0.0549260377883911,-0.0627726167440414,0.996515274047852,-0.0628364831209183,0.0314182415604591,0.997529208660126,-0.0628364831209183,0.0314182415604591,0.997529208660126,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.0550277717411518,-0.0157222207635641,0.998361051082611,0.0549260377883911,-0.0627726167440414,0.996515274047852,-0.0550277717411518,-0.0157222207635641,0.998361051082611,-0.993204295635223,-0.102473460137844,0.0551780164241791,
- -0.0550277717411518,-0.0157222207635641,0.998361051082611,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.993204295635223,-0.102473460137844,0.0551780164241791,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.99839198589325,-0.0471681281924248,-0.0314454175531864,-0.993204295635223,-0.102473460137844,0.0551780164241791,-0.99839198589325,-0.0471681281924248,-0.0314454175531864,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.998762309551239,0.0157285407185555,-0.0471856184303761,-0.99839198589325,-0.0471681281924248,-0.0314454175531864,-0.998762309551239,0.0157285407185555,-0.0471856184303761,-0.0157455932348967,-0.00787279661744833,-0.999845147132874,-0.0706692412495613,0.0235564168542624,-0.99722158908844,-0.0157455932348967,-0.00787279661744833,-0.999845147132874,-0.998762309551239,0.0157285407185555,-0.0471856184303761,0.0549734458327293,-0.0471200942993164,-0.99737536907196,-0.99839198589325,-0.0471681281924248,-0.0314454175531864,-0.0157455932348967,-0.00787279661744833,-0.999845147132874,-0.0706692412495613,0.0235564168542624,-0.99722158908844,0.0549734458327293,-0.0471200942993164,-0.99737536907196,-0.0157455932348967,-0.00787279661744833,-0.999845147132874,0.0549734458327293,-0.0471200942993164,-0.99737536907196,-0.0706692412495613,0.0235564168542624,-0.99722158908844,0.05489731580019,0.0705822631716728,-0.995994210243225,0.0549734458327293,-0.0471200942993164,-0.99737536907196,0.05489731580019,0.0705822631716728,-0.995994210243225,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.05489731580019,0.0705822631716728,-0.995994210243225,0.996270060539246,-1.91604758738496e-017,0.0862911120057106,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.996883630752563,0.00784947723150253,0.0784947723150253,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.996270060539246,-1.91604758738496e-017,0.0862911120057106,0.999752104282379,0.0157441273331642,-0.0157441273331642,0.996883630752563,0.00784947723150253,0.0784947723150253,0.0549734458327293,-0.0471200942993164,-0.99737536907196,
- 0.999380588531494,-0.0157382767647505,-0.031476553529501,0.996883630752563,0.00784947723150253,0.0784947723150253,0.999752104282379,0.0157441273331642,-0.0157441273331642,0.0549734458327293,-0.0471200942993164,-0.99737536907196,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.999752104282379,0.0157441273331642,-0.0157441273331642,-0.0549260377883911,-0.0627726167440414,-0.996515274047852,-0.0158108938485384,0.0869599208235741,-0.996086359024048,0.0628364831209183,0.0314182415604591,-0.997529208660126,-0.0158108938485384,0.0869599208235741,-0.996086359024048,0.999009490013123,0.0314648635685444,-0.0314648635685444,0.0628364831209183,0.0314182415604591,-0.997529208660126,0.0550277717411518,-0.0157222207635641,-0.998361051082611,-0.0549260377883911,-0.0627726167440414,-0.996515274047852,0.0628364831209183,0.0314182415604591,-0.997529208660126,0.0550277717411518,-0.0157222207635641,-0.998361051082611,0.0628364831209183,0.0314182415604591,-0.997529208660126,0.999009490013123,0.0314648635685444,-0.0314648635685444,-0.0549260377883911,-0.0627726167440414,-0.996515274047852,0.0550277717411518,-0.0157222207635641,-0.998361051082611,0.993204295635223,-0.102473460137844,-0.0551780164241791,0.999009490013123,0.0314648635685444,-0.0314648635685444,0.993204295635223,-0.102473460137844,-0.0551780164241791,0.0550277717411518,-0.0157222207635641,-0.998361051082611,0.99839198589325,-0.0471681281924248,0.0314454175531864,0.993204295635223,-0.102473460137844,-0.0551780164241791,0.999009490013123,0.0314648635685444,-0.0314648635685444,0.99839198589325,-0.0471681281924248,0.0314454175531864,0.999009490013123,0.0314648635685444,-0.0314648635685444,0.998762309551239,0.0157285407185555,0.0471856184303761,0.998762309551239,0.0157285407185555,0.0471856184303761,0.0157455932348967,-0.00787279661744833,0.999845147132874,0.99839198589325,-0.0471681281924248,0.0314454175531864,0.0157455932348967,-0.00787279661744833,0.999845147132874,0.998762309551239,0.0157285407185555,0.0471856184303761,0.0706692412495613,0.0235564168542624,0.99722158908844,
- -0.0549734458327293,-0.0471200942993164,0.99737536907196,0.99839198589325,-0.0471681281924248,0.0314454175531864,0.0157455932348967,-0.00787279661744833,0.999845147132874,0.0706692412495613,0.0235564168542624,0.99722158908844,-0.0549734458327293,-0.0471200942993164,0.99737536907196,0.0157455932348967,-0.00787279661744833,0.999845147132874,-0.0549734458327293,-0.0471200942993164,0.99737536907196,0.0706692412495613,0.0235564168542624,0.99722158908844,-0.05489731580019,0.0705822631716728,0.995994210243225,-0.05489731580019,0.0705822631716728,0.995994210243225,-0.999380588531494,-0.0157382767647505,0.031476553529501,-0.0549734458327293,-0.0471200942993164,0.99737536907196,-0.05489731580019,0.0705822631716728,0.995994210243225,-0.996270060539246,1.91604758738496e-017,-0.0862911120057106,-0.999380588531494,-0.0157382767647505,0.031476553529501,-0.999380588531494,-0.0157382767647505,0.031476553529501,-0.996270060539246,1.91604758738496e-017,-0.0862911120057106,-0.996883630752563,0.00784947723150253,-0.0784947723150253,-0.999380588531494,-0.0157382767647505,0.031476553529501,-0.999752104282379,0.0157441273331642,0.0157441273331642,-0.0549734458327293,-0.0471200942993164,0.99737536907196,-0.999752104282379,0.0157441273331642,0.0157441273331642,-0.999380588531494,-0.0157382767647505,0.031476553529501,-0.996883630752563,0.00784947723150253,-0.0784947723150253,-0.999752104282379,0.0157441273331642,0.0157441273331642,-0.996883630752563,0.00784947723150253,-0.0784947723150253,-0.0549734458327293,-0.0471200942993164,0.99737536907196
- }
- NormalsW: *1000 {
- 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
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *3000 {
- a: -3.03828762149294e-009,1,0,-0.000221324720769189,1,0,-0.000442349090008065,0.999999940395355,-1.01245682844475e-012,0.000397678551962599,1,4.91911904005465e-013,1.78687431517943e-009,1,-0,0.00053205486619845,0.999999940395355,-0,0.00240423809736967,0.999997138977051,-0,0.00229658070020378,0.999997437000275,-0,-3.03828762149294e-009,1,0,0.000397678551962599,1,4.91911904005465e-013,0.000613783486187458,0.99999988079071,-0,0.00169773446395993,0.999998569488525,-0,0.00240423809736967,0.999997138977051,-0,0.00053205486619845,0.999999940395355,-0,0.00386012019589543,0.999992609024048,5.20407371709664e-012,-0.00661850813776255,0.999978184700012,-1.32631752802759e-011,0,1,-0,0.00199149455875158,0.999998033046722,-0,0.00216511311009526,0.999997735023499,-0,0.0105045801028609,0.999944865703583,-0,0.00386012019589543,0.999992609024048,5.20407371709664e-012,0.00199149455875158,0.999998033046722,-0,-0.0020764353685081,0.999997913837433,0,0.00271684653125703,0.999996364116669,-0,-0.00490895844995975,0.9999880194664,0,0.00958728883415461,0.999954044818878,-0,0.00271684653125703,0.999996364116669,-0,-0.0020764353685081,0.999997913837433,0,0.00470955995842814,0.999988913536072,-0,0.00386012019589543,0.999992609024048,5.20407371709664e-012,0.000397678551962599,1,4.91911904005465e-013,-0.000442349090008065,0.999999940395355,-1.01245682844475e-012,-0.00661850813776255,0.999978184700012,-1.32631752802759e-011,0.000613783486187458,0.99999988079071,-0,0.000397678551962599,1,4.91911904005465e-013,0.00386012019589543,0.999992609024048,5.20407371709664e-012,0.00850651878863573,0.999963819980621,-0,0.00240423809736967,0.999997138977051,-0,0.00271684653125703,0.999996364116669,-0,0.00958728883415461,0.999954044818878,-0,0.00229658070020378,0.999997437000275,-0,0,0.999998092651367,0.00194565334822983,0,0.999990820884705,0.00430045975372195,0,0.999978065490723,0.00662157265469432,0,0.999987304210663,0.0050520277582109,0,0.999978542327881,0.00654693227261305,0,0.999990582466125,0.0043619042262435,0,1,0,0,0.999994874000549,0.00321567780338228,
- 0,0.999987304210663,0.0050520277582109,0,0.999978065490723,0.00662157265469432,0,0.999990582466125,0.0043619042262435,0,0.999978542327881,0.00654693227261305,0,1,-7.04363992554136e-005,-0,0.999999761581421,0.000785608135629445,-0,0.999999046325684,0.00137366610579193,-0,0.999999821186066,0.000593203876633197,0,1,-0,0,0.999999940395355,-0.000399574171751738,0,0.999999940395355,-0.000330108945490792,0,1,-0.000290733936708421,0,0.999999940395355,-0.000399574171751738,0,1,-7.04363992554136e-005,-0,0.999999821186066,0.000593203876633197,0,0.999999940395355,-0.000330108945490792,0,-0,1,-0.000517282169312239,0,0.999999940395355,-0.00114304758608341,0,0.999999344348907,-0.000571523909457028,0,0.99999988079071,0,-0,1,-0.000308693590341136,0,0.999999940395355,-0.00044775806600228,0,0.999999940395355,-0.000517282169312239,0,0.999999940395355,-0.00041719333967194,0,0.999999940395355,-0.00044775806600228,0,0.999999940395355,-0.000308693590341136,0,0.999999940395355,-0.00020859666983597,0,1,0.000308753340505064,0,-0.999999940395355,0.000569928262848407,0,-0.99999988079071,0.00113985629286617,0,-0.999999344348907,0.000688705593347549,0,-0.999999821186066,-0,-0,-1,0.000308753340505064,0,-0.999999940395355,0.000688705593347549,0,-0.999999821186066,0.000335664837621152,0,-1,0.000416399358073249,0,-0.999999940395355,0.000208199679036625,0,-1,-0,-0,-1,0.000335664837621152,0,-1,5.42826819582842e-006,1,0,-1.67702296494099e-006,1,0,0.0015480334404856,0.999998867511749,3.54316771235264e-012,0.00250961934216321,0.999996900558472,3.1042952496757e-012,-0.00521818222478032,0.999986469745636,0,-0.000589515781030059,0.999999821186066,0,0.000590057927183807,0.999999821186066,0,-0.00045473815407604,0.999999940395355,0,0.000590057927183807,0.999999821186066,0,5.42826819582842e-006,1,0,0.00250961934216321,0.999996900558472,3.1042952496757e-012,0.000789384066592902,0.999999701976776,0,1.41210730362218e-005,1,0,-0.00045473815407604,0.999999940395355,0,0.0028999715577811,0.999995887279511,3.90963650342968e-012,0.00634783087298274,0.999979913234711,1.27207506681049e-011,
- 0,1,0,-0.000744981458410621,0.999999761581421,0,-0.0041144173592329,0.999991536140442,0,-0.00699202297255397,0.999975621700287,0,0.0028999715577811,0.999995887279511,3.90963650342968e-012,-0.000744981458410621,0.999999761581421,0,-0.000486709061078727,0.999999940395355,0,-0.00182740529999137,0.999998390674591,0,0.00768947554752231,0.999970436096191,0,0,1,0,-0.0076806703582406,0.999970495700836,0,-0.00182740529999137,0.999998390674591,0,-0.000486709061078727,0.999999940395355,0,0.0028999715577811,0.999995887279511,3.90963650342968e-012,0.00250961934216321,0.999996900558472,3.1042952496757e-012,0.0015480334404856,0.999998867511749,3.54316771235264e-012,0.00634783087298274,0.999979913234711,1.27207506681049e-011,0.0028999715577811,0.999995887279511,3.90963650342968e-012,0.00217659748159349,0.999997735023499,0,0.000789384066592902,0.999999701976776,0,0.00250961934216321,0.999996900558472,3.1042952496757e-012,-0.00045473815407604,0.999999940395355,0,-0.00182740529999137,0.999998390674591,0,-0.0076806703582406,0.999970495700836,0,-0.00521818222478032,0.999986469745636,0,0.00271684653125703,0.999996364116669,-0,0.0058255554176867,0.999983072280884,-0,-0.00490895844995975,0.9999880194664,0,0.0058255554176867,0.999983072280884,-0,0.00271684653125703,0.999996364116669,-0,0.00240423809736967,0.999997138977051,-0,0.00169773446395993,0.999998569488525,-0,-0.00182740529999137,0.999998390674591,0,-0.000881032086908817,0.999999701976776,0,0.00768947554752231,0.999970436096191,0,-0.00045473815407604,0.999999940395355,0,1.41210730362218e-005,1,0,-0.000881032086908817,0.999999701976776,0,-0.00182740529999137,0.999998390674591,0,0.736664474010468,0.671843528747559,-0.0771480426192284,0.0858310982584953,0.992410957813263,-0.0880551710724831,0.0858355984091759,0.992463052272797,-0.0874607935547829,0.736416757106781,0.67161762714386,-0.0813640281558037,-1,0,3.58691613655537e-006,-1,0,2.90369757749431e-006,-0.738866567611694,0.673851847648621,6.65939523969428e-007,-0.738866567611694,0.673851847648621,2.54794872489583e-006,-0.00518655451014638,0.999986588954926,-2.11878364098084e-006,
- -0.00518655451014638,0.999986588954926,-2.10019766200276e-006,-0.0861657857894897,0.99628084897995,-7.44264696095343e-007,-0.0861657857894897,0.99628084897995,-2.13287216865865e-006,-2.34533175103024e-007,0,-1,-1.75899870669127e-007,0,-1,-1.1726656623523e-007,0,-1,-1.75899870669127e-007,0,-1,0.736416757106781,0.67161762714386,-0.0813640281558037,0.996835827827454,0,-0.0794878005981445,0.996931731700897,0,-0.0782759785652161,0.736664474010468,0.671843528747559,-0.0771480426192284,0.0858355984091759,0.992463052272797,-0.0874607935547829,0.0858310982584953,0.992410957813263,-0.0880551710724831,0.00516118761152029,0.995095729827881,-0.0987823754549026,0.0051646358333528,0.995760560035706,-0.091838501393795,-0.0861657857894897,0.99628084897995,-2.13287216865865e-006,-0.0861657857894897,0.99628084897995,-7.44264696095343e-007,-0.738866567611694,0.673851847648621,2.54794872489583e-006,-0.738866567611694,0.673851847648621,6.65939523969428e-007,0.00850651878863573,0.999963819980621,-0,0.00386012019589543,0.999992609024048,5.20407371709664e-012,0.0105045801028609,0.999944865703583,-0,0.00217659748159349,0.999997735023499,0,0.0028999715577811,0.999995887279511,3.90963650342968e-012,-0.00699202297255397,0.999975621700287,0,-0.00151521258521825,-0.283017128705978,-0.959113717079163,-0.0013572396710515,-0.251781046390533,-0.967783391475677,0.00297026056796312,0.597478747367859,-0.801879286766052,-0.00517478864639997,-0.283013671636581,-0.959101915359497,-0.00586652057245374,0.597471117973328,-0.801868975162506,-0.00510930921882391,0.78849196434021,-0.615023791790009,-0.00747867207974195,0.788480222225189,-0.615014672279358,-0.00712587591260672,0.597466230392456,-0.80186253786087,-0.00588452676311135,0.998868584632874,0.0471906438469887,-8.03772218205268e-006,0.788502275943756,-0.615031838417053,-1.01823015938862e-005,0.998885869979858,0.047191459685564,-1.01823015938862e-005,0.998885869979858,0.047191459685564,-1.01823015938862e-005,0.998885869979858,0.047191459685564,-1.01823015938862e-005,0.998885869979858,0.047191459685564,-4.01014460749138e-007,0.0393396019935608,0.999225914478302,
- -0.000156166453962214,0.0393396019935608,0.999225914478302,-0.000156166453962214,0.0393396019935608,0.999225914478302,-0.000514228420797735,0.998885750770569,0.0471914522349834,-8.14825179986656e-005,-0.0393396019935608,0.999225914478302,-8.07301257736981e-005,0.0393396019935608,0.999225914478302,-8.07301257736981e-005,0.0393396019935608,0.999225914478302,-1.06700163087226e-005,0.0393396019935608,0.999225914478302,-9.18494606594322e-006,-0.0393396019935608,0.999225914478302,-9.18494606594322e-006,-0.0393396019935608,0.999225914478302,-0.000122830984764732,-0.0393396019935608,0.999225914478302,-0.000122830984764732,-0.0393396019935608,0.999225914478302,-0.000761533679906279,-0.998885571956635,0.0471914447844028,-1.02492904261453e-005,-0.998885869979858,0.047191459685564,-1.02492904261453e-005,-0.998885869979858,0.047191459685564,-4.03652705927016e-007,-0.0393396019935608,0.999225914478302,-1.02492904261453e-005,-0.998885869979858,0.047191459685564,-1.02492904261453e-005,-0.998885869979858,0.047191459685564,-9.96850030787755e-006,-0.971520364284515,-0.236956179141998,0.00163429300300777,-0.998884558677673,0.047191396355629,-0.00324118975549936,-0.971515297889709,-0.236954942345619,-0.0129553079605103,-0.614980220794678,-0.788436114788055,0.000404353020712733,-0.615031778812408,-0.788502216339111,-0.00435126852244139,-0.97151118516922,-0.236953929066658,0.00330526125617325,-0.259127140045166,-0.96583753824234,-0,0.0686386898159981,0.997641563415527,-0,0.0686386898159981,0.997641563415527,-0,0.0686386898159981,0.997641563415527,0,-0.0138914352282882,0.999903500080109,0,-0.0138914352282882,0.999903500080109,0,-0.0138914352282882,0.999903500080109,-0,0.0047005214728415,0.999988973140717,-0,0.0047005214728415,0.999988973140717,-0,0.0047005214728415,0.999988973140717,-0,0.00928045157343149,0.999956965446472,-0,0.00928045157343149,0.999956965446472,-0,0.00928045157343149,0.999956965446472,-0.00015311707102228,-0.975440979003906,0.220260873436928,0.000252675439696759,-0.259128570556641,0.965842843055725,0.000257304549450055,-0.24439013004303,0.969676971435547,
- 0.000741711352020502,-0.259128481149673,0.965842545032501,-0.000181191833689809,-0.975440979003906,0.220260873436928,-0.000165159348398447,-0.971520364284515,0.236956179141998,-0.000175829918589443,-0.971520364284515,0.236956179141998,-0.000170705956406891,-0.975440979003906,0.220260873436928,-8.46707480377518e-005,-0.998885869979858,-0.047191459685564,-7.94873903942062e-006,-0.971520364284515,0.236956179141998,-8.17263662611367e-006,-0.998885869979858,-0.047191459685564,-8.17263662611367e-006,-0.998885869979858,-0.047191459685564,-3.21866878039145e-007,-0.0393396019935608,-0.999225914478302,-8.17263662611367e-006,-0.998885869979858,-0.047191459685564,-8.17263662611367e-006,-0.998885869979858,-0.047191459685564,0.000760052644181997,-0.998885571956635,-0.0471914447844028,0.000118759249744471,-0.0393396019935608,-0.999225914478302,0.000118759249744471,-0.0393396019935608,-0.999225914478302,4.88564865008811e-006,-0.0393396019935608,-0.999225914478302,6.39182508166414e-006,0.0393396019935608,-0.999225914478302,4.88564865008811e-006,-0.0393396019935608,-0.999225914478302,8.28880365588702e-005,0.0393396019935608,-0.999225914478302,8.28880365588702e-005,0.0393396019935608,-0.999225914478302,8.36404724395834e-005,-0.0393396019935608,-0.999225914478302,0.000157953647430986,0.0393396019935608,-0.999225914478302,0.000514313636813313,0.998885750770569,-0.0471914522349834,0.000157953647430986,0.0393396019935608,-0.999225914478302,8.741249985178e-006,0.998885869979858,-0.047191459685564,-1.79612266038021e-006,0.0393396019935608,-0.999225914478302,8.741249985178e-006,0.998885869979858,-0.047191459685564,8.741249985178e-006,0.998885869979858,-0.047191459685564,8.741249985178e-006,0.998885869979858,-0.047191459685564,7.80342816142365e-006,0.711045980453491,0.703145503997803,-0.00849864352494478,0.998849809169769,-0.0471897535026073,-0.0037659436929971,0.71104097366333,0.703140556812286,-0.00363044813275337,0.699202299118042,0.714914679527283,-0.00177610898390412,0.699205815792084,0.714918255805969,-0.00183936604298651,0.711044788360596,0.703144311904907,
- 0.00234222505241632,-0.251780599355698,0.967781603336334,-0.000294680154183879,-0.25178125500679,0.96778416633606,-0.000310266390442848,0.711045920848846,0.703145444393158,-0.000296104524750263,-0.24439013004303,0.969676971435547,0,-0.00977137684822083,0.999952256679535,0,-0.00977137684822083,0.999952256679535,0,-0.00977137684822083,0.999952256679535,0,0.00633665034547448,0.999979913234711,0,0.00633665034547448,0.999979913234711,0,0.00633665034547448,0.999979913234711,0,0.0193179920315742,0.999813377857208,0,0.0193179920315742,0.999813377857208,0,0.0193179920315742,0.999813377857208,0,0.0032438593916595,0.99999475479126,0,0.0032438593916595,0.99999475479126,0,0.0032438593916595,0.99999475479126,0,-0.301850259304047,0.953355371952057,0,-0.301850259304047,0.953355371952057,0,-0.301850259304047,0.953355371952057,-0,-0.0171381440013647,-0.999853134155273,-0,-0.0171381440013647,-0.999853134155273,-0,-0.0171381440013647,-0.999853134155273,-0,-0.00985844153910875,-0.999951422214508,-0,-0.00985844153910875,-0.999951422214508,-0,-0.00985844153910875,-0.999951422214508,0,0.0191836282610893,-0.999816000461578,0,0.0191836282610893,-0.999816000461578,0,0.0191836282610893,-0.999816000461578,-0,-0.278997927904129,-0.960291683673859,-0,-0.278997927904129,-0.960291683673859,-0,-0.278997927904129,-0.960291683673859,0,0,-1,0,0,-1,0,0,-1,0,-0.0076858950778842,-0.999970436096191,0,-0.0076858950778842,-0.999970436096191,0,-0.0076858950778842,-0.999970436096191,0,0.00524306949228048,-0.999986231327057,0,0.00524306949228048,-0.999986231327057,0,0.00524306949228048,-0.999986231327057,0,0.0192880481481552,-0.999813973903656,0,0.0192880481481552,-0.999813973903656,0,0.0192880481481552,-0.999813973903656,0,0.00324071780778468,-0.99999475479126,0,0.00324071780778468,-0.99999475479126,0,0.00324071780778468,-0.99999475479126,0,-0.296676903963089,-0.954977929592133,0,-0.296676903963089,-0.954977929592133,0,-0.296676903963089,-0.954977929592133,-0.00849043484777212,-0.0475899837911129,0.998830854892731,-0.00937160849571228,0.0230981633067131,0.999689340591431,
- -0.00938146188855171,0.0239097345620394,0.999670147895813,-0.01108618080616,0.0239629838615656,0.999651372432709,-0.0105795646086335,-0.0153287798166275,0.999826550483704,-0.0101501066237688,-0.0476674884557724,0.998811662197113,-0.0236032381653786,-0.0321675501763821,0.999203741550446,-0.00104446068871766,-0.0331616252660751,0.999449491500854,0.016538180410862,-0.0339246802031994,0.999287545681,0.0165732335299253,-0.0354440398514271,0.999234259128571,-0.00109847856219858,-0.0348766930401325,0.99939101934433,0.00676250504329801,-0.0351304188370705,0.999359846115112,-0.0396935641765594,0.011336212977767,0.999147593975067,0.0153100686147809,0.0110529074445367,0.999821722507477,0.0319958552718163,0.0109603041782975,0.999427974224091,0.0320546627044678,0.0122160343453288,0.999411463737488,-0.0230843517929316,0.0096212774515152,0.999687254428864,-0.0396159626543522,0.00883696135133505,0.999175906181335,-0.0339709147810936,0.0236018300056458,0.99914413690567,-0.0342272408306599,0.0089471098035574,0.999374032020569,-0.0346556901931763,-0.0165550522506237,0.99926221370697,-0.034756351262331,-0.0165573749691248,0.999258756637573,-0.0339736565947533,0.00893919263035059,0.999382793903351,-0.0344672501087189,-0.00705495430156589,0.999380946159363,0.0140601973980665,-0.0478495657444,-0.998755574226379,0.0150042790919542,0.0240851119160652,-0.999597370624542,0.0144984740763903,-0.0151737555861473,-0.999779760837555,0.00544127309694886,0.0237863920629025,-0.999702334403992,0.00455818418413401,-0.0474058352410793,-0.998865306377411,0.00543551985174418,0.0233156811445951,-0.999713361263275,0.0236032381653786,-0.0321674086153507,-0.999203741550446,0.00104445603210479,-0.0331614799797535,-0.999449491500854,-0.016538180410862,-0.0339245349168777,-0.999287605285645,-0.0067629418335855,-0.0351166650652885,-0.999360322952271,-0.0165729150176048,-0.0354302674531937,-0.999234735965729,0.00109804549720138,-0.0348629467189312,-0.999391496181488,0.0396199598908424,0.00896538328379393,-0.99917471408844,-0.0320608839392662,0.0123489210382104,-0.9994096159935,
- 0.0230771638453007,0.00975120812654495,-0.999686181545258,-0.0319916866719723,0.0108712948858738,-0.999429047107697,0.0396908037364483,0.0112470788881183,-0.999148726463318,-0.0153135927394032,0.0109637957066298,-0.999822676181793,0.0329276584088802,0.0236026532948017,-0.999179005622864,0.0331846326589584,0.00891455262899399,-0.999409556388855,0.0336127765476704,-0.0165309831500053,-0.999298214912415,0.0352549180388451,-0.00703613180667162,-0.999353587627411,0.0355450436472893,-0.016575563699007,-0.999230682849884,0.0347611494362354,0.00896378047764301,-0.999355435371399,0.0119986571371555,-0.0239914581179619,0.999640166759491,0.00946393236517906,0.0232420116662979,0.999685049057007,0.00815228372812271,0.0475101284682751,0.998837471008301,0.00844939332455397,0.0475216805934906,0.998834490776062,0.0104075940325856,-0.0230408497154713,0.99968034029007,0.0104323020204902,-0.0239425674080849,0.999658942222595,0.0563122108578682,0.0493285357952118,0.997193872928619,0.0526728183031082,0.0351655520498753,0.99799245595932,0.0380172282457352,-0.0215040668845177,0.999045670032501,-0.0271189622581005,0.00723030883818865,-0.999606132507324,-0.0273332335054874,0.0163857005536556,-0.999492168426514,-0.0269280187785625,-0.000848126597702503,-0.999637067317963,-0.0314469188451767,-0.0236037820577621,-0.999226748943329,-0.031876266002655,-0.00100397691130638,-0.999491333961487,-0.0321975760161877,0.0164982974529266,-0.999345421791077,-0.0317024923861027,-0.00099850376136601,-0.999496936798096,-0.0310307387262583,-0.0236040875315666,-0.999239683151245,-0.030546773225069,-0.0395613946020603,-0.998750150203705,0.0363511443138123,-0.00114491803105921,0.999338507652283,0.0357150360941887,-0.0236003957688808,0.999083399772644,0.0352508127689362,-0.0395922847092152,0.998593926429749,0.0357758551836014,-0.0236003417521715,0.999081134796143,0.0362034626305103,-0.00114026654046029,0.999343872070313,0.0365282595157623,0.0165982227772474,0.999194741249084,0.0314383804798126,0.0164807457476854,0.99936980009079,0.0310290195047855,-0.000977291958406568,0.999518036842346,
- 0.0312203634530306,0.00713248923420906,0.999487161636353,0.999150395393372,-0.0105651058256626,0.0398357659578323,0.997961640357971,-0.00960699655115604,-0.0630906671285629,0.998837351799011,-0.010627955198288,0.0470217950642109,0.999207675457001,-0.00897782389074564,-0.0387733541429043,0.997969925403595,-0.00882951635867357,-0.0630728229880333,0.999163925647736,-0.00942004192620516,0.0397822037339211,0.999228298664093,-0.00360574922524393,-0.039112564176321,0.04643764346838,-0.011939849704504,-0.998849928379059,0.998008668422699,-0.00388346775434911,-0.0629584267735481,0.0466429553925991,-0.00869846437126398,-0.998873829841614,0.999170362949371,0.00834059063345194,-0.0398628078401089,-0.0544307008385658,-0.00957526732236147,-0.998471617698669,0.0467456765472889,-0.00707381684333086,-0.998881876468658,-0.0546486228704453,-0.00612920615822077,-0.998486876487732,-0.00833910051733255,-0.00656912010163069,-0.999943733215332,-0.998022317886353,0.000446274178102613,-0.0628605261445045,-0.00815726071596146,-0.0040014716796577,-0.99995881319046,-0.0547852702438831,-0.00396296754479408,-0.998490393161774,-0.00644397456198931,0.0201546009629965,-0.999776124954224,-0.997997879981995,0.00799723342061043,-0.0627400651574135,-0.998440146446228,0.00785014126449823,-0.0552793815732002,-0.991690218448639,-0.118134237825871,-0.0509393289685249,-0.104894578456879,0.683086156845093,0.722765862941742,-0.0546892769634724,-0.691715717315674,-0.720096230506897,-0.999218285083771,0.00458665331825614,0.0392670705914497,-0.998468995094299,0.00409388868138194,-0.0551626645028591,-0.99801766872406,0.00405230280011892,-0.0628034397959709,-0.888948380947113,0.453614383935928,-0.0632842183113098,-0.879863321781158,0.474449634552002,0.0271686427295208,-0.0770804882049561,0.309683054685593,0.947710394859314,-0.998022437095642,0.00120171264279634,-0.0628486350178719,-0.00864494405686855,-0.0108893914148211,0.999903380870819,-0.999225974082947,8.90183146111667e-005,0.0393382012844086,-0.999016284942627,0.0211081840097904,0.0389989353716373,-0.00789520796388388,-0.000302520376862958,0.999968767166138,
- -0.0476205348968506,0.000538080465048552,0.9988654255867,-0.345652371644974,0.938336610794067,-0.00699642207473516,-0.0840276330709457,-0.928240418434143,0.362365961074829,-0.0689321383833885,-0.933656275272369,0.351474553346634,0.039235282689333,0.00220953184179962,0.999227583408356,-0.0478324592113495,0.00259830802679062,0.998852014541626,-0.0077021662145853,0.00242136674933136,0.999967396259308,-0.00793442875146866,-0.000856033526360989,0.99996817111969,0.095318615436554,-0.00190716609358788,0.995445072650909,0.0394027419388294,-0.00133917818311602,0.99922251701355,0.00752028869464993,0.0468947142362595,-0.998871624469757,0.0117436284199357,0.0306468699127436,-0.99946129322052,0.0261787697672844,-0.0250494610518217,-0.999343454837799,-0.00834376271814108,-0.0238772854208946,-0.99968010187149,-0.0063652703538537,0.0474405474960804,-0.998853862285614,-0.00832395162433386,-0.0231560952961445,-0.999697208404541,-0.00915724784135818,0.047549195587635,-0.99882698059082,-0.0130087751895189,-0.0240229554474354,-0.999626815319061,-0.0104742115363479,0.0232020206749439,-0.999675989151001,-0.999158084392548,-0.00993280205875635,-0.0398061983287334,-0.997968375682831,-0.00897454097867012,0.0630761459469795,-0.998843491077423,-0.00999629311263561,-0.0470320321619511,-0.999214351177216,-0.00787618383765221,0.0388430096209049,-0.99798059463501,-0.00772862462326884,0.0630474910140038,-0.999175846576691,-0.00832242798060179,-0.0397308170795441,-0.99922901391983,-0.00259593012742698,0.0391761995851994,-0.0465872026979923,-0.00957945734262466,0.99886828660965,-0.998013734817505,-0.00281859911046922,0.062933586537838,-0.0466709285974503,-0.00825624726712704,0.99887627363205,-0.999169886112213,0.00838636606931686,0.0398656725883484,0.0544584766030312,-0.00913657154887915,0.99847424030304,-0.0468279980123043,-0.00577030563727021,0.998886287212372,0.0547308251261711,-0.00482651218771935,0.998489558696747,0.00824677292257547,-0.00526533462107182,0.999952137470245,0.00812193285673857,-0.00350273167714477,0.999960899353027,0.0548175051808357,-0.00345122325234115,0.998490452766418,
- 0.998022317886353,0.000769857608247548,0.0628554299473763,0.00738040544092655,0.00695967487990856,0.999948561191559,0.998021066188812,0.00261982390657067,0.0628262087702751,0.998476684093475,0.00256727496162057,0.0551150031387806,0.997597575187683,0.0404228009283543,0.056258849799633,0.10523684322834,0.689049780368805,-0.717032492160797,0.0541990250349045,-0.683976411819458,0.727488040924072,0.99922251701355,0.00328858941793442,-0.0392876826226711,0.998475730419159,0.00279583665542305,0.055122148245573,0.998020827770233,0.00275442167185247,0.0628240779042244,0.889816045761108,0.451910763978958,0.0632783845067024,0.880761444568634,0.472776800394058,-0.0272303409874439,0.0770443379878998,0.309268772602081,-0.947848677635193,0.999225974082947,8.89018410816789e-005,-0.0393382050096989,0.998022437095642,0.00120189448352903,0.0628486275672913,0.00864515081048012,-0.0108923111110926,-0.999903321266174,0.999016284942627,0.0211076326668262,-0.0389989465475082,0.00789621472358704,-0.000316725869197398,-0.999968767166138,0.0476190745830536,0.00052383920410648,-0.998865485191345,0.0838124454021454,-0.927676856517792,-0.363856047391891,0.0689029842615128,-0.93307226896286,-0.353027880191803,0.34484851360321,0.938632726669312,0.0069411238655448,-0.0392384827136993,0.00214181817136705,-0.999227583408356,0.0478254854679108,0.00253049377351999,-0.998852491378784,0.00770697183907032,0.00235357997007668,-0.999967575073242,-0.0394053310155869,-0.00139410339761525,-0.99922239780426,0.0079383198171854,-0.000910941045731306,-0.99996817111969,-0.0953116714954376,-0.00196177884936333,-0.995445549488068,-0.99911642074585,0.027367040514946,0.0318992100656033,-0.904452621936798,0.0217140819877386,-0.426021248102188,-0.998212397098541,0.0274848937988281,0.0530718304216862,-0.993388473987579,0.104770056903362,-0.0469317361712456,-0.89904922246933,0.0931220725178719,-0.427830576896667,-0.993907153606415,0.105176940560341,0.0329604931175709,-0.945452511310577,0.321097165346146,0.0549208074808121,-0.945478022098541,0.322608202695847,-0.0446682535111904,
- -0.946213483810425,0.321658760309219,0.0348674915730953,-0.756141364574432,0.651106357574463,0.0656570941209793,-0.75664210319519,0.651332020759583,0.0570904798805714,-0.758489012718201,0.65069991350174,-0.0358341261744499,0.844411134719849,0.534208238124847,0.0398934409022331,0.0318025462329388,-0.26454746723175,0.963848114013672,0.82782119512558,0.42800372838974,0.36266365647316,0.598167777061462,0.0149380508810282,-0.801231682300568,-0.903952181339264,0.0321632400155067,-0.426422268152237,-0.0595047101378441,0.0345323160290718,-0.997630655765533,-0.648111939430237,0.759651780128479,0.0536672361195087,-0.649494171142578,0.759020388126373,-0.0452250801026821,-0.649689674377441,0.759579658508301,-0.0306940022855997,-0.195743218064308,0.979703485965729,-0.0431948564946651,-0.197661459445953,0.97967928647995,0.0340367555618286,-0.19717313349247,0.980325400829315,0.00921331252902746,-0.0232745204120874,0.318596422672272,-0.947604775428772,-0.133761674165726,0.990117192268372,-0.04214071854949,-0.135080456733704,0.990698277950287,0.016441797837615,0.823893070220947,-0.565208077430725,0.0417143255472183,0.011361843906343,-0.0332988314330578,0.999380946159363,0.824018895626068,-0.565223217010498,0.0389300286769867,-0.357869416475296,0.932678401470184,-0.0451732315123081,-0.134589001536369,0.292604148387909,-0.946714639663696,-0.0295451376587152,0.014710258692503,-0.999455213546753,-0.824018895626068,0.565223217010498,-0.0389300286769867,-0.011361843906343,0.0332988314330578,-0.999380946159363,-0.0561621151864529,0.0638980865478516,-0.99637496471405,-0.0479258447885513,-0.0128044486045837,-0.99876880645752,-0.0498048514127731,-0.00603684224188328,-0.99874073266983,-0.130409553647041,0.293657153844833,-0.946973502635956,0.0255462396889925,-0.0422026365995407,-0.998782515525818,-0.0639202371239662,-0.00502942688763142,-0.997942328453064,-0.0531875118613243,-0.00950456038117409,-0.998539388179779,-0.0396089851856232,0.00440903753042221,-0.999205529689789,-0.028634387999773,-4.93144507345278e-005,-0.999589920043945,0.0284500364214182,-0.0232130382210016,-0.999325633049011,
- 0.0324436202645302,0.00303033599629998,-0.999469041824341,0.597643256187439,0.00327362632378936,-0.801755487918854,-0.0630449280142784,0.00288519077003002,-0.998006582260132,-0.0765528231859207,0.306685298681259,-0.948727548122406,0.194262504577637,-0.803743183612823,-0.562369227409363,-0.00575060723349452,0.0150678986683488,-0.9998699426651,0.0324436202645302,0.00303033599629998,-0.999469041824341,0.999998927116394,0.00147432216908783,3.27365283567322e-019,0.597643256187439,0.00327362632378936,-0.801755487918854,0.0371030569076538,0.00564738502725959,0.999295473098755,-0.919951498508453,0.392032235860825,8.70486429295935e-017,-0.0269634071737528,0.0329446159303188,0.999093413352966,0.174102112650871,-0.809556484222412,-0.560630679130554,0.203495547175407,-0.977574706077576,-0.0541962683200836,0.00607224740087986,0.0228726137429476,-0.999719977378845,0.0972928628325462,0.0454912148416042,0.994215607643127,-0.971763968467712,0.230776891112328,0.0491612702608109,-0.973695397377014,0.227853655815125,5.05936749861934e-017,0.0667005032300949,-0.834227502346039,-0.547371506690979,0.0866551250219345,-0.993777871131897,0.0699743926525116,0.085566058754921,-0.995058000087738,-0.0503793507814407,0.686635494232178,-0.727001845836639,-1.61426837638565e-016,0.685078740119934,-0.725888311862946,-0.0612655356526375,0.683619260787964,-0.722934007644653,0.100156061351299,0.274665713310242,-0.957983493804932,0.0826232060790062,0.222497299313545,-0.794955492019653,-0.564394116401672,0.134818553924561,-0.444896280765533,0.885376393795013,0.998405039310455,0.0130543485283852,0.0549274086952209,0.598147630691528,0.0144529473036528,-0.801255643367767,0.999908745288849,0.0135113690048456,3.00012659267726e-018,0.925954699516296,-0.373756736516953,0.0539798401296139,0.927360355854034,-0.374169379472733,-8.3082292040067e-017,0.922899484634399,-0.37264695763588,0.0969061106443405,0.59657222032547,-0.0164224281907082,-0.802391350269318,0.998189151287079,-0.0238893665373325,0.0552064031362534,0.507326304912567,-0.0100013427436352,0.861696004867554,
- 0.0901268869638443,0.459820717573166,-0.883426368236542,0.149622544646263,0.108079202473164,-0.982818365097046,-0.109407812356949,0.99141263961792,-0.0716299936175346,0.00590003142133355,-0.00553740747272968,0.999967336654663,0.100046806037426,-0.448730081319809,0.8880495429039,-0.00530510069802403,0.0468923300504684,0.998885869979858,0.00827709306031466,-0.00396756129339337,0.999957919120789,-0.00323997437953949,0.0471544079482555,0.998882412910461,-0.0151360705494881,0.0998641774058342,0.994885981082916,0.0145449433475733,0.000172185697010718,0.999894261360168,-0.0641761645674706,0.071828231215477,0.995350241661072,-0.037101287394762,0.0472004860639572,0.998196244239807,0.913325726985931,-0.395363926887512,0.0975886359810829,0.0244914963841438,-0.0466503500938416,0.998611032962799,0.916968107223511,-0.395336478948593,0.0536544360220432,0.0340467467904091,0.012924812734127,0.999336779117584,0.884785234928131,-0.455332934856415,0.0991310700774193,0.0339355319738388,0.0129825193434954,0.999339759349823,0.0331500209867954,0.00730288866907358,0.999423682689667,0.506974756717682,-0.00641825795173645,0.861937046051025,0.998133599758148,-0.0260803829878569,0.0552205927670002,0.0311245229095221,-0.00537194078788161,0.99950110912323,0.0167558882385492,0.00163258251268417,0.999858260154724,-0.0453306585550308,0.0318701826035976,0.99846351146698,-0.0392232015728951,-0.00246516638435423,0.999227464199066,0.507192134857178,-0.00862612947821617,0.86178982257843,0.0314535722136498,-0.0033151051029563,0.9994997382164,0.0291543006896973,-0.0176693573594093,0.999418795108795,-0.0570102892816067,0.0100518045946956,0.9983229637146,-0.100038662552834,0.0239205937832594,0.994696021080017,0.0317732729017735,-0.00131588708609343,0.999494314193726,-0.103695824742317,0.00325293652713299,0.994603753089905,-0.0393906980752945,0.00108362233731896,0.999223291873932,0.996731162071228,0.0805497542023659,0.00623187050223351,0.877894818782806,0.0652900785207748,-0.474381476640701,0.993317008018494,0.0811678096652031,0.0820556282997131,0.871123492717743,0.126230701804161,-0.474562764167786,
- 0.908200740814209,0.130426049232483,-0.397693961858749,0.987230837345123,0.13551652431488,0.0837292894721031,0.772904217243195,0.628628373146057,0.0862871706485748,0.677931308746338,0.552144050598145,-0.485331058502197,0.775398910045624,0.63073343038559,0.0305275153368711,-0.00453253090381622,-0.100755676627159,0.99490088224411,-0.942501544952393,0.177992805838585,0.282859414815903,-0.87588357925415,0.145235657691956,0.46014615893364,-0.354849368333817,0.0621243007481098,-0.932857215404511,0.0101020783185959,0.0720537081360817,-0.997349619865417,0.879287302494049,0.0468934215605259,-0.473977625370026,0.443862468004227,0.755923092365265,-0.481213420629501,0.27496811747551,0.489920407533646,-0.827266931533813,0.516562461853027,0.856007874011993,0.0203371047973633,0.18475578725338,0.527320384979248,-0.829336166381836,0.331420212984085,0.941801786422729,0.0563034191727638,0.331882238388062,0.943230330944061,0.0130662294104695,-0.0423237644135952,0.00700002070516348,-0.999079406261444,0.845245599746704,0.298233330249786,-0.443414866924286,0.0186427719891071,0.0278320703655481,-0.999438762664795,-0.000538425403647125,-0.0562370829284191,-0.998417317867279,0.284334361553192,0.485701352357864,-0.826588273048401,0.425074338912964,0.767970085144043,-0.479096829891205,-0.0417101718485355,0.00606904085725546,-0.999111413955688,0.0215675160288811,0.0126301404088736,-0.999687612056732,-0.352790206670761,-0.0268199816346169,-0.935317993164063,-0.0137722808867693,-0.0362447202205658,-0.999248087406158,-0.303902208805084,-0.742323219776154,-0.597159802913666,0.21274995803833,0.516329526901245,-0.829542815685272,-0.353287130594254,-0.0132046788930893,-0.935421824455261,-0.98648476600647,-0.163832396268845,-0.00260752066969872,-0.0627869293093681,0.0380887910723686,-0.997299909591675,-0.212579667568207,-0.976710736751556,0.0290886890143156,-0.121968157589436,-0.799184739589691,-0.588580906391144,0.0541360825300217,-0.13848514854908,-0.988883793354034,-0.992976427078247,-0.11824195086956,-0.00409455597400665,-0.35267898440361,-0.0296423938125372,-0.9352747797966,
- -0.992433369159698,-0.118649452924728,0.0315982028841972,-0.278968930244446,-0.958518922328949,0.0584639944136143,-0.221825167536736,-0.771783113479614,-0.595939934253693,-0.279214799404144,-0.959819436073303,0.0280319917947054,-0.245329916477203,-0.764005780220032,-0.596748173236847,-0.307639867067337,-0.949647009372711,0.0593993812799454,-0.142961844801903,-0.432329416275024,0.890310764312744,-0.998661756515503,-0.0405561365187168,0.0320925936102867,-0.999166667461395,-0.0402790121734142,-0.00659882370382547,-0.998499929904938,-0.0405854508280754,0.0367544554173946,-0.82360565662384,-0.563364923000336,0.0655261650681496,-0.825173616409302,-0.564766526222229,0.0112904896959662,-0.824791014194489,-0.564361810684204,0.0348652563989162,-0.0187028869986534,0.00911781936883926,0.999783515930176,-0.997762858867645,-0.0585077814757824,0.0323469825088978,-0.997654616832733,-0.0584681928157806,0.0355947054922581,-0.0151076661422849,-0.00428819563239813,0.99987667798996,-0.82360565662384,-0.563364923000336,0.0655261650681496,-0.824791014194489,-0.564361810684204,0.0348652563989162,-0.998251080513,-0.0466085113584995,0.0363652557134628,0.0471818521618843,-0.000305683206534013,0.998886346817017,-0.0153931519016624,-0.0032240878790617,0.999876320362091,-0.0138564854860306,-0.0089509217068553,0.999864041805267,0.047071173787117,-0.00381662556901574,0.998884260654449,0.0905781015753746,-0.000132482498884201,0.995889365673065,-0.800247430801392,-0.596030712127686,0.06596589833498,-0.0150691736489534,-0.00443166401237249,0.999876618385315,-0.0313526690006256,-0.0165723096579313,0.99937105178833,-0.0249982848763466,-0.0209333039820194,0.999468266963959,-0.0130121493712068,-0.0120966639369726,0.999842166900635,0.0738026574254036,0.0519231334328651,0.995920360088348,0.0103012761101127,-0.0451181568205357,0.998928546905518,-0.125964924693108,-0.433827817440033,0.89214700460434,-0.322873026132584,-0.944546222686768,0.0598780736327171,-0.0259330496191978,-0.0202919244766235,0.999457776546478,0.0725828856229782,0.0556756407022476,0.99580717086792,
- 0.0852522850036621,0.065445601940155,0.994207680225372,0.0343983061611652,0.0998572558164597,0.994407057762146,-0.133946269750595,-0.433140516281128,0.891317963600159,-0.00746055878698826,-0.0329576767981052,0.999428987503052,-0.139986231923103,-0.4326012134552,0.89065146446228,0.0284933112561703,0.103822976350784,0.994187593460083,0.0247810482978821,0.0920509248971939,0.995445966720581,0.999151527881622,0.0260751694440842,-0.031879972666502,0.904502987861633,0.0205322057008743,0.42597296833992,0.998242139816284,0.0261954367160797,-0.0531648471951485,0.993269920349121,0.105890400707722,0.046926137059927,0.898937702178955,0.0941460207104683,0.427840530872345,0.99378776550293,0.10629565268755,-0.0329743511974812,0.945436358451843,0.321144193410873,-0.0549227632582188,0.945461988449097,0.322655349969864,0.0446674972772598,0.94619745016098,0.321705907583237,-0.0348677299916744,0.75565230846405,0.652482450008392,-0.0570630989968777,0.757497251033783,0.65185672044754,0.0357872731983662,0.755149126052856,0.652254402637482,-0.0656813085079193,-0.109039500355721,0.994024157524109,-0.00515147252008319,0.111066125333309,-0.993760645389557,0.0102102933451533,-0.101854100823402,0.994718015193939,0.0127209108322859,0.059293195605278,0.0364049822092056,0.997576534748077,-0.598227560520172,0.0163952372968197,0.801158547401428,0.903906106948853,0.0330317094922066,0.426453500986099,0.649971902370453,0.758056461811066,-0.0537320747971535,0.651358842849731,0.757422029972076,0.0452061966061592,0.651554107666016,0.757977306842804,0.0307820830494165,0.19872160255909,0.980014443397522,-0.0090313907712698,0.197294741868973,0.979391098022461,0.0432192087173462,0.199213847517967,0.979362070560455,-0.0341148264706135,0.133757323026657,0.990117788314819,0.0421406365931034,0.135076969861984,0.990698754787445,-0.0164422020316124,0.0232598669826984,0.3185995221138,0.94760400056839,-0.823886394500732,-0.565217912197113,-0.0417145565152168,-0.0113636665046215,-0.0332969650626183,-0.999380946159363,-0.824012339115143,-0.565232992172241,-0.0389297157526016,
- 0.36495178937912,0.929927051067352,0.0452322140336037,0.137817248702049,0.291786640882492,0.946502566337585,0.0303971767425537,0.0138384839519858,0.999442100524902,0.824012339115143,0.565232992172241,0.0389297157526016,0.0113636665046215,0.0332969650626183,0.999380946159363,0.0561623573303223,0.0638959407806396,0.996375024318695,0.132463157176971,0.293140530586243,0.946848630905151,0.0499144941568375,-0.0141198737546802,0.998653769493103,0.0516369082033634,-0.00791483465582132,0.99863463640213,0.05319594591856,-0.00951321143656969,0.998538851737976,-0.0255443993955851,-0.0422146357595921,0.998781979084015,0.0639215186238289,-0.00504096690565348,0.997942209243774,-0.0287904273718596,-0.0209819786250591,0.999365210533142,0.0379535183310509,0.00610419642180204,0.99926096200943,0.0264143403619528,0.00141789007466286,0.999650061130524,-0.597643256187439,0.00327363377436996,0.801755487918854,0.0630449280142784,0.00288519496098161,0.998006582260132,-0.0324436202645302,0.00303033972159028,0.999469041824341,0.00792080070823431,0.0136348605155945,0.999875664710999,0.0788075402379036,0.306159853935242,0.948712587356567,-0.19292314350605,-0.804141163825989,0.56226122379303,-0.0324436202645302,0.00303033972159028,0.999469041824341,-0.999998927116394,0.0014743241481483,3.27365723007022e-019,-0.597643256187439,0.00327363377436996,0.801755487918854,0.0268350802361965,0.0337837040424347,-0.999068796634674,-0.0375928618013859,0.00597122311592102,-0.999275267124176,0.918083548545837,0.39638689160347,8.80155707435537e-017,-0.00549321947619319,0.0224904641509056,0.99973201751709,-0.169072136282921,-0.810947716236115,0.56015932559967,-0.197818040847778,-0.978748798370361,0.0540282130241394,-0.0972909480333328,0.0454899482429028,-0.994215846061707,0.97176593542099,0.230768516659737,-0.0491609498858452,0.973697304725647,0.227845400571823,5.0591841953956e-017,-0.0646995231509209,-0.834588348865509,0.547061681747437,-0.0842479094862938,-0.99399733543396,-0.0697972774505615,-0.083157479763031,-0.995266437530518,0.0502943769097328,-0.683840751647949,-0.722723841667175,-0.100160300731659,
- -0.686858773231506,-0.726790904998779,-1.6137999936356e-016,-0.685301780700684,-0.725677728652954,0.0612643696367741,-0.22296616435051,-0.794803142547607,0.564423680305481,-0.135090336203575,-0.444864064455032,-0.885351121425629,-0.275232762098312,-0.957817614078522,-0.0826576799154282,-0.998390138149261,0.014182704500854,-0.0549177005887032,-0.598175704479218,0.0151295550167561,0.801222145557404,-0.999892830848694,0.0146413585171103,3.25103466749751e-018,-0.925518989562988,-0.374836593866348,-0.0539643280208111,-0.926923394203186,-0.375250607728958,-8.33223729410544e-017,-0.922461271286011,-0.373721748590469,-0.0969395712018013,-0.507290005683899,-0.00962799042463303,-0.861721634864807,-0.596599876880646,-0.0159629173576832,0.8023801445961,-0.998207151889801,-0.0231369826942682,-0.0552014708518982,-0.0692729279398918,0.459416657686234,0.885515511035919,-0.132929250597954,0.0970887243747711,0.986358761787415,0.122386448085308,0.989826619625092,0.0725593417882919,0.00609571859240532,0.0467919446527958,-0.998886108398438,-0.00518676917999983,-0.00600844016298652,-0.999968528747559,-0.0993318259716034,-0.448802977800369,-0.888092994689941,0.0146885588765144,0.100118421018124,-0.994867086410522,-0.00871879234910011,-0.00367584871128201,-0.999955296516418,0.00274717225693166,0.0472169071435928,-0.998880863189697,0.0373642221093178,0.0467112138867378,-0.998209357261658,-0.0140844471752644,-0.00013197677617427,-0.999900817871094,0.0646676421165466,0.0715454965829849,-0.995338797569275,-0.917102217674255,-0.395024389028549,-0.0536593645811081,-0.913464546203613,-0.395045340061188,-0.0975794196128845,-0.0245253033936024,-0.0464408248662949,-0.998619973659515,-0.0318696163594723,0.0116174379363656,-0.999424517154694,-0.0336894206702709,0.0106838382780552,-0.999375283718109,-0.886763513088226,-0.451487571001053,-0.0990439355373383,-0.0331874191761017,0.00753721874207258,-0.999420762062073,-0.506943583488464,-0.00610394403338432,-0.861957609653473,-0.998139977455139,-0.025837728753686,-0.0552190393209457,0.0450341291725636,0.0324232056736946,-0.998459219932556,
- -0.0312293637543917,-0.00471668876707554,-0.99950110912323,-0.0173701141029596,0.00203831004910171,-0.999847054481506,0.0391843877732754,-0.00328600173816085,-0.999226570129395,-0.507262468338013,-0.00934559479355812,-0.861740946769714,-0.0313223302364349,-0.00413559703156352,-0.999500811100006,0.100158669054508,0.0232465229928494,-0.994699954986572,-0.0290449187159538,-0.018351174890995,-0.999409675598145,0.0573365651071072,0.00944127421826124,-0.998310267925262,0.0394090935587883,0.0014740462647751,-0.999222099781036,-0.031835250556469,-0.000928217545151711,-0.999492764472961,0.103627987205982,0.00363878440111876,-0.994609534740448,-0.996731221675873,0.0805490911006927,-0.0062319515272975,-0.877894699573517,0.0652919933199883,0.474381506443024,-0.993317186832428,0.0811667591333389,-0.0820555910468102,-0.871123909950256,0.126227289438248,0.474562764167786,-0.908201515674591,0.130423218011856,0.3976930975914,-0.987230777740479,0.135516762733459,-0.0837292969226837,-0.772893190383911,0.628642022609711,-0.086286835372448,-0.677924454212189,0.552151918411255,0.485331654548645,-0.775388121604919,0.63074666261673,-0.0305270906537771,0.942501723766327,0.177989616990089,-0.282860815525055,0.875884294509888,0.145229905843735,-0.460146903991699,0.00452953577041626,-0.100771084427834,-0.994899332523346,-0.879287302494049,0.046893235296011,0.473977625370026,0.354849398136139,0.0621239393949509,0.932857275009155,-0.0101021537557244,0.0720533207058907,0.997349619865417,-0.443861186504364,0.755923867225647,0.481213271617889,-0.274963617324829,0.489922434091568,0.827267348766327,-0.516564846038818,0.856006562709808,-0.0203371997922659,-0.184748828411102,0.527323007583618,0.829336047172546,-0.331408351659775,0.941805839538574,-0.056304082274437,-0.331870377063751,0.94323456287384,-0.0130657618865371,-0.0186450704932213,0.0278201345354319,0.999439060688019,0.0423169806599617,0.00698972307145596,0.999079823493958,-0.845248460769653,0.298227339982986,0.443413436412811,-0.425074279308319,0.767970263957977,0.479096859693527,0.000539857777766883,-0.056234922260046,0.998417437076569,
- -0.284333139657974,0.485701858997345,0.82658839225769,0.0417374260723591,0.00611040042713284,0.999109923839569,-0.0215589869767427,0.0126745207235217,0.999687194824219,0.352791607379913,-0.0267839170992374,0.935318529605865,0.30383774638176,-0.742348909378052,0.597160637378693,-0.212780028581619,0.516317427158356,0.829542636871338,0.0137280896306038,-0.0363115333020687,0.99924623966217,0.0627498403191566,0.0380323715507984,0.997304439544678,0.353283047676086,-0.0133237838745117,0.935421586036682,0.986451685428619,-0.164031252264977,0.00260099722072482,0.121955797076225,-0.79918760061264,0.588579654693604,-0.0540977641940117,-0.138427704572678,0.988893926143646,0.212521106004715,-0.976723372936249,-0.0290895476937294,0.9924196600914,-0.118765518069267,-0.0315903462469578,0.992962598800659,-0.11835840344429,0.00409077992662787,0.352677136659622,-0.02968879789114,0.935273945331573,0.278936803340912,-0.958528339862823,-0.058462917804718,0.221803367137909,-0.771790027618408,0.595939040184021,0.279182761907578,-0.959828734397888,-0.028032535687089,0.245332404971123,-0.764004945755005,0.596748232841492,0.307637989521027,-0.949647605419159,-0.0593993179500103,0.142955213785172,-0.432330012321472,-0.890311539173126,0.999167025089264,-0.0402698069810867,0.0065991161391139,0.998500168323517,-0.040576558560133,-0.0367550253868103,0.998662114143372,-0.0405472107231617,-0.0320924632251263,0.823608756065369,-0.563360393047333,-0.0655260980129242,0.825176417827606,-0.564762234687805,-0.0112903341650963,0.824793994426727,-0.564357459545136,-0.0348652824759483,0.0187007449567318,0.00910983048379421,-0.999783635139465,0.997762680053711,-0.0585091225802898,-0.0323470011353493,0.997654497623444,-0.0584695674479008,-0.0355946160852909,0.0151095585897565,-0.00428114179521799,-0.999876737594604,0.823608756065369,-0.563360393047333,-0.0655260980129242,0.824793994426727,-0.564357459545136,-0.0348652824759483,0.998251020908356,-0.0466101765632629,-0.0363651476800442,-0.0471815168857574,-0.000316431483952329,-0.998886346817017,0.0153902843594551,-0.00323477713391185,-0.999876379966736,
- -0.0905796885490417,-0.000137448310852051,-0.995889246463776,0.0138551574200392,-0.00895586982369423,-0.999863982200623,-0.0470710135996342,-0.00382172828540206,-0.998884260654449,0.80025976896286,-0.596014142036438,-0.0659656971693039,0.015074610710144,-0.00441140960901976,-0.999876737594604,0.0313699804246426,-0.0165604278445244,-0.999370694160461,-0.0737964659929276,0.0519421882927418,-0.995919823646545,0.0250169578939676,-0.020920492708683,-0.999468088150024,0.0130180278792977,-0.0120747610926628,-0.999842345714569,-0.0103105185553432,-0.0451244749128819,-0.998928189277649,0.125953897833824,-0.433828741312027,-0.89214813709259,0.322870045900345,-0.944547295570374,-0.05987798422575,-0.0852441042661667,0.0654511749744415,-0.994208097457886,0.0259390734136105,-0.0202877931296825,-0.999457716941834,-0.0725798830389977,0.0556848645210266,-0.995806872844696,-0.0344120301306248,0.0998480170965195,-0.994407415390015,0.1339301019907,-0.433141946792603,-0.891319692134857,0.00744645297527313,-0.0329673364758492,-0.999428689479828,0.139980673789978,-0.432601720094681,-0.890652120113373,-0.0284921899437904,0.103823743760586,-0.994187593460083,-0.0247798729687929,0.0920510515570641,-0.995445907115936,0.999555706977844,-0.0265498552471399,-0.0135481189936399,0.997628092765808,-0.026168916374445,0.063666932284832,0.998034834861755,-0.0266938451677561,-0.0566912926733494,0.0447555258870125,0.998587608337402,-0.0286323316395283,0.0482784807682037,0.994982540607452,-0.0876298770308495,0.035081896930933,0.99191826581955,0.121931977570057,0.998304009437561,-0.0198951996862888,0.0547113157808781,0.998233258724213,-0.0191988069564104,-0.0562301017343998,0.997783899307251,-0.019939947873354,0.0634805560112,0.998018622398376,0.00522005092352629,0.062702901661396,0.0312997289001942,-0.00572715140879154,0.999493718147278,0.998466074466705,0.00526735838502645,0.0551165118813515,0.951858520507813,0.304727226495743,-0.0332692228257656,0.962623298168182,0.264728903770447,0.0572269298136234,0.092439092695713,-0.406508892774582,0.908958435058594,
- -0.998435974121094,-0.00902822427451611,-0.055174071341753,-0.0304988641291857,0.0307235457003117,-0.999062538146973,-0.0585692375898361,0.0303829200565815,-0.997820854187012,0.0307770222425461,-0.0221111755818129,0.999281644821167,-0.0304157733917236,-0.0223904345184565,0.999286532402039,0.0577154196798801,-0.0219617839902639,0.998091459274292,-0.0309392437338829,-0.0114233652129769,0.99945604801178,0.0311178248375654,-0.0114590218290687,0.999450027942657,-0.0473676137626171,-0.0114065380766988,0.998812437057495,-0.0311044510453939,-0.00794556830078363,0.999484658241272,-0.0473153702914715,-0.007981495000422,0.99884819984436,-0.999872267246246,-0.00264897919259965,0.0157668776810169,-0.997486054897308,0.00359392887912691,0.0707728788256645,-0.99986857175827,0.00401445478200912,0.0157143529504538,-0.0473042093217373,-0.00725497957319021,0.998854160308838,-0.535956919193268,-0.844182014465332,0.0103416834026575,-0.0554959177970886,0.926434099674225,0.372344225645065,-0.541713535785675,-0.840426683425903,0.0151484552770853,-0.997482657432556,0.00420277565717697,0.0707870200276375,-0.998460412025452,0.00481818523257971,-0.0552608817815781,-0.999866545200348,0.00448059430345893,0.0157106500118971,-0.998351991176605,0.0138800572603941,-0.0556830242276192,-0.997387528419495,0.0133294146507978,0.0709958672523499,-0.998441874980927,0.0138743529096246,-0.0540490075945854,-0.998351693153381,0.0138979656621814,-0.0556838549673557,-0.998441636562347,0.013898846693337,-0.0540472529828548,-0.0314700156450272,0.000663103244733065,-0.999504566192627,-0.212255209684372,-0.973875284194946,-0.0807138904929161,0.0423858910799026,-0.871048748493195,-0.489364355802536,-0.0267493259161711,-0.920920789241791,-0.388830721378326,0.0784544721245766,0.00531846983358264,-0.996903598308563,-0.0313598550856113,0.00760767422616482,-0.999479234218597,0.0862899646162987,0.00515190605074167,-0.996256828308105,-0.0105938017368317,-0.285587638616562,-0.958294093608856,0.0770441442728043,-0.310655266046524,-0.947395145893097,-0.955030918121338,0.289000362157822,-0.0662930607795715,
- -0.0312645621597767,0.0135392872616649,-0.999419450759888,0.0783983841538429,0.0119149470701814,-0.996850907802582,-0.0159544236958027,0.0133219799026847,-0.999783992767334,-0.998263835906982,0.0185650512576103,-0.0558995045721531,-0.0313211195170879,0.0100272260606289,-0.999459147453308,-0.0158988684415817,0.0097520612180233,-0.999826073646545,-0.998034536838531,-0.026706175878644,0.0566920563578606,-0.99955540895462,-0.0265620723366737,0.0135470470413566,-0.997627735137939,-0.0261808931827545,-0.0636672824621201,-0.0560930110514164,0.994564890861511,0.0877174586057663,-0.0367111824452877,0.982392311096191,-0.183187887072563,-0.0521511994302273,0.998242199420929,0.0281555838882923,-0.998323738574982,-0.0188257247209549,-0.0547292493283749,-0.998256802558899,-0.0181352030485868,0.0561644025146961,-0.997806787490845,-0.018870348110795,-0.0634483098983765,-0.998475968837738,0.00336106517352164,-0.0550870336592197,-0.998022973537445,0.00331360707059503,-0.0627632215619087,-0.0312959738075733,-0.00584578746929765,-0.99949312210083,-0.951554834842682,0.305682331323624,0.0331923216581345,-0.962340652942657,0.265754580497742,-0.0572275035083294,-0.092422790825367,-0.406299620866776,-0.909053683280945,0.0304988976567984,0.0307225156575441,0.999062538146973,0.0585691295564175,0.0303817838430405,0.997820973396301,0.998435974121094,-0.00903215445578098,0.0551741383969784,0.0304165221750736,-0.022374814376235,-0.999286890029907,-0.0577138401567936,-0.0219461768865585,-0.998091995716095,-0.0307775251567364,-0.0220955405384302,-0.999282002449036,0.03086700104177,-0.0129416128620505,-0.999439716339111,-0.0310694724321365,-0.0129771269857883,-0.999432981014252,0.0473905801773071,-0.0129237286746502,-0.998792827129364,0.0473228134214878,-0.0084671787917614,-0.998843848705292,0.999870419502258,-0.00322518101893365,-0.0157713852822781,0.0310818273574114,-0.00842223688960075,-0.999481379985809,0.999868452548981,0.00401713978499174,-0.0157143287360668,0.0473041534423828,-0.00725122354924679,-0.998854219913483,0.997486054897308,0.00359680689871311,-0.0707729458808899,
- 0.479530662298203,-0.877396583557129,-0.0150209795683622,0.0556291490793228,0.921942114830017,-0.383312225341797,0.478915393352509,-0.877742052078247,-0.0144533291459084,0.99748283624649,0.00417342595756054,-0.0707863345742226,0.998460531234741,0.00478844670578837,0.0552594847977161,0.999866664409637,0.004451016895473,-0.0157108847051859,0.998352289199829,0.0138643886893988,0.0556823015213013,0.997387886047363,0.0133141176775098,-0.070995531976223,0.998442053794861,0.0138586964458227,0.054050125181675,0.998441636562347,0.0138987153768539,0.0540472641587257,0.0314700454473495,0.000661159283481538,0.999504566192627,0.998351693153381,0.0138978306204081,0.0556838475167751,0.211797833442688,-0.973976314067841,0.0806958377361298,-0.0419917404651642,-0.873608827590942,0.484813690185547,0.0266686957329512,-0.922285556793213,0.385588318109512,0.0313829407095909,0.00616012327373028,0.999488472938538,-0.0862905234098434,0.00370862521231174,0.996263206005096,-0.0784662812948227,0.00387400761246681,0.996909260749817,0.0313211865723133,0.0100229568779469,0.999459147453308,0.0158988013863564,0.00974778924137354,0.999826073646545,0.998263835906982,0.0185647457838058,0.0558994896709919,0.0159543789923191,0.0133190741762519,0.999783992767334,0.0312646068632603,0.0135363815352321,0.999419510364532,-0.0783984065055847,0.0119120590388775,0.996850967407227,0.0105906315147877,-0.285742729902267,0.958247840404511,-0.0770413875579834,-0.310810029506683,0.947344660758972,0.955019772052765,0.289037078619003,0.0662941783666611
- }
- BinormalsW: *1000 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *3000 {
- a: 1,3.03828762149294e-009,0,1,0.000221324720769189,0,1,0.000442349119111896,2.28881824604343e-009,1,-0.000397678551962599,1.2369585355998e-009,1,-1.78687431517943e-009,-0,0.999999821186066,-0.000532054807990789,0,0.999997019767761,-0.00240423786453903,0,0.99999737739563,-0.00229658070020378,-0,1,3.03828762149294e-009,0,1,-0.000397678551962599,1.2369585355998e-009,0.999999821186066,-0.000613783486187458,-0,0.999998509883881,-0.00169773434754461,0,0.999997019767761,-0.00240423786453903,0,0.999999821186066,-0.000532054807990789,0,0.999992549419403,-0.00386011996306479,1.34815347774264e-009,0.999978184700012,0.00661850813776255,2.00390859461663e-009,1,-0,0,0.999998033046722,-0.00199149455875158,0,0.999997735023499,-0.00216511311009526,-0,0.999944925308228,-0.0105045810341835,-0,0.999992549419403,-0.00386011996306479,1.34815347774264e-009,0.999998033046722,-0.00199149455875158,0,0.999997794628143,0.00207643513567746,0,0.999996304512024,-0.00271684653125703,0,0.999987959861755,0.00490895844995975,0,0.999954044818878,-0.00958728883415461,-0,0.999996304512024,-0.00271684653125703,0,0.999997794628143,0.00207643513567746,0,0.999988913536072,-0.00470955995842814,0,0.999992549419403,-0.00386011996306479,1.34815347774264e-009,1,-0.000397678551962599,1.2369585355998e-009,1,0.000442349119111896,2.28881824604343e-009,0.999978184700012,0.00661850813776255,2.00390859461663e-009,0.999999821186066,-0.000613783486187458,-0,1,-0.000397678551962599,1.2369585355998e-009,0.999992549419403,-0.00386011996306479,1.34815347774264e-009,0.999963819980621,-0.00850651878863573,0,0.999997019767761,-0.00240423786453903,0,0.999996304512024,-0.00271684653125703,0,0.999954044818878,-0.00958728883415461,-0,0.99999737739563,-0.00229658070020378,-0,0,-0.00194565334822983,0.999998092651367,0,-0.00430045975372195,0.999990820884705,0,-0.00662157265469432,0.999978065490723,0,-0.00505202729254961,0.999987185001373,0,-0.00654693320393562,0.99997866153717,0,-0.00436190376058221,0.999990463256836,0,-0,1,0,-0.00321567780338228,0.999994874000549,
- 0,-0.00505202729254961,0.999987185001373,0,-0.00662157265469432,0.999978065490723,0,-0.00436190376058221,0.999990463256836,0,-0.00654693320393562,0.99997866153717,0,-7.04363992554136e-005,-1,-0,0.000785608135629445,-0.999999761581421,-0,0.00137366610579193,-0.999999046325684,-0,0.000593203876633197,-0.999999821186066,0,-0,-1,0,-0.000399574171751738,-0.999999940395355,0,-0.000330108945490792,-0.999999940395355,0,-0.000290733936708421,-1,0,-0.000399574171751738,-0.999999940395355,0,-7.04363992554136e-005,-1,-0,0.000593203876633197,-0.999999821186066,0,-0.000330108945490792,-0.999999940395355,-1,0,0,-0.999999940395355,0,-0.000517282169312239,-0.999999344348907,0,-0.00114304758608341,-0.99999988079071,0,-0.000571523909457028,-1,0,0,-0.999999940395355,0,-0.000308693590341136,-0.999999940395355,0,-0.00044775806600228,-0.999999940395355,0,-0.000517282169312239,-0.999999940395355,0,-0.00041719333967194,-0.999999940395355,0,-0.00044775806600228,-0.999999940395355,0,-0.000308693590341136,-1,0,-0.00020859666983597,-0.999999940395355,0,-0.000308753340505064,-0.99999988079071,0,-0.000569928262848407,-0.999999344348907,0,-0.00113985629286617,-0.999999701976776,0,-0.000688705535139889,-1,0,0,-0.999999940395355,0,-0.000308753340505064,-0.999999701976776,0,-0.000688705535139889,-1,0,-0.000335664837621152,-0.999999940395355,0,-0.000416399358073249,-1,0,-0.000208199679036625,-1,0,0,-1,0,-0.000335664837621152,-1,5.42826819582842e-006,0,-1,-1.67702296494099e-006,0,-0.999998807907104,0.00154803332407027,-2.28881558150817e-009,-0.999996781349182,0.00250961910933256,-1.23695464981921e-009,-0.999986290931702,-0.00521818129345775,0,-0.999999821186066,-0.000589515781030059,0,-0.999999821186066,0.000590057927183807,0,-0.999999821186066,-0.000454738095868379,0,-0.999999821186066,0.000590057927183807,0,-1,5.42826819582842e-006,0,-0.999996781349182,0.00250961910933256,-1.23695464981921e-009,-0.999999642372131,0.000789384008385241,0,-1,1.41210721267271e-005,0,-0.999999821186066,-0.000454738095868379,0,-0.999995827674866,0.0028999715577811,-1.34815769659014e-009,
- -0.999979913234711,0.00634783087298274,-2.00391192528571e-009,-1,0,0,-0.999999761581421,-0.000744981458410621,0,-0.999991536140442,-0.0041144173592329,0,-0.999975562095642,-0.00699202250689268,0,-0.999995827674866,0.0028999715577811,-1.34815769659014e-009,-0.999999761581421,-0.000744981458410621,0,-0.999999821186066,-0.000486709002871066,0,-0.999998331069946,-0.00182740518357605,0,-0.999970376491547,0.00768947508186102,0,-1,0,0,-0.999970495700836,-0.0076806703582406,0,-0.999998331069946,-0.00182740518357605,0,-0.999999821186066,-0.000486709002871066,0,-0.999995827674866,0.0028999715577811,-1.34815769659014e-009,-0.999996781349182,0.00250961910933256,-1.23695464981921e-009,-0.999998807907104,0.00154803332407027,-2.28881558150817e-009,-0.999979913234711,0.00634783087298274,-2.00391192528571e-009,-0.999995827674866,0.0028999715577811,-1.34815769659014e-009,-0.999997615814209,0.00217659724876285,0,-0.999999642372131,0.000789384008385241,0,-0.999996781349182,0.00250961910933256,-1.23695464981921e-009,-0.999999821186066,-0.000454738095868379,0,-0.999998331069946,-0.00182740518357605,0,-0.999970495700836,-0.0076806703582406,0,-0.999986290931702,-0.00521818129345775,0,0.999996304512024,-0.00271684653125703,0,0.999983072280884,-0.0058255554176867,0,0.999987959861755,0.00490895844995975,0,0.999983072280884,-0.0058255554176867,0,0.999996304512024,-0.00271684653125703,0,0.999997019767761,-0.00240423786453903,0,0.999998509883881,-0.00169773434754461,0,-0.999998331069946,-0.00182740518357605,0,-0.999999582767487,-0.000881031970493495,0,-0.999970376491547,0.00768947508186102,0,-0.999999821186066,-0.000454738095868379,0,-1,1.41210721267271e-005,0,-0.999999582767487,-0.000881031970493495,0,-0.999998331069946,-0.00182740518357605,0,-0.057002104818821,-0.0519863478839397,-0.997019708156586,-0.00758734392002225,-0.0877276659011841,-0.996115565299988,-0.00753613095730543,-0.0871355161070824,-0.996168076992035,-0.0601171515882015,-0.0548272952437401,-0.996684372425079,3.58691613655537e-006,0,1,2.90369757749431e-006,0,1,4.92040385324799e-007,-4.48744572167925e-007,1,
- 1.88259389233281e-006,-1.71693989159394e-006,1,-1.09891855615274e-008,2.11875499189773e-006,1,-1.08927888931021e-008,2.100169467667e-006,1,-6.41301340920108e-008,7.41496592127078e-007,1,-1.8378061383828e-007,2.12493955586979e-006,1,1,-0,-2.34533175103024e-007,1,-0,-1.75899870669127e-007,1,-0,-1.1726656623523e-007,1,-0,-1.75899870669127e-007,-0.0601171515882015,-0.0548272952437401,-0.996684372425079,-0.0794878005981445,0,-0.996835827827454,-0.0782759785652161,0,-0.996931731700897,-0.057002104818821,-0.0519863478839397,-0.997019708156586,-0.00753613095730543,-0.0871355161070824,-0.996168076992035,-0.00758734392002225,-0.0877276659011841,-0.996115565299988,-0.000512340106070042,-0.0987810418009758,-0.995109081268311,-0.000476325280033052,-0.0918372571468353,-0.995773911476135,-1.8378061383828e-007,2.12493955586979e-006,1,-6.41301340920108e-008,7.41496592127078e-007,1,1.88259389233281e-006,-1.71693989159394e-006,1,4.92040385324799e-007,-4.48744572167925e-007,1,0.999963819980621,-0.00850651878863573,0,0.999992549419403,-0.00386011996306479,1.34815347774264e-009,0.999944925308228,-0.0105045810341835,-0,-0.999997615814209,0.00217659724876285,0,-0.999995827674866,0.0028999715577811,-1.34815769659014e-009,-0.999975562095642,-0.00699202250689268,0,-0.999998867511749,0.000428831321187317,0.00145326287019998,-0.999999105930328,0.000341727514751256,0.00131351500749588,-0.999995589256287,0.00177467532921582,-0.00238180090673268,-0.999986708164215,0.0014645557384938,0.00496321637183428,-0.999982893466949,-0.003505137283355,0.00470426259562373,-0.999986946582794,-0.00402870215475559,0.0031423878390342,-0.9999720454216,-0.00589694967493415,0.00459962105378509,-0.999974608421326,-0.00425757747143507,0.00571411661803722,-0.999982714653015,-0.00587797025218606,-0.000277699466096237,-1,-6.337762442854e-006,4.9434552238381e-006,-1,-1.01709565569763e-005,-4.80517655887525e-007,-1,-1.01709565569763e-005,-4.80517655887525e-007,-1,-1.01709565569763e-005,-4.80517655887525e-007,-1,-1.01709565569763e-005,-4.80517655887525e-007,-1,-1.57754183049974e-008,-4.0070403883874e-007,
- -1,-6.14350983596523e-006,-0.000156045571202412,-1,-6.14350983596523e-006,-0.000156045571202412,-0.99999988079071,-0.000513655540999025,-2.4267190383398e-005,-1,3.20548952004174e-006,-8.14194427221082e-005,-1,-3.17589137921459e-006,-8.06676325737499e-005,-1,-3.17589137921459e-006,-8.06676325737499e-005,-1,-4.1975357589763e-007,-1.06617562778411e-005,-1,3.61332723741725e-007,-9.17783563636476e-006,-1,3.61332723741725e-007,-9.17783563636476e-006,-1,4.83209760204772e-006,-0.00012273590255063,-1,4.83209760204772e-006,-0.00012273590255063,-0.999999701976776,0.000760685245040804,-3.59378864231985e-005,-1,1.02378708106698e-005,-4.8367894578405e-007,-1,1.02378708106698e-005,-4.8367894578405e-007,-1,1.58792037296962e-008,-4.03340237653538e-007,-1,1.02378708106698e-005,-4.8367894578405e-007,-1,1.02378708106698e-005,-4.8367894578405e-007,-1,9.68460062722443e-006,2.36209757531469e-006,-0.999998688697815,-0.00163247215095907,7.71244158386253e-005,-0.99999475479126,0.00314888171851635,0.000768019061069936,-0.999916076660156,0.00796792656183243,0.0102152898907661,-0.999999940395355,-0.000248689990257844,-0.000318833277560771,-0.999990522861481,0.00422734580934048,0.00103106023743749,-0.99999463558197,-0.000856487778946757,-0.00319236330688,0,0.997641682624817,-0.0686386972665787,0,0.997641682624817,-0.0686386972665787,0,0.997641682624817,-0.0686386972665787,0,0.999903500080109,0.0138914352282882,0,0.999903500080109,0.0138914352282882,0,0.999903500080109,0.0138914352282882,0,0.999988973140717,-0.0047005214728415,0,0.999988973140717,-0.0047005214728415,0,0.999988973140717,-0.0047005214728415,0,0.999956965446472,-0.00928045157343149,0,0.999956965446472,-0.00928045157343149,0,0.999956965446472,-0.00928045157343149,1,-0.000149356652400456,3.37257697538007e-005,1,6.54754257993773e-005,-0.000244044756982476,1,6.28827619948424e-005,-0.000249502307269722,0.999999701976776,0.000192198596778326,-0.000716376584023237,1,-0.00017674190166872,3.99096570617985e-005,1,-0.000160455660079606,3.91355715692043e-005,1,-0.000170822342624888,4.16639704781119e-005,
- 1,-0.00016651360783726,3.75997842638753e-005,1,-8.45764152472839e-005,-3.99574128095992e-006,1,-7.72236126067583e-006,1.88350270491355e-006,1,-8.16353076515952e-006,-3.85678646352972e-007,1,-8.16353076515952e-006,-3.85678646352972e-007,1,-1.26618484586061e-008,-3.21617704912569e-007,1,-8.16353076515952e-006,-3.85678646352972e-007,1,-8.16353076515952e-006,-3.85678646352972e-007,0.999999701976776,0.000759205839131027,3.58679935743567e-005,1,4.67191739517148e-006,0.000118667318020016,1,4.67191739517148e-006,0.000118667318020016,1,1.92200090509687e-007,4.88186651637079e-006,1,-2.51451240274037e-007,6.38687697573914e-006,1,1.92200090509687e-007,4.88186651637079e-006,1,-3.26078293255705e-006,8.28238771646284e-005,1,-3.26078293255705e-006,8.28238771646284e-005,1,3.29038266499992e-006,8.35757309687324e-005,1,-6.21381786913844e-006,0.000157831382239237,0.99999988079071,-0.00051374058239162,2.4271206712001e-005,1,-6.21381786913844e-006,0.000157831382239237,1,-8.73151111591142e-006,4.1251237803408e-007,1,7.06590412846708e-008,-1.79473227035487e-006,1,-8.73151111591142e-006,4.1251237803408e-007,1,-8.73151111591142e-006,4.1251237803408e-007,1,-8.73151111591142e-006,4.1251237803408e-007,1,-5.54859616386238e-006,-5.48694515600801e-006,0.999963879585266,0.00848917476832867,-0.000401063356548548,0.999992907047272,0.00267775892280042,0.00264800596050918,0.999993503093719,0.00253843469545245,0.00259547820314765,0.999998450279236,0.00124186754692346,0.00126977474428713,0.999998331069946,0.00130787387024611,0.0012933419784531,0.99999725818634,0.000589728238992393,-0.00226676790043712,1,-7.41949334042147e-005,0.000285186775727198,0.999999940395355,0.00022061365598347,0.000218162414967082,1,-7.2365059168078e-005,0.000287125731119886,0,-0.999952256679535,-0.00977137684822083,0,-0.999952256679535,-0.00977137684822083,0,-0.999952256679535,-0.00977137684822083,0,-0.999979913234711,0.00633665034547448,0,-0.999979913234711,0.00633665034547448,0,-0.999979913234711,0.00633665034547448,0,-0.999813377857208,0.0193179920315742,0,-0.999813377857208,0.0193179920315742,
- 0,-0.999813377857208,0.0193179920315742,0,-0.99999475479126,0.0032438593916595,0,-0.99999475479126,0.0032438593916595,0,-0.99999475479126,0.0032438593916595,0,-0.953355371952057,-0.301850259304047,0,-0.953355371952057,-0.301850259304047,0,-0.953355371952057,-0.301850259304047,0,0.999853134155273,-0.0171381440013647,0,0.999853134155273,-0.0171381440013647,0,0.999853134155273,-0.0171381440013647,0,0.999951422214508,-0.00985844153910875,0,0.999951422214508,-0.00985844153910875,0,0.999951422214508,-0.00985844153910875,0,0.999816000461578,0.0191836282610893,0,0.999816000461578,0.0191836282610893,0,0.999816000461578,0.0191836282610893,0,0.960291802883148,-0.278997957706451,0,0.960291802883148,-0.278997957706451,0,0.960291802883148,-0.278997957706451,0,1,0,0,1,0,0,1,0,0,-0.999970555305481,0.00768589600920677,0,-0.999970555305481,0.00768589600920677,0,-0.999970555305481,0.00768589600920677,0,-0.999986350536346,-0.00524306995794177,0,-0.999986350536346,-0.00524306995794177,0,-0.999986350536346,-0.00524306995794177,0,-0.999813973903656,-0.0192880481481552,0,-0.999813973903656,-0.0192880481481552,0,-0.999813973903656,-0.0192880481481552,0,-0.99999475479126,-0.00324071780778468,0,-0.99999475479126,-0.00324071780778468,0,-0.99999475479126,-0.00324071780778468,0,-0.954977929592133,0.296676903963089,0,-0.954977929592133,0.296676903963089,0,-0.954977929592133,0.296676903963089,0.998852252960205,0.0466836653649807,0.0107148913666606,0.998441338539124,0.0552231594920158,0.00808396004140377,0.999460637569427,-0.0312398616224527,0.0101266792044044,0.999443173408508,-0.0311990343034267,0.0118317538872361,0.999170064926147,-0.0394943691790104,0.00996711291372776,0.998836755752563,0.0466045252978802,0.0123745249584317,-0.000759661430492997,0.99948251247406,0.0321585759520531,0.0314631201326847,0.998954117298126,0.0331780686974525,-0.0230616815388203,0.9991455078125,0.0343015268445015,-0.023036502301693,0.999092698097229,0.0358211025595665,0.0314612835645676,0.998895704746246,0.034893985837698,0.0317358002066612,0.998886823654175,0.0348990373313427,
- 0.030983554199338,-0.999440848827362,0.0125704361125827,0.0395016260445118,-0.999164938926697,0.0104407668113709,-0.0467965006828308,-0.998826920986176,0.0124518629163504,-0.0467562451958656,-0.998812258243561,0.0137083493173122,-0.0552289374172688,-0.998438954353333,0.00833394005894661,0.0310827139765024,-0.999466061592102,0.0100719146430492,0.99942284822464,0.000802242779172957,0.0339614376425743,0.998918175697327,-0.0311904083937407,0.0344908684492111,0.999120354652405,0.0230495724827051,0.0350326374173164,0.999116837978363,0.0230479054152966,0.0351333096623421,0.998926937580109,-0.0311926826834679,0.0342371687293053,0.999126791954041,-0.0238714199513197,0.0342899672687054,-0.998789370059967,0.046417560428381,-0.0162845011800528,-0.999392032623291,-0.031104851514101,-0.0157506633549929,-0.999120891094208,-0.0395541898906231,-0.0138886012136936,-0.999489843845367,-0.0313338749110699,-0.00618565874174237,-0.998877942562103,0.0468706488609314,-0.00678270822390914,-0.998470604419708,0.0551316812634468,-0.00414296146482229,0.000759658170863986,0.99948251247406,-0.0321584343910217,-0.0314631201326847,0.998954117298126,-0.0331779234111309,0.0230616815388203,0.999145448207855,-0.0343013778328896,-0.0317357070744038,0.998887300491333,-0.0348852798342705,0.0230367314070463,0.999093174934387,-0.0358073264360428,-0.0314612984657288,0.998896181583405,-0.0348802320659161,-0.0310776233673096,-0.999464929103851,-0.0102002983912826,0.0467519797384739,-0.998810648918152,-0.0138413151726127,0.0552319400012493,-0.998437702655792,-0.00846403278410435,0.0467993468046188,-0.998827815055847,-0.0123628005385399,-0.0309870950877666,-0.999441862106323,-0.0124813290312886,-0.0395002588629723,-0.999165952205658,-0.0103515964001417,-0.999457836151123,0.000777605921030045,-0.0329184792935848,-0.998953461647034,-0.0311997346580029,-0.0334477834403515,-0.999155938625336,0.0230668410658836,-0.0339895784854889,-0.999099314212799,-0.0238769743591547,-0.035077840089798,-0.999089181423187,0.023034829646349,-0.0359221212565899,-0.998899757862091,-0.0311856232583523,-0.0350250191986561,
- -0.999432623386383,0.031177144497633,0.0127444202080369,-0.999181509017944,0.0395395904779434,0.0085398955270648,-0.999194383621216,-0.0388657376170158,0.0100038619711995,-0.999191999435425,-0.0388516113162041,0.0103008663281798,-0.998431146144867,-0.0552471019327641,0.0091212410479784,-0.999450206756592,0.0312147065997124,0.0111777391284704,-0.997639715671539,-0.0365301743149757,0.0581444390118122,-0.996109247207642,-0.0688581317663193,0.054999727755785,-0.997761368751526,-0.0558632239699364,0.0367659218609333,0.999353349208832,0.0238188970834017,-0.0269398186355829,0.999347567558289,-0.0231702700257301,-0.0277091320604086,0.999141573905945,0.0314690284430981,-0.0269413720816374,0.999505519866943,-0.000742637901566923,-0.0314381495118141,0.998995959758759,0.0314644388854504,-0.0318920724093914,0.99920254945755,-0.0230902303010225,-0.0325741730630398,0.999001443386078,0.0314646139740944,-0.0317182093858719,0.99951845407486,-0.000732811982743442,-0.031022084876895,0.99950248003006,0.00665618339553475,-0.0308334417641163,-0.998843133449554,0.0314596258103848,0.0363691709935665,-0.999362111091614,-0.000843433488626033,0.0357050746679306,-0.999347627162933,0.00646990537643433,0.0355339385569096,-0.999359846115112,-0.000844867550767958,0.0357658751308918,-0.998848497867584,0.0314597971737385,0.0362214148044586,-0.999053716659546,-0.0230185054242611,0.0369054786860943,-0.999226748943329,-0.0231027603149414,0.0318148732185364,-0.999022603034973,0.0314652808010578,0.0310444049537182,-0.999233543872833,0.0238483678549528,0.0310422535985708,0.0124236391857266,0.998831689357758,-0.0466997809708118,0.0110722975805402,0.999676048755646,0.0229169316589832,0.00987521652132273,0.999819815158844,0.0162117406725883,0.0065174512565136,0.997984647750854,-0.0631217733025551,0.0102961510419846,0.999683201313019,0.022965993732214,0.0112782102078199,0.998843193054199,-0.046745415776968,0.00113882811274379,0.998018443584442,-0.0629121363162994,0.0632878765463829,0.997954845428467,-0.00898682605475187,0.00535856187343597,0.99971467256546,0.0232777688652277,
- 0.0631367191672325,0.99798846244812,-0.00574255082756281,-0.0108218174427748,0.997990071773529,-0.06243946403265,-0.0632026121020317,0.997982025146484,-0.00612514419481158,0.0630607008934021,0.998001217842102,-0.00411646487191319,-0.0630142837762833,0.998009026050568,-0.00267741060815752,0.0706311017274857,0.997476935386658,-0.00714194681495428,-0.00054251286201179,0.999876439571381,0.0157119110226631,0.0706523358821869,0.997490525245667,-0.00456794770434499,-0.0628955140709877,0.998019993305206,-0.000510143465362489,0.0708291530609131,0.997294962406158,0.0196480602025986,0.00699447188526392,0.999844551086426,0.0161861795932055,0.00957195553928614,0.999475061893463,-0.0309519413858652,-0.116295747458935,0.992500007152557,-0.0376698113977909,-0.0417743287980556,0.723107218742371,-0.689471423625946,0.0454684235155582,0.71870219707489,-0.693829774856567,0.00396471144631505,0.999865710735321,-0.0159020069986582,0.00581958098337054,0.999497592449188,-0.0311594754457474,0.00305683561600745,0.999868392944336,0.0159385167062283,0.454692304134369,0.89064359664917,-0.00298997550271451,0.473596274852753,0.880142152309418,-0.0325060151517391,-0.0825018584728241,0.945297360420227,-0.315604716539383,0.000211524878977798,0.999875783920288,0.0157594010233879,0.0705943256616592,0.99743914604187,0.0114728985354304,-0.000530004675965756,0.999876201152802,-0.0157252158969641,0.0204756278544664,0.999653398990631,-0.0165486987680197,0.0706821084022522,0.997498631477356,0.000859840482007712,-0.102373093366623,0.994731426239014,-0.00541645288467407,0.936254918575287,0.345365822315216,0.0644155219197273,0.133792191743851,0.3498495221138,0.927202761173248,0.0175115782767534,0.35112589597702,0.936164498329163,-0.0472054071724415,0.998885154724121,-0.000355225522071123,-0.102274224162102,0.994728088378906,-0.00748523091897368,0.0707033947110176,0.997495651245117,-0.00187079445458949,0.0706777051091194,0.997498214244843,0.00141472415998578,0.125997483730316,0.991978585720062,-0.0101643344387412,-0.0470657199621201,0.998886704444885,0.0031946892850101,
- 0.999199330806732,-0.0396061167120934,0.00566333997994661,0.997431755065918,-0.0709846988320351,0.00954314973205328,0.998142063617706,-0.054365873336792,0.027510030195117,0.999469816684723,0.0312646701931953,-0.00908876210451126,0.999207317829132,-0.0389506444334984,-0.00821748282760382,0.998450696468353,-0.0551989004015923,-0.00703499466180801,0.999185681343079,-0.038817934691906,-0.0110084665939212,0.999419987201691,0.0311528798192739,-0.0137547478079796,0.999171435832977,0.0395630672574043,-0.00955068506300449,-0.0117911342531443,0.998838186264038,0.0467249862849712,-0.0104409279301763,0.999681949615479,-0.0229568425565958,-0.00924417469650507,0.999826312065125,-0.016182029619813,-0.00541446125134826,0.99799382686615,0.0630789250135422,-0.00919714663177729,0.999692320823669,-0.0230354368686676,-0.0101802404969931,0.998852908611298,0.0467891059815884,-0.000127785897348076,0.99802154302597,0.0628725290298462,-0.0631778687238693,0.997980415821075,0.00662432750687003,-0.00429551023989916,0.999718248844147,-0.0233448166400194,-0.0631160438060761,0.997992217540741,0.00529994163662195,0.0108676478266716,0.99798971414566,0.0624376349151134,0.0631786808371544,0.997986137866974,0.00568623235449195,-0.0629995986819267,0.99800968170166,0.0028118072077632,0.0629428997635841,0.998016178607941,0.00137409591116011,-0.0706419423222542,0.997484683990479,0.00583493802696466,-0.0706564038991928,0.997492432594299,0.00406797369942069,0.0628674179315567,0.998021900653839,-1.84142731995962e-006,0.00021952937822789,0.999876320362091,-0.0157322566956282,-0.0707377046346664,0.997474312782288,-0.00642035435885191,-0.00162700866349041,0.999873101711273,-0.015848521143198,-0.00429453607648611,0.999502599239349,0.0312436893582344,-0.0421099662780762,0.998688220977783,0.029133690521121,0.0409043952822685,0.717426717281342,0.695432066917419,-0.0460517108440399,0.726071417331696,0.686075448989868,-0.00266748899593949,0.999870896339417,0.015851017087698,-0.00452286330983043,0.999502062797546,0.0312310885637999,-0.00176135695073754,0.999872744083405,-0.0158569794148207,
- -0.452991962432861,0.891509294509888,0.00311096105724573,-0.471923887729645,0.881041765213013,0.0324543416500092,0.08253563195467,0.945433080196381,0.315189391374588,0.000530121033079922,0.999876201152802,0.0157252103090286,-0.000211706399568357,0.999875783920288,-0.0157594121992588,-0.0705943033099175,0.997439205646515,-0.0114758256822824,-0.0204750765115023,0.999653398990631,0.016548678278923,-0.0706819891929626,0.997498512268066,-0.000874081044457853,0.102373756468296,0.994731307029724,0.00540215102955699,-0.133927091956139,0.351341307163239,-0.926619052886963,-0.0176259651780128,0.352675050497055,-0.935579836368561,-0.936551213264465,0.34456017613411,-0.0644214972853661,0.047202754765749,0.9988853931427,0.000287488510366529,0.102277487516403,0.994728267192841,0.00741713587194681,-0.0707028731703758,0.997495770454407,0.00180283933877945,0.0470635630190372,0.998886704444885,-0.00324963335879147,-0.0706772729754448,0.997498154640198,-0.00146976765245199,-0.126002714037895,0.991978406906128,0.0101095298305154,-0.0278521273285151,-0.999501645565033,-0.0148629518225789,-0.0430624894797802,-0.998249530792236,0.0405423678457737,-0.023628868162632,-0.99712735414505,0.0719649419188499,-0.104653336107731,-0.994496583938599,-0.00494425185024738,-0.107700869441032,-0.994133651256561,0.00993990246206522,-0.105630531907082,-0.99432897567749,-0.0123317781835794,-0.323383301496506,-0.945448398590088,-0.0393797010183334,-0.322248786687851,-0.946532607078552,-0.015224352478981,-0.322008311748505,-0.946724951267242,-0.0047670598141849,-0.653228461742401,-0.756991684436798,-0.0160062965005636,-0.651510238647461,-0.758426427841187,0.0179944280534983,-0.649974942207336,-0.759334981441498,-0.0307074803858995,0.53361302614212,-0.845352947711945,0.0252100694924593,-0.122888721525669,-0.958054304122925,-0.258902490139008,0.366879969835281,-0.902101039886475,0.227184563875198,-0.0413847118616104,-0.997916400432587,-0.0495011992752552,-0.0525285452604294,-0.997967422008514,0.0360802635550499,-0.11212595552206,-0.993308007717133,-0.0276948232203722,
- -0.759554982185364,-0.649902522563934,0.0265132077038288,-0.76000040769577,-0.649877965450287,0.00763298431411386,-0.758733451366425,-0.650414407253265,-0.0358456745743752,-0.980371236801147,-0.196556508541107,-0.0154199283570051,-0.978725135326386,-0.19917967915535,0.0492404475808144,-0.974135398864746,-0.194852769374847,-0.114423088729382,-0.976702094078064,-0.209512010216713,-0.0464513301849365,-0.990732550621033,-0.134615316987038,-0.018103314563632,-0.984667599201202,-0.132372692227364,-0.113609835505486,-0.566253840923309,-0.824010372161865,0.0190652795135975,-0.699475109577179,-0.714481115341187,-0.0158538725227118,-0.564593493938446,-0.824938118457794,-0.026673711836338,-0.933473467826843,-0.358558773994446,-0.00793406739830971,-0.967664480209351,-0.244503080844879,0.0619979687035084,-0.698943197727203,-0.715105354785919,0.010136510245502,-0.564593493938446,-0.824938118457794,-0.026673711836338,-0.699475109577179,-0.714481115341187,-0.0158538725227118,-0.113836981356144,-0.991851925849915,-0.05719143897295,-0.833132386207581,-0.551069378852844,0.0470426343381405,-0.697792232036591,-0.71523118019104,0.039120439440012,-0.968236565589905,-0.243237391114235,0.0579096525907516,-0.151350408792496,-0.987754642963409,0.0378655195236206,-0.109668783843517,-0.993895351886749,0.0120335398241878,-0.697542607784271,-0.715193510055542,0.0439623668789864,-0.69844514131546,-0.71524304151535,0.0245306566357613,-0.834018528461456,-0.551217973232269,0.0239186026155949,-0.150831550359726,-0.9883833527565,0.0186648033559322,-0.150023236870766,-0.988651275634766,-0.00786742009222507,-0.0483731254935265,-0.998022735118866,-0.0401332154870033,-0.110174313187599,-0.993903994560242,0.00408647442236543,-0.973975539207459,-0.226590141654015,0.00534264324232936,-0.955576777458191,-0.284598410129547,0.0766601413488388,-0.83448988199234,-0.55101215839386,-0.00350422807969153,-0.150023236870766,-0.988651275634766,-0.00786742009222507,0.00147432216908783,-0.999998927116394,-2.22137805019009e-016,-0.0483731254935265,-0.998022735118866,-0.0401332154870033,
- -0.833684682846069,-0.551189064979553,0.0340690277516842,-0.392032235860825,-0.919951498508453,-2.04061817522137e-016,-0.151104375720024,-0.988106787204742,0.0285043511539698,-0.959454715251923,-0.267614513635635,0.088482454419136,-0.978286981582642,-0.205241516232491,0.0288187861442566,-0.834487617015839,-0.550743401050568,-0.017669104039669,-0.828818917274475,-0.54933750629425,0.106242746114731,-0.232659921050072,-0.971863389015198,-0.0367549657821655,-0.227853655815125,-0.973695397377014,-2.14414320377928e-016,-0.972839117050171,-0.176248982548714,0.150067925453186,-0.993104457855225,-0.0917360410094261,-0.0729933008551598,-0.995557367801666,-0.0873844176530838,0.0350667759776115,-0.727001845836639,-0.686635494232178,-1.52708512800934e-016,-0.727408468723297,-0.686194360256195,-0.00378050119616091,-0.725555241107941,-0.688023567199707,-0.0138997146859765,-0.958292424678802,-0.279781699180603,-0.0582910366356373,-0.949399709701538,-0.308293700218201,0.0599597096443176,-0.988874435424805,-0.117095828056335,0.0917385295033455,0.012602330185473,-0.999883890151978,0.00856771878898144,-0.0416754931211472,-0.99792355298996,-0.0491117089986801,0.0135113690048456,-0.999908745288849,-2.22050904732577e-016,-0.373603135347366,-0.927493453025818,-0.0132892001420259,-0.374169409275055,-0.927360475063324,-2.06134758606974e-016,-0.37685826420784,-0.92582094669342,0.0288728978484869,-0.0601578652858734,-0.997893095016479,-0.0243032071739435,-0.0242864470928907,-0.999683678150177,0.00653290236368775,0.0965168997645378,-0.992981791496277,-0.0683497563004494,-0.993944585323334,-0.0144581440836191,-0.108927339315414,-0.820952534675598,-0.540398836135864,-0.184407308697701,-0.990856051445007,-0.114502854645252,-0.0713693425059319,-0.834455013275146,-0.551072895526886,0.00187185651157051,-0.992995202541351,-0.101417243480682,0.0606239140033722,-0.992037355899811,-0.125942334532738,0.00064358877716586,-0.834434807300568,-0.55108642578125,0.00472042383626103,-0.992046356201172,-0.125844463706017,0.00272295903414488,-0.86888861656189,-0.493672549724579,0.0363344550132751,
- -0.834349274635315,-0.551100611686707,0.0122317485511303,-0.86664754152298,-0.498523771762848,-0.0199025757610798,-0.473252326250076,-0.880598604679108,0.0240497961640358,-0.399501889944077,-0.91635000705719,0.0264744535088539,-0.159165665507317,-0.986350655555725,-0.0421739779412746,-0.395146876573563,-0.918502748012543,-0.014547442086041,-0.157398730516434,-0.987368643283844,0.0181324947625399,-0.459261029958725,-0.888077735900879,0.0199365988373756,-0.833785653114319,-0.550947606563568,0.0354710668325424,-0.157590061426163,-0.987426340579987,0.0124423485249281,0.0983468815684319,-0.99301141500473,-0.0652400180697441,-0.0264741871505976,-0.999628961086273,0.00641188677400351,-0.15800254046917,-0.98743861913681,-0.00038690070505254,-0.834307849407196,-0.551098167896271,0.0148813920095563,-0.472535133361816,-0.881286561489105,0.00667669391259551,0.0472154468297958,-0.998884558677673,-0.000610947667155415,0.0972194150090218,-0.992994666099548,-0.0671563073992729,-0.15793739259243,-0.987447679042816,0.00169505050871521,-0.158377930521965,-0.987295150756836,-0.0128349335864186,-0.471268743276596,-0.881805419921875,-0.0180336739867926,-0.175302401185036,-0.984496176242828,0.00604477571323514,-0.157873377203941,-0.987452387809753,0.00371865858323872,-0.173164188861847,-0.984781265258789,-0.014833016321063,0.0470758005976677,-0.998887002468109,0.00293904752470553,-0.0792384371161461,0.989717602729797,-0.119081281125546,-0.0835600569844246,0.996349036693573,-0.0175074990838766,-0.0840935781598091,0.995916366577148,0.0328463949263096,-0.137206614017487,0.99047464132309,0.0115988831967115,-0.257467031478882,0.923244178295136,-0.285185754299164,-0.138295739889145,0.989986300468445,0.0283093173056841,-0.62957888841629,0.776700794696808,-0.0191451217979193,-0.656907141208649,0.75135064125061,-0.0628110766410828,-0.63024514913559,0.77599960565567,-0.024812800809741,-0.189916536211967,0.976890325546265,0.0980664938688278,0.0529973283410072,0.91526472568512,-0.399351984262466,0.10251622647047,0.987866699695587,-0.11666114628315,
- -0.00735216308385134,0.997573554515839,0.069230817258358,-0.189701825380325,0.979425668716431,0.0688373148441315,-0.0673461109399796,0.997384071350098,-0.0262582581490278,-0.833129107952118,0.545867264270782,0.089022770524025,-0.911211371421814,0.407298058271408,-0.0616614334285259,-0.85534530878067,0.516962707042694,-0.0336750112473965,-0.933691143989563,0.357556879520416,0.0193434115499258,-0.942960560321808,0.328660070896149,0.0529904253780842,-0.942500174045563,0.3321393430233,-0.0371063053607941,-0.550061225891113,0.834615468978882,0.0291498210281134,-0.420330494642258,0.88342958688736,-0.207062005996704,-0.189053684473038,0.981678128242493,0.0238110143691301,-0.551686704158783,0.832748293876648,-0.0466080605983734,-0.908332347869873,0.412320137023926,-0.0701747536659241,-0.842869997024536,0.528784275054932,0.0997879356145859,-0.550108194351196,0.834622800350189,0.0280353799462318,-0.188742354512215,0.981991291046143,0.00833458825945854,-0.0388741083443165,0.999146223068237,-0.0139874136075377,-0.551514983177185,0.833857595920563,-0.022644342854619,-0.928747057914734,0.370517641305923,0.0120645128190517,-0.927712917327881,0.373252630233765,-0.00560494186356664,-0.0340639352798462,0.999418973922729,-0.00124292215332389,-0.163664042949677,0.985985815525055,-0.0323433615267277,-0.548102676868439,0.833775341510773,0.0663503333926201,-0.977112054824829,0.212238788604736,-0.0143784852698445,-0.969562590122223,0.222779527306557,-0.101576924324036,-0.549024283885956,0.823076009750366,-0.145321249961853,-0.118050798773766,0.992485821247101,-0.0321889296174049,-0.0398705638945103,0.999066472053528,-0.0166295655071735,-0.116338469088078,0.990947067737579,0.0670021176338196,-0.959142446517944,0.281104266643524,0.0320332981646061,-0.951693892478943,0.304430305957794,-0.0400116220116615,-0.960196435451508,0.27884715795517,-0.0163431894034147,-0.945907533168793,0.323453485965729,-0.0252383165061474,-0.950334489345551,0.30975553393364,0.0302635729312897,-0.989227533340454,0.0910259708762169,-0.114643774926662,-0.04103609547019,0.999053299427032,-0.0144406482577324,
- -0.0400500744581223,0.998692452907562,-0.0317702367901802,-0.0381650514900684,0.997199356555939,0.0643182694911957,-0.565200507640839,0.824862360954285,-0.0122674899175763,-0.564824461936951,0.824650168418884,-0.030420670285821,-0.564560949802399,0.825377523899078,0.00478337751701474,-0.258897364139557,0.965808391571045,-0.0136511502787471,-0.058980617672205,0.998162865638733,-0.0138614429160953,-0.056071512401104,0.996310830116272,0.0649672746658325,-0.259131997823715,0.965841889381409,0.000226867603487335,-0.565200507640839,0.824862360954285,-0.0122674899175763,-0.564560949802399,0.825377523899078,0.00478337751701474,-0.0441960208117962,0.996936023235321,0.0645391196012497,0.0314248315989971,0.999505519866943,-0.00117846229113638,-0.259115219116211,0.965846002101898,-0.000874735531397164,-0.259201914072037,0.965809941291809,0.00505394907668233,0.0315903760492802,0.999498188495636,0.00233031413517892,-0.304363220930099,0.952150046825409,0.0278090965002775,-0.597814381122589,0.801576793193817,-0.00962657015770674,-0.259134262800217,0.965841352939606,0.000375391158740968,-0.824324190616608,0.565878391265869,-0.0164772141724825,-0.82454127073288,0.565733790397644,-0.00877410639077425,-0.259245663881302,0.965775668621063,0.00831063184887171,-0.308860063552856,0.950733244419098,-0.0266791954636574,-0.824855744838715,0.56432032585144,0.0339945815503597,-0.991535186767578,0.0835934728384018,-0.0993485078215599,-0.945267736911774,0.324977397918701,0.0293050557374954,-0.824512481689453,0.565757215023041,-0.00990719348192215,-0.309148997068405,0.950520873069763,-0.0306102782487869,-0.825972259044647,0.562697410583496,0.0337856486439705,-0.829647481441498,0.557620108127594,-0.0272966139018536,-0.990488529205322,0.0870846435427666,-0.106530293822289,-0.824886322021484,0.565160930156708,0.0124794039875269,-0.989652991294861,0.0897253900766373,-0.111965768039227,-0.82987117767334,0.556895315647125,-0.0343725383281708,-0.993629336357117,0.111774668097496,0.014399791136384,0.0265607535839081,-0.999536097049713,0.0149041665717959,
- 0.0419916436076164,-0.998274445533752,-0.041046716272831,0.0223380066454411,-0.99716192483902,-0.0718962475657463,0.105772443115711,-0.994377911090851,0.0049971230328083,0.108626879751682,-0.994037210941315,-0.00949920900166035,0.106748774647713,-0.994210124015808,0.0122946873307228,0.323430359363556,-0.945432424545288,0.0393769703805447,0.322295874357224,-0.946516513824463,0.0152265774086118,0.322055399417877,-0.946708858013153,0.00476532289758325,0.652657985687256,-0.757436871528625,-0.0180810634046793,0.651130437850952,-0.758342146873474,0.0307620707899332,0.65437525510788,-0.75600266456604,0.0159066338092089,0.992916584014893,0.109161108732224,0.0469094552099705,-0.0614601708948612,-0.0171224679797888,-0.997962653636932,0.899730384349823,0.0866574943065643,0.427756875753403,0.112237937748432,-0.993241131305695,0.0295756552368402,0.0405111983418465,-0.997893512248993,0.0506711415946484,0.0533151999115944,-0.997939169406891,-0.035709161311388,0.757964015007019,-0.651762664318085,-0.0263815745711327,0.7584028840065,-0.651740074157715,-0.00774403102695942,0.757132887840271,-0.652280867099762,0.035770058631897,0.973820686340332,-0.196411058306694,0.114437587559223,0.980060160160065,-0.198106959462166,0.015351539477706,0.978410303592682,-0.200733587145805,-0.0491863898932934,0.99073314666748,-0.134610965847969,0.0181034989655018,0.984668076038361,-0.132369175553322,0.113609783351421,0.976702451705933,-0.20950722694397,0.0464655458927155,0.566263616085052,-0.824003636837006,-0.0190647840499878,0.699475109577179,-0.714481234550476,0.0158512685447931,0.564603209495544,-0.82493132352829,0.0266741700470448,0.930727362632751,-0.365635097026825,0.00759060308337212,0.967209935188293,-0.245478108525276,-0.0651566833257675,0.698906660079956,-0.715122759342194,-0.011354910209775,0.564603209495544,-0.82493132352829,0.0266741700470448,0.699475109577179,-0.714481234550476,0.0158512685447931,0.113836854696274,-0.991852104663849,0.0571892894804478,0.967957735061646,-0.243859767913818,-0.0599182955920696,0.833015561103821,-0.55103725194931,-0.0494266636669636,
- 0.697659015655518,-0.715212821960449,-0.0417427383363247,0.697541892528534,-0.715193390846252,-0.0439744368195534,0.151350721716881,-0.987754166126251,-0.0378776527941227,0.109668038785458,-0.993895292282104,-0.0120451273396611,0.150766953825951,-0.988433241844177,-0.0164090562611818,0.698537051677704,-0.715230584144592,-0.0221624094992876,0.834091663360596,-0.551216125488281,-0.0212578568607569,0.0483731217682362,-0.998022735118866,0.0401332192122936,0.110174313187599,-0.993903994560242,-0.00408647023141384,0.150023236870766,-0.988651275634766,0.00786742381751537,0.834472119808197,-0.551049470901489,0.000903908279724419,0.973795711994171,-0.227299571037292,-0.00753910560160875,0.955848097801209,-0.283471763134003,-0.0774481743574142,0.150023236870766,-0.988651275634766,0.00786742381751537,-0.0014743241481483,-0.999998927116394,-2.22138096186585e-016,0.0483731217682362,-0.998022735118866,0.0401332192122936,0.151127234101295,-0.988078534603119,-0.0293527748435736,0.833662629127502,-0.551185607910156,-0.0346561335027218,0.396386951208115,-0.918083667755127,-2.03420772399743e-016,0.834491610527039,-0.550759136676788,0.0169754233211279,0.960353851318359,-0.263368725776672,-0.0914189592003822,0.979450821876526,-0.199568077921867,-0.029132641851902,0.828819215297699,-0.549337685108185,-0.106240466237068,0.232651591300964,-0.971865475177765,0.0367553941905499,0.227845430374146,-0.973697423934937,-2.14406577967394e-016,0.972974240779877,-0.174532845616341,-0.151193380355835,0.993311583995819,-0.0893271788954735,0.0731626823544502,0.995761454105377,-0.0849770456552505,-0.0351885445415974,0.725346446037292,-0.68824428319931,0.0138691291213036,0.726790904998779,-0.686858773231506,-1.52704436454875e-016,0.727198302745819,-0.686416923999786,0.003799291793257,0.949289739131927,-0.308686286211014,-0.059680949896574,0.988837420940399,-0.117218114435673,-0.091981865465641,0.958129703998566,-0.280348598957062,0.0582421272993088,-0.0137290200218558,-0.999868631362915,-0.00862970016896725,0.0412699244916439,-0.997913420200348,0.0496549569070339,
- -0.0146413585171103,-0.999892830848694,-2.21976829054361e-016,0.374681174755096,-0.927057564258575,0.013352052308619,0.375250607728958,-0.926923394203186,-2.05695942600737e-016,0.3779296875,-0.925387620925903,-0.0287603493779898,-0.0967076420783997,-0.992985486984253,0.0680257603526115,0.059883140027523,-0.997900426387787,0.0246726870536804,0.0235351901501417,-0.999701499938965,-0.00657445099204779,0.995615363121033,-0.0240933056920767,0.0903858318924904,0.823820233345032,-0.542481124401093,0.164421528577805,0.989336729049683,-0.127488330006599,0.0704242885112762,0.992032825946808,-0.12597967684269,0.00015248914132826,0.834459781646729,-0.55106794834137,-0.00101712334435433,0.993066906929016,-0.101094111800194,-0.059984490275383,0.868896305561066,-0.493621051311493,-0.0368468537926674,0.834430336952209,-0.551088452339172,-0.00524974102154374,0.992047727108002,-0.125821009278297,-0.00321915606036782,0.473231673240662,-0.880624771118164,-0.0234951917082071,0.834357082843781,-0.551100611686707,-0.0116798849776387,0.866611003875732,-0.498564422130585,0.0204670540988445,0.394835412502289,-0.918637096881866,0.0145292170345783,0.39918440580368,-0.916487514972687,-0.026508379727602,0.15916046500206,-0.986360669136047,0.0419618524610996,0.833867192268372,-0.550978064537048,-0.0329949669539928,0.157475590705872,-0.987395465373993,-0.0158643461763859,0.455429762601852,-0.890038788318634,-0.0203651767224073,0.157582178711891,-0.987424492835999,-0.0126795247197151,-0.0985073447227478,-0.993013381958008,0.0649671852588654,0.0262318924069405,-0.999635219573975,-0.00642529129981995,0.472563475370407,-0.881266355514526,-0.00730324862524867,0.157981872558594,-0.987442076206207,-0.000276354548987001,0.834295153617859,-0.551096796989441,-0.0156174972653389,-0.0472476705908775,-0.998882293701172,0.00143206561915576,-0.0968519076704979,-0.992988169193268,0.0677806958556175,0.157963469624519,-0.987444579601288,-0.000864542613271624,0.175233870744705,-0.984512329101563,-0.00536372559145093,0.158398047089577,-0.987282812595367,0.0135251255705953,
- 0.47122910618782,-0.88181209564209,0.0187248699367046,-0.0470604002475739,-0.998886525630951,-0.00332960276864469,0.157860890030861,-0.987452805042267,-0.00411105528473854,0.173204809427261,-0.984780013561249,0.0144433183595538,0.0792377665638924,0.989717662334442,0.119081273674965,0.0835617333650589,0.996348798274994,0.0175065845251083,0.0840925201773643,0.995916426181793,-0.0328464843332767,0.137203618884087,0.990474998950958,-0.0115972561761737,0.257464230060577,0.923244595527649,0.285186976194382,0.138295993208885,0.98998636007309,-0.0283093005418777,0.629592418670654,0.776689648628235,0.0191466324031353,0.656914353370667,0.751344919204712,0.0628059729933739,0.63025838136673,0.775988817214966,0.0248133223503828,-0.052994042634964,0.915265262126923,0.399350941181183,-0.102511115372181,0.987867534160614,0.116658456623554,0.189916595816612,0.976888716220856,-0.0980821847915649,0.0673459470272064,0.997384071350098,0.026258347555995,0.00735229114070535,0.997573614120483,-0.0692304819822311,0.189701855182648,0.97942578792572,-0.0688369274139404,0.83312976360321,0.545866131782532,-0.0890234783291817,0.911212742328644,0.407295614480972,0.0616573132574558,0.855343997478485,0.516965091228485,0.0336749628186226,0.933692514896393,0.357552945613861,-0.0193495899438858,0.942964792251587,0.328648269176483,-0.0529897250235081,0.942504465579987,0.332127511501312,0.0371064729988575,0.189053431153297,0.981678366661072,-0.0237988606095314,0.550061702728271,0.834615528583527,-0.0291374921798706,0.420324772596359,0.883431613445282,0.207065016031265,0.842869937419891,0.528784096240997,-0.0997880175709724,0.551686704158783,0.832748413085938,0.0466054677963257,0.908332705497742,0.412319481372833,0.0701736807823181,0.550106108188629,0.834622502326965,-0.0280848909169436,0.188743352890015,0.981990814208984,-0.00837976858019829,0.0388613753020763,0.999147176742554,0.0139536522328854,0.928768157958984,0.370466142892838,-0.0120230773463845,0.927705943584442,0.373269319534302,0.00563182262703776,0.551516056060791,0.833854675292969,0.0227244067937136,
- 0.548106849193573,0.833777844905853,-0.0662828385829926,0.0341060347855091,0.999417304992676,0.00135440099984407,0.163863003253937,0.985952734947205,0.0323438867926598,0.969564020633698,0.222769320011139,0.101584404706955,0.549028038978577,0.82308566570282,0.145252227783203,0.977124810218811,0.212180256843567,0.0143767418339849,0.116454720497131,0.990933179855347,-0.0670058205723763,0.118167288601398,0.992471814155579,0.0321894064545631,0.0398869439959526,0.999065101146698,0.0166730061173439,0.959151804447174,0.28107213973999,-0.0320352576673031,0.951699078083038,0.304412692785263,0.0400252565741539,0.960205733776093,0.278815150260925,0.0163422543555498,0.945906817913055,0.323455452919006,0.0252367537468672,0.950335085391998,0.309753656387329,-0.0302636884152889,0.989228487014771,0.0910230726003647,0.114637807011604,0.0400408692657948,0.99869292974472,0.0317701771855354,0.0381561554968357,0.997199714183807,-0.0643179416656494,0.0410271771252155,0.999053657054901,0.0144409341737628,0.565195977687836,0.824865460395813,0.0122678512707353,0.564820230007172,0.824653089046478,0.0304207280278206,0.56455659866333,0.825380504131317,-0.00478319218382239,0.258897513151169,0.96580845117569,0.0136428792029619,0.058981966227293,0.998162806034088,0.0138613991439343,0.056072898209095,0.996310830116272,-0.0649673342704773,0.259131908416748,0.965841948986053,-0.000219564637518488,0.565195977687836,0.824865460395813,0.0122678512707353,0.56455659866333,0.825380504131317,-0.00478319218382239,0.0441976860165596,0.996935963630676,-0.0645391792058945,-0.0314253382384777,0.999505519866943,0.00116772053297609,0.259115368127823,0.965846002101898,0.000863669323734939,0.304362744092941,0.952150046825409,-0.0278142895549536,0.259202003479004,0.965809881687164,-0.00505907088518143,-0.0315906144678593,0.999498188495636,-0.00233541405759752,0.597797811031342,0.801589131355286,0.0096279364079237,0.25913393497467,0.965841352939606,-0.00035442246007733,0.824323415756226,0.565878689289093,0.0164981968700886,0.308861553668976,0.950732171535492,0.0266991555690765,
- 0.824540793895721,0.565734326839447,0.00879673939198256,0.259245425462723,0.965776026248932,-0.00828795786947012,0.824855625629425,0.564319789409637,-0.0340057723224163,0.991536676883698,0.0835886597633362,0.0993386059999466,0.94526869058609,0.32497438788414,-0.0293052420020103,0.825973093509674,0.562696754932404,-0.0337757989764214,0.824512183666229,0.56575733423233,0.00991449039429426,0.30914968252182,0.95052033662796,0.0306199435144663,0.829646825790405,0.557621717453003,0.0272801574319601,0.990490734577179,0.0870775729417801,0.106515742838383,0.824886441230774,0.56516033411026,-0.0124964928254485,0.989653766155243,0.0897229611873627,0.111960776150227,0.82987117767334,0.556895196437836,0.0343738906085491,0.993629276752472,0.111774541437626,-0.0143986158072948,-0.0252678040415049,-0.995857954025269,0.0873410627245903,-0.0281045604497194,-0.999163687229156,0.029699357226491,-0.0301594864577055,-0.997670829296112,-0.0611830689013004,0.997019827365875,-0.0428457856178284,0.0641538724303246,0.998708784580231,-0.0494750402867794,-0.011533273383975,0.0273736156523228,-0.122915036976337,0.992039620876312,-0.0190024077892303,-0.999678432941437,-0.0167903434485197,-0.0226616151630878,-0.997843205928802,-0.0616071969270706,-0.0218851268291473,-0.99930739402771,0.0300956591963768,0.00323713826946914,-0.999492704868317,0.0316840000450611,-0.0316291339695454,-0.999488472938538,-0.00473663629963994,0.0061252792365849,-0.999862551689148,-0.0154082523658872,0.301576912403107,-0.950368821620941,-0.0764881148934364,0.265194773674011,-0.964194715023041,-0.000567119685001671,0.0707137212157249,-0.90788197517395,-0.413218915462494,0.00988088641315699,-0.999835729598999,-0.0152008282020688,-0.032402079552412,-0.999032557010651,-0.0297334715723991,0.100573696196079,-0.994271636009216,-0.0361782386898994,-0.0321379899978638,-0.999260365962982,-0.0211208816617727,0.0478385537862778,-0.99863600730896,-0.0209197718650103,0.10106610506773,-0.994493365287781,-0.0277268402278423,0.0475016944110394,-0.99882173538208,-0.00994564779102802,-0.031808115541935,-0.999439179897308,-0.0104685528203845,
- -0.0151716368272901,-0.999811232089996,-0.0121374437585473,0.0473936796188354,-0.998855471611023,-0.00646565202623606,-0.0153338136151433,-0.999844551086426,-0.00871581770479679,0.00277269794605672,-0.999965488910675,0.00783008337020874,-0.00525109842419624,-0.99971604347229,-0.0232432149350643,-0.00389011646620929,-0.999960958957672,0.00793497357517481,-0.0153681896626949,-0.99985009431839,-0.00799002684652805,0.84245365858078,-0.533981680870056,0.0716619193553925,-0.0115694431588054,-0.373490542173386,0.927561938762665,0.840415775775909,-0.541868209838867,-0.00896854046732187,-0.00585858756676316,-0.999713778495789,-0.0232001096010208,-0.00740943709388375,-0.998877704143524,0.0467826761305332,-0.00435621337965131,-0.999958992004395,0.00794229749590158,-0.0164674185216427,-0.998792886734009,0.0462794117629528,-0.0149647882208228,-0.99963366985321,-0.0225528962910175,-0.010003874078393,-0.997409462928772,-0.0712339505553246,-0.0164853185415268,-0.99879264831543,0.0462784133851528,-0.0100283939391375,-0.997409224510193,-0.071235291659832,-0.0157513525336981,-0.999876022338867,-0.000167408652487211,-0.975671172142029,0.215835958719254,-0.038481667637825,0.0751641243696213,0.491196542978287,-0.867799699306488,-0.0228678453713655,0.389431834220886,-0.920771360397339,0.00824264343827963,-0.999955058097839,-0.00468606874346733,-0.0159695446491241,-0.999847292900085,-0.00710941245779395,0.000444567704107612,-0.999986827373505,-0.00513268914073706,0.0195838399231434,-0.958223283290863,0.285350054502487,-0.0169482529163361,-0.950490236282349,0.310291916131973,-0.291365563869476,-0.956168651580811,0.0291137993335724,-0.0161553099751472,-0.999784469604492,-0.013038850389421,0.00876002106815577,-0.999898314476013,-0.0112624308094382,0.0155309839174151,-0.999787330627441,-0.0135698653757572,-0.0211503151804209,-0.998716711997986,0.046017698943615,-0.0160453859716654,-0.999825894832611,-0.00952807441353798,0.0155878514051437,-0.999828517436981,-0.00999995786696672,0.0301718171685934,-0.997670471668243,0.0611823685467243,0.0252800658345222,-0.995857656002045,-0.0873412266373634,
- 0.0281165167689323,-0.999163389205933,-0.0296985935419798,-0.99830037355423,-0.0572603717446327,0.0108471186831594,-0.0251464992761612,-0.18416154384613,-0.982574284076691,-0.996660351753235,-0.0502531416714191,-0.064364530146122,0.0179344061762095,-0.999699175357819,0.0167318042367697,0.0215975940227509,-0.997863054275513,0.0616670958697796,0.020817156881094,-0.999328196048737,-0.030163586139679,-0.0042216470465064,-0.999870777130127,0.0155133064836264,-0.00133350992109627,-0.999500930309296,-0.0315643474459648,0.0316328518092632,-0.9994877576828,0.00485527329146862,-0.302533566951752,-0.950062036514282,0.076521523296833,-0.266218781471252,-0.963912606239319,0.000506236392538995,-0.0707350224256516,-0.907975673675537,0.413009405136108,0.0324020497500896,-0.99903267621994,0.0297324433922768,-0.100573763251305,-0.994271636009216,0.0361770950257778,-0.00988481007516384,-0.999835610389709,0.0152006093412638,-0.0478380806744099,-0.998636364936829,0.0209041405469179,-0.101067006587982,-0.994493722915649,0.0277111735194921,0.032137505710125,-0.999260604381561,0.0211052428930998,-0.0475486591458321,-0.99880313873291,0.0114648630842566,0.0318553447723389,-0.999420583248138,0.0119866756722331,0.0150997415184975,-0.999792873859406,0.0136531190946698,0.0153108276426792,-0.999840557575226,0.00920101813971996,-0.00334884622134268,-0.999963819980621,-0.00782099645584822,-0.0474085099995136,-0.998851478099823,0.00694262143224478,0.00389280146919191,-0.999960958957672,-0.00793501548469067,0.0153683656826615,-0.999850034713745,0.00798627361655235,0.00525397015735507,-0.99971604347229,0.0232430119067431,-0.875801503658295,-0.477446317672729,-0.0708290338516235,0.0109108733013272,-0.384445071220398,-0.923083364963531,-0.877719938755035,-0.47906881570816,0.0100504485890269,0.00582930305972695,-0.999713897705078,0.0232021883130074,0.00737971113994718,-0.998877763748169,-0.0467843189835548,0.00432663876563311,-0.999959111213684,-0.00794183276593685,0.0164517555385828,-0.998793005943298,-0.0462802797555923,0.0149495247751474,-0.999633848667145,0.0225539840757847,
- 0.0099881999194622,-0.997409701347351,0.0712331086397171,0.0100282626226544,-0.997409224510193,0.0712352842092514,0.0157512910664082,-0.999876022338867,0.00016546540427953,0.0164851844310761,-0.99879264831543,-0.0462784208357334,0.975770473480225,0.215379387140274,0.0385194979608059,-0.0753850415349007,0.486628919839859,0.870350301265717,0.0229618307203054,0.386188864707947,0.92213386297226,0.0159241240471601,-0.999857187271118,0.00566239422187209,-0.000320025312248617,-0.999993145465851,0.00369479111395776,-0.0081293061375618,-0.999961674213409,0.00324601540341973,0.0160452518612146,-0.999825894832611,0.00952380709350109,-0.0155879212543368,-0.999828636646271,0.00999568682163954,0.0211500078439713,-0.998716711997986,-0.0460177175700665,-0.0155310304835439,-0.999787330627441,0.0135669596493244,0.0161552187055349,-0.999784529209137,0.0130359455943108,-0.00875979289412498,-0.999898254871368,0.0112595492973924,-0.0195855535566807,-0.958177030086517,-0.285505145788193,0.016960795968771,-0.950439631938934,-0.31044614315033,0.291402250528336,-0.956157565116882,-0.0291112530976534
- }
- TangentsW: *1000 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *732 {
- a: 9.80350023382925e-010,0,0.999999940395355,0,0.999999940395355,1.51805567741394,0.00018782913684845,1.51805567741394,0.249999538064003,4.46428227718343e-010,0.249999552965164,1.51805567741394,0.749784827232361,2.5902409106493e-009,0.749784827232361,1.51805567741394,0.999999940395355,1,0.750102698802948,1.00331044197083,0.499998778104782,1.14971947669983,0.250032007694244,1.00243973731995,0,1,0.999760746955872,0.357546985149384,0.749863564968109,0.357657551765442,0.249970644712448,0.357544332742691,-2.95844438369386e-005,0.357615619897842,0.625219404697418,-0.000599614344537258,0.999999940395355,0,0.625219404697418,1.51805567741394,0.999999940395355,1.51805567741394,0.625219404697418,0.997909188270569,0.999999940395355,1,0.600908875465393,0.352302730083466,0.97568941116333,0.354362279176712,0.871270895004272,-3.07559967041016e-005,1.24490416049957,-0.000474686734378338,0.871270895004272,1.51805567741394,1.24490416049957,1.51805567741394,0.871270895004272,0.998278379440308,1.24490416049957,0.998467206954956,0.853531837463379,0.369657874107361,1.22716510295868,0.369594097137451,0.749999463558197,1.51805567741394,0.749999105930328,1.14370119571686,0.999999940395355,1.14404320716858,0.999999940395355,1.51805567741394,0.249995529651642,1.51805567741394,0.250211387872696,1.14314568042755,0.00018782913684845,1.14302051067352,0.00018782913684845,1.51805567741394,0.749996960163116,1.51805567741394,0.999999940395355,1.51805567741394,0.999999940395355,1.89206945896149,0.749997138977051,1.89241051673889,0.249994575977325,1.51805567741394,0.250210464000702,1.89296531677246,0.000187382102012634,1.89309024810791,0.00018782913684845,1.51805567741394,0.748273015022278,-0.000388632353860885,0.999999940395355,0,9.80350023382925e-010,0,0.247651979327202,-0.000202187933609821,0.752734899520874,1.51805567741394,0.999999940395355,1.51805567741394,0.247411534190178,1.51805567741394,0.00018782913684845,1.51805567741394,0.750343263149261,1.00303149223328,0.999999940395355,1,0.499404400587082,1.14968550205231,0.249117404222488,
- 1.00292372703552,0,1,0.749091744422913,0.358004003763199,0.999780058860779,0.357617050409317,0.248565137386322,0.358108282089233,-9.06699133338407e-005,0.357611924409866,0.366341412067413,1.10348045825958,0.302172839641571,0.357682555913925,0.633717894554138,1.1039514541626,0.696784198284149,0.35806280374527,0.633547306060791,1.10344791412354,0.69769674539566,0.357604324817657,0.365144670009613,1.10363614559174,0.300513505935669,0.358110308647156,0.305387884378433,0.970599114894867,0.694536805152893,0.970873415470123,0.694380700588226,0.970181226730347,0.303903818130493,0.970699489116669,0.00571004115045071,0.507967829704285,0.0196220558136702,0.38517639040947,0.317786276340485,0.410094857215881,0.305327296257019,0.530186414718628,0.0800629928708076,-0.190124526619911,0.37516063451767,-0.160870358347893,0.836462497711182,0.544603407382965,0.435051947832108,0.544604241847992,0.836387097835541,0.709464013576508,0.434976488351822,0.709463238716125,0.435053646564484,-0.237968012690544,0.836462557315826,-0.237968862056732,0.00832258071750402,0.625938415527344,0.434900969266891,0.858753085136414,0.543643116950989,0.937492609024048,0.543643116950989,0.536084234714508,1.05193316936493,0.536084175109863,1.05193328857422,0.937492489814758,0.836311519145966,0.858754336833954,0.30820095539093,0.647589683532715,-0.93115234375,0.667724609375,-0.6240234375,0.672119140625,-0.62255859375,0.7738037109375,-0.93603515625,0.7723388671875,-0.61767578125,0.81591796875,-0.935546875,0.81591796875,-0.9384765625,0.818603515625,-0.61767578125,0.81884765625,-0.62158203125,0.93463134765625,-0.9306640625,0.93426513671875,-0.9306640625,0.93719482421875,-0.6220703125,0.93719482421875,-0.625,0.975814819335938,-0.93115234375,0.990798950195313,-0.62646484375,0.990997314453125,-0.9853515625,0.92083740234375,-0.93310546875,0.9361572265625,-0.98095703125,0.818115234375,-0.9306640625,0.818603515625,-0.93310546875,0.81689453125,0.0689697265625,0.975189208984375,0.37353515625,0.990982055664063,0.0689697265625,0.991127014160156,0.3779296875,0.975814819335938,
- 0.06158447265625,0.93719482421875,0.382080078125,0.93719482421875,0.378173828125,0.93463134765625,0.06903076171875,0.93426513671875,0.061370849609375,0.818603515625,0.382080078125,0.81884765625,0.382080078125,0.81591796875,0.06427001953125,0.81591796875,0.062103271484375,0.7742919921875,0.382568359375,0.772705078125,0.375732421875,0.671875,0.0689697265625,0.672607421875,1.7333984375,0.821044921875,1.6826171875,0.81884765625,1.685546875,0.81689453125,1.6826171875,0.93463134765625,1.72265625,0.9359130859375,1.685546875,0.9361572265625,1.7353515625,0.9208984375,0.0689697265625,0.818603515625,0.0179290771484375,0.8194580078125,0.066650390625,0.81689453125,0.0293121337890625,0.9361572265625,0.0163421630859375,0.92047119140625,0.066650390625,0.9361572265625,2.732421875,0.820556640625,2.681640625,0.81884765625,2.685546875,0.81689453125,2.681640625,0.93463134765625,2.72265625,0.9359130859375,2.685546875,0.9361572265625,2.734375,0.92095947265625,-1.837890625,0.03125,-1.828125,0.20849609375,-1.9873046875,0.212890625,-1.9951171875,0.02978515625,-0.66650390625,0.20068359375,-0.80712890625,0.20361328125,-0.66748046875,0.04052734375,-0.81298828125,0.04345703125,-0.8447265625,0.0361328125,-0.83203125,0.20947265625,-0.990234375,0.21240234375,-0.99462890625,0.029296875,0.328857421875,1.20166015625,0.18798828125,1.2008056640625,0.331787109375,1.04083251953125,0.1885986328125,1.04074096679688,0.1611328125,2.0302734375,0.01177978515625,2.2119140625,0.0044097900390625,2.029296875,0.1715087890625,2.2080078125,0.3330078125,-0.798828125,0.192626953125,-0.7958984375,0.332275390625,-0.958984375,0.186767578125,-0.9560546875,0.1549072265625,-0.9638671875,0.00959014892578125,-0.787109375,0.005157470703125,-0.970703125,0.1678466796875,-0.7900390625,0.328857421875,0.2021484375,0.18798828125,0.201171875,0.331787109375,0.041015625,0.1885986328125,0.041015625,0.011932373046875,1.210205078125,0.00548934936523438,1.02861022949219,0.1571044921875,1.03019714355469,0.1671142578125,1.2060546875,0.1627197265625,1.0411376953125,0.186767578125,2.041015625,
- 0.330078125,2.0380859375,0.1893310546875,2.197265625,0.328369140625,2.201171875,0.2071533203125,2.203125,-1.810546875,0.1982421875,-1.6708984375,0.20166015625,-1.7919921875,0.2041015625,-1.6689453125,0.03857421875,-1.8125,0.0419921875,0.1600341796875,4.99609375,0.951171875,4.828125,0.97265625,4.99609375,0.15185546875,4.83984375,0.94970703125,4.81640625,0.1585693359375,4.642578125,0.9619140625,4.630859375,0.147216796875,4.623046875,0.94921875,4.62890625,0.98486328125,4.458984375,0.9697265625,4.46484375,0.184814453125,4.453125,0.151611328125,4.244140625,0.95947265625,4.25,0.1571044921875,0.0302734375,0.1627197265625,0.04150390625,0.1671142578125,0.20654296875,0.011932373046875,0.21044921875,0.00548934936523438,0.02880859375,1.1591796875,0.996620178222656,1.951171875,0.82958984375,1.97265625,0.997173309326172,1.1513671875,0.84033203125,1.94921875,0.8172607421875,1.158203125,0.6435546875,1.9619140625,0.6328125,1.146484375,0.625,1.94921875,0.629638671875,1.984375,0.4609375,1.9697265625,0.466796875,1.1845703125,0.455078125,1.1513671875,0.24462890625,1.958984375,0.25048828125,0.6572265625,1.99462890625,0.96337890625,1.82373046875,0.970703125,1.9970703125,0.477294921875,1.826171875,0.45361328125,1.99853515625,0.2020263671875,1.9892578125,0.64501953125,1.8251953125,0.974609375,1.63232421875,0.156494140625,1.83447265625,0.0113067626953125,1.99658203125,0.0129241943359375,1.81787109375,0.3095703125,1.826171875,0.294677734375,1.6337890625,0.6533203125,1.63232421875,0.0146484375,1.63037109375,0.5400390625,1.640625,0.1541748046875,1.6220703125,0.303955078125,1.447021484375,0.0112533569335938,1.46337890625,0.67333984375,1.46484375,0.986328125,1.462158203125,0.257568359375,1.452392578125,0.00908660888671875,1.256103515625,0.214599609375,1.2484130859375,0.460693359375,1.250244140625,0.65771484375,1.45458984375,0.95556640625,1.251220703125,0.6591796875,1.2491455078125,0.0103683471679688,3.99609375,0.00155353546142578,3.8125,0.441162109375,3.994140625,0.5302734375,3.830078125,0.70654296875,4.00390625,0.36181640625,3.822265625,0.00853729248046875,
- 3.630859375,0.96142578125,3.81640625,0.9921875,3.9921875,0.5439453125,3.646484375,0.9873046875,3.630859375,0.56689453125,3.638671875,0.0100173950195313,3.462890625,0.6875,3.47265625,0.9873046875,3.4609375,0.391845703125,3.47265625,0.409423828125,3.451171875,0.0057220458984375,3.255859375,0.438232421875,3.248046875,0.69921875,3.4453125,0.69970703125,3.248046875,0.98681640625,3.25,0.6572265625,-0.0048828125,0.96337890625,-0.17578125,0.970703125,-0.001953125,0.477294921875,-0.1728515625,0.45361328125,-0.0009765625,0.2020263671875,-0.009765625,0.64501953125,-0.173828125,0.974609375,-0.3671875,0.156494140625,-0.1650390625,0.0113067626953125,-0.0029296875,0.0129241943359375,-0.181640625,0.3095703125,-0.1728515625,0.294677734375,-0.365234375,0.6533203125,-0.3671875,0.0146484375,-0.369140625,0.5400390625,-0.3583984375,0.1541748046875,-0.376953125,0.303955078125,-0.552734375,0.0112533569335938,-0.5361328125,0.67333984375,-0.5341796875,0.986328125,-0.537109375,0.257568359375,-0.546875,0.00908660888671875,-0.7431640625,0.214599609375,-0.7509765625,0.460693359375,-0.7490234375,0.65771484375,-0.544921875,0.95556640625,-0.748046875,0.6591796875,-0.75,0.0103683471679688,-2.001953125,0.00155353546142578,-2.185546875,0.441162109375,-2.00390625,0.5302734375,-2.16796875,0.70654296875,-1.994140625,0.36181640625,-2.17578125,0.00853729248046875,-2.3671875,0.96142578125,-2.181640625,0.9921875,-2.005859375,0.5439453125,-2.3515625,0.9873046875,-2.3671875,0.56689453125,-2.359375,0.0100173950195313,-2.53515625,0.6875,-2.525390625,0.9873046875,-2.537109375,0.391845703125,-2.525390625,0.409423828125,-2.546875,0.0057220458984375,-2.7421875,0.438232421875,-2.75,0.69921875,-2.552734375,0.69970703125,-2.75,0.98681640625,-2.748046875,0.0148239135742188,-1.00390625,0.010162353515625,-1.166015625,0.7978515625,-0.9990234375,0.00148105621337891,-1.17578125,0.767578125,-1.18359375,0.80078125,-1.177734375,0.80517578125,-1.361328125,0.0099029541015625,-1.365234375,0.798828125,-1.37890625,0.01165771484375,-1.3828125,0.802734375,-1.533203125,0.0108795166015625,
- -1.53515625,0.00879669189453125,-1.541015625,0.0084381103515625,-1.74609375,0.80419921875,-1.75390625,0.7841796875,-1.546875,0.7978515625,3,0.0148239135742188,2.9951171875,0.010162353515625,2.8330078125,0.00148200988769531,2.822265625,0.767578125,2.814453125,0.80078125,2.8203125,0.80517578125,2.6376953125,0.0099029541015625,2.6328125,0.798828125,2.619140625,0.01165771484375,2.615234375,0.802734375,2.4658203125,0.0108795166015625,2.4638671875,0.00879669189453125,2.4580078125,0.00844573974609375,2.251953125,0.80419921875,2.2451171875,0.7841796875,2.4521484375
- }
- UVIndex: *1000 {
- a: 6,1,13,14,0,4,15,16,6,14,71,67,15,4,9,8,2,7,10,70,9,7,5,11,66,12,11,5,3,9,14,13,8,71,14,9,76,15,11,12,16,17,18,24,23,21,22,20,19,23,24,22,21,31,25,26,32,27,29,30,28,29,31,32,30,33,34,35,36,33,37,38,34,39,38,37,40,41,42,43,44,45,41,44,46,47,48,45,46,49,50,63,62,65,51,52,64,52,49,62,69,73,64,57,58,54,53,59,68,57,53,55,60,72,56,61,60,55,57,62,63,58,57,75,69,62,64,60,61,65,11,74,66,74,11,15,67,60,77,72,64,73,77,60,78,79,80,81,96,91,87,86,88,89,84,85,95,92,93,94,81,97,90,78,80,79,82,83,85,84,86,87,76,9,70,75,57,68,98,99,100,98,100,101,101,100,102,101,102,103,103,102,104,105,104,102,106,104,105,104,106,107,107,106,108,109,108,106,108,109,110,108,110,111,111,110,112,113,107,114,115,107,113,107,115,116,116,115,117,118,119,120,119,118,121,121,118,122,121,122,123,124,123,122,122,125,124,125,126,124,126,127,124,126,128,127,128,126,129,128,129,130,128,130,131,131,130,132,132,130,133,134,135,136,135,134,137,137,134,138,137,138,139,138,134,140,141,142,143,125,142,141,142,125,144,142,144,145,144,125,146,147,148,149,148,147,150,150,147,151,150,151,152,151,147,153,154,155,156,156,157,154,158,159,160,160,159,161,162,163,164,164,165,162,166,167,168,168,167,169,170,171,172,171,170,173,174,175,176,177,176,175,178,179,180,179,178,181,182,183,184,185,184,183,186,187,188,188,189,186,188,190,189,191,192,193,194,193,192,193,194,195,196,197,198,197,196,199,199,196,200,201,202,203,204,202,201,204,205,202,205,204,206,205,206,207,208,207,206,207,208,209,209,210,207,211,209,208,209,211,210,208,212,211,211,212,210,208,213,212,214,210,212,212,213,214,215,216,217,218,215,217,215,218,219,220,221,222,223,221,220,223,224,221,224,223,225,224,225,226,226,225,227,226,227,228,228,229,226,230,228,227,228,230,229,230,227,231,230,231,229,232,231,227,233,229,231,233,231,232,234,235,236,237,235,234,238,237,234,238,239,237,237,240,235,241,235,240,239,242,237,242,239,243,244,242,243,242,245,237,242,244,245,237,245,240,246,245,244,247,240,245,245,246,247,247,241,240,244,248,246,247,249,241,246,249,247,248,250,246,246,250,249,248,251,250,249,
- 250,251,251,248,252,253,241,249,253,249,251,241,253,254,252,255,251,255,252,256,255,256,257,255,257,258,251,259,253,259,251,255,259,254,253,259,255,258,260,254,259,259,258,261,259,261,260,262,263,264,263,265,264,264,265,266,267,265,263,268,267,263,265,269,266,269,270,266,271,265,267,271,269,265,271,267,268,271,272,269,268,273,271,273,272,271,273,268,274,275,272,273,272,275,276,277,273,274,275,273,277,278,277,274,278,275,277,274,279,278,278,279,280,275,278,281,281,278,280,281,276,275,281,280,282,282,276,281,276,282,283,284,285,286,287,285,284,288,287,284,289,287,288,287,290,285,290,291,285,289,292,287,293,292,289,292,293,294,292,295,287,292,294,295,287,295,290,294,296,295,295,297,290,297,295,296,291,290,297,296,294,298,297,299,291,297,296,299,296,298,300,296,300,299,298,301,300,301,299,300,298,302,301,303,291,299,303,299,301,304,291,303,302,305,301,306,305,302,307,305,306,308,305,307,303,301,309,305,309,301,309,304,303,308,309,305,310,304,309,311,309,308,310,309,311,312,313,314,313,315,314,314,315,316,315,313,317,313,318,317,315,319,316,319,320,316,317,321,315,315,321,319,321,317,318,322,319,321,321,318,323,322,321,323,324,323,318,325,322,323,322,325,326,323,324,327,325,323,327,328,327,324,328,325,327,324,329,328,330,328,329,325,328,331,330,331,328,331,326,325,332,331,330,332,326,331,326,332,333,334,335,336,335,334,337,338,336,335,335,337,338,336,338,339,338,337,339,337,340,339,340,337,341,340,341,342,343,342,341,344,340,342,343,344,342,344,343,345,344,345,346,345,347,346,348,346,347,349,348,344,346,348,349,344,346,349,350,351,352,351,353,352,354,350,352,354,352,353,350,354,355,353,355,354,356,355,353,356,353,357,357,358,356,358,357,359,360,356,358,359,360,358,360,359,361,361,362,360,361,363,362,362,363,364,362,365,360,365,362,364,365,364,360
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *508 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,1,0,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,1,0,0,1,0,1,1,1,1,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: *317 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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
- }
- }
- 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: 2267733771936, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: -200,152.071441650391,62.5,-200,598.834533691406,-62.5,-200,152.071441650391,-62.5,-75.5400390625,152.071441650391,62.5,-75.5400390625,152.071441650391,-62.5,-75.5400390625,406.751220703125,-62.5,-200,598.834533691406,62.5,-75.5400390625,406.751220703125,62.5
- }
- PolygonVertexIndex: *24 {
- a: 2,0,6,-2,4,3,0,-3,1,5,4,-3,4,5,7,-4,0,3,7,-7,5,1,6,-8
- }
- Edges: *12 {
- a: 7,0,3,1,4,5,9,14,13,8,18,2
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.769558072090149,-0.21438467502594,0.601514399051666,-0.819043874740601,0.400260150432587,-0.411046147346497,-0.769558072090149,-0.21438467502594,-0.601514399051666,0.566238880157471,-0.276716411113739,0.776402950286865,0.566238880157471,-0.276716411113739,-0.776402950286865,0.607590615749359,0.169263571500778,-0.776004791259766,-0.819043874740601,0.400260150432587,0.411046147346497,0.607590615749359,0.169263571500778,0.776004791259766
- }
- 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.268307507038116,0.963333368301392,-7.59586691856384e-005,-0.268044114112854,0.963406562805176,0.00043904036283493,0.439427495002747,0.898277759552002,0.000889450428076088,0.478968739509583,0.871430337429047,-0.105821624398232,1.49011611938477e-008,-0.94196093082428,0.335722655057907,-1.49011611938477e-008,0.94196093082428,0.335722655057907,-1.49011611938477e-008,0.94196093082428,0.335722625255585,1.49011611938477e-008,-0.94196093082428,0.335722625255585,-0.139741599559784,0.555693686008453,0.819558918476105,0.0937600880861282,0.954911053180695,0.281698495149612,0.608168244361877,0.776053190231323,0.16695174574852,-0.124245122075081,0.9742271900177,-0.188267379999161,0.608168244361877,0.776053190231323,0.16695174574852,0.701893925666809,-0.571694791316986,0.424864739179611,0.700092613697052,0.347292721271515,-0.623905599117279,-0.751599133014679,0.213314205408096,0.62417608499527,-0.124245092272758,0.9742271900177,0.188267409801483,-1.49011611938477e-008,0.94196093082428,0.335722655057907,-0.12341271340847,0.985280930995941,-0.118282467126846,0.410875827074051,0.909249246120453,-0.066685751080513,0.0937600880861282,0.954911053180695,0.281698495149612,0.478968739509583,0.871430337429047,-0.105821624398232,0.410875827074051,0.909249246120453,-0.066685751080513,0.700092613697052,0.347292721271515,-0.623905599117279
- }
- 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.579475164413452,-0.161332383751869,0.798861980438232,0.579596996307373,0.160894513130188,0.798861861228943,0.368877559900284,-0.181353464722633,0.911614120006561,-0.315841913223267,0.283550798892975,0.905451655387878,-0.824241280555725,-0.190099224448204,-0.533374905586243,-0.824241280555725,-0.190099224448204,0.533374905586243,-0.638576865196228,0.258358031511307,-0.724893629550934,-0.638576865196228,0.258358031511307,0.724893629550934,-0.556452512741089,-0.728694975376129,0.399204522371292,-0.788696825504303,0.243915617465973,-0.564324736595154,-0.556331753730774,0.566718220710754,-0.607721626758575,-0.62637335062027,0.0701474398374558,0.776360630989075,-0.556331753730774,0.566718220710754,-0.607721626758575,0.371723741292953,0.802816808223724,0.466161489486694,0.375105261802673,-0.922354400157928,-0.0925116240978241,0.338337510824203,0.936976492404938,0.0871930196881294,0.62637335062027,-0.0701474845409393,0.776360630989075,0.824241280555725,0.190099224448204,-0.533374905586243,0.784603714942932,0.0239015556871891,-0.619536697864532,0.400435030460358,-0.114270351827145,0.909172236919403,-0.788696825504303,0.243915617465973,-0.564324736595154,-0.315841913223267,0.283550798892975,0.905451655387878,0.400435030460358,-0.114270351827145,0.909172236919403,0.375105261802673,-0.922354400157928,-0.0925116240978241
- }
- 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: *36 {
- a: 0.679935276508331,3.34770738845691e-005,0.998827934265137,0,0.998827934265137,1.51805567741394,0.67993551492691,1.51763510704041,0.499476850032806,1.16477954387665,0.499413967132568,1.51805567741394,0.998827934265137,1.51805567741394,0.998720049858093,1.16477954387665,0.998827576637268,1.5178142786026,0.499413847923279,0.7589071393013,0.499413937330246,2.33056915988072e-008,0.998827934265137,3.25417737201406e-008,0.49944531917572,0.582391798496246,0.499413967132568,1.51805567741394,0,0,0.499413967132568,0,0.499413967132568,0.75902783870697,0,1.51805567741394
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,10,12,13,5,14,15,16,17,9,3,17,13
- }
- }
- 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: 2267733766816, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 200,600,-62.5,0.5302734375,600,-62.5,0.5302734375,600,62.5,68.5224609375,407.916687011719,-62.5,0.5302734375,454.310302734375,62.5,0.5302734375,454.310302734375,-62.5,200,600,62.5,68.5224609375,407.916687011719,62.5
- }
- PolygonVertexIndex: *24 {
- a: 1,2,6,-1,0,3,5,-2,4,5,3,-8,1,5,4,-3,2,4,7,-7,3,0,6,-8
- }
- Edges: *12 {
- a: 3,1,0,14,5,6,8,4,18,2,10,11
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: 0.813720345497131,0.288034528493881,-0.504871606826782,-0.464873701334,0.636477649211884,-0.615458011627197,-0.464873731136322,0.636477649211884,0.615458011627197,0.464709937572479,-0.636253297328949,-0.615813612937927,-0.572702944278717,-0.202721014618874,0.794302046298981,-0.572702825069427,-0.202720984816551,-0.794302046298981,0.813720345497131,0.288034528493881,0.504871547222137,0.464709907770157,-0.636253356933594,0.615813612937927
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: -3.486871264613e-006,0.695135414600372,0.718878865242004,0.249558880925179,-0.572754740715027,0.780815184116364,1.49011611938477e-008,-0.868586421012878,0.495537668466568,-1.19209289550781e-006,0.86858731508255,0.495536208152771,1.49011611938477e-008,0.868586480617523,0.495537668466568,-0.226920813322067,0.586670279502869,-0.777383387088776,-0.671615362167358,0.671615362167358,0.31283500790596,0.158819660544395,0.743808209896088,0.649250149726868,-0.816219329833984,0.231008678674698,-0.529547810554504,0.216868981719017,0.896952390670776,-0.385284900665283,0.38531506061554,0.771477699279785,-0.506314694881439,0.058060459792614,-0.672078669071198,-0.738200008869171,0.158819660544395,0.743808209896088,0.649250149726868,0.127754867076874,0.935030937194824,-0.330750703811646,-0.816219329833984,0.231008678674698,-0.529547810554504,0.249558880925179,-0.572754740715027,0.780815184116364,0.226782858371735,-0.586346626281738,0.777667880058289,-0.816219329833984,0.231008678674698,-0.529547810554504,0.058060459792614,-0.672078669071198,-0.738200008869171,-1.49011611938477e-008,0.868586421012878,-0.495537668466568,0.807779312133789,0.589484751224518,0.000522062182426453,-0.125723838806152,0.935242176055908,0.330931633710861,-0.49191802740097,0.803953468799591,0.334178745746613,0.058060459792614,-0.672078669071198,-0.738200008869171
- }
- 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.885377109050751,-0.334190040826797,0.32314795255661,-0.84947794675827,-0.516573488712311,-0.107419975101948,-0.581256568431854,0.403229087591171,0.706786453723907,-0.581256568431854,0.403227269649506,-0.706787467002869,-0.581256568431854,0.403229087591171,-0.706786453723907,-0.855892300605774,-0.500998735427856,-0.128252401947975,-0.470047175884247,-0.712626874446869,0.52078652381897,-0.871015906333923,-0.20407247543335,0.446862041950226,-0.0761405453085899,-0.951598346233368,-0.297763645648956,0.790556311607361,-0.39291313290596,-0.469723224639893,0.797230839729309,-0.00199283240363002,0.603671312332153,0.883557498455048,0.378803282976151,-0.275380492210388,-0.871015906333923,-0.20407247543335,0.446862041950226,-0.809747099876404,0.290897786617279,0.509596168994904,-0.0761405453085899,-0.951598346233368,-0.297763645648956,-0.84947794675827,-0.516573488712311,-0.107419975101948,0.855839908123016,0.501092672348022,0.128234922885895,-0.0761405453085899,-0.951598346233368,-0.297763645648956,0.883557498455048,0.378803282976151,-0.275380492210388,0.581256568431854,-0.403229087591171,-0.706786453723907,0.362680554389954,-0.497684121131897,0.787891685962677,0.5674968957901,-0.205811366438866,0.797238230705261,-0.309638231992722,-0.520283460617065,0.795882701873779,0.883557498455048,0.378803282976151,-0.275380492210388
- }
- 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: *26 {
- a: 0.499476701021194,1.16478359699249,0.499413967132568,1.51805567741394,0,1.51805567741394,0.000233631115406752,1.16478085517883,-9.73005214177647e-008,1.5178142786026,0.499413847923279,0.7589071393013,0.499413788318634,1.13836073875427,0.499413728713989,1.5178142786026,0.499413967132568,1.13854169845581,0.499429523944855,1.42955565452576,0.499445289373398,1.34129691123962,0.499413967132568,0.75902783870697,0.998827934265137,1.51805567741394
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,7,9,8,1,1,8,11,12,5,3,12,11
- }
- }
- 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: 2267733747872, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: -200,600,62.5,-0.451171875,600,-62.5,-0.451171875,600,62.5,-75.5400390625,407.916687011719,62.5,-0.451171875,454.310302734375,62.5,-0.451171875,454.310302734375,-62.5,-200,600,-62.5,-75.5400390625,407.916687011719,-62.5
- }
- PolygonVertexIndex: *24 {
- a: 0,2,1,-7,0,3,4,-3,4,5,1,-3,3,7,5,-5,1,5,7,-7,6,7,3,-1
- }
- Edges: *12 {
- a: 3,0,6,1,13,5,9,8,4,18,2,12
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.796582698822021,0.31139862537384,0.518157124519348,0.460975885391235,0.631391227245331,-0.623575389385223,0.460975795984268,0.631391167640686,0.623575448989868,-0.458526492118835,-0.628036260604858,0.628747999668121,0.569990336894989,-0.222819611430168,0.790861845016479,0.569990336894989,-0.222819611430168,-0.79086172580719,-0.796582698822021,0.31139862537384,-0.518157064914703,-0.458526462316513,-0.628036260604858,-0.628747820854187
- }
- 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,-0.85712468624115,0.515109121799469,-0.320773333311081,-0.536620080471039,0.78047639131546,0.151836708188057,0.636209189891815,0.756428122520447,-1.25169765397004e-006,0.857123851776123,0.515110552310944,0,0.85712468624115,-0.515109121799469,0.231950208544731,0.598406076431274,0.76688277721405,-0.675320982933044,-0.675320982933044,0.296450883150101,-0.320773333311081,-0.536620080471039,0.78047639131546,0.46827295422554,0.879004716873169,-0.0898406729102135,0.767658352851868,-0.198746025562286,0.609262406826019,0.151836708188057,0.636209189891815,0.756428122520447,-0.320773333311081,-0.536620080471039,0.78047639131546,0.807650208473206,-0.58966189622879,-1.49011594174908e-008,-0.249101996421814,-0.58831250667572,0.769309163093567,0.767658352851868,-0.198746025562286,0.609262406826019,0.46827295422554,0.879004716873169,-0.0898406729102135,-0.229938477277756,-0.593706786632538,-0.771129488945007,-0.675320982933044,-0.675320982933044,-0.296450883150101,-0.23195019364357,-0.59840601682663,0.766882956027985,1.49011629702045e-008,0.85712468624115,0.515109121799469,0.363931775093079,0.93142569065094,0.000275850354228169,-0.867981493473053,0.46830826997757,0.165213972330093,-0.51064920425415,0.765241026878357,0.391974121332169,0.418420404195786,0.902644038200378,0.100788630545139
- }
- 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.604529619216919,-0.410326957702637,-0.682770609855652,-0.827409148216248,0.559807121753693,0.0448353439569473,-0.874326407909393,0.443376779556274,-0.197408780455589,-0.604529678821564,-0.41032874584198,0.682769536972046,0.604529619216919,0.410326957702637,0.682770609855652,0.857876777648926,-0.49747434258461,0.12871190905571,0.468030512332916,-0.703059732913971,-0.535401225090027,-0.827409148216248,0.559807121753693,0.0448353439569473,0.675152957439423,-0.421547472476959,-0.605364441871643,0.292936265468597,0.954385340213776,-0.0577660426497459,-0.874326407909393,0.443376779556274,-0.197408780455589,-0.827409148216248,0.559807121753693,0.0448353439569473,-0.37074875831604,-0.5078085064888,-0.777609169483185,0.853054523468018,-0.509370744228363,-0.113311514258385,0.292936265468597,0.954385340213776,-0.0577660426497459,0.675152957439423,-0.421547472476959,-0.605364441871643,-0.857105314731598,0.498856037855148,-0.128503352403641,-0.468030601739883,0.703059792518616,-0.535401225090027,-0.857876777648926,0.497474282979965,0.128711849451065,-0.604529678821564,-0.410326987504959,0.682770609855652,0.482710599899292,-0.188354045152664,-0.855285465717316,0.19068743288517,0.621496438980103,-0.759855568408966,-0.727317690849304,-0.14133919775486,-0.671589314937592,-0.436325937509537,0.297093957662582,-0.849326074123383
- }
- 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: *30 {
- a: 0.998827934265137,1.51805567741394,0.499413967132568,1.51805567741394,0.499476701021194,1.16478359699249,0.998719751834869,1.16478633880615,0,1.51805567741394,0.499413967132568,0.75902783870697,0.499413967132568,1.13854169845581,0.499413967132568,1.51805567741394,0.499460995197296,0.873587727546692,0.499413967132568,1.51805567741394,0.49944531917572,0.582391798496246,0.499413728713989,1.5178142786026,0.499413788318634,1.13836073875427,0.499413847923279,0.7589071393013,0.998827576637268,1.5178142786026
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,1,7,8,2,1,9,10,8,7,11,12,13,14,14,10,5,0
- }
- }
- 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: 2267733776032, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: -200,-7.15255737304688e-007,62.5,200,2.38418579101563e-007,62.5,-200,151.547088623047,62.5,200,151.547088623047,62.5,-200,151.547088623047,-62.5,200,151.547088623047,-62.5,-200,-2.38418579101563e-007,-62.5,200,-2.38418579101563e-007,-62.5
- }
- PolygonVertexIndex: *24 {
- a: 0,1,3,-3,6,0,2,-5,3,1,7,-6,2,3,5,-5,1,0,6,-8,5,7,6,-5
- }
- Edges: *12 {
- a: 0,18,6,11,4,7,1,14,2,3,10,9
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.234360739588737,-0.61858195066452,0.749954283237457,0.234360739588737,-0.61858195066452,0.749954283237457,-0.234360739588737,0.61858195066452,0.749954283237457,0.234360739588737,0.61858195066452,0.749954283237457,-0.234360739588737,0.61858195066452,-0.749954283237457,0.234360739588737,0.61858195066452,-0.749954283237457,-0.234360739588737,-0.61858195066452,-0.749954283237457,0.234360739588737,-0.61858195066452,-0.749954283237457
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: -7.45057970874541e-009,0.771439015865326,0.636303186416626,0,0.771439015865326,0.636303186416626,0,0.771439015865326,-0.636303186416626,0,0.771439015865326,-0.636303186416626,-0.935130953788757,0.354302436113358,-9.47713942878181e-006,-0.935112714767456,0.354350447654724,5.4776668548584e-005,0.935182571411133,0.354166299104691,0.000118955984362401,0.935112714767456,0.354350447654724,5.4776668548584e-005,-0.935042977333069,0.354534447193146,-0.000228315591812134,0.935175776481628,0.354183912277222,-0.00010228157043457,0.935144186019897,0.354267507791519,2.3454431357095e-005,-0.935175776481628,0.354183912277222,-0.00010228157043457,0,-0.771439015865326,0.636303186416626,-1.53481937559263e-006,-0.771438777446747,0.63630348443985,-3.09199094772339e-006,0.771439611911774,0.636302649974823,-1.53481937559263e-006,0.771438777446747,0.63630348443985,-0,0.771439015865326,0.636303186416626,-7.45057970874541e-009,0.771439015865326,0.636303186416626,-0,-0.771439015865326,0.636303186416626,-0,-0.771439015865326,0.636303186416626,0,0.771439015865326,0.636303186416626,0,0.771439015865326,-0.636303186416626,-7.45057970874541e-009,0.771439015865326,-0.636303186416626,0,0.771439015865326,0.636303186416626
- }
- 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.972149729728699,-0.14912448823452,0.180795043706894,0.972149729728699,0.14912448823452,-0.180795028805733,0.972149729728699,-0.14912448823452,-0.180795028805733,0.972149729728699,0.14912448823452,0.180795028805733,-0.265716463327408,-0.70130318403244,0.66148966550827,0.265780508518219,0.701278924942017,0.66148966550827,0.265534907579422,-0.701371967792511,0.66148966550827,-0.265780508518219,0.701278924942017,0.66148966550827,0.266025841236115,0.701186001300812,-0.66148966550827,0.265558481216431,-0.701363086700439,-0.661489605903625,-0.265669912099838,0.701320827007294,-0.66148966550827,-0.265558481216431,-0.701363086700439,-0.661489605903625,-0.972149729728699,-0.14912448823452,-0.180795028805733,-0.972149729728699,0.149125710129738,0.180794030427933,-0.972149729728699,0.149122029542923,-0.180797055363655,-0.972149729728699,-0.149125710129738,0.180794030427933,-0.972149729728699,-0.14912448823452,0.180795028805733,-0.972149729728699,0.14912448823452,-0.180795043706894,-0.972149729728699,0.14912448823452,0.180795028805733,-0.972149729728699,-0.14912448823452,-0.180795028805733,-0.972149729728699,0.14912448823452,-0.180795028805733,-0.972149729728699,-0.14912448823452,-0.180795028805733,-0.972149729728699,0.14912448823452,0.180795043706894,-0.972149729728699,-0.14912448823452,0.180795028805733
- }
- 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: *48 {
- a: 0,0,0.998827934265137,0,0.998827934265137,1.51805567741394,0,1.51805567741394,0.679935276508331,3.34770738845691e-005,0.998827934265137,0,0.998827934265137,1.51805567741394,0.67993551492691,1.51763510704041,0.871270895004272,1.51805567741394,0.871270895004272,-3.07559967041016e-005,1.19016361236572,-0.000113759764644783,1.19016349315643,1.51886200904846,0.998827934265137,1.51805567741394,0,1.51805567741394,0.000233631115406752,1.16478085517883,0.998719751834869,1.16478633880615,0,1.51805567741394,0.998827934265137,1.51805567741394,0.998720049858093,1.16477954387665,0.000233670478337444,1.16477954387665,-9.73005214177647e-008,1.5178142786026,-6.23248581632652e-008,1.40696094774739e-008,0.998827934265137,3.25417737201406e-008,0.998827576637268,1.5178142786026
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23
- }
- }
- 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: 2267733748896, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 200,152.071441650391,62.5,200,598.883972167969,62.5,200,152.071441650391,-62.5,68.5224609375,152.071441650391,62.5,68.5224609375,152.071441650391,-62.5,68.5224609375,406.800689697266,62.5,200,598.883972167969,-62.5,68.5224609375,406.800689697266,-62.5
- }
- PolygonVertexIndex: *24 {
- a: 1,5,3,-1,1,0,2,-7,0,3,4,-3,5,7,4,-4,6,2,4,-8,6,7,5,-2
- }
- Edges: *12 {
- a: 7,3,5,2,10,9,1,12,0,19,6,13
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: 0.751981198787689,-0.221275433897972,0.62093597650528,0.797394633293152,0.411572247743607,0.441327661275864,0.751981198787689,-0.221275433897972,-0.62093597650528,-0.545200169086456,-0.281402975320816,0.789664030075073,-0.545200169086456,-0.281402975320816,-0.789664030075073,-0.590146422386169,0.173654466867447,0.788397908210754,0.797394633293152,0.411572247743607,-0.441327661275864,-0.590146422386169,0.173654466867447,-0.788397908210754
- }
- 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.139547392725945,0.585747241973877,-0.798390090465546,-0.0794060826301575,0.959368765354156,-0.270751446485519,0,0.941975891590118,0.335680514574051,0.11750665307045,0.971886038780212,0.204033449292183,-0.142320588231087,-0.582440733909607,0.800317227840424,0.282909393310547,0.95914626121521,-0.000816598359961063,0.282431423664093,0.959287524223328,0.00018736720085144,-0.458985447883606,0.888443529605865,-0.000756397843360901,-1.49011611938477e-008,0.941975951194763,0.335680574178696,-0,0.941975891590118,0.335680514574051,0.658616483211517,-0.72655588388443,-0.19580839574337,1.49011611938477e-008,-0.941975951194763,0.335680574178696,-0.695078313350677,0.387408077716827,-0.605624556541443,0.805614113807678,0.189689487218857,-0.561251938343048,0.658616483211517,-0.72655588388443,-0.19580839574337,-0.838247895240784,0.171917676925659,-0.517479240894318,0.573889553546906,-0.29107591509819,0.765457808971405,0.11750665307045,0.971886038780212,-0.204033449292183,-2.98023188349816e-008,0.941975891590118,-0.335680484771729,0.117015592753887,0.98467755317688,0.12929679453373,0.573889553546906,-0.29107591509819,0.765457808971405,0.697658360004425,0.601088762283325,-0.389827072620392,-0.0794060826301575,0.959368765354156,-0.270751446485519,-0.142320588231087,-0.582440733909607,0.800317227840424
- }
- 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.587101638317108,-0.698218107223511,-0.409637838602066,0.803381502628326,0.222386583685875,0.55237877368927,0.83830589056015,-0.183013081550598,0.513565480709076,0.648626565933228,0.0804652124643326,-0.756841361522675,-0.586435556411743,0.700978636741638,0.405859887599945,0.595387816429138,-0.176282733678818,-0.783860981464386,-0.595614671707153,0.175512716174126,-0.78386127948761,-0.39178341627121,-0.203166127204895,-0.897345781326294,-0.659184575080872,-0.252425491809845,0.708348214626312,-0.83830589056015,0.183013081550598,-0.513565480709076,-0.518633902072906,-0.626840472221375,0.581455111503601,-0.659184575080872,-0.252425491809845,-0.708348214626312,-0.410601109266281,-0.905405521392822,-0.107924066483974,0.0520868897438049,-0.966365396976471,-0.251843094825745,-0.518633902072906,-0.626840472221375,0.581455111503601,0.0098629966378212,-0.94406396150589,-0.329614967107773,-0.186581313610077,0.863645255565643,0.468299359083176,-0.648626565933228,-0.0804652124643326,-0.756841361522675,-0.83830589056015,0.183013051748276,0.513565480709076,-0.798770666122437,0.0159508157521486,0.601424157619476,-0.186581313610077,0.863645255565643,0.468299359083176,-0.406201899051666,0.780087471008301,0.475881934165955,0.803381502628326,0.222386583685875,0.55237877368927,-0.586435556411743,0.700978636741638,0.405859887599945
- }
- 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.998827934265137,1.51805567741394,0.499413967132568,0.75902783870697,0.499413967132568,0,0.998827934265137,0,0.871270895004272,1.51805567741394,0.871270895004272,-3.07559967041016e-005,1.19016361236572,-0.000113759764644783,1.19016349315643,1.51886200904846,0,1.51805567741394,0.499413967132568,1.51805567741394,0.499476850032806,1.16477954387665,0.000233670478337444,1.16477954387665,0.499445289373398,1.34129691123962,-9.73005214177647e-008,1.5178142786026,-6.23248581632652e-008,1.40696094774739e-008,0.499413937330246,2.33056915988072e-008,0.499413847923279,0.7589071393013
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,1,12,10,2,13,14,15,16,13,12,1,4
- }
- }
- 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
- }
- }
- }
- Model: 2268468977824, "Model::SM_Window_Thick_02", "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: 2268468982464, "Model::LOD_Group_SM_Window_Thick_02", "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: 2268468994064, "Model::SM_Window_Thick_02_LOD0", "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: 2268468968544, "Model::SM_Window_Thick_02_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: 2268469005664, "Model::SM_Window_Thick_02_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: 2268468975504, "Model::UCX_SM_Window_Thick_02_LOD0_05", "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: 2268469007984, "Model::UCX_SM_Window_Thick_02_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: 2268469003344, "Model::UCX_SM_Window_Thick_02_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"
- }
- Model: 2268468987104, "Model::UCX_SM_Window_Thick_02_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: 2268468984784, "Model::UCX_SM_Window_Thick_02_LOD0_04", "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: 2267913047360, "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: 2267913049760, "Material::MI_Trim_02", "" {
- 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: 2267913056960, "Material::MI_Arch_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: 2267913037280, "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: 2268161653552, "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: 2268161668752, "Video::file71", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Trim_02_BC.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Trim_02_BC.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Trim_02_BC.png"
- }
- Video: 2268161666752, "Video::file18", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Arch_01_BC.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Arch_01_BC.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Arch_01_BC.png"
- }
- Video: 2268161671152, "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: 2268161669152, "Video::file31", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Trim_02_N.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Trim_02_N.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Trim_02_N.png"
- }
- Video: 2268161664752, "Video::file33", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Arch_01_N.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Arch_01_N.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Arch_01_N.png"
- }
- Texture: 2267913044480, "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: 2267913036800, "Texture::file71", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file71"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file71"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Trim_02_BC.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Trim_02_BC.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2267913045440, "Texture::file18", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file18"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file18"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Arch_01_BC.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Arch_01_BC.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2267913030560, "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: 2267913045920, "Texture::file31", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file31"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file31"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Trim_02_N.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Trim_02_N.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2267913027680, "Texture::file33", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file33"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file33"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Arch_01_N.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Arch_01_N.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- AnimationStack: 2266939422656, "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: 2268558892304, "AnimLayer::BaseLayer", "" {
- }
- }
- ; Object connections
- ;------------------------------------------------------------------
- Connections: {
-
- ;Model::SM_Window_Thick_02, Model::RootNode
- C: "OO",2268468977824,0
-
- ;AnimLayer::BaseLayer, AnimStack::Take 001
- C: "OO",2268558892304,2266939422656
-
- ;NodeAttribute::, Model::SM_Window_Thick_02
- C: "OO",2268466662976,2268468977824
-
- ;Model::LOD_Group_SM_Window_Thick_02, Model::SM_Window_Thick_02
- C: "OO",2268468982464,2268468977824
-
- ;Model::UCX_SM_Window_Thick_02_LOD0_05, Model::SM_Window_Thick_02
- C: "OO",2268468975504,2268468977824
-
- ;Model::UCX_SM_Window_Thick_02_LOD0_01, Model::SM_Window_Thick_02
- C: "OO",2268469007984,2268468977824
-
- ;Model::UCX_SM_Window_Thick_02_LOD0_02, Model::SM_Window_Thick_02
- C: "OO",2268469003344,2268468977824
-
- ;Model::UCX_SM_Window_Thick_02_LOD0_03, Model::SM_Window_Thick_02
- C: "OO",2268468987104,2268468977824
-
- ;Model::UCX_SM_Window_Thick_02_LOD0_04, Model::SM_Window_Thick_02
- C: "OO",2268468984784,2268468977824
-
- ;NodeAttribute::, Model::LOD_Group_SM_Window_Thick_02
- C: "OO",2266907517952,2268468982464
-
- ;Model::SM_Window_Thick_02_LOD0, Model::LOD_Group_SM_Window_Thick_02
- C: "OO",2268468994064,2268468982464
-
- ;Model::SM_Window_Thick_02_LOD1, Model::LOD_Group_SM_Window_Thick_02
- C: "OO",2268468968544,2268468982464
-
- ;Model::SM_Window_Thick_02_LOD2, Model::LOD_Group_SM_Window_Thick_02
- C: "OO",2268469005664,2268468982464
-
- ;Texture::file4, Material::MI_Wall_01
- C: "OP",2267913044480,2267913047360, "DiffuseColor"
-
- ;Texture::file24, Material::MI_Wall_01
- C: "OP",2267913030560,2267913047360, "NormalMap"
-
- ;Texture::file71, Material::MI_Trim_02
- C: "OP",2267913036800,2267913049760, "DiffuseColor"
-
- ;Texture::file31, Material::MI_Trim_02
- C: "OP",2267913045920,2267913049760, "NormalMap"
-
- ;Texture::file18, Material::MI_Arch_01
- C: "OP",2267913045440,2267913056960, "DiffuseColor"
-
- ;Texture::file33, Material::MI_Arch_01
- C: "OP",2267913027680,2267913056960, "NormalMap"
-
- ;Video::file4, Texture::file4
- C: "OO",2268161653552,2267913044480
-
- ;Video::file71, Texture::file71
- C: "OO",2268161668752,2267913036800
-
- ;Video::file18, Texture::file18
- C: "OO",2268161666752,2267913045440
-
- ;Video::file24, Texture::file24
- C: "OO",2268161671152,2267913030560
-
- ;Video::file31, Texture::file31
- C: "OO",2268161669152,2267913045920
-
- ;Video::file33, Texture::file33
- C: "OO",2268161664752,2267913027680
-
- ;Geometry::, Model::SM_Window_Thick_02_LOD0
- C: "OO",2267733755040,2268468994064
-
- ;Material::MI_Wall_01, Model::SM_Window_Thick_02_LOD0
- C: "OO",2267913047360,2268468994064
-
- ;Material::MI_Trim_02, Model::SM_Window_Thick_02_LOD0
- C: "OO",2267913049760,2268468994064
-
- ;Material::MI_Arch_01, Model::SM_Window_Thick_02_LOD0
- C: "OO",2267913056960,2268468994064
-
- ;Geometry::, Model::SM_Window_Thick_02_LOD1
- C: "OO",2267733773984,2268468968544
-
- ;Material::MI_Wall_01, Model::SM_Window_Thick_02_LOD1
- C: "OO",2267913047360,2268468968544
-
- ;Material::MI_Trim_02, Model::SM_Window_Thick_02_LOD1
- C: "OO",2267913049760,2268468968544
-
- ;Material::MI_Arch_01, Model::SM_Window_Thick_02_LOD1
- C: "OO",2267913056960,2268468968544
-
- ;Geometry::, Model::SM_Window_Thick_02_LOD2
- C: "OO",2267733775008,2268469005664
-
- ;Material::MI_Wall_01, Model::SM_Window_Thick_02_LOD2
- C: "OO",2267913047360,2268469005664
-
- ;Material::MI_Trim_02, Model::SM_Window_Thick_02_LOD2
- C: "OO",2267913049760,2268469005664
-
- ;Material::MI_Arch_01, Model::SM_Window_Thick_02_LOD2
- C: "OO",2267913056960,2268469005664
-
- ;Geometry::, Model::UCX_SM_Window_Thick_02_LOD0_05
- C: "OO",2267733771936,2268468975504
-
- ;Material::M_Collision_01, Model::UCX_SM_Window_Thick_02_LOD0_05
- C: "OO",2267913037280,2268468975504
-
- ;Geometry::, Model::UCX_SM_Window_Thick_02_LOD0_01
- C: "OO",2267733766816,2268469007984
-
- ;Material::M_Collision_01, Model::UCX_SM_Window_Thick_02_LOD0_01
- C: "OO",2267913037280,2268469007984
-
- ;Geometry::, Model::UCX_SM_Window_Thick_02_LOD0_02
- C: "OO",2267733747872,2268469003344
-
- ;Material::M_Collision_01, Model::UCX_SM_Window_Thick_02_LOD0_02
- C: "OO",2267913037280,2268469003344
-
- ;Geometry::, Model::UCX_SM_Window_Thick_02_LOD0_03
- C: "OO",2267733776032,2268468987104
-
- ;Material::M_Collision_01, Model::UCX_SM_Window_Thick_02_LOD0_03
- C: "OO",2267913037280,2268468987104
-
- ;Geometry::, Model::UCX_SM_Window_Thick_02_LOD0_04
- C: "OO",2267733748896,2268468984784
-
- ;Material::M_Collision_01, Model::UCX_SM_Window_Thick_02_LOD0_04
- C: "OO",2267913037280,2268468984784
- }
- ;Takes section
- ;----------------------------------------------------
- Takes: {
- Current: "Take 001"
- Take: "Take 001" {
- FileName: "Take_001.tak"
- LocalTime: 1539538600,46186158000
- ReferenceTime: 1539538600,46186158000
- }
- }
|