| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683 |
- ; FBX 7.5.0 project file
- ; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors.
- ; All rights reserved.
- ; ----------------------------------------------------
- FBXHeaderExtension: {
- FBXHeaderVersion: 1003
- FBXVersion: 7500
- CreationTimeStamp: {
- Version: 1000
- Year: 2020
- Month: 7
- Day: 2
- Hour: 13
- Minute: 58
- Second: 14
- Millisecond: 975
- }
- Creator: "FBX SDK/FBX Plugins version 2016.1.2"
- SceneInfo: "SceneInfo::GlobalInfo", "UserData" {
- Type: "UserData"
- Version: 100
- MetaData: {
- Version: 100
- Title: ""
- Subject: ""
- Author: ""
- Keywords: ""
- Revision: ""
- Comment: ""
- }
- Properties70: {
- P: "DocumentUrl", "KString", "Url", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\SM_Round_Tower_Window_03.fbx"
- P: "SrcDocumentUrl", "KString", "Url", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\SM_Round_Tower_Window_03.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", "", "", "02/07/2020 10:58:14.974"
- P: "Original|FileName", "KString", "", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\SM_Round_Tower_Window_03.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", "", "", "02/07/2020 10:58:14.974"
- P: "Original|ApplicationActiveProject", "KString", "", "", "A:\Lordenfel\Maya"
- P: "Original|ApplicationNativeFile", "KString", "", "", "A:\Lordenfel\Maya\Lordenfel_05.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: 2399254718720, "", "Scene" {
- Properties70: {
- P: "SourceObject", "object", "", ""
- P: "ActiveAnimStackName", "KString", "", "", "Take 001"
- }
- RootNode: 0
- }
- }
- ; Document References
- ;------------------------------------------------------------------
- References: {
- }
- ; Object definitions
- ;------------------------------------------------------------------
- Definitions: {
- Version: 100
- Count: 69
- 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: 25
- 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: 23
- 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: 2403878874880, "NodeAttribute::", "Null" {
- Properties70: {
- P: "Look", "enum", "", "",0
- }
- TypeFlags: "Null"
- }
- NodeAttribute: 2403873697696, "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: 2399509529824, "Geometry::", "Mesh" {
- Vertices: *5934 {
- a: 382.50390625,0,-76.0850830078125,360.3125,0,-149.246337890625,324.2734375,0,-216.672119140625,275.7734375,0,-275.771362304688,216.671875,0,-324.272827148438,149.24609375,0,-360.312744140625,76.0859375,0,-382.505981445313,0,0,-389.999755859375,-76.0859375,0,-382.505981445313,-149.24609375,0,-360.312866210938,-216.671875,0,-324.273071289063,-275.7734375,0,-275.771606445313,-324.2734375,0,-216.672485351563,-360.3125,0,-149.246704101563,-382.50390625,0,-76.08544921875,-390,0,-0.000244140625,-382.50390625,0,76.0849609375,-360.3125,0,149.246215820313,-324.2734375,0,216.671997070313,-275.7734375,0,275.771362304688,-216.671875,0,324.272827148438,-149.24609375,0,360.312744140625,-76.0859375,0,382.505981445313,0,0,389.999755859375,76.0859375,0,382.506103515625,149.24609375,0,360.312866210938,216.671875,0,324.27294921875,275.7734375,0,275.771484375,324.2734375,0,216.672241210938,360.3125,0,149.246459960938,382.50390625,0,76.0850830078125,390,0,-0.0001220703125,382.50390625,600,-76.0850830078125,360.3125,600,-149.246337890625,324.2734375,600,-216.672119140625,275.7734375,600,-275.771362304688,216.671875,600,-324.272827148438,149.24609375,600,-360.312744140625,76.0859375,600,-382.505981445313,0,600,-389.999755859375,-76.0859375,600,-382.505981445313,-149.24609375,600,-360.312866210938,-216.671875,600,-324.273071289063,-275.7734375,600,-275.771606445313,-324.2734375,600,-216.672485351563,-360.3125,600,-149.246704101563,-382.50390625,600,-76.08544921875,-390,600,-0.000244140625,-382.50390625,600,76.0849609375,-360.3125,600,149.246215820313,-324.2734375,600,216.671997070313,-275.7734375,600,275.771362304688,-216.671875,600,324.272827148438,-149.24609375,600,360.312744140625,-76.0859375,600,382.505981445313,0,600,389.999755859375,76.0859375,600,382.506103515625,149.24609375,600,360.312866210938,216.671875,600,324.27294921875,275.7734375,600,275.771484375,324.2734375,600,216.672241210938,360.3125,600,149.246459960938,382.50390625,600,76.0850830078125,390,600,-0.0001220703125,382.50390625,500,-76.0850830078125,360.3125,500,-149.246337890625,
- 324.2734375,500,-216.672119140625,275.7734375,500,-275.771362304688,216.671875,500,-324.272827148438,149.24609375,500,-360.312744140625,76.0859375,500,-382.505981445313,0,500,-389.999755859375,-76.0859375,500,-382.505981445313,-149.24609375,500,-360.312866210938,-216.671875,500,-324.273071289063,-275.7734375,500,-275.771606445313,-324.2734375,500,-216.672485351563,-360.3125,500,-149.246704101563,-382.50390625,500,-76.08544921875,-390,500,-0.000244140625,-382.50390625,500,76.0849609375,-360.3125,500,149.246215820313,-324.2734375,500,216.671997070313,-275.7734375,500,275.771362304688,-216.671875,500,324.272827148438,-149.24609375,500,360.312744140625,-76.0859375,500,382.505981445313,0,500,389.999755859375,76.0859375,500,382.506103515625,149.24609375,500,360.312866210938,216.671875,500,324.27294921875,275.7734375,500,275.771484375,324.2734375,500,216.672241210938,360.3125,500,149.246459960938,382.50390625,500,76.0850830078125,390,500,-0.0001220703125,382.50390625,400,-76.0850830078125,360.3125,400,-149.246337890625,324.2734375,400,-216.672119140625,275.7734375,400,-275.771362304688,216.671875,400,-324.272827148438,149.24609375,400,-360.312744140625,76.0859375,400,-382.505981445313,0,400,-389.999755859375,-76.0859375,400,-382.505981445313,-149.24609375,400,-360.312866210938,-216.671875,400,-324.273071289063,-275.7734375,400,-275.771606445313,-324.2734375,400,-216.672485351563,-360.3125,400,-149.246704101563,-382.50390625,400,-76.08544921875,-390,400,-0.000244140625,-382.50390625,400,76.0849609375,-360.3125,400,149.246215820313,-324.2734375,400,216.671997070313,-275.7734375,400,275.771362304688,-216.671875,400,324.272827148438,-149.24609375,400,360.312744140625,-76.0859375,400,382.505981445313,0,400,389.999755859375,76.0859375,400,382.506103515625,149.24609375,400,360.312866210938,216.671875,400,324.27294921875,275.7734375,400,275.771484375,324.2734375,400,216.672241210938,360.3125,400,149.246459960938,382.50390625,400,76.0850830078125,390,400,-0.0001220703125,382.50390625,300,-76.0850830078125,360.3125,300,-149.246337890625,
- 324.2734375,300,-216.672119140625,275.7734375,300,-275.771362304688,216.671875,300,-324.272827148438,149.24609375,300,-360.312744140625,76.0859375,300,-382.505981445313,0,300,-389.999755859375,-76.0859375,300,-382.505981445313,-149.24609375,300,-360.312866210938,-216.671875,300,-324.273071289063,-275.7734375,300,-275.771606445313,-324.2734375,300,-216.672485351563,-360.3125,300,-149.246704101563,-382.50390625,300,-76.08544921875,-390,300,-0.000244140625,-382.50390625,300,76.0849609375,-360.3125,300,149.246215820313,-324.2734375,300,216.671997070313,-275.7734375,300,275.771362304688,-216.671875,300,324.272827148438,-149.24609375,300,360.312744140625,-76.0859375,300,382.505981445313,76.0859375,300,382.506103515625,149.24609375,300,360.312866210938,216.671875,300,324.27294921875,275.7734375,300,275.771606445313,324.2734375,300,216.672241210938,360.3125,300,149.246459960938,382.50390625,300,76.0850830078125,390,300,-0.0001220703125,382.50390625,200,-76.0850830078125,360.3125,200,-149.246337890625,324.2734375,200,-216.672119140625,275.7734375,200,-275.771362304688,216.671875,200,-324.272827148438,149.24609375,200,-360.312744140625,76.0859375,200,-382.505981445313,0,200,-389.999755859375,-76.0859375,200,-382.505981445313,-149.24609375,200,-360.312866210938,-216.671875,200,-324.273071289063,-275.7734375,200,-275.771606445313,-324.2734375,200,-216.672485351563,-360.3125,200,-149.246704101563,-382.50390625,200,-76.08544921875,-390,200,-0.000244140625,-382.50390625,200,76.0849609375,-360.3125,200,149.246215820313,-324.2734375,200,216.671997070313,-275.7734375,200,275.771362304688,-216.671875,200,324.272827148438,-149.24609375,200,360.312744140625,-76.0859375,200,382.505981445313,0,200,389.999755859375,76.0859375,200,382.506103515625,149.24609375,200,360.312866210938,216.671875,200,324.27294921875,275.7734375,200,275.771606445313,324.2734375,200,216.672241210938,360.3125,200,149.246459960938,382.50390625,200,76.0850830078125,390,200,-0.0001220703125,382.50390625,100,-76.0850830078125,360.3125,100,-149.246337890625,324.2734375,100,-216.672119140625,
- 275.7734375,100,-275.771362304688,216.671875,100,-324.272827148438,149.24609375,100,-360.312744140625,76.0859375,100,-382.505981445313,0,100,-389.999755859375,-76.0859375,100,-382.505981445313,-149.24609375,100,-360.312866210938,-216.671875,100,-324.273071289063,-275.7734375,100,-275.771606445313,-324.2734375,100,-216.672485351563,-360.3125,100,-149.246704101563,-382.50390625,100,-76.08544921875,-390,100,-0.000244140625,-382.50390625,100,76.0849609375,-360.3125,100,149.246215820313,-324.2734375,100,216.671997070313,-275.7734375,100,275.771362304688,-216.671875,100,324.272827148438,-149.24609375,100,360.312744140625,-76.0859375,100,382.505981445313,0,100,389.999755859375,76.0859375,100,382.506103515625,149.24609375,100,360.312866210938,216.671875,100,324.27294921875,275.7734375,100,275.771606445313,324.2734375,100,216.672241210938,360.3125,100,149.246459960938,382.50390625,100,76.0850830078125,390,100,-0.0001220703125,322.3125,0,-64.1124267578125,303.6171875,0,-125.76123046875,273.24609375,0,-182.577026367188,232.37890625,0,-232.37646484375,182.578125,0,-273.245849609375,125.76171875,0,-303.614624023438,64.11328125,0,-322.315551757813,0,0,-328.630126953125,-64.11328125,0,-322.315551757813,-125.7578125,0,-303.61474609375,-182.578125,0,-273.24609375,-232.375,0,-232.376708984375,-273.24609375,0,-182.577270507813,-303.61328125,0,-125.761474609375,-322.3125,0,-64.11279296875,-328.6328125,0,-0.000213623046875,-322.3125,0,64.1124267578125,-303.61328125,0,125.761108398438,-273.24609375,0,182.577026367188,-232.375,0,232.37646484375,-182.578125,0,273.245971679688,-125.7578125,0,303.614624023438,-64.11328125,0,322.315551757813,0,0,328.630126953125,64.11328125,0,322.315673828125,125.76171875,0,303.61474609375,182.578125,0,273.245971679688,232.37890625,0,232.376586914063,273.24609375,0,182.5771484375,303.6171875,0,125.761352539063,322.3125,0,64.1124267578125,328.6328125,0,-0.0001220703125,322.3125,600,-64.1124267578125,303.6171875,600,-125.76123046875,273.24609375,600,-182.577026367188,232.37890625,600,-232.37646484375,182.578125,600,-273.245849609375,
- 125.76171875,600,-303.614624023438,64.11328125,600,-322.315551757813,0,600,-328.630126953125,-64.11328125,600,-322.315551757813,-125.7578125,600,-303.61474609375,-182.578125,600,-273.24609375,-232.375,600,-232.376708984375,-273.24609375,600,-182.577270507813,-303.61328125,600,-125.761474609375,-322.3125,600,-64.11279296875,-328.6328125,600,-0.000213623046875,-322.3125,600,64.1124267578125,-303.61328125,600,125.761108398438,-273.24609375,600,182.577026367188,-232.375,600,232.37646484375,-182.578125,600,273.245971679688,-125.7578125,600,303.614624023438,-64.11328125,600,322.315551757813,0,600,328.630126953125,64.11328125,600,322.315673828125,125.76171875,600,303.61474609375,182.578125,600,273.245971679688,232.37890625,600,232.376586914063,273.24609375,600,182.5771484375,303.6171875,600,125.761352539063,322.3125,600,64.1124267578125,328.6328125,600,-0.0001220703125,322.3125,500,-64.1124267578125,303.6171875,500,-125.76123046875,273.24609375,500,-182.577026367188,232.37890625,500,-232.37646484375,182.578125,500,-273.245849609375,125.76171875,500,-303.614624023438,64.11328125,500,-322.315551757813,0,500,-328.630126953125,-64.11328125,500,-322.315551757813,-125.7578125,500,-303.61474609375,-182.578125,500,-273.24609375,-232.375,500,-232.376708984375,-273.24609375,500,-182.577270507813,-303.61328125,500,-125.761474609375,-322.3125,500,-64.11279296875,-328.6328125,500,-0.00018310546875,-322.3125,500,64.1124267578125,-303.61328125,500,125.761108398438,-273.24609375,500,182.577026367188,-232.375,500,232.37646484375,-182.578125,500,273.245971679688,-125.7578125,500,303.614624023438,-64.11328125,500,322.315551757813,0,500,328.630126953125,64.11328125,500,322.315673828125,125.76171875,500,303.61474609375,182.578125,500,273.245971679688,232.37890625,500,232.376586914063,273.24609375,500,182.5771484375,303.6171875,500,125.761352539063,322.3125,500,64.1124267578125,328.6328125,500,-0.0001220703125,322.3125,400,-64.1124267578125,303.6171875,400,-125.76123046875,273.24609375,400,-182.577026367188,232.37890625,400,-232.37646484375,182.578125,400,-273.245849609375,
- 125.76171875,400,-303.614624023438,64.11328125,400,-322.315551757813,0,400,-328.630126953125,-64.11328125,400,-322.315551757813,-125.7578125,400,-303.61474609375,-182.578125,400,-273.24609375,-232.375,400,-232.376708984375,-273.24609375,400,-182.577270507813,-303.61328125,400,-125.761474609375,-322.3125,400,-64.11279296875,-328.6328125,400,-0.00018310546875,-322.3125,400,64.1124267578125,-303.61328125,400,125.761108398438,-273.24609375,400,182.577026367188,-232.375,400,232.37646484375,-182.578125,400,273.245971679688,-125.7578125,400,303.614624023438,-64.11328125,400,322.315551757813,0,400,328.630126953125,64.11328125,400,322.315673828125,125.76171875,400,303.61474609375,182.578125,400,273.245971679688,232.37890625,400,232.376586914063,273.24609375,400,182.5771484375,303.6171875,400,125.761352539063,322.3125,400,64.1124267578125,328.6328125,400,-0.0001220703125,322.3125,300,-64.1124267578125,303.6171875,300,-125.76123046875,273.24609375,300,-182.577026367188,232.37890625,300,-232.37646484375,182.578125,300,-273.245849609375,125.76171875,300,-303.614624023438,64.11328125,300,-322.315551757813,0,300,-328.630126953125,-64.11328125,300,-322.315551757813,-125.7578125,300,-303.61474609375,-182.578125,300,-273.24609375,-232.375,300,-232.376708984375,-273.24609375,300,-182.577270507813,-303.61328125,300,-125.761474609375,-322.3125,300,-64.11279296875,-328.6328125,300,-0.00018310546875,-322.3125,300,64.1124267578125,-303.61328125,300,125.761108398438,-273.24609375,300,182.577026367188,-232.375,300,232.37646484375,-182.578125,300,273.245971679688,-125.7578125,300,303.614624023438,-64.11328125,300,322.315551757813,64.11328125,300,322.315673828125,125.76171875,300,303.61474609375,182.578125,300,273.245971679688,232.37890625,300,232.376586914063,273.24609375,300,182.5771484375,303.6171875,300,125.761352539063,322.3125,300,64.1124267578125,328.6328125,300,-0.0001220703125,322.3125,200,-64.1124267578125,303.6171875,200,-125.76123046875,273.24609375,200,-182.577026367188,232.37890625,200,-232.37646484375,182.578125,200,-273.245849609375,
- 125.76171875,200,-303.614624023438,64.11328125,200,-322.315551757813,0,200,-328.630126953125,-64.11328125,200,-322.315551757813,-125.7578125,200,-303.61474609375,-182.578125,200,-273.24609375,-232.375,200,-232.376708984375,-273.24609375,200,-182.577270507813,-303.61328125,200,-125.761474609375,-322.3125,200,-64.11279296875,-328.6328125,200,-0.00018310546875,-322.3125,200,64.1124267578125,-303.61328125,200,125.761108398438,-273.24609375,200,182.577026367188,-232.375,200,232.37646484375,-182.578125,200,273.245971679688,-125.7578125,200,303.614624023438,-64.11328125,200,322.315551757813,0,200,328.630126953125,64.11328125,200,322.315673828125,125.76171875,200,303.61474609375,182.578125,200,273.245971679688,232.37890625,200,232.376586914063,273.24609375,200,182.5771484375,303.6171875,200,125.761352539063,322.3125,200,64.1124267578125,328.6328125,200,-0.0001220703125,322.3125,100,-64.1124267578125,303.6171875,100,-125.76123046875,273.24609375,100,-182.577026367188,232.37890625,100,-232.37646484375,182.578125,100,-273.245849609375,125.76171875,100,-303.614624023438,64.11328125,100,-322.315551757813,0,100,-328.630126953125,-64.11328125,100,-322.315551757813,-125.7578125,100,-303.61474609375,-182.578125,100,-273.24609375,-232.375,100,-232.376708984375,-273.24609375,100,-182.577270507813,-303.61328125,100,-125.761474609375,-322.3125,100,-64.11279296875,-328.6328125,100,-0.00018310546875,-322.3125,100,64.1124267578125,-303.61328125,100,125.761108398438,-273.24609375,100,182.577026367188,-232.375,100,232.37646484375,-182.578125,100,273.245971679688,-125.7578125,100,303.614624023438,-64.11328125,100,322.315551757813,0,100,328.630126953125,64.11328125,100,322.315673828125,125.76171875,100,303.61474609375,182.578125,100,273.245971679688,232.37890625,100,232.376586914063,273.24609375,100,182.5771484375,303.6171875,100,125.761352539063,322.3125,100,64.1124267578125,328.6328125,100,-0.0001220703125,-38.04296875,400,386.252868652344,-38.04296875,300,386.252868652344,-38.04296875,200,386.252868652344,38.04296875,400,386.2529296875,38.04296875,300,386.2529296875,
- 38.04296875,200,386.2529296875,-32.0546875,400,325.472839355469,-32.0546875,300,325.472839355469,-32.0546875,200,325.472839355469,32.0546875,400,325.472900390625,32.0546875,300,325.472900390625,32.0546875,200,325.472900390625,-65.7587890625,295.488525390625,387.920318603516,-33.42578125,207.322143554688,363.955230712891,-50.681640625,318.92919921875,391.487884521484,-32.0771484375,298.951293945313,365.521331787109,-64.94140625,204.544372558594,388.710571289063,-33.02734375,264.905090332031,364.632446289063,-60.3828125,276.0390625,363.158172607422,-64.9619140625,318.299682617188,374.175170898438,-62.2138671875,318.036376953125,361.888946533203,-36.7802734375,320.362060546875,364.538208007813,-48.1865234375,254.293762207031,392.134735107422,-33.8603515625,274.060302734375,387.908996582031,-48.9091796875,275.638305664063,362.669952392578,-31.9375,286.267822265625,364.597686767578,-57.0078125,295.653076171875,361.305389404297,-35.44140625,296.834594726563,390.942199707031,-62.55859375,264.462890625,389.782989501953,-34.142578125,264.818359375,392.883422851563,-33.421875,253.728332519531,366.169158935547,-60.5380859375,275.279296875,388.719573974609,-34.169921875,275.015869140625,369.677337646484,-32.7958984375,273.807250976563,375.822723388672,-35.03515625,320.052490234375,378.603515625,-31.890625,272.793823242188,365.543365478516,-65.1318359375,206.026245117188,389.643463134766,-34.65234375,253.395141601563,392.800170898438,-58.775390625,253.380493164063,364.686187744141,-62.3759765625,206.290466308594,361.066802978516,-34.9169921875,264.818359375,393.495697021484,-57.173828125,254.5771484375,360.609069824219,-63.65625,276.450561523438,389.778717041016,-63.3046875,204.204528808594,371.222045898438,-41.1337890625,204.790893554688,364.044128417969,-34.615234375,277.367919921875,392.574951171875,-59.2763671875,268.338989257813,360.994903564453,-62.4658203125,296.389770507813,372.970947265625,-64.28125,254.901000976563,387.449859619141,-64.599609375,250.33447265625,389.551788330078,-37.0556640625,320.141845703125,391.536010742188,
- -31.7705078125,277.308715820313,366.245788574219,-61.974609375,274.276123046875,390.073150634766,-33.86328125,255.158569335938,390.94970703125,-64.625,276.366088867188,388.656982421875,-32.39453125,308.317016601563,364.231018066406,-61.35546875,253.729248046875,384.546661376953,-37.201171875,297.207458496094,363.239929199219,-33.3349609375,254.693664550781,364.030487060547,-58.34765625,274.054992675781,363.217926025391,-37.4814453125,318.823364257813,392.754272460938,-63.56640625,296.465454101563,388.872436523438,-35.3525390625,254.19140625,387.792358398438,-66.4697265625,317.68798828125,388.130004882813,-33.66796875,296.662963867188,367.807312011719,-35.1533203125,295.772705078125,393.325836181641,-55.849609375,253.29150390625,361.488983154297,-36.982421875,296.513427734375,364.002349853516,-35.6201171875,205.888793945313,393.078918457031,-60.2060546875,297.399169921875,360.310607910156,-36.01953125,204.557739257813,391.847717285156,-60.3740234375,254.234619140625,362.879638671875,-32.845703125,205.383850097656,368.348999023438,-36.5927734375,276.473754882813,363.756011962891,-32.46484375,318.367309570313,366.528045654297,-64.5224609375,295.622802734375,389.393676757813,-37.6923828125,254.0615234375,392.300445556641,-42.1640625,274.496337890625,364.054565429688,-60.9482421875,251.652587890625,361.713073730469,-35.873046875,257.915405273438,393.408966064453,-31.697265625,295.87548828125,365.032989501953,-36.25390625,252.767456054688,393.39990234375,-32.1044921875,261.274536132813,365.250244140625,-34.85546875,318.733032226563,391.223297119141,-64.3095703125,296.388916015625,387.755767822266,-34.7490234375,271.132690429688,392.252502441406,-60.705078125,294.90087890625,361.213623046875,-31.8818359375,264.945068359375,365.260009765625,-34.1796875,308.313415527344,392.043518066406,-34.849609375,254.029479980469,364.716064453125,-61.8310546875,258.237426757813,389.899780273438,-32.0400390625,254.58203125,365.779388427734,-32.755859375,274.440246582031,365.912963867188,-58.6943359375,253.592224121094,389.580322265625,-34.0009765625,204.531921386719,367.928955078125,
- -33.8359375,295.76611328125,392.546813964844,-60.5107421875,295.844360351563,363.314239501953,-32.390625,207.419982910156,365.029571533203,-57.703125,319.993286132813,361.821899414063,-32.708984375,274.436279296875,375.889953613281,-66.541015625,205.796264648438,388.411865234375,-62.9970703125,274.065673828125,388.918212890625,-32.9541015625,295.043579101563,364.176544189453,-60.697265625,204.8642578125,361.661804199219,-56.48828125,274.47802734375,361.627410888672,-47.8408203125,274.8740234375,391.270568847656,-32.5654296875,286.267822265625,364.021423339844,-34.478515625,297.739501953125,392.070465087891,-32.638671875,273.1181640625,364.468658447266,-60.9697265625,206.333618164063,360.450256347656,-36.4267578125,274.367309570313,389.992156982422,-34.498046875,205.737548828125,391.586791992188,-34.23828125,257.043029785156,392.550628662109,-33.1728515625,260.369689941406,364.064025878906,-37.66015625,273.21240234375,392.459564208984,-35.955078125,277.883483886719,392.973388671875,-65.6611328125,317.139038085938,388.871032714844,-61.9326171875,319.900329589844,388.541046142578,-61.59765625,319.999084472656,374.727508544922,-35.8779296875,319.017272949219,363.627410888672,-35.056640625,320.09033203125,369.111755371094,-32.908203125,299.114990234375,364.107391357422,-59.19921875,294.587158203125,360.864227294922,-58.38671875,276.112487792969,362.592590332031,-62.287109375,297.781311035156,360.789764404297,-58.306640625,268.697998046875,360.820648193359,-59.3515625,251.657958984375,361.02197265625,-64.2041015625,204.866027832031,371.119659423828,-34.6630859375,274.459838867188,364.667114257813,-63.4638671875,264.462890625,388.883422851563,-60.7978515625,253.782592773438,387.327270507813,-65.5263671875,250.672607421875,388.881774902344,-35.865234375,297.822692871094,392.272705078125,-36.720703125,296.778198242188,391.576324462891,-59.3271484375,284.875854492188,361.033172607422,-61.50390625,308.074584960938,360.185302734375,-60.6796875,308.074584960938,359.868133544922,-31.8701171875,308.317016601563,365.003936767578,
- -66.095703125,308.187561035156,388.406005859375,-65.2412109375,308.187561035156,388.934265136719,-35.5263671875,308.313415527344,392.86474609375,-34.2744140625,286.262939453125,392.291046142578,-65.8974609375,286.101013183594,388.893829345703,-65.26953125,286.101013183594,389.639923095703,-60.61328125,284.84423828125,361.550079345703,-35.31640625,286.262939453125,392.930358886719,-58.515625,264.462890625,360.770874023438,-59.2822265625,264.462890625,361.223602294922,-32.98046875,241.076904296875,365.383117675781,-65.904296875,240.49853515625,389.23974609375,-33.7978515625,241.027526855469,364.730834960938,-61.677734375,240.320617675781,361.194244384766,-60.6201171875,240.49853515625,360.653503417969,-35.1083984375,241.076904296875,392.687377929688,-35.9619140625,241.076904296875,393.181762695313,-66.4111328125,240.49853515625,388.613555908203,-60.361328125,317.879272460938,360.480377197266,-33.9765625,229.72802734375,368.895935058594,-58.59375,229.453979492188,361.98828125,-60.0087890625,229.491333007813,389.025512695313,-37.7021484375,229.724426269531,366.235137939453,-60.2236328125,229.449951171875,363.040985107422,-36.392578125,229.510864257813,390.840667724609,-63.587890625,229.551391601563,386.200927734375,-65.3837890625,231.146240234375,389.253692626953,-34.361328125,232.868286132813,364.413391113281,-61.2373046875,230.786315917969,361.186676025391,-34.9296875,230.685302734375,391.577697753906,-35.8046875,231.201416015625,393.147918701172,-66.5712890625,230.8134765625,388.071075439453,-32.755859375,233.218383789063,365.216430664063,-59.462890625,230.786315917969,360.831176757813,-32.60546875,228.789306640625,369.251831054688,-60.501953125,228.167846679688,361.040161132813,-41.1923828125,228.255981445313,364.011596679688,-62.158203125,228.195922851563,361.530364990234,-36.6455078125,227.497009277344,392.873565673828,-64.7880859375,228.614990234375,385.530548095703,-65.4755859375,227.340881347656,388.483856201172,-64.5712890625,227.23095703125,389.286865234375,-32.4404296875,222.592407226563,365.650207519531,-33.677734375,222.282775878906,364.561370849609,
- -32.7373046875,230.639099121094,369.193206787109,-41.2490234375,230.639099121094,363.547668457031,-52.0439453125,228.371154785156,391.631225585938,-62.40625,229.535400390625,371.585968017578,-32.21484375,216.802124023438,365.229675292969,-34.6943359375,216.955627441406,392.595764160156,-35.6591796875,216.87158203125,393.132263183594,-65.8291015625,216.835510253906,389.440795898438,-66.7451171875,216.863525390625,388.305358886719,-62.654296875,216.972961425781,361.018737792969,-61.76171875,216.953857421875,360.240386962891,-32.9990234375,216.791931152344,364.325225830078,-34.453125,342.84326171875,365.720642089844,-34.8662109375,342.256469726563,391.611938476563,-59.3369140625,342.619018554688,364.594604492188,-61.98828125,341.038452148438,389.610137939453,-62.2958984375,342.59814453125,384.394622802734,-36.021484375,342.539794921875,387.730224609375,-56.22265625,342.226196289063,362.800628662109,-41.5380859375,342.701293945313,391.908538818359,-59.8701171875,341.1669921875,361.213439941406,-36.5458984375,341.24169921875,392.526519775391,-36.2451171875,343.144409179688,364.226531982422,-57.65625,342.699523925781,389.736267089844,-59.765625,342.651489257813,387.488830566406,-63.73828125,341.759155273438,388.260833740234,-32.1640625,333.114990234375,364.884552001953,-63.1796875,331.70166015625,389.317657470703,-32.9130859375,333.114990234375,364.061828613281,-59.767578125,330.55126953125,360.994323730469,-58.740234375,330.55126953125,360.704528808594,-35.08203125,332.306640625,391.728332519531,-36.1533203125,332.306640625,392.237152099609,-64.5107421875,330.780334472656,388.353668212891,-58.5966796875,320.007568359375,363.314514160156,-63.0712890625,321.391967773438,389.308746337891,-33.4130859375,321.366577148438,364.014068603516,-59.5546875,321.005859375,360.943420410156,-34.953125,320.789611816406,390.892028808594,-36.1787109375,320.877258300781,392.435729980469,-64.2197265625,320.59033203125,387.113800048828,-32.0595703125,320.69970703125,365.104431152344,-58.44921875,320.963134765625,360.782928466797,-33.98828125,342.950927734375,364.055023193359,
- -32.873046875,342.609252929688,365.396240234375,-58.5048828125,341.300903320313,360.792053222656,-66.6806640625,297.658081054688,387.759460449219,-65.6064453125,297.590942382813,389.259399414063,-35.0458984375,228.104248046875,392.264770507813,-32.7197265625,252.679321289063,366.824584960938,-33.6728515625,252.903564453125,364.525085449219,-63.0830078125,252.829711914063,384.313568115234,-60.265625,252.638427734375,362.782623291016,-0.5,420.530517578125,393.509582519531,-34.880859375,345.374938964844,363.817291259766,23.8564453125,401.416870117188,394.092864990234,1.81640625,393.1923828125,366.950958251953,-64.51953125,342.596801757813,388.781219482422,-22.4638671875,385.464416503906,365.444946289063,-27.3759765625,413.493286132813,367.156036376953,30.4658203125,413.019470214844,378.628845214844,29.2578125,413.354248046875,366.109924316406,18.0654296875,392.302734375,365.989959716797,-41.244140625,386.718200683594,392.931640625,-16.115234375,389.727661132813,389.065307617188,-22.1328125,404.383544921875,365.308013916016,-6.8740234375,390.2646484375,365.951324462891,0.0009765625,416.206237792969,365.827056884766,0.3818359375,393.845825195313,392.574310302734,-44.3466796875,406.048583984375,392.289031982422,-23.28125,384.437622070313,393.685455322266,-28.4384765625,378.562744140625,366.594451904297,-29.75390625,412.246337890625,392.305755615234,-15.2451171875,391.026245117188,370.956726074219,-15.7685546875,389.645874023438,376.936065673828,16.8857421875,389.856689453125,379.888397216797,-15.3720703125,388.268920898438,366.624450683594,-64.708984375,344.07861328125,389.714324951172,-29.0908203125,377.486633300781,393.255950927734,-52.2080078125,394.469970703125,365.690521240234,-61.984375,344.342895507813,361.134674072266,-23.8076171875,384.919738769531,394.333129882813,-49.0712890625,394.532958984375,361.808746337891,-28.3583984375,412.784301757813,393.954223632813,-62.90234375,342.256896972656,371.290924072266,-41.1337890625,342.843627929688,364.044128417969,-13.083984375,388.744201660156,393.898620605469,-35.9912109375,412.32861328125,364.077026367188,
- 0.748046875,419.828979492188,378.220794677734,-54.8271484375,396.33447265625,388.909210205078,-55.1376953125,389.348388671875,391.011962890625,17.9150390625,390.470581054688,392.920837402344,-12.0205078125,388.281494140625,367.442077636719,-32.484375,413.400512695313,393.653747558594,-28.916015625,378.904113769531,391.350952148438,-29.1552734375,414.120971679688,392.944458007813,8.6953125,392.765380859375,365.600677490234,-54.1259765625,394.313293457031,385.637512207031,0.728515625,398.057922363281,365.172576904297,-28.740234375,379.6865234375,364.426239013672,-31.537109375,415.047485351563,366.5458984375,17.8046875,391.434814453125,394.180419921875,0.8505859375,418.40673828125,394.087036132813,-29.892578125,378.812744140625,388.256072998047,30.7919921875,413.348083496094,392.653900146484,0.2548828125,394.180541992188,369.374267578125,-0.654296875,392.664367675781,394.920989990234,-47.8916015625,392.545043945313,362.637023925781,0.166015625,398.584899902344,365.908843994141,-37.19140625,343.941162109375,392.932067871094,1.7412109375,419.0927734375,365.358428955078,-37.5849609375,342.610107421875,391.699310302734,-51.998046875,395.700744628906,364.182586669922,-34.318359375,343.436279296875,368.213348388672,-15.5390625,394.701354980469,365.280517578125,14.912109375,389.575439453125,367.700744628906,-0.3046875,419.195190429688,394.757354736328,-32.75,380.137451171875,392.748168945313,-19.2490234375,398.272155761719,366.003173828125,-52.169921875,390.511108398438,363.091979980469,-29.326171875,381.448669433594,393.956726074219,-0.498046875,391.781372070313,366.433380126953,-30.708984375,377.833862304688,393.876281738281,-24.7236328125,382.596923828125,365.524505615234,16.228515625,389.604125976563,392.477935791016,0.7568359375,419.245666503906,393.107025146484,-18.328125,388.832275390625,393.375579833984,-1.2080078125,420.034301757813,366.331481933594,-21.66796875,384.614501953125,366.017181396484,9.1455078125,392.139221191406,393.458984375,-29.533203125,379.557800292969,365.18994140625,-50.453125,399.325927734375,391.157531738281,
- -27.7001953125,378.847534179688,366.137542724609,-14.9794921875,389.915649414063,367.086486816406,-49.5126953125,390.936279296875,390.861724853516,-35.47265625,342.584350585938,367.788696289063,-0.6337890625,391.529174804688,394.028717041016,0.0234375,419.517456054688,368.373748779297,-33.8505859375,345.472351074219,364.895782470703,29.66015625,412.146728515625,365.267517089844,-15.615234375,390.321655273438,377.001922607422,-66.119140625,343.849060058594,388.484252929688,-33.2548828125,414.207397460938,392.607849121094,-1.1044921875,393.072143554688,365.690643310547,-60.3046875,342.917114257813,361.727844238281,-30.0986328125,413.974914550781,364.798248291016,-23.0185546875,399.4873046875,393.533111572266,-7.0185546875,390.912963867188,365.430297851563,1.0654296875,393.26953125,393.61083984375,-15.62109375,389.244934082031,365.608795166016,-60.5791015625,344.385986328125,360.5166015625,-16.72265625,391.107055664063,391.349060058594,-36.0625,343.789916992188,391.444458007813,-28.4130859375,380.1064453125,393.020233154297,-25.9609375,382.852172851563,364.349517822266,-17.9814453125,391.261474609375,393.868499755859,-13.2666015625,389.968994140625,394.410461425781,29.724609375,412.937744140625,393.331207275391,31.689453125,412.159851074219,392.243408203125,31.4306640625,413.289001464844,378.531524658203,17.2109375,392.399230957031,365.032806396484,16.9423828125,390.609252929688,370.429138183594,1.9833984375,394.122619628906,365.616485595703,-1.57421875,418.622314453125,365.737121582031,-26.3740234375,411.900085449219,366.345611572266,2.5244140625,421.006591796875,366.177398681641,-35.0322265625,411.850952148438,363.841156005859,-50.146484375,390.898254394531,362.424438476563,-63.80078125,342.91845703125,371.189514160156,-15.83984375,391.681030273438,365.985137939453,-44.9541015625,406.749877929688,391.471984863281,-51.1396484375,392.345642089844,388.729309082031,-55.7236328125,390.180541992188,390.416046142578,1.1748046875,394.513671875,393.937072753906,0.349609375,394.959655761719,393.324279785156,-14.7001953125,416.955444335938,365.621490478516,
- 15.828125,418.956909179688,365.124847412109,15.611328125,418.234436035156,364.682281494141,8.5556640625,392.204772949219,366.327392578125,17.1337890625,418.6962890625,393.685943603516,16.904296875,417.875,394.073608398438,9.5,393.256958007813,394.389282226563,-7.3984375,390.162353515625,393.738006591797,-14.6728515625,419.045227050781,394.208862304688,-14.5283203125,418.384155273438,394.845550537109,-15.0673828125,418.071411132813,366.328552246094,-7.634765625,391.035034179688,394.463073730469,-41.4541015625,406.510131835938,363.143798828125,-41.974609375,407.007995605469,363.658294677734,-29.9453125,372.006591796875,365.647064208984,-59.8193359375,381.61279296875,390.226837158203,-30.73046875,372.266967773438,365.004913330078,-56.078125,381.58251953125,362.111480712891,-55.0107421875,381.472900390625,361.557312011719,-31.87109375,371.89501953125,392.966186523438,-32.671875,372.145568847656,393.471618652344,-60.30078125,381.80517578125,389.614227294922,28.1845703125,412.084594726563,364.48828125,-34.3671875,365.949951171875,368.859436035156,-57.1806640625,369.482421875,362.215515136719,-58.513671875,369.140197753906,389.254547119141,-38.0517578125,366.47607421875,366.198638916016,-58.79296875,369.678955078125,363.276824951172,-36.8251953125,365.836120605469,390.799774169922,-62.05078125,369.740905761719,386.452239990234,-61.974609375,371.689575195313,389.814239501953,-32.6328125,368.041625976563,364.573852539063,-58.1455078125,371.341674804688,361.700408935547,-33.4052734375,366.212158203125,391.7119140625,-34.2001953125,366.669067382813,393.292114257813,-63.2314453125,371.492431640625,388.632415771484,-31.0068359375,367.938903808594,365.370697021484,-56.3984375,371.055725097656,361.325866699219,-33.0947265625,365.104858398438,369.207916259766,-59.2890625,368.1259765625,361.242553710938,-41.66796875,365.659057617188,363.956970214844,-60.9267578125,368.338134765625,361.741149902344,-37.2607421875,364.349975585938,392.815185546875,-63.416015625,368.715942382813,385.760040283203,-64.2890625,367.09765625,388.683197021484,
- -63.40234375,366.867309570313,389.480163574219,-33.1171875,359.659912109375,365.588958740234,-34.3525390625,359.350341796875,364.497802734375,-32.6337890625,366.359375,369.202545166016,-41.4384765625,367.805480957031,363.525939941406,-51.6630859375,367.084838867188,391.681945800781,-60.91796875,369.890075683594,371.834381103516,-33.501953125,353.427368164063,365.112701416016,-36.0791015625,353.580871582031,392.469787597656,-37.0439453125,353.496826171875,393.002990722656,-63.8994140625,355.379028320313,389.763977050781,-64.8212890625,355.407043457031,388.632904052734,-60.865234375,355.516479492188,361.326507568359,-59.9755859375,355.497314453125,360.543731689453,-34.2822265625,353.417175292969,364.20556640625,26.353515625,380.484008789063,366.444091796875,26.70703125,380.7978515625,392.30078125,49.65625,396.873413085938,366.129974365234,50.5390625,397.723999023438,391.348297119141,52.09375,396.742370605469,386.000396728516,27.365234375,380.364990234375,388.486999511719,46.83203125,395.657592773438,364.218597412109,31.8447265625,383.060302734375,392.872222900391,48.8984375,399.045776367188,362.953674316406,27.521484375,382.26513671875,393.312164306641,27.9375,381.43017578125,365.011505126953,48.427734375,393.70703125,391.073181152344,50.0927734375,395.063171386719,388.944030761719,52.5517578125,398.067077636719,390.023895263672,21.5361328125,384.888549804688,365.710815429688,43.7236328125,405.239013671875,392.064544677734,22.0390625,385.488098144531,364.927825927734,40.2333984375,407.119995117188,363.775573730469,39.5556640625,406.400451660156,363.393463134766,22.990234375,385.6220703125,392.669067382813,23.693359375,386.326843261719,393.233337402344,43.634765625,407.0458984375,391.335693359375,30.126953125,412.685668945313,366.850952148438,34.078125,411.965637207031,392.987731933594,17.4326171875,389.721252441406,365.171600341797,31.759765625,413.145812988281,364.521636962891,17.82421875,389.186828613281,392.08837890625,18.505859375,390.006652832031,393.708251953125,33.6943359375,413.67724609375,391.034545898438,16.3251953125,388.742370605469,366.186492919922,
- 31.1337890625,412.277587890625,364.236175537109,26.412109375,381.380493164063,364.733520507813,25.3759765625,380.826904296875,366.041931152344,47.9248046875,398.1318359375,362.439331054688,2.50390625,420.752258300781,393.501800537109,2.1396484375,419.564819335938,394.80078125,-35.6220703125,364.658569335938,392.21240234375,-27.7275390625,377.257141113281,367.240264892578,-28.470703125,377.969604492188,364.973022460938,-53.267578125,392.409973144531,385.805694580078,-50.8837890625,392.49560546875,364.226287841797,65.7119140625,296.378601074219,388.030303955078,28.0078125,379.332458496094,364.463439941406,50.62890625,272.937866210938,391.572631835938,32.0673828125,292.915344238281,365.574981689453,52.1904296875,396.821899414063,390.719329833984,32.3525390625,326.962036132813,364.746978759766,61.9814453125,315.828002929688,362.990020751953,64.9375,273.5673828125,374.283843994141,62.2099609375,273.830688476563,361.993041992188,36.7724609375,271.505004882813,364.599731445313,48.1337890625,337.573303222656,392.215179443359,33.103515625,317.806762695313,388.0263671875,48.904296875,316.228820800781,362.751770019531,31.9296875,305.599243164063,364.651123046875,57.0068359375,296.213562011719,361.400604248047,35.3896484375,295.032470703125,391.00146484375,62.6904296875,327.403747558594,389.858520507813,33.3662109375,327.048706054688,393.001892089844,33.412109375,338.13916015625,366.225067138672,62.2060546875,316.587768554688,388.550903320313,34.154296875,316.851196289063,369.734405517578,32.0810546875,318.059814453125,375.936462402344,35.00390625,271.814575195313,378.662109375,31.212890625,319.0732421875,365.653900146484,53.5654296875,395.272277832031,391.494323730469,34.5986328125,338.471923828125,392.858001708984,60.3779296875,338.486572265625,364.522430419922,51.5498046875,396.109252929688,362.867218017578,34.1396484375,327.048706054688,393.616760253906,57.33984375,337.289916992188,360.678283691406,65.328125,315.41650390625,389.601470947266,50.625,397.914916992188,373.256683349609,33.181640625,385.288330078125,364.917114257813,
- 34.560546875,314.499145507813,392.6328125,59.4423828125,323.528076171875,361.066619873047,62.4443359375,295.477294921875,373.075439453125,64.4150390625,336.966064453125,387.527648925781,66.26953125,341.532592773438,389.372131347656,37.0029296875,271.7255859375,391.597961425781,31.759765625,314.558349609375,366.298919677734,62.10546875,317.590942382813,390.148132324219,33.0966796875,336.70849609375,391.067016601563,66.29296875,315.5009765625,388.477081298828,32.3876953125,283.550109863281,364.285217285156,63.0126953125,338.137390136719,384.375732421875,37.1962890625,294.660095214844,363.302154541016,33.3271484375,337.173400878906,364.086334228516,59.9462890625,317.812072753906,363.055358886719,37.4267578125,273.043762207031,392.816955566406,63.5185546875,295.401672363281,388.978576660156,35.3056640625,337.675659179688,387.851470947266,66.421875,274.179077148438,388.241180419922,33.6552734375,295.204162597656,367.863647460938,35.0986328125,296.094360351563,393.384521484375,57.443359375,338.575561523438,361.333312988281,36.9755859375,295.353637695313,364.064208984375,29.1787109375,379.925415039063,393.659576416016,60.205078125,294.467895507813,360.411499023438,28.8974609375,380.969848632813,392.487640380859,60.537109375,337.632446289063,362.952697753906,26.73046875,379.929504394531,368.892333984375,36.5859375,315.393310546875,363.817199707031,32.4541015625,273.499755859375,366.582366943359,64.47265625,296.244262695313,389.501586914063,37.638671875,337.805541992188,392.363464355469,42.1572265625,317.370788574219,364.125091552734,62.54296875,340.214477539063,361.543365478516,35.09765625,333.95166015625,393.533294677734,31.6884765625,295.991577148438,365.085998535156,36.1982421875,339.099182128906,393.460510253906,31.427734375,330.592529296875,365.361541748047,34.8037109375,273.134033203125,391.281555175781,64.263671875,295.478210449219,387.863342285156,33.9765625,320.734375,392.372985839844,60.703125,296.966247558594,361.315185546875,31.2041015625,326.921997070313,365.37060546875,34.1279296875,283.553588867188,392.1005859375,
- 34.8427734375,337.837524414063,364.774261474609,61.962890625,333.629638671875,389.974426269531,32.03125,337.285034179688,365.832885742188,32.74609375,317.426818847656,365.967742919922,60.365234375,338.274841308594,389.416717529297,27.2998046875,381.1015625,368.537475585938,33.78125,296.101440429688,392.603393554688,60.5048828125,296.022705078125,363.415466308594,27.17578125,378.670104980469,365.504364013672,57.701171875,271.873291015625,361.918273925781,32.681640625,317.430786132813,375.944641113281,54.541015625,396.352844238281,390.373077392578,63.1279296875,317.801391601563,388.994598388672,32.9462890625,296.823486328125,364.231658935547,49.0693359375,396.658081054688,363.514862060547,58.08203125,317.389038085938,361.469970703125,47.7890625,316.993041992188,391.350555419922,32.55859375,305.599243164063,364.075897216797,34.4248046875,294.127563476563,392.128112792969,31.962890625,318.74853515625,364.581909179688,50.41796875,395.350952148438,362.171417236328,36.3779296875,317.499755859375,390.052978515625,28.1923828125,379.49609375,392.139831542969,33.46484375,334.824096679688,392.669311523438,32.5,331.497375488281,364.179077148438,36.8876953125,318.654663085938,392.590148925781,35.8994140625,313.983581542969,393.033477783203,65.6123046875,274.728454589844,388.980834960938,61.8857421875,271.966735839844,388.644439697266,61.5732421875,271.867980957031,374.830535888672,35.873046875,272.849792480469,363.687316894531,35.0419921875,271.776794433594,369.170318603516,32.90234375,292.752075195313,364.162353515625,59.1982421875,297.279418945313,360.963256835938,59.984375,315.754577636719,362.429931640625,62.2861328125,294.085815429688,360.893951416016,58.4716796875,323.169128417969,360.891357421875,60.9443359375,340.209106445313,360.856658935547,51.896484375,397.718872070313,373.135498046875,34.6552734375,317.4072265625,364.72509765625,63.5947265625,327.403747558594,388.960388183594,62.462890625,338.08447265625,387.157897949219,67.1953125,341.194458007813,388.699401855469,35.8125,294.04443359375,392.332550048828,36.66796875,295.088928222656,391.637725830078,
- 59.3251953125,306.9912109375,361.132415771484,61.50390625,283.792541503906,360.288208007813,60.6806640625,283.792541503906,359.969635009766,31.86328125,283.550109863281,365.057159423828,66.048828125,283.679565429688,388.516571044922,65.1923828125,283.679565429688,389.043395996094,35.47265625,283.553588867188,392.924041748047,34.220703125,305.604125976563,392.348327636719,65.8486328125,305.765625,389.004028320313,65.2197265625,305.765625,389.749084472656,60.611328125,307.022827148438,361.651336669922,35.2626953125,305.604125976563,392.989318847656,58.6826171875,327.403747558594,360.841522216797,59.447265625,327.403747558594,361.295349121094,32.970703125,350.790161132813,365.438262939453,65.853515625,351.368530273438,389.350158691406,33.7900390625,350.839599609375,364.787384033203,61.6748046875,351.546447753906,361.297576904297,60.6201171875,351.368530273438,360.754760742188,35.0546875,350.790161132813,392.745971679688,35.90625,350.790161132813,393.241882324219,66.36328125,351.368530273438,388.724609375,60.3603515625,273.98779296875,360.581359863281,33.9580078125,361.914916992188,368.953155517578,58.57421875,362.6962890625,362.088836669922,59.9453125,362.587646484375,389.128112792969,37.685546875,361.985961914063,366.298797607422,60.2021484375,362.734741210938,363.144470214844,36.33203125,362.079345703125,390.902282714844,63.529296875,362.593872070313,386.309661865234,65.3349609375,360.720825195313,389.363037109375,34.3544921875,358.998779296875,364.470886230469,61.2353515625,361.080749511719,361.289123535156,34.8779296875,361.181762695313,391.635986328125,35.7490234375,360.666137695313,393.207763671875,66.5224609375,361.053161621094,388.182586669922,32.748046875,358.648681640625,365.271148681641,59.4609375,361.080749511719,360.9306640625,32.5673828125,362.541137695313,369.308380126953,60.4208984375,364.421875,361.154602050781,41.134765625,363.35107421875,364.086151123047,62.0751953125,364.463073730469,361.648132324219,36.509765625,363.551147460938,392.942291259766,64.6884765625,363.844604492188,385.648345947266,65.2705078125,365.52099609375,388.619873046875,
- 64.35546875,365.598022460938,389.422393798828,31.9443359375,366.831787109375,365.746917724609,33.1259765625,367.278198242188,364.667144775391,32.7236328125,361.22802734375,369.247894287109,41.2431640625,361.22802734375,363.616668701172,51.93359375,363.578491210938,391.725830078125,62.373046875,362.639892578125,371.692718505859,30.2314453125,372.259521484375,365.450836181641,32.5556640625,372.172607421875,392.830657958984,33.4384765625,372.513061523438,393.380462646484,61.7880859375,382.08154296875,390.201568603516,62.6650390625,382.390380859375,389.08544921875,58.916015625,382.459411621094,361.749420166016,58.0693359375,382.232604980469,360.95458984375,30.966796875,372.558654785156,364.556610107422,34.443359375,249.023803710938,365.778289794922,34.8134765625,249.610595703125,391.670227050781,59.3291015625,249.248474121094,364.693878173828,61.9384765625,250.828674316406,389.713806152344,62.2548828125,249.268981933594,384.498809814453,35.9755859375,249.327270507813,387.790344238281,56.2177734375,249.640869140625,362.894683837891,41.4853515625,249.165771484375,391.977996826172,59.869140625,250.700073242188,361.313446044922,36.4921875,250.624877929688,392.587615966797,36.23828125,248.72265625,364.287170410156,57.6064453125,249.167541503906,389.832702636719,59.7197265625,249.215576171875,387.588806152344,63.6904296875,250.107971191406,388.367401123047,32.15625,258.752075195313,364.938354492188,63.1298828125,260.165405273438,389.423309326172,32.9052734375,258.752075195313,364.116973876953,59.765625,261.315856933594,361.094299316406,58.7392578125,261.315856933594,360.802795410156,35.029296875,259.560424804688,391.786987304688,36.1005859375,259.560424804688,392.297485351563,64.462890625,261.086730957031,388.461578369141,58.5927734375,271.859497070313,363.412384033203,63.0224609375,270.47509765625,389.414215087891,33.40625,270.50048828125,364.069976806641,59.5537109375,270.861267089844,361.042907714844,34.9013671875,271.077453613281,390.950469970703,36.1259765625,270.989868164063,392.496124267578,64.1748046875,271.276733398438,387.22119140625,
- 32.052734375,271.167358398438,365.157989501953,58.4482421875,270.903991699219,360.880737304688,33.9814453125,248.916625976563,364.111877441406,32.8642578125,249.25830078125,365.451232910156,58.50390625,250.566162109375,360.889923095703,66.6357421875,294.208984375,387.870819091797,65.5576171875,294.276123046875,389.369110107422,34.943359375,363.033569335938,392.327667236328,32.708984375,339.187744140625,366.879333496094,33.666015625,338.963500976563,364.581329345703,64.7392578125,339.037353515625,384.137908935547,61.86328125,339.228210449219,362.614776611328,34.8740234375,246.492126464844,363.875640869141,64.4716796875,249.269836425781,388.889129638672,33.412109375,205.189331054688,366.225067138672,64.6591796875,247.788452148438,389.822540283203,33.98046875,205.522094726563,392.911560058594,61.982421875,247.524169921875,361.238372802734,62.8837890625,249.610168457031,371.395965576172,41.126953125,249.023376464844,364.112945556641,64.8515625,207.316650390625,389.609985351563,35.3056640625,204.725769042969,387.851470947266,59.064453125,204.708374023438,361.072967529297,37.13671875,247.925903320313,392.994140625,37.5322265625,249.256958007813,391.762145996094,34.3046875,248.430847167969,368.270751953125,38.6044921875,204.855651855469,392.270202636719,61.6787109375,206.892700195313,361.691253662109,35.578125,206.149780273438,393.516571044922,34.8427734375,204.888122558594,364.774261474609,60.8984375,204.942749023438,389.334136962891,35.458984375,249.282775878906,367.848022460938,33.841796875,246.394714355469,364.952392578125,66.0712890625,248.018005371094,388.594818115234,60.3017578125,248.950439453125,361.828735351563,60.578125,247.481079101563,360.617950439453,36.0107421875,248.0771484375,391.504669189453,60.0908203125,205.889953613281,360.999114990234,63.7822265625,248.948669433594,371.296234130859,62.9921875,204.751953125,387.072448730469,65.779296875,206.978515625,388.940612792969,31.8447265625,214.602172851563,365.537322998047,65.5927734375,214.29345703125,389.39404296875,32.6640625,214.651489257813,364.889038085938,
- 61.4326171875,214.471374511719,361.338653564453,60.3779296875,214.29345703125,360.795135498047,33.84375,214.602172851563,392.851440429688,34.6943359375,214.602172851563,393.349853515625,66.103515625,214.29345703125,388.768829345703,34.6767578125,224.254333496094,368.88671875,57.767578125,223.962036132813,362.217864990234,59.076171875,223.925170898438,389.260467529297,38.400390625,224.257446289063,366.225006103516,59.3935546875,223.966064453125,363.276977539063,37.0986328125,224.471435546875,390.830780029297,62.6669921875,223.864624023438,386.449859619141,64.8232421875,222.270263671875,389.448181152344,33.3271484375,221.114074707031,364.5654296875,60.7607421875,222.629699707031,361.368896484375,33.7734375,223.296997070313,391.731994628906,34.640625,222.780944824219,393.306213378906,66.0126953125,222.6025390625,388.269287109375,31.7177734375,220.763916015625,365.361328125,58.9873046875,222.629699707031,361.008117675781,33.306640625,225.192993164063,369.242980957031,59.6806640625,225.248596191406,361.277130126953,41.8916015625,225.726379394531,364.000427246094,61.3349609375,225.220581054688,361.774017333984,37.3515625,226.4853515625,392.863708496094,63.869140625,224.801513671875,385.784393310547,64.544921875,226.075134277344,388.740570068359,63.6376953125,226.18505859375,389.539855957031,33.107421875,232.207153320313,365.644348144531,34.3447265625,232.516784667969,364.555267333984,33.0234375,223.34326171875,369.221343994141,41.947265625,223.34326171875,363.536590576172,51.9921875,224.982116699219,391.718109130859,61.54296875,223.880615234375,371.830535888672,33.4931640625,238.439697265625,365.168731689453,36.0244140625,238.286193847656,392.530090332031,36.98828125,238.370239257813,393.064910888672,63.849609375,236.488037109375,389.870819091797,64.7734375,236.460021972656,388.741302490234,60.8623046875,236.3505859375,361.428344726563,59.974609375,236.369750976563,360.644073486328,34.275390625,238.449890136719,364.262817382813,35.7529296875,225.878051757813,392.255249023438,32.1318359375,206.237854003906,366.929901123047,
- 33.0927734375,206.013610839844,364.633453369141,64.6806640625,204.821411132813,384.147857666016,61.64453125,205.01220703125,362.651824951172,-67.9775390625,180.848999023438,384.029083251953,68.5791015625,180.848999023438,384.029083251953,-57.025390625,180.848999023438,322.494750976563,57.626953125,180.848999023438,322.494750976563,-69.248046875,186.760620117188,391.170196533203,69.849609375,186.760620117188,391.170196533203,56.3564453125,186.760620117188,315.353637695313,-55.7548828125,186.760620117188,315.353637695313,-69.248046875,203.781066894531,391.170196533203,-69.0546875,204.867309570313,390.083343505859,69.849609375,203.781066894531,391.170196533203,69.65625,204.867309570313,390.083343505859,-55.7548828125,203.781066894531,315.353637695313,-55.9482421875,204.867309570313,316.440490722656,56.3564453125,203.781066894531,315.353637695313,56.5498046875,204.867309570313,316.440490722656,-0.03125,203.781066894531,397.310943603516,-0.03125,186.760620117188,397.310943603516,-0.025390625,180.848999023438,390.0576171875,0.02734375,180.848999023438,327.556304931641,0.033203125,186.760620117188,320.302978515625,0.033203125,203.781066894531,320.302978515625,0.0322265625,204.867309570313,321.406921386719,-0.0302734375,204.867309570313,396.20703125,54.1728515625,295.488525390625,319.6494140625,32.20703125,207.322143554688,350.705932617188,41.451171875,318.92919921875,320.239410400391,30.6611328125,298.951293945313,349.400817871094,53.3046875,204.544372558594,319.142272949219,31.7119140625,264.905090332031,350.111389160156,57.3212890625,276.0390625,344.785583496094,57.783203125,318.299682617188,332.910186767578,59.3671875,318.036376953125,345.39794921875,35.2587890625,320.362060546875,349.505401611328,39.337890625,254.293762207031,320.174255371094,28.5458984375,274.060302734375,327.042205810547,47.0009765625,275.638305664063,348.558074951172,30.6865234375,286.267822265625,350.334197998047,54.8388671875,295.653076171875,347.589416503906,29.3525390625,296.834594726563,323.796081542969,51.15625,264.462890625,318.812530517578,
- 27.9873046875,264.818359375,322.091827392578,31.8125,253.728332519531,348.529541015625,49.88671875,275.279296875,320.397552490234,31.880859375,275.015869140625,344.946075439453,29.591796875,273.807250976563,339.130493164063,31.0908203125,320.052490234375,336.013641357422,30.482421875,272.793823242188,349.410552978516,53.1767578125,206.026245117188,318.198852539063,28.4150390625,253.395141601563,322.093780517578,55.4072265625,253.380493164063,343.835205078125,59.7841796875,206.290466308594,346.120971679688,28.515625,264.818359375,321.365478515625,55.19921875,254.5771484375,348.201507568359,52.00390625,276.450561523438,318.502014160156,57.326171875,204.204528808594,336.227600097656,39.4404296875,204.790893554688,349.086730957031,28.419921875,277.367919921875,322.321044921875,56.9990234375,268.338989257813,347.185150146484,56.0673828125,296.389770507813,334.834564208984,53.16796875,254.901000976563,320.535827636719,52.7958984375,250.33447265625,318.443176269531,30.5615234375,320.141845703125,322.941040039063,30.248046875,277.308715820313,348.738800048828,50.6240234375,274.276123046875,318.701232910156,28.0673828125,255.158569335938,324.04345703125,53.078125,276.366088867188,319.286712646484,31.1826171875,308.317016601563,350.617248535156,51.708984375,253.729248046875,324.153564453125,35.9140625,297.207458496094,350.694915771484,32.10546875,254.693664550781,350.6484375,55.470703125,274.054992675781,345.361663818359,30.697265625,318.823364257813,321.669952392578,52.1982421875,296.465454101563,319.391571044922,29.8017578125,254.19140625,326.913879394531,54.65625,317.68798828125,319.235260009766,31.75,296.662963867188,346.873748779297,28.732421875,295.772705078125,321.493469238281,53.7216796875,253.29150390625,347.760711669922,35.556640625,296.513427734375,349.991058349609,29.1474609375,205.888793945313,321.662231445313,58.0634765625,297.399169921875,347.538726806641,29.6708984375,204.557739257813,322.809448242188,57.3994140625,254.234619140625,345.052429199219,30.8935546875,205.383850097656,346.484802246094,35.2353515625,276.473754882813,350.308685302734,
- 30.8525390625,318.367309570313,348.342651367188,52.7822265625,295.622802734375,318.615966796875,30.943359375,254.0615234375,322.0791015625,40.3984375,274.496337890625,348.847534179688,58.287109375,251.652587890625,345.973449707031,29.2958984375,257.915405273438,321.295837402344,30.3857421875,295.87548828125,349.946411132813,29.6025390625,252.767456054688,321.241607666016,30.7333984375,261.274536132813,349.662322998047,28.8310546875,318.733032226563,323.614898681641,53.1015625,296.388916015625,320.236877441406,28.578125,271.132690429688,322.617431640625,58.2275390625,294.90087890625,346.524597167969,30.521484375,264.945068359375,349.692169189453,28.1533203125,308.313415527344,322.914245605469,33.4130859375,254.029479980469,349.699157714844,50.5615234375,258.237426757813,318.907012939453,30.583984375,254.58203125,349.153472900391,31.2314453125,274.440246582031,348.89892578125,48.21484375,253.592224121094,320.076690673828,32.037109375,204.531921386719,346.695770263672,27.794921875,295.76611328125,322.471527099609,57.3837890625,295.844360351563,344.597564697266,31.0400390625,207.419982910156,349.830841064453,55.3134765625,319.993286132813,346.886077880859,29.5029296875,274.436279296875,339.078430175781,54.626953125,205.796264648438,318.946258544922,51.7412109375,274.065673828125,319.511993408203,31.720703125,295.043579101563,350.572784423828,58.076171875,204.8642578125,346.102813720703,54.2646484375,274.47802734375,347.438079833984,39.2548828125,274.8740234375,321.091125488281,31.3798828125,286.267822265625,350.794036865234,28.388671875,297.739501953125,322.840942382813,31.3720703125,273.1181640625,350.340698242188,58.712890625,206.333618164063,347.160583496094,30.3134765625,274.367309570313,324.567352294922,28.4794921875,205.737548828125,323.3134765625,28.119140625,257.043029785156,322.404571533203,31.9482421875,260.369689941406,350.644317626953,30.8896484375,273.21240234375,321.927795410156,29.43359375,277.883483886719,321.711181640625,53.8125,317.139038085938,318.7763671875,51.0244140625,319.900329589844,320.176300048828,
- 54.798828125,319.999084472656,333.433227539063,34.587890625,319.017272949219,350.572967529297,32.796875,320.09033203125,345.342895507813,31.6904296875,299.114990234375,350.649108886719,56.9716796875,294.587158203125,347.333435058594,55.6982421875,276.112487792969,345.943450927734,59.7958984375,297.781311035156,346.410675048828,56.1708984375,268.697998046875,347.653472900391,57.060546875,251.657958984375,347.135650634766,58.125,204.866027832031,336.039764404297,33.24609375,274.459838867188,349.781585693359,52.1123046875,264.462890625,319.41015625,50.478515625,253.782592773438,321.655578613281,53.7080078125,250.672607421875,318.8056640625,29.4765625,297.822692871094,322.415496826172,30.2841796875,296.778198242188,322.957794189453,57.0341796875,284.875854492188,347.132873535156,59.2841796875,308.074584960938,347.238128662109,58.6357421875,308.074584960938,347.805328369141,30.5537109375,308.317016601563,349.945678710938,54.287109375,308.187561035156,319.086578369141,53.470703125,308.187561035156,318.840667724609,29.1064453125,308.313415527344,321.887756347656,28.189453125,286.262939453125,322.655944824219,53.9873046875,286.101013183594,318.68310546875,53.2822265625,286.101013183594,318.161682128906,58.037109375,284.84423828125,346.235961914063,28.9267578125,286.262939453125,321.857818603516,56.376953125,264.462890625,347.634185791016,56.931640625,264.462890625,346.96630859375,31.5322265625,241.076904296875,349.380249023438,53.8876953125,240.49853515625,318.352783203125,32.4189453125,241.027526855469,349.876953125,59.11328125,240.320617675781,346.228881835938,58.330078125,240.49853515625,347.080963134766,28.80078125,241.076904296875,322.131134033203,29.404296875,241.076904296875,321.504486083984,54.466796875,240.49853515625,318.794677734375,58.15234375,317.879272460938,347.328857421875,31.84375,229.72802734375,345.748626708984,56.0693359375,229.453979492188,346.454406738281,49.3876953125,229.491333007813,320.250946044922,35.787109375,229.724426269531,347.6611328125,57.212890625,229.449951171875,344.947326660156,30.1416015625,229.510864257813,323.73681640625,
- 52.9931640625,229.551391601563,321.929229736328,53.4853515625,231.146240234375,318.494506835938,33.0087890625,232.868286132813,350.086853027344,58.7177734375,230.786315917969,346.378295898438,28.8330078125,230.685302734375,323.252563476563,29.28125,231.201416015625,321.563903808594,54.75390625,230.8134765625,319.260375976563,31.3525390625,233.218383789063,349.583679199219,57.2197265625,230.786315917969,347.28125,30.5205078125,228.789306640625,345.637115478516,58.099609375,228.167846679688,346.752685546875,39.50390625,228.255981445313,349.104949951172,59.4365234375,228.195922851563,345.754272460938,30.0029296875,227.497009277344,321.693542480469,54.134765625,228.614990234375,322.210296630859,53.7861328125,227.340881347656,319.198913574219,52.8515625,227.23095703125,318.703155517578,30.98046875,222.592407226563,349.211944580078,32.3369140625,222.282775878906,350.065063476563,30.6513671875,230.639099121094,345.671539306641,39.6572265625,230.639099121094,349.545166015625,42.48828125,228.371154785156,319.780792236328,56.4443359375,229.535400390625,336.164703369141,30.83984375,216.802124023438,349.664459228516,28.4814453125,216.955627441406,322.287994384766,29.1689453125,216.87158203125,321.602783203125,53.7705078125,216.835510253906,318.184387207031,54.81640625,216.863525390625,318.984802246094,60.05078125,216.972961425781,346.073852539063,59.5,216.953857421875,347.1015625,31.73828125,216.791931152344,350.419494628906,32.85546875,342.84326171875,348.785461425781,28.7763671875,342.256469726563,323.22998046875,55.935546875,342.619018554688,343.750061035156,50.765625,341.038452148438,319.140319824219,52.5009765625,342.59814453125,324.026794433594,30.3662109375,342.539794921875,326.862426757813,53.673828125,342.226196289063,346.398620605469,34.099609375,342.701293945313,321.762756347656,57.4716796875,341.1669921875,346.789581298828,29.982421875,341.24169921875,322.051849365234,34.81640625,343.144409179688,349.915313720703,47.3603515625,342.699523925781,320.203582763672,49.6201171875,342.651489257813,321.788513183594,52.5078125,341.759155273438,319.923583984375,
- 30.849609375,333.114990234375,350.013061523438,51.767578125,331.70166015625,319.07861328125,31.701171875,333.114990234375,350.691833496094,57.447265625,330.55126953125,347.030303955078,56.6005859375,330.55126953125,347.628173828125,28.9326171875,332.306640625,323.080505371094,29.71484375,332.306640625,322.403076171875,53.0791015625,330.780334472656,319.609222412109,55.666015625,320.007568359375,345.192443847656,51.6884765625,321.391967773438,319.119171142578,32.1826171875,321.366577148438,350.650634765625,57.26953125,321.005859375,347.146514892578,28.962890625,320.789611816406,323.925048828125,29.7041015625,320.877258300781,322.203918457031,53.21875,320.59033203125,320.874328613281,30.7158203125,320.69970703125,349.813262939453,56.3134765625,320.963134765625,347.64453125,32.7197265625,342.950927734375,350.507019042969,31.431640625,342.609252929688,349.386962890625,56.361328125,341.300903320313,347.618225097656,54.9345703125,297.658081054688,319.522155761719,53.6552734375,297.590942382813,318.423217773438,28.81640625,228.104248046875,322.557403564453,31.0419921875,252.679321289063,348.007537841797,32.3388671875,252.903564453125,350.101715087891,53.150390625,252.829711914063,323.873779296875,57.330078125,252.638427734375,345.178680419922,0.4189453125,420.530517578125,324.162780761719,33.609375,345.374938964844,350.576538085938,-19.4970703125,401.416870117188,322.267364501953,-1.7314453125,393.1923828125,350.714080810547,52.958984375,342.596801757813,319.199645996094,21.568359375,385.464416503906,350.874572753906,25.98828125,413.493286132813,348.527679443359,-27.08984375,413.019470214844,336.729858398438,-27.9111328125,413.354248046875,349.279998779297,-17.314453125,392.302734375,350.808837890625,33.6708984375,386.718200683594,320.815124511719,13.5888671875,389.727661132813,327.991729736328,21.26953125,404.383544921875,351.049743652344,6.6083984375,390.2646484375,351.595458984375,0.0009765625,416.206237792969,351.845489501953,-0.3095703125,393.845825195313,325.097778320313,36.2646484375,406.048583984375,320.837493896484,
- 19.087890625,384.437622070313,322.734039306641,27.0673828125,378.562744140625,348.926483154297,24.5205078125,412.246337890625,323.3095703125,14.224609375,391.026245117188,346.108917236328,14.228515625,389.645874023438,340.109191894531,-14.9775390625,389.856689453125,337.076568603516,14.693359375,388.268920898438,350.417327880859,52.83203125,344.07861328125,318.256103515625,23.853515625,377.486633300781,322.458740234375,49.21484375,394.469970703125,344.771728515625,59.4091796875,344.342895507813,346.185394287109,19.4443359375,384.919738769531,322.033935546875,47.3759765625,394.532958984375,349.346466064453,23.16796875,412.784301757813,321.864166259766,56.9609375,342.256896972656,336.289337158203,39.4404296875,342.843627929688,349.086730957031,10.74609375,388.744201660156,323.377868652344,34.6083984375,412.32861328125,350.110687255859,-0.66796875,419.828979492188,339.450805664063,45.34765625,396.33447265625,321.729461669922,45.0625,389.348388671875,319.623260498047,-14.763671875,390.470581054688,324.007019042969,11.4443359375,388.281494140625,349.846130371094,26.537109375,413.400512695313,321.586090087891,23.96875,378.904113769531,324.368927001953,23.9482421875,414.120971679688,322.758422851563,-8.3662109375,392.765380859375,351.869293212891,45.615234375,394.313293457031,325.062469482422,-0.701171875,398.057922363281,352.499176025391,27.6796875,379.6865234375,351.022155761719,29.9814453125,415.047485351563,348.482360839844,-14.5673828125,391.434814453125,322.762054443359,-0.69140625,418.40673828125,323.584136962891,25.2001953125,378.812744140625,327.296997070313,-25.3046875,413.348083496094,322.820159912109,-0.236328125,394.180541992188,348.298828125,0.5419921875,392.664367675781,322.750793457031,46.0673828125,392.545043945313,348.851745605469,-0.1572265625,398.584899902344,351.764007568359,30.431640625,343.941162109375,321.543121337891,-1.6767578125,419.0927734375,352.306121826172,30.9609375,342.610107421875,322.688232421875,49.4345703125,395.700744628906,346.277648925781,32.279296875,343.436279296875,346.359558105469,
- 14.9638671875,394.701354980469,351.742462158203,-14.1669921875,389.575439453125,349.381591796875,0.255859375,419.195190429688,322.914611816406,26.88671875,380.137451171875,322.439758300781,18.443359375,398.272155761719,350.677581787109,49.8916015625,390.511108398438,347.277893066406,23.9521484375,381.448669433594,321.733947753906,0.4794921875,391.781372070313,351.237518310547,25.0732421875,377.833862304688,321.621856689453,23.7080078125,382.596923828125,350.509826660156,-13.412109375,389.604125976563,324.581695556641,-0.6181640625,419.245666503906,324.564575195313,15.0751953125,388.832275390625,323.518310546875,1.16015625,420.034301757813,351.337280273438,20.744140625,384.614501953125,350.400573730469,-7.5234375,392.139221191406,324.020141601563,28.3154296875,379.557800292969,350.144897460938,41.3466796875,399.325927734375,320.612976074219,26.439453125,378.847534179688,349.487396240234,14.283203125,389.915649414063,349.988159179688,40.671875,390.936279296875,321.115478515625,33.4208984375,342.584350585938,346.564971923828,0.52734375,391.529174804688,323.642822265625,-0.01953125,419.517456054688,349.298767089844,32.439453125,345.472351074219,349.704986572266,-28.4248046875,412.146728515625,350.048156738281,14.0859375,390.321655273438,340.055419921875,54.28125,343.849060058594,319.005096435547,27.314453125,414.207397460938,322.500671386719,1.06640625,393.072143554688,351.978759765625,57.701171875,342.917114257813,346.165374755859,28.9111328125,413.974914550781,350.441314697266,18.8896484375,399.4873046875,322.912994384766,6.7646484375,390.912963867188,352.110290527344,-0.8701171875,393.26953125,324.058746337891,15.0126953125,389.244934082031,351.408020019531,58.3369140625,344.385986328125,347.223846435547,13.9189453125,391.107055664063,325.668762207031,29.7734375,343.789916992188,323.199157714844,23.3349609375,380.1064453125,322.782104492188,25.0458984375,382.852172851563,351.506072998047,14.751953125,391.261474609375,323.056060791016,10.8642578125,389.968994140625,322.856140136719,-24.345703125,412.937744140625,322.299987792969,
- -26.091796875,412.159851074219,323.096740722656,-27.94921875,413.289001464844,336.67822265625,-16.5869140625,392.399230957031,351.843170166016,-15.8427734375,390.609252929688,346.493865966797,-1.9052734375,394.122619628906,352.045959472656,1.5185546875,418.622314453125,351.929382324219,25.15625,411.900085449219,349.472015380859,-2.4208984375,421.006591796875,351.478942871094,33.748046875,411.850952148438,350.525329589844,48.2099609375,390.898254394531,348.468902587891,57.7607421875,342.91845703125,336.102386474609,15.193359375,391.681030273438,351.015319824219,36.9130859375,406.749877929688,321.509704589844,42.4599609375,392.345642089844,322.807067871094,45.673828125,390.180541992188,320.049438476563,-0.9580078125,394.513671875,323.732055664063,-0.28125,394.959655761719,324.347778320313,14.1318359375,416.955444335938,351.471343994141,-15.25,418.956909179688,351.873931884766,-15.080078125,418.234436035156,352.332977294922,-8.19921875,392.204772949219,351.149475097656,-14.0615234375,418.6962890625,323.307647705078,-13.8427734375,417.875,322.939025878906,-7.7734375,393.256958007813,323.07470703125,6.08984375,390.162353515625,323.808654785156,12.0244140625,419.045227050781,322.966156005859,11.8642578125,418.384155273438,322.340576171875,14.427734375,418.071411132813,350.737579345703,6.2587890625,391.035034179688,323.074890136719,39.9365234375,406.510131835938,349.892730712891,40.310546875,407.007995605469,349.276062011719,28.6328125,372.006591796875,349.627593994141,48.9140625,381.61279296875,319.151062011719,29.474609375,372.266967773438,350.135070800781,53.74609375,381.58251953125,347.098876953125,52.9296875,381.472900390625,347.941711425781,26.1435546875,371.89501953125,322.35546875,26.71484375,372.145568847656,321.736907958984,49.453125,381.80517578125,319.605895996094,-27.1435546875,412.084594726563,351.045776367188,32.2080078125,365.949951171875,345.715209960938,54.71875,369.482421875,346.669281005859,48.1591796875,369.140197753906,320.437072753906,36.1201171875,366.47607421875,347.626831054688,55.8544921875,369.678955078125,345.169097900391,
- 30.5,365.836120605469,323.703552246094,51.712890625,369.740905761719,322.135345458984,50.6962890625,371.689575195313,318.948272705078,31.3486328125,368.041625976563,350.238159179688,55.7529296875,371.341674804688,346.865844726563,27.57421875,366.212158203125,323.361389160156,27.9716796875,366.669067382813,321.679443359375,52.0068359375,371.492431640625,319.717346191406,29.6796875,367.938903808594,349.7294921875,54.2705078125,371.055725097656,347.752288818359,30.9775390625,365.104858398438,345.596740722656,56.9326171875,368.1259765625,346.945373535156,39.9580078125,365.659057617188,349.053558349609,58.26171875,368.338134765625,345.954650878906,30.5078125,364.349975585938,321.647583007813,52.9873046875,368.715942382813,322.39892578125,52.810546875,367.09765625,319.360961914063,51.89453125,366.867309570313,318.859710693359,31.6240234375,359.659912109375,349.153533935547,32.984375,359.350341796875,350.005126953125,30.552734375,366.359375,345.680267333984,39.8388671875,367.805480957031,349.524597167969,42.177734375,367.084838867188,319.821655273438,55.1005859375,369.890075683594,336.386749267578,32.072265625,353.427368164063,349.554534912109,29.6162109375,353.580871582031,322.186645507813,30.3017578125,353.496826171875,321.498931884766,52.1953125,355.379028320313,318.445373535156,53.236328125,355.407043457031,319.252227783203,58.3359375,355.516479492188,346.365905761719,57.779296875,355.497314453125,347.390869140625,32.9736328125,353.417175292969,350.306335449219,-25.1240234375,380.484008789063,349.378234863281,-22.029296875,380.7978515625,323.713226318359,-46.7939453125,396.873413085938,345.025329589844,-41.3681640625,397.723999023438,320.407867431641,-43.880859375,396.742370605469,325.218536376953,-23.0537109375,380.364990234375,327.411010742188,-44.6923828125,395.657592773438,347.587738037109,-26.1259765625,383.060302734375,322.452880859375,-46.923828125,399.045776367188,348.286254882813,-22.5634765625,382.26513671875,322.608276367188,-26.830078125,381.43017578125,350.565948486328,-39.7578125,393.70703125,321.154571533203,
- -41.5712890625,395.063171386719,322.843353271484,-43.26953125,398.067077636719,321.215393066406,-20.6533203125,384.888549804688,350.719085693359,-35.806640625,405.239013671875,321.183135986328,-21.224609375,385.488098144531,351.437042236328,-38.6591796875,407.119995117188,349.542327880859,-38.103515625,406.400451660156,350.06005859375,-18.9453125,385.6220703125,323.776092529297,-19.4599609375,386.326843261719,323.139312744141,-35.8818359375,407.0458984375,321.913330078125,-28.6103515625,412.685668945313,348.411529541016,-27.9111328125,411.965637207031,322.000183105469,-16.7861328125,389.721252441406,351.683349609375,-30.53125,413.145812988281,350.43994140625,-14.7578125,389.186828613281,324.842956542969,-15.1806640625,390.006652832031,323.172241210938,-27.9072265625,413.67724609375,323.986877441406,-15.6357421875,388.742370605469,350.773406982422,-29.986328125,412.277587890625,350.826599121094,-25.4208984375,381.380493164063,351.062713623047,-24.2548828125,380.826904296875,349.911071777344,-46.1533203125,398.1318359375,349.033386230469,-2.0556640625,420.752258300781,324.156494140625,-1.7421875,419.564819335938,322.861206054688,29.2900390625,364.658569335938,322.51513671875,26.3056640625,377.257141113281,348.393890380859,27.3427734375,377.969604492188,350.523468017578,44.880859375,392.409973144531,325.116821289063,48.40625,392.49560546875,346.53662109375,-54.10546875,296.378601074219,319.558837890625,-26.978515625,379.332458496094,351.096527099609,-41.3857421875,272.937866210938,320.169891357422,-30.642578125,292.915344238281,349.350677490234,-42.8173828125,396.821899414063,320.629364013672,-31.0537109375,326.962036132813,350.116516113281,-58.8154296875,315.828002929688,344.432006835938,-57.7392578125,273.5673828125,332.813232421875,-59.3447265625,273.830688476563,345.299438476563,-35.2431640625,271.505004882813,349.446228027344,-39.2724609375,337.573303222656,320.109527587891,-27.8916015625,317.806762695313,327.046722412109,-46.9814453125,316.228820800781,348.479461669922,-30.669921875,305.599243164063,350.284027099609,
- -54.81640625,296.213562011719,347.496704101563,-29.2919921875,295.032470703125,323.748168945313,-51.236328125,327.403747558594,318.702972412109,-27.3369140625,327.048706054688,322.096038818359,-31.791015625,338.13916015625,348.476501464844,-51.234375,316.587768554688,320.089416503906,-31.857421875,316.851196289063,344.891540527344,-28.9375,318.059814453125,339.133880615234,-31.05078125,271.814575195313,335.960510253906,-29.8251953125,319.0732421875,349.415313720703,-43.7099609375,395.272277832031,319.547485351563,-28.3515625,338.471923828125,322.045227050781,-56.896484375,338.486572265625,343.493286132813,-49.390625,396.109252929688,347.663635253906,-27.8623046875,327.048706054688,321.369995117188,-55.3408203125,337.289916992188,348.083374023438,-53.341796875,315.41650390625,318.180725097656,-45.826171875,397.914916992188,337.897125244141,-31.806640625,385.288330078125,349.803283691406,-28.3544921875,314.499145507813,322.273681640625,-57.1396484375,323.528076171875,347.062866210938,-56.025390625,295.477294921875,334.740814208984,-53.25,336.966064453125,320.422088623047,-54.130859375,341.532592773438,318.118621826172,-30.4990234375,271.7255859375,322.889984130859,-30.2314453125,314.558349609375,348.688018798828,-50.7021484375,317.590942382813,318.592956542969,-27.4130859375,336.70849609375,324.047973632813,-54.4208984375,315.5009765625,318.958831787109,-31.1689453125,283.550109863281,350.563781738281,-53.0810546875,338.137390136719,323.833953857422,-35.900390625,294.660095214844,350.633514404297,-32.0908203125,337.173400878906,350.595794677734,-56.970703125,317.812072753906,345.019012451172,-30.6318359375,273.043762207031,321.618804931641,-52.1298828125,295.401672363281,319.304443359375,-29.7451171875,337.675659179688,326.8642578125,-54.58984375,274.179077148438,319.1435546875,-31.7255859375,295.204162597656,346.821960449219,-28.6689453125,296.094360351563,321.446502685547,-55.2353515625,338.575561523438,347.4287109375,-35.5400390625,295.353637695313,349.931579589844,-23.8603515625,379.925415039063,322.047424316406,
- -58.0419921875,294.467895507813,347.441772460938,-23.7880859375,380.969848632813,323.245849609375,-57.5341796875,337.632446289063,344.930725097656,-25.1328125,379.929504394531,346.902160644531,-35.2216796875,315.393310546875,350.249572753906,-30.8310546875,273.499755859375,348.292358398438,-52.71484375,296.244262695313,318.527435302734,-30.8798828125,337.805541992188,322.027374267578,-40.3798828125,317.370788574219,348.779968261719,-59.791015625,340.214477539063,345.613647460938,-28.642578125,333.95166015625,321.300567626953,-30.369140625,295.991577148438,349.895599365234,-29.537109375,339.099182128906,321.192138671875,-30.076171875,330.592529296875,349.668243408203,-28.76953125,273.134033203125,323.566711425781,-53.033203125,295.478210449219,320.148376464844,-27.9267578125,320.734375,322.621826171875,-58.203125,296.966247558594,346.427520751953,-29.8642578125,326.921997070313,349.695892333984,-28.0908203125,283.553588867188,322.867248535156,-33.396484375,337.837524414063,349.643157958984,-50.6416015625,333.629638671875,318.799835205078,-30.564453125,337.285034179688,349.101257324219,-31.212890625,317.426818847656,348.845550537109,-49.5595703125,338.274841308594,319.778991699219,-25.716796875,381.1015625,347.171142578125,-27.7314453125,296.101440429688,322.425079345703,-57.3583984375,296.022705078125,344.502716064453,-26.03515625,378.670104980469,350.190307617188,-55.2919921875,271.873291015625,346.793395996094,-29.4697265625,317.430786132813,339.027770996094,-44.751953125,396.352844238281,320.390777587891,-51.8232421875,317.801391601563,319.402313232422,-31.703125,296.823486328125,350.519897460938,-46.93359375,396.658081054688,347.701293945313,-55.7763671875,317.389038085938,347.102752685547,-39.189453125,316.993041992188,321.025482177734,-31.365234375,305.599243164063,350.741546630859,-28.3271484375,294.127563476563,322.792358398438,-30.7138671875,318.74853515625,350.345672607422,-48.5361328125,395.350952148438,348.638305664063,-30.2529296875,317.499755859375,324.516754150391,-23.2607421875,379.49609375,323.684356689453,
- -27.4677734375,334.824096679688,322.408874511719,-31.291015625,331.497375488281,350.649291992188,-30.2373046875,318.654663085938,321.9326171875,-29.369140625,313.983581542969,321.661987304688,-53.744140625,274.728454589844,318.686401367188,-50.958984375,271.966735839844,320.090850830078,-54.75390625,271.867980957031,333.340454101563,-34.5732421875,272.849792480469,350.516174316406,-32.7705078125,271.776794433594,345.288146972656,-31.673828125,292.752075195313,350.59619140625,-56.9501953125,297.279418945313,347.238159179688,-57.203125,315.754577636719,345.599090576172,-59.7724609375,294.085815429688,346.310668945313,-56.310546875,323.169128417969,347.533416748047,-58.5703125,340.209106445313,346.783294677734,-46.9638671875,397.718872070313,337.687713623047,-33.2314453125,317.4072265625,349.725799560547,-52.1953125,327.403747558594,319.298278808594,-51.8359375,338.08447265625,321.343536376953,-55.0439453125,341.194458007813,318.474578857422,-29.4150390625,294.04443359375,322.366149902344,-30.2236328125,295.088928222656,322.907012939453,-57.0107421875,306.9912109375,347.037780761719,-59.2626953125,283.792541503906,347.138946533203,-58.6171875,283.792541503906,347.706909179688,-30.5380859375,283.550109863281,349.893341064453,-54.2197265625,283.679565429688,318.995513916016,-53.4013671875,283.679565429688,318.751281738281,-29.0439453125,283.553588867188,321.839050292969,-28.126953125,305.604125976563,322.607727050781,-53.91796875,305.765625,318.593994140625,-53.2138671875,305.765625,318.072296142578,-58.0126953125,307.022827148438,346.139068603516,-28.8642578125,305.604125976563,321.809387207031,-56.5185546875,327.403747558594,347.513397216797,-57.0732421875,327.403747558594,346.844177246094,-31.515625,350.790161132813,349.327362060547,-53.818359375,351.368530273438,318.263671875,-32.40234375,350.839599609375,349.82275390625,-59.0888671875,351.546447753906,346.130187988281,-58.3095703125,351.368530273438,346.984344482422,-28.736328125,350.790161132813,322.083099365234,-29.341796875,350.790161132813,321.455200195313,-54.3994140625,351.368530273438,318.702178955078,
- -58.1298828125,273.98779296875,347.231903076172,-31.8125,361.914916992188,345.696105957031,-56.033203125,362.6962890625,346.362762451172,-49.310546875,362.587646484375,320.169982910156,-35.7607421875,361.985961914063,347.601867675781,-57.171875,362.734741210938,344.854309082031,-30.07421875,362.079345703125,323.688262939453,-52.9189453125,362.593872070313,321.841247558594,-53.416015625,360.720825195313,318.405090332031,-32.9921875,358.998779296875,350.031616210938,-58.6953125,361.080749511719,346.280059814453,-28.7724609375,361.181762695313,323.205444335938,-29.21875,360.666137695313,321.514801025391,-54.6865234375,361.053161621094,319.168670654297,-31.333984375,358.648681640625,349.532470703125,-57.2001953125,361.080749511719,347.186370849609,-30.47265625,362.541137695313,345.587005615234,-58.0009765625,364.421875,346.669464111328,-39.435546875,363.35107421875,349.044586181641,-59.3359375,364.463073730469,345.668182373047,-29.8740234375,363.551147460938,321.650604248047,-54.0244140625,363.844604492188,322.126617431641,-53.587890625,365.52099609375,319.130950927734,-52.6455078125,365.598022460938,318.637542724609,-30.498046875,366.831787109375,349.201416015625,-31.7978515625,367.278198242188,350.059295654297,-30.626953125,361.22802734375,345.620391845703,-39.640625,361.22802734375,349.477508544922,-42.3740234375,363.578491210938,319.716033935547,-56.3935546875,362.639892578125,336.072143554688,-28.93359375,372.259521484375,349.776153564453,-26.70703125,372.172607421875,322.388580322266,-27.3349609375,372.513061523438,321.711212158203,-50.4423828125,382.08154296875,318.631011962891,-51.4384765625,382.390380859375,319.448669433594,-56.4482421875,382.459411621094,346.579132080078,-55.9228515625,382.232604980469,347.596374511719,-29.7744140625,372.558654785156,350.537994384766,-32.8369140625,249.023803710938,348.730499267578,-28.716796875,249.610595703125,323.181762695313,-55.908203125,249.248474121094,343.656524658203,-50.697265625,250.828674316406,319.055419921875,-52.4404296875,249.268981933594,323.939025878906,-30.3095703125,249.327270507813,326.811767578125,
- -53.650390625,249.640869140625,346.308837890625,-34.0361328125,249.165771484375,321.705749511719,-57.4501953125,250.700073242188,346.694427490234,-29.9208984375,250.624877929688,322.001586914063,-34.8017578125,248.72265625,349.856903076172,-47.2919921875,249.167541503906,320.124664306641,-49.5576171875,249.215576171875,321.705291748047,-52.4423828125,250.107971191406,319.835510253906,-30.8349609375,258.752075195313,349.961303710938,-51.701171875,260.165405273438,318.992919921875,-31.6865234375,258.752075195313,350.639892578125,-57.427734375,261.315856933594,346.933898925781,-56.58203125,261.315856933594,347.533203125,-28.87109375,259.560424804688,323.032165527344,-29.65234375,259.560424804688,322.353332519531,-53.0107421875,261.086730957031,319.520477294922,-55.642578125,271.859497070313,345.100311279297,-51.6201171875,270.47509765625,319.032745361328,-32.1689453125,270.50048828125,350.596649169922,-57.2490234375,270.861267089844,347.049438476563,-28.9033203125,271.077453613281,323.877777099609,-29.6396484375,270.989868164063,322.153228759766,-53.1533203125,271.276733398438,320.785369873047,-30.69921875,271.167358398438,349.762939453125,-56.2919921875,270.903991699219,347.550354003906,-32.7060546875,248.916625976563,350.452117919922,-31.4130859375,249.25830078125,349.334381103516,-56.33984375,250.566162109375,347.523956298828,-54.8662109375,294.208984375,319.430450439453,-53.5849609375,294.276123046875,318.33349609375,-28.7138671875,363.033569335938,322.512878417969,-31.01953125,339.187744140625,347.955780029297,-32.3212890625,338.963500976563,350.048858642578,-54.51953125,339.037353515625,323.545654296875,-58.8310546875,339.228210449219,344.824401855469,-33.5927734375,246.492126464844,350.520324707031,-52.8916015625,249.269836425781,319.11083984375,-31.791015625,205.189331054688,348.476501464844,-52.76171875,247.788452148438,318.167755126953,-27.8447265625,205.522094726563,322.089965820313,-59.3857421875,247.524169921875,346.085998535156,-56.921875,249.610168457031,336.195068359375,-39.421875,249.023376464844,349.020751953125,
- -52.9716796875,207.316650390625,318.313781738281,-29.7451171875,204.725769042969,326.8642578125,-56.7939453125,204.708374023438,347.175720214844,-30.369140625,247.925903320313,321.493347167969,-30.8984375,249.256958007813,322.636505126953,-32.255859375,248.430847167969,346.305572509766,-31.6728515625,204.855651855469,321.949523925781,-58.96484375,206.892700195313,345.756439208984,-29.0322265625,206.149780273438,321.238739013672,-33.396484375,204.888122558594,349.643157958984,-49.99609375,204.942749023438,319.709320068359,-33.400390625,249.282775878906,346.510040283203,-32.423828125,246.394714355469,349.650543212891,-54.212890625,248.018005371094,318.914337158203,-57.677734375,248.950439453125,346.068878173828,-58.3173828125,247.481079101563,347.125946044922,-29.7119140625,248.0771484375,323.148193359375,-57.7509765625,205.889953613281,346.921569824219,-57.71875,248.948669433594,336.006103515625,-52.2734375,204.751953125,321.273284912109,-53.8837890625,206.978515625,318.674163818359,-30.439453125,214.602172851563,349.423858642578,-53.6064453125,214.29345703125,318.298492431641,-31.3251953125,214.651489257813,349.921905517578,-58.857421875,214.471374511719,346.169921875,-58.0771484375,214.29345703125,347.023590087891,-27.7431640625,214.602172851563,322.171234130859,-28.3515625,214.602172851563,321.545104980469,-54.1845703125,214.29345703125,318.740234375,-32.4892578125,224.254333496094,345.632537841797,-55.26171875,223.962036132813,346.487518310547,-48.595703125,223.925170898438,320.280090332031,-36.439453125,224.257446289063,347.530670166016,-56.4052734375,223.966064453125,344.9814453125,-30.708984375,224.471435546875,323.627990722656,-52.19921875,223.864624023438,321.959533691406,-52.998046875,222.270263671875,318.475402832031,-32.00390625,221.114074707031,350.124267578125,-58.240234375,222.629699707031,346.357330322266,-27.861328125,223.296997070313,323.285064697266,-28.3125,222.780944824219,321.596832275391,-54.267578125,222.6025390625,319.240692138672,-30.349609375,220.763916015625,349.619140625,-56.744140625,222.629699707031,347.260528564453,
- -31.1640625,225.192993164063,345.524627685547,-57.291015625,225.248596191406,346.788269042969,-40.16015625,225.726379394531,348.961181640625,-58.6279296875,225.220581054688,345.790863037109,-30.5634765625,226.4853515625,321.585144042969,-53.33984375,224.801513671875,322.241424560547,-52.9921875,226.075134277344,319.231079101563,-52.05859375,226.18505859375,318.734649658203,-31.6083984375,232.207153320313,349.101623535156,-32.9677734375,232.516784667969,349.949951171875,-30.908203125,223.34326171875,345.595062255859,-40.318359375,223.34326171875,349.399383544922,-42.421875,224.982116699219,319.709655761719,-55.6435546875,223.880615234375,336.199157714844,-32.0546875,238.439697265625,349.500915527344,-29.5517578125,238.286193847656,322.137329101563,-30.2373046875,238.370239257813,321.448303222656,-52.1259765625,236.488037109375,318.358093261719,-53.1689453125,236.460021972656,319.163238525391,-58.3134765625,236.3505859375,346.269470214844,-57.7607421875,236.369750976563,347.293914794922,-32.9560546875,238.449890136719,350.250122070313,-29.3798828125,225.878051757813,322.452209472656,-30.47265625,206.237854003906,348.004669189453,-31.7705078125,206.013610839844,350.099822998047,-54.46875,204.821411132813,323.553009033203,-58.623046875,205.01220703125,344.859985351563
- }
- PolygonVertexIndex: *8998 {
- a: 0,1,192,-192,1,2,193,-193,2,3,194,-194,3,4,195,-195,4,5,196,-196,5,6,197,-197,6,7,198,-198,7,8,199,-199,8,9,200,-200,9,10,201,-201,10,11,202,-202,11,12,203,-203,12,13,204,-204,13,14,205,-205,14,15,206,-206,15,16,207,-207,16,17,208,-208,17,18,209,-209,18,19,210,-210,19,20,211,-211,20,21,212,-212,21,22,213,-213,22,23,214,-214,23,24,215,-215,24,25,216,-216,25,26,217,-217,26,27,218,-218,27,28,219,-219,28,29,220,-220,29,30,221,-221,30,31,222,-222,31,0,191,-223,64,65,33,-33,65,66,34,-34,66,67,35,-35,67,68,36,-36,68,69,37,-37,69,70,38,-38,70,71,39,-39,71,72,40,-40,72,73,41,-41,73,74,42,-42,74,75,43,-43,75,76,44,-44,76,77,45,-45,77,78,46,-46,78,79,47,-47,79,80,48,-48,80,81,49,-49,81,82,50,-50,82,83,51,-51,83,84,52,-52,84,85,53,-53,85,86,54,-54,86,87,55,-55,87,88,56,-56,88,89,57,-57,89,90,58,-58,90,91,59,-59,91,92,60,-60,92,93,61,-61,93,94,62,-62,94,95,63,-63,95,64,32,-64,96,97,65,-65,97,98,66,-66,98,99,67,-67,99,100,68,-68,100,101,69,-69,101,102,70,-70,102,103,71,-71,103,104,72,-72,104,105,73,-73,105,106,74,-74,106,107,75,-75,107,108,76,-76,108,109,77,-77,109,110,78,-78,110,111,79,-79,111,112,80,-80,112,113,81,-81,113,114,82,-82,114,115,83,-83,115,116,84,-84,116,117,85,-85,117,118,86,-86,118,446,119,87,-87,119,449,120,88,-88,120,121,89,-89,121,122,90,-90,122,123,91,-91,123,124,92,-92,124,125,93,-93,125,126,94,-94,126,127,95,-95,127,96,64,-96,128,129,97,-97,129,130,98,-98,130,131,99,-99,131,132,100,-100,132,133,101,-101,133,134,102,-102,134,135,103,-103,135,136,104,-104,136,137,105,-105,137,138,106,-106,138,139,107,-107,139,140,108,-108,140,141,109,-109,141,142,110,-110,142,143,111,-111,143,144,112,-112,144,145,113,-113,145,146,114,-114,146,147,115,-115,147,148,116,-116,148,149,117,-117,149,150,118,-118,449,450,151,-121,151,152,121,-121,152,153,122,-122,153,154,123,-123,154,155,124,-124,155,156,125,-125,156,157,126,-126,157,158,127,-127,158,128,96,-128,159,160,129,-129,160,161,130,-130,161,162,131,-131,162,163,132,-132,163,164,133,-133,164,165,134,-134,165,166,135,-135,166,167,136,-136,167,168,137,-137,168,
- 169,138,-138,169,170,139,-139,170,171,140,-140,171,172,141,-141,172,173,142,-142,173,174,143,-143,174,175,144,-144,175,176,145,-145,176,177,146,-146,177,178,147,-147,178,179,148,-148,179,180,149,-149,180,181,150,-150,450,451,183,-152,183,184,152,-152,184,185,153,-153,185,186,154,-154,186,187,155,-155,187,188,156,-156,188,189,157,-157,189,190,158,-158,190,159,128,-159,191,192,160,-160,192,193,161,-161,193,194,162,-162,194,195,163,-163,195,196,164,-164,196,197,165,-165,197,198,166,-166,198,199,167,-167,199,200,168,-168,200,201,169,-169,201,202,170,-170,202,203,171,-171,203,204,172,-172,204,205,173,-173,205,206,174,-174,206,207,175,-175,207,208,176,-176,208,209,177,-177,209,210,178,-178,210,211,179,-179,211,212,180,-180,212,213,181,-181,213,214,182,448,-182,214,215,183,451,-183,215,216,184,-184,216,217,185,-185,217,218,186,-186,218,219,187,-187,219,220,188,-188,220,221,189,-189,221,222,190,-190,222,191,159,-191,223,414,415,-225,224,415,416,-226,225,416,417,-227,226,417,418,-228,227,418,419,-229,228,419,420,-230,229,420,421,-231,230,421,422,-232,231,422,423,-233,232,423,424,-234,233,424,425,-235,234,425,426,-236,235,426,427,-237,236,427,428,-238,237,428,429,-239,238,429,430,-240,239,430,431,-241,240,431,432,-242,241,432,433,-243,242,433,434,-244,243,434,435,-245,244,435,436,-246,245,436,437,-247,246,437,438,-248,247,438,439,-249,248,439,440,-250,249,440,441,-251,250,441,442,-252,251,442,443,-253,252,443,444,-254,253,444,445,-255,254,445,414,-224,287,255,256,-289,288,256,257,-290,289,257,258,-291,290,258,259,-292,291,259,260,-293,292,260,261,-294,293,261,262,-295,294,262,263,-296,295,263,264,-297,296,264,265,-298,297,265,266,-299,298,266,267,-300,299,267,268,-301,300,268,269,-302,301,269,270,-303,302,270,271,-304,303,271,272,-305,304,272,273,-306,305,273,274,-307,306,274,275,-308,307,275,276,-309,308,276,277,-310,309,277,278,-311,310,278,279,-312,311,279,280,-313,312,280,281,-314,313,281,282,-315,314,282,283,-316,315,283,284,-317,316,284,285,-318,317,285,286,-319,318,286,255,-288,319,287,288,-321,320,288,289,-322,321,289,
- 290,-323,322,290,291,-324,323,291,292,-325,324,292,293,-326,325,293,294,-327,326,294,295,-328,327,295,296,-329,328,296,297,-330,329,297,298,-331,330,298,299,-332,331,299,300,-333,332,300,301,-334,333,301,302,-335,334,302,303,-336,335,303,304,-337,336,304,305,-338,337,305,306,-339,338,306,307,-340,339,307,308,-341,340,308,309,-342,341,309,310,342,-453,342,310,311,343,-456,343,311,312,-345,344,312,313,-346,345,313,314,-347,346,314,315,-348,347,315,316,-349,348,316,317,-350,349,317,318,-351,350,318,287,-320,351,319,320,-353,352,320,321,-354,353,321,322,-355,354,322,323,-356,355,323,324,-357,356,324,325,-358,357,325,326,-359,358,326,327,-360,359,327,328,-361,360,328,329,-362,361,329,330,-363,362,330,331,-364,363,331,332,-365,364,332,333,-366,365,333,334,-367,366,334,335,-368,367,335,336,-369,368,336,337,-370,369,337,338,-371,370,338,339,-372,371,339,340,-373,372,340,341,-374,373,341,452,-454,374,343,344,-376,375,344,345,-377,376,345,346,-378,377,346,347,-379,378,347,348,-380,379,348,349,-381,380,349,350,-382,381,350,319,-352,382,351,352,-384,383,352,353,-385,384,353,354,-386,385,354,355,-387,386,355,356,-388,387,356,357,-389,388,357,358,-390,389,358,359,-391,390,359,360,-392,391,360,361,-393,392,361,362,-394,393,362,363,-395,394,363,364,-396,395,364,365,-397,396,365,366,-398,397,366,367,-399,398,367,368,-400,399,368,369,-401,400,369,370,-402,401,370,371,-403,402,371,372,-404,403,372,373,-405,404,373,453,-455,406,374,375,-408,407,375,376,-409,408,376,377,-410,409,377,378,-411,410,378,379,-412,411,379,380,-413,412,380,381,-414,413,381,351,-383,414,382,383,-416,415,383,384,-417,416,384,385,-418,417,385,386,-419,418,386,387,-420,419,387,388,-421,420,388,389,-422,421,389,390,-423,422,390,391,-424,423,391,392,-425,424,392,393,-426,425,393,394,-427,426,394,395,-428,427,395,396,-429,428,396,397,-430,429,397,398,-431,430,398,399,-432,431,399,400,-433,432,400,401,-434,433,401,402,-435,434,402,403,-436,435,403,404,-437,436,404,454,405,-438,437,405,457,406,-439,438,406,407,-440,439,407,408,-441,440,408,409,-442,441,409,410,-443,442,
- 410,411,-444,443,411,412,-445,444,412,413,-446,445,413,382,-415,150,447,446,-119,181,448,447,-151,456,455,343,-375,457,456,374,-407,342,119,446,-453,405,182,451,-458,449,119,342,-456,449,455,456,-451,450,456,457,-452,448,182,405,-455,447,448,454,-454,447,453,452,-447,285,62,63,-287,269,46,47,-271,45,46,269,-269,44,45,268,-268,43,44,267,-267,42,43,266,-266,41,42,265,-265,40,41,264,-264,39,40,263,-263,38,39,262,-262,37,38,261,-261,36,37,260,-260,35,36,259,-259,34,35,258,-258,33,34,257,-257,32,33,256,-256,286,63,32,-256,61,62,285,-285,60,61,284,-284,59,60,283,-283,58,59,282,-282,57,58,281,-281,56,57,280,-280,55,56,279,-279,54,55,278,-278,53,54,277,-277,52,53,276,-276,51,52,275,-275,50,51,274,-274,49,50,273,-273,48,49,272,-272,47,48,271,-271,253,254,31,-31,237,238,15,-15,13,236,237,-15,12,235,236,-14,11,234,235,-13,10,233,234,-12,9,232,233,-11,8,231,232,-10,7,230,231,-9,6,229,230,-8,5,228,229,-7,4,227,228,-6,3,226,227,-5,2,225,226,-4,1,224,225,-3,0,223,224,-2,254,223,0,-32,29,252,253,-31,28,251,252,-30,27,250,251,-29,26,249,250,-28,25,248,249,-27,24,247,248,-26,23,246,247,-25,22,245,246,-24,21,244,245,-23,20,243,244,-22,19,242,243,-21,18,241,242,-20,17,240,241,-19,16,239,240,-18,15,238,239,-17,593,517,494,-576,674,675,585,-585,533,479,-476,489,462,-547,595,610,614,-601,476,483,-678,592,559,-488,662,465,-565,520,566,-481,503,515,582,-502,536,468,525,486,-475,583,534,553,-462,492,571,-593,510,461,-554,569,550,-465,521,589,591,-512,479,469,-476,476,537,-500,535,512,-505,547,575,-475,491,497,471,-588,533,481,-480,519,552,-498,529,506,-535,574,554,-524,538,478,-546,513,568,-473,558,525,-523,678,572,512,-536,503,513,-516,475,469,-532,492,592,-594,504,512,-488,561,488,-552,560,556,-552,555,459,-491,545,491,-470,551,556,-562,505,492,593,575,-548,474,575,494,-537,494,484,-503,458,532,590,-589,495,527,-540,562,563,-510,478,497,-546,474,498,-548,477,498,-552,483,476,-509,522,539,-528,477,488,-501,495,577,601,-596,495,539,576,-578,539,494,-577,503,501,-568,503,567,-514,487,559,-505,499,537,528,-534,496,506,-530,460,506,-497,530,493,
- -459,589,521,458,-589,508,476,-500,522,499,-559,563,564,465,-510,465,466,581,584,-510,523,554,-551,506,586,-535,484,487,-513,572,524,-513,472,568,-533,472,515,-514,550,571,-493,582,581,466,-603,514,462,-517,517,487,-485,494,517,-485,519,497,-479,478,574,-524,501,565,-521,501,520,-584,579,511,-474,499,522,-509,522,483,-509,465,662,-467,478,523,-520,484,512,524,-681,499,475,-559,582,602,565,-502,552,580,-569,483,527,600,-600,527,483,-523,463,559,-593,529,480,-497,520,480,-530,486,475,-532,464,580,-570,528,463,-534,463,481,-534,553,578,579,-474,473,510,-554,560,486,-532,469,556,560,-532,476,535,-538,626,627,620,-619,536,494,-540,504,528,-538,537,535,-505,538,479,-482,468,539,-523,536,539,-469,459,540,-491,540,543,-519,511,541,-474,542,493,-571,459,543,-541,545,469,-480,538,545,-480,498,477,-548,547,477,-506,471,548,-527,548,510,-527,519,523,-471,490,549,-556,485,549,-490,550,492,-506,550,505,-465,488,477,-552,549,485,-556,556,469,-492,514,516,-558,525,468,-523,559,463,-529,504,559,-529,477,464,-506,516,540,-519,516,518,-558,521,530,-459,551,498,-561,561,556,-492,511,591,587,-542,521,507,-531,562,585,586,506,-461,460,496,563,-563,544,467,565,-603,566,520,565,-468,567,501,-462,510,567,-462,548,568,-514,470,580,552,-520,523,569,-471,550,569,-524,515,570,581,-583,542,570,-516,542,515,-473,472,532,-543,597,598,617,-613,514,482,-463,546,462,-483,573,485,-490,489,546,-574,538,574,-479,538,554,-575,463,554,-482,513,567,-511,548,513,-511,552,548,-472,497,552,-472,576,494,-503,577,576,502,-680,601,597,612,-616,507,579,-579,521,579,-508,521,511,-580,568,580,590,-533,509,584,585,-563,570,674,584,-582,529,534,583,-521,586,578,553,-535,501,583,-462,585,675,578,-587,488,561,591,-590,588,590,464,-501,488,589,588,-501,587,591,561,-492,590,580,-465,533,475,-500,571,550,-555,498,474,486,-561,593,592,487,-518,486,525,558,-476,527,495,595,-601,543,557,-519,596,611,629,617,-599,595,601,615,-611,600,614,613,-600,677,678,535,-477,524,572,598,-598,679,680,524,-578,526,541,587,-472,470,569,-581,571,554,463,-593,466,544,-603,481,554,-539,541,510,
- -474,542,532,458,-494,594,599,613,-617,603,606,611,-617,607,604,619,-622,604,606,620,-620,603,608,-619,614,610,605,-609,612,617,604,-608,631,612,-608,606,629,-612,605,615,-610,613,614,-609,603,628,613,-609,616,611,596,-595,618,620,606,-604,637,638,555,-486,638,639,459,-556,633,634,514,-558,632,633,557,-544,577,524,597,-602,631,607,-622,636,637,485,573,-547,635,636,546,-483,625,630,-606,608,630,-623,605,609,-624,459,639,632,-544,616,628,-604,617,629,606,-605,616,613,-629,605,623,624,-626,615,631,-610,608,605,-631,634,635,482,-515,615,612,-632,631,621,-624,631,623,-610,610,615,-606,618,608,-677,676,622,634,-634,622,630,625,635,-635,625,624,636,-636,621,624,-624,621,619,638,-638,619,620,627,639,-639,632,639,627,-627,655,663,667,-661,640,641,-673,648,673,-659,643,649,-652,641,640,-646,647,651,-650,643,653,661,-656,643,651,652,-654,647,641,-646,642,646,-649,641,649,660,-660,649,641,-648,657,658,670,-666,653,652,-645,644,642,-654,661,657,665,-669,649,643,655,-661,656,664,670,-659,655,661,668,-664,660,667,666,-660,656,671,672,-655,648,658,-658,653,642,-649,654,659,666,-670,566,467,-670,667,663,563,-497,665,670,544,-663,564,665,-663,666,667,-497,480,666,-497,669,664,656,-655,653,648,657,-662,669,480,-567,670,664,467,-545,669,666,-481,668,564,-564,668,665,-565,663,668,-564,673,671,656,-659,652,651,647,645,640,650,646,642,-645,672,671,650,-641,646,673,-649,646,650,671,-674,466,662,-545,500,464,-478,493,530,674,-571,507,675,674,-531,578,675,-508,608,622,-677,618,676,633,632,-627,526,510,-542,552,568,-549,677,483,599,-595,596,678,677,-595,598,572,678,-597,636,624,621,-638,672,641,659,-655,545,497,-492,669,467,-665,484,680,679,-503,816,740,717,-799,897,898,808,-808,756,702,-699,712,685,-770,818,833,837,-824,699,706,-901,815,782,-711,885,688,-788,743,789,-704,726,738,805,-725,759,691,748,709,-698,806,757,776,-685,715,794,-816,733,684,-777,792,773,-688,744,812,814,-735,702,692,-699,699,760,-723,758,735,-728,770,798,-698,714,720,694,-811,756,704,-703,742,775,-721,752,729,-758,797,777,-747,761,701,-769,736,791,-696,781,748,-746,901,
- 795,735,-759,713,763,-740,726,736,-739,698,692,-755,715,815,-817,727,735,-711,784,711,-775,783,779,-775,712,713,-740,712,772,-714,778,682,-714,768,714,-693,774,779,-785,728,715,816,798,-771,697,798,717,-760,717,707,-726,681,755,813,-812,718,750,-763,785,786,-733,701,720,-769,697,721,-771,700,721,-775,706,699,-732,745,762,-751,700,711,-724,718,800,824,-819,718,762,799,-801,762,717,-800,726,724,-791,726,790,-737,710,782,-728,722,760,751,-757,719,729,-753,683,729,-720,753,716,-682,812,744,681,-812,731,699,-723,745,722,-782,786,787,688,-733,688,689,804,807,-733,746,777,-774,729,809,-758,707,710,-736,795,747,-736,695,791,-756,695,738,-737,773,794,-716,685,712,-740,805,804,689,-826,737,685,-740,740,710,-708,717,740,-708,742,720,-702,701,797,-747,724,788,-744,724,743,-807,802,734,-697,722,745,-732,745,706,-732,688,885,-690,701,746,-743,707,735,-904,722,698,-782,805,825,788,-725,775,803,-792,706,750,823,-823,750,706,-746,686,782,-816,752,703,-720,743,703,-753,709,698,-755,687,803,-793,751,686,-757,686,704,-757,776,801,802,-697,696,733,-777,783,709,-755,692,779,783,-755,699,758,-761,849,850,843,-842,759,717,-763,727,751,-761,760,758,-728,761,702,-705,691,762,-746,759,762,-692,682,763,-714,763,766,-742,734,764,-697,765,716,-794,682,766,-764,768,692,-703,761,768,-703,721,700,-771,770,700,-729,694,771,-750,771,733,-750,742,746,-694,713,772,-779,708,772,-713,773,715,-729,773,728,-688,711,700,-775,772,708,-779,779,692,-715,737,739,-781,748,691,-746,782,686,-752,727,782,-752,687,728,-701,739,763,-742,739,741,-781,744,753,-682,774,721,-784,784,779,-715,734,814,810,-765,744,730,-754,785,808,809,729,-684,683,719,786,-786,767,690,788,-826,789,743,788,-691,790,724,-685,733,790,-685,771,791,-737,693,803,775,-743,746,792,-694,773,792,-747,738,793,804,-806,765,793,-739,765,738,-696,695,755,-766,820,821,840,-836,737,705,-686,769,685,-706,796,708,-713,712,769,-797,761,797,-702,761,777,-798,686,777,-705,736,790,-734,771,736,-734,775,771,-695,720,775,-695,799,717,-726,800,799,-903,824,820,835,-839,730,802,-802,744,802,-731,744,734,-803,791,
- 803,813,-756,732,807,808,-786,793,897,807,-805,752,757,806,-744,809,801,776,-758,724,806,-685,808,898,801,-810,711,784,814,-813,811,813,687,-724,711,812,811,-724,810,814,784,-715,813,803,-688,756,698,-723,794,773,-778,721,697,709,-784,816,815,710,-741,709,748,781,-699,750,718,818,-824,766,780,-742,819,834,852,840,-822,818,824,838,-834,823,837,836,-823,900,901,758,-700,747,795,821,-821,902,903,747,-801,749,764,810,-695,693,792,-804,794,777,686,-816,689,767,-826,704,777,-762,764,733,-697,765,755,681,-717,817,822,836,-840,826,829,834,-840,830,827,842,-845,827,829,843,-843,826,831,-842,837,833,828,-832,835,840,827,-831,854,835,-831,829,852,-835,828,838,-833,836,837,-832,826,851,836,-832,839,834,819,-818,841,843,829,-827,860,861,778,-709,861,862,682,-779,856,857,737,-781,855,856,780,-767,800,747,820,-825,854,830,-845,859,860,708,796,-770,858,859,769,-706,848,853,-829,831,853,-846,828,832,-847,682,862,855,-767,839,851,-827,840,852,829,-828,839,836,-852,828,846,847,-849,838,854,-833,831,828,-854,857,858,705,-738,838,835,-855,854,844,-847,854,846,-833,833,838,-829,841,831,-900,899,845,857,-857,845,853,848,858,-858,848,847,859,-859,844,847,-847,844,842,861,-861,842,843,850,862,-862,855,862,850,-850,878,886,890,-884,863,864,-896,871,896,-882,866,872,-875,864,863,-869,870,874,-873,866,876,884,-879,866,874,875,-877,870,864,-869,865,869,-872,864,872,883,-883,872,864,-871,880,881,893,-889,876,875,-868,867,865,-877,884,880,888,-892,872,866,878,-884,879,887,893,-882,878,884,891,-887,883,890,889,-883,879,894,895,-878,871,881,-881,876,865,-872,877,882,889,-893,789,690,-893,890,886,786,-720,888,893,767,-886,787,888,-886,889,890,-720,703,889,-720,892,887,879,-878,876,871,880,-885,892,703,-790,893,887,690,-768,892,889,-704,891,787,-787,891,888,-788,886,891,-787,896,894,879,-882,875,874,870,868,863,873,869,865,-868,895,894,873,-864,869,896,-872,869,873,894,-897,689,885,-768,723,687,-701,716,753,897,-794,730,898,897,-754,801,898,-731,831,845,-900,841,899,856,855,-850,749,733,-765,775,791,-772,900,706,822,-818,819,901,900,-818,821,795,901,
- -820,859,847,844,-861,895,864,882,-878,768,720,-715,892,690,-888,707,903,902,-726,902,799,-726,903,735,-748,1039,963,940,-1022,1120,1121,1031,-1031,979,925,-922,935,908,-993,1041,1056,1060,-1047,922,929,-1124,1038,1005,-934,1108,911,-1011,966,1012,-927,949,961,1028,-948,982,914,971,932,-921,1029,980,999,-908,938,1017,-1039,956,907,-1000,1015,996,-911,967,1035,1037,-958,925,915,-922,922,983,-946,981,958,-951,993,1021,-921,937,943,917,-1034,979,927,-926,965,998,-944,975,952,-981,1020,1000,-970,984,924,-992,959,1014,-919,1004,971,-969,1124,1018,958,-982,936,986,-963,949,959,-962,921,915,-978,938,1038,-1040,950,958,-934,1007,934,-998,1006,1002,-998,935,936,-963,935,995,-937,1001,905,-937,991,937,-916,997,1002,-1008,951,938,1039,1021,-994,920,1021,940,-983,940,930,-949,904,978,1036,-1035,941,973,-986,1008,1009,-956,924,943,-992,920,944,-994,923,944,-998,929,922,-955,968,985,-974,923,934,-947,941,1023,1047,-1042,941,985,1022,-1024,985,940,-1023,949,947,-1014,949,1013,-960,933,1005,-951,945,983,974,-980,942,952,-976,906,952,-943,976,939,-905,1035,967,904,-1035,954,922,-946,968,945,-1005,1009,1010,911,-956,911,912,1027,1030,-956,969,1000,-997,952,1032,-981,930,933,-959,1018,970,-959,918,1014,-979,918,961,-960,996,1017,-939,908,935,-963,1028,1027,912,-1049,960,908,-963,963,933,-931,940,963,-931,965,943,-925,924,1020,-970,947,1011,-967,947,966,-1030,1025,957,-920,945,968,-955,968,929,-955,911,1108,-913,924,969,-966,930,958,970,-1127,945,921,-1005,1028,1048,1011,-948,998,1026,-1015,929,973,1046,-1046,973,929,-969,909,1005,-1039,975,926,-943,966,926,-976,932,921,-978,910,1026,-1016,974,909,-980,909,927,-980,999,1024,1025,-920,919,956,-1000,1006,932,-978,915,1002,1006,-978,922,981,-984,1072,1073,1066,-1065,982,940,-986,950,974,-984,983,981,-951,984,925,-928,914,985,-969,982,985,-915,905,986,-937,986,989,-965,957,987,-920,988,939,-1017,905,989,-987,991,915,-926,984,991,-926,944,923,-994,993,923,-952,917,994,-973,994,956,-973,965,969,-917,936,995,-1002,931,995,-936,996,938,-952,996,951,-911,934,923,-998,995,931,-1002,1002,915,-938,
- 960,962,-1004,971,914,-969,1005,909,-975,950,1005,-975,923,910,-952,962,986,-965,962,964,-1004,967,976,-905,997,944,-1007,1007,1002,-938,957,1037,1033,-988,967,953,-977,1008,1031,1032,952,-907,906,942,1009,-1009,990,913,1011,-1049,1012,966,1011,-914,1013,947,-908,956,1013,-908,994,1014,-960,916,1026,998,-966,969,1015,-917,996,1015,-970,961,1016,1027,-1029,988,1016,-962,988,961,-919,918,978,-989,1043,1044,1063,-1059,960,928,-909,992,908,-929,1019,931,-936,935,992,-1020,984,1020,-925,984,1000,-1021,909,1000,-928,959,1013,-957,994,959,-957,998,994,-918,943,998,-918,1022,940,-949,1023,1022,948,-1126,1047,1043,1058,-1062,953,1025,-1025,967,1025,-954,967,957,-1026,1014,1026,1036,-979,955,1030,1031,-1009,1016,1120,1030,-1028,975,980,1029,-967,1032,1024,999,-981,947,1029,-908,1031,1121,1024,-1033,934,1007,1037,-1036,1034,1036,910,-947,934,1035,1034,-947,1033,1037,1007,-938,1036,1026,-911,979,921,-946,1017,996,-1001,944,920,932,-1007,1039,1038,933,-964,932,971,1004,-922,973,941,1041,-1047,989,1003,-965,1042,1057,1075,1063,-1045,1041,1047,1061,-1057,1046,1060,1059,-1046,1123,1124,981,-923,970,1018,1044,-1044,1125,1126,970,-1024,972,987,1033,-918,916,1015,-1027,1017,1000,909,-1039,912,990,-1049,927,1000,-985,987,956,-920,988,978,904,-940,1040,1045,1059,-1063,1049,1052,1057,-1063,1053,1050,1065,-1068,1050,1052,1066,-1066,1049,1054,-1065,1060,1056,1051,-1055,1058,1063,1050,-1054,1077,1058,-1054,1052,1075,-1058,1051,1061,-1056,1059,1060,-1055,1049,1074,1059,-1055,1062,1057,1042,-1041,1064,1066,1052,-1050,1083,1084,1001,-932,1084,1085,905,-1002,1079,1080,960,-1004,1078,1079,1003,-990,1023,970,1043,-1048,1077,1053,-1068,1082,1083,931,1019,-993,1081,1082,992,-929,1071,1076,-1052,1054,1076,-1069,1051,1055,-1070,905,1085,1078,-990,1062,1074,-1050,1063,1075,1052,-1051,1062,1059,-1075,1051,1069,1070,-1072,1061,1077,-1056,1054,1051,-1077,1080,1081,928,-961,1061,1058,-1078,1077,1067,-1070,1077,1069,-1056,1056,1061,-1052,1064,1054,-1123,1122,1068,1080,-1080,1068,1076,1071,1081,-1081,1071,1070,1082,-1082,1067,1070,-1070,1067,1065,1084,-1084,
- 1065,1066,1073,1085,-1085,1078,1085,1073,-1073,1101,1109,1113,-1107,1086,1087,-1119,1094,1119,-1105,1089,1095,-1098,1087,1086,-1092,1093,1097,-1096,1089,1099,1107,-1102,1089,1097,1098,-1100,1093,1087,-1092,1088,1092,-1095,1087,1095,1106,-1106,1095,1087,-1094,1103,1104,1116,-1112,1099,1098,-1091,1090,1088,-1100,1107,1103,1111,-1115,1095,1089,1101,-1107,1102,1110,1116,-1105,1101,1107,1114,-1110,1106,1113,1112,-1106,1102,1117,1118,-1101,1094,1104,-1104,1099,1088,-1095,1100,1105,1112,-1116,1012,913,-1116,1113,1109,1009,-943,1111,1116,990,-1109,1010,1111,-1109,1112,1113,-943,926,1112,-943,1115,1110,1102,-1101,1099,1094,1103,-1108,1115,926,-1013,1116,1110,913,-991,1115,1112,-927,1114,1010,-1010,1114,1111,-1011,1109,1114,-1010,1119,1117,1102,-1105,1098,1097,1093,1091,1086,1096,1092,1088,-1091,1118,1117,1096,-1087,1092,1119,-1095,1092,1096,1117,-1120,912,1108,-991,946,910,-924,939,976,1120,-1017,953,1121,1120,-977,1024,1121,-954,1054,1068,-1123,1064,1122,1079,1078,-1073,972,956,-988,998,1014,-995,1123,929,1045,-1041,1042,1124,1123,-1041,1044,1018,1124,-1043,1082,1070,1067,-1084,1118,1087,1105,-1101,991,943,-938,1115,913,-1111,930,1126,1125,-949,1133,1128,-1149,1157,1171,1175,-1163,1129,1131,-1203,1203,1152,1137,-1145,1134,1146,-1140,1133,1134,-1140,1133,1149,-1135,1150,1127,-1135,1135,1143,-1146,1131,1129,-1137,1141,1145,-1144,1135,1155,1163,-1158,1135,1145,1154,-1156,1152,1142,-1138,1128,1133,-1140,1138,1128,-1140,1141,1131,-1137,1131,1143,1162,-1162,1143,1131,-1142,1187,1188,1181,-1180,1127,1146,-1135,1146,1147,-1141,1127,1147,-1147,1134,1149,-1151,1132,1149,-1134,1149,1132,-1151,1138,1139,-1152,1139,1146,-1141,1139,1140,-1152,1159,1160,1178,-1174,1138,1130,-1129,1148,1128,-1131,1153,1132,-1134,1133,1148,-1154,1155,1154,-1205,1163,1159,1173,-1177,1143,1135,1157,-1163,1147,1151,-1141,1158,1172,1190,1178,-1161,1157,1163,1176,-1172,1162,1175,1174,-1162,1202,1203,1144,-1130,1142,1152,1160,-1160,1204,1205,1142,-1156,1156,1161,1174,-1178,1164,1167,1172,-1178,1168,1165,1180,-1183,1165,1167,1181,-1181,1164,1169,-1180,1175,1171,
- 1166,-1170,1173,1178,1165,-1169,1192,1173,-1169,1167,1190,-1173,1166,1176,-1171,1174,1175,-1170,1164,1189,1174,-1170,1177,1172,1158,-1157,1179,1181,1167,-1165,1198,1199,1150,-1133,1199,1200,1127,-1151,1194,1195,1138,-1152,1193,1194,1151,-1148,1155,1142,1159,-1164,1192,1168,-1183,1197,1198,1132,1153,-1149,1196,1197,1148,-1131,1186,1191,-1167,1169,1191,-1184,1166,1170,-1185,1127,1200,1193,-1148,1177,1189,-1165,1178,1190,1167,-1166,1177,1174,-1190,1166,1184,1185,-1187,1176,1192,-1171,1169,1166,-1192,1195,1196,1130,-1139,1176,1173,-1193,1192,1182,-1185,1192,1184,-1171,1171,1176,-1167,1179,1169,-1202,1201,1183,1195,-1195,1183,1191,1186,1196,-1196,1186,1185,1197,-1197,1182,1185,-1185,1182,1180,1199,-1199,1180,1181,1188,1200,-1200,1193,1200,1188,-1188,1169,1183,-1202,1179,1201,1194,1193,-1188,1202,1131,1161,-1157,1158,1203,1202,-1157,1160,1152,1203,-1159,1197,1185,1182,-1199,1205,1137,-1143,1223,1211,1216,-1223,1229,1217,1221,-1229,1227,1220,1212,-1227,1225,1209,1207,-1225,1211,1212,1220,1221,1217,-1217,1213,1210,1214,1215,1219,-1219,1224,1207,1211,-1224,1207,1209,1212,-1212,1226,1212,1209,-1226,1208,1206,1210,-1214,1229,1222,1216,-1218,1227,1228,1221,-1221,1210,1223,1222,-1215,1206,1224,1223,-1211,1208,1225,1224,-1207,1213,1226,1225,-1209,1218,1227,1226,-1214,1218,1219,1228,-1228,1215,1229,1228,-1220,1215,1214,1222,-1230,1365,1289,1266,-1348,1446,1447,1357,-1357,1305,1251,-1248,1261,1234,-1319,1367,1382,1386,-1373,1248,1255,-1450,1364,1331,-1260,1434,1237,-1337,1292,1338,-1253,1275,1287,1354,-1274,1308,1240,1297,1258,-1247,1355,1306,1325,-1234,1264,1343,-1365,1282,1233,-1326,1341,1322,-1237,1293,1361,1363,-1284,1251,1241,-1248,1248,1309,-1272,1307,1284,-1277,1319,1347,-1247,1263,1269,1243,-1360,1305,1253,-1252,1291,1324,-1270,1301,1278,-1307,1346,1326,-1296,1310,1250,-1318,1285,1340,-1245,1330,1297,-1295,1450,1344,1284,-1308,1275,1285,-1288,1247,1241,-1304,1264,1364,-1366,1276,1284,-1260,1333,1260,-1324,1332,1328,-1324,1327,1231,-1263,1317,1263,-1242,1323,1328,-1334,1277,1264,1365,1347,-1320,1246,1347,1266,-1309,1266,1256,
- -1275,1230,1304,1362,-1361,1267,1299,-1312,1334,1335,-1282,1250,1269,-1318,1246,1270,-1320,1249,1270,-1324,1255,1248,-1281,1294,1311,-1300,1249,1260,-1273,1267,1349,1373,-1368,1267,1311,1348,-1350,1311,1266,-1349,1275,1273,-1340,1275,1339,-1286,1259,1331,-1277,1271,1309,1300,-1306,1268,1278,-1302,1232,1278,-1269,1302,1265,-1231,1361,1293,1230,-1361,1280,1248,-1272,1294,1271,-1331,1335,1336,1237,-1282,1237,1238,1353,1356,-1282,1295,1326,-1323,1278,1358,-1307,1256,1259,-1285,1344,1296,-1285,1244,1340,-1305,1244,1287,-1286,1322,1343,-1265,1354,1353,1238,-1375,1286,1234,-1289,1289,1259,-1257,1266,1289,-1257,1291,1269,-1251,1250,1346,-1296,1273,1337,-1293,1273,1292,-1356,1351,1283,-1246,1271,1294,-1281,1294,1255,-1281,1237,1434,-1239,1250,1295,-1292,1256,1284,1296,-1453,1271,1247,-1331,1354,1374,1337,-1274,1324,1352,-1341,1255,1299,1372,-1372,1299,1255,-1295,1235,1331,-1365,1301,1252,-1269,1292,1252,-1302,1258,1247,-1304,1236,1352,-1342,1300,1235,-1306,1235,1253,-1306,1325,1350,1351,-1246,1245,1282,-1326,1332,1258,-1304,1241,1328,1332,-1304,1248,1307,-1310,1398,1399,1392,-1391,1308,1266,-1312,1276,1300,-1310,1309,1307,-1277,1310,1251,-1254,1240,1311,-1295,1308,1311,-1241,1231,1312,-1263,1312,1315,-1291,1283,1313,-1246,1314,1265,-1343,1231,1315,-1313,1317,1241,-1252,1310,1317,-1252,1270,1249,-1320,1319,1249,-1278,1243,1320,-1299,1320,1282,-1299,1291,1295,-1243,1262,1321,-1328,1257,1321,-1262,1322,1264,-1278,1322,1277,-1237,1260,1249,-1324,1321,1257,-1328,1328,1241,-1264,1286,1288,-1330,1297,1240,-1295,1331,1235,-1301,1276,1331,-1301,1249,1236,-1278,1288,1312,-1291,1288,1290,-1330,1293,1302,-1231,1323,1270,-1333,1333,1328,-1264,1283,1363,1359,-1314,1293,1279,-1303,1334,1357,1358,1278,-1233,1232,1268,1335,-1335,1316,1239,1337,-1375,1338,1292,1337,-1240,1339,1273,-1234,1282,1339,-1234,1320,1340,-1286,1242,1352,1324,-1292,1295,1341,-1243,1322,1341,-1296,1287,1342,1353,-1355,1314,1342,-1288,1314,1287,-1245,1244,1304,-1315,1369,1370,1389,-1385,1286,1254,-1235,1318,1234,-1255,1345,1257,-1262,1261,1318,-1346,1310,1346,-1251,1310,
- 1326,-1347,1235,1326,-1254,1285,1339,-1283,1320,1285,-1283,1324,1320,-1244,1269,1324,-1244,1348,1266,-1275,1349,1348,1274,-1452,1373,1369,1384,-1388,1279,1351,-1351,1293,1351,-1280,1293,1283,-1352,1340,1352,1362,-1305,1281,1356,1357,-1335,1342,1446,1356,-1354,1301,1306,1355,-1293,1358,1350,1325,-1307,1273,1355,-1234,1357,1447,1350,-1359,1260,1333,1363,-1362,1360,1362,1236,-1273,1260,1361,1360,-1273,1359,1363,1333,-1264,1362,1352,-1237,1305,1247,-1272,1343,1322,-1327,1270,1246,1258,-1333,1365,1364,1259,-1290,1258,1297,1330,-1248,1299,1267,1367,-1373,1315,1329,-1291,1368,1383,1401,1389,-1371,1367,1373,1387,-1383,1372,1386,1385,-1372,1449,1450,1307,-1249,1296,1344,1370,-1370,1451,1452,1296,-1350,1298,1313,1359,-1244,1242,1341,-1353,1343,1326,1235,-1365,1238,1316,-1375,1253,1326,-1311,1313,1282,-1246,1314,1304,1230,-1266,1366,1371,1385,-1389,1375,1378,1383,-1389,1379,1376,1391,-1394,1376,1378,1392,-1392,1375,1380,-1391,1386,1382,1377,-1381,1384,1389,1376,-1380,1403,1384,-1380,1378,1401,-1384,1377,1387,-1382,1385,1386,-1381,1375,1400,1385,-1381,1388,1383,1368,-1367,1390,1392,1378,-1376,1409,1410,1327,-1258,1410,1411,1231,-1328,1405,1406,1286,-1330,1404,1405,1329,-1316,1349,1296,1369,-1374,1403,1379,-1394,1408,1409,1257,1345,-1319,1407,1408,1318,-1255,1397,1402,-1378,1380,1402,-1395,1377,1381,-1396,1231,1411,1404,-1316,1388,1400,-1376,1389,1401,1378,-1377,1388,1385,-1401,1377,1395,1396,-1398,1387,1403,-1382,1380,1377,-1403,1406,1407,1254,-1287,1387,1384,-1404,1403,1393,-1396,1403,1395,-1382,1382,1387,-1378,1390,1380,-1449,1448,1394,1406,-1406,1394,1402,1397,1407,-1407,1397,1396,1408,-1408,1393,1396,-1396,1393,1391,1410,-1410,1391,1392,1399,1411,-1411,1404,1411,1399,-1399,1427,1435,1439,-1433,1412,1413,-1445,1420,1445,-1431,1415,1421,-1424,1413,1412,-1418,1419,1423,-1422,1415,1425,1433,-1428,1415,1423,1424,-1426,1419,1413,-1418,1414,1418,-1421,1413,1421,1432,-1432,1421,1413,-1420,1429,1430,1442,-1438,1425,1424,-1417,1416,1414,-1426,1433,1429,1437,-1441,1421,1415,1427,-1433,1428,1436,1442,-1431,1427,1433,1440,-1436,1432,1439,
- 1438,-1432,1428,1443,1444,-1427,1420,1430,-1430,1425,1414,-1421,1426,1431,1438,-1442,1338,1239,-1442,1439,1435,1335,-1269,1437,1442,1316,-1435,1336,1437,-1435,1438,1439,-1269,1252,1438,-1269,1441,1436,1428,-1427,1425,1420,1429,-1434,1441,1252,-1339,1442,1436,1239,-1317,1441,1438,-1253,1440,1336,-1336,1440,1437,-1337,1435,1440,-1336,1445,1443,1428,-1431,1424,1423,1419,1417,1412,1422,1418,1414,-1417,1444,1443,1422,-1413,1418,1445,-1421,1418,1422,1443,-1446,1238,1434,-1317,1272,1236,-1250,1265,1302,1446,-1343,1279,1447,1446,-1303,1350,1447,-1280,1380,1394,-1449,1390,1448,1405,1404,-1399,1298,1282,-1314,1324,1340,-1321,1449,1255,1371,-1367,1368,1450,1449,-1367,1370,1344,1450,-1369,1408,1396,1393,-1410,1444,1413,1431,-1427,1317,1269,-1264,1441,1239,-1437,1256,1452,1451,-1275,1588,1512,1489,-1571,1669,1670,1580,-1580,1528,1474,-1471,1484,1457,-1542,1590,1605,1609,-1596,1471,1478,-1673,1587,1554,-1483,1657,1460,-1560,1515,1561,-1476,1498,1510,1577,-1497,1531,1463,1520,1481,-1470,1578,1529,1548,-1457,1487,1566,-1588,1505,1456,-1549,1564,1545,-1460,1516,1584,1586,-1507,1474,1464,-1471,1471,1532,-1495,1530,1507,-1500,1542,1570,-1470,1486,1492,1466,-1583,1528,1476,-1475,1514,1547,-1493,1524,1501,-1530,1569,1549,-1519,1533,1473,-1541,1508,1563,-1468,1553,1520,-1518,1673,1567,1507,-1531,1485,1535,-1512,1498,1508,-1511,1470,1464,-1527,1487,1587,-1589,1499,1507,-1483,1556,1483,-1547,1555,1551,-1547,1484,1485,-1512,1484,1544,-1486,1550,1454,-1486,1540,1486,-1465,1546,1551,-1557,1500,1487,1588,1570,-1543,1469,1570,1489,-1532,1489,1479,-1498,1453,1527,1585,-1584,1490,1522,-1535,1557,1558,-1505,1473,1492,-1541,1469,1493,-1543,1472,1493,-1547,1478,1471,-1504,1517,1534,-1523,1472,1483,-1496,1490,1572,1596,-1591,1490,1534,1571,-1573,1534,1489,-1572,1498,1496,-1563,1498,1562,-1509,1482,1554,-1500,1494,1532,1523,-1529,1491,1501,-1525,1455,1501,-1492,1525,1488,-1454,1584,1516,1453,-1584,1503,1471,-1495,1517,1494,-1554,1558,1559,1460,-1505,1460,1461,1576,1579,-1505,1518,1549,-1546,1501,1581,-1530,1479,1482,-1508,1567,1519,-1508,1467,1563,-1528,
- 1467,1510,-1509,1545,1566,-1488,1457,1484,-1512,1577,1576,1461,-1598,1509,1457,-1512,1512,1482,-1480,1489,1512,-1480,1514,1492,-1474,1473,1569,-1519,1496,1560,-1516,1496,1515,-1579,1574,1506,-1469,1494,1517,-1504,1517,1478,-1504,1460,1657,-1462,1473,1518,-1515,1479,1507,-1676,1494,1470,-1554,1577,1597,1560,-1497,1547,1575,-1564,1478,1522,1595,-1595,1522,1478,-1518,1458,1554,-1588,1524,1475,-1492,1515,1475,-1525,1481,1470,-1527,1459,1575,-1565,1523,1458,-1529,1458,1476,-1529,1548,1573,1574,-1469,1468,1505,-1549,1555,1481,-1527,1464,1551,1555,-1527,1471,1530,-1533,1621,1622,1615,-1614,1531,1489,-1535,1499,1523,-1533,1532,1530,-1500,1533,1474,-1477,1463,1534,-1518,1531,1534,-1464,1454,1535,-1486,1535,1538,-1514,1506,1536,-1469,1537,1488,-1566,1454,1538,-1536,1540,1464,-1475,1533,1540,-1475,1493,1472,-1543,1542,1472,-1501,1466,1543,-1522,1543,1505,-1522,1514,1518,-1466,1485,1544,-1551,1480,1544,-1485,1545,1487,-1501,1545,1500,-1460,1483,1472,-1547,1544,1480,-1551,1551,1464,-1487,1509,1511,-1553,1520,1463,-1518,1554,1458,-1524,1499,1554,-1524,1459,1500,-1473,1511,1535,-1514,1511,1513,-1553,1516,1525,-1454,1546,1493,-1556,1556,1551,-1487,1506,1586,1582,-1537,1516,1502,-1526,1557,1580,1581,1501,-1456,1455,1491,1558,-1558,1539,1462,1560,-1598,1561,1515,1560,-1463,1562,1496,-1457,1505,1562,-1457,1543,1563,-1509,1465,1575,1547,-1515,1518,1564,-1466,1545,1564,-1519,1510,1565,1576,-1578,1537,1565,-1511,1537,1510,-1468,1467,1527,-1538,1592,1593,1612,-1608,1509,1477,-1458,1541,1457,-1478,1568,1480,-1485,1484,1541,-1569,1533,1569,-1474,1533,1549,-1570,1458,1549,-1477,1508,1562,-1506,1543,1508,-1506,1547,1543,-1467,1492,1547,-1467,1571,1489,-1498,1572,1571,-1675,1596,1592,1607,-1611,1502,1574,-1574,1516,1574,-1503,1516,1506,-1575,1563,1575,1585,-1528,1504,1579,1580,-1558,1565,1669,1579,-1577,1524,1529,1578,-1516,1581,1573,1548,-1530,1496,1578,-1457,1580,1670,1573,-1582,1483,1556,1586,-1585,1583,1585,1459,-1496,1483,1584,1583,-1496,1582,1586,1556,-1487,1585,1575,-1460,1528,1470,-1495,1566,1545,-1550,1493,1469,1481,-1556,1588,1587,
- 1482,-1513,1481,1520,1553,-1471,1522,1490,1590,-1596,1538,1552,-1514,1591,1606,1624,1612,-1594,1590,1596,1610,-1606,1595,1609,1608,-1595,1672,1673,1530,-1472,1519,1567,1593,-1593,1674,1675,1519,-1573,1521,1536,1582,-1467,1465,1564,-1576,1566,1549,1458,-1588,1461,1539,-1598,1476,1549,-1534,1536,1505,-1469,1537,1527,1453,-1489,1589,1594,1608,-1612,1598,1601,1606,-1612,1602,1599,1614,-1617,1599,1601,1615,-1615,1598,1603,-1614,1609,1605,1600,-1604,1607,1612,1599,-1603,1626,1607,-1603,1601,1624,-1607,1600,1610,-1605,1608,1609,-1604,1598,1623,1608,-1604,1611,1606,1591,-1590,1613,1615,1601,-1599,1632,1633,1550,-1481,1633,1634,1454,-1551,1628,1629,1509,-1553,1627,1628,1552,-1539,1572,1519,1592,-1597,1626,1602,-1617,1631,1632,1480,1568,-1542,1630,1631,1541,-1478,1620,1625,-1601,1603,1625,-1618,1600,1604,-1619,1454,1634,1627,-1539,1611,1623,-1599,1612,1624,1601,-1600,1611,1608,-1624,1600,1618,1619,-1621,1610,1626,-1605,1603,1600,-1626,1629,1630,1477,-1510,1610,1607,-1627,1626,1616,-1619,1626,1618,-1605,1605,1610,-1601,1613,1603,-1672,1671,1617,1629,-1629,1617,1625,1620,1630,-1630,1620,1619,1631,-1631,1616,1619,-1619,1616,1614,1633,-1633,1614,1615,1622,1634,-1634,1627,1634,1622,-1622,1650,1658,1662,-1656,1635,1636,-1668,1643,1668,-1654,1638,1644,-1647,1636,1635,-1641,1642,1646,-1645,1638,1648,1656,-1651,1638,1646,1647,-1649,1642,1636,-1641,1637,1641,-1644,1636,1644,1655,-1655,1644,1636,-1643,1652,1653,1665,-1661,1648,1647,-1640,1639,1637,-1649,1656,1652,1660,-1664,1644,1638,1650,-1656,1651,1659,1665,-1654,1650,1656,1663,-1659,1655,1662,1661,-1655,1651,1666,1667,-1650,1643,1653,-1653,1648,1637,-1644,1649,1654,1661,-1665,1561,1462,-1665,1662,1658,1558,-1492,1660,1665,1539,-1658,1559,1660,-1658,1661,1662,-1492,1475,1661,-1492,1664,1659,1651,-1650,1648,1643,1652,-1657,1664,1475,-1562,1665,1659,1462,-1540,1664,1661,-1476,1663,1559,-1559,1663,1660,-1560,1658,1663,-1559,1668,1666,1651,-1654,1647,1646,1642,1640,1635,1645,1641,1637,-1640,1667,1666,1645,-1636,1641,1668,-1644,1641,1645,1666,-1669,1461,1657,-1540,1495,1459,-1473,1488,1525,
- 1669,-1566,1502,1670,1669,-1526,1573,1670,-1503,1603,1617,-1672,1613,1671,1628,1627,-1622,1521,1505,-1537,1547,1563,-1544,1672,1478,1594,-1590,1591,1673,1672,-1590,1593,1567,1673,-1592,1631,1619,1616,-1633,1667,1636,1654,-1650,1540,1492,-1487,1664,1462,-1660,1479,1675,1674,-1498,1674,1571,-1498,1675,1507,-1520,1811,1735,1712,-1794,1892,1893,1803,-1803,1751,1697,-1694,1707,1680,-1765,1813,1828,1832,-1819,1694,1701,-1896,1810,1777,-1706,1880,1683,-1783,1738,1784,-1699,1721,1733,1800,-1720,1754,1686,1743,1704,-1693,1801,1752,1771,-1680,1710,1789,-1811,1728,1679,-1772,1787,1768,-1683,1739,1807,1809,-1730,1697,1687,-1694,1694,1755,-1718,1753,1730,-1723,1765,1793,-1693,1709,1715,1689,-1806,1751,1699,-1698,1737,1770,-1716,1747,1724,-1753,1792,1772,-1742,1756,1696,-1764,1731,1786,-1691,1776,1743,-1741,1896,1790,1730,-1754,1708,1758,-1735,1721,1731,-1734,1693,1687,-1750,1710,1810,-1812,1722,1730,-1706,1779,1706,-1770,1778,1774,-1770,1707,1708,-1735,1707,1767,-1709,1773,1677,-1709,1763,1709,-1688,1769,1774,-1780,1723,1710,1811,1793,-1766,1692,1793,1712,-1755,1712,1702,-1721,1676,1750,1808,-1807,1713,1745,-1758,1780,1781,-1728,1696,1715,-1764,1692,1716,-1766,1695,1716,-1770,1701,1694,-1727,1740,1757,-1746,1695,1706,-1719,1713,1795,1819,-1814,1713,1757,1794,-1796,1757,1712,-1795,1721,1719,-1786,1721,1785,-1732,1705,1777,-1723,1717,1755,1746,-1752,1714,1724,-1748,1678,1724,-1715,1748,1711,-1677,1807,1739,1676,-1807,1726,1694,-1718,1740,1717,-1777,1781,1782,1683,-1728,1683,1684,1799,1802,-1728,1741,1772,-1769,1724,1804,-1753,1702,1705,-1731,1790,1742,-1731,1690,1786,-1751,1690,1733,-1732,1768,1789,-1711,1680,1707,-1735,1800,1799,1684,-1821,1732,1680,-1735,1735,1705,-1703,1712,1735,-1703,1737,1715,-1697,1696,1792,-1742,1719,1783,-1739,1719,1738,-1802,1797,1729,-1692,1717,1740,-1727,1740,1701,-1727,1683,1880,-1685,1696,1741,-1738,1702,1730,1742,-1899,1717,1693,-1777,1800,1820,1783,-1720,1770,1798,-1787,1701,1745,1818,-1818,1745,1701,-1741,1681,1777,-1811,1747,1698,-1715,1738,1698,-1748,1704,1693,-1750,1682,1798,-1788,1746,1681,-1752,
- 1681,1699,-1752,1771,1796,1797,-1692,1691,1728,-1772,1778,1704,-1750,1687,1774,1778,-1750,1694,1753,-1756,1844,1845,1838,-1837,1754,1712,-1758,1722,1746,-1756,1755,1753,-1723,1756,1697,-1700,1686,1757,-1741,1754,1757,-1687,1677,1758,-1709,1758,1761,-1737,1729,1759,-1692,1760,1711,-1789,1677,1761,-1759,1763,1687,-1698,1756,1763,-1698,1716,1695,-1766,1765,1695,-1724,1689,1766,-1745,1766,1728,-1745,1737,1741,-1689,1708,1767,-1774,1703,1767,-1708,1768,1710,-1724,1768,1723,-1683,1706,1695,-1770,1767,1703,-1774,1774,1687,-1710,1732,1734,-1776,1743,1686,-1741,1777,1681,-1747,1722,1777,-1747,1695,1682,-1724,1734,1758,-1737,1734,1736,-1776,1739,1748,-1677,1769,1716,-1779,1779,1774,-1710,1729,1809,1805,-1760,1739,1725,-1749,1780,1803,1804,1724,-1679,1678,1714,1781,-1781,1762,1685,1783,-1821,1784,1738,1783,-1686,1785,1719,-1680,1728,1785,-1680,1766,1786,-1732,1688,1798,1770,-1738,1741,1787,-1689,1768,1787,-1742,1733,1788,1799,-1801,1760,1788,-1734,1760,1733,-1691,1690,1750,-1761,1815,1816,1835,-1831,1732,1700,-1681,1764,1680,-1701,1791,1703,-1708,1707,1764,-1792,1756,1792,-1697,1756,1772,-1793,1681,1772,-1700,1731,1785,-1729,1766,1731,-1729,1770,1766,-1690,1715,1770,-1690,1794,1712,-1721,1795,1794,1720,-1898,1819,1815,1830,-1834,1725,1797,-1797,1739,1797,-1726,1739,1729,-1798,1786,1798,1808,-1751,1727,1802,1803,-1781,1788,1892,1802,-1800,1747,1752,1801,-1739,1804,1796,1771,-1753,1719,1801,-1680,1803,1893,1796,-1805,1706,1779,1809,-1808,1806,1808,1682,-1719,1706,1807,1806,-1719,1805,1809,1779,-1710,1808,1798,-1683,1751,1693,-1718,1789,1768,-1773,1716,1692,1704,-1779,1811,1810,1705,-1736,1704,1743,1776,-1694,1745,1713,1813,-1819,1761,1775,-1737,1814,1829,1847,1835,-1817,1813,1819,1833,-1829,1818,1832,1831,-1818,1895,1896,1753,-1695,1742,1790,1816,-1816,1897,1898,1742,-1796,1744,1759,1805,-1690,1688,1787,-1799,1789,1772,1681,-1811,1684,1762,-1821,1699,1772,-1757,1759,1728,-1692,1760,1750,1676,-1712,1812,1817,1831,-1835,1821,1824,1829,-1835,1825,1822,1837,-1840,1822,1824,1838,-1838,1821,1826,-1837,1832,1828,1823,-1827,1830,1835,
- 1822,-1826,1849,1830,-1826,1824,1847,-1830,1823,1833,-1828,1831,1832,-1827,1821,1846,1831,-1827,1834,1829,1814,-1813,1836,1838,1824,-1822,1855,1856,1773,-1704,1856,1857,1677,-1774,1851,1852,1732,-1776,1850,1851,1775,-1762,1795,1742,1815,-1820,1849,1825,-1840,1854,1855,1703,1791,-1765,1853,1854,1764,-1701,1843,1848,-1824,1826,1848,-1841,1823,1827,-1842,1677,1857,1850,-1762,1834,1846,-1822,1835,1847,1824,-1823,1834,1831,-1847,1823,1841,1842,-1844,1833,1849,-1828,1826,1823,-1849,1852,1853,1700,-1733,1833,1830,-1850,1849,1839,-1842,1849,1841,-1828,1828,1833,-1824,1836,1826,-1895,1894,1840,1852,-1852,1840,1848,1843,1853,-1853,1843,1842,1854,-1854,1839,1842,-1842,1839,1837,1856,-1856,1837,1838,1845,1857,-1857,1850,1857,1845,-1845,1873,1881,1885,-1879,1858,1859,-1891,1866,1891,-1877,1861,1867,-1870,1859,1858,-1864,1865,1869,-1868,1861,1871,1879,-1874,1861,1869,1870,-1872,1865,1859,-1864,1860,1864,-1867,1859,1867,1878,-1878,1867,1859,-1866,1875,1876,1888,-1884,1871,1870,-1863,1862,1860,-1872,1879,1875,1883,-1887,1867,1861,1873,-1879,1874,1882,1888,-1877,1873,1879,1886,-1882,1878,1885,1884,-1878,1874,1889,1890,-1873,1866,1876,-1876,1871,1860,-1867,1872,1877,1884,-1888,1784,1685,-1888,1885,1881,1781,-1715,1883,1888,1762,-1881,1782,1883,-1881,1884,1885,-1715,1698,1884,-1715,1887,1882,1874,-1873,1871,1866,1875,-1880,1887,1698,-1785,1888,1882,1685,-1763,1887,1884,-1699,1886,1782,-1782,1886,1883,-1783,1881,1886,-1782,1891,1889,1874,-1877,1870,1869,1865,1863,1858,1868,1864,1860,-1863,1890,1889,1868,-1859,1864,1891,-1867,1864,1868,1889,-1892,1684,1880,-1763,1718,1682,-1696,1711,1748,1892,-1789,1725,1893,1892,-1749,1796,1893,-1726,1826,1840,-1895,1836,1894,1851,1850,-1845,1744,1728,-1760,1770,1786,-1767,1895,1701,1817,-1813,1814,1896,1895,-1813,1816,1790,1896,-1815,1854,1842,1839,-1856,1890,1859,1877,-1873,1763,1715,-1710,1887,1685,-1883,1702,1898,1897,-1721,1905,1900,-1921,1929,1943,1947,-1935,1901,1903,-1975,1975,1924,1909,-1917,1906,1918,-1912,1905,1906,-1912,1905,1921,-1907,1922,1899,-1907,1907,1915,-1918,1903,1901,-1909,1913,
- 1917,-1916,1907,1927,1935,-1930,1907,1917,1926,-1928,1924,1914,-1910,1900,1905,-1912,1910,1900,-1912,1913,1903,-1909,1903,1915,1934,-1934,1915,1903,-1914,1959,1960,1953,-1952,1899,1918,-1907,1918,1919,-1913,1899,1919,-1919,1906,1921,-1923,1904,1921,-1906,1921,1904,-1923,1910,1911,-1924,1911,1918,-1913,1911,1912,-1924,1931,1932,1950,-1946,1910,1902,-1901,1920,1900,-1903,1925,1904,-1906,1905,1920,-1926,1927,1926,-1977,1935,1931,1945,-1949,1915,1907,1929,-1935,1919,1923,-1913,1930,1944,1962,1950,-1933,1929,1935,1948,-1944,1934,1947,1946,-1934,1974,1975,1916,-1902,1914,1924,1932,-1932,1976,1977,1914,-1928,1928,1933,1946,-1950,1936,1939,1944,-1950,1940,1937,1952,-1955,1937,1939,1953,-1953,1936,1941,-1952,1947,1943,1938,-1942,1945,1950,1937,-1941,1964,1945,-1941,1939,1962,-1945,1938,1948,-1943,1946,1947,-1942,1936,1961,1946,-1942,1949,1944,1930,-1929,1951,1953,1939,-1937,1970,1971,1922,-1905,1971,1972,1899,-1923,1966,1967,1910,-1924,1965,1966,1923,-1920,1927,1914,1931,-1936,1964,1940,-1955,1969,1970,1904,1925,-1921,1968,1969,1920,-1903,1958,1963,-1939,1941,1963,-1956,1938,1942,-1957,1899,1972,1965,-1920,1949,1961,-1937,1950,1962,1939,-1938,1949,1946,-1962,1938,1956,1957,-1959,1948,1964,-1943,1941,1938,-1964,1967,1968,1902,-1911,1948,1945,-1965,1964,1954,-1957,1964,1956,-1943,1943,1948,-1939,1951,1941,-1974,1973,1955,1967,-1967,1955,1963,1958,1968,-1968,1958,1957,1969,-1969,1954,1957,-1957,1954,1952,1971,-1971,1952,1953,1960,1972,-1972,1965,1972,1960,-1960,1941,1955,-1974,1951,1973,1966,1965,-1960,1974,1903,1933,-1929,1930,1975,1974,-1929,1932,1924,1975,-1931,1969,1957,1954,-1971,1977,1909,-1915
- }
- Edges: *4514 {
- a: 0,4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,130,134,138,142,146,150,154,158,162,166,170,174,178,182,186,190,194,198,202,206,210,214,218,222,226,230,234,238,242,246,250,254,3,1,5,9,13,17,21,25,29,33,37,41,45,49,53,57,61,65,69,73,77,81,85,89,93,97,101,105,109,113,117,121,131,129,133,137,141,145,149,153,157,161,165,169,173,177,181,185,189,193,197,201,205,209,213,217,221,225,229,233,237,241,245,249,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236,240,244,248,252,259,257,261,265,269,273,277,281,285,289,293,297,301,305,309,313,317,321,325,329,333,337,341,346,351,355,359,363,367,371,375,379,256,260,264,268,272,276,280,284,288,292,296,300,304,308,312,316,320,324,328,332,336,340,345,350,354,358,362,366,370,374,378,382,389,387,391,395,399,403,407,411,415,419,423,427,431,435,439,443,447,451,455,459,463,467,471,476,479,483,487,491,495,499,503,386,390,394,398,402,406,410,414,418,422,426,430,434,438,442,446,450,454,458,462,466,470,475,478,482,486,490,494,498,502,506,513,511,515,519,523,527,531,535,539,543,547,551,555,559,563,567,571,575,579,583,587,591,595,600,603,607,611,615,619,623,627,510,514,518,522,526,530,534,538,542,546,550,554,558,562,566,570,574,578,582,586,590,594,724,599,602,606,610,614,618,622,626,630,637,635,639,643,647,651,655,659,663,667,671,675,679,683,687,691,695,699,703,707,711,715,719,723,728,733,737,741,745,749,753,757,2,6,10,14,18,22,26,30,34,38,42,46,50,54,58,62,66,70,74,78,82,86,90,94,98,102,106,110,114,118,122,126,767,771,775,779,783,787,791,795,799,803,807,811,815,819,823,827,831,835,839,843,847,851,855,859,863,867,871,875,879,883,887,891,893,897,901,905,909,913,917,921,925,929,933,937,941,945,949,953,957,961,965,969,973,977,981,985,989,993,997,1001,1005,1009,1013,1017,764,766,770,774,778,782,786,790,794,798,802,806,810,814,818,822,826,830,834,838,842,846,850,854,858,862,866,870,874,878,882,886,892,894,898,902,906,910,914,918,922,926,930,934,938,942,946,950,954,958,962,
- 966,970,974,978,982,986,990,994,998,1002,1006,1010,1014,895,899,903,907,911,915,919,923,927,931,935,939,943,947,951,955,959,963,967,971,975,979,983,987,991,995,999,1003,1007,1011,1015,1019,1020,1022,1026,1030,1034,1038,1042,1046,1050,1054,1058,1062,1066,1070,1074,1078,1082,1086,1090,1094,1098,1102,1106,1110,1115,1120,1124,1128,1132,1136,1140,1144,1023,1027,1031,1035,1039,1043,1047,1051,1055,1059,1063,1067,1071,1075,1079,1083,1087,1091,1095,1099,1103,1107,1111,1116,1121,1125,1129,1133,1137,1141,1145,1149,1150,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1242,1244,1248,1252,1256,1260,1264,1268,1153,1157,1161,1165,1169,1173,1177,1181,1185,1189,1193,1197,1201,1205,1209,1213,1217,1221,1225,1229,1233,1237,1539,1245,1249,1253,1257,1261,1265,1269,1273,1274,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1366,1368,1372,1376,1380,1384,1388,1392,1277,1281,1285,1289,1293,1297,1301,1305,1309,1313,1317,1321,1325,1329,1333,1337,1341,1345,1349,1353,1357,1361,1488,1493,1369,1373,1377,1381,1385,1389,1393,1397,1398,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1489,1494,1498,1502,1506,1510,1514,1518,1522,765,769,773,777,781,785,789,793,797,801,805,809,813,817,821,825,829,833,837,841,845,849,853,857,861,865,869,873,877,881,885,889,344,1528,725,1529,1533,349,730,474,598,1112,1241,1365,1240,1364,1117,1492,1536,1540,1546,1544,1550,1548,1555,1558,1567,1571,1578,1576,1582,1580,1587,1591,1595,1599,1603,1607,1611,1615,1619,1623,1627,1631,1635,1639,1647,1651,1655,1659,1663,1667,1671,1675,1679,1683,1687,1691,1695,1699,1705,1707,1709,1711,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1833,1840,2019,1843,1844,1845,2337,1850,2576,2194,2355,2148,1857,2044,1861,1862,1867,1898,1912,2383,1875,1873,1880,1929,1883,1882,2279,1950,2309,2220,2424,1884,1889,1841,1868,1891,1892,
- 1893,1894,1895,1896,1899,1981,1904,1907,2134,1910,1911,1914,1915,1916,1917,1918,1999,1972,2027,1919,2122,2186,1923,1928,2262,1930,2481,1947,2562,1933,1934,1985,1877,2076,1832,1940,1944,1945,1946,2231,2345,2230,2226,1948,1949,1951,1952,2246,2276,1956,2062,2331,2063,1963,1870,1965,1966,1967,1969,1973,1974,1996,2025,2290,1977,2023,1979,1982,1984,1986,1988,1989,1990,1992,1993,1994,1995,2342,1874,2138,2001,2004,2303,1878,1854,2014,2017,2215,1960,2020,2022,2026,2028,2030,2035,2036,1924,2041,2050,2221,2054,1939,2056,2058,1921,2068,2073,2074,2320,2126,2266,2078,2248,1978,2087,2088,2090,1887,2095,2096,2098,2100,2497,2043,2107,2224,2381,2037,2111,2296,2219,2217,2366,2139,2124,2123,2018,2133,2046,2281,2141,2145,2146,2154,2158,2160,2075,2165,2166,2293,2294,2174,1866,2175,2177,2183,2181,1905,2184,2190,2191,2195,2197,2196,2199,2202,2193,1888,2207,2212,2218,2225,2227,2229,2234,1942,2364,2242,2161,2249,1922,2255,2259,2264,2268,1863,2272,1943,1941,1954,2418,2282,2288,1976,2839,1975,2039,1858,2089,2300,1860,1859,2009,2304,2061,2315,2314,1920,2121,1881,2200,2201,2326,2329,2066,1926,2057,2338,2343,2347,2349,1913,2356,2085,2360,2011,1909,2084,1897,2372,2376,2005,2002,1997,2151,2384,2051,2152,2094,2143,2142,2321,1865,2092,2302,1839,1872,2284,2008,2406,2093,2069,1838,1864,1871,2052,2045,2285,1903,1971,2420,1901,2422,1886,1908,1970,1902,1885,2032,2278,2120,2391,2113,1853,1855,1937,2114,2130,1834,1842,1869,1936,2132,1835,2863,1846,2461,2336,2479,2472,1848,2380,2465,1998,2510,1849,2555,2125,2333,2377,2503,1876,2310,2049,2441,2072,2071,2117,2352,2155,1968,2458,2517,2534,2523,2521,2598,2531,2514,2518,2539,2522,2545,2526,2530,2515,2536,2548,2532,2544,2334,1847,2335,2379,2462,2468,2471,2550,2516,2528,2519,2169,2664,2643,2646,2170,2520,2524,2527,2484,2655,2651,2594,2600,2617,2618,2595,2171,2667,2168,2606,2513,2463,2549,2540,2512,2597,2601,2634,2621,2537,2596,2593,2620,2583,2635,2543,2673,2572,2570,2592,2588,2564,2662,2566,2573,2569,2626,2589,2584,2561,2565,2603,2678,2814,2696,2684,2819,2750,2721,2685,2686,2693,2688,2689,2690,2692,2698,2704,2705,
- 2710,2703,2701,2706,2708,2707,2813,2719,2720,2722,2699,2694,2746,2674,2732,2717,2683,2742,2676,2727,2735,2695,2754,2677,2747,2709,2714,2724,2760,2766,2762,2790,2768,2774,2764,2798,2715,2675,2716,2726,2738,2741,2778,2753,2786,2757,2733,2756,2769,2796,2822,2744,2680,2745,2682,2681,2805,2767,1856,2104,2775,2423,2836,1837,2398,1836,2414,2648,2645,2644,2486,2307,1852,2864,1851,2474,1925,2658,2679,1900,2759,2375,2112,2482,2236,2891,2898,3086,2901,2902,2903,3406,2908,3644,3263,3424,3217,2915,3111,2919,2920,2925,2956,2970,3451,2933,2931,2938,2990,2941,2940,3348,3017,3378,3289,3492,2942,2947,2899,2926,2949,2950,2951,2952,2953,2954,2957,3048,2962,2965,3203,2968,2969,2972,2973,2974,2975,2976,3066,3039,3094,2977,3191,3255,2981,2986,2988,2991,3549,3014,3630,2994,2995,3052,2935,3146,2890,3001,3005,3006,3007,3300,3414,3008,2989,3010,3011,3012,3015,3016,3018,3019,3315,3345,3023,3129,3400,3130,3030,2928,3032,3033,3034,3036,3040,3041,3063,3092,3359,3044,3090,3046,3049,3051,3053,3055,3056,3057,3059,3060,3061,3062,3411,2932,3207,3068,3071,3372,2936,2912,3081,3084,3284,3027,3087,3089,3093,3095,3097,3102,3103,2982,3108,3117,3290,3121,3000,3123,3125,2979,3135,3143,3138,3389,3195,3335,3148,3317,3045,3157,3158,3160,2945,3165,3166,3168,3170,3565,3110,3177,3293,3449,3104,3551,3365,3288,3286,3435,3208,3193,3192,3085,3202,3113,3350,3210,3214,3215,3223,3227,3229,3145,3234,3235,3362,3363,3243,2924,3244,3246,3252,3250,2963,3253,3259,2987,3264,3266,3265,3268,3271,3262,2946,3276,3281,3287,3294,3296,3298,3303,3003,3433,3311,3230,3318,2980,3324,3330,3333,3337,2921,3341,3004,3002,3021,3486,3351,3357,3043,3907,3042,3106,2916,3159,3369,2918,2917,3076,3373,3128,3384,3383,2978,3190,2939,3269,3270,3395,3398,3133,2984,3124,3407,3412,3416,3418,2971,3425,3155,3429,3078,2967,3154,2955,3441,3444,3072,3069,3064,3220,3452,3118,3221,3164,3212,3211,3390,2923,3162,3371,2897,2930,3353,3075,3474,3163,3139,2896,2922,2929,3119,3112,3354,2961,3038,3488,2959,3490,2944,2966,3037,2960,2943,3099,3347,3189,3459,3182,2911,2913,2998,3183,3199,2892,2900,2927,2997,3201,2893,3931,
- 2904,3529,3405,3547,3540,2906,3448,3533,3065,3578,2907,3623,3194,3402,3445,3571,2934,3379,3116,3509,3142,3141,3186,3421,3224,3035,3526,3585,3602,3591,3589,3666,3599,3582,3586,3607,3590,3613,3594,3598,3583,3604,3616,3600,3612,3403,2905,3404,3447,3530,3536,3539,3618,3584,3596,3587,3238,3732,3711,3714,3239,3588,3592,3595,3552,3723,3719,3662,3668,3685,3686,3663,3240,3735,3237,3674,3581,3531,3617,3608,3580,3665,3669,3702,3689,3605,3664,3661,3688,3651,3703,3611,3741,3640,3638,3660,3656,3632,3730,3634,3641,3637,3694,3657,3652,3629,3633,3671,3746,3882,3764,3752,3887,3818,3789,3753,3754,3761,3756,3757,3758,3760,3766,3772,3773,3778,3771,3769,3774,3776,3775,3881,3787,3788,3790,3767,3762,3814,3742,3800,3785,3751,3810,3744,3795,3803,3763,3822,3745,3815,3777,3782,3792,3828,3834,3830,3858,3836,3842,3832,3866,3783,3743,3784,3794,3806,3809,3846,3821,3854,3825,3801,3824,3837,3864,3890,3812,3748,3813,3750,3749,3873,3835,2914,3174,3843,3491,3904,2895,3466,2894,3482,3716,3713,3712,3554,3376,2910,3932,2909,3542,2983,3726,3747,2958,3827,3956,3181,3550,3305,3443,3180,3965,3972,4160,3975,3976,3977,4481,3982,4720,4338,4499,4292,3989,4185,3993,3994,3999,4030,4044,4527,4007,4005,4012,4064,4015,4014,4423,4091,4453,4364,4568,4016,4021,3973,4000,4023,4024,4025,4026,4027,4028,4031,4122,4036,4039,4278,4042,4043,4046,4047,4048,4049,4050,4140,4113,4168,4051,4266,4330,4055,4060,4062,4065,4625,4088,4706,4068,4069,4126,4009,4220,3964,4075,4079,4080,4081,4375,4489,4082,4063,4084,4085,4086,4089,4090,4092,4093,4390,4420,4097,4203,4475,4204,4104,4002,4106,4107,4108,4110,4114,4115,4137,4166,4434,4118,4164,4120,4123,4125,4127,4129,4130,4131,4133,4134,4135,4136,4486,4006,4282,4142,4145,4447,4010,3986,4155,4158,4359,4101,4161,4163,4167,4169,4171,4176,4177,4056,4182,4191,4365,4195,4074,4197,4199,4053,4209,4217,4212,4464,4270,4410,4222,4392,4119,4231,4232,4234,4019,4239,4240,4242,4244,4641,4184,4251,4368,4525,4178,4255,4440,4363,4361,4510,4283,4268,4267,4159,4277,4187,4425,4285,4289,4290,4298,4302,4304,4219,4309,4310,4437,4438,4318,3998,4319,4321,4327,4325,4037,
- 4328,4334,4061,4339,4341,4340,4343,4346,4337,4020,4351,4356,4362,4369,4371,4373,4378,4077,4508,4386,4305,4393,4054,4399,4403,4408,4412,3995,4416,4078,4076,4095,4562,4426,4432,4117,4983,4116,4180,3990,4233,4444,3992,3991,4150,4448,4202,4459,4458,4052,4265,4013,4344,4345,4470,4473,4207,4058,4198,4482,4487,4491,4493,4045,4500,4229,4504,4152,4041,4228,4029,4516,4520,4146,4143,4138,4295,4528,4192,4296,4238,4287,4286,4465,3997,4236,4446,3971,4004,4428,4149,4550,4237,4213,3970,3996,4003,4193,4186,4429,4035,4112,4564,4033,4566,4018,4040,4111,4034,4017,4173,4422,4264,4535,4257,3985,3987,4072,4258,4274,3966,3974,4001,4071,4276,3967,5007,3978,4605,4480,4623,4616,3980,4524,4609,4139,4654,3981,4699,4269,4477,4521,4647,4008,4454,4190,4585,4216,4215,4261,4496,4299,4109,4602,4661,4678,4667,4665,4742,4675,4658,4662,4683,4666,4689,4670,4674,4659,4680,4692,4676,4688,4478,3979,4479,4523,4606,4612,4615,4694,4660,4672,4663,4313,4808,4787,4790,4314,4664,4668,4671,4628,4799,4795,4738,4744,4761,4762,4739,4315,4811,4312,4750,4657,4607,4693,4684,4656,4741,4745,4778,4765,4681,4740,4737,4764,4727,4779,4687,4817,4716,4714,4736,4732,4708,4806,4710,4717,4713,4770,4733,4728,4705,4709,4747,4822,4958,4840,4828,4963,4894,4865,4829,4830,4837,4832,4833,4834,4836,4842,4848,4849,4854,4847,4845,4850,4852,4851,4957,4863,4864,4866,4843,4838,4890,4818,4876,4861,4827,4886,4820,4871,4879,4839,4898,4821,4891,4853,4858,4868,4904,4910,4906,4934,4912,4918,4908,4942,4859,4819,4860,4870,4882,4885,4922,4897,4930,4901,4877,4900,4913,4940,4966,4888,4824,4889,4826,4825,4949,4911,3988,4248,4919,4567,4980,3969,4542,3968,4558,4792,4789,4788,4630,4451,3984,5008,3983,4618,4057,4802,4823,4032,4903,4519,4256,4626,4380,5034,5035,5036,5131,5041,5248,5104,5046,5072,5060,5047,5049,5177,5057,5234,5114,5139,5051,5050,5053,5054,5055,5058,5059,5061,5062,5069,5064,5065,5066,5068,5136,5074,5078,5083,5082,5092,5125,5119,5088,5086,5179,5090,5089,5085,5172,5100,5048,5105,5106,5103,5110,5112,5116,5120,5123,5045,5077,5132,5137,5141,5145,5075,5070,5357,5037,5157,5130,5175,5168,5039,5149,5161,
- 5071,5182,5040,5227,5091,5127,5146,5154,5189,5206,5195,5193,5270,5203,5186,5190,5211,5194,5217,5198,5202,5187,5208,5220,5204,5216,5128,5038,5129,5148,5158,5164,5167,5222,5188,5200,5191,5097,5336,5315,5318,5098,5192,5196,5199,5180,5327,5323,5266,5272,5289,5290,5267,5099,5339,5096,5278,5185,5159,5221,5212,5184,5269,5273,5306,5293,5209,5268,5265,5292,5255,5307,5215,5345,5244,5242,5264,5260,5236,5334,5238,5245,5241,5298,5261,5256,5233,5237,5275,5320,5317,5316,5043,5358,5042,5170,5044,5330,5178,5144,5370,5429,5433,5414,5402,5413,5386,5396,5374,5406,5416,5425,5389,5383,5395,5398,5397,5378,5393,5400,5399,5382,5391,5449,5375,5441,5379,5427,5373,5376,5387,5404,5385,5388,5437,5412,5381,5384,5446,5421,5377,5380,5417,5458,5465,5644,5468,5469,5470,5962,5475,6201,5819,5980,5773,5482,5669,5486,5487,5492,5523,5537,6008,5500,5498,5505,5554,5508,5507,5904,5575,5934,5845,6049,5509,5514,5466,5493,5516,5517,5518,5519,5520,5521,5524,5606,5529,5532,5759,5535,5536,5539,5540,5541,5542,5543,5624,5597,5652,5544,5747,5811,5548,5553,5887,5555,6106,5572,6187,5558,5559,5610,5502,5701,5457,5565,5569,5570,5571,5856,5970,5855,5851,5573,5574,5576,5577,5871,5901,5581,5687,5956,5688,5588,5495,5590,5591,5592,5594,5598,5599,5621,5650,5915,5602,5648,5604,5607,5609,5611,5613,5614,5615,5617,5618,5619,5620,5967,5499,5763,5626,5629,5928,5503,5479,5639,5642,5840,5585,5645,5647,5651,5653,5655,5660,5661,5549,5666,5675,5846,5679,5564,5681,5683,5546,5693,5698,5699,5945,5751,5891,5703,5873,5603,5712,5713,5715,5512,5720,5721,5723,5725,6122,5668,5732,5849,6006,5662,5736,5921,5844,5842,5991,5764,5749,5748,5643,5758,5671,5906,5766,5770,5771,5779,5783,5785,5700,5790,5791,5918,5919,5799,5491,5800,5802,5808,5806,5530,5809,5815,5816,5820,5822,5821,5824,5827,5818,5513,5832,5837,5843,5850,5852,5854,5859,5567,5989,5867,5786,5874,5547,5880,5884,5889,5893,5488,5897,5568,5566,5579,6043,5907,5913,5601,6464,5600,5664,5483,5714,5925,5485,5484,5634,5929,5686,5940,5939,5545,5746,5506,5825,5826,5951,5954,5691,5551,5682,5963,5968,5972,5974,5538,5981,5710,5985,5636,5534,5709,5522,5997,
- 6001,5630,5627,5622,5776,6009,5676,5777,5719,5768,5767,5946,5490,5717,5927,5464,5497,5909,5633,6031,5718,5694,5463,5489,5496,5677,5670,5910,5528,5596,6045,5526,6047,5511,5533,5595,5527,5510,5657,5903,5745,6016,5738,5478,5480,5562,5739,5755,5459,5467,5494,5561,5757,5460,6488,5471,6086,5961,6104,6097,5473,6005,6090,5623,6135,5474,6180,5750,5958,6002,6128,5501,5935,5674,6066,5697,5696,5742,5977,5780,5593,6083,6142,6159,6148,6146,6223,6156,6139,6143,6164,6147,6170,6151,6155,6140,6161,6173,6157,6169,5959,5472,5960,6004,6087,6093,6096,6175,6141,6153,6144,5794,6289,6268,6271,5795,6145,6149,6152,6109,6280,6276,6219,6225,6242,6243,6220,5796,6292,5793,6231,6138,6088,6174,6165,6137,6222,6226,6259,6246,6162,6221,6218,6245,6208,6260,6168,6298,6197,6195,6217,6213,6189,6287,6191,6198,6194,6251,6214,6209,6186,6190,6228,6303,6439,6321,6309,6444,6375,6346,6310,6311,6318,6313,6314,6315,6317,6323,6329,6330,6335,6328,6326,6331,6333,6332,6438,6344,6345,6347,6324,6319,6371,6299,6357,6342,6308,6367,6301,6352,6360,6320,6379,6302,6372,6334,6339,6349,6385,6391,6387,6415,6393,6399,6389,6423,6340,6300,6341,6351,6363,6366,6403,6378,6411,6382,6358,6381,6394,6421,6447,6369,6305,6370,6307,6306,6430,6392,5481,5729,6400,6048,6461,5462,6023,5461,6039,6273,6270,6269,6111,5932,5477,6489,5476,6099,5550,6283,6304,5525,6384,6000,5737,6107,5861,6516,6523,6711,6526,6527,6528,7031,6533,7269,6888,7049,6842,6540,6736,6544,6545,6550,6581,6595,7076,6558,6556,6563,6615,6566,6565,6973,6642,7003,6914,7117,6567,6572,6524,6551,6574,6575,6576,6577,6578,6579,6582,6673,6587,6590,6828,6593,6594,6597,6598,6599,6600,6601,6691,6664,6719,6602,6816,6880,6606,6611,6613,6616,7174,6639,7255,6619,6620,6677,6560,6771,6515,6626,6630,6631,6632,6925,7039,6633,6614,6635,6636,6637,6640,6641,6643,6644,6940,6970,6648,6754,7025,6755,6655,6553,6657,6658,6659,6661,6665,6666,6688,6717,6984,6669,6715,6671,6674,6676,6678,6680,6681,6682,6684,6685,6686,6687,7036,6557,6832,6693,6696,6997,6561,6537,6706,6709,6909,6652,6712,6714,6718,6720,6722,6727,6728,6607,6733,6742,6915,6746,6625,6748,6750,6604,
- 6760,6768,6763,7014,6820,6960,6773,6942,6670,6782,6783,6785,6570,6790,6791,6793,6795,7190,6735,6802,6918,7074,6729,7176,6990,6913,6911,7060,6833,6818,6817,6710,6827,6738,6975,6835,6839,6840,6848,6852,6854,6770,6859,6860,6987,6988,6868,6549,6869,6871,6877,6875,6588,6878,6884,6612,6889,6891,6890,6893,6896,6887,6571,6901,6906,6912,6919,6921,6923,6928,6628,7058,6936,6855,6943,6605,6949,6955,6958,6962,6546,6966,6629,6627,6646,7111,6976,6982,6668,7532,6667,6731,6541,6784,6994,6543,6542,6701,6998,6753,7009,7008,6603,6815,6564,6894,6895,7020,7023,6758,6609,6749,7032,7037,7041,7043,6596,7050,6780,7054,6703,6592,6779,6580,7066,7069,6697,6694,6689,6845,7077,6743,6846,6789,6837,6836,7015,6548,6787,6996,6522,6555,6978,6700,7099,6788,6764,6521,6547,6554,6744,6737,6979,6586,6663,7113,6584,7115,6569,6591,6662,6585,6568,6724,6972,6814,7084,6807,6536,6538,6623,6808,6824,6517,6525,6552,6622,6826,6518,7556,6529,7154,7030,7172,7165,6531,7073,7158,6690,7203,6532,7248,6819,7027,7070,7196,6559,7004,6741,7134,6767,6766,6811,7046,6849,6660,7151,7210,7227,7216,7214,7291,7224,7207,7211,7232,7215,7238,7219,7223,7208,7229,7241,7225,7237,7028,6530,7029,7072,7155,7161,7164,7243,7209,7221,7212,6863,7357,7336,7339,6864,7213,7217,7220,7177,7348,7344,7287,7293,7310,7311,7288,6865,7360,6862,7299,7206,7156,7242,7233,7205,7290,7294,7327,7314,7230,7289,7286,7313,7276,7328,7236,7366,7265,7263,7285,7281,7257,7355,7259,7266,7262,7319,7282,7277,7254,7258,7296,7371,7507,7389,7377,7512,7443,7414,7378,7379,7386,7381,7382,7383,7385,7391,7397,7398,7403,7396,7394,7399,7401,7400,7506,7412,7413,7415,7392,7387,7439,7367,7425,7410,7376,7435,7369,7420,7428,7388,7447,7370,7440,7402,7407,7417,7453,7459,7455,7483,7461,7467,7457,7491,7408,7368,7409,7419,7431,7434,7471,7446,7479,7450,7426,7449,7462,7489,7515,7437,7373,7438,7375,7374,7498,7460,6539,6799,7468,7116,7529,6520,7091,6519,7107,7341,7338,7337,7179,7001,6535,7557,6534,7167,6608,7351,7372,6583,7452,7581,6806,7175,6930,7068,6805,7590,7597,7785,7600,7601,7602,8106,7607,8345,7963,8124,7917,7614,7810,7618,7619,7624,7655,
- 7669,8152,7632,7630,7637,7689,7640,7639,8048,7716,8078,7989,8193,7641,7646,7598,7625,7648,7649,7650,7651,7652,7653,7656,7747,7661,7664,7903,7667,7668,7671,7672,7673,7674,7675,7765,7738,7793,7676,7891,7955,7680,7685,7687,7690,8250,7713,8331,7693,7694,7751,7634,7845,7589,7700,7704,7705,7706,8000,8114,7707,7688,7709,7710,7711,7714,7715,7717,7718,8015,8045,7722,7828,8100,7829,7729,7627,7731,7732,7733,7735,7739,7740,7762,7791,8059,7743,7789,7745,7748,7750,7752,7754,7755,7756,7758,7759,7760,7761,8111,7631,7907,7767,7770,8072,7635,7611,7780,7783,7984,7726,7786,7788,7792,7794,7796,7801,7802,7681,7807,7816,7990,7820,7699,7822,7824,7678,7834,7842,7837,8089,7895,8035,7847,8017,7744,7856,7857,7859,7644,7864,7865,7867,7869,8266,7809,7876,7993,8150,7803,7880,8065,7988,7986,8135,7908,7893,7892,7784,7902,7812,8050,7910,7914,7915,7923,7927,7929,7844,7934,7935,8062,8063,7943,7623,7944,7946,7952,7950,7662,7953,7959,7686,7964,7966,7965,7968,7971,7962,7645,7976,7981,7987,7994,7996,7998,8003,7702,8133,8011,7930,8018,7679,8024,8028,8033,8037,7620,8041,7703,7701,7720,8187,8051,8057,7742,8608,7741,7805,7615,7858,8069,7617,7616,7775,8073,7827,8084,8083,7677,7890,7638,7969,7970,8095,8098,7832,7683,7823,8107,8112,8116,8118,7670,8125,7854,8129,7777,7666,7853,7654,8141,8145,7771,7768,7763,7920,8153,7817,7921,7863,7912,7911,8090,7622,7861,8071,7596,7629,8053,7774,8175,7862,7838,7595,7621,7628,7818,7811,8054,7660,7737,8189,7658,8191,7643,7665,7736,7659,7642,7798,8047,7889,8160,7882,7610,7612,7697,7883,7899,7591,7599,7626,7696,7901,7592,8632,7603,8230,8105,8248,8241,7605,8149,8234,7764,8279,7606,8324,7894,8102,8146,8272,7633,8079,7815,8210,7841,7840,7886,8121,7924,7734,8227,8286,8303,8292,8290,8367,8300,8283,8287,8308,8291,8314,8295,8299,8284,8305,8317,8301,8313,8103,7604,8104,8148,8231,8237,8240,8319,8285,8297,8288,7938,8433,8412,8415,7939,8289,8293,8296,8253,8424,8420,8363,8369,8386,8387,8364,7940,8436,7937,8375,8282,8232,8318,8309,8281,8366,8370,8403,8390,8306,8365,8362,8389,8352,8404,8312,8442,8341,8339,8361,8357,8333,8431,8335,8342,8338,8395,
- 8358,8353,8330,8334,8372,8447,8583,8465,8453,8588,8519,8490,8454,8455,8462,8457,8458,8459,8461,8467,8473,8474,8479,8472,8470,8475,8477,8476,8582,8488,8489,8491,8468,8463,8515,8443,8501,8486,8452,8511,8445,8496,8504,8464,8523,8446,8516,8478,8483,8493,8529,8535,8531,8559,8537,8543,8533,8567,8484,8444,8485,8495,8507,8510,8547,8522,8555,8526,8502,8525,8538,8565,8591,8513,8449,8514,8451,8450,8574,8536,7613,7873,8544,8192,8605,7594,8167,7593,8183,8417,8414,8413,8255,8076,7609,8633,7608,8243,7682,8427,8448,7657,8528,8144,7881,8251,8005,8659,8660,8661,8756,8666,8873,8729,8671,8697,8685,8672,8674,8802,8682,8859,8739,8764,8676,8675,8678,8679,8680,8683,8684,8686,8687,8694,8689,8690,8691,8693,8761,8699,8703,8708,8707,8717,8750,8744,8713,8711,8804,8715,8714,8710,8797,8725,8673,8730,8731,8728,8735,8737,8741,8745,8748,8670,8702,8757,8762,8766,8770,8700,8695,8982,8662,8782,8755,8800,8793,8664,8774,8786,8696,8807,8665,8852,8716,8752,8771,8779,8814,8831,8820,8818,8895,8828,8811,8815,8836,8819,8842,8823,8827,8812,8833,8845,8829,8841,8753,8663,8754,8773,8783,8789,8792,8847,8813,8825,8816,8722,8961,8940,8943,8723,8817,8821,8824,8805,8952,8948,8891,8897,8914,8915,8892,8724,8964,8721,8903,8810,8784,8846,8837,8809,8894,8898,8931,8918,8834,8893,8890,8917,8880,8932,8840,8970,8869,8867,8889,8885,8861,8959,8863,8870,8866,8923,8886,8881,8858,8862,8900,8945,8942,8941,8668,8983,8667,8795,8669,8955,8803,8769,8995
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *26994 {
- a: 0.980784595012665,0,-0.195094019174576,0.923885583877563,0,-0.382668972015381,0.923885583877563,0,-0.382668972015381,0.980784595012665,0,-0.195094019174576,0.923885583877563,0,-0.382668972015381,0.83147656917572,0,-0.555559992790222,0.83147656917572,0,-0.555559992790222,0.923885583877563,0,-0.382668972015381,0.83147656917572,0,-0.555559992790222,0.707104086875916,0,-0.707109570503235,0.707104086875916,0,-0.707109570503235,0.83147656917572,0,-0.555559992790222,0.707104086875916,0,-0.707109570503235,0.555563390254974,0,-0.831474184989929,0.555563390254974,0,-0.831474184989929,0.707104086875916,0,-0.707109570503235,0.555563390254974,0,-0.831474184989929,0.382686465978622,0,-0.923878252506256,0.382686465978622,0,-0.923878252506256,0.555563390254974,0,-0.831474184989929,0.382686465978622,0,-0.923878252506256,0.19509120285511,0,-0.980785131454468,0.19509120285511,0,-0.980785131454468,0.382686465978622,0,-0.923878252506256,0.19509120285511,0,-0.980785131454468,0,0,-1,0,0,-1,0.19509120285511,0,-0.980785131454468,0,0,-1,-0.19509045779705,0,-0.980785191059113,-0.19509045779705,0,-0.980785191059113,0,0,-1,-0.19509045779705,0,-0.980785191059113,-0.38268518447876,0,-0.923878908157349,-0.38268518447876,0,-0.923878908157349,-0.19509045779705,0,-0.980785191059113,-0.38268518447876,0,-0.923878908157349,-0.555562913417816,0,-0.831474542617798,-0.555562913417816,0,-0.831474542617798,-0.38268518447876,0,-0.923878908157349,-0.555562913417816,0,-0.831474542617798,-0.707103610038757,0,-0.707110047340393,-0.707103610038757,0,-0.707110047340393,-0.555562913417816,0,-0.831474542617798,-0.707103610038757,0,-0.707110047340393,-0.831476151943207,0,-0.555560350418091,-0.831476211547852,0,-0.555560350418091,-0.707103610038757,0,-0.707110047340393,-0.831476151943207,0,-0.555560350418091,-0.923885583877563,0,-0.382668942213058,-0.923885583877563,0,-0.382668942213058,-0.831476211547852,0,-0.555560350418091,-0.923885583877563,0,-0.382668942213058,-0.980784595012665,0,-0.195093706250191,-0.980784595012665,0,-0.195093706250191,
- -0.923885583877563,0,-0.382668942213058,-0.980784595012665,0,-0.195093706250191,-1,0,0,-1,0,0,-0.980784595012665,0,-0.195093706250191,-1,0,0,-0.980784595012665,0,0.195093706250191,-0.980784595012665,0,0.195093706250191,-1,0,0,-0.980784595012665,0,0.195093706250191,-0.923885583877563,0,0.382668942213058,-0.923885583877563,0,0.382668942213058,-0.980784595012665,0,0.195093706250191,-0.923885583877563,0,0.382668942213058,-0.83147668838501,0,0.555559575557709,-0.83147668838501,0,0.555559575557709,-0.923885583877563,0,0.382668942213058,-0.83147668838501,0,0.555559575557709,-0.707104384899139,0,0.707109153270721,-0.707104384899139,0,0.707109153270721,-0.83147668838501,0,0.555559575557709,-0.707104384899139,0,0.707109153270721,-0.555563390254974,0,0.831474184989929,-0.555563390254974,0,0.831474184989929,-0.707104384899139,0,0.707109153270721,-0.555563390254974,0,0.831474184989929,-0.382686465978622,0,0.923878252506256,-0.382686465978622,0,0.923878252506256,-0.555563390254974,0,0.831474184989929,-0.382686465978622,0,0.923878252506256,-0.19509120285511,0,0.980785131454468,-0.19509120285511,-5.01373054184739e-010,0.980785131454468,-0.382686465978622,0,0.923878252506256,-0.19509120285511,0,0.980785131454468,-7.66032258070481e-007,0,1,-7.66032258070481e-007,-7.52050366426005e-010,1,-0.19509120285511,-5.01373054184739e-010,0.980785131454468,-7.66032258070481e-007,0,1,0.19509045779705,0,0.980785191059113,0.195090472698212,-2.50686554847945e-010,0.980785191059113,-7.66032258070481e-007,-7.52050366426005e-010,1,0.19509045779705,0,0.980785191059113,0.382686465978622,0,0.923878252506256,0.382686465978622,0,0.923878252506256,0.195090472698212,-2.50686554847945e-010,0.980785191059113,0.382686465978622,0,0.923878252506256,0.55556309223175,-2.56699166811813e-007,0.831474304199219,0.555562973022461,-1.28349597616761e-007,0.831474363803864,0.382686465978622,0,0.923878252506256,0.55556309223175,-2.56699166811813e-007,0.831474304199219,0.707104027271271,-4.83132566841959e-007,0.707109570503235,0.707103967666626,-2.4156628342098e-007,0.70710963010788,
- 0.555562973022461,-1.28349597616761e-007,0.831474363803864,0.707104027271271,-4.83132566841959e-007,0.707109570503235,0.83147656917572,-2.26433911620916e-007,0.555559873580933,0.83147656917572,-1.13216934494176e-007,0.555559754371643,0.707103967666626,-2.4156628342098e-007,0.70710963010788,0.83147656917572,-2.26433911620916e-007,0.555559873580933,0.923885703086853,0,0.382668644189835,0.923885703086853,0,0.382668644189835,0.83147656917572,-1.13216934494176e-007,0.555559754371643,0.923885703086853,0,0.382668644189835,0.98078465461731,0,0.195093557238579,0.98078465461731,0,0.195093557238579,0.923885703086853,0,0.382668644189835,0.98078465461731,0,0.195093557238579,1,0,-5.10693887179059e-009,1,0,-5.10693887179059e-009,0.98078465461731,0,0.195093557238579,1,0,-5.10693887179059e-009,0.980784595012665,0,-0.195094019174576,0.980784595012665,0,-0.195094019174576,1,0,-5.10693887179059e-009,0.980784595012665,0,-0.195094019174576,0.923885583877563,0,-0.382668972015381,0.923885583877563,0,-0.382668972015381,0.980784595012665,0,-0.195094019174576,0.923885583877563,0,-0.382668972015381,0.83147656917572,0,-0.555559992790222,0.83147656917572,0,-0.555559992790222,0.923885583877563,0,-0.382668972015381,0.83147656917572,0,-0.555559992790222,0.707104086875916,0,-0.707109570503235,0.707104086875916,0,-0.707109570503235,0.83147656917572,0,-0.555559992790222,0.707104086875916,0,-0.707109570503235,0.555563390254974,0,-0.831474184989929,0.555563390254974,0,-0.831474184989929,0.707104086875916,0,-0.707109570503235,0.555563390254974,0,-0.831474184989929,0.382686465978622,0,-0.923878252506256,0.382686465978622,0,-0.923878252506256,0.555563390254974,0,-0.831474184989929,0.382686465978622,0,-0.923878252506256,0.19509120285511,0,-0.980785131454468,0.19509120285511,0,-0.980785131454468,0.382686465978622,0,-0.923878252506256,0.19509120285511,0,-0.980785131454468,0,0,-1,0,0,-1,0.19509120285511,0,-0.980785131454468,0,0,-1,-0.19509045779705,0,-0.980785191059113,-0.19509045779705,0,-0.980785191059113,0,0,-1,-0.19509045779705,0,-0.980785191059113,-0.38268518447876,0,-0.923878908157349,
- -0.38268518447876,0,-0.923878908157349,-0.19509045779705,0,-0.980785191059113,-0.38268518447876,0,-0.923878908157349,-0.555562913417816,0,-0.831474542617798,-0.555562913417816,0,-0.831474542617798,-0.38268518447876,0,-0.923878908157349,-0.555562913417816,0,-0.831474542617798,-0.707103610038757,0,-0.707110047340393,-0.707103610038757,0,-0.707110047340393,-0.555562913417816,0,-0.831474542617798,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.831476151943207,0,-0.555560350418091,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.923885583877563,0,-0.382668942213058,-0.923885583877563,0,-0.382668942213058,-0.831476151943207,0,-0.555560350418091,-0.923885583877563,0,-0.382668942213058,-0.980784595012665,0,-0.195093706250191,-0.980784595012665,0,-0.195093706250191,-0.923885583877563,0,-0.382668942213058,-0.980784595012665,0,-0.195093706250191,-1,0,0,-1,0,0,-0.980784595012665,0,-0.195093706250191,-1,0,0,-0.980784595012665,0,0.195093706250191,-0.980784595012665,0,0.195093706250191,-1,0,0,-0.980784595012665,0,0.195093706250191,-0.923885583877563,0,0.382668942213058,-0.923885583877563,0,0.382668942213058,-0.980784595012665,0,0.195093706250191,-0.923885583877563,0,0.382668942213058,-0.83147668838501,0,0.555559575557709,-0.83147668838501,0,0.555559575557709,-0.923885583877563,0,0.382668942213058,-0.83147668838501,0,0.555559575557709,-0.707104384899139,0,0.707109153270721,-0.707104384899139,0,0.707109153270721,-0.83147668838501,0,0.555559575557709,-0.707104384899139,0,0.707109153270721,-0.555563390254974,0,0.831474184989929,-0.555563390254974,0,0.831474184989929,-0.707104384899139,0,0.707109153270721,-0.555563390254974,0,0.831474184989929,-0.382686465978622,0,0.923878252506256,-0.382686465978622,0,0.923878252506256,-0.555563390254974,0,0.831474184989929,-0.382686465978622,0,0.923878252506256,-0.19509120285511,0,0.980785131454468,-0.19509120285511,0,0.980785131454468,-0.382686465978622,0,0.923878252506256,-0.19509120285511,0,0.980785131454468,-7.66032258070481e-007,0,1,
- -7.66032258070481e-007,0,1,-0.19509120285511,0,0.980785131454468,-7.66032258070481e-007,0,1,0.195090472698212,0,0.980785191059113,0.19509045779705,0,0.980785191059113,-7.66032258070481e-007,0,1,0.195090472698212,0,0.980785191059113,0.382686465978622,0,0.923878252506256,0.382686465978622,0,0.923878252506256,0.19509045779705,0,0.980785191059113,0.382686465978622,0,0.923878252506256,0.555563390254974,0,0.831474184989929,0.555563390254974,0,0.831474184989929,0.382686465978622,0,0.923878252506256,0.555563390254974,0,0.831474184989929,0.707103967666626,0,0.70710963010788,0.707103967666626,0,0.70710963010788,0.555563390254974,0,0.831474184989929,0.707103967666626,0,0.70710963010788,0.831476449966431,0,0.555559992790222,0.831476449966431,0,0.555559992790222,0.707103967666626,0,0.70710963010788,0.831476449966431,0,0.555559992790222,0.923885703086853,0,0.382668644189835,0.923885703086853,0,0.382668644189835,0.831476449966431,0,0.555559992790222,0.923885703086853,0,0.382668644189835,0.98078465461731,0,0.195093557238579,0.98078465461731,0,0.195093557238579,0.923885703086853,0,0.382668644189835,0.98078465461731,0,0.195093557238579,1,0,-5.10693887179059e-009,1,0,-5.10693887179059e-009,0.98078465461731,0,0.195093557238579,1,0,-5.10693887179059e-009,0.980784595012665,0,-0.195094019174576,0.980784595012665,0,-0.195094019174576,1,0,-5.10693887179059e-009,0.980784595012665,0,-0.195094019174576,0.923885583877563,0,-0.382668972015381,0.923885583877563,0,-0.382668972015381,0.980784595012665,0,-0.195094019174576,0.923885583877563,0,-0.382668972015381,0.83147656917572,0,-0.555559992790222,0.83147656917572,0,-0.555559992790222,0.923885583877563,0,-0.382668972015381,0.83147656917572,0,-0.555559992790222,0.707104086875916,0,-0.707109570503235,0.707104086875916,0,-0.707109570503235,0.83147656917572,0,-0.555559992790222,0.707104086875916,0,-0.707109570503235,0.555563390254974,0,-0.831474184989929,0.555563390254974,0,-0.831474184989929,0.707104086875916,0,-0.707109570503235,0.555563390254974,0,-0.831474184989929,0.382686465978622,0,-0.923878252506256,
- 0.382686465978622,0,-0.923878252506256,0.555563390254974,0,-0.831474184989929,0.382686465978622,0,-0.923878252506256,0.19509120285511,0,-0.980785131454468,0.19509120285511,0,-0.980785131454468,0.382686465978622,0,-0.923878252506256,0.19509120285511,0,-0.980785131454468,0,0,-1,0,0,-1,0.19509120285511,0,-0.980785131454468,0,0,-1,-0.19509045779705,0,-0.980785191059113,-0.19509045779705,0,-0.980785191059113,0,0,-1,-0.19509045779705,0,-0.980785191059113,-0.38268518447876,0,-0.923878908157349,-0.38268518447876,0,-0.923878908157349,-0.19509045779705,0,-0.980785191059113,-0.38268518447876,0,-0.923878908157349,-0.555562913417816,0,-0.831474542617798,-0.555562913417816,0,-0.831474542617798,-0.38268518447876,0,-0.923878908157349,-0.555562913417816,0,-0.831474542617798,-0.707103610038757,0,-0.707110047340393,-0.707103610038757,0,-0.707110047340393,-0.555562913417816,0,-0.831474542617798,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.831476211547852,0,-0.555560350418091,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.923885583877563,0,-0.382668942213058,-0.923885583877563,0,-0.382668942213058,-0.831476211547852,0,-0.555560350418091,-0.923885583877563,0,-0.382668942213058,-0.980784595012665,0,-0.195093706250191,-0.980784595012665,0,-0.195093706250191,-0.923885583877563,0,-0.382668942213058,-0.980784595012665,0,-0.195093706250191,-1,0,0,-1,0,0,-0.980784595012665,0,-0.195093706250191,-1,0,0,-0.980784595012665,0,0.195093706250191,-0.980784595012665,0,0.195093706250191,-1,0,0,-0.980784595012665,0,0.195093706250191,-0.923885583877563,0,0.382668942213058,-0.923885583877563,0,0.382668942213058,-0.980784595012665,0,0.195093706250191,-0.923885583877563,0,0.382668942213058,-0.83147668838501,0,0.555559575557709,-0.83147668838501,0,0.555559575557709,-0.923885583877563,0,0.382668942213058,-0.83147668838501,0,0.555559575557709,-0.707104384899139,0,0.707109153270721,-0.707104384899139,0,0.707109153270721,-0.83147668838501,0,0.555559575557709,-0.707104384899139,0,0.707109153270721,
- -0.555563390254974,0,0.831474184989929,-0.555563390254974,0,0.831474184989929,-0.707104384899139,0,0.707109153270721,-0.555563390254974,0,0.831474184989929,-0.382686465978622,0,0.923878252506256,-0.382686465978622,0,0.923878252506256,-0.555563390254974,0,0.831474184989929,-0.382686465978622,0,0.923878252506256,-0.208870649337769,0,0.977943181991577,-0.19509120285511,0,0.980785131454468,-0.382686465978622,0,0.923878252506256,-0.208870649337769,0,0.977943181991577,-0.0980167463421822,0,0.995184719562531,-7.66032258070481e-007,0,1,-7.66032258070481e-007,0,1,-0.19509120285511,0,0.980785131454468,-7.66032258070481e-007,0,1,0.0980153456330299,0,0.99518483877182,0.208870112895966,0,0.977943420410156,0.195090472698212,0,0.980785191059113,-7.66032258070481e-007,0,1,0.208870112895966,0,0.977943420410156,0.382686465978622,0,0.923878252506256,0.382686465978622,0,0.923878252506256,0.195090472698212,0,0.980785191059113,0.382686465978622,0,0.923878252506256,0.555563271045685,1.28349569195052e-007,0.831474244594574,0.555563390254974,0,0.831474184989929,0.382686465978622,0,0.923878252506256,0.555563271045685,1.28349569195052e-007,0.831474244594574,0.707103967666626,2.4156628342098e-007,0.70710963010788,0.707103967666626,0,0.70710963010788,0.555563390254974,0,0.831474184989929,0.707103967666626,2.4156628342098e-007,0.70710963010788,0.831476509571075,1.13216970021313e-007,0.555559933185577,0.831476449966431,0,0.555559992790222,0.707103967666626,0,0.70710963010788,0.831476509571075,1.13216970021313e-007,0.555559933185577,0.923885703086853,0,0.382668644189835,0.923885703086853,0,0.382668644189835,0.831476449966431,0,0.555559992790222,0.923885703086853,0,0.382668644189835,0.98078465461731,0,0.195093557238579,0.98078465461731,0,0.195093557238579,0.923885703086853,0,0.382668644189835,0.98078465461731,0,0.195093557238579,1,0,-5.10693887179059e-009,1,0,-5.10693887179059e-009,0.98078465461731,0,0.195093557238579,1,0,-5.10693887179059e-009,0.980784595012665,0,-0.195094019174576,0.980784595012665,0,-0.195094019174576,1,0,-5.10693887179059e-009,
- 0.980784595012665,0,-0.195094019174576,0.923885583877563,0,-0.382668972015381,0.923885583877563,0,-0.382668972015381,0.980784595012665,0,-0.195094019174576,0.923885583877563,0,-0.382668972015381,0.83147656917572,0,-0.555559992790222,0.83147656917572,0,-0.555559992790222,0.923885583877563,0,-0.382668972015381,0.83147656917572,0,-0.555559992790222,0.707104086875916,0,-0.707109570503235,0.707104086875916,0,-0.707109570503235,0.83147656917572,0,-0.555559992790222,0.707104086875916,0,-0.707109570503235,0.555563390254974,0,-0.831474184989929,0.555563390254974,0,-0.831474184989929,0.707104086875916,0,-0.707109570503235,0.555563390254974,0,-0.831474184989929,0.382686465978622,0,-0.923878252506256,0.382686465978622,0,-0.923878252506256,0.555563390254974,0,-0.831474184989929,0.382686465978622,0,-0.923878252506256,0.19509120285511,0,-0.980785131454468,0.19509120285511,0,-0.980785131454468,0.382686465978622,0,-0.923878252506256,0.19509120285511,0,-0.980785131454468,0,0,-1,0,0,-1,0.19509120285511,0,-0.980785131454468,0,0,-1,-0.19509045779705,0,-0.980785191059113,-0.19509045779705,0,-0.980785191059113,0,0,-1,-0.19509045779705,0,-0.980785191059113,-0.38268518447876,0,-0.923878908157349,-0.38268518447876,0,-0.923878908157349,-0.19509045779705,0,-0.980785191059113,-0.38268518447876,0,-0.923878908157349,-0.555562913417816,0,-0.831474542617798,-0.555562913417816,0,-0.831474542617798,-0.38268518447876,0,-0.923878908157349,-0.555562913417816,0,-0.831474542617798,-0.707103610038757,0,-0.707110047340393,-0.707103610038757,0,-0.707110047340393,-0.555562913417816,0,-0.831474542617798,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.831476211547852,0,-0.555560350418091,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.923885583877563,0,-0.382668942213058,-0.923885583877563,0,-0.382668942213058,-0.831476211547852,0,-0.555560350418091,-0.923885583877563,0,-0.382668942213058,-0.980784595012665,0,-0.195093706250191,-0.980784595012665,0,-0.195093706250191,-0.923885583877563,0,-0.382668942213058,
- -0.980784595012665,0,-0.195093706250191,-1,0,0,-1,0,0,-0.980784595012665,0,-0.195093706250191,-1,0,0,-0.980784595012665,0,0.195093706250191,-0.980784595012665,0,0.195093706250191,-1,0,0,-0.980784595012665,0,0.195093706250191,-0.923885583877563,0,0.382668942213058,-0.923885583877563,0,0.382668942213058,-0.980784595012665,0,0.195093706250191,-0.923885583877563,0,0.382668942213058,-0.83147668838501,0,0.555559575557709,-0.83147668838501,0,0.555559575557709,-0.923885583877563,0,0.382668942213058,-0.83147668838501,0,0.555559575557709,-0.707104384899139,0,0.707109153270721,-0.707104384899139,0,0.707109153270721,-0.83147668838501,0,0.555559575557709,-0.707104384899139,0,0.707109153270721,-0.555563390254974,0,0.831474184989929,-0.555563390254974,0,0.831474184989929,-0.707104384899139,0,0.707109153270721,-0.555563390254974,0,0.831474184989929,-0.382686465978622,0,0.923878252506256,-0.382686465978622,0,0.923878252506256,-0.555563390254974,0,0.831474184989929,-0.382686465978622,0,0.923878252506256,-0.227169156074524,0,0.973855316638947,-0.208870649337769,0,0.977943181991577,-0.382686465978622,0,0.923878252506256,0.0980153456330299,0,0.99518483877182,0.0980153456330299,0,0.995184898376465,0.2271688580513,0,0.973855435848236,0.208870112895966,0,0.977943420410156,0.2271688580513,0,0.973855435848236,0.382686465978622,0,0.923878252506256,0.382686465978622,0,0.923878252506256,0.208870112895966,0,0.977943420410156,0.382686465978622,0,0.923878252506256,0.555562973022461,1.28349597616761e-007,0.831474363803864,0.555563271045685,1.28349569195052e-007,0.831474244594574,0.382686465978622,0,0.923878252506256,0.555562973022461,1.28349597616761e-007,0.831474363803864,0.707103967666626,2.4156628342098e-007,0.70710963010788,0.707103967666626,2.4156628342098e-007,0.70710963010788,0.555563271045685,1.28349569195052e-007,0.831474244594574,0.707103967666626,2.4156628342098e-007,0.70710963010788,0.83147656917572,1.13216934494176e-007,0.555559754371643,0.831476509571075,1.13216970021313e-007,0.555559933185577,0.707103967666626,2.4156628342098e-007,0.70710963010788,
- 0.83147656917572,1.13216934494176e-007,0.555559754371643,0.923885703086853,0,0.382668644189835,0.923885703086853,0,0.382668644189835,0.831476509571075,1.13216970021313e-007,0.555559933185577,0.923885703086853,0,0.382668644189835,0.98078465461731,0,0.195093557238579,0.98078465461731,0,0.195093557238579,0.923885703086853,0,0.382668644189835,0.98078465461731,0,0.195093557238579,1,0,-5.10693887179059e-009,1,0,-5.10693887179059e-009,0.98078465461731,0,0.195093557238579,1,0,-5.10693887179059e-009,0.980784595012665,0,-0.195094019174576,0.980784595012665,0,-0.195094019174576,1,0,-5.10693887179059e-009,0.980784595012665,0,-0.195094019174576,0.923885583877563,0,-0.382668972015381,0.923885583877563,0,-0.382668972015381,0.980784595012665,0,-0.195094019174576,0.923885583877563,0,-0.382668972015381,0.83147656917572,0,-0.555559992790222,0.83147656917572,0,-0.555559992790222,0.923885583877563,0,-0.382668972015381,0.83147656917572,0,-0.555559992790222,0.707104086875916,0,-0.707109570503235,0.707104086875916,0,-0.707109570503235,0.83147656917572,0,-0.555559992790222,0.707104086875916,0,-0.707109570503235,0.555563390254974,0,-0.831474184989929,0.555563390254974,0,-0.831474184989929,0.707104086875916,0,-0.707109570503235,0.555563390254974,0,-0.831474184989929,0.382686465978622,0,-0.923878252506256,0.382686465978622,0,-0.923878252506256,0.555563390254974,0,-0.831474184989929,0.382686465978622,0,-0.923878252506256,0.19509120285511,0,-0.980785131454468,0.19509120285511,0,-0.980785131454468,0.382686465978622,0,-0.923878252506256,0.19509120285511,0,-0.980785131454468,0,0,-1,0,0,-1,0.19509120285511,0,-0.980785131454468,0,0,-1,-0.19509045779705,0,-0.980785191059113,-0.19509045779705,0,-0.980785191059113,0,0,-1,-0.19509045779705,0,-0.980785191059113,-0.38268518447876,0,-0.923878908157349,-0.38268518447876,0,-0.923878908157349,-0.19509045779705,0,-0.980785191059113,-0.38268518447876,0,-0.923878908157349,-0.555562913417816,0,-0.831474542617798,-0.555562913417816,0,-0.831474542617798,-0.38268518447876,0,-0.923878908157349,-0.555562913417816,0,-0.831474542617798,
- -0.707103610038757,0,-0.707110047340393,-0.707103610038757,0,-0.707110047340393,-0.555562913417816,0,-0.831474542617798,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.831476211547852,0,-0.555560350418091,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.923885583877563,0,-0.382668942213058,-0.923885583877563,0,-0.382668942213058,-0.831476211547852,0,-0.555560350418091,-0.923885583877563,0,-0.382668942213058,-0.980784595012665,0,-0.195093706250191,-0.980784595012665,0,-0.195093706250191,-0.923885583877563,0,-0.382668942213058,-0.980784595012665,0,-0.195093706250191,-1,0,0,-1,0,0,-0.980784595012665,0,-0.195093706250191,-1,0,0,-0.980784595012665,0,0.195093706250191,-0.980784595012665,0,0.195093706250191,-1,0,0,-0.980784595012665,0,0.195093706250191,-0.923885583877563,0,0.382668942213058,-0.923885583877563,0,0.382668942213058,-0.980784595012665,0,0.195093706250191,-0.923885583877563,0,0.382668942213058,-0.83147668838501,0,0.555559575557709,-0.83147668838501,0,0.555559575557709,-0.923885583877563,0,0.382668942213058,-0.83147668838501,0,0.555559575557709,-0.707104384899139,0,0.707109153270721,-0.707104384899139,0,0.707109153270721,-0.83147668838501,0,0.555559575557709,-0.707104384899139,0,0.707109153270721,-0.555563390254974,0,0.831474184989929,-0.555563390254974,0,0.831474184989929,-0.707104384899139,0,0.707109153270721,-0.555563390254974,0,0.831474184989929,-0.382686465978622,0,0.923878252506256,-0.382686465978622,0,0.923878252506256,-0.555563390254974,0,0.831474184989929,-0.382686465978622,0,0.923878252506256,-0.208870649337769,-5.72942027154966e-010,0.977943181991577,-0.227169156074524,0,0.973855316638947,-0.382686465978622,0,0.923878252506256,0.0980153456330299,0,0.995184898376465,0.0980153456330299,-7.9832440658123e-010,0.99518483877182,0.208870112895966,-2.86471041333058e-010,0.977943420410156,0.2271688580513,0,0.973855435848236,0.208870112895966,-2.86471041333058e-010,0.977943420410156,0.382686465978622,0,0.923878252506256,0.382686465978622,0,0.923878252506256,
- 0.2271688580513,0,0.973855435848236,0.382686465978622,0,0.923878252506256,0.555562853813171,0,0.831474542617798,0.555562973022461,1.28349597616761e-007,0.831474363803864,0.382686465978622,0,0.923878252506256,0.555562853813171,0,0.831474542617798,0.707103908061981,0,0.70710963010788,0.707103967666626,2.4156628342098e-007,0.70710963010788,0.555562973022461,1.28349597616761e-007,0.831474363803864,0.707103908061981,0,0.70710963010788,0.83147668838501,0,0.555559694766998,0.83147656917572,1.13216934494176e-007,0.555559754371643,0.707103967666626,2.4156628342098e-007,0.70710963010788,0.83147668838501,0,0.555559694766998,0.923885703086853,0,0.382668644189835,0.923885703086853,0,0.382668644189835,0.83147656917572,1.13216934494176e-007,0.555559754371643,0.923885703086853,0,0.382668644189835,0.98078465461731,0,0.195093557238579,0.98078465461731,0,0.195093557238579,0.923885703086853,0,0.382668644189835,0.98078465461731,0,0.195093557238579,1,0,-5.10693887179059e-009,1,0,-5.10693887179059e-009,0.98078465461731,0,0.195093557238579,1,0,-5.10693887179059e-009,0.980784595012665,0,-0.195094019174576,0.980784595012665,0,-0.195094019174576,1,0,-5.10693887179059e-009,0.980784595012665,0,-0.195094019174576,0.923885583877563,0,-0.382668972015381,0.923885583877563,0,-0.382668972015381,0.980784595012665,0,-0.195094019174576,0.923885583877563,0,-0.382668972015381,0.83147656917572,0,-0.555559992790222,0.83147656917572,0,-0.555559992790222,0.923885583877563,0,-0.382668972015381,0.83147656917572,0,-0.555559992790222,0.707104086875916,0,-0.707109570503235,0.707104086875916,0,-0.707109570503235,0.83147656917572,0,-0.555559992790222,0.707104086875916,0,-0.707109570503235,0.555563390254974,0,-0.831474184989929,0.555563390254974,0,-0.831474184989929,0.707104086875916,0,-0.707109570503235,0.555563390254974,0,-0.831474184989929,0.382686465978622,0,-0.923878252506256,0.382686465978622,0,-0.923878252506256,0.555563390254974,0,-0.831474184989929,0.382686465978622,0,-0.923878252506256,0.19509120285511,0,-0.980785131454468,0.19509120285511,0,-0.980785131454468,
- 0.382686465978622,0,-0.923878252506256,0.19509120285511,0,-0.980785131454468,0,0,-1,0,0,-1,0.19509120285511,0,-0.980785131454468,0,0,-1,-0.19509045779705,0,-0.980785191059113,-0.19509045779705,0,-0.980785191059113,0,0,-1,-0.19509045779705,0,-0.980785191059113,-0.38268518447876,0,-0.923878908157349,-0.38268518447876,0,-0.923878908157349,-0.19509045779705,0,-0.980785191059113,-0.38268518447876,0,-0.923878908157349,-0.555562913417816,0,-0.831474542617798,-0.555562913417816,0,-0.831474542617798,-0.38268518447876,0,-0.923878908157349,-0.555562913417816,0,-0.831474542617798,-0.707103610038757,0,-0.707110047340393,-0.707103610038757,0,-0.707110047340393,-0.555562913417816,0,-0.831474542617798,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.831476211547852,0,-0.555560350418091,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.923885583877563,0,-0.382668942213058,-0.923885583877563,0,-0.382668942213058,-0.831476211547852,0,-0.555560350418091,-0.923885583877563,0,-0.382668942213058,-0.980784595012665,0,-0.195093706250191,-0.980784595012665,0,-0.195093706250191,-0.923885583877563,0,-0.382668942213058,-0.980784595012665,0,-0.195093706250191,-1,0,0,-1,0,0,-0.980784595012665,0,-0.195093706250191,-1,0,0,-0.980784595012665,0,0.195093706250191,-0.980784595012665,0,0.195093706250191,-1,0,0,-0.980784595012665,0,0.195093706250191,-0.923885583877563,0,0.382668942213058,-0.923885583877563,0,0.382668942213058,-0.980784595012665,0,0.195093706250191,-0.923885583877563,0,0.382668942213058,-0.83147668838501,0,0.555559575557709,-0.83147668838501,0,0.555559575557709,-0.923885583877563,0,0.382668942213058,-0.83147668838501,0,0.555559575557709,-0.707104384899139,0,0.707109153270721,-0.707104384899139,0,0.707109153270721,-0.83147668838501,0,0.555559575557709,-0.707104384899139,0,0.707109153270721,-0.555563390254974,0,0.831474184989929,-0.555563390254974,0,0.831474184989929,-0.707104384899139,0,0.707109153270721,-0.555563390254974,0,0.831474184989929,-0.382686465978622,0,0.923878252506256,
- -0.382686465978622,0,0.923878252506256,-0.555563390254974,0,0.831474184989929,-0.382686465978622,0,0.923878252506256,-0.19509120285511,-5.01373054184739e-010,0.980785131454468,-0.208870649337769,-5.72942027154966e-010,0.977943181991577,-0.382686465978622,0,0.923878252506256,-0.19509120285511,-5.01373054184739e-010,0.980785131454468,-7.66032258070481e-007,-7.52050366426005e-010,1,-7.66032258070481e-007,-1.50410073285201e-009,1,-0.0980167463421822,-1.59664870214016e-009,0.995184719562531,-0.208870649337769,-5.72942027154966e-010,0.977943181991577,-7.66032258070481e-007,-7.52050366426005e-010,1,0.195090472698212,-2.50686554847945e-010,0.980785191059113,0.208870112895966,-2.86471041333058e-010,0.977943420410156,0.0980153456330299,-7.9832440658123e-010,0.99518483877182,-7.66032258070481e-007,-1.50410073285201e-009,1,0.195090472698212,-2.50686554847945e-010,0.980785191059113,0.382686465978622,0,0.923878252506256,0.382686465978622,0,0.923878252506256,0.208870112895966,-2.86471041333058e-010,0.977943420410156,0.382686465978622,0,0.923878252506256,0.555562973022461,-1.28349597616761e-007,0.831474363803864,0.555562853813171,0,0.831474542617798,0.382686465978622,0,0.923878252506256,0.555562973022461,-1.28349597616761e-007,0.831474363803864,0.707103967666626,-2.4156628342098e-007,0.70710963010788,0.707103908061981,0,0.70710963010788,0.555562853813171,0,0.831474542617798,0.707103967666626,-2.4156628342098e-007,0.70710963010788,0.83147656917572,-1.13216934494176e-007,0.555559754371643,0.83147668838501,0,0.555559694766998,0.707103908061981,0,0.70710963010788,0.83147656917572,-1.13216934494176e-007,0.555559754371643,0.923885703086853,0,0.382668644189835,0.923885703086853,0,0.382668644189835,0.83147668838501,0,0.555559694766998,0.923885703086853,0,0.382668644189835,0.98078465461731,0,0.195093557238579,0.98078465461731,0,0.195093557238579,0.923885703086853,0,0.382668644189835,0.98078465461731,0,0.195093557238579,1,0,-5.10693887179059e-009,1,0,-5.10693887179059e-009,0.98078465461731,0,0.195093557238579,1,0,-5.10693887179059e-009,0.980784595012665,0,-0.195094019174576,
- 0.980784595012665,0,-0.195094019174576,1,0,-5.10693887179059e-009,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.555564045906067,0,0.831473767757416,-0.555563986301422,0,0.831473767757416,-0.555563986301422,0,0.831473767757416,-0.555564045906067,0,0.831473767757416,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.195089772343636,0,0.980785369873047,-0.195089757442474,0,0.980785369873047,-0.195089757442474,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,0,0,1,0,0,1,0,0,1,0,0,1,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662296295166,0.923888325691223,0,0.382662296295166,0.923888325691223,0,0.382662266492844,0.980779230594635,7.61595444487284e-008,0.195120796561241,
- 0.980779230594635,1.52319088897457e-007,0.19512078166008,0.980779230594635,1.52319088897457e-007,0.19512078166008,0.980779230594635,7.61595444487284e-008,0.195120796561241,1,7.61599210363784e-008,-1.06060769056171e-008,1,1.5231991312703e-007,1.21212311299246e-008,1,1.5231991312703e-007,1.21212311299246e-008,1,7.61599210363784e-008,-1.06060769056171e-008,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120722055435,0.980779230594635,0,-0.195120722055435,0.980779230594635,0,-0.195120736956596,0.923888444900513,0,-0.38266184926033,0.923888444900513,0,-0.382661879062653,0.923888444900513,0,-0.382661879062653,0.923888444900513,0,-0.38266184926033,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.382682263851166,0,-0.923879981040955,0.382682293653488,0,-0.923879981040955,0.382682293653488,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,0.195095613598824,-2.40386384575686e-007,-0.980784177780151,0.195095598697662,0,-0.980784177780151,0.195095598697662,0,-0.980784177780151,0.195095613598824,-2.40386384575686e-007,-0.980784177780151,9.12113080175914e-007,-4.80754579257336e-007,-1,9.12113080175914e-007,0,-1,9.12113080175914e-007,0,-1,9.12113080175914e-007,-4.80754579257336e-007,-1,-0.195088878273964,-2.40379250726619e-007,-0.980785548686981,-0.195088878273964,0,-0.980785548686981,-0.195088878273964,0,-0.980785548686981,-0.195088878273964,-2.40379250726619e-007,-0.980785548686981,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,
- -0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.555563986301422,0,0.831473767757416,-0.555564045906067,0,0.831473767757416,-0.555564045906067,0,0.831473767757416,-0.555563986301422,0,0.831473767757416,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.195089757442474,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,-0.195089757442474,0,0.980785369873047,0,0,1,0,0,1,0,0,1,0,0,1,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,
- 0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.923888325691223,0,0.382662296295166,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662296295166,0.980779230594635,-1.52319088897457e-007,0.19512078166008,0.980779230594635,-7.61595444487284e-008,0.195120796561241,0.980779230594635,-7.61595444487284e-008,0.195120796561241,0.980779230594635,-1.52319088897457e-007,0.19512078166008,1,-1.5231991312703e-007,1.21212311299246e-008,1,-7.61599210363784e-008,-1.06060769056171e-008,1,-7.61599210363784e-008,-1.06060769056171e-008,1,-1.5231991312703e-007,1.21212311299246e-008,0.980779230594635,0,-0.195120722055435,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120722055435,0.923888444900513,0,-0.382661879062653,0.923888444900513,0,-0.38266184926033,0.923888444900513,0,-0.38266184926033,0.923888444900513,0,-0.382661879062653,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.382682293653488,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,
- 0.382682293653488,0,-0.923879981040955,0.195095598697662,0,-0.980784177780151,0.195095613598824,2.40386384575686e-007,-0.980784177780151,0.195095613598824,2.40386384575686e-007,-0.980784177780151,0.195095598697662,0,-0.980784177780151,9.12113080175914e-007,0,-1,9.12113080175914e-007,4.80903338484495e-007,-1,9.12113080175914e-007,4.80903338484495e-007,-1,9.12113080175914e-007,0,-1,-0.195088878273964,0,-0.980785548686981,-0.195088878273964,2.40528009953778e-007,-0.980785548686981,-0.195088878273964,2.40528009953778e-007,-0.980785548686981,-0.195088878273964,0,-0.980785548686981,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,
- -0.83146870136261,0,0.555571615695953,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.555564045906067,0,0.831473767757416,-0.555564045906067,0,0.831473767757416,-0.555564045906067,0,0.831473767757416,-0.555564045906067,0,0.831473767757416,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.195089772343636,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,0,0,1,0,0,1,0,0,1,0,0,1,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662266492844,0.980779230594635,-7.61595444487284e-008,0.195120796561241,0.98077917098999,0,0.195120766758919,0.98077917098999,0,0.195120766758919,0.980779230594635,-7.61595444487284e-008,0.195120796561241,1,-7.61599210363784e-008,-1.06060769056171e-008,1,0,0,1,0,0,1,-7.61599210363784e-008,-1.06060769056171e-008,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120736956596,0.923888444900513,0,-0.38266184926033,
- 0.923888444900513,0,-0.38266184926033,0.923888444900513,0,-0.38266184926033,0.923888444900513,0,-0.38266184926033,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.382682263851166,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,0.195095613598824,2.40386384575686e-007,-0.980784177780151,0.208874449133873,2.74699260671696e-007,-0.977942526340485,0.208874449133873,2.74699260671696e-007,-0.977942526340485,0.195095613598824,2.40386384575686e-007,-0.980784177780151,9.12113080175914e-007,4.80903338484495e-007,-1,9.12113080175914e-007,9.6180667696899e-007,-1,0.0980154052376747,7.65494178267545e-007,-0.99518495798111,9.12113080175914e-007,9.6180667696899e-007,-1,9.12113080175914e-007,4.80903338484495e-007,-1,-0.195088878273964,2.40528009953778e-007,-0.980785548686981,-0.208866536617279,2.74859928595106e-007,-0.977944135665894,-0.0980135947465897,7.6596796816375e-007,-0.995185077190399,-0.208866536617279,2.74859928595106e-007,-0.977944135665894,-0.195088878273964,2.40528009953778e-007,-0.980785548686981,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,
- -0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.555564045906067,0,0.831473767757416,-0.555564045906067,0,0.831473767757416,-0.555564045906067,0,0.831473767757416,-0.555564045906067,0,0.831473767757416,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.195089772343636,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,0,0,1,0,0,1,0,0,1,0,0,1,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,
- 0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662266492844,0.98077917098999,0,0.195120766758919,0.98077917098999,0,0.195120766758919,0.98077917098999,0,0.195120766758919,0.98077917098999,0,0.195120766758919,1,0,0,1,0,0,1,0,0,1,0,0,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120736956596,0.923888444900513,0,-0.38266184926033,0.923888444900513,0,-0.38266184926033,0.923888444900513,0,-0.38266184926033,0.923888444900513,0,-0.38266184926033,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.382682263851166,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,0.208874449133873,2.74699260671696e-007,-0.977942526340485,0.227171882987022,0,-0.973854660987854,0.227171882987022,0,-0.973854660987854,0.208874449133873,2.74699260671696e-007,-0.977942526340485,0.0980154052376747,7.65494178267545e-007,-0.99518495798111,0.0980106666684151,0,-0.995185315608978,-0.227162286639214,0,-0.973856866359711,-0.208866536617279,2.74859928595106e-007,-0.977944135665894,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,
- -0.382683038711548,0,-0.923879683017731,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.555564045906067,0,0.831473767757416,-0.555564045906067,0,0.831473767757416,-0.555564045906067,0,0.831473767757416,-0.555564045906067,0,0.831473767757416,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.195089772343636,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,0,0,1,0,0,1,0,0,1,
- 0,0,1,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662266492844,0.98077917098999,0,0.195120766758919,0.98077917098999,0,0.195120766758919,0.98077917098999,0,0.195120766758919,0.98077917098999,0,0.195120766758919,1,0,0,1,0,0,1,0,0,1,0,0,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120736956596,0.923888444900513,0,-0.38266184926033,0.923888444900513,0,-0.38266184926033,0.923888444900513,0,-0.38266184926033,0.923888444900513,0,-0.38266184926033,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.382682263851166,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,0.227171882987022,0,-0.973854660987854,0.208874449133873,-2.74699260671696e-007,-0.977942526340485,
- 0.208874449133873,-2.74699260671696e-007,-0.977942526340485,0.227171882987022,0,-0.973854660987854,0.0980106666684151,0,-0.995185315608978,0.0980154052376747,-7.65494178267545e-007,-0.99518495798111,-0.208866536617279,-2.74689938351003e-007,-0.977944135665894,-0.227162286639214,0,-0.973856866359711,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.555564045906067,0,0.831473767757416,-0.555564045906067,0,0.831473767757416,
- -0.555564045906067,0,0.831473767757416,-0.555564045906067,0,0.831473767757416,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.195089772343636,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,0,0,1,0,0,1,0,0,1,0,0,1,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662266492844,0.98077917098999,0,0.195120766758919,0.980779230594635,7.61595444487284e-008,0.195120796561241,0.980779230594635,7.61595444487284e-008,0.195120796561241,0.98077917098999,0,0.195120766758919,1,0,0,1,7.61599210363784e-008,-1.06060769056171e-008,1,7.61599210363784e-008,-1.06060769056171e-008,1,0,0,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120736956596,0.923888444900513,0,-0.38266184926033,0.923888444900513,0,-0.38266184926033,0.923888444900513,0,-0.38266184926033,0.923888444900513,0,-0.38266184926033,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,
- 0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.382682263851166,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,0.208874449133873,-2.74699260671696e-007,-0.977942526340485,0.195095613598824,-2.40386384575686e-007,-0.980784177780151,0.195095613598824,-2.40386384575686e-007,-0.980784177780151,0.208874449133873,-2.74699260671696e-007,-0.977942526340485,0.0980154052376747,-7.65494178267545e-007,-0.99518495798111,9.12113080175914e-007,-9.61509158514673e-007,-1,9.12113080175914e-007,-4.80754579257336e-007,-1,9.12113080175914e-007,-4.80754579257336e-007,-1,9.12113080175914e-007,-9.61509158514673e-007,-1,-0.0980135947465897,-7.65494291954383e-007,-0.995185077190399,-0.208866536617279,-2.74689938351003e-007,-0.977944135665894,-0.195088878273964,-2.40379250726619e-007,-0.980785548686981,-0.195088878273964,-2.40379250726619e-007,-0.980785548686981,-0.208866536617279,-2.74689938351003e-007,-0.977944135665894,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,
- -0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.227169156074524,0,0.973855316638947,-0.0980163514614105,0,0.995184779167175,-0.0980167463421822,0,0.995184719562531,-0.208870649337769,0,0.977943181991577,-0.208870649337769,-5.72942027154966e-010,0.977943181991577,-0.0980167463421822,-1.59664870214016e-009,0.995184719562531,-0.0980163514614105,0,0.995184779167175,-0.227169156074524,0,0.973855316638947,-0.0980088710784912,0,-0.995185554027557,-0.0980135947465897,7.6596796816375e-007,-0.995185077190399,-0.208866536617279,2.74859928595106e-007,-0.977944135665894,-0.227162286639214,0,-0.973856866359711,-0.0980135947465897,-7.65494291954383e-007,-0.995185077190399,-0.0980088710784912,0,-0.995185554027557,-0.227162286639214,0,-0.973856866359711,-0.208866536617279,-2.74689938351003e-007,-0.977944135665894,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.938671886920929,-0.332178175449371,0.0924815386533737,0,-1,0,0,-1,0,-0.938667714595795,-0.332189947366714,0.0924811288714409,-0.938671886920929,-0.332178175449371,0.0924815386533737,-0.938667714595795,-0.332189947366714,0.0924811288714409,-0.995181560516357,0,0.0980490893125534,-0.995181560516357,0,0.0980490893125534,-0.995181560516357,0,0.0980490893125534,-0.995181560516357,0,0.0980490893125534,-0.995181560516357,0,0.0980490893125534,-0.995181560516357,0,0.0980490893125534,0.938671708106995,0.33217853307724,0.0924815535545349,0,1,0,0,1,0,0.938667774200439,0.332189649343491,0.0924811586737633,0.995181560516357,0,0.0980491191148758,0.938671708106995,0.33217853307724,0.0924815535545349,0.938667774200439,0.332189649343491,0.0924811586737633,0.995181560516357,0,0.0980491191148758,0.995181560516357,0,0.0980491191148758,0.995181560516357,0,0.0980491191148758,0.995181560516357,0,0.0980491191148758,
- 0.995181560516357,0,0.0980491191148758,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,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,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,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,0.999999940395355,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,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,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,0.999999940395355,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,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,0.999999940395355,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,-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,0,0,-1,0,0,-1,0,0,-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,-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,-0.999999940395355,0,0,-1,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,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-0.999999940395355,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,-0.999999940395355,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,-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,-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,-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,-0.999999940395355,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,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,-0.977787792682648,0.0833107084035873,-0.192328602075577,-0.978590726852417,0.022910239174962,-0.204536586999893,-0.99387139081955,0.0325175821781158,-0.105651557445526,-0.989893853664398,0.0859700366854668,-0.112780191004276,-0.990522980690002,-0.0602876842021942,-0.123408257961273,-0.148898497223854,-0.0288403704762459,0.988431751728058,-0.145187243819237,-0.0197062361985445,0.989207863807678,-0.992265999317169,-0.00482092564925551,-0.124035894870758,0.999113857746124,-0.00216644559986889,0.0420338548719883,0.996695280075073,0.00336826802231371,0.081161692738533,0.98949521780014,0.0117110507562757,0.14409077167511,-0.584989488124847,-0.803809463977814,-0.108063451945782,-0.352637112140656,-0.738793551921844,0.574309289455414,-0.993049323558807,-0.0508692786097527,-0.106138184666634,-0.153828099370003,-0.0113430358469486,0.988032519817352,-0.157635137438774,-0.0486070588231087,0.986300408840179,-0.0856811106204987,-0.10579926520586,0.990689277648926,-0.0993513017892838,-0.0126999635249376,0.994971334934235,0.908140540122986,-0.418049156665802,-0.0227089747786522,0.993471026420593,-0.0074376305565238,0.113841652870178,0.999023199081421,0.0030720648355782,0.0440816506743431,0.0763761848211288,-0.000223157039727084,-0.997079014778137,0.176462486386299,0.0516009032726288,-0.982953906059265,0.0187515094876289,-0.0407153628766537,-0.998994827270508,-0.838047921657562,0.480026125907898,-0.259327113628387,-0.986050069332123,0.0592664368450642,-0.155540198087692,-0.664791762828827,0.743119597434998,-0.0763227567076683,0.992758452892303,0.118406213819981,0.0202606543898582,0.981853306293488,-0.130136013031006,-0.137944310903549,
- 0.993669748306274,-0.0627553761005402,0.0931782424449921,0.143476709723473,-0.0336746536195278,-0.989080607891083,0.114794343709946,-0.0312530472874641,-0.992897570133209,0.111251257359982,0.0100478269159794,-0.993741452693939,0.163607016205788,0.0127228638157249,-0.986443519592285,-0.189623266458511,-0.000273006735369563,0.981856882572174,-0.132000371813774,-0.0406922474503517,0.990414202213287,-0.0998123735189438,0.00680439732968807,0.994983017444611,-0.101928547024727,0.0258134454488754,0.994456827640533,-0.156923905014992,0.0232858024537563,0.987336158752441,0.996906757354736,0.0170234404504299,0.076727457344532,0.991598844528198,0.0171647798269987,0.128207162022591,0.988643825054169,-0.0564714260399342,0.139262974262238,0.995826244354248,-0.0608041808009148,0.0680663660168648,-0.982571423053741,0.0894306898117065,-0.162958532571793,0.134045615792274,0.0114920400083065,-0.99090850353241,0.0763761848211288,-0.000223157039727084,-0.997079014778137,0.982580184936523,0.185385063290596,-0.0129796927794814,0.995826244354248,-0.0608041808009148,0.0680663660168648,0.988643825054169,-0.0564714260399342,0.139262974262238,-0.0360397584736347,-0.0824624672532082,-0.995942354202271,0.0808314308524132,0.218244045972824,-0.97254091501236,-0.963991284370422,-0.188084617257118,-0.188002452254295,-0.150212347507477,0.0213169138878584,0.988423943519592,-0.151245549321175,-3.06619622278959e-005,0.988496243953705,-0.0917848944664001,-0.000455433066235855,0.995778739452362,-0.0929127484560013,0.0409496501088142,0.99483186006546,0.996695280075073,0.00336826802231371,0.081161692738533,0.987559497356415,0.0570063330233097,0.146548584103584,0.98949521780014,0.0117110507562757,0.14409077167511,0.908140540122986,-0.418049156665802,-0.0227089747786522,0.993029415607452,-0.112511351704597,0.0351245552301407,0.990351378917694,-0.0894066989421844,0.105880290269852,0.173587217926979,-0.171675100922585,-0.969739735126495,0.0957947298884392,-0.053244948387146,-0.993976056575775,0.211222007870674,-0.0783247426152229,-0.974294900894165,-0.975667536258698,0.17668841779232,-0.129822611808777,
- -0.989893853664398,0.0859700366854668,-0.112780191004276,-0.156923905014992,0.0232858024537563,0.987336158752441,0.989669799804688,-0.0132958963513374,0.142747670412064,0.998310685157776,-0.0580988973379135,0.000523574359249324,0.997078895568848,-0.0211065672338009,0.0734043419361115,0.991807281970978,-0.0203754529356956,0.126107797026634,0.999113857746124,-0.00216644559986889,0.0420338548719883,0.998006939888,0.0631035268306732,-0.00043071698746644,0.996695280075073,0.00336826802231371,0.081161692738533,0.155374452471733,-0.136476308107376,-0.97838282585144,0.140450015664101,-0.0190421137958765,-0.989904642105103,0.998310685157776,-0.0580988973379135,0.000523574359249324,0.983783841133118,0.115279361605644,0.13740462064743,-0.105655275285244,0.000632901967037469,0.994402587413788,0.991598844528198,0.0171647798269987,0.128207162022591,0.0572605803608894,0.916062772274017,-0.396925956010818,0.172589808702469,0.00653146672993898,-0.98497211933136,0.190520018339157,0.173530921339989,-0.966224133968353,0.659418046474457,0.746950685977936,-0.0850442722439766,0.854341328144073,-0.232212021946907,-0.464949995279312,0.995761632919312,0.00383027619682252,0.0918921306729317,0.217876464128494,-0.0226194225251675,-0.975714147090912,0.0684934929013252,-0.00151906802784652,-0.997650384902954,0.105156764388084,-0.15564814209938,-0.982199430465698,0.710791766643524,-0.186335995793343,0.678272843360901,-0.0998123735189438,0.00680439732968807,0.994983017444611,-0.00152584176976234,0.147283628582954,0.989093065261841,0.193586215376854,0.0107607683166862,-0.981024205684662,0.116220831871033,0.0110766515135765,-0.993161678314209,0.0957947298884392,-0.053244948387146,-0.993976056575775,0.173587217926979,-0.171675100922585,-0.969739735126495,0.143476709723473,-0.0336746536195278,-0.989080607891083,0.217876464128494,-0.0226194225251675,-0.975714147090912,0.114794343709946,-0.0312530472874641,-0.992897570133209,0.98949521780014,0.0117110507562757,0.14409077167511,0.987559497356415,0.0570063330233097,0.146548584103584,0.700422763824463,0.317303597927094,0.639317095279694,
- -0.982571423053741,0.0894306898117065,-0.162958532571793,0.0763761848211288,-0.000223157039727084,-0.997079014778137,-0.977787792682648,0.0833107084035873,-0.192328602075577,0.211222007870674,-0.0783247426152229,-0.974294900894165,0.0957947298884392,-0.053244948387146,-0.993976056575775,0.0187515094876289,-0.0407153628766537,-0.998994827270508,-0.0812864527106285,-0.0451426282525063,0.99566787481308,-0.141070365905762,-0.0224976520985365,0.989743888378143,-0.090498074889183,-0.062398798763752,0.993939816951752,-0.0831587910652161,0.100637689232826,0.991441786289215,0.356178551912308,-0.0313303917646408,0.933892548084259,-0.090498074889183,-0.062398798763752,0.993939816951752,0.103873990476131,-0.0273319277912378,-0.99421489238739,0.167790949344635,-0.0424025878310204,-0.984910309314728,0.144832953810692,-0.476625889539719,-0.867093563079834,0.995761632919312,0.00383027619682252,0.0918921306729317,0.989669799804688,-0.0132958963513374,0.142747670412064,0.987559497356415,0.0570063330233097,0.146548584103584,-0.090498074889183,-0.062398798763752,0.993939816951752,0.356178551912308,-0.0313303917646408,0.933892548084259,-0.0812864527106285,-0.0451426282525063,0.99566787481308,-0.98610520362854,0.0176900885999203,-0.165177762508392,-0.982571423053741,0.0894306898117065,-0.162958532571793,-0.977787792682648,0.0833107084035873,-0.192328602075577,-0.989893853664398,0.0859700366854668,-0.112780191004276,-0.975667536258698,0.17668841779232,-0.129822611808777,-0.156923905014992,0.0232858024537563,0.987336158752441,-0.989893853664398,0.0859700366854668,-0.112780191004276,-0.99387139081955,0.0325175821781158,-0.105651557445526,-0.189623266458511,-0.000273006735369563,0.981856882572174,-0.99387139081955,0.0325175821781158,-0.105651557445526,-0.863975465297699,0.463002979755402,-0.197925999760628,-0.986264586448669,0.157716125249863,-0.0490688197314739,-0.988324046134949,0.0265332236886024,-0.150038301944733,-0.97254091501236,0.0121773583814502,-0.232413068413734,-0.975062191486359,-0.0503239780664444,-0.216150730848312,-0.988598942756653,-0.048292588442564,-0.142618119716644,
- -0.160183548927307,0.023764980956912,0.986801147460938,-0.100520834326744,0.00312521681189537,0.99493008852005,-0.213801324367523,0.107391580939293,0.970956265926361,-0.154485732316971,0.00326435058377683,0.987989664077759,-0.392650216817856,0.488864749670029,0.778997480869293,-0.986788928508759,0.102640248835087,-0.125350192189217,0.854341328144073,-0.232212021946907,-0.464949995279312,0.998310685157776,-0.0580988973379135,0.000523574359249324,0.995761632919312,0.00383027619682252,0.0918921306729317,-0.156923905014992,0.0232858024537563,0.987336158752441,-0.136549636721611,0.0572088807821274,0.988979995250702,-0.975667536258698,0.17668841779232,-0.129822611808777,-0.798246085643768,-0.501289069652557,0.333934754133224,-0.136549636721611,0.0572088807821274,0.988979995250702,-0.090498074889183,-0.062398798763752,0.993939816951752,0.993471026420593,-0.0074376305565238,0.113841652870178,0.908140540122986,-0.418049156665802,-0.0227089747786522,0.956516325473785,-0.268942564725876,0.112899951636791,-0.00152584176976234,0.147283628582954,0.989093065261841,-0.213801324367523,0.107391580939293,0.970956265926361,-0.100520834326744,0.00312521681189537,0.99493008852005,-0.798246085643768,-0.501289069652557,0.333934754133224,-0.141070365905762,-0.0224976520985365,0.989743888378143,-0.957446575164795,-0.256161630153656,-0.132956773042679,-0.160183548927307,0.023764980956912,0.986801147460938,-0.982375800609589,0.141231492161751,-0.122438959777355,-0.988966763019562,0.0384163074195385,-0.143069326877594,-0.153828099370003,-0.0113430358469486,0.988032519817352,-0.160183548927307,0.023764980956912,0.986801147460938,-0.213801324367523,0.107391580939293,0.970956265926361,-0.691142082214355,0.547273457050323,0.472032070159912,-0.982375800609589,0.141231492161751,-0.122438959777355,-0.213801324367523,0.107391580939293,0.970956265926361,-0.99387139081955,0.0325175821781158,-0.105651557445526,-0.691142082214355,0.547273457050323,0.472032070159912,0.143476709723473,-0.0336746536195278,-0.989080607891083,0.163607016205788,0.0127228638157249,-0.986443519592285,
- 0.437156468629837,-0.190200120210648,-0.879043877124786,0.143476709723473,-0.0336746536195278,-0.989080607891083,0.437156468629837,-0.190200120210648,-0.879043877124786,0.217876464128494,-0.0226194225251675,-0.975714147090912,0.0187515094876289,-0.0407153628766537,-0.998994827270508,0.176462486386299,0.0516009032726288,-0.982953906059265,0.211222007870674,-0.0783247426152229,-0.974294900894165,0.990351378917694,-0.0894066989421844,0.105880290269852,0.993029415607452,-0.112511351704597,0.0351245552301407,0.999026775360107,-0.011172573082149,0.0426690392196178,0.999113857746124,-0.00216644559986889,0.0420338548719883,0.0953050777316093,-0.343560725450516,0.934282124042511,-0.105655275285244,0.000632901967037469,0.994402587413788,0.983783841133118,0.115279361605644,0.13740462064743,-0.136653587222099,0.0527481026947498,0.989213585853577,-0.105655275285244,0.000632901967037469,0.994402587413788,0.0953050777316093,-0.343560725450516,0.934282124042511,-0.741874694824219,-0.667274653911591,-0.0660791173577309,-0.820979237556458,-0.552418351173401,-0.144315779209137,-0.988324046134949,0.0265332236886024,-0.150038301944733,-0.151245549321175,-3.06619622278959e-005,0.988496243953705,-0.150212347507477,0.0213169138878584,0.988423943519592,-0.988324046134949,0.0265332236886024,-0.150038301944733,-0.988598942756653,-0.048292588442564,-0.142618119716644,0.956516325473785,-0.268942564725876,0.112899951636791,0.908140540122986,-0.418049156665802,-0.0227089747786522,0.990351378917694,-0.0894066989421844,0.105880290269852,-0.00152584176976234,0.147283628582954,0.989093065261841,0.990351378917694,-0.0894066989421844,0.105880290269852,0.710791766643524,-0.186335995793343,0.678272843360901,-0.392650216817856,0.488864749670029,0.778997480869293,-0.664791762828827,0.743119597434998,-0.0763227567076683,-0.986050069332123,0.0592664368450642,-0.155540198087692,-0.986788928508759,0.102640248835087,-0.125350192189217,-0.986050069332123,0.0592664368450642,-0.155540198087692,-0.980332434177399,0.00339796231128275,-0.197324112057686,-0.977388560771942,-0.000168986458447762,-0.21145124733448,
- -0.992265999317169,-0.00482092564925551,-0.124035894870758,-0.986788928508759,0.102640248835087,-0.125350192189217,0.190520018339157,0.173530921339989,-0.966224133968353,0.172589808702469,0.00653146672993898,-0.98497211933136,0.0808314308524132,0.218244045972824,-0.97254091501236,-0.105655275285244,0.000632901967037469,0.994402587413788,-0.101978830993176,-0.018651744350791,0.994611620903015,0.991598844528198,0.0171647798269987,0.128207162022591,-0.863975465297699,0.463002979755402,-0.197925999760628,0.0187515094876289,-0.0407153628766537,-0.998994827270508,0.0957947298884392,-0.053244948387146,-0.993976056575775,0.116220831871033,0.0110766515135765,-0.993161678314209,-0.966469705104828,0.148654028773308,-0.209375753998756,0.0957947298884392,-0.053244948387146,-0.993976056575775,0.105156764388084,-0.15564814209938,-0.982199430465698,0.0684934929013252,-0.00151906802784652,-0.997650384902954,-0.97254091501236,0.0121773583814502,-0.232413068413734,0.105156764388084,-0.15564814209938,-0.982199430465698,0.114794343709946,-0.0312530472874641,-0.992897570133209,0.217876464128494,-0.0226194225251675,-0.975714147090912,0.0808314308524132,0.218244045972824,-0.97254091501236,0.134045615792274,0.0114920400083065,-0.99090850353241,-0.982571423053741,0.0894306898117065,-0.162958532571793,0.111251257359982,0.0100478269159794,-0.993741452693939,-0.977388560771942,-0.000168986458447762,-0.21145124733448,-0.980332434177399,0.00339796231128275,-0.197324112057686,0.0990625694394112,0.06580600887537,-0.992902934551239,-0.0788161978125572,-0.0399516597390175,0.996088325977325,-0.352637112140656,-0.738793551921844,0.574309289455414,0.223467126488686,-0.807829022407532,0.545412421226501,-0.978590726852417,0.022910239174962,-0.204536586999893,0.0187515094876289,-0.0407153628766537,-0.998994827270508,-0.863975465297699,0.463002979755402,-0.197925999760628,-0.99387139081955,0.0325175821781158,-0.105651557445526,-0.978590726852417,0.022910239174962,-0.204536586999893,-0.863975465297699,0.463002979755402,-0.197925999760628,0.155374452471733,-0.136476308107376,-0.97838282585144,
- 0.998310685157776,-0.0580988973379135,0.000523574359249324,0.854341328144073,-0.232212021946907,-0.464949995279312,0.854341328144073,-0.232212021946907,-0.464949995279312,0.0572605803608894,0.916062772274017,-0.396925956010818,0.190520018339157,0.173530921339989,-0.966224133968353,0.163607016205788,0.0127228638157249,-0.986443519592285,0.179626628756523,0.105909936130047,-0.978017032146454,0.992758452892303,0.118406213819981,0.0202606543898582,0.163607016205788,0.0127228638157249,-0.986443519592285,0.992758452892303,0.118406213819981,0.0202606543898582,0.996906757354736,0.0170234404504299,0.076727457344532,-0.0907735228538513,0.442856460809708,0.891985595226288,-0.0929127484560013,0.0409496501088142,0.99483186006546,0.941321492195129,0.309699177742004,0.13416551053524,0.990351378917694,-0.0894066989421844,0.105880290269852,-0.00152584176976234,0.147283628582954,0.989093065261841,0.956516325473785,-0.268942564725876,0.112899951636791,-0.00152584176976234,0.147283628582954,0.989093065261841,0.993471026420593,-0.0074376305565238,0.113841652870178,0.956516325473785,-0.268942564725876,0.112899951636791,-0.986050069332123,0.0592664368450642,-0.155540198087692,-0.838047921657562,0.480026125907898,-0.259327113628387,-0.980332434177399,0.00339796231128275,-0.197324112057686,0.854341328144073,-0.232212021946907,-0.464949995279312,0.190520018339157,0.173530921339989,-0.966224133968353,0.155374452471733,-0.136476308107376,-0.97838282585144,-0.863975465297699,0.463002979755402,-0.197925999760628,0.0957947298884392,-0.053244948387146,-0.993976056575775,-0.966469705104828,0.148654028773308,-0.209375753998756,-0.638547658920288,0.757069826126099,-0.138210996985435,0.990351378917694,-0.0894066989421844,0.105880290269852,0.98949521780014,0.0117110507562757,0.14409077167511,0.710791766643524,-0.186335995793343,0.678272843360901,0.111251257359982,0.0100478269159794,-0.993741452693939,0.0990625694394112,0.06580600887537,-0.992902934551239,0.179626628756523,0.105909936130047,-0.978017032146454,0.163607016205788,0.0127228638157249,-0.986443519592285,
- 0.140450015664101,-0.0190421137958765,-0.989904642105103,0.0666542276740074,-0.0415594838559628,-0.996910274028778,0.0684934929013252,-0.00151906802784652,-0.997650384902954,0.993471026420593,-0.0074376305565238,0.113841652870178,-0.100520834326744,0.00312521681189537,0.99493008852005,-0.0993513017892838,-0.0126999635249376,0.994971334934235,0.992949545383453,-0.0140253463760018,0.117704950273037,-0.100520834326744,0.00312521681189537,0.99493008852005,0.993471026420593,-0.0074376305565238,0.113841652870178,-0.00152584176976234,0.147283628582954,0.989093065261841,0.160560950636864,0.0178741626441479,-0.98686408996582,0.176462486386299,0.0516009032726288,-0.982953906059265,0.0763761848211288,-0.000223157039727084,-0.997079014778137,0.983783841133118,0.115279361605644,0.13740462064743,0.993669748306274,-0.0627553761005402,0.0931782424449921,0.0953050777316093,-0.343560725450516,0.934282124042511,0.992758452892303,0.118406213819981,0.0202606543898582,0.993669748306274,-0.0627553761005402,0.0931782424449921,0.983783841133118,0.115279361605644,0.13740462064743,-0.101928547024727,0.0258134454488754,0.994456827640533,0.98949521780014,0.0117110507562757,0.14409077167511,0.700422763824463,0.317303597927094,0.639317095279694,-0.963991284370422,-0.188084617257118,-0.188002452254295,0.0666542276740074,-0.0415594838559628,-0.996910274028778,-0.0360397584736347,-0.0824624672532082,-0.995942354202271,0.999026775360107,-0.011172573082149,0.0426690392196178,0.160560950636864,0.0178741626441479,-0.98686408996582,0.999113857746124,-0.00216644559986889,0.0420338548719883,0.160560950636864,0.0178741626441479,-0.98686408996582,0.998006939888,0.0631035268306732,-0.00043071698746644,0.999113857746124,-0.00216644559986889,0.0420338548719883,0.988643825054169,-0.0564714260399342,0.139262974262238,-0.0929092764854431,-0.029346588999033,0.995241940021515,-0.0907735228538513,0.442856460809708,0.891985595226288,0.941321492195129,0.309699177742004,0.13416551053524,0.941321492195129,0.309699177742004,0.13416551053524,0.982580184936523,0.185385063290596,-0.0129796927794814,
- 0.988643825054169,-0.0564714260399342,0.139262974262238,-0.0831587910652161,0.100637689232826,0.991441786289215,-0.101928547024727,0.0258134454488754,0.994456827640533,0.700422763824463,0.317303597927094,0.639317095279694,0.987559497356415,0.0570063330233097,0.146548584103584,0.356178551912308,-0.0313303917646408,0.933892548084259,-0.0831587910652161,0.100637689232826,0.991441786289215,0.700422763824463,0.317303597927094,0.639317095279694,0.908140540122986,-0.418049156665802,-0.0227089747786522,0.173587217926979,-0.171675100922585,-0.969739735126495,0.993029415607452,-0.112511351704597,0.0351245552301407,0.997896373271942,0.0647083818912506,0.00395688088610768,0.189396858215332,0.112124651670456,-0.975477814674377,0.159387782216072,0.145985662937164,-0.976362586021423,0.995221972465515,0.0948318168520927,0.0232432261109352,-0.189623266458511,-0.000273006735369563,0.981856882572174,-0.99387139081955,0.0325175821781158,-0.105651557445526,-0.213801324367523,0.107391580939293,0.970956265926361,0.211222007870674,-0.0783247426152229,-0.974294900894165,0.999026775360107,-0.011172573082149,0.0426690392196178,0.993029415607452,-0.112511351704597,0.0351245552301407,0.993029415607452,-0.112511351704597,0.0351245552301407,0.173587217926979,-0.171675100922585,-0.969739735126495,0.211222007870674,-0.0783247426152229,-0.974294900894165,0.659418046474457,0.746950685977936,-0.0850442722439766,0.996695280075073,0.00336826802231371,0.081161692738533,0.998006939888,0.0631035268306732,-0.00043071698746644,-0.132000371813774,-0.0406922474503517,0.990414202213287,-0.213801324367523,0.107391580939293,0.970956265926361,-0.00152584176976234,0.147283628582954,0.989093065261841,-0.189623266458511,-0.000273006735369563,0.981856882572174,-0.213801324367523,0.107391580939293,0.970956265926361,-0.132000371813774,-0.0406922474503517,0.990414202213287,0.167790949344635,-0.0424025878310204,-0.984910309314728,0.459519147872925,-0.847704768180847,-0.265026152133942,0.144832953810692,-0.476625889539719,-0.867093563079834,0.459519147872925,-0.847704768180847,-0.265026152133942,
- 0.998820722103119,-0.0164875723421574,0.0456646345555782,0.918571949005127,-0.392251670360565,0.0486245192587376,-0.0929127484560013,0.0409496501088142,0.99483186006546,0.99270886182785,0.0108678853139281,0.120046213269234,0.941321492195129,0.309699177742004,0.13416551053524,-0.969073057174683,-0.0217937678098679,-0.245809838175774,-0.820979237556458,-0.552418351173401,-0.144315779209137,-0.977446794509888,0.0213323514908552,-0.210101321339607,0.167790949344635,-0.0424025878310204,-0.984910309314728,0.998820722103119,-0.0164875723421574,0.0456646345555782,0.459519147872925,-0.847704768180847,-0.265026152133942,0.995761632919312,0.00383027619682252,0.0918921306729317,0.987559497356415,0.0570063330233097,0.146548584103584,0.996695280075073,0.00336826802231371,0.081161692738533,0.659418046474457,0.746950685977936,-0.0850442722439766,0.995761632919312,0.00383027619682252,0.0918921306729317,0.996695280075073,0.00336826802231371,0.081161692738533,-0.136549636721611,0.0572088807821274,0.988979995250702,-0.798246085643768,-0.501289069652557,0.333934754133224,-0.975667536258698,0.17668841779232,-0.129822611808777,-0.975667536258698,0.17668841779232,-0.129822611808777,-0.798246085643768,-0.501289069652557,0.333934754133224,-0.98610520362854,0.0176900885999203,-0.165177762508392,0.997078895568848,-0.0211065672338009,0.0734043419361115,0.164112746715546,0.0875294879078865,-0.982550501823425,0.998100340366364,0.00513246888294816,0.061395350843668,0.164112746715546,0.0875294879078865,-0.982550501823425,0.982580184936523,0.185385063290596,-0.0129796927794814,0.998100340366364,0.00513246888294816,0.061395350843668,0.155374452471733,-0.136476308107376,-0.97838282585144,0.190520018339157,0.173530921339989,-0.966224133968353,0.095326378941536,-0.0831227228045464,-0.991969585418701,0.144832953810692,-0.476625889539719,-0.867093563079834,-0.173354431986809,-0.751472055912018,-0.636583149433136,0.103873990476131,-0.0273319277912378,-0.99421489238739,-0.982376098632813,-0.0319323390722275,-0.184167087078094,-0.173354431986809,-0.751472055912018,-0.636583149433136,
- -0.584989488124847,-0.803809463977814,-0.108063451945782,0.0808314308524132,0.218244045972824,-0.97254091501236,-0.982571423053741,0.0894306898117065,-0.162958532571793,-0.98610520362854,0.0176900885999203,-0.165177762508392,0.0808314308524132,0.218244045972824,-0.97254091501236,-0.98610520362854,0.0176900885999203,-0.165177762508392,-0.963991284370422,-0.188084617257118,-0.188002452254295,-0.141070365905762,-0.0224976520985365,0.989743888378143,-0.798246085643768,-0.501289069652557,0.333934754133224,-0.090498074889183,-0.062398798763752,0.993939816951752,-0.173354431986809,-0.751472055912018,-0.636583149433136,-0.982376098632813,-0.0319323390722275,-0.184167087078094,0.103873990476131,-0.0273319277912378,-0.99421489238739,0.356178551912308,-0.0313303917646408,0.933892548084259,0.987559497356415,0.0570063330233097,0.146548584103584,0.989669799804688,-0.0132958963513374,0.142747670412064,-0.0788161978125572,-0.0399516597390175,0.996088325977325,0.223467126488686,-0.807829022407532,0.545412421226501,0.990787088871002,-0.0694923922419548,0.11623976379633,-0.0998123735189438,0.00680439732968807,0.994983017444611,-0.132000371813774,-0.0406922474503517,0.990414202213287,-0.00152584176976234,0.147283628582954,0.989093065261841,0.176462486386299,0.0516009032726288,-0.982953906059265,0.160560950636864,0.0178741626441479,-0.98686408996582,0.999026775360107,-0.011172573082149,0.0426690392196178,0.211222007870674,-0.0783247426152229,-0.974294900894165,0.176462486386299,0.0516009032726288,-0.982953906059265,0.999026775360107,-0.011172573082149,0.0426690392196178,-0.798246085643768,-0.501289069652557,0.333934754133224,-0.963991284370422,-0.188084617257118,-0.188002452254295,-0.98610520362854,0.0176900885999203,-0.165177762508392,0.223467126488686,-0.807829022407532,0.545412421226501,0.459519147872925,-0.847704768180847,-0.265026152133942,0.918571949005127,-0.392251670360565,0.0486245192587376,0.223467126488686,-0.807829022407532,0.545412421226501,0.918571949005127,-0.392251670360565,0.0486245192587376,0.990787088871002,-0.0694923922419548,0.11623976379633,
- -0.150212347507477,0.0213169138878584,0.988423943519592,-0.741874694824219,-0.667274653911591,-0.0660791173577309,-0.988324046134949,0.0265332236886024,-0.150038301944733,-0.090498074889183,-0.062398798763752,0.993939816951752,-0.136549636721611,0.0572088807821274,0.988979995250702,-0.0831587910652161,0.100637689232826,0.991441786289215,-0.0812864527106285,-0.0451426282525063,0.99566787481308,0.356178551912308,-0.0313303917646408,0.933892548084259,0.989669799804688,-0.0132958963513374,0.142747670412064,-0.0929127484560013,0.0409496501088142,0.99483186006546,-0.0917848944664001,-0.000455433066235855,0.995778739452362,0.991807281970978,-0.0203754529356956,0.126107797026634,0.99270886182785,0.0108678853139281,0.120046213269234,-0.150212347507477,0.0213169138878584,0.988423943519592,-0.135216683149338,-0.0889044106006622,0.986819326877594,-0.741874694824219,-0.667274653911591,-0.0660791173577309,-0.154485732316971,0.00326435058377683,0.987989664077759,-0.145187243819237,-0.0197062361985445,0.989207863807678,-0.101978830993176,-0.018651744350791,0.994611620903015,-0.105655275285244,0.000632901967037469,0.994402587413788,-0.136653587222099,0.0527481026947498,0.989213585853577,-0.136653587222099,0.0527481026947498,0.989213585853577,0.0953050777316093,-0.343560725450516,0.934282124042511,-0.392650216817856,0.488864749670029,0.778997480869293,-0.154485732316971,0.00326435058377683,0.987989664077759,0.0915123894810677,0.0713350549340248,-0.993245542049408,0.203903198242188,-0.043630663305521,-0.978018343448639,0.179626628756523,0.105909936130047,-0.978017032146454,0.0990625694394112,0.06580600887537,-0.992902934551239,0.981853306293488,-0.130136013031006,-0.137944310903549,0.992758452892303,0.118406213819981,0.0202606543898582,0.179626628756523,0.105909936130047,-0.978017032146454,0.203903198242188,-0.043630663305521,-0.978018343448639,0.437156468629837,-0.190200120210648,-0.879043877124786,0.163607016205788,0.0127228638157249,-0.986443519592285,0.995826244354248,-0.0608041808009148,0.0680663660168648,0.982580184936523,0.185385063290596,-0.0129796927794814,
- 0.437156468629837,-0.190200120210648,-0.879043877124786,0.995826244354248,-0.0608041808009148,0.0680663660168648,0.164112746715546,0.0875294879078865,-0.982550501823425,0.0684934929013252,-0.00151906802784652,-0.997650384902954,0.217876464128494,-0.0226194225251675,-0.975714147090912,0.095326378941536,-0.0831227228045464,-0.991969585418701,0.0666542276740074,-0.0415594838559628,-0.996910274028778,0.140450015664101,-0.0190421137958765,-0.989904642105103,0.155374452471733,-0.136476308107376,-0.97838282585144,0.190520018339157,0.173530921339989,-0.966224133968353,-0.0360397584736347,-0.0824624672532082,-0.995942354202271,0.095326378941536,-0.0831227228045464,-0.991969585418701,0.0808314308524132,0.218244045972824,-0.97254091501236,-0.0360397584736347,-0.0824624672532082,-0.995942354202271,0.190520018339157,0.173530921339989,-0.966224133968353,0.114794343709946,-0.0312530472874641,-0.992897570133209,-0.977446794509888,0.0213323514908552,-0.210101321339607,-0.977388560771942,-0.000168986458447762,-0.21145124733448,0.111251257359982,0.0100478269159794,-0.993741452693939,-0.969073057174683,-0.0217937678098679,-0.245809838175774,-0.977446794509888,0.0213323514908552,-0.210101321339607,0.114794343709946,-0.0312530472874641,-0.992897570133209,-0.969073057174683,-0.0217937678098679,-0.245809838175774,0.114794343709946,-0.0312530472874641,-0.992897570133209,0.105156764388084,-0.15564814209938,-0.982199430465698,0.105156764388084,-0.15564814209938,-0.982199430465698,-0.97254091501236,0.0121773583814502,-0.232413068413734,-0.969073057174683,-0.0217937678098679,-0.245809838175774,-0.975324928760529,0.0371786989271641,-0.217621356248856,0.114332400262356,0.00337600451894104,-0.993436872959137,0.123034805059433,-0.0717998370528221,-0.989801526069641,-0.971356391906738,-0.0348709039390087,-0.235055074095726,-0.0788161978125572,-0.0399516597390175,0.996088325977325,-0.150639146566391,-0.0359410606324673,0.987935245037079,-0.352637112140656,-0.738793551921844,0.574309289455414,-0.993049323558807,-0.0508692786097527,-0.106138184666634,
- -0.352637112140656,-0.738793551921844,0.574309289455414,-0.150639146566391,-0.0359410606324673,0.987935245037079,-0.988259077072144,-0.0300420932471752,-0.149804264307022,-0.982376098632813,-0.0319323390722275,-0.184167087078094,-0.584989488124847,-0.803809463977814,-0.108063451945782,-0.584989488124847,-0.803809463977814,-0.108063451945782,-0.993049323558807,-0.0508692786097527,-0.106138184666634,-0.988259077072144,-0.0300420932471752,-0.149804264307022,0.659418046474457,0.746950685977936,-0.0850442722439766,0.0572605803608894,0.916062772274017,-0.396925956010818,0.854341328144073,-0.232212021946907,-0.464949995279312,0.659418046474457,0.746950685977936,-0.0850442722439766,0.172589808702469,0.00653146672993898,-0.98497211933136,0.0572605803608894,0.916062772274017,-0.396925956010818,0.160560950636864,0.0178741626441479,-0.98686408996582,0.172589808702469,0.00653146672993898,-0.98497211933136,0.998006939888,0.0631035268306732,-0.00043071698746644,0.217876464128494,-0.0226194225251675,-0.975714147090912,0.437156468629837,-0.190200120210648,-0.879043877124786,0.982580184936523,0.185385063290596,-0.0129796927794814,0.164112746715546,0.0875294879078865,-0.982550501823425,0.217876464128494,-0.0226194225251675,-0.975714147090912,0.982580184936523,0.185385063290596,-0.0129796927794814,0.140450015664101,-0.0190421137958765,-0.989904642105103,0.164112746715546,0.0875294879078865,-0.982550501823425,0.997078895568848,-0.0211065672338009,0.0734043419361115,0.998310685157776,-0.0580988973379135,0.000523574359249324,0.140450015664101,-0.0190421137958765,-0.989904642105103,0.997078895568848,-0.0211065672338009,0.0734043419361115,-0.691142082214355,0.547273457050323,0.472032070159912,-0.99387139081955,0.0325175821781158,-0.105651557445526,-0.986264586448669,0.157716125249863,-0.0490688197314739,-0.982375800609589,0.141231492161751,-0.122438959777355,-0.691142082214355,0.547273457050323,0.472032070159912,-0.986264586448669,0.157716125249863,-0.0490688197314739,-0.645736873149872,0.760483384132385,-0.0684758648276329,-0.988966763019562,0.0384163074195385,-0.143069326877594,
- -0.975324928760529,0.0371786989271641,-0.217621356248856,-0.971356391906738,-0.0348709039390087,-0.235055074095726,-0.987159609794617,-0.065558910369873,-0.145664095878601,-0.135216683149338,-0.0889044106006622,0.986819326877594,-0.0907735228538513,0.442856460809708,0.891985595226288,-0.0929092764854431,-0.029346588999033,0.995241940021515,-0.150212347507477,0.0213169138878584,0.988423943519592,-0.0907735228538513,0.442856460809708,0.891985595226288,-0.135216683149338,-0.0889044106006622,0.986819326877594,-0.150212347507477,0.0213169138878584,0.988423943519592,-0.0929127484560013,0.0409496501088142,0.99483186006546,-0.0907735228538513,0.442856460809708,0.891985595226288,0.0684934929013252,-0.00151906802784652,-0.997650384902954,0.0666542276740074,-0.0415594838559628,-0.996910274028778,-0.975062191486359,-0.0503239780664444,-0.216150730848312,-0.97254091501236,0.0121773583814502,-0.232413068413734,-0.986788928508759,0.102640248835087,-0.125350192189217,-0.992265999317169,-0.00482092564925551,-0.124035894870758,-0.145187243819237,-0.0197062361985445,0.989207863807678,-0.154485732316971,0.00326435058377683,0.987989664077759,-0.977446794509888,0.0213323514908552,-0.210101321339607,-0.990522980690002,-0.0602876842021942,-0.123408257961273,-0.992265999317169,-0.00482092564925551,-0.124035894870758,-0.977388560771942,-0.000168986458447762,-0.21145124733448,0.983783841133118,0.115279361605644,0.13740462064743,0.991598844528198,0.0171647798269987,0.128207162022591,0.996906757354736,0.0170234404504299,0.076727457344532,0.992758452892303,0.118406213819981,0.0202606543898582,-0.101978830993176,-0.018651744350791,0.994611620903015,-0.0929092764854431,-0.029346588999033,0.995241940021515,0.988643825054169,-0.0564714260399342,0.139262974262238,0.991598844528198,0.0171647798269987,0.128207162022591,0.163607016205788,0.0127228638157249,-0.986443519592285,0.996906757354736,0.0170234404504299,0.076727457344532,0.995826244354248,-0.0608041808009148,0.0680663660168648,-0.145187243819237,-0.0197062361985445,0.989207863807678,-0.148898497223854,-0.0288403704762459,0.988431751728058,
- -0.0929092764854431,-0.029346588999033,0.995241940021515,-0.101978830993176,-0.018651744350791,0.994611620903015,-0.141070365905762,-0.0224976520985365,0.989743888378143,-0.0812864527106285,-0.0451426282525063,0.99566787481308,-0.0917848944664001,-0.000455433066235855,0.995778739452362,-0.151245549321175,-3.06619622278959e-005,0.988496243953705,-0.988598942756653,-0.048292588442564,-0.142618119716644,-0.975062191486359,-0.0503239780664444,-0.216150730848312,-0.963991284370422,-0.188084617257118,-0.188002452254295,-0.957446575164795,-0.256161630153656,-0.132956773042679,-0.141070365905762,-0.0224976520985365,0.989743888378143,-0.151245549321175,-3.06619622278959e-005,0.988496243953705,-0.988598942756653,-0.048292588442564,-0.142618119716644,-0.957446575164795,-0.256161630153656,-0.132956773042679,0.991807281970978,-0.0203754529356956,0.126107797026634,-0.0917848944664001,-0.000455433066235855,0.995778739452362,-0.0812864527106285,-0.0451426282525063,0.99566787481308,0.989669799804688,-0.0132958963513374,0.142747670412064,-0.975062191486359,-0.0503239780664444,-0.216150730848312,0.0666542276740074,-0.0415594838559628,-0.996910274028778,-0.963991284370422,-0.188084617257118,-0.188002452254295,0.999113857746124,-0.00216644559986889,0.0420338548719883,0.98949521780014,0.0117110507562757,0.14409077167511,0.990351378917694,-0.0894066989421844,0.105880290269852,0.134045615792274,0.0114920400083065,-0.99090850353241,0.0808314308524132,0.218244045972824,-0.97254091501236,0.172589808702469,0.00653146672993898,-0.98497211933136,-0.136549636721611,0.0572088807821274,0.988979995250702,-0.156923905014992,0.0232858024537563,0.987336158752441,-0.101928547024727,0.0258134454488754,0.994456827640533,-0.0831587910652161,0.100637689232826,0.991441786289215,-0.977787792682648,0.0833107084035873,-0.192328602075577,0.0763761848211288,-0.000223157039727084,-0.997079014778137,0.0187515094876289,-0.0407153628766537,-0.998994827270508,-0.978590726852417,0.022910239174962,-0.204536586999893,-0.101928547024727,0.0258134454488754,0.994456827640533,
- -0.0998123735189438,0.00680439732968807,0.994983017444611,0.710791766643524,-0.186335995793343,0.678272843360901,0.98949521780014,0.0117110507562757,0.14409077167511,-0.100520834326744,0.00312521681189537,0.99493008852005,-0.160183548927307,0.023764980956912,0.986801147460938,-0.153828099370003,-0.0113430358469486,0.988032519817352,-0.0993513017892838,-0.0126999635249376,0.994971334934235,0.998820722103119,-0.0164875723421574,0.0456646345555782,0.990787088871002,-0.0694923922419548,0.11623976379633,0.918571949005127,-0.392251670360565,0.0486245192587376,0.178261384367943,0.00229021604172885,-0.983980536460876,0.177816912531853,-0.0487851463258266,-0.982853531837463,0.149353802204132,-0.100505843758583,-0.983662545681,0.123034805059433,-0.0717998370528221,-0.989801526069641,0.114332400262356,0.00337600451894104,-0.993436872959137,-0.153828099370003,-0.0113430358469486,0.988032519817352,-0.988966763019562,0.0384163074195385,-0.143069326877594,-0.987159609794617,-0.065558910369873,-0.145664095878601,-0.157635137438774,-0.0486070588231087,0.986300408840179,-0.0993513017892838,-0.0126999635249376,0.994971334934235,-0.0856811106204987,-0.10579926520586,0.990689277648926,0.991025984287262,-0.0812745243310928,0.106122508645058,0.992949545383453,-0.0140253463760018,0.117704950273037,0.999023199081421,0.0030720648355782,0.0440816506743431,0.193586215376854,0.0107607683166862,-0.981024205684662,0.173587217926979,-0.171675100922585,-0.969739735126495,0.908140540122986,-0.418049156665802,-0.0227089747786522,-0.966469705104828,0.148654028773308,-0.209375753998756,0.116220831871033,0.0110766515135765,-0.993161678314209,0.114332400262356,0.00337600451894104,-0.993436872959137,-0.975324928760529,0.0371786989271641,-0.217621356248856,-0.645736873149872,0.760483384132385,-0.0684758648276329,-0.638547658920288,0.757069826126099,-0.138210996985435,-0.966469705104828,0.148654028773308,-0.209375753998756,-0.982375800609589,0.141231492161751,-0.122438959777355,0.998100340366364,0.00513246888294816,0.061395350843668,0.99270886182785,0.0108678853139281,0.120046213269234,
- 0.991807281970978,-0.0203754529356956,0.126107797026634,0.997078895568848,-0.0211065672338009,0.0734043419361115,0.095326378941536,-0.0831227228045464,-0.991969585418701,-0.0360397584736347,-0.0824624672532082,-0.995942354202271,0.0666542276740074,-0.0415594838559628,-0.996910274028778,0.134045615792274,0.0114920400083065,-0.99090850353241,0.172589808702469,0.00653146672993898,-0.98497211933136,0.160560950636864,0.0178741626441479,-0.98686408996582,0.0763761848211288,-0.000223157039727084,-0.997079014778137,-0.980332434177399,0.00339796231128275,-0.197324112057686,0.0915123894810677,0.0713350549340248,-0.993245542049408,0.0990625694394112,0.06580600887537,-0.992902934551239,0.998006939888,0.0631035268306732,-0.00043071698746644,0.172589808702469,0.00653146672993898,-0.98497211933136,0.659418046474457,0.746950685977936,-0.0850442722439766,0.99270886182785,0.0108678853139281,0.120046213269234,0.982580184936523,0.185385063290596,-0.0129796927794814,0.941321492195129,0.309699177742004,0.13416551053524,-0.969073057174683,-0.0217937678098679,-0.245809838175774,-0.97254091501236,0.0121773583814502,-0.232413068413734,-0.988324046134949,0.0265332236886024,-0.150038301944733,-0.820979237556458,-0.552418351173401,-0.144315779209137,0.999204576015472,-0.0100601753219962,0.0385879203677177,0.992949545383453,-0.0140253463760018,0.117704950273037,0.991025984287262,-0.0812745243310928,0.106122508645058,0.99975323677063,-0.0206335447728634,0.00823060516268015,0.841719567775726,-0.447113424539566,-0.302651256322861,0.388985067605972,-0.344994366168976,-0.85420697927475,0.177816912531853,-0.0487851463258266,-0.982853531837463,0.99975323677063,-0.0206335447728634,0.00823060516268015,-0.870154321193695,0.222357556223869,-0.439759701490402,0.145703047513962,-0.0681791082024574,-0.986976265907288,0.113629579544067,0.103081002831459,-0.988161206245422,-0.977005779743195,0.114235855638981,-0.18002712726593,0.145703047513962,-0.0681791082024574,-0.986976265907288,0.388985067605972,-0.344994366168976,-0.85420697927475,0.159387782216072,0.145985662937164,-0.976362586021423,
- 0.113629579544067,0.103081002831459,-0.988161206245422,0.841719567775726,-0.447113424539566,-0.302651256322861,0.443840533494949,-0.462785631418228,0.767355859279633,0.995221972465515,0.0948318168520927,0.0232432261109352,-0.0856811106204987,-0.10579926520586,0.990689277648926,-0.157635137438774,-0.0486070588231087,0.986300408840179,-0.134512007236481,-0.472938001155853,0.8707674741745,0.443840533494949,-0.462785631418228,0.767355859279633,-0.971356391906738,-0.0348709039390087,-0.235055074095726,0.123034805059433,-0.0717998370528221,-0.989801526069641,0.145703047513962,-0.0681791082024574,-0.986976265907288,-0.870154321193695,0.222357556223869,-0.439759701490402,-0.984432101249695,-0.0693135932087898,-0.161521196365356,-0.971356391906738,-0.0348709039390087,-0.235055074095726,-0.870154321193695,0.222357556223869,-0.439759701490402,0.388985067605972,-0.344994366168976,-0.85420697927475,0.149353802204132,-0.100505843758583,-0.983662545681,0.177816912531853,-0.0487851463258266,-0.982853531837463,-0.134512007236481,-0.472938001155853,0.8707674741745,-0.987159609794617,-0.065558910369873,-0.145664095878601,-0.597391545772552,-0.795084357261658,0.104709826409817,0.991025984287262,-0.0812745243310928,0.106122508645058,-0.0856811106204987,-0.10579926520586,0.990689277648926,0.443840533494949,-0.462785631418228,0.767355859279633,0.841719567775726,-0.447113424539566,-0.302651256322861,0.931079149246216,-0.358760297298431,0.0662020221352577,0.991025984287262,-0.0812745243310928,0.106122508645058,0.443840533494949,-0.462785631418228,0.767355859279633,0.99975323677063,-0.0206335447728634,0.00823060516268015,0.177816912531853,-0.0487851463258266,-0.982853531837463,0.178261384367943,0.00229021604172885,-0.983980536460876,0.999204576015472,-0.0100601753219962,0.0385879203677177,0.995221972465515,0.0948318168520927,0.0232432261109352,0.159387782216072,0.145985662937164,-0.976362586021423,0.388985067605972,-0.344994366168976,-0.85420697927475,0.841719567775726,-0.447113424539566,-0.302651256322861,-0.983010590076447,0.0362850166857243,-0.179926738142967,
- 0.106094419956207,0.0376497358083725,-0.993643045425415,0.103873990476131,-0.0273319277912378,-0.99421489238739,-0.982376098632813,-0.0319323390722275,-0.184167087078094,0.106094419956207,0.0376497358083725,-0.993643045425415,0.161451295018196,0.0376177318394184,-0.986163556575775,0.167790949344635,-0.0424025878310204,-0.984910309314728,0.103873990476131,-0.0273319277912378,-0.99421489238739,0.991287887096405,0.00762845622375607,0.131492227315903,-0.0895515829324722,-0.0035662017762661,0.99597579240799,-0.0788161978125572,-0.0399516597390175,0.996088325977325,0.990787088871002,-0.0694923922419548,0.11623976379633,0.998003125190735,0.00778559176251292,0.0626830160617828,0.991287887096405,0.00762845622375607,0.131492227315903,0.990787088871002,-0.0694923922419548,0.11623976379633,0.998820722103119,-0.0164875723421574,0.0456646345555782,-0.982375800609589,0.141231492161751,-0.122438959777355,-0.966469705104828,0.148654028773308,-0.209375753998756,-0.975324928760529,0.0371786989271641,-0.217621356248856,-0.988966763019562,0.0384163074195385,-0.143069326877594,-0.984432101249695,-0.0693135932087898,-0.161521196365356,-0.870154321193695,0.222357556223869,-0.439759701490402,-0.977005779743195,0.114235855638981,-0.18002712726593,-0.99396288394928,0.036310289055109,-0.103534616529942,-0.983010590076447,0.0362850166857243,-0.179926738142967,-0.982376098632813,-0.0319323390722275,-0.184167087078094,-0.988259077072144,-0.0300420932471752,-0.149804264307022,-0.993049323558807,-0.0508692786097527,-0.106138184666634,-0.153923720121384,-0.00272623589262366,0.988078951835632,-0.99396288394928,0.036310289055109,-0.103534616529942,-0.993049323558807,-0.0508692786097527,-0.106138184666634,-0.150639146566391,-0.0359410606324673,0.987935245037079,-0.162030696868896,0.0343305543065071,0.986188411712646,-0.122421443462372,0.0577073208987713,0.990799069404602,-0.134512007236481,-0.472938001155853,0.8707674741745,0.443840533494949,-0.462785631418228,0.767355859279633,-0.122421443462372,0.0577073208987713,0.990799069404602,-0.0961820110678673,0.0348848253488541,0.99475222826004,
- -0.134512007236481,-0.472938001155853,0.8707674741745,-0.597391545772552,-0.795084357261658,0.104709826409817,-0.828738927841187,0.559625923633575,-0.00325175374746323,0.167790949344635,-0.0424025878310204,-0.984910309314728,0.161451295018196,0.0376177318394184,-0.986163556575775,0.998003125190735,0.00778559176251292,0.0626830160617828,0.998820722103119,-0.0164875723421574,0.0456646345555782,0.99975323677063,-0.0206335447728634,0.00823060516268015,0.931079149246216,-0.358760297298431,0.0662020221352577,0.841719567775726,-0.447113424539566,-0.302651256322861,0.123034805059433,-0.0717998370528221,-0.989801526069641,0.149353802204132,-0.100505843758583,-0.983662545681,0.388985067605972,-0.344994366168976,-0.85420697927475,0.145703047513962,-0.0681791082024574,-0.986976265907288,0.99975323677063,-0.0206335447728634,0.00823060516268015,0.991025984287262,-0.0812745243310928,0.106122508645058,0.931079149246216,-0.358760297298431,0.0662020221352577,-0.134512007236481,-0.472938001155853,0.8707674741745,-0.828738927841187,0.559625923633575,-0.00325175374746323,-0.988515615463257,0.127937123179436,-0.0804298371076584,-0.162030696868896,0.0343305543065071,0.986188411712646,-0.987159609794617,-0.065558910369873,-0.145664095878601,-0.984432101249695,-0.0693135932087898,-0.161521196365356,-0.597391545772552,-0.795084357261658,0.104709826409817,0.443840533494949,-0.462785631418228,0.767355859279633,-0.134512007236481,-0.472938001155853,0.8707674741745,-0.122421443462372,0.0577073208987713,0.990799069404602,-0.0895515829324722,-0.0035662017762661,0.99597579240799,-0.153923720121384,-0.00272623589262366,0.988078951835632,-0.150639146566391,-0.0359410606324673,0.987935245037079,-0.0788161978125572,-0.0399516597390175,0.996088325977325,-0.987159609794617,-0.065558910369873,-0.145664095878601,-0.971356391906738,-0.0348709039390087,-0.235055074095726,-0.984432101249695,-0.0693135932087898,-0.161521196365356,-0.984432101249695,-0.0693135932087898,-0.161521196365356,-0.977005779743195,0.114235855638981,-0.18002712726593,-0.828738927841187,0.559625923633575,-0.00325175374746323,
- -0.984432101249695,-0.0693135932087898,-0.161521196365356,-0.828738927841187,0.559625923633575,-0.00325175374746323,-0.597391545772552,-0.795084357261658,0.104709826409817,-0.157635137438774,-0.0486070588231087,0.986300408840179,-0.987159609794617,-0.065558910369873,-0.145664095878601,-0.134512007236481,-0.472938001155853,0.8707674741745,0.995221972465515,0.0948318168520927,0.0232432261109352,0.443840533494949,-0.462785631418228,0.767355859279633,0.989734053611755,0.0555560477077961,0.131680727005005,0.989734053611755,0.0555560477077961,0.131680727005005,-0.0961820110678673,0.0348848253488541,0.99475222826004,-0.0895515829324722,-0.0035662017762661,0.99597579240799,0.991287887096405,0.00762845622375607,0.131492227315903,-0.0961820110678673,0.0348848253488541,0.99475222826004,-0.122421443462372,0.0577073208987713,0.990799069404602,-0.162030696868896,0.0343305543065071,0.986188411712646,-0.153923720121384,-0.00272623589262366,0.988078951835632,-0.0895515829324722,-0.0035662017762661,0.99597579240799,-0.162030696868896,0.0343305543065071,0.986188411712646,-0.988515615463257,0.127937123179436,-0.0804298371076584,-0.99396288394928,0.036310289055109,-0.103534616529942,-0.153923720121384,-0.00272623589262366,0.988078951835632,-0.977005779743195,0.114235855638981,-0.18002712726593,-0.988515615463257,0.127937123179436,-0.0804298371076584,-0.828738927841187,0.559625923633575,-0.00325175374746323,-0.977005779743195,0.114235855638981,-0.18002712726593,0.113629579544067,0.103081002831459,-0.988161206245422,0.106094419956207,0.0376497358083725,-0.993643045425415,-0.983010590076447,0.0362850166857243,-0.179926738142967,0.113629579544067,0.103081002831459,-0.988161206245422,0.159387782216072,0.145985662937164,-0.976362586021423,0.189396858215332,0.112124651670456,-0.975477814674377,0.161451295018196,0.0376177318394184,-0.986163556575775,0.106094419956207,0.0376497358083725,-0.993643045425415,0.998003125190735,0.00778559176251292,0.0626830160617828,0.161451295018196,0.0376177318394184,-0.986163556575775,0.189396858215332,0.112124651670456,-0.975477814674377,
- 0.997896373271942,0.0647083818912506,0.00395688088610768,-0.153432264924049,-0.00502404198050499,0.988146364688873,-0.164128914475441,-0.0425085388123989,0.985522508621216,-0.0684928745031357,-0.0341814868152142,0.997065842151642,-0.0718762502074242,-0.00789060723036528,0.997382342815399,0.000725007790606469,0.999999403953552,0.000752618594560772,0.987994015216827,0.0820788145065308,0.130884766578674,0.994074404239655,0.0940429046750069,0.0545168183743954,-0.981316924095154,0.0577730014920235,-0.183519840240479,0.115155316889286,0.0509064383804798,-0.992042303085327,0.118377260863781,0.00273322663269937,-0.992964923381805,-0.156613931059837,0.0227013286203146,0.98739892244339,-0.0679018720984459,-0.00978069845587015,0.997644066810608,-0.00861693080514669,0.999348402023315,0.0350510030984879,0.987994015216827,0.0820788145065308,0.130884766578674,0.000725007790606469,0.999999403953552,0.000752618594560772,0.00149269180838019,0.999998509883881,0.000896243087481707,-0.00606294255703688,0.999751627445221,0.0214452855288982,-0.00861693080514669,0.999348402023315,0.0350510030984879,-0.0679018720984459,-0.00978069845587015,0.997644066810608,-0.156613931059837,0.0227013286203146,0.98739892244339,-0.992546439170837,0.0702207908034325,-0.0996021702885628,-0.994049370288849,0.00897147040814161,-0.108559720218182,-0.153432264924049,-0.00502404198050499,0.988146364688873,-0.156613931059837,0.0227013286203146,0.98739892244339,-0.00861693080514669,0.999348402023315,0.0350510030984879,-0.00653887493535876,0.999970316886902,0.0040866881608963,-0.992546439170837,0.0702207908034325,-0.0996021702885628,-0.00606294255703688,0.999751627445221,0.0214452855288982,0.987994015216827,0.0820788145065308,0.130884766578674,0.00149269180838019,0.999998509883881,0.000896243087481707,-0.0351893194019794,0.999355614185333,-0.00706125097349286,-0.00406491849571466,0.999815106391907,-0.0187951438128948,-0.981316924095154,0.0577730014920235,-0.183519840240479,0.987994015216827,0.0820788145065308,0.130884766578674,-0.0679018720984459,-0.00978069845587015,0.997644066810608,
- -0.0718762502074242,-0.00789060723036528,0.997382342815399,0.989462494850159,0.0130953760817647,0.144196167588234,-0.0679018720984459,-0.00978069845587015,0.997644066810608,0.987994015216827,0.0820788145065308,0.130884766578674,-0.00606294255703688,0.999751627445221,0.0214452855288982,-0.981707513332367,0.00963299814611673,-0.190151631832123,0.118377260863781,0.00273322663269937,-0.992964923381805,0.114234633743763,-0.0592056885361671,-0.991688013076782,-0.976739287376404,-0.0342218913137913,-0.211682066321373,-0.992546439170837,0.0702207908034325,-0.0996021702885628,-0.00653887493535876,0.999970316886902,0.0040866881608963,-0.0192479155957699,0.999813079833984,-0.00181873992551118,-0.0192479155957699,0.999813079833984,-0.00181873992551118,-0.0351893194019794,0.999355614185333,-0.00706125097349286,-0.992546439170837,0.0702207908034325,-0.0996021702885628,-0.994049370288849,0.00897147040814161,-0.108559720218182,-0.981707513332367,0.00963299814611673,-0.190151631832123,-0.976739287376404,-0.0342218913137913,-0.211682066321373,-0.987951517105103,-0.082759253680706,-0.130776569247246,-0.0679018720984459,-0.00978069845587015,0.997644066810608,-0.156613931059837,0.0227013286203146,0.98739892244339,-0.153432264924049,-0.00502404198050499,0.988146364688873,-0.0718762502074242,-0.00789060723036528,0.997382342815399,0.165536224842072,0.00503735104575753,-0.986190915107727,0.167347267270088,-0.0304963663220406,-0.985426247119904,0.114234633743763,-0.0592056885361671,-0.991688013076782,0.118377260863781,0.00273322663269937,-0.992964923381805,-0.153432264924049,-0.00502404198050499,0.988146364688873,-0.994049370288849,0.00897147040814161,-0.108559720218182,-0.987951517105103,-0.082759253680706,-0.130776569247246,-0.164128914475441,-0.0425085388123989,0.985522508621216,-0.0718762502074242,-0.00789060723036528,0.997382342815399,-0.0684928745031357,-0.0341814868152142,0.997065842151642,0.988881647586823,-0.0433002561330795,0.142261207103729,0.989462494850159,0.0130953760817647,0.144196167588234,0.165536224842072,0.00503735104575753,-0.986190915107727,
- 0.157903924584389,0.0419929064810276,-0.986561238765717,0.994074404239655,0.0940429046750069,0.0545168183743954,0.998007833957672,0.0153930662199855,0.0611846409738064,-0.981316924095154,0.0577730014920235,-0.183519840240479,0.118377260863781,0.00273322663269937,-0.992964923381805,-0.981707513332367,0.00963299814611673,-0.190151631832123,-0.992546439170837,0.0702207908034325,-0.0996021702885628,-0.0351893194019794,0.999355614185333,-0.00706125097349286,-0.981316924095154,0.0577730014920235,-0.183519840240479,0.998007833957672,0.0153930662199855,0.0611846409738064,0.989462494850159,0.0130953760817647,0.144196167588234,0.988881647586823,-0.0433002561330795,0.142261207103729,0.996750175952911,-0.0338225178420544,0.0731107890605927,0.981853306293488,-0.130136013031006,-0.137944310903549,0.203903198242188,-0.043630663305521,-0.978018343448639,0.996750175952911,-0.0338225178420544,0.0731107890605927,-0.0684928745031357,-0.0341814868152142,0.997065842151642,-0.164128914475441,-0.0425085388123989,0.985522508621216,-0.392650216817856,0.488864749670029,0.778997480869293,0.0953050777316093,-0.343560725450516,0.934282124042511,-0.976739287376404,-0.0342218913137913,-0.211682066321373,0.114234633743763,-0.0592056885361671,-0.991688013076782,0.0915123894810677,0.0713350549340248,-0.993245542049408,-0.838047921657562,0.480026125907898,-0.259327113628387,-0.664791762828827,0.743119597434998,-0.0763227567076683,-0.976739287376404,-0.0342218913137913,-0.211682066321373,-0.838047921657562,0.480026125907898,-0.259327113628387,0.988881647586823,-0.0433002561330795,0.142261207103729,-0.0684928745031357,-0.0341814868152142,0.997065842151642,0.0953050777316093,-0.343560725450516,0.934282124042511,0.993669748306274,-0.0627553761005402,0.0931782424449921,0.988881647586823,-0.0433002561330795,0.142261207103729,0.0953050777316093,-0.343560725450516,0.934282124042511,0.996750175952911,-0.0338225178420544,0.0731107890605927,0.167347267270088,-0.0304963663220406,-0.985426247119904,0.165536224842072,0.00503735104575753,-0.986190915107727,0.998007833957672,0.0153930662199855,0.0611846409738064,
- -0.992546439170837,0.0702207908034325,-0.0996021702885628,-0.981316924095154,0.0577730014920235,-0.183519840240479,-0.981707513332367,0.00963299814611673,-0.190151631832123,-0.994049370288849,0.00897147040814161,-0.108559720218182,0.996750175952911,-0.0338225178420544,0.0731107890605927,0.993669748306274,-0.0627553761005402,0.0931782424449921,0.981853306293488,-0.130136013031006,-0.137944310903549,0.114234633743763,-0.0592056885361671,-0.991688013076782,0.167347267270088,-0.0304963663220406,-0.985426247119904,0.203903198242188,-0.043630663305521,-0.978018343448639,0.0915123894810677,0.0713350549340248,-0.993245542049408,0.996750175952911,-0.0338225178420544,0.0731107890605927,0.988881647586823,-0.0433002561330795,0.142261207103729,0.993669748306274,-0.0627553761005402,0.0931782424449921,-0.987951517105103,-0.082759253680706,-0.130776569247246,-0.664791762828827,0.743119597434998,-0.0763227567076683,-0.392650216817856,0.488864749670029,0.778997480869293,-0.987951517105103,-0.082759253680706,-0.130776569247246,-0.976739287376404,-0.0342218913137913,-0.211682066321373,-0.664791762828827,0.743119597434998,-0.0763227567076683,-0.164128914475441,-0.0425085388123989,0.985522508621216,-0.987951517105103,-0.082759253680706,-0.130776569247246,-0.392650216817856,0.488864749670029,0.778997480869293,0.115155316889286,0.0509064383804798,-0.992042303085327,0.157903924584389,0.0419929064810276,-0.986561238765717,0.165536224842072,0.00503735104575753,-0.986190915107727,0.118377260863781,0.00273322663269937,-0.992964923381805,-0.00653887493535876,0.999970316886902,0.0040866881608963,-0.00861693080514669,0.999348402023315,0.0350510030984879,-0.00606294255703688,0.999751627445221,0.0214452855288982,0.00149269180838019,0.999998509883881,0.000896243087481707,0.000725007790606469,0.999999403953552,0.000752618594560772,-0.00349526898935437,0.999776780605316,-0.020835155621171,-0.00406491849571466,0.999815106391907,-0.0187951438128948,-0.0351893194019794,0.999355614185333,-0.00706125097349286,-0.0192479155957699,0.999813079833984,-0.00181873992551118,
- 0.994074404239655,0.0940429046750069,0.0545168183743954,0.157903924584389,0.0419929064810276,-0.986561238765717,-0.00349526898935437,0.999776780605316,-0.020835155621171,0.000725007790606469,0.999999403953552,0.000752618594560772,-0.00406491849571466,0.999815106391907,-0.0187951438128948,0.115155316889286,0.0509064383804798,-0.992042303085327,-0.981316924095154,0.0577730014920235,-0.183519840240479,-0.00406491849571466,0.999815106391907,-0.0187951438128948,-0.00349526898935437,0.999776780605316,-0.020835155621171,0.157903924584389,0.0419929064810276,-0.986561238765717,0.115155316889286,0.0509064383804798,-0.992042303085327,-0.980332434177399,0.00339796231128275,-0.197324112057686,-0.838047921657562,0.480026125907898,-0.259327113628387,0.0915123894810677,0.0713350549340248,-0.993245542049408,-0.957446575164795,-0.256161630153656,-0.132956773042679,-0.963991284370422,-0.188084617257118,-0.188002452254295,-0.798246085643768,-0.501289069652557,0.333934754133224,-0.820979237556458,-0.552418351173401,-0.144315779209137,-0.741874694824219,-0.667274653911591,-0.0660791173577309,-0.990522980690002,-0.0602876842021942,-0.123408257961273,-0.977446794509888,0.0213323514908552,-0.210101321339607,-0.135216683149338,-0.0889044106006622,0.986819326877594,-0.148898497223854,-0.0288403704762459,0.988431751728058,-0.990522980690002,-0.0602876842021942,-0.123408257961273,-0.741874694824219,-0.667274653911591,-0.0660791173577309,-0.0929092764854431,-0.029346588999033,0.995241940021515,-0.148898497223854,-0.0288403704762459,0.988431751728058,-0.135216683149338,-0.0889044106006622,0.986819326877594,0.443840533494949,-0.462785631418228,0.767355859279633,-0.0961820110678673,0.0348848253488541,0.99475222826004,0.989734053611755,0.0555560477077961,0.131680727005005,0.995221972465515,0.0948318168520927,0.0232432261109352,0.989734053611755,0.0555560477077961,0.131680727005005,0.991287887096405,0.00762845622375607,0.131492227315903,0.998003125190735,0.00778559176251292,0.0626830160617828,0.997896373271942,0.0647083818912506,0.00395688088610768,
- 0.998100340366364,0.00513246888294816,0.061395350843668,0.982580184936523,0.185385063290596,-0.0129796927794814,0.99270886182785,0.0108678853139281,0.120046213269234,0.140450015664101,-0.0190421137958765,-0.989904642105103,0.0684934929013252,-0.00151906802784652,-0.997650384902954,0.164112746715546,0.0875294879078865,-0.982550501823425,0.999023199081421,0.0030720648355782,0.0440816506743431,0.993471026420593,-0.0074376305565238,0.113841652870178,0.992949545383453,-0.0140253463760018,0.117704950273037,0.999204576015472,-0.0100601753219962,0.0385879203677177,0.178261384367943,0.00229021604172885,-0.983980536460876,0.193586215376854,0.0107607683166862,-0.981024205684662,0.999023199081421,0.0030720648355782,0.0440816506743431,0.999204576015472,-0.0100601753219962,0.0385879203677177,0.114332400262356,0.00337600451894104,-0.993436872959137,0.116220831871033,0.0110766515135765,-0.993161678314209,0.193586215376854,0.0107607683166862,-0.981024205684662,0.178261384367943,0.00229021604172885,-0.983980536460876,-0.99396288394928,0.036310289055109,-0.103534616529942,-0.988515615463257,0.127937123179436,-0.0804298371076584,-0.977005779743195,0.114235855638981,-0.18002712726593,-0.983010590076447,0.0362850166857243,-0.179926738142967,0.994074404239655,0.0940429046750069,0.0545168183743954,0.987994015216827,0.0820788145065308,0.130884766578674,0.989462494850159,0.0130953760817647,0.144196167588234,0.998007833957672,0.0153930662199855,0.0611846409738064,0.995761632919312,0.00383027619682252,0.0918921306729317,0.998310685157776,-0.0580988973379135,0.000523574359249324,0.989669799804688,-0.0132958963513374,0.142747670412064,0.996750175952911,-0.0338225178420544,0.0731107890605927,0.203903198242188,-0.043630663305521,-0.978018343448639,0.167347267270088,-0.0304963663220406,-0.985426247119904,-0.863975465297699,0.463002979755402,-0.197925999760628,-0.638547658920288,0.757069826126099,-0.138210996985435,-0.645736873149872,0.760483384132385,-0.0684758648276329,-0.986264586448669,0.157716125249863,-0.0490688197314739,-0.654701888561249,0.750427603721619,-0.0906852632761002,
- -0.740813255310059,0.657261610031128,-0.138574302196503,-0.761604428291321,0.646964073181152,-0.0373662114143372,-0.658432900905609,0.752100050449371,-0.0284881722182035,0.0795431733131409,0.995790302753448,0.0455471910536289,-0.0083005391061306,0.0313853733241558,0.999472856521606,0.0310576781630516,0.0367008522152901,0.998843610286713,0.267454922199249,0.963199734687805,0.0267244484275579,0.651104629039764,-0.758979856967926,-0.00352833536453545,0.627483367919922,-0.777648866176605,0.0390745513141155,0.65637069940567,-0.747832596302032,0.0996193587779999,-0.0128605952486396,-0.999839067459106,-0.0125029580667615,-0.051868911832571,-0.994153738021851,0.0946995839476585,-0.991974830627441,0.0699437782168388,-0.105326645076275,-0.157341450452805,-0.00460092071443796,0.987533569335938,-0.174141481518745,-0.0633088275790215,0.982683479785919,-0.107350565493107,-0.0949965789914131,0.989672422409058,-0.103755541145802,-0.0242865364998579,0.994306266307831,0.989015579223633,-0.145370095968246,-0.0267551634460688,0.928814172744751,-0.355500519275665,0.104516126215458,0.943786084651947,-0.329171895980835,0.0302279926836491,0.0412036813795567,0.0417295880615711,-0.998278915882111,0.16315470635891,0.00902466848492622,-0.986559271812439,-0.0052851652726531,0.0611370168626308,-0.998115420341492,-0.00393026601523161,0.998307883739471,-0.0580159090459347,0.37594211101532,0.926527440547943,-0.0146454982459545,-0.0083073703572154,0.999960899353027,-0.00305319204926491,-0.299710482358933,-0.952558398246765,-0.0529728122055531,-0.531638920307159,-0.828955292701721,-0.173761904239655,-0.385580807924271,-0.922331929206848,0.0251253880560398,-0.0351897850632668,-0.0159465260803699,-0.999253392219543,-0.0401336476206779,0.0253409631550312,-0.998872935771942,-0.0125131690874696,0.0347105227410793,-0.999319136142731,-0.031320434063673,-0.0335200652480125,-0.998947143554688,-0.172792568802834,0.0459767431020737,0.983884572982788,-0.133128792047501,-0.0243358686566353,0.990799963474274,-0.0997757092118263,-0.00949508417397738,0.994964718818665,
- -0.0683265849947929,-0.0016109615098685,0.997661769390106,-0.104899503290653,0.0337357558310032,0.993910431861877,-0.241746261715889,-0.97031569480896,-0.00679982174187899,-0.241917535662651,-0.969039738178253,0.0493752211332321,-0.160348162055016,-0.985609710216522,0.0534970909357071,-0.169304698705673,-0.985396265983582,-0.0181687418371439,-0.57038277387619,0.820707321166992,-0.0332064293324947,0.0944625809788704,0.00310808513313532,-0.995523512363434,0.0412036813795567,0.0417295880615711,-0.998278915882111,0.544414639472961,-0.833756327629089,-0.0919948890805244,-0.169304698705673,-0.985396265983582,-0.0181687418371439,-0.160348162055016,-0.985609710216522,0.0534970909357071,0.104672506451607,0.206356778740883,-0.97286194562912,0.196815684437752,0.172049432992935,-0.965226650238037,-0.251981139183044,0.966460347175598,-0.0495977662503719,0.00486887618899345,0.0387577898800373,0.999236762523651,-0.0396797880530357,0.0370522513985634,0.998525261878967,-0.0255042091012001,-0.0272058863192797,0.999304473400116,0.0182151589542627,-0.0215818844735622,0.999601125717163,0.627483367919922,-0.777648866176605,0.0390745513141155,0.379405468702316,-0.924593031406403,0.0343382023274899,0.65637069940567,-0.747832596302032,0.0996193587779999,0.989015579223633,-0.145370095968246,-0.0267551634460688,0.674530386924744,-0.738020360469818,-0.0182907581329346,0.635580658912659,-0.769882082939148,0.0576087012887001,0.0888110250234604,-0.0738339796662331,-0.993308246135712,-0.0198166500777006,-0.130159482359886,-0.991295039653778,0.0445088185369968,-0.212436348199844,-0.976160645484924,-0.47954934835434,0.877474308013916,0.00844215415418148,-0.658432900905609,0.752100050449371,-0.0284881722182035,-0.104899503290653,0.0337357558310032,0.993910431861877,0.231530636548996,-0.970898747444153,0.061230331659317,0.16302864253521,-0.981177926063538,-0.103496827185154,0.25020968914032,-0.968128979206085,-0.0110267885029316,0.252287924289703,-0.966740131378174,0.0420043095946312,0.651104629039764,-0.758979856967926,-0.00352833536453545,0.582010984420776,-0.812687993049622,0.0283102188259363,
- 0.627483367919922,-0.777648866176605,0.0390745513141155,-0.0544481351971626,-0.0570775642991066,-0.996883928775787,0.0142454598098993,-0.028041260316968,-0.999505221843719,0.16302864253521,-0.981177926063538,-0.103496827185154,-0.304435223340988,-0.950763702392578,0.0580319352447987,0.0545813329517841,-0.0168191380798817,0.998367607593536,-0.241917535662651,-0.969039738178253,0.0493752211332321,0.860327541828156,0.429722368717194,-0.274181008338928,0.102912902832031,-0.0292058084160089,-0.994261562824249,0.195120349526405,0.041461493819952,-0.979902625083923,0.999538004398346,-0.0117782242596149,-0.0280209593474865,-0.460381537675858,-0.802623331546783,-0.379268735647202,-0.427091956138611,-0.90417754650116,-0.00742900324985385,-0.124836958944798,-0.0501021929085255,-0.990911483764648,0.00890170410275459,0.0708959251642227,-0.997443974018097,-0.125029861927032,0.0339174531400204,-0.991573035717011,0.315127462148666,-0.682220458984375,0.659749865531921,-0.0997757092118263,-0.00949508417397738,0.994964718818665,0.115206964313984,0.174307346343994,0.977928578853607,0.166400417685509,-0.00391554646193981,-0.986050426959991,0.108888328075409,0.0207404661923647,-0.993837594985962,-0.0198166500777006,-0.130159482359886,-0.991295039653778,0.0888110250234604,-0.0738339796662331,-0.993308246135712,0.0380983576178551,-0.986782610416412,-0.157507941126823,0.0828746855258942,-0.995054662227631,-0.0547544658184052,0.0460514687001705,-0.995754778385162,0.0796976983547211,-0.0351897850632668,-0.0159465260803699,-0.999253392219543,-0.124836958944798,-0.0501021929085255,-0.990911483764648,-0.0401336476206779,0.0253409631550312,-0.998872935771942,0.65637069940567,-0.747832596302032,0.0996193587779999,0.379405468702316,-0.924593031406403,0.0343382023274899,0.684955894947052,-0.550444543361664,0.477332442998886,-0.57038277387619,0.820707321166992,-0.0332064293324947,0.0412036813795567,0.0417295880615711,-0.998278915882111,-0.654701888561249,0.750427603721619,-0.0906852632761002,0.0445088185369968,-0.212436348199844,-0.976160645484924,
- -0.0198166500777006,-0.130159482359886,-0.991295039653778,-0.0052851652726531,0.0611370168626308,-0.998115420341492,-0.0652201473712921,-0.048139076679945,0.996709108352661,-0.103464208543301,0.0101845161989331,0.994581043720245,-0.113596014678478,-0.0654749572277069,0.991367220878601,-0.00257758260704577,0.0207415856420994,0.999781489372253,-0.139561399817467,-0.644430994987488,0.751818716526031,-0.113596014678478,-0.0654749572277069,0.991367220878601,-0.0128605952486396,-0.999839067459106,-0.0125029580667615,0.0380983576178551,-0.986782610416412,-0.157507941126823,0.0460514687001705,-0.995754778385162,0.0796976983547211,-0.0128605952486396,-0.999839067459106,-0.0125029580667615,-0.038016065955162,-0.978505373001099,-0.202686920762062,0.0380983576178551,-0.986782610416412,-0.157507941126823,0.0941278487443924,-0.0272532273083925,-0.995186984539032,0.168818309903145,-0.0380836427211761,-0.984911143779755,0.0380983576178551,-0.986782610416412,-0.157507941126823,-0.427091956138611,-0.90417754650116,-0.00742900324985385,0.231530636548996,-0.970898747444153,0.061230331659317,0.379405468702316,-0.924593031406403,0.0343382023274899,-0.113596014678478,-0.0654749572277069,0.991367220878601,-0.139561399817467,-0.644430994987488,0.751818716526031,-0.0652201473712921,-0.048139076679945,0.996709108352661,-0.49104517698288,0.87085348367691,-0.022114148363471,-0.57038277387619,0.820707321166992,-0.0332064293324947,-0.654701888561249,0.750427603721619,-0.0906852632761002,-0.658432900905609,0.752100050449371,-0.0284881722182035,-0.47954934835434,0.877474308013916,0.00844215415418148,-0.104899503290653,0.0337357558310032,0.993910431861877,-0.658432900905609,0.752100050449371,-0.0284881722182035,-0.761604428291321,0.646964073181152,-0.0373662114143372,-0.172792568802834,0.0459767431020737,0.983884572982788,-0.761604428291321,0.646964073181152,-0.0373662114143372,-0.930990874767303,-0.341267347335815,-0.129586592316628,-0.922695636749268,-0.381919980049133,-0.0526308119297028,-0.0957695469260216,0.995313048362732,0.0134250642731786,
- -0.102993331849575,0.992808520793915,-0.0610210038721561,-0.227785006165504,0.971855282783508,-0.0600950568914413,-0.226371869444847,0.973982751369476,0.010651333257556,-0.140230104327202,0.0421165525913239,0.989222764968872,-0.0971596613526344,-0.0109562464058399,0.995208501815796,-0.160202458500862,0.104318976402283,0.981556355953217,0.125061348080635,-0.00175215897615999,0.992147505283356,-0.00616692332550883,0.386172920465469,0.922405779361725,0.3821622133255,0.924093127250671,0.00200752168893814,-0.460381537675858,-0.802623331546783,-0.379268735647202,0.16302864253521,-0.981177926063538,-0.103496827185154,-0.427091956138611,-0.90417754650116,-0.00742900324985385,-0.104899503290653,0.0337357558310032,0.993910431861877,-0.0483812019228935,0.0368254743516445,0.998149752616882,-0.47954934835434,0.877474308013916,0.00844215415418148,0.0392500087618828,0.897452414035797,0.439361453056335,-0.0483812019228935,0.0368254743516445,0.998149752616882,-0.113596014678478,-0.0654749572277069,0.991367220878601,0.928814172744751,-0.355500519275665,0.104516126215458,0.989015579223633,-0.145370095968246,-0.0267551634460688,0.994717657566071,0.0176019202917814,0.101128786802292,0.115206964313984,0.174307346343994,0.977928578853607,-0.160202458500862,0.104318976402283,0.981556355953217,-0.0971596613526344,-0.0109562464058399,0.995208501815796,0.0392500087618828,0.897452414035797,0.439361453056335,-0.103464208543301,0.0101845161989331,0.994581043720245,-0.374691814184189,0.927148461341858,-0.00136994058266282,-0.140230104327202,0.0421165525913239,0.989222764968872,-0.869452893733978,0.488986730575562,-0.0703117325901985,-0.931461036205292,0.34467402100563,-0.116533398628235,-0.157341450452805,-0.00460092071443796,0.987533569335938,-0.140230104327202,0.0421165525913239,0.989222764968872,-0.160202458500862,0.104318976402283,0.981556355953217,-0.717347323894501,0.301236808300018,0.62822687625885,-0.869452893733978,0.488986730575562,-0.0703117325901985,-0.160202458500862,0.104318976402283,0.981556355953217,-0.761604428291321,0.646964073181152,-0.0373662114143372,
- -0.717347323894501,0.301236808300018,0.62822687625885,-0.0351897850632668,-0.0159465260803699,-0.999253392219543,-0.031320434063673,-0.0335200652480125,-0.998947143554688,-0.352683693170547,-0.356258302927017,-0.865271210670471,-0.0351897850632668,-0.0159465260803699,-0.999253392219543,-0.352683693170547,-0.356258302927017,-0.865271210670471,-0.124836958944798,-0.0501021929085255,-0.990911483764648,-0.0052851652726531,0.0611370168626308,-0.998115420341492,0.16315470635891,0.00902466848492622,-0.986559271812439,0.0445088185369968,-0.212436348199844,-0.976160645484924,0.635580658912659,-0.769882082939148,0.0576087012887001,0.674530386924744,-0.738020360469818,-0.0182907581329346,0.692799925804138,-0.720899283885956,-0.018232325091958,0.651104629039764,-0.758979856967926,-0.00352833536453545,-0.260527610778809,-0.0108850952237844,0.965404987335205,0.0545813329517841,-0.0168191380798817,0.998367607593536,-0.304435223340988,-0.950763702392578,0.0580319352447987,0.105141669511795,-0.028578719124198,0.9940465092659,0.0545813329517841,-0.0168191380798817,0.998367607593536,-0.260527610778809,-0.0108850952237844,0.965404987335205,-0.32693213224411,0.943090200424194,0.0607966929674149,-0.255695044994354,0.966753959655762,-0.00263145379722118,-0.0957695469260216,0.995313048362732,0.0134250642731786,-0.0396797880530357,0.0370522513985634,0.998525261878967,0.00486887618899345,0.0387577898800373,0.999236762523651,-0.0957695469260216,0.995313048362732,0.0134250642731786,-0.226371869444847,0.973982751369476,0.010651333257556,0.994717657566071,0.0176019202917814,0.101128786802292,0.989015579223633,-0.145370095968246,-0.0267551634460688,0.635580658912659,-0.769882082939148,0.0576087012887001,0.115206964313984,0.174307346343994,0.977928578853607,0.635580658912659,-0.769882082939148,0.0576087012887001,0.315127462148666,-0.682220458984375,0.659749865531921,-0.00616692332550883,0.386172920465469,0.922405779361725,-0.0083073703572154,0.999960899353027,-0.00305319204926491,0.37594211101532,0.926527440547943,-0.0146454982459545,0.3821622133255,0.924093127250671,0.00200752168893814,
- 0.37594211101532,0.926527440547943,-0.0146454982459545,0.382745683193207,0.922701597213745,-0.0461249388754368,0.263023883104324,0.963612198829651,-0.0476439446210861,0.267454922199249,0.963199734687805,0.0267244484275579,0.3821622133255,0.924093127250671,0.00200752168893814,0.195120349526405,0.041461493819952,-0.979902625083923,0.102912902832031,-0.0292058084160089,-0.994261562824249,0.196815684437752,0.172049432992935,-0.965226650238037,0.0545813329517841,-0.0168191380798817,0.998367607593536,0.0180532336235046,-0.0154485423117876,0.999717712402344,-0.241917535662651,-0.969039738178253,0.0493752211332321,-0.930990874767303,-0.341267347335815,-0.129586592316628,-0.0052851652726531,0.0611370168626308,-0.998115420341492,-0.0198166500777006,-0.130159482359886,-0.991295039653778,0.108888328075409,0.0207404661923647,-0.993837594985962,-0.861777544021606,0.476677149534225,-0.173546776175499,-0.0198166500777006,-0.130159482359886,-0.991295039653778,-0.125029861927032,0.0339174531400204,-0.991573035717011,0.00890170410275459,0.0708959251642227,-0.997443974018097,-0.102993331849575,0.992808520793915,-0.0610210038721561,-0.125029861927032,0.0339174531400204,-0.991573035717011,-0.0401336476206779,0.0253409631550312,-0.998872935771942,-0.124836958944798,-0.0501021929085255,-0.990911483764648,0.196815684437752,0.172049432992935,-0.965226650238037,0.0944625809788704,0.00310808513313532,-0.995523512363434,-0.57038277387619,0.820707321166992,-0.0332064293324947,-0.051868911832571,-0.994153738021851,0.0946995839476585,-0.0128605952486396,-0.999839067459106,-0.0125029580667615,0.0460514687001705,-0.995754778385162,0.0796976983547211,-0.0125131690874696,0.0347105227410793,-0.999319136142731,0.263023883104324,0.963612198829651,-0.0476439446210861,0.382745683193207,0.922701597213745,-0.0461249388754368,0.0617420822381973,-0.00950168538838625,-0.998046934604645,-0.0788751691579819,-0.0460830442607403,0.995818793773651,-0.051868911832571,-0.994153738021851,0.0946995839476585,0.0460514687001705,-0.995754778385162,0.0796976983547211,-0.740813255310059,0.657261610031128,-0.138574302196503,
- -0.0052851652726531,0.0611370168626308,-0.998115420341492,-0.930990874767303,-0.341267347335815,-0.129586592316628,-0.761604428291321,0.646964073181152,-0.0373662114143372,-0.740813255310059,0.657261610031128,-0.138574302196503,-0.930990874767303,-0.341267347335815,-0.129586592316628,-0.0544481351971626,-0.0570775642991066,-0.996883928775787,0.16302864253521,-0.981177926063538,-0.103496827185154,-0.460381537675858,-0.802623331546783,-0.379268735647202,-0.460381537675858,-0.802623331546783,-0.379268735647202,0.860327541828156,0.429722368717194,-0.274181008338928,0.195120349526405,0.041461493819952,-0.979902625083923,-0.031320434063673,-0.0335200652480125,-0.998947143554688,0.0124360015615821,-0.0767071917653084,-0.99697607755661,-0.299710482358933,-0.952558398246765,-0.0529728122055531,-0.031320434063673,-0.0335200652480125,-0.998947143554688,-0.299710482358933,-0.952558398246765,-0.0529728122055531,-0.241746261715889,-0.97031569480896,-0.00679982174187899,0.569028198719025,-0.0283696558326483,0.821828424930573,0.0182151589542627,-0.0215818844735622,0.999601125717163,0.675505995750427,-0.736851692199707,0.0272250920534134,0.635580658912659,-0.769882082939148,0.0576087012887001,0.115206964313984,0.174307346343994,0.977928578853607,0.994717657566071,0.0176019202917814,0.101128786802292,0.115206964313984,0.174307346343994,0.977928578853607,0.928814172744751,-0.355500519275665,0.104516126215458,0.994717657566071,0.0176019202917814,0.101128786802292,0.37594211101532,0.926527440547943,-0.0146454982459545,-0.00393026601523161,0.998307883739471,-0.0580159090459347,0.382745683193207,0.922701597213745,-0.0461249388754368,-0.460381537675858,-0.802623331546783,-0.379268735647202,0.195120349526405,0.041461493819952,-0.979902625083923,-0.0544481351971626,-0.0570775642991066,-0.996883928775787,-0.930990874767303,-0.341267347335815,-0.129586592316628,-0.0198166500777006,-0.130159482359886,-0.991295039653778,-0.896359622478485,0.40896263718605,-0.171140134334564,0.635580658912659,-0.769882082939148,0.0576087012887001,0.65637069940567,-0.747832596302032,0.0996193587779999,
- 0.315127462148666,-0.682220458984375,0.659749865531921,-0.0125131690874696,0.0347105227410793,-0.999319136142731,0.0617420822381973,-0.00950168538838625,-0.998046934604645,0.0124360015615821,-0.0767071917653084,-0.99697607755661,-0.031320434063673,-0.0335200652480125,-0.998947143554688,0.0142454598098993,-0.028041260316968,-0.999505221843719,-0.00817558821290731,0.0623348355293274,-0.99802178144455,0.00890170410275459,0.0708959251642227,-0.997443974018097,0.928814172744751,-0.355500519275665,0.104516126215458,-0.0971596613526344,-0.0109562464058399,0.995208501815796,-0.103755541145802,-0.0242865364998579,0.994306266307831,0.92705500125885,-0.359719961881638,0.105691209435463,-0.0971596613526344,-0.0109562464058399,0.995208501815796,0.928814172744751,-0.355500519275665,0.104516126215458,0.115206964313984,0.174307346343994,0.977928578853607,0.112295649945736,-0.00772397313266993,-0.993644773960114,0.16315470635891,0.00902466848492622,-0.986559271812439,0.0412036813795567,0.0417295880615711,-0.998278915882111,-0.304435223340988,-0.950763702392578,0.0580319352447987,-0.385580807924271,-0.922331929206848,0.0251253880560398,-0.260527610778809,-0.0108850952237844,0.965404987335205,-0.299710482358933,-0.952558398246765,-0.0529728122055531,-0.385580807924271,-0.922331929206848,0.0251253880560398,-0.304435223340988,-0.950763702392578,0.0580319352447987,-0.0683265849947929,-0.0016109615098685,0.997661769390106,0.65637069940567,-0.747832596302032,0.0996193587779999,0.684955894947052,-0.550444543361664,0.477332442998886,-0.251981139183044,0.966460347175598,-0.0495977662503719,-0.00817558821290731,0.0623348355293274,-0.99802178144455,0.104672506451607,0.206356778740883,-0.97286194562912,0.692799925804138,-0.720899283885956,-0.018232325091958,0.112295649945736,-0.00772397313266993,-0.993644773960114,0.651104629039764,-0.758979856967926,-0.00352833536453545,0.112295649945736,-0.00772397313266993,-0.993644773960114,0.582010984420776,-0.812687993049622,0.0283102188259363,0.651104629039764,-0.758979856967926,-0.00352833536453545,-0.160348162055016,-0.985609710216522,0.0534970909357071,
- -0.0144461300224066,-0.0286561772227287,0.999484956264496,0.569028198719025,-0.0283696558326483,0.821828424930573,0.675505995750427,-0.736851692199707,0.0272250920534134,0.675505995750427,-0.736851692199707,0.0272250920534134,0.544414639472961,-0.833756327629089,-0.0919948890805244,-0.160348162055016,-0.985609710216522,0.0534970909357071,-0.00257758260704577,0.0207415856420994,0.999781489372253,-0.0683265849947929,-0.0016109615098685,0.997661769390106,0.684955894947052,-0.550444543361664,0.477332442998886,0.379405468702316,-0.924593031406403,0.0343382023274899,-0.139561399817467,-0.644430994987488,0.751818716526031,-0.00257758260704577,0.0207415856420994,0.999781489372253,0.684955894947052,-0.550444543361664,0.477332442998886,0.989015579223633,-0.145370095968246,-0.0267551634460688,0.0888110250234604,-0.0738339796662331,-0.993308246135712,0.674530386924744,-0.738020360469818,-0.0182907581329346,0.999908566474915,-0.00314232287928462,0.0131550030782819,0.199898704886436,0.105809517204762,-0.97408664226532,0.173473432660103,0.130838930606842,-0.976108610630035,0.999051749706268,0.0230060890316963,0.0369627438485622,-0.172792568802834,0.0459767431020737,0.983884572982788,-0.761604428291321,0.646964073181152,-0.0373662114143372,-0.160202458500862,0.104318976402283,0.981556355953217,0.0445088185369968,-0.212436348199844,-0.976160645484924,0.692799925804138,-0.720899283885956,-0.018232325091958,0.674530386924744,-0.738020360469818,-0.0182907581329346,0.674530386924744,-0.738020360469818,-0.0182907581329346,0.0888110250234604,-0.0738339796662331,-0.993308246135712,0.0445088185369968,-0.212436348199844,-0.976160645484924,0.999538004398346,-0.0117782242596149,-0.0280209593474865,0.627483367919922,-0.777648866176605,0.0390745513141155,0.582010984420776,-0.812687993049622,0.0283102188259363,-0.133128792047501,-0.0243358686566353,0.990799963474274,-0.160202458500862,0.104318976402283,0.981556355953217,0.115206964313984,0.174307346343994,0.977928578853607,-0.172792568802834,0.0459767431020737,0.983884572982788,-0.160202458500862,0.104318976402283,0.981556355953217,
- -0.133128792047501,-0.0243358686566353,0.990799963474274,0.168818309903145,-0.0380836427211761,-0.984911143779755,0.0828746855258942,-0.995054662227631,-0.0547544658184052,0.0380983576178551,-0.986782610416412,-0.157507941126823,0.0828746855258942,-0.995054662227631,-0.0547544658184052,0.99810391664505,-0.0385028123855591,0.0480209141969681,0.918360829353333,-0.39228230714798,0.0522301904857159,0.0182151589542627,-0.0215818844735622,0.999601125717163,0.29570260643959,-0.954559326171875,0.0371029116213322,0.675505995750427,-0.736851692199707,0.0272250920534134,0.0498231090605259,0.995656132698059,-0.0786551833152771,-0.255695044994354,0.966753959655762,-0.00263145379722118,0.118472926318645,0.991923391819,-0.0453007109463215,0.168818309903145,-0.0380836427211761,-0.984911143779755,0.99810391664505,-0.0385028123855591,0.0480209141969681,0.0828746855258942,-0.995054662227631,-0.0547544658184052,-0.427091956138611,-0.90417754650116,-0.00742900324985385,0.379405468702316,-0.924593031406403,0.0343382023274899,0.627483367919922,-0.777648866176605,0.0390745513141155,0.999538004398346,-0.0117782242596149,-0.0280209593474865,-0.427091956138611,-0.90417754650116,-0.00742900324985385,0.627483367919922,-0.777648866176605,0.0390745513141155,-0.0483812019228935,0.0368254743516445,0.998149752616882,0.0392500087618828,0.897452414035797,0.439361453056335,-0.47954934835434,0.877474308013916,0.00844215415418148,-0.47954934835434,0.877474308013916,0.00844215415418148,0.0392500087618828,0.897452414035797,0.439361453056335,-0.49104517698288,0.87085348367691,-0.022114148363471,0.25020968914032,-0.968128979206085,-0.0110267885029316,0.145113959908485,-0.0310336723923683,-0.988928139209747,0.294414669275284,-0.955260992050171,-0.028222793713212,0.145113959908485,-0.0310336723923683,-0.988928139209747,0.544414639472961,-0.833756327629089,-0.0919948890805244,0.294414669275284,-0.955260992050171,-0.028222793713212,-0.0544481351971626,-0.0570775642991066,-0.996883928775787,0.195120349526405,0.041461493819952,-0.979902625083923,-0.0379574969410896,0.00178862118627876,-0.999277830123901,
- 0.0380983576178551,-0.986782610416412,-0.157507941126823,-0.038016065955162,-0.978505373001099,-0.202686920762062,0.0941278487443924,-0.0272532273083925,-0.995186984539032,-0.980047464370728,0.0897882506251335,-0.177327483892441,-0.038016065955162,-0.978505373001099,-0.202686920762062,-0.0128605952486396,-0.999839067459106,-0.0125029580667615,0.196815684437752,0.172049432992935,-0.965226650238037,-0.57038277387619,0.820707321166992,-0.0332064293324947,-0.49104517698288,0.87085348367691,-0.022114148363471,0.196815684437752,0.172049432992935,-0.965226650238037,-0.49104517698288,0.87085348367691,-0.022114148363471,-0.251981139183044,0.966460347175598,-0.0495977662503719,-0.103464208543301,0.0101845161989331,0.994581043720245,0.0392500087618828,0.897452414035797,0.439361453056335,-0.113596014678478,-0.0654749572277069,0.991367220878601,-0.038016065955162,-0.978505373001099,-0.202686920762062,-0.980047464370728,0.0897882506251335,-0.177327483892441,0.0941278487443924,-0.0272532273083925,-0.995186984539032,-0.139561399817467,-0.644430994987488,0.751818716526031,0.379405468702316,-0.924593031406403,0.0343382023274899,0.231530636548996,-0.970898747444153,0.061230331659317,-0.0788751691579819,-0.0460830442607403,0.995818793773651,0.0460514687001705,-0.995754778385162,0.0796976983547211,0.988030016422272,-0.097923755645752,0.119196273386478,-0.0997757092118263,-0.00949508417397738,0.994964718818665,-0.133128792047501,-0.0243358686566353,0.990799963474274,0.115206964313984,0.174307346343994,0.977928578853607,0.16315470635891,0.00902466848492622,-0.986559271812439,0.112295649945736,-0.00772397313266993,-0.993644773960114,0.692799925804138,-0.720899283885956,-0.018232325091958,0.0445088185369968,-0.212436348199844,-0.976160645484924,0.16315470635891,0.00902466848492622,-0.986559271812439,0.692799925804138,-0.720899283885956,-0.018232325091958,-0.251981139183044,0.966460347175598,-0.0495977662503719,-0.49104517698288,0.87085348367691,-0.022114148363471,0.0392500087618828,0.897452414035797,0.439361453056335,0.0460514687001705,-0.995754778385162,0.0796976983547211,
- 0.0828746855258942,-0.995054662227631,-0.0547544658184052,0.918360829353333,-0.39228230714798,0.0522301904857159,0.0460514687001705,-0.995754778385162,0.0796976983547211,0.918360829353333,-0.39228230714798,0.0522301904857159,0.988030016422272,-0.097923755645752,0.119196273386478,0.00486887618899345,0.0387577898800373,0.999236762523651,-0.32693213224411,0.943090200424194,0.0607966929674149,-0.0957695469260216,0.995313048362732,0.0134250642731786,-0.113596014678478,-0.0654749572277069,0.991367220878601,-0.0483812019228935,0.0368254743516445,0.998149752616882,-0.00257758260704577,0.0207415856420994,0.999781489372253,-0.0652201473712921,-0.048139076679945,0.996709108352661,-0.139561399817467,-0.644430994987488,0.751818716526031,0.231530636548996,-0.970898747444153,0.061230331659317,0.0182151589542627,-0.0215818844735622,0.999601125717163,-0.0255042091012001,-0.0272058863192797,0.999304473400116,0.252287924289703,-0.966740131378174,0.0420043095946312,0.29570260643959,-0.954559326171875,0.0371029116213322,0.00486887618899345,0.0387577898800373,0.999236762523651,-0.0801486968994141,0.0278848391026258,0.996392846107483,-0.32693213224411,0.943090200424194,0.0607966929674149,0.125061348080635,-0.00175215897615999,0.992147505283356,0.0310576781630516,0.0367008522152901,0.998843610286713,0.0180532336235046,-0.0154485423117876,0.999717712402344,0.0545813329517841,-0.0168191380798817,0.998367607593536,0.105141669511795,-0.028578719124198,0.9940465092659,0.105141669511795,-0.028578719124198,0.9940465092659,-0.260527610778809,-0.0108850952237844,0.965404987335205,-0.00616692332550883,0.386172920465469,0.922405779361725,0.125061348080635,-0.00175215897615999,0.992147505283356,-0.299903512001038,0.213175311684608,-0.929846346378326,-0.181996256113052,-0.0159518476575613,-0.983169853687286,0.0124360015615821,-0.0767071917653084,-0.99697607755661,0.0617420822381973,-0.00950168538838625,-0.998046934604645,-0.531638920307159,-0.828955292701721,-0.173761904239655,-0.299710482358933,-0.952558398246765,-0.0529728122055531,0.0124360015615821,-0.0767071917653084,-0.99697607755661,
- -0.181996256113052,-0.0159518476575613,-0.983169853687286,-0.352683693170547,-0.356258302927017,-0.865271210670471,-0.031320434063673,-0.0335200652480125,-0.998947143554688,-0.169304698705673,-0.985396265983582,-0.0181687418371439,0.544414639472961,-0.833756327629089,-0.0919948890805244,-0.352683693170547,-0.356258302927017,-0.865271210670471,-0.169304698705673,-0.985396265983582,-0.0181687418371439,0.145113959908485,-0.0310336723923683,-0.988928139209747,0.00890170410275459,0.0708959251642227,-0.997443974018097,-0.124836958944798,-0.0501021929085255,-0.990911483764648,-0.0379574969410896,0.00178862118627876,-0.999277830123901,-0.00817558821290731,0.0623348355293274,-0.99802178144455,0.0142454598098993,-0.028041260316968,-0.999505221843719,-0.0544481351971626,-0.0570775642991066,-0.996883928775787,0.195120349526405,0.041461493819952,-0.979902625083923,0.104672506451607,0.206356778740883,-0.97286194562912,-0.0379574969410896,0.00178862118627876,-0.999277830123901,0.196815684437752,0.172049432992935,-0.965226650238037,0.104672506451607,0.206356778740883,-0.97286194562912,0.195120349526405,0.041461493819952,-0.979902625083923,-0.0401336476206779,0.0253409631550312,-0.998872935771942,0.118472926318645,0.991923391819,-0.0453007109463215,0.263023883104324,0.963612198829651,-0.0476439446210861,-0.0125131690874696,0.0347105227410793,-0.999319136142731,0.0498231090605259,0.995656132698059,-0.0786551833152771,0.118472926318645,0.991923391819,-0.0453007109463215,-0.0401336476206779,0.0253409631550312,-0.998872935771942,0.0498231090605259,0.995656132698059,-0.0786551833152771,-0.0401336476206779,0.0253409631550312,-0.998872935771942,-0.125029861927032,0.0339174531400204,-0.991573035717011,-0.125029861927032,0.0339174531400204,-0.991573035717011,-0.102993331849575,0.992808520793915,-0.0610210038721561,0.0498231090605259,0.995656132698059,-0.0786551833152771,-0.920768558979034,0.340191721916199,-0.190931305289268,0.0947142615914345,0.0139853321015835,-0.995406270027161,0.0903557017445564,-0.111137121915817,-0.98968905210495,-0.946778476238251,0.235140547156334,-0.219816923141479,
- -0.0788751691579819,-0.0460830442607403,0.995818793773651,-0.161441966891289,-0.0390043742954731,0.986111104488373,-0.051868911832571,-0.994153738021851,0.0946995839476585,-0.991974830627441,0.0699437782168388,-0.105326645076275,-0.051868911832571,-0.994153738021851,0.0946995839476585,-0.161441966891289,-0.0390043742954731,0.986111104488373,-0.985170781612396,0.0916066095232964,-0.145074814558029,-0.980047464370728,0.0897882506251335,-0.177327483892441,-0.0128605952486396,-0.999839067459106,-0.0125029580667615,-0.0128605952486396,-0.999839067459106,-0.0125029580667615,-0.991974830627441,0.0699437782168388,-0.105326645076275,-0.985170781612396,0.0916066095232964,-0.145074814558029,0.999538004398346,-0.0117782242596149,-0.0280209593474865,0.860327541828156,0.429722368717194,-0.274181008338928,-0.460381537675858,-0.802623331546783,-0.379268735647202,0.999538004398346,-0.0117782242596149,-0.0280209593474865,0.102912902832031,-0.0292058084160089,-0.994261562824249,0.860327541828156,0.429722368717194,-0.274181008338928,0.112295649945736,-0.00772397313266993,-0.993644773960114,0.102912902832031,-0.0292058084160089,-0.994261562824249,0.582010984420776,-0.812687993049622,0.0283102188259363,-0.124836958944798,-0.0501021929085255,-0.990911483764648,-0.352683693170547,-0.356258302927017,-0.865271210670471,0.544414639472961,-0.833756327629089,-0.0919948890805244,0.145113959908485,-0.0310336723923683,-0.988928139209747,-0.124836958944798,-0.0501021929085255,-0.990911483764648,0.544414639472961,-0.833756327629089,-0.0919948890805244,0.0142454598098993,-0.028041260316968,-0.999505221843719,0.145113959908485,-0.0310336723923683,-0.988928139209747,0.25020968914032,-0.968128979206085,-0.0110267885029316,0.16302864253521,-0.981177926063538,-0.103496827185154,0.0142454598098993,-0.028041260316968,-0.999505221843719,0.25020968914032,-0.968128979206085,-0.0110267885029316,-0.717347323894501,0.301236808300018,0.62822687625885,-0.761604428291321,0.646964073181152,-0.0373662114143372,-0.922695636749268,-0.381919980049133,-0.0526308119297028,
- -0.869452893733978,0.488986730575562,-0.0703117325901985,-0.717347323894501,0.301236808300018,0.62822687625885,-0.92754065990448,0.367230296134949,-0.069355808198452,-0.931461036205292,0.34467402100563,-0.116533398628235,-0.920768558979034,0.340191721916199,-0.190931305289268,-0.946778476238251,0.235140547156334,-0.219816923141479,-0.967846155166626,0.215235635638237,-0.130182355642319,-0.0801486968994141,0.0278848391026258,0.996392846107483,0.569028198719025,-0.0283696558326483,0.821828424930573,-0.0144461300224066,-0.0286561772227287,0.999484956264496,0.00486887618899345,0.0387577898800373,0.999236762523651,0.569028198719025,-0.0283696558326483,0.821828424930573,-0.0801486968994141,0.0278848391026258,0.996392846107483,0.00486887618899345,0.0387577898800373,0.999236762523651,0.0182151589542627,-0.0215818844735622,0.999601125717163,0.569028198719025,-0.0283696558326483,0.821828424930573,0.00890170410275459,0.0708959251642227,-0.997443974018097,-0.00817558821290731,0.0623348355293274,-0.99802178144455,-0.227785006165504,0.971855282783508,-0.0600950568914413,-0.102993331849575,0.992808520793915,-0.0610210038721561,0.3821622133255,0.924093127250671,0.00200752168893814,0.267454922199249,0.963199734687805,0.0267244484275579,0.0310576781630516,0.0367008522152901,0.998843610286713,0.125061348080635,-0.00175215897615999,0.992147505283356,0.118472926318645,0.991923391819,-0.0453007109463215,0.0795431733131409,0.995790302753448,0.0455471910536289,0.267454922199249,0.963199734687805,0.0267244484275579,0.263023883104324,0.963612198829651,-0.0476439446210861,-0.304435223340988,-0.950763702392578,0.0580319352447987,-0.241917535662651,-0.969039738178253,0.0493752211332321,-0.241746261715889,-0.97031569480896,-0.00679982174187899,-0.299710482358933,-0.952558398246765,-0.0529728122055531,0.0180532336235046,-0.0154485423117876,0.999717712402344,-0.0144461300224066,-0.0286561772227287,0.999484956264496,-0.160348162055016,-0.985609710216522,0.0534970909357071,-0.241917535662651,-0.969039738178253,0.0493752211332321,-0.031320434063673,-0.0335200652480125,-0.998947143554688,
- -0.241746261715889,-0.97031569480896,-0.00679982174187899,-0.169304698705673,-0.985396265983582,-0.0181687418371439,0.0310576781630516,0.0367008522152901,0.998843610286713,-0.0083005391061306,0.0313853733241558,0.999472856521606,-0.0144461300224066,-0.0286561772227287,0.999484956264496,0.0180532336235046,-0.0154485423117876,0.999717712402344,-0.103464208543301,0.0101845161989331,0.994581043720245,-0.0652201473712921,-0.048139076679945,0.996709108352661,-0.0255042091012001,-0.0272058863192797,0.999304473400116,-0.0396797880530357,0.0370522513985634,0.998525261878967,-0.226371869444847,0.973982751369476,0.010651333257556,-0.227785006165504,0.971855282783508,-0.0600950568914413,-0.251981139183044,0.966460347175598,-0.0495977662503719,-0.374691814184189,0.927148461341858,-0.00136994058266282,-0.103464208543301,0.0101845161989331,0.994581043720245,-0.0396797880530357,0.0370522513985634,0.998525261878967,-0.226371869444847,0.973982751369476,0.010651333257556,-0.374691814184189,0.927148461341858,-0.00136994058266282,0.252287924289703,-0.966740131378174,0.0420043095946312,-0.0255042091012001,-0.0272058863192797,0.999304473400116,-0.0652201473712921,-0.048139076679945,0.996709108352661,0.231530636548996,-0.970898747444153,0.061230331659317,-0.227785006165504,0.971855282783508,-0.0600950568914413,-0.00817558821290731,0.0623348355293274,-0.99802178144455,-0.251981139183044,0.966460347175598,-0.0495977662503719,0.651104629039764,-0.758979856967926,-0.00352833536453545,0.65637069940567,-0.747832596302032,0.0996193587779999,0.635580658912659,-0.769882082939148,0.0576087012887001,0.0944625809788704,0.00310808513313532,-0.995523512363434,0.196815684437752,0.172049432992935,-0.965226650238037,0.102912902832031,-0.0292058084160089,-0.994261562824249,-0.0483812019228935,0.0368254743516445,0.998149752616882,-0.104899503290653,0.0337357558310032,0.993910431861877,-0.0683265849947929,-0.0016109615098685,0.997661769390106,-0.00257758260704577,0.0207415856420994,0.999781489372253,-0.654701888561249,0.750427603721619,-0.0906852632761002,0.0412036813795567,0.0417295880615711,-0.998278915882111,
- -0.0052851652726531,0.0611370168626308,-0.998115420341492,-0.740813255310059,0.657261610031128,-0.138574302196503,-0.0683265849947929,-0.0016109615098685,0.997661769390106,-0.0997757092118263,-0.00949508417397738,0.994964718818665,0.315127462148666,-0.682220458984375,0.659749865531921,0.65637069940567,-0.747832596302032,0.0996193587779999,-0.0971596613526344,-0.0109562464058399,0.995208501815796,-0.140230104327202,0.0421165525913239,0.989222764968872,-0.157341450452805,-0.00460092071443796,0.987533569335938,-0.103755541145802,-0.0242865364998579,0.994306266307831,0.99810391664505,-0.0385028123855591,0.0480209141969681,0.988030016422272,-0.097923755645752,0.119196273386478,0.918360829353333,-0.39228230714798,0.0522301904857159,0.156085923314095,-0.00897165294736624,-0.987702667713165,0.152817025780678,-0.0859680771827698,-0.984508275985718,0.12312026321888,-0.112926922738552,-0.985945701599121,0.0903557017445564,-0.111137121915817,-0.98968905210495,0.0947142615914345,0.0139853321015835,-0.995406270027161,-0.157341450452805,-0.00460092071443796,0.987533569335938,-0.931461036205292,0.34467402100563,-0.116533398628235,-0.967846155166626,0.215235635638237,-0.130182355642319,-0.174141481518745,-0.0633088275790215,0.982683479785919,-0.103755541145802,-0.0242865364998579,0.994306266307831,-0.107350565493107,-0.0949965789914131,0.989672422409058,0.850230097770691,-0.519752204418182,0.0834643766283989,0.92705500125885,-0.359719961881638,0.105691209435463,0.943786084651947,-0.329171895980835,0.0302279926836491,0.166400417685509,-0.00391554646193981,-0.986050426959991,0.0888110250234604,-0.0738339796662331,-0.993308246135712,0.989015579223633,-0.145370095968246,-0.0267551634460688,-0.861777544021606,0.476677149534225,-0.173546776175499,0.108888328075409,0.0207404661923647,-0.993837594985962,0.0947142615914345,0.0139853321015835,-0.995406270027161,-0.920768558979034,0.340191721916199,-0.190931305289268,-0.92754065990448,0.367230296134949,-0.069355808198452,-0.896359622478485,0.40896263718605,-0.171140134334564,-0.861777544021606,0.476677149534225,-0.173546776175499,
- -0.869452893733978,0.488986730575562,-0.0703117325901985,0.294414669275284,-0.955260992050171,-0.028222793713212,0.29570260643959,-0.954559326171875,0.0371029116213322,0.252287924289703,-0.966740131378174,0.0420043095946312,0.25020968914032,-0.968128979206085,-0.0110267885029316,-0.0379574969410896,0.00178862118627876,-0.999277830123901,0.104672506451607,0.206356778740883,-0.97286194562912,-0.00817558821290731,0.0623348355293274,-0.99802178144455,0.0944625809788704,0.00310808513313532,-0.995523512363434,0.102912902832031,-0.0292058084160089,-0.994261562824249,0.112295649945736,-0.00772397313266993,-0.993644773960114,0.0412036813795567,0.0417295880615711,-0.998278915882111,0.382745683193207,0.922701597213745,-0.0461249388754368,-0.299903512001038,0.213175311684608,-0.929846346378326,0.0617420822381973,-0.00950168538838625,-0.998046934604645,0.582010984420776,-0.812687993049622,0.0283102188259363,0.102912902832031,-0.0292058084160089,-0.994261562824249,0.999538004398346,-0.0117782242596149,-0.0280209593474865,0.29570260643959,-0.954559326171875,0.0371029116213322,0.544414639472961,-0.833756327629089,-0.0919948890805244,0.675505995750427,-0.736851692199707,0.0272250920534134,0.0498231090605259,0.995656132698059,-0.0786551833152771,-0.102993331849575,0.992808520793915,-0.0610210038721561,-0.0957695469260216,0.995313048362732,0.0134250642731786,-0.255695044994354,0.966753959655762,-0.00263145379722118,0.938831150531769,-0.343758851289749,0.020640192553401,0.92705500125885,-0.359719961881638,0.105691209435463,0.850230097770691,-0.519752204418182,0.0834643766283989,0.9338019490242,-0.357631385326386,-0.0106667410582304,0.401383131742477,-0.885704636573792,-0.233278751373291,0.263769805431366,-0.485637575387955,-0.833415627479553,0.152817025780678,-0.0859680771827698,-0.984508275985718,0.9338019490242,-0.357631385326386,-0.0106667410582304,-0.688895523548126,0.638645768165588,-0.342862367630005,0.130870252847672,0.117649160325527,-0.984394013881683,0.113092802464962,0.101327694952488,-0.988404154777527,-0.982665836811066,0.053369015455246,-0.177537575364113,
- 0.130870252847672,0.117649160325527,-0.984394013881683,0.263769805431366,-0.485637575387955,-0.833415627479553,0.173473432660103,0.130838930606842,-0.976108610630035,0.113092802464962,0.101327694952488,-0.988404154777527,0.401383131742477,-0.885704636573792,-0.233278751373291,0.122314676642418,-0.746195316314697,0.654394149780273,0.999051749706268,0.0230060890316963,0.0369627438485622,-0.107350565493107,-0.0949965789914131,0.989672422409058,-0.174141481518745,-0.0633088275790215,0.982683479785919,-0.231066137552261,-0.45139017701149,0.861890554428101,0.122314676642418,-0.746195316314697,0.654394149780273,-0.946778476238251,0.235140547156334,-0.219816923141479,0.0903557017445564,-0.111137121915817,-0.98968905210495,0.130870252847672,0.117649160325527,-0.984394013881683,-0.688895523548126,0.638645768165588,-0.342862367630005,-0.829316318035126,0.543046057224274,-0.131663709878922,-0.946778476238251,0.235140547156334,-0.219816923141479,-0.688895523548126,0.638645768165588,-0.342862367630005,0.263769805431366,-0.485637575387955,-0.833415627479553,0.12312026321888,-0.112926922738552,-0.985945701599121,0.152817025780678,-0.0859680771827698,-0.984508275985718,-0.231066137552261,-0.45139017701149,0.861890554428101,-0.967846155166626,0.215235635638237,-0.130182355642319,-0.966730833053589,-0.2243542522192,0.122868485748768,0.850230097770691,-0.519752204418182,0.0834643766283989,-0.107350565493107,-0.0949965789914131,0.989672422409058,0.122314676642418,-0.746195316314697,0.654394149780273,0.401383131742477,-0.885704636573792,-0.233278751373291,0.385140806436539,-0.922857642173767,-0.000620364269707352,0.850230097770691,-0.519752204418182,0.0834643766283989,0.122314676642418,-0.746195316314697,0.654394149780273,0.9338019490242,-0.357631385326386,-0.0106667410582304,0.152817025780678,-0.0859680771827698,-0.984508275985718,0.156085923314095,-0.00897165294736624,-0.987702667713165,0.938831150531769,-0.343758851289749,0.020640192553401,0.999051749706268,0.0230060890316963,0.0369627438485622,0.173473432660103,0.130838930606842,-0.976108610630035,
- 0.263769805431366,-0.485637575387955,-0.833415627479553,0.401383131742477,-0.885704636573792,-0.233278751373291,-0.981640458106995,0.068126767873764,-0.17815950512886,0.107582911849022,0.0385732017457485,-0.993447542190552,0.0941278487443924,-0.0272532273083925,-0.995186984539032,-0.980047464370728,0.0897882506251335,-0.177327483892441,0.107582911849022,0.0385732017457485,-0.993447542190552,0.164506003260612,0.0354909002780914,-0.985737383365631,0.168818309903145,-0.0380836427211761,-0.984911143779755,0.0941278487443924,-0.0272532273083925,-0.995186984539032,0.989480316638947,-0.0412657558917999,0.138657465577126,-0.0904091820120811,-0.00472234096378088,0.995893537998199,-0.0788751691579819,-0.0460830442607403,0.995818793773651,0.988030016422272,-0.097923755645752,0.119196273386478,0.996923327445984,-0.0400061123073101,0.0674049779772758,0.989480316638947,-0.0412657558917999,0.138657465577126,0.988030016422272,-0.097923755645752,0.119196273386478,0.99810391664505,-0.0385028123855591,0.0480209141969681,-0.869452893733978,0.488986730575562,-0.0703117325901985,-0.861777544021606,0.476677149534225,-0.173546776175499,-0.920768558979034,0.340191721916199,-0.190931305289268,-0.931461036205292,0.34467402100563,-0.116533398628235,-0.829316318035126,0.543046057224274,-0.131663709878922,-0.688895523548126,0.638645768165588,-0.342862367630005,-0.982665836811066,0.053369015455246,-0.177537575364113,-0.992724239826202,0.067940890789032,-0.0994116142392159,-0.981640458106995,0.068126767873764,-0.17815950512886,-0.980047464370728,0.0897882506251335,-0.177327483892441,-0.985170781612396,0.0916066095232964,-0.145074814558029,-0.991974830627441,0.0699437782168388,-0.105326645076275,-0.154507666826248,-0.00146530754864216,0.987990498542786,-0.992724239826202,0.067940890789032,-0.0994116142392159,-0.991974830627441,0.0699437782168388,-0.105326645076275,-0.161441966891289,-0.0390043742954731,0.986111104488373,-0.169293642044067,0.0420321710407734,0.984668910503387,-0.113279365003109,0.0567958503961563,0.991938591003418,-0.231066137552261,-0.45139017701149,0.861890554428101,
- 0.122314676642418,-0.746195316314697,0.654394149780273,-0.113279365003109,0.0567958503961563,0.991938591003418,-0.0927500352263451,0.0341118723154068,0.995104908943176,-0.231066137552261,-0.45139017701149,0.861890554428101,-0.966730833053589,-0.2243542522192,0.122868485748768,-0.817198753356934,0.576125681400299,0.0162959154695272,0.168818309903145,-0.0380836427211761,-0.984911143779755,0.164506003260612,0.0354909002780914,-0.985737383365631,0.996923327445984,-0.0400061123073101,0.0674049779772758,0.99810391664505,-0.0385028123855591,0.0480209141969681,0.9338019490242,-0.357631385326386,-0.0106667410582304,0.385140806436539,-0.922857642173767,-0.000620364269707352,0.401383131742477,-0.885704636573792,-0.233278751373291,0.0903557017445564,-0.111137121915817,-0.98968905210495,0.12312026321888,-0.112926922738552,-0.985945701599121,0.263769805431366,-0.485637575387955,-0.833415627479553,0.130870252847672,0.117649160325527,-0.984394013881683,0.9338019490242,-0.357631385326386,-0.0106667410582304,0.850230097770691,-0.519752204418182,0.0834643766283989,0.385140806436539,-0.922857642173767,-0.000620364269707352,-0.231066137552261,-0.45139017701149,0.861890554428101,-0.817198753356934,0.576125681400299,0.0162959154695272,-0.994433641433716,0.0656516626477242,-0.0824106857180595,-0.169293642044067,0.0420321710407734,0.984668910503387,-0.967846155166626,0.215235635638237,-0.130182355642319,-0.829316318035126,0.543046057224274,-0.131663709878922,-0.966730833053589,-0.2243542522192,0.122868485748768,0.122314676642418,-0.746195316314697,0.654394149780273,-0.231066137552261,-0.45139017701149,0.861890554428101,-0.113279365003109,0.0567958503961563,0.991938591003418,-0.0904091820120811,-0.00472234096378088,0.995893537998199,-0.154507666826248,-0.00146530754864216,0.987990498542786,-0.161441966891289,-0.0390043742954731,0.986111104488373,-0.0788751691579819,-0.0460830442607403,0.995818793773651,-0.967846155166626,0.215235635638237,-0.130182355642319,-0.946778476238251,0.235140547156334,-0.219816923141479,-0.829316318035126,0.543046057224274,-0.131663709878922,
- -0.829316318035126,0.543046057224274,-0.131663709878922,-0.982665836811066,0.053369015455246,-0.177537575364113,-0.817198753356934,0.576125681400299,0.0162959154695272,-0.829316318035126,0.543046057224274,-0.131663709878922,-0.817198753356934,0.576125681400299,0.0162959154695272,-0.966730833053589,-0.2243542522192,0.122868485748768,-0.174141481518745,-0.0633088275790215,0.982683479785919,-0.967846155166626,0.215235635638237,-0.130182355642319,-0.231066137552261,-0.45139017701149,0.861890554428101,0.999051749706268,0.0230060890316963,0.0369627438485622,0.122314676642418,-0.746195316314697,0.654394149780273,0.989954948425293,-0.0188862681388855,0.140115648508072,0.989954948425293,-0.0188862681388855,0.140115648508072,-0.0927500352263451,0.0341118723154068,0.995104908943176,-0.0904091820120811,-0.00472234096378088,0.995893537998199,0.989480316638947,-0.0412657558917999,0.138657465577126,-0.0927500352263451,0.0341118723154068,0.995104908943176,-0.113279365003109,0.0567958503961563,0.991938591003418,-0.169293642044067,0.0420321710407734,0.984668910503387,-0.154507666826248,-0.00146530754864216,0.987990498542786,-0.0904091820120811,-0.00472234096378088,0.995893537998199,-0.169293642044067,0.0420321710407734,0.984668910503387,-0.994433641433716,0.0656516626477242,-0.0824106857180595,-0.992724239826202,0.067940890789032,-0.0994116142392159,-0.154507666826248,-0.00146530754864216,0.987990498542786,-0.982665836811066,0.053369015455246,-0.177537575364113,-0.994433641433716,0.0656516626477242,-0.0824106857180595,-0.817198753356934,0.576125681400299,0.0162959154695272,-0.982665836811066,0.053369015455246,-0.177537575364113,0.113092802464962,0.101327694952488,-0.988404154777527,0.107582911849022,0.0385732017457485,-0.993447542190552,-0.981640458106995,0.068126767873764,-0.17815950512886,0.113092802464962,0.101327694952488,-0.988404154777527,0.173473432660103,0.130838930606842,-0.976108610630035,0.199898704886436,0.105809517204762,-0.97408664226532,0.164506003260612,0.0354909002780914,-0.985737383365631,0.107582911849022,0.0385732017457485,-0.993447542190552,
- 0.996923327445984,-0.0400061123073101,0.0674049779772758,0.164506003260612,0.0354909002780914,-0.985737383365631,0.199898704886436,0.105809517204762,-0.97408664226532,0.999908566474915,-0.00314232287928462,0.0131550030782819,0.110800333321095,0.0339540503919125,0.993262529373169,0.0678782016038895,0.0729740485548973,0.995021283626556,-0.00382971670478582,0.00267565180547535,0.999989151954651,0.0576766133308411,-0.0255521554499865,0.998008251190186,0.54746550321579,-0.834606528282166,-0.0609378106892109,-0.709150433540344,-0.698139488697052,0.0985234305262566,-0.735962867736816,-0.676992952823639,0.00626225071027875,0.706653475761414,0.699924528598785,-0.103665828704834,-0.0455582924187183,-0.0370196290314198,-0.998275578022003,-0.0785403400659561,0.0111564584076405,-0.996848523616791,0.154962360858917,0.00934535264968872,0.987876176834106,0.0538769401609898,-0.0208743289113045,0.998329401016235,0.563150227069855,-0.82616800069809,-0.0175583176314831,-0.709150433540344,-0.698139488697052,0.0985234305262566,0.54746550321579,-0.834606528282166,-0.0609378106892109,0.545577466487885,-0.836012184619904,-0.0585566237568855,0.560702264308929,-0.827294886112213,-0.0345867723226547,0.563150227069855,-0.82616800069809,-0.0175583176314831,0.0538769401609898,-0.0208743289113045,0.998329401016235,0.154962360858917,0.00934535264968872,0.987876176834106,0.719995856285095,0.69318687915802,-0.0331322439014912,0.636388421058655,0.771139621734619,-0.0187999363988638,0.110800333321095,0.0339540503919125,0.993262529373169,0.154962360858917,0.00934535264968872,0.987876176834106,0.563150227069855,-0.82616800069809,-0.0175583176314831,0.561542570590973,-0.825568974018097,-0.0557291507720947,0.719995856285095,0.69318687915802,-0.0331322439014912,0.560702264308929,-0.827294886112213,-0.0345867723226547,-0.709150433540344,-0.698139488697052,0.0985234305262566,0.545577466487885,-0.836012184619904,-0.0585566237568855,0.589090347290039,-0.805301308631897,-0.0668022856116295,0.557824730873108,-0.82464462518692,-0.093769833445549,0.706653475761414,0.699924528598785,-0.103665828704834,
- -0.709150433540344,-0.698139488697052,0.0985234305262566,0.0538769401609898,-0.0208743289113045,0.998329401016235,0.0576766133308411,-0.0255521554499865,0.998008251190186,-0.670947909355164,-0.73522812128067,0.0962731018662453,0.0538769401609898,-0.0208743289113045,0.998329401016235,-0.709150433540344,-0.698139488697052,0.0985234305262566,0.560702264308929,-0.827294886112213,-0.0345867723226547,0.628722310066223,0.772063195705414,-0.0928795784711838,-0.0785403400659561,0.0111564584076405,-0.996848523616791,-0.129765272140503,0.058680284768343,-0.989806890487671,0.544012904167175,0.833475470542908,-0.096791610121727,0.719995856285095,0.69318687915802,-0.0331322439014912,0.561542570590973,-0.825568974018097,-0.0557291507720947,0.574016034603119,-0.816513001918793,-0.0617433860898018,0.574016034603119,-0.816513001918793,-0.0617433860898018,0.589090347290039,-0.805301308631897,-0.0668022856116295,0.719995856285095,0.69318687915802,-0.0331322439014912,0.636388421058655,0.771139621734619,-0.0187999363988638,0.628722310066223,0.772063195705414,-0.0928795784711838,0.544012904167175,0.833475470542908,-0.096791610121727,0.514672577381134,0.857156753540039,-0.0198585037142038,0.0538769401609898,-0.0208743289113045,0.998329401016235,0.154962360858917,0.00934535264968872,0.987876176834106,0.110800333321095,0.0339540503919125,0.993262529373169,0.0576766133308411,-0.0255521554499865,0.998008251190186,-0.102595813572407,-0.0188769530504942,-0.99454391002655,-0.122712858021259,0.00133822450879961,-0.992441296577454,-0.129765272140503,0.058680284768343,-0.989806890487671,-0.0785403400659561,0.0111564584076405,-0.996848523616791,0.110800333321095,0.0339540503919125,0.993262529373169,0.636388421058655,0.771139621734619,-0.0187999363988638,0.514672577381134,0.857156753540039,-0.0198585037142038,0.0678782016038895,0.0729740485548973,0.995021283626556,0.0576766133308411,-0.0255521554499865,0.998008251190186,-0.00382971670478582,0.00267565180547535,0.999989151954651,-0.618268847465515,-0.781627893447876,0.0824713706970215,-0.670947909355164,-0.73522812128067,0.0962731018662453,
- -0.102595813572407,-0.0188769530504942,-0.99454391002655,-0.078608475625515,-0.0588004924356937,-0.995169937610626,-0.735962867736816,-0.676992952823639,0.00626225071027875,-0.673043727874756,-0.739578247070313,0.00600500917062163,0.706653475761414,0.699924528598785,-0.103665828704834,-0.0785403400659561,0.0111564584076405,-0.996848523616791,0.628722310066223,0.772063195705414,-0.0928795784711838,0.719995856285095,0.69318687915802,-0.0331322439014912,0.589090347290039,-0.805301308631897,-0.0668022856116295,0.706653475761414,0.699924528598785,-0.103665828704834,-0.673043727874756,-0.739578247070313,0.00600500917062163,-0.670947909355164,-0.73522812128067,0.0962731018662453,-0.618268847465515,-0.781627893447876,0.0824713706970215,-0.628061294555664,-0.77810126543045,0.00986588560044765,-0.531638920307159,-0.828955292701721,-0.173761904239655,-0.181996256113052,-0.0159518476575613,-0.983169853687286,-0.628061294555664,-0.77810126543045,0.00986588560044765,-0.00382971670478582,0.00267565180547535,0.999989151954651,0.0678782016038895,0.0729740485548973,0.995021283626556,-0.00616692332550883,0.386172920465469,0.922405779361725,-0.260527610778809,-0.0108850952237844,0.965404987335205,0.544012904167175,0.833475470542908,-0.096791610121727,-0.129765272140503,0.058680284768343,-0.989806890487671,-0.299903512001038,0.213175311684608,-0.929846346378326,-0.00393026601523161,0.998307883739471,-0.0580159090459347,-0.0083073703572154,0.999960899353027,-0.00305319204926491,0.544012904167175,0.833475470542908,-0.096791610121727,-0.00393026601523161,0.998307883739471,-0.0580159090459347,-0.618268847465515,-0.781627893447876,0.0824713706970215,-0.00382971670478582,0.00267565180547535,0.999989151954651,-0.260527610778809,-0.0108850952237844,0.965404987335205,-0.385580807924271,-0.922331929206848,0.0251253880560398,-0.618268847465515,-0.781627893447876,0.0824713706970215,-0.260527610778809,-0.0108850952237844,0.965404987335205,-0.628061294555664,-0.77810126543045,0.00986588560044765,-0.122712858021259,0.00133822450879961,-0.992441296577454,
- -0.102595813572407,-0.0188769530504942,-0.99454391002655,-0.673043727874756,-0.739578247070313,0.00600500917062163,0.719995856285095,0.69318687915802,-0.0331322439014912,0.706653475761414,0.699924528598785,-0.103665828704834,0.628722310066223,0.772063195705414,-0.0928795784711838,0.636388421058655,0.771139621734619,-0.0187999363988638,-0.628061294555664,-0.77810126543045,0.00986588560044765,-0.385580807924271,-0.922331929206848,0.0251253880560398,-0.531638920307159,-0.828955292701721,-0.173761904239655,-0.129765272140503,0.058680284768343,-0.989806890487671,-0.122712858021259,0.00133822450879961,-0.992441296577454,-0.181996256113052,-0.0159518476575613,-0.983169853687286,-0.299903512001038,0.213175311684608,-0.929846346378326,-0.628061294555664,-0.77810126543045,0.00986588560044765,-0.618268847465515,-0.781627893447876,0.0824713706970215,-0.385580807924271,-0.922331929206848,0.0251253880560398,0.514672577381134,0.857156753540039,-0.0198585037142038,-0.0083073703572154,0.999960899353027,-0.00305319204926491,-0.00616692332550883,0.386172920465469,0.922405779361725,0.514672577381134,0.857156753540039,-0.0198585037142038,0.544012904167175,0.833475470542908,-0.096791610121727,-0.0083073703572154,0.999960899353027,-0.00305319204926491,0.0678782016038895,0.0729740485548973,0.995021283626556,0.514672577381134,0.857156753540039,-0.0198585037142038,-0.00616692332550883,0.386172920465469,0.922405779361725,-0.0455582924187183,-0.0370196290314198,-0.998275578022003,-0.078608475625515,-0.0588004924356937,-0.995169937610626,-0.102595813572407,-0.0188769530504942,-0.99454391002655,-0.0785403400659561,0.0111564584076405,-0.996848523616791,0.561542570590973,-0.825568974018097,-0.0557291507720947,0.563150227069855,-0.82616800069809,-0.0175583176314831,0.560702264308929,-0.827294886112213,-0.0345867723226547,0.545577466487885,-0.836012184619904,-0.0585566237568855,0.54746550321579,-0.834606528282166,-0.0609378106892109,0.556771874427795,-0.825371980667114,-0.0936283245682716,0.557824730873108,-0.82464462518692,-0.093769833445549,0.589090347290039,-0.805301308631897,-0.0668022856116295,
- 0.574016034603119,-0.816513001918793,-0.0617433860898018,-0.735962867736816,-0.676992952823639,0.00626225071027875,-0.078608475625515,-0.0588004924356937,-0.995169937610626,0.556771874427795,-0.825371980667114,-0.0936283245682716,0.54746550321579,-0.834606528282166,-0.0609378106892109,0.557824730873108,-0.82464462518692,-0.093769833445549,-0.0455582924187183,-0.0370196290314198,-0.998275578022003,0.706653475761414,0.699924528598785,-0.103665828704834,0.557824730873108,-0.82464462518692,-0.093769833445549,0.556771874427795,-0.825371980667114,-0.0936283245682716,-0.078608475625515,-0.0588004924356937,-0.995169937610626,-0.0455582924187183,-0.0370196290314198,-0.998275578022003,0.382745683193207,0.922701597213745,-0.0461249388754368,-0.00393026601523161,0.998307883739471,-0.0580159090459347,-0.299903512001038,0.213175311684608,-0.929846346378326,-0.374691814184189,0.927148461341858,-0.00136994058266282,-0.251981139183044,0.966460347175598,-0.0495977662503719,0.0392500087618828,0.897452414035797,0.439361453056335,-0.255695044994354,0.966753959655762,-0.00263145379722118,-0.32693213224411,0.943090200424194,0.0607966929674149,0.0795431733131409,0.995790302753448,0.0455471910536289,0.118472926318645,0.991923391819,-0.0453007109463215,-0.0801486968994141,0.0278848391026258,0.996392846107483,-0.0083005391061306,0.0313853733241558,0.999472856521606,0.0795431733131409,0.995790302753448,0.0455471910536289,-0.32693213224411,0.943090200424194,0.0607966929674149,-0.0144461300224066,-0.0286561772227287,0.999484956264496,-0.0083005391061306,0.0313853733241558,0.999472856521606,-0.0801486968994141,0.0278848391026258,0.996392846107483,0.122314676642418,-0.746195316314697,0.654394149780273,-0.0927500352263451,0.0341118723154068,0.995104908943176,0.989954948425293,-0.0188862681388855,0.140115648508072,0.999051749706268,0.0230060890316963,0.0369627438485622,0.989954948425293,-0.0188862681388855,0.140115648508072,0.989480316638947,-0.0412657558917999,0.138657465577126,0.996923327445984,-0.0400061123073101,0.0674049779772758,0.999908566474915,-0.00314232287928462,0.0131550030782819,
- 0.294414669275284,-0.955260992050171,-0.028222793713212,0.544414639472961,-0.833756327629089,-0.0919948890805244,0.29570260643959,-0.954559326171875,0.0371029116213322,0.0142454598098993,-0.028041260316968,-0.999505221843719,0.00890170410275459,0.0708959251642227,-0.997443974018097,0.145113959908485,-0.0310336723923683,-0.988928139209747,0.943786084651947,-0.329171895980835,0.0302279926836491,0.928814172744751,-0.355500519275665,0.104516126215458,0.92705500125885,-0.359719961881638,0.105691209435463,0.938831150531769,-0.343758851289749,0.020640192553401,0.156085923314095,-0.00897165294736624,-0.987702667713165,0.166400417685509,-0.00391554646193981,-0.986050426959991,0.943786084651947,-0.329171895980835,0.0302279926836491,0.938831150531769,-0.343758851289749,0.020640192553401,0.0947142615914345,0.0139853321015835,-0.995406270027161,0.108888328075409,0.0207404661923647,-0.993837594985962,0.166400417685509,-0.00391554646193981,-0.986050426959991,0.156085923314095,-0.00897165294736624,-0.987702667713165,-0.992724239826202,0.067940890789032,-0.0994116142392159,-0.994433641433716,0.0656516626477242,-0.0824106857180595,-0.982665836811066,0.053369015455246,-0.177537575364113,-0.981640458106995,0.068126767873764,-0.17815950512886,-0.735962867736816,-0.676992952823639,0.00626225071027875,-0.709150433540344,-0.698139488697052,0.0985234305262566,-0.670947909355164,-0.73522812128067,0.0962731018662453,-0.673043727874756,-0.739578247070313,0.00600500917062163,-0.427091956138611,-0.90417754650116,-0.00742900324985385,0.16302864253521,-0.981177926063538,-0.103496827185154,0.231530636548996,-0.970898747444153,0.061230331659317,-0.628061294555664,-0.77810126543045,0.00986588560044765,-0.181996256113052,-0.0159518476575613,-0.983169853687286,-0.122712858021259,0.00133822450879961,-0.992441296577454,-0.930990874767303,-0.341267347335815,-0.129586592316628,-0.896359622478485,0.40896263718605,-0.171140134334564,-0.92754065990448,0.367230296134949,-0.069355808198452,-0.922695636749268,-0.381919980049133,-0.0526308119297028,-0.92754065990448,0.367230296134949,-0.069355808198452,
- -0.717347323894501,0.301236808300018,0.62822687625885,-0.922695636749268,-0.381919980049133,-0.0526308119297028,-0.896359622478485,0.40896263718605,-0.171140134334564,-0.0198166500777006,-0.130159482359886,-0.991295039653778,-0.861777544021606,0.476677149534225,-0.173546776175499,0.982060611248016,-0.0432372130453587,-0.183541148900986,0.976568281650543,-0.0654558762907982,-0.205012127757072,0.991866290569305,-0.0659544914960861,-0.108863443136215,0.993482887744904,-0.0467821657657623,-0.103938162326813,0.990728974342346,0.0602902509272099,-0.121742151677608,0.147246643900871,0.0288464110344648,0.988679051399231,0.143530577421188,0.0197025518864393,0.989449799060822,0.992474317550659,0.00473860977217555,-0.122360587120056,-0.998954176902771,0.0335981771349907,0.0310098584741354,-0.996085643768311,-0.0434609577059746,0.0769714415073395,-0.989994525909424,-0.0115685574710369,0.140630587935448,-0.552849411964417,0.83183741569519,0.0490297935903072,-0.492085874080658,0.846221208572388,0.20435556769371,0.852492868900299,0.518536627292633,-0.0661488994956017,0.150467187166214,0.0118557950481772,0.988543927669525,0.155995875597,0.0507745966315269,0.986451804637909,0.0834615975618362,0.104836829006672,0.990981042385101,0.0988222733139992,0.0113367568701506,0.995040535926819,-0.897674679756165,0.439268231391907,-0.0349797643721104,-0.99365907907486,0.00738857267424464,0.112191952764988,-0.999094426631927,-0.0031329330522567,0.0424337387084961,-0.0755981802940369,0.000112847214040812,-0.997138261795044,-0.175972104072571,-0.0483759604394436,-0.983205795288086,-0.0286753755062819,0.0403182134032249,-0.9987753033638,0.838539898395538,-0.479950606822968,-0.257872462272644,0.986304223537445,-0.0593321546912193,-0.153894394636154,0.665087282657623,-0.742966830730438,-0.0752282664179802,-0.992805659770966,-0.118284188210964,0.0185972806066275,-0.981680572032928,0.129626050591469,-0.139642804861069,-0.993838787078857,0.0625435709953308,0.0915024057030678,-0.141817599534988,0.0336800403892994,-0.989319682121277,-0.113137878477573,0.0312495082616806,-0.993087768554688,
- -0.109586499631405,-0.0100445589050651,-0.993926465511322,-0.161957755684853,-0.0127196433022618,-0.986715734004974,0.184663072228432,-0.00364860892295837,0.982795178890228,0.129495248198509,0.042776845395565,0.990656912326813,0.0979543477296829,-0.00779554573819041,0.995160460472107,0.100285723805428,-0.026306452229619,0.994610786437988,0.15363247692585,-0.023812772706151,0.987841129302979,-0.997030079364777,-0.0170613583177328,0.0751000121235847,-0.991808593273163,-0.0172016657888889,0.126569539308548,-0.988881468772888,0.056288231164217,0.137641355395317,-0.995948672294617,0.0606496259570122,0.0663930177688599,0.988912105560303,-0.0118585098534822,-0.148028165102005,-0.131807580590248,-0.0127251939848065,-0.991193652153015,-0.0755981802940369,0.000112847214040812,-0.997138261795044,-0.98255455493927,-0.185399755835533,-0.0146051850169897,-0.995948672294617,0.0606496259570122,0.0663930177688599,-0.988881468772888,0.056288231164217,0.137641355395317,0.019028764218092,0.0468499250710011,-0.998720645904541,-0.0755452737212181,-0.217073947191238,-0.973227500915527,0.980681896209717,0.0260413829237223,-0.193868041038513,0.148559853434563,-0.0213314313441515,0.988673388957977,0.146528393030167,-0.000418473879108205,0.989206373691559,0.0909970179200172,0.00268585188314319,0.995847523212433,0.0912513956427574,-0.0409696251153946,0.994984745979309,-0.996085643768311,-0.0434609577059746,0.0769714415073395,-0.979599058628082,-0.146496683359146,0.137565776705742,-0.989994525909424,-0.0115685574710369,0.140630587935448,-0.897674679756165,0.439268231391907,-0.0349797643721104,-0.984331965446472,0.175717577338219,0.0146262207999825,-0.985636055469513,0.134409382939339,0.102253392338753,-0.170753061771393,0.16884183883667,-0.970739841461182,-0.0833504870533943,-0.0363743714988232,-0.99585622549057,-0.202437147498131,0.0876704379916191,-0.975363075733185,0.992698788642883,-0.0436161383986473,-0.112457916140556,0.993482887744904,-0.0467821657657623,-0.103938162326813,0.15363247692585,-0.023812772706151,0.987841129302979,-0.989708483219147,0.00919400434941053,0.142802432179451,
- -0.998312175273895,0.0580652207136154,-0.00113347207661718,-0.997199475765228,0.0211126338690519,0.0717460811138153,-0.992011964321136,0.0203790739178658,0.124486573040485,-0.998954176902771,0.0335981771349907,0.0310098584741354,-0.992807507514954,-0.119542017579079,-0.00654111104086041,-0.996085643768311,-0.0434609577059746,0.0769714415073395,-0.153739050030708,0.136477008461952,-0.978641092777252,-0.138790190219879,0.0190414637327194,-0.990138709545136,-0.998312175273895,0.0580652207136154,-0.00113347207661718,-0.984027624130249,-0.115143030881882,0.135762691497803,0.103989325463772,-0.00063582940492779,0.994578182697296,-0.991808593273163,-0.0172016657888889,0.126569539308548,-0.0553130432963371,-0.913185656070709,-0.403772801160812,-0.169376939535141,-0.00766265671700239,-0.985521554946899,-0.185407012701035,-0.219139516353607,-0.957915544509888,-0.540066301822662,-0.835693955421448,-0.0997186079621315,-0.85348916053772,0.232287183403969,-0.466475188732147,-0.989823758602142,-0.113108359277248,0.0863451510667801,-0.216275170445442,0.0224527325481176,-0.976074278354645,-0.0668318495154381,0.00151623564306647,-0.997763156890869,-0.103492520749569,0.15565188229084,-0.98237556219101,-0.691861748695374,0.215029641985893,0.689267337322235,0.0979543477296829,-0.00779554573819041,0.995160460472107,0.0067262826487422,-0.118611559271812,0.992917954921722,-0.190926730632782,-0.00957306195050478,-0.981557607650757,-0.112090535461903,-0.00684503745287657,-0.993674397468567,-0.0833504870533943,-0.0363743714988232,-0.99585622549057,-0.170753061771393,0.16884183883667,-0.970739841461182,-0.597744703292847,0.796442985534668,-0.0915413722395897,-0.62430340051651,0.781175076961517,-0.00328667205758393,-0.596948683261871,0.794233441352844,0.113337948918343,-0.141817599534988,0.0336800403892994,-0.989319682121277,-0.216275170445442,0.0224527325481176,-0.976074278354645,-0.113137878477573,0.0312495082616806,-0.993087768554688,-0.989994525909424,-0.0115685574710369,0.140630587935448,-0.979599058628082,-0.146496683359146,0.137565776705742,
- -0.689367115497589,-0.35289078950882,0.632646083831787,0.988912105560303,-0.0118585098534822,-0.148028165102005,-0.0755981802940369,0.000112847214040812,-0.997138261795044,0.982060611248016,-0.0432372130453587,-0.183541148900986,-0.202437147498131,0.0876704379916191,-0.975363075733185,-0.0833504870533943,-0.0363743714988232,-0.99585622549057,-0.0286753755062819,0.0403182134032249,-0.9987753033638,0.0816313102841377,0.0484473630785942,0.995484352111816,0.145777970552444,0.0258966274559498,0.988978326320648,0.092632845044136,0.0533498860895634,0.994269967079163,0.0803227946162224,-0.103281110525131,0.991403698921204,-0.325643628835678,-0.0403248257935047,0.944632291793823,0.092632845044136,0.0533498860895634,0.994269967079163,-0.552849411964417,0.83183741569519,0.0490297935903072,-0.597744703292847,0.796442985534668,-0.0915413722395897,-0.596948683261871,0.794233441352844,0.113337948918343,-0.552849411964417,0.83183741569519,0.0490297935903072,-0.517712950706482,0.835744559764862,-0.183041617274284,-0.597744703292847,0.796442985534668,-0.0915413722395897,-0.0964406058192253,0.0456138998270035,-0.994293034076691,-0.159204661846161,0.019197154790163,-0.987058877944946,-0.597744703292847,0.796442985534668,-0.0915413722395897,-0.989823758602142,-0.113108359277248,0.0863451510667801,-0.989708483219147,0.00919400434941053,0.142802432179451,-0.979599058628082,-0.146496683359146,0.137565776705742,0.092632845044136,0.0533498860895634,0.994269967079163,-0.325643628835678,-0.0403248257935047,0.944632291793823,0.0816313102841377,0.0484473630785942,0.995484352111816,0.986876785755157,0.0612752288579941,-0.149397373199463,0.988912105560303,-0.0118585098534822,-0.148028165102005,0.982060611248016,-0.0432372130453587,-0.183541148900986,0.993482887744904,-0.0467821657657623,-0.103938162326813,0.992698788642883,-0.0436161383986473,-0.112457916140556,0.15363247692585,-0.023812772706151,0.987841129302979,0.993482887744904,-0.0467821657657623,-0.103938162326813,0.991866290569305,-0.0659544914960861,-0.108863443136215,0.184663072228432,-0.00364860892295837,0.982795178890228,
- 0.991866290569305,-0.0659544914960861,-0.108863443136215,0.659419417381287,-0.736415684223175,-0.151188403367996,0.817324221134186,-0.573529899120331,-0.0551771223545074,0.988577544689178,-0.0265336409211159,-0.148359075188637,0.972930014133453,-0.0121871568262577,-0.230778321623802,0.975195407867432,-0.0327726267278194,-0.218905910849571,0.988988041877747,-0.0376383401453495,-0.143129229545593,0.163172706961632,-0.0267749913036823,0.986234128475189,0.101021282374859,-0.0060360711067915,0.994866013526917,0.210788309574127,-0.126955434679985,0.969252645969391,0.152834132313728,-0.00327759538777173,0.988246500492096,0.391397416591644,-0.488763302564621,0.779691338539124,0.986991763114929,-0.102691143751144,-0.123700581490994,-0.85348916053772,0.232287183403969,-0.466475188732147,-0.998312175273895,0.0580652207136154,-0.00113347207661718,-0.989823758602142,-0.113108359277248,0.0863451510667801,0.15363247692585,-0.023812772706151,0.987841129302979,0.132898703217506,-0.0739191472530365,0.988369345664978,0.992698788642883,-0.0436161383986473,-0.112457916140556,0.596258342266083,0.767705082893372,0.234744414687157,0.132898703217506,-0.0739191472530365,0.988369345664978,0.092632845044136,0.0533498860895634,0.994269967079163,-0.99365907907486,0.00738857267424464,0.112191952764988,-0.897674679756165,0.439268231391907,-0.0349797643721104,-0.839586853981018,0.533084630966187,0.10447271168232,0.0067262826487422,-0.118611559271812,0.992917954921722,0.210788309574127,-0.126955434679985,0.969252645969391,0.101021282374859,-0.0060360711067915,0.994866013526917,0.596258342266083,0.767705082893372,0.234744414687157,0.145777970552444,0.0258966274559498,0.988978326320648,0.985068380832672,0.0921402797102928,-0.145431861281395,0.163172706961632,-0.0267749913036823,0.986234128475189,0.991563439369202,0.005448033567518,-0.129507973790169,0.988653779029846,0.0457864031195641,-0.143064111471176,0.150467187166214,0.0118557950481772,0.988543927669525,0.163172706961632,-0.0267749913036823,0.986234128475189,0.210788309574127,-0.126955434679985,0.969252645969391,
- 0.625511825084686,-0.652529716491699,0.427714586257935,0.991563439369202,0.005448033567518,-0.129507973790169,0.210788309574127,-0.126955434679985,0.969252645969391,0.991866290569305,-0.0659544914960861,-0.108863443136215,0.625511825084686,-0.652529716491699,0.427714586257935,-0.141817599534988,0.0336800403892994,-0.989319682121277,-0.161957755684853,-0.0127196433022618,-0.986715734004974,-0.435624927282333,0.190212741494179,-0.879801154136658,-0.141817599534988,0.0336800403892994,-0.989319682121277,-0.435624927282333,0.190212741494179,-0.879801154136658,-0.216275170445442,0.0224527325481176,-0.976074278354645,-0.0286753755062819,0.0403182134032249,-0.9987753033638,-0.175972104072571,-0.0483759604394436,-0.983205795288086,-0.202437147498131,0.0876704379916191,-0.975363075733185,-0.985636055469513,0.134409382939339,0.102253392338753,-0.984331965446472,0.175717577338219,0.0146262207999825,-0.996765792369843,0.0763253346085548,0.0251441840082407,-0.998954176902771,0.0335981771349907,0.0310098584741354,-0.0969053134322166,0.343556731939316,0.934118866920471,0.103989325463772,-0.00063582940492779,0.994578182697296,-0.984027624130249,-0.115143030881882,0.135762691497803,0.13500103354454,-0.0527548901736736,0.989440083503723,0.103989325463772,-0.00063582940492779,0.994578182697296,-0.0969053134322166,0.343556731939316,0.934118866920471,0.74176150560379,0.667524755001068,-0.0648116543889046,0.821086764335632,0.552615761756897,-0.142941951751709,0.988577544689178,-0.0265336409211159,-0.148359075188637,0.146528393030167,-0.000418473879108205,0.989206373691559,0.148559853434563,-0.0213314313441515,0.988673388957977,0.988577544689178,-0.0265336409211159,-0.148359075188637,0.988988041877747,-0.0376383401453495,-0.143129229545593,-0.839586853981018,0.533084630966187,0.10447271168232,-0.897674679756165,0.439268231391907,-0.0349797643721104,-0.985636055469513,0.134409382939339,0.102253392338753,0.0067262826487422,-0.118611559271812,0.992917954921722,-0.985636055469513,0.134409382939339,0.102253392338753,-0.691861748695374,0.215029641985893,0.689267337322235,
- 0.391397416591644,-0.488763302564621,0.779691338539124,0.665087282657623,-0.742966830730438,-0.0752282664179802,0.986304223537445,-0.0593321546912193,-0.153894394636154,0.986991763114929,-0.102691143751144,-0.123700581490994,0.986304223537445,-0.0593321546912193,-0.153894394636154,0.980662405490875,-0.00346446875482798,-0.195676177740097,0.977739036083221,9.26224529393949e-005,-0.209824606776237,0.992474317550659,0.00473860977217555,-0.122360587120056,0.986991763114929,-0.102691143751144,-0.123700581490994,-0.185407012701035,-0.219139516353607,-0.957915544509888,-0.169376939535141,-0.00766265671700239,-0.985521554946899,-0.0755452737212181,-0.217073947191238,-0.973227500915527,0.103989325463772,-0.00063582940492779,0.994578182697296,0.100318945944309,0.0186513084918261,0.994780480861664,-0.991808593273163,-0.0172016657888889,0.126569539308548,0.659419417381287,-0.736415684223175,-0.151188403367996,-0.0286753755062819,0.0403182134032249,-0.9987753033638,-0.0833504870533943,-0.0363743714988232,-0.99585622549057,-0.112090535461903,-0.00684503745287657,-0.993674397468567,0.977275848388672,-0.00651280349120498,-0.211871445178986,-0.0833504870533943,-0.0363743714988232,-0.99585622549057,-0.103492520749569,0.15565188229084,-0.98237556219101,-0.0668318495154381,0.00151623564306647,-0.997763156890869,0.972930014133453,-0.0121871568262577,-0.230778321623802,-0.103492520749569,0.15565188229084,-0.98237556219101,-0.113137878477573,0.0312495082616806,-0.993087768554688,-0.216275170445442,0.0224527325481176,-0.976074278354645,-0.0755452737212181,-0.217073947191238,-0.973227500915527,-0.131807580590248,-0.0127251939848065,-0.991193652153015,0.988912105560303,-0.0118585098534822,-0.148028165102005,-0.492085874080658,0.846221208572388,0.20435556769371,-0.552849411964417,0.83183741569519,0.0490297935903072,-0.596948683261871,0.794233441352844,0.113337948918343,-0.109586499631405,-0.0100445589050651,-0.993926465511322,0.977739036083221,9.26224529393949e-005,-0.209824606776237,0.980662405490875,-0.00346446875482798,-0.195676177740097,
- -0.0974060595035553,-0.065805546939373,-0.993066847324371,0.0599799416959286,0.00859976373612881,0.998162567615509,-0.492085874080658,0.846221208572388,0.20435556769371,-0.596948683261871,0.794233441352844,0.113337948918343,0.976568281650543,-0.0654558762907982,-0.205012127757072,-0.0286753755062819,0.0403182134032249,-0.9987753033638,0.659419417381287,-0.736415684223175,-0.151188403367996,0.991866290569305,-0.0659544914960861,-0.108863443136215,0.976568281650543,-0.0654558762907982,-0.205012127757072,0.659419417381287,-0.736415684223175,-0.151188403367996,-0.153739050030708,0.136477008461952,-0.978641092777252,-0.998312175273895,0.0580652207136154,-0.00113347207661718,-0.85348916053772,0.232287183403969,-0.466475188732147,-0.85348916053772,0.232287183403969,-0.466475188732147,-0.0553130432963371,-0.913185656070709,-0.403772801160812,-0.185407012701035,-0.219139516353607,-0.957915544509888,-0.161957755684853,-0.0127196433022618,-0.986715734004974,-0.177978977560997,-0.105909839272499,-0.978318214416504,-0.992805659770966,-0.118284188210964,0.0185972806066275,-0.161957755684853,-0.0127196433022618,-0.986715734004974,-0.992805659770966,-0.118284188210964,0.0185972806066275,-0.997030079364777,-0.0170613583177328,0.0751000121235847,0.089273676276207,-0.442887127399445,0.8921217918396,0.0912513956427574,-0.0409696251153946,0.994984745979309,-0.941552340984344,-0.309674113988876,0.132593557238579,-0.985636055469513,0.134409382939339,0.102253392338753,0.0067262826487422,-0.118611559271812,0.992917954921722,-0.839586853981018,0.533084630966187,0.10447271168232,0.0067262826487422,-0.118611559271812,0.992917954921722,-0.99365907907486,0.00738857267424464,0.112191952764988,-0.839586853981018,0.533084630966187,0.10447271168232,0.986304223537445,-0.0593321546912193,-0.153894394636154,0.838539898395538,-0.479950606822968,-0.257872462272644,0.980662405490875,-0.00346446875482798,-0.195676177740097,-0.85348916053772,0.232287183403969,-0.466475188732147,-0.185407012701035,-0.219139516353607,-0.957915544509888,-0.153739050030708,0.136477008461952,-0.978641092777252,
- 0.659419417381287,-0.736415684223175,-0.151188403367996,-0.0833504870533943,-0.0363743714988232,-0.99585622549057,0.977275848388672,-0.00651280349120498,-0.211871445178986,0.638172924518585,-0.757065236568451,-0.139955222606659,-0.985636055469513,0.134409382939339,0.102253392338753,-0.989994525909424,-0.0115685574710369,0.140630587935448,-0.691861748695374,0.215029641985893,0.689267337322235,-0.109586499631405,-0.0100445589050651,-0.993926465511322,-0.0974060595035553,-0.065805546939373,-0.993066847324371,-0.177978977560997,-0.105909839272499,-0.978318214416504,-0.161957755684853,-0.0127196433022618,-0.986715734004974,-0.138790190219879,0.0190414637327194,-0.990138709545136,-0.066355437040329,0.0407746247947216,-0.996962606906891,-0.0668318495154381,0.00151623564306647,-0.997763156890869,-0.99365907907486,0.00738857267424464,0.112191952764988,0.101021282374859,-0.0060360711067915,0.994866013526917,0.0988222733139992,0.0113367568701506,0.995040535926819,-0.993146121501923,0.0140269286930561,0.116035036742687,0.101021282374859,-0.0060360711067915,0.994866013526917,-0.99365907907486,0.00738857267424464,0.112191952764988,0.0067262826487422,-0.118611559271812,0.992917954921722,-0.157142832875252,-0.0178908910602331,-0.987413883209229,-0.175972104072571,-0.0483759604394436,-0.983205795288086,-0.0755981802940369,0.000112847214040812,-0.997138261795044,-0.984027624130249,-0.115143030881882,0.135762691497803,-0.993838787078857,0.0625435709953308,0.0915024057030678,-0.0969053134322166,0.343556731939316,0.934118866920471,-0.992805659770966,-0.118284188210964,0.0185972806066275,-0.993838787078857,0.0625435709953308,0.0915024057030678,-0.984027624130249,-0.115143030881882,0.135762691497803,0.100285723805428,-0.026306452229619,0.994610786437988,-0.989994525909424,-0.0115685574710369,0.140630587935448,-0.689367115497589,-0.35289078950882,0.632646083831787,0.980681896209717,0.0260413829237223,-0.193868041038513,-0.066355437040329,0.0407746247947216,-0.996962606906891,0.019028764218092,0.0468499250710011,-0.998720645904541,-0.996765792369843,0.0763253346085548,0.0251441840082407,
- -0.157142832875252,-0.0178908910602331,-0.987413883209229,-0.998954176902771,0.0335981771349907,0.0310098584741354,-0.157142832875252,-0.0178908910602331,-0.987413883209229,-0.992807507514954,-0.119542017579079,-0.00654111104086041,-0.998954176902771,0.0335981771349907,0.0310098584741354,-0.988881468772888,0.056288231164217,0.137641355395317,0.0912462547421455,0.0293538179248571,0.995395660400391,0.089273676276207,-0.442887127399445,0.8921217918396,-0.941552340984344,-0.309674113988876,0.132593557238579,-0.941552340984344,-0.309674113988876,0.132593557238579,-0.98255455493927,-0.185399755835533,-0.0146051850169897,-0.988881468772888,0.056288231164217,0.137641355395317,0.0803227946162224,-0.103281110525131,0.991403698921204,0.100285723805428,-0.026306452229619,0.994610786437988,-0.689367115497589,-0.35289078950882,0.632646083831787,-0.979599058628082,-0.146496683359146,0.137565776705742,-0.325643628835678,-0.0403248257935047,0.944632291793823,0.0803227946162224,-0.103281110525131,0.991403698921204,-0.689367115497589,-0.35289078950882,0.632646083831787,-0.897674679756165,0.439268231391907,-0.0349797643721104,-0.170753061771393,0.16884183883667,-0.970739841461182,-0.984331965446472,0.175717577338219,0.0146262207999825,-0.958185791969299,-0.28600937128067,-0.00887142587453127,-0.153990432620049,-0.0975449532270432,-0.983245551586151,-0.133848577737808,-0.114610828459263,-0.984351992607117,-0.952555119991302,-0.303270518779755,0.0258000250905752,0.184663072228432,-0.00364860892295837,0.982795178890228,0.991866290569305,-0.0659544914960861,-0.108863443136215,0.210788309574127,-0.126955434679985,0.969252645969391,-0.202437147498131,0.0876704379916191,-0.975363075733185,-0.996765792369843,0.0763253346085548,0.0251441840082407,-0.984331965446472,0.175717577338219,0.0146262207999825,-0.984331965446472,0.175717577338219,0.0146262207999825,-0.170753061771393,0.16884183883667,-0.970739841461182,-0.202437147498131,0.0876704379916191,-0.975363075733185,-0.540066301822662,-0.835693955421448,-0.0997186079621315,-0.996085643768311,-0.0434609577059746,0.0769714415073395,
- -0.992807507514954,-0.119542017579079,-0.00654111104086041,0.129495248198509,0.042776845395565,0.990656912326813,0.210788309574127,-0.126955434679985,0.969252645969391,0.0067262826487422,-0.118611559271812,0.992917954921722,0.184663072228432,-0.00364860892295837,0.982795178890228,0.210788309574127,-0.126955434679985,0.969252645969391,0.129495248198509,0.042776845395565,0.990656912326813,-0.159204661846161,0.019197154790163,-0.987058877944946,-0.62430340051651,0.781175076961517,-0.00328667205758393,-0.597744703292847,0.796442985534668,-0.0915413722395897,-0.62430340051651,0.781175076961517,-0.00328667205758393,-0.888260304927826,-0.45888277888298,0.0204984117299318,-0.995023667812347,-0.0899518877267838,0.042854193598032,0.0912513956427574,-0.0409696251153946,0.994984745979309,-0.992902159690857,-0.0108379786834121,0.118439614772797,-0.941552340984344,-0.309674113988876,0.132593557238579,0.969482421875,0.0219004862010479,-0.244180619716644,0.821086764335632,0.552615761756897,-0.142941951751709,0.97778993844986,-0.0213554427027702,-0.208496317267418,-0.159204661846161,0.019197154790163,-0.987058877944946,-0.888260304927826,-0.45888277888298,0.0204984117299318,-0.62430340051651,0.781175076961517,-0.00328667205758393,-0.989823758602142,-0.113108359277248,0.0863451510667801,-0.979599058628082,-0.146496683359146,0.137565776705742,-0.996085643768311,-0.0434609577059746,0.0769714415073395,-0.540066301822662,-0.835693955421448,-0.0997186079621315,-0.989823758602142,-0.113108359277248,0.0863451510667801,-0.996085643768311,-0.0434609577059746,0.0769714415073395,0.132898703217506,-0.0739191472530365,0.988369345664978,0.596258342266083,0.767705082893372,0.234744414687157,0.992698788642883,-0.0436161383986473,-0.112457916140556,0.992698788642883,-0.0436161383986473,-0.112457916140556,0.596258342266083,0.767705082893372,0.234744414687157,0.986876785755157,0.0612752288579941,-0.149397373199463,-0.997199475765228,0.0211126338690519,0.0717460811138153,-0.162459224462509,-0.0875198468565941,-0.982826173305511,-0.99820077419281,-0.00511133531108499,0.0597423054277897,
- -0.162459224462509,-0.0875198468565941,-0.982826173305511,-0.98255455493927,-0.185399755835533,-0.0146051850169897,-0.99820077419281,-0.00511133531108499,0.0597423054277897,-0.153739050030708,0.136477008461952,-0.978641092777252,-0.185407012701035,-0.219139516353607,-0.957915544509888,-0.0946638435125351,0.0832353457808495,-0.992023587226868,-0.597744703292847,0.796442985534668,-0.0915413722395897,-0.517712950706482,0.835744559764862,-0.183041617274284,-0.0964406058192253,0.0456138998270035,-0.994293034076691,0.852016448974609,0.505270957946777,-0.137000754475594,-0.517712950706482,0.835744559764862,-0.183041617274284,-0.552849411964417,0.83183741569519,0.0490297935903072,-0.0755452737212181,-0.217073947191238,-0.973227500915527,0.988912105560303,-0.0118585098534822,-0.148028165102005,0.986876785755157,0.0612752288579941,-0.149397373199463,-0.0755452737212181,-0.217073947191238,-0.973227500915527,0.986876785755157,0.0612752288579941,-0.149397373199463,0.980681896209717,0.0260413829237223,-0.193868041038513,0.145777970552444,0.0258966274559498,0.988978326320648,0.596258342266083,0.767705082893372,0.234744414687157,0.092632845044136,0.0533498860895634,0.994269967079163,-0.517712950706482,0.835744559764862,-0.183041617274284,0.852016448974609,0.505270957946777,-0.137000754475594,-0.0964406058192253,0.0456138998270035,-0.994293034076691,-0.325643628835678,-0.0403248257935047,0.944632291793823,-0.979599058628082,-0.146496683359146,0.137565776705742,-0.989708483219147,0.00919400434941053,0.142802432179451,0.0599799416959286,0.00859976373612881,0.998162567615509,-0.596948683261871,0.794233441352844,0.113337948918343,-0.908964574337006,-0.406101167201996,0.0941558927297592,0.0979543477296829,-0.00779554573819041,0.995160460472107,0.129495248198509,0.042776845395565,0.990656912326813,0.0067262826487422,-0.118611559271812,0.992917954921722,-0.175972104072571,-0.0483759604394436,-0.983205795288086,-0.157142832875252,-0.0178908910602331,-0.987413883209229,-0.996765792369843,0.0763253346085548,0.0251441840082407,-0.202437147498131,0.0876704379916191,-0.975363075733185,
- -0.175972104072571,-0.0483759604394436,-0.983205795288086,-0.996765792369843,0.0763253346085548,0.0251441840082407,0.596258342266083,0.767705082893372,0.234744414687157,0.980681896209717,0.0260413829237223,-0.193868041038513,0.986876785755157,0.0612752288579941,-0.149397373199463,-0.596948683261871,0.794233441352844,0.113337948918343,-0.62430340051651,0.781175076961517,-0.00328667205758393,-0.995023667812347,-0.0899518877267838,0.042854193598032,-0.596948683261871,0.794233441352844,0.113337948918343,-0.995023667812347,-0.0899518877267838,0.042854193598032,-0.908964574337006,-0.406101167201996,0.0941558927297592,0.148559853434563,-0.0213314313441515,0.988673388957977,0.74176150560379,0.667524755001068,-0.0648116543889046,0.988577544689178,-0.0265336409211159,-0.148359075188637,0.092632845044136,0.0533498860895634,0.994269967079163,0.132898703217506,-0.0739191472530365,0.988369345664978,0.0803227946162224,-0.103281110525131,0.991403698921204,0.0816313102841377,0.0484473630785942,0.995484352111816,-0.325643628835678,-0.0403248257935047,0.944632291793823,-0.989708483219147,0.00919400434941053,0.142802432179451,0.0912513956427574,-0.0409696251153946,0.994984745979309,0.0909970179200172,0.00268585188314319,0.995847523212433,-0.992011964321136,0.0203790739178658,0.124486573040485,-0.992902159690857,-0.0108379786834121,0.118439614772797,0.148559853434563,-0.0213314313441515,0.988673388957977,0.133570745587349,0.0890034362673759,0.987034618854523,0.74176150560379,0.667524755001068,-0.0648116543889046,0.152834132313728,-0.00327759538777173,0.988246500492096,0.143530577421188,0.0197025518864393,0.989449799060822,0.100318945944309,0.0186513084918261,0.994780480861664,0.103989325463772,-0.00063582940492779,0.994578182697296,0.13500103354454,-0.0527548901736736,0.989440083503723,0.13500103354454,-0.0527548901736736,0.989440083503723,-0.0969053134322166,0.343556731939316,0.934118866920471,0.391397416591644,-0.488763302564621,0.779691338539124,0.152834132313728,-0.00327759538777173,0.988246500492096,-0.0898561030626297,-0.0712976306676865,-0.993399500846863,
- -0.202304601669312,0.0436960086226463,-0.978347301483154,-0.177978977560997,-0.105909839272499,-0.978318214416504,-0.0974060595035553,-0.065805546939373,-0.993066847324371,-0.981680572032928,0.129626050591469,-0.139642804861069,-0.992805659770966,-0.118284188210964,0.0185972806066275,-0.177978977560997,-0.105909839272499,-0.978318214416504,-0.202304601669312,0.0436960086226463,-0.978347301483154,-0.435624927282333,0.190212741494179,-0.879801154136658,-0.161957755684853,-0.0127196433022618,-0.986715734004974,-0.995948672294617,0.0606496259570122,0.0663930177688599,-0.98255455493927,-0.185399755835533,-0.0146051850169897,-0.435624927282333,0.190212741494179,-0.879801154136658,-0.995948672294617,0.0606496259570122,0.0663930177688599,-0.162459224462509,-0.0875198468565941,-0.982826173305511,-0.0668318495154381,0.00151623564306647,-0.997763156890869,-0.216275170445442,0.0224527325481176,-0.976074278354645,-0.0946638435125351,0.0832353457808495,-0.992023587226868,-0.066355437040329,0.0407746247947216,-0.996962606906891,-0.138790190219879,0.0190414637327194,-0.990138709545136,-0.153739050030708,0.136477008461952,-0.978641092777252,-0.185407012701035,-0.219139516353607,-0.957915544509888,0.019028764218092,0.0468499250710011,-0.998720645904541,-0.0946638435125351,0.0832353457808495,-0.992023587226868,-0.0755452737212181,-0.217073947191238,-0.973227500915527,0.019028764218092,0.0468499250710011,-0.998720645904541,-0.185407012701035,-0.219139516353607,-0.957915544509888,-0.113137878477573,0.0312495082616806,-0.993087768554688,0.97778993844986,-0.0213554427027702,-0.208496317267418,0.977739036083221,9.26224529393949e-005,-0.209824606776237,-0.109586499631405,-0.0100445589050651,-0.993926465511322,0.969482421875,0.0219004862010479,-0.244180619716644,0.97778993844986,-0.0213554427027702,-0.208496317267418,-0.113137878477573,0.0312495082616806,-0.993087768554688,0.969482421875,0.0219004862010479,-0.244180619716644,-0.113137878477573,0.0312495082616806,-0.993087768554688,-0.103492520749569,0.15565188229084,-0.98237556219101,-0.103492520749569,0.15565188229084,-0.98237556219101,
- 0.972930014133453,-0.0121871568262577,-0.230778321623802,0.969482421875,0.0219004862010479,-0.244180619716644,0.974522709846497,0.0437990315258503,-0.219970613718033,-0.116085901856422,0.000426647457061335,-0.993239045143127,-0.121524192392826,0.0741136074066162,-0.989817678928375,0.971384763717651,0.0362240746617317,-0.234732776880264,0.0599799416959286,0.00859976373612881,0.998162567615509,0.128384679555893,0.0391368791460991,0.990951895713806,-0.492085874080658,0.846221208572388,0.20435556769371,0.852492868900299,0.518536627292633,-0.0661488994956017,-0.492085874080658,0.846221208572388,0.20435556769371,0.128384679555893,0.0391368791460991,0.990951895713806,0.855834126472473,0.506193101406097,-0.106378689408302,0.852016448974609,0.505270957946777,-0.137000754475594,-0.552849411964417,0.83183741569519,0.0490297935903072,-0.552849411964417,0.83183741569519,0.0490297935903072,0.852492868900299,0.518536627292633,-0.0661488994956017,0.855834126472473,0.506193101406097,-0.106378689408302,-0.540066301822662,-0.835693955421448,-0.0997186079621315,-0.0553130432963371,-0.913185656070709,-0.403772801160812,-0.85348916053772,0.232287183403969,-0.466475188732147,-0.540066301822662,-0.835693955421448,-0.0997186079621315,-0.169376939535141,-0.00766265671700239,-0.985521554946899,-0.0553130432963371,-0.913185656070709,-0.403772801160812,-0.157142832875252,-0.0178908910602331,-0.987413883209229,-0.169376939535141,-0.00766265671700239,-0.985521554946899,-0.992807507514954,-0.119542017579079,-0.00654111104086041,-0.216275170445442,0.0224527325481176,-0.976074278354645,-0.435624927282333,0.190212741494179,-0.879801154136658,-0.98255455493927,-0.185399755835533,-0.0146051850169897,-0.162459224462509,-0.0875198468565941,-0.982826173305511,-0.216275170445442,0.0224527325481176,-0.976074278354645,-0.98255455493927,-0.185399755835533,-0.0146051850169897,-0.138790190219879,0.0190414637327194,-0.990138709545136,-0.162459224462509,-0.0875198468565941,-0.982826173305511,-0.997199475765228,0.0211126338690519,0.0717460811138153,-0.998312175273895,0.0580652207136154,-0.00113347207661718,
- -0.138790190219879,0.0190414637327194,-0.990138709545136,-0.997199475765228,0.0211126338690519,0.0717460811138153,0.625511825084686,-0.652529716491699,0.427714586257935,0.991866290569305,-0.0659544914960861,-0.108863443136215,0.817324221134186,-0.573529899120331,-0.0551771223545074,0.991563439369202,0.005448033567518,-0.129507973790169,0.625511825084686,-0.652529716491699,0.427714586257935,0.817324221134186,-0.573529899120331,-0.0551771223545074,0.645571768283844,-0.760462462902069,-0.0702420249581337,0.988653779029846,0.0457864031195641,-0.143064111471176,0.974522709846497,0.0437990315258503,-0.219970613718033,0.971384763717651,0.0362240746617317,-0.234732776880264,0.987563073635101,0.0664456710219383,-0.142492353916168,0.133570745587349,0.0890034362673759,0.987034618854523,0.089273676276207,-0.442887127399445,0.8921217918396,0.0912462547421455,0.0293538179248571,0.995395660400391,0.148559853434563,-0.0213314313441515,0.988673388957977,0.089273676276207,-0.442887127399445,0.8921217918396,0.133570745587349,0.0890034362673759,0.987034618854523,0.148559853434563,-0.0213314313441515,0.988673388957977,0.0912513956427574,-0.0409696251153946,0.994984745979309,0.089273676276207,-0.442887127399445,0.8921217918396,-0.0668318495154381,0.00151623564306647,-0.997763156890869,-0.066355437040329,0.0407746247947216,-0.996962606906891,0.975195407867432,-0.0327726267278194,-0.218905910849571,0.972930014133453,-0.0121871568262577,-0.230778321623802,0.986991763114929,-0.102691143751144,-0.123700581490994,0.992474317550659,0.00473860977217555,-0.122360587120056,0.143530577421188,0.0197025518864393,0.989449799060822,0.152834132313728,-0.00327759538777173,0.988246500492096,0.97778993844986,-0.0213554427027702,-0.208496317267418,0.990728974342346,0.0602902509272099,-0.121742151677608,0.992474317550659,0.00473860977217555,-0.122360587120056,0.977739036083221,9.26224529393949e-005,-0.209824606776237,-0.984027624130249,-0.115143030881882,0.135762691497803,-0.991808593273163,-0.0172016657888889,0.126569539308548,-0.997030079364777,-0.0170613583177328,0.0751000121235847,
- -0.992805659770966,-0.118284188210964,0.0185972806066275,0.100318945944309,0.0186513084918261,0.994780480861664,0.0912462547421455,0.0293538179248571,0.995395660400391,-0.988881468772888,0.056288231164217,0.137641355395317,-0.991808593273163,-0.0172016657888889,0.126569539308548,-0.161957755684853,-0.0127196433022618,-0.986715734004974,-0.997030079364777,-0.0170613583177328,0.0751000121235847,-0.995948672294617,0.0606496259570122,0.0663930177688599,0.143530577421188,0.0197025518864393,0.989449799060822,0.147246643900871,0.0288464110344648,0.988679051399231,0.0912462547421455,0.0293538179248571,0.995395660400391,0.100318945944309,0.0186513084918261,0.994780480861664,0.145777970552444,0.0258966274559498,0.988978326320648,0.0816313102841377,0.0484473630785942,0.995484352111816,0.0909970179200172,0.00268585188314319,0.995847523212433,0.146528393030167,-0.000418473879108205,0.989206373691559,0.988988041877747,-0.0376383401453495,-0.143129229545593,0.975195407867432,-0.0327726267278194,-0.218905910849571,0.980681896209717,0.0260413829237223,-0.193868041038513,0.985068380832672,0.0921402797102928,-0.145431861281395,0.145777970552444,0.0258966274559498,0.988978326320648,0.146528393030167,-0.000418473879108205,0.989206373691559,0.988988041877747,-0.0376383401453495,-0.143129229545593,0.985068380832672,0.0921402797102928,-0.145431861281395,-0.992011964321136,0.0203790739178658,0.124486573040485,0.0909970179200172,0.00268585188314319,0.995847523212433,0.0816313102841377,0.0484473630785942,0.995484352111816,-0.989708483219147,0.00919400434941053,0.142802432179451,0.975195407867432,-0.0327726267278194,-0.218905910849571,-0.066355437040329,0.0407746247947216,-0.996962606906891,0.980681896209717,0.0260413829237223,-0.193868041038513,-0.998954176902771,0.0335981771349907,0.0310098584741354,-0.989994525909424,-0.0115685574710369,0.140630587935448,-0.985636055469513,0.134409382939339,0.102253392338753,-0.131807580590248,-0.0127251939848065,-0.991193652153015,-0.0755452737212181,-0.217073947191238,-0.973227500915527,-0.169376939535141,-0.00766265671700239,-0.985521554946899,
- 0.132898703217506,-0.0739191472530365,0.988369345664978,0.15363247692585,-0.023812772706151,0.987841129302979,0.100285723805428,-0.026306452229619,0.994610786437988,0.0803227946162224,-0.103281110525131,0.991403698921204,0.982060611248016,-0.0432372130453587,-0.183541148900986,-0.0755981802940369,0.000112847214040812,-0.997138261795044,-0.0286753755062819,0.0403182134032249,-0.9987753033638,0.976568281650543,-0.0654558762907982,-0.205012127757072,0.100285723805428,-0.026306452229619,0.994610786437988,0.0979543477296829,-0.00779554573819041,0.995160460472107,-0.691861748695374,0.215029641985893,0.689267337322235,-0.989994525909424,-0.0115685574710369,0.140630587935448,0.101021282374859,-0.0060360711067915,0.994866013526917,0.163172706961632,-0.0267749913036823,0.986234128475189,0.150467187166214,0.0118557950481772,0.988543927669525,0.0988222733139992,0.0113367568701506,0.995040535926819,-0.888260304927826,-0.45888277888298,0.0204984117299318,-0.908964574337006,-0.406101167201996,0.0941558927297592,-0.995023667812347,-0.0899518877267838,0.042854193598032,-0.176391437649727,-0.00135674234479666,-0.984319090843201,-0.175704568624496,0.048862136900425,-0.983229577541351,-0.148898258805275,0.100084811449051,-0.983774542808533,-0.121524192392826,0.0741136074066162,-0.989817678928375,-0.116085901856422,0.000426647457061335,-0.993239045143127,0.150467187166214,0.0118557950481772,0.988543927669525,0.988653779029846,0.0457864031195641,-0.143064111471176,0.987563073635101,0.0664456710219383,-0.142492353916168,0.155995875597,0.0507745966315269,0.986451804637909,0.0988222733139992,0.0113367568701506,0.995040535926819,0.0834615975618362,0.104836829006672,0.990981042385101,-0.991303086280823,0.0803920477628708,0.104189418256283,-0.993146121501923,0.0140269286930561,0.116035036742687,-0.999094426631927,-0.0031329330522567,0.0424337387084961,-0.190926730632782,-0.00957306195050478,-0.981557607650757,-0.170753061771393,0.16884183883667,-0.970739841461182,-0.897674679756165,0.439268231391907,-0.0349797643721104,0.977275848388672,-0.00651280349120498,-0.211871445178986,
- -0.112090535461903,-0.00684503745287657,-0.993674397468567,-0.116085901856422,0.000426647457061335,-0.993239045143127,0.974522709846497,0.0437990315258503,-0.219970613718033,0.645571768283844,-0.760462462902069,-0.0702420249581337,0.638172924518585,-0.757065236568451,-0.139955222606659,0.977275848388672,-0.00651280349120498,-0.211871445178986,0.991563439369202,0.005448033567518,-0.129507973790169,-0.99820077419281,-0.00511133531108499,0.0597423054277897,-0.992902159690857,-0.0108379786834121,0.118439614772797,-0.992011964321136,0.0203790739178658,0.124486573040485,-0.997199475765228,0.0211126338690519,0.0717460811138153,-0.0946638435125351,0.0832353457808495,-0.992023587226868,0.019028764218092,0.0468499250710011,-0.998720645904541,-0.066355437040329,0.0407746247947216,-0.996962606906891,-0.131807580590248,-0.0127251939848065,-0.991193652153015,-0.169376939535141,-0.00766265671700239,-0.985521554946899,-0.157142832875252,-0.0178908910602331,-0.987413883209229,-0.0755981802940369,0.000112847214040812,-0.997138261795044,0.980662405490875,-0.00346446875482798,-0.195676177740097,-0.0898561030626297,-0.0712976306676865,-0.993399500846863,-0.0974060595035553,-0.065805546939373,-0.993066847324371,-0.992807507514954,-0.119542017579079,-0.00654111104086041,-0.169376939535141,-0.00766265671700239,-0.985521554946899,-0.540066301822662,-0.835693955421448,-0.0997186079621315,-0.992902159690857,-0.0108379786834121,0.118439614772797,-0.98255455493927,-0.185399755835533,-0.0146051850169897,-0.941552340984344,-0.309674113988876,0.132593557238579,0.969482421875,0.0219004862010479,-0.244180619716644,0.972930014133453,-0.0121871568262577,-0.230778321623802,0.988577544689178,-0.0265336409211159,-0.148359075188637,0.821086764335632,0.552615761756897,-0.142941951751709,-0.999266743659973,0.0100679537281394,0.036940474063158,-0.993146121501923,0.0140269286930561,0.116035036742687,-0.991303086280823,0.0803920477628708,0.104189418256283,-0.999745786190033,0.0208547450602055,0.00856141187250614,-0.783282458782196,0.523665368556976,-0.335026949644089,
- -0.372781664133072,0.369916707277298,-0.850996732711792,-0.175704568624496,0.048862136900425,-0.983229577541351,-0.999745786190033,0.0208547450602055,0.00856141187250614,0.884167671203613,-0.155370384454727,-0.440576583147049,-0.127159655094147,0.0695573166012764,-0.989440381526947,-0.0820788592100143,-0.0777880921959877,-0.993585526943207,0.97504198551178,0.141323089599609,-0.171233147382736,-0.127159655094147,0.0695573166012764,-0.989440381526947,-0.372781664133072,0.369916707277298,-0.850996732711792,-0.133848577737808,-0.114610828459263,-0.984351992607117,-0.0820788592100143,-0.0777880921959877,-0.993585526943207,-0.783282458782196,0.523665368556976,-0.335026949644089,-0.343665957450867,0.506800651550293,0.79059898853302,-0.952555119991302,-0.303270518779755,0.0258000250905752,0.0834615975618362,0.104836829006672,0.990981042385101,0.155995875597,0.0507745966315269,0.986451804637909,0.143936783075333,0.459415167570114,0.876481473445892,-0.343665957450867,0.506800651550293,0.79059898853302,0.971384763717651,0.0362240746617317,-0.234732776880264,-0.121524192392826,0.0741136074066162,-0.989817678928375,-0.127159655094147,0.0695573166012764,-0.989440381526947,0.884167671203613,-0.155370384454727,-0.440576583147049,0.984279036521912,0.0763076841831207,-0.159285634756088,0.971384763717651,0.0362240746617317,-0.234732776880264,0.884167671203613,-0.155370384454727,-0.440576583147049,-0.372781664133072,0.369916707277298,-0.850996732711792,-0.148898258805275,0.100084811449051,-0.983774542808533,-0.175704568624496,0.048862136900425,-0.983229577541351,0.143936783075333,0.459415167570114,0.876481473445892,0.987563073635101,0.0664456710219383,-0.142492353916168,0.678242385387421,0.724750280380249,0.121343776583672,-0.991303086280823,0.0803920477628708,0.104189418256283,0.0834615975618362,0.104836829006672,0.990981042385101,-0.343665957450867,0.506800651550293,0.79059898853302,-0.783282458782196,0.523665368556976,-0.335026949644089,-0.920067310333252,0.3865926861763,0.0634215325117111,-0.991303086280823,0.0803920477628708,0.104189418256283,
- -0.343665957450867,0.506800651550293,0.79059898853302,-0.999745786190033,0.0208547450602055,0.00856141187250614,-0.175704568624496,0.048862136900425,-0.983229577541351,-0.176391437649727,-0.00135674234479666,-0.984319090843201,-0.999266743659973,0.0100679537281394,0.036940474063158,-0.952555119991302,-0.303270518779755,0.0258000250905752,-0.133848577737808,-0.114610828459263,-0.984351992607117,-0.372781664133072,0.369916707277298,-0.850996732711792,-0.783282458782196,0.523665368556976,-0.335026949644089,0.931454837322235,0.328850358724594,-0.155722141265869,-0.0786189213395119,-0.0129969883710146,-0.996819972991943,-0.0964406058192253,0.0456138998270035,-0.994293034076691,0.852016448974609,0.505270957946777,-0.137000754475594,-0.0786189213395119,-0.0129969883710146,-0.996819972991943,-0.135414361953735,-0.0352083034813404,-0.990163326263428,-0.159204661846161,0.019197154790163,-0.987058877944946,-0.0964406058192253,0.0456138998270035,-0.994293034076691,-0.932425558567047,-0.340939491987228,0.119761534035206,0.0958690717816353,-0.0100335674360394,0.995343387126923,0.0599799416959286,0.00859976373612881,0.998162567615509,-0.908964574337006,-0.406101167201996,0.0941558927297592,-0.9361652135849,-0.34900289773941,0.0423285625874996,-0.932425558567047,-0.340939491987228,0.119761534035206,-0.908964574337006,-0.406101167201996,0.0941558927297592,-0.888260304927826,-0.45888277888298,0.0204984117299318,0.991563439369202,0.005448033567518,-0.129507973790169,0.977275848388672,-0.00651280349120498,-0.211871445178986,0.974522709846497,0.0437990315258503,-0.219970613718033,0.988653779029846,0.0457864031195641,-0.143064111471176,0.984279036521912,0.0763076841831207,-0.159285634756088,0.884167671203613,-0.155370384454727,-0.440576583147049,0.97504198551178,0.141323089599609,-0.171233147382736,0.940436720848084,0.329281091690063,-0.0845733657479286,0.931454837322235,0.328850358724594,-0.155722141265869,0.852016448974609,0.505270957946777,-0.137000754475594,0.855834126472473,0.506193101406097,-0.106378689408302,0.852492868900299,0.518536627292633,-0.0661488994956017,
- 0.158085659146309,0.0142761589959264,0.987322270870209,0.940436720848084,0.329281091690063,-0.0845733657479286,0.852492868900299,0.518536627292633,-0.0661488994956017,0.128384679555893,0.0391368791460991,0.990951895713806,0.176424011588097,-0.0261248759925365,0.983967542648315,0.120738282799721,-0.0508435443043709,0.991381466388702,0.143936783075333,0.459415167570114,0.876481473445892,-0.343665957450867,0.506800651550293,0.79059898853302,0.120738282799721,-0.0508435443043709,0.991381466388702,0.106678031384945,-0.0321090668439865,0.993775010108948,0.143936783075333,0.459415167570114,0.876481473445892,0.678242385387421,0.724750280380249,0.121343776583672,0.906686186790466,-0.421800971031189,0.00201243557967246,-0.159204661846161,0.019197154790163,-0.987058877944946,-0.135414361953735,-0.0352083034813404,-0.990163326263428,-0.9361652135849,-0.34900289773941,0.0423285625874996,-0.888260304927826,-0.45888277888298,0.0204984117299318,-0.999745786190033,0.0208547450602055,0.00856141187250614,-0.920067310333252,0.3865926861763,0.0634215325117111,-0.783282458782196,0.523665368556976,-0.335026949644089,-0.121524192392826,0.0741136074066162,-0.989817678928375,-0.148898258805275,0.100084811449051,-0.983774542808533,-0.372781664133072,0.369916707277298,-0.850996732711792,-0.127159655094147,0.0695573166012764,-0.989440381526947,-0.999745786190033,0.0208547450602055,0.00856141187250614,-0.991303086280823,0.0803920477628708,0.104189418256283,-0.920067310333252,0.3865926861763,0.0634215325117111,0.143936783075333,0.459415167570114,0.876481473445892,0.906686186790466,-0.421800971031189,0.00201243557967246,0.98749053478241,0.132749512791634,-0.0850884839892387,0.176424011588097,-0.0261248759925365,0.983967542648315,0.987563073635101,0.0664456710219383,-0.142492353916168,0.984279036521912,0.0763076841831207,-0.159285634756088,0.678242385387421,0.724750280380249,0.121343776583672,-0.343665957450867,0.506800651550293,0.79059898853302,0.143936783075333,0.459415167570114,0.876481473445892,0.120738282799721,-0.0508435443043709,0.991381466388702,
- 0.0958690717816353,-0.0100335674360394,0.995343387126923,0.158085659146309,0.0142761589959264,0.987322270870209,0.128384679555893,0.0391368791460991,0.990951895713806,0.0599799416959286,0.00859976373612881,0.998162567615509,0.987563073635101,0.0664456710219383,-0.142492353916168,0.971384763717651,0.0362240746617317,-0.234732776880264,0.984279036521912,0.0763076841831207,-0.159285634756088,0.984279036521912,0.0763076841831207,-0.159285634756088,0.97504198551178,0.141323089599609,-0.171233147382736,0.906686186790466,-0.421800971031189,0.00201243557967246,0.984279036521912,0.0763076841831207,-0.159285634756088,0.906686186790466,-0.421800971031189,0.00201243557967246,0.678242385387421,0.724750280380249,0.121343776583672,0.155995875597,0.0507745966315269,0.986451804637909,0.987563073635101,0.0664456710219383,-0.142492353916168,0.143936783075333,0.459415167570114,0.876481473445892,-0.952555119991302,-0.303270518779755,0.0258000250905752,-0.343665957450867,0.506800651550293,0.79059898853302,-0.955442130565643,-0.267364621162415,0.125085577368736,-0.955442130565643,-0.267364621162415,0.125085577368736,0.106678031384945,-0.0321090668439865,0.993775010108948,0.0958690717816353,-0.0100335674360394,0.995343387126923,-0.932425558567047,-0.340939491987228,0.119761534035206,0.106678031384945,-0.0321090668439865,0.993775010108948,0.120738282799721,-0.0508435443043709,0.991381466388702,0.176424011588097,-0.0261248759925365,0.983967542648315,0.158085659146309,0.0142761589959264,0.987322270870209,0.0958690717816353,-0.0100335674360394,0.995343387126923,0.176424011588097,-0.0261248759925365,0.983967542648315,0.98749053478241,0.132749512791634,-0.0850884839892387,0.940436720848084,0.329281091690063,-0.0845733657479286,0.158085659146309,0.0142761589959264,0.987322270870209,0.97504198551178,0.141323089599609,-0.171233147382736,0.98749053478241,0.132749512791634,-0.0850884839892387,0.906686186790466,-0.421800971031189,0.00201243557967246,0.97504198551178,0.141323089599609,-0.171233147382736,-0.0820788592100143,-0.0777880921959877,-0.993585526943207,
- -0.0786189213395119,-0.0129969883710146,-0.996819972991943,0.931454837322235,0.328850358724594,-0.155722141265869,-0.0820788592100143,-0.0777880921959877,-0.993585526943207,-0.133848577737808,-0.114610828459263,-0.984351992607117,-0.153990432620049,-0.0975449532270432,-0.983245551586151,-0.135414361953735,-0.0352083034813404,-0.990163326263428,-0.0786189213395119,-0.0129969883710146,-0.996819972991943,-0.9361652135849,-0.34900289773941,0.0423285625874996,-0.135414361953735,-0.0352083034813404,-0.990163326263428,-0.153990432620049,-0.0975449532270432,-0.983245551586151,-0.958185791969299,-0.28600937128067,-0.00887142587453127,0.151779532432556,0.00502127315849066,0.988401591777802,0.16248631477356,0.0425168052315712,0.985794365406036,0.0668327361345291,0.0342154875397682,0.997177422046661,0.0702106654644012,0.00789089687168598,0.997500896453857,-0.000727505190297961,-0.999999403953552,0.000749644357711077,-0.988209903240204,-0.0820700228214264,0.129250466823578,-0.994165658950806,-0.0940108597278595,0.0528827086091042,0.981629133224487,-0.0577342174947262,-0.181854382157326,-0.113494679331779,-0.0509060434997082,-0.992233693599701,-0.116716049611568,-0.00273200822994113,-0.993161559104919,0.154968097805977,-0.022691747173667,0.987658798694611,0.0662375763058662,0.00978298578411341,0.997755944728851,0.00856601446866989,-0.99934846162796,0.0350613966584206,-0.988209903240204,-0.0820700228214264,0.129250466823578,-0.000727505190297961,-0.999999403953552,0.000749644357711077,-0.00148646149318665,-0.999998569488525,0.00089321011910215,0.00603426154702902,-0.999751746654511,0.0214478466659784,0.00856601446866989,-0.99934846162796,0.0350613966584206,0.0662375763058662,0.00978298578411341,0.997755944728851,0.154968097805977,-0.022691747173667,0.987658798694611,0.992718696594238,-0.0701659023761749,-0.0979103222489357,0.994232356548309,-0.00898335874080658,-0.106870472431183,0.151779532432556,0.00502127315849066,0.988401591777802,0.154968097805977,-0.022691747173667,0.987658798694611,0.00856601446866989,-0.99934846162796,0.0350613966584206,
- 0.0065401392057538,-0.999970257282257,0.00409681163728237,0.992718696594238,-0.0701659023761749,-0.0979103222489357,0.00603426154702902,-0.999751746654511,0.0214478466659784,-0.988209903240204,-0.0820700228214264,0.129250466823578,-0.00148646149318665,-0.999998569488525,0.00089321011910215,0.0351985096931458,-0.999355852603912,-0.00700021116062999,0.00410284008830786,-0.999814927577972,-0.018797155469656,0.981629133224487,-0.0577342174947262,-0.181854382157326,-0.988209903240204,-0.0820700228214264,0.129250466823578,0.0662375763058662,0.00978298578411341,0.997755944728851,0.0702106654644012,0.00789089687168598,0.997500896453857,-0.989700019359589,-0.0130674364045262,0.142559170722961,0.0662375763058662,0.00978298578411341,0.997755944728851,-0.988209903240204,-0.0820700228214264,0.129250466823578,0.00603426154702902,-0.999751746654511,0.0214478466659784,0.982028663158417,-0.00964613258838654,-0.188485562801361,-0.116716049611568,-0.00273200822994113,-0.993161559104919,-0.11257941275835,0.0592169091105461,-0.991876661777496,0.977097630500793,0.0341197066009045,-0.21003820002079,0.992718696594238,-0.0701659023761749,-0.0979103222489357,0.0065401392057538,-0.999970257282257,0.00409681163728237,0.0192599259316921,-0.99981290102005,-0.00178816367406398,0.0192599259316921,-0.99981290102005,-0.00178816367406398,0.0351985096931458,-0.999355852603912,-0.00700021116062999,0.992718696594238,-0.0701659023761749,-0.0979103222489357,0.994232356548309,-0.00898335874080658,-0.106870472431183,0.982028663158417,-0.00964613258838654,-0.188485562801361,0.977097630500793,0.0341197066009045,-0.21003820002079,0.988178193569183,0.0826630368828774,-0.129115223884583,0.0662375763058662,0.00978298578411341,0.997755944728851,0.154968097805977,-0.022691747173667,0.987658798694611,0.151779532432556,0.00502127315849066,0.988401591777802,0.0702106654644012,0.00789089687168598,0.997500896453857,-0.163887575268745,-0.00503564905375242,-0.986466109752655,-0.165703415870667,0.0304976999759674,-0.985703945159912,-0.11257941275835,0.0592169091105461,-0.991876661777496,
- -0.116716049611568,-0.00273200822994113,-0.993161559104919,0.151779532432556,0.00502127315849066,0.988401591777802,0.994232356548309,-0.00898335874080658,-0.106870472431183,0.988178193569183,0.0826630368828774,-0.129115223884583,0.16248631477356,0.0425168052315712,0.985794365406036,0.0702106654644012,0.00789089687168598,0.997500896453857,0.0668327361345291,0.0342154875397682,0.997177422046661,-0.989116072654724,0.0433308966457844,0.140612527728081,-0.989700019359589,-0.0130674364045262,0.142559170722961,-0.163887575268745,-0.00503564905375242,-0.986466109752655,-0.15624788403511,-0.0419977381825447,-0.986824572086334,-0.994165658950806,-0.0940108597278595,0.0528827086091042,-0.998107373714447,-0.0153654180467129,0.0595432408154011,0.981629133224487,-0.0577342174947262,-0.181854382157326,-0.116716049611568,-0.00273200822994113,-0.993161559104919,0.982028663158417,-0.00964613258838654,-0.188485562801361,0.992718696594238,-0.0701659023761749,-0.0979103222489357,0.0351985096931458,-0.999355852603912,-0.00700021116062999,0.981629133224487,-0.0577342174947262,-0.181854382157326,-0.998107373714447,-0.0153654180467129,0.0595432408154011,-0.989700019359589,-0.0130674364045262,0.142559170722961,-0.989116072654724,0.0433308966457844,0.140612527728081,-0.996869146823883,0.0338491015136242,0.0714576840400696,-0.981680572032928,0.129626050591469,-0.139642804861069,-0.202304601669312,0.0436960086226463,-0.978347301483154,-0.996869146823883,0.0338491015136242,0.0714576840400696,0.0668327361345291,0.0342154875397682,0.997177422046661,0.16248631477356,0.0425168052315712,0.985794365406036,0.391397416591644,-0.488763302564621,0.779691338539124,-0.0969053134322166,0.343556731939316,0.934118866920471,0.977097630500793,0.0341197066009045,-0.21003820002079,-0.11257941275835,0.0592169091105461,-0.991876661777496,-0.0898561030626297,-0.0712976306676865,-0.993399500846863,0.838539898395538,-0.479950606822968,-0.257872462272644,0.665087282657623,-0.742966830730438,-0.0752282664179802,0.977097630500793,0.0341197066009045,-0.21003820002079,0.838539898395538,-0.479950606822968,-0.257872462272644,
- -0.989116072654724,0.0433308966457844,0.140612527728081,0.0668327361345291,0.0342154875397682,0.997177422046661,-0.0969053134322166,0.343556731939316,0.934118866920471,-0.993838787078857,0.0625435709953308,0.0915024057030678,-0.989116072654724,0.0433308966457844,0.140612527728081,-0.0969053134322166,0.343556731939316,0.934118866920471,-0.996869146823883,0.0338491015136242,0.0714576840400696,-0.165703415870667,0.0304976999759674,-0.985703945159912,-0.163887575268745,-0.00503564905375242,-0.986466109752655,-0.998107373714447,-0.0153654180467129,0.0595432408154011,0.992718696594238,-0.0701659023761749,-0.0979103222489357,0.981629133224487,-0.0577342174947262,-0.181854382157326,0.982028663158417,-0.00964613258838654,-0.188485562801361,0.994232356548309,-0.00898335874080658,-0.106870472431183,-0.996869146823883,0.0338491015136242,0.0714576840400696,-0.993838787078857,0.0625435709953308,0.0915024057030678,-0.981680572032928,0.129626050591469,-0.139642804861069,-0.11257941275835,0.0592169091105461,-0.991876661777496,-0.165703415870667,0.0304976999759674,-0.985703945159912,-0.202304601669312,0.0436960086226463,-0.978347301483154,-0.0898561030626297,-0.0712976306676865,-0.993399500846863,-0.996869146823883,0.0338491015136242,0.0714576840400696,-0.989116072654724,0.0433308966457844,0.140612527728081,-0.993838787078857,0.0625435709953308,0.0915024057030678,0.988178193569183,0.0826630368828774,-0.129115223884583,0.665087282657623,-0.742966830730438,-0.0752282664179802,0.391397416591644,-0.488763302564621,0.779691338539124,0.988178193569183,0.0826630368828774,-0.129115223884583,0.977097630500793,0.0341197066009045,-0.21003820002079,0.665087282657623,-0.742966830730438,-0.0752282664179802,0.16248631477356,0.0425168052315712,0.985794365406036,0.988178193569183,0.0826630368828774,-0.129115223884583,0.391397416591644,-0.488763302564621,0.779691338539124,-0.113494679331779,-0.0509060434997082,-0.992233693599701,-0.15624788403511,-0.0419977381825447,-0.986824572086334,-0.163887575268745,-0.00503564905375242,-0.986466109752655,-0.116716049611568,-0.00273200822994113,-0.993161559104919,
- 0.0065401392057538,-0.999970257282257,0.00409681163728237,0.00856601446866989,-0.99934846162796,0.0350613966584206,0.00603426154702902,-0.999751746654511,0.0214478466659784,-0.00148646149318665,-0.999998569488525,0.00089321011910215,-0.000727505190297961,-0.999999403953552,0.000749644357711077,0.00353599176742136,-0.999776601791382,-0.0208382345736027,0.00410284008830786,-0.999814927577972,-0.018797155469656,0.0351985096931458,-0.999355852603912,-0.00700021116062999,0.0192599259316921,-0.99981290102005,-0.00178816367406398,-0.994165658950806,-0.0940108597278595,0.0528827086091042,-0.15624788403511,-0.0419977381825447,-0.986824572086334,0.00353599176742136,-0.999776601791382,-0.0208382345736027,-0.000727505190297961,-0.999999403953552,0.000749644357711077,0.00410284008830786,-0.999814927577972,-0.018797155469656,-0.113494679331779,-0.0509060434997082,-0.992233693599701,0.981629133224487,-0.0577342174947262,-0.181854382157326,0.00410284008830786,-0.999814927577972,-0.018797155469656,0.00353599176742136,-0.999776601791382,-0.0208382345736027,-0.15624788403511,-0.0419977381825447,-0.986824572086334,-0.113494679331779,-0.0509060434997082,-0.992233693599701,0.980662405490875,-0.00346446875482798,-0.195676177740097,0.838539898395538,-0.479950606822968,-0.257872462272644,-0.0898561030626297,-0.0712976306676865,-0.993399500846863,0.985068380832672,0.0921402797102928,-0.145431861281395,0.980681896209717,0.0260413829237223,-0.193868041038513,0.596258342266083,0.767705082893372,0.234744414687157,0.821086764335632,0.552615761756897,-0.142941951751709,0.74176150560379,0.667524755001068,-0.0648116543889046,0.990728974342346,0.0602902509272099,-0.121742151677608,0.97778993844986,-0.0213554427027702,-0.208496317267418,0.133570745587349,0.0890034362673759,0.987034618854523,0.147246643900871,0.0288464110344648,0.988679051399231,0.990728974342346,0.0602902509272099,-0.121742151677608,0.74176150560379,0.667524755001068,-0.0648116543889046,0.0912462547421455,0.0293538179248571,0.995395660400391,0.147246643900871,0.0288464110344648,0.988679051399231,
- 0.133570745587349,0.0890034362673759,0.987034618854523,-0.343665957450867,0.506800651550293,0.79059898853302,0.106678031384945,-0.0321090668439865,0.993775010108948,-0.955442130565643,-0.267364621162415,0.125085577368736,-0.952555119991302,-0.303270518779755,0.0258000250905752,-0.955442130565643,-0.267364621162415,0.125085577368736,-0.932425558567047,-0.340939491987228,0.119761534035206,-0.9361652135849,-0.34900289773941,0.0423285625874996,-0.958185791969299,-0.28600937128067,-0.00887142587453127,-0.99820077419281,-0.00511133531108499,0.0597423054277897,-0.98255455493927,-0.185399755835533,-0.0146051850169897,-0.992902159690857,-0.0108379786834121,0.118439614772797,-0.138790190219879,0.0190414637327194,-0.990138709545136,-0.0668318495154381,0.00151623564306647,-0.997763156890869,-0.162459224462509,-0.0875198468565941,-0.982826173305511,-0.999094426631927,-0.0031329330522567,0.0424337387084961,-0.99365907907486,0.00738857267424464,0.112191952764988,-0.993146121501923,0.0140269286930561,0.116035036742687,-0.999266743659973,0.0100679537281394,0.036940474063158,-0.176391437649727,-0.00135674234479666,-0.984319090843201,-0.190926730632782,-0.00957306195050478,-0.981557607650757,-0.999094426631927,-0.0031329330522567,0.0424337387084961,-0.999266743659973,0.0100679537281394,0.036940474063158,-0.116085901856422,0.000426647457061335,-0.993239045143127,-0.112090535461903,-0.00684503745287657,-0.993674397468567,-0.190926730632782,-0.00957306195050478,-0.981557607650757,-0.176391437649727,-0.00135674234479666,-0.984319090843201,0.940436720848084,0.329281091690063,-0.0845733657479286,0.98749053478241,0.132749512791634,-0.0850884839892387,0.97504198551178,0.141323089599609,-0.171233147382736,0.931454837322235,0.328850358724594,-0.155722141265869,-0.994165658950806,-0.0940108597278595,0.0528827086091042,-0.988209903240204,-0.0820700228214264,0.129250466823578,-0.989700019359589,-0.0130674364045262,0.142559170722961,-0.998107373714447,-0.0153654180467129,0.0595432408154011,-0.989823758602142,-0.113108359277248,0.0863451510667801,
- -0.998312175273895,0.0580652207136154,-0.00113347207661718,-0.989708483219147,0.00919400434941053,0.142802432179451,-0.996869146823883,0.0338491015136242,0.0714576840400696,-0.202304601669312,0.0436960086226463,-0.978347301483154,-0.165703415870667,0.0304976999759674,-0.985703945159912,0.659419417381287,-0.736415684223175,-0.151188403367996,0.638172924518585,-0.757065236568451,-0.139955222606659,0.645571768283844,-0.760462462902069,-0.0702420249581337,0.817324221134186,-0.573529899120331,-0.0551771223545074,0.0128821898251772,0.999839246273041,-0.012466648593545,0.0517097599804401,0.994154393672943,0.0947787761688232,0.992145895957947,-0.0699807554483414,-0.103677347302437,0.151005312800407,0.0158736258745193,0.988405466079712,0.153681769967079,0.0514443255960941,0.986780285835266,0.0834812819957733,0.086889460682869,0.992713928222656,0.0952188819646835,0.0151389176025987,0.995341241359711,-0.616249620914459,-0.786116242408752,-0.0475136935710907,-0.990612387657166,-0.0757627114653587,0.11378588527441,-0.994615614414215,-0.095708929002285,0.0397425256669521,-0.186692789196968,-0.0190346725285053,-0.982233881950378,-0.120815724134445,-0.0103858280926943,-0.992620587348938,-0.121100962162018,-0.145748123526573,-0.98188191652298,-0.161649286746979,-0.162358179688454,-0.973400950431824,-0.037832960486412,0.986783027648926,-0.157569050788879,-0.0827615037560463,0.995056509971619,-0.0548922196030617,-0.0461761206388474,0.995754837989807,0.079625241458416,0.0128821898251772,0.999839246273041,-0.012466648593545,-0.037832960486412,0.986783027648926,-0.157569050788879,-0.0461761206388474,0.995754837989807,0.079625241458416,0.0128821898251772,0.999839246273041,-0.012466648593545,0.038347739726305,0.978506505489349,-0.202619045972824,-0.037832960486412,0.986783027648926,-0.157569050788879,-0.0924620181322098,0.0272552389651537,-0.995343089103699,-0.167169287800789,0.0380874164402485,-0.98519229888916,-0.037832960486412,0.986783027648926,-0.157569050788879,0.157073304057121,-0.0225146096199751,0.987330198287964,0.100840061903,0.00178365060128272,0.994901061058044,
- 0.160783976316452,-0.38603475689888,0.908364236354828,-0.990612387657166,-0.0757627114653587,0.11378588527441,-0.616249620914459,-0.786116242408752,-0.0475136935710907,-0.409701228141785,-0.91150313615799,0.0361506417393684,0.0657862201333046,-0.677508592605591,0.732566833496094,0.160783976316452,-0.38603475689888,0.908364236354828,0.100840061903,0.00178365060128272,0.994901061058044,0.157073304057121,-0.0225146096199751,0.987330198287964,0.992162048816681,-0.0565488077700138,-0.111429817974567,0.990409255027771,0.0159015040844679,-0.137247294187546,0.151005312800407,0.0158736258745193,0.988405466079712,0.157073304057121,-0.0225146096199751,0.987330198287964,0.160783976316452,-0.38603475689888,0.908364236354828,0.423427015542984,-0.808246910572052,0.409202218055725,0.992162048816681,-0.0565488077700138,-0.111429817974567,-0.120815724134445,-0.0103858280926943,-0.992620587348938,0.977174818515778,-0.0333424955606461,-0.209803879261017,-0.121100962162018,-0.145748123526573,-0.98188191652298,0.0517097599804401,0.994154393672943,0.0947787761688232,0.0128821898251772,0.999839246273041,-0.012466648593545,-0.0461761206388474,0.995754837989807,0.079625241458416,0.07721246778965,0.0460807681083679,0.99594920873642,0.0517097599804401,0.994154393672943,0.0947787761688232,-0.0461761206388474,0.995754837989807,0.079625241458416,0.0657862201333046,-0.677508592605591,0.732566833496094,-0.990612387657166,-0.0757627114653587,0.11378588527441,-0.409701228141785,-0.91150313615799,0.0361506417393684,-0.990612387657166,-0.0757627114653587,0.11378588527441,0.100840061903,0.00178365060128272,0.994901061058044,0.0952188819646835,0.0151389176025987,0.995341241359711,-0.993510127067566,-0.0119462795555592,0.11311462521553,0.100840061903,0.00178365060128272,0.994901061058044,-0.990612387657166,-0.0757627114653587,0.11378588527441,0.0657862201333046,-0.677508592605591,0.732566833496094,-0.999864637851715,-0.00998232793062925,0.0130714578554034,-0.199588686227798,-0.107213959097862,-0.973996698856354,-0.167059704661369,-0.140250027179718,-0.975920557975769,
- -0.99873274564743,-0.0427431091666222,0.02656982652843,-0.167169287800789,0.0380874164402485,-0.98519229888916,-0.0827615037560463,0.995056509971619,-0.0548922196030617,-0.037832960486412,0.986783027648926,-0.157569050788879,-0.0827615037560463,0.995056509971619,-0.0548922196030617,-0.998180210590363,0.0385536514222622,0.0463645495474339,-0.918442130088806,0.392287075519562,0.0507438108325005,-0.167169287800789,0.0380874164402485,-0.98519229888916,-0.998180210590363,0.0385536514222622,0.0463645495474339,-0.0827615037560463,0.995056509971619,-0.0548922196030617,-0.037832960486412,0.986783027648926,-0.157569050788879,0.038347739726305,0.978506505489349,-0.202619045972824,-0.0924620181322098,0.0272552389651537,-0.995343089103699,0.980340003967285,-0.0898156240582466,-0.175688788294792,0.038347739726305,0.978506505489349,-0.202619045972824,0.0128821898251772,0.999839246273041,-0.012466648593545,0.038347739726305,0.978506505489349,-0.202619045972824,0.980340003967285,-0.0898156240582466,-0.175688788294792,-0.0924620181322098,0.0272552389651537,-0.995343089103699,0.07721246778965,0.0460807681083679,0.99594920873642,-0.0461761206388474,0.995754837989807,0.079625241458416,-0.988223910331726,0.0979481190443039,0.117557398974895,-0.0461761206388474,0.995754837989807,0.079625241458416,-0.0827615037560463,0.995056509971619,-0.0548922196030617,-0.918442130088806,0.392287075519562,0.0507438108325005,-0.0461761206388474,0.995754837989807,0.079625241458416,-0.918442130088806,0.392287075519562,0.0507438108325005,-0.988223910331726,0.0979481190443039,0.117557398974895,0.976434767246246,0.0169284716248512,-0.215148001909256,-0.113111943006516,-3.09393872157671e-005,-0.993582248687744,-0.118084758520126,0.0700401067733765,-0.99053031206131,0.969416797161102,0.0763482823967934,-0.233242303133011,0.07721246778965,0.0460807681083679,0.99594920873642,0.159791812300682,0.0390055738389492,0.98637992143631,0.0517097599804401,0.994154393672943,0.0947787761688232,0.992145895957947,-0.0699807554483414,-0.103677347302437,0.0517097599804401,0.994154393672943,0.0947787761688232,
- 0.159791812300682,0.0390055738389492,0.98637992143631,0.985407829284668,-0.0916384235024452,-0.143435940146446,0.980340003967285,-0.0898156240582466,-0.175688788294792,0.0128821898251772,0.999839246273041,-0.012466648593545,0.0128821898251772,0.999839246273041,-0.012466648593545,0.992145895957947,-0.0699807554483414,-0.103677347302437,0.985407829284668,-0.0916384235024452,-0.143435940146446,0.992162048816681,-0.0565488077700138,-0.111429817974567,0.423427015542984,-0.808246910572052,0.409202218055725,0.97697788476944,-0.169485032558441,-0.129573196172714,0.990409255027771,0.0159015040844679,-0.137247294187546,0.976434767246246,0.0169284716248512,-0.215148001909256,0.969416797161102,0.0763482823967934,-0.233242303133011,0.983496785163879,0.113393180072308,-0.140982493758202,0.100840061903,0.00178365060128272,0.994901061058044,0.157073304057121,-0.0225146096199751,0.987330198287964,0.151005312800407,0.0158736258745193,0.988405466079712,0.0952188819646835,0.0151389176025987,0.995341241359711,-0.998180210590363,0.0385536514222622,0.0463645495474339,-0.988223910331726,0.0979481190443039,0.117557398974895,-0.918442130088806,0.392287075519562,0.0507438108325005,-0.173896864056587,-0.00317629473283887,-0.984758794307709,-0.177570372819901,0.0768057852983475,-0.981106340885162,-0.142880171537399,0.111404441297054,-0.983450174331665,-0.118084758520126,0.0700401067733765,-0.99053031206131,-0.113111943006516,-3.09393872157671e-005,-0.993582248687744,0.151005312800407,0.0158736258745193,0.988405466079712,0.990409255027771,0.0159015040844679,-0.137247294187546,0.983496785163879,0.113393180072308,-0.140982493758202,0.153681769967079,0.0514443255960941,0.986780285835266,0.0952188819646835,0.0151389176025987,0.995341241359711,0.0834812819957733,0.086889460682869,0.992713928222656,-0.972208201885223,0.212720409035683,0.0977819263935089,-0.993510127067566,-0.0119462795555592,0.11311462521553,-0.994615614414215,-0.095708929002285,0.0397425256669521,-0.186692789196968,-0.0190346725285053,-0.982233881950378,-0.161649286746979,-0.162358179688454,-0.973400950431824,
- -0.616249620914459,-0.786116242408752,-0.0475136935710907,0.977174818515778,-0.0333424955606461,-0.209803879261017,-0.120815724134445,-0.0103858280926943,-0.992620587348938,-0.113111943006516,-3.09393872157671e-005,-0.993582248687744,0.976434767246246,0.0169284716248512,-0.215148001909256,0.97697788476944,-0.169485032558441,-0.129573196172714,0.973296701908112,-0.151589825749397,-0.172377943992615,0.977174818515778,-0.0333424955606461,-0.209803879261017,0.992162048816681,-0.0565488077700138,-0.111429817974567,-0.999288082122803,-0.0148404436185956,0.0346867218613625,-0.993510127067566,-0.0119462795555592,0.11311462521553,-0.972208201885223,0.212720409035683,0.0977819263935089,-0.997922420501709,0.0643404647707939,0.00336038670502603,-0.635561943054199,0.731731176376343,-0.246232569217682,-0.373643219470978,0.404000222682953,-0.834969818592072,-0.177570372819901,0.0768057852983475,-0.981106340885162,-0.997922420501709,0.0643404647707939,0.00336038670502603,0.886197626590729,-0.101121388375759,-0.452137351036072,-0.143029540777206,0.113104470074177,-0.983234465122223,-0.111391931772232,-0.0990494564175606,-0.988828122615814,0.984187960624695,-0.0231493394821882,-0.175607830286026,-0.143029540777206,0.113104470074177,-0.983234465122223,-0.373643219470978,0.404000222682953,-0.834969818592072,-0.167059704661369,-0.140250027179718,-0.975920557975769,-0.111391931772232,-0.0990494564175606,-0.988828122615814,-0.635561943054199,0.731731176376343,-0.246232569217682,-0.322500020265579,0.660095512866974,0.678430378437042,-0.99873274564743,-0.0427431091666222,0.02656982652843,0.0834812819957733,0.086889460682869,0.992713928222656,0.153681769967079,0.0514443255960941,0.986780285835266,0.144440978765488,0.486579149961472,0.86161333322525,-0.322500020265579,0.660095512866974,0.678430378437042,0.969416797161102,0.0763482823967934,-0.233242303133011,-0.118084758520126,0.0700401067733765,-0.99053031206131,-0.143029540777206,0.113104470074177,-0.983234465122223,0.886197626590729,-0.101121388375759,-0.452137351036072,0.9626185297966,0.222785979509354,-0.154051795601845,
- 0.969416797161102,0.0763482823967934,-0.233242303133011,0.886197626590729,-0.101121388375759,-0.452137351036072,-0.373643219470978,0.404000222682953,-0.834969818592072,-0.142880171537399,0.111404441297054,-0.983450174331665,-0.177570372819901,0.0768057852983475,-0.981106340885162,0.144440978765488,0.486579149961472,0.86161333322525,0.983496785163879,0.113393180072308,-0.140982493758202,0.547378242015839,0.830663621425629,0.101857252418995,-0.972208201885223,0.212720409035683,0.0977819263935089,0.0834812819957733,0.086889460682869,0.992713928222656,-0.322500020265579,0.660095512866974,0.678430378437042,-0.635561943054199,0.731731176376343,-0.246232569217682,-0.651366174221039,0.758680582046509,0.0112172933295369,-0.972208201885223,0.212720409035683,0.0977819263935089,-0.322500020265579,0.660095512866974,0.678430378437042,-0.997922420501709,0.0643404647707939,0.00336038670502603,-0.177570372819901,0.0768057852983475,-0.981106340885162,-0.173896864056587,-0.00317629473283887,-0.984758794307709,-0.999288082122803,-0.0148404436185956,0.0346867218613625,-0.99873274564743,-0.0427431091666222,0.02656982652843,-0.167059704661369,-0.140250027179718,-0.975920557975769,-0.373643219470978,0.404000222682953,-0.834969818592072,-0.635561943054199,0.731731176376343,-0.246232569217682,0.982644617557526,-0.0569399744272232,-0.176542565226555,-0.107118040323257,-0.0389670766890049,-0.993482410907745,-0.0924620181322098,0.0272552389651537,-0.995343089103699,0.980340003967285,-0.0898156240582466,-0.175688788294792,-0.107118040323257,-0.0389670766890049,-0.993482410907745,-0.162068650126457,-0.0361305400729179,-0.986117780208588,-0.167169287800789,0.0380874164402485,-0.98519229888916,-0.0924620181322098,0.0272552389651537,-0.995343089103699,-0.990000247955322,0.0294679962098598,0.137953728437424,0.086647167801857,0.00447475491091609,0.996228992938995,0.07721246778965,0.0460807681083679,0.99594920873642,-0.988223910331726,0.0979481190443039,0.117557398974895,-0.997193396091461,0.0289921201765537,0.0690276771783829,-0.990000247955322,0.0294679962098598,0.137953728437424,
- -0.988223910331726,0.0979481190443039,0.117557398974895,-0.998180210590363,0.0385536514222622,0.0463645495474339,0.992162048816681,-0.0565488077700138,-0.111429817974567,0.977174818515778,-0.0333424955606461,-0.209803879261017,0.976434767246246,0.0169284716248512,-0.215148001909256,0.990409255027771,0.0159015040844679,-0.137247294187546,0.9626185297966,0.222785979509354,-0.154051795601845,0.886197626590729,-0.101121388375759,-0.452137351036072,0.984187960624695,-0.0231493394821882,-0.175607830286026,0.993687450885773,-0.0567902885377407,-0.0967483893036842,0.982644617557526,-0.0569399744272232,-0.176542565226555,0.980340003967285,-0.0898156240582466,-0.175688788294792,0.985407829284668,-0.0916384235024452,-0.143435940146446,0.992145895957947,-0.0699807554483414,-0.103677347302437,0.150370374321938,0.00182682275772095,0.988628089427948,0.993687450885773,-0.0567902885377407,-0.0967483893036842,0.992145895957947,-0.0699807554483414,-0.103677347302437,0.159791812300682,0.0390055738389492,0.98637992143631,0.162903875112534,-0.0386844649910927,0.985883355140686,0.118252068758011,-0.0587503090500832,0.99124413728714,0.144440978765488,0.486579149961472,0.86161333322525,-0.322500020265579,0.660095512866974,0.678430378437042,0.118252068758011,-0.0587503090500832,0.99124413728714,0.0875831246376038,-0.0356629639863968,0.995518684387207,0.144440978765488,0.486579149961472,0.86161333322525,0.547378242015839,0.830663621425629,0.101857252418995,0.828769505023956,-0.559590101242065,4.1852894355543e-005,-0.167169287800789,0.0380874164402485,-0.98519229888916,-0.162068650126457,-0.0361305400729179,-0.986117780208588,-0.997193396091461,0.0289921201765537,0.0690276771783829,-0.998180210590363,0.0385536514222622,0.0463645495474339,-0.997922420501709,0.0643404647707939,0.00336038670502603,-0.651366174221039,0.758680582046509,0.0112172933295369,-0.635561943054199,0.731731176376343,-0.246232569217682,-0.118084758520126,0.0700401067733765,-0.99053031206131,-0.142880171537399,0.111404441297054,-0.983450174331665,-0.373643219470978,0.404000222682953,-0.834969818592072,
- -0.143029540777206,0.113104470074177,-0.983234465122223,-0.997922420501709,0.0643404647707939,0.00336038670502603,-0.972208201885223,0.212720409035683,0.0977819263935089,-0.651366174221039,0.758680582046509,0.0112172933295369,0.144440978765488,0.486579149961472,0.86161333322525,0.828769505023956,-0.559590101242065,4.1852894355543e-005,0.996130347251892,-0.0378356836736202,-0.079327829182148,0.162903875112534,-0.0386844649910927,0.985883355140686,0.983496785163879,0.113393180072308,-0.140982493758202,0.9626185297966,0.222785979509354,-0.154051795601845,0.547378242015839,0.830663621425629,0.101857252418995,-0.322500020265579,0.660095512866974,0.678430378437042,0.144440978765488,0.486579149961472,0.86161333322525,0.118252068758011,-0.0587503090500832,0.99124413728714,0.086647167801857,0.00447475491091609,0.996228992938995,0.150370374321938,0.00182682275772095,0.988628089427948,0.159791812300682,0.0390055738389492,0.98637992143631,0.07721246778965,0.0460807681083679,0.99594920873642,0.983496785163879,0.113393180072308,-0.140982493758202,0.969416797161102,0.0763482823967934,-0.233242303133011,0.9626185297966,0.222785979509354,-0.154051795601845,0.9626185297966,0.222785979509354,-0.154051795601845,0.984187960624695,-0.0231493394821882,-0.175607830286026,0.828769505023956,-0.559590101242065,4.1852894355543e-005,0.9626185297966,0.222785979509354,-0.154051795601845,0.828769505023956,-0.559590101242065,4.1852894355543e-005,0.547378242015839,0.830663621425629,0.101857252418995,0.153681769967079,0.0514443255960941,0.986780285835266,0.983496785163879,0.113393180072308,-0.140982493758202,0.144440978765488,0.486579149961472,0.86161333322525,-0.99873274564743,-0.0427431091666222,0.02656982652843,-0.322500020265579,0.660095512866974,0.678430378437042,-0.990576207637787,-0.00270659383386374,0.136936023831367,-0.990576207637787,-0.00270659383386374,0.136936023831367,0.0875831246376038,-0.0356629639863968,0.995518684387207,0.086647167801857,0.00447475491091609,0.996228992938995,-0.990000247955322,0.0294679962098598,0.137953728437424,
- 0.0875831246376038,-0.0356629639863968,0.995518684387207,0.118252068758011,-0.0587503090500832,0.99124413728714,0.162903875112534,-0.0386844649910927,0.985883355140686,0.150370374321938,0.00182682275772095,0.988628089427948,0.086647167801857,0.00447475491091609,0.996228992938995,0.162903875112534,-0.0386844649910927,0.985883355140686,0.996130347251892,-0.0378356836736202,-0.079327829182148,0.993687450885773,-0.0567902885377407,-0.0967483893036842,0.150370374321938,0.00182682275772095,0.988628089427948,0.984187960624695,-0.0231493394821882,-0.175607830286026,0.996130347251892,-0.0378356836736202,-0.079327829182148,0.828769505023956,-0.559590101242065,4.1852894355543e-005,0.984187960624695,-0.0231493394821882,-0.175607830286026,-0.111391931772232,-0.0990494564175606,-0.988828122615814,-0.107118040323257,-0.0389670766890049,-0.993482410907745,0.982644617557526,-0.0569399744272232,-0.176542565226555,-0.111391931772232,-0.0990494564175606,-0.988828122615814,-0.167059704661369,-0.140250027179718,-0.975920557975769,-0.199588686227798,-0.107213959097862,-0.973996698856354,-0.162068650126457,-0.0361305400729179,-0.986117780208588,-0.107118040323257,-0.0389670766890049,-0.993482410907745,-0.997193396091461,0.0289921201765537,0.0690276771783829,-0.162068650126457,-0.0361305400729179,-0.986117780208588,-0.199588686227798,-0.107213959097862,-0.973996698856354,-0.999864637851715,-0.00998232793062925,0.0130714578554034,-0.322500020265579,0.660095512866974,0.678430378437042,0.0875831246376038,-0.0356629639863968,0.995518684387207,-0.990576207637787,-0.00270659383386374,0.136936023831367,-0.99873274564743,-0.0427431091666222,0.02656982652843,-0.990576207637787,-0.00270659383386374,0.136936023831367,-0.990000247955322,0.0294679962098598,0.137953728437424,-0.997193396091461,0.0289921201765537,0.0690276771783829,-0.999864637851715,-0.00998232793062925,0.0130714578554034,-0.994615614414215,-0.095708929002285,0.0397425256669521,-0.990612387657166,-0.0757627114653587,0.11378588527441,-0.993510127067566,-0.0119462795555592,0.11311462521553,
- -0.999288082122803,-0.0148404436185956,0.0346867218613625,-0.173896864056587,-0.00317629473283887,-0.984758794307709,-0.186692789196968,-0.0190346725285053,-0.982233881950378,-0.994615614414215,-0.095708929002285,0.0397425256669521,-0.999288082122803,-0.0148404436185956,0.0346867218613625,-0.113111943006516,-3.09393872157671e-005,-0.993582248687744,-0.120815724134445,-0.0103858280926943,-0.992620587348938,-0.186692789196968,-0.0190346725285053,-0.982233881950378,-0.173896864056587,-0.00317629473283887,-0.984758794307709,0.993687450885773,-0.0567902885377407,-0.0967483893036842,0.996130347251892,-0.0378356836736202,-0.079327829182148,0.984187960624695,-0.0231493394821882,-0.175607830286026,0.982644617557526,-0.0569399744272232,-0.176542565226555,0.973296701908112,-0.151589825749397,-0.172377943992615,-0.121100962162018,-0.145748123526573,-0.98188191652298,0.977174818515778,-0.0333424955606461,-0.209803879261017,-4.20063133788062e-006,-0.290751814842224,0.956798493862152,0.0837837681174278,-0.289674282073975,0.953451156616211,0.087388388812542,0.0582588240504265,0.994469285011292,-1.10850896817283e-006,0.0584958717226982,0.998287618160248,3.14077198027007e-007,0.999849021434784,0.0173778310418129,0.00152782571967691,0.999847650527954,0.0173862501978874,-0.00102454656735063,0.999931454658508,-0.0116593297570944,2.28601933827122e-007,0.999931991100311,-0.0116632003337145,-1.10610028514202e-006,0.0632272735238075,-0.99799907207489,-0.0873624309897423,0.0629895776510239,-0.994183123111725,-0.0831804275512695,-0.311525464057922,-0.946590125560761,-4.14020405514748e-006,-0.312594920396805,-0.949886500835419,1.24896507713856e-006,-0.997514843940735,-0.0704575777053833,-0.00618926296010613,-0.997497260570526,-0.0704335123300552,0.00879701320081949,-0.994937539100647,0.100109294056892,1.62356764121796e-006,-0.994980752468109,0.100066632032394,0.984529554843903,-1.0062073130257e-007,-0.175218686461449,0.984529554843903,-1.0062073130257e-007,-0.175218686461449,0.984529614448547,-1.0405020844928e-007,-0.175218060612679,0.984529674053192,-1.04050229765562e-007,-0.175218060612679,
- 0.984529674053192,-1.04050229765562e-007,-0.175218060612679,0.984529614448547,-1.0405020844928e-007,-0.175218060612679,-0.984529554843903,9.23401728414319e-008,-0.175218686461449,-0.984529554843903,9.23401728414319e-008,-0.175218686461449,-0.984529614448547,1.4238449352888e-007,-0.175218060612679,-0.984529674053192,1.42384507739735e-007,-0.175218060612679,-0.984529674053192,1.42384507739735e-007,-0.175218060612679,-0.984529614448547,1.4238449352888e-007,-0.175218060612679,1.62356764121796e-006,-0.994980752468109,0.100066632032394,0.00879701320081949,-0.994937539100647,0.100109294056892,0.0837837681174278,-0.289674282073975,0.953451156616211,-4.20063133788062e-006,-0.290751814842224,0.956798493862152,0.984528601169586,-7.40065715376659e-008,-0.175223708152771,0.984528601169586,-7.40065715376659e-008,-0.175223708152771,0.984529554843903,-1.0062073130257e-007,-0.175218686461449,0.984529554843903,-1.0062073130257e-007,-0.175218686461449,-4.14020405514748e-006,-0.312594920396805,-0.949886500835419,-0.0831804275512695,-0.311525464057922,-0.946590125560761,-0.00618926296010613,-0.997497260570526,-0.0704335123300552,1.24896507713856e-006,-0.997514843940735,-0.0704575777053833,-0.984528601169586,-2.96026286150664e-007,-0.175223708152771,-0.984528601169586,-2.96026286150664e-007,-0.175223708152771,-0.984529554843903,9.23401728414319e-008,-0.175218686461449,-0.984529554843903,9.23401728414319e-008,-0.175218686461449,3.14077198027007e-007,0.999849021434784,0.0173778310418129,-1.10850896817283e-006,0.0584958717226982,0.998287618160248,0.087388388812542,0.0582588240504265,0.994469285011292,0.00152782571967691,0.999847650527954,0.0173862501978874,-1.10610028514202e-006,0.0632272735238075,-0.99799907207489,2.28601933827122e-007,0.999931991100311,-0.0116632003337145,-0.00102454656735063,0.999931454658508,-0.0116593297570944,-0.0873624309897423,0.0629895776510239,-0.994183123111725,-0.0845786333084106,-0.289778798818588,0.953349173069,-4.20063133788062e-006,-0.290751814842224,0.956798493862152,-1.10850896817283e-006,0.0584958717226982,0.998287618160248,
- -0.0882201045751572,0.0582848079502583,0.994394361972809,-0.00887271109968424,-0.994946777820587,0.100011274218559,1.62356764121796e-006,-0.994980752468109,0.100066632032394,-4.20063133788062e-006,-0.290751814842224,0.956798493862152,-0.0845786333084106,-0.289778798818588,0.953349173069,0.00625302130356431,-0.997493445873261,-0.0704829543828964,1.24896507713856e-006,-0.997514843940735,-0.0704575777053833,1.62356764121796e-006,-0.994980752468109,0.100066632032394,-0.00887271109968424,-0.994946777820587,0.100011274218559,0.0839737877249718,-0.311464816331863,-0.946540057659149,-4.14020405514748e-006,-0.312594920396805,-0.949886500835419,1.24896507713856e-006,-0.997514843940735,-0.0704575777053833,0.00625302130356431,-0.997493445873261,-0.0704829543828964,0.0881940871477127,0.0629732459783554,-0.994110822677612,-1.10610028514202e-006,0.0632272735238075,-0.99799907207489,-4.14020405514748e-006,-0.312594920396805,-0.949886500835419,0.0839737877249718,-0.311464816331863,-0.946540057659149,0.0881940871477127,0.0629732459783554,-0.994110822677612,0.001035145833157,0.999931395053864,-0.0116679416969419,2.28601933827122e-007,0.999931991100311,-0.0116632003337145,-1.10610028514202e-006,0.0632272735238075,-0.99799907207489,-0.00154084444511682,0.999847948551178,0.0173680856823921,3.14077198027007e-007,0.999849021434784,0.0173778310418129,2.28601933827122e-007,0.999931991100311,-0.0116632003337145,0.001035145833157,0.999931395053864,-0.0116679416969419,-0.00154084444511682,0.999847948551178,0.0173680856823921,-0.0882201045751572,0.0582848079502583,0.994394361972809,-1.10850896817283e-006,0.0584958717226982,0.998287618160248,3.14077198027007e-007,0.999849021434784,0.0173778310418129,0.988604128360748,0.0748606473207474,-0.130604565143585,0.992464900016785,0.0168474297970533,-0.121365316212177,0.977075040340424,0.0327518619596958,-0.210360899567604,0.976514935493469,0.0776685997843742,-0.200962767004967,0.97715151309967,-0.0503682866692543,-0.20648980140686,-0.107841774821281,-0.0327898077666759,-0.993627190589905,-0.110620602965355,-0.00691065425053239,-0.993838667869568,
- 0.978625893592834,-0.0039012054912746,-0.205611661076546,-0.99162894487381,-0.00256119342520833,0.129094198346138,-0.995759546756744,0.0026004163082689,0.0919571220874786,-0.999164640903473,0.00963832996785641,0.0397123955190182,0.62515914440155,-0.774247050285339,-0.0985776111483574,0.247951060533524,-0.720178186893463,-0.647968828678131,0.974046230316162,-0.0432251282036304,-0.222183629870415,-0.100984238088131,-0.00948259327560663,-0.994842946529388,-0.0963142514228821,-0.0613045692443848,-0.993461310863495,-0.175580218434334,-0.126074060797691,-0.976359009742737,-0.161192953586578,-0.0106965396553278,-0.986864984035492,-0.898098647594452,-0.402559816837311,0.177100494503975,-0.997515797615051,-0.00783794373273849,0.0700056031346321,-0.991388499736786,0.00545074185356498,0.130839735269547,0.180356964468956,0.00350858084857464,0.983594954013824,0.0674766898155212,0.0550402887165546,0.996201515197754,0.243886038661003,-0.0302401129156351,0.969332277774811,0.8901726603508,0.454202264547348,-0.0359564609825611,0.98257052898407,0.0502917617559433,-0.178957983851433,0.708251178264618,0.690455973148346,-0.147142097353935,-0.982385754585266,0.108652077615261,0.152029752731323,-0.943942010402679,-0.130308344960213,0.303304076194763,-0.994412064552307,-0.0632033199071884,0.0845579653978348,0.114608414471149,-0.0175017267465591,0.993256449699402,0.149890601634979,-0.0129521684721112,0.988617718219757,0.1527289301157,0.0120186461135745,0.988195061683655,0.0925631448626518,0.013906080275774,0.995609700679779,-0.0512487553060055,-0.0248973090201616,-0.998375535011292,-0.112801343202591,-0.0594860389828682,-0.991835236549377,-0.148231640458107,-0.0199266914278269,-0.988751947879791,-0.147850021719933,0.0167715102434158,-0.9888676404953,-0.0887947455048561,0.0154644390568137,-0.995929896831512,-0.995097160339355,0.0150387948378921,0.0977522358298302,-0.998441934585571,0.0150243919342756,0.0537415482103825,-0.997896373271942,-0.0473307110369205,0.0443017221987247,-0.992874503135681,-0.055686105042696,0.105352781713009,0.984154045581818,0.0821482464671135,-0.157138392329216,
- 0.116007164120674,0.00736811803653836,0.99322110414505,0.180356964468956,0.00350858084857464,0.983594954013824,-0.968104660511017,0.175487875938416,0.178821936249733,-0.992874503135681,-0.055686105042696,0.105352781713009,-0.997896373271942,-0.0473307110369205,0.0443017221987247,0.333351612091064,-0.0754115507006645,0.939781725406647,0.16846576333046,0.205317988991737,0.964087009429932,0.976235866546631,-0.168049797415733,-0.136830672621727,-0.101187370717525,0.0276031363755465,-0.99448436498642,-0.101935833692551,-0.00282979290932417,-0.994786977767944,-0.166712611913681,-0.00327083840966225,-0.986000120639801,-0.164172664284706,0.0523799024522305,-0.985039889812469,-0.995759546756744,0.0026004163082689,0.0919571220874786,-0.998129963874817,0.046933438628912,0.0391658954322338,-0.999164640903473,0.00963832996785641,0.0397123955190182,-0.898098647594452,-0.402559816837311,0.177100494503975,-0.985170006752014,-0.106626585125923,0.134427592158318,-0.994680523872375,-0.0745353922247887,0.0710987895727158,0.0649315416812897,-0.234295561909676,0.9699946641922,0.155197188258171,-0.110628888010979,0.981669545173645,0.0267269667237997,-0.0691518187522888,0.997248113155365,0.971259474754334,0.152571469545364,-0.182693794369698,0.976514935493469,0.0776685997843742,-0.200962767004967,-0.0887947455048561,0.0154644390568137,-0.995929896831512,-0.999095559120178,-0.00871526729315519,0.0416195876896381,-0.983844637870789,-0.0536705516278744,0.170790076255798,-0.99485319852829,-0.0174114666879177,0.0998188257217407,-0.998366355895996,-0.0165948774665594,0.0546735711395741,-0.99162894487381,-0.00256119342520833,0.129094198346138,-0.983574151992798,0.0601137168705463,0.170200854539871,-0.995759546756744,0.0026004163082689,0.0919571220874786,0.0840829610824585,-0.101594358682632,0.991266191005707,0.106227695941925,-0.000647831126116216,0.994341552257538,-0.983844637870789,-0.0536705516278744,0.170790076255798,-0.994013428688049,0.0991069152951241,0.0459898374974728,-0.153995499014854,0.0265429597347975,-0.987714946269989,-0.998441934585571,0.0150243919342756,0.0537415482103825,
- 0.0251489747315645,0.913362264633179,0.406370341777802,0.0726153254508972,0.00309894164092839,0.997355222702026,0.0514859296381474,-0.00696552079170942,0.99864935874939,-0.652877569198608,0.73110818862915,0.19806994497776,-0.773912906646729,-0.226618841290474,0.591356515884399,-0.996545314788818,-0.00186543667223305,0.0830310508608818,0.0199644137173891,-0.142054751515388,0.989657461643219,0.193675577640533,-0.00533091649413109,0.9810511469841,0.155174031853676,-0.134825095534325,0.978643536567688,-0.868286550045013,-0.165928810834885,-0.467489153146744,-0.148231640458107,-0.0199266914278269,-0.988751947879791,-0.249893486499786,0.170515865087509,-0.953140914440155,0.0559291653335094,0.00147222960367799,0.998433649539948,0.143638834357262,0.00525984447449446,0.989616215229034,0.155197188258171,-0.110628888010979,0.981669545173645,0.0649315416812897,-0.234295561909676,0.9699946641922,0.114608414471149,-0.0175017267465591,0.993256449699402,0.0199644137173891,-0.142054751515388,0.989657461643219,0.149890601634979,-0.0129521684721112,0.988617718219757,-0.999164640903473,0.00963832996785641,0.0397123955190182,-0.998129963874817,0.046933438628912,0.0391658954322338,-0.853278160095215,0.278218597173691,-0.441033899784088,0.984154045581818,0.0821482464671135,-0.157138392329216,0.180356964468956,0.00350858084857464,0.983594954013824,0.988604128360748,0.0748606473207474,-0.130604565143585,0.0267269667237997,-0.0691518187522888,0.997248113155365,0.155197188258171,-0.110628888010979,0.981669545173645,0.243886038661003,-0.0302401129156351,0.969332277774811,-0.177524253726006,-0.0558114051818848,-0.982532560825348,-0.111538469791412,-0.0363771729171276,-0.993094146251678,-0.180097445845604,-0.099337138235569,-0.978619933128357,-0.172861009836197,0.114083901047707,-0.978316843509674,-0.608285069465637,-0.0218764934688807,-0.793417036533356,-0.180097445845604,-0.099337138235569,-0.978619933128357,0.160063579678535,-0.0202300772070885,0.986899435520172,0.0858532339334488,-0.0335724763572216,0.995741963386536,0.0880049765110016,-0.35284361243248,0.931534469127655,
- -0.996545314788818,-0.00186543667223305,0.0830310508608818,-0.999095559120178,-0.00871526729315519,0.0416195876896381,-0.998129963874817,0.046933438628912,0.0391658954322338,-0.180097445845604,-0.099337138235569,-0.978619933128357,-0.608285069465637,-0.0218764934688807,-0.793417036533356,-0.177524253726006,-0.0558114051818848,-0.982532560825348,0.987791061401367,0.0137574002146721,-0.155175298452377,0.984154045581818,0.0821482464671135,-0.157138392329216,0.988604128360748,0.0748606473207474,-0.130604565143585,0.976514935493469,0.0776685997843742,-0.200962767004967,0.971259474754334,0.152571469545364,-0.182693794369698,-0.0887947455048561,0.0154644390568137,-0.995929896831512,0.976514935493469,0.0776685997843742,-0.200962767004967,0.977075040340424,0.0327518619596958,-0.210360899567604,-0.0512487553060055,-0.0248973090201616,-0.998375535011292,0.977075040340424,0.0327518619596958,-0.210360899567604,0.910472750663757,0.402510792016983,-0.0949966609477997,0.955891013145447,0.16238808631897,-0.244749739766121,0.983741939067841,0.020616052672267,-0.178400784730911,0.99454140663147,0.0111738117411733,-0.103743404150009,0.992068707942963,-0.0438399724662304,-0.117803037166595,0.982086420059204,-0.0417813211679459,-0.183740422129631,-0.0926867946982384,0.0317794643342495,-0.995187997817993,-0.158193841576576,0.0131885893642902,-0.987320005893707,-0.0197336934506893,0.170106813311577,-0.985228061676025,-0.10138463228941,0.0270068403333426,-0.994480609893799,0.242891386151314,0.455188632011414,-0.856625378131866,0.975539803504944,0.0847365483641624,-0.202834621071815,-0.773912906646729,-0.226618841290474,0.591356515884399,-0.983844637870789,-0.0536705516278744,0.170790076255798,-0.996545314788818,-0.00186543667223305,0.0830310508608818,-0.0887947455048561,0.0154644390568137,-0.995929896831512,-0.112722404301167,0.072281651198864,-0.990993976593018,0.971259474754334,0.152571469545364,-0.182693794369698,0.733907163143158,-0.463228076696396,-0.496789872646332,-0.112722404301167,0.072281651198864,-0.990993976593018,-0.180097445845604,-0.099337138235569,-0.978619933128357,
- -0.997515797615051,-0.00783794373273849,0.0700056031346321,-0.898098647594452,-0.402559816837311,0.177100494503975,-0.968356728553772,-0.239615008234978,0.069783978164196,-0.249893486499786,0.170515865087509,-0.953140914440155,-0.0197336934506893,0.170106813311577,-0.985228061676025,-0.158193841576576,0.0131885893642902,-0.987320005893707,0.733907163143158,-0.463228076696396,-0.496789872646332,-0.111538469791412,-0.0363771729171276,-0.993094146251678,0.959493339061737,-0.214819058775902,-0.182278379797935,-0.0926867946982384,0.0317794643342495,-0.995187997817993,0.971533536911011,0.123709358274937,-0.202036380767822,0.981721460819244,0.0328084081411362,-0.187473982572556,-0.100984238088131,-0.00948259327560663,-0.994842946529388,-0.0926867946982384,0.0317794643342495,-0.995187997817993,-0.0197336934506893,0.170106813311577,-0.985228061676025,0.6046422123909,0.506166636943817,-0.614982187747955,0.971533536911011,0.123709358274937,-0.202036380767822,-0.0197336934506893,0.170106813311577,-0.985228061676025,0.977075040340424,0.0327518619596958,-0.210360899567604,0.6046422123909,0.506166636943817,-0.614982187747955,0.114608414471149,-0.0175017267465591,0.993256449699402,0.0925631448626518,0.013906080275774,0.995609700679779,-0.274610668420792,-0.185993015766144,0.943395793437958,0.114608414471149,-0.0175017267465591,0.993256449699402,-0.274610668420792,-0.185993015766144,0.943395793437958,0.0199644137173891,-0.142054751515388,0.989657461643219,0.243886038661003,-0.0302401129156351,0.969332277774811,0.0674766898155212,0.0550402887165546,0.996201515197754,0.0267269667237997,-0.0691518187522888,0.997248113155365,-0.994680523872375,-0.0745353922247887,0.0710987895727158,-0.985170006752014,-0.106626585125923,0.134427592158318,-0.991715550422668,-0.0107607888057828,0.128001853823662,-0.99162894487381,-0.00256119342520833,0.129094198346138,-0.363416999578476,-0.357183068990707,-0.860434889793396,-0.153995499014854,0.0265429597347975,-0.987714946269989,-0.994013428688049,0.0991069152951241,0.0459898374974728,-0.120213240385056,0.0674027428030968,-0.99045729637146,
- -0.153995499014854,0.0265429597347975,-0.987714946269989,-0.363416999578476,-0.357183068990707,-0.860434889793396,0.764397263526917,-0.619447350502014,-0.178834587335587,0.855371236801147,-0.498781263828278,-0.139847606420517,0.983741939067841,0.020616052672267,-0.178400784730911,-0.101935833692551,-0.00282979290932417,-0.994786977767944,-0.101187370717525,0.0276031363755465,-0.99448436498642,0.983741939067841,0.020616052672267,-0.178400784730911,0.982086420059204,-0.0417813211679459,-0.183740422129631,-0.968356728553772,-0.239615008234978,0.069783978164196,-0.898098647594452,-0.402559816837311,0.177100494503975,-0.994680523872375,-0.0745353922247887,0.0710987895727158,-0.249893486499786,0.170515865087509,-0.953140914440155,-0.994680523872375,-0.0745353922247887,0.0710987895727158,-0.868286550045013,-0.165928810834885,-0.467489153146744,0.242891386151314,0.455188632011414,-0.856625378131866,0.708251178264618,0.690455973148346,-0.147142097353935,0.98257052898407,0.0502917617559433,-0.178957983851433,0.975539803504944,0.0847365483641624,-0.202834621071815,0.98257052898407,0.0502917617559433,-0.178957983851433,0.990049242973328,0.00765635445713997,-0.140512451529503,0.991921603679657,0.000337057223077863,-0.126852035522461,0.978625893592834,-0.0039012054912746,-0.205611661076546,0.975539803504944,0.0847365483641624,-0.202834621071815,0.0514859296381474,-0.00696552079170942,0.99864935874939,0.0726153254508972,0.00309894164092839,0.997355222702026,0.16846576333046,0.205317988991737,0.964087009429932,-0.153995499014854,0.0265429597347975,-0.987714946269989,-0.156974628567696,-0.00663426239043474,-0.987580358982086,-0.998441934585571,0.0150243919342756,0.0537415482103825,0.910472750663757,0.402510792016983,-0.0949966609477997,0.243886038661003,-0.0302401129156351,0.969332277774811,0.155197188258171,-0.110628888010979,0.981669545173645,0.143638834357262,0.00525984447449446,0.989616215229034,0.983579933643341,0.132477626204491,-0.122556634247303,0.155197188258171,-0.110628888010979,0.981669545173645,0.155174031853676,-0.134825095534325,0.978643536567688,
- 0.193675577640533,-0.00533091649413109,0.9810511469841,0.99454140663147,0.0111738117411733,-0.103743404150009,0.155174031853676,-0.134825095534325,0.978643536567688,0.149890601634979,-0.0129521684721112,0.988617718219757,0.0199644137173891,-0.142054751515388,0.989657461643219,0.16846576333046,0.205317988991737,0.964087009429932,0.116007164120674,0.00736811803653836,0.99322110414505,0.984154045581818,0.0821482464671135,-0.157138392329216,0.1527289301157,0.0120186461135745,0.988195061683655,0.991921603679657,0.000337057223077863,-0.126852035522461,0.990049242973328,0.00765635445713997,-0.140512451529503,0.163865566253662,0.0497608333826065,0.985226809978485,-0.18482817709446,-0.0459370128810406,-0.981696724891663,0.247951060533524,-0.720178186893463,-0.647968828678131,-0.409213542938232,-0.789456784725189,-0.457495778799057,0.992464900016785,0.0168474297970533,-0.121365316212177,0.243886038661003,-0.0302401129156351,0.969332277774811,0.910472750663757,0.402510792016983,-0.0949966609477997,0.977075040340424,0.0327518619596958,-0.210360899567604,0.992464900016785,0.0168474297970533,-0.121365316212177,0.910472750663757,0.402510792016983,-0.0949966609477997,0.0840829610824585,-0.101594358682632,0.991266191005707,-0.983844637870789,-0.0536705516278744,0.170790076255798,-0.773912906646729,-0.226618841290474,0.591356515884399,-0.773912906646729,-0.226618841290474,0.591356515884399,0.0251489747315645,0.913362264633179,0.406370341777802,0.0514859296381474,-0.00696552079170942,0.99864935874939,0.0925631448626518,0.013906080275774,0.995609700679779,0.0717057883739471,0.0882684737443924,0.993512392044067,-0.982385754585266,0.108652077615261,0.152029752731323,0.0925631448626518,0.013906080275774,0.995609700679779,-0.982385754585266,0.108652077615261,0.152029752731323,-0.995097160339355,0.0150387948378921,0.0977522358298302,-0.141753032803535,0.452451795339584,-0.88045060634613,-0.164172664284706,0.0523799024522305,-0.985039889812469,-0.963895440101624,0.260735988616943,0.0540573298931122,-0.994680523872375,-0.0745353922247887,0.0710987895727158,
- -0.249893486499786,0.170515865087509,-0.953140914440155,-0.968356728553772,-0.239615008234978,0.069783978164196,-0.249893486499786,0.170515865087509,-0.953140914440155,-0.997515797615051,-0.00783794373273849,0.0700056031346321,-0.968356728553772,-0.239615008234978,0.069783978164196,0.98257052898407,0.0502917617559433,-0.178957983851433,0.8901726603508,0.454202264547348,-0.0359564609825611,0.990049242973328,0.00765635445713997,-0.140512451529503,-0.773912906646729,-0.226618841290474,0.591356515884399,0.0514859296381474,-0.00696552079170942,0.99864935874939,0.0840829610824585,-0.101594358682632,0.991266191005707,0.910472750663757,0.402510792016983,-0.0949966609477997,0.155197188258171,-0.110628888010979,0.981669545173645,0.983579933643341,0.132477626204491,-0.122556634247303,0.690338253974915,0.718973577022552,-0.0806845054030418,-0.994680523872375,-0.0745353922247887,0.0710987895727158,-0.999164640903473,0.00963832996785641,0.0397123955190182,-0.868286550045013,-0.165928810834885,-0.467489153146744,0.1527289301157,0.0120186461135745,0.988195061683655,0.163865566253662,0.0497608333826065,0.985226809978485,0.0717057883739471,0.0882684737443924,0.993512392044067,0.0925631448626518,0.013906080275774,0.995609700679779,0.106227695941925,-0.000647831126116216,0.994341552257538,0.193676397204399,-0.0271543711423874,0.980689644813538,0.193675577640533,-0.00533091649413109,0.9810511469841,-0.997515797615051,-0.00783794373273849,0.0700056031346321,-0.158193841576576,0.0131885893642902,-0.987320005893707,-0.161192953586578,-0.0106965396553278,-0.986864984035492,-0.997724235057831,-0.0119441375136375,0.0663608908653259,-0.158193841576576,0.0131885893642902,-0.987320005893707,-0.997515797615051,-0.00783794373273849,0.0700056031346321,-0.249893486499786,0.170515865087509,-0.953140914440155,0.0858253613114357,0.0192968659102917,0.996123313903809,0.0674766898155212,0.0550402887165546,0.996201515197754,0.180356964468956,0.00350858084857464,0.983594954013824,-0.994013428688049,0.0991069152951241,0.0459898374974728,-0.994412064552307,-0.0632033199071884,0.0845579653978348,
- -0.363416999578476,-0.357183068990707,-0.860434889793396,-0.982385754585266,0.108652077615261,0.152029752731323,-0.994412064552307,-0.0632033199071884,0.0845579653978348,-0.994013428688049,0.0991069152951241,0.0459898374974728,-0.147850021719933,0.0167715102434158,-0.9888676404953,-0.999164640903473,0.00963832996785641,0.0397123955190182,-0.853278160095215,0.278218597173691,-0.441033899784088,0.976235866546631,-0.168049797415733,-0.136830672621727,0.193676397204399,-0.0271543711423874,0.980689644813538,0.333351612091064,-0.0754115507006645,0.939781725406647,-0.991715550422668,-0.0107607888057828,0.128001853823662,0.0858253613114357,0.0192968659102917,0.996123313903809,-0.99162894487381,-0.00256119342520833,0.129094198346138,0.0858253613114357,0.0192968659102917,0.996123313903809,-0.983574151992798,0.0601137168705463,0.170200854539871,-0.99162894487381,-0.00256119342520833,0.129094198346138,-0.997896373271942,-0.0473307110369205,0.0443017221987247,-0.167642295360565,-0.0328596606850624,-0.985300123691559,-0.141753032803535,0.452451795339584,-0.88045060634613,-0.963895440101624,0.260735988616943,0.0540573298931122,-0.963895440101624,0.260735988616943,0.0540573298931122,-0.968104660511017,0.175487875938416,0.178821936249733,-0.997896373271942,-0.0473307110369205,0.0443017221987247,-0.172861009836197,0.114083901047707,-0.978316843509674,-0.147850021719933,0.0167715102434158,-0.9888676404953,-0.853278160095215,0.278218597173691,-0.441033899784088,-0.998129963874817,0.046933438628912,0.0391658954322338,-0.608285069465637,-0.0218764934688807,-0.793417036533356,-0.172861009836197,0.114083901047707,-0.978316843509674,-0.853278160095215,0.278218597173691,-0.441033899784088,-0.898098647594452,-0.402559816837311,0.177100494503975,0.0649315416812897,-0.234295561909676,0.9699946641922,-0.985170006752014,-0.106626585125923,0.134427592158318,-0.983707964420319,0.0608312115073204,0.169169038534164,0.0633188709616661,0.0892033129930496,0.99399870634079,0.0975037440657616,0.126533165574074,0.9871586561203,-0.984651327133179,0.0880941450595856,0.150668874382973,
- -0.0512487553060055,-0.0248973090201616,-0.998375535011292,0.977075040340424,0.0327518619596958,-0.210360899567604,-0.0197336934506893,0.170106813311577,-0.985228061676025,0.0267269667237997,-0.0691518187522888,0.997248113155365,-0.991715550422668,-0.0107607888057828,0.128001853823662,-0.985170006752014,-0.106626585125923,0.134427592158318,-0.985170006752014,-0.106626585125923,0.134427592158318,0.0649315416812897,-0.234295561909676,0.9699946641922,0.0267269667237997,-0.0691518187522888,0.997248113155365,-0.652877569198608,0.73110818862915,0.19806994497776,-0.995759546756744,0.0026004163082689,0.0919571220874786,-0.983574151992798,0.0601137168705463,0.170200854539871,-0.112801343202591,-0.0594860389828682,-0.991835236549377,-0.0197336934506893,0.170106813311577,-0.985228061676025,-0.249893486499786,0.170515865087509,-0.953140914440155,-0.0512487553060055,-0.0248973090201616,-0.998375535011292,-0.0197336934506893,0.170106813311577,-0.985228061676025,-0.112801343202591,-0.0594860389828682,-0.991835236549377,0.0858532339334488,-0.0335724763572216,0.995741963386536,-0.416357636451721,-0.840691745281219,0.346242278814316,0.0880049765110016,-0.35284361243248,0.931534469127655,-0.416357636451721,-0.840691745281219,0.346242278814316,-0.991580843925476,-0.0162327606230974,0.128467708826065,-0.922003984451294,-0.370136320590973,0.113612927496433,-0.164172664284706,0.0523799024522305,-0.985039889812469,-0.998221576213837,0.00575685314834118,0.05933503434062,-0.963895440101624,0.260735988616943,0.0540573298931122,0.995029449462891,-0.0417321249842644,-0.0904153510928154,0.855371236801147,-0.498781263828278,-0.139847606420517,0.991623997688293,0.0183471851050854,-0.127848505973816,0.0858532339334488,-0.0335724763572216,0.995741963386536,-0.991580843925476,-0.0162327606230974,0.128467708826065,-0.416357636451721,-0.840691745281219,0.346242278814316,-0.996545314788818,-0.00186543667223305,0.0830310508608818,-0.998129963874817,0.046933438628912,0.0391658954322338,-0.995759546756744,0.0026004163082689,0.0919571220874786,-0.652877569198608,0.73110818862915,0.19806994497776,
- -0.996545314788818,-0.00186543667223305,0.0830310508608818,-0.995759546756744,0.0026004163082689,0.0919571220874786,-0.112722404301167,0.072281651198864,-0.990993976593018,0.733907163143158,-0.463228076696396,-0.496789872646332,0.971259474754334,0.152571469545364,-0.182693794369698,0.971259474754334,0.152571469545364,-0.182693794369698,0.733907163143158,-0.463228076696396,-0.496789872646332,0.987791061401367,0.0137574002146721,-0.155175298452377,-0.99485319852829,-0.0174114666879177,0.0998188257217407,0.079021267592907,0.0786969512701035,0.993761837482452,-0.993870317935944,0.00648068636655808,0.110362000763416,0.079021267592907,0.0786969512701035,0.993761837482452,-0.968104660511017,0.175487875938416,0.178821936249733,-0.993870317935944,0.00648068636655808,0.110362000763416,0.0840829610824585,-0.101594358682632,0.991266191005707,0.0514859296381474,-0.00696552079170942,0.99864935874939,0.157657116651535,-0.0555869862437248,0.985928118228912,0.0880049765110016,-0.35284361243248,0.931534469127655,0.357784062623978,-0.750888586044312,0.55511873960495,0.160063579678535,-0.0202300772070885,0.986899435520172,0.987513661384583,-0.0305798202753067,-0.154537364840508,0.357784062623978,-0.750888586044312,0.55511873960495,0.62515914440155,-0.774247050285339,-0.0985776111483574,0.16846576333046,0.205317988991737,0.964087009429932,0.984154045581818,0.0821482464671135,-0.157138392329216,0.987791061401367,0.0137574002146721,-0.155175298452377,0.16846576333046,0.205317988991737,0.964087009429932,0.987791061401367,0.0137574002146721,-0.155175298452377,0.976235866546631,-0.168049797415733,-0.136830672621727,-0.111538469791412,-0.0363771729171276,-0.993094146251678,0.733907163143158,-0.463228076696396,-0.496789872646332,-0.180097445845604,-0.099337138235569,-0.978619933128357,0.357784062623978,-0.750888586044312,0.55511873960495,0.987513661384583,-0.0305798202753067,-0.154537364840508,0.160063579678535,-0.0202300772070885,0.986899435520172,-0.608285069465637,-0.0218764934688807,-0.793417036533356,-0.998129963874817,0.046933438628912,0.0391658954322338,
- -0.999095559120178,-0.00871526729315519,0.0416195876896381,-0.18482817709446,-0.0459370128810406,-0.981696724891663,-0.409213542938232,-0.789456784725189,-0.457495778799057,-0.996138453483582,-0.0591917298734188,0.0648419931530952,-0.148231640458107,-0.0199266914278269,-0.988751947879791,-0.112801343202591,-0.0594860389828682,-0.991835236549377,-0.249893486499786,0.170515865087509,-0.953140914440155,0.0674766898155212,0.0550402887165546,0.996201515197754,0.0858253613114357,0.0192968659102917,0.996123313903809,-0.991715550422668,-0.0107607888057828,0.128001853823662,0.0267269667237997,-0.0691518187522888,0.997248113155365,0.0674766898155212,0.0550402887165546,0.996201515197754,-0.991715550422668,-0.0107607888057828,0.128001853823662,0.733907163143158,-0.463228076696396,-0.496789872646332,0.976235866546631,-0.168049797415733,-0.136830672621727,0.987791061401367,0.0137574002146721,-0.155175298452377,-0.409213542938232,-0.789456784725189,-0.457495778799057,-0.416357636451721,-0.840691745281219,0.346242278814316,-0.922003984451294,-0.370136320590973,0.113612927496433,-0.409213542938232,-0.789456784725189,-0.457495778799057,-0.922003984451294,-0.370136320590973,0.113612927496433,-0.996138453483582,-0.0591917298734188,0.0648419931530952,-0.101187370717525,0.0276031363755465,-0.99448436498642,0.764397263526917,-0.619447350502014,-0.178834587335587,0.983741939067841,0.020616052672267,-0.178400784730911,-0.180097445845604,-0.099337138235569,-0.978619933128357,-0.112722404301167,0.072281651198864,-0.990993976593018,-0.172861009836197,0.114083901047707,-0.978316843509674,-0.177524253726006,-0.0558114051818848,-0.982532560825348,-0.608285069465637,-0.0218764934688807,-0.793417036533356,-0.999095559120178,-0.00871526729315519,0.0416195876896381,-0.164172664284706,0.0523799024522305,-0.985039889812469,-0.166712611913681,-0.00327083840966225,-0.986000120639801,-0.998366355895996,-0.0165948774665594,0.0546735711395741,-0.998221576213837,0.00575685314834118,0.05933503434062,-0.101187370717525,0.0276031363755465,-0.99448436498642,-0.114051952958107,-0.138395830988884,-0.983788013458252,
- 0.764397263526917,-0.619447350502014,-0.178834587335587,-0.10138463228941,0.0270068403333426,-0.994480609893799,-0.110620602965355,-0.00691065425053239,-0.993838667869568,-0.156974628567696,-0.00663426239043474,-0.987580358982086,-0.153995499014854,0.0265429597347975,-0.987714946269989,-0.120213240385056,0.0674027428030968,-0.99045729637146,-0.120213240385056,0.0674027428030968,-0.99045729637146,-0.363416999578476,-0.357183068990707,-0.860434889793396,0.242891386151314,0.455188632011414,-0.856625378131866,-0.10138463228941,0.0270068403333426,-0.994480609893799,0.169117510318756,0.0700531080365181,0.983103096485138,0.0453331172466278,-0.023306155577302,0.998700022697449,0.0717057883739471,0.0882684737443924,0.993512392044067,0.163865566253662,0.0497608333826065,0.985226809978485,-0.943942010402679,-0.130308344960213,0.303304076194763,-0.982385754585266,0.108652077615261,0.152029752731323,0.0717057883739471,0.0882684737443924,0.993512392044067,0.0453331172466278,-0.023306155577302,0.998700022697449,-0.274610668420792,-0.185993015766144,0.943395793437958,0.0925631448626518,0.013906080275774,0.995609700679779,-0.992874503135681,-0.055686105042696,0.105352781713009,-0.968104660511017,0.175487875938416,0.178821936249733,-0.274610668420792,-0.185993015766144,0.943395793437958,-0.992874503135681,-0.055686105042696,0.105352781713009,0.079021267592907,0.0786969512701035,0.993761837482452,0.193675577640533,-0.00533091649413109,0.9810511469841,0.0199644137173891,-0.142054751515388,0.989657461643219,0.157657116651535,-0.0555869862437248,0.985928118228912,0.193676397204399,-0.0271543711423874,0.980689644813538,0.106227695941925,-0.000647831126116216,0.994341552257538,0.0840829610824585,-0.101594358682632,0.991266191005707,0.0514859296381474,-0.00696552079170942,0.99864935874939,0.333351612091064,-0.0754115507006645,0.939781725406647,0.157657116651535,-0.0555869862437248,0.985928118228912,0.16846576333046,0.205317988991737,0.964087009429932,0.333351612091064,-0.0754115507006645,0.939781725406647,0.0514859296381474,-0.00696552079170942,0.99864935874939,
- 0.149890601634979,-0.0129521684721112,0.988617718219757,0.991623997688293,0.0183471851050854,-0.127848505973816,0.991921603679657,0.000337057223077863,-0.126852035522461,0.1527289301157,0.0120186461135745,0.988195061683655,0.995029449462891,-0.0417321249842644,-0.0904153510928154,0.991623997688293,0.0183471851050854,-0.127848505973816,0.149890601634979,-0.0129521684721112,0.988617718219757,0.995029449462891,-0.0417321249842644,-0.0904153510928154,0.149890601634979,-0.0129521684721112,0.988617718219757,0.155174031853676,-0.134825095534325,0.978643536567688,0.155174031853676,-0.134825095534325,0.978643536567688,0.99454140663147,0.0111738117411733,-0.103743404150009,0.995029449462891,-0.0417321249842644,-0.0904153510928154,0.992311596870422,0.0317430943250656,-0.119624428451061,0.147723466157913,0.011752113699913,0.988958895206451,0.140047505497932,-0.0529138520359993,0.988729894161224,0.993973553180695,-0.0347455777227879,-0.10396733880043,-0.18482817709446,-0.0459370128810406,-0.981696724891663,-0.103665381669998,-0.038993164896965,-0.993847608566284,0.247951060533524,-0.720178186893463,-0.647968828678131,0.974046230316162,-0.0432251282036304,-0.222183629870415,0.247951060533524,-0.720178186893463,-0.647968828678131,-0.103665381669998,-0.038993164896965,-0.993847608566284,0.981859385967255,-0.0278494320809841,-0.187554031610489,0.987513661384583,-0.0305798202753067,-0.154537364840508,0.62515914440155,-0.774247050285339,-0.0985776111483574,0.62515914440155,-0.774247050285339,-0.0985776111483574,0.974046230316162,-0.0432251282036304,-0.222183629870415,0.981859385967255,-0.0278494320809841,-0.187554031610489,-0.652877569198608,0.73110818862915,0.19806994497776,0.0251489747315645,0.913362264633179,0.406370341777802,-0.773912906646729,-0.226618841290474,0.591356515884399,-0.652877569198608,0.73110818862915,0.19806994497776,0.0726153254508972,0.00309894164092839,0.997355222702026,0.0251489747315645,0.913362264633179,0.406370341777802,0.0858253613114357,0.0192968659102917,0.996123313903809,0.0726153254508972,0.00309894164092839,0.997355222702026,
- -0.983574151992798,0.0601137168705463,0.170200854539871,0.0199644137173891,-0.142054751515388,0.989657461643219,-0.274610668420792,-0.185993015766144,0.943395793437958,-0.968104660511017,0.175487875938416,0.178821936249733,0.079021267592907,0.0786969512701035,0.993761837482452,0.0199644137173891,-0.142054751515388,0.989657461643219,-0.968104660511017,0.175487875938416,0.178821936249733,0.106227695941925,-0.000647831126116216,0.994341552257538,0.079021267592907,0.0786969512701035,0.993761837482452,-0.99485319852829,-0.0174114666879177,0.0998188257217407,-0.983844637870789,-0.0536705516278744,0.170790076255798,0.106227695941925,-0.000647831126116216,0.994341552257538,-0.99485319852829,-0.0174114666879177,0.0998188257217407,0.6046422123909,0.506166636943817,-0.614982187747955,0.977075040340424,0.0327518619596958,-0.210360899567604,0.955891013145447,0.16238808631897,-0.244749739766121,0.971533536911011,0.123709358274937,-0.202036380767822,0.6046422123909,0.506166636943817,-0.614982187747955,0.955891013145447,0.16238808631897,-0.244749739766121,0.682727813720703,0.715469241142273,-0.148278400301933,0.981721460819244,0.0328084081411362,-0.187473982572556,0.992311596870422,0.0317430943250656,-0.119624428451061,0.993973553180695,-0.0347455777227879,-0.10396733880043,0.980995416641235,-0.0566188879311085,-0.185586676001549,-0.114051952958107,-0.138395830988884,-0.983788013458252,-0.141753032803535,0.452451795339584,-0.88045060634613,-0.167642295360565,-0.0328596606850624,-0.985300123691559,-0.101187370717525,0.0276031363755465,-0.99448436498642,-0.141753032803535,0.452451795339584,-0.88045060634613,-0.114051952958107,-0.138395830988884,-0.983788013458252,-0.101187370717525,0.0276031363755465,-0.99448436498642,-0.164172664284706,0.0523799024522305,-0.985039889812469,-0.141753032803535,0.452451795339584,-0.88045060634613,0.193675577640533,-0.00533091649413109,0.9810511469841,0.193676397204399,-0.0271543711423874,0.980689644813538,0.992068707942963,-0.0438399724662304,-0.117803037166595,0.99454140663147,0.0111738117411733,-0.103743404150009,
- 0.975539803504944,0.0847365483641624,-0.202834621071815,0.978625893592834,-0.0039012054912746,-0.205611661076546,-0.110620602965355,-0.00691065425053239,-0.993838667869568,-0.10138463228941,0.0270068403333426,-0.994480609893799,0.991623997688293,0.0183471851050854,-0.127848505973816,0.97715151309967,-0.0503682866692543,-0.20648980140686,0.978625893592834,-0.0039012054912746,-0.205611661076546,0.991921603679657,0.000337057223077863,-0.126852035522461,-0.994013428688049,0.0991069152951241,0.0459898374974728,-0.998441934585571,0.0150243919342756,0.0537415482103825,-0.995097160339355,0.0150387948378921,0.0977522358298302,-0.982385754585266,0.108652077615261,0.152029752731323,-0.156974628567696,-0.00663426239043474,-0.987580358982086,-0.167642295360565,-0.0328596606850624,-0.985300123691559,-0.997896373271942,-0.0473307110369205,0.0443017221987247,-0.998441934585571,0.0150243919342756,0.0537415482103825,0.0925631448626518,0.013906080275774,0.995609700679779,-0.995097160339355,0.0150387948378921,0.0977522358298302,-0.992874503135681,-0.055686105042696,0.105352781713009,-0.110620602965355,-0.00691065425053239,-0.993838667869568,-0.107841774821281,-0.0327898077666759,-0.993627190589905,-0.167642295360565,-0.0328596606850624,-0.985300123691559,-0.156974628567696,-0.00663426239043474,-0.987580358982086,-0.111538469791412,-0.0363771729171276,-0.993094146251678,-0.177524253726006,-0.0558114051818848,-0.982532560825348,-0.166712611913681,-0.00327083840966225,-0.986000120639801,-0.101935833692551,-0.00282979290932417,-0.994786977767944,0.982086420059204,-0.0417813211679459,-0.183740422129631,0.992068707942963,-0.0438399724662304,-0.117803037166595,0.976235866546631,-0.168049797415733,-0.136830672621727,0.959493339061737,-0.214819058775902,-0.182278379797935,-0.111538469791412,-0.0363771729171276,-0.993094146251678,-0.101935833692551,-0.00282979290932417,-0.994786977767944,0.982086420059204,-0.0417813211679459,-0.183740422129631,0.959493339061737,-0.214819058775902,-0.182278379797935,-0.998366355895996,-0.0165948774665594,0.0546735711395741,
- -0.166712611913681,-0.00327083840966225,-0.986000120639801,-0.177524253726006,-0.0558114051818848,-0.982532560825348,-0.999095559120178,-0.00871526729315519,0.0416195876896381,0.992068707942963,-0.0438399724662304,-0.117803037166595,0.193676397204399,-0.0271543711423874,0.980689644813538,0.976235866546631,-0.168049797415733,-0.136830672621727,-0.99162894487381,-0.00256119342520833,0.129094198346138,-0.999164640903473,0.00963832996785641,0.0397123955190182,-0.994680523872375,-0.0745353922247887,0.0710987895727158,0.116007164120674,0.00736811803653836,0.99322110414505,0.16846576333046,0.205317988991737,0.964087009429932,0.0726153254508972,0.00309894164092839,0.997355222702026,-0.112722404301167,0.072281651198864,-0.990993976593018,-0.0887947455048561,0.0154644390568137,-0.995929896831512,-0.147850021719933,0.0167715102434158,-0.9888676404953,-0.172861009836197,0.114083901047707,-0.978316843509674,0.988604128360748,0.0748606473207474,-0.130604565143585,0.180356964468956,0.00350858084857464,0.983594954013824,0.243886038661003,-0.0302401129156351,0.969332277774811,0.992464900016785,0.0168474297970533,-0.121365316212177,-0.147850021719933,0.0167715102434158,-0.9888676404953,-0.148231640458107,-0.0199266914278269,-0.988751947879791,-0.868286550045013,-0.165928810834885,-0.467489153146744,-0.999164640903473,0.00963832996785641,0.0397123955190182,-0.158193841576576,0.0131885893642902,-0.987320005893707,-0.0926867946982384,0.0317794643342495,-0.995187997817993,-0.100984238088131,-0.00948259327560663,-0.994842946529388,-0.161192953586578,-0.0106965396553278,-0.986864984035492,-0.991580843925476,-0.0162327606230974,0.128467708826065,-0.996138453483582,-0.0591917298734188,0.0648419931530952,-0.922003984451294,-0.370136320590973,0.113612927496433,0.0740347057580948,0.0100984750315547,0.997204482555389,0.0745483711361885,-0.0257675759494305,0.996884405612946,0.108350649476051,-0.0813819095492363,0.990776002407074,0.140047505497932,-0.0529138520359993,0.988729894161224,0.147723466157913,0.011752113699913,0.988958895206451,-0.100984238088131,-0.00948259327560663,-0.994842946529388,
- 0.981721460819244,0.0328084081411362,-0.187473982572556,0.980995416641235,-0.0566188879311085,-0.185586676001549,-0.0963142514228821,-0.0613045692443848,-0.993461310863495,-0.161192953586578,-0.0106965396553278,-0.986864984035492,-0.175580218434334,-0.126074060797691,-0.976359009742737,-0.994769930839539,-0.0687595382332802,0.0755313336849213,-0.997724235057831,-0.0119441375136375,0.0663608908653259,-0.991388499736786,0.00545074185356498,0.130839735269547,0.0559291653335094,0.00147222960367799,0.998433649539948,0.0649315416812897,-0.234295561909676,0.9699946641922,-0.898098647594452,-0.402559816837311,0.177100494503975,0.983579933643341,0.132477626204491,-0.122556634247303,0.143638834357262,0.00525984447449446,0.989616215229034,0.147723466157913,0.011752113699913,0.988958895206451,0.992311596870422,0.0317430943250656,-0.119624428451061,0.682727813720703,0.715469241142273,-0.148278400301933,0.690338253974915,0.718973577022552,-0.0806845054030418,0.983579933643341,0.132477626204491,-0.122556634247303,0.971533536911011,0.123709358274937,-0.202036380767822,-0.993870317935944,0.00648068636655808,0.110362000763416,-0.998221576213837,0.00575685314834118,0.05933503434062,-0.998366355895996,-0.0165948774665594,0.0546735711395741,-0.99485319852829,-0.0174114666879177,0.0998188257217407,0.157657116651535,-0.0555869862437248,0.985928118228912,0.333351612091064,-0.0754115507006645,0.939781725406647,0.193676397204399,-0.0271543711423874,0.980689644813538,0.116007164120674,0.00736811803653836,0.99322110414505,0.0726153254508972,0.00309894164092839,0.997355222702026,0.0858253613114357,0.0192968659102917,0.996123313903809,0.180356964468956,0.00350858084857464,0.983594954013824,0.990049242973328,0.00765635445713997,-0.140512451529503,0.169117510318756,0.0700531080365181,0.983103096485138,0.163865566253662,0.0497608333826065,0.985226809978485,-0.983574151992798,0.0601137168705463,0.170200854539871,0.0726153254508972,0.00309894164092839,0.997355222702026,-0.652877569198608,0.73110818862915,0.19806994497776,-0.998221576213837,0.00575685314834118,0.05933503434062,
- -0.968104660511017,0.175487875938416,0.178821936249733,-0.963895440101624,0.260735988616943,0.0540573298931122,0.995029449462891,-0.0417321249842644,-0.0904153510928154,0.99454140663147,0.0111738117411733,-0.103743404150009,0.983741939067841,0.020616052672267,-0.178400784730911,0.855371236801147,-0.498781263828278,-0.139847606420517,-0.990603029727936,-0.00844048894941807,0.136507496237755,-0.997724235057831,-0.0119441375136375,0.0663608908653259,-0.994769930839539,-0.0687595382332802,0.0755313336849213,-0.985897719860077,-0.0204063784331083,0.166100114583969,-0.794848382472992,-0.412903487682343,0.444664627313614,-0.193546622991562,-0.359955966472626,0.912672698497772,0.0745483711361885,-0.0257675759494305,0.996884405612946,-0.985897719860077,-0.0204063784331083,0.166100114583969,0.969817817211151,0.214739948511124,0.115499660372734,0.12580718100071,-0.0778778791427612,0.988993227481842,0.152809381484985,0.0807682573795319,0.984949588775635,0.982801735401154,0.101927757263184,-0.153985261917114,0.12580718100071,-0.0778778791427612,0.988993227481842,-0.193546622991562,-0.359955966472626,0.912672698497772,0.0975037440657616,0.126533165574074,0.9871586561203,0.152809381484985,0.0807682573795319,0.984949588775635,-0.794848382472992,-0.412903487682343,0.444664627313614,-0.673972606658936,-0.477033317089081,-0.564092218875885,-0.984651327133179,0.0880941450595856,0.150668874382973,-0.175580218434334,-0.126074060797691,-0.976359009742737,-0.0963142514228821,-0.0613045692443848,-0.993461310863495,-0.0841280147433281,-0.522158026695251,-0.848689317703247,-0.673972606658936,-0.477033317089081,-0.564092218875885,0.993973553180695,-0.0347455777227879,-0.10396733880043,0.140047505497932,-0.0529138520359993,0.988729894161224,0.12580718100071,-0.0778778791427612,0.988993227481842,0.969817817211151,0.214739948511124,0.115499660372734,0.98449969291687,-0.0324615240097046,-0.172356098890305,0.993973553180695,-0.0347455777227879,-0.10396733880043,0.969817817211151,0.214739948511124,0.115499660372734,-0.193546622991562,-0.359955966472626,0.912672698497772,
- 0.108350649476051,-0.0813819095492363,0.990776002407074,0.0745483711361885,-0.0257675759494305,0.996884405612946,-0.0841280147433281,-0.522158026695251,-0.848689317703247,0.980995416641235,-0.0566188879311085,-0.185586676001549,0.608169078826904,-0.742168068885803,-0.281632781028748,-0.994769930839539,-0.0687595382332802,0.0755313336849213,-0.175580218434334,-0.126074060797691,-0.976359009742737,-0.673972606658936,-0.477033317089081,-0.564092218875885,-0.794848382472992,-0.412903487682343,0.444664627313614,-0.943275928497314,-0.316095769405365,0.101558074355125,-0.994769930839539,-0.0687595382332802,0.0755313336849213,-0.673972606658936,-0.477033317089081,-0.564092218875885,-0.985897719860077,-0.0204063784331083,0.166100114583969,0.0745483711361885,-0.0257675759494305,0.996884405612946,0.0740347057580948,0.0100984750315547,0.997204482555389,-0.990603029727936,-0.00844048894941807,0.136507496237755,-0.984651327133179,0.0880941450595856,0.150668874382973,0.0975037440657616,0.126533165574074,0.9871586561203,-0.193546622991562,-0.359955966472626,0.912672698497772,-0.794848382472992,-0.412903487682343,0.444664627313614,0.987062454223633,0.0309864170849323,-0.15731355547905,0.159211710095406,0.0278138313442469,0.986852586269379,0.160063579678535,-0.0202300772070885,0.986899435520172,0.987513661384583,-0.0305798202753067,-0.154537364840508,0.159211710095406,0.0278138313442469,0.986852586269379,0.0959549620747566,0.027816453948617,0.994996905326843,0.0858532339334488,-0.0335724763572216,0.995741963386536,0.160063579678535,-0.0202300772070885,0.986899435520172,-0.998609483242035,0.00600095093250275,0.0523750297725201,-0.17196349799633,0.00762972142547369,-0.985073804855347,-0.18482817709446,-0.0459370128810406,-0.981696724891663,-0.996138453483582,-0.0591917298734188,0.0648419931530952,-0.99360328912735,0.00625401455909014,0.112753212451935,-0.998609483242035,0.00600095093250275,0.0523750297725201,-0.996138453483582,-0.0591917298734188,0.0648419931530952,-0.991580843925476,-0.0162327606230974,0.128467708826065,0.971533536911011,0.123709358274937,-0.202036380767822,
- 0.983579933643341,0.132477626204491,-0.122556634247303,0.992311596870422,0.0317430943250656,-0.119624428451061,0.981721460819244,0.0328084081411362,-0.187473982572556,0.98449969291687,-0.0324615240097046,-0.172356098890305,0.969817817211151,0.214739948511124,0.115499660372734,0.982801735401154,0.101927757263184,-0.153985261917114,0.973927557468414,0.0308479350060225,-0.224752262234688,0.987062454223633,0.0309864170849323,-0.15731355547905,0.987513661384583,-0.0305798202753067,-0.154537364840508,0.981859385967255,-0.0278494320809841,-0.187554031610489,0.974046230316162,-0.0432251282036304,-0.222183629870415,-0.101487472653389,0.00857628230005503,-0.994799852371216,0.973927557468414,0.0308479350060225,-0.224752262234688,0.974046230316162,-0.0432251282036304,-0.222183629870415,-0.103665381669998,-0.038993164896965,-0.993847608566284,-0.0913513749837875,0.0585126765072346,-0.99409818649292,-0.134760275483131,0.0745994970202446,-0.988066077232361,-0.0841280147433281,-0.522158026695251,-0.848689317703247,-0.673972606658936,-0.477033317089081,-0.564092218875885,-0.134760275483131,0.0745994970202446,-0.988066077232361,-0.163295105099678,0.059327520430088,-0.984791815280914,-0.0841280147433281,-0.522158026695251,-0.848689317703247,0.608169078826904,-0.742168068885803,-0.281632781028748,0.8299880027771,0.493947118520737,-0.259106546640396,0.0858532339334488,-0.0335724763572216,0.995741963386536,0.0959549620747566,0.027816453948617,0.994996905326843,-0.99360328912735,0.00625401455909014,0.112753212451935,-0.991580843925476,-0.0162327606230974,0.128467708826065,-0.985897719860077,-0.0204063784331083,0.166100114583969,-0.943275928497314,-0.316095769405365,0.101558074355125,-0.794848382472992,-0.412903487682343,0.444664627313614,0.140047505497932,-0.0529138520359993,0.988729894161224,0.108350649476051,-0.0813819095492363,0.990776002407074,-0.193546622991562,-0.359955966472626,0.912672698497772,0.12580718100071,-0.0778778791427612,0.988993227481842,-0.985897719860077,-0.0204063784331083,0.166100114583969,-0.994769930839539,-0.0687595382332802,0.0755313336849213,
- -0.943275928497314,-0.316095769405365,0.101558074355125,-0.0841280147433281,-0.522158026695251,-0.848689317703247,0.8299880027771,0.493947118520737,-0.259106546640396,0.964253902435303,0.110466703772545,-0.240855902433395,-0.0913513749837875,0.0585126765072346,-0.99409818649292,0.980995416641235,-0.0566188879311085,-0.185586676001549,0.98449969291687,-0.0324615240097046,-0.172356098890305,0.608169078826904,-0.742168068885803,-0.281632781028748,-0.673972606658936,-0.477033317089081,-0.564092218875885,-0.0841280147433281,-0.522158026695251,-0.848689317703247,-0.134760275483131,0.0745994970202446,-0.988066077232361,-0.17196349799633,0.00762972142547369,-0.985073804855347,-0.101487472653389,0.00857628230005503,-0.994799852371216,-0.103665381669998,-0.038993164896965,-0.993847608566284,-0.18482817709446,-0.0459370128810406,-0.981696724891663,0.980995416641235,-0.0566188879311085,-0.185586676001549,0.993973553180695,-0.0347455777227879,-0.10396733880043,0.98449969291687,-0.0324615240097046,-0.172356098890305,0.98449969291687,-0.0324615240097046,-0.172356098890305,0.982801735401154,0.101927757263184,-0.153985261917114,0.8299880027771,0.493947118520737,-0.259106546640396,0.98449969291687,-0.0324615240097046,-0.172356098890305,0.8299880027771,0.493947118520737,-0.259106546640396,0.608169078826904,-0.742168068885803,-0.281632781028748,-0.0963142514228821,-0.0613045692443848,-0.993461310863495,0.980995416641235,-0.0566188879311085,-0.185586676001549,-0.0841280147433281,-0.522158026695251,-0.848689317703247,-0.984651327133179,0.0880941450595856,0.150668874382973,-0.673972606658936,-0.477033317089081,-0.564092218875885,-0.997555136680603,0.045552171766758,0.0529982261359692,-0.997555136680603,0.045552171766758,0.0529982261359692,-0.163295105099678,0.059327520430088,-0.984791815280914,-0.17196349799633,0.00762972142547369,-0.985073804855347,-0.998609483242035,0.00600095093250275,0.0523750297725201,-0.163295105099678,0.059327520430088,-0.984791815280914,-0.134760275483131,0.0745994970202446,-0.988066077232361,-0.0913513749837875,0.0585126765072346,-0.99409818649292,
- -0.101487472653389,0.00857628230005503,-0.994799852371216,-0.17196349799633,0.00762972142547369,-0.985073804855347,-0.0913513749837875,0.0585126765072346,-0.99409818649292,0.964253902435303,0.110466703772545,-0.240855902433395,0.973927557468414,0.0308479350060225,-0.224752262234688,-0.101487472653389,0.00857628230005503,-0.994799852371216,0.982801735401154,0.101927757263184,-0.153985261917114,0.964253902435303,0.110466703772545,-0.240855902433395,0.8299880027771,0.493947118520737,-0.259106546640396,0.982801735401154,0.101927757263184,-0.153985261917114,0.152809381484985,0.0807682573795319,0.984949588775635,0.159211710095406,0.0278138313442469,0.986852586269379,0.987062454223633,0.0309864170849323,-0.15731355547905,0.152809381484985,0.0807682573795319,0.984949588775635,0.0975037440657616,0.126533165574074,0.9871586561203,0.0633188709616661,0.0892033129930496,0.99399870634079,0.0959549620747566,0.027816453948617,0.994996905326843,0.159211710095406,0.0278138313442469,0.986852586269379,-0.99360328912735,0.00625401455909014,0.112753212451935,0.0959549620747566,0.027816453948617,0.994996905326843,0.0633188709616661,0.0892033129930496,0.99399870634079,-0.983707964420319,0.0608312115073204,0.169169038534164,-0.098349891602993,-0.00305915880016983,-0.995147228240967,-0.0841288045048714,-0.0498004294931889,-0.995209634304047,-0.19160184264183,-0.0434199571609497,-0.980511784553528,-0.187497824430466,-0.0058698202483356,-0.982247471809387,-0.000883950444404036,0.999998927116394,-0.00112189492210746,-0.995812296867371,0.0738790035247803,0.0538485236465931,-0.988482892513275,0.0906373113393784,0.121187709271908,0.988469898700714,0.0506131090223789,-0.142707839608192,0.138244107365608,0.0404846332967281,0.989570438861847,0.135674208402634,0.00215637451037765,0.990751206874847,-0.0927596762776375,0.0290814619511366,-0.995263755321503,-0.190496951341629,-0.00393392844125628,-0.981679916381836,0.000706991413608193,0.999439597129822,-0.0334658771753311,-0.995812296867371,0.0738790035247803,0.0538485236465931,-0.000883950444404036,0.999998927116394,-0.00112189492210746,
- -0.00149687088560313,0.999998569488525,-0.000916664837859571,0.00120313779916614,0.999779224395752,-0.0209763776510954,0.000706991413608193,0.999439597129822,-0.0334658771753311,-0.190496951341629,-0.00393392844125628,-0.981679916381836,-0.0927596762776375,0.0290814619511366,-0.995263755321503,0.974997520446777,0.0593568310141563,-0.214141339063644,0.978085994720459,0.00644159084185958,-0.208101809024811,-0.098349891602993,-0.00305915880016983,-0.995147228240967,-0.0927596762776375,0.0290814619511366,-0.995263755321503,0.000706991413608193,0.999439597129822,-0.0334658771753311,0.0059159672819078,0.999967873096466,-0.00540145020931959,0.974997520446777,0.0593568310141563,-0.214141339063644,0.00120313779916614,0.999779224395752,-0.0209763776510954,-0.995812296867371,0.0738790035247803,0.0538485236465931,-0.00149687088560313,0.999998569488525,-0.000916664837859571,0.0399941951036453,0.999186754226685,-0.00512806605547667,0.0098608173429966,0.999765455722809,0.0192818306386471,0.988469898700714,0.0506131090223789,-0.142707839608192,-0.995812296867371,0.0738790035247803,0.0538485236465931,-0.190496951341629,-0.00393392844125628,-0.981679916381836,-0.187497824430466,-0.0058698202483356,-0.982247471809387,-0.999044120311737,0.01307955943048,0.0417119786143303,-0.190496951341629,-0.00393392844125628,-0.981679916381836,-0.995812296867371,0.0738790035247803,0.0538485236465931,0.00120313779916614,0.999779224395752,-0.0209763776510954,0.990475654602051,0.00706359511241317,-0.137507259845734,0.135674208402634,0.00215637451037765,0.990751206874847,0.140169471502304,-0.0492498762905598,0.988901913166046,0.992608606815338,-0.0319855771958828,-0.11706805229187,0.974997520446777,0.0593568310141563,-0.214141339063644,0.0059159672819078,0.999967873096466,-0.00540145020931959,0.0208710301667452,0.999772310256958,-0.0044359671883285,0.0208710301667452,0.999772310256958,-0.0044359671883285,0.0399941951036453,0.999186754226685,-0.00512806605547667,0.974997520446777,0.0593568310141563,-0.214141339063644,0.978085994720459,0.00644159084185958,-0.208101809024811,
- 0.990475654602051,0.00706359511241317,-0.137507259845734,0.992608606815338,-0.0319855771958828,-0.11706805229187,0.979515671730042,-0.0717236399650574,-0.188161298632622,-0.190496951341629,-0.00393392844125628,-0.981679916381836,-0.0927596762776375,0.0290814619511366,-0.995263755321503,-0.098349891602993,-0.00305915880016983,-0.995147228240967,-0.187497824430466,-0.0058698202483356,-0.982247471809387,0.0811685994267464,0.00412168726325035,0.996691882610321,0.0774359405040741,-0.0246073082089424,0.996693551540375,0.140169471502304,-0.0492498762905598,0.988901913166046,0.135674208402634,0.00215637451037765,0.990751206874847,-0.098349891602993,-0.00305915880016983,-0.995147228240967,0.978085994720459,0.00644159084185958,-0.208101809024811,0.979515671730042,-0.0717236399650574,-0.188161298632622,-0.0841288045048714,-0.0498004294931889,-0.995209634304047,-0.187497824430466,-0.0058698202483356,-0.982247471809387,-0.19160184264183,-0.0434199571609497,-0.980511784553528,-0.998416662216187,-0.0368453972041607,0.0425052046775818,-0.999044120311737,0.01307955943048,0.0417119786143303,0.0811685994267464,0.00412168726325035,0.996691882610321,0.0899869352579117,0.0339186266064644,0.99536520242691,-0.988482892513275,0.0906373113393784,0.121187709271908,-0.993161916732788,0.0152073157951236,0.11575023829937,0.988469898700714,0.0506131090223789,-0.142707839608192,0.135674208402634,0.00215637451037765,0.990751206874847,0.990475654602051,0.00706359511241317,-0.137507259845734,0.974997520446777,0.0593568310141563,-0.214141339063644,0.0399941951036453,0.999186754226685,-0.00512806605547667,0.988469898700714,0.0506131090223789,-0.142707839608192,-0.993161916732788,0.0152073157951236,0.11575023829937,-0.999044120311737,0.01307955943048,0.0417119786143303,-0.998416662216187,-0.0368453972041607,0.0425052046775818,-0.994023621082306,-0.0321484133601189,0.104324474930763,-0.943942010402679,-0.130308344960213,0.303304076194763,0.0453331172466278,-0.023306155577302,0.998700022697449,-0.994023621082306,-0.0321484133601189,0.104324474930763,-0.19160184264183,-0.0434199571609497,-0.980511784553528,
- -0.0841288045048714,-0.0498004294931889,-0.995209634304047,0.242891386151314,0.455188632011414,-0.856625378131866,-0.363416999578476,-0.357183068990707,-0.860434889793396,0.992608606815338,-0.0319855771958828,-0.11706805229187,0.140169471502304,-0.0492498762905598,0.988901913166046,0.169117510318756,0.0700531080365181,0.983103096485138,0.8901726603508,0.454202264547348,-0.0359564609825611,0.708251178264618,0.690455973148346,-0.147142097353935,0.992608606815338,-0.0319855771958828,-0.11706805229187,0.8901726603508,0.454202264547348,-0.0359564609825611,-0.998416662216187,-0.0368453972041607,0.0425052046775818,-0.19160184264183,-0.0434199571609497,-0.980511784553528,-0.363416999578476,-0.357183068990707,-0.860434889793396,-0.994412064552307,-0.0632033199071884,0.0845579653978348,-0.998416662216187,-0.0368453972041607,0.0425052046775818,-0.363416999578476,-0.357183068990707,-0.860434889793396,-0.994023621082306,-0.0321484133601189,0.104324474930763,0.0774359405040741,-0.0246073082089424,0.996693551540375,0.0811685994267464,0.00412168726325035,0.996691882610321,-0.993161916732788,0.0152073157951236,0.11575023829937,0.974997520446777,0.0593568310141563,-0.214141339063644,0.988469898700714,0.0506131090223789,-0.142707839608192,0.990475654602051,0.00706359511241317,-0.137507259845734,0.978085994720459,0.00644159084185958,-0.208101809024811,-0.994023621082306,-0.0321484133601189,0.104324474930763,-0.994412064552307,-0.0632033199071884,0.0845579653978348,-0.943942010402679,-0.130308344960213,0.303304076194763,0.140169471502304,-0.0492498762905598,0.988901913166046,0.0774359405040741,-0.0246073082089424,0.996693551540375,0.0453331172466278,-0.023306155577302,0.998700022697449,0.169117510318756,0.0700531080365181,0.983103096485138,-0.994023621082306,-0.0321484133601189,0.104324474930763,-0.998416662216187,-0.0368453972041607,0.0425052046775818,-0.994412064552307,-0.0632033199071884,0.0845579653978348,0.979515671730042,-0.0717236399650574,-0.188161298632622,0.708251178264618,0.690455973148346,-0.147142097353935,0.242891386151314,0.455188632011414,-0.856625378131866,
- 0.979515671730042,-0.0717236399650574,-0.188161298632622,0.992608606815338,-0.0319855771958828,-0.11706805229187,0.708251178264618,0.690455973148346,-0.147142097353935,-0.0841288045048714,-0.0498004294931889,-0.995209634304047,0.979515671730042,-0.0717236399650574,-0.188161298632622,0.242891386151314,0.455188632011414,-0.856625378131866,0.138244107365608,0.0404846332967281,0.989570438861847,0.0899869352579117,0.0339186266064644,0.99536520242691,0.0811685994267464,0.00412168726325035,0.996691882610321,0.135674208402634,0.00215637451037765,0.990751206874847,0.0059159672819078,0.999967873096466,-0.00540145020931959,0.000706991413608193,0.999439597129822,-0.0334658771753311,0.00120313779916614,0.999779224395752,-0.0209763776510954,-0.00149687088560313,0.999998569488525,-0.000916664837859571,-0.000883950444404036,0.999998927116394,-0.00112189492210746,0.00961730908602476,0.999719381332397,0.0216477233916521,0.0098608173429966,0.999765455722809,0.0192818306386471,0.0399941951036453,0.999186754226685,-0.00512806605547667,0.0208710301667452,0.999772310256958,-0.0044359671883285,-0.988482892513275,0.0906373113393784,0.121187709271908,0.0899869352579117,0.0339186266064644,0.99536520242691,0.00961730908602476,0.999719381332397,0.0216477233916521,-0.000883950444404036,0.999998927116394,-0.00112189492210746,0.0098608173429966,0.999765455722809,0.0192818306386471,0.138244107365608,0.0404846332967281,0.989570438861847,0.988469898700714,0.0506131090223789,-0.142707839608192,0.0098608173429966,0.999765455722809,0.0192818306386471,0.00961730908602476,0.999719381332397,0.0216477233916521,0.0899869352579117,0.0339186266064644,0.99536520242691,0.138244107365608,0.0404846332967281,0.989570438861847,0.990049242973328,0.00765635445713997,-0.140512451529503,0.8901726603508,0.454202264547348,-0.0359564609825611,0.169117510318756,0.0700531080365181,0.983103096485138,0.959493339061737,-0.214819058775902,-0.182278379797935,0.976235866546631,-0.168049797415733,-0.136830672621727,0.733907163143158,-0.463228076696396,-0.496789872646332,0.855371236801147,-0.498781263828278,-0.139847606420517,
- 0.764397263526917,-0.619447350502014,-0.178834587335587,0.97715151309967,-0.0503682866692543,-0.20648980140686,0.991623997688293,0.0183471851050854,-0.127848505973816,-0.114051952958107,-0.138395830988884,-0.983788013458252,-0.107841774821281,-0.0327898077666759,-0.993627190589905,0.97715151309967,-0.0503682866692543,-0.20648980140686,0.764397263526917,-0.619447350502014,-0.178834587335587,-0.167642295360565,-0.0328596606850624,-0.985300123691559,-0.107841774821281,-0.0327898077666759,-0.993627190589905,-0.114051952958107,-0.138395830988884,-0.983788013458252,-0.673972606658936,-0.477033317089081,-0.564092218875885,-0.163295105099678,0.059327520430088,-0.984791815280914,-0.997555136680603,0.045552171766758,0.0529982261359692,-0.984651327133179,0.0880941450595856,0.150668874382973,-0.997555136680603,0.045552171766758,0.0529982261359692,-0.998609483242035,0.00600095093250275,0.0523750297725201,-0.99360328912735,0.00625401455909014,0.112753212451935,-0.983707964420319,0.0608312115073204,0.169169038534164,-0.993870317935944,0.00648068636655808,0.110362000763416,-0.968104660511017,0.175487875938416,0.178821936249733,-0.998221576213837,0.00575685314834118,0.05933503434062,0.106227695941925,-0.000647831126116216,0.994341552257538,0.193675577640533,-0.00533091649413109,0.9810511469841,0.079021267592907,0.0786969512701035,0.993761837482452,-0.991388499736786,0.00545074185356498,0.130839735269547,-0.997515797615051,-0.00783794373273849,0.0700056031346321,-0.997724235057831,-0.0119441375136375,0.0663608908653259,-0.990603029727936,-0.00844048894941807,0.136507496237755,0.0740347057580948,0.0100984750315547,0.997204482555389,0.0559291653335094,0.00147222960367799,0.998433649539948,-0.991388499736786,0.00545074185356498,0.130839735269547,-0.990603029727936,-0.00844048894941807,0.136507496237755,0.147723466157913,0.011752113699913,0.988958895206451,0.143638834357262,0.00525984447449446,0.989616215229034,0.0559291653335094,0.00147222960367799,0.998433649539948,0.0740347057580948,0.0100984750315547,0.997204482555389,0.973927557468414,0.0308479350060225,-0.224752262234688,
- 0.964253902435303,0.110466703772545,-0.240855902433395,0.982801735401154,0.101927757263184,-0.153985261917114,0.987062454223633,0.0309864170849323,-0.15731355547905,-0.988482892513275,0.0906373113393784,0.121187709271908,-0.995812296867371,0.0738790035247803,0.0538485236465931,-0.999044120311737,0.01307955943048,0.0417119786143303,-0.993161916732788,0.0152073157951236,0.11575023829937,-0.996545314788818,-0.00186543667223305,0.0830310508608818,-0.983844637870789,-0.0536705516278744,0.170790076255798,-0.999095559120178,-0.00871526729315519,0.0416195876896381,-0.994023621082306,-0.0321484133601189,0.104324474930763,0.0453331172466278,-0.023306155577302,0.998700022697449,0.0774359405040741,-0.0246073082089424,0.996693551540375,0.910472750663757,0.402510792016983,-0.0949966609477997,0.690338253974915,0.718973577022552,-0.0806845054030418,0.682727813720703,0.715469241142273,-0.148278400301933,0.955891013145447,0.16238808631897,-0.244749739766121,0.700906097888947,0.710270702838898,-0.0651636645197868,0.787959814071655,0.613215208053589,-0.0555551424622536,0.782516300678253,0.602500855922699,-0.157037913799286,0.691574335098267,0.711768567562103,-0.122924357652664,-0.0899561941623688,0.994850754737854,-0.0466892048716545,0.0533922053873539,0.0316073521971703,-0.998073279857636,0.0379576347768307,0.0338970236480236,-0.998704254627228,-0.295072168111801,0.954049944877625,-0.0521648749709129,-0.672290086746216,-0.734776735305786,0.0901619642972946,-0.667388796806335,-0.743990182876587,0.032722108066082,-0.725317001342773,-0.688179135322571,-0.0180204994976521,0.0158788021653891,-0.99983161687851,0.00918387714773417,0.0328157916665077,-0.993990063667297,-0.104436375200748,0.97385573387146,0.0637481659650803,-0.218039497733116,-0.072943314909935,0.000368326145689934,-0.997336030006409,-0.0592875815927982,-0.0728091225028038,-0.995582103729248,-0.12907138466835,-0.120225585997105,-0.984320282936096,-0.133314460515976,-0.0180263333022594,-0.990909814834595,-0.975305676460266,-0.142880544066429,0.168415635824203,-0.946307182312012,-0.320067584514618,0.045379176735878,
- -0.95009434223175,-0.290002942085266,0.114974416792393,0.145030349493027,0.035984817892313,0.988772630691528,0.0188419967889786,0.0170415285974741,0.999677240848541,0.225258231163025,0.0464504957199097,0.973191261291504,-0.00725879892706871,0.998262822628021,0.0584705844521523,-0.414375931024551,0.909475564956665,-0.0338662415742874,0.00565372360870242,0.999965190887451,0.0061293626204133,0.326971769332886,-0.941993594169617,0.0757469087839127,0.532631456851959,-0.818212628364563,0.216406345367432,0.428184866905212,-0.90359228849411,0.0133730098605156,-0.00439826445654035,-0.0127774886786938,0.999908685684204,0.000995636102743447,0.0278010815382004,0.999612987041473,-0.0599915124475956,0.0365074016153812,0.997531056404114,-0.0401788428425789,-0.0317143425345421,0.99868905544281,-0.0108882766216993,0.0349312201142311,-0.999330401420593,-0.0458253882825375,-0.0279993191361427,-0.998556971549988,-0.0799360722303391,-0.0227246508002281,-0.996540904045105,-0.1025081127882,-0.00262232590466738,-0.994728684425354,-0.0673093348741531,0.0320685803890228,-0.997216701507568,0.269725531339645,-0.962701380252838,0.0213110391050577,0.272727638483047,-0.961555361747742,-0.0321101061999798,0.181207865476608,-0.982371628284454,-0.0459304191172123,0.189258590340614,-0.981632709503174,0.0240470934659243,0.61152845621109,0.786722362041473,-0.0842673778533936,0.0634380728006363,-0.000717637012712657,0.997985422611237,0.145030349493027,0.035984817892313,0.988772630691528,-0.563412427902222,-0.820597410202026,0.09584591537714,0.189258590340614,-0.981632709503174,0.0240470934659243,0.181207865476608,-0.982371628284454,-0.0459304191172123,0.0248621553182602,0.204238146543503,0.978605508804321,-0.0373592562973499,0.150361597537994,0.987924873828888,0.284049302339554,0.958526849746704,0.0232897996902466,-0.0397811979055405,0.0381152629852295,-0.998481214046478,-0.0201379433274269,0.0380187630653381,-0.999074101448059,-0.0371791310608387,-0.0289831385016441,-0.998888254165649,-0.0555042251944542,-0.0237652100622654,-0.99817556142807,-0.667388796806335,-0.743990182876587,0.032722108066082,
- -0.450619548559189,-0.892711102962494,0.00299775251187384,-0.725317001342773,-0.688179135322571,-0.0180204994976521,-0.975305676460266,-0.142880544066429,0.168415635824203,-0.681408166885376,-0.722524285316467,0.116797789931297,-0.700142562389374,-0.71342521905899,0.028719887137413,0.14544902741909,-0.107324458658695,0.983527362346649,0.25084975361824,-0.149041458964348,0.956483602523804,0.137671336531639,-0.181718662381172,0.973665714263916,0.519743382930756,0.847746610641479,-0.105794325470924,0.691574335098267,0.711768567562103,-0.122924357652664,-0.0673093348741531,0.0320685803890228,-0.997216701507568,-0.267816454172134,-0.962429404258728,-0.0447640642523766,-0.177369624376297,-0.977172017097473,0.116939283907413,-0.278737008571625,-0.96011757850647,0.0219041109085083,-0.284088879823685,-0.95838326215744,-0.0281989704817533,-0.672290086746216,-0.734776735305786,0.0901619642972946,-0.599016666412354,-0.80038720369339,0.0236526448279619,-0.667388796806335,-0.743990182876587,0.032722108066082,0.136936008930206,-0.0563779808580875,0.988974273204803,0.0424679256975651,-0.0275790728628635,0.998717129230499,-0.177369624376297,-0.977172017097473,0.116939283907413,0.344829678535461,-0.938184797763824,-0.030028447508812,0.0374857969582081,-0.0228658113628626,-0.999035477638245,0.272727638483047,-0.961555361747742,-0.0321101061999798,-0.843747019767761,0.417631506919861,0.337157189846039,0.0522609576582909,-0.029674056917429,0.998192489147186,-0.0398300364613533,0.0170628558844328,0.999060750007629,-0.99406099319458,-0.0100074857473373,0.108363501727581,0.505635857582092,-0.794551551342011,0.336184799671173,0.464937329292297,-0.885089159011841,-0.0212226863950491,0.13101826608181,-0.049409594386816,0.990147888660431,0.0337392315268517,0.0748921856284142,0.996620774269104,0.128914147615433,0.0332695320248604,0.991097569465637,-0.463510274887085,-0.67113196849823,-0.578567326068878,-0.0799360722303391,-0.0227246508002281,-0.996540904045105,-0.375077903270721,0.213306337594986,-0.902117967605591,0.0607765763998032,-0.0143301980569959,0.998048484325409,
- 0.125334292650223,0.00855646841228008,0.992077648639679,0.25084975361824,-0.149041458964348,0.956483602523804,0.14544902741909,-0.107324458658695,0.983527362346649,0.00535410130396485,-0.983376502990723,0.181499361991882,-0.072782389819622,-0.994939088821411,0.0692746713757515,-0.0692352205514908,-0.995928823947906,-0.0577252879738808,-0.00439826445654035,-0.0127774886786938,0.999908685684204,0.13101826608181,-0.049409594386816,0.990147888660431,0.000995636102743447,0.0278010815382004,0.999612987041473,-0.725317001342773,-0.688179135322571,-0.0180204994976521,-0.450619548559189,-0.892711102962494,0.00299775251187384,-0.790612697601318,-0.485771358013153,-0.372770398855209,0.61152845621109,0.786722362041473,-0.0842673778533936,0.145030349493027,0.035984817892313,0.988772630691528,0.700906097888947,0.710270702838898,-0.0651636645197868,0.137671336531639,-0.181718662381172,0.973665714263916,0.25084975361824,-0.149041458964348,0.956483602523804,0.225258231163025,0.0464504957199097,0.973191261291504,-0.0166701879352331,-0.0526293888688087,-0.998475015163422,0.0104633802548051,0.00595733476802707,-0.999927520751953,0.0215505082160234,-0.0675590559840202,-0.997482478618622,-0.165924981236458,0.0241713672876358,-0.985842108726501,0.0723451524972916,-0.644332230091095,-0.761316001415253,0.0215505082160234,-0.0675590559840202,-0.997482478618622,0.0158788021653891,-0.99983161687851,0.00918387714773417,0.00535410130396485,-0.983376502990723,0.181499361991882,-0.0692352205514908,-0.995928823947906,-0.0577252879738808,0.0158788021653891,-0.99983161687851,0.00918387714773417,0.0978740975260735,-0.977964520454407,0.184407621622086,0.00535410130396485,-0.983376502990723,0.181499361991882,0.171443626284599,-0.0242534931749105,0.984895348548889,0.0861059352755547,-0.033695500344038,0.995716035366058,0.00535410130396485,-0.983376502990723,0.181499361991882,0.464937329292297,-0.885089159011841,-0.0212226863950491,-0.267816454172134,-0.962429404258728,-0.0447640642523766,-0.450619548559189,-0.892711102962494,0.00299775251187384,0.0215505082160234,-0.0675590559840202,-0.997482478618622,
- 0.0723451524972916,-0.644332230091095,-0.761316001415253,-0.0166701879352331,-0.0526293888688087,-0.998475015163422,0.528096258640289,0.845266699790955,-0.0814770832657814,0.61152845621109,0.786722362041473,-0.0842673778533936,0.700906097888947,0.710270702838898,-0.0651636645197868,0.691574335098267,0.711768567562103,-0.122924357652664,0.519743382930756,0.847746610641479,-0.105794325470924,-0.0673093348741531,0.0320685803890228,-0.997216701507568,0.691574335098267,0.711768567562103,-0.122924357652664,0.782516300678253,0.602500855922699,-0.157037913799286,-0.0108882766216993,0.0349312201142311,-0.999330401420593,0.782516300678253,0.602500855922699,-0.157037913799286,0.940882325172424,-0.312019854784012,-0.131848827004433,0.918991565704346,-0.341900020837784,-0.196364462375641,0.108933359384537,0.993957817554474,-0.0134701803326607,0.117590218782425,0.991248190402985,0.0599968880414963,0.258284896612167,0.965203464031219,0.0408796370029449,0.253163009881973,0.96700918674469,-0.0283163785934448,-0.0905153676867485,0.06410763412714,-0.993829548358917,-0.132370784878731,0.00068542012013495,-0.991200089454651,-0.0656966120004654,0.134500712156296,-0.988733291625977,-0.0210636202245951,0.000835723127238452,-0.999777793884277,0.122770227491856,0.386934846639633,-0.913897573947906,-0.41902083158493,0.906524837017059,-0.0513263940811157,0.505635857582092,-0.794551551342011,0.336184799671173,-0.177369624376297,-0.977172017097473,0.116939283907413,0.464937329292297,-0.885089159011841,-0.0212226863950491,-0.0673093348741531,0.0320685803890228,-0.997216701507568,-0.121056951582432,0.0481631979346275,-0.991476476192474,0.519743382930756,0.847746610641479,-0.105794325470924,-0.111971206963062,0.903470933437347,-0.413766473531723,-0.121056951582432,0.0481631979346275,-0.991476476192474,0.0215505082160234,-0.0675590559840202,-0.997482478618622,-0.946307182312012,-0.320067584514618,0.045379176735878,-0.975305676460266,-0.142880544066429,0.168415635824203,-0.998134076595306,-0.000111863650090527,0.0610592737793922,-0.375077903270721,0.213306337594986,-0.902117967605591,
- -0.0656966120004654,0.134500712156296,-0.988733291625977,-0.132370784878731,0.00068542012013495,-0.991200089454651,-0.111971206963062,0.903470933437347,-0.413766473531723,0.0104633802548051,0.00595733476802707,-0.999927520751953,0.414443343877792,0.909035325050354,-0.0434917397797108,-0.0905153676867485,0.06410763412714,-0.993829548358917,0.878281950950623,0.442590236663818,-0.180927246809006,0.936832308769226,0.307682871818542,-0.166362449526787,-0.072943314909935,0.000368326145689934,-0.997336030006409,-0.0905153676867485,0.06410763412714,-0.993829548358917,-0.0656966120004654,0.134500712156296,-0.988733291625977,0.632564306259155,0.265892416238785,-0.727436304092407,0.878281950950623,0.442590236663818,-0.180927246809006,-0.0656966120004654,0.134500712156296,-0.988733291625977,0.782516300678253,0.602500855922699,-0.157037913799286,0.632564306259155,0.265892416238785,-0.727436304092407,-0.00439826445654035,-0.0127774886786938,0.999908685684204,-0.0401788428425789,-0.0317143425345421,0.99868905544281,0.346308201551437,-0.35171189904213,0.869695007801056,-0.00439826445654035,-0.0127774886786938,0.999908685684204,0.346308201551437,-0.35171189904213,0.869695007801056,0.13101826608181,-0.049409594386816,0.990147888660431,0.225258231163025,0.0464504957199097,0.973191261291504,0.0188419967889786,0.0170415285974741,0.999677240848541,0.137671336531639,-0.181718662381172,0.973665714263916,-0.700142562389374,-0.71342521905899,0.028719887137413,-0.681408166885376,-0.722524285316467,0.116797789931297,-0.698861539363861,-0.705195486545563,0.119549371302128,-0.672290086746216,-0.734776735305786,0.0901619642972946,0.475008189678192,0.0212177988141775,-0.879725575447083,0.0374857969582081,-0.0228658113628626,-0.999035477638245,0.344829678535461,-0.938184797763824,-0.030028447508812,-0.012974769808352,-0.0278058294206858,-0.999529182910919,0.0374857969582081,-0.0228658113628626,-0.999035477638245,0.475008189678192,0.0212177988141775,-0.879725575447083,0.373373955488205,0.926147758960724,-0.0533125437796116,0.282637715339661,0.959196269512177,0.00765484245494008,
- 0.108933359384537,0.993957817554474,-0.0134701803326607,-0.0201379433274269,0.0380187630653381,-0.999074101448059,-0.0397811979055405,0.0381152629852295,-0.998481214046478,0.108933359384537,0.993957817554474,-0.0134701803326607,0.253163009881973,0.96700918674469,-0.0283163785934448,-0.998134076595306,-0.000111863650090527,0.0610592737793922,-0.975305676460266,-0.142880544066429,0.168415635824203,-0.700142562389374,-0.71342521905899,0.028719887137413,-0.375077903270721,0.213306337594986,-0.902117967605591,-0.700142562389374,-0.71342521905899,0.028719887137413,-0.463510274887085,-0.67113196849823,-0.578567326068878,0.122770227491856,0.386934846639633,-0.913897573947906,0.00565372360870242,0.999965190887451,0.0061293626204133,-0.414375931024551,0.909475564956665,-0.0338662415742874,-0.41902083158493,0.906524837017059,-0.0513263940811157,-0.414375931024551,0.909475564956665,-0.0338662415742874,-0.424723416566849,0.905323028564453,-0.000427051563747227,-0.295717775821686,0.954987287521362,0.0234591569751501,-0.295072168111801,0.954049944877625,-0.0521648749709129,-0.41902083158493,0.906524837017059,-0.0513263940811157,-0.0398300364613533,0.0170628558844328,0.999060750007629,0.0522609576582909,-0.029674056917429,0.998192489147186,-0.0373592562973499,0.150361597537994,0.987924873828888,0.0374857969582081,-0.0228658113628626,-0.999035477638245,0.0516588948667049,-0.0173029508441687,-0.998514831066132,0.272727638483047,-0.961555361747742,-0.0321101061999798,0.940882325172424,-0.312019854784012,-0.131848827004433,0.225258231163025,0.0464504957199097,0.973191261291504,0.25084975361824,-0.149041458964348,0.956483602523804,0.125334292650223,0.00855646841228008,0.992077648639679,0.896890938282013,0.43369659781456,-0.0865679532289505,0.25084975361824,-0.149041458964348,0.956483602523804,0.128914147615433,0.0332695320248604,0.991097569465637,0.0337392315268517,0.0748921856284142,0.996620774269104,0.117590218782425,0.991248190402985,0.0599968880414963,0.128914147615433,0.0332695320248604,0.991097569465637,0.000995636102743447,0.0278010815382004,0.999612987041473,
- 0.13101826608181,-0.049409594386816,0.990147888660431,-0.0373592562973499,0.150361597537994,0.987924873828888,0.0634380728006363,-0.000717637012712657,0.997985422611237,0.61152845621109,0.786722362041473,-0.0842673778533936,0.0328157916665077,-0.993990063667297,-0.104436375200748,0.0158788021653891,-0.99983161687851,0.00918387714773417,-0.0692352205514908,-0.995928823947906,-0.0577252879738808,-0.0599915124475956,0.0365074016153812,0.997531056404114,-0.295717775821686,0.954987287521362,0.0234591569751501,-0.424723416566849,0.905323028564453,-0.000427051563747227,-0.167712107300758,-0.00955258030444384,0.985789656639099,-0.18619729578495,-0.0482957474887371,-0.98132461309433,0.0328157916665077,-0.993990063667297,-0.104436375200748,-0.0692352205514908,-0.995928823947906,-0.0577252879738808,0.787959814071655,0.613215208053589,-0.0555551424622536,0.225258231163025,0.0464504957199097,0.973191261291504,0.940882325172424,-0.312019854784012,-0.131848827004433,0.782516300678253,0.602500855922699,-0.157037913799286,0.787959814071655,0.613215208053589,-0.0555551424622536,0.940882325172424,-0.312019854784012,-0.131848827004433,0.136936008930206,-0.0563779808580875,0.988974273204803,-0.177369624376297,-0.977172017097473,0.116939283907413,0.505635857582092,-0.794551551342011,0.336184799671173,0.505635857582092,-0.794551551342011,0.336184799671173,-0.843747019767761,0.417631506919861,0.337157189846039,-0.0398300364613533,0.0170628558844328,0.999060750007629,-0.0401788428425789,-0.0317143425345421,0.99868905544281,-0.116139404475689,-0.0760882422327995,0.990314066410065,0.326971769332886,-0.941993594169617,0.0757469087839127,-0.0401788428425789,-0.0317143425345421,0.99868905544281,0.326971769332886,-0.941993594169617,0.0757469087839127,0.269725531339645,-0.962701380252838,0.0213110391050577,-0.640666604042053,-0.0262242164462805,-0.767371296882629,-0.0555042251944542,-0.0237652100622654,-0.99817556142807,-0.740410089492798,-0.67168003320694,-0.0252761691808701,-0.700142562389374,-0.71342521905899,0.028719887137413,-0.375077903270721,0.213306337594986,-0.902117967605591,
- -0.998134076595306,-0.000111863650090527,0.0610592737793922,-0.375077903270721,0.213306337594986,-0.902117967605591,-0.946307182312012,-0.320067584514618,0.045379176735878,-0.998134076595306,-0.000111863650090527,0.0610592737793922,-0.414375931024551,0.909475564956665,-0.0338662415742874,-0.00725879892706871,0.998262822628021,0.0584705844521523,-0.424723416566849,0.905323028564453,-0.000427051563747227,0.505635857582092,-0.794551551342011,0.336184799671173,-0.0398300364613533,0.0170628558844328,0.999060750007629,0.136936008930206,-0.0563779808580875,0.988974273204803,0.940882325172424,-0.312019854784012,-0.131848827004433,0.25084975361824,-0.149041458964348,0.956483602523804,0.923520684242249,0.374009221792221,-0.0850096642971039,-0.700142562389374,-0.71342521905899,0.028719887137413,-0.725317001342773,-0.688179135322571,-0.0180204994976521,-0.463510274887085,-0.67113196849823,-0.578567326068878,-0.0599915124475956,0.0365074016153812,0.997531056404114,-0.167712107300758,-0.00955258030444384,0.985789656639099,-0.116139404475689,-0.0760882422327995,0.990314066410065,-0.0401788428425789,-0.0317143425345421,0.99868905544281,0.0424679256975651,-0.0275790728628635,0.998717129230499,0.0723733678460121,0.0651930496096611,0.99524462223053,0.0337392315268517,0.0748921856284142,0.996620774269104,-0.946307182312012,-0.320067584514618,0.045379176735878,-0.132370784878731,0.00068542012013495,-0.991200089454651,-0.133314460515976,-0.0180263333022594,-0.990909814834595,-0.945951759815216,-0.320115834474564,0.051972396671772,-0.132370784878731,0.00068542012013495,-0.991200089454651,-0.946307182312012,-0.320067584514618,0.045379176735878,-0.375077903270721,0.213306337594986,-0.902117967605591,0.039033405482769,-0.00218408135697246,0.999235510826111,0.0188419967889786,0.0170415285974741,0.999677240848541,0.145030349493027,0.035984817892313,0.988772630691528,0.344829678535461,-0.938184797763824,-0.030028447508812,0.428184866905212,-0.90359228849411,0.0133730098605156,0.475008189678192,0.0212177988141775,-0.879725575447083,0.326971769332886,-0.941993594169617,0.0757469087839127,
- 0.428184866905212,-0.90359228849411,0.0133730098605156,0.344829678535461,-0.938184797763824,-0.030028447508812,-0.1025081127882,-0.00262232590466738,-0.994728684425354,-0.725317001342773,-0.688179135322571,-0.0180204994976521,-0.790612697601318,-0.485771358013153,-0.372770398855209,0.284049302339554,0.958526849746704,0.0232897996902466,0.0723733678460121,0.0651930496096611,0.99524462223053,0.0248621553182602,0.204238146543503,0.978605508804321,-0.698861539363861,-0.705195486545563,0.119549371302128,0.039033405482769,-0.00218408135697246,0.999235510826111,-0.672290086746216,-0.734776735305786,0.0901619642972946,0.039033405482769,-0.00218408135697246,0.999235510826111,-0.599016666412354,-0.80038720369339,0.0236526448279619,-0.672290086746216,-0.734776735305786,0.0901619642972946,0.181207865476608,-0.982371628284454,-0.0459304191172123,0.0602577440440655,-0.0308658070862293,-0.997705519199371,-0.640666604042053,-0.0262242164462805,-0.767371296882629,-0.740410089492798,-0.67168003320694,-0.0252761691808701,-0.740410089492798,-0.67168003320694,-0.0252761691808701,-0.563412427902222,-0.820597410202026,0.09584591537714,0.181207865476608,-0.982371628284454,-0.0459304191172123,-0.165924981236458,0.0241713672876358,-0.985842108726501,-0.1025081127882,-0.00262232590466738,-0.994728684425354,-0.790612697601318,-0.485771358013153,-0.372770398855209,-0.450619548559189,-0.892711102962494,0.00299775251187384,0.0723451524972916,-0.644332230091095,-0.761316001415253,-0.165924981236458,0.0241713672876358,-0.985842108726501,-0.790612697601318,-0.485771358013153,-0.372770398855209,-0.975305676460266,-0.142880544066429,0.168415635824203,0.14544902741909,-0.107324458658695,0.983527362346649,-0.681408166885376,-0.722524285316467,0.116797789931297,-0.986207664012909,0.000606097921263427,0.165511682629585,0.0525852628052235,0.0893923416733742,0.994607329368591,0.0831713825464249,0.117023885250092,0.989640355110168,-0.989403486251831,0.0243142433464527,0.143142089247704,-0.0108882766216993,0.0349312201142311,-0.999330401420593,0.782516300678253,0.602500855922699,-0.157037913799286,
- -0.0656966120004654,0.134500712156296,-0.988733291625977,0.137671336531639,-0.181718662381172,0.973665714263916,-0.698861539363861,-0.705195486545563,0.119549371302128,-0.681408166885376,-0.722524285316467,0.116797789931297,-0.681408166885376,-0.722524285316467,0.116797789931297,0.14544902741909,-0.107324458658695,0.983527362346649,0.137671336531639,-0.181718662381172,0.973665714263916,-0.99406099319458,-0.0100074857473373,0.108363501727581,-0.667388796806335,-0.743990182876587,0.032722108066082,-0.599016666412354,-0.80038720369339,0.0236526448279619,-0.0458253882825375,-0.0279993191361427,-0.998556971549988,-0.0656966120004654,0.134500712156296,-0.988733291625977,-0.375077903270721,0.213306337594986,-0.902117967605591,-0.0108882766216993,0.0349312201142311,-0.999330401420593,-0.0656966120004654,0.134500712156296,-0.988733291625977,-0.0458253882825375,-0.0279993191361427,-0.998556971549988,0.0861059352755547,-0.033695500344038,0.995716035366058,-0.072782389819622,-0.994939088821411,0.0692746713757515,0.00535410130396485,-0.983376502990723,0.181499361991882,-0.072782389819622,-0.994939088821411,0.0692746713757515,-0.990394175052643,-0.0363072268664837,0.1334208548069,-0.921843707561493,-0.369394451379776,0.117268845438957,-0.0555042251944542,-0.0237652100622654,-0.99817556142807,-0.329674303531647,-0.943619906902313,-0.029936209321022,-0.740410089492798,-0.67168003320694,-0.0252761691808701,-0.0525032579898834,0.99534684419632,0.0807957351207733,0.282637715339661,0.959196269512177,0.00765484245494008,-0.13485050201416,0.989928066730499,0.0431017726659775,0.0861059352755547,-0.033695500344038,0.995716035366058,-0.990394175052643,-0.0363072268664837,0.1334208548069,-0.072782389819622,-0.994939088821411,0.0692746713757515,0.464937329292297,-0.885089159011841,-0.0212226863950491,-0.450619548559189,-0.892711102962494,0.00299775251187384,-0.667388796806335,-0.743990182876587,0.032722108066082,-0.99406099319458,-0.0100074857473373,0.108363501727581,0.464937329292297,-0.885089159011841,-0.0212226863950491,-0.667388796806335,-0.743990182876587,0.032722108066082,
- -0.121056951582432,0.0481631979346275,-0.991476476192474,-0.111971206963062,0.903470933437347,-0.413766473531723,0.519743382930756,0.847746610641479,-0.105794325470924,0.519743382930756,0.847746610641479,-0.105794325470924,-0.111971206963062,0.903470933437347,-0.413766473531723,0.528096258640289,0.845266699790955,-0.0814770832657814,-0.278737008571625,-0.96011757850647,0.0219041109085083,-0.129633679986,-0.0309793688356876,0.991077899932861,-0.326733380556107,-0.94446873664856,0.0349876582622528,-0.129633679986,-0.0309793688356876,0.991077899932861,-0.563412427902222,-0.820597410202026,0.09584591537714,-0.326733380556107,-0.94446873664856,0.0349876582622528,0.136936008930206,-0.0563779808580875,0.988974273204803,-0.0398300364613533,0.0170628558844328,0.999060750007629,0.126551792025566,0.00207901396788657,0.991957783699036,0.00535410130396485,-0.983376502990723,0.181499361991882,0.0978740975260735,-0.977964520454407,0.184407621622086,0.171443626284599,-0.0242534931749105,0.984895348548889,0.984944224357605,0.0778780281543732,-0.154336735606194,0.0978740975260735,-0.977964520454407,0.184407621622086,0.0158788021653891,-0.99983161687851,0.00918387714773417,-0.0373592562973499,0.150361597537994,0.987924873828888,0.61152845621109,0.786722362041473,-0.0842673778533936,0.528096258640289,0.845266699790955,-0.0814770832657814,-0.0373592562973499,0.150361597537994,0.987924873828888,0.528096258640289,0.845266699790955,-0.0814770832657814,0.284049302339554,0.958526849746704,0.0232897996902466,0.0104633802548051,0.00595733476802707,-0.999927520751953,-0.111971206963062,0.903470933437347,-0.413766473531723,0.0215505082160234,-0.0675590559840202,-0.997482478618622,0.0978740975260735,-0.977964520454407,0.184407621622086,0.984944224357605,0.0778780281543732,-0.154336735606194,0.171443626284599,-0.0242534931749105,0.984895348548889,0.0723451524972916,-0.644332230091095,-0.761316001415253,-0.450619548559189,-0.892711102962494,0.00299775251187384,-0.267816454172134,-0.962429404258728,-0.0447640642523766,-0.18619729578495,-0.0482957474887371,-0.98132461309433,
- -0.0692352205514908,-0.995928823947906,-0.0577252879738808,-0.994048476219177,-0.0842799171805382,0.0690260231494904,-0.0799360722303391,-0.0227246508002281,-0.996540904045105,-0.0458253882825375,-0.0279993191361427,-0.998556971549988,-0.375077903270721,0.213306337594986,-0.902117967605591,0.0188419967889786,0.0170415285974741,0.999677240848541,0.039033405482769,-0.00218408135697246,0.999235510826111,-0.698861539363861,-0.705195486545563,0.119549371302128,0.137671336531639,-0.181718662381172,0.973665714263916,0.0188419967889786,0.0170415285974741,0.999677240848541,-0.698861539363861,-0.705195486545563,0.119549371302128,0.284049302339554,0.958526849746704,0.0232897996902466,0.528096258640289,0.845266699790955,-0.0814770832657814,-0.111971206963062,0.903470933437347,-0.413766473531723,-0.0692352205514908,-0.995928823947906,-0.0577252879738808,-0.072782389819622,-0.994939088821411,0.0692746713757515,-0.921843707561493,-0.369394451379776,0.117268845438957,-0.0692352205514908,-0.995928823947906,-0.0577252879738808,-0.921843707561493,-0.369394451379776,0.117268845438957,-0.994048476219177,-0.0842799171805382,0.0690260231494904,-0.0397811979055405,0.0381152629852295,-0.998481214046478,0.373373955488205,0.926147758960724,-0.0533125437796116,0.108933359384537,0.993957817554474,-0.0134701803326607,0.0215505082160234,-0.0675590559840202,-0.997482478618622,-0.121056951582432,0.0481631979346275,-0.991476476192474,-0.165924981236458,0.0241713672876358,-0.985842108726501,-0.0166701879352331,-0.0526293888688087,-0.998475015163422,0.0723451524972916,-0.644332230091095,-0.761316001415253,-0.267816454172134,-0.962429404258728,-0.0447640642523766,-0.0555042251944542,-0.0237652100622654,-0.99817556142807,-0.0371791310608387,-0.0289831385016441,-0.998888254165649,-0.284088879823685,-0.95838326215744,-0.0281989704817533,-0.329674303531647,-0.943619906902313,-0.029936209321022,-0.0397811979055405,0.0381152629852295,-0.998481214046478,0.100210465490818,0.025904044508934,-0.994628965854645,0.373373955488205,0.926147758960724,-0.0533125437796116,
- -0.0210636202245951,0.000835723127238452,-0.999777793884277,0.0379576347768307,0.0338970236480236,-0.998704254627228,0.0516588948667049,-0.0173029508441687,-0.998514831066132,0.0374857969582081,-0.0228658113628626,-0.999035477638245,-0.012974769808352,-0.0278058294206858,-0.999529182910919,-0.012974769808352,-0.0278058294206858,-0.999529182910919,0.475008189678192,0.0212177988141775,-0.879725575447083,0.122770227491856,0.386934846639633,-0.913897573947906,-0.0210636202245951,0.000835723127238452,-0.999777793884277,0.154893606901169,0.197173774242401,0.968054890632629,0.0400741063058376,-0.0267373230308294,0.998838901519775,-0.116139404475689,-0.0760882422327995,0.990314066410065,-0.167712107300758,-0.00955258030444384,0.985789656639099,0.532631456851959,-0.818212628364563,0.216406345367432,0.326971769332886,-0.941993594169617,0.0757469087839127,-0.116139404475689,-0.0760882422327995,0.990314066410065,0.0400741063058376,-0.0267373230308294,0.998838901519775,0.346308201551437,-0.35171189904213,0.869695007801056,-0.0401788428425789,-0.0317143425345421,0.99868905544281,0.189258590340614,-0.981632709503174,0.0240470934659243,-0.563412427902222,-0.820597410202026,0.09584591537714,0.346308201551437,-0.35171189904213,0.869695007801056,0.189258590340614,-0.981632709503174,0.0240470934659243,-0.129633679986,-0.0309793688356876,0.991077899932861,0.0337392315268517,0.0748921856284142,0.996620774269104,0.13101826608181,-0.049409594386816,0.990147888660431,0.126551792025566,0.00207901396788657,0.991957783699036,0.0723733678460121,0.0651930496096611,0.99524462223053,0.0424679256975651,-0.0275790728628635,0.998717129230499,0.136936008930206,-0.0563779808580875,0.988974273204803,-0.0398300364613533,0.0170628558844328,0.999060750007629,0.0248621553182602,0.204238146543503,0.978605508804321,0.126551792025566,0.00207901396788657,0.991957783699036,-0.0373592562973499,0.150361597537994,0.987924873828888,0.0248621553182602,0.204238146543503,0.978605508804321,-0.0398300364613533,0.0170628558844328,0.999060750007629,0.000995636102743447,0.0278010815382004,0.999612987041473,
- -0.13485050201416,0.989928066730499,0.0431017726659775,-0.295717775821686,0.954987287521362,0.0234591569751501,-0.0599915124475956,0.0365074016153812,0.997531056404114,-0.0525032579898834,0.99534684419632,0.0807957351207733,-0.13485050201416,0.989928066730499,0.0431017726659775,0.000995636102743447,0.0278010815382004,0.999612987041473,-0.0525032579898834,0.99534684419632,0.0807957351207733,0.000995636102743447,0.0278010815382004,0.999612987041473,0.128914147615433,0.0332695320248604,0.991097569465637,0.128914147615433,0.0332695320248604,0.991097569465637,0.117590218782425,0.991248190402985,0.0599968880414963,-0.0525032579898834,0.99534684419632,0.0807957351207733,0.947511076927185,0.304224759340286,-0.0983354151248932,0.143396466970444,0.0191744789481163,0.989479541778564,0.153369769454002,-0.0955384746193886,0.983539640903473,0.974240243434906,0.207953587174416,-0.0872432291507721,-0.18619729578495,-0.0482957474887371,-0.98132461309433,-0.0934843048453331,-0.0377662740647793,-0.994904160499573,0.0328157916665077,-0.993990063667297,-0.104436375200748,0.97385573387146,0.0637481659650803,-0.218039497733116,0.0328157916665077,-0.993990063667297,-0.104436375200748,-0.0934843048453331,-0.0377662740647793,-0.994904160499573,0.979390919208527,0.0802275538444519,-0.185356169939041,0.984944224357605,0.0778780281543732,-0.154336735606194,0.0158788021653891,-0.99983161687851,0.00918387714773417,0.0158788021653891,-0.99983161687851,0.00918387714773417,0.97385573387146,0.0637481659650803,-0.218039497733116,0.979390919208527,0.0802275538444519,-0.185356169939041,-0.99406099319458,-0.0100074857473373,0.108363501727581,-0.843747019767761,0.417631506919861,0.337157189846039,0.505635857582092,-0.794551551342011,0.336184799671173,-0.99406099319458,-0.0100074857473373,0.108363501727581,0.0522609576582909,-0.029674056917429,0.998192489147186,-0.843747019767761,0.417631506919861,0.337157189846039,0.039033405482769,-0.00218408135697246,0.999235510826111,0.0522609576582909,-0.029674056917429,0.998192489147186,-0.599016666412354,-0.80038720369339,0.0236526448279619,
- 0.13101826608181,-0.049409594386816,0.990147888660431,0.346308201551437,-0.35171189904213,0.869695007801056,-0.563412427902222,-0.820597410202026,0.09584591537714,-0.129633679986,-0.0309793688356876,0.991077899932861,0.13101826608181,-0.049409594386816,0.990147888660431,-0.563412427902222,-0.820597410202026,0.09584591537714,0.0424679256975651,-0.0275790728628635,0.998717129230499,-0.129633679986,-0.0309793688356876,0.991077899932861,-0.278737008571625,-0.96011757850647,0.0219041109085083,-0.177369624376297,-0.977172017097473,0.116939283907413,0.0424679256975651,-0.0275790728628635,0.998717129230499,-0.278737008571625,-0.96011757850647,0.0219041109085083,0.632564306259155,0.265892416238785,-0.727436304092407,0.782516300678253,0.602500855922699,-0.157037913799286,0.918991565704346,-0.341900020837784,-0.196364462375641,0.878281950950623,0.442590236663818,-0.180927246809006,0.632564306259155,0.265892416238785,-0.727436304092407,0.927359998226166,0.327089250087738,-0.181703090667725,0.936832308769226,0.307682871818542,-0.166362449526787,0.947511076927185,0.304224759340286,-0.0983354151248932,0.974240243434906,0.207953587174416,-0.0872432291507721,0.966395854949951,0.190746963024139,-0.172321602702141,0.100210465490818,0.025904044508934,-0.994628965854645,-0.640666604042053,-0.0262242164462805,-0.767371296882629,0.0602577440440655,-0.0308658070862293,-0.997705519199371,-0.0397811979055405,0.0381152629852295,-0.998481214046478,-0.640666604042053,-0.0262242164462805,-0.767371296882629,0.100210465490818,0.025904044508934,-0.994628965854645,-0.0397811979055405,0.0381152629852295,-0.998481214046478,-0.0555042251944542,-0.0237652100622654,-0.99817556142807,-0.640666604042053,-0.0262242164462805,-0.767371296882629,0.0337392315268517,0.0748921856284142,0.996620774269104,0.0723733678460121,0.0651930496096611,0.99524462223053,0.258284896612167,0.965203464031219,0.0408796370029449,0.117590218782425,0.991248190402985,0.0599968880414963,-0.41902083158493,0.906524837017059,-0.0513263940811157,-0.295072168111801,0.954049944877625,-0.0521648749709129,
- 0.0379576347768307,0.0338970236480236,-0.998704254627228,-0.0210636202245951,0.000835723127238452,-0.999777793884277,-0.13485050201416,0.989928066730499,0.0431017726659775,-0.0899561941623688,0.994850754737854,-0.0466892048716545,-0.295072168111801,0.954049944877625,-0.0521648749709129,-0.295717775821686,0.954987287521362,0.0234591569751501,0.344829678535461,-0.938184797763824,-0.030028447508812,0.272727638483047,-0.961555361747742,-0.0321101061999798,0.269725531339645,-0.962701380252838,0.0213110391050577,0.326971769332886,-0.941993594169617,0.0757469087839127,0.0516588948667049,-0.0173029508441687,-0.998514831066132,0.0602577440440655,-0.0308658070862293,-0.997705519199371,0.181207865476608,-0.982371628284454,-0.0459304191172123,0.272727638483047,-0.961555361747742,-0.0321101061999798,-0.0401788428425789,-0.0317143425345421,0.99868905544281,0.269725531339645,-0.962701380252838,0.0213110391050577,0.189258590340614,-0.981632709503174,0.0240470934659243,0.0379576347768307,0.0338970236480236,-0.998704254627228,0.0533922053873539,0.0316073521971703,-0.998073279857636,0.0602577440440655,-0.0308658070862293,-0.997705519199371,0.0516588948667049,-0.0173029508441687,-0.998514831066132,0.0104633802548051,0.00595733476802707,-0.999927520751953,-0.0166701879352331,-0.0526293888688087,-0.998475015163422,-0.0371791310608387,-0.0289831385016441,-0.998888254165649,-0.0201379433274269,0.0380187630653381,-0.999074101448059,0.253163009881973,0.96700918674469,-0.0283163785934448,0.258284896612167,0.965203464031219,0.0408796370029449,0.284049302339554,0.958526849746704,0.0232897996902466,0.414443343877792,0.909035325050354,-0.0434917397797108,0.0104633802548051,0.00595733476802707,-0.999927520751953,-0.0201379433274269,0.0380187630653381,-0.999074101448059,0.253163009881973,0.96700918674469,-0.0283163785934448,0.414443343877792,0.909035325050354,-0.0434917397797108,-0.284088879823685,-0.95838326215744,-0.0281989704817533,-0.0371791310608387,-0.0289831385016441,-0.998888254165649,-0.0166701879352331,-0.0526293888688087,-0.998475015163422,
- -0.267816454172134,-0.962429404258728,-0.0447640642523766,0.258284896612167,0.965203464031219,0.0408796370029449,0.0723733678460121,0.0651930496096611,0.99524462223053,0.284049302339554,0.958526849746704,0.0232897996902466,-0.672290086746216,-0.734776735305786,0.0901619642972946,-0.725317001342773,-0.688179135322571,-0.0180204994976521,-0.700142562389374,-0.71342521905899,0.028719887137413,0.0634380728006363,-0.000717637012712657,0.997985422611237,-0.0373592562973499,0.150361597537994,0.987924873828888,0.0522609576582909,-0.029674056917429,0.998192489147186,-0.121056951582432,0.0481631979346275,-0.991476476192474,-0.0673093348741531,0.0320685803890228,-0.997216701507568,-0.1025081127882,-0.00262232590466738,-0.994728684425354,-0.165924981236458,0.0241713672876358,-0.985842108726501,0.700906097888947,0.710270702838898,-0.0651636645197868,0.145030349493027,0.035984817892313,0.988772630691528,0.225258231163025,0.0464504957199097,0.973191261291504,0.787959814071655,0.613215208053589,-0.0555551424622536,-0.1025081127882,-0.00262232590466738,-0.994728684425354,-0.0799360722303391,-0.0227246508002281,-0.996540904045105,-0.463510274887085,-0.67113196849823,-0.578567326068878,-0.725317001342773,-0.688179135322571,-0.0180204994976521,-0.132370784878731,0.00068542012013495,-0.991200089454651,-0.0905153676867485,0.06410763412714,-0.993829548358917,-0.072943314909935,0.000368326145689934,-0.997336030006409,-0.133314460515976,-0.0180263333022594,-0.990909814834595,-0.990394175052643,-0.0363072268664837,0.1334208548069,-0.994048476219177,-0.0842799171805382,0.0690260231494904,-0.921843707561493,-0.369394451379776,0.117268845438957,0.0727829858660698,-0.00250669382512569,0.997344613075256,0.0782735496759415,-0.0625210478901863,0.994969546794891,0.114596784114838,-0.0962146818637848,0.98874169588089,0.153369769454002,-0.0955384746193886,0.983539640903473,0.143396466970444,0.0191744789481163,0.989479541778564,-0.072943314909935,0.000368326145689934,-0.997336030006409,0.936832308769226,0.307682871818542,-0.166362449526787,0.966395854949951,0.190746963024139,-0.172321602702141,
- -0.0592875815927982,-0.0728091225028038,-0.995582103729248,-0.133314460515976,-0.0180263333022594,-0.990909814834595,-0.12907138466835,-0.120225585997105,-0.984320282936096,-0.883281588554382,-0.464390903711319,0.064456008374691,-0.945951759815216,-0.320115834474564,0.051972396671772,-0.95009434223175,-0.290002942085266,0.114974416792393,0.0607765763998032,-0.0143301980569959,0.998048484325409,0.14544902741909,-0.107324458658695,0.983527362346649,-0.975305676460266,-0.142880544066429,0.168415635824203,0.896890938282013,0.43369659781456,-0.0865679532289505,0.125334292650223,0.00855646841228008,0.992077648639679,0.143396466970444,0.0191744789481163,0.989479541778564,0.947511076927185,0.304224759340286,-0.0983354151248932,0.927359998226166,0.327089250087738,-0.181703090667725,0.923520684242249,0.374009221792221,-0.0850096642971039,0.896890938282013,0.43369659781456,-0.0865679532289505,0.878281950950623,0.442590236663818,-0.180927246809006,-0.326733380556107,-0.94446873664856,0.0349876582622528,-0.329674303531647,-0.943619906902313,-0.029936209321022,-0.284088879823685,-0.95838326215744,-0.0281989704817533,-0.278737008571625,-0.96011757850647,0.0219041109085083,0.126551792025566,0.00207901396788657,0.991957783699036,0.0248621553182602,0.204238146543503,0.978605508804321,0.0723733678460121,0.0651930496096611,0.99524462223053,0.0634380728006363,-0.000717637012712657,0.997985422611237,0.0522609576582909,-0.029674056917429,0.998192489147186,0.039033405482769,-0.00218408135697246,0.999235510826111,0.145030349493027,0.035984817892313,0.988772630691528,-0.424723416566849,0.905323028564453,-0.000427051563747227,0.154893606901169,0.197173774242401,0.968054890632629,-0.167712107300758,-0.00955258030444384,0.985789656639099,-0.599016666412354,-0.80038720369339,0.0236526448279619,0.0522609576582909,-0.029674056917429,0.998192489147186,-0.99406099319458,-0.0100074857473373,0.108363501727581,-0.329674303531647,-0.943619906902313,-0.029936209321022,-0.563412427902222,-0.820597410202026,0.09584591537714,-0.740410089492798,-0.67168003320694,-0.0252761691808701,
- -0.0525032579898834,0.99534684419632,0.0807957351207733,0.117590218782425,0.991248190402985,0.0599968880414963,0.108933359384537,0.993957817554474,-0.0134701803326607,0.282637715339661,0.959196269512177,0.00765484245494008,-0.942927598953247,-0.307090789079666,0.128774121403694,-0.945951759815216,-0.320115834474564,0.051972396671772,-0.883281588554382,-0.464390903711319,0.064456008374691,-0.930602610111237,-0.327568680047989,0.163332268595696,-0.388019353151321,-0.864000499248505,0.320848941802979,-0.067895844578743,-0.494125574827194,0.866735279560089,0.0782735496759415,-0.0625210478901863,0.994969546794891,-0.930602610111237,-0.327568680047989,0.163332268595696,0.775040090084076,0.624614894390106,0.0957560166716576,0.142235189676285,0.0983375087380409,0.984935998916626,0.153710603713989,0.0869755148887634,0.984280645847321,0.987482368946075,0.0481448024511337,-0.15020215511322,0.142235189676285,0.0983375087380409,0.984935998916626,-0.067895844578743,-0.494125574827194,0.866735279560089,0.0831713825464249,0.117023885250092,0.989640355110168,0.153710603713989,0.0869755148887634,0.984280645847321,-0.388019353151321,-0.864000499248505,0.320848941802979,-0.305275052785873,-0.774346113204956,-0.554251968860626,-0.989403486251831,0.0243142433464527,0.143142089247704,-0.12907138466835,-0.120225585997105,-0.984320282936096,-0.0592875815927982,-0.0728091225028038,-0.995582103729248,0.0477755591273308,-0.494157791137695,-0.868058562278748,-0.305275052785873,-0.774346113204956,-0.554251968860626,0.974240243434906,0.207953587174416,-0.0872432291507721,0.153369769454002,-0.0955384746193886,0.983539640903473,0.142235189676285,0.0983375087380409,0.984935998916626,0.775040090084076,0.624614894390106,0.0957560166716576,0.842869937419891,0.519156217575073,-0.141587808728218,0.974240243434906,0.207953587174416,-0.0872432291507721,0.775040090084076,0.624614894390106,0.0957560166716576,-0.067895844578743,-0.494125574827194,0.866735279560089,0.114596784114838,-0.0962146818637848,0.98874169588089,0.0782735496759415,-0.0625210478901863,0.994969546794891,
- 0.0477755591273308,-0.494157791137695,-0.868058562278748,0.966395854949951,0.190746963024139,-0.172321602702141,0.907307744026184,-0.187146529555321,-0.376522094011307,-0.883281588554382,-0.464390903711319,0.064456008374691,-0.12907138466835,-0.120225585997105,-0.984320282936096,-0.305275052785873,-0.774346113204956,-0.554251968860626,-0.388019353151321,-0.864000499248505,0.320848941802979,-0.420420408248901,-0.904540479183197,0.071086086332798,-0.883281588554382,-0.464390903711319,0.064456008374691,-0.305275052785873,-0.774346113204956,-0.554251968860626,-0.930602610111237,-0.327568680047989,0.163332268595696,0.0782735496759415,-0.0625210478901863,0.994969546794891,0.0727829858660698,-0.00250669382512569,0.997344613075256,-0.942927598953247,-0.307090789079666,0.128774121403694,-0.989403486251831,0.0243142433464527,0.143142089247704,0.0831713825464249,0.117023885250092,0.989640355110168,-0.067895844578743,-0.494125574827194,0.866735279560089,-0.388019353151321,-0.864000499248505,0.320848941802979,0.986611664295197,0.0596122890710831,-0.151801705360413,0.158025920391083,0.029489878565073,0.986994564533234,0.171443626284599,-0.0242534931749105,0.984895348548889,0.984944224357605,0.0778780281543732,-0.154336735606194,0.158025920391083,0.029489878565073,0.986994564533234,0.0932798981666565,0.0264760572463274,0.995287775993347,0.0861059352755547,-0.033695500344038,0.995716035366058,0.171443626284599,-0.0242534931749105,0.984895348548889,-0.997959315776825,-0.0374646633863449,0.0517069958150387,-0.172271206974983,0.00503184134140611,-0.985036611557007,-0.18619729578495,-0.0482957474887371,-0.98132461309433,-0.994048476219177,-0.0842799171805382,0.0690260231494904,-0.992791593074799,-0.036409255117178,0.114189490675926,-0.997959315776825,-0.0374646633863449,0.0517069958150387,-0.994048476219177,-0.0842799171805382,0.0690260231494904,-0.990394175052643,-0.0363072268664837,0.1334208548069,0.878281950950623,0.442590236663818,-0.180927246809006,0.896890938282013,0.43369659781456,-0.0865679532289505,0.947511076927185,0.304224759340286,-0.0983354151248932,
- 0.936832308769226,0.307682871818542,-0.166362449526787,0.842869937419891,0.519156217575073,-0.141587808728218,0.775040090084076,0.624614894390106,0.0957560166716576,0.987482368946075,0.0481448024511337,-0.15020215511322,0.973492801189423,0.0591406151652336,-0.220939055085182,0.986611664295197,0.0596122890710831,-0.151801705360413,0.984944224357605,0.0778780281543732,-0.154336735606194,0.979390919208527,0.0802275538444519,-0.185356169939041,0.97385573387146,0.0637481659650803,-0.218039497733116,-0.100374490022659,0.00879350118339062,-0.994910895824432,0.973492801189423,0.0591406151652336,-0.220939055085182,0.97385573387146,0.0637481659650803,-0.218039497733116,-0.0934843048453331,-0.0377662740647793,-0.994904160499573,-0.0838764235377312,0.0577046908438206,-0.994803905487061,-0.145493865013123,0.0683880746364594,-0.986992657184601,0.0477755591273308,-0.494157791137695,-0.868058562278748,-0.305275052785873,-0.774346113204956,-0.554251968860626,-0.145493865013123,0.0683880746364594,-0.986992657184601,-0.167782723903656,0.0496917441487312,-0.984570741653442,0.0477755591273308,-0.494157791137695,-0.868058562278748,0.907307744026184,-0.187146529555321,-0.376522094011307,0.818695604801178,0.508281171321869,-0.267184764146805,0.0861059352755547,-0.033695500344038,0.995716035366058,0.0932798981666565,0.0264760572463274,0.995287775993347,-0.992791593074799,-0.036409255117178,0.114189490675926,-0.990394175052643,-0.0363072268664837,0.1334208548069,-0.930602610111237,-0.327568680047989,0.163332268595696,-0.420420408248901,-0.904540479183197,0.071086086332798,-0.388019353151321,-0.864000499248505,0.320848941802979,0.153369769454002,-0.0955384746193886,0.983539640903473,0.114596784114838,-0.0962146818637848,0.98874169588089,-0.067895844578743,-0.494125574827194,0.866735279560089,0.142235189676285,0.0983375087380409,0.984935998916626,-0.930602610111237,-0.327568680047989,0.163332268595696,-0.883281588554382,-0.464390903711319,0.064456008374691,-0.420420408248901,-0.904540479183197,0.071086086332798,0.0477755591273308,-0.494157791137695,-0.868058562278748,
- 0.818695604801178,0.508281171321869,-0.267184764146805,0.970702111721039,0.0558135360479355,-0.23371410369873,-0.0838764235377312,0.0577046908438206,-0.994803905487061,0.966395854949951,0.190746963024139,-0.172321602702141,0.842869937419891,0.519156217575073,-0.141587808728218,0.907307744026184,-0.187146529555321,-0.376522094011307,-0.305275052785873,-0.774346113204956,-0.554251968860626,0.0477755591273308,-0.494157791137695,-0.868058562278748,-0.145493865013123,0.0683880746364594,-0.986992657184601,-0.172271206974983,0.00503184134140611,-0.985036611557007,-0.100374490022659,0.00879350118339062,-0.994910895824432,-0.0934843048453331,-0.0377662740647793,-0.994904160499573,-0.18619729578495,-0.0482957474887371,-0.98132461309433,0.966395854949951,0.190746963024139,-0.172321602702141,0.974240243434906,0.207953587174416,-0.0872432291507721,0.842869937419891,0.519156217575073,-0.141587808728218,0.842869937419891,0.519156217575073,-0.141587808728218,0.987482368946075,0.0481448024511337,-0.15020215511322,0.818695604801178,0.508281171321869,-0.267184764146805,0.842869937419891,0.519156217575073,-0.141587808728218,0.818695604801178,0.508281171321869,-0.267184764146805,0.907307744026184,-0.187146529555321,-0.376522094011307,-0.0592875815927982,-0.0728091225028038,-0.995582103729248,0.966395854949951,0.190746963024139,-0.172321602702141,0.0477755591273308,-0.494157791137695,-0.868058562278748,-0.989403486251831,0.0243142433464527,0.143142089247704,-0.305275052785873,-0.774346113204956,-0.554251968860626,-0.998567998409271,-0.020294189453125,0.0494999848306179,-0.998567998409271,-0.020294189453125,0.0494999848306179,-0.167782723903656,0.0496917441487312,-0.984570741653442,-0.172271206974983,0.00503184134140611,-0.985036611557007,-0.997959315776825,-0.0374646633863449,0.0517069958150387,-0.167782723903656,0.0496917441487312,-0.984570741653442,-0.145493865013123,0.0683880746364594,-0.986992657184601,-0.0838764235377312,0.0577046908438206,-0.994803905487061,-0.100374490022659,0.00879350118339062,-0.994910895824432,-0.172271206974983,0.00503184134140611,-0.985036611557007,
- -0.0838764235377312,0.0577046908438206,-0.994803905487061,0.970702111721039,0.0558135360479355,-0.23371410369873,0.973492801189423,0.0591406151652336,-0.220939055085182,-0.100374490022659,0.00879350118339062,-0.994910895824432,0.987482368946075,0.0481448024511337,-0.15020215511322,0.970702111721039,0.0558135360479355,-0.23371410369873,0.818695604801178,0.508281171321869,-0.267184764146805,0.987482368946075,0.0481448024511337,-0.15020215511322,0.153710603713989,0.0869755148887634,0.984280645847321,0.158025920391083,0.029489878565073,0.986994564533234,0.986611664295197,0.0596122890710831,-0.151801705360413,0.153710603713989,0.0869755148887634,0.984280645847321,0.0831713825464249,0.117023885250092,0.989640355110168,0.0525852628052235,0.0893923416733742,0.994607329368591,0.0932798981666565,0.0264760572463274,0.995287775993347,0.158025920391083,0.029489878565073,0.986994564533234,-0.992791593074799,-0.036409255117178,0.114189490675926,0.0932798981666565,0.0264760572463274,0.995287775993347,0.0525852628052235,0.0893923416733742,0.994607329368591,-0.986207664012909,0.000606097921263427,0.165511682629585,0.0635901689529419,0.036556638777256,-0.997306346893311,0.104256384074688,0.0927776768803597,-0.990213572978973,0.1666149944067,0.00512828631326556,-0.986008763313293,0.125043570995331,-0.0185366775840521,-0.991978049278259,-0.593347489833832,-0.802960574626923,-0.056505773216486,0.755748629570007,-0.654847502708435,0.00434606429189444,0.765051245689392,-0.637685894966125,0.0897404327988625,-0.749603450298309,0.657639980316162,-0.0748609602451324,-0.149044379591942,-0.038900338113308,0.9880650639534,-0.101211808621883,0.00494068441912532,0.994852602481842,0.045109435915947,0.0117542985826731,-0.998912870883942,0.145254194736481,-0.020403902977705,-0.989183962345123,-0.601544320583344,-0.792815983295441,-0.0979145392775536,0.755748629570007,-0.654847502708435,0.00434606429189444,-0.593347489833832,-0.802960574626923,-0.056505773216486,-0.592825829982758,-0.803209841251373,-0.0584074258804321,-0.602141916751862,-0.794219136238098,-0.0814930498600006,
- -0.601544320583344,-0.792815983295441,-0.0979145392775536,0.145254194736481,-0.020403902977705,-0.989183962345123,0.045109435915947,0.0117542985826731,-0.998912870883942,-0.745636165142059,0.650413155555725,-0.14487686753273,-0.670252799987793,0.732019126415253,-0.122103087604046,0.0635901689529419,0.036556638777256,-0.997306346893311,0.045109435915947,0.0117542985826731,-0.998912870883942,-0.601544320583344,-0.792815983295441,-0.0979145392775536,-0.606809258460999,-0.792271971702576,-0.0639336183667183,-0.745636165142059,0.650413155555725,-0.14487686753273,-0.602141916751862,-0.794219136238098,-0.0814930498600006,0.755748629570007,-0.654847502708435,0.00434606429189444,-0.592825829982758,-0.803209841251373,-0.0584074258804321,-0.63542366027832,-0.769692957401276,-0.0617213062942028,-0.610010623931885,-0.792021155357361,-0.0242780521512032,-0.749603450298309,0.657639980316162,-0.0748609602451324,0.755748629570007,-0.654847502708435,0.00434606429189444,0.145254194736481,-0.020403902977705,-0.989183962345123,0.125043570995331,-0.0185366775840521,-0.991978049278259,0.719580411911011,-0.694355487823486,-0.00862615555524826,0.145254194736481,-0.020403902977705,-0.989183962345123,0.755748629570007,-0.654847502708435,0.00434606429189444,-0.602141916751862,-0.794219136238098,-0.0814930498600006,-0.67665433883667,0.73439484834671,-0.0529434196650982,-0.101211808621883,0.00494068441912532,0.994852602481842,-0.0283701624721289,0.0545584037899971,0.998107552528381,-0.596555769443512,0.802418291568756,-0.0156911462545395,-0.745636165142059,0.650413155555725,-0.14487686753273,-0.606809258460999,-0.792271971702576,-0.0639336183667183,-0.619558334350586,-0.782482028007507,-0.0622039437294006,-0.619558334350586,-0.782482028007507,-0.0622039437294006,-0.63542366027832,-0.769692957401276,-0.0617213062942028,-0.745636165142059,0.650413155555725,-0.14487686753273,-0.670252799987793,0.732019126415253,-0.122103087604046,-0.67665433883667,0.73439484834671,-0.0529434196650982,-0.596555769443512,0.802418291568756,-0.0156911462545395,-0.556725561618805,0.826725661754608,-0.0811246410012245,
- 0.145254194736481,-0.020403902977705,-0.989183962345123,0.045109435915947,0.0117542985826731,-0.998912870883942,0.0635901689529419,0.036556638777256,-0.997306346893311,0.125043570995331,-0.0185366775840521,-0.991978049278259,-0.0744399651885033,-0.0250337086617947,0.996911227703094,-0.0351368933916092,-0.00381689332425594,0.999375283718109,-0.0283701624721289,0.0545584037899971,0.998107552528381,-0.101211808621883,0.00494068441912532,0.994852602481842,0.0635901689529419,0.036556638777256,-0.997306346893311,-0.670252799987793,0.732019126415253,-0.122103087604046,-0.556725561618805,0.826725661754608,-0.0811246410012245,0.104256384074688,0.0927776768803597,-0.990213572978973,0.125043570995331,-0.0185366775840521,-0.991978049278259,0.1666149944067,0.00512828631326556,-0.986008763313293,0.666292667388916,-0.745583951473236,-0.0125943198800087,0.719580411911011,-0.694355487823486,-0.00862615555524826,-0.0744399651885033,-0.0250337086617947,0.996911227703094,-0.11436951905489,-0.0646713972091675,0.991331040859222,0.765051245689392,-0.637685894966125,0.0897404327988625,0.708773612976074,-0.701262950897217,0.0766177251935005,-0.749603450298309,0.657639980316162,-0.0748609602451324,-0.101211808621883,0.00494068441912532,0.994852602481842,-0.67665433883667,0.73439484834671,-0.0529434196650982,-0.745636165142059,0.650413155555725,-0.14487686753273,-0.63542366027832,-0.769692957401276,-0.0617213062942028,-0.749603450298309,0.657639980316162,-0.0748609602451324,0.708773612976074,-0.701262950897217,0.0766177251935005,0.719580411911011,-0.694355487823486,-0.00862615555524826,0.666292667388916,-0.745583951473236,-0.0125943198800087,0.667981922626495,-0.741730034351349,0.0603041462600231,0.532631456851959,-0.818212628364563,0.216406345367432,0.0400741063058376,-0.0267373230308294,0.998838901519775,0.667981922626495,-0.741730034351349,0.0603041462600231,0.1666149944067,0.00512828631326556,-0.986008763313293,0.104256384074688,0.0927776768803597,-0.990213572978973,0.122770227491856,0.386934846639633,-0.913897573947906,0.475008189678192,0.0212177988141775,-0.879725575447083,
- -0.596555769443512,0.802418291568756,-0.0156911462545395,-0.0283701624721289,0.0545584037899971,0.998107552528381,0.154893606901169,0.197173774242401,0.968054890632629,-0.00725879892706871,0.998262822628021,0.0584705844521523,0.00565372360870242,0.999965190887451,0.0061293626204133,-0.596555769443512,0.802418291568756,-0.0156911462545395,-0.00725879892706871,0.998262822628021,0.0584705844521523,0.666292667388916,-0.745583951473236,-0.0125943198800087,0.1666149944067,0.00512828631326556,-0.986008763313293,0.475008189678192,0.0212177988141775,-0.879725575447083,0.428184866905212,-0.90359228849411,0.0133730098605156,0.666292667388916,-0.745583951473236,-0.0125943198800087,0.475008189678192,0.0212177988141775,-0.879725575447083,0.667981922626495,-0.741730034351349,0.0603041462600231,-0.0351368933916092,-0.00381689332425594,0.999375283718109,-0.0744399651885033,-0.0250337086617947,0.996911227703094,0.708773612976074,-0.701262950897217,0.0766177251935005,-0.745636165142059,0.650413155555725,-0.14487686753273,-0.749603450298309,0.657639980316162,-0.0748609602451324,-0.67665433883667,0.73439484834671,-0.0529434196650982,-0.670252799987793,0.732019126415253,-0.122103087604046,0.667981922626495,-0.741730034351349,0.0603041462600231,0.428184866905212,-0.90359228849411,0.0133730098605156,0.532631456851959,-0.818212628364563,0.216406345367432,-0.0283701624721289,0.0545584037899971,0.998107552528381,-0.0351368933916092,-0.00381689332425594,0.999375283718109,0.0400741063058376,-0.0267373230308294,0.998838901519775,0.154893606901169,0.197173774242401,0.968054890632629,0.667981922626495,-0.741730034351349,0.0603041462600231,0.666292667388916,-0.745583951473236,-0.0125943198800087,0.428184866905212,-0.90359228849411,0.0133730098605156,-0.556725561618805,0.826725661754608,-0.0811246410012245,0.00565372360870242,0.999965190887451,0.0061293626204133,0.122770227491856,0.386934846639633,-0.913897573947906,-0.556725561618805,0.826725661754608,-0.0811246410012245,-0.596555769443512,0.802418291568756,-0.0156911462545395,0.00565372360870242,0.999965190887451,0.0061293626204133,
- 0.104256384074688,0.0927776768803597,-0.990213572978973,-0.556725561618805,0.826725661754608,-0.0811246410012245,0.122770227491856,0.386934846639633,-0.913897573947906,-0.149044379591942,-0.038900338113308,0.9880650639534,-0.11436951905489,-0.0646713972091675,0.991331040859222,-0.0744399651885033,-0.0250337086617947,0.996911227703094,-0.101211808621883,0.00494068441912532,0.994852602481842,-0.606809258460999,-0.792271971702576,-0.0639336183667183,-0.601544320583344,-0.792815983295441,-0.0979145392775536,-0.602141916751862,-0.794219136238098,-0.0814930498600006,-0.592825829982758,-0.803209841251373,-0.0584074258804321,-0.593347489833832,-0.802960574626923,-0.056505773216486,-0.608766257762909,-0.792969167232513,-0.0245683919638395,-0.610010623931885,-0.792021155357361,-0.0242780521512032,-0.63542366027832,-0.769692957401276,-0.0617213062942028,-0.619558334350586,-0.782482028007507,-0.0622039437294006,0.765051245689392,-0.637685894966125,0.0897404327988625,-0.11436951905489,-0.0646713972091675,0.991331040859222,-0.608766257762909,-0.792969167232513,-0.0245683919638395,-0.593347489833832,-0.802960574626923,-0.056505773216486,-0.610010623931885,-0.792021155357361,-0.0242780521512032,-0.149044379591942,-0.038900338113308,0.9880650639534,-0.749603450298309,0.657639980316162,-0.0748609602451324,-0.610010623931885,-0.792021155357361,-0.0242780521512032,-0.608766257762909,-0.792969167232513,-0.0245683919638395,-0.11436951905489,-0.0646713972091675,0.991331040859222,-0.149044379591942,-0.038900338113308,0.9880650639534,-0.424723416566849,0.905323028564453,-0.000427051563747227,-0.00725879892706871,0.998262822628021,0.0584705844521523,0.154893606901169,0.197173774242401,0.968054890632629,0.414443343877792,0.909035325050354,-0.0434917397797108,0.284049302339554,0.958526849746704,0.0232897996902466,-0.111971206963062,0.903470933437347,-0.413766473531723,0.282637715339661,0.959196269512177,0.00765484245494008,0.373373955488205,0.926147758960724,-0.0533125437796116,-0.0899561941623688,0.994850754737854,-0.0466892048716545,-0.13485050201416,0.989928066730499,0.0431017726659775,
- 0.100210465490818,0.025904044508934,-0.994628965854645,0.0533922053873539,0.0316073521971703,-0.998073279857636,-0.0899561941623688,0.994850754737854,-0.0466892048716545,0.373373955488205,0.926147758960724,-0.0533125437796116,0.0602577440440655,-0.0308658070862293,-0.997705519199371,0.0533922053873539,0.0316073521971703,-0.998073279857636,0.100210465490818,0.025904044508934,-0.994628965854645,-0.305275052785873,-0.774346113204956,-0.554251968860626,-0.167782723903656,0.0496917441487312,-0.984570741653442,-0.998567998409271,-0.020294189453125,0.0494999848306179,-0.989403486251831,0.0243142433464527,0.143142089247704,-0.998567998409271,-0.020294189453125,0.0494999848306179,-0.997959315776825,-0.0374646633863449,0.0517069958150387,-0.992791593074799,-0.036409255117178,0.114189490675926,-0.986207664012909,0.000606097921263427,0.165511682629585,-0.326733380556107,-0.94446873664856,0.0349876582622528,-0.563412427902222,-0.820597410202026,0.09584591537714,-0.329674303531647,-0.943619906902313,-0.029936209321022,0.0424679256975651,-0.0275790728628635,0.998717129230499,0.0337392315268517,0.0748921856284142,0.996620774269104,-0.129633679986,-0.0309793688356876,0.991077899932861,-0.95009434223175,-0.290002942085266,0.114974416792393,-0.946307182312012,-0.320067584514618,0.045379176735878,-0.945951759815216,-0.320115834474564,0.051972396671772,-0.942927598953247,-0.307090789079666,0.128774121403694,0.0727829858660698,-0.00250669382512569,0.997344613075256,0.0607765763998032,-0.0143301980569959,0.998048484325409,-0.95009434223175,-0.290002942085266,0.114974416792393,-0.942927598953247,-0.307090789079666,0.128774121403694,0.143396466970444,0.0191744789481163,0.989479541778564,0.125334292650223,0.00855646841228008,0.992077648639679,0.0607765763998032,-0.0143301980569959,0.998048484325409,0.0727829858660698,-0.00250669382512569,0.997344613075256,0.973492801189423,0.0591406151652336,-0.220939055085182,0.970702111721039,0.0558135360479355,-0.23371410369873,0.987482368946075,0.0481448024511337,-0.15020215511322,0.986611664295197,0.0596122890710831,-0.151801705360413,
- 0.765051245689392,-0.637685894966125,0.0897404327988625,0.755748629570007,-0.654847502708435,0.00434606429189444,0.719580411911011,-0.694355487823486,-0.00862615555524826,0.708773612976074,-0.701262950897217,0.0766177251935005,0.464937329292297,-0.885089159011841,-0.0212226863950491,-0.177369624376297,-0.977172017097473,0.116939283907413,-0.267816454172134,-0.962429404258728,-0.0447640642523766,0.667981922626495,-0.741730034351349,0.0603041462600231,0.0400741063058376,-0.0267373230308294,0.998838901519775,-0.0351368933916092,-0.00381689332425594,0.999375283718109,0.940882325172424,-0.312019854784012,-0.131848827004433,0.923520684242249,0.374009221792221,-0.0850096642971039,0.927359998226166,0.327089250087738,-0.181703090667725,0.918991565704346,-0.341900020837784,-0.196364462375641,0.927359998226166,0.327089250087738,-0.181703090667725,0.632564306259155,0.265892416238785,-0.727436304092407,0.918991565704346,-0.341900020837784,-0.196364462375641,0.923520684242249,0.374009221792221,-0.0850096642971039,0.25084975361824,-0.149041458964348,0.956483602523804,0.896890938282013,0.43369659781456,-0.0865679532289505,-0.989374697208405,-0.036655779927969,-0.140691727399826,-0.991041362285614,-0.0557313859462738,-0.121370866894722,-0.976300477981567,-0.0588436834514141,-0.208266124129295,-0.976665556430817,-0.040299154818058,-0.210950940847397,-0.976797878742218,0.0504726655781269,-0.208131030201912,0.109510391950607,0.0327960252761841,-0.993444442749023,0.11229058355093,0.00691287964582443,-0.993651330471039,-0.97827684879303,0.00401325570419431,-0.207263916730881,0.9902024269104,0.0323846116662025,0.135831817984581,0.994978249073029,-0.0388568453490734,0.0922408998012543,0.999166131019592,-0.00981601420789957,0.0396339297294617,0.600488901138306,0.795823156833649,0.0779652297496796,0.596272170543671,0.801989376544952,-0.0356710888445377,-0.862747371196747,0.47194030880928,-0.181492179632187,0.105430915951729,0.0125548988580704,-0.994347333908081,0.0981786027550697,0.0637968778610229,-0.993121743202209,0.178181618452072,0.125470444560051,-0.97596538066864,
- 0.162867322564125,0.0120889702811837,-0.986573934555054,0.889382421970367,0.417267203330994,0.186780974268913,0.99739933013916,0.00794733129441738,0.0716341212391853,0.991169214248657,-0.00535945640876889,0.132494926452637,-0.179695278406143,-0.00375935970805585,0.983715057373047,-0.0674337893724442,-0.0548289641737938,0.996216058731079,-0.232146009802818,0.0329245328903198,0.972123563289642,-0.889960944652557,-0.454495877027512,-0.0374553054571152,-0.982277393341064,-0.0502169691026211,-0.180580452084541,-0.707934856414795,-0.69052642583847,-0.148329466581345,0.982134163379669,-0.108513340353966,0.153744429349899,0.943570256233215,0.129154816269875,0.30494949221611,0.994328320026398,0.0623088292777538,0.0861900895833969,-0.116242431104183,0.0174792613834143,0.99306708574295,-0.151494175195694,0.0129544343799353,0.988373219966888,-0.154365703463554,-0.011961524374783,0.987941384315491,-0.0942078158259392,-0.0138443149626255,0.995456337928772,0.0554253943264484,0.0228182356804609,-0.99820214509964,0.114212460815907,0.0604788139462471,-0.991613745689392,0.148682177066803,0.0210563354194164,-0.98866081237793,0.147990047931671,-0.0164585951715708,-0.988851845264435,0.090931810438633,-0.015256249345839,-0.995740234851837,0.99493134021759,-0.0149818146601319,0.0994342267513275,0.998353064060211,-0.0149643681943417,0.0553823038935661,0.99782782793045,0.0472427718341351,0.0459113493561745,0.992702484130859,0.0555870942771435,0.107013203203678,-0.984818518161774,-0.00856907851994038,-0.173375025391579,-0.11734589189291,-0.0116777578368783,0.993022441864014,-0.179695278406143,-0.00375935970805585,0.983715057373047,0.967867434024811,-0.175153627991676,0.180427238345146,0.992702484130859,0.0555870942771435,0.107013203203678,0.99782782793045,0.0472427718341351,0.0459113493561745,-0.321876287460327,0.042452160269022,0.945829510688782,-0.176594942808151,-0.217268154025078,0.96000462770462,-0.989707946777344,0.0238562244921923,-0.141099378466606,0.102851279079914,-0.0276260804384947,-0.99431312084198,0.107313022017479,-0.000324222928611562,-0.994225263595581,
- 0.168282061815262,0.00264226924628019,-0.985735356807709,0.16579994559288,-0.0523954145610332,-0.98476654291153,0.994978249073029,-0.0388568453490734,0.0922408998012543,0.991586983203888,-0.121804267168045,0.0438058525323868,0.999166131019592,-0.00981601420789957,0.0396339297294617,0.889382421970367,0.417267203330994,0.186780974268913,0.974684119224548,0.166583329439163,0.149133607745171,0.991186857223511,0.111935615539551,0.070846363902092,-0.0723657235503197,0.235145300626755,0.969262540340424,-0.172608599066734,0.0543704517185688,0.98348867893219,-0.0366966389119625,0.0715434700250626,0.996762156486511,-0.978425145149231,-0.0344799980521202,-0.203704535961151,-0.976665556430817,-0.040299154818058,-0.210950940847397,0.090931810438633,-0.015256249345839,-0.995740234851837,0.999095439910889,0.00503258174285293,0.0422255583107471,0.983541965484619,0.0537162981927395,0.172510057687759,0.994678795337677,0.017430217936635,0.101539619266987,0.998274385929108,0.0166045818477869,0.0563250333070755,0.9902024269104,0.0323846116662025,0.135831817984581,0.97860312461853,-0.113619096577168,0.171541929244995,0.994978249073029,-0.0388568453490734,0.0922408998012543,-0.0857447981834412,0.101593621075153,0.991123914718628,-0.10792151838541,0.000654037052299827,0.99415922164917,0.983541965484619,0.0537162981927395,0.172510057687759,0.993949234485626,-0.0989562571048737,0.0476728342473507,0.155654400587082,-0.0265418328344822,-0.987454891204834,0.998353064060211,-0.0149643681943417,0.0553823038935661,-0.0289596524089575,-0.909415125846863,0.414880037307739,-0.0750018060207367,-0.0049126585945487,0.99717128276825,-0.0586664378643036,0.00968395080417395,0.998230695724487,0.533473491668701,-0.824038445949554,0.190700694918633,0.773040950298309,0.226293921470642,0.592620134353638,0.991569697856903,-0.0959038212895393,0.0871322900056839,-0.0216644611209631,0.141669780015945,0.989676892757416,-0.195327088236809,0.00529202073812485,0.980723917484283,-0.156826287508011,0.134896695613861,0.978370368480682,0.852823436260223,0.192356467247009,-0.48548024892807,
- 0.148682177066803,0.0210563354194164,-0.98866081237793,0.246699705719948,-0.140384018421173,-0.958869993686676,-0.0611469782888889,-0.00429033674299717,0.998119592666626,-0.150619521737099,-0.00523449527099729,0.988577902317047,-0.172608599066734,0.0543704517185688,0.98348867893219,-0.0723657235503197,0.235145300626755,0.969262540340424,0.602562129497528,0.771763265132904,0.203225150704384,0.632918179035187,0.768267154693604,0.0958131104707718,0.65984058380127,0.751282095909119,0.0136213805526495,-0.116242431104183,0.0174792613834143,0.99306708574295,-0.0216644611209631,0.141669780015945,0.989676892757416,-0.151494175195694,0.0129544343799353,0.988373219966888,0.999166131019592,-0.00981601420789957,0.0396339297294617,0.991586983203888,-0.121804267168045,0.0438058525323868,0.84213525056839,-0.309851258993149,-0.441361993551254,-0.984818518161774,-0.00856907851994038,-0.173375025391579,-0.179695278406143,-0.00375935970805585,0.983715057373047,-0.989374697208405,-0.036655779927969,-0.140691727399826,-0.0366966389119625,0.0715434700250626,0.996762156486511,-0.172608599066734,0.0543704517185688,0.98348867893219,-0.232146009802818,0.0329245328903198,0.972123563289642,0.178831160068512,0.0539265908300877,-0.98240077495575,0.109515614807606,0.0342686474323273,-0.993394136428833,0.180523216724396,0.0984000191092491,-0.978636145591736,0.173787847161293,-0.118155479431152,-0.977669298648834,0.579445242881775,-0.0437273718416691,-0.813837230205536,0.180523216724396,0.0984000191092491,-0.978636145591736,0.600488901138306,0.795823156833649,0.0779652297496796,0.602562129497528,0.771763265132904,0.203225150704384,0.65984058380127,0.751282095909119,0.0136213805526495,0.600488901138306,0.795823156833649,0.0779652297496796,0.471591889858246,0.823075234889984,0.316462188959122,0.602562129497528,0.771763265132904,0.203225150704384,-0.14597849547863,0.0341072678565979,0.988699734210968,-0.0754318386316299,0.00557184545323253,0.997135400772095,0.602562129497528,0.771763265132904,0.203225150704384,0.991569697856903,-0.0959038212895393,0.0871322900056839,
- 0.999095439910889,0.00503258174285293,0.0422255583107471,0.991586983203888,-0.121804267168045,0.0438058525323868,0.180523216724396,0.0984000191092491,-0.978636145591736,0.579445242881775,-0.0437273718416691,-0.813837230205536,0.178831160068512,0.0539265908300877,-0.98240077495575,-0.98342365026474,0.0598657205700874,-0.17115493118763,-0.984818518161774,-0.00856907851994038,-0.173375025391579,-0.989374697208405,-0.036655779927969,-0.140691727399826,-0.976665556430817,-0.040299154818058,-0.210950940847397,-0.978425145149231,-0.0344799980521202,-0.203704535961151,0.090931810438633,-0.015256249345839,-0.995740234851837,-0.976665556430817,-0.040299154818058,-0.210950940847397,-0.976300477981567,-0.0588436834514141,-0.208266124129295,0.0554253943264484,0.0228182356804609,-0.99820214509964,-0.976300477981567,-0.0588436834514141,-0.208266124129295,-0.711593747138977,-0.6982342004776,-0.0781250819563866,-0.821330010890961,-0.532283127307892,-0.20516249537468,-0.983461022377014,-0.0206511802971363,-0.179938748478889,-0.994371891021729,-0.0111341839656234,-0.105359777808189,-0.992635190486908,-0.0297803282737732,-0.117424413561821,-0.982154846191406,-0.034122534096241,-0.184952944517136,0.0930271148681641,-0.0297536160796881,-0.995218932628632,0.159899920225143,-0.011436577886343,-0.987066984176636,0.0269887261092663,-0.198914214968681,-0.979645252227783,0.103056654334068,-0.0270102489739656,-0.994308769702911,-0.241476476192474,-0.455293476581573,-0.856969654560089,-0.97520387172699,-0.0846673548221588,-0.204472437500954,0.773040950298309,0.226293921470642,0.592620134353638,0.983541965484619,0.0537162981927395,0.172510057687759,0.991569697856903,-0.0959038212895393,0.0871322900056839,0.090931810438633,-0.015256249345839,-0.995740234851837,0.115225315093994,-0.0860615596175194,-0.98960417509079,-0.978425145149231,-0.0344799980521202,-0.203704535961151,-0.572094976902008,0.723028004169464,-0.387218117713928,0.115225315093994,-0.0860615596175194,-0.98960417509079,0.180523216724396,0.0984000191092491,-0.978636145591736,0.99739933013916,0.00794733129441738,0.0716341212391853,
- 0.889382421970367,0.417267203330994,0.186780974268913,0.876579105854034,0.47766387462616,0.0587058775126934,0.246699705719948,-0.140384018421173,-0.958869993686676,0.0269887261092663,-0.198914214968681,-0.979645252227783,0.159899920225143,-0.011436577886343,-0.987066984176636,-0.572094976902008,0.723028004169464,-0.387218117713928,0.109515614807606,0.0342686474323273,-0.993394136428833,-0.980655074119568,0.0674831345677376,-0.183743581175804,0.0930271148681641,-0.0297536160796881,-0.995218932628632,-0.979034781455994,0.00643357494845986,-0.203591629862785,-0.981009185314178,0.0415995307266712,-0.189448148012161,0.105430915951729,0.0125548988580704,-0.994347333908081,0.0930271148681641,-0.0297536160796881,-0.995218932628632,0.0269887261092663,-0.198914214968681,-0.979645252227783,-0.548176527023315,-0.61417293548584,-0.567709386348724,-0.979034781455994,0.00643357494845986,-0.203591629862785,0.0269887261092663,-0.198914214968681,-0.979645252227783,-0.976300477981567,-0.0588436834514141,-0.208266124129295,-0.548176527023315,-0.61417293548584,-0.567709386348724,-0.116242431104183,0.0174792613834143,0.99306708574295,-0.0942078158259392,-0.0138443149626255,0.995456337928772,0.272500842809677,0.185746937990189,0.9440558552742,-0.116242431104183,0.0174792613834143,0.99306708574295,0.272500842809677,0.185746937990189,0.9440558552742,-0.0216644611209631,0.141669780015945,0.989676892757416,-0.232146009802818,0.0329245328903198,0.972123563289642,-0.0674337893724442,-0.0548289641737938,0.996216058731079,-0.0366966389119625,0.0715434700250626,0.996762156486511,0.991186857223511,0.111935615539551,0.070846363902092,0.974684119224548,0.166583329439163,0.149133607745171,0.987367868423462,0.0727595835924149,0.140751197934151,0.9902024269104,0.0323846116662025,0.135831817984581,0.364753425121307,0.357244044542313,-0.859843850135803,0.155654400587082,-0.0265418328344822,-0.987454891204834,0.993949234485626,-0.0989562571048737,0.0476728342473507,0.121870964765549,-0.0674034282565117,-0.990254640579224,0.155654400587082,-0.0265418328344822,-0.987454891204834,
- 0.364753425121307,0.357244044542313,-0.859843850135803,-0.764260053634644,0.619232058525085,-0.1801618039608,-0.854963719844818,0.499079346656799,-0.141268759965897,-0.983461022377014,-0.0206511802971363,-0.179938748478889,0.107313022017479,-0.000324222928611562,-0.994225263595581,0.102851279079914,-0.0276260804384947,-0.99431312084198,-0.983461022377014,-0.0206511802971363,-0.179938748478889,-0.982154846191406,-0.034122534096241,-0.184952944517136,0.876579105854034,0.47766387462616,0.0587058775126934,0.889382421970367,0.417267203330994,0.186780974268913,0.991186857223511,0.111935615539551,0.070846363902092,0.246699705719948,-0.140384018421173,-0.958869993686676,0.991186857223511,0.111935615539551,0.070846363902092,0.852823436260223,0.192356467247009,-0.48548024892807,-0.241476476192474,-0.455293476581573,-0.856969654560089,-0.707934856414795,-0.69052642583847,-0.148329466581345,-0.982277393341064,-0.0502169691026211,-0.180580452084541,-0.97520387172699,-0.0846673548221588,-0.204472437500954,-0.982277393341064,-0.0502169691026211,-0.180580452084541,-0.989819288253784,-0.00756335165351629,-0.142129242420197,-0.991709589958191,-0.000226286836550571,-0.128498941659927,-0.97827684879303,0.00401325570419431,-0.207263916730881,-0.97520387172699,-0.0846673548221588,-0.204472437500954,-0.0586664378643036,0.00968395080417395,0.998230695724487,-0.0750018060207367,-0.0049126585945487,0.99717128276825,-0.176594942808151,-0.217268154025078,0.96000462770462,0.155654400587082,-0.0265418328344822,-0.987454891204834,0.158614233136177,0.00663712108507752,-0.987318396568298,0.998353064060211,-0.0149643681943417,0.0553823038935661,-0.711593747138977,-0.6982342004776,-0.0781250819563866,-0.232146009802818,0.0329245328903198,0.972123563289642,-0.172608599066734,0.0543704517185688,0.98348867893219,-0.150619521737099,-0.00523449527099729,0.988577902317047,-0.991733729839325,-0.00584997516125441,-0.128179296851158,-0.172608599066734,0.0543704517185688,0.98348867893219,-0.156826287508011,0.134896695613861,0.978370368480682,-0.195327088236809,0.00529202073812485,0.980723917484283,
- -0.994371891021729,-0.0111341839656234,-0.105359777808189,-0.156826287508011,0.134896695613861,0.978370368480682,-0.151494175195694,0.0129544343799353,0.988373219966888,-0.0216644611209631,0.141669780015945,0.989676892757416,-0.176594942808151,-0.217268154025078,0.96000462770462,-0.11734589189291,-0.0116777578368783,0.993022441864014,-0.984818518161774,-0.00856907851994038,-0.173375025391579,0.596272170543671,0.801989376544952,-0.0356710888445377,0.600488901138306,0.795823156833649,0.0779652297496796,0.65984058380127,0.751282095909119,0.0136213805526495,-0.154365703463554,-0.011961524374783,0.987941384315491,-0.991709589958191,-0.000226286836550571,-0.128498941659927,-0.989819288253784,-0.00756335165351629,-0.142129242420197,-0.165486082434654,-0.0496784374117851,0.984960079193115,0.173549667000771,0.0146314008161426,-0.984716355800629,0.596272170543671,0.801989376544952,-0.0356710888445377,0.65984058380127,0.751282095909119,0.0136213805526495,-0.991041362285614,-0.0557313859462738,-0.121370866894722,-0.232146009802818,0.0329245328903198,0.972123563289642,-0.711593747138977,-0.6982342004776,-0.0781250819563866,-0.976300477981567,-0.0588436834514141,-0.208266124129295,-0.991041362285614,-0.0557313859462738,-0.121370866894722,-0.711593747138977,-0.6982342004776,-0.0781250819563866,-0.0857447981834412,0.101593621075153,0.991123914718628,0.983541965484619,0.0537162981927395,0.172510057687759,0.773040950298309,0.226293921470642,0.592620134353638,0.773040950298309,0.226293921470642,0.592620134353638,-0.0289596524089575,-0.909415125846863,0.414880037307739,-0.0586664378643036,0.00968395080417395,0.998230695724487,-0.0942078158259392,-0.0138443149626255,0.995456337928772,-0.073361873626709,-0.0882115066051483,0.993396520614624,0.982134163379669,-0.108513340353966,0.153744429349899,-0.0942078158259392,-0.0138443149626255,0.995456337928772,0.982134163379669,-0.108513340353966,0.153744429349899,0.99493134021759,-0.0149818146601319,0.0994342267513275,0.143270924687386,-0.452203124761581,-0.880332767963409,0.16579994559288,-0.0523954145610332,-0.98476654291153,
- 0.96370530128479,-0.261121213436127,0.055568028241396,0.991186857223511,0.111935615539551,0.070846363902092,0.246699705719948,-0.140384018421173,-0.958869993686676,0.876579105854034,0.47766387462616,0.0587058775126934,0.246699705719948,-0.140384018421173,-0.958869993686676,0.99739933013916,0.00794733129441738,0.0716341212391853,0.876579105854034,0.47766387462616,0.0587058775126934,-0.982277393341064,-0.0502169691026211,-0.180580452084541,-0.889960944652557,-0.454495877027512,-0.0374553054571152,-0.989819288253784,-0.00756335165351629,-0.142129242420197,0.773040950298309,0.226293921470642,0.592620134353638,-0.0586664378643036,0.00968395080417395,0.998230695724487,-0.0857447981834412,0.101593621075153,0.991123914718628,-0.711593747138977,-0.6982342004776,-0.0781250819563866,-0.172608599066734,0.0543704517185688,0.98348867893219,-0.991733729839325,-0.00584997516125441,-0.128179296851158,-0.690095365047455,-0.718715071678162,-0.0849527567625046,0.991186857223511,0.111935615539551,0.070846363902092,0.999166131019592,-0.00981601420789957,0.0396339297294617,0.852823436260223,0.192356467247009,-0.48548024892807,-0.154365703463554,-0.011961524374783,0.987941384315491,-0.165486082434654,-0.0496784374117851,0.984960079193115,-0.073361873626709,-0.0882115066051483,0.993396520614624,-0.0942078158259392,-0.0138443149626255,0.995456337928772,-0.10792151838541,0.000654037052299827,0.99415922164917,-0.195492967963219,0.0272046755999327,0.980327725410461,-0.195327088236809,0.00529202073812485,0.980723917484283,0.99739933013916,0.00794733129441738,0.0716341212391853,0.159899920225143,-0.011436577886343,-0.987066984176636,0.162867322564125,0.0120889702811837,-0.986573934555054,0.997615337371826,0.0119984894990921,0.0679684206843376,0.159899920225143,-0.011436577886343,-0.987066984176636,0.99739933013916,0.00794733129441738,0.0716341212391853,0.246699705719948,-0.140384018421173,-0.958869993686676,-0.0879305228590965,-0.0193677917122841,0.995938301086426,-0.0674337893724442,-0.0548289641737938,0.996216058731079,-0.179695278406143,-0.00375935970805585,0.983715057373047,
- 0.993949234485626,-0.0989562571048737,0.0476728342473507,0.994328320026398,0.0623088292777538,0.0861900895833969,0.364753425121307,0.357244044542313,-0.859843850135803,0.982134163379669,-0.108513340353966,0.153744429349899,0.994328320026398,0.0623088292777538,0.0861900895833969,0.993949234485626,-0.0989562571048737,0.0476728342473507,0.147990047931671,-0.0164585951715708,-0.988851845264435,0.999166131019592,-0.00981601420789957,0.0396339297294617,0.84213525056839,-0.309851258993149,-0.441361993551254,-0.989707946777344,0.0238562244921923,-0.141099378466606,-0.195492967963219,0.0272046755999327,0.980327725410461,-0.321876287460327,0.042452160269022,0.945829510688782,0.987367868423462,0.0727595835924149,0.140751197934151,-0.0879305228590965,-0.0193677917122841,0.995938301086426,0.9902024269104,0.0323846116662025,0.135831817984581,-0.0879305228590965,-0.0193677917122841,0.995938301086426,0.97860312461853,-0.113619096577168,0.171541929244995,0.9902024269104,0.0323846116662025,0.135831817984581,0.99782782793045,0.0472427718341351,0.0459113493561745,0.169274136424065,0.0328626595437527,-0.985020935535431,0.143270924687386,-0.452203124761581,-0.880332767963409,0.96370530128479,-0.261121213436127,0.055568028241396,0.96370530128479,-0.261121213436127,0.055568028241396,0.967867434024811,-0.175153627991676,0.180427238345146,0.99782782793045,0.0472427718341351,0.0459113493561745,0.173787847161293,-0.118155479431152,-0.977669298648834,0.147990047931671,-0.0164585951715708,-0.988851845264435,0.84213525056839,-0.309851258993149,-0.441361993551254,0.991586983203888,-0.121804267168045,0.0438058525323868,0.579445242881775,-0.0437273718416691,-0.813837230205536,0.173787847161293,-0.118155479431152,-0.977669298648834,0.84213525056839,-0.309851258993149,-0.441361993551254,0.889382421970367,0.417267203330994,0.186780974268913,-0.0723657235503197,0.235145300626755,0.969262540340424,0.974684119224548,0.166583329439163,0.149133607745171,0.95011168718338,-0.260919332504272,0.170906081795692,-0.0925372317433357,-0.0826754495501518,0.992270886898041,
- -0.116679310798645,-0.102439902722836,0.98787248134613,0.951468110084534,-0.275655627250671,0.136829420924187,0.0554253943264484,0.0228182356804609,-0.99820214509964,-0.976300477981567,-0.0588436834514141,-0.208266124129295,0.0269887261092663,-0.198914214968681,-0.979645252227783,-0.0366966389119625,0.0715434700250626,0.996762156486511,0.987367868423462,0.0727595835924149,0.140751197934151,0.974684119224548,0.166583329439163,0.149133607745171,0.974684119224548,0.166583329439163,0.149133607745171,-0.0723657235503197,0.235145300626755,0.969262540340424,-0.0366966389119625,0.0715434700250626,0.996762156486511,0.533473491668701,-0.824038445949554,0.190700694918633,0.994978249073029,-0.0388568453490734,0.0922408998012543,0.97860312461853,-0.113619096577168,0.171541929244995,0.114212460815907,0.0604788139462471,-0.991613745689392,0.0269887261092663,-0.198914214968681,-0.979645252227783,0.246699705719948,-0.140384018421173,-0.958869993686676,0.0554253943264484,0.0228182356804609,-0.99820214509964,0.0269887261092663,-0.198914214968681,-0.979645252227783,0.114212460815907,0.0604788139462471,-0.991613745689392,-0.0754318386316299,0.00557184545323253,0.997135400772095,0.632918179035187,0.768267154693604,0.0958131104707718,0.602562129497528,0.771763265132904,0.203225150704384,0.632918179035187,0.768267154693604,0.0958131104707718,0.902282953262329,-0.414489895105362,0.118674106895924,0.990719735622406,-0.0918226689100266,0.100214801728725,0.16579994559288,-0.0523954145610332,-0.98476654291153,0.998123645782471,-0.00575279258191586,0.0609595663845539,0.96370530128479,-0.261121213436127,0.055568028241396,-0.994850695133209,0.0424807742238045,-0.0920183211565018,-0.854963719844818,0.499079346656799,-0.141268759965897,-0.99140864610672,-0.0182472355663776,-0.129521995782852,-0.0754318386316299,0.00557184545323253,0.997135400772095,0.902282953262329,-0.414489895105362,0.118674106895924,0.632918179035187,0.768267154693604,0.0958131104707718,0.991569697856903,-0.0959038212895393,0.0871322900056839,0.991586983203888,-0.121804267168045,0.0438058525323868,
- 0.994978249073029,-0.0388568453490734,0.0922408998012543,0.533473491668701,-0.824038445949554,0.190700694918633,0.991569697856903,-0.0959038212895393,0.0871322900056839,0.994978249073029,-0.0388568453490734,0.0922408998012543,0.115225315093994,-0.0860615596175194,-0.98960417509079,-0.572094976902008,0.723028004169464,-0.387218117713928,-0.978425145149231,-0.0344799980521202,-0.203704535961151,-0.978425145149231,-0.0344799980521202,-0.203704535961151,-0.572094976902008,0.723028004169464,-0.387218117713928,-0.98342365026474,0.0598657205700874,-0.17115493118763,0.994678795337677,0.017430217936635,0.101539619266987,-0.0806602090597153,-0.0787115320563316,0.993628919124603,0.99368804693222,-0.00639643613249063,0.111996315419674,-0.0806602090597153,-0.0787115320563316,0.993628919124603,0.967867434024811,-0.175153627991676,0.180427238345146,0.99368804693222,-0.00639643613249063,0.111996315419674,-0.0857447981834412,0.101593621075153,0.991123914718628,-0.0586664378643036,0.00968395080417395,0.998230695724487,-0.159404441714287,0.0587997138500214,0.985460698604584,0.602562129497528,0.771763265132904,0.203225150704384,0.471591889858246,0.823075234889984,0.316462188959122,-0.14597849547863,0.0341072678565979,0.988699734210968,-0.877491235733032,0.46360570192337,-0.122795790433884,0.471591889858246,0.823075234889984,0.316462188959122,0.600488901138306,0.795823156833649,0.0779652297496796,-0.176594942808151,-0.217268154025078,0.96000462770462,-0.984818518161774,-0.00856907851994038,-0.173375025391579,-0.98342365026474,0.0598657205700874,-0.17115493118763,-0.176594942808151,-0.217268154025078,0.96000462770462,-0.98342365026474,0.0598657205700874,-0.17115493118763,-0.989707946777344,0.0238562244921923,-0.141099378466606,0.109515614807606,0.0342686474323273,-0.993394136428833,-0.572094976902008,0.723028004169464,-0.387218117713928,0.180523216724396,0.0984000191092491,-0.978636145591736,0.471591889858246,0.823075234889984,0.316462188959122,-0.877491235733032,0.46360570192337,-0.122795790433884,-0.14597849547863,0.0341072678565979,0.988699734210968,
- 0.579445242881775,-0.0437273718416691,-0.813837230205536,0.991586983203888,-0.121804267168045,0.0438058525323868,0.999095439910889,0.00503258174285293,0.0422255583107471,0.173549667000771,0.0146314008161426,-0.984716355800629,0.65984058380127,0.751282095909119,0.0136213805526495,0.929467082023621,-0.365222126245499,0.0519980080425739,0.148682177066803,0.0210563354194164,-0.98866081237793,0.114212460815907,0.0604788139462471,-0.991613745689392,0.246699705719948,-0.140384018421173,-0.958869993686676,-0.0674337893724442,-0.0548289641737938,0.996216058731079,-0.0879305228590965,-0.0193677917122841,0.995938301086426,0.987367868423462,0.0727595835924149,0.140751197934151,-0.0366966389119625,0.0715434700250626,0.996762156486511,-0.0674337893724442,-0.0548289641737938,0.996216058731079,0.987367868423462,0.0727595835924149,0.140751197934151,-0.572094976902008,0.723028004169464,-0.387218117713928,-0.989707946777344,0.0238562244921923,-0.141099378466606,-0.98342365026474,0.0598657205700874,-0.17115493118763,0.65984058380127,0.751282095909119,0.0136213805526495,0.632918179035187,0.768267154693604,0.0958131104707718,0.990719735622406,-0.0918226689100266,0.100214801728725,0.65984058380127,0.751282095909119,0.0136213805526495,0.990719735622406,-0.0918226689100266,0.100214801728725,0.929467082023621,-0.365222126245499,0.0519980080425739,0.102851279079914,-0.0276260804384947,-0.99431312084198,-0.764260053634644,0.619232058525085,-0.1801618039608,-0.983461022377014,-0.0206511802971363,-0.179938748478889,0.180523216724396,0.0984000191092491,-0.978636145591736,0.115225315093994,-0.0860615596175194,-0.98960417509079,0.173787847161293,-0.118155479431152,-0.977669298648834,0.178831160068512,0.0539265908300877,-0.98240077495575,0.579445242881775,-0.0437273718416691,-0.813837230205536,0.999095439910889,0.00503258174285293,0.0422255583107471,0.16579994559288,-0.0523954145610332,-0.98476654291153,0.168282061815262,0.00264226924628019,-0.985735356807709,0.998274385929108,0.0166045818477869,0.0563250333070755,0.998123645782471,-0.00575279258191586,0.0609595663845539,
- 0.102851279079914,-0.0276260804384947,-0.99431312084198,0.115691177546978,0.13827009499073,-0.983614265918732,-0.764260053634644,0.619232058525085,-0.1801618039608,0.103056654334068,-0.0270102489739656,-0.994308769702911,0.11229058355093,0.00691287964582443,-0.993651330471039,0.158614233136177,0.00663712108507752,-0.987318396568298,0.155654400587082,-0.0265418328344822,-0.987454891204834,0.121870964765549,-0.0674034282565117,-0.990254640579224,0.121870964765549,-0.0674034282565117,-0.990254640579224,0.364753425121307,0.357244044542313,-0.859843850135803,-0.241476476192474,-0.455293476581573,-0.856969654560089,0.103056654334068,-0.0270102489739656,-0.994308769702911,-0.170772403478622,-0.0703049227595329,0.982799112796783,-0.0470417328178883,0.0228910557925701,0.99863064289093,-0.073361873626709,-0.0882115066051483,0.993396520614624,-0.165486082434654,-0.0496784374117851,0.984960079193115,0.943570256233215,0.129154816269875,0.30494949221611,0.982134163379669,-0.108513340353966,0.153744429349899,-0.073361873626709,-0.0882115066051483,0.993396520614624,-0.0470417328178883,0.0228910557925701,0.99863064289093,0.272500842809677,0.185746937990189,0.9440558552742,-0.0942078158259392,-0.0138443149626255,0.995456337928772,0.992702484130859,0.0555870942771435,0.107013203203678,0.967867434024811,-0.175153627991676,0.180427238345146,0.272500842809677,0.185746937990189,0.9440558552742,0.992702484130859,0.0555870942771435,0.107013203203678,-0.0806602090597153,-0.0787115320563316,0.993628919124603,-0.195327088236809,0.00529202073812485,0.980723917484283,-0.0216644611209631,0.141669780015945,0.989676892757416,-0.159404441714287,0.0587997138500214,0.985460698604584,-0.195492967963219,0.0272046755999327,0.980327725410461,-0.10792151838541,0.000654037052299827,0.99415922164917,-0.0857447981834412,0.101593621075153,0.991123914718628,-0.0586664378643036,0.00968395080417395,0.998230695724487,-0.321876287460327,0.042452160269022,0.945829510688782,-0.159404441714287,0.0587997138500214,0.985460698604584,-0.176594942808151,-0.217268154025078,0.96000462770462,
- -0.321876287460327,0.042452160269022,0.945829510688782,-0.0586664378643036,0.00968395080417395,0.998230695724487,-0.151494175195694,0.0129544343799353,0.988373219966888,-0.99140864610672,-0.0182472355663776,-0.129521995782852,-0.991709589958191,-0.000226286836550571,-0.128498941659927,-0.154365703463554,-0.011961524374783,0.987941384315491,-0.994850695133209,0.0424807742238045,-0.0920183211565018,-0.99140864610672,-0.0182472355663776,-0.129521995782852,-0.151494175195694,0.0129544343799353,0.988373219966888,-0.994850695133209,0.0424807742238045,-0.0920183211565018,-0.151494175195694,0.0129544343799353,0.988373219966888,-0.156826287508011,0.134896695613861,0.978370368480682,-0.156826287508011,0.134896695613861,0.978370368480682,-0.994371891021729,-0.0111341839656234,-0.105359777808189,-0.994850695133209,0.0424807742238045,-0.0920183211565018,-0.992003202438354,0.040070865303278,-0.119682773947716,-0.146965533494949,-0.00990220811218023,0.98909205198288,-0.141602352261543,0.0557756721973419,0.988351047039032,-0.99390059709549,0.0359323471784592,-0.104261837899685,0.173549667000771,0.0146314008161426,-0.984716355800629,0.100427225232124,0.059223510324955,-0.993180215358734,0.596272170543671,0.801989376544952,-0.0356710888445377,-0.862747371196747,0.47194030880928,-0.181492179632187,0.596272170543671,0.801989376544952,-0.0356710888445377,0.100427225232124,0.059223510324955,-0.993180215358734,-0.873200595378876,0.462796688079834,-0.152773633599281,-0.877491235733032,0.46360570192337,-0.122795790433884,0.600488901138306,0.795823156833649,0.0779652297496796,0.600488901138306,0.795823156833649,0.0779652297496796,-0.862747371196747,0.47194030880928,-0.181492179632187,-0.873200595378876,0.462796688079834,-0.152773633599281,0.533473491668701,-0.824038445949554,0.190700694918633,-0.0289596524089575,-0.909415125846863,0.414880037307739,0.773040950298309,0.226293921470642,0.592620134353638,0.533473491668701,-0.824038445949554,0.190700694918633,-0.0750018060207367,-0.0049126585945487,0.99717128276825,-0.0289596524089575,-0.909415125846863,0.414880037307739,
- -0.0879305228590965,-0.0193677917122841,0.995938301086426,-0.0750018060207367,-0.0049126585945487,0.99717128276825,0.97860312461853,-0.113619096577168,0.171541929244995,-0.0216644611209631,0.141669780015945,0.989676892757416,0.272500842809677,0.185746937990189,0.9440558552742,0.967867434024811,-0.175153627991676,0.180427238345146,-0.0806602090597153,-0.0787115320563316,0.993628919124603,-0.0216644611209631,0.141669780015945,0.989676892757416,0.967867434024811,-0.175153627991676,0.180427238345146,-0.10792151838541,0.000654037052299827,0.99415922164917,-0.0806602090597153,-0.0787115320563316,0.993628919124603,0.994678795337677,0.017430217936635,0.101539619266987,0.983541965484619,0.0537162981927395,0.172510057687759,-0.10792151838541,0.000654037052299827,0.99415922164917,0.994678795337677,0.017430217936635,0.101539619266987,-0.548176527023315,-0.61417293548584,-0.567709386348724,-0.976300477981567,-0.0588436834514141,-0.208266124129295,-0.821330010890961,-0.532283127307892,-0.20516249537468,-0.979034781455994,0.00643357494845986,-0.203591629862785,-0.548176527023315,-0.61417293548584,-0.567709386348724,-0.821330010890961,-0.532283127307892,-0.20516249537468,-0.682101368904114,-0.715174198150635,-0.152523890137672,-0.981009185314178,0.0415995307266712,-0.189448148012161,-0.992003202438354,0.040070865303278,-0.119682773947716,-0.99390059709549,0.0359323471784592,-0.104261837899685,-0.98039436340332,0.057455450296402,-0.188482761383057,0.115691177546978,0.13827009499073,-0.983614265918732,0.143270924687386,-0.452203124761581,-0.880332767963409,0.169274136424065,0.0328626595437527,-0.985020935535431,0.102851279079914,-0.0276260804384947,-0.99431312084198,0.143270924687386,-0.452203124761581,-0.880332767963409,0.115691177546978,0.13827009499073,-0.983614265918732,0.102851279079914,-0.0276260804384947,-0.99431312084198,0.16579994559288,-0.0523954145610332,-0.98476654291153,0.143270924687386,-0.452203124761581,-0.880332767963409,-0.195327088236809,0.00529202073812485,0.980723917484283,-0.195492967963219,0.0272046755999327,0.980327725410461,
- -0.992635190486908,-0.0297803282737732,-0.117424413561821,-0.994371891021729,-0.0111341839656234,-0.105359777808189,-0.97520387172699,-0.0846673548221588,-0.204472437500954,-0.97827684879303,0.00401325570419431,-0.207263916730881,0.11229058355093,0.00691287964582443,-0.993651330471039,0.103056654334068,-0.0270102489739656,-0.994308769702911,-0.99140864610672,-0.0182472355663776,-0.129521995782852,-0.976797878742218,0.0504726655781269,-0.208131030201912,-0.97827684879303,0.00401325570419431,-0.207263916730881,-0.991709589958191,-0.000226286836550571,-0.128498941659927,0.993949234485626,-0.0989562571048737,0.0476728342473507,0.998353064060211,-0.0149643681943417,0.0553823038935661,0.99493134021759,-0.0149818146601319,0.0994342267513275,0.982134163379669,-0.108513340353966,0.153744429349899,0.158614233136177,0.00663712108507752,-0.987318396568298,0.169274136424065,0.0328626595437527,-0.985020935535431,0.99782782793045,0.0472427718341351,0.0459113493561745,0.998353064060211,-0.0149643681943417,0.0553823038935661,-0.0942078158259392,-0.0138443149626255,0.995456337928772,0.99493134021759,-0.0149818146601319,0.0994342267513275,0.992702484130859,0.0555870942771435,0.107013203203678,0.11229058355093,0.00691287964582443,-0.993651330471039,0.109510391950607,0.0327960252761841,-0.993444442749023,0.169274136424065,0.0328626595437527,-0.985020935535431,0.158614233136177,0.00663712108507752,-0.987318396568298,0.109515614807606,0.0342686474323273,-0.993394136428833,0.178831160068512,0.0539265908300877,-0.98240077495575,0.168282061815262,0.00264226924628019,-0.985735356807709,0.107313022017479,-0.000324222928611562,-0.994225263595581,-0.982154846191406,-0.034122534096241,-0.184952944517136,-0.992635190486908,-0.0297803282737732,-0.117424413561821,-0.989707946777344,0.0238562244921923,-0.141099378466606,-0.980655074119568,0.0674831345677376,-0.183743581175804,0.109515614807606,0.0342686474323273,-0.993394136428833,0.107313022017479,-0.000324222928611562,-0.994225263595581,-0.982154846191406,-0.034122534096241,-0.184952944517136,-0.980655074119568,0.0674831345677376,-0.183743581175804,
- 0.998274385929108,0.0166045818477869,0.0563250333070755,0.168282061815262,0.00264226924628019,-0.985735356807709,0.178831160068512,0.0539265908300877,-0.98240077495575,0.999095439910889,0.00503258174285293,0.0422255583107471,-0.992635190486908,-0.0297803282737732,-0.117424413561821,-0.195492967963219,0.0272046755999327,0.980327725410461,-0.989707946777344,0.0238562244921923,-0.141099378466606,0.9902024269104,0.0323846116662025,0.135831817984581,0.999166131019592,-0.00981601420789957,0.0396339297294617,0.991186857223511,0.111935615539551,0.070846363902092,-0.11734589189291,-0.0116777578368783,0.993022441864014,-0.176594942808151,-0.217268154025078,0.96000462770462,-0.0750018060207367,-0.0049126585945487,0.99717128276825,0.115225315093994,-0.0860615596175194,-0.98960417509079,0.090931810438633,-0.015256249345839,-0.995740234851837,0.147990047931671,-0.0164585951715708,-0.988851845264435,0.173787847161293,-0.118155479431152,-0.977669298648834,-0.989374697208405,-0.036655779927969,-0.140691727399826,-0.179695278406143,-0.00375935970805585,0.983715057373047,-0.232146009802818,0.0329245328903198,0.972123563289642,-0.991041362285614,-0.0557313859462738,-0.121370866894722,0.147990047931671,-0.0164585951715708,-0.988851845264435,0.148682177066803,0.0210563354194164,-0.98866081237793,0.852823436260223,0.192356467247009,-0.48548024892807,0.999166131019592,-0.00981601420789957,0.0396339297294617,0.159899920225143,-0.011436577886343,-0.987066984176636,0.0930271148681641,-0.0297536160796881,-0.995218932628632,0.105430915951729,0.0125548988580704,-0.994347333908081,0.162867322564125,0.0120889702811837,-0.986573934555054,0.902282953262329,-0.414489895105362,0.118674106895924,0.929467082023621,-0.365222126245499,0.0519980080425739,0.990719735622406,-0.0918226689100266,0.100214801728725,-0.0772557780146599,-0.0116857085376978,0.996942758560181,-0.0768667235970497,0.0258726440370083,0.996705591678619,-0.108798325061798,0.0811160206794739,0.990748822689056,-0.141602352261543,0.0557756721973419,0.988351047039032,-0.146965533494949,-0.00990220811218023,0.98909205198288,
- 0.105430915951729,0.0125548988580704,-0.994347333908081,-0.981009185314178,0.0415995307266712,-0.189448148012161,-0.98039436340332,0.057455450296402,-0.188482761383057,0.0981786027550697,0.0637968778610229,-0.993121743202209,0.162867322564125,0.0120889702811837,-0.986573934555054,0.178181618452072,0.125470444560051,-0.97596538066864,0.994733035564423,0.0672451034188271,0.0773574858903885,0.997615337371826,0.0119984894990921,0.0679684206843376,0.991169214248657,-0.00535945640876889,0.132494926452637,-0.0611469782888889,-0.00429033674299717,0.998119592666626,-0.0723657235503197,0.235145300626755,0.969262540340424,0.889382421970367,0.417267203330994,0.186780974268913,-0.991733729839325,-0.00584997516125441,-0.128179296851158,-0.150619521737099,-0.00523449527099729,0.988577902317047,-0.146965533494949,-0.00990220811218023,0.98909205198288,-0.992003202438354,0.040070865303278,-0.119682773947716,-0.682101368904114,-0.715174198150635,-0.152523890137672,-0.690095365047455,-0.718715071678162,-0.0849527567625046,-0.991733729839325,-0.00584997516125441,-0.128179296851158,-0.979034781455994,0.00643357494845986,-0.203591629862785,0.99368804693222,-0.00639643613249063,0.111996315419674,0.998123645782471,-0.00575279258191586,0.0609595663845539,0.998274385929108,0.0166045818477869,0.0563250333070755,0.994678795337677,0.017430217936635,0.101539619266987,-0.159404441714287,0.0587997138500214,0.985460698604584,-0.321876287460327,0.042452160269022,0.945829510688782,-0.195492967963219,0.0272046755999327,0.980327725410461,-0.11734589189291,-0.0116777578368783,0.993022441864014,-0.0750018060207367,-0.0049126585945487,0.99717128276825,-0.0879305228590965,-0.0193677917122841,0.995938301086426,-0.179695278406143,-0.00375935970805585,0.983715057373047,-0.989819288253784,-0.00756335165351629,-0.142129242420197,-0.170772403478622,-0.0703049227595329,0.982799112796783,-0.165486082434654,-0.0496784374117851,0.984960079193115,0.97860312461853,-0.113619096577168,0.171541929244995,-0.0750018060207367,-0.0049126585945487,0.99717128276825,0.533473491668701,-0.824038445949554,0.190700694918633,
- 0.998123645782471,-0.00575279258191586,0.0609595663845539,0.967867434024811,-0.175153627991676,0.180427238345146,0.96370530128479,-0.261121213436127,0.055568028241396,-0.994850695133209,0.0424807742238045,-0.0920183211565018,-0.994371891021729,-0.0111341839656234,-0.105359777808189,-0.983461022377014,-0.0206511802971363,-0.179938748478889,-0.854963719844818,0.499079346656799,-0.141268759965897,0.990371525287628,0.00848517660051584,0.138174816966057,0.997615337371826,0.0119984894990921,0.0679684206843376,0.994733035564423,0.0672451034188271,0.0773574858903885,0.985927939414978,0.0205271355807781,0.165905505418777,0.735532760620117,0.488382786512375,0.469546437263489,0.174270987510681,0.383500635623932,0.90694922208786,-0.0768667235970497,0.0258726440370083,0.996705591678619,0.985927939414978,0.0205271355807781,0.165905505418777,-0.982373893260956,-0.149691238999367,0.111955016851425,-0.146082103252411,0.0784477069973946,0.986157178878784,-0.176596626639366,-0.0649706795811653,0.982136607170105,-0.980463147163391,0.125703617930412,-0.151296511292458,-0.146082103252411,0.0784477069973946,0.986157178878784,0.174270987510681,0.383500635623932,0.90694922208786,-0.116679310798645,-0.102439902722836,0.98787248134613,-0.176596626639366,-0.0649706795811653,0.982136607170105,0.735532760620117,0.488382786512375,0.469546437263489,0.584812819957733,0.534030973911285,-0.610577404499054,0.951468110084534,-0.275655627250671,0.136829420924187,0.178181618452072,0.125470444560051,-0.97596538066864,0.0981786027550697,0.0637968778610229,-0.993121743202209,0.0759137570858002,0.508047103881836,-0.857977390289307,0.584812819957733,0.534030973911285,-0.610577404499054,-0.99390059709549,0.0359323471784592,-0.104261837899685,-0.141602352261543,0.0557756721973419,0.988351047039032,-0.146082103252411,0.0784477069973946,0.986157178878784,-0.982373893260956,-0.149691238999367,0.111955016851425,-0.983656704425812,0.0460092313587666,-0.174076527357101,-0.99390059709549,0.0359323471784592,-0.104261837899685,-0.982373893260956,-0.149691238999367,0.111955016851425,
- 0.174270987510681,0.383500635623932,0.90694922208786,-0.108798325061798,0.0811160206794739,0.990748822689056,-0.0768667235970497,0.0258726440370083,0.996705591678619,0.0759137570858002,0.508047103881836,-0.857977390289307,-0.98039436340332,0.057455450296402,-0.188482761383057,-0.678374588489532,0.662939131259918,-0.316732585430145,0.994733035564423,0.0672451034188271,0.0773574858903885,0.178181618452072,0.125470444560051,-0.97596538066864,0.584812819957733,0.534030973911285,-0.610577404499054,0.735532760620117,0.488382786512375,0.469546437263489,0.934333562850952,0.341404378414154,0.102292239665985,0.994733035564423,0.0672451034188271,0.0773574858903885,0.584812819957733,0.534030973911285,-0.610577404499054,0.985927939414978,0.0205271355807781,0.165905505418777,-0.0768667235970497,0.0258726440370083,0.996705591678619,-0.0772557780146599,-0.0116857085376978,0.996942758560181,0.990371525287628,0.00848517660051584,0.138174816966057,0.951468110084534,-0.275655627250671,0.136829420924187,-0.116679310798645,-0.102439902722836,0.98787248134613,0.174270987510681,0.383500635623932,0.90694922208786,0.735532760620117,0.488382786512375,0.469546437263489,-0.944605767726898,0.296462267637253,-0.140819042921066,-0.172168076038361,-0.0107560148462653,0.985008895397186,-0.14597849547863,0.0341072678565979,0.988699734210968,-0.877491235733032,0.46360570192337,-0.122795790433884,-0.172168076038361,-0.0107560148462653,0.985008895397186,-0.107405140995979,-0.0332004763185978,0.993660807609558,-0.0754318386316299,0.00557184545323253,0.997135400772095,-0.14597849547863,0.0341072678565979,0.988699734210968,0.951948523521423,-0.303111374378204,0.0437896214425564,0.147334843873978,-0.0146303819492459,-0.988978564739227,0.173549667000771,0.0146314008161426,-0.984716355800629,0.929467082023621,-0.365222126245499,0.0519980080425739,0.943415224552155,-0.312224239110947,0.111730739474297,0.951948523521423,-0.303111374378204,0.0437896214425564,0.929467082023621,-0.365222126245499,0.0519980080425739,0.902282953262329,-0.414489895105362,0.118674106895924,
- -0.979034781455994,0.00643357494845986,-0.203591629862785,-0.991733729839325,-0.00584997516125441,-0.128179296851158,-0.992003202438354,0.040070865303278,-0.119682773947716,-0.981009185314178,0.0415995307266712,-0.189448148012161,-0.983656704425812,0.0460092313587666,-0.174076527357101,-0.982373893260956,-0.149691238999367,0.111955016851425,-0.980463147163391,0.125703617930412,-0.151296511292458,-0.932786345481873,0.296543717384338,-0.204869046807289,-0.944605767726898,0.296462267637253,-0.140819042921066,-0.877491235733032,0.46360570192337,-0.122795790433884,-0.873200595378876,0.462796688079834,-0.152773633599281,-0.862747371196747,0.47194030880928,-0.181492179632187,0.0793675780296326,0.00876476522535086,-0.996806919574738,-0.932786345481873,0.296543717384338,-0.204869046807289,-0.862747371196747,0.47194030880928,-0.181492179632187,0.100427225232124,0.059223510324955,-0.993180215358734,0.0686962082982063,-0.0399489551782608,-0.996837437152863,0.12712299823761,-0.0603475980460644,-0.990049421787262,0.0759137570858002,0.508047103881836,-0.857977390289307,0.584812819957733,0.534030973911285,-0.610577404499054,0.12712299823761,-0.0603475980460644,-0.990049421787262,0.143124148249626,-0.0502591170370579,-0.988427758216858,0.0759137570858002,0.508047103881836,-0.857977390289307,-0.678374588489532,0.662939131259918,-0.316732585430145,-0.886946856975555,-0.365222871303558,-0.282732367515564,-0.0754318386316299,0.00557184545323253,0.997135400772095,-0.107405140995979,-0.0332004763185978,0.993660807609558,0.943415224552155,-0.312224239110947,0.111730739474297,0.902282953262329,-0.414489895105362,0.118674106895924,0.985927939414978,0.0205271355807781,0.165905505418777,0.934333562850952,0.341404378414154,0.102292239665985,0.735532760620117,0.488382786512375,0.469546437263489,-0.141602352261543,0.0557756721973419,0.988351047039032,-0.108798325061798,0.0811160206794739,0.990748822689056,0.174270987510681,0.383500635623932,0.90694922208786,-0.146082103252411,0.0784477069973946,0.986157178878784,0.985927939414978,0.0205271355807781,0.165905505418777,
- 0.994733035564423,0.0672451034188271,0.0773574858903885,0.934333562850952,0.341404378414154,0.102292239665985,0.0759137570858002,0.508047103881836,-0.857977390289307,-0.886946856975555,-0.365222871303558,-0.282732367515564,-0.966161549091339,0.119628332555294,-0.228519052267075,0.0686962082982063,-0.0399489551782608,-0.996837437152863,-0.98039436340332,0.057455450296402,-0.188482761383057,-0.983656704425812,0.0460092313587666,-0.174076527357101,-0.678374588489532,0.662939131259918,-0.316732585430145,0.584812819957733,0.534030973911285,-0.610577404499054,0.0759137570858002,0.508047103881836,-0.857977390289307,0.12712299823761,-0.0603475980460644,-0.990049421787262,0.147334843873978,-0.0146303819492459,-0.988978564739227,0.0793675780296326,0.00876476522535086,-0.996806919574738,0.100427225232124,0.059223510324955,-0.993180215358734,0.173549667000771,0.0146314008161426,-0.984716355800629,-0.98039436340332,0.057455450296402,-0.188482761383057,-0.99390059709549,0.0359323471784592,-0.104261837899685,-0.983656704425812,0.0460092313587666,-0.174076527357101,-0.983656704425812,0.0460092313587666,-0.174076527357101,-0.980463147163391,0.125703617930412,-0.151296511292458,-0.886946856975555,-0.365222871303558,-0.282732367515564,-0.983656704425812,0.0460092313587666,-0.174076527357101,-0.886946856975555,-0.365222871303558,-0.282732367515564,-0.678374588489532,0.662939131259918,-0.316732585430145,0.0981786027550697,0.0637968778610229,-0.993121743202209,-0.98039436340332,0.057455450296402,-0.188482761383057,0.0759137570858002,0.508047103881836,-0.857977390289307,0.951468110084534,-0.275655627250671,0.136829420924187,0.584812819957733,0.534030973911285,-0.610577404499054,0.970963180065155,-0.233838081359863,0.05049978941679,0.970963180065155,-0.233838081359863,0.05049978941679,0.143124148249626,-0.0502591170370579,-0.988427758216858,0.147334843873978,-0.0146303819492459,-0.988978564739227,0.951948523521423,-0.303111374378204,0.0437896214425564,0.143124148249626,-0.0502591170370579,-0.988427758216858,0.12712299823761,-0.0603475980460644,-0.990049421787262,
- 0.0686962082982063,-0.0399489551782608,-0.996837437152863,0.0793675780296326,0.00876476522535086,-0.996806919574738,0.147334843873978,-0.0146303819492459,-0.988978564739227,0.0686962082982063,-0.0399489551782608,-0.996837437152863,-0.966161549091339,0.119628332555294,-0.228519052267075,-0.932786345481873,0.296543717384338,-0.204869046807289,0.0793675780296326,0.00876476522535086,-0.996806919574738,-0.980463147163391,0.125703617930412,-0.151296511292458,-0.966161549091339,0.119628332555294,-0.228519052267075,-0.886946856975555,-0.365222871303558,-0.282732367515564,-0.980463147163391,0.125703617930412,-0.151296511292458,-0.176596626639366,-0.0649706795811653,0.982136607170105,-0.172168076038361,-0.0107560148462653,0.985008895397186,-0.944605767726898,0.296462267637253,-0.140819042921066,-0.176596626639366,-0.0649706795811653,0.982136607170105,-0.116679310798645,-0.102439902722836,0.98787248134613,-0.0925372317433357,-0.0826754495501518,0.992270886898041,-0.107405140995979,-0.0332004763185978,0.993660807609558,-0.172168076038361,-0.0107560148462653,0.985008895397186,0.943415224552155,-0.312224239110947,0.111730739474297,-0.107405140995979,-0.0332004763185978,0.993660807609558,-0.0925372317433357,-0.0826754495501518,0.992270886898041,0.95011168718338,-0.260919332504272,0.170906081795692,0.100001215934753,0.00302385189570487,-0.994982719421387,0.085783876478672,0.0497514419257641,-0.99507087469101,0.193246871232986,0.0433584712445736,-0.980191707611084,0.189135894179344,0.00583055661991239,-0.98193359375,0.000886670488398522,-0.999999046325684,-0.00112098350655288,0.99572879076004,-0.0737903639674187,0.0554890632629395,0.988278865814209,-0.0906175822019577,0.122854173183441,-0.988229513168335,-0.0505947545170784,-0.144369810819626,-0.139905765652657,-0.040535431355238,0.98933470249176,-0.137375757098198,-0.00214916816912591,0.990516662597656,0.0944527760148048,-0.029047042131424,-0.995105504989624,0.1921117156744,0.00397975323721766,-0.981364965438843,-0.000660394842270762,-0.999439895153046,-0.0334566757082939,0.99572879076004,-0.0737903639674187,0.0554890632629395,
- 0.000886670488398522,-0.999999046325684,-0.00112098350655288,0.00149129121564329,-0.999998390674591,-0.000916147255338728,-0.00117856857832521,-0.999779403209686,-0.0209693666547537,-0.000660394842270762,-0.999439895153046,-0.0334566757082939,0.1921117156744,0.00397975323721766,-0.981364965438843,0.0944527760148048,-0.029047042131424,-0.995105504989624,-0.974634766578674,-0.0593321844935417,-0.215793281793594,-0.977733314037323,-0.00641763443127275,-0.209752902388573,0.100001215934753,0.00302385189570487,-0.994982719421387,0.0944527760148048,-0.029047042131424,-0.995105504989624,-0.000660394842270762,-0.999439895153046,-0.0334566757082939,-0.00591664528474212,-0.999967873096466,-0.00542079890146852,-0.974634766578674,-0.0593321844935417,-0.215793281793594,-0.00117856857832521,-0.999779403209686,-0.0209693666547537,0.99572879076004,-0.0737903639674187,0.0554890632629395,0.00149129121564329,-0.999998390674591,-0.000916147255338728,-0.0399871505796909,-0.999186635017395,-0.00519439065828919,-0.00990175362676382,-0.999765336513519,0.0192672070115805,-0.988229513168335,-0.0505947545170784,-0.144369810819626,0.99572879076004,-0.0737903639674187,0.0554890632629395,0.1921117156744,0.00397975323721766,-0.981364965438843,0.189135894179344,0.00583055661991239,-0.98193359375,0.998971819877625,-0.0130856009200215,0.043405257165432,0.1921117156744,0.00397975323721766,-0.981364965438843,0.99572879076004,-0.0737903639674187,0.0554890632629395,-0.00117856857832521,-0.999779403209686,-0.0209693666547537,-0.990238964557648,-0.00703887874260545,-0.139202028512955,-0.137375757098198,-0.00214916816912591,0.990516662597656,-0.141855180263519,0.0493104606866837,0.988658487796783,-0.992406010627747,0.0320143960416317,-0.118766188621521,-0.974634766578674,-0.0593321844935417,-0.215793281793594,-0.00591664528474212,-0.999967873096466,-0.00542079890146852,-0.0208689011633396,-0.999772250652313,-0.00447273720055819,-0.0208689011633396,-0.999772250652313,-0.00447273720055819,-0.0399871505796909,-0.999186635017395,-0.00519439065828919,-0.974634766578674,-0.0593321844935417,-0.215793281793594,
- -0.977733314037323,-0.00641763443127275,-0.209752902388573,-0.990238964557648,-0.00703887874260545,-0.139202028512955,-0.992406010627747,0.0320143960416317,-0.118766188621521,-0.97919362783432,0.0717077851295471,-0.189836218953133,0.1921117156744,0.00397975323721766,-0.981364965438843,0.0944527760148048,-0.029047042131424,-0.995105504989624,0.100001215934753,0.00302385189570487,-0.994982719421387,0.189135894179344,0.00583055661991239,-0.98193359375,-0.082848533987999,-0.00412499578669667,0.996553659439087,-0.0791328027844429,0.0246542803943157,0.996559143066406,-0.141855180263519,0.0493104606866837,0.988658487796783,-0.137375757098198,-0.00214916816912591,0.990516662597656,0.100001215934753,0.00302385189570487,-0.994982719421387,-0.977733314037323,-0.00641763443127275,-0.209752902388573,-0.97919362783432,0.0717077851295471,-0.189836218953133,0.085783876478672,0.0497514419257641,-0.99507087469101,0.189135894179344,0.00583055661991239,-0.98193359375,0.193246871232986,0.0433584712445736,-0.980191707611084,0.998344123363495,0.0367755219340324,0.0442325621843338,0.998971819877625,-0.0130856009200215,0.043405257165432,-0.082848533987999,-0.00412499578669667,0.996553659439087,-0.0916614010930061,-0.0339949131011963,0.995209753513336,0.988278865814209,-0.0906175822019577,0.122854173183441,0.992963552474976,-0.0152105893939734,0.117440171539783,-0.988229513168335,-0.0505947545170784,-0.144369810819626,-0.137375757098198,-0.00214916816912591,0.990516662597656,-0.990238964557648,-0.00703887874260545,-0.139202028512955,-0.974634766578674,-0.0593321844935417,-0.215793281793594,-0.0399871505796909,-0.999186635017395,-0.00519439065828919,-0.988229513168335,-0.0505947545170784,-0.144369810819626,0.992963552474976,-0.0152105893939734,0.117440171539783,0.998971819877625,-0.0130856009200215,0.043405257165432,0.998344123363495,0.0367755219340324,0.0442325621843338,0.993845880031586,0.0320844240486622,0.106023959815502,0.943570256233215,0.129154816269875,0.30494949221611,-0.0470417328178883,0.0228910557925701,0.99863064289093,0.993845880031586,0.0320844240486622,0.106023959815502,
- 0.193246871232986,0.0433584712445736,-0.980191707611084,0.085783876478672,0.0497514419257641,-0.99507087469101,-0.241476476192474,-0.455293476581573,-0.856969654560089,0.364753425121307,0.357244044542313,-0.859843850135803,-0.992406010627747,0.0320143960416317,-0.118766188621521,-0.141855180263519,0.0493104606866837,0.988658487796783,-0.170772403478622,-0.0703049227595329,0.982799112796783,-0.889960944652557,-0.454495877027512,-0.0374553054571152,-0.707934856414795,-0.69052642583847,-0.148329466581345,-0.992406010627747,0.0320143960416317,-0.118766188621521,-0.889960944652557,-0.454495877027512,-0.0374553054571152,0.998344123363495,0.0367755219340324,0.0442325621843338,0.193246871232986,0.0433584712445736,-0.980191707611084,0.364753425121307,0.357244044542313,-0.859843850135803,0.994328320026398,0.0623088292777538,0.0861900895833969,0.998344123363495,0.0367755219340324,0.0442325621843338,0.364753425121307,0.357244044542313,-0.859843850135803,0.993845880031586,0.0320844240486622,0.106023959815502,-0.0791328027844429,0.0246542803943157,0.996559143066406,-0.082848533987999,-0.00412499578669667,0.996553659439087,0.992963552474976,-0.0152105893939734,0.117440171539783,-0.974634766578674,-0.0593321844935417,-0.215793281793594,-0.988229513168335,-0.0505947545170784,-0.144369810819626,-0.990238964557648,-0.00703887874260545,-0.139202028512955,-0.977733314037323,-0.00641763443127275,-0.209752902388573,0.993845880031586,0.0320844240486622,0.106023959815502,0.994328320026398,0.0623088292777538,0.0861900895833969,0.943570256233215,0.129154816269875,0.30494949221611,-0.141855180263519,0.0493104606866837,0.988658487796783,-0.0791328027844429,0.0246542803943157,0.996559143066406,-0.0470417328178883,0.0228910557925701,0.99863064289093,-0.170772403478622,-0.0703049227595329,0.982799112796783,0.993845880031586,0.0320844240486622,0.106023959815502,0.998344123363495,0.0367755219340324,0.0442325621843338,0.994328320026398,0.0623088292777538,0.0861900895833969,-0.97919362783432,0.0717077851295471,-0.189836218953133,-0.707934856414795,-0.69052642583847,-0.148329466581345,
- -0.241476476192474,-0.455293476581573,-0.856969654560089,-0.97919362783432,0.0717077851295471,-0.189836218953133,-0.992406010627747,0.0320143960416317,-0.118766188621521,-0.707934856414795,-0.69052642583847,-0.148329466581345,0.085783876478672,0.0497514419257641,-0.99507087469101,-0.97919362783432,0.0717077851295471,-0.189836218953133,-0.241476476192474,-0.455293476581573,-0.856969654560089,-0.139905765652657,-0.040535431355238,0.98933470249176,-0.0916614010930061,-0.0339949131011963,0.995209753513336,-0.082848533987999,-0.00412499578669667,0.996553659439087,-0.137375757098198,-0.00214916816912591,0.990516662597656,-0.00591664528474212,-0.999967873096466,-0.00542079890146852,-0.000660394842270762,-0.999439895153046,-0.0334566757082939,-0.00117856857832521,-0.999779403209686,-0.0209693666547537,0.00149129121564329,-0.999998390674591,-0.000916147255338728,0.000886670488398522,-0.999999046325684,-0.00112098350655288,-0.00966148171573877,-0.999719262123108,0.0216314792633057,-0.00990175362676382,-0.999765336513519,0.0192672070115805,-0.0399871505796909,-0.999186635017395,-0.00519439065828919,-0.0208689011633396,-0.999772250652313,-0.00447273720055819,0.988278865814209,-0.0906175822019577,0.122854173183441,-0.0916614010930061,-0.0339949131011963,0.995209753513336,-0.00966148171573877,-0.999719262123108,0.0216314792633057,0.000886670488398522,-0.999999046325684,-0.00112098350655288,-0.00990175362676382,-0.999765336513519,0.0192672070115805,-0.139905765652657,-0.040535431355238,0.98933470249176,-0.988229513168335,-0.0505947545170784,-0.144369810819626,-0.00990175362676382,-0.999765336513519,0.0192672070115805,-0.00966148171573877,-0.999719262123108,0.0216314792633057,-0.0916614010930061,-0.0339949131011963,0.995209753513336,-0.139905765652657,-0.040535431355238,0.98933470249176,-0.989819288253784,-0.00756335165351629,-0.142129242420197,-0.889960944652557,-0.454495877027512,-0.0374553054571152,-0.170772403478622,-0.0703049227595329,0.982799112796783,-0.980655074119568,0.0674831345677376,-0.183743581175804,-0.989707946777344,0.0238562244921923,-0.141099378466606,
- -0.572094976902008,0.723028004169464,-0.387218117713928,-0.854963719844818,0.499079346656799,-0.141268759965897,-0.764260053634644,0.619232058525085,-0.1801618039608,-0.976797878742218,0.0504726655781269,-0.208131030201912,-0.99140864610672,-0.0182472355663776,-0.129521995782852,0.115691177546978,0.13827009499073,-0.983614265918732,0.109510391950607,0.0327960252761841,-0.993444442749023,-0.976797878742218,0.0504726655781269,-0.208131030201912,-0.764260053634644,0.619232058525085,-0.1801618039608,0.169274136424065,0.0328626595437527,-0.985020935535431,0.109510391950607,0.0327960252761841,-0.993444442749023,0.115691177546978,0.13827009499073,-0.983614265918732,0.584812819957733,0.534030973911285,-0.610577404499054,0.143124148249626,-0.0502591170370579,-0.988427758216858,0.970963180065155,-0.233838081359863,0.05049978941679,0.951468110084534,-0.275655627250671,0.136829420924187,0.970963180065155,-0.233838081359863,0.05049978941679,0.951948523521423,-0.303111374378204,0.0437896214425564,0.943415224552155,-0.312224239110947,0.111730739474297,0.95011168718338,-0.260919332504272,0.170906081795692,0.99368804693222,-0.00639643613249063,0.111996315419674,0.967867434024811,-0.175153627991676,0.180427238345146,0.998123645782471,-0.00575279258191586,0.0609595663845539,-0.10792151838541,0.000654037052299827,0.99415922164917,-0.195327088236809,0.00529202073812485,0.980723917484283,-0.0806602090597153,-0.0787115320563316,0.993628919124603,0.991169214248657,-0.00535945640876889,0.132494926452637,0.99739933013916,0.00794733129441738,0.0716341212391853,0.997615337371826,0.0119984894990921,0.0679684206843376,0.990371525287628,0.00848517660051584,0.138174816966057,-0.0772557780146599,-0.0116857085376978,0.996942758560181,-0.0611469782888889,-0.00429033674299717,0.998119592666626,0.991169214248657,-0.00535945640876889,0.132494926452637,0.990371525287628,0.00848517660051584,0.138174816966057,-0.146965533494949,-0.00990220811218023,0.98909205198288,-0.150619521737099,-0.00523449527099729,0.988577902317047,-0.0611469782888889,-0.00429033674299717,0.998119592666626,
- -0.0772557780146599,-0.0116857085376978,0.996942758560181,-0.932786345481873,0.296543717384338,-0.204869046807289,-0.966161549091339,0.119628332555294,-0.228519052267075,-0.980463147163391,0.125703617930412,-0.151296511292458,-0.944605767726898,0.296462267637253,-0.140819042921066,0.988278865814209,-0.0906175822019577,0.122854173183441,0.99572879076004,-0.0737903639674187,0.0554890632629395,0.998971819877625,-0.0130856009200215,0.043405257165432,0.992963552474976,-0.0152105893939734,0.117440171539783,0.991569697856903,-0.0959038212895393,0.0871322900056839,0.983541965484619,0.0537162981927395,0.172510057687759,0.999095439910889,0.00503258174285293,0.0422255583107471,0.993845880031586,0.0320844240486622,0.106023959815502,-0.0470417328178883,0.0228910557925701,0.99863064289093,-0.0791328027844429,0.0246542803943157,0.996559143066406,-0.711593747138977,-0.6982342004776,-0.0781250819563866,-0.690095365047455,-0.718715071678162,-0.0849527567625046,-0.682101368904114,-0.715174198150635,-0.152523890137672,-0.821330010890961,-0.532283127307892,-0.20516249537468,-0.0158857852220535,0.999831974506378,0.00914627686142921,-0.0326450206339359,0.993994057178497,-0.104451648890972,-0.973496317863464,-0.063650369644165,-0.219667047262192,0.100774131715298,0.0139020727947354,-0.99481213092804,0.0959542170166969,0.0675250962376595,-0.993092715740204,0.173257663846016,0.11504128575325,-0.978134632110596,0.16195547580719,0.0134197296574712,-0.986706852912903,0.619698941707611,-0.769435107707977,0.154734507203102,0.995796144008636,-0.0638573840260506,0.0656691640615463,0.987399399280548,-0.0904417261481285,0.129856467247009,-0.0623310282826424,-0.0122170839458704,0.997980833053589,-0.136297211050987,-0.0023135025985539,0.990665256977081,-0.136361345648766,-0.0670924335718155,0.988384664058685,-0.0889986827969551,-0.0837585777044296,0.992503821849823,-0.00565982423722744,0.983373999595642,0.181503519415855,0.0726285427808762,0.994939804077148,0.0694243535399437,0.0693468749523163,0.995928585529327,-0.0575956404209137,-0.0158857852220535,0.999831974506378,0.00914627686142921,
- -0.00565982423722744,0.983373999595642,0.181503519415855,0.0693468749523163,0.995928585529327,-0.0575956404209137,-0.0158857852220535,0.999831974506378,0.00914627686142921,-0.0981753319501877,0.977951347827911,0.184316918253899,-0.00565982423722744,0.983373999595642,0.181503519415855,-0.173037797212601,0.0241827052086592,0.984618246555328,-0.0877831354737282,0.0336087942123413,0.995572447776794,-0.00565982423722744,0.983373999595642,0.181503519415855,0.094266802072525,-0.0348956286907196,-0.994935154914856,0.155677020549774,-0.0111974589526653,-0.987744510173798,0.0562224835157394,-0.464830189943314,-0.883612930774689,0.995796144008636,-0.0638573840260506,0.0656691640615463,0.619698941707611,-0.769435107707977,0.154734507203102,0.487559884786606,-0.871731817722321,0.0486719235777855,0.117309920489788,-0.736330926418304,-0.666374564170837,0.0562224835157394,-0.464830189943314,-0.883612930774689,0.155677020549774,-0.0111974589526653,-0.987744510173798,0.094266802072525,-0.0348956286907196,-0.994935154914856,-0.97554475069046,-0.0474845170974731,-0.214610114693642,-0.981201648712158,0.0165519677102566,-0.192273885011673,0.100774131715298,0.0139020727947354,-0.99481213092804,0.094266802072525,-0.0348956286907196,-0.994935154914856,0.0562224835157394,-0.464830189943314,-0.883612930774689,-0.344866156578064,-0.787236928939819,-0.511199831962585,-0.97554475069046,-0.0474845170974731,-0.214610114693642,-0.136297211050987,-0.0023135025985539,0.990665256977081,-0.991650938987732,-0.0281828958541155,-0.125834196805954,-0.136361345648766,-0.0670924335718155,0.988384664058685,-0.0326450206339359,0.993994057178497,-0.104451648890972,-0.0158857852220535,0.999831974506378,0.00914627686142921,0.0693468749523163,0.995928585529327,-0.0575956404209137,0.187806218862534,0.0483322963118553,-0.981016218662262,-0.0326450206339359,0.993994057178497,-0.104451648890972,0.0693468749523163,0.995928585529327,-0.0575956404209137,0.117309920489788,-0.736330926418304,-0.666374564170837,0.995796144008636,-0.0638573840260506,0.0656691640615463,0.487559884786606,-0.871731817722321,0.0486719235777855,
- 0.995796144008636,-0.0638573840260506,0.0656691640615463,0.155677020549774,-0.0111974589526653,-0.987744510173798,0.16195547580719,0.0134197296574712,-0.986706852912903,0.997790992259979,-0.0109669733792543,0.0655192881822586,0.155677020549774,-0.0111974589526653,-0.987744510173798,0.995796144008636,-0.0638573840260506,0.0656691640615463,0.117309920489788,-0.736330926418304,-0.666374564170837,0.986014485359192,-0.0117510622367263,0.166244685649872,-0.0515266954898834,-0.0909423902630806,0.994522213935852,-0.0883310660719872,-0.127094969153404,0.987949669361115,0.987302839756012,-0.0416482798755169,0.153292536735535,-0.0877831354737282,0.0336087942123413,0.995572447776794,0.0726285427808762,0.994939804077148,0.0694243535399437,-0.00565982423722744,0.983373999595642,0.181503519415855,0.0726285427808762,0.994939804077148,0.0694243535399437,0.990167200565338,0.0364275239408016,0.135062426328659,0.921683073043823,0.369284838438034,0.118865840137005,-0.0877831354737282,0.0336087942123413,0.995572447776794,0.990167200565338,0.0364275239408016,0.135062426328659,0.0726285427808762,0.994939804077148,0.0694243535399437,-0.00565982423722744,0.983373999595642,0.181503519415855,-0.0981753319501877,0.977951347827911,0.184316918253899,-0.173037797212601,0.0241827052086592,0.984618246555328,-0.984686255455017,-0.0777651593089104,-0.156030461192131,-0.0981753319501877,0.977951347827911,0.184316918253899,-0.0158857852220535,0.999831974506378,0.00914627686142921,-0.0981753319501877,0.977951347827911,0.184316918253899,-0.984686255455017,-0.0777651593089104,-0.156030461192131,-0.173037797212601,0.0241827052086592,0.984618246555328,0.187806218862534,0.0483322963118553,-0.981016218662262,0.0693468749523163,0.995928585529327,-0.0575956404209137,0.993921279907227,0.0844074338674545,0.070682168006897,0.0693468749523163,0.995928585529327,-0.0575956404209137,0.0726285427808762,0.994939804077148,0.0694243535399437,0.921683073043823,0.369284838438034,0.118865840137005,0.0693468749523163,0.995928585529327,-0.0575956404209137,0.921683073043823,0.369284838438034,0.118865840137005,
- 0.993921279907227,0.0844074338674545,0.070682168006897,-0.992432057857513,0.017584228888154,-0.121529147028923,-0.146090015769005,-0.0125828422605991,0.989191234111786,-0.141166314482689,0.0417305901646614,0.989105939865112,-0.992049932479858,0.0721894502639771,-0.103081300854683,0.187806218862534,0.0483322963118553,-0.981016218662262,0.0951772406697273,0.0378315672278404,-0.994741201400757,-0.0326450206339359,0.993994057178497,-0.104451648890972,-0.973496317863464,-0.063650369644165,-0.219667047262192,-0.0326450206339359,0.993994057178497,-0.104451648890972,0.0951772406697273,0.0378315672278404,-0.994741201400757,-0.97908878326416,-0.0801579058170319,-0.186975225806236,-0.984686255455017,-0.0777651593089104,-0.156030461192131,-0.0158857852220535,0.999831974506378,0.00914627686142921,-0.0158857852220535,0.999831974506378,0.00914627686142921,-0.973496317863464,-0.063650369644165,-0.219667047262192,-0.97908878326416,-0.0801579058170319,-0.186975225806236,-0.97554475069046,-0.0474845170974731,-0.214610114693642,-0.344866156578064,-0.787236928939819,-0.511199831962585,-0.969570577144623,-0.147802799940109,-0.195159703493118,-0.981201648712158,0.0165519677102566,-0.192273885011673,-0.992432057857513,0.017584228888154,-0.121529147028923,-0.992049932479858,0.0721894502639771,-0.103081300854683,-0.977498650550842,0.0980965420603752,-0.18674424290657,0.155677020549774,-0.0111974589526653,-0.987744510173798,0.094266802072525,-0.0348956286907196,-0.994935154914856,0.100774131715298,0.0139020727947354,-0.99481213092804,0.16195547580719,0.0134197296574712,-0.986706852912903,0.990167200565338,0.0364275239408016,0.135062426328659,0.993921279907227,0.0844074338674545,0.070682168006897,0.921683073043823,0.369284838438034,0.118865840137005,-0.0759555622935295,-0.0165363363921642,0.996974050998688,-0.0700837150216103,0.0448866859078407,0.996530771255493,-0.111042939126492,0.0832133889198303,0.990325689315796,-0.141166314482689,0.0417305901646614,0.989105939865112,-0.146090015769005,-0.0125828422605991,0.989191234111786,0.100774131715298,0.0139020727947354,-0.99481213092804,
- -0.981201648712158,0.0165519677102566,-0.192273885011673,-0.977498650550842,0.0980965420603752,-0.18674424290657,0.0959542170166969,0.0675250962376595,-0.993092715740204,0.16195547580719,0.0134197296574712,-0.986706852912903,0.173257663846016,0.11504128575325,-0.978134632110596,0.980331480503082,0.18245655298233,0.0752309635281563,0.997790992259979,-0.0109669733792543,0.0655192881822586,0.987399399280548,-0.0904417261481285,0.129856467247009,-0.0623310282826424,-0.0122170839458704,0.997980833053589,-0.0889986827969551,-0.0837585777044296,0.992503821849823,0.619698941707611,-0.769435107707977,0.154734507203102,-0.991650938987732,-0.0281828958541155,-0.125834196805954,-0.136297211050987,-0.0023135025985539,0.990665256977081,-0.146090015769005,-0.0125828422605991,0.989191234111786,-0.992432057857513,0.017584228888154,-0.121529147028923,-0.969570577144623,-0.147802799940109,-0.195159703493118,-0.977865040302277,-0.137367352843285,-0.157829284667969,-0.991650938987732,-0.0281828958541155,-0.125834196805954,-0.97554475069046,-0.0474845170974731,-0.214610114693642,0.990713119506836,-0.0137257678434253,0.135273620486259,0.997790992259979,-0.0109669733792543,0.0655192881822586,0.980331480503082,0.18245655298233,0.0752309635281563,0.984328866004944,0.0614120997488499,0.165303274989128,0.621899008750916,0.691010057926178,0.368438273668289,0.182867154479027,0.413218557834625,0.8920818567276,-0.0700837150216103,0.0448866859078407,0.996530771255493,0.984328866004944,0.0614120997488499,0.165303274989128,-0.987344861030579,-0.0971671491861343,0.125334113836288,-0.127387255430222,0.12086471170187,0.98446136713028,-0.154523327946663,-0.0836756601929665,0.984439373016357,-0.987959980964661,-0.0208966061472893,-0.153291866183281,-0.127387255430222,0.12086471170187,0.98446136713028,0.182867154479027,0.413218557834625,0.8920818567276,-0.0883310660719872,-0.127094969153404,0.987949669361115,-0.154523327946663,-0.0836756601929665,0.984439373016357,0.621899008750916,0.691010057926178,0.368438273668289,0.525315403938293,0.680072844028473,-0.511414408683777,
- 0.987302839756012,-0.0416482798755169,0.153292536735535,0.173257663846016,0.11504128575325,-0.978134632110596,0.0959542170166969,0.0675250962376595,-0.993092715740204,0.0638187006115913,0.555646121501923,-0.828965902328491,0.525315403938293,0.680072844028473,-0.511414408683777,-0.992049932479858,0.0721894502639771,-0.103081300854683,-0.141166314482689,0.0417305901646614,0.989105939865112,-0.127387255430222,0.12086471170187,0.98446136713028,-0.987344861030579,-0.0971671491861343,0.125334113836288,-0.970059394836426,0.173409089446068,-0.170040920376778,-0.992049932479858,0.0721894502639771,-0.103081300854683,-0.987344861030579,-0.0971671491861343,0.125334113836288,0.182867154479027,0.413218557834625,0.8920818567276,-0.111042939126492,0.0832133889198303,0.990325689315796,-0.0700837150216103,0.0448866859078407,0.996530771255493,0.0638187006115913,0.555646121501923,-0.828965902328491,-0.977498650550842,0.0980965420603752,-0.18674424290657,-0.561648726463318,0.784396588802338,-0.263196974992752,0.980331480503082,0.18245655298233,0.0752309635281563,0.173257663846016,0.11504128575325,-0.978134632110596,0.525315403938293,0.680072844028473,-0.511414408683777,0.621899008750916,0.691010057926178,0.368438273668289,0.689411461353302,0.716466307640076,0.106713116168976,0.980331480503082,0.18245655298233,0.0752309635281563,0.525315403938293,0.680072844028473,-0.511414408683777,0.984328866004944,0.0614120997488499,0.165303274989128,-0.0700837150216103,0.0448866859078407,0.996530771255493,-0.0759555622935295,-0.0165363363921642,0.996974050998688,0.990713119506836,-0.0137257678434253,0.135273620486259,0.987302839756012,-0.0416482798755169,0.153292536735535,-0.0883310660719872,-0.127094969153404,0.987949669361115,0.182867154479027,0.413218557834625,0.8920818567276,0.621899008750916,0.691010057926178,0.368438273668289,-0.986796200275421,-0.0494158677756786,-0.154244273900986,-0.1580690741539,-0.029795877635479,0.9869784116745,-0.173037797212601,0.0241827052086592,0.984618246555328,-0.984686255455017,-0.0777651593089104,-0.156030461192131,
- -0.1580690741539,-0.029795877635479,0.9869784116745,-0.0955402925610542,-0.0271425507962704,0.995055377483368,-0.0877831354737282,0.0336087942123413,0.995572447776794,-0.173037797212601,0.0241827052086592,0.984618246555328,0.998249590396881,0.0269914586097002,0.0526228286325932,0.175654083490372,-0.00516145164147019,-0.984438478946686,0.187806218862534,0.0483322963118553,-0.981016218662262,0.993921279907227,0.0844074338674545,0.070682168006897,0.993240833282471,0.026627741754055,0.11297582834959,0.998249590396881,0.0269914586097002,0.0526228286325932,0.993921279907227,0.0844074338674545,0.070682168006897,0.990167200565338,0.0364275239408016,0.135062426328659,-0.97554475069046,-0.0474845170974731,-0.214610114693642,-0.991650938987732,-0.0281828958541155,-0.125834196805954,-0.992432057857513,0.017584228888154,-0.121529147028923,-0.981201648712158,0.0165519677102566,-0.192273885011673,-0.970059394836426,0.173409089446068,-0.170040920376778,-0.987344861030579,-0.0971671491861343,0.125334113836288,-0.987959980964661,-0.0208966061472893,-0.153291866183281,-0.973354637622833,-0.0490136630833149,-0.224005490541458,-0.986796200275421,-0.0494158677756786,-0.154244273900986,-0.984686255455017,-0.0777651593089104,-0.156030461192131,-0.97908878326416,-0.0801579058170319,-0.186975225806236,-0.973496317863464,-0.063650369644165,-0.219667047262192,0.104254402220249,-0.00845175795257092,-0.99451470375061,-0.973354637622833,-0.0490136630833149,-0.224005490541458,-0.973496317863464,-0.063650369644165,-0.219667047262192,0.0951772406697273,0.0378315672278404,-0.994741201400757,0.0904105603694916,-0.0541317835450172,-0.994432330131531,0.139049425721169,-0.0699628368020058,-0.987810969352722,0.0638187006115913,0.555646121501923,-0.828965902328491,0.525315403938293,0.680072844028473,-0.511414408683777,0.139049425721169,-0.0699628368020058,-0.987810969352722,0.172419562935829,-0.0516990981996059,-0.983665943145752,0.0638187006115913,0.555646121501923,-0.828965902328491,-0.561648726463318,0.784396588802338,-0.263196974992752,-0.830450415611267,-0.493387073278427,-0.258691430091858,
- -0.0877831354737282,0.0336087942123413,0.995572447776794,-0.0955402925610542,-0.0271425507962704,0.995055377483368,0.993240833282471,0.026627741754055,0.11297582834959,0.990167200565338,0.0364275239408016,0.135062426328659,0.984328866004944,0.0614120997488499,0.165303274989128,0.689411461353302,0.716466307640076,0.106713116168976,0.621899008750916,0.691010057926178,0.368438273668289,-0.141166314482689,0.0417305901646614,0.989105939865112,-0.111042939126492,0.0832133889198303,0.990325689315796,0.182867154479027,0.413218557834625,0.8920818567276,-0.127387255430222,0.12086471170187,0.98446136713028,0.984328866004944,0.0614120997488499,0.165303274989128,0.980331480503082,0.18245655298233,0.0752309635281563,0.689411461353302,0.716466307640076,0.106713116168976,0.0638187006115913,0.555646121501923,-0.828965902328491,-0.830450415611267,-0.493387073278427,-0.258691430091858,-0.970832347869873,-0.0305927582085133,-0.237799763679504,0.0904105603694916,-0.0541317835450172,-0.994432330131531,-0.977498650550842,0.0980965420603752,-0.18674424290657,-0.970059394836426,0.173409089446068,-0.170040920376778,-0.561648726463318,0.784396588802338,-0.263196974992752,0.525315403938293,0.680072844028473,-0.511414408683777,0.0638187006115913,0.555646121501923,-0.828965902328491,0.139049425721169,-0.0699628368020058,-0.987810969352722,0.175654083490372,-0.00516145164147019,-0.984438478946686,0.104254402220249,-0.00845175795257092,-0.99451470375061,0.0951772406697273,0.0378315672278404,-0.994741201400757,0.187806218862534,0.0483322963118553,-0.981016218662262,-0.977498650550842,0.0980965420603752,-0.18674424290657,-0.992049932479858,0.0721894502639771,-0.103081300854683,-0.970059394836426,0.173409089446068,-0.170040920376778,-0.970059394836426,0.173409089446068,-0.170040920376778,-0.987959980964661,-0.0208966061472893,-0.153291866183281,-0.830450415611267,-0.493387073278427,-0.258691430091858,-0.970059394836426,0.173409089446068,-0.170040920376778,-0.830450415611267,-0.493387073278427,-0.258691430091858,-0.561648726463318,0.784396588802338,-0.263196974992752,
- 0.0959542170166969,0.0675250962376595,-0.993092715740204,-0.977498650550842,0.0980965420603752,-0.18674424290657,0.0638187006115913,0.555646121501923,-0.828965902328491,0.987302839756012,-0.0416482798755169,0.153292536735535,0.525315403938293,0.680072844028473,-0.511414408683777,0.998590052127838,0.00095787551254034,0.05307537317276,0.998590052127838,0.00095787551254034,0.05307537317276,0.172419562935829,-0.0516990981996059,-0.983665943145752,0.175654083490372,-0.00516145164147019,-0.984438478946686,0.998249590396881,0.0269914586097002,0.0526228286325932,0.172419562935829,-0.0516990981996059,-0.983665943145752,0.139049425721169,-0.0699628368020058,-0.987810969352722,0.0904105603694916,-0.0541317835450172,-0.994432330131531,0.104254402220249,-0.00845175795257092,-0.99451470375061,0.175654083490372,-0.00516145164147019,-0.984438478946686,0.0904105603694916,-0.0541317835450172,-0.994432330131531,-0.970832347869873,-0.0305927582085133,-0.237799763679504,-0.973354637622833,-0.0490136630833149,-0.224005490541458,0.104254402220249,-0.00845175795257092,-0.99451470375061,-0.987959980964661,-0.0208966061472893,-0.153291866183281,-0.970832347869873,-0.0305927582085133,-0.237799763679504,-0.830450415611267,-0.493387073278427,-0.258691430091858,-0.987959980964661,-0.0208966061472893,-0.153291866183281,-0.154523327946663,-0.0836756601929665,0.984439373016357,-0.1580690741539,-0.029795877635479,0.9869784116745,-0.986796200275421,-0.0494158677756786,-0.154244273900986,-0.154523327946663,-0.0836756601929665,0.984439373016357,-0.0883310660719872,-0.127094969153404,0.987949669361115,-0.0515266954898834,-0.0909423902630806,0.994522213935852,-0.0955402925610542,-0.0271425507962704,0.995055377483368,-0.1580690741539,-0.029795877635479,0.9869784116745,0.993240833282471,0.026627741754055,0.11297582834959,-0.0955402925610542,-0.0271425507962704,0.995055377483368,-0.0515266954898834,-0.0909423902630806,0.994522213935852,0.986014485359192,-0.0117510622367263,0.166244685649872,0.525315403938293,0.680072844028473,-0.511414408683777,0.172419562935829,-0.0516990981996059,-0.983665943145752,
- 0.998590052127838,0.00095787551254034,0.05307537317276,0.987302839756012,-0.0416482798755169,0.153292536735535,0.998590052127838,0.00095787551254034,0.05307537317276,0.998249590396881,0.0269914586097002,0.0526228286325932,0.993240833282471,0.026627741754055,0.11297582834959,0.986014485359192,-0.0117510622367263,0.166244685649872,0.987399399280548,-0.0904417261481285,0.129856467247009,0.995796144008636,-0.0638573840260506,0.0656691640615463,0.997790992259979,-0.0109669733792543,0.0655192881822586,0.990713119506836,-0.0137257678434253,0.135273620486259,-0.0759555622935295,-0.0165363363921642,0.996974050998688,-0.0623310282826424,-0.0122170839458704,0.997980833053589,0.987399399280548,-0.0904417261481285,0.129856467247009,0.990713119506836,-0.0137257678434253,0.135273620486259,-0.146090015769005,-0.0125828422605991,0.989191234111786,-0.136297211050987,-0.0023135025985539,0.990665256977081,-0.0623310282826424,-0.0122170839458704,0.997980833053589,-0.0759555622935295,-0.0165363363921642,0.996974050998688,-0.973354637622833,-0.0490136630833149,-0.224005490541458,-0.970832347869873,-0.0305927582085133,-0.237799763679504,-0.987959980964661,-0.0208966061472893,-0.153291866183281,-0.986796200275421,-0.0494158677756786,-0.154244273900986,-0.977865040302277,-0.137367352843285,-0.157829284667969,-0.136361345648766,-0.0670924335718155,0.988384664058685,-0.991650938987732,-0.0281828958541155,-0.125834196805954
- }
- NormalsW: *8998 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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: *26994 {
- a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-4.77021103506559e-007,1,1.9758965663641e-007,0,1,0,0,1,0,-6.43964597202284e-007,1,4.30275179041928e-007,-1.03034494713938e-006,1,6.88441332385992e-007,-4.77021103506559e-007,1,1.9758965663641e-007,0,1,0,-2.92071973717611e-007,1,2.92069330498634e-007,1.46036825299234e-007,1,-1.46035489478891e-007,-6.86878820488346e-007,1,4.5894898903498e-007,-2.92071973717611e-007,1,2.92069330498634e-007,0,1,0,0,1,0,1.46036825299234e-007,1,-1.46035489478891e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,1.09526915537117e-007,1,1.09526176572672e-007,0,1,-0,0,1,-0,1.28789864106693e-007,1,8.60531059743153e-008,3.00510890838268e-007,1,2.007913764146e-007,1.09526915537117e-007,1,1.09526176572672e-007,1.28789864106693e-007,1,8.60531059743153e-008,4.77020378752968e-008,1,1.9759013980547e-008,-1.33041548697893e-012,1,-5.51081261786907e-013,3.00510890838268e-007,1,2.007913764146e-007,4.77020378752968e-008,1,1.9759013980547e-008,-1.01282054743024e-007,1,-2.01463468130214e-008,-1.73717367601967e-007,1,-3.40435022394558e-008,-1.33041548697893e-012,1,-5.51081261786907e-013,-1.01282054743024e-007,1,-2.01463468130214e-008,0,1,-0,1.05807662978408e-011,1,7.52050366426005e-010,-1.73717367601967e-007,1,-3.40435022394558e-008,0,1,-0,-0,1,0,4.89068126274805e-011,1,2.4586965796658e-010,1.05807662978408e-011,1,7.52050366426005e-010,-0,1,0,-0,1,0,-0,1,0,4.89068126274805e-011,1,2.4586965796658e-010,-0,1,0,1.35605873197164e-007,1,2.18120447925685e-007,7.13061893975464e-008,1,1.06719483028428e-007,-0,1,0,1.35605873197164e-007,1,2.18120447925685e-007,3.30407658566401e-007,1,3.52844921280848e-007,1.70812739952453e-007,1,1.70813592603736e-007,7.13061893975464e-008,1,1.06719483028428e-007,3.30407658566401e-007,1,3.52844921280848e-007,
- 1.84144610670955e-007,1,1.31978566741964e-007,9.41372277907249e-008,1,6.28987777417933e-008,1.70812739952453e-007,1,1.70813592603736e-007,1.84144610670955e-007,1,1.31978566741964e-007,-0,1,0,-0,1,0,9.41372277907249e-008,1,6.28987777417933e-008,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,6.67831102418859e-007,1,-2.76626138884239e-007,7.63234368150734e-007,1,-3.16143712097983e-007,0,1,0,6.67831102418859e-007,1,-2.76626138884239e-007,1.37379561238049e-006,1,-9.17923273391352e-007,0,1,0,7.63234368150734e-007,1,-3.16143712097983e-007,-5.15158149028139e-007,1,3.44211116498627e-007,-4.38108031630691e-007,1,4.38104024169661e-007,0,1,0,-7.72739440435544e-007,1,5.16318095833412e-007,-4.38108031630691e-007,1,4.38104024169661e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,8.0319784956373e-007,1,8.03192449438939e-007,1.31432352645788e-006,1,1.31431465888454e-006,0,1,-0,8.0319784956373e-007,1,8.03192449438939e-007,1.37376571274217e-006,1,9.17904571906547e-007,1.20204776976607e-006,1,8.03168290985923e-007,1.31432352645788e-006,1,1.31431465888454e-006,1.37376571274217e-006,1,9.17904571906547e-007,-4.02625762591091e-012,1,-1.66774601940978e-012,-1.90813693734526e-007,1,-7.9038358080652e-008,1.20204776976607e-006,1,8.03168290985923e-007,-4.02625762591091e-012,1,-1.66774601940978e-012,-3.03846320548473e-007,1,-6.04390777425579e-008,-2.02564251594595e-007,1,-4.02927184950386e-008,-1.90813693734526e-007,1,-7.9038358080652e-008,-3.03846320548473e-007,1,-6.04390777425579e-008,0,1,-0,0,1,-0,-2.02564251594595e-007,1,-4.02927184950386e-008,0,1,-0,-0,1,0,-0,1,0,0,1,-0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,
- -0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-6.67830363454414e-007,1,2.76625826245436e-007,6.67831102418859e-007,1,-2.76626138884239e-007,0,1,0,-6.67830363454414e-007,1,2.76625826245436e-007,3.43449812589824e-007,1,-2.29481443625446e-007,1.37379561238049e-006,1,-9.17923273391352e-007,6.67831102418859e-007,1,-2.76626138884239e-007,2.66166853180039e-006,1,-1.77843605797534e-006,2.19054797412355e-007,1,-2.19052807892695e-007,-4.38108031630691e-007,1,4.38104024169661e-007,-5.15158149028139e-007,1,3.44211116498627e-007,2.19054797412355e-007,1,-2.19052807892695e-007,0,1,0,0,1,0,-4.38108031630691e-007,1,4.38104024169661e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,5.84143833748385e-007,1,5.84139911552484e-007,8.0319784956373e-007,1,8.03192449438939e-007,0,1,-0,5.84143833748385e-007,1,5.84139911552484e-007,1.11618589926366e-006,1,7.45798274692788e-007,1.37376571274217e-006,1,9.17904571906547e-007,8.0319784956373e-007,1,8.03192449438939e-007,1.11618589926366e-006,1,7.45798274692788e-007,-4.02625762591091e-012,1,-1.66774601940978e-012,-4.02625762591091e-012,1,-1.66774601940978e-012,1.37376571274217e-006,1,9.17904571906547e-007,-4.02625762591091e-012,1,-1.66774601940978e-012,-3.02576609101379e-007,1,-6.4624792628365e-008,-3.03846320548473e-007,1,-6.04390777425579e-008,-4.02625762591091e-012,1,-1.66774601940978e-012,-3.02576609101379e-007,1,-6.4624792628365e-008,0,1,-0,0,1,-0,0,1,-0,-3.03846320548473e-007,1,-6.04390777425579e-008,0,1,-0,0,1,-0,-0,1,0,-0,1,0,0,1,-0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-7.13061965029738e-008,1,-1.06719447501291e-007,-0,1,0,-0,1,0,-7.13061965029738e-008,1,-1.06719447501291e-007,-1.70812825217581e-007,1,-1.70813507338607e-007,
- -0,1,0,-0,1,0,-1.70812825217581e-007,1,-1.70813507338607e-007,-9.41372135798701e-008,1,-6.28988416906395e-008,-0,1,0,-0,1,0,-9.41372135798701e-008,1,-6.28988416906395e-008,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1.04944638223969e-006,1,4.34697227547076e-007,-6.67830363454414e-007,1,2.76625826245436e-007,0,1,0,-1.04944638223969e-006,1,4.34697227547076e-007,-1.88896535746608e-006,1,1.26214217743836e-006,3.43449812589824e-007,1,-2.29481443625446e-007,-6.67830363454414e-007,1,2.76625826245436e-007,4.29300644100294e-006,1,-2.86844033325906e-006,1.60639945079311e-006,1,-1.60638489887788e-006,2.19054797412355e-007,1,-2.19052807892695e-007,2.66166853180039e-006,1,-1.77843605797534e-006,1.60639945079311e-006,1,-1.60638489887788e-006,0,1,0,0,1,0,2.19054797412355e-007,1,-2.19052807892695e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,4.01598924781865e-007,1,4.01596224719469e-007,5.84143833748385e-007,1,5.84139911552484e-007,0,1,-0,4.01598924781865e-007,1,4.01596224719469e-007,8.15674923160259e-007,1,5.45006855645624e-007,1.11618589926366e-006,1,7.45798274692788e-007,5.84143833748385e-007,1,5.84139911552484e-007,8.15674923160259e-007,1,5.45006855645624e-007,-4.02625762591091e-012,1,-1.66774601940978e-012,-4.02625762591091e-012,1,-1.66774601940978e-012,1.11618589926366e-006,1,7.45798274692788e-007,-4.02625762591091e-012,1,-1.66774601940978e-012,-3.00889070103949e-007,1,-7.01877524988959e-008,-3.02576609101379e-007,1,-6.4624792628365e-008,-4.02625762591091e-012,1,-1.66774601940978e-012,0,1,-0,0,1,-0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-7.1306160975837e-008,1,-1.06719497239283e-007,-7.13061965029738e-008,1,-1.06719447501291e-007,-0,1,0,-7.1306160975837e-008,1,-1.06719497239283e-007,
- -1.70812811006726e-007,1,-1.70813521549462e-007,-1.70812825217581e-007,1,-1.70813507338607e-007,-7.13061965029738e-008,1,-1.06719447501291e-007,-1.70812811006726e-007,1,-1.70813521549462e-007,-9.41372206852975e-008,1,-6.2898791952648e-008,-9.41372135798701e-008,1,-6.28988416906395e-008,-1.70812825217581e-007,1,-1.70813507338607e-007,-9.41372206852975e-008,1,-6.2898791952648e-008,-0,1,0,-0,1,0,-9.41372135798701e-008,1,-6.28988416906395e-008,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-4.2931952748404e-007,1,1.77830912662102e-007,-1.04944638223969e-006,1,4.34697227547076e-007,0,1,0,-4.2931952748404e-007,1,1.77830912662102e-007,-1.2020683470837e-006,1,8.03181023911748e-007,-1.88896535746608e-006,1,1.26214217743836e-006,-1.04944638223969e-006,1,4.34697227547076e-007,1.71720080288651e-006,1,-1.14737497369788e-006,1.56988755861676e-006,1,-1.5698732340752e-006,1.60639945079311e-006,1,-1.60638489887788e-006,4.29300644100294e-006,1,-2.86844033325906e-006,1.56988755861676e-006,1,-1.5698732340752e-006,0,1,0,0,1,0,1.60639945079311e-006,1,-1.60638489887788e-006,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,2.73817448714908e-007,1,2.73815601303795e-007,4.01598924781865e-007,1,4.01596224719469e-007,0,1,-0,2.73817448714908e-007,1,2.73815601303795e-007,5.36627510427934e-007,1,3.5855663327311e-007,8.15674923160259e-007,1,5.45006855645624e-007,4.01598924781865e-007,1,4.01596224719469e-007,5.36627510427934e-007,1,3.5855663327311e-007,-4.77054591385695e-008,1,-1.97604332896617e-008,-4.02625762591091e-012,1,-1.66774601940978e-012,8.15674923160259e-007,1,5.45006855645624e-007,-4.77054591385695e-008,1,-1.97604332896617e-008,-3.63214695653369e-007,1,-7.69900978525584e-008,-3.00889070103949e-007,1,-7.01877524988959e-008,
- -4.02625762591091e-012,1,-1.66774601940978e-012,0,1,-0,7.82478526417663e-011,1,7.9448048140307e-010,6.13751341416169e-011,1,2.7982355321754e-010,-0,1,0,6.13751341416169e-011,1,2.7982355321754e-010,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-7.1306160975837e-008,1,-1.06719497239283e-007,-0,1,0,-0,1,0,-0,1,0,-1.70812811006726e-007,1,-1.70813521549462e-007,-7.1306160975837e-008,1,-1.06719497239283e-007,-0,1,0,-0,1,0,-9.41372206852975e-008,1,-6.2898791952648e-008,-1.70812811006726e-007,1,-1.70813521549462e-007,-0,1,0,-0,1,0,-0,1,0,-9.41372206852975e-008,1,-6.2898791952648e-008,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-4.77021103506559e-007,1,1.9758965663641e-007,-4.2931952748404e-007,1,1.77830912662102e-007,0,1,0,-4.77021103506559e-007,1,1.9758965663641e-007,-1.03034494713938e-006,1,6.88441332385992e-007,-1.2020683470837e-006,1,8.03181023911748e-007,-4.2931952748404e-007,1,1.77830912662102e-007,-6.86878820488346e-007,1,4.5894898903498e-007,1.46036825299234e-007,1,-1.46035489478891e-007,1.56988755861676e-006,1,-1.5698732340752e-006,1.71720080288651e-006,1,-1.14737497369788e-006,1.46036825299234e-007,1,-1.46035489478891e-007,0,1,0,0,1,0,1.56988755861676e-006,1,-1.5698732340752e-006,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,1.09526915537117e-007,1,1.09526176572672e-007,2.73817448714908e-007,1,2.73815601303795e-007,0,1,-0,1.09526915537117e-007,1,1.09526176572672e-007,3.00510890838268e-007,1,2.007913764146e-007,5.36627510427934e-007,1,3.5855663327311e-007,2.73817448714908e-007,1,2.73815601303795e-007,3.00510890838268e-007,1,2.007913764146e-007,-1.33041548697893e-012,1,-5.51081261786907e-013,-4.77054591385695e-008,1,-1.97604332896617e-008,5.36627510427934e-007,1,3.5855663327311e-007,
- -1.33041548697893e-012,1,-5.51081261786907e-013,-1.73717367601967e-007,1,-3.40435022394558e-008,-3.63214695653369e-007,1,-7.69900978525584e-008,-4.77054591385695e-008,1,-1.97604332896617e-008,-1.73717367601967e-007,1,-3.40435022394558e-008,1.05807662978408e-011,1,7.52050366426005e-010,-1.19382305893679e-015,1,1.50410073285201e-009,-1.56498203285338e-010,1,1.58896062973923e-009,-3.63214695653369e-007,1,-7.69900978525584e-008,1.05807662978408e-011,1,7.52050366426005e-010,4.89068126274805e-011,1,2.4586965796658e-010,6.13751341416169e-011,1,2.7982355321754e-010,7.82478526417663e-011,1,7.9448048140307e-010,-1.19382305893679e-015,1,1.50410073285201e-009,4.89068126274805e-011,1,2.4586965796658e-010,-0,1,0,-0,1,0,6.13751341416169e-011,1,2.7982355321754e-010,-0,1,0,7.13061893975464e-008,1,1.06719483028428e-007,-0,1,0,-0,1,0,7.13061893975464e-008,1,1.06719483028428e-007,1.70812739952453e-007,1,1.70813592603736e-007,-0,1,0,-0,1,0,1.70812739952453e-007,1,1.70813592603736e-007,9.41372277907249e-008,1,6.28987777417933e-008,-0,1,0,-0,1,0,9.41372277907249e-008,1,6.28987777417933e-008,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-4.52852845000962e-007,1,1.87576674193224e-007,-0,1,0,-0,1,0,-4.52852845000962e-007,1,1.87576674193224e-007,-1.22268340874143e-006,1,8.16955946447706e-007,-6.11340965406271e-007,1,4.08477518476502e-007,-0,1,0,-8.15196926851058e-007,1,5.4468722510137e-007,3.46630798730985e-007,1,-3.46634067227569e-007,-3.46629121850128e-007,1,3.46632390346713e-007,-3.46629121850128e-007,1,3.46632390346713e-007,3.46630798730985e-007,1,-3.46634067227569e-007,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-7.46956843045155e-008,1,-1.4860376040815e-008,-1.48416205547619e-007,1,-3.46224666714079e-008,-1.48416205547619e-007,1,-3.46224666714079e-008,
- -7.46956843045155e-008,1,-1.4860376040815e-008,-7.61599210363784e-008,1,-6.72539395559586e-016,-1.5231991312703e-007,1,-5.00530950020561e-009,-1.5231991312703e-007,1,-5.00530950020561e-009,-7.61599210363784e-008,1,-6.72539395559586e-016,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,2.03799331188748e-007,1,1.36172133125001e-007,0,1,0,0,1,0,2.03799331188748e-007,1,1.36172133125001e-007,2.26426294602788e-007,1,9.37885076268685e-008,0,1,0,0,1,0,2.26426294602788e-007,1,9.37885076268685e-008,-1.62478855258996e-007,1,-2.77416091876148e-007,0,1,0,0,1,0,-1.62478855258996e-007,1,-2.77416091876148e-007,-6.76375977448629e-009,1,-4.80754579257336e-007,0,1,0,0,1,0,-6.76375977448629e-009,1,-4.80754579257336e-007,-4.68952876531148e-008,1,-2.35760495570503e-007,0,1,0,0,1,0,-4.68952876531148e-008,1,-2.35760495570503e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,9.05705576315086e-007,1,-3.75153319964738e-007,9.05707167930814e-007,1,-3.75153973664055e-007,9.05707167930814e-007,1,-3.75153973664055e-007,9.05705576315086e-007,1,-3.75153319964738e-007,0,1,-0,1.63024674293411e-006,1,-1.08927611108811e-006,8.15201076420635e-007,1,-5.44690010428894e-007,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,1.50366545881298e-007,1,2.48190410445659e-008,7.46956843045155e-008,1,1.48603751526366e-008,7.46956843045155e-008,1,1.48603751526366e-008,1.50366545881298e-007,1,2.48190410445659e-008,1.5231991312703e-007,1,-5.00530017433221e-009,7.61599210363784e-008,1,6.72539395559586e-016,7.61599210363784e-008,1,6.72539395559586e-016,1.5231991312703e-007,1,-5.00530017433221e-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,0,0,1,0,1.73314208495867e-006,1,1.73316072960006e-006,1.03988656974252e-006,1,1.03989782473946e-006,1.03988656974252e-006,1,1.03989782473946e-006,1.73314208495867e-006,1,1.73316072960006e-006,2.44547732108913e-006,1,1.63398908625823e-006,2.24171662921435e-006,1,1.49784261793684e-006,2.24171662921435e-006,1,1.49784261793684e-006,2.44547732108913e-006,1,1.63398908625823e-006,-9.05875765511155e-007,1,-3.75224715298828e-007,2.26311811957203e-007,1,9.37410860046839e-008,2.26311811957203e-007,1,9.37410860046839e-008,-9.05875765511155e-007,1,-3.75224715298828e-007,-4.80806761515851e-007,1,-9.56411057018158e-008,-1.24891721497988e-006,1,-3.3360127993376e-009,-1.24891721497988e-006,1,-3.3360127993376e-009,-4.80806761515851e-007,1,-9.56411057018158e-008,0,1,0,-6.76676181754488e-009,1,4.80903338484495e-007,-6.76676181754488e-009,1,4.80903338484495e-007,0,1,0,0,1,0,4.3605037802763e-008,1,2.36566677358496e-007,4.3605037802763e-008,1,2.36566677358496e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,9.05707167930814e-007,1,-3.75153973664055e-007,-6.79278969073494e-007,1,2.81364890497571e-007,-6.79278969073494e-007,1,2.81364890497571e-007,9.05707167930814e-007,1,-3.75153973664055e-007,1.63024674293411e-006,1,-1.08927611108811e-006,8.15124906239362e-007,1,-5.44639078725595e-007,3.6684043607238e-006,1,-2.45110459218267e-006,8.15201076420635e-007,1,-5.44690010428894e-007,-0,1,0,6.93259835315985e-007,1,-6.93266372309154e-007,6.93259835315985e-007,1,-6.93266372309154e-007,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,7.46956843045155e-008,1,1.48603751526366e-008,-0,1,0,-0,1,0,7.46956843045155e-008,1,1.48603751526366e-008,
- 7.61599210363784e-008,1,6.72539395559586e-016,-0,1,0,-0,1,0,7.61599210363784e-008,1,6.72539395559586e-016,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1.03988656974252e-006,1,1.03989782473946e-006,6.93257220518717e-007,1,6.93264667006588e-007,6.93257220518717e-007,1,6.93264667006588e-007,1.03988656974252e-006,1,1.03989782473946e-006,2.24171662921435e-006,1,1.49784261793684e-006,1.42657643209532e-006,1,9.53192341057729e-007,1.42657643209532e-006,1,9.53192341057729e-007,2.24171662921435e-006,1,1.49784261793684e-006,2.26311811957203e-007,1,9.37410860046839e-008,2.26397773417375e-007,1,9.37766984066002e-008,2.26397773417375e-007,1,9.37766984066002e-008,2.26311811957203e-007,1,9.37410860046839e-008,-1.24891721497988e-006,1,-3.3360127993376e-009,-5.32359820226702e-007,1,1.67190677302642e-007,-5.32359820226702e-007,1,1.67190677302642e-007,-1.24891721497988e-006,1,-3.3360127993376e-009,-6.76676181754488e-009,1,4.80903338484495e-007,-9.05698151025536e-013,1,9.6180667696899e-007,-7.50300372942547e-008,1,7.61808109928097e-007,-9.05698151025536e-013,1,9.6180667696899e-007,-6.76676181754488e-009,1,4.80903338484495e-007,4.3605037802763e-008,1,2.36566677358496e-007,5.88863251493876e-008,1,2.68482153842342e-007,7.50743680555388e-008,1,7.6228002399148e-007,5.88863251493876e-008,1,2.68482153842342e-007,4.3605037802763e-008,1,2.36566677358496e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-6.79278969073494e-007,1,2.81364890497571e-007,-1.58498448854516e-006,1,6.56518125197181e-007,-1.58498448854516e-006,1,6.56518125197181e-007,-6.79278969073494e-007,1,2.81364890497571e-007,8.15124906239362e-007,1,-5.44639078725595e-007,-2.44536454374611e-006,1,1.63391052865336e-006,
- 5.70639485886204e-006,1,-3.81282166017627e-006,3.6684043607238e-006,1,-2.45110459218267e-006,6.93259835315985e-007,1,-6.93266372309154e-007,2.07977882382693e-006,1,-2.07979837796302e-006,2.07977882382693e-006,1,-2.07979837796302e-006,6.93259835315985e-007,1,-6.93266372309154e-007,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,6.93257220518717e-007,1,6.93264667006588e-007,1.73314234075406e-007,1,1.73316109908228e-007,1.73314234075406e-007,1,1.73316109908228e-007,6.93257220518717e-007,1,6.93264667006588e-007,1.42657643209532e-006,1,9.53192341057729e-007,1.01893988357915e-006,1,6.80822665799496e-007,1.01893988357915e-006,1,6.80822665799496e-007,1.42657643209532e-006,1,9.53192341057729e-007,2.26397773417375e-007,1,9.37766984066002e-008,-2.26511900791593e-007,1,-9.3823963709383e-008,-2.26511900791593e-007,1,-9.3823963709383e-008,2.26397773417375e-007,1,9.37766984066002e-008,-5.32359820226702e-007,1,1.67190677302642e-007,-4.76127752335742e-007,1,-1.11066711383501e-007,-4.76127752335742e-007,1,-1.11066711383501e-007,-5.32359820226702e-007,1,1.67190677302642e-007,-7.50300372942547e-008,1,7.61808109928097e-007,-0,1,0,0,1,0,5.88863251493876e-008,1,2.68482153842342e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-1.58498448854516e-006,1,6.56518125197181e-007,-6.79279821724776e-007,1,2.81365259979793e-007,-6.79279821724776e-007,1,2.81365259979793e-007,-1.58498448854516e-006,1,6.56518125197181e-007,-2.44536454374611e-006,1,1.63391052865336e-006,-2.03780496121908e-006,1,1.36159280827997e-006,2.85319629256264e-006,1,-1.90641003428027e-006,
- 5.70639485886204e-006,1,-3.81282166017627e-006,2.07977882382693e-006,1,-2.07979837796302e-006,2.25308986046002e-006,1,-2.25311123358551e-006,2.25308986046002e-006,1,-2.25311123358551e-006,2.07977882382693e-006,1,-2.07979837796302e-006,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1.73314234075406e-007,1,1.73316109908228e-007,3.4662855341594e-007,1,3.46632305081584e-007,3.4662855341594e-007,1,3.46632305081584e-007,1.73314234075406e-007,1,1.73316109908228e-007,1.01893988357915e-006,1,6.80822665799496e-007,8.15159637568286e-007,1,5.44663350865449e-007,8.15159637568286e-007,1,5.44663350865449e-007,1.01893988357915e-006,1,6.80822665799496e-007,-2.26511900791593e-007,1,-9.3823963709383e-008,2.26369678557603e-007,1,9.37650597165884e-008,2.26369678557603e-007,1,9.37650597165884e-008,-2.26511900791593e-007,1,-9.3823963709383e-008,-4.76127752335742e-007,1,-1.11066711383501e-007,-8.02981674041803e-007,1,-4.52400399808539e-007,-8.02981674041803e-007,1,-4.52400399808539e-007,-4.76127752335742e-007,1,-1.11066711383501e-007,-0,1,0,7.50293551732284e-008,1,-7.61808166771516e-007,-5.35570201520841e-008,1,-2.69446587708444e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-6.79279821724776e-007,1,2.81365259979793e-007,-4.52852845000962e-007,1,1.87576674193224e-007,-4.52852845000962e-007,1,1.87576674193224e-007,-6.79279821724776e-007,1,2.81365259979793e-007,-2.03780496121908e-006,1,1.36159280827997e-006,-1.22268340874143e-006,1,8.16955946447706e-007,-8.15196926851058e-007,1,5.4468722510137e-007,2.85319629256264e-006,1,-1.90641003428027e-006,
- 2.25308986046002e-006,1,-2.25311123358551e-006,3.46630798730985e-007,1,-3.46634067227569e-007,3.46630798730985e-007,1,-3.46634067227569e-007,2.25308986046002e-006,1,-2.25311123358551e-006,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-7.46956843045155e-008,1,-1.4860376040815e-008,-7.46956843045155e-008,1,-1.4860376040815e-008,-0,1,0,-0,1,0,-7.61599210363784e-008,1,-6.72539395559586e-016,-7.61599210363784e-008,1,-6.72539395559586e-016,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,3.4662855341594e-007,1,3.46632305081584e-007,0,1,0,0,1,0,3.4662855341594e-007,1,3.46632305081584e-007,8.15159637568286e-007,1,5.44663350865449e-007,2.03799331188748e-007,1,1.36172133125001e-007,2.03799331188748e-007,1,1.36172133125001e-007,8.15159637568286e-007,1,5.44663350865449e-007,2.26369678557603e-007,1,9.37650597165884e-008,2.26426294602788e-007,1,9.37885076268685e-008,2.26426294602788e-007,1,9.37885076268685e-008,2.26369678557603e-007,1,9.37650597165884e-008,-8.02981674041803e-007,1,-4.52400399808539e-007,-1.62478855258996e-007,1,-2.77416091876148e-007,-1.62478855258996e-007,1,-2.77416091876148e-007,-8.02981674041803e-007,1,-4.52400399808539e-007,7.50293551732284e-008,1,-7.61808166771516e-007,9.08979488900563e-013,1,-9.61509158514673e-007,-6.76375977448629e-009,1,-4.80754579257336e-007,-6.76375977448629e-009,1,-4.80754579257336e-007,9.08979488900563e-013,1,-9.61509158514673e-007,-7.50286233142106e-008,1,-7.61808507832029e-007,-5.35570201520841e-008,1,-2.69446587708444e-007,-4.68952876531148e-008,1,-2.35760495570503e-007,-4.68952876531148e-008,1,-2.35760495570503e-007,-5.35570201520841e-008,1,-2.69446587708444e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,-3.00889070103949e-007,1,-7.01877524988959e-008,0,1,0,0,1,-0,-3.02576609101379e-007,1,-6.4624792628365e-008,-3.63214695653369e-007,1,-7.69900978525584e-008,-1.56498203285338e-010,1,1.58896062973923e-009,
- 0,1,0,-3.00889070103949e-007,1,-7.01877524988959e-008,0,1,0,7.50743680555388e-008,1,7.6228002399148e-007,5.88863251493876e-008,1,2.68482153842342e-007,0,1,0,-7.50286233142106e-008,1,-7.61808507832029e-007,0,1,0,0,1,0,-5.35570201520841e-008,1,-2.69446587708444e-007,-1,-0,-7.22958048982036e-008,-1,-0,0,-1,-0,-5.93913043189787e-008,-1,-0,-1.18782608637957e-007,-1,0,-6.55357084156094e-008,-1,0,0,-1,0,-6.55357084156094e-008,-1,0,-1.31071416831219e-007,-0.333607912063599,0.94271194934845,-2.79396772384644e-008,-1,-0,0,-1,-0,-7.22958048982036e-008,-0.333619683980942,0.942707777023315,-5.96046376699633e-008,-0.330577582120895,0.943216681480408,0.032569769769907,-0.330589354038239,0.943212628364563,0.0325709283351898,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,-0.333608269691467,0.94271183013916,-1.30385160446167e-008,-1,0,-0,-1,0,-3.9726767653292e-008,-0.33361941576004,0.94270795583725,-2.7939680791178e-008,-0,1,0,-0.330577969551086,0.943216621875763,-0.03256980702281,-0.330589056015015,0.943212687969208,-0.0325708985328674,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0.980784833431244,-0,0.19509269297123,0.980784714221954,-0,0.195093333721161,0.995181739330292,-0,0.0980476513504982,0.995178818702698,-0,0.098076805472374,0.980779111385345,-0,0.195121675729752,0.98078179359436,-0,0.195107907056808,0.995181739330292,-0,0.0980476513504982,0.995178818702698,-0,0.0980767831206322,0.910832524299622,-0,0.412776380777359,0.98078179359436,-0,0.195107907056808,0.980779111385345,-0,0.195121675729752,0.935947000980377,-0,0.352140963077545,0.812792420387268,-0,0.582553386688232,0.910832524299622,-0,0.412776380777359,0.935947000980377,-0,0.352140963077545,0.849253356456757,-0,0.527985513210297,0.683528542518616,-0,0.729923784732819,0.812792420387268,-0,0.582553386688232,0.849253356456757,-0,0.527985513210297,0.729932188987732,-0,0.683519601821899,0.527972757816315,-0,0.849261343479156,0.683528542518616,-0,0.729923784732819,0.729932188987732,-0,0.683519601821899,0.582546234130859,-0,0.812797665596008,0.352168798446655,-0,0.935936510562897,0.527972757816315,-0,0.849261343479156,
- 0.582546234130859,-0,0.812797665596008,0.412787288427353,-0,0.910827457904816,0.162803113460541,-0,0.986658573150635,0.352168798446655,-0,0.935936510562897,0.412787288427353,-0,0.910827457904816,0.2271738499403,-0,0.973854243755341,0.0980166718363762,-0,0.995184779167175,0.162803113460541,-0,0.986658573150635,0.2271738499403,-0,0.973854243755341,0.0980159640312195,-0,0.99518483877182,0.227169215679169,0,-0.973855316638947,0.0980166643857956,0,-0.995184779167175,0.0980166494846344,0,-0.995184779167175,0.162803053855896,0,-0.986658692359924,0.412793070077896,0,-0.910824835300446,0.227169215679169,0,-0.973855316638947,0.162803053855896,0,-0.986658692359924,0.352163046598434,0,-0.935938775539398,0.58254474401474,0,-0.812798678874969,0.412793070077896,0,-0.910824835300446,0.352163046598434,0,-0.935938775539398,0.527984023094177,0,-0.849254310131073,0.729933023452759,0,-0.683518648147583,0.58254474401474,0,-0.812798678874969,0.527984023094177,0,-0.849254310131073,0.683521747589111,0,-0.729930222034454,0.849250018596649,0,-0.527990877628326,0.729933023452759,0,-0.683518648147583,0.683521747589111,0,-0.729930222034454,0.812794208526611,0,-0.582551062107086,0.935952603816986,0,-0.352126210927963,0.849250018596649,0,-0.527990877628326,0.812794208526611,0,-0.582551062107086,0.91083300113678,0,-0.412775158882141,0.980784773826599,0,-0.195093229413033,0.935952603816986,0,-0.352126210927963,0.91083300113678,0,-0.412775158882141,0.980784714221954,0,-0.195093184709549,0.995175957679749,0,-0.0981063321232796,0.995178818702698,0,-0.0980771481990814,0.980784773826599,0,-0.195093229413033,0.980784714221954,0,-0.195093184709549,0.910824954509735,-0,0.412792772054672,0.980784714221954,-0,0.195093333721161,0.980784833431244,-0,0.19509269297123,0.935947775840759,-0,0.352138936519623,0.812801837921143,-0,0.582540392875671,0.910824954509735,-0,0.412792772054672,0.935947775840759,-0,0.352138936519623,0.849251985549927,-0,0.527987778186798,0.683519661426544,-0,0.729932129383087,0.812801837921143,-0,0.582540392875671,0.849251985549927,-0,0.527987778186798,
- 0.729934632778168,-0,0.683516979217529,0.527982175350189,-0,0.849255561828613,0.683519661426544,-0,0.729932129383087,0.729934632778168,-0,0.683516979217529,0.582544326782227,-0,0.812798976898193,0.352164328098297,-0,0.93593817949295,0.527982175350189,-0,0.849255561828613,0.582544326782227,-0,0.812798976898193,0.412792146205902,-0,0.910825252532959,0.162802934646606,-0,0.986658692359924,0.352164328098297,-0,0.93593817949295,0.412792146205902,-0,0.910825252532959,0.22716860473156,-0,0.973855495452881,0.098015084862709,-0,0.99518495798111,0.162802934646606,-0,0.986658692359924,0.22716860473156,-0,0.973855495452881,0.0980149284005165,-0,0.99518495798111,-0.22717496752739,0,0.973854064941406,-0.0980166643857956,0,0.995184779167175,-0.0980166494846344,0,0.995184779167175,-0.162808805704117,0,0.986657679080963,-0.412783920764923,0,0.910829067230225,-0.22717496752739,0,0.973854064941406,-0.162808805704117,0,0.986657679080963,-0.352159202098846,0,0.935940206050873,-0.582556247711182,0,0.812790334224701,-0.412783920764923,0,0.910829067230225,-0.352159202098846,0,0.935940206050873,-0.527986764907837,0,0.849252700805664,-0.729922652244568,0,0.683529853820801,-0.582556247711182,0,0.812790334224701,-0.527986764907837,0,0.849252700805664,-0.683520615100861,0,0.729931175708771,-0.849259853363037,0,0.527975142002106,-0.729922652244568,0,0.683529853820801,-0.683520615100861,0,0.729931175708771,-0.812795281410217,0,0.582549512386322,-0.935945749282837,0,0.352144539356232,-0.849259853363037,0,0.527975142002106,-0.812795281410217,0,0.582549512386322,-0.910832762718201,0,0.412775605916977,-0.986653387546539,0,0.162835001945496,-0.935945749282837,0,0.352144539356232,-0.910832762718201,0,0.412775605916977,-0.973852694034576,0,0.227180749177933,-0.995181739330292,0,0.0980476513504982,-0.986653387546539,0,0.162835001945496,-0.973852694034576,0,0.227180749177933,-0.995178878307343,0,0.098076730966568,0.980784952640533,0,0.195092365145683,0.995178878307343,0,0.0980768129229546,0.995181798934937,0,0.0980476588010788,0.980784714221954,0,0.195093169808388,
- 0.980779111385345,0,0.195121675729752,0.995178818702698,0,0.0980767831206322,0.995181739330292,0,0.0980476513504982,0.980781853199005,0,0.19510792195797,0.910832285881042,0,0.412776648998261,0.935947000980377,0,0.352140963077545,0.980779111385345,0,0.195121675729752,0.980781853199005,0,0.19510792195797,0.812792420387268,0,0.582553386688232,0.849253177642822,0,0.527985870838165,0.935947000980377,0,0.352140963077545,0.910832285881042,0,0.412776648998261,0.683528900146484,0,0.72992354631424,0.729932427406311,0,0.683519303798676,0.849253177642822,0,0.527985870838165,0.812792420387268,0,0.582553386688232,0.527972757816315,0,0.849261343479156,0.582546234130859,0,0.812797665596008,0.729932427406311,0,0.683519303798676,0.683528900146484,0,0.72992354631424,0.352168798446655,0,0.935936510562897,0.412787288427353,0,0.910827457904816,0.582546234130859,0,0.812797665596008,0.527972757816315,0,0.849261343479156,0.162803113460541,0,0.986658573150635,0.2271738499403,0,0.973854243755341,0.412787288427353,0,0.910827457904816,0.352168798446655,0,0.935936510562897,0.0980166718363762,0,0.995184779167175,0.0980159640312195,0,0.99518483877182,0.2271738499403,0,0.973854243755341,0.162803113460541,0,0.986658573150635,0.227169215679169,0,-0.973855316638947,0.162803053855896,0,-0.986658692359924,0.0980166494846344,0,-0.995184779167175,0.0980166643857956,0,-0.995184779167175,0.412793070077896,0,-0.910824835300446,0.352163046598434,0,-0.935938775539398,0.162803053855896,0,-0.986658692359924,0.227169215679169,0,-0.973855316638947,0.582545459270477,0,-0.812798202037811,0.527984023094177,0,-0.849254369735718,0.352163046598434,0,-0.935938775539398,0.412793070077896,0,-0.910824835300446,0.72993278503418,0,-0.683518946170807,0.68352198600769,0,-0.729929983615875,0.527984023094177,0,-0.849254369735718,0.582545459270477,0,-0.812798202037811,0.849250197410584,0,-0.527990818023682,0.812793672084808,0,-0.582551717758179,0.68352198600769,0,-0.729929983615875,0.72993278503418,0,-0.683518946170807,0.935952425003052,0,-0.352126657962799,0.910833179950714,0,-0.412774801254272,
- 0.812793672084808,0,-0.582551717758179,0.849250197410584,0,-0.527990818023682,0.98078465461731,0,-0.195093810558319,0.980784714221954,0,-0.195093467831612,0.910833179950714,0,-0.412774801254272,0.935952425003052,0,-0.352126657962799,0.995176136493683,0,-0.0981049537658691,0.980784714221954,0,-0.195093467831612,0.98078465461731,0,-0.195093810558319,0.995178937911987,0,-0.0980764627456665,0.91082489490509,0,0.412793010473251,0.935947775840759,0,0.352138966321945,0.980784952640533,0,0.195092365145683,0.980784714221954,0,0.195093169808388,0.812801778316498,0,0.582540333271027,0.849251806735992,0,0.527988016605377,0.935947775840759,0,0.352138966321945,0.91082489490509,0,0.412793010473251,0.683519661426544,0,0.729932129383087,0.729934632778168,0,0.683516979217529,0.849251806735992,0,0.527988016605377,0.812801778316498,0,0.582540333271027,0.527982175350189,0,0.849255561828613,0.582544326782227,0,0.812798976898193,0.729934632778168,0,0.683516979217529,0.683519661426544,0,0.729932129383087,0.352164328098297,0,0.93593817949295,0.412792176008224,0,0.910825312137604,0.582544326782227,0,0.812798976898193,0.527982175350189,0,0.849255561828613,0.162802919745445,0,0.98665863275528,0.22716860473156,0,0.973855495452881,0.412792176008224,0,0.910825312137604,0.352164328098297,0,0.93593817949295,0.098015084862709,0,0.99518495798111,0.0980149284005165,0,0.99518495798111,0.22716860473156,0,0.973855495452881,0.162802919745445,0,0.98665863275528,-0.22717496752739,0,0.973854064941406,-0.162808805704117,0,0.986657679080963,-0.0980166494846344,0,0.995184779167175,-0.0980166643857956,0,0.995184779167175,-0.412783920764923,0,0.910829067230225,-0.352159202098846,0,0.935940206050873,-0.162808805704117,0,0.986657679080963,-0.22717496752739,0,0.973854064941406,-0.582556247711182,0,0.812790334224701,-0.527986764907837,0,0.849252700805664,-0.352159202098846,0,0.935940206050873,-0.412783920764923,0,0.910829067230225,-0.729922652244568,0,0.683529853820801,-0.683520615100861,0,0.729931175708771,-0.527986764907837,0,0.849252700805664,-0.582556247711182,0,0.812790334224701,
- -0.849259734153748,0,0.52797532081604,-0.812795162200928,0,0.582549631595612,-0.683520615100861,0,0.729931175708771,-0.729922652244568,0,0.683529853820801,-0.935945749282837,0,0.352144300937653,-0.910832762718201,0,0.412775576114655,-0.812795162200928,0,0.582549631595612,-0.849259734153748,0,0.52797532081604,-0.986653327941895,0,0.162834987044334,-0.973852694034576,0,0.227180480957031,-0.910832762718201,0,0.412775576114655,-0.935945749282837,0,0.352144300937653,-0.995181739330292,0,0.0980476513504982,-0.995178878307343,0,0.098076730966568,-0.973852694034576,0,0.227180480957031,-0.986653327941895,0,0.162834987044334,-0.194778010249138,-0.0222680307924747,0.980594575405121,-0.203994244337082,0.0239549931138754,0.978679060935974,-0.110290065407753,-0.227137237787247,0.967597484588623,-0.114935003221035,-0.0205254219472408,0.993160963058472,-0.122363463044167,-0.0207394286990166,0.992268681526184,0.889117121696472,0.433569729328156,0.146588280797005,0.989368259906769,0.00563347758725286,0.145323008298874,-0.124113216996193,0.0223216321319342,0.992016971111298,0.0420210361480713,-0.005656857509166,-0.999100685119629,0.080796904861927,0.0621142610907555,-0.994793295860291,0.144292116165161,-0.0186951253563166,-0.989358484745026,-0.132410168647766,-0.0367992296814919,0.990511775016785,0.826153993606567,0.0424211658537388,0.561845362186432,-0.0977372825145721,-0.146034866571426,0.984439611434937,0.987238585948944,-0.0434535965323448,0.153205618262291,0.985863566398621,0.0496858768165112,0.160013943910599,0.97379744052887,-0.219134137034416,0.0608180798590183,0.994233667850494,-0.0418235138058662,0.0987437963485718,-0.0267312210053205,-0.00376751087605953,-0.999635577201843,0.104839146137238,-0.333988398313522,-0.936728656291962,0.0441345758736134,-0.0200697109103203,-0.998824000358582,-0.997066199779511,0.00508221052587032,-0.0763763338327408,-0.984285295009613,0.0159364864230156,-0.175864905118942,-0.999568521976471,-0.0233566369861364,-0.0178103465586901,-0.127271518111229,0.290199160575867,0.948465406894684,-0.155392810702324,0.00711601134389639,0.987827122211456,
- 0.0220290217548609,0.121625371277332,0.992331683635712,0.00708738528192043,0.110633611679077,-0.993836045265198,-0.157702833414078,-0.15629780292511,-0.975038945674896,0.0870965719223022,-0.0935216844081879,-0.991800427436829,-0.941892921924591,-0.311374545097351,-0.126030445098877,-0.935662150382996,-0.339160293340683,-0.0975014269351959,-0.993571817874908,-0.0199397355318069,-0.111433878540993,-0.985453009605408,-0.0445093289017677,-0.164016783237457,0.979974448680878,-0.0619466565549374,0.189242497086525,0.958174347877502,-0.261188298463821,0.116972304880619,0.992066204547882,-0.0761362463235855,0.100040450692177,0.993671178817749,0.0500775091350079,0.100548140704632,0.987355470657349,0.026425089687109,0.156303763389587,0.0768362805247307,-0.00583218643441796,-0.997026741504669,0.128486201167107,-0.0162764079868793,-0.991577804088593,0.14335523545742,0.0763906612992287,-0.986718714237213,0.065106101334095,-0.0494091138243675,-0.996654450893402,-0.167090460658073,-0.0407947301864624,0.985097348690033,-0.977796971797943,0.16406424343586,-0.13036921620369,-0.992810189723969,-0.0924536809325218,-0.0760284960269928,0.0167711600661278,-0.158015891909599,-0.987294137477875,0.065106101334095,-0.0494091138243675,-0.996654450893402,0.14335523545742,0.0763906612992287,-0.986718714237213,-0.886941313743591,-0.456562846899033,0.0698980689048767,-0.983835458755493,-0.138957962393761,-0.112953156232834,-0.169435977935791,-0.110489070415497,0.979328215122223,0.972926139831543,-0.174431785941124,0.151619017124176,0.988168179988861,0.0257567018270493,0.151196137070656,0.995493054389954,-0.0239997673779726,0.0917475894093513,0.878121972084045,0.474338680505753,0.0624876618385315,0.080796904861927,0.0621142610907555,-0.994793295860291,0.14476090669632,0.0343399383127689,-0.988870680332184,0.144292116165161,-0.0186951253563166,-0.989358484745026,-0.0267312210053205,-0.00376751087605953,-0.999635577201843,0.0122513342648745,-0.197860270738602,-0.980153679847717,0.115628898143768,0.112003766000271,-0.986957550048828,-0.868057906627655,0.438393145799637,-0.232995450496674,
- -0.957879543304443,0.266652047634125,-0.10659983754158,-0.934673547744751,0.275430202484131,-0.224774464964867,-0.128463625907898,0.0191587172448635,0.991529226303101,-0.114935003221035,-0.0205254219472408,0.993160963058472,0.987355470657349,0.026425089687109,0.156303763389587,0.142465382814407,0.202609077095985,-0.968841135501862,-0.00897966884076595,-0.163187846541405,-0.986554205417633,0.0730228573083878,-0.0183113627135754,-0.997162222862244,0.125918239355087,-0.010338356718421,-0.991986811161041,0.0420210361480713,-0.005656857509166,-0.999100685119629,-0.00437540980055928,0.0623866096138954,-0.998042464256287,0.080796904861927,0.0621142610907555,-0.994793295860291,-0.874289214611053,0.442057967185974,-0.200507044792175,-0.98864221572876,0.0513117089867592,-0.14125794172287,-0.00897966884076595,-0.163187846541405,-0.986554205417633,0.148645803332329,-0.0953346341848373,-0.984284400939941,0.955365240573883,0.277505695819855,0.101330935955048,0.128486201167107,-0.0162764079868793,-0.991577804088593,-0.535786390304565,-0.307277470827103,-0.786456286907196,-0.905277132987976,-0.39303657412529,-0.161231681704521,-0.776606440544128,-0.575415968894959,-0.256474167108536,-0.262199133634567,0.122489683330059,-0.957208395004272,-0.508112907409668,-0.185250610113144,-0.841132283210754,0.0910437479615211,0.100536711513996,-0.990759015083313,-0.879960179328918,-0.436965018510818,-0.186364740133286,-0.988018691539764,-0.138731926679611,-0.0676209926605225,-0.957150340080261,-0.283826380968094,-0.0574972666800022,0.696612417697906,0.0528155863285065,-0.715501010417938,0.992066204547882,-0.0761362463235855,0.100040450692177,0.918615520000458,-0.390634328126907,0.0595855973660946,-0.977049827575684,-0.0884649530053139,-0.193772315979004,-0.975007116794586,0.191903367638588,-0.11195607483387,-0.957879543304443,0.266652047634125,-0.10659983754158,-0.868057906627655,0.438393145799637,-0.232995450496674,-0.941892921924591,-0.311374545097351,-0.126030445098877,-0.879960179328918,-0.436965018510818,-0.186364740133286,-0.935662150382996,-0.339160293340683,-0.0975014269351959,
- 0.144292116165161,-0.0186951253563166,-0.989358484745026,0.14476090669632,0.0343399383127689,-0.988870680332184,0.674909770488739,-0.00306931184604764,-0.73789393901825,-0.167090460658073,-0.0407947301864624,0.985097348690033,-0.992810189723969,-0.0924536809325218,-0.0760284960269928,-0.194778010249138,-0.0222680307924747,0.980594575405121,-0.934673547744751,0.275430202484131,-0.224774464964867,-0.957879543304443,0.266652047634125,-0.10659983754158,-0.999568521976471,-0.0233566369861364,-0.0178103465586901,0.974525094032288,-0.21310843527317,0.0698982253670692,0.88256561756134,0.450083523988724,0.136024758219719,0.988941013813019,0.112120494246483,0.0970817729830742,0.961967587471008,0.267874330282211,0.0534956306219101,0.934168577194214,-0.011151353828609,-0.356657922267914,0.988941013813019,0.112120494246483,0.0970817729830742,-0.991272985935211,0.0787329375743866,-0.105731055140495,-0.91488242149353,0.365439057350159,-0.171593844890594,-0.931487500667572,0.229867696762085,-0.281943023204803,0.0910437479615211,0.100536711513996,-0.990759015083313,0.142465382814407,0.202609077095985,-0.968841135501862,0.14476090669632,0.0343399383127689,-0.988870680332184,0.988941013813019,0.112120494246483,0.0970817729830742,0.934168577194214,-0.011151353828609,-0.356657922267914,0.974525094032288,-0.21310843527317,0.0698982253670692,-0.165149480104446,0.00305750174447894,0.986263871192932,-0.167090460658073,-0.0407947301864624,0.985097348690033,-0.194778010249138,-0.0222680307924747,0.980594575405121,-0.114935003221035,-0.0205254219472408,0.993160963058472,-0.128463625907898,0.0191587172448635,0.991529226303101,0.987355470657349,0.026425089687109,0.156303763389587,-0.114935003221035,-0.0205254219472408,0.993160963058472,-0.110290065407753,-0.227137237787247,0.967597484588623,0.979974448680878,-0.0619466565549374,0.189242497086525,-0.110290065407753,-0.227137237787247,0.967597484588623,-0.399628758430481,-0.391361922025681,0.828934609889984,-0.0878245979547501,-0.249134063720703,0.964478731155396,-0.14828334748745,0.0589398965239525,0.987187027931213,
- -0.23044915497303,-0.189912110567093,0.954372346401215,-0.216908469796181,0.0100509654730558,0.976140260696411,-0.142039716243744,-0.0152220390737057,0.989743947982788,0.939535319805145,-0.302879005670547,0.15980526804924,0.970552742481232,-0.219718679785728,0.098748080432415,0.847247719764709,-0.474379897117615,0.23902939260006,0.936090290546417,-0.319375276565552,0.147425785660744,0.676331996917725,-0.420490354299545,0.604783475399017,-0.114440836012363,0.106059767305851,0.987752377986908,-0.508112907409668,-0.185250610113144,-0.841132283210754,-0.00897966884076595,-0.163187846541405,-0.986554205417633,0.0910437479615211,0.100536711513996,-0.990759015083313,0.987355470657349,0.026425089687109,0.156303763389587,0.879879653453827,-0.451687693595886,0.147614508867264,-0.128463625907898,0.0191587172448635,0.991529226303101,0.425310671329498,-0.0765185356140137,0.901806950569153,0.879879653453827,-0.451687693595886,0.147614508867264,0.988941013813019,0.112120494246483,0.0970817729830742,0.104839146137238,-0.333988398313522,-0.936728656291962,-0.0267312210053205,-0.00376751087605953,-0.999635577201843,0.0397351086139679,-0.263312965631485,-0.963891863822937,0.918615520000458,-0.390634328126907,0.0595855973660946,0.847247719764709,-0.474379897117615,0.23902939260006,0.970552742481232,-0.219718679785728,0.098748080432415,0.425310671329498,-0.0765185356140137,0.901806950569153,0.88256561756134,0.450083523988724,0.136024758219719,-0.112602643668652,-0.0926174074411392,0.989314317703247,0.939535319805145,-0.302879005670547,0.15980526804924,-0.0819082334637642,0.263535439968109,0.961166083812714,-0.143801748752594,-0.0170171186327934,0.989460229873657,0.987238585948944,-0.0434535965323448,0.153205618262291,0.939535319805145,-0.302879005670547,0.15980526804924,0.847247719764709,-0.474379897117615,0.23902939260006,0.553189992904663,-0.0197082459926605,0.83282196521759,-0.0819082334637642,0.263535439968109,0.961166083812714,-0.391541838645935,-0.920029044151306,0.0155426263809204,0.0815572515130043,0.860863864421844,-0.502256691455841,
- 0.407394558191299,-0.244458705186844,0.879925966262817,-0.941892921924591,-0.311374545097351,-0.126030445098877,-0.985453009605408,-0.0445093289017677,-0.164016783237457,-0.885035991668701,0.0829207003116608,-0.45807808637619,-0.941892921924591,-0.311374545097351,-0.126030445098877,-0.885035991668701,0.0829207003116608,-0.45807808637619,-0.879960179328918,-0.436965018510818,-0.186364740133286,-0.999568521976471,-0.0233566369861364,-0.0178103465586901,-0.984285295009613,0.0159364864230156,-0.175864905118942,-0.934673547744751,0.275430202484131,-0.224774464964867,0.115628898143768,0.112003766000271,-0.986957550048828,0.0122513342648745,-0.197860270738602,-0.980153679847717,0.0427469424903393,0.00682924641296268,-0.999062597751617,0.0420210361480713,-0.005656857509166,-0.999100685119629,0.967465877532959,-0.189001321792603,-0.168191000819206,0.955365240573883,0.277505695819855,0.101330935955048,0.148645803332329,-0.0953346341848373,-0.984284400939941,0.973374664783478,-0.178360968828201,0.143976330757141,0.955365240573883,0.277505695819855,0.101330935955048,0.967465877532959,-0.189001321792603,-0.168191000819206,0.10948634147644,-0.217768371105194,0.969840049743652,0.51580148935318,-0.825972259044647,0.227417707443237,0.14285796880722,-0.181048363447189,-0.973043262958527,0.988168179988861,0.0257567018270493,0.151196137070656,0.972926139831543,-0.174431785941124,0.151619017124176,-0.14828334748745,0.0589398965239525,0.987187027931213,-0.142039716243744,-0.0152220390737057,0.989743947982788,0.0397351086139679,-0.263312965631485,-0.963891863822937,-0.0267312210053205,-0.00376751087605953,-0.999635577201843,0.115628898143768,0.112003766000271,-0.986957550048828,0.918615520000458,-0.390634328126907,0.0595855973660946,0.115628898143768,0.112003766000271,-0.986957550048828,0.696612417697906,0.0528155863285065,-0.715501010417938,0.676331996917725,-0.420490354299545,0.604783475399017,0.0220290217548609,0.121625371277332,0.992331683635712,-0.155392810702324,0.00711601134389639,0.987827122211456,-0.114440836012363,0.106059767305851,0.987752377986908,
- -0.155392810702324,0.00711601134389639,0.987827122211456,-0.197331592440605,-0.00202785944566131,0.9803346991539,-0.211442247033119,0.0100450422614813,0.977338850498199,-0.124113216996193,0.0223216321319342,0.992016971111298,-0.114440836012363,0.106059767305851,0.987752377986908,-0.776606440544128,-0.575415968894959,-0.256474167108536,-0.905277132987976,-0.39303657412529,-0.161231681704521,-0.786595046520233,-0.585294246673584,-0.196720331907272,0.955365240573883,0.277505695819855,0.101330935955048,0.994450628757477,0.0240710731595755,0.102413728833199,0.128486201167107,-0.0162764079868793,-0.991577804088593,-0.399628758430481,-0.391361922025681,0.828934609889984,-0.83417934179306,-0.551451325416565,0.00681727193295956,-0.728163003921509,0.677087724208832,-0.106446906924248,-0.863224148750305,0.495707988739014,-0.0954868122935295,-0.220773667097092,-0.0646521151065826,0.973179876804352,-0.728163003921509,0.677087724208832,-0.106446906924248,-0.891150534152985,0.423595368862152,-0.162535563111305,-0.977984488010406,0.197478547692299,-0.0674440264701843,-0.23044915497303,-0.189912110567093,0.954372346401215,-0.957150340080261,-0.283826380968094,-0.0574972666800022,-0.935662150382996,-0.339160293340683,-0.0975014269351959,-0.879960179328918,-0.436965018510818,-0.186364740133286,-0.983835458755493,-0.138957962393761,-0.112953156232834,-0.977796971797943,0.16406424343586,-0.13036921620369,-0.167090460658073,-0.0407947301864624,0.985097348690033,-0.993516862392426,0.0246684662997723,-0.110976696014404,-0.211442247033119,0.0100450422614813,0.977338850498199,-0.197331592440605,-0.00202785944566131,0.9803346991539,-0.915296494960785,0.39750549197197,-0.0649744942784309,0.989654660224915,-0.123295687139034,0.0733619183301926,0.826153993606567,0.0424211658537388,0.561845362186432,0.707943201065063,-0.250107258558273,-0.660501897335052,-0.203994244337082,0.0239549931138754,0.978679060935974,-0.83417934179306,-0.551451325416565,0.00681727193295956,-0.399628758430481,-0.391361922025681,0.828934609889984,-0.110290065407753,-0.227137237787247,0.967597484588623,
- -0.203994244337082,0.0239549931138754,0.978679060935974,-0.399628758430481,-0.391361922025681,0.828934609889984,-0.874289214611053,0.442057967185974,-0.200507044792175,-0.00897966884076595,-0.163187846541405,-0.986554205417633,-0.508112907409668,-0.185250610113144,-0.841132283210754,-0.508112907409668,-0.185250610113144,-0.841132283210754,-0.535786390304565,-0.307277470827103,-0.786456286907196,-0.776606440544128,-0.575415968894959,-0.256474167108536,-0.985453009605408,-0.0445093289017677,-0.164016783237457,-0.977695643901825,-0.0907741338014603,-0.189397588372231,0.00708738528192043,0.110633611679077,-0.993836045265198,-0.985453009605408,-0.0445093289017677,-0.164016783237457,0.00708738528192043,0.110633611679077,-0.993836045265198,0.0768362805247307,-0.00583218643441796,-0.997026741504669,0.989836752414703,-0.058334656059742,0.129693627357483,0.878121972084045,0.474338680505753,0.0624876618385315,0.0886362046003342,0.156725227832794,-0.983656883239746,0.115628898143768,0.112003766000271,-0.986957550048828,0.918615520000458,-0.390634328126907,0.0595855973660946,0.0397351086139679,-0.263312965631485,-0.963891863822937,0.918615520000458,-0.390634328126907,0.0595855973660946,0.104839146137238,-0.333988398313522,-0.936728656291962,0.0397351086139679,-0.263312965631485,-0.963891863822937,-0.155392810702324,0.00711601134389639,0.987827122211456,-0.127271518111229,0.290199160575867,0.948465406894684,-0.197331592440605,-0.00202785944566131,0.9803346991539,-0.508112907409668,-0.185250610113144,-0.841132283210754,-0.776606440544128,-0.575415968894959,-0.256474167108536,-0.874289214611053,0.442057967185974,-0.200507044792175,-0.399628758430481,-0.391361922025681,0.828934609889984,-0.728163003921509,0.677087724208832,-0.106446906924248,-0.220773667097092,-0.0646521151065826,0.973179876804352,-0.289999127388,-0.070356160402298,0.95443731546402,0.115628898143768,0.112003766000271,-0.986957550048828,0.144292116165161,-0.0186951253563166,-0.989358484745026,0.696612417697906,0.0528155863285065,-0.715501010417938,-0.993571817874908,-0.0199397355318069,-0.111433878540993,
- -0.927974343299866,0.366330415010452,-0.0683055520057678,-0.977695643901825,-0.0907741338014603,-0.189397588372231,-0.985453009605408,-0.0445093289017677,-0.164016783237457,-0.98864221572876,0.0513117089867592,-0.14125794172287,-0.996674358844757,0.0441677831113338,-0.0684797316789627,-0.988018691539764,-0.138731926679611,-0.0676209926605225,0.104839146137238,-0.333988398313522,-0.936728656291962,0.970552742481232,-0.219718679785728,0.098748080432415,0.994233667850494,-0.0418235138058662,0.0987437963485718,0.117528699338436,-0.0127945775166154,-0.992987155914307,0.970552742481232,-0.219718679785728,0.098748080432415,0.104839146137238,-0.333988398313522,-0.936728656291962,0.918615520000458,-0.390634328126907,0.0595855973660946,-0.986616432666779,-0.0258919186890125,-0.160989612340927,-0.984285295009613,0.0159364864230156,-0.175864905118942,-0.997066199779511,0.00508221052587032,-0.0763763338327408,0.148645803332329,-0.0953346341848373,-0.984284400939941,0.0870965719223022,-0.0935216844081879,-0.991800427436829,0.967465877532959,-0.189001321792603,-0.168191000819206,0.00708738528192043,0.110633611679077,-0.993836045265198,0.0870965719223022,-0.0935216844081879,-0.991800427436829,0.148645803332329,-0.0953346341848373,-0.984284400939941,0.993671178817749,0.0500775091350079,0.100548140704632,0.144292116165161,-0.0186951253563166,-0.989358484745026,0.674909770488739,-0.00306931184604764,-0.73789393901825,-0.169435977935791,-0.110489070415497,0.979328215122223,-0.984054565429688,-0.167868047952652,-0.0587965548038483,-0.886941313743591,-0.456562846899033,0.0698980689048767,0.0427469424903393,0.00682924641296268,-0.999062597751617,-0.986616432666779,-0.0258919186890125,-0.160989612340927,0.0420210361480713,-0.005656857509166,-0.999100685119629,-0.986616432666779,-0.0258919186890125,-0.160989612340927,-0.00437540980055928,0.0623866096138954,-0.998042464256287,0.0420210361480713,-0.005656857509166,-0.999100685119629,0.14335523545742,0.0763906612992287,-0.986718714237213,0.971744358539581,-0.220501601696014,0.0842137858271599,
- 0.989836752414703,-0.058334656059742,0.129693627357483,0.0886362046003342,0.156725227832794,-0.983656883239746,0.0886362046003342,0.156725227832794,-0.983656883239746,0.0167711600661278,-0.158015891909599,-0.987294137477875,0.14335523545742,0.0763906612992287,-0.986718714237213,0.961967587471008,0.267874330282211,0.0534956306219101,0.993671178817749,0.0500775091350079,0.100548140704632,0.674909770488739,-0.00306931184604764,-0.73789393901825,0.14476090669632,0.0343399383127689,-0.988870680332184,0.934168577194214,-0.011151353828609,-0.356657922267914,0.961967587471008,0.267874330282211,0.0534956306219101,0.674909770488739,-0.00306931184604764,-0.73789393901825,-0.0267312210053205,-0.00376751087605953,-0.999635577201843,-0.868057906627655,0.438393145799637,-0.232995450496674,0.0122513342648745,-0.197860270738602,-0.980153679847717,-0.00111595739144832,0.0781719535589218,-0.996939361095428,-0.957599997520447,-0.198560580611229,-0.208748951554298,-0.98344087600708,-0.0629305243492126,-0.169952660799026,0.019638329744339,0.0387714467942715,-0.999055147171021,0.979974448680878,-0.0619466565549374,0.189242497086525,-0.110290065407753,-0.227137237787247,0.967597484588623,0.847247719764709,-0.474379897117615,0.23902939260006,-0.934673547744751,0.275430202484131,-0.224774464964867,0.0427469424903393,0.00682924641296268,-0.999062597751617,0.0122513342648745,-0.197860270738602,-0.980153679847717,0.0122513342648745,-0.197860270738602,-0.980153679847717,-0.868057906627655,0.438393145799637,-0.232995450496674,-0.934673547744751,0.275430202484131,-0.224774464964867,-0.262199133634567,0.122489683330059,-0.957208395004272,0.080796904861927,0.0621142610907555,-0.994793295860291,-0.00437540980055928,0.0623866096138954,-0.998042464256287,0.958174347877502,-0.261188298463821,0.116972304880619,0.847247719764709,-0.474379897117615,0.23902939260006,0.918615520000458,-0.390634328126907,0.0595855973660946,0.979974448680878,-0.0619466565549374,0.189242497086525,0.847247719764709,-0.474379897117615,0.23902939260006,0.958174347877502,-0.261188298463821,0.116972304880619,
- -0.91488242149353,0.365439057350159,-0.171593844890594,-0.347933679819107,0.102734573185444,-0.931873261928558,-0.931487500667572,0.229867696762085,-0.281943023204803,-0.347933679819107,0.102734573185444,-0.931873261928558,0.0438193045556545,-0.0988253951072693,-0.994139552116394,0.0231731235980988,-0.0693639665842056,-0.997322261333466,0.878121972084045,0.474338680505753,0.0624876618385315,0.120288915932179,-0.0254378579556942,-0.992412984371185,0.0886362046003342,0.156725227832794,-0.983656883239746,-0.244939506053925,-0.0362867414951324,0.968859136104584,-0.123469017446041,-0.0750090107321739,0.989509582519531,-0.207960903644562,0.0758584886789322,0.975191235542297,-0.91488242149353,0.365439057350159,-0.171593844890594,0.0438193045556545,-0.0988253951072693,-0.994139552116394,-0.347933679819107,0.102734573185444,-0.931873261928558,0.0910437479615211,0.100536711513996,-0.990759015083313,0.14476090669632,0.0343399383127689,-0.988870680332184,0.080796904861927,0.0621142610907555,-0.994793295860291,-0.262199133634567,0.122489683330059,-0.957208395004272,0.0910437479615211,0.100536711513996,-0.990759015083313,0.080796904861927,0.0621142610907555,-0.994793295860291,0.879879653453827,-0.451687693595886,0.147614508867264,0.425310671329498,-0.0765185356140137,0.901806950569153,-0.128463625907898,0.0191587172448635,0.991529226303101,-0.128463625907898,0.0191587172448635,0.991529226303101,0.425310671329498,-0.0765185356140137,0.901806950569153,-0.165149480104446,0.00305750174447894,0.986263871192932,0.0730228573083878,-0.0183113627135754,-0.997162222862244,-0.985684931278229,-0.0244568884372711,-0.166814997792244,0.0616001971065998,-0.100461132824421,-0.993032276630402,-0.985684931278229,-0.0244568884372711,-0.166814997792244,0.0167711600661278,-0.158015891909599,-0.987294137477875,0.0616001971065998,-0.100461132824421,-0.993032276630402,-0.874289214611053,0.442057967185974,-0.200507044792175,-0.776606440544128,-0.575415968894959,-0.256474167108536,-0.994515478610992,-0.0510327890515327,-0.0912947133183479,-0.931487500667572,0.229867696762085,-0.281943023204803,
- -0.982568144798279,0.17603200674057,0.0597713366150856,-0.991272985935211,0.0787329375743866,-0.105731055140495,-0.185306906700134,0.0374193303287029,0.98196804523468,-0.582690954208374,-0.442840814590454,0.681442081928253,-0.132410168647766,-0.0367992296814919,0.990511775016785,-0.983835458755493,-0.138957962393761,-0.112953156232834,-0.167090460658073,-0.0407947301864624,0.985097348690033,-0.165149480104446,0.00305750174447894,0.986263871192932,-0.983835458755493,-0.138957962393761,-0.112953156232834,-0.165149480104446,0.00305750174447894,0.986263871192932,-0.169435977935791,-0.110489070415497,0.979328215122223,0.88256561756134,0.450083523988724,0.136024758219719,0.425310671329498,-0.0765185356140137,0.901806950569153,0.988941013813019,0.112120494246483,0.0970817729830742,-0.582690954208374,-0.442840814590454,0.681442081928253,-0.185306906700134,0.0374193303287029,0.98196804523468,-0.884906232357025,-0.458875507116318,-0.0798386558890343,0.934168577194214,-0.011151353828609,-0.356657922267914,0.14476090669632,0.0343399383127689,-0.988870680332184,0.142465382814407,0.202609077095985,-0.968841135501862,0.989654660224915,-0.123295687139034,0.0733619183301926,0.707943201065063,-0.250107258558273,-0.660501897335052,0.123496919870377,0.111344955861568,-0.986078500747681,0.992066204547882,-0.0761362463235855,0.100040450692177,0.958174347877502,-0.261188298463821,0.116972304880619,0.918615520000458,-0.390634328126907,0.0595855973660946,-0.984285295009613,0.0159364864230156,-0.175864905118942,-0.986616432666779,-0.0258919186890125,-0.160989612340927,0.0427469424903393,0.00682924641296268,-0.999062597751617,-0.934673547744751,0.275430202484131,-0.224774464964867,-0.984285295009613,0.0159364864230156,-0.175864905118942,0.0427469424903393,0.00682924641296268,-0.999062597751617,0.425310671329498,-0.0765185356140137,0.901806950569153,-0.169435977935791,-0.110489070415497,0.979328215122223,-0.165149480104446,0.00305750174447894,0.986263871192932,0.707943201065063,-0.250107258558273,-0.660501897335052,-0.347933679819107,0.102734573185444,-0.931873261928558,
- 0.0231731235980988,-0.0693639665842056,-0.997322261333466,0.707943201065063,-0.250107258558273,-0.660501897335052,0.0231731235980988,-0.0693639665842056,-0.997322261333466,0.123496919870377,0.111344955861568,-0.986078500747681,0.972926139831543,-0.174431785941124,0.151619017124176,-0.327466815710068,0.274545818567276,0.904096364974976,-0.14828334748745,0.0589398965239525,0.987187027931213,0.988941013813019,0.112120494246483,0.0970817729830742,0.879879653453827,-0.451687693595886,0.147614508867264,0.961967587471008,0.267874330282211,0.0534956306219101,0.974525094032288,-0.21310843527317,0.0698982253670692,0.934168577194214,-0.011151353828609,-0.356657922267914,0.142465382814407,0.202609077095985,-0.968841135501862,0.878121972084045,0.474338680505753,0.0624876618385315,0.995493054389954,-0.0239997673779726,0.0917475894093513,0.125918239355087,-0.010338356718421,-0.991986811161041,0.120288915932179,-0.0254378579556942,-0.992412984371185,0.972926139831543,-0.174431785941124,0.151619017124176,0.990027487277985,0.0276047587394714,0.138143241405487,-0.327466815710068,0.274545818567276,0.904096364974976,0.936090290546417,-0.319375276565552,0.147425785660744,0.989368259906769,0.00563347758725286,0.145323008298874,0.994450628757477,0.0240710731595755,0.102413728833199,0.955365240573883,0.277505695819855,0.101330935955048,0.973374664783478,-0.178360968828201,0.143976330757141,0.973374664783478,-0.178360968828201,0.143976330757141,0.967465877532959,-0.189001321792603,-0.168191000819206,0.676331996917725,-0.420490354299545,0.604783475399017,0.936090290546417,-0.319375276565552,0.147425785660744,-0.993776857852936,0.0701532661914825,-0.0865229219198227,-0.978866517543793,-0.0250204391777515,-0.202963829040527,-0.977695643901825,-0.0907741338014603,-0.189397588372231,-0.927974343299866,0.366330415010452,-0.0683055520057678,-0.157702833414078,-0.15629780292511,-0.975038945674896,0.00708738528192043,0.110633611679077,-0.993836045265198,-0.977695643901825,-0.0907741338014603,-0.189397588372231,-0.978866517543793,-0.0250204391777515,-0.202963829040527,
- -0.885035991668701,0.0829207003116608,-0.45807808637619,-0.985453009605408,-0.0445093289017677,-0.164016783237457,0.065106101334095,-0.0494091138243675,-0.996654450893402,0.0167711600661278,-0.158015891909599,-0.987294137477875,-0.885035991668701,0.0829207003116608,-0.45807808637619,0.065106101334095,-0.0494091138243675,-0.996654450893402,-0.985684931278229,-0.0244568884372711,-0.166814997792244,-0.988018691539764,-0.138731926679611,-0.0676209926605225,-0.879960179328918,-0.436965018510818,-0.186364740133286,-0.994515478610992,-0.0510327890515327,-0.0912947133183479,-0.996674358844757,0.0441677831113338,-0.0684797316789627,-0.98864221572876,0.0513117089867592,-0.14125794172287,-0.874289214611053,0.442057967185974,-0.200507044792175,-0.776606440544128,-0.575415968894959,-0.256474167108536,-0.812794089317322,-0.577410340309143,0.0772209167480469,-0.994515478610992,-0.0510327890515327,-0.0912947133183479,-0.786595046520233,-0.585294246673584,-0.196720331907272,-0.812794089317322,-0.577410340309143,0.0772209167480469,-0.776606440544128,-0.575415968894959,-0.256474167108536,-0.745223104953766,-0.663613021373749,-0.0652710497379303,-0.207960903644562,0.0758584886789322,0.975191235542297,-0.211442247033119,0.0100450422614813,0.977338850498199,-0.993516862392426,0.0246684662997723,-0.110976696014404,-0.244939506053925,-0.0362867414951324,0.968859136104584,-0.207960903644562,0.0758584886789322,0.975191235542297,-0.745223104953766,-0.663613021373749,-0.0652710497379303,-0.244939506053925,-0.0362867414951324,0.968859136104584,-0.745223104953766,-0.663613021373749,-0.0652710497379303,-0.891150534152985,0.423595368862152,-0.162535563111305,-0.891150534152985,0.423595368862152,-0.162535563111305,-0.23044915497303,-0.189912110567093,0.954372346401215,-0.244939506053925,-0.0362867414951324,0.968859136104584,-0.218641996383667,-0.0259893611073494,0.975459039211273,-0.993442237377167,-0.000392440590076149,-0.114334352314472,-0.754236459732056,-0.654972612857819,-0.0462420061230659,-0.237190008163452,0.0822790563106537,0.967972695827484,
- 0.989654660224915,-0.123295687139034,0.0733619183301926,0.981263041496277,0.115998595952988,0.153841808438301,0.826153993606567,0.0424211658537388,0.561845362186432,-0.0977372825145721,-0.146034866571426,0.984439611434937,0.826153993606567,0.0424211658537388,0.561845362186432,0.981263041496277,0.115998595952988,0.153841808438301,-0.149610504508018,-0.00860992632806301,0.988707542419434,-0.185306906700134,0.0374193303287029,0.98196804523468,-0.132410168647766,-0.0367992296814919,0.990511775016785,-0.132410168647766,-0.0367992296814919,0.990511775016785,-0.0977372825145721,-0.146034866571426,0.984439611434937,-0.149610504508018,-0.00860992632806301,0.988707542419434,-0.262199133634567,0.122489683330059,-0.957208395004272,-0.535786390304565,-0.307277470827103,-0.786456286907196,-0.508112907409668,-0.185250610113144,-0.841132283210754,-0.262199133634567,0.122489683330059,-0.957208395004272,-0.905277132987976,-0.39303657412529,-0.161231681704521,-0.535786390304565,-0.307277470827103,-0.786456286907196,-0.986616432666779,-0.0258919186890125,-0.160989612340927,-0.905277132987976,-0.39303657412529,-0.161231681704521,-0.00437540980055928,0.0623866096138954,-0.998042464256287,-0.879960179328918,-0.436965018510818,-0.186364740133286,-0.885035991668701,0.0829207003116608,-0.45807808637619,0.0167711600661278,-0.158015891909599,-0.987294137477875,-0.985684931278229,-0.0244568884372711,-0.166814997792244,-0.879960179328918,-0.436965018510818,-0.186364740133286,0.0167711600661278,-0.158015891909599,-0.987294137477875,-0.98864221572876,0.0513117089867592,-0.14125794172287,-0.985684931278229,-0.0244568884372711,-0.166814997792244,0.0730228573083878,-0.0183113627135754,-0.997162222862244,-0.00897966884076595,-0.163187846541405,-0.986554205417633,-0.98864221572876,0.0513117089867592,-0.14125794172287,0.0730228573083878,-0.0183113627135754,-0.997162222862244,0.553189992904663,-0.0197082459926605,0.83282196521759,-0.110290065407753,-0.227137237787247,0.967597484588623,-0.0878245979547501,-0.249134063720703,0.964478731155396,-0.0819082334637642,0.263535439968109,0.961166083812714,
- 0.553189992904663,-0.0197082459926605,0.83282196521759,-0.0878245979547501,-0.249134063720703,0.964478731155396,-0.0629219934344292,0.0363764949142933,0.997355341911316,-0.143801748752594,-0.0170171186327934,0.989460229873657,-0.218641996383667,-0.0259893611073494,0.975459039211273,-0.237190008163452,0.0822790563106537,0.967972695827484,-0.112384334206581,-0.362985551357269,0.924992561340332,0.990027487277985,0.0276047587394714,0.138143241405487,0.989836752414703,-0.058334656059742,0.129693627357483,0.971744358539581,-0.220501601696014,0.0842137858271599,0.972926139831543,-0.174431785941124,0.151619017124176,0.989836752414703,-0.058334656059742,0.129693627357483,0.990027487277985,0.0276047587394714,0.138143241405487,0.972926139831543,-0.174431785941124,0.151619017124176,0.878121972084045,0.474338680505753,0.0624876618385315,0.989836752414703,-0.058334656059742,0.129693627357483,-0.977984488010406,0.197478547692299,-0.0674440264701843,-0.984054565429688,-0.167868047952652,-0.0587965548038483,-0.216908469796181,0.0100509654730558,0.976140260696411,-0.23044915497303,-0.189912110567093,0.954372346401215,-0.114440836012363,0.106059767305851,0.987752377986908,-0.124113216996193,0.0223216321319342,0.992016971111298,0.989368259906769,0.00563347758725286,0.145323008298874,0.936090290546417,-0.319375276565552,0.147425785660744,-0.207960903644562,0.0758584886789322,0.975191235542297,-0.122363463044167,-0.0207394286990166,0.992268681526184,-0.124113216996193,0.0223216321319342,0.992016971111298,-0.211442247033119,0.0100450422614813,0.977338850498199,0.148645803332329,-0.0953346341848373,-0.984284400939941,0.128486201167107,-0.0162764079868793,-0.991577804088593,0.0768362805247307,-0.00583218643441796,-0.997026741504669,0.00708738528192043,0.110633611679077,-0.993836045265198,0.994450628757477,0.0240710731595755,0.102413728833199,0.971744358539581,-0.220501601696014,0.0842137858271599,0.14335523545742,0.0763906612992287,-0.986718714237213,0.128486201167107,-0.0162764079868793,-0.991577804088593,-0.985453009605408,-0.0445093289017677,-0.164016783237457,
- 0.0768362805247307,-0.00583218643441796,-0.997026741504669,0.065106101334095,-0.0494091138243675,-0.996654450893402,0.989368259906769,0.00563347758725286,0.145323008298874,0.889117121696472,0.433569729328156,0.146588280797005,0.971744358539581,-0.220501601696014,0.0842137858271599,0.994450628757477,0.0240710731595755,0.102413728833199,0.88256561756134,0.450083523988724,0.136024758219719,0.974525094032288,-0.21310843527317,0.0698982253670692,0.995493054389954,-0.0239997673779726,0.0917475894093513,0.988168179988861,0.0257567018270493,0.151196137070656,-0.142039716243744,-0.0152220390737057,0.989743947982788,-0.216908469796181,0.0100509654730558,0.976140260696411,-0.169435977935791,-0.110489070415497,0.979328215122223,-0.112602643668652,-0.0926174074411392,0.989314317703247,0.88256561756134,0.450083523988724,0.136024758219719,0.988168179988861,0.0257567018270493,0.151196137070656,-0.142039716243744,-0.0152220390737057,0.989743947982788,-0.112602643668652,-0.0926174074411392,0.989314317703247,0.125918239355087,-0.010338356718421,-0.991986811161041,0.995493054389954,-0.0239997673779726,0.0917475894093513,0.974525094032288,-0.21310843527317,0.0698982253670692,0.142465382814407,0.202609077095985,-0.968841135501862,-0.216908469796181,0.0100509654730558,0.976140260696411,-0.984054565429688,-0.167868047952652,-0.0587965548038483,-0.169435977935791,-0.110489070415497,0.979328215122223,0.0420210361480713,-0.005656857509166,-0.999100685119629,0.144292116165161,-0.0186951253563166,-0.989358484745026,0.115628898143768,0.112003766000271,-0.986957550048828,-0.989933252334595,0.0473952703177929,-0.133364021778107,-0.786595046520233,-0.585294246673584,-0.196720331907272,-0.905277132987976,-0.39303657412529,-0.161231681704521,0.879879653453827,-0.451687693595886,0.147614508867264,0.987355470657349,0.026425089687109,0.156303763389587,0.993671178817749,0.0500775091350079,0.100548140704632,0.961967587471008,0.267874330282211,0.0534956306219101,-0.194778010249138,-0.0222680307924747,0.980594575405121,-0.992810189723969,-0.0924536809325218,-0.0760284960269928,
- -0.83417934179306,-0.551451325416565,0.00681727193295956,-0.203994244337082,0.0239549931138754,0.978679060935974,0.993671178817749,0.0500775091350079,0.100548140704632,0.992066204547882,-0.0761362463235855,0.100040450692177,0.696612417697906,0.0528155863285065,-0.715501010417938,0.144292116165161,-0.0186951253563166,-0.989358484745026,0.970552742481232,-0.219718679785728,0.098748080432415,0.939535319805145,-0.302879005670547,0.15980526804924,0.987238585948944,-0.0434535965323448,0.153205618262291,0.994233667850494,-0.0418235138058662,0.0987437963485718,0.0438193045556545,-0.0988253951072693,-0.994139552116394,0.123496919870377,0.111344955861568,-0.986078500747681,0.0231731235980988,-0.0693639665842056,-0.997322261333466,-0.983877658843994,0.0150590548291802,-0.178207695484161,-0.922316312789917,0.339959979057312,-0.183738902211189,-0.977739691734314,0.133260756731033,-0.1620704382658,-0.991848409175873,0.0244238898158073,-0.125060945749283,-0.992006242275238,0.0541420951485634,-0.113983765244484,0.987238585948944,-0.0434535965323448,0.153205618262291,-0.143801748752594,-0.0170171186327934,0.989460229873657,-0.112384334206581,-0.362985551357269,0.924992561340332,0.985863566398621,0.0496858768165112,0.160013943910599,0.994233667850494,-0.0418235138058662,0.0987437963485718,0.97379744052887,-0.219134137034416,0.0608180798590183,0.115277752280235,0.117770351469517,-0.986327230930328,0.117528699338436,-0.0127945775166154,-0.992987155914307,0.0441345758736134,-0.0200697109103203,-0.998824000358582,-0.977049827575684,-0.0884649530053139,-0.193772315979004,-0.868057906627655,0.438393145799637,-0.232995450496674,-0.0267312210053205,-0.00376751087605953,-0.999635577201843,-0.220773667097092,-0.0646521151065826,0.973179876804352,-0.863224148750305,0.495707988739014,-0.0954868122935295,-0.993442237377167,-0.000392440590076149,-0.114334352314472,-0.218641996383667,-0.0259893611073494,0.975459039211273,-0.0629219934344292,0.0363764949142933,0.997355341911316,-0.289999127388,-0.070356160402298,0.95443731546402,-0.220773667097092,-0.0646521151065826,0.973179876804352,
- -0.0819082334637642,0.263535439968109,0.961166083812714,0.0616001971065998,-0.100461132824421,-0.993032276630402,0.120288915932179,-0.0254378579556942,-0.992412984371185,0.125918239355087,-0.010338356718421,-0.991986811161041,0.0730228573083878,-0.0183113627135754,-0.997162222862244,-0.994515478610992,-0.0510327890515327,-0.0912947133183479,-0.812794089317322,-0.577410340309143,0.0772209167480469,-0.996674358844757,0.0441677831113338,-0.0684797316789627,-0.989933252334595,0.0473952703177929,-0.133364021778107,-0.905277132987976,-0.39303657412529,-0.161231681704521,-0.986616432666779,-0.0258919186890125,-0.160989612340927,-0.997066199779511,0.00508221052587032,-0.0763763338327408,-0.197331592440605,-0.00202785944566131,0.9803346991539,-0.995381593704224,-0.0224952567368746,-0.0933248102664948,-0.915296494960785,0.39750549197197,-0.0649744942784309,-0.00437540980055928,0.0623866096138954,-0.998042464256287,-0.905277132987976,-0.39303657412529,-0.161231681704521,-0.262199133634567,0.122489683330059,-0.957208395004272,0.120288915932179,-0.0254378579556942,-0.992412984371185,0.0167711600661278,-0.158015891909599,-0.987294137477875,0.0886362046003342,0.156725227832794,-0.983656883239746,-0.244939506053925,-0.0362867414951324,0.968859136104584,-0.23044915497303,-0.189912110567093,0.954372346401215,-0.14828334748745,0.0589398965239525,0.987187027931213,-0.123469017446041,-0.0750090107321739,0.989509582519531,0.0386002883315086,0.00103767833206803,-0.999254286289215,0.117528699338436,-0.0127945775166154,-0.992987155914307,0.115277752280235,0.117770351469517,-0.986327230930328,0.00589185673743486,-0.110947772860527,-0.99380886554718,-0.445204496383667,-0.25764125585556,-0.857562839984894,-0.911093652248383,-0.00680015981197357,-0.412143468856812,-0.922316312789917,0.339959979057312,-0.183738902211189,0.00589185673743486,-0.110947772860527,-0.99380886554718,-0.427829414606094,0.101940758526325,0.89809250831604,-0.983324229717255,0.0997635573148727,-0.152055457234383,-0.687814056873322,0.72587913274765,-0.00337158190086484,-0.186074376106262,-0.0446008183062077,0.981522858142853,
- -0.989234447479248,0.0037083993665874,-0.146292582154274,-0.911093652248383,-0.00680015981197357,-0.412143468856812,-0.98344087600708,-0.0629305243492126,-0.169952660799026,-0.993285536766052,-0.00996868964284658,-0.115258723497391,-0.445204496383667,-0.25764125585556,-0.857562839984894,0.887591242790222,0.109273068606853,-0.447483360767365,0.019638329744339,0.0387714467942715,-0.999055147171021,0.97379744052887,-0.219134137034416,0.0608180798590183,0.985863566398621,0.0496858768165112,0.160013943910599,0.921515464782715,-0.382771104574203,-0.0655423030257225,0.887591242790222,0.109273068606853,-0.447483360767365,-0.237190008163452,0.0822790563106537,0.967972695827484,-0.754236459732056,-0.654972612857819,-0.0462420061230659,-0.983324229717255,0.0997635573148727,-0.152055457234383,-0.427829414606094,0.101940758526325,0.89809250831604,-0.158482551574707,-0.0473378039896488,0.986226379871368,-0.237190008163452,0.0822790563106537,0.967972695827484,-0.427829414606094,0.101940758526325,0.89809250831604,-0.911093652248383,-0.00680015981197357,-0.412143468856812,-0.977739691734314,0.133260756731033,-0.1620704382658,-0.922316312789917,0.339959979057312,-0.183738902211189,0.921515464782715,-0.382771104574203,-0.0655423030257225,-0.112384334206581,-0.362985551357269,0.924992561340332,0.69080126285553,-0.443870007991791,0.570765256881714,0.115277752280235,0.117770351469517,-0.986327230930328,0.97379744052887,-0.219134137034416,0.0608180798590183,0.887591242790222,0.109273068606853,-0.447483360767365,-0.445204496383667,-0.25764125585556,-0.857562839984894,0.0545070059597492,-0.0426273830235004,-0.997603178024292,0.115277752280235,0.117770351469517,-0.986327230930328,0.887591242790222,0.109273068606853,-0.447483360767365,0.00589185673743486,-0.110947772860527,-0.99380886554718,-0.922316312789917,0.339959979057312,-0.183738902211189,-0.983877658843994,0.0150590548291802,-0.178207695484161,0.0386002883315086,0.00103767833206803,-0.999254286289215,0.019638329744339,0.0387714467942715,-0.999055147171021,-0.98344087600708,-0.0629305243492126,-0.169952660799026,
- -0.911093652248383,-0.00680015981197357,-0.412143468856812,-0.445204496383667,-0.25764125585556,-0.857562839984894,-0.17971259355545,0.00910610891878605,0.98367702960968,-0.993477702140808,0.0460069328546524,-0.104333534836769,-0.884906232357025,-0.458875507116318,-0.0798386558890343,-0.185306906700134,0.0374193303287029,0.98196804523468,-0.992594182491302,-0.0554497912526131,-0.108083449304104,-0.986232161521912,-0.0300711616873741,-0.162609606981277,-0.91488242149353,0.365439057350159,-0.171593844890594,-0.991272985935211,0.0787329375743866,-0.105731055140495,0.131592392921448,-0.0145929623395205,-0.991196513175964,0.995981693267822,0.00066936737857759,0.0895545110106468,0.989654660224915,-0.123295687139034,0.0733619183301926,0.123496919870377,0.111344955861568,-0.986078500747681,0.0625142455101013,0.0203015543520451,-0.997837603092194,0.131592392921448,-0.0145929623395205,-0.991196513175964,0.123496919870377,0.111344955861568,-0.986078500747681,0.0438193045556545,-0.0988253951072693,-0.994139552116394,-0.0819082334637642,0.263535439968109,0.961166083812714,-0.220773667097092,-0.0646521151065826,0.973179876804352,-0.218641996383667,-0.0259893611073494,0.975459039211273,-0.143801748752594,-0.0170171186327934,0.989460229873657,-0.158482551574707,-0.0473378039896488,0.986226379871368,-0.427829414606094,0.101940758526325,0.89809250831604,-0.186074376106262,-0.0446008183062077,0.981522858142853,-0.103669375181198,-0.00184328621253371,0.994610130786896,-0.17971259355545,0.00910610891878605,0.98367702960968,-0.185306906700134,0.0374193303287029,0.98196804523468,-0.149610504508018,-0.00860992632806301,0.988707542419434,-0.0977372825145721,-0.146034866571426,0.984439611434937,0.987023651599884,-0.0467140264809132,0.153630435466766,-0.103669375181198,-0.00184328621253371,0.994610130786896,-0.0977372825145721,-0.146034866571426,0.984439611434937,0.981263041496277,0.115998595952988,0.153841808438301,0.897559344768524,-0.410152614116669,0.161746919155121,0.991929531097412,0.0403070747852325,0.120213501155376,0.921515464782715,-0.382771104574203,-0.0655423030257225,
- 0.887591242790222,0.109273068606853,-0.447483360767365,0.991929531097412,0.0403070747852325,0.120213501155376,0.925349652767181,0.371326684951782,0.0764495134353638,0.921515464782715,-0.382771104574203,-0.0655423030257225,0.69080126285553,-0.443870007991791,0.570765256881714,0.0436125323176384,0.070375569164753,0.996566772460938,-0.91488242149353,0.365439057350159,-0.171593844890594,-0.986232161521912,-0.0300711616873741,-0.162609606981277,0.0625142455101013,0.0203015543520451,-0.997837603092194,0.0438193045556545,-0.0988253951072693,-0.994139552116394,0.00589185673743486,-0.110947772860527,-0.99380886554718,0.0545070059597492,-0.0426273830235004,-0.997603178024292,-0.445204496383667,-0.25764125585556,-0.857562839984894,-0.991848409175873,0.0244238898158073,-0.125060945749283,-0.977739691734314,0.133260756731033,-0.1620704382658,-0.911093652248383,-0.00680015981197357,-0.412143468856812,-0.989234447479248,0.0037083993665874,-0.146292582154274,0.00589185673743486,-0.110947772860527,-0.99380886554718,0.115277752280235,0.117770351469517,-0.986327230930328,0.0545070059597492,-0.0426273830235004,-0.997603178024292,0.921515464782715,-0.382771104574203,-0.0655423030257225,0.0436125323176384,0.070375569164753,0.996566772460938,-0.0649117678403854,0.121154651045799,0.99050897359848,0.897559344768524,-0.410152614116669,0.161746919155121,-0.112384334206581,-0.362985551357269,0.924992561340332,-0.158482551574707,-0.0473378039896488,0.986226379871368,0.69080126285553,-0.443870007991791,0.570765256881714,0.887591242790222,0.109273068606853,-0.447483360767365,0.921515464782715,-0.382771104574203,-0.0655423030257225,0.991929531097412,0.0403070747852325,0.120213501155376,0.995981693267822,0.00066936737857759,0.0895545110106468,0.987023651599884,-0.0467140264809132,0.153630435466766,0.981263041496277,0.115998595952988,0.153841808438301,0.989654660224915,-0.123295687139034,0.0733619183301926,-0.112384334206581,-0.362985551357269,0.924992561340332,-0.237190008163452,0.0822790563106537,0.967972695827484,-0.158482551574707,-0.0473378039896488,0.986226379871368,
- -0.158482551574707,-0.0473378039896488,0.986226379871368,-0.186074376106262,-0.0446008183062077,0.981522858142853,0.0436125323176384,0.070375569164753,0.996566772460938,-0.158482551574707,-0.0473378039896488,0.986226379871368,0.0436125323176384,0.070375569164753,0.996566772460938,0.69080126285553,-0.443870007991791,0.570765256881714,0.985863566398621,0.0496858768165112,0.160013943910599,-0.112384334206581,-0.362985551357269,0.924992561340332,0.921515464782715,-0.382771104574203,-0.0655423030257225,0.019638329744339,0.0387714467942715,-0.999055147171021,0.887591242790222,0.109273068606853,-0.447483360767365,0.141568660736084,-0.254662692546844,-0.956611335277557,0.141568660736084,-0.254662692546844,-0.956611335277557,0.925349652767181,0.371326684951782,0.0764495134353638,0.995981693267822,0.00066936737857759,0.0895545110106468,0.131592392921448,-0.0145929623395205,-0.991196513175964,0.925349652767181,0.371326684951782,0.0764495134353638,0.991929531097412,0.0403070747852325,0.120213501155376,0.897559344768524,-0.410152614116669,0.161746919155121,0.987023651599884,-0.0467140264809132,0.153630435466766,0.995981693267822,0.00066936737857759,0.0895545110106468,0.897559344768524,-0.410152614116669,0.161746919155121,-0.0649117678403854,0.121154651045799,0.99050897359848,-0.103669375181198,-0.00184328621253371,0.994610130786896,0.987023651599884,-0.0467140264809132,0.153630435466766,-0.186074376106262,-0.0446008183062077,0.981522858142853,-0.0649117678403854,0.121154651045799,0.99050897359848,0.0436125323176384,0.070375569164753,0.996566772460938,-0.186074376106262,-0.0446008183062077,0.981522858142853,-0.687814056873322,0.72587913274765,-0.00337158190086484,-0.993477702140808,0.0460069328546524,-0.104333534836769,-0.17971259355545,0.00910610891878605,0.98367702960968,-0.993285536766052,-0.00996868964284658,-0.115258723497391,-0.98344087600708,-0.0629305243492126,-0.169952660799026,-0.957599997520447,-0.198560580611229,-0.208748951554298,-0.986232161521912,-0.0300711616873741,-0.162609606981277,-0.992594182491302,-0.0554497912526131,-0.108083449304104,
- 0.0625142455101013,0.0203015543520451,-0.997837603092194,-0.986232161521912,-0.0300711616873741,-0.162609606981277,-0.957599997520447,-0.198560580611229,-0.208748951554298,-0.00111595739144832,0.0781719535589218,-0.996939361095428,0.988063931465149,-0.0146648585796356,0.15334489941597,0.974322617053986,0.149121284484863,0.168695718050003,0.966104805469513,-0.251610398292542,0.057740293443203,0.997405111789703,0.00355471204966307,0.0719060152769089,-0.037148404866457,0.000779032299760729,-0.999309480190277,0.147124037146568,-0.241360828280449,-0.959218263626099,0.0519039370119572,0.0300114955753088,-0.998201012611389,-0.180415198206902,-0.607686519622803,0.773412823677063,-0.988069593906403,0.108683086931705,-0.109117113053799,-0.992831945419312,0.0169266685843468,-0.118314824998379,0.900376856327057,-0.407629519701004,0.152182966470718,0.988856434822083,0.132125437259674,0.068599097430706,0.832974076271057,-0.012219694443047,0.553177118301392,0.147124037146568,-0.241360828280449,-0.959218263626099,-0.037148404866457,0.000779032299760729,-0.999309480190277,0.312607795000076,0.000384698825655505,-0.949882209300995,0.593176305294037,0.0208607912063599,-0.804802358150482,0.832974076271057,-0.012219694443047,0.553177118301392,0.988856434822083,0.132125437259674,0.068599097430706,0.900376856327057,-0.407629519701004,0.152182966470718,-0.0759912729263306,0.282325267791748,0.956304252147675,-0.108484201133251,0.00851716287434101,0.994061768054962,0.988063931465149,-0.0146648585796356,0.15334489941597,0.900376856327057,-0.407629519701004,0.152182966470718,0.832974076271057,-0.012219694443047,0.553177118301392,0.465778678655624,-0.000570663250982761,0.884901106357574,-0.0759912729263306,0.282325267791748,0.956304252147675,0.593176305294037,0.0208607912063599,-0.804802358150482,0.147124037146568,-0.241360828280449,-0.959218263626099,0.312607795000076,0.000384698825655505,-0.949882209300995,-0.105228878557682,0.00332121620886028,0.994442522525787,-0.268728137016296,0.0170117504894733,0.963065922260284,-0.185842156410217,-0.0377381928265095,0.981854677200317,
- 0.147124037146568,-0.241360828280449,-0.959218263626099,0.988856434822083,0.132125437259674,0.068599097430706,0.997405111789703,0.00355471204966307,0.0719060152769089,0.144194453954697,0.00108039507176727,-0.989548802375793,0.988856434822083,0.132125437259674,0.068599097430706,0.147124037146568,-0.241360828280449,-0.959218263626099,0.593176305294037,0.0208607912063599,-0.804802358150482,-0.190192982554436,-0.0035644460003823,0.981740355491638,-0.992967367172241,0.0019862384069711,-0.118372082710266,-0.847862899303436,-0.526059210300446,-0.0662603676319122,-0.214297339320183,0.120999291539192,0.969245076179504,-0.0759912729263306,0.282325267791748,0.956304252147675,0.465778678655624,-0.000570663250982761,0.884901106357574,0.210761994123459,0.00583567470312119,0.977519989013672,0.210761994123459,0.00583567470312119,0.977519989013672,-0.105228878557682,0.00332121620886028,0.994442522525787,-0.0759912729263306,0.282325267791748,0.956304252147675,-0.108484201133251,0.00851716287434101,0.994061768054962,-0.190192982554436,-0.0035644460003823,0.981740355491638,-0.214297339320183,0.120999291539192,0.969245076179504,-0.118240058422089,-0.141579449176788,0.982840120792389,0.988856434822083,0.132125437259674,0.068599097430706,0.900376856327057,-0.407629519701004,0.152182966470718,0.988063931465149,-0.0146648585796356,0.15334489941597,0.997405111789703,0.00355471204966307,0.0719060152769089,-0.984993577003479,-0.0486780591309071,-0.165583893656731,-0.974501192569733,0.146422699093819,-0.17002335190773,-0.960626363754272,0.247906357049942,-0.125457063317299,-0.992831945419312,0.0169266685843468,-0.118314824998379,0.988063931465149,-0.0146648585796356,0.15334489941597,-0.108484201133251,0.00851716287434101,0.994061768054962,-0.118240058422089,-0.141579449176788,0.982840120792389,0.974322617053986,0.149121284484863,0.168695718050003,0.997405111789703,0.00355471204966307,0.0719060152769089,0.966104805469513,-0.251610398292542,0.057740293443203,0.146699666976929,0.127483159303665,-0.98093181848526,0.144194453954697,0.00108039507176727,-0.989548802375793,
- -0.984993577003479,-0.0486780591309071,-0.165583893656731,-0.756531953811646,-0.636943399906158,-0.148198068141937,0.0519039370119572,0.0300114955753088,-0.998201012611389,0.0615019649267197,-0.0210631489753723,-0.997884690761566,-0.185842156410217,-0.0377381928265095,0.981854677200317,-0.992967367172241,0.0019862384069711,-0.118372082710266,-0.190192982554436,-0.0035644460003823,0.981740355491638,-0.0759912729263306,0.282325267791748,0.956304252147675,-0.105228878557682,0.00332121620886028,0.994442522525787,-0.185842156410217,-0.0377381928265095,0.981854677200317,0.0615019649267197,-0.0210631489753723,-0.997884690761566,0.144194453954697,0.00108039507176727,-0.989548802375793,0.146699666976929,0.127483159303665,-0.98093181848526,0.0487532690167427,-0.469210028648376,-0.881739854812622,-0.157702833414078,-0.15629780292511,-0.975038945674896,-0.978866517543793,-0.0250204391777515,-0.202963829040527,0.0487532690167427,-0.469210028648376,-0.881739854812622,0.966104805469513,-0.251610398292542,0.057740293443203,0.974322617053986,0.149121284484863,0.168695718050003,0.676331996917725,-0.420490354299545,0.604783475399017,0.967465877532959,-0.189001321792603,-0.168191000819206,-0.214297339320183,0.120999291539192,0.969245076179504,-0.847862899303436,-0.526059210300446,-0.0662603676319122,-0.995381593704224,-0.0224952567368746,-0.0933248102664948,-0.127271518111229,0.290199160575867,0.948465406894684,0.0220290217548609,0.121625371277332,0.992331683635712,-0.214297339320183,0.120999291539192,0.969245076179504,-0.127271518111229,0.290199160575867,0.948465406894684,0.146699666976929,0.127483159303665,-0.98093181848526,0.966104805469513,-0.251610398292542,0.057740293443203,0.967465877532959,-0.189001321792603,-0.168191000819206,0.0870965719223022,-0.0935216844081879,-0.991800427436829,0.146699666976929,0.127483159303665,-0.98093181848526,0.967465877532959,-0.189001321792603,-0.168191000819206,0.0487532690167427,-0.469210028648376,-0.881739854812622,-0.974501192569733,0.146422699093819,-0.17002335190773,-0.984993577003479,-0.0486780591309071,-0.165583893656731,
- 0.0615019649267197,-0.0210631489753723,-0.997884690761566,-0.0759912729263306,0.282325267791748,0.956304252147675,-0.185842156410217,-0.0377381928265095,0.981854677200317,-0.190192982554436,-0.0035644460003823,0.981740355491638,-0.108484201133251,0.00851716287434101,0.994061768054962,0.0487532690167427,-0.469210028648376,-0.881739854812622,0.0870965719223022,-0.0935216844081879,-0.991800427436829,-0.157702833414078,-0.15629780292511,-0.975038945674896,-0.960626363754272,0.247906357049942,-0.125457063317299,-0.974501192569733,0.146422699093819,-0.17002335190773,-0.978866517543793,-0.0250204391777515,-0.202963829040527,-0.993776857852936,0.0701532661914825,-0.0865229219198227,0.0487532690167427,-0.469210028648376,-0.881739854812622,0.146699666976929,0.127483159303665,-0.98093181848526,0.0870965719223022,-0.0935216844081879,-0.991800427436829,0.0541766919195652,0.606605052947998,-0.793155252933502,0.229885965585709,0.300718814134598,0.925592005252838,-0.183315455913544,-0.871628999710083,0.454596906900406,-0.118240058422089,-0.141579449176788,0.982840120792389,-0.214297339320183,0.120999291539192,0.969245076179504,0.0220290217548609,0.121625371277332,0.992331683635712,0.974322617053986,0.149121284484863,0.168695718050003,-0.118240058422089,-0.141579449176788,0.982840120792389,0.676331996917725,-0.420490354299545,0.604783475399017,-0.988069593906403,0.108683086931705,-0.109117113053799,-0.756531953811646,-0.636943399906158,-0.148198068141937,-0.984993577003479,-0.0486780591309071,-0.165583893656731,-0.992831945419312,0.0169266685843468,-0.118314824998379,-0.133377268910408,-0.00492240861058235,0.991053104400635,-0.115056321024895,-0.035810362547636,0.992713332176209,-0.0942814350128174,-0.0219216514378786,0.99530428647995,-0.0879611521959305,-0.000761471164878458,0.996123611927032,-0.075578935444355,-0.000695670896675438,0.997139632701874,-0.0867992118000984,0.0204533245414495,0.996015906333923,-0.115003742277622,0.0182031895965338,0.993198335170746,-0.135987386107445,0.00221176026389003,0.990708112716675,-0.136560842394829,-0.000826965435408056,0.990631341934204,
- 0.0519039370119572,0.0300114955753088,-0.998201012611389,-0.756531953811646,-0.636943399906158,-0.148198068141937,-0.278741329908371,-0.0209835637360811,-0.960137009620667,-0.037148404866457,0.000779032299760729,-0.999309480190277,-0.914046764373779,-0.0113381203263998,-0.405450403690338,-0.988069593906403,0.108683086931705,-0.109117113053799,-0.180415198206902,-0.607686519622803,0.773412823677063,-0.914046764373779,-0.0113381203263998,-0.405450403690338,-0.278741329908371,-0.0209835637360811,-0.960137009620667,-0.756531953811646,-0.636943399906158,-0.148198068141937,-0.988069593906403,0.108683086931705,-0.109117113053799,-0.197331592440605,-0.00202785944566131,0.9803346991539,-0.127271518111229,0.290199160575867,0.948465406894684,-0.995381593704224,-0.0224952567368746,-0.0933248102664948,-0.112602643668652,-0.0926174074411392,0.989314317703247,-0.169435977935791,-0.110489070415497,0.979328215122223,0.425310671329498,-0.0765185356140137,0.901806950569153,-0.123469017446041,-0.0750090107321739,0.989509582519531,-0.327466815710068,0.274545818567276,0.904096364974976,-0.122363463044167,-0.0207394286990166,0.992268681526184,-0.207960903644562,0.0758584886789322,0.975191235542297,0.990027487277985,0.0276047587394714,0.138143241405487,0.889117121696472,0.433569729328156,0.146588280797005,-0.122363463044167,-0.0207394286990166,0.992268681526184,-0.327466815710068,0.274545818567276,0.904096364974976,0.971744358539581,-0.220501601696014,0.0842137858271599,0.889117121696472,0.433569729328156,0.146588280797005,0.990027487277985,0.0276047587394714,0.138143241405487,0.887591242790222,0.109273068606853,-0.447483360767365,0.925349652767181,0.371326684951782,0.0764495134353638,0.141568660736084,-0.254662692546844,-0.956611335277557,0.019638329744339,0.0387714467942715,-0.999055147171021,0.141568660736084,-0.254662692546844,-0.956611335277557,0.131592392921448,-0.0145929623395205,-0.991196513175964,0.0625142455101013,0.0203015543520451,-0.997837603092194,-0.00111595739144832,0.0781719535589218,-0.996939361095428,0.0616001971065998,-0.100461132824421,-0.993032276630402,
- 0.0167711600661278,-0.158015891909599,-0.987294137477875,0.120288915932179,-0.0254378579556942,-0.992412984371185,-0.98864221572876,0.0513117089867592,-0.14125794172287,-0.988018691539764,-0.138731926679611,-0.0676209926605225,-0.985684931278229,-0.0244568884372711,-0.166814997792244,0.0441345758736134,-0.0200697109103203,-0.998824000358582,0.104839146137238,-0.333988398313522,-0.936728656291962,0.117528699338436,-0.0127945775166154,-0.992987155914307,0.0386002883315086,0.00103767833206803,-0.999254286289215,-0.983877658843994,0.0150590548291802,-0.178207695484161,-0.977049827575684,-0.0884649530053139,-0.193772315979004,0.0441345758736134,-0.0200697109103203,-0.998824000358582,0.0386002883315086,0.00103767833206803,-0.999254286289215,-0.992006242275238,0.0541420951485634,-0.113983765244484,-0.975007116794586,0.191903367638588,-0.11195607483387,-0.977049827575684,-0.0884649530053139,-0.193772315979004,-0.983877658843994,0.0150590548291802,-0.178207695484161,-0.103669375181198,-0.00184328621253371,0.994610130786896,-0.0649117678403854,0.121154651045799,0.99050897359848,-0.186074376106262,-0.0446008183062077,0.981522858142853,-0.17971259355545,0.00910610891878605,0.98367702960968,0.0519039370119572,0.0300114955753088,-0.998201012611389,0.147124037146568,-0.241360828280449,-0.959218263626099,0.144194453954697,0.00108039507176727,-0.989548802375793,0.0615019649267197,-0.0210631489753723,-0.997884690761566,0.0910437479615211,0.100536711513996,-0.990759015083313,-0.00897966884076595,-0.163187846541405,-0.986554205417633,0.142465382814407,0.202609077095985,-0.968841135501862,0.0487532690167427,-0.469210028648376,-0.881739854812622,-0.978866517543793,-0.0250204391777515,-0.202963829040527,-0.974501192569733,0.146422699093819,-0.17002335190773,-0.399628758430481,-0.391361922025681,0.828934609889984,-0.289999127388,-0.070356160402298,0.95443731546402,-0.0629219934344292,0.0363764949142933,0.997355341911316,-0.0878245979547501,-0.249134063720703,0.964478731155396,-0.141222029924393,-0.00357463210821152,0.989971578121185,-0.117721326649189,0.0760685205459595,0.990128993988037,
- -0.286386787891388,-0.284288823604584,0.914965867996216,-0.099775105714798,-0.0497069284319878,0.993767738342285,-0.0133082680404186,-0.0446270629763603,0.998915076255798,0.202029094099998,-0.978842973709106,0.0324153900146484,-0.246990591287613,-0.968052268028259,0.0432493127882481,0.0468306466937065,-0.0406956635415554,0.998073577880859,0.0510623082518578,0.0484419837594032,-0.997519969940186,0.114689394831657,0.0426732487976551,-0.992484450340271,0.084896631538868,-0.0579913146793842,-0.994700789451599,-0.112580306828022,-0.0109766321256757,0.99358206987381,0.805949449539185,0.014324301853776,0.591811239719391,-0.115420550107956,-0.160886466503143,0.980200886726379,0.914961516857147,-0.376965701580048,0.144022434949875,0.920496761798859,-0.364958882331848,0.139609098434448,0.750963270664215,-0.660096108913422,0.0180963482707739,0.915892362594604,-0.392104655504227,0.0859956741333008,-0.0274556148797274,-0.00281389406882226,-0.999619126319885,-0.0177582800388336,-0.324441492557526,-0.945739090442657,0.026386171579361,-0.0161333065479994,-0.999521613121033,-0.696305155754089,0.717744886875153,0.00126303581055254,-0.704623818397522,0.700984835624695,-0.110116586089134,-0.910647451877594,0.412089288234711,0.0300634894520044,0.0798718109726906,0.0581443943083286,0.995107889175415,0.163449481129646,-0.0507466122508049,0.985245704650879,0.0479879342019558,0.00344844488427043,0.998842000961304,0.147785663604736,0.00849952269345522,-0.988982975482941,-0.171195939183235,0.306095212697983,-0.936481654644012,-0.173514053225517,0.0457385443150997,-0.983768701553345,0.187563389539719,0.98199987411499,-0.0222764350473881,0.0487993136048317,0.998535215854645,0.0233716908842325,0.241568833589554,0.969899117946625,0.0306637920439243,0.196301355957985,0.979766547679901,-0.0390311777591705,0.788188815116882,-0.592591047286987,0.166115581989288,0.779401481151581,-0.620100319385529,0.0894934386014938,0.647476494312286,-0.759899735450745,0.0576775409281254,0.604605257511139,-0.795514106750488,0.040122888982296,0.636850774288177,-0.765334248542786,0.093191958963871,
- -0.0251986403018236,0.0132830385118723,-0.999594271183014,-0.0552044548094273,-0.0370583720505238,-0.997787177562714,0.0756532251834869,-0.0663107857108116,-0.994926929473877,-0.0759246647357941,0.0314205624163151,-0.996618390083313,-0.108911372721195,-0.035497821867466,0.993417501449585,-0.505523324012756,0.861624240875244,-0.0452777221798897,-0.743761241436005,0.66843968629837,-0.00275672972202301,-0.18117581307888,-0.00979520473629236,-0.983402013778687,-0.0759246647357941,0.0314205624163151,-0.996618390083313,0.0756532251834869,-0.0663107857108116,-0.994926929473877,-0.00702022854238749,0.978364765644073,0.206768676638603,0.0399834997951984,0.982255220413208,0.183237627148628,-0.161298081278801,0.00859052035957575,0.986868441104889,-0.0188380312174559,-0.999067723751068,0.0388430207967758,0.189785286784172,-0.980841994285584,0.0439378432929516,0.173059821128845,-0.984656810760498,-0.0223902780562639,0.709667146205902,-0.703975379467011,-0.0281310360878706,0.114689394831657,0.0426732487976551,-0.992484450340271,0.079998180270195,-0.00419221865013242,-0.996786236763,0.084896631538868,-0.0579913146793842,-0.994700789451599,-0.0274556148797274,-0.00281389406882226,-0.999619126319885,-0.189494326710701,-0.14914046227932,-0.970489144325256,0.171935304999352,0.0684064850211143,-0.982730329036713,-0.913351714611053,0.391810029745102,-0.110785946249962,-0.976912260055542,0.213472172617912,-0.00850029196590185,-0.813742518424988,0.559117078781128,-0.158780738711357,-0.0579474717378616,-0.0412655211985111,0.997466444969177,-0.099775105714798,-0.0497069284319878,0.993767738342285,0.636850774288177,-0.765334248542786,0.093191958963871,0.21739387512207,-0.0097122872248292,-0.976035714149475,-0.127403393387794,0.0830860808491707,-0.98836487531662,-0.0194313582032919,0.00636544311419129,-0.999790966510773,0.0113403620198369,-0.040451604872942,-0.999117136001587,0.0510623082518578,0.0484419837594032,-0.997519969940186,0.139122769236565,0.0652118995785713,-0.988125681877136,0.114689394831657,0.0426732487976551,-0.992484450340271,
- 0.208487614989281,0.975710034370422,-0.067252479493618,-0.128199815750122,0.991305410861969,-0.0296383835375309,-0.127403393387794,0.0830860808491707,-0.98836487531662,-0.198728188872337,0.00381359085440636,-0.980047225952148,-0.185783997178078,-0.982569873332977,-0.00639608036726713,-0.0552044548094273,-0.0370583720505238,-0.997787177562714,-0.437144935131073,0.345322042703629,-0.830455839633942,-0.840377390384674,0.53219872713089,-0.102617837488651,-0.737886607646942,0.664383590221405,-0.118818290531635,0.017913069576025,-0.516517043113709,0.856089472770691,-0.177308812737465,0.501769065856934,-0.846634149551392,-0.7041055560112,0.337719410657883,-0.624644815921783,-0.158708155155182,0.986872673034668,-0.0299036204814911,-0.308569937944412,0.948998808860779,0.0646987184882164,-0.0695966556668282,0.99665379524231,0.0428668558597565,0.563235580921173,-0.425071001052856,-0.708576381206512,0.647476494312286,-0.759899735450745,0.0576775409281254,0.793150126934052,-0.608839452266693,0.0150816440582275,-0.982409954071045,0.0852840468287468,-0.166124746203423,-0.989262580871582,0.100306376814842,-0.106293775141239,-0.976912260055542,0.213472172617912,-0.00850029196590185,-0.913351714611053,0.391810029745102,-0.110785946249962,-0.134830340743065,-0.16125725209713,0.977658927440643,-0.11751214414835,-0.0643177852034569,0.990986466407776,-0.131740942597389,0.0730315446853638,0.98859030008316,0.187563389539719,0.98199987411499,-0.0222764350473881,-0.158708155155182,0.986872673034668,-0.0299036204814911,0.0487993136048317,0.998535215854645,0.0233716908842325,0.084896631538868,-0.0579913146793842,-0.994700789451599,0.079998180270195,-0.00419221865013242,-0.996786236763,0.211830675601959,-0.476394265890121,-0.85333251953125,-0.108911372721195,-0.035497821867466,0.993417501449585,-0.743761241436005,0.66843968629837,-0.00275672972202301,-0.141222029924393,-0.00357463210821152,0.989971578121185,-0.813742518424988,0.559117078781128,-0.158780738711357,-0.976912260055542,0.213472172617912,-0.00850029196590185,-0.910647451877594,0.412089288234711,0.0300634894520044,
- 0.0417710319161415,-0.99809193611145,-0.0454725548624992,0.544985949993134,-0.835902094841003,0.0652534067630768,0.0794366374611855,-0.995230257511139,-0.0566278323531151,0.675821900367737,-0.736868321895599,0.0170295257121325,0.267226338386536,-0.755590260028839,-0.59805816411972,0.0794366374611855,-0.995230257511139,-0.0566278323531151,-0.142875537276268,-0.0105382157489657,0.989684581756592,-0.134830340743065,-0.16125725209713,0.977658927440643,-0.131740942597389,0.0730315446853638,0.98859030008316,-0.142875537276268,-0.0105382157489657,0.989684581756592,-0.144150227308273,-0.195342063903809,0.970083713531494,-0.134830340743065,-0.16125725209713,0.977658927440643,-0.99553781747818,0.00412404863163829,-0.0942739695310593,-0.95263409614563,0.25014740228653,-0.172958344221115,-0.970649600028992,0.000912033021450043,-0.240496665239334,0.504665851593018,-0.231547608971596,-0.831683874130249,0.21739387512207,-0.0097122872248292,-0.976035714149475,0.079998180270195,-0.00419221865013242,-0.996786236763,0.0794366374611855,-0.995230257511139,-0.0566278323531151,0.267226338386536,-0.755590260028839,-0.59805816411972,0.0417710319161415,-0.99809193611145,-0.0454725548624992,-0.0963835120201111,-0.0290828086435795,0.99491935968399,-0.108911372721195,-0.035497821867466,0.993417501449585,-0.141222029924393,-0.00357463210821152,0.989971578121185,-0.099775105714798,-0.0497069284319878,0.993767738342285,-0.0579474717378616,-0.0412655211985111,0.997466444969177,0.636850774288177,-0.765334248542786,0.093191958963871,-0.099775105714798,-0.0497069284319878,0.993767738342285,-0.286386787891388,-0.284288823604584,0.914965867996216,0.788188815116882,-0.592591047286987,0.166115581989288,-0.286386787891388,-0.284288823604584,0.914965867996216,-0.136089935898781,-0.0049254591576755,0.99068421125412,-0.034523718059063,-0.0541144646704197,0.997937798500061,0.0512638315558434,-0.00853742472827435,0.998648703098297,-0.179410830140114,0.0417991615831852,0.982885897159576,-0.0476433932781219,0.0505193881690502,0.997586011886597,-0.0493750609457493,-0.0223954617977142,0.998529195785522,
- 0.827155768871307,-0.544145822525024,0.140423059463501,0.940185487270355,-0.329056531190872,0.088165320456028,0.944668114185333,-0.272165477275848,0.18310734629631,-0.354952126741409,-0.933890819549561,0.043092854321003,-0.177418604493141,-0.908211588859558,0.379044264554977,0.287256568670273,-0.120860271155834,0.950198113918304,0.0601044893264771,0.398075431585312,-0.915381610393524,-0.127403393387794,0.0830860808491707,-0.98836487531662,0.504665851593018,-0.231547608971596,-0.831683874130249,0.636850774288177,-0.765334248542786,0.093191958963871,-0.0296875834465027,-0.998931705951691,0.0354153402149677,-0.0579474717378616,-0.0412655211985111,0.997466444969177,0.00450284266844392,-0.439854711294174,0.898057699203491,-0.0296875834465027,-0.998931705951691,0.0354153402149677,0.0794366374611855,-0.995230257511139,-0.0566278323531151,-0.0177582800388336,-0.324441492557526,-0.945739090442657,-0.0274556148797274,-0.00281389406882226,-0.999619126319885,0.100620955228806,-0.362077116966248,-0.926701426506042,0.793150126934052,-0.608839452266693,0.0150816440582275,0.944668114185333,-0.272165477275848,0.18310734629631,0.940185487270355,-0.329056531190872,0.088165320456028,0.00450284266844392,-0.439854711294174,0.898057699203491,0.544985949993134,-0.835902094841003,0.0652534067630768,-0.180130124092102,-0.0713470429182053,0.981051921844482,0.827155768871307,-0.544145822525024,0.140423059463501,0.0287438556551933,0.192159026861191,0.980942845344543,-0.132729768753052,-0.0236839260905981,0.990869283676147,0.914961516857147,-0.376965701580048,0.144022434949875,0.827155768871307,-0.544145822525024,0.140423059463501,0.944668114185333,-0.272165477275848,0.18310734629631,0.673681616783142,0.0699637681245804,0.735702514648438,0.0287438556551933,0.192159026861191,0.980942845344543,0.944668114185333,-0.272165477275848,0.18310734629631,-0.286386787891388,-0.284288823604584,0.914965867996216,0.673681616783142,0.0699637681245804,0.735702514648438,0.187563389539719,0.98199987411499,-0.0222764350473881,0.196301355957985,0.979766547679901,-0.0390311777591705,
- 0.253672361373901,0.853662073612213,-0.454875111579895,0.187563389539719,0.98199987411499,-0.0222764350473881,0.253672361373901,0.853662073612213,-0.454875111579895,-0.158708155155182,0.986872673034668,-0.0299036204814911,-0.910647451877594,0.412089288234711,0.0300634894520044,-0.704623818397522,0.700984835624695,-0.110116586089134,-0.813742518424988,0.559117078781128,-0.158780738711357,0.171935304999352,0.0684064850211143,-0.982730329036713,-0.189494326710701,-0.14914046227932,-0.970489144325256,0.0336686335504055,0.0575910396873951,-0.997772455215454,0.0510623082518578,0.0484419837594032,-0.997519969940186,-0.307864099740982,-0.946799576282501,-0.0937566235661507,-0.185783997178078,-0.982569873332977,-0.00639608036726713,-0.198728188872337,0.00381359085440636,-0.980047225952148,-0.240656092762947,-0.970607459545136,-0.00245032296516001,-0.185783997178078,-0.982569873332977,-0.00639608036726713,-0.307864099740982,-0.946799576282501,-0.0937566235661507,0.0734163001179695,-0.0387922525405884,0.996546685695648,0.00462155463173985,0.00394424423575401,0.999981582164764,0.0512638315558434,-0.00853742472827435,0.998648703098297,0.189785286784172,-0.980841994285584,0.0439378432929516,-0.0188380312174559,-0.999067723751068,0.0388430207967758,0.0512638315558434,-0.00853742472827435,0.998648703098297,-0.0493750609457493,-0.0223954617977142,0.998529195785522,0.100620955228806,-0.362077116966248,-0.926701426506042,-0.0274556148797274,-0.00281389406882226,-0.999619126319885,0.171935304999352,0.0684064850211143,-0.982730329036713,0.793150126934052,-0.608839452266693,0.0150816440582275,0.171935304999352,0.0684064850211143,-0.982730329036713,0.563235580921173,-0.425071001052856,-0.708576381206512,-0.177418604493141,-0.908211588859558,0.379044264554977,0.0479879342019558,0.00344844488427043,0.998842000961304,0.163449481129646,-0.0507466122508049,0.985245704650879,0.287256568670273,-0.120860271155834,0.950198113918304,0.163449481129646,-0.0507466122508049,0.985245704650879,0.00790516380220652,0.0466538779437542,0.998879849910736,0.0622537657618523,0.0323287285864353,0.997536718845367,
- 0.0468306466937065,-0.0406956635415554,0.998073577880859,0.287256568670273,-0.120860271155834,0.950198113918304,-0.737886607646942,0.664383590221405,-0.118818290531635,-0.840377390384674,0.53219872713089,-0.102617837488651,-0.444642603397369,0.893083035945892,0.0685246288776398,-0.185783997178078,-0.982569873332977,-0.00639608036726713,-0.214737892150879,-0.976607322692871,-0.0112136118113995,-0.0552044548094273,-0.0370583720505238,-0.997787177562714,-0.136089935898781,-0.0049254591576755,0.99068421125412,-0.999948501586914,0.00833051837980747,0.00580513663589954,-0.986674249172211,0.162699863314629,-0.00163861364126205,-0.902017891407013,0.422209531068802,-0.0900171175599098,-0.221177965402603,-0.0451864749193192,0.974186062812805,-0.986674249172211,0.162699863314629,-0.00163861364126205,0.332769364118576,0.942958354949951,-0.00970514956861734,0.0881173834204674,0.993547439575195,0.0714053735136986,-0.179410830140114,0.0417991615831852,0.982885897159576,-0.0695966556668282,0.99665379524231,0.0428668558597565,0.0487993136048317,0.998535215854645,0.0233716908842325,-0.158708155155182,0.986872673034668,-0.0299036204814911,0.0399834997951984,0.982255220413208,0.183237627148628,-0.505523324012756,0.861624240875244,-0.0452777221798897,-0.108911372721195,-0.035497821867466,0.993417501449585,-0.137917906045914,0.101049579679966,0.985275447368622,-0.142875537276268,-0.0105382157489657,0.989684581756592,-0.131740942597389,0.0730315446853638,0.98859030008316,0.223863139748573,0.97412645816803,0.0310323312878609,0.0622537657618523,0.0323287285864353,0.997536718845367,0.00790516380220652,0.0466538779437542,0.998879849910736,0.459025382995605,0.88819944858551,0.0199407357722521,0.988754630088806,-0.13093189895153,0.0722565650939941,0.805949449539185,0.014324301853776,0.591811239719391,0.595153748989105,-0.0367273092269897,-0.802772164344788,-0.117721326649189,0.0760685205459595,0.990128993988037,-0.999948501586914,0.00833051837980747,0.00580513663589954,-0.136089935898781,-0.0049254591576755,0.99068421125412,-0.286386787891388,-0.284288823604584,0.914965867996216,
- -0.117721326649189,0.0760685205459595,0.990128993988037,-0.136089935898781,-0.0049254591576755,0.99068421125412,0.208487614989281,0.975710034370422,-0.067252479493618,-0.127403393387794,0.0830860808491707,-0.98836487531662,0.0601044893264771,0.398075431585312,-0.915381610393524,0.0601044893264771,0.398075431585312,-0.915381610393524,-0.437144935131073,0.345322042703629,-0.830455839633942,-0.737886607646942,0.664383590221405,-0.118818290531635,0.196301355957985,0.979766547679901,-0.0390311777591705,0.259348094463348,0.963180005550385,-0.070871889591217,0.147785663604736,0.00849952269345522,-0.988982975482941,0.196301355957985,0.979766547679901,-0.0390311777591705,0.147785663604736,0.00849952269345522,-0.988982975482941,-0.0251986403018236,0.0132830385118723,-0.999594271183014,0.0521966889500618,-0.996143281459808,-0.070527657866478,0.709667146205902,-0.703975379467011,-0.0281310360878706,0.194332420825958,0.142293378710747,-0.970560431480408,0.171935304999352,0.0684064850211143,-0.982730329036713,0.793150126934052,-0.608839452266693,0.0150816440582275,0.100620955228806,-0.362077116966248,-0.926701426506042,0.793150126934052,-0.608839452266693,0.0150816440582275,-0.0177582800388336,-0.324441492557526,-0.945739090442657,0.100620955228806,-0.362077116966248,-0.926701426506042,0.163449481129646,-0.0507466122508049,0.985245704650879,0.0798718109726906,0.0581443943083286,0.995107889175415,0.00790516380220652,0.0466538779437542,0.998879849910736,0.0601044893264771,0.398075431585312,-0.915381610393524,-0.737886607646942,0.664383590221405,-0.118818290531635,0.208487614989281,0.975710034370422,-0.067252479493618,-0.136089935898781,-0.0049254591576755,0.99068421125412,-0.986674249172211,0.162699863314629,-0.00163861364126205,-0.251257508993149,-0.150586053729057,0.956134736537933,0.171935304999352,0.0684064850211143,-0.982730329036713,0.084896631538868,-0.0579913146793842,-0.994700789451599,0.563235580921173,-0.425071001052856,-0.708576381206512,0.241568833589554,0.969899117946625,0.0306637920439243,0.106104947626591,0.994350790977478,-0.00290253642015159,
- 0.259348094463348,0.963180005550385,-0.070871889591217,0.196301355957985,0.979766547679901,-0.0390311777591705,-0.128199815750122,0.991305410861969,-0.0296383835375309,-0.184837430715561,0.980762481689453,0.0627709999680519,-0.308569937944412,0.948998808860779,0.0646987184882164,-0.0177582800388336,-0.324441492557526,-0.945739090442657,0.940185487270355,-0.329056531190872,0.088165320456028,0.915892362594604,-0.392104655504227,0.0859956741333008,0.100355133414268,-0.033534899353981,-0.994386434555054,0.940185487270355,-0.329056531190872,0.088165320456028,-0.0177582800388336,-0.324441492557526,-0.945739090442657,0.793150126934052,-0.608839452266693,0.0150816440582275,-0.602941155433655,0.794316947460175,-0.0743152350187302,-0.704623818397522,0.700984835624695,-0.110116586089134,-0.696305155754089,0.717744886875153,0.00126303581055254,-0.198728188872337,0.00381359085440636,-0.980047225952148,-0.173514053225517,0.0457385443150997,-0.983768701553345,-0.307864099740982,-0.946799576282501,-0.0937566235661507,0.147785663604736,0.00849952269345522,-0.988982975482941,-0.173514053225517,0.0457385443150997,-0.983768701553345,-0.198728188872337,0.00381359085440636,-0.980047225952148,0.604605257511139,-0.795514106750488,0.040122888982296,0.084896631538868,-0.0579913146793842,-0.994700789451599,0.211830675601959,-0.476394265890121,-0.85333251953125,-0.161298081278801,0.00859052035957575,0.986868441104889,-0.367658823728561,0.92795991897583,0.0609706677496433,-0.00702022854238749,0.978364765644073,0.206768676638603,0.0336686335504055,0.0575910396873951,-0.997772455215454,-0.602941155433655,0.794316947460175,-0.0743152350187302,0.0510623082518578,0.0484419837594032,-0.997519969940186,-0.602941155433655,0.794316947460175,-0.0743152350187302,0.139122769236565,0.0652118995785713,-0.988125681877136,0.0510623082518578,0.0484419837594032,-0.997519969940186,0.0756532251834869,-0.0663107857108116,-0.994926929473877,-0.249990850687027,-0.967740297317505,-0.031359288841486,0.0521966889500618,-0.996143281459808,-0.070527657866478,0.194332420825958,0.142293378710747,-0.970560431480408,
- 0.194332420825958,0.142293378710747,-0.970560431480408,-0.18117581307888,-0.00979520473629236,-0.983402013778687,0.0756532251834869,-0.0663107857108116,-0.994926929473877,0.675821900367737,-0.736868321895599,0.0170295257121325,0.604605257511139,-0.795514106750488,0.040122888982296,0.211830675601959,-0.476394265890121,-0.85333251953125,0.079998180270195,-0.00419221865013242,-0.996786236763,0.267226338386536,-0.755590260028839,-0.59805816411972,0.675821900367737,-0.736868321895599,0.0170295257121325,0.211830675601959,-0.476394265890121,-0.85333251953125,-0.0274556148797274,-0.00281389406882226,-0.999619126319885,-0.913351714611053,0.391810029745102,-0.110785946249962,-0.189494326710701,-0.14914046227932,-0.970489144325256,0.0135149983689189,0.194553479552269,-0.980798900127411,-0.976498305797577,-0.0602361634373665,-0.206936746835709,-0.984647691249847,0.0035280380398035,-0.174518078565598,0.0371057875454426,-0.00582176214084029,-0.999294459819794,0.788188815116882,-0.592591047286987,0.166115581989288,-0.286386787891388,-0.284288823604584,0.914965867996216,0.944668114185333,-0.272165477275848,0.18310734629631,-0.813742518424988,0.559117078781128,-0.158780738711357,0.0336686335504055,0.0575910396873951,-0.997772455215454,-0.189494326710701,-0.14914046227932,-0.970489144325256,-0.189494326710701,-0.14914046227932,-0.970489144325256,-0.913351714611053,0.391810029745102,-0.110785946249962,-0.813742518424988,0.559117078781128,-0.158780738711357,-0.0233966857194901,0.290356546640396,-0.956632494926453,0.114689394831657,0.0426732487976551,-0.992484450340271,0.139122769236565,0.0652118995785713,-0.988125681877136,0.779401481151581,-0.620100319385529,0.0894934386014938,0.944668114185333,-0.272165477275848,0.18310734629631,0.793150126934052,-0.608839452266693,0.0150816440582275,0.788188815116882,-0.592591047286987,0.166115581989288,0.944668114185333,-0.272165477275848,0.18310734629631,0.779401481151581,-0.620100319385529,0.0894934386014938,-0.95263409614563,0.25014740228653,-0.172958344221115,-0.307251334190369,0.0267542582005262,-0.951252281665802,
- -0.970649600028992,0.000912033021450043,-0.240496665239334,-0.307251334190369,0.0267542582005262,-0.951252281665802,0.0440699681639671,-0.0976112708449364,-0.994248449802399,0.0271057151257992,-0.0693186894059181,-0.997226357460022,0.709667146205902,-0.703975379467011,-0.0281310360878706,0.0066129700280726,-0.0367934256792068,-0.999301075935364,0.194332420825958,0.142293378710747,-0.970560431480408,0.0174357425421476,0.0778739079833031,0.996810793876648,0.00462155463173985,0.00394424423575401,0.999981582164764,0.0821898579597473,0.0356693342328072,0.995978236198425,-0.95263409614563,0.25014740228653,-0.172958344221115,0.0440699681639671,-0.0976112708449364,-0.994248449802399,-0.307251334190369,0.0267542582005262,-0.951252281665802,0.504665851593018,-0.231547608971596,-0.831683874130249,0.079998180270195,-0.00419221865013242,-0.996786236763,0.114689394831657,0.0426732487976551,-0.992484450340271,-0.0233966857194901,0.290356546640396,-0.956632494926453,0.504665851593018,-0.231547608971596,-0.831683874130249,0.114689394831657,0.0426732487976551,-0.992484450340271,-0.0296875834465027,-0.998931705951691,0.0354153402149677,0.00450284266844392,-0.439854711294174,0.898057699203491,-0.0579474717378616,-0.0412655211985111,0.997466444969177,-0.0579474717378616,-0.0412655211985111,0.997466444969177,0.00450284266844392,-0.439854711294174,0.898057699203491,-0.0963835120201111,-0.0290828086435795,0.99491935968399,-0.0194313582032919,0.00636544311419129,-0.999790966510773,-0.56305468082428,0.819288551807404,-0.108332052826881,0.0251285172998905,0.0372594334185123,-0.998989641666412,-0.985064089298248,-0.0981628745794296,-0.141466498374939,0.177170500159264,0.221492886543274,-0.958932518959045,0.6853888630867,0.231635361909866,-0.690353035926819,0.208487614989281,0.975710034370422,-0.067252479493618,-0.737886607646942,0.664383590221405,-0.118818290531635,-0.368430376052856,0.929523468017578,0.0156585685908794,-0.970649600028992,0.000912033021450043,-0.240496665239334,-0.994815647602081,0.0562052875757217,-0.0847523733973503,-0.99553781747818,0.00412404863163829,-0.0942739695310593,
- -0.173172771930695,0.0521836131811142,0.983508110046387,-0.421253830194473,-0.168236821889877,0.89120227098465,-0.112580306828022,-0.0109766321256757,0.99358206987381,0.0399834997951984,0.982255220413208,0.183237627148628,-0.108911372721195,-0.035497821867466,0.993417501449585,-0.0963835120201111,-0.0290828086435795,0.99491935968399,0.0399834997951984,0.982255220413208,0.183237627148628,-0.0963835120201111,-0.0290828086435795,0.99491935968399,-0.161298081278801,0.00859052035957575,0.986868441104889,0.544985949993134,-0.835902094841003,0.0652534067630768,0.00450284266844392,-0.439854711294174,0.898057699203491,0.0794366374611855,-0.995230257511139,-0.0566278323531151,-0.421253830194473,-0.168236821889877,0.89120227098465,-0.173172771930695,0.0521836131811142,0.983508110046387,-0.969905376434326,-0.227979406714439,-0.0854934081435204,0.267226338386536,-0.755590260028839,-0.59805816411972,0.079998180270195,-0.00419221865013242,-0.996786236763,0.21739387512207,-0.0097122872248292,-0.976035714149475,0.988754630088806,-0.13093189895153,0.0722565650939941,0.595153748989105,-0.0367273092269897,-0.802772164344788,0.129632294178009,0.108205929398537,-0.985640466213226,0.647476494312286,-0.759899735450745,0.0576775409281254,0.779401481151581,-0.620100319385529,0.0894934386014938,0.793150126934052,-0.608839452266693,0.0150816440582275,-0.704623818397522,0.700984835624695,-0.110116586089134,-0.602941155433655,0.794316947460175,-0.0743152350187302,0.0336686335504055,0.0575910396873951,-0.997772455215454,-0.813742518424988,0.559117078781128,-0.158780738711357,-0.704623818397522,0.700984835624695,-0.110116586089134,0.0336686335504055,0.0575910396873951,-0.997772455215454,-0.161298081278801,0.00859052035957575,0.986868441104889,-0.0963835120201111,-0.0290828086435795,0.99491935968399,0.00450284266844392,-0.439854711294174,0.898057699203491,0.595153748989105,-0.0367273092269897,-0.802772164344788,-0.307251334190369,0.0267542582005262,-0.951252281665802,0.0271057151257992,-0.0693186894059181,-0.997226357460022,0.595153748989105,-0.0367273092269897,-0.802772164344788,
- 0.0271057151257992,-0.0693186894059181,-0.997226357460022,0.129632294178009,0.108205929398537,-0.985640466213226,-0.0188380312174559,-0.999067723751068,0.0388430207967758,0.0734163001179695,-0.0387922525405884,0.996546685695648,0.0512638315558434,-0.00853742472827435,0.998648703098297,0.0794366374611855,-0.995230257511139,-0.0566278323531151,-0.0296875834465027,-0.998931705951691,0.0354153402149677,0.675821900367737,-0.736868321895599,0.0170295257121325,0.0417710319161415,-0.99809193611145,-0.0454725548624992,0.267226338386536,-0.755590260028839,-0.59805816411972,0.21739387512207,-0.0097122872248292,-0.976035714149475,0.709667146205902,-0.703975379467011,-0.0281310360878706,0.173059821128845,-0.984656810760498,-0.0223902780562639,0.0113403620198369,-0.040451604872942,-0.999117136001587,0.0066129700280726,-0.0367934256792068,-0.999301075935364,-0.0188380312174559,-0.999067723751068,0.0388430207967758,0.00755769247189164,-0.999562978744507,0.02858149074018,0.0734163001179695,-0.0387922525405884,0.996546685695648,-0.354952126741409,-0.933890819549561,0.043092854321003,-0.246990591287613,-0.968052268028259,0.0432493127882481,-0.214737892150879,-0.976607322692871,-0.0112136118113995,-0.185783997178078,-0.982569873332977,-0.00639608036726713,-0.240656092762947,-0.970607459545136,-0.00245032296516001,-0.240656092762947,-0.970607459545136,-0.00245032296516001,-0.307864099740982,-0.946799576282501,-0.0937566235661507,-0.177418604493141,-0.908211588859558,0.379044264554977,-0.354952126741409,-0.933890819549561,0.043092854321003,0.0943941920995712,0.976560771465302,0.193440034985542,0.322676777839661,0.943529963493347,-0.0750399455428123,0.259348094463348,0.963180005550385,-0.070871889591217,0.106104947626591,0.994350790977478,-0.00290253642015159,-0.171195939183235,0.306095212697983,-0.936481654644012,0.147785663604736,0.00849952269345522,-0.988982975482941,0.259348094463348,0.963180005550385,-0.070871889591217,0.322676777839661,0.943529963493347,-0.0750399455428123,0.253672361373901,0.853662073612213,-0.454875111579895,0.196301355957985,0.979766547679901,-0.0390311777591705,
- -0.0759246647357941,0.0314205624163151,-0.996618390083313,-0.18117581307888,-0.00979520473629236,-0.983402013778687,0.253672361373901,0.853662073612213,-0.454875111579895,-0.0759246647357941,0.0314205624163151,-0.996618390083313,-0.56305468082428,0.819288551807404,-0.108332052826881,-0.308569937944412,0.948998808860779,0.0646987184882164,-0.158708155155182,0.986872673034668,-0.0299036204814911,-0.368430376052856,0.929523468017578,0.0156585685908794,-0.184837430715561,0.980762481689453,0.0627709999680519,-0.128199815750122,0.991305410861969,-0.0296383835375309,0.208487614989281,0.975710034370422,-0.067252479493618,-0.737886607646942,0.664383590221405,-0.118818290531635,-0.536553859710693,0.835367321968079,0.119463264942169,-0.368430376052856,0.929523468017578,0.0156585685908794,-0.444642603397369,0.893083035945892,0.0685246288776398,-0.536553859710693,0.835367321968079,0.119463264942169,-0.737886607646942,0.664383590221405,-0.118818290531635,-0.544477522373199,0.837665915489197,0.0431277379393578,0.0821898579597473,0.0356693342328072,0.995978236198425,0.0622537657618523,0.0323287285864353,0.997536718845367,0.223863139748573,0.97412645816803,0.0310323312878609,0.0174357425421476,0.0778739079833031,0.996810793876648,0.0821898579597473,0.0356693342328072,0.995978236198425,-0.544477522373199,0.837665915489197,0.0431277379393578,0.0174357425421476,0.0778739079833031,0.996810793876648,-0.544477522373199,0.837665915489197,0.0431277379393578,0.332769364118576,0.942958354949951,-0.00970514956861734,0.332769364118576,0.942958354949951,-0.00970514956861734,-0.179410830140114,0.0417991615831852,0.982885897159576,0.0174357425421476,0.0778739079833031,0.996810793876648,-0.205675438046455,-0.00745354685932398,0.978591978549957,-0.937085688114166,0.338742226362228,-0.0844056978821754,-0.994493901729584,0.0429000370204449,-0.0956118255853653,-0.187757179141045,0.151260912418365,0.970498621463776,0.988754630088806,-0.13093189895153,0.0722565650939941,0.984259128570557,0.066441610455513,0.163766771554947,0.805949449539185,0.014324301853776,0.591811239719391,
- -0.115420550107956,-0.160886466503143,0.980200886726379,0.805949449539185,0.014324301853776,0.591811239719391,0.984259128570557,0.066441610455513,0.163766771554947,-0.146260529756546,-0.0063295466825366,0.989225924015045,-0.173172771930695,0.0521836131811142,0.983508110046387,-0.112580306828022,-0.0109766321256757,0.99358206987381,-0.112580306828022,-0.0109766321256757,0.99358206987381,-0.115420550107956,-0.160886466503143,0.980200886726379,-0.146260529756546,-0.0063295466825366,0.989225924015045,-0.0233966857194901,0.290356546640396,-0.956632494926453,-0.437144935131073,0.345322042703629,-0.830455839633942,0.0601044893264771,0.398075431585312,-0.915381610393524,-0.0233966857194901,0.290356546640396,-0.956632494926453,-0.840377390384674,0.53219872713089,-0.102617837488651,-0.437144935131073,0.345322042703629,-0.830455839633942,-0.602941155433655,0.794316947460175,-0.0743152350187302,-0.840377390384674,0.53219872713089,-0.102617837488651,0.139122769236565,0.0652118995785713,-0.988125681877136,-0.158708155155182,0.986872673034668,-0.0299036204814911,0.253672361373901,0.853662073612213,-0.454875111579895,-0.18117581307888,-0.00979520473629236,-0.983402013778687,-0.56305468082428,0.819288551807404,-0.108332052826881,-0.158708155155182,0.986872673034668,-0.0299036204814911,-0.18117581307888,-0.00979520473629236,-0.983402013778687,-0.128199815750122,0.991305410861969,-0.0296383835375309,-0.56305468082428,0.819288551807404,-0.108332052826881,-0.0194313582032919,0.00636544311419129,-0.999790966510773,-0.127403393387794,0.0830860808491707,-0.98836487531662,-0.128199815750122,0.991305410861969,-0.0296383835375309,-0.0194313582032919,0.00636544311419129,-0.999790966510773,0.673681616783142,0.0699637681245804,0.735702514648438,-0.286386787891388,-0.284288823604584,0.914965867996216,-0.034523718059063,-0.0541144646704197,0.997937798500061,0.0287438556551933,0.192159026861191,0.980942845344543,0.673681616783142,0.0699637681245804,0.735702514648438,-0.0219522807747126,0.131723806262016,0.991043329238892,-0.132729768753052,-0.0236839260905981,0.990869283676147,
- -0.205675438046455,-0.00745354685932398,0.978591978549957,-0.187757179141045,0.151260912418365,0.970498621463776,-0.200504809617996,-0.347604930400848,0.915952324867249,0.00755769247189164,-0.999562978744507,0.02858149074018,0.0521966889500618,-0.996143281459808,-0.070527657866478,-0.249990850687027,-0.967740297317505,-0.031359288841486,-0.0188380312174559,-0.999067723751068,0.0388430207967758,0.0521966889500618,-0.996143281459808,-0.070527657866478,0.00755769247189164,-0.999562978744507,0.02858149074018,-0.0188380312174559,-0.999067723751068,0.0388430207967758,0.709667146205902,-0.703975379467011,-0.0281310360878706,0.0521966889500618,-0.996143281459808,-0.070527657866478,0.0881173834204674,0.993547439575195,0.0714053735136986,-0.367658823728561,0.92795991897583,0.0609706677496433,-0.0476433932781219,0.0505193881690502,0.997586011886597,-0.179410830140114,0.0417991615831852,0.982885897159576,0.287256568670273,-0.120860271155834,0.950198113918304,0.0468306466937065,-0.0406956635415554,0.998073577880859,-0.246990591287613,-0.968052268028259,0.0432493127882481,-0.354952126741409,-0.933890819549561,0.043092854321003,0.0821898579597473,0.0356693342328072,0.995978236198425,-0.0133082680404186,-0.0446270629763603,0.998915076255798,0.0468306466937065,-0.0406956635415554,0.998073577880859,0.0622537657618523,0.0323287285864353,0.997536718845367,-0.198728188872337,0.00381359085440636,-0.980047225952148,-0.0552044548094273,-0.0370583720505238,-0.997787177562714,-0.0251986403018236,0.0132830385118723,-0.999594271183014,0.147785663604736,0.00849952269345522,-0.988982975482941,-0.214737892150879,-0.976607322692871,-0.0112136118113995,-0.249990850687027,-0.967740297317505,-0.031359288841486,0.0756532251834869,-0.0663107857108116,-0.994926929473877,-0.0552044548094273,-0.0370583720505238,-0.997787177562714,0.196301355957985,0.979766547679901,-0.0390311777591705,-0.0251986403018236,0.0132830385118723,-0.999594271183014,-0.0759246647357941,0.0314205624163151,-0.996618390083313,-0.246990591287613,-0.968052268028259,0.0432493127882481,
- 0.202029094099998,-0.978842973709106,0.0324153900146484,-0.249990850687027,-0.967740297317505,-0.031359288841486,-0.214737892150879,-0.976607322692871,-0.0112136118113995,0.544985949993134,-0.835902094841003,0.0652534067630768,0.0417710319161415,-0.99809193611145,-0.0454725548624992,0.173059821128845,-0.984656810760498,-0.0223902780562639,0.189785286784172,-0.980841994285584,0.0439378432929516,-0.0493750609457493,-0.0223954617977142,0.998529195785522,-0.0476433932781219,0.0505193881690502,0.997586011886597,-0.161298081278801,0.00859052035957575,0.986868441104889,-0.180130124092102,-0.0713470429182053,0.981051921844482,0.544985949993134,-0.835902094841003,0.0652534067630768,0.189785286784172,-0.980841994285584,0.0439378432929516,-0.0493750609457493,-0.0223954617977142,0.998529195785522,-0.180130124092102,-0.0713470429182053,0.981051921844482,0.0113403620198369,-0.040451604872942,-0.999117136001587,0.173059821128845,-0.984656810760498,-0.0223902780562639,0.0417710319161415,-0.99809193611145,-0.0454725548624992,0.21739387512207,-0.0097122872248292,-0.976035714149475,-0.0476433932781219,0.0505193881690502,0.997586011886597,-0.367658823728561,0.92795991897583,0.0609706677496433,-0.161298081278801,0.00859052035957575,0.986868441104889,0.0510623082518578,0.0484419837594032,-0.997519969940186,0.084896631538868,-0.0579913146793842,-0.994700789451599,0.171935304999352,0.0684064850211143,-0.982730329036713,-0.590768337249756,0.805062711238861,-0.0535429827868938,-0.444642603397369,0.893083035945892,0.0685246288776398,-0.840377390384674,0.53219872713089,-0.102617837488651,-0.0296875834465027,-0.998931705951691,0.0354153402149677,0.636850774288177,-0.765334248542786,0.093191958963871,0.604605257511139,-0.795514106750488,0.040122888982296,0.675821900367737,-0.736868321895599,0.0170295257121325,-0.141222029924393,-0.00357463210821152,0.989971578121185,-0.743761241436005,0.66843968629837,-0.00275672972202301,-0.999948501586914,0.00833051837980747,0.00580513663589954,-0.117721326649189,0.0760685205459595,0.990128993988037,0.604605257511139,-0.795514106750488,0.040122888982296,
- 0.647476494312286,-0.759899735450745,0.0576775409281254,0.563235580921173,-0.425071001052856,-0.708576381206512,0.084896631538868,-0.0579913146793842,-0.994700789451599,0.940185487270355,-0.329056531190872,0.088165320456028,0.827155768871307,-0.544145822525024,0.140423059463501,0.914961516857147,-0.376965701580048,0.144022434949875,0.915892362594604,-0.392104655504227,0.0859956741333008,0.0440699681639671,-0.0976112708449364,-0.994248449802399,0.129632294178009,0.108205929398537,-0.985640466213226,0.0271057151257992,-0.0693186894059181,-0.997226357460022,-0.929891884326935,0.335858434438705,-0.150000840425491,-0.683112502098084,0.71070522069931,-0.168093234300613,-0.818347156047821,0.550458014011383,-0.165238961577415,-0.815988481044769,0.561465620994568,-0.137547120451927,-0.929285109043121,0.359832346439362,-0.0833671391010284,0.914961516857147,-0.376965701580048,0.144022434949875,-0.132729768753052,-0.0236839260905981,0.990869283676147,-0.200504809617996,-0.347604930400848,0.915952324867249,0.920496761798859,-0.364958882331848,0.139609098434448,0.915892362594604,-0.392104655504227,0.0859956741333008,0.750963270664215,-0.660096108913422,0.0180963482707739,0.128131344914436,0.0505477674305439,-0.990468323230743,0.100355133414268,-0.033534899353981,-0.994386434555054,0.026386171579361,-0.0161333065479994,-0.999521613121033,-0.982409954071045,0.0852840468287468,-0.166124746203423,-0.913351714611053,0.391810029745102,-0.110785946249962,-0.0274556148797274,-0.00281389406882226,-0.999619126319885,-0.221177965402603,-0.0451864749193192,0.974186062812805,-0.902017891407013,0.422209531068802,-0.0900171175599098,-0.937085688114166,0.338742226362228,-0.0844056978821754,-0.205675438046455,-0.00745354685932398,0.978591978549957,-0.0219522807747126,0.131723806262016,0.991043329238892,-0.251257508993149,-0.150586053729057,0.956134736537933,-0.221177965402603,-0.0451864749193192,0.974186062812805,0.0287438556551933,0.192159026861191,0.980942845344543,0.0251285172998905,0.0372594334185123,-0.998989641666412,0.0066129700280726,-0.0367934256792068,-0.999301075935364,
- 0.0113403620198369,-0.040451604872942,-0.999117136001587,-0.0194313582032919,0.00636544311419129,-0.999790966510773,-0.368430376052856,0.929523468017578,0.0156585685908794,-0.536553859710693,0.835367321968079,0.119463264942169,-0.184837430715561,0.980762481689453,0.0627709999680519,-0.590768337249756,0.805062711238861,-0.0535429827868938,-0.840377390384674,0.53219872713089,-0.102617837488651,-0.602941155433655,0.794316947460175,-0.0743152350187302,-0.696305155754089,0.717744886875153,0.00126303581055254,0.00790516380220652,0.0466538779437542,0.998879849910736,0.155576646327972,0.972592949867249,0.172797173261642,0.459025382995605,0.88819944858551,0.0199407357722521,0.139122769236565,0.0652118995785713,-0.988125681877136,-0.840377390384674,0.53219872713089,-0.102617837488651,-0.0233966857194901,0.290356546640396,-0.956632494926453,0.0066129700280726,-0.0367934256792068,-0.999301075935364,-0.18117581307888,-0.00979520473629236,-0.983402013778687,0.194332420825958,0.142293378710747,-0.970560431480408,0.0174357425421476,0.0778739079833031,0.996810793876648,-0.179410830140114,0.0417991615831852,0.982885897159576,0.0512638315558434,-0.00853742472827435,0.998648703098297,0.00462155463173985,0.00394424423575401,0.999981582164764,0.0288631170988083,0.0188203398138285,-0.999406218528748,0.100355133414268,-0.033534899353981,-0.994386434555054,0.128131344914436,0.0505477674305439,-0.990468323230743,-0.0380820073187351,-0.0697030872106552,-0.996840715408325,-0.402640163898468,0.0581340789794922,-0.913510501384735,-0.854069232940674,0.283992797136307,-0.435791254043579,-0.683112502098084,0.71070522069931,-0.168093234300613,-0.0380820073187351,-0.0697030872106552,-0.996840715408325,-0.280387818813324,0.201403096318245,0.938519895076752,-0.983797192573547,0.138141512870789,-0.11428102850914,-0.818850874900818,0.57294112443924,-0.0349566824734211,-0.181261822581291,-0.0757287442684174,0.980514824390411,-0.939492642879486,0.3317930996418,-0.0852468237280846,-0.854069232940674,0.283992797136307,-0.435791254043579,-0.984647691249847,0.0035280380398035,-0.174518078565598,
- -0.990804016590118,0.0858699306845665,-0.104564309120178,0.120111472904682,0.303397536277771,-0.945263504981995,-0.449960649013519,-0.6293825507164,-0.633571624755859,-0.032504890114069,-0.170673251152039,0.984791398048401,0.750963270664215,-0.660096108913422,0.0180963482707739,0.920496761798859,-0.364958882331848,0.139609098434448,0.751020848751068,-0.645921945571899,-0.136940017342567,0.266368210315704,-0.610474109649658,-0.745901703834534,-0.187757179141045,0.151260912418365,0.970498621463776,-0.994493901729584,0.0429000370204449,-0.0956118255853653,-0.983797192573547,0.138141512870789,-0.11428102850914,-0.280387818813324,0.201403096318245,0.938519895076752,-0.200627818703651,-0.0694635510444641,0.977201819419861,-0.187757179141045,0.151260912418365,0.970498621463776,-0.280387818813324,0.201403096318245,0.938519895076752,-0.854069232940674,0.283992797136307,-0.435791254043579,-0.818347156047821,0.550458014011383,-0.165238961577415,-0.683112502098084,0.71070522069931,-0.168093234300613,0.751020848751068,-0.645921945571899,-0.136940017342567,-0.200504809617996,-0.347604930400848,0.915952324867249,0.19172240793705,-0.317536503076553,0.928662061691284,0.128131344914436,0.0505477674305439,-0.990468323230743,0.750963270664215,-0.660096108913422,0.0180963482707739,0.266368210315704,-0.610474109649658,-0.745901703834534,-0.402640163898468,0.0581340789794922,-0.913510501384735,0.001509242458269,0.00130207953043282,-0.999998092651367,0.128131344914436,0.0505477674305439,-0.990468323230743,0.266368210315704,-0.610474109649658,-0.745901703834534,-0.0380820073187351,-0.0697030872106552,-0.996840715408325,-0.683112502098084,0.71070522069931,-0.168093234300613,-0.929891884326935,0.335858434438705,-0.150000840425491,0.0288631170988083,0.0188203398138285,-0.999406218528748,0.0371057875454426,-0.00582176214084029,-0.999294459819794,-0.984647691249847,0.0035280380398035,-0.174518078565598,-0.854069232940674,0.283992797136307,-0.435791254043579,-0.402640163898468,0.0581340789794922,-0.913510501384735,-0.177934572100639,0.00940502807497978,0.983997404575348,
- -0.991449177265167,0.0783921182155609,-0.104322724044323,-0.969905376434326,-0.227979406714439,-0.0854934081435204,-0.173172771930695,0.0521836131811142,0.983508110046387,-0.994104266166687,-0.00941382627934217,-0.108019545674324,-0.986307144165039,0.017742482945323,-0.16396227478981,-0.95263409614563,0.25014740228653,-0.172958344221115,-0.99553781747818,0.00412404863163829,-0.0942739695310593,0.138057261705399,-0.0170691795647144,-0.990277171134949,0.994191288948059,-0.059061948210001,0.0899745896458626,0.988754630088806,-0.13093189895153,0.0722565650939941,0.129632294178009,0.108205929398537,-0.985640466213226,0.068227119743824,0.0195518787950277,-0.997478306293488,0.138057261705399,-0.0170691795647144,-0.990277171134949,0.129632294178009,0.108205929398537,-0.985640466213226,0.0440699681639671,-0.0976112708449364,-0.994248449802399,0.0287438556551933,0.192159026861191,0.980942845344543,-0.221177965402603,-0.0451864749193192,0.974186062812805,-0.205675438046455,-0.00745354685932398,0.978591978549957,-0.132729768753052,-0.0236839260905981,0.990869283676147,-0.200627818703651,-0.0694635510444641,0.977201819419861,-0.280387818813324,0.201403096318245,0.938519895076752,-0.181261822581291,-0.0757287442684174,0.980514824390411,-0.0999851077795029,-0.00508512975648046,0.994975924491882,-0.177934572100639,0.00940502807497978,0.983997404575348,-0.173172771930695,0.0521836131811142,0.983508110046387,-0.146260529756546,-0.0063295466825366,0.989225924015045,-0.115420550107956,-0.160886466503143,0.980200886726379,0.986841559410095,-0.0484633296728134,0.154256120324135,-0.0999851077795029,-0.00508512975648046,0.994975924491882,-0.115420550107956,-0.160886466503143,0.980200886726379,0.984259128570557,0.066441610455513,0.163766771554947,0.884514510631561,-0.434196770191193,0.170608520507813,0.986889541149139,-0.109088093042374,0.118948861956596,0.751020848751068,-0.645921945571899,-0.136940017342567,0.266368210315704,-0.610474109649658,-0.745901703834534,0.986889541149139,-0.109088093042374,0.118948861956596,0.958626568317413,0.273198634386063,0.0799848660826683,
- 0.751020848751068,-0.645921945571899,-0.136940017342567,0.19172240793705,-0.317536503076553,0.928662061691284,0.0496245324611664,0.0421640239655972,0.997877597808838,-0.95263409614563,0.25014740228653,-0.172958344221115,-0.986307144165039,0.017742482945323,-0.16396227478981,0.068227119743824,0.0195518787950277,-0.997478306293488,0.0440699681639671,-0.0976112708449364,-0.994248449802399,-0.0380820073187351,-0.0697030872106552,-0.996840715408325,0.001509242458269,0.00130207953043282,-0.999998092651367,-0.402640163898468,0.0581340789794922,-0.913510501384735,-0.815988481044769,0.561465620994568,-0.137547120451927,-0.818347156047821,0.550458014011383,-0.165238961577415,-0.854069232940674,0.283992797136307,-0.435791254043579,-0.939492642879486,0.3317930996418,-0.0852468237280846,-0.0380820073187351,-0.0697030872106552,-0.996840715408325,0.128131344914436,0.0505477674305439,-0.990468323230743,0.001509242458269,0.00130207953043282,-0.999998092651367,0.751020848751068,-0.645921945571899,-0.136940017342567,0.0496245324611664,0.0421640239655972,0.997877597808838,-0.0731472447514534,0.132792219519615,0.988441109657288,0.884514510631561,-0.434196770191193,0.170608520507813,-0.200504809617996,-0.347604930400848,0.915952324867249,-0.200627818703651,-0.0694635510444641,0.977201819419861,0.19172240793705,-0.317536503076553,0.928662061691284,0.266368210315704,-0.610474109649658,-0.745901703834534,0.751020848751068,-0.645921945571899,-0.136940017342567,0.986889541149139,-0.109088093042374,0.118948861956596,0.994191288948059,-0.059061948210001,0.0899745896458626,0.986841559410095,-0.0484633296728134,0.154256120324135,0.984259128570557,0.066441610455513,0.163766771554947,0.988754630088806,-0.13093189895153,0.0722565650939941,-0.200504809617996,-0.347604930400848,0.915952324867249,-0.187757179141045,0.151260912418365,0.970498621463776,-0.200627818703651,-0.0694635510444641,0.977201819419861,-0.200627818703651,-0.0694635510444641,0.977201819419861,-0.181261822581291,-0.0757287442684174,0.980514824390411,0.0496245324611664,0.0421640239655972,0.997877597808838,
- -0.200627818703651,-0.0694635510444641,0.977201819419861,0.0496245324611664,0.0421640239655972,0.997877597808838,0.19172240793705,-0.317536503076553,0.928662061691284,0.920496761798859,-0.364958882331848,0.139609098434448,-0.200504809617996,-0.347604930400848,0.915952324867249,0.751020848751068,-0.645921945571899,-0.136940017342567,0.0371057875454426,-0.00582176214084029,-0.999294459819794,0.266368210315704,-0.610474109649658,-0.745901703834534,0.128141492605209,-0.298897296190262,-0.945642828941345,0.128141492605209,-0.298897296190262,-0.945642828941345,0.958626568317413,0.273198634386063,0.0799848660826683,0.994191288948059,-0.059061948210001,0.0899745896458626,0.138057261705399,-0.0170691795647144,-0.990277171134949,0.958626568317413,0.273198634386063,0.0799848660826683,0.986889541149139,-0.109088093042374,0.118948861956596,0.884514510631561,-0.434196770191193,0.170608520507813,0.986841559410095,-0.0484633296728134,0.154256120324135,0.994191288948059,-0.059061948210001,0.0899745896458626,0.884514510631561,-0.434196770191193,0.170608520507813,-0.0731472447514534,0.132792219519615,0.988441109657288,-0.0999851077795029,-0.00508512975648046,0.994975924491882,0.986841559410095,-0.0484633296728134,0.154256120324135,-0.181261822581291,-0.0757287442684174,0.980514824390411,-0.0731472447514534,0.132792219519615,0.988441109657288,0.0496245324611664,0.0421640239655972,0.997877597808838,-0.181261822581291,-0.0757287442684174,0.980514824390411,-0.818850874900818,0.57294112443924,-0.0349566824734211,-0.991449177265167,0.0783921182155609,-0.104322724044323,-0.177934572100639,0.00940502807497978,0.983997404575348,-0.990804016590118,0.0858699306845665,-0.104564309120178,-0.984647691249847,0.0035280380398035,-0.174518078565598,-0.976498305797577,-0.0602361634373665,-0.206936746835709,-0.986307144165039,0.017742482945323,-0.16396227478981,-0.994104266166687,-0.00941382627934217,-0.108019545674324,0.068227119743824,0.0195518787950277,-0.997478306293488,-0.986307144165039,0.017742482945323,-0.16396227478981,-0.976498305797577,-0.0602361634373665,-0.206936746835709,
- 0.0135149983689189,0.194553479552269,-0.980798900127411,-0.647133827209473,-0.756047070026398,0.0980340018868446,-0.454560130834579,-0.88553261756897,0.0959533452987671,-0.602790355682373,-0.797899603843689,-0.00017361668869853,-0.644363284111023,-0.764515578746796,0.0176648553460836,0.12844417989254,0.15576408803463,-0.979407906532288,-0.263971984386444,0.133324697613716,-0.955271363258362,-0.0158217754215002,0.00795129407197237,-0.999843239784241,-0.306592613458633,0.43493863940239,0.846657872200012,0.786297738552094,0.615053832530975,-0.0586926601827145,0.662018358707428,0.748207628726959,-0.0437857881188393,-0.93052726984024,-0.334483295679092,0.149130597710609,-0.741054892539978,-0.670942306518555,0.0259636752307415,-0.826281487941742,-0.562690615653992,-0.0252640545368195,-0.263971984386444,0.133324697613716,-0.955271363258362,0.12844417989254,0.15576408803463,-0.979407906532288,-0.35765615105629,-0.169075936079025,-0.918420076370239,-0.551730990409851,-0.342138767242432,-0.760614275932312,-0.826281487941742,-0.562690615653992,-0.0252640545368195,-0.741054892539978,-0.670942306518555,0.0259636752307415,-0.93052726984024,-0.334483295679092,0.149130597710609,0.295237421989441,-0.262750148773193,0.91858446598053,0.0830798223614693,-0.0442910753190517,0.995558261871338,-0.647133827209473,-0.756047070026398,0.0980340018868446,-0.93052726984024,-0.334483295679092,0.149130597710609,-0.826281487941742,-0.562690615653992,-0.0252640545368195,-0.431491583585739,-0.34963247179985,0.831608176231384,0.295237421989441,-0.262750148773193,0.91858446598053,-0.551730990409851,-0.342138767242432,-0.760614275932312,-0.263971984386444,0.133324697613716,-0.955271363258362,-0.35765615105629,-0.169075936079025,-0.918420076370239,0.0581935755908489,-0.0401759929955006,0.997496604919434,0.236780896782875,0.0498382896184921,0.970283985137939,0.068000502884388,0.0786530300974846,0.994580149650574,-0.263971984386444,0.133324697613716,-0.955271363258362,-0.741054892539978,-0.670942306518555,0.0259636752307415,-0.644363284111023,-0.764515578746796,0.0176648553460836,
- -0.0968802869319916,-0.0418020822107792,-0.994417905807495,-0.741054892539978,-0.670942306518555,0.0259636752307415,-0.263971984386444,0.133324697613716,-0.955271363258362,-0.551730990409851,-0.342138767242432,-0.760614275932312,0.11994145065546,0.0217302646487951,0.99254322052002,0.6248779296875,0.779670894145966,-0.0405074134469032,0.0969874933362007,0.994211554527283,0.0462261997163296,0.201325714588165,-0.0176723469048738,0.979364991188049,0.295237421989441,-0.262750148773193,0.91858446598053,-0.431491583585739,-0.34963247179985,0.831608176231384,-0.213638931512833,-0.222127705812454,0.951324224472046,-0.213638931512833,-0.222127705812454,0.951324224472046,0.0581935755908489,-0.0401759929955006,0.997496604919434,0.295237421989441,-0.262750148773193,0.91858446598053,0.0830798223614693,-0.0442910753190517,0.995558261871338,0.11994145065546,0.0217302646487951,0.99254322052002,0.201325714588165,-0.0176723469048738,0.979364991188049,-0.0909333750605583,0.0776019245386124,0.992828845977783,-0.741054892539978,-0.670942306518555,0.0259636752307415,-0.93052726984024,-0.334483295679092,0.149130597710609,-0.647133827209473,-0.756047070026398,0.0980340018868446,-0.644363284111023,-0.764515578746796,0.0176648553460836,0.650255620479584,0.75534051656723,-0.0814162418246269,0.590953826904297,0.803487181663513,-0.071986511349678,0.641227841377258,0.766377508640289,-0.0386316291987896,0.662018358707428,0.748207628726959,-0.0437857881188393,-0.647133827209473,-0.756047070026398,0.0980340018868446,0.0830798223614693,-0.0442910753190517,0.995558261871338,-0.0909333750605583,0.0776019245386124,0.992828845977783,-0.454560130834579,-0.88553261756897,0.0959533452987671,-0.644363284111023,-0.764515578746796,0.0176648553460836,-0.602790355682373,-0.797899603843689,-0.00017361668869853,0.0362690947949886,-0.133191093802452,-0.990426480770111,-0.0968802869319916,-0.0418020822107792,-0.994417905807495,0.650255620479584,0.75534051656723,-0.0814162418246269,0.605571746826172,0.790157437324524,-0.0945212692022324,-0.0158217754215002,0.00795129407197237,-0.999843239784241,
- -0.063592903316021,0.0497789271175861,-0.996733725070953,0.068000502884388,0.0786530300974846,0.994580149650574,0.6248779296875,0.779670894145966,-0.0405074134469032,0.11994145065546,0.0217302646487951,0.99254322052002,0.295237421989441,-0.262750148773193,0.91858446598053,0.0581935755908489,-0.0401759929955006,0.997496604919434,0.068000502884388,0.0786530300974846,0.994580149650574,-0.063592903316021,0.0497789271175861,-0.996733725070953,-0.0968802869319916,-0.0418020822107792,-0.994417905807495,0.0362690947949886,-0.133191093802452,-0.990426480770111,-0.400488138198853,0.312340259552002,-0.86142498254776,-0.171195939183235,0.306095212697983,-0.936481654644012,0.322676777839661,0.943529963493347,-0.0750399455428123,-0.400488138198853,0.312340259552002,-0.86142498254776,-0.602790355682373,-0.797899603843689,-0.00017361668869853,-0.454560130834579,-0.88553261756897,0.0959533452987671,-0.177418604493141,-0.908211588859558,0.379044264554977,-0.307864099740982,-0.946799576282501,-0.0937566235661507,0.201325714588165,-0.0176723469048738,0.979364991188049,0.0969874933362007,0.994211554527283,0.0462261997163296,0.155576646327972,0.972592949867249,0.172797173261642,0.0798718109726906,0.0581443943083286,0.995107889175415,0.0479879342019558,0.00344844488427043,0.998842000961304,0.201325714588165,-0.0176723469048738,0.979364991188049,0.0798718109726906,0.0581443943083286,0.995107889175415,0.0362690947949886,-0.133191093802452,-0.990426480770111,-0.602790355682373,-0.797899603843689,-0.00017361668869853,-0.307864099740982,-0.946799576282501,-0.0937566235661507,-0.173514053225517,0.0457385443150997,-0.983768701553345,0.0362690947949886,-0.133191093802452,-0.990426480770111,-0.307864099740982,-0.946799576282501,-0.0937566235661507,-0.400488138198853,0.312340259552002,-0.86142498254776,0.590953826904297,0.803487181663513,-0.071986511349678,0.650255620479584,0.75534051656723,-0.0814162418246269,-0.063592903316021,0.0497789271175861,-0.996733725070953,0.295237421989441,-0.262750148773193,0.91858446598053,0.068000502884388,0.0786530300974846,0.994580149650574,
- 0.11994145065546,0.0217302646487951,0.99254322052002,0.0830798223614693,-0.0442910753190517,0.995558261871338,-0.400488138198853,0.312340259552002,-0.86142498254776,-0.173514053225517,0.0457385443150997,-0.983768701553345,-0.171195939183235,0.306095212697983,-0.936481654644012,0.641227841377258,0.766377508640289,-0.0386316291987896,0.590953826904297,0.803487181663513,-0.071986511349678,0.322676777839661,0.943529963493347,-0.0750399455428123,0.0943941920995712,0.976560771465302,0.193440034985542,-0.400488138198853,0.312340259552002,-0.86142498254776,0.0362690947949886,-0.133191093802452,-0.990426480770111,-0.173514053225517,0.0457385443150997,-0.983768701553345,-0.0909333750605583,0.0776019245386124,0.992828845977783,0.0479879342019558,0.00344844488427043,0.998842000961304,-0.177418604493141,-0.908211588859558,0.379044264554977,-0.0909333750605583,0.0776019245386124,0.992828845977783,0.201325714588165,-0.0176723469048738,0.979364991188049,0.0479879342019558,0.00344844488427043,0.998842000961304,-0.454560130834579,-0.88553261756897,0.0959533452987671,-0.0909333750605583,0.0776019245386124,0.992828845977783,-0.177418604493141,-0.908211588859558,0.379044264554977,0.786297738552094,0.615053832530975,-0.0586926601827145,0.605571746826172,0.790157437324524,-0.0945212692022324,0.650255620479584,0.75534051656723,-0.0814162418246269,0.662018358707428,0.748207628726959,-0.0437857881188393,0.100994750857353,0.00153676816262305,0.994885802268982,0.0699475556612015,0.0264859534800053,0.99719899892807,0.0659561902284622,0.00298620900139213,0.997818052768707,0.074261374771595,-0.0213707387447357,0.997009873390198,0.0652202889323235,-0.0300436764955521,0.997418582439423,0.0927812829613686,-0.0502171292901039,0.994419455528259,0.111204624176025,-0.0376992300152779,0.993082284927368,0.108177274465561,-0.00333255529403687,0.994126081466675,0.106027022004128,-0.000654164701700211,0.994363069534302,-0.0158217754215002,0.00795129407197237,-0.999843239784241,0.605571746826172,0.790157437324524,-0.0945212692022324,0.672366976737976,0.513984560966492,-0.532674908638,
- 0.12844417989254,0.15576408803463,-0.979407906532288,0.806698381900787,0.565280199050903,-0.172325983643532,0.786297738552094,0.615053832530975,-0.0586926601827145,-0.306592613458633,0.43493863940239,0.846657872200012,0.806698381900787,0.565280199050903,-0.172325983643532,0.672366976737976,0.513984560966492,-0.532674908638,0.605571746826172,0.790157437324524,-0.0945212692022324,0.786297738552094,0.615053832530975,-0.0586926601827145,0.00790516380220652,0.0466538779437542,0.998879849910736,0.0798718109726906,0.0581443943083286,0.995107889175415,0.155576646327972,0.972592949867249,0.172797173261642,-0.180130124092102,-0.0713470429182053,0.981051921844482,-0.161298081278801,0.00859052035957575,0.986868441104889,0.00450284266844392,-0.439854711294174,0.898057699203491,0.00462155463173985,0.00394424423575401,0.999981582164764,0.0734163001179695,-0.0387922525405884,0.996546685695648,-0.0133082680404186,-0.0446270629763603,0.998915076255798,0.0821898579597473,0.0356693342328072,0.995978236198425,0.00755769247189164,-0.999562978744507,0.02858149074018,0.202029094099998,-0.978842973709106,0.0324153900146484,-0.0133082680404186,-0.0446270629763603,0.998915076255798,0.0734163001179695,-0.0387922525405884,0.996546685695648,-0.249990850687027,-0.967740297317505,-0.031359288841486,0.202029094099998,-0.978842973709106,0.0324153900146484,0.00755769247189164,-0.999562978744507,0.02858149074018,0.266368210315704,-0.610474109649658,-0.745901703834534,0.958626568317413,0.273198634386063,0.0799848660826683,0.128141492605209,-0.298897296190262,-0.945642828941345,0.0371057875454426,-0.00582176214084029,-0.999294459819794,0.128141492605209,-0.298897296190262,-0.945642828941345,0.138057261705399,-0.0170691795647144,-0.990277171134949,0.068227119743824,0.0195518787950277,-0.997478306293488,0.0135149983689189,0.194553479552269,-0.980798900127411,0.0251285172998905,0.0372594334185123,-0.998989641666412,-0.18117581307888,-0.00979520473629236,-0.983402013778687,0.0066129700280726,-0.0367934256792068,-0.999301075935364,-0.128199815750122,0.991305410861969,-0.0296383835375309,
- -0.308569937944412,0.948998808860779,0.0646987184882164,-0.56305468082428,0.819288551807404,-0.108332052826881,0.026386171579361,-0.0161333065479994,-0.999521613121033,-0.0177582800388336,-0.324441492557526,-0.945739090442657,0.100355133414268,-0.033534899353981,-0.994386434555054,0.0288631170988083,0.0188203398138285,-0.999406218528748,-0.929891884326935,0.335858434438705,-0.150000840425491,-0.982409954071045,0.0852840468287468,-0.166124746203423,0.026386171579361,-0.0161333065479994,-0.999521613121033,0.0288631170988083,0.0188203398138285,-0.999406218528748,-0.929285109043121,0.359832346439362,-0.0833671391010284,-0.989262580871582,0.100306376814842,-0.106293775141239,-0.982409954071045,0.0852840468287468,-0.166124746203423,-0.929891884326935,0.335858434438705,-0.150000840425491,-0.0999851077795029,-0.00508512975648046,0.994975924491882,-0.0731472447514534,0.132792219519615,0.988441109657288,-0.181261822581291,-0.0757287442684174,0.980514824390411,-0.177934572100639,0.00940502807497978,0.983997404575348,-0.0158217754215002,0.00795129407197237,-0.999843239784241,-0.263971984386444,0.133324697613716,-0.955271363258362,-0.0968802869319916,-0.0418020822107792,-0.994417905807495,-0.063592903316021,0.0497789271175861,-0.996733725070953,0.504665851593018,-0.231547608971596,-0.831683874130249,-0.127403393387794,0.0830860808491707,-0.98836487531662,0.21739387512207,-0.0097122872248292,-0.976035714149475,-0.400488138198853,0.312340259552002,-0.86142498254776,0.322676777839661,0.943529963493347,-0.0750399455428123,0.590953826904297,0.803487181663513,-0.071986511349678,-0.136089935898781,-0.0049254591576755,0.99068421125412,-0.251257508993149,-0.150586053729057,0.956134736537933,-0.0219522807747126,0.131723806262016,0.991043329238892,-0.034523718059063,-0.0541144646704197,0.997937798500061,-0.0219522807747126,0.131723806262016,0.991043329238892,0.673681616783142,0.0699637681245804,0.735702514648438,-0.034523718059063,-0.0541144646704197,0.997937798500061,-0.251257508993149,-0.150586053729057,0.956134736537933,-0.986674249172211,0.162699863314629,-0.00163861364126205,
- -0.221177965402603,-0.0451864749193192,0.974186062812805,0.184604242444038,0.0219974480569363,0.982566833496094,0.201319605112076,-0.0588172897696495,0.97775810956955,0.122657015919685,0.266758263111115,0.955926477909088,0.104995660483837,0.0207385830581188,0.994256436824799,0.12069596350193,0.0207141619175673,0.992473423480988,-0.889383792877197,-0.433520913124084,0.145107060670853,-0.989610493183136,-0.00560089014470577,0.143665418028831,0.122436478734016,-0.022328982129693,0.992225229740143,-0.0308378394693136,0.00562630128115416,-0.999508619308472,-0.0745062306523323,-0.0557484291493893,-0.995661020278931,-0.14082957804203,0.0186968240886927,-0.989857375621796,0.0915081948041916,0.00212334864772856,0.995802104473114,-0.635350525379181,-0.50958126783371,0.580221235752106,0.0320909172296524,0.0743904560804367,0.996712744235992,-0.987542748451233,-0.0447572506964207,0.15085157752037,-0.986268639564514,-0.0468096658587456,0.158376291394234,-0.966629326343536,0.250218868255615,0.0549397692084312,-0.99503481388092,0.0130107123404741,0.0986734703183174,0.0410667806863785,0.00435880105942488,-0.999146938323975,-0.103297784924507,0.334033638238907,-0.936883747577667,-0.0424882210791111,0.0200710520148277,-0.998895347118378,0.997120499610901,-0.0059802089817822,-0.0755975097417831,0.982913494110107,-0.0634147673845291,-0.172799631953239,0.951478600502014,-0.305151581764221,-0.0396357141435146,0.125273525714874,-0.29077810049057,0.94855409860611,0.153745964169502,-0.00708631053566933,0.988085091114044,-0.0239486135542393,-0.121907666325569,0.992252469062805,-0.00543408514931798,-0.110647261142731,-0.993844866752625,0.159332469105721,0.156607016921043,-0.974724292755127,-0.0854390636086464,0.093570351600647,-0.991939902305603,0.942010343074799,0.311664581298828,-0.124425679445267,0.935816824436188,0.339179068803787,-0.0959403067827225,0.993756651878357,0.0199605319648981,-0.109769500792027,0.985726535320282,0.0444923266768456,-0.162368938326836,-0.971063435077667,0.153416335582733,0.183028280735016,-0.905681014060974,0.411850541830063,0.100603669881821,
- -0.985719740390778,0.136871054768562,0.0980972573161125,-0.993864715099335,-0.0495127998292446,0.0989009365439415,-0.987989246845245,-0.0204622838646173,0.153162240982056,-0.0752088278532028,0.00582752656191587,-0.997150778770447,-0.126849204301834,0.0162728913128376,-0.991788566112518,-0.141720935702324,-0.076380118727684,-0.986955583095551,-0.0634383708238602,0.0494094975292683,-0.996761918067932,0.148403093218803,0.0424673743546009,0.988014698028564,0.989870429039001,-0.0549075901508331,-0.130926698446274,0.99287360906601,0.0923973694443703,-0.0752644017338753,-0.0151354167610407,0.157990664243698,-0.987324595451355,-0.0634383708238602,0.0494094975292683,-0.996761918067932,-0.141720935702324,-0.076380118727684,-0.986955583095551,0.927191913127899,0.372932851314545,0.0351601727306843,0.960936665534973,0.244769081473351,-0.12918584048748,0.188778176903725,0.133632227778435,0.972885012626648,-0.973232328891754,0.174126088619232,0.149996563792229,-0.987657904624939,0.0558712854981422,0.146322667598724,-0.994561851024628,0.0511161684989929,0.0907416790723801,-0.878297209739685,-0.474204808473587,0.061023898422718,-0.0745062306523323,-0.0557484291493893,-0.995661020278931,-0.130636036396027,-0.0559637285768986,-0.98984968662262,-0.14082957804203,0.0186968240886927,-0.989857375621796,0.0410667806863785,0.00435880105942488,-0.999146938323975,0.015829112380743,0.170676454901695,-0.985200047492981,-0.116383709013462,-0.101844027638435,-0.987969040870667,0.862811088562012,-0.450142681598663,-0.230062216520309,0.867792785167694,-0.493918597698212,-0.0545911863446236,0.852369844913483,-0.474610060453415,-0.219570130109787,0.111072048544884,-0.033000610768795,0.993264377117157,0.104995660483837,0.0207385830581188,0.994256436824799,-0.987989246845245,-0.0204622838646173,0.153162240982056,-0.14163613319397,-0.20522229373455,-0.968412578105927,0.0106115629896522,0.163186147809029,-0.986538231372833,-0.0713643208146095,0.0183127149939537,-0.997282266616821,-0.124296694993973,0.0103380521759391,-0.992191255092621,-0.0308378394693136,0.00562630128115416,-0.999508619308472,
- 0.0116524798795581,-0.0421090796589851,-0.999045133590698,-0.0745062306523323,-0.0557484291493893,-0.995661020278931,0.874591648578644,-0.442118585109711,-0.199049383401871,0.988877832889557,-0.0513081550598145,-0.139600157737732,0.0106115629896522,0.163186147809029,-0.986538231372833,-0.14699299633503,0.0953860655426979,-0.98452764749527,-0.955545604228973,-0.27746456861496,0.0997308492660522,-0.126849204301834,0.0162728913128376,-0.991788566112518,0.444253742694855,0.339649796485901,-0.829021573066711,0.837131023406982,0.526609063148499,-0.147968277335167,0.826885759830475,0.491896867752075,-0.27257564663887,0.21089893579483,-0.019676374271512,-0.977309882640839,0.50966864824295,0.185538902878761,-0.840126872062683,-0.078751765191555,-0.0699712038040161,-0.994435667991638,0.88010185956955,0.437279969453812,-0.184951141476631,0.988088488578796,0.139028459787369,-0.0659725517034531,0.957228481769562,0.283889144659042,-0.0558626540005207,-0.706827223300934,-0.00684251636266708,-0.707353115081787,-0.985719740390778,0.136871054768562,0.0980972573161125,-0.869117617607117,0.490385919809341,0.0644679367542267,0.977195262908936,0.0928158164024353,-0.190983414649963,0.987666010856628,-0.110781610012054,-0.110649637877941,0.867792785167694,-0.493918597698212,-0.0545911863446236,0.862811088562012,-0.450142681598663,-0.230062216520309,0.0177418813109398,0.127300024032593,0.991705656051636,0.05711355432868,0.0498395375907421,0.997122883796692,0.134438931941986,-0.0402441509068012,0.9901043176651,0.942010343074799,0.311664581298828,-0.124425679445267,0.88010185956955,0.437279969453812,-0.184951141476631,0.935816824436188,0.339179068803787,-0.0959403067827225,-0.14082957804203,0.0186968240886927,-0.989857375621796,-0.130636036396027,-0.0559637285768986,-0.98984968662262,-0.665427327156067,-0.0367019772529602,-0.745559811592102,0.148403093218803,0.0424673743546009,0.988014698028564,0.99287360906601,0.0923973694443703,-0.0752644017338753,0.184604242444038,0.0219974480569363,0.982566833496094,0.852369844913483,-0.474610060453415,-0.219570130109787,
- 0.867792785167694,-0.493918597698212,-0.0545911863446236,0.951478600502014,-0.305151581764221,-0.0396357141435146,-0.985643804073334,0.152036726474762,0.0734251737594604,-0.887081682682037,-0.439145922660828,0.142257273197174,-0.949766755104065,-0.295060634613037,0.104318805038929,-0.934709966182709,-0.353273391723633,0.0389266759157181,-0.943012177944183,-0.0584701783955097,-0.327581137418747,-0.949766755104065,-0.295060634613037,0.104318805038929,0.107105225324631,0.0125856380909681,0.994168043136597,0.0177418813109398,0.127300024032593,0.991705656051636,0.134438931941986,-0.0402441509068012,0.9901043176651,0.107105225324631,0.0125856380909681,0.994168043136597,-0.0246340334415436,0.199294969439507,0.979629933834076,0.0177418813109398,0.127300024032593,0.991705656051636,0.893184542655945,0.444786548614502,-0.0662287697196007,0.981368541717529,0.11200899630785,-0.156108394265175,0.735178589820862,0.499033629894257,-0.458778619766235,-0.078751765191555,-0.0699712038040161,-0.994435667991638,-0.14163613319397,-0.20522229373455,-0.968412578105927,-0.130636036396027,-0.0559637285768986,-0.98984968662262,-0.949766755104065,-0.295060634613037,0.104318805038929,-0.943012177944183,-0.0584701783955097,-0.327581137418747,-0.985643804073334,0.152036726474762,0.0734251737594604,0.150247290730476,-0.009479652158916,0.988603055477142,0.148403093218803,0.0424673743546009,0.988014698028564,0.184604242444038,0.0219974480569363,0.982566833496094,0.104995660483837,0.0207385830581188,0.994256436824799,0.111072048544884,-0.033000610768795,0.993264377117157,-0.987989246845245,-0.0204622838646173,0.153162240982056,0.104995660483837,0.0207385830581188,0.994256436824799,0.122657015919685,0.266758263111115,0.955926477909088,-0.971063435077667,0.153416335582733,0.183028280735016,0.122657015919685,0.266758263111115,0.955926477909088,0.245764762163162,0.0211095679551363,0.969099640846252,0.143868207931519,0.11041234433651,0.983418107032776,0.146607175469399,-0.0589068233966827,0.987439274787903,0.228847503662109,0.18988935649395,0.954762160778046,
- 0.218581214547157,-0.0132262734696269,0.97572910785675,0.144073411822319,0.0236856825649738,0.989283561706543,-0.962220847606659,0.216519087553024,0.165077909827232,-0.969916820526123,0.222023397684097,0.0998349338769913,-0.864628314971924,0.438371986150742,0.245454341173172,-0.936353981494904,0.319317847490311,0.145867899060249,-0.677303969860077,0.42056804895401,0.603640496730804,0.112785875797272,-0.106050781905651,0.987943649291992,0.50966864824295,0.185538902878761,-0.840126872062683,0.0106115629896522,0.163186147809029,-0.986538231372833,-0.078751765191555,-0.0699712038040161,-0.994435667991638,-0.987989246845245,-0.0204622838646173,0.153162240982056,-0.951769530773163,0.268717020750046,0.148074463009834,0.111072048544884,-0.033000610768795,0.993264377117157,-0.286945343017578,-0.0692846924066544,0.955438137054443,-0.951769530773163,0.268717020750046,0.148074463009834,-0.949766755104065,-0.295060634613037,0.104318805038929,-0.103297784924507,0.334033638238907,-0.936883747577667,0.0410667806863785,0.00435880105942488,-0.999146938323975,0.150821760296822,0.413510650396347,-0.897920787334442,-0.869117617607117,0.490385919809341,0.0644679367542267,-0.864628314971924,0.438371986150742,0.245454341173172,-0.969916820526123,0.222023397684097,0.0998349338769913,-0.286945343017578,-0.0692846924066544,0.955438137054443,-0.887081682682037,-0.439145922660828,0.142257273197174,0.130634248256683,0.150184348225594,0.979989528656006,-0.962220847606659,0.216519087553024,0.165077909827232,0.125190004706383,-0.299292951822281,0.945912897586823,0.142533600330353,0.0146660879254341,0.989681363105774,-0.987542748451233,-0.0447572506964207,0.15085157752037,-0.962220847606659,0.216519087553024,0.165077909827232,-0.864628314971924,0.438371986150742,0.245454341173172,-0.272158622741699,0.331281363964081,0.903428077697754,0.125190004706383,-0.299292951822281,0.945912897586823,-0.864628314971924,0.438371986150742,0.245454341173172,0.122657015919685,0.266758263111115,0.955926477909088,-0.272158622741699,0.331281363964081,0.903428077697754,
- 0.942010343074799,0.311664581298828,-0.124425679445267,0.985726535320282,0.0444923266768456,-0.162368938326836,0.885835528373718,-0.0828949883580208,-0.456534683704376,0.942010343074799,0.311664581298828,-0.124425679445267,0.885835528373718,-0.0828949883580208,-0.456534683704376,0.88010185956955,0.437279969453812,-0.184951141476631,0.951478600502014,-0.305151581764221,-0.0396357141435146,0.982913494110107,-0.0634147673845291,-0.172799631953239,0.852369844913483,-0.474610060453415,-0.219570130109787,-0.116383709013462,-0.101844027638435,-0.987969040870667,0.015829112380743,0.170676454901695,-0.985200047492981,-0.0260182414203882,-0.0104788299649954,-0.999606549739838,-0.0308378394693136,0.00562630128115416,-0.999508619308472,-0.96727055311203,0.188633188605309,-0.16972129046917,-0.955545604228973,-0.27746456861496,0.0997308492660522,-0.14699299633503,0.0953860655426979,-0.98452764749527,-0.97363018989563,0.178272277116776,0.142349004745483,-0.955545604228973,-0.27746456861496,0.0997308492660522,-0.96727055311203,0.188633188605309,-0.16972129046917,-0.110938757658005,0.217431977391243,0.96975040435791,-0.516338884830475,0.825829267501831,0.226716130971909,-0.141212850809097,0.180895119905472,-0.973311901092529,-0.987657904624939,0.0558712854981422,0.146322667598724,-0.973232328891754,0.174126088619232,0.149996563792229,0.146607175469399,-0.0589068233966827,0.987439274787903,0.144073411822319,0.0236856825649738,0.989283561706543,0.150821760296822,0.413510650396347,-0.897920787334442,0.0410667806863785,0.00435880105942488,-0.999146938323975,-0.116383709013462,-0.101844027638435,-0.987969040870667,-0.869117617607117,0.490385919809341,0.0644679367542267,-0.116383709013462,-0.101844027638435,-0.987969040870667,-0.706827223300934,-0.00684251636266708,-0.707353115081787,-0.677303969860077,0.42056804895401,0.603640496730804,-0.0239486135542393,-0.121907666325569,0.992252469062805,0.153745964169502,-0.00708631053566933,0.988085091114044,0.112785875797272,-0.106050781905651,0.987943649291992,0.153745964169502,-0.00708631053566933,0.988085091114044,
- 0.195684015750885,0.00207910989411175,0.980664849281311,0.2098149061203,-0.0100550847128034,0.977689445018768,0.122436478734016,-0.022328982129693,0.992225229740143,0.112785875797272,-0.106050781905651,0.987943649291992,0.826885759830475,0.491896867752075,-0.27257564663887,0.837131023406982,0.526609063148499,-0.147968277335167,0.738864302635193,0.643233597278595,-0.20082351565361,-0.955545604228973,-0.27746456861496,0.0997308492660522,-0.994621276855469,-0.0240290649235249,0.100753411650658,-0.126849204301834,0.0162728913128376,-0.991788566112518,0.245764762163162,0.0211095679551363,0.969099640846252,0.950029134750366,0.311815768480301,-0.0146885747089982,0.687565207481384,-0.725458562374115,-0.031049458310008,0.896625101566315,-0.431771069765091,-0.0981686636805534,0.211682945489883,0.0821250006556511,0.973881900310516,0.687565207481384,-0.725458562374115,-0.031049458310008,0.891451835632324,-0.423539847135544,-0.161021277308464,0.978098213672638,-0.197464570403099,-0.065814733505249,0.228847503662109,0.18988935649395,0.954762160778046,0.957228481769562,0.283889144659042,-0.0558626540005207,0.935816824436188,0.339179068803787,-0.0959403067827225,0.88010185956955,0.437279969453812,-0.184951141476631,0.960936665534973,0.244769081473351,-0.12918584048748,0.989870429039001,-0.0549075901508331,-0.130926698446274,0.148403093218803,0.0424673743546009,0.988014698028564,0.19327275454998,-0.122688837349415,0.973443984985352,0.107105225324631,0.0125856380909681,0.994168043136597,0.134438931941986,-0.0402441509068012,0.9901043176651,0.99370151758194,-0.0246616080403328,-0.109312474727631,0.2098149061203,-0.0100550847128034,0.977689445018768,0.195684015750885,0.00207910989411175,0.980664849281311,0.915423810482025,-0.397458076477051,-0.0634528174996376,-0.923283278942108,-0.37960010766983,0.0587508976459503,-0.635350525379181,-0.50958126783371,0.580221235752106,-0.520462036132813,-0.275865077972412,-0.808095157146454,0.201319605112076,-0.0588172897696495,0.97775810956955,0.950029134750366,0.311815768480301,-0.0146885747089982,
- 0.245764762163162,0.0211095679551363,0.969099640846252,0.122657015919685,0.266758263111115,0.955926477909088,0.201319605112076,-0.0588172897696495,0.97775810956955,0.245764762163162,0.0211095679551363,0.969099640846252,0.874591648578644,-0.442118585109711,-0.199049383401871,0.0106115629896522,0.163186147809029,-0.986538231372833,0.50966864824295,0.185538902878761,-0.840126872062683,0.50966864824295,0.185538902878761,-0.840126872062683,0.444253742694855,0.339649796485901,-0.829021573066711,0.826885759830475,0.491896867752075,-0.27257564663887,0.985726535320282,0.0444923266768456,-0.162368938326836,0.978037476539612,0.0905528888106346,-0.187730893492699,-0.00543408514931798,-0.110647261142731,-0.993844866752625,0.985726535320282,0.0444923266768456,-0.162368938326836,-0.00543408514931798,-0.110647261142731,-0.993844866752625,-0.0752088278532028,0.00582752656191587,-0.997150778770447,-0.990106105804443,0.0578953288495541,0.127820566296577,-0.878297209739685,-0.474204808473587,0.061023898422718,-0.086998425424099,-0.156721070408821,-0.983803749084473,-0.116383709013462,-0.101844027638435,-0.987969040870667,-0.869117617607117,0.490385919809341,0.0644679367542267,0.150821760296822,0.413510650396347,-0.897920787334442,-0.869117617607117,0.490385919809341,0.0644679367542267,-0.103297784924507,0.334033638238907,-0.936883747577667,0.150821760296822,0.413510650396347,-0.897920787334442,0.153745964169502,-0.00708631053566933,0.988085091114044,0.125273525714874,-0.29077810049057,0.94855409860611,0.195684015750885,0.00207910989411175,0.980664849281311,0.50966864824295,0.185538902878761,-0.840126872062683,0.826885759830475,0.491896867752075,-0.27257564663887,0.874591648578644,-0.442118585109711,-0.199049383401871,0.245764762163162,0.0211095679551363,0.969099640846252,0.687565207481384,-0.725458562374115,-0.031049458310008,0.211682945489883,0.0821250006556511,0.973881900310516,0.292593389749527,0.0703472569584847,0.953645884990692,-0.116383709013462,-0.101844027638435,-0.987969040870667,-0.14082957804203,0.0186968240886927,-0.989857375621796,
- -0.706827223300934,-0.00684251636266708,-0.707353115081787,0.993756651878357,0.0199605319648981,-0.109769500792027,0.928135275840759,-0.366205900907516,-0.0667705461382866,0.978037476539612,0.0905528888106346,-0.187730893492699,0.985726535320282,0.0444923266768456,-0.162368938326836,0.988877832889557,-0.0513081550598145,-0.139600157737732,0.99148017168045,-0.109549440443516,-0.0704709887504578,0.988088488578796,0.139028459787369,-0.0659725517034531,-0.103297784924507,0.334033638238907,-0.936883747577667,-0.969916820526123,0.222023397684097,0.0998349338769913,-0.99503481388092,0.0130107123404741,0.0986734703183174,-0.115858763456345,0.0127888405695558,-0.993183374404907,-0.969916820526123,0.222023397684097,0.0998349338769913,-0.103297784924507,0.334033638238907,-0.936883747577667,-0.869117617607117,0.490385919809341,0.0644679367542267,0.987143158912659,0.0267530884593725,-0.157584473490715,0.982913494110107,-0.0634147673845291,-0.172799631953239,0.997120499610901,-0.0059802089817822,-0.0755975097417831,-0.14699299633503,0.0953860655426979,-0.98452764749527,-0.0854390636086464,0.093570351600647,-0.991939902305603,-0.96727055311203,0.188633188605309,-0.16972129046917,-0.00543408514931798,-0.110647261142731,-0.993844866752625,-0.0854390636086464,0.093570351600647,-0.991939902305603,-0.14699299633503,0.0953860655426979,-0.98452764749527,-0.993864715099335,-0.0495127998292446,0.0989009365439415,-0.14082957804203,0.0186968240886927,-0.989857375621796,-0.665427327156067,-0.0367019772529602,-0.745559811592102,0.188778176903725,0.133632227778435,0.972885012626648,0.996713757514954,0.0492344684898853,-0.0643252432346344,0.927191913127899,0.372932851314545,0.0351601727306843,-0.0260182414203882,-0.0104788299649954,-0.999606549739838,0.987143158912659,0.0267530884593725,-0.157584473490715,-0.0308378394693136,0.00562630128115416,-0.999508619308472,0.987143158912659,0.0267530884593725,-0.157584473490715,0.0116524798795581,-0.0421090796589851,-0.999045133590698,-0.0308378394693136,0.00562630128115416,-0.999508619308472,-0.141720935702324,-0.076380118727684,-0.986955583095551,
- -0.971929669380188,0.220295861363411,0.0825987234711647,-0.990106105804443,0.0578953288495541,0.127820566296577,-0.086998425424099,-0.156721070408821,-0.983803749084473,-0.086998425424099,-0.156721070408821,-0.983803749084473,-0.0151354167610407,0.157990664243698,-0.987324595451355,-0.141720935702324,-0.076380118727684,-0.986955583095551,-0.934709966182709,-0.353273391723633,0.0389266759157181,-0.993864715099335,-0.0495127998292446,0.0989009365439415,-0.665427327156067,-0.0367019772529602,-0.745559811592102,-0.130636036396027,-0.0559637285768986,-0.98984968662262,-0.943012177944183,-0.0584701783955097,-0.327581137418747,-0.934709966182709,-0.353273391723633,0.0389266759157181,-0.665427327156067,-0.0367019772529602,-0.745559811592102,0.0410667806863785,0.00435880105942488,-0.999146938323975,0.862811088562012,-0.450142681598663,-0.230062216520309,0.015829112380743,0.170676454901695,-0.985200047492981,0.0661553740501404,-0.191256955265999,-0.979308128356934,0.91287225484848,0.366738468408585,-0.179352015256882,0.957489132881165,0.241170898079872,-0.158276051282883,-0.0199461076408625,-0.0223848354071379,-0.999550521373749,-0.971063435077667,0.153416335582733,0.183028280735016,0.122657015919685,0.266758263111115,0.955926477909088,-0.864628314971924,0.438371986150742,0.245454341173172,0.852369844913483,-0.474610060453415,-0.219570130109787,-0.0260182414203882,-0.0104788299649954,-0.999606549739838,0.015829112380743,0.170676454901695,-0.985200047492981,0.015829112380743,0.170676454901695,-0.985200047492981,0.862811088562012,-0.450142681598663,-0.230062216520309,0.852369844913483,-0.474610060453415,-0.219570130109787,0.21089893579483,-0.019676374271512,-0.977309882640839,-0.0745062306523323,-0.0557484291493893,-0.995661020278931,0.0116524798795581,-0.0421090796589851,-0.999045133590698,-0.905681014060974,0.411850541830063,0.100603669881821,-0.864628314971924,0.438371986150742,0.245454341173172,-0.869117617607117,0.490385919809341,0.0644679367542267,-0.971063435077667,0.153416335582733,0.183028280735016,-0.864628314971924,0.438371986150742,0.245454341173172,
- -0.905681014060974,0.411850541830063,0.100603669881821,0.981368541717529,0.11200899630785,-0.156108394265175,0.248730406165123,0.194789752364159,-0.94878351688385,0.735178589820862,0.499033629894257,-0.458778619766235,0.248730406165123,0.194789752364159,-0.94878351688385,-0.0929271578788757,0.135818064212799,-0.986366033554077,-0.0538113154470921,0.123156324028969,-0.990927278995514,-0.878297209739685,-0.474204808473587,0.061023898422718,-0.118680737912655,0.0252749007195234,-0.99261075258255,-0.086998425424099,-0.156721070408821,-0.983803749084473,0.243307709693909,0.0362788736820221,0.969270527362823,0.121776483952999,0.0750661045312881,0.989714860916138,0.20635923743248,-0.0758247673511505,0.975533962249756,0.981368541717529,0.11200899630785,-0.156108394265175,-0.0929271578788757,0.135818064212799,-0.986366033554077,0.248730406165123,0.194789752364159,-0.94878351688385,-0.078751765191555,-0.0699712038040161,-0.994435667991638,-0.130636036396027,-0.0559637285768986,-0.98984968662262,-0.0745062306523323,-0.0557484291493893,-0.995661020278931,0.21089893579483,-0.019676374271512,-0.977309882640839,-0.078751765191555,-0.0699712038040161,-0.994435667991638,-0.0745062306523323,-0.0557484291493893,-0.995661020278931,-0.951769530773163,0.268717020750046,0.148074463009834,-0.286945343017578,-0.0692846924066544,0.955438137054443,0.111072048544884,-0.033000610768795,0.993264377117157,0.111072048544884,-0.033000610768795,0.993264377117157,-0.286945343017578,-0.0692846924066544,0.955438137054443,0.150247290730476,-0.009479652158916,0.988603055477142,-0.0713643208146095,0.0183127149939537,-0.997282266616821,0.985962390899658,0.0245053619146347,-0.165159821510315,-0.0599534474313259,0.100433133542538,-0.993135929107666,0.985962390899658,0.0245053619146347,-0.165159821510315,-0.0151354167610407,0.157990664243698,-0.987324595451355,-0.0599534474313259,0.100433133542538,-0.993135929107666,0.874591648578644,-0.442118585109711,-0.199049383401871,0.826885759830475,0.491896867752075,-0.27257564663887,0.988055825233459,-0.113856799900532,-0.103838324546814,
- 0.735178589820862,0.499033629894257,-0.458778619766235,0.850418925285339,0.526096284389496,-0.00322770327329636,0.893184542655945,0.444786548614502,-0.0662287697196007,0.169173210859299,-0.0180794224143028,0.98542058467865,0.287705272436142,0.371550500392914,0.882709503173828,0.0915081948041916,0.00212334864772856,0.995802104473114,0.960936665534973,0.244769081473351,-0.12918584048748,0.148403093218803,0.0424673743546009,0.988014698028564,0.150247290730476,-0.009479652158916,0.988603055477142,0.960936665534973,0.244769081473351,-0.12918584048748,0.150247290730476,-0.009479652158916,0.988603055477142,0.188778176903725,0.133632227778435,0.972885012626648,-0.887081682682037,-0.439145922660828,0.142257273197174,-0.286945343017578,-0.0692846924066544,0.955438137054443,-0.949766755104065,-0.295060634613037,0.104318805038929,0.287705272436142,0.371550500392914,0.882709503173828,0.169173210859299,-0.0180794224143028,0.98542058467865,0.587250411510468,0.809162199497223,-0.0198389664292336,-0.943012177944183,-0.0584701783955097,-0.327581137418747,-0.130636036396027,-0.0559637285768986,-0.98984968662262,-0.14163613319397,-0.20522229373455,-0.968412578105927,-0.923283278942108,-0.37960010766983,0.0587508976459503,-0.520462036132813,-0.275865077972412,-0.808095157146454,-0.0453673154115677,-0.128156393766403,-0.990715861320496,-0.985719740390778,0.136871054768562,0.0980972573161125,-0.905681014060974,0.411850541830063,0.100603669881821,-0.869117617607117,0.490385919809341,0.0644679367542267,0.982913494110107,-0.0634147673845291,-0.172799631953239,0.987143158912659,0.0267530884593725,-0.157584473490715,-0.0260182414203882,-0.0104788299649954,-0.999606549739838,0.852369844913483,-0.474610060453415,-0.219570130109787,0.982913494110107,-0.0634147673845291,-0.172799631953239,-0.0260182414203882,-0.0104788299649954,-0.999606549739838,-0.286945343017578,-0.0692846924066544,0.955438137054443,0.188778176903725,0.133632227778435,0.972885012626648,0.150247290730476,-0.009479652158916,0.988603055477142,-0.520462036132813,-0.275865077972412,-0.808095157146454,
- 0.248730406165123,0.194789752364159,-0.94878351688385,-0.0538113154470921,0.123156324028969,-0.990927278995514,-0.520462036132813,-0.275865077972412,-0.808095157146454,-0.0538113154470921,0.123156324028969,-0.990927278995514,-0.0453673154115677,-0.128156393766403,-0.990715861320496,-0.973232328891754,0.174126088619232,0.149996563792229,0.325943797826767,-0.274352580308914,0.904705166816711,0.146607175469399,-0.0589068233966827,0.987439274787903,-0.949766755104065,-0.295060634613037,0.104318805038929,-0.951769530773163,0.268717020750046,0.148074463009834,-0.934709966182709,-0.353273391723633,0.0389266759157181,-0.985643804073334,0.152036726474762,0.0734251737594604,-0.943012177944183,-0.0584701783955097,-0.327581137418747,-0.14163613319397,-0.20522229373455,-0.968412578105927,-0.878297209739685,-0.474204808473587,0.061023898422718,-0.994561851024628,0.0511161684989929,0.0907416790723801,-0.124296694993973,0.0103380521759391,-0.992191255092621,-0.118680737912655,0.0252749007195234,-0.99261075258255,-0.973232328891754,0.174126088619232,0.149996563792229,-0.990232825279236,-0.0281846951693296,0.136545032262802,0.325943797826767,-0.274352580308914,0.904705166816711,-0.936353981494904,0.319317847490311,0.145867899060249,-0.989610493183136,-0.00560089014470577,0.143665418028831,-0.994621276855469,-0.0240290649235249,0.100753411650658,-0.955545604228973,-0.27746456861496,0.0997308492660522,-0.97363018989563,0.178272277116776,0.142349004745483,-0.97363018989563,0.178272277116776,0.142349004745483,-0.96727055311203,0.188633188605309,-0.16972129046917,-0.677303969860077,0.42056804895401,0.603640496730804,-0.936353981494904,0.319317847490311,0.145867899060249,0.993889153003693,-0.0706259310245514,-0.0848314762115479,0.979207634925842,0.0243364702910185,-0.201395556330681,0.978037476539612,0.0905528888106346,-0.187730893492699,0.928135275840759,-0.366205900907516,-0.0667705461382866,0.159332469105721,0.156607016921043,-0.974724292755127,-0.00543408514931798,-0.110647261142731,-0.993844866752625,0.978037476539612,0.0905528888106346,-0.187730893492699,
- 0.979207634925842,0.0243364702910185,-0.201395556330681,0.885835528373718,-0.0828949883580208,-0.456534683704376,0.985726535320282,0.0444923266768456,-0.162368938326836,-0.0634383708238602,0.0494094975292683,-0.996761918067932,-0.0151354167610407,0.157990664243698,-0.987324595451355,0.885835528373718,-0.0828949883580208,-0.456534683704376,-0.0634383708238602,0.0494094975292683,-0.996761918067932,0.985962390899658,0.0245053619146347,-0.165159821510315,0.988088488578796,0.139028459787369,-0.0659725517034531,0.88010185956955,0.437279969453812,-0.184951141476631,0.988055825233459,-0.113856799900532,-0.103838324546814,0.99148017168045,-0.109549440443516,-0.0704709887504578,0.988877832889557,-0.0513081550598145,-0.139600157737732,0.874591648578644,-0.442118585109711,-0.199049383401871,0.826885759830475,0.491896867752075,-0.27257564663887,0.961420118808746,0.273316502571106,0.0311393328011036,0.988055825233459,-0.113856799900532,-0.103838324546814,0.738864302635193,0.643233597278595,-0.20082351565361,0.961420118808746,0.273316502571106,0.0311393328011036,0.826885759830475,0.491896867752075,-0.27257564663887,0.745299875736237,0.663648188114166,-0.0640255287289619,0.20635923743248,-0.0758247673511505,0.975533962249756,0.2098149061203,-0.0100550847128034,0.977689445018768,0.99370151758194,-0.0246616080403328,-0.109312474727631,0.243307709693909,0.0362788736820221,0.969270527362823,0.20635923743248,-0.0758247673511505,0.975533962249756,0.745299875736237,0.663648188114166,-0.0640255287289619,0.243307709693909,0.0362788736820221,0.969270527362823,0.745299875736237,0.663648188114166,-0.0640255287289619,0.891451835632324,-0.423539847135544,-0.161021277308464,0.891451835632324,-0.423539847135544,-0.161021277308464,0.228847503662109,0.18988935649395,0.954762160778046,0.243307709693909,0.0362788736820221,0.969270527362823,0.218851789832115,0.028942096978426,0.975328803062439,0.990671396255493,0.0719108879566193,-0.115754917263985,0.790280342102051,0.610593736171722,-0.0513072982430458,0.236708506941795,-0.0664563700556755,0.969305276870728,
- -0.923283278942108,-0.37960010766983,0.0587508976459503,-0.791549980640411,-0.59793895483017,0.12616591155529,-0.635350525379181,-0.50958126783371,0.580221235752106,0.0320909172296524,0.0743904560804367,0.996712744235992,-0.635350525379181,-0.50958126783371,0.580221235752106,-0.791549980640411,-0.59793895483017,0.12616591155529,0.122703708708286,0.00110775604844093,0.992442727088928,0.169173210859299,-0.0180794224143028,0.98542058467865,0.0915081948041916,0.00212334864772856,0.995802104473114,0.0915081948041916,0.00212334864772856,0.995802104473114,0.0320909172296524,0.0743904560804367,0.996712744235992,0.122703708708286,0.00110775604844093,0.992442727088928,0.21089893579483,-0.019676374271512,-0.977309882640839,0.444253742694855,0.339649796485901,-0.829021573066711,0.50966864824295,0.185538902878761,-0.840126872062683,0.21089893579483,-0.019676374271512,-0.977309882640839,0.837131023406982,0.526609063148499,-0.147968277335167,0.444253742694855,0.339649796485901,-0.829021573066711,0.987143158912659,0.0267530884593725,-0.157584473490715,0.837131023406982,0.526609063148499,-0.147968277335167,0.0116524798795581,-0.0421090796589851,-0.999045133590698,0.88010185956955,0.437279969453812,-0.184951141476631,0.885835528373718,-0.0828949883580208,-0.456534683704376,-0.0151354167610407,0.157990664243698,-0.987324595451355,0.985962390899658,0.0245053619146347,-0.165159821510315,0.88010185956955,0.437279969453812,-0.184951141476631,-0.0151354167610407,0.157990664243698,-0.987324595451355,0.988877832889557,-0.0513081550598145,-0.139600157737732,0.985962390899658,0.0245053619146347,-0.165159821510315,-0.0713643208146095,0.0183127149939537,-0.997282266616821,0.0106115629896522,0.163186147809029,-0.986538231372833,0.988877832889557,-0.0513081550598145,-0.139600157737732,-0.0713643208146095,0.0183127149939537,-0.997282266616821,-0.70444792509079,-0.236685737967491,0.66912853717804,-0.114026926457882,-0.840478837490082,-0.529710531234741,-0.571826636791229,-0.819170892238617,0.044423907995224,0.125190004706383,-0.299292951822281,0.945912897586823,
- -0.272158622741699,0.331281363964081,0.903428077697754,0.143868207931519,0.11041234433651,0.983418107032776,0.0656500905752182,-0.036375317722559,0.997179567813873,0.142533600330353,0.0146660879254341,0.989681363105774,0.218851789832115,0.028942096978426,0.975328803062439,0.236708506941795,-0.0664563700556755,0.969305276870728,0.112367153167725,0.335610657930374,0.935274958610535,-0.990232825279236,-0.0281846951693296,0.136545032262802,-0.990106105804443,0.0578953288495541,0.127820566296577,-0.971929669380188,0.220295861363411,0.0825987234711647,-0.973232328891754,0.174126088619232,0.149996563792229,-0.990106105804443,0.0578953288495541,0.127820566296577,-0.990232825279236,-0.0281846951693296,0.136545032262802,-0.973232328891754,0.174126088619232,0.149996563792229,-0.878297209739685,-0.474204808473587,0.061023898422718,-0.990106105804443,0.0578953288495541,0.127820566296577,0.978098213672638,-0.197464570403099,-0.065814733505249,0.996713757514954,0.0492344684898853,-0.0643252432346344,0.218581214547157,-0.0132262734696269,0.97572910785675,0.228847503662109,0.18988935649395,0.954762160778046,0.112785875797272,-0.106050781905651,0.987943649291992,0.122436478734016,-0.022328982129693,0.992225229740143,-0.989610493183136,-0.00560089014470577,0.143665418028831,-0.936353981494904,0.319317847490311,0.145867899060249,0.20635923743248,-0.0758247673511505,0.975533962249756,0.12069596350193,0.0207141619175673,0.992473423480988,0.122436478734016,-0.022328982129693,0.992225229740143,0.2098149061203,-0.0100550847128034,0.977689445018768,-0.14699299633503,0.0953860655426979,-0.98452764749527,-0.126849204301834,0.0162728913128376,-0.991788566112518,-0.0752088278532028,0.00582752656191587,-0.997150778770447,-0.00543408514931798,-0.110647261142731,-0.993844866752625,-0.994621276855469,-0.0240290649235249,0.100753411650658,-0.971929669380188,0.220295861363411,0.0825987234711647,-0.141720935702324,-0.076380118727684,-0.986955583095551,-0.126849204301834,0.0162728913128376,-0.991788566112518,0.985726535320282,0.0444923266768456,-0.162368938326836,
- -0.0752088278532028,0.00582752656191587,-0.997150778770447,-0.0634383708238602,0.0494094975292683,-0.996761918067932,-0.989610493183136,-0.00560089014470577,0.143665418028831,-0.889383792877197,-0.433520913124084,0.145107060670853,-0.971929669380188,0.220295861363411,0.0825987234711647,-0.994621276855469,-0.0240290649235249,0.100753411650658,-0.887081682682037,-0.439145922660828,0.142257273197174,-0.985643804073334,0.152036726474762,0.0734251737594604,-0.994561851024628,0.0511161684989929,0.0907416790723801,-0.987657904624939,0.0558712854981422,0.146322667598724,0.144073411822319,0.0236856825649738,0.989283561706543,0.218581214547157,-0.0132262734696269,0.97572910785675,0.188778176903725,0.133632227778435,0.972885012626648,0.130634248256683,0.150184348225594,0.979989528656006,-0.887081682682037,-0.439145922660828,0.142257273197174,-0.987657904624939,0.0558712854981422,0.146322667598724,0.144073411822319,0.0236856825649738,0.989283561706543,0.130634248256683,0.150184348225594,0.979989528656006,-0.124296694993973,0.0103380521759391,-0.992191255092621,-0.994561851024628,0.0511161684989929,0.0907416790723801,-0.985643804073334,0.152036726474762,0.0734251737594604,-0.14163613319397,-0.20522229373455,-0.968412578105927,0.218581214547157,-0.0132262734696269,0.97572910785675,0.996713757514954,0.0492344684898853,-0.0643252432346344,0.188778176903725,0.133632227778435,0.972885012626648,-0.0308378394693136,0.00562630128115416,-0.999508619308472,-0.14082957804203,0.0186968240886927,-0.989857375621796,-0.116383709013462,-0.101844027638435,-0.987969040870667,0.990443825721741,0.039258074015379,-0.13221187889576,0.738864302635193,0.643233597278595,-0.20082351565361,0.837131023406982,0.526609063148499,-0.147968277335167,-0.951769530773163,0.268717020750046,0.148074463009834,-0.987989246845245,-0.0204622838646173,0.153162240982056,-0.993864715099335,-0.0495127998292446,0.0989009365439415,-0.934709966182709,-0.353273391723633,0.0389266759157181,0.184604242444038,0.0219974480569363,0.982566833496094,0.99287360906601,0.0923973694443703,-0.0752644017338753,
- 0.950029134750366,0.311815768480301,-0.0146885747089982,0.201319605112076,-0.0588172897696495,0.97775810956955,-0.993864715099335,-0.0495127998292446,0.0989009365439415,-0.985719740390778,0.136871054768562,0.0980972573161125,-0.706827223300934,-0.00684251636266708,-0.707353115081787,-0.14082957804203,0.0186968240886927,-0.989857375621796,-0.969916820526123,0.222023397684097,0.0998349338769913,-0.962220847606659,0.216519087553024,0.165077909827232,-0.987542748451233,-0.0447572506964207,0.15085157752037,-0.99503481388092,0.0130107123404741,0.0986734703183174,-0.0929271578788757,0.135818064212799,-0.986366033554077,-0.0453673154115677,-0.128156393766403,-0.990715861320496,-0.0538113154470921,0.123156324028969,-0.990927278995514,0.984315514564514,0.00282554794102907,-0.176394686102867,0.91804438829422,-0.352457523345947,-0.181571453809738,0.977376759052277,-0.136230885982513,-0.161789447069168,0.992131292819977,-0.0211923904716969,-0.123395048081875,0.993085503578186,0.0176406558603048,-0.116060368716717,-0.987542748451233,-0.0447572506964207,0.15085157752037,0.142533600330353,0.0146660879254341,0.989681363105774,0.112367153167725,0.335610657930374,0.935274958610535,-0.986268639564514,-0.0468096658587456,0.158376291394234,-0.99503481388092,0.0130107123404741,0.0986734703183174,-0.966629326343536,0.250218868255615,0.0549397692084312,-0.115313351154327,-0.149133428931236,-0.982070326805115,-0.115858763456345,0.0127888405695558,-0.993183374404907,-0.0424882210791111,0.0200710520148277,-0.998895347118378,0.977195262908936,0.0928158164024353,-0.190983414649963,0.862811088562012,-0.450142681598663,-0.230062216520309,0.0410667806863785,0.00435880105942488,-0.999146938323975,0.211682945489883,0.0821250006556511,0.973881900310516,0.896625101566315,-0.431771069765091,-0.0981686636805534,0.990671396255493,0.0719108879566193,-0.115754917263985,0.218851789832115,0.028942096978426,0.975328803062439,0.0656500905752182,-0.036375317722559,0.997179567813873,0.292593389749527,0.0703472569584847,0.953645884990692,0.211682945489883,0.0821250006556511,0.973881900310516,
- 0.125190004706383,-0.299292951822281,0.945912897586823,-0.0599534474313259,0.100433133542538,-0.993135929107666,-0.118680737912655,0.0252749007195234,-0.99261075258255,-0.124296694993973,0.0103380521759391,-0.992191255092621,-0.0713643208146095,0.0183127149939537,-0.997282266616821,0.988055825233459,-0.113856799900532,-0.103838324546814,0.961420118808746,0.273316502571106,0.0311393328011036,0.99148017168045,-0.109549440443516,-0.0704709887504578,0.990443825721741,0.039258074015379,-0.13221187889576,0.837131023406982,0.526609063148499,-0.147968277335167,0.987143158912659,0.0267530884593725,-0.157584473490715,0.997120499610901,-0.0059802089817822,-0.0755975097417831,0.195684015750885,0.00207910989411175,0.980664849281311,0.995530247688293,0.0226911697536707,-0.0916774123907089,0.915423810482025,-0.397458076477051,-0.0634528174996376,0.0116524798795581,-0.0421090796589851,-0.999045133590698,0.837131023406982,0.526609063148499,-0.147968277335167,0.21089893579483,-0.019676374271512,-0.977309882640839,-0.118680737912655,0.0252749007195234,-0.99261075258255,-0.0151354167610407,0.157990664243698,-0.987324595451355,-0.086998425424099,-0.156721070408821,-0.983803749084473,0.243307709693909,0.0362788736820221,0.969270527362823,0.228847503662109,0.18988935649395,0.954762160778046,0.146607175469399,-0.0589068233966827,0.987439274787903,0.121776483952999,0.0750661045312881,0.989714860916138,-0.0369527786970139,-0.0010390249080956,-0.999316513538361,-0.115858763456345,0.0127888405695558,-0.993183374404907,-0.115313351154327,-0.149133428931236,-0.982070326805115,-0.00599506916478276,0.120149679481983,-0.992737710475922,0.555359363555908,0.347250878810883,-0.755640685558319,0.918617725372314,0.0175930056720972,-0.394755810499191,0.91804438829422,-0.352457523345947,-0.181571453809738,-0.00599506916478276,0.120149679481983,-0.992737710475922,0.432994365692139,-0.0815274715423584,0.897702157497406,0.988825619220734,-0.069363459944725,-0.131956875324249,0.908848881721497,-0.414945244789124,-0.0425926931202412,0.159973949193954,0.0875984355807304,0.983226776123047,
- 0.991844534873962,0.0176216810941696,-0.126229822635651,0.918617725372314,0.0175930056720972,-0.394755810499191,0.957489132881165,0.241170898079872,-0.158276051282883,0.957651913166046,0.269915342330933,-0.100242167711258,0.555359363555908,0.347250878810883,-0.755640685558319,-0.938902795314789,-0.20232991874218,-0.278431922197342,-0.0199461076408625,-0.0223848354071379,-0.999550521373749,-0.966629326343536,0.250218868255615,0.0549397692084312,-0.986268639564514,-0.0468096658587456,0.158376291394234,-0.956626236438751,0.291284829378128,0.00441884296014905,-0.938902795314789,-0.20232991874218,-0.278431922197342,0.236708506941795,-0.0664563700556755,0.969305276870728,0.790280342102051,0.610593736171722,-0.0513072982430458,0.988825619220734,-0.069363459944725,-0.131956875324249,0.432994365692139,-0.0815274715423584,0.897702157497406,0.156439483165741,0.0419651307165623,0.986795663833618,0.236708506941795,-0.0664563700556755,0.969305276870728,0.432994365692139,-0.0815274715423584,0.897702157497406,0.918617725372314,0.0175930056720972,-0.394755810499191,0.977376759052277,-0.136230885982513,-0.161789447069168,0.91804438829422,-0.352457523345947,-0.181571453809738,-0.956626236438751,0.291284829378128,0.00441884296014905,0.112367153167725,0.335610657930374,0.935274958610535,-0.565040528774261,0.408789932727814,0.716672897338867,-0.115313351154327,-0.149133428931236,-0.982070326805115,-0.966629326343536,0.250218868255615,0.0549397692084312,-0.938902795314789,-0.20232991874218,-0.278431922197342,0.555359363555908,0.347250878810883,-0.755640685558319,-0.0504377968609333,0.0436483211815357,-0.997772991657257,-0.115313351154327,-0.149133428931236,-0.982070326805115,-0.938902795314789,-0.20232991874218,-0.278431922197342,-0.00599506916478276,0.120149679481983,-0.992737710475922,0.91804438829422,-0.352457523345947,-0.181571453809738,0.984315514564514,0.00282554794102907,-0.176394686102867,-0.0369527786970139,-0.0010390249080956,-0.999316513538361,-0.0199461076408625,-0.0223848354071379,-0.999550521373749,0.957489132881165,0.241170898079872,-0.158276051282883,
- 0.918617725372314,0.0175930056720972,-0.394755810499191,0.555359363555908,0.347250878810883,-0.755640685558319,0.165475130081177,-0.00169523805379868,0.986212551593781,0.926688671112061,0.367672055959702,-0.0778815597295761,0.587250411510468,0.809162199497223,-0.0198389664292336,0.169173210859299,-0.0180794224143028,0.98542058467865,0.941934168338776,0.326482057571411,-0.0785469114780426,0.90986967086792,0.391150563955307,-0.138341993093491,0.981368541717529,0.11200899630785,-0.156108394265175,0.893184542655945,0.444786548614502,-0.0662287697196007,-0.127852559089661,0.00127418711781502,-0.991792380809784,-0.934778392314911,-0.344523221254349,0.0865626335144043,-0.923283278942108,-0.37960010766983,0.0587508976459503,-0.0453673154115677,-0.128156393766403,-0.990715861320496,-0.043114148080349,-0.00552027579396963,-0.999054908752441,-0.127852559089661,0.00127418711781502,-0.991792380809784,-0.0453673154115677,-0.128156393766403,-0.990715861320496,-0.0929271578788757,0.135818064212799,-0.986366033554077,0.125190004706383,-0.299292951822281,0.945912897586823,0.211682945489883,0.0821250006556511,0.973881900310516,0.218851789832115,0.028942096978426,0.975328803062439,0.142533600330353,0.0146660879254341,0.989681363105774,0.156439483165741,0.0419651307165623,0.986795663833618,0.432994365692139,-0.0815274715423584,0.897702157497406,0.159973949193954,0.0875984355807304,0.983226776123047,0.0971331670880318,-0.0218488853424788,0.995031595230103,0.165475130081177,-0.00169523805379868,0.986212551593781,0.169173210859299,-0.0180794224143028,0.98542058467865,0.122703708708286,0.00110775604844093,0.992442727088928,0.0320909172296524,0.0743904560804367,0.996712744235992,-0.925204277038574,-0.347187727689743,0.153159737586975,0.0971331670880318,-0.0218488853424788,0.995031595230103,0.0320909172296524,0.0743904560804367,0.996712744235992,-0.791549980640411,-0.59793895483017,0.12616591155529,-0.971043348312378,0.158978030085564,0.178327679634094,-0.974278390407562,-0.197493433952332,0.108526773750782,-0.956626236438751,0.291284829378128,0.00441884296014905,
- -0.938902795314789,-0.20232991874218,-0.278431922197342,-0.974278390407562,-0.197493433952332,0.108526773750782,-0.829530775547028,-0.55391001701355,0.0711500868201256,-0.956626236438751,0.291284829378128,0.00441884296014905,-0.565040528774261,0.408789932727814,0.716672897338867,-0.0391076281666756,-0.0793117955327034,0.996082484722137,0.981368541717529,0.11200899630785,-0.156108394265175,0.90986967086792,0.391150563955307,-0.138341993093491,-0.043114148080349,-0.00552027579396963,-0.999054908752441,-0.0929271578788757,0.135818064212799,-0.986366033554077,-0.00599506916478276,0.120149679481983,-0.992737710475922,-0.0504377968609333,0.0436483211815357,-0.997772991657257,0.555359363555908,0.347250878810883,-0.755640685558319,0.992131292819977,-0.0211923904716969,-0.123395048081875,0.977376759052277,-0.136230885982513,-0.161789447069168,0.918617725372314,0.0175930056720972,-0.394755810499191,0.991844534873962,0.0176216810941696,-0.126229822635651,-0.00599506916478276,0.120149679481983,-0.992737710475922,-0.115313351154327,-0.149133428931236,-0.982070326805115,-0.0504377968609333,0.0436483211815357,-0.997772991657257,-0.956626236438751,0.291284829378128,0.00441884296014905,-0.0391076281666756,-0.0793117955327034,0.996082484722137,0.105485484004021,-0.155085206031799,0.982253193855286,-0.971043348312378,0.158978030085564,0.178327679634094,0.112367153167725,0.335610657930374,0.935274958610535,0.156439483165741,0.0419651307165623,0.986795663833618,-0.565040528774261,0.408789932727814,0.716672897338867,-0.938902795314789,-0.20232991874218,-0.278431922197342,-0.956626236438751,0.291284829378128,0.00441884296014905,-0.974278390407562,-0.197493433952332,0.108526773750782,-0.934778392314911,-0.344523221254349,0.0865626335144043,-0.925204277038574,-0.347187727689743,0.153159737586975,-0.791549980640411,-0.59793895483017,0.12616591155529,-0.923283278942108,-0.37960010766983,0.0587508976459503,0.112367153167725,0.335610657930374,0.935274958610535,0.236708506941795,-0.0664563700556755,0.969305276870728,0.156439483165741,0.0419651307165623,0.986795663833618,
- 0.156439483165741,0.0419651307165623,0.986795663833618,0.159973949193954,0.0875984355807304,0.983226776123047,-0.0391076281666756,-0.0793117955327034,0.996082484722137,0.156439483165741,0.0419651307165623,0.986795663833618,-0.0391076281666756,-0.0793117955327034,0.996082484722137,-0.565040528774261,0.408789932727814,0.716672897338867,-0.986268639564514,-0.0468096658587456,0.158376291394234,0.112367153167725,0.335610657930374,0.935274958610535,-0.956626236438751,0.291284829378128,0.00441884296014905,-0.0199461076408625,-0.0223848354071379,-0.999550521373749,-0.938902795314789,-0.20232991874218,-0.278431922197342,-0.192473143339157,0.24301515519619,-0.95073539018631,-0.192473143339157,0.24301515519619,-0.95073539018631,-0.829530775547028,-0.55391001701355,0.0711500868201256,-0.934778392314911,-0.344523221254349,0.0865626335144043,-0.127852559089661,0.00127418711781502,-0.991792380809784,-0.829530775547028,-0.55391001701355,0.0711500868201256,-0.974278390407562,-0.197493433952332,0.108526773750782,-0.971043348312378,0.158978030085564,0.178327679634094,-0.925204277038574,-0.347187727689743,0.153159737586975,-0.934778392314911,-0.344523221254349,0.0865626335144043,-0.971043348312378,0.158978030085564,0.178327679634094,0.105485484004021,-0.155085206031799,0.982253193855286,0.0971331670880318,-0.0218488853424788,0.995031595230103,-0.925204277038574,-0.347187727689743,0.153159737586975,0.159973949193954,0.0875984355807304,0.983226776123047,0.105485484004021,-0.155085206031799,0.982253193855286,-0.0391076281666756,-0.0793117955327034,0.996082484722137,0.159973949193954,0.0875984355807304,0.983226776123047,0.908848881721497,-0.414945244789124,-0.0425926931202412,0.926688671112061,0.367672055959702,-0.0778815597295761,0.165475130081177,-0.00169523805379868,0.986212551593781,0.957651913166046,0.269915342330933,-0.100242167711258,0.957489132881165,0.241170898079872,-0.158276051282883,0.91287225484848,0.366738468408585,-0.179352015256882,0.90986967086792,0.391150563955307,-0.138341993093491,0.941934168338776,0.326482057571411,-0.0785469114780426,
- -0.043114148080349,-0.00552027579396963,-0.999054908752441,0.90986967086792,0.391150563955307,-0.138341993093491,0.91287225484848,0.366738468408585,-0.179352015256882,0.0661553740501404,-0.191256955265999,-0.979308128356934,-0.988318681716919,0.014684428460896,0.15169221162796,-0.97462922334671,-0.148948207497597,0.167070031166077,-0.96624368429184,0.251440584659576,0.0561319850385189,-0.997523963451386,-0.00351448240689933,0.0702400878071785,0.0388054326176643,-0.000777311157435179,-0.999246537685394,-0.145540744066238,0.241475909948349,-0.959430754184723,-0.0502635464072227,-0.0300147887319326,-0.998284876346588,0.179078549146652,0.607693433761597,0.773718118667603,0.988259136676788,-0.108601823449135,-0.107468292117119,0.993028163909912,-0.0169445425271988,-0.116653762757778,-0.900645136833191,0.407595425844193,0.150679871439934,-0.988975346088409,-0.132082179188728,0.066949725151062,-0.833916783332825,0.0122099202126265,0.55175518989563,-0.145540744066238,0.241475909948349,-0.959430754184723,0.0388054326176643,-0.000777311157435179,-0.999246537685394,-0.311018705368042,-0.00038659357232973,-0.950403809547424,-0.591921508312225,-0.0208580680191517,-0.805725753307343,-0.833916783332825,0.0122099202126265,0.55175518989563,-0.988975346088409,-0.132082179188728,0.066949725151062,-0.900645136833191,0.407595425844193,0.150679871439934,0.0743784978985786,-0.282304406166077,0.956437170505524,0.10679479688406,-0.00852226745337248,0.994244635105133,-0.988318681716919,0.014684428460896,0.15169221162796,-0.900645136833191,0.407595425844193,0.150679871439934,-0.833916783332825,0.0122099202126265,0.55175518989563,-0.467303335666656,0.000565766589716077,0.884096920490265,0.0743784978985786,-0.282304406166077,0.956437170505524,-0.591921508312225,-0.0208580680191517,-0.805725753307343,-0.145540744066238,0.241475909948349,-0.959430754184723,-0.311018705368042,-0.00038659357232973,-0.950403809547424,0.103565454483032,-0.00331931887194514,0.994617164134979,0.267076641321182,-0.0170189067721367,0.963525056838989,0.184174135327339,0.0377416871488094,0.982168793678284,
- -0.145540744066238,0.241475909948349,-0.959430754184723,-0.988975346088409,-0.132082179188728,0.066949725151062,-0.997523963451386,-0.00351448240689933,0.0702400878071785,-0.142557308077812,-0.00107947911601514,-0.989785969257355,-0.988975346088409,-0.132082179188728,0.066949725151062,-0.145540744066238,0.241475909948349,-0.959430754184723,-0.591921508312225,-0.0208580680191517,-0.805725753307343,0.188526898622513,0.00356585578992963,0.982061564922333,0.993164002895355,-0.00197058054618537,-0.116710908710957,0.847947239875793,0.526100873947144,-0.0648340061306953,0.212654292583466,-0.121135152876377,0.969589829444885,0.0743784978985786,-0.282304406166077,0.956437170505524,-0.467303335666656,0.000565766589716077,0.884096920490265,-0.21241582930088,-0.00583953130990267,0.977162003517151,-0.21241582930088,-0.00583953130990267,0.977162003517151,0.103565454483032,-0.00331931887194514,0.994617164134979,0.0743784978985786,-0.282304406166077,0.956437170505524,0.10679479688406,-0.00852226745337248,0.994244635105133,0.188526898622513,0.00356585578992963,0.982061564922333,0.212654292583466,-0.121135152876377,0.969589829444885,0.116600006818771,0.141578659415245,0.983036041259766,-0.988975346088409,-0.132082179188728,0.066949725151062,-0.900645136833191,0.407595425844193,0.150679871439934,-0.988318681716919,0.014684428460896,0.15169221162796,-0.997523963451386,-0.00351448240689933,0.0702400878071785,0.985269844532013,0.0486623048782349,-0.163937240839005,0.974737584590912,-0.14672563970089,-0.168399587273598,0.960771679878235,-0.248144432902336,-0.123863637447357,0.993028163909912,-0.0169445425271988,-0.116653762757778,-0.988318681716919,0.014684428460896,0.15169221162796,0.10679479688406,-0.00852226745337248,0.994244635105133,0.116600006818771,0.141578659415245,0.983036041259766,-0.97462922334671,-0.148948207497597,0.167070031166077,-0.997523963451386,-0.00351448240689933,0.0702400878071785,-0.96624368429184,0.251440584659576,0.0561319850385189,-0.145067468285561,-0.127449482679367,-0.981178998947144,-0.142557308077812,-0.00107947911601514,-0.989785969257355,
- 0.985269844532013,0.0486623048782349,-0.163937240839005,0.756888270378113,0.636810839176178,-0.146942839026451,-0.0502635464072227,-0.0300147887319326,-0.998284876346588,-0.0598601549863815,0.0210619065910578,-0.99798458814621,0.184174135327339,0.0377416871488094,0.982168793678284,0.993164002895355,-0.00197058054618537,-0.116710908710957,0.188526898622513,0.00356585578992963,0.982061564922333,0.0743784978985786,-0.282304406166077,0.956437170505524,0.103565454483032,-0.00331931887194514,0.994617164134979,0.184174135327339,0.0377416871488094,0.982168793678284,-0.0598601549863815,0.0210619065910578,-0.99798458814621,-0.142557308077812,-0.00107947911601514,-0.989785969257355,-0.145067468285561,-0.127449482679367,-0.981178998947144,-0.0472807586193085,0.469178825616837,-0.881836712360382,0.159332469105721,0.156607016921043,-0.974724292755127,0.979207634925842,0.0243364702910185,-0.201395556330681,-0.0472807586193085,0.469178825616837,-0.881836712360382,-0.96624368429184,0.251440584659576,0.0561319850385189,-0.97462922334671,-0.148948207497597,0.167070031166077,-0.677303969860077,0.42056804895401,0.603640496730804,-0.96727055311203,0.188633188605309,-0.16972129046917,0.212654292583466,-0.121135152876377,0.969589829444885,0.847947239875793,0.526100873947144,-0.0648340061306953,0.995530247688293,0.0226911697536707,-0.0916774123907089,0.125273525714874,-0.29077810049057,0.94855409860611,-0.0239486135542393,-0.121907666325569,0.992252469062805,0.212654292583466,-0.121135152876377,0.969589829444885,0.125273525714874,-0.29077810049057,0.94855409860611,-0.145067468285561,-0.127449482679367,-0.981178998947144,-0.96624368429184,0.251440584659576,0.0561319850385189,-0.96727055311203,0.188633188605309,-0.16972129046917,-0.0854390636086464,0.093570351600647,-0.991939902305603,-0.145067468285561,-0.127449482679367,-0.981178998947144,-0.96727055311203,0.188633188605309,-0.16972129046917,-0.0472807586193085,0.469178825616837,-0.881836712360382,0.974737584590912,-0.14672563970089,-0.168399587273598,0.985269844532013,0.0486623048782349,-0.163937240839005,
- -0.0598601549863815,0.0210619065910578,-0.99798458814621,0.0743784978985786,-0.282304406166077,0.956437170505524,0.184174135327339,0.0377416871488094,0.982168793678284,0.188526898622513,0.00356585578992963,0.982061564922333,0.10679479688406,-0.00852226745337248,0.994244635105133,-0.0472807586193085,0.469178825616837,-0.881836712360382,-0.0854390636086464,0.093570351600647,-0.991939902305603,0.159332469105721,0.156607016921043,-0.974724292755127,0.960771679878235,-0.248144432902336,-0.123863637447357,0.974737584590912,-0.14672563970089,-0.168399587273598,0.979207634925842,0.0243364702910185,-0.201395556330681,0.993889153003693,-0.0706259310245514,-0.0848314762115479,-0.0472807586193085,0.469178825616837,-0.881836712360382,-0.145067468285561,-0.127449482679367,-0.981178998947144,-0.0854390636086464,0.093570351600647,-0.991939902305603,-0.052872397005558,-0.606762766838074,-0.793122589588165,-0.231583058834076,-0.300976425409317,0.925085067749023,0.182590484619141,0.871688485145569,0.454774677753448,0.116600006818771,0.141578659415245,0.983036041259766,0.212654292583466,-0.121135152876377,0.969589829444885,-0.0239486135542393,-0.121907666325569,0.992252469062805,-0.97462922334671,-0.148948207497597,0.167070031166077,0.116600006818771,0.141578659415245,0.983036041259766,-0.677303969860077,0.42056804895401,0.603640496730804,0.988259136676788,-0.108601823449135,-0.107468292117119,0.756888270378113,0.636810839176178,-0.146942839026451,0.985269844532013,0.0486623048782349,-0.163937240839005,0.993028163909912,-0.0169445425271988,-0.116653762757778,0.131722122430801,0.00492269219830632,0.991274476051331,0.113390535116196,0.0358072742819786,0.992905080318451,0.092610776424408,0.0219147782772779,0.995461225509644,0.0862872898578644,0.000761616800446063,0.996270060539246,0.0739006847143173,0.000693831651005894,0.997265458106995,0.0851289853453636,-0.020461767911911,0.996159851551056,0.113340690732002,-0.0182112455368042,0.993389308452606,0.134322181344032,-0.00221023871563375,0.990935206413269,0.134908884763718,0.000826674047857523,0.990857720375061,
- -0.0502635464072227,-0.0300147887319326,-0.998284876346588,0.756888270378113,0.636810839176178,-0.146942839026451,0.28032585978508,0.0209938585758209,-0.959675312042236,0.0388054326176643,-0.000777311157435179,-0.999246537685394,0.914726853370667,0.0113475052639842,-0.403913676738739,0.988259136676788,-0.108601823449135,-0.107468292117119,0.179078549146652,0.607693433761597,0.773718118667603,0.914726853370667,0.0113475052639842,-0.403913676738739,0.28032585978508,0.0209938585758209,-0.959675312042236,0.756888270378113,0.636810839176178,-0.146942839026451,0.988259136676788,-0.108601823449135,-0.107468292117119,0.195684015750885,0.00207910989411175,0.980664849281311,0.125273525714874,-0.29077810049057,0.94855409860611,0.995530247688293,0.0226911697536707,-0.0916774123907089,0.130634248256683,0.150184348225594,0.979989528656006,0.188778176903725,0.133632227778435,0.972885012626648,-0.286945343017578,-0.0692846924066544,0.955438137054443,0.121776483952999,0.0750661045312881,0.989714860916138,0.325943797826767,-0.274352580308914,0.904705166816711,0.12069596350193,0.0207141619175673,0.992473423480988,0.20635923743248,-0.0758247673511505,0.975533962249756,-0.990232825279236,-0.0281846951693296,0.136545032262802,-0.889383792877197,-0.433520913124084,0.145107060670853,0.12069596350193,0.0207141619175673,0.992473423480988,0.325943797826767,-0.274352580308914,0.904705166816711,-0.971929669380188,0.220295861363411,0.0825987234711647,-0.889383792877197,-0.433520913124084,0.145107060670853,-0.990232825279236,-0.0281846951693296,0.136545032262802,-0.938902795314789,-0.20232991874218,-0.278431922197342,-0.829530775547028,-0.55391001701355,0.0711500868201256,-0.192473143339157,0.24301515519619,-0.95073539018631,-0.0199461076408625,-0.0223848354071379,-0.999550521373749,-0.192473143339157,0.24301515519619,-0.95073539018631,-0.127852559089661,0.00127418711781502,-0.991792380809784,-0.043114148080349,-0.00552027579396963,-0.999054908752441,0.0661553740501404,-0.191256955265999,-0.979308128356934,-0.0599534474313259,0.100433133542538,-0.993135929107666,
- -0.0151354167610407,0.157990664243698,-0.987324595451355,-0.118680737912655,0.0252749007195234,-0.99261075258255,0.988877832889557,-0.0513081550598145,-0.139600157737732,0.988088488578796,0.139028459787369,-0.0659725517034531,0.985962390899658,0.0245053619146347,-0.165159821510315,-0.0424882210791111,0.0200710520148277,-0.998895347118378,-0.103297784924507,0.334033638238907,-0.936883747577667,-0.115858763456345,0.0127888405695558,-0.993183374404907,-0.0369527786970139,-0.0010390249080956,-0.999316513538361,0.984315514564514,0.00282554794102907,-0.176394686102867,0.977195262908936,0.0928158164024353,-0.190983414649963,-0.0424882210791111,0.0200710520148277,-0.998895347118378,-0.0369527786970139,-0.0010390249080956,-0.999316513538361,0.993085503578186,0.0176406558603048,-0.116060368716717,0.987666010856628,-0.110781610012054,-0.110649637877941,0.977195262908936,0.0928158164024353,-0.190983414649963,0.984315514564514,0.00282554794102907,-0.176394686102867,0.0971331670880318,-0.0218488853424788,0.995031595230103,0.105485484004021,-0.155085206031799,0.982253193855286,0.159973949193954,0.0875984355807304,0.983226776123047,0.165475130081177,-0.00169523805379868,0.986212551593781,-0.0502635464072227,-0.0300147887319326,-0.998284876346588,-0.145540744066238,0.241475909948349,-0.959430754184723,-0.142557308077812,-0.00107947911601514,-0.989785969257355,-0.0598601549863815,0.0210619065910578,-0.99798458814621,-0.078751765191555,-0.0699712038040161,-0.994435667991638,0.0106115629896522,0.163186147809029,-0.986538231372833,-0.14163613319397,-0.20522229373455,-0.968412578105927,-0.0472807586193085,0.469178825616837,-0.881836712360382,0.979207634925842,0.0243364702910185,-0.201395556330681,0.974737584590912,-0.14672563970089,-0.168399587273598,0.245764762163162,0.0211095679551363,0.969099640846252,0.292593389749527,0.0703472569584847,0.953645884990692,0.0656500905752182,-0.036375317722559,0.997179567813873,0.143868207931519,0.11041234433651,0.983418107032776,0.110815808176994,0.0109633235260844,0.993780493736267,-0.807027637958527,-0.0143041498959064,0.590340375900269,
- 0.113801687955856,0.160974726080894,0.980375647544861,-0.988506197929382,0.00978494714945555,0.15086355805397,-0.981348693370819,-0.10876838862896,0.158506318926811,-0.948826730251312,0.311396837234497,0.0525349453091621,-0.995294749736786,0.0194633007049561,0.094918392598629,0.0400002002716064,0.0290103983134031,-0.998778522014618,-0.131797477602959,0.308382749557495,-0.942087888717651,-0.0422053076326847,0.0238458029925823,-0.998824417591095,0.918838918209076,0.350451976060867,-0.181434720754623,0.868537485599518,0.483087241649628,-0.110767647624016,0.45932549238205,0.868662893772125,-0.185593336820602,0.681292653083801,0.695235848426819,-0.229101568460464,0.133190304040909,0.161254540085793,0.977884113788605,0.115839190781116,0.0643132328987122,0.991183757781982,0.130082651972771,-0.0730375349521637,0.988809466362,0.141221329569817,0.0105234626680613,0.989922165870667,0.133190304040909,0.161254540085793,0.977884113788605,0.130082651972771,-0.0730375349521637,0.988809466362,0.141221329569817,0.0105234626680613,0.989922165870667,0.142520725727081,0.195339486002922,0.9703249335289,0.133190304040909,0.161254540085793,0.977884113788605,0.995693922042847,-0.0041736476123333,-0.0926088839769363,0.952924191951752,-0.250139683485031,-0.171364337205887,0.971030652523041,-0.000926986453123391,-0.238953649997711,-0.983525693416595,0.0870074108242989,0.15845213830471,-0.976619720458984,-0.190650761127472,0.0993289202451706,-0.970000326633453,-0.231830522418022,0.0731709524989128,-0.131797477602959,0.308382749557495,-0.942087888717651,0.0400002002716064,0.0290103983134031,-0.998778522014618,-0.325004547834396,0.108824357390404,-0.939430415630341,-0.858479857444763,-0.41264009475708,-0.304533362388611,-0.970000326633453,-0.231830522418022,0.0731709524989128,-0.976619720458984,-0.190650761127472,0.0993289202451706,-0.983525693416595,0.0870074108242989,0.15845213830471,0.0852678343653679,-0.345481097698212,0.934543907642365,0.136930957436562,0.0195204503834248,0.990388214588165,-0.988506197929382,0.00978494714945555,0.15086355805397,
- -0.983525693416595,0.0870074108242989,0.15845213830471,-0.970000326633453,-0.231830522418022,0.0731709524989128,-0.760107338428497,-0.0712068527936935,0.645884275436401,0.0852678343653679,-0.345481097698212,0.934543907642365,0.929544448852539,0.34972208738327,-0.116797640919685,0.212436616420746,0.154638931155205,0.964861392974854,0.98159396648407,0.129574477672577,-0.140299156308174,0.136267736554146,-0.101042062044144,0.985505819320679,0.141221329569817,0.0105234626680613,0.989922165870667,0.130082651972771,-0.0730375349521637,0.988809466362,-0.988869786262512,0.130964726209641,0.0706041231751442,-0.807027637958527,-0.0143041498959064,0.590340375900269,-0.593855500221252,0.0367314144968987,-0.803732872009277,-0.858479857444763,-0.41264009475708,-0.304533362388611,-0.131797477602959,0.308382749557495,-0.942087888717651,-0.325004547834396,0.108824357390404,-0.939430415630341,-0.131797477602959,0.308382749557495,-0.942087888717651,-0.976619720458984,-0.190650761127472,0.0993289202451706,-0.995294749736786,0.0194633007049561,0.094918392598629,-0.113302133977413,0.0163979399949312,-0.993425250053406,-0.976619720458984,-0.190650761127472,0.0993289202451706,-0.131797477602959,0.308382749557495,-0.942087888717651,-0.858479857444763,-0.41264009475708,-0.304533362388611,-0.0122784385457635,-0.0757477730512619,-0.997051477432251,0.966342210769653,0.143120214343071,-0.213774293661118,0.984470725059509,0.0304134432226419,-0.172894075512886,-0.0258442703634501,-0.0174388792365789,-0.999513924121857,0.952924191951752,-0.250139683485031,-0.171364337205887,0.308889746665955,-0.0267552975565195,-0.950721502304077,0.971030652523041,-0.000926986453123391,-0.238953649997711,0.308889746665955,-0.0267552975565195,-0.950721502304077,-0.0424149297177792,0.0976159647107124,-0.994319975376129,-0.0254776924848557,0.0693505927920341,-0.997267007827759,0.952924191951752,-0.250139683485031,-0.171364337205887,-0.0424149297177792,0.0976159647107124,-0.994319975376129,0.308889746665955,-0.0267552975565195,-0.950721502304077,0.971030652523041,-0.000926986453123391,-0.238953649997711,
- 0.994952797889709,-0.0562053024768829,-0.0831267312169075,0.995693922042847,-0.0041736476123333,-0.0926088839769363,0.171532943844795,-0.0521263182163239,0.983798444271088,0.419803977012634,0.168230712413788,0.891887426376343,0.110815808176994,0.0109633235260844,0.993780493736267,0.419803977012634,0.168230712413788,0.891887426376343,0.171532943844795,-0.0521263182163239,0.983798444271088,0.970061659812927,0.227916449308395,-0.083872526884079,-0.988869786262512,0.130964726209641,0.0706041231751442,-0.593855500221252,0.0367314144968987,-0.803732872009277,-0.127998918294907,-0.108189456164837,-0.98585569858551,-0.593855500221252,0.0367314144968987,-0.803732872009277,0.308889746665955,-0.0267552975565195,-0.950721502304077,-0.0254776924848557,0.0693505927920341,-0.997267007827759,-0.593855500221252,0.0367314144968987,-0.803732872009277,-0.0254776924848557,0.0693505927920341,-0.997267007827759,-0.127998918294907,-0.108189456164837,-0.98585569858551,0.214442148804665,0.0360798127949238,0.976070165634155,0.991466879844666,0.065215140581131,-0.112873159348965,0.713000774383545,0.700264811515808,-0.0354839190840721,0.238130867481232,-0.0627150908112526,0.969206154346466,-0.988869786262512,0.130964726209641,0.0706041231751442,-0.98453551530838,-0.0663900077342987,0.1621183604002,-0.807027637958527,-0.0143041498959064,0.590340375900269,0.113801687955856,0.160974726080894,0.980375647544861,-0.807027637958527,-0.0143041498959064,0.590340375900269,-0.98453551530838,-0.0663900077342987,0.1621183604002,0.144627660512924,0.00646429602056742,0.989465057849884,0.171532943844795,-0.0521263182163239,0.983798444271088,0.110815808176994,0.0109633235260844,0.993780493736267,0.110815808176994,0.0109633235260844,0.993780493736267,0.113801687955856,0.160974726080894,0.980375647544861,0.144627660512924,0.00646429602056742,0.989465057849884,0.0852678343653679,-0.345481097698212,0.934543907642365,-0.760107338428497,-0.0712068527936935,0.645884275436401,0.0796404182910919,-0.273712247610092,0.958508789539337,0.136930957436562,0.0195204503834248,0.990388214588165,
- 0.214442148804665,0.0360798127949238,0.976070165634155,0.238130867481232,-0.0627150908112526,0.969206154346466,0.0940298587083817,0.345375418663025,0.933742105960846,-0.976619720458984,-0.190650761127472,0.0993289202451706,-0.983525693416595,0.0870074108242989,0.15845213830471,-0.988506197929382,0.00978494714945555,0.15086355805397,-0.995294749736786,0.0194633007049561,0.094918392598629,-0.0424149297177792,0.0976159647107124,-0.994319975376129,-0.127998918294907,-0.108189456164837,-0.98585569858551,-0.0254776924848557,0.0693505927920341,-0.997267007827759,0.984618842601776,0.0166004505008459,-0.173925682902336,0.857166171073914,-0.477699309587479,-0.192535072565079,0.978268444538116,-0.134950920939446,-0.157414495944977,0.992972552776337,0.000452548265457153,-0.118343904614449,0.993506848812103,0.0123232649639249,-0.113103747367859,-0.988506197929382,0.00978494714945555,0.15086355805397,0.136930957436562,0.0195204503834248,0.990388214588165,0.0940298587083817,0.345375418663025,0.933742105960846,-0.981348693370819,-0.10876838862896,0.158506318926811,-0.995294749736786,0.0194633007049561,0.094918392598629,-0.948826730251312,0.311396837234497,0.0525349453091621,-0.116144120693207,-0.0755813270807266,-0.990352511405945,-0.113302133977413,0.0163979399949312,-0.993425250053406,-0.0422053076326847,0.0238458029925823,-0.998824417591095,0.918838918209076,0.350451976060867,-0.181434720754623,0.681292653083801,0.695235848426819,-0.229101568460464,0.0400002002716064,0.0290103983134031,-0.998778522014618,0.212436616420746,0.154638931155205,0.964861392974854,0.929544448852539,0.34972208738327,-0.116797640919685,0.991466879844666,0.065215140581131,-0.112873159348965,0.214442148804665,0.0360798127949238,0.976070165634155,0.0796404182910919,-0.273712247610092,0.958508789539337,0.194625318050385,0.146779537200928,0.969833433628082,0.212436616420746,0.154638931155205,0.964861392974854,0.0852678343653679,-0.345481097698212,0.934543907642365,-0.0345154106616974,-0.0116479974240065,-0.999336302280426,-0.113302133977413,0.0163979399949312,-0.993425250053406,
- -0.116144120693207,-0.0755813270807266,-0.990352511405945,0.00224255095236003,0.0868129134178162,-0.996222138404846,0.434929311275482,0.0758317112922668,-0.897265911102295,0.886824011802673,-0.108284436166286,-0.449241042137146,0.857166171073914,-0.477699309587479,-0.192535072565079,0.00224255095236003,0.0868129134178162,-0.996222138404846,0.446826219558716,-0.0714345276355743,0.891764163970947,0.986812472343445,-0.0597765222191811,-0.150426298379898,0.833524525165558,-0.551126003265381,-0.0386914312839508,0.176922023296356,0.080784447491169,0.980903923511505,0.989235579967499,0.0473673269152641,-0.138453707098961,0.886824011802673,-0.108284436166286,-0.449241042137146,0.984470725059509,0.0304134432226419,-0.172894075512886,0.993775725364685,-0.00980532728135586,-0.110967099666595,-0.289715468883514,-0.521669089794159,-0.802450299263,0.508228302001953,0.725406050682068,-0.464209198951721,0.0207187160849571,0.131935775279999,0.991041719913483,-0.948826730251312,0.311396837234497,0.0525349453091621,-0.981348693370819,-0.10876838862896,0.158506318926811,-0.879921317100525,0.461463630199432,-0.113092355430126,-0.760577321052551,0.245954096317291,-0.60085666179657,0.238130867481232,-0.0627150908112526,0.969206154346466,0.713000774383545,0.700264811515808,-0.0354839190840721,0.986812472343445,-0.0597765222191811,-0.150426298379898,0.446826219558716,-0.0714345276355743,0.891764163970947,0.149961873888969,0.0352659411728382,0.988062679767609,0.238130867481232,-0.0627150908112526,0.969206154346466,0.446826219558716,-0.0714345276355743,0.891764163970947,0.886824011802673,-0.108284436166286,-0.449241042137146,0.978268444538116,-0.134950920939446,-0.157414495944977,0.857166171073914,-0.477699309587479,-0.192535072565079,-0.879921317100525,0.461463630199432,-0.113092355430126,0.0940298587083817,0.345375418663025,0.933742105960846,-0.739588260650635,0.423185467720032,0.523376822471619,-0.116144120693207,-0.0755813270807266,-0.990352511405945,-0.948826730251312,0.311396837234497,0.0525349453091621,-0.760577321052551,0.245954096317291,-0.60085666179657,
- 0.434929311275482,0.0758317112922668,-0.897265911102295,-0.0109609374776483,0.0053736362606287,-0.999925494194031,-0.116144120693207,-0.0755813270807266,-0.990352511405945,-0.760577321052551,0.245954096317291,-0.60085666179657,0.00224255095236003,0.0868129134178162,-0.996222138404846,0.857166171073914,-0.477699309587479,-0.192535072565079,0.984618842601776,0.0166004505008459,-0.173925682902336,-0.0345154106616974,-0.0116479974240065,-0.999336302280426,-0.0258442703634501,-0.0174388792365789,-0.999513924121857,0.984470725059509,0.0304134432226419,-0.172894075512886,0.886824011802673,-0.108284436166286,-0.449241042137146,0.434929311275482,0.0758317112922668,-0.897265911102295,0.176261678338051,-0.00995817594230175,0.984292984008789,0.992303490638733,-0.0666263476014137,-0.104377664625645,0.970061659812927,0.227916449308395,-0.083872526884079,0.171532943844795,-0.0521263182163239,0.983798444271088,0.993942022323608,0.0205220561474562,-0.107972525060177,0.986710965633392,-0.0177099537104368,-0.161517262458801,0.952924191951752,-0.250139683485031,-0.171364337205887,0.995693922042847,-0.0041736476123333,-0.0926088839769363,-0.137535572052002,0.0157842822372913,-0.99037104845047,-0.994935274124146,0.0515336915850639,0.086303174495697,-0.988869786262512,0.130964726209641,0.0706041231751442,-0.127998918294907,-0.108189456164837,-0.98585569858551,-0.0696070492267609,-0.0194727964699268,-0.997384428977966,-0.137535572052002,0.0157842822372913,-0.99037104845047,-0.127998918294907,-0.108189456164837,-0.98585569858551,-0.0424149297177792,0.0976159647107124,-0.994319975376129,0.0852678343653679,-0.345481097698212,0.934543907642365,0.212436616420746,0.154638931155205,0.964861392974854,0.214442148804665,0.0360798127949238,0.976070165634155,0.136930957436562,0.0195204503834248,0.990388214588165,0.149961873888969,0.0352659411728382,0.988062679767609,0.446826219558716,-0.0714345276355743,0.891764163970947,0.176922023296356,0.080784447491169,0.980903923511505,0.0970864295959473,0.00321729853749275,0.995270848274231,0.176261678338051,-0.00995817594230175,0.984292984008789,
- 0.171532943844795,-0.0521263182163239,0.983798444271088,0.144627660512924,0.00646429602056742,0.989465057849884,0.113801687955856,0.160974726080894,0.980375647544861,-0.988125383853912,0.0322157964110374,0.150234386324883,0.0970864295959473,0.00321729853749275,0.995270848274231,0.113801687955856,0.160974726080894,0.980375647544861,-0.98453551530838,-0.0663900077342987,0.1621183604002,-0.896328508853912,0.411839783191681,0.16426607966423,-0.990175306797028,0.0680474936962128,0.12215767800808,-0.879921317100525,0.461463630199432,-0.113092355430126,-0.760577321052551,0.245954096317291,-0.60085666179657,-0.990175306797028,0.0680474936962128,0.12215767800808,-0.954573154449463,-0.288734823465347,0.0736373513936996,-0.879921317100525,0.461463630199432,-0.113092355430126,-0.739588260650635,0.423185467720032,0.523376822471619,-0.0476331524550915,-0.0704715847969055,0.996375918388367,0.952924191951752,-0.250139683485031,-0.171364337205887,0.986710965633392,-0.0177099537104368,-0.161517262458801,-0.0696070492267609,-0.0194727964699268,-0.997384428977966,-0.0424149297177792,0.0976159647107124,-0.994319975376129,0.00224255095236003,0.0868129134178162,-0.996222138404846,-0.0109609374776483,0.0053736362606287,-0.999925494194031,0.434929311275482,0.0758317112922668,-0.897265911102295,0.992972552776337,0.000452548265457153,-0.118343904614449,0.978268444538116,-0.134950920939446,-0.157414495944977,0.886824011802673,-0.108284436166286,-0.449241042137146,0.989235579967499,0.0473673269152641,-0.138453707098961,0.00224255095236003,0.0868129134178162,-0.996222138404846,-0.116144120693207,-0.0755813270807266,-0.990352511405945,-0.0109609374776483,0.0053736362606287,-0.999925494194031,-0.879921317100525,0.461463630199432,-0.113092355430126,-0.0476331524550915,-0.0704715847969055,0.996375918388367,0.0729548037052155,-0.147362306714058,0.986388385295868,-0.896328508853912,0.411839783191681,0.16426607966423,0.0940298587083817,0.345375418663025,0.933742105960846,0.149961873888969,0.0352659411728382,0.988062679767609,-0.739588260650635,0.423185467720032,0.523376822471619,
- -0.760577321052551,0.245954096317291,-0.60085666179657,-0.879921317100525,0.461463630199432,-0.113092355430126,-0.990175306797028,0.0680474936962128,0.12215767800808,-0.994935274124146,0.0515336915850639,0.086303174495697,-0.988125383853912,0.0322157964110374,0.150234386324883,-0.98453551530838,-0.0663900077342987,0.1621183604002,-0.988869786262512,0.130964726209641,0.0706041231751442,0.0940298587083817,0.345375418663025,0.933742105960846,0.238130867481232,-0.0627150908112526,0.969206154346466,0.149961873888969,0.0352659411728382,0.988062679767609,0.149961873888969,0.0352659411728382,0.988062679767609,0.176922023296356,0.080784447491169,0.980903923511505,-0.0476331524550915,-0.0704715847969055,0.996375918388367,0.149961873888969,0.0352659411728382,0.988062679767609,-0.0476331524550915,-0.0704715847969055,0.996375918388367,-0.739588260650635,0.423185467720032,0.523376822471619,-0.981348693370819,-0.10876838862896,0.158506318926811,0.0940298587083817,0.345375418663025,0.933742105960846,-0.879921317100525,0.461463630199432,-0.113092355430126,-0.0258442703634501,-0.0174388792365789,-0.999513924121857,-0.760577321052551,0.245954096317291,-0.60085666179657,-0.132626071572304,0.268554836511612,-0.954090535640717,-0.132626071572304,0.268554836511612,-0.954090535640717,-0.954573154449463,-0.288734823465347,0.0736373513936996,-0.994935274124146,0.0515336915850639,0.086303174495697,-0.137535572052002,0.0157842822372913,-0.99037104845047,-0.954573154449463,-0.288734823465347,0.0736373513936996,-0.990175306797028,0.0680474936962128,0.12215767800808,-0.896328508853912,0.411839783191681,0.16426607966423,-0.988125383853912,0.0322157964110374,0.150234386324883,-0.994935274124146,0.0515336915850639,0.086303174495697,-0.896328508853912,0.411839783191681,0.16426607966423,0.0729548037052155,-0.147362306714058,0.986388385295868,0.0970864295959473,0.00321729853749275,0.995270848274231,-0.988125383853912,0.0322157964110374,0.150234386324883,0.176922023296356,0.080784447491169,0.980903923511505,0.0729548037052155,-0.147362306714058,0.986388385295868,
- -0.0476331524550915,-0.0704715847969055,0.996375918388367,0.176922023296356,0.080784447491169,0.980903923511505,0.833524525165558,-0.551126003265381,-0.0386914312839508,0.992303490638733,-0.0666263476014137,-0.104377664625645,0.176261678338051,-0.00995817594230175,0.984292984008789,0.993775725364685,-0.00980532728135586,-0.110967099666595,0.984470725059509,0.0304134432226419,-0.172894075512886,0.966342210769653,0.143120214343071,-0.213774293661118,0.986710965633392,-0.0177099537104368,-0.161517262458801,0.993942022323608,0.0205220561474562,-0.107972525060177,-0.0696070492267609,-0.0194727964699268,-0.997384428977966,0.986710965633392,-0.0177099537104368,-0.161517262458801,0.966342210769653,0.143120214343071,-0.213774293661118,-0.0122784385457635,-0.0757477730512619,-0.997051477432251,-0.760577321052551,0.245954096317291,-0.60085666179657,-0.954573154449463,-0.288734823465347,0.0736373513936996,-0.132626071572304,0.268554836511612,-0.954090535640717,-0.0258442703634501,-0.0174388792365789,-0.999513924121857,-0.132626071572304,0.268554836511612,-0.954090535640717,-0.137535572052002,0.0157842822372913,-0.99037104845047,-0.0696070492267609,-0.0194727964699268,-0.997384428977966,-0.0122784385457635,-0.0757477730512619,-0.997051477432251,-0.0422053076326847,0.0238458029925823,-0.998824417591095,-0.131797477602959,0.308382749557495,-0.942087888717651,-0.113302133977413,0.0163979399949312,-0.993425250053406,-0.0345154106616974,-0.0116479974240065,-0.999336302280426,0.984618842601776,0.0166004505008459,-0.173925682902336,0.918838918209076,0.350451976060867,-0.181434720754623,-0.0422053076326847,0.0238458029925823,-0.998824417591095,-0.0345154106616974,-0.0116479974240065,-0.999336302280426,0.993506848812103,0.0123232649639249,-0.113103747367859,0.868537485599518,0.483087241649628,-0.110767647624016,0.918838918209076,0.350451976060867,-0.181434720754623,0.984618842601776,0.0166004505008459,-0.173925682902336,0.0970864295959473,0.00321729853749275,0.995270848274231,0.0729548037052155,-0.147362306714058,0.986388385295868,0.176922023296356,0.080784447491169,0.980903923511505,
- 0.176261678338051,-0.00995817594230175,0.984292984008789,0.194625318050385,0.146779537200928,0.969833433628082,0.98159396648407,0.129574477672577,-0.140299156308174,0.212436616420746,0.154638931155205,0.964861392974854,0.000121983503049705,-0.956798553466797,-0.290751814842224,-0.0253577791154385,-0.9571253657341,-0.288562268018723,0.00509910518303514,-0.99830162525177,0.0580352544784546,0.00169657275546342,-0.998286306858063,0.0584958009421825,-0.0298328064382076,-0.0173700861632824,0.999403953552246,0.0875237211585045,-0.0174532514065504,0.996009588241577,0.0875307768583298,0.0117042595520616,0.996093094348907,0.028998926281929,0.0116582894697785,0.999511480331421,-0.00188850343693048,0.997997462749481,0.0632271692156792,0.00551334954798222,0.998014211654663,0.0627478286623955,-0.0272699743509293,0.950237810611725,-0.310329616069794,0.000131604945636354,0.949886500835419,-0.312594920396805,0.000416246417444199,0.0704575628042221,-0.997514665126801,-0.0873190462589264,0.0707049369812012,-0.993668138980865,-0.0870938822627068,-0.100495077669621,-0.991118371486664,-0.0288565028458834,-0.100025005638599,-0.994566440582275,0.175069510936737,0.0412557944655418,0.983691394329071,0.174292162060738,-0.102701537311077,0.97932356595993,0.17521807551384,-1.03349084383808e-005,0.984529733657837,0.175217300653458,0.00295294192619622,0.984525382518768,0.17510911822319,-0.0352600030601025,0.983917534351349,0.175090059638023,-0.0382183715701103,0.983810424804688,-0.175069406628609,-0.04126937687397,0.983690798282623,-0.174292415380478,0.102686934173107,0.97932505607605,-0.17521807551384,-6.20183709543198e-006,0.984529733657837,-0.175217300653458,-0.00296547403559089,0.984525382518768,-0.175109222531319,0.0352411903440952,0.983918070793152,-0.175090178847313,0.0381993092596531,0.98381108045578,0.029687374830246,-0.100022487342358,-0.994542241096497,-0.0870940908789635,-0.100495077669621,-0.991118311882019,-0.0253577791154385,-0.9571253657341,-0.288562268018723,0.000121983503049705,-0.956798553466797,-0.290751814842224,0.146550670266151,0.548176050186157,0.823423266410828,
- 0.174853950738907,0.0649316012859344,0.98245108127594,0.174292162060738,-0.102701537311077,0.97932356595993,0.175069510936737,0.0412557944655418,0.983691394329071,0.000131604945636354,0.949886500835419,-0.312594920396805,-0.0272699743509293,0.950237810611725,-0.310329616069794,-0.0873190462589264,0.0707049369812012,-0.993668138980865,0.000416246417444199,0.0704575628042221,-0.997514665126801,-0.14654828608036,-0.548195123672485,0.823411107063293,-0.17485374212265,-0.0649478733539581,0.982450008392334,-0.174292415380478,0.102686934173107,0.97932505607605,-0.175069406628609,-0.04126937687397,0.983690798282623,-0.0298328064382076,-0.0173700861632824,0.999403953552246,0.00169657275546342,-0.998286306858063,0.0584958009421825,0.00509910518303514,-0.99830162525177,0.0580352544784546,0.0875237211585045,-0.0174532514065504,0.996009588241577,-0.00188850343693048,0.997997462749481,0.0632271692156792,0.028998926281929,0.0116582894697785,0.999511480331421,0.0875307768583298,0.0117042595520616,0.996093094348907,0.00551334954798222,0.998014211654663,0.0627478286623955,0.0256072115153074,-0.95709365606308,-0.288645178079605,0.000121983503049705,-0.956798553466797,-0.290751814842224,0.00169657275546342,-0.998286306858063,0.0584958009421825,-0.00515102921053767,-0.998300015926361,0.0580567456781864,0.0879232734441757,-0.10040407627821,-0.99105429649353,0.029687374830246,-0.100022487342358,-0.994542241096497,0.000121983503049705,-0.956798553466797,-0.290751814842224,0.0256072115153074,-0.95709365606308,-0.288645178079605,0.0881477817893028,0.0707597732543945,-0.993590950965881,0.000416246417444199,0.0704575628042221,-0.997514665126801,-0.0288565028458834,-0.100025005638599,-0.994566440582275,0.0879225730895996,-0.10040408372879,-0.991054356098175,0.0275237839668989,0.95025771856308,-0.31024631857872,0.000131604945636354,0.949886500835419,-0.312594920396805,0.000416246417444199,0.0704575628042221,-0.997514665126801,0.0881477817893028,0.0707597732543945,-0.993590950965881,-0.00556670827791095,0.998015284538269,0.0627267211675644,-0.00188850343693048,0.997997462749481,0.0632271692156792,
- 0.000131604945636354,0.949886500835419,-0.312594920396805,0.0275237839668989,0.95025771856308,-0.31024631857872,-0.00556670827791095,0.998015284538269,0.0627267211675644,-0.0883644744753838,0.011713769286871,0.996019303798676,0.028998926281929,0.0116582894697785,0.999511480331421,-0.00188850343693048,0.997997462749481,0.0632271692156792,-0.08835718780756,-0.0174363031983376,0.995936334133148,-0.0298328064382076,-0.0173700861632824,0.999403953552246,0.028998926281929,0.0116582894697785,0.999511480331421,-0.0883644744753838,0.011713769286871,0.996019303798676,-0.08835718780756,-0.0174363031983376,0.995936334133148,-0.00515102921053767,-0.998300015926361,0.0580567456781864,0.00169657275546342,-0.998286306858063,0.0584958009421825,-0.0298328064382076,-0.0173700861632824,0.999403953552246,-0.129306524991989,-0.0219527389854193,-0.991361677646637,-0.1218151897192,0.028899310156703,-0.992132067680359,-0.206193521618843,-0.100386798381805,-0.973348200321198,-0.20000247657299,-0.0200317073613405,-0.979590654373169,-0.208163216710091,-0.0305572636425495,-0.977616667747498,-0.918644964694977,0.385389566421509,0.0869857892394066,-0.993849992752075,0.00582973333075643,0.110581330955029,-0.205479636788368,0.0219795275479555,-0.978414535522461,0.129106983542442,-0.00568676553666592,0.991614401340485,0.0919399112462997,0.0623674355447292,0.993809521198273,0.0395243242383003,-0.0189765356481075,0.999038457870483,-0.207329094409943,-0.0429722405970097,-0.977326989173889,-0.942968368530273,-0.0260701477527618,-0.331859886646271,-0.226236030459404,-0.154875680804253,-0.961681246757507,-0.994199097156525,-0.0362456925213337,0.101264357566834,-0.995301127433777,0.0159287974238396,0.0955096855759621,-0.963623225688934,-0.180984184145927,0.196659833192825,-0.986267507076263,-0.0346907526254654,0.161471366882324,0.187900543212891,0.0128624085336924,0.982103943824768,0.0685722306370735,-0.33555206656456,0.939522564411163,0.130719289183617,-0.0185046754777431,0.991246819496155,0.983596920967102,0.00231942208483815,-0.180365592241287,0.997575581073761,0.0133216138929129,-0.0683057829737663,
- 0.96905255317688,-0.0317402146756649,-0.244805842638016,-0.192986771464348,0.304383158683777,-0.932795286178589,-0.179423749446869,0.00486783310770988,-0.983759880065918,-0.36002442240715,0.173972651362419,-0.916578471660614,0.164761990308762,0.119816526770592,0.979028940200806,0.322175681591034,-0.163404017686844,0.932470977306366,0.090194396674633,-0.0924056023359299,0.991628110408783,0.946934163570404,-0.300321310758591,-0.114555276930332,0.93319171667099,-0.328479021787643,-0.145790606737137,0.988118410110474,-0.0192607305943966,-0.152482837438583,0.994812488555908,-0.0436632074415684,-0.091879166662693,-0.996675610542297,-0.0621235370635986,0.0527107231318951,-0.964459300041199,-0.233492612838745,0.123691767454147,-0.987344086170197,-0.0540195964276791,0.14910925924778,-0.988219380378723,0.0374612994492054,0.148388460278511,-0.995802879333496,0.0208918545395136,0.0891078263521194,0.0976754054427147,-0.00576318241655827,0.995201706886292,0.0534943602979183,-0.0163971018046141,0.998433530330658,0.0400115959346294,0.0880334228277206,0.995313704013824,0.108234189450741,-0.0515374056994915,0.992788672447205,-0.154153496026993,-0.0415356233716011,-0.987173497676849,0.980082631111145,0.16142649948597,-0.115670122206211,0.979866504669189,-0.0877009779214859,-0.179360464215279,0.15196530520916,-0.156172916293144,0.975969612598419,0.108234189450741,-0.0515374056994915,0.992788672447205,0.0400115959346294,0.0880334228277206,0.995313704013824,0.832939445972443,-0.443426817655563,-0.331035584211349,0.981476724147797,-0.125462114810944,-0.144785270094872,-0.156206622719765,-0.108029276132584,-0.981798946857452,-0.987084686756134,-0.127576142549515,0.0968934372067451,-0.994575083255768,0.0211200322955847,0.101854041218758,-0.985616981983185,-0.027520377188921,0.166739121079445,-0.837383687496185,0.520404279232025,0.167236104607582,0.0919399112462997,0.0623674355447292,0.993809521198273,0.0407062508165836,0.0323261246085167,0.998648166656494,0.0395243242383003,-0.0189765356481075,0.999038457870483,0.187900543212891,0.0128624085336924,0.982103943824768,
- 0.15430960059166,-0.208024397492409,0.965875029563904,0.0621752701699734,0.11587555706501,0.991315841674805,0.907989025115967,0.417083859443665,0.0399628728628159,0.960365176200867,0.249805241823196,-0.123677365481853,0.960953056812286,0.2766332924366,-0.00657174922525883,-0.188320681452751,0.0231573078781366,-0.981834650039673,-0.20000247657299,-0.0200317073613405,-0.979590654373169,-0.995802879333496,0.0208918545395136,0.0891078263521194,0.0389333553612232,0.206068530678749,0.977762818336487,0.177533730864525,-0.169634535908699,0.9693843126297,0.100134544074535,-0.0183135513216257,0.99480539560318,0.0548781417310238,-0.0121323112398386,0.998419404029846,0.129106983542442,-0.00568676553666592,0.991614401340485,0.173977017402649,0.0644311234354973,0.982639610767365,0.0919399112462997,0.0623674355447292,0.993809521198273,0.891746580600739,0.451581746339798,-0.0293589495122433,0.993022799491882,0.0515617094933987,-0.106053218245506,0.177533730864525,-0.169634535908699,0.9693843126297,0.0356237925589085,-0.103936985135078,0.993945717811584,-0.961626470088959,0.225700169801712,0.155993282794952,0.0534943602979183,-0.0163971018046141,0.998433530330658,0.685914039611816,-0.311484515666962,0.657646834850311,0.918135285377502,-0.39079412817955,-0.0656332299113274,0.792287230491638,-0.608479917049408,-0.0450909249484539,0.424912869930267,0.137028262019157,0.894803047180176,0.628041207790375,-0.154646843671799,0.762658953666687,0.0824057385325432,0.102267138659954,0.991337835788727,0.903047263622284,-0.422246783971787,-0.0788262262940407,0.972414493560791,-0.131463453173637,-0.192684918642044,0.941816210746765,-0.278808206319809,-0.187745332717896,-0.485469371080399,0.090513102710247,0.869555592536926,-0.987344086170197,-0.0540195964276791,0.14910925924778,-0.922388136386871,-0.341358125209808,0.180762141942978,0.994000375270844,-0.0942249670624733,-0.0555418878793716,0.972204148769379,0.186082050204277,-0.14210057258606,0.960365176200867,0.249805241823196,-0.123677365481853,0.907989025115967,0.417083859443665,0.0399628728628159,
- 0.946934163570404,-0.300321310758591,-0.114555276930332,0.903047263622284,-0.422246783971787,-0.0788262262940407,0.93319171667099,-0.328479021787643,-0.145790606737137,0.0395243242383003,-0.0189765356481075,0.999038457870483,0.0407062508165836,0.0323261246085167,0.998648166656494,-0.474047988653183,-0.0615116134285927,0.878347754478455,-0.154153496026993,-0.0415356233716011,-0.987173497676849,0.979866504669189,-0.0877009779214859,-0.179360464215279,-0.129306524991989,-0.0219527389854193,-0.991361677646637,0.960953056812286,0.2766332924366,-0.00657174922525883,0.960365176200867,0.249805241823196,-0.123677365481853,0.96905255317688,-0.0317402146756649,-0.244805842638016,-0.967400372028351,-0.173337802290916,0.184636369347572,-0.903120517730713,0.420682191848755,0.0860235169529915,-0.979747891426086,0.106631070375443,0.169481188058853,-0.957652628421783,0.212740406394005,0.194017976522446,-0.792791903018951,-0.031546775251627,0.608675599098206,-0.979747891426086,0.106631070375443,0.169481188058853,0.985240817070007,0.0647194758057594,-0.158467903733253,0.926684319972992,0.369741767644882,-0.0674328282475472,0.967295587062836,0.253608912229538,0.00467772036790848,0.0824057385325432,0.102267138659954,0.991337835788727,0.0389333553612232,0.206068530678749,0.977762818336487,0.0407062508165836,0.0323261246085167,0.998648166656494,-0.979747891426086,0.106631070375443,0.169481188058853,-0.792791903018951,-0.031546775251627,0.608675599098206,-0.967400372028351,-0.173337802290916,0.184636369347572,-0.1551903039217,2.23997067223536e-005,-0.98788458108902,-0.154153496026993,-0.0415356233716011,-0.987173497676849,-0.129306524991989,-0.0219527389854193,-0.991361677646637,-0.20000247657299,-0.0200317073613405,-0.979590654373169,-0.188320681452751,0.0231573078781366,-0.981834650039673,-0.995802879333496,0.0208918545395136,0.0891078263521194,-0.20000247657299,-0.0200317073613405,-0.979590654373169,-0.206193521618843,-0.100386798381805,-0.973348200321198,-0.996675610542297,-0.0621235370635986,0.0527107231318951,-0.206193521618843,-0.100386798381805,-0.973348200321198,
- -0.043456707149744,-0.135316148400307,-0.989849090576172,-0.247816517949104,-0.00141295057255775,-0.968806028366089,-0.179488509893417,0.0797992646694183,-0.980518281459808,-0.0994542241096497,-0.199267774820328,-0.974885284900665,-0.11744637042284,0.0106336334720254,-0.993022322654724,-0.184517532587051,-0.0155400522053242,-0.982706427574158,-0.965675115585327,-0.24644747376442,0.0820682793855667,-0.96806788444519,-0.199006080627441,0.152450829744339,-0.907215654850006,-0.417203575372696,-0.053862102329731,-0.95431125164032,-0.28508135676384,0.0895475894212723,-0.781915247440338,-0.430768877267838,-0.450607240200043,-0.211740076541901,0.114304840564728,-0.970618665218353,0.628041207790375,-0.154646843671799,0.762658953666687,0.177533730864525,-0.169634535908699,0.9693843126297,0.0824057385325432,0.102267138659954,0.991337835788727,-0.995802879333496,0.0208918545395136,0.0891078263521194,-0.907897114753723,-0.412758767604828,0.0731643810868263,-0.188320681452751,0.0231573078781366,-0.981834650039673,-0.556257307529449,0.00985932257026434,-0.830951631069183,-0.907897114753723,-0.412758767604828,0.0731643810868263,-0.979747891426086,0.106631070375443,0.169481188058853,0.0685722306370735,-0.33555206656456,0.939522564411163,0.187900543212891,0.0128624085336924,0.982103943824768,0.127210900187492,-0.233336985111237,0.964039087295532,-0.922388136386871,-0.341358125209808,0.180762141942978,-0.907215654850006,-0.417203575372696,-0.053862102329731,-0.96806788444519,-0.199006080627441,0.152450829744339,-0.556257307529449,0.00985932257026434,-0.830951631069183,-0.903120517730713,0.420682191848755,0.0860235169529915,-0.20798297226429,-0.103669069707394,-0.972623229026794,-0.965675115585327,-0.24644747376442,0.0820682793855667,-0.229046493768692,0.272708296775818,-0.934434533119202,-0.187010750174522,-0.0166877564042807,-0.98221617937088,-0.994199097156525,-0.0362456925213337,0.101264357566834,-0.965675115585327,-0.24644747376442,0.0820682793855667,-0.907215654850006,-0.417203575372696,-0.053862102329731,-0.703456819057465,-0.0227733850479126,-0.710373103618622,
- -0.229046493768692,0.272708296775818,-0.934434533119202,0.405869215726852,-0.899208426475525,-0.163384288549423,0.0847693085670471,0.846539318561554,0.525533497333527,-0.783604562282562,0.239665478467941,-0.573170602321625,0.946934163570404,-0.300321310758591,-0.114555276930332,0.994812488555908,-0.0436632074415684,-0.091879166662693,0.953588902950287,0.0733551979064941,0.292039930820465,0.946934163570404,-0.300321310758591,-0.114555276930332,0.953588902950287,0.0733551979064941,0.292039930820465,0.903047263622284,-0.422246783971787,-0.0788262262940407,0.96905255317688,-0.0317402146756649,-0.244805842638016,0.997575581073761,0.0133216138929129,-0.0683057829737663,0.960953056812286,0.2766332924366,-0.00657174922525883,0.0621752701699734,0.11587555706501,0.991315841674805,0.15430960059166,-0.208024397492409,0.965875029563904,0.127936944365501,0.00652287434786558,0.991760909557343,0.129106983542442,-0.00568676553666592,0.991614401340485,-0.890958189964294,-0.136651650071144,0.433035671710968,-0.961626470088959,0.225700169801712,0.155993282794952,0.0356237925589085,-0.103936985135078,0.993945717811584,-0.980291962623596,-0.165609106421471,0.107709400355816,-0.961626470088959,0.225700169801712,0.155993282794952,-0.890958189964294,-0.136651650071144,0.433035671710968,0.233774676918983,0.524780929088593,-0.818507432937622,-0.133655235171318,0.0483241304755211,-0.989849030971527,-0.179488509893417,0.0797992646694183,-0.980518281459808,-0.994575083255768,0.0211200322955847,0.101854041218758,-0.987084686756134,-0.127576142549515,0.0968934372067451,-0.179488509893417,0.0797992646694183,-0.980518281459808,-0.184517532587051,-0.0155400522053242,-0.982706427574158,0.127210900187492,-0.233336985111237,0.964039087295532,0.187900543212891,0.0128624085336924,0.982103943824768,0.0621752701699734,0.11587555706501,0.991315841674805,-0.922388136386871,-0.341358125209808,0.180762141942978,0.0621752701699734,0.11587555706501,0.991315841674805,-0.485469371080399,0.090513102710247,0.869555592536926,-0.781915247440338,-0.430768877267838,-0.450607240200043,
- -0.36002442240715,0.173972651362419,-0.916578471660614,-0.179423749446869,0.00486783310770988,-0.983759880065918,-0.211740076541901,0.114304840564728,-0.970618665218353,-0.179423749446869,0.00486783310770988,-0.983759880065918,-0.140407100319862,-0.0129004549235106,-0.990009903907776,-0.126849189400673,0.00983676128089428,-0.991873264312744,-0.205479636788368,0.0219795275479555,-0.978414535522461,-0.211740076541901,0.114304840564728,-0.970618665218353,0.792287230491638,-0.608479917049408,-0.0450909249484539,0.918135285377502,-0.39079412817955,-0.0656332299113274,0.814164698123932,-0.580333590507507,-0.0186766907572746,-0.961626470088959,0.225700169801712,0.155993282794952,-0.987412631511688,0.0206738449633121,0.156809091567993,0.0534943602979183,-0.0163971018046141,0.998433530330658,-0.043456707149744,-0.135316148400307,-0.989849090576172,0.806789875030518,-0.548313736915588,-0.220095694065094,0.73515385389328,0.676721453666687,-0.0399613827466965,0.860847890377045,0.492613166570663,-0.127566888928413,-0.113462515175343,-0.0741707906126976,-0.990769922733307,0.73515385389328,0.676721453666687,-0.0399613827466965,0.907198667526245,0.411578208208084,-0.087143674492836,0.961931765079498,0.197563990950584,-0.188827559351921,-0.0994542241096497,-0.199267774820328,-0.974885284900665,0.941816210746765,-0.278808206319809,-0.187745332717896,0.93319171667099,-0.328479021787643,-0.145790606737137,0.903047263622284,-0.422246783971787,-0.0788262262940407,0.981476724147797,-0.125462114810944,-0.144785270094872,0.980082631111145,0.16142649948597,-0.115670122206211,-0.154153496026993,-0.0415356233716011,-0.987173497676849,0.987979173660278,0.0223228354007006,-0.152967050671577,-0.126849189400673,0.00983676128089428,-0.991873264312744,-0.140407100319862,-0.0129004549235106,-0.990009903907776,0.9039705991745,0.392277598381042,-0.170163571834564,-0.978141665458679,-0.0882415324449539,0.188287973403931,-0.942968368530273,-0.0260701477527618,-0.331859886646271,-0.575521767139435,-0.1657555103302,0.800812065601349,-0.1218151897192,0.028899310156703,-0.992132067680359,
- 0.806789875030518,-0.548313736915588,-0.220095694065094,-0.043456707149744,-0.135316148400307,-0.989849090576172,-0.206193521618843,-0.100386798381805,-0.973348200321198,-0.1218151897192,0.028899310156703,-0.992132067680359,-0.043456707149744,-0.135316148400307,-0.989849090576172,0.891746580600739,0.451581746339798,-0.0293589495122433,0.177533730864525,-0.169634535908699,0.9693843126297,0.628041207790375,-0.154646843671799,0.762658953666687,0.628041207790375,-0.154646843671799,0.762658953666687,0.685914039611816,-0.311484515666962,0.657646834850311,0.792287230491638,-0.608479917049408,-0.0450909249484539,0.994812488555908,-0.0436632074415684,-0.091879166662693,0.993409633636475,-0.0956170111894608,-0.063203290104866,0.164761990308762,0.119816526770592,0.979028940200806,0.994812488555908,-0.0436632074415684,-0.091879166662693,0.164761990308762,0.119816526770592,0.979028940200806,0.0976754054427147,-0.00576318241655827,0.995201706886292,-0.989839553833008,-0.0547916181385517,0.131208047270775,-0.837383687496185,0.520404279232025,0.167236104607582,0.0845165476202965,0.107054524123669,0.990654587745667,0.0621752701699734,0.11587555706501,0.991315841674805,-0.922388136386871,-0.341358125209808,0.180762141942978,0.127210900187492,-0.233336985111237,0.964039087295532,-0.922388136386871,-0.341358125209808,0.180762141942978,0.0685722306370735,-0.33555206656456,0.939522564411163,0.127210900187492,-0.233336985111237,0.964039087295532,-0.179423749446869,0.00486783310770988,-0.983759880065918,-0.192986771464348,0.304383158683777,-0.932795286178589,-0.140407100319862,-0.0129004549235106,-0.990009903907776,0.628041207790375,-0.154646843671799,0.762658953666687,0.792287230491638,-0.608479917049408,-0.0450909249484539,0.891746580600739,0.451581746339798,-0.0293589495122433,-0.043456707149744,-0.135316148400307,-0.989849090576172,0.73515385389328,0.676721453666687,-0.0399613827466965,-0.113462515175343,-0.0741707906126976,-0.990769922733307,-0.0309450402855873,-0.0820766687393188,-0.996145486831665,0.0621752701699734,0.11587555706501,0.991315841674805,
- 0.0395243242383003,-0.0189765356481075,0.999038457870483,-0.485469371080399,0.090513102710247,0.869555592536926,0.988118410110474,-0.0192607305943966,-0.152482837438583,0.913756132125854,0.368707597255707,-0.170600667595863,0.993409633636475,-0.0956170111894608,-0.063203290104866,0.994812488555908,-0.0436632074415684,-0.091879166662693,0.993022799491882,0.0515617094933987,-0.106053218245506,0.98052316904068,0.0385918952524662,-0.192574948072433,0.972414493560791,-0.131463453173637,-0.192684918642044,0.0685722306370735,-0.33555206656456,0.939522564411163,-0.96806788444519,-0.199006080627441,0.152450829744339,-0.986267507076263,-0.0346907526254654,0.161471366882324,0.066509336233139,-0.0124919936060905,0.997707664966583,-0.96806788444519,-0.199006080627441,0.152450829744339,0.0685722306370735,-0.33555206656456,0.939522564411163,-0.922388136386871,-0.341358125209808,0.180762141942978,0.99603933095932,-0.0249773506075144,-0.0853342637419701,0.997575581073761,0.0133216138929129,-0.0683057829737663,0.983596920967102,0.00231942208483815,-0.180365592241287,0.0356237925589085,-0.103936985135078,0.993945717811584,0.090194396674633,-0.0924056023359299,0.991628110408783,-0.890958189964294,-0.136651650071144,0.433035671710968,0.164761990308762,0.119816526770592,0.979028940200806,0.090194396674633,-0.0924056023359299,0.991628110408783,0.0356237925589085,-0.103936985135078,0.993945717811584,-0.988219380378723,0.0374612994492054,0.148388460278511,0.0395243242383003,-0.0189765356481075,0.999038457870483,-0.474047988653183,-0.0615116134285927,0.878347754478455,-0.156206622719765,-0.108029276132584,-0.981798946857452,0.96677440404892,-0.164715841412544,-0.195489108562469,0.832939445972443,-0.443426817655563,-0.331035584211349,0.127936944365501,0.00652287434786558,0.991760909557343,0.99603933095932,-0.0249773506075144,-0.0853342637419701,0.129106983542442,-0.00568676553666592,0.991614401340485,0.99603933095932,-0.0249773506075144,-0.0853342637419701,0.173977017402649,0.0644311234354973,0.982639610767365,0.129106983542442,-0.00568676553666592,0.991614401340485,
- 0.0400115959346294,0.0880334228277206,0.995313704013824,-0.967861831188202,-0.184555143117905,0.170830175280571,-0.989839553833008,-0.0547916181385517,0.131208047270775,0.0845165476202965,0.107054524123669,0.990654587745667,0.0845165476202965,0.107054524123669,0.990654587745667,0.15196530520916,-0.156172916293144,0.975969612598419,0.0400115959346294,0.0880334228277206,0.995313704013824,-0.957652628421783,0.212740406394005,0.194017976522446,-0.988219380378723,0.0374612994492054,0.148388460278511,-0.474047988653183,-0.0615116134285927,0.878347754478455,0.0407062508165836,0.0323261246085167,0.998648166656494,-0.792791903018951,-0.031546775251627,0.608675599098206,-0.957652628421783,0.212740406394005,0.194017976522446,-0.474047988653183,-0.0615116134285927,0.878347754478455,0.187900543212891,0.0128624085336924,0.982103943824768,0.907989025115967,0.417083859443665,0.0399628728628159,0.15430960059166,-0.208024397492409,0.965875029563904,0.173728913068771,0.079703651368618,0.981562912464142,0.978264033794403,-0.202612355351448,-0.0441337414085865,0.993934869766235,-0.063068151473999,-0.0900890305638313,0.154526174068451,0.0387029536068439,0.98723042011261,-0.996675610542297,-0.0621235370635986,0.0527107231318951,-0.206193521618843,-0.100386798381805,-0.973348200321198,-0.907215654850006,-0.417203575372696,-0.053862102329731,0.960953056812286,0.2766332924366,-0.00657174922525883,0.127936944365501,0.00652287434786558,0.991760909557343,0.15430960059166,-0.208024397492409,0.965875029563904,0.15430960059166,-0.208024397492409,0.965875029563904,0.907989025115967,0.417083859443665,0.0399628728628159,0.960953056812286,0.2766332924366,-0.00657174922525883,0.424912869930267,0.137028262019157,0.894803047180176,0.0919399112462997,0.0623674355447292,0.993809521198273,0.173977017402649,0.0644311234354973,0.982639610767365,-0.964459300041199,-0.233492612838745,0.123691767454147,-0.907215654850006,-0.417203575372696,-0.053862102329731,-0.922388136386871,-0.341358125209808,0.180762141942978,-0.996675610542297,-0.0621235370635986,0.0527107231318951,
- -0.907215654850006,-0.417203575372696,-0.053862102329731,-0.964459300041199,-0.233492612838745,0.123691767454147,0.926684319972992,0.369741767644882,-0.0674328282475472,0.521387219429016,0.0912098586559296,0.848431587219238,0.967295587062836,0.253608912229538,0.00467772036790848,0.521387219429016,0.0912098586559296,0.848431587219238,0.129456296563149,-0.101904980838299,0.98633486032486,0.150718361139297,-0.0728189498186111,0.985891163349152,-0.837383687496185,0.520404279232025,0.167236104607582,0.05916728079319,-0.0258985701948404,0.997912168502808,0.0845165476202965,0.107054524123669,0.990654587745667,-0.0921543687582016,-0.0418171398341656,-0.99486631155014,-0.133655235171318,0.0483241304755211,-0.989849030971527,-0.128905788064003,0.0787234678864479,-0.988527178764343,0.926684319972992,0.369741767644882,-0.0674328282475472,0.129456296563149,-0.101904980838299,0.98633486032486,0.521387219429016,0.0912098586559296,0.848431587219238,0.0824057385325432,0.102267138659954,0.991337835788727,0.0407062508165836,0.0323261246085167,0.998648166656494,0.0919399112462997,0.0623674355447292,0.993809521198273,0.424912869930267,0.137028262019157,0.894803047180176,0.0824057385325432,0.102267138659954,0.991337835788727,0.0919399112462997,0.0623674355447292,0.993809521198273,-0.907897114753723,-0.412758767604828,0.0731643810868263,-0.556257307529449,0.00985932257026434,-0.830951631069183,-0.188320681452751,0.0231573078781366,-0.981834650039673,-0.188320681452751,0.0231573078781366,-0.981834650039673,-0.556257307529449,0.00985932257026434,-0.830951631069183,-0.1551903039217,2.23997067223536e-005,-0.98788458108902,0.100134544074535,-0.0183135513216257,0.99480539560318,0.996620059013367,-0.0286880973726511,-0.0769767090678215,0.109160959720612,-0.100342757999897,0.988946616649628,0.996620059013367,-0.0286880973726511,-0.0769767090678215,0.15196530520916,-0.156172916293144,0.975969612598419,0.109160959720612,-0.100342757999897,0.988946616649628,0.891746580600739,0.451581746339798,-0.0293589495122433,0.792287230491638,-0.608479917049408,-0.0450909249484539,
- 0.985493838787079,-0.0546566396951675,-0.160669222474098,0.967295587062836,0.253608912229538,0.00467772036790848,0.914974808692932,0.163121163845062,-0.369069874286652,0.985240817070007,0.0647194758057594,-0.158467903733253,-0.153300195932388,0.0393560938537121,-0.987395703792572,0.346523433923721,-0.445261418819427,-0.82562929391861,-0.207329094409943,-0.0429722405970097,-0.977326989173889,0.981476724147797,-0.125462114810944,-0.144785270094872,-0.154153496026993,-0.0415356233716011,-0.987173497676849,-0.1551903039217,2.23997067223536e-005,-0.98788458108902,0.981476724147797,-0.125462114810944,-0.144785270094872,-0.1551903039217,2.23997067223536e-005,-0.98788458108902,-0.156206622719765,-0.108029276132584,-0.981798946857452,-0.903120517730713,0.420682191848755,0.0860235169529915,-0.556257307529449,0.00985932257026434,-0.830951631069183,-0.979747891426086,0.106631070375443,0.169481188058853,0.346523433923721,-0.445261418819427,-0.82562929391861,-0.153300195932388,0.0393560938537121,-0.987395703792572,0.878560602664948,-0.452874571084976,-0.151775598526001,-0.792791903018951,-0.031546775251627,0.608675599098206,0.0407062508165836,0.0323261246085167,0.998648166656494,0.0389333553612232,0.206068530678749,0.977762818336487,-0.978141665458679,-0.0882415324449539,0.188287973403931,-0.575521767139435,-0.1657555103302,0.800812065601349,0.0577125251293182,0.115094244480133,0.991676688194275,-0.987344086170197,-0.0540195964276791,0.14910925924778,-0.964459300041199,-0.233492612838745,0.123691767454147,-0.922388136386871,-0.341358125209808,0.180762141942978,0.997575581073761,0.0133216138929129,-0.0683057829737663,0.99603933095932,-0.0249773506075144,-0.0853342637419701,0.127936944365501,0.00652287434786558,0.991760909557343,0.960953056812286,0.2766332924366,-0.00657174922525883,0.997575581073761,0.0133216138929129,-0.0683057829737663,0.127936944365501,0.00652287434786558,0.991760909557343,-0.556257307529449,0.00985932257026434,-0.830951631069183,-0.156206622719765,-0.108029276132584,-0.981798946857452,-0.1551903039217,2.23997067223536e-005,-0.98788458108902,
- -0.575521767139435,-0.1657555103302,0.800812065601349,0.521387219429016,0.0912098586559296,0.848431587219238,0.150718361139297,-0.0728189498186111,0.985891163349152,-0.575521767139435,-0.1657555103302,0.800812065601349,0.150718361139297,-0.0728189498186111,0.985891163349152,0.0577125251293182,0.115094244480133,0.991676688194275,-0.987084686756134,-0.127576142549515,0.0968934372067451,0.233774676918983,0.524780929088593,-0.818507432937622,-0.179488509893417,0.0797992646694183,-0.980518281459808,-0.979747891426086,0.106631070375443,0.169481188058853,-0.907897114753723,-0.412758767604828,0.0731643810868263,-0.957652628421783,0.212740406394005,0.194017976522446,-0.967400372028351,-0.173337802290916,0.184636369347572,-0.792791903018951,-0.031546775251627,0.608675599098206,0.0389333553612232,0.206068530678749,0.977762818336487,-0.837383687496185,0.520404279232025,0.167236104607582,-0.985616981983185,-0.027520377188921,0.166739121079445,0.0548781417310238,-0.0121323112398386,0.998419404029846,0.05916728079319,-0.0258985701948404,0.997912168502808,-0.987084686756134,-0.127576142549515,0.0968934372067451,-0.992990374565125,0.0468015857040882,0.108534917235374,0.233774676918983,0.524780929088593,-0.818507432937622,-0.95431125164032,-0.28508135676384,0.0895475894212723,-0.993849992752075,0.00582973333075643,0.110581330955029,-0.987412631511688,0.0206738449633121,0.156809091567993,-0.961626470088959,0.225700169801712,0.155993282794952,-0.980291962623596,-0.165609106421471,0.107709400355816,-0.980291962623596,-0.165609106421471,0.107709400355816,-0.890958189964294,-0.136651650071144,0.433035671710968,-0.781915247440338,-0.430768877267838,-0.450607240200043,-0.95431125164032,-0.28508135676384,0.0895475894212723,0.98411637544632,0.0426313951611519,-0.172329604625702,0.998757660388947,-0.0196512155234814,-0.0457943230867386,0.993409633636475,-0.0956170111894608,-0.063203290104866,0.913756132125854,0.368707597255707,-0.170600667595863,0.322175681591034,-0.163404017686844,0.932470977306366,0.164761990308762,0.119816526770592,0.979028940200806,
- 0.993409633636475,-0.0956170111894608,-0.063203290104866,0.998757660388947,-0.0196512155234814,-0.0457943230867386,0.953588902950287,0.0733551979064941,0.292039930820465,0.994812488555908,-0.0436632074415684,-0.091879166662693,0.108234189450741,-0.0515374056994915,0.992788672447205,0.15196530520916,-0.156172916293144,0.975969612598419,0.953588902950287,0.0733551979064941,0.292039930820465,0.108234189450741,-0.0515374056994915,0.992788672447205,0.996620059013367,-0.0286880973726511,-0.0769767090678215,0.972414493560791,-0.131463453173637,-0.192684918642044,0.903047263622284,-0.422246783971787,-0.0788262262940407,0.985493838787079,-0.0546566396951675,-0.160669222474098,0.98052316904068,0.0385918952524662,-0.192574948072433,0.993022799491882,0.0515617094933987,-0.106053218245506,0.891746580600739,0.451581746339798,-0.0293589495122433,0.792287230491638,-0.608479917049408,-0.0450909249484539,0.773159027099609,-0.548571407794952,-0.318267971277237,0.985493838787079,-0.0546566396951675,-0.160669222474098,0.814164698123932,-0.580333590507507,-0.0186766907572746,0.773159027099609,-0.548571407794952,-0.318267971277237,0.792287230491638,-0.608479917049408,-0.0450909249484539,0.739900290966034,-0.661772310733795,-0.120851054787636,-0.128905788064003,0.0787234678864479,-0.988527178764343,-0.126849189400673,0.00983676128089428,-0.991873264312744,0.987979173660278,0.0223228354007006,-0.152967050671577,-0.0921543687582016,-0.0418171398341656,-0.99486631155014,-0.128905788064003,0.0787234678864479,-0.988527178764343,0.739900290966034,-0.661772310733795,-0.120851054787636,-0.0921543687582016,-0.0418171398341656,-0.99486631155014,0.739900290966034,-0.661772310733795,-0.120851054787636,0.907198667526245,0.411578208208084,-0.087143674492836,0.907198667526245,0.411578208208084,-0.087143674492836,-0.0994542241096497,-0.199267774820328,-0.974885284900665,-0.0921543687582016,-0.0418171398341656,-0.99486631155014,-0.118820860981941,-0.0261036306619644,-0.992572605609894,0.989025592803955,0.000761121744289994,-0.147742465138435,0.744468688964844,-0.652732193470001,-0.140381678938866,
- -0.100517705082893,0.0894940197467804,-0.990902125835419,-0.978141665458679,-0.0882415324449539,0.188287973403931,-0.991384744644165,0.0844845175743103,0.100093774497509,-0.942968368530273,-0.0260701477527618,-0.331859886646271,-0.226236030459404,-0.154875680804253,-0.961681246757507,-0.942968368530273,-0.0260701477527618,-0.331859886646271,-0.991384744644165,0.0844845175743103,0.100093774497509,-0.187875613570213,-0.00939403101801872,-0.982147991657257,-0.153300195932388,0.0393560938537121,-0.987395703792572,-0.207329094409943,-0.0429722405970097,-0.977326989173889,-0.207329094409943,-0.0429722405970097,-0.977326989173889,-0.226236030459404,-0.154875680804253,-0.961681246757507,-0.187875613570213,-0.00939403101801872,-0.982147991657257,0.424912869930267,0.137028262019157,0.894803047180176,0.685914039611816,-0.311484515666962,0.657646834850311,0.628041207790375,-0.154646843671799,0.762658953666687,0.424912869930267,0.137028262019157,0.894803047180176,0.918135285377502,-0.39079412817955,-0.0656332299113274,0.685914039611816,-0.311484515666962,0.657646834850311,0.99603933095932,-0.0249773506075144,-0.0853342637419701,0.918135285377502,-0.39079412817955,-0.0656332299113274,0.173977017402649,0.0644311234354973,0.982639610767365,0.903047263622284,-0.422246783971787,-0.0788262262940407,0.953588902950287,0.0733551979064941,0.292039930820465,0.15196530520916,-0.156172916293144,0.975969612598419,0.996620059013367,-0.0286880973726511,-0.0769767090678215,0.903047263622284,-0.422246783971787,-0.0788262262940407,0.15196530520916,-0.156172916293144,0.975969612598419,0.993022799491882,0.0515617094933987,-0.106053218245506,0.996620059013367,-0.0286880973726511,-0.0769767090678215,0.100134544074535,-0.0183135513216257,0.99480539560318,0.177533730864525,-0.169634535908699,0.9693843126297,0.993022799491882,0.0515617094933987,-0.106053218245506,0.100134544074535,-0.0183135513216257,0.99480539560318,-0.783604562282562,0.239665478467941,-0.573170602321625,0.0847693085670471,0.846539318561554,0.525533497333527,-0.0359120443463326,0.891634404659271,0.451329618692398,
- -0.229046493768692,0.272708296775818,-0.934434533119202,-0.703456819057465,-0.0227733850479126,-0.710373103618622,-0.247816517949104,-0.00141295057255775,-0.968806028366089,-0.26377472281456,0.0520889386534691,-0.963176846504211,-0.187010750174522,-0.0166877564042807,-0.98221617937088,-0.118820860981941,-0.0261036306619644,-0.992572605609894,-0.100517705082893,0.0894940197467804,-0.990902125835419,-0.193294838070869,-0.368423193693161,-0.909341275691986,-0.992990374565125,0.0468015857040882,0.108534917235374,-0.989839553833008,-0.0547916181385517,0.131208047270775,-0.967861831188202,-0.184555143117905,0.170830175280571,-0.987084686756134,-0.127576142549515,0.0968934372067451,-0.989839553833008,-0.0547916181385517,0.131208047270775,-0.992990374565125,0.0468015857040882,0.108534917235374,-0.987084686756134,-0.127576142549515,0.0968934372067451,-0.837383687496185,0.520404279232025,0.167236104607582,-0.989839553833008,-0.0547916181385517,0.131208047270775,0.961931765079498,0.197563990950584,-0.188827559351921,0.96677440404892,-0.164715841412544,-0.195489108562469,-0.11744637042284,0.0106336334720254,-0.993022322654724,-0.0994542241096497,-0.199267774820328,-0.974885284900665,-0.211740076541901,0.114304840564728,-0.970618665218353,-0.205479636788368,0.0219795275479555,-0.978414535522461,-0.993849992752075,0.00582973333075643,0.110581330955029,-0.95431125164032,-0.28508135676384,0.0895475894212723,-0.128905788064003,0.0787234678864479,-0.988527178764343,-0.208163216710091,-0.0305572636425495,-0.977616667747498,-0.205479636788368,0.0219795275479555,-0.978414535522461,-0.126849189400673,0.00983676128089428,-0.991873264312744,0.0356237925589085,-0.103936985135078,0.993945717811584,0.0534943602979183,-0.0163971018046141,0.998433530330658,0.0976754054427147,-0.00576318241655827,0.995201706886292,0.164761990308762,0.119816526770592,0.979028940200806,-0.987412631511688,0.0206738449633121,0.156809091567993,-0.967861831188202,-0.184555143117905,0.170830175280571,0.0400115959346294,0.0880334228277206,0.995313704013824,0.0534943602979183,-0.0163971018046141,0.998433530330658,
- 0.994812488555908,-0.0436632074415684,-0.091879166662693,0.0976754054427147,-0.00576318241655827,0.995201706886292,0.108234189450741,-0.0515374056994915,0.992788672447205,-0.993849992752075,0.00582973333075643,0.110581330955029,-0.918644964694977,0.385389566421509,0.0869857892394066,-0.967861831188202,-0.184555143117905,0.170830175280571,-0.987412631511688,0.0206738449633121,0.156809091567993,-0.903120517730713,0.420682191848755,0.0860235169529915,-0.967400372028351,-0.173337802290916,0.184636369347572,-0.985616981983185,-0.027520377188921,0.166739121079445,-0.994575083255768,0.0211200322955847,0.101854041218758,-0.184517532587051,-0.0155400522053242,-0.982706427574158,-0.11744637042284,0.0106336334720254,-0.993022322654724,-0.156206622719765,-0.108029276132584,-0.981798946857452,-0.20798297226429,-0.103669069707394,-0.972623229026794,-0.903120517730713,0.420682191848755,0.0860235169529915,-0.994575083255768,0.0211200322955847,0.101854041218758,-0.184517532587051,-0.0155400522053242,-0.982706427574158,-0.20798297226429,-0.103669069707394,-0.972623229026794,0.0548781417310238,-0.0121323112398386,0.998419404029846,-0.985616981983185,-0.027520377188921,0.166739121079445,-0.967400372028351,-0.173337802290916,0.184636369347572,0.0389333553612232,0.206068530678749,0.977762818336487,-0.11744637042284,0.0106336334720254,-0.993022322654724,0.96677440404892,-0.164715841412544,-0.195489108562469,-0.156206622719765,-0.108029276132584,-0.981798946857452,0.129106983542442,-0.00568676553666592,0.991614401340485,0.0395243242383003,-0.0189765356481075,0.999038457870483,0.0621752701699734,0.11587555706501,0.991315841674805,0.99205470085144,0.048152219504118,-0.116228140890598,0.814164698123932,-0.580333590507507,-0.0186766907572746,0.918135285377502,-0.39079412817955,-0.0656332299113274,-0.907897114753723,-0.412758767604828,0.0731643810868263,-0.995802879333496,0.0208918545395136,0.0891078263521194,-0.988219380378723,0.0374612994492054,0.148388460278511,-0.957652628421783,0.212740406394005,0.194017976522446,-0.129306524991989,-0.0219527389854193,-0.991361677646637,
- 0.979866504669189,-0.0877009779214859,-0.179360464215279,0.806789875030518,-0.548313736915588,-0.220095694065094,-0.1218151897192,0.028899310156703,-0.992132067680359,-0.988219380378723,0.0374612994492054,0.148388460278511,-0.987344086170197,-0.0540195964276791,0.14910925924778,-0.485469371080399,0.090513102710247,0.869555592536926,0.0395243242383003,-0.0189765356481075,0.999038457870483,-0.96806788444519,-0.199006080627441,0.152450829744339,-0.965675115585327,-0.24644747376442,0.0820682793855667,-0.994199097156525,-0.0362456925213337,0.101264357566834,-0.986267507076263,-0.0346907526254654,0.161471366882324,0.129456296563149,-0.101904980838299,0.98633486032486,0.0577125251293182,0.115094244480133,0.991676688194275,0.150718361139297,-0.0728189498186111,0.985891163349152,0.997136056423187,0.014742280356586,-0.0741789191961288,0.934534311294556,0.350637078285217,-0.0608224347233772,0.985233545303345,0.141698911786079,-0.0961054414510727,0.990144193172455,0.00861446559429169,-0.139786809682846,0.98757803440094,0.0523864664137363,-0.148139730095863,-0.994199097156525,-0.0362456925213337,0.101264357566834,-0.187010750174522,-0.0166877564042807,-0.98221617937088,-0.193294838070869,-0.368423193693161,-0.909341275691986,-0.995301127433777,0.0159287974238396,0.0955096855759621,-0.986267507076263,-0.0346907526254654,0.161471366882324,-0.963623225688934,-0.180984184145927,0.196659833192825,0.0667317509651184,0.122334100306034,0.990243017673492,0.066509336233139,-0.0124919936060905,0.997707664966583,0.130719289183617,-0.0185046754777431,0.991246819496155,0.994000375270844,-0.0942249670624733,-0.0555418878793716,0.907989025115967,0.417083859443665,0.0399628728628159,0.187900543212891,0.0128624085336924,0.982103943824768,-0.113462515175343,-0.0741707906126976,-0.990769922733307,0.860847890377045,0.492613166570663,-0.127566888928413,0.989025592803955,0.000761121744289994,-0.147742465138435,-0.118820860981941,-0.0261036306619644,-0.992572605609894,-0.26377472281456,0.0520889386534691,-0.963176846504211,-0.0309450402855873,-0.0820766687393188,-0.996145486831665,
- -0.113462515175343,-0.0741707906126976,-0.990769922733307,-0.229046493768692,0.272708296775818,-0.934434533119202,0.109160959720612,-0.100342757999897,0.988946616649628,0.05916728079319,-0.0258985701948404,0.997912168502808,0.0548781417310238,-0.0121323112398386,0.998419404029846,0.100134544074535,-0.0183135513216257,0.99480539560318,0.985493838787079,-0.0546566396951675,-0.160669222474098,0.773159027099609,-0.548571407794952,-0.318267971277237,0.98052316904068,0.0385918952524662,-0.192574948072433,0.99205470085144,0.048152219504118,-0.116228140890598,0.918135285377502,-0.39079412817955,-0.0656332299113274,0.99603933095932,-0.0249773506075144,-0.0853342637419701,0.983596920967102,0.00231942208483815,-0.180365592241287,-0.140407100319862,-0.0129004549235106,-0.990009903907776,0.985541701316834,-0.0224860031157732,-0.167934730648994,0.9039705991745,0.392277598381042,-0.170163571834564,0.173977017402649,0.0644311234354973,0.982639610767365,0.918135285377502,-0.39079412817955,-0.0656332299113274,0.424912869930267,0.137028262019157,0.894803047180176,0.05916728079319,-0.0258985701948404,0.997912168502808,0.15196530520916,-0.156172916293144,0.975969612598419,0.0845165476202965,0.107054524123669,0.990654587745667,-0.0921543687582016,-0.0418171398341656,-0.99486631155014,-0.0994542241096497,-0.199267774820328,-0.974885284900665,-0.179488509893417,0.0797992646694183,-0.980518281459808,-0.133655235171318,0.0483241304755211,-0.989849030971527,0.136502906680107,0.00112032797187567,0.99063903093338,0.066509336233139,-0.0124919936060905,0.997707664966583,0.0667317509651184,0.122334100306034,0.990243017673492,0.167346030473709,-0.11434842646122,0.979244530200958,0.563832998275757,-0.231688499450684,0.792724967002869,0.977375149726868,0.0101473480463028,0.21126988530159,0.934534311294556,0.350637078285217,-0.0608224347233772,0.167346030473709,-0.11434842646122,0.979244530200958,0.0904397219419479,0.123098656535149,-0.988264858722687,0.988128781318665,0.0984409153461456,-0.117945522069931,0.670461297035217,0.723735630512238,-0.163366377353668,
- -0.149774372577667,-0.0477968230843544,-0.987564206123352,0.992043912410736,0.00520996144041419,-0.125784993171692,0.977375149726868,0.0101473480463028,0.21126988530159,0.993934869766235,-0.063068151473999,-0.0900890305638313,0.988084673881531,0.00605486519634724,-0.153792276978493,0.563832998275757,-0.231688499450684,0.792724967002869,-0.655305206775665,0.0335029698908329,0.754620850086212,0.154526174068451,0.0387029536068439,0.98723042011261,-0.963623225688934,-0.180984184145927,0.196659833192825,-0.995301127433777,0.0159287974238396,0.0955096855759621,-0.885247766971588,-0.351834326982498,0.304218828678131,-0.655305206775665,0.0335029698908329,0.754620850086212,-0.100517705082893,0.0894940197467804,-0.990902125835419,0.744468688964844,-0.652732193470001,-0.140381678938866,0.988128781318665,0.0984409153461456,-0.117945522069931,0.0904397219419479,0.123098656535149,-0.988264858722687,-0.173889949917793,-0.0525635369122028,-0.983361303806305,-0.100517705082893,0.0894940197467804,-0.990902125835419,0.0904397219419479,0.123098656535149,-0.988264858722687,0.977375149726868,0.0101473480463028,0.21126988530159,0.985233545303345,0.141698911786079,-0.0961054414510727,0.934534311294556,0.350637078285217,-0.0608224347233772,-0.885247766971588,-0.351834326982498,0.304218828678131,-0.193294838070869,-0.368423193693161,-0.909341275691986,-0.674659013748169,-0.296307951211929,-0.676045000553131,0.0667317509651184,0.122334100306034,0.990243017673492,-0.963623225688934,-0.180984184145927,0.196659833192825,-0.655305206775665,0.0335029698908329,0.754620850086212,0.563832998275757,-0.231688499450684,0.792724967002869,0.121008679270744,-0.0424716584384441,0.991742491722107,0.0667317509651184,0.122334100306034,0.990243017673492,-0.655305206775665,0.0335029698908329,0.754620850086212,0.167346030473709,-0.11434842646122,0.979244530200958,0.934534311294556,0.350637078285217,-0.0608224347233772,0.997136056423187,0.014742280356586,-0.0741789191961288,0.136502906680107,0.00112032797187567,0.99063903093338,0.154526174068451,0.0387029536068439,0.98723042011261,
- 0.993934869766235,-0.063068151473999,-0.0900890305638313,0.977375149726868,0.0101473480463028,0.21126988530159,0.563832998275757,-0.231688499450684,0.792724967002869,-0.157662004232407,0.00912704598158598,-0.987451016902924,0.986078917980194,0.0440783686935902,-0.160329222679138,0.878560602664948,-0.452874571084976,-0.151775598526001,-0.153300195932388,0.0393560938537121,-0.987395703792572,0.986066341400146,-0.0533016584813595,-0.157582595944405,0.994994103908539,-0.0307161193341017,-0.0950959846377373,0.926684319972992,0.369741767644882,-0.0674328282475472,0.985240817070007,0.0647194758057594,-0.158467903733253,0.0522834435105324,-0.0145191233605146,0.998526811599731,-0.985103189945221,-0.000763401738367975,0.171962723135948,-0.978141665458679,-0.0882415324449539,0.188287973403931,0.0577125251293182,0.115094244480133,0.991676688194275,0.112859174609184,0.0205129701644182,0.993399262428284,0.0522834435105324,-0.0145191233605146,0.998526811599731,0.0577125251293182,0.115094244480133,0.991676688194275,0.129456296563149,-0.101904980838299,0.98633486032486,-0.229046493768692,0.272708296775818,-0.934434533119202,-0.113462515175343,-0.0741707906126976,-0.990769922733307,-0.118820860981941,-0.0261036306619644,-0.992572605609894,-0.187010750174522,-0.0166877564042807,-0.98221617937088,-0.173889949917793,-0.0525635369122028,-0.983361303806305,0.0904397219419479,0.123098656535149,-0.988264858722687,-0.149774372577667,-0.0477968230843544,-0.987564206123352,-0.224819660186768,-0.00131038331892341,-0.974399507045746,-0.157662004232407,0.00912704598158598,-0.987451016902924,-0.153300195932388,0.0393560938537121,-0.987395703792572,-0.187875613570213,-0.00939403101801872,-0.982147991657257,-0.226236030459404,-0.154875680804253,-0.961681246757507,-0.994195222854614,-0.0367841422557831,0.101108677685261,-0.224819660186768,-0.00131038331892341,-0.974399507045746,-0.226236030459404,-0.154875680804253,-0.961681246757507,-0.991384744644165,0.0844845175743103,0.100093774497509,-0.932804048061371,-0.354500949382782,0.0648528784513474,-0.98999685049057,0.0319122076034546,0.137433007359505,
- -0.885247766971588,-0.351834326982498,0.304218828678131,-0.655305206775665,0.0335029698908329,0.754620850086212,-0.98999685049057,0.0319122076034546,0.137433007359505,-0.930088996887207,0.323658645153046,0.173722848296165,-0.885247766971588,-0.351834326982498,0.304218828678131,-0.674659013748169,-0.296307951211929,-0.676045000553131,-0.357442587614059,0.114398092031479,-0.92690235376358,0.926684319972992,0.369741767644882,-0.0674328282475472,0.994994103908539,-0.0307161193341017,-0.0950959846377373,0.112859174609184,0.0205129701644182,0.993399262428284,0.129456296563149,-0.101904980838299,0.98633486032486,0.167346030473709,-0.11434842646122,0.979244530200958,0.121008679270744,-0.0424716584384441,0.991742491722107,0.563832998275757,-0.231688499450684,0.792724967002869,0.990144193172455,0.00861446559429169,-0.139786809682846,0.985233545303345,0.141698911786079,-0.0961054414510727,0.977375149726868,0.0101473480463028,0.21126988530159,0.992043912410736,0.00520996144041419,-0.125784993171692,0.167346030473709,-0.11434842646122,0.979244530200958,0.0667317509651184,0.122334100306034,0.990243017673492,0.121008679270744,-0.0424716584384441,0.991742491722107,-0.885247766971588,-0.351834326982498,0.304218828678131,-0.357442587614059,0.114398092031479,-0.92690235376358,-0.254983216524124,0.139504358172417,-0.956829190254211,-0.932804048061371,-0.354500949382782,0.0648528784513474,-0.193294838070869,-0.368423193693161,-0.909341275691986,-0.173889949917793,-0.0525635369122028,-0.983361303806305,-0.674659013748169,-0.296307951211929,-0.676045000553131,-0.655305206775665,0.0335029698908329,0.754620850086212,-0.885247766971588,-0.351834326982498,0.304218828678131,-0.98999685049057,0.0319122076034546,0.137433007359505,-0.985103189945221,-0.000763401738367975,0.171962723135948,-0.994195222854614,-0.0367841422557831,0.101108677685261,-0.991384744644165,0.0844845175743103,0.100093774497509,-0.978141665458679,-0.0882415324449539,0.188287973403931,-0.193294838070869,-0.368423193693161,-0.909341275691986,-0.100517705082893,0.0894940197467804,-0.990902125835419,
- -0.173889949917793,-0.0525635369122028,-0.983361303806305,-0.173889949917793,-0.0525635369122028,-0.983361303806305,-0.149774372577667,-0.0477968230843544,-0.987564206123352,-0.357442587614059,0.114398092031479,-0.92690235376358,-0.173889949917793,-0.0525635369122028,-0.983361303806305,-0.357442587614059,0.114398092031479,-0.92690235376358,-0.674659013748169,-0.296307951211929,-0.676045000553131,-0.995301127433777,0.0159287974238396,0.0955096855759621,-0.193294838070869,-0.368423193693161,-0.909341275691986,-0.885247766971588,-0.351834326982498,0.304218828678131,0.154526174068451,0.0387029536068439,0.98723042011261,-0.655305206775665,0.0335029698908329,0.754620850086212,0.038964569568634,-0.267011761665344,0.96290522813797,0.038964569568634,-0.267011761665344,0.96290522813797,-0.930088996887207,0.323658645153046,0.173722848296165,-0.985103189945221,-0.000763401738367975,0.171962723135948,0.0522834435105324,-0.0145191233605146,0.998526811599731,-0.930088996887207,0.323658645153046,0.173722848296165,-0.98999685049057,0.0319122076034546,0.137433007359505,-0.932804048061371,-0.354500949382782,0.0648528784513474,-0.994195222854614,-0.0367841422557831,0.101108677685261,-0.985103189945221,-0.000763401738367975,0.171962723135948,-0.932804048061371,-0.354500949382782,0.0648528784513474,-0.254983216524124,0.139504358172417,-0.956829190254211,-0.224819660186768,-0.00131038331892341,-0.974399507045746,-0.994195222854614,-0.0367841422557831,0.101108677685261,-0.149774372577667,-0.0477968230843544,-0.987564206123352,-0.254983216524124,0.139504358172417,-0.956829190254211,-0.357442587614059,0.114398092031479,-0.92690235376358,-0.149774372577667,-0.0477968230843544,-0.987564206123352,0.670461297035217,0.723735630512238,-0.163366377353668,0.986078917980194,0.0440783686935902,-0.160329222679138,-0.157662004232407,0.00912704598158598,-0.987451016902924,0.988084673881531,0.00605486519634724,-0.153792276978493,0.993934869766235,-0.063068151473999,-0.0900890305638313,0.978264033794403,-0.202612355351448,-0.0441337414085865,0.994994103908539,-0.0307161193341017,-0.0950959846377373,
- 0.986066341400146,-0.0533016584813595,-0.157582595944405,0.112859174609184,0.0205129701644182,0.993399262428284,0.994994103908539,-0.0307161193341017,-0.0950959846377373,0.978264033794403,-0.202612355351448,-0.0441337414085865,0.173728913068771,0.079703651368618,0.981562912464142,-0.995087683200836,-0.011055720038712,0.0983779951930046,-0.991168260574341,0.106926918029785,0.0784365385770798,-0.955131471157074,-0.221649125218391,0.19645756483078,-0.982263267040253,0.00301195261999965,0.187482848763466,0.221232056617737,0.00128965440671891,0.975220382213593,0.0364494994282722,-0.219329252839088,0.974969863891602,0.126073151826859,0.0502524897456169,0.990747332572937,-0.0825909972190857,-0.609709739685059,-0.788310110569,0.976461827754974,0.161456272006035,-0.143018215894699,0.990619122982025,0.0161760058254004,-0.135691329836845,-0.932477414608002,-0.353014916181564,0.0765928775072098,-0.975617647171021,0.111791901290417,0.188872575759888,-0.998606085777283,-0.00106061995029449,-0.0527711100876331,0.0364494994282722,-0.219329252839088,0.974969863891602,0.221232056617737,0.00128965440671891,0.975220382213593,-0.175307646393776,0.000640056910924613,0.984513521194458,-0.490158200263977,0.0188733227550983,0.871429264545441,-0.998606085777283,-0.00106061995029449,-0.0527711100876331,-0.975617647171021,0.111791901290417,0.188872575759888,-0.932477414608002,-0.353014916181564,0.0765928775072098,-0.222075879573822,0.294436007738113,-0.929510593414307,-0.208151519298553,0.00835785176604986,-0.978060960769653,-0.995087683200836,-0.011055720038712,0.0983779951930046,-0.932477414608002,-0.353014916181564,0.0765928775072098,-0.998606085777283,-0.00106061995029449,-0.0527711100876331,-0.77638453245163,0.00118879356887192,-0.63025838136673,-0.222075879573822,0.294436007738113,-0.929510593414307,-0.490158200263977,0.0188733227550983,0.871429264545441,0.0364494994282722,-0.219329252839088,0.974969863891602,-0.175307646393776,0.000640056910924613,0.984513521194458,-0.22795008122921,0.00412702234461904,-0.973664164543152,-0.0403045490384102,0.0196644812822342,-0.998993992805481,
- -0.140372201800346,-0.0470534339547157,-0.988980114459991,0.0364494994282722,-0.219329252839088,0.974969863891602,-0.975617647171021,0.111791901290417,0.188872575759888,-0.982263267040253,0.00301195261999965,0.187482848763466,0.0417536906898022,0.00293244700878859,0.999123692512512,-0.975617647171021,0.111791901290417,0.188872575759888,0.0364494994282722,-0.219329252839088,0.974969863891602,-0.490158200263977,0.0188733227550983,0.871429264545441,-0.137484356760979,-0.00363475503399968,-0.990497350692749,0.990750908851624,0.00201161298900843,-0.135678544640541,0.839118003845215,-0.524253904819489,-0.145047917962074,-0.112035393714905,0.129278317093849,-0.985258936882019,-0.222075879573822,0.294436007738113,-0.929510593414307,-0.77638453245163,0.00118879356887192,-0.63025838136673,-0.561320900917053,0.00804615113884211,-0.827559232711792,-0.561320900917053,0.00804615113884211,-0.827559232711792,-0.22795008122921,0.00412702234461904,-0.973664164543152,-0.222075879573822,0.294436007738113,-0.929510593414307,-0.208151519298553,0.00835785176604986,-0.978060960769653,-0.137484356760979,-0.00363475503399968,-0.990497350692749,-0.112035393714905,0.129278317093849,-0.985258936882019,-0.196824118494987,-0.14363631606102,-0.969860315322876,-0.975617647171021,0.111791901290417,0.188872575759888,-0.932477414608002,-0.353014916181564,0.0765928775072098,-0.995087683200836,-0.011055720038712,0.0983779951930046,-0.982263267040253,0.00301195261999965,0.187482848763466,0.995619833469391,-0.0468869209289551,-0.0808873921632767,0.984517633914948,0.15956637263298,-0.072550430893898,0.964613318443298,0.232064217329025,-0.125169351696968,0.990619122982025,0.0161760058254004,-0.135691329836845,-0.995087683200836,-0.011055720038712,0.0983779951930046,-0.208151519298553,0.00835785176604986,-0.978060960769653,-0.196824118494987,-0.14363631606102,-0.969860315322876,-0.991168260574341,0.106926918029785,0.0784365385770798,-0.982263267040253,0.00301195261999965,0.187482848763466,-0.955131471157074,-0.221649125218391,0.19645756483078,0.0370289422571659,0.138329982757568,0.989693760871887,
- 0.0417536906898022,0.00293244700878859,0.999123692512512,0.995619833469391,-0.0468869209289551,-0.0808873921632767,0.774718523025513,-0.630439162254334,-0.048555962741375,0.126073151826859,0.0502524897456169,0.990747332572937,0.115474797785282,-0.017891813069582,0.993149280548096,-0.140372201800346,-0.0470534339547157,-0.988980114459991,0.990750908851624,0.00201161298900843,-0.135678544640541,-0.137484356760979,-0.00363475503399968,-0.990497350692749,-0.222075879573822,0.294436007738113,-0.929510593414307,-0.22795008122921,0.00412702234461904,-0.973664164543152,-0.140372201800346,-0.0470534339547157,-0.988980114459991,0.115474797785282,-0.017891813069582,0.993149280548096,0.0417536906898022,0.00293244700878859,0.999123692512512,0.0370289422571659,0.138329982757568,0.989693760871887,0.106991432607174,-0.476677894592285,0.872542858123779,0.322175681591034,-0.163404017686844,0.932470977306366,0.998757660388947,-0.0196512155234814,-0.0457943230867386,0.106991432607174,-0.476677894592285,0.872542858123779,-0.955131471157074,-0.221649125218391,0.19645756483078,-0.991168260574341,0.106926918029785,0.0784365385770798,-0.781915247440338,-0.430768877267838,-0.450607240200043,-0.890958189964294,-0.136651650071144,0.433035671710968,-0.112035393714905,0.129278317093849,-0.985258936882019,0.839118003845215,-0.524253904819489,-0.145047917962074,0.985541701316834,-0.0224860031157732,-0.167934730648994,-0.192986771464348,0.304383158683777,-0.932795286178589,-0.36002442240715,0.173972651362419,-0.916578471660614,-0.112035393714905,0.129278317093849,-0.985258936882019,-0.192986771464348,0.304383158683777,-0.932795286178589,0.0370289422571659,0.138329982757568,0.989693760871887,-0.955131471157074,-0.221649125218391,0.19645756483078,-0.890958189964294,-0.136651650071144,0.433035671710968,0.090194396674633,-0.0924056023359299,0.991628110408783,0.0370289422571659,0.138329982757568,0.989693760871887,-0.890958189964294,-0.136651650071144,0.433035671710968,0.106991432607174,-0.476677894592285,0.872542858123779,0.984517633914948,0.15956637263298,-0.072550430893898,
- 0.995619833469391,-0.0468869209289551,-0.0808873921632767,0.115474797785282,-0.017891813069582,0.993149280548096,-0.222075879573822,0.294436007738113,-0.929510593414307,-0.140372201800346,-0.0470534339547157,-0.988980114459991,-0.137484356760979,-0.00363475503399968,-0.990497350692749,-0.208151519298553,0.00835785176604986,-0.978060960769653,0.106991432607174,-0.476677894592285,0.872542858123779,0.090194396674633,-0.0924056023359299,0.991628110408783,0.322175681591034,-0.163404017686844,0.932470977306366,0.964613318443298,0.232064217329025,-0.125169351696968,0.984517633914948,0.15956637263298,-0.072550430893898,0.998757660388947,-0.0196512155234814,-0.0457943230867386,0.98411637544632,0.0426313951611519,-0.172329604625702,0.106991432607174,-0.476677894592285,0.872542858123779,0.0370289422571659,0.138329982757568,0.989693760871887,0.090194396674633,-0.0924056023359299,0.991628110408783,0.189948365092278,0.63929671049118,0.745130479335785,-0.581942558288574,0.453014552593231,-0.675367176532745,0.0861621275544167,-0.889703392982483,-0.448334634304047,-0.196824118494987,-0.14363631606102,-0.969860315322876,-0.112035393714905,0.129278317093849,-0.985258936882019,-0.36002442240715,0.173972651362419,-0.916578471660614,-0.991168260574341,0.106926918029785,0.0784365385770798,-0.196824118494987,-0.14363631606102,-0.969860315322876,-0.781915247440338,-0.430768877267838,-0.450607240200043,0.976461827754974,0.161456272006035,-0.143018215894699,0.774718523025513,-0.630439162254334,-0.048555962741375,0.995619833469391,-0.0468869209289551,-0.0808873921632767,0.990619122982025,0.0161760058254004,-0.135691329836845,-0.156013980507851,-0.00441242381930351,-0.987745046615601,-0.156213283538818,-0.0329446606338024,-0.987173855304718,-0.155101433396339,-0.0205359794199467,-0.987685084342957,-0.149319007992744,-0.00112990057095885,-0.988788485527039,-0.118439882993698,-0.00121869356371462,-0.992960512638092,-0.137082427740097,0.0227624494582415,-0.990298092365265,-0.160483598709106,0.0206150934100151,-0.986823201179504,-0.160805940628052,0.00137109484057873,-0.986985087394714,
- -0.154471397399902,-0.00115900731179863,-0.987996637821198,0.126073151826859,0.0502524897456169,0.990747332572937,0.774718523025513,-0.630439162254334,-0.048555962741375,0.449737727642059,-0.0236600171774626,0.892847299575806,0.221232056617737,0.00128965440671891,0.975220382213593,0.990479230880737,-0.0124134253710508,0.137102037668228,0.976461827754974,0.161456272006035,-0.143018215894699,-0.0825909972190857,-0.609709739685059,-0.788310110569,0.990479230880737,-0.0124134253710508,0.137102037668228,0.449737727642059,-0.0236600171774626,0.892847299575806,0.774718523025513,-0.630439162254334,-0.048555962741375,0.976461827754974,0.161456272006035,-0.143018215894699,-0.140407100319862,-0.0129004549235106,-0.990009903907776,-0.192986771464348,0.304383158683777,-0.932795286178589,0.985541701316834,-0.0224860031157732,-0.167934730648994,-0.20798297226429,-0.103669069707394,-0.972623229026794,-0.156206622719765,-0.108029276132584,-0.981798946857452,-0.556257307529449,0.00985932257026434,-0.830951631069183,-0.133655235171318,0.0483241304755211,-0.989849030971527,0.233774676918983,0.524780929088593,-0.818507432937622,-0.208163216710091,-0.0305572636425495,-0.977616667747498,-0.128905788064003,0.0787234678864479,-0.988527178764343,-0.992990374565125,0.0468015857040882,0.108534917235374,-0.918644964694977,0.385389566421509,0.0869857892394066,-0.208163216710091,-0.0305572636425495,-0.977616667747498,0.233774676918983,0.524780929088593,-0.818507432937622,-0.967861831188202,-0.184555143117905,0.170830175280571,-0.918644964694977,0.385389566421509,0.0869857892394066,-0.992990374565125,0.0468015857040882,0.108534917235374,-0.655305206775665,0.0335029698908329,0.754620850086212,-0.930088996887207,0.323658645153046,0.173722848296165,0.038964569568634,-0.267011761665344,0.96290522813797,0.154526174068451,0.0387029536068439,0.98723042011261,0.038964569568634,-0.267011761665344,0.96290522813797,0.0522834435105324,-0.0145191233605146,0.998526811599731,0.112859174609184,0.0205129701644182,0.993399262428284,0.173728913068771,0.079703651368618,0.981562912464142,
- 0.109160959720612,-0.100342757999897,0.988946616649628,0.15196530520916,-0.156172916293144,0.975969612598419,0.05916728079319,-0.0258985701948404,0.997912168502808,0.993022799491882,0.0515617094933987,-0.106053218245506,0.972414493560791,-0.131463453173637,-0.192684918642044,0.996620059013367,-0.0286880973726511,-0.0769767090678215,0.130719289183617,-0.0185046754777431,0.991246819496155,0.0685722306370735,-0.33555206656456,0.939522564411163,0.066509336233139,-0.0124919936060905,0.997707664966583,0.136502906680107,0.00112032797187567,0.99063903093338,0.997136056423187,0.014742280356586,-0.0741789191961288,0.994000375270844,-0.0942249670624733,-0.0555418878793716,0.130719289183617,-0.0185046754777431,0.991246819496155,0.136502906680107,0.00112032797187567,0.99063903093338,0.98757803440094,0.0523864664137363,-0.148139730095863,0.972204148769379,0.186082050204277,-0.14210057258606,0.994000375270844,-0.0942249670624733,-0.0555418878793716,0.997136056423187,0.014742280356586,-0.0741789191961288,-0.224819660186768,-0.00131038331892341,-0.974399507045746,-0.254983216524124,0.139504358172417,-0.956829190254211,-0.149774372577667,-0.0477968230843544,-0.987564206123352,-0.157662004232407,0.00912704598158598,-0.987451016902924,0.126073151826859,0.0502524897456169,0.990747332572937,0.0364494994282722,-0.219329252839088,0.974969863891602,0.0417536906898022,0.00293244700878859,0.999123692512512,0.115474797785282,-0.017891813069582,0.993149280548096,0.0824057385325432,0.102267138659954,0.991337835788727,0.177533730864525,-0.169634535908699,0.9693843126297,0.0389333553612232,0.206068530678749,0.977762818336487,0.106991432607174,-0.476677894592285,0.872542858123779,0.998757660388947,-0.0196512155234814,-0.0457943230867386,0.984517633914948,0.15956637263298,-0.072550430893898,-0.043456707149744,-0.135316148400307,-0.989849090576172,-0.0309450402855873,-0.0820766687393188,-0.996145486831665,-0.26377472281456,0.0520889386534691,-0.963176846504211,-0.247816517949104,-0.00141295057255775,-0.968806028366089,-0.0904393717646599,-0.00212168297730386,-0.995899677276611,
- -0.118040181696415,0.0618892312049866,-0.99107837677002,0.00476571172475815,-0.258005529642105,-0.966131687164307,-0.127797737717628,-0.0469229407608509,-0.990689754486084,0.0493470802903175,-0.0423694439232349,-0.997882664203644,-0.31184333562851,-0.948983550071716,-0.0467349030077457,0.252828925848007,-0.967232346534729,-0.0232195965945721,0.0468883737921715,-0.0400713905692101,-0.998096108436584,0.0706725716590881,0.0575335621833801,0.99583899974823,-0.00512622902169824,0.0485279485583305,0.998808741569519,0.0289654731750488,-0.0566613040864468,0.997973263263702,-0.234279558062553,-0.0126497372984886,-0.972087025642395,-0.955836236476898,-0.000676831230521202,-0.293899118900299,-0.20496378839016,-0.167295232415199,-0.964366257190704,-0.942618787288666,-0.326700955629349,0.0688207522034645,-0.942297279834747,-0.325105518102646,0.0798901170492172,-0.772500455379486,-0.610187590122223,0.175824746489525,-0.94206303358078,-0.308221995830536,0.132349818944931,0.172250241041183,-0.0148168187588453,0.984941780567169,0.151725769042969,-0.315796613693237,0.936617255210876,0.12195648252964,-0.00605544820427895,0.992517054080963,0.698581099510193,0.703973412513733,-0.128085881471634,0.726034343242645,0.687189280986786,-0.025398887693882,0.890319287776947,0.395877987146378,-0.224971696734428,0.0841806828975677,0.0588745847344399,-0.994709730148315,-0.0256424471735954,-0.0488636046648026,-0.998476266860962,0.128467097878456,0.0053523532114923,-0.99169933795929,-0.23017917573452,-0.00164461880922318,0.973146915435791,0.0610047578811646,0.292145252227783,0.954426288604736,0.0879488736391068,0.0563951246440411,0.994527339935303,-0.20166352391243,0.979385912418365,0.0116281844675541,-0.0549655258655548,0.998103857040405,-0.0277043618261814,-0.247113794088364,0.967681348323822,-0.0502763912081718,-0.205567628145218,0.978377401828766,0.0227990131825209,-0.846770584583282,-0.531875908374786,-0.00936547387391329,-0.803514957427979,-0.592875719070435,0.053498700261116,-0.690196812152863,-0.720052599906921,0.0717828720808029,-0.721121728420258,-0.68861311674118,0.0761278942227364,
- -0.686200499534607,-0.727050840854645,0.0229360461235046,-0.0210589598864317,0.0162286758422852,0.999646604061127,0.0239200741052628,-0.0265880692750216,0.999360322952271,-0.0924297869205475,-0.0635092481970787,0.993691742420197,0.0559851489961147,0.0352373085916042,0.997809648513794,-0.0879626497626305,-0.0382437258958817,-0.995389342308044,0.51929384469986,0.853981614112854,-0.0323954150080681,0.742657899856567,0.656367719173431,-0.132818400859833,0.128774017095566,0.0273688696324825,0.991296291351318,0.0559851489961147,0.0352373085916042,0.997809648513794,-0.0924297869205475,-0.0635092481970787,0.993691742420197,-0.0200506746768951,0.978813052177429,-0.203772068023682,-0.0734143108129501,0.98553067445755,-0.152773439884186,0.0270826295018196,0.0162597168236971,-0.99950098991394,0.0507515929639339,-0.997905373573303,-0.0401153080165386,-0.262150079011917,-0.964515507221222,-0.031419612467289,-0.261746555566788,-0.964399099349976,0.0377247631549835,-0.642092347145081,-0.764729380607605,0.0539111495018005,-0.00512622902169824,0.0485279485583305,0.998808741569519,-0.0217126850038767,0.0143169490620494,0.999661803245544,0.0289654731750488,-0.0566613040864468,0.997973263263702,0.172250241041183,-0.0148168187588453,0.984941780567169,0.331841140985489,-0.162751570343971,0.929189682006836,0.0126501079648733,0.0278229452669621,0.99953281879425,0.914759159088135,0.393300294876099,-0.0923615396022797,0.95123952627182,0.221162930130959,-0.215012326836586,0.826305210590363,0.563100397586823,-0.0117419008165598,-0.126042544841766,-0.0463888794183731,-0.990939676761627,-0.127797737717628,-0.0469229407608509,-0.990689754486084,-0.686200499534607,-0.727050840854645,0.0229360461235046,-0.195527955889702,0.00879787094891071,0.980658769607544,0.199686646461487,0.0806176289916039,0.976537883281708,0.0546078607439995,0.00692589301615953,0.998483896255493,0.0275807082653046,-0.0375671237707138,0.998913466930389,0.0706725716590881,0.0575335621833801,0.99583899974823,-0.0443713031709194,0.0626721084117889,0.997047364711761,-0.00512622902169824,0.0485279485583305,0.998808741569519,
- -0.207935035228729,0.974499464035034,0.0843440592288971,0.134647324681282,0.990657508373261,0.0216309726238251,0.199686646461487,0.0806176289916039,0.976537883281708,0.155250355601311,0.0254538618028164,0.987547159194946,0.182146832346916,-0.982833921909332,0.0293295029550791,0.0239200741052628,-0.0265880692750216,0.999360322952271,0.492052525281906,0.350911170244217,0.796709358692169,0.859439492225647,0.510367035865784,-0.0298243816941977,0.761574923992157,0.647789537906647,0.0192985441535711,-0.0876161530613899,-0.517009437084198,-0.851483762264252,0.238595545291901,0.503252387046814,0.830547571182251,0.713495790958405,0.360391706228256,0.600867390632629,0.160034283995628,0.986712515354156,0.0280621238052845,0.313655108213425,0.946015000343323,-0.0817077308893204,0.0716360434889793,0.996513485908508,-0.0427691861987114,-0.498926281929016,-0.341928213834763,0.796340107917786,-0.690196812152863,-0.720052599906921,0.0717828720808029,-0.867454290390015,-0.423908293247223,0.260432243347168,0.997531890869141,0.0360951498150826,-0.0602268576622009,0.987841665744781,0.0916307494044304,-0.125589430332184,0.95123952627182,0.221162930130959,-0.215012326836586,0.914759159088135,0.393300294876099,-0.0923615396022797,-0.113256357610226,-0.180930435657501,-0.976953029632568,-0.0898404493927956,-0.0626361519098282,-0.993984639644623,-0.113254681229591,0.0653369501233101,-0.99141538143158,-0.20166352391243,0.979385912418365,0.0116281844675541,0.160034283995628,0.986712515354156,0.0280621238052845,-0.0549655258655548,0.998103857040405,-0.0277043618261814,0.0289654731750488,-0.0566613040864468,0.997973263263702,-0.0217126850038767,0.0143169490620494,0.999661803245544,-0.135059595108032,-0.455446362495422,0.879958868026733,-0.0879626497626305,-0.0382437258958817,-0.995389342308044,0.742657899856567,0.656367719173431,-0.132818400859833,-0.0904393717646599,-0.00212168297730386,-0.995899677276611,0.826305210590363,0.563100397586823,-0.0117419008165598,0.95123952627182,0.221162930130959,-0.215012326836586,0.890319287776947,0.395877987146378,-0.224971696734428,
- 0.00736961700022221,-0.998593091964722,0.0525125749409199,-0.57899022102356,-0.815261483192444,-0.0109157711267471,-0.0301522724330425,-0.997304379940033,0.0668955594301224,-0.676572144031525,-0.730095624923706,0.0959715694189072,-0.266306519508362,-0.748082876205444,0.607826352119446,-0.0301522724330425,-0.997304379940033,0.0668955594301224,-0.125763654708862,-0.0111092356964946,-0.991998136043549,-0.113256357610226,-0.180930435657501,-0.976953029632568,-0.113254681229591,0.0653369501233101,-0.99141538143158,-0.125763654708862,-0.0111092356964946,-0.991998136043549,-0.127134710550308,-0.19606576859951,-0.972314298152924,-0.113256357610226,-0.180930435657501,-0.976953029632568,0.985103070735931,-0.00936349201947451,-0.171710342168808,0.964322626590729,0.253943771123886,-0.0747975707054138,0.999306082725525,-0.00142897292971611,-0.0372210927307606,-0.36364871263504,-0.212770611047745,0.906911432743073,-0.195527955889702,0.00879787094891071,0.980658769607544,-0.0217126850038767,0.0143169490620494,0.999661803245544,-0.0301522724330425,-0.997304379940033,0.0668955594301224,-0.266306519508362,-0.748082876205444,0.607826352119446,0.00736961700022221,-0.998593091964722,0.0525125749409199,-0.0694743320345879,-0.0526200011372566,-0.996195077896118,-0.0879626497626305,-0.0382437258958817,-0.995389342308044,-0.0904393717646599,-0.00212168297730386,-0.995899677276611,-0.127797737717628,-0.0469229407608509,-0.990689754486084,-0.126042544841766,-0.0463888794183731,-0.990939676761627,-0.686200499534607,-0.727050840854645,0.0229360461235046,-0.127797737717628,-0.0469229407608509,-0.990689754486084,0.00476571172475815,-0.258005529642105,-0.966131687164307,-0.846770584583282,-0.531875908374786,-0.00936547387391329,0.00476571172475815,-0.258005529642105,-0.966131687164307,-0.1400126516819,-0.00380202010273933,-0.990142464637756,-0.231560334563255,-0.0649330615997314,-0.970651090145111,-0.0943230614066124,-0.00315418932586908,-0.995536684989929,0.172600582242012,0.0390959046781063,-0.984215795993805,-0.0300426036119461,0.0503198876976967,-0.998281240463257,
- -0.0389972440898418,-0.0190453641116619,-0.99905788898468,-0.875783443450928,-0.480232536792755,0.0487863197922707,-0.940463721752167,-0.315925240516663,0.125376686453819,-0.972833395004272,-0.229073047637939,0.0334785617887974,0.408613324165344,-0.912659525871277,-0.0093716885894537,0.261211812496185,-0.900993227958679,-0.346380859613419,-0.176011011004448,-0.136553227901459,-0.974871039390564,0.0134309828281403,0.396870046854019,0.917776525020599,0.199686646461487,0.0806176289916039,0.976537883281708,-0.36364871263504,-0.212770611047745,0.906911432743073,-0.686200499534607,-0.727050840854645,0.0229360461235046,0.195315733551979,-0.978140711784363,-0.0713629722595215,-0.126042544841766,-0.0463888794183731,-0.990939676761627,-0.148885920643806,-0.426937758922577,-0.891940116882324,0.195315733551979,-0.978140711784363,-0.0713629722595215,-0.0301522724330425,-0.997304379940033,0.0668955594301224,0.151725769042969,-0.315796613693237,0.936617255210876,0.172250241041183,-0.0148168187588453,0.984941780567169,0.0537796393036842,-0.475142896175385,0.878263652324677,-0.867454290390015,-0.423908293247223,0.260432243347168,-0.972833395004272,-0.229073047637939,0.0334785617887974,-0.940463721752167,-0.315925240516663,0.125376686453819,-0.148885920643806,-0.426937758922577,-0.891940116882324,-0.57899022102356,-0.815261483192444,-0.0109157711267471,0.0675630420446396,-0.0783899873495102,-0.994630694389343,-0.875783443450928,-0.480232536792755,0.0487863197922707,-0.300863444805145,0.217456296086311,-0.928544044494629,-0.167519450187683,-0.0228477641940117,-0.985604047775269,-0.942618787288666,-0.326700955629349,0.0688207522034645,-0.875783443450928,-0.480232536792755,0.0487863197922707,-0.972833395004272,-0.229073047637939,0.0334785617887974,-0.766679286956787,0.0817651748657227,-0.636802434921265,-0.300863444805145,0.217456296086311,-0.928544044494629,-0.972833395004272,-0.229073047637939,0.0334785617887974,0.00476571172475815,-0.258005529642105,-0.966131687164307,-0.766679286956787,0.0817651748657227,-0.636802434921265,-0.20166352391243,0.979385912418365,0.0116281844675541,
- -0.205567628145218,0.978377401828766,0.0227990131825209,-0.269263982772827,0.850787222385406,0.451285004615784,-0.20166352391243,0.979385912418365,0.0116281844675541,-0.269263982772827,0.850787222385406,0.451285004615784,0.160034283995628,0.986712515354156,0.0280621238052845,0.890319287776947,0.395877987146378,-0.224971696734428,0.726034343242645,0.687189280986786,-0.025398887693882,0.826305210590363,0.563100397586823,-0.0117419008165598,0.0126501079648733,0.0278229452669621,0.99953281879425,0.331841140985489,-0.162751570343971,0.929189682006836,0.107426144182682,0.0617587827146053,0.992293119430542,0.0706725716590881,0.0575335621833801,0.99583899974823,0.260590970516205,-0.958260893821716,0.117594242095947,0.182146832346916,-0.982833921909332,0.0293295029550791,0.155250355601311,0.0254538618028164,0.987547159194946,0.252890199422836,-0.967206537723541,0.0236239116638899,0.182146832346916,-0.982833921909332,0.0293295029550791,0.260590970516205,-0.958260893821716,0.117594242095947,-0.116454899311066,-0.0102205872535706,-0.993143439292908,-0.0121066458523273,0.0115467151626945,-0.999860048294067,-0.0943230614066124,-0.00315418932586908,-0.995536684989929,-0.262150079011917,-0.964515507221222,-0.031419612467289,0.0507515929639339,-0.997905373573303,-0.0401153080165386,-0.0943230614066124,-0.00315418932586908,-0.995536684989929,-0.0389972440898418,-0.0190453641116619,-0.99905788898468,0.0537796393036842,-0.475142896175385,0.878263652324677,0.172250241041183,-0.0148168187588453,0.984941780567169,0.0126501079648733,0.0278229452669621,0.99953281879425,-0.867454290390015,-0.423908293247223,0.260432243347168,0.0126501079648733,0.0278229452669621,0.99953281879425,-0.498926281929016,-0.341928213834763,0.796340107917786,0.261211812496185,-0.900993227958679,-0.346380859613419,0.128467097878456,0.0053523532114923,-0.99169933795929,-0.0256424471735954,-0.0488636046648026,-0.998476266860962,-0.176011011004448,-0.136553227901459,-0.974871039390564,-0.0256424471735954,-0.0488636046648026,-0.998476266860962,0.125366315245628,0.0583471953868866,-0.990393400192261,
- 0.0279577579349279,0.0331990346312523,-0.999057710170746,0.0468883737921715,-0.0400713905692101,-0.998096108436584,-0.176011011004448,-0.136553227901459,-0.974871039390564,0.761574923992157,0.647789537906647,0.0192985441535711,0.859439492225647,0.510367035865784,-0.0298243816941977,0.437701731920242,0.891198813915253,-0.119087874889374,0.182146832346916,-0.982833921909332,0.0293295029550791,0.297395020723343,-0.954220831394196,0.0319213457405567,0.0239200741052628,-0.0265880692750216,0.999360322952271,-0.1400126516819,-0.00380202010273933,-0.990142464637756,0.974169373512268,0.00556478090584278,-0.225750252604485,0.959033071994781,0.172633349895477,-0.224618270993233,0.899311780929565,0.421297043561935,-0.117248296737671,-0.0703535601496696,-0.053333293646574,-0.996095359325409,0.959033071994781,0.172633349895477,-0.224618270993233,-0.345825374126434,0.938201904296875,0.0134883224964142,-0.0930149257183075,0.993095695972443,-0.071478396654129,0.172600582242012,0.0390959046781063,-0.984215795993805,0.0716360434889793,0.996513485908508,-0.0427691861987114,-0.0549655258655548,0.998103857040405,-0.0277043618261814,0.160034283995628,0.986712515354156,0.0280621238052845,-0.0734143108129501,0.98553067445755,-0.152773439884186,0.51929384469986,0.853981614112854,-0.0323954150080681,-0.0879626497626305,-0.0382437258958817,-0.995389342308044,-0.118712440133095,0.0998765528202057,-0.987892806529999,-0.125763654708862,-0.0111092356964946,-0.991998136043549,-0.113254681229591,0.0653369501233101,-0.99141538143158,-0.228308513760567,0.972338974475861,-0.0493158996105194,0.0279577579349279,0.0331990346312523,-0.999057710170746,0.125366315245628,0.0583471953868866,-0.990393400192261,-0.467833012342453,0.880956053733826,-0.0710555836558342,-0.976539969444275,-0.100863099098206,0.190253436565399,-0.955836236476898,-0.000676831230521202,-0.293899118900299,-0.469974130392075,-0.0184782724827528,0.882486820220947,-0.118040181696415,0.0618892312049866,-0.99107837677002,0.974169373512268,0.00556478090584278,-0.225750252604485,-0.1400126516819,-0.00380202010273933,-0.990142464637756,
- 0.00476571172475815,-0.258005529642105,-0.966131687164307,-0.118040181696415,0.0618892312049866,-0.99107837677002,-0.1400126516819,-0.00380202010273933,-0.990142464637756,-0.207935035228729,0.974499464035034,0.0843440592288971,0.199686646461487,0.0806176289916039,0.976537883281708,0.0134309828281403,0.396870046854019,0.917776525020599,0.0134309828281403,0.396870046854019,0.917776525020599,0.492052525281906,0.350911170244217,0.796709358692169,0.761574923992157,0.647789537906647,0.0192985441535711,-0.205567628145218,0.978377401828766,0.0227990131825209,-0.27231764793396,0.961293816566467,0.0419224053621292,-0.23017917573452,-0.00164461880922318,0.973146915435791,-0.205567628145218,0.978377401828766,0.0227990131825209,-0.23017917573452,-0.00164461880922318,0.973146915435791,-0.0210589598864317,0.0162286758422852,0.999646604061127,0.0891652405261993,-0.995195925235748,-0.0404327884316444,-0.642092347145081,-0.764729380607605,0.0539111495018005,-0.450284242630005,0.467738658189774,0.760568737983704,0.445800870656967,-0.468212991952896,-0.76291424036026,-0.364024043083191,0.86109846830368,0.354959279298782,0.0270313341170549,-0.897475123405457,0.440236151218414,-0.867454290390015,-0.423908293247223,0.260432243347168,0.151725769042969,-0.315796613693237,0.936617255210876,0.0537796393036842,-0.475142896175385,0.878263652324677,-0.0256424471735954,-0.0488636046648026,-0.998476266860962,0.0841806828975677,0.0588745847344399,-0.994709730148315,0.125366315245628,0.0583471953868866,-0.990393400192261,0.0134309828281403,0.396870046854019,0.917776525020599,0.761574923992157,0.647789537906647,0.0192985441535711,-0.207935035228729,0.974499464035034,0.0843440592288971,-0.1400126516819,-0.00380202010273933,-0.990142464637756,0.959033071994781,0.172633349895477,-0.224618270993233,-0.0292393155395985,-0.152342572808266,-0.98789519071579,0.0126501079648733,0.0278229452669621,0.99953281879425,0.0289654731750488,-0.0566613040864468,0.997973263263702,-0.498926281929016,-0.341928213834763,0.796340107917786,-0.247113794088364,0.967681348323822,-0.0502763912081718,
- -0.107143245637417,0.994206547737122,-0.00859410595148802,-0.27231764793396,0.961293816566467,0.0419224053621292,-0.205567628145218,0.978377401828766,0.0227990131825209,0.134647324681282,0.990657508373261,0.0216309726238251,0.186885640025139,0.979301035404205,-0.0777388364076614,0.313655108213425,0.946015000343323,-0.0817077308893204,0.151725769042969,-0.315796613693237,0.936617255210876,-0.940463721752167,-0.315925240516663,0.125376686453819,-0.94206303358078,-0.308221995830536,0.132349818944931,0.0651247054338455,-0.0305108651518822,0.997410655021667,-0.940463721752167,-0.315925240516663,0.125376686453819,0.151725769042969,-0.315796613693237,0.936617255210876,-0.867454290390015,-0.423908293247223,0.260432243347168,0.621876776218414,0.782789528369904,-0.0225815549492836,0.726034343242645,0.687189280986786,-0.025398887693882,0.698581099510193,0.703973412513733,-0.128085881471634,0.155250355601311,0.0254538618028164,0.987547159194946,0.0879488736391068,0.0563951246440411,0.994527339935303,0.260590970516205,-0.958260893821716,0.117594242095947,-0.23017917573452,-0.00164461880922318,0.973146915435791,0.0879488736391068,0.0563951246440411,0.994527339935303,0.155250355601311,0.0254538618028164,0.987547159194946,-0.721121728420258,-0.68861311674118,0.0761278942227364,0.0289654731750488,-0.0566613040864468,0.997973263263702,-0.135059595108032,-0.455446362495422,0.879958868026733,0.0270826295018196,0.0162597168236971,-0.99950098991394,0.375683933496475,0.922583878040314,-0.0877528637647629,-0.0200506746768951,0.978813052177429,-0.203772068023682,0.107426144182682,0.0617587827146053,0.992293119430542,0.621876776218414,0.782789528369904,-0.0225815549492836,0.0706725716590881,0.0575335621833801,0.99583899974823,0.621876776218414,0.782789528369904,-0.0225815549492836,-0.0443713031709194,0.0626721084117889,0.997047364711761,0.0706725716590881,0.0575335621833801,0.99583899974823,-0.0924297869205475,-0.0635092481970787,0.993691742420197,0.271075934171677,-0.961452722549438,0.0461162514984608,0.0891652405261993,-0.995195925235748,-0.0404327884316444,
- -0.450284242630005,0.467738658189774,0.760568737983704,-0.450284242630005,0.467738658189774,0.760568737983704,0.128774017095566,0.0273688696324825,0.991296291351318,-0.0924297869205475,-0.0635092481970787,0.993691742420197,-0.676572144031525,-0.730095624923706,0.0959715694189072,-0.721121728420258,-0.68861311674118,0.0761278942227364,-0.135059595108032,-0.455446362495422,0.879958868026733,-0.0217126850038767,0.0143169490620494,0.999661803245544,-0.266306519508362,-0.748082876205444,0.607826352119446,-0.676572144031525,-0.730095624923706,0.0959715694189072,-0.135059595108032,-0.455446362495422,0.879958868026733,0.172250241041183,-0.0148168187588453,0.984941780567169,0.914759159088135,0.393300294876099,-0.0923615396022797,0.331841140985489,-0.162751570343971,0.929189682006836,0.162285014986992,0.200067356228828,0.96624881029129,0.996635615825653,-0.0674002021551132,-0.0466347672045231,0.996524393558502,-0.00510957604274154,-0.0831457227468491,0.142880797386169,-0.0121721494942904,0.989665031433105,-0.846770584583282,-0.531875908374786,-0.00936547387391329,0.00476571172475815,-0.258005529642105,-0.966131687164307,-0.972833395004272,-0.229073047637939,0.0334785617887974,0.826305210590363,0.563100397586823,-0.0117419008165598,0.107426144182682,0.0617587827146053,0.992293119430542,0.331841140985489,-0.162751570343971,0.929189682006836,0.331841140985489,-0.162751570343971,0.929189682006836,0.914759159088135,0.393300294876099,-0.0923615396022797,0.826305210590363,0.563100397586823,-0.0117419008165598,0.100826345384121,0.289998024702072,0.951701283454895,-0.00512622902169824,0.0485279485583305,0.998808741569519,-0.0443713031709194,0.0626721084117889,0.997047364711761,-0.803514957427979,-0.592875719070435,0.053498700261116,-0.972833395004272,-0.229073047637939,0.0334785617887974,-0.867454290390015,-0.423908293247223,0.260432243347168,-0.846770584583282,-0.531875908374786,-0.00936547387391329,-0.972833395004272,-0.229073047637939,0.0334785617887974,-0.803514957427979,-0.592875719070435,0.053498700261116,0.964322626590729,0.253943771123886,-0.0747975707054138,
- 0.494829624891281,0.0242834985256195,0.868650615215302,0.999306082725525,-0.00142897292971611,-0.0372210927307606,0.494829624891281,0.0242834985256195,0.868650615215302,0.136466711759567,-0.101215645670891,0.985460460186005,0.154858008027077,-0.0736975744366646,0.985184073448181,-0.642092347145081,-0.764729380607605,0.0539111495018005,0.0113847376778722,-0.0356801077723503,0.999298453330994,-0.450284242630005,0.467738658189774,0.760568737983704,-0.0167186241596937,0.0800198763608933,-0.996653139591217,-0.0121066458523273,0.0115467151626945,-0.999860048294067,-0.0554535798728466,0.0358911864459515,-0.99781596660614,0.964322626590729,0.253943771123886,-0.0747975707054138,0.136466711759567,-0.101215645670891,0.985460460186005,0.494829624891281,0.0242834985256195,0.868650615215302,-0.36364871263504,-0.212770611047745,0.906911432743073,-0.0217126850038767,0.0143169490620494,0.999661803245544,-0.00512622902169824,0.0485279485583305,0.998808741569519,0.100826345384121,0.289998024702072,0.951701283454895,-0.36364871263504,-0.212770611047745,0.906911432743073,-0.00512622902169824,0.0485279485583305,0.998808741569519,0.195315733551979,-0.978140711784363,-0.0713629722595215,-0.148885920643806,-0.426937758922577,-0.891940116882324,-0.126042544841766,-0.0463888794183731,-0.990939676761627,-0.126042544841766,-0.0463888794183731,-0.990939676761627,-0.148885920643806,-0.426937758922577,-0.891940116882324,-0.0694743320345879,-0.0526200011372566,-0.996195077896118,0.0546078607439995,0.00692589301615953,0.998483896255493,0.575836777687073,0.81134170293808,0.100680977106094,-0.00508980546146631,0.0387772507965565,0.999234914779663,0.987002491950989,-0.099773146212101,0.125981867313385,-0.155956014990807,0.219562247395515,0.96305251121521,-0.597652196884155,0.23514898121357,0.766496598720551,-0.207935035228729,0.974499464035034,0.0843440592288971,0.761574923992157,0.647789537906647,0.0192985441535711,0.371721178293228,0.927030980587006,-0.0493663102388382,0.999306082725525,-0.00142897292971611,-0.0372210927307606,0.969289302825928,0.0516689084470272,-0.240434512495995,
- 0.985103070735931,-0.00936349201947451,-0.171710342168808,-0.158527851104736,0.0508237108588219,-0.986045598983765,0.11975771933794,-0.172376990318298,-0.977724015712738,-0.234279558062553,-0.0126497372984886,-0.972087025642395,-0.0734143108129501,0.98553067445755,-0.152773439884186,-0.0879626497626305,-0.0382437258958817,-0.995389342308044,-0.0694743320345879,-0.0526200011372566,-0.996195077896118,-0.0734143108129501,0.98553067445755,-0.152773439884186,-0.0694743320345879,-0.0526200011372566,-0.996195077896118,0.0270826295018196,0.0162597168236971,-0.99950098991394,-0.57899022102356,-0.815261483192444,-0.0109157711267471,-0.148885920643806,-0.426937758922577,-0.891940116882324,-0.0301522724330425,-0.997304379940033,0.0668955594301224,0.11975771933794,-0.172376990318298,-0.977724015712738,-0.158527851104736,0.0508237108588219,-0.986045598983765,0.958564460277557,-0.226753681898117,-0.172444045543671,-0.266306519508362,-0.748082876205444,0.607826352119446,-0.0217126850038767,0.0143169490620494,0.999661803245544,-0.195527955889702,0.00879787094891071,0.980658769607544,-0.976539969444275,-0.100863099098206,0.190253436565399,-0.469974130392075,-0.0184782724827528,0.882486820220947,0.05936299264431,0.112219154834747,0.991908729076386,-0.690196812152863,-0.720052599906921,0.0717828720808029,-0.803514957427979,-0.592875719070435,0.053498700261116,-0.867454290390015,-0.423908293247223,0.260432243347168,0.726034343242645,0.687189280986786,-0.025398887693882,0.621876776218414,0.782789528369904,-0.0225815549492836,0.107426144182682,0.0617587827146053,0.992293119430542,0.826305210590363,0.563100397586823,-0.0117419008165598,0.726034343242645,0.687189280986786,-0.025398887693882,0.107426144182682,0.0617587827146053,0.992293119430542,0.0270826295018196,0.0162597168236971,-0.99950098991394,-0.0694743320345879,-0.0526200011372566,-0.996195077896118,-0.148885920643806,-0.426937758922577,-0.891940116882324,-0.469974130392075,-0.0184782724827528,0.882486820220947,0.494829624891281,0.0242834985256195,0.868650615215302,0.154858008027077,-0.0736975744366646,0.985184073448181,
- -0.469974130392075,-0.0184782724827528,0.882486820220947,0.154858008027077,-0.0736975744366646,0.985184073448181,0.05936299264431,0.112219154834747,0.991908729076386,0.0507515929639339,-0.997905373573303,-0.0401153080165386,-0.116454899311066,-0.0102205872535706,-0.993143439292908,-0.0943230614066124,-0.00315418932586908,-0.995536684989929,-0.0301522724330425,-0.997304379940033,0.0668955594301224,0.195315733551979,-0.978140711784363,-0.0713629722595215,-0.676572144031525,-0.730095624923706,0.0959715694189072,0.00736961700022221,-0.998593091964722,0.0525125749409199,-0.266306519508362,-0.748082876205444,0.607826352119446,-0.195527955889702,0.00879787094891071,0.980658769607544,-0.642092347145081,-0.764729380607605,0.0539111495018005,-0.261746555566788,-0.964399099349976,0.0377247631549835,0.0275807082653046,-0.0375671237707138,0.998913466930389,0.0113847376778722,-0.0356801077723503,0.999298453330994,0.0507515929639339,-0.997905373573303,-0.0401153080165386,0.000867267022840679,-0.999662935733795,-0.0259477701038122,-0.116454899311066,-0.0102205872535706,-0.993143439292908,0.408613324165344,-0.912659525871277,-0.0093716885894537,0.252828925848007,-0.967232346534729,-0.0232195965945721,0.297395020723343,-0.954220831394196,0.0319213457405567,0.182146832346916,-0.982833921909332,0.0293295029550791,0.252890199422836,-0.967206537723541,0.0236239116638899,0.252890199422836,-0.967206537723541,0.0236239116638899,0.260590970516205,-0.958260893821716,0.117594242095947,0.261211812496185,-0.900993227958679,-0.346380859613419,0.408613324165344,-0.912659525871277,-0.0093716885894537,-0.0611858740448952,0.979914546012878,-0.189799308776855,-0.339704275131226,0.939732372760773,0.0387843027710915,-0.27231764793396,0.961293816566467,0.0419224053621292,-0.107143245637417,0.994206547737122,-0.00859410595148802,0.0610047578811646,0.292145252227783,0.954426288604736,-0.23017917573452,-0.00164461880922318,0.973146915435791,-0.27231764793396,0.961293816566467,0.0419224053621292,-0.339704275131226,0.939732372760773,0.0387843027710915,-0.269263982772827,0.850787222385406,0.451285004615784,
- -0.205567628145218,0.978377401828766,0.0227990131825209,0.0559851489961147,0.0352373085916042,0.997809648513794,0.128774017095566,0.0273688696324825,0.991296291351318,-0.269263982772827,0.850787222385406,0.451285004615784,0.0559851489961147,0.0352373085916042,0.997809648513794,0.575836777687073,0.81134170293808,0.100680977106094,0.313655108213425,0.946015000343323,-0.0817077308893204,0.160034283995628,0.986712515354156,0.0280621238052845,0.371721178293228,0.927030980587006,-0.0493663102388382,0.186885640025139,0.979301035404205,-0.0777388364076614,0.134647324681282,0.990657508373261,0.0216309726238251,-0.207935035228729,0.974499464035034,0.0843440592288971,0.761574923992157,0.647789537906647,0.0192985441535711,0.518127381801605,0.834535896778107,-0.187333732843399,0.371721178293228,0.927030980587006,-0.0493663102388382,0.437701731920242,0.891198813915253,-0.119087874889374,0.518127381801605,0.834535896778107,-0.187333732843399,0.761574923992157,0.647789537906647,0.0192985441535711,0.560477316379547,0.827834069728851,-0.0235818400979042,-0.0554535798728466,0.0358911864459515,-0.99781596660614,0.0279577579349279,0.0331990346312523,-0.999057710170746,-0.228308513760567,0.972338974475861,-0.0493158996105194,-0.0167186241596937,0.0800198763608933,-0.996653139591217,-0.0554535798728466,0.0358911864459515,-0.99781596660614,0.560477316379547,0.827834069728851,-0.0235818400979042,-0.0167186241596937,0.0800198763608933,-0.996653139591217,0.560477316379547,0.827834069728851,-0.0235818400979042,-0.345825374126434,0.938201904296875,0.0134883224964142,-0.345825374126434,0.938201904296875,0.0134883224964142,0.172600582242012,0.0390959046781063,-0.984215795993805,-0.0167186241596937,0.0800198763608933,-0.996653139591217,-0.100256279110909,-0.00934088975191116,-0.994917869567871,0.933890640735626,0.328281819820404,-0.141702026128769,0.987975895404816,0.034493762999773,-0.150710910558701,-0.119894735515118,0.149967327713966,-0.981394529342651,-0.976539969444275,-0.100863099098206,0.190253436565399,-0.995439231395721,0.0226257517933846,0.0926757156848907,
- -0.955836236476898,-0.000676831230521202,-0.293899118900299,-0.20496378839016,-0.167295232415199,-0.964366257190704,-0.955836236476898,-0.000676831230521202,-0.293899118900299,-0.995439231395721,0.0226257517933846,0.0926757156848907,-0.185165271162987,-0.00987809710204601,-0.982657790184021,-0.158527851104736,0.0508237108588219,-0.986045598983765,-0.234279558062553,-0.0126497372984886,-0.972087025642395,-0.234279558062553,-0.0126497372984886,-0.972087025642395,-0.20496378839016,-0.167295232415199,-0.964366257190704,-0.185165271162987,-0.00987809710204601,-0.982657790184021,0.100826345384121,0.289998024702072,0.951701283454895,0.492052525281906,0.350911170244217,0.796709358692169,0.0134309828281403,0.396870046854019,0.917776525020599,0.100826345384121,0.289998024702072,0.951701283454895,0.859439492225647,0.510367035865784,-0.0298243816941977,0.492052525281906,0.350911170244217,0.796709358692169,0.621876776218414,0.782789528369904,-0.0225815549492836,0.859439492225647,0.510367035865784,-0.0298243816941977,-0.0443713031709194,0.0626721084117889,0.997047364711761,0.160034283995628,0.986712515354156,0.0280621238052845,-0.269263982772827,0.850787222385406,0.451285004615784,0.128774017095566,0.0273688696324825,0.991296291351318,0.575836777687073,0.81134170293808,0.100680977106094,0.160034283995628,0.986712515354156,0.0280621238052845,0.128774017095566,0.0273688696324825,0.991296291351318,0.134647324681282,0.990657508373261,0.0216309726238251,0.575836777687073,0.81134170293808,0.100680977106094,0.0546078607439995,0.00692589301615953,0.998483896255493,0.199686646461487,0.0806176289916039,0.976537883281708,0.134647324681282,0.990657508373261,0.0216309726238251,0.0546078607439995,0.00692589301615953,0.998483896255493,-0.766679286956787,0.0817651748657227,-0.636802434921265,0.00476571172475815,-0.258005529642105,-0.966131687164307,-0.231560334563255,-0.0649330615997314,-0.970651090145111,-0.300863444805145,0.217456296086311,-0.928544044494629,-0.766679286956787,0.0817651748657227,-0.636802434921265,-0.237249433994293,0.138505637645721,-0.961524307727814,
- -0.167519450187683,-0.0228477641940117,-0.985604047775269,-0.100256279110909,-0.00934088975191116,-0.994917869567871,-0.119894735515118,0.149967327713966,-0.981394529342651,-0.098837211728096,-0.343106985092163,-0.934081852436066,0.000867267022840679,-0.999662935733795,-0.0259477701038122,0.0891652405261993,-0.995195925235748,-0.0404327884316444,0.271075934171677,-0.961452722549438,0.0461162514984608,0.0507515929639339,-0.997905373573303,-0.0401153080165386,0.0891652405261993,-0.995195925235748,-0.0404327884316444,0.000867267022840679,-0.999662935733795,-0.0259477701038122,0.0507515929639339,-0.997905373573303,-0.0401153080165386,-0.642092347145081,-0.764729380607605,0.0539111495018005,0.0891652405261993,-0.995195925235748,-0.0404327884316444,-0.0930149257183075,0.993095695972443,-0.071478396654129,0.375683933496475,0.922583878040314,-0.0877528637647629,-0.0300426036119461,0.0503198876976967,-0.998281240463257,0.172600582242012,0.0390959046781063,-0.984215795993805,-0.176011011004448,-0.136553227901459,-0.974871039390564,0.0468883737921715,-0.0400713905692101,-0.998096108436584,0.252828925848007,-0.967232346534729,-0.0232195965945721,0.408613324165344,-0.912659525871277,-0.0093716885894537,-0.0554535798728466,0.0358911864459515,-0.99781596660614,0.0493470802903175,-0.0423694439232349,-0.997882664203644,0.0468883737921715,-0.0400713905692101,-0.998096108436584,0.0279577579349279,0.0331990346312523,-0.999057710170746,0.155250355601311,0.0254538618028164,0.987547159194946,0.0239200741052628,-0.0265880692750216,0.999360322952271,-0.0210589598864317,0.0162286758422852,0.999646604061127,-0.23017917573452,-0.00164461880922318,0.973146915435791,0.297395020723343,-0.954220831394196,0.0319213457405567,0.271075934171677,-0.961452722549438,0.0461162514984608,-0.0924297869205475,-0.0635092481970787,0.993691742420197,0.0239200741052628,-0.0265880692750216,0.999360322952271,-0.205567628145218,0.978377401828766,0.0227990131825209,-0.0210589598864317,0.0162286758422852,0.999646604061127,0.0559851489961147,0.0352373085916042,0.997809648513794,
- 0.252828925848007,-0.967232346534729,-0.0232195965945721,-0.31184333562851,-0.948983550071716,-0.0467349030077457,0.271075934171677,-0.961452722549438,0.0461162514984608,0.297395020723343,-0.954220831394196,0.0319213457405567,-0.57899022102356,-0.815261483192444,-0.0109157711267471,0.00736961700022221,-0.998593091964722,0.0525125749409199,-0.261746555566788,-0.964399099349976,0.0377247631549835,-0.262150079011917,-0.964515507221222,-0.031419612467289,-0.0389972440898418,-0.0190453641116619,-0.99905788898468,-0.0300426036119461,0.0503198876976967,-0.998281240463257,0.0270826295018196,0.0162597168236971,-0.99950098991394,0.0675630420446396,-0.0783899873495102,-0.994630694389343,-0.57899022102356,-0.815261483192444,-0.0109157711267471,-0.262150079011917,-0.964515507221222,-0.031419612467289,-0.0389972440898418,-0.0190453641116619,-0.99905788898468,0.0675630420446396,-0.0783899873495102,-0.994630694389343,0.0275807082653046,-0.0375671237707138,0.998913466930389,-0.261746555566788,-0.964399099349976,0.0377247631549835,0.00736961700022221,-0.998593091964722,0.0525125749409199,-0.195527955889702,0.00879787094891071,0.980658769607544,-0.0300426036119461,0.0503198876976967,-0.998281240463257,0.375683933496475,0.922583878040314,-0.0877528637647629,0.0270826295018196,0.0162597168236971,-0.99950098991394,0.0706725716590881,0.0575335621833801,0.99583899974823,0.0289654731750488,-0.0566613040864468,0.997973263263702,0.0126501079648733,0.0278229452669621,0.99953281879425,0.60617733001709,0.794423043727875,-0.0379610881209373,0.437701731920242,0.891198813915253,-0.119087874889374,0.859439492225647,0.510367035865784,-0.0298243816941977,0.195315733551979,-0.978140711784363,-0.0713629722595215,-0.686200499534607,-0.727050840854645,0.0229360461235046,-0.721121728420258,-0.68861311674118,0.0761278942227364,-0.676572144031525,-0.730095624923706,0.0959715694189072,-0.0904393717646599,-0.00212168297730386,-0.995899677276611,0.742657899856567,0.656367719173431,-0.132818400859833,0.974169373512268,0.00556478090584278,-0.225750252604485,-0.118040181696415,0.0618892312049866,-0.99107837677002,
- -0.721121728420258,-0.68861311674118,0.0761278942227364,-0.690196812152863,-0.720052599906921,0.0717828720808029,-0.498926281929016,-0.341928213834763,0.796340107917786,0.0289654731750488,-0.0566613040864468,0.997973263263702,-0.940463721752167,-0.315925240516663,0.125376686453819,-0.875783443450928,-0.480232536792755,0.0487863197922707,-0.942618787288666,-0.326700955629349,0.0688207522034645,-0.94206303358078,-0.308221995830536,0.132349818944931,0.136466711759567,-0.101215645670891,0.985460460186005,0.05936299264431,0.112219154834747,0.991908729076386,0.154858008027077,-0.0736975744366646,0.985184073448181,0.950214922428131,0.30395495891571,-0.0685796588659287,0.701747536659241,0.712349236011505,-0.010443982668221,0.835780203342438,0.547329783439636,-0.0436075031757355,0.835754692554474,0.543603360652924,-0.0775204747915268,0.926569044589996,0.348681390285492,-0.14103627204895,-0.942618787288666,-0.326700955629349,0.0688207522034645,-0.167519450187683,-0.0228477641940117,-0.985604047775269,-0.098837211728096,-0.343106985092163,-0.934081852436066,-0.942297279834747,-0.325105518102646,0.0798901170492172,-0.94206303358078,-0.308221995830536,0.132349818944931,-0.772500455379486,-0.610187590122223,0.175824746489525,0.0365459956228733,0.0688631907105446,0.996956586837769,0.0651247054338455,-0.0305108651518822,0.997410655021667,0.12195648252964,-0.00605544820427895,0.992517054080963,0.997531890869141,0.0360951498150826,-0.0602268576622009,0.914759159088135,0.393300294876099,-0.0923615396022797,0.172250241041183,-0.0148168187588453,0.984941780567169,-0.0703535601496696,-0.053333293646574,-0.996095359325409,0.899311780929565,0.421297043561935,-0.117248296737671,0.933890640735626,0.328281819820404,-0.141702026128769,-0.100256279110909,-0.00934088975191116,-0.994917869567871,-0.237249433994293,0.138505637645721,-0.961524307727814,-0.0292393155395985,-0.152342572808266,-0.98789519071579,-0.0703535601496696,-0.053333293646574,-0.996095359325409,-0.300863444805145,0.217456296086311,-0.928544044494629,-0.00508980546146631,0.0387772507965565,0.999234914779663,
- 0.0113847376778722,-0.0356801077723503,0.999298453330994,0.0275807082653046,-0.0375671237707138,0.998913466930389,0.0546078607439995,0.00692589301615953,0.998483896255493,0.371721178293228,0.927030980587006,-0.0493663102388382,0.518127381801605,0.834535896778107,-0.187333732843399,0.186885640025139,0.979301035404205,-0.0777388364076614,0.60617733001709,0.794423043727875,-0.0379610881209373,0.859439492225647,0.510367035865784,-0.0298243816941977,0.621876776218414,0.782789528369904,-0.0225815549492836,0.698581099510193,0.703973412513733,-0.128085881471634,0.125366315245628,0.0583471953868866,-0.990393400192261,-0.129357144236565,0.975492656230927,-0.177990898489952,-0.467833012342453,0.880956053733826,-0.0710555836558342,-0.0443713031709194,0.0626721084117889,0.997047364711761,0.859439492225647,0.510367035865784,-0.0298243816941977,0.100826345384121,0.289998024702072,0.951701283454895,0.0113847376778722,-0.0356801077723503,0.999298453330994,0.128774017095566,0.0273688696324825,0.991296291351318,-0.450284242630005,0.467738658189774,0.760568737983704,-0.0167186241596937,0.0800198763608933,-0.996653139591217,0.172600582242012,0.0390959046781063,-0.984215795993805,-0.0943230614066124,-0.00315418932586908,-0.995536684989929,-0.0121066458523273,0.0115467151626945,-0.999860048294067,0.124457903206348,0.0336852632462978,0.99165290594101,0.0651247054338455,-0.0305108651518822,0.997410655021667,0.0365459956228733,0.0688631907105446,0.996956586837769,0.202545970678329,-0.0891640558838844,0.97520512342453,0.584332585334778,0.0385954827070236,0.810595989227295,0.921933770179749,0.300987750291824,0.243812888860703,0.701747536659241,0.712349236011505,-0.010443982668221,0.202545970678329,-0.0891640558838844,0.97520512342453,-0.0343090742826462,0.192904368042946,-0.980617582798004,0.978560447692871,0.135774031281471,-0.154870375990868,0.802802860736847,0.569764256477356,-0.175717011094093,-0.146127015352249,-0.0792327895760536,-0.986087739467621,0.919091284275055,0.356295496225357,-0.168299600481987,0.921933770179749,0.300987750291824,0.243812888860703,
- 0.996524393558502,-0.00510957604274154,-0.0831457227468491,0.982448875904083,0.0930787548422813,-0.161649405956268,0.0240749791264534,0.338503628969193,0.940657138824463,0.581407487392426,-0.6125208735466,0.535521745681763,-0.145178064703941,-0.179535046219826,-0.972980260848999,-0.772500455379486,-0.610187590122223,0.175824746489525,-0.942297279834747,-0.325105518102646,0.0798901170492172,-0.729495108127594,-0.610906541347504,0.307620018720627,-0.00587061047554016,-0.580494463443756,0.814243018627167,-0.119894735515118,0.149967327713966,-0.981394529342651,0.987975895404816,0.034493762999773,-0.150710910558701,0.978560447692871,0.135774031281471,-0.154870375990868,-0.0343090742826462,0.192904368042946,-0.980617582798004,-0.128501623868942,-0.0613208785653114,-0.989811718463898,-0.119894735515118,0.149967327713966,-0.981394529342651,-0.0343090742826462,0.192904368042946,-0.980617582798004,0.921933770179749,0.300987750291824,0.243812888860703,0.835780203342438,0.547329783439636,-0.0436075031757355,0.701747536659241,0.712349236011505,-0.010443982668221,-0.729495108127594,-0.610906541347504,0.307620018720627,-0.098837211728096,-0.343106985092163,-0.934081852436066,-0.417165458202362,-0.288661062717438,-0.861770153045654,0.0365459956228733,0.0688631907105446,0.996956586837769,-0.772500455379486,-0.610187590122223,0.175824746489525,-0.00587061047554016,-0.580494463443756,0.814243018627167,0.584332585334778,0.0385954827070236,0.810595989227295,0.172590374946594,-0.00280965864658356,0.984989702701569,0.0365459956228733,0.0688631907105446,0.996956586837769,-0.00587061047554016,-0.580494463443756,0.814243018627167,0.202545970678329,-0.0891640558838844,0.97520512342453,0.701747536659241,0.712349236011505,-0.010443982668221,0.950214922428131,0.30395495891571,-0.0685796588659287,0.124457903206348,0.0336852632462978,0.99165290594101,0.142880797386169,-0.0121721494942904,0.989665031433105,0.996524393558502,-0.00510957604274154,-0.0831457227468491,0.921933770179749,0.300987750291824,0.243812888860703,0.584332585334778,0.0385954827070236,0.810595989227295,
- -0.152620866894722,0.00941079296171665,-0.98824006319046,0.984274983406067,0.0751990452408791,-0.159837320446968,0.958564460277557,-0.226753681898117,-0.172444045543671,-0.158527851104736,0.0508237108588219,-0.986045598983765,0.9874227643013,-0.00969963613897562,-0.157804667949677,0.995480537414551,0.015409036539495,-0.0937078595161438,0.964322626590729,0.253943771123886,-0.0747975707054138,0.985103070735931,-0.00936349201947451,-0.171710342168808,0.0523476712405682,-0.0163259617984295,0.99849545955658,-0.983554303646088,-0.0559555254876614,0.171726122498512,-0.976539969444275,-0.100863099098206,0.190253436565399,0.05936299264431,0.112219154834747,0.991908729076386,0.113534286618233,0.0195890832692385,0.993341028690338,0.0523476712405682,-0.0163259617984295,0.99849545955658,0.05936299264431,0.112219154834747,0.991908729076386,0.136466711759567,-0.101215645670891,0.985460460186005,-0.300863444805145,0.217456296086311,-0.928544044494629,-0.0703535601496696,-0.053333293646574,-0.996095359325409,-0.100256279110909,-0.00934088975191116,-0.994917869567871,-0.167519450187683,-0.0228477641940117,-0.985604047775269,-0.128501623868942,-0.0613208785653114,-0.989811718463898,-0.0343090742826462,0.192904368042946,-0.980617582798004,-0.146127015352249,-0.0792327895760536,-0.986087739467621,-0.221127092838287,-0.00342833017930388,-0.975239038467407,-0.152620866894722,0.00941079296171665,-0.98824006319046,-0.158527851104736,0.0508237108588219,-0.986045598983765,-0.185165271162987,-0.00987809710204601,-0.982657790184021,-0.20496378839016,-0.167295232415199,-0.964366257190704,-0.994434475898743,-0.0330664664506912,0.100034162402153,-0.221127092838287,-0.00342833017930388,-0.975239038467407,-0.20496378839016,-0.167295232415199,-0.964366257190704,-0.995439231395721,0.0226257517933846,0.0926757156848907,-0.922960102558136,-0.380840003490448,0.0557278990745544,-0.985436975955963,-0.0987600758671761,0.138421520590782,-0.729495108127594,-0.610906541347504,0.307620018720627,-0.00587061047554016,-0.580494463443756,0.814243018627167,-0.985436975955963,-0.0987600758671761,0.138421520590782,
- -0.95521491765976,0.238745033740997,0.174829706549644,-0.729495108127594,-0.610906541347504,0.307620018720627,-0.417165458202362,-0.288661062717438,-0.861770153045654,-0.358151227235794,0.0882855355739594,-0.929480254650116,0.964322626590729,0.253943771123886,-0.0747975707054138,0.995480537414551,0.015409036539495,-0.0937078595161438,0.113534286618233,0.0195890832692385,0.993341028690338,0.136466711759567,-0.101215645670891,0.985460460186005,0.202545970678329,-0.0891640558838844,0.97520512342453,0.172590374946594,-0.00280965864658356,0.984989702701569,0.584332585334778,0.0385954827070236,0.810595989227295,0.835754692554474,0.543603360652924,-0.0775204747915268,0.835780203342438,0.547329783439636,-0.0436075031757355,0.921933770179749,0.300987750291824,0.243812888860703,0.919091284275055,0.356295496225357,-0.168299600481987,0.202545970678329,-0.0891640558838844,0.97520512342453,0.0365459956228733,0.0688631907105446,0.996956586837769,0.172590374946594,-0.00280965864658356,0.984989702701569,-0.729495108127594,-0.610906541347504,0.307620018720627,-0.358151227235794,0.0882855355739594,-0.929480254650116,-0.239538297057152,0.148093312978745,-0.95952582359314,-0.922960102558136,-0.380840003490448,0.0557278990745544,-0.098837211728096,-0.343106985092163,-0.934081852436066,-0.128501623868942,-0.0613208785653114,-0.989811718463898,-0.417165458202362,-0.288661062717438,-0.861770153045654,-0.00587061047554016,-0.580494463443756,0.814243018627167,-0.729495108127594,-0.610906541347504,0.307620018720627,-0.985436975955963,-0.0987600758671761,0.138421520590782,-0.983554303646088,-0.0559555254876614,0.171726122498512,-0.994434475898743,-0.0330664664506912,0.100034162402153,-0.995439231395721,0.0226257517933846,0.0926757156848907,-0.976539969444275,-0.100863099098206,0.190253436565399,-0.098837211728096,-0.343106985092163,-0.934081852436066,-0.119894735515118,0.149967327713966,-0.981394529342651,-0.128501623868942,-0.0613208785653114,-0.989811718463898,-0.128501623868942,-0.0613208785653114,-0.989811718463898,-0.146127015352249,-0.0792327895760536,-0.986087739467621,
- -0.358151227235794,0.0882855355739594,-0.929480254650116,-0.128501623868942,-0.0613208785653114,-0.989811718463898,-0.358151227235794,0.0882855355739594,-0.929480254650116,-0.417165458202362,-0.288661062717438,-0.861770153045654,-0.942297279834747,-0.325105518102646,0.0798901170492172,-0.098837211728096,-0.343106985092163,-0.934081852436066,-0.729495108127594,-0.610906541347504,0.307620018720627,0.142880797386169,-0.0121721494942904,0.989665031433105,-0.00587061047554016,-0.580494463443756,0.814243018627167,0.0533370636403561,-0.305801063776016,0.950600326061249,0.0533370636403561,-0.305801063776016,0.950600326061249,-0.95521491765976,0.238745033740997,0.174829706549644,-0.983554303646088,-0.0559555254876614,0.171726122498512,0.0523476712405682,-0.0163259617984295,0.99849545955658,-0.95521491765976,0.238745033740997,0.174829706549644,-0.985436975955963,-0.0987600758671761,0.138421520590782,-0.922960102558136,-0.380840003490448,0.0557278990745544,-0.994434475898743,-0.0330664664506912,0.100034162402153,-0.983554303646088,-0.0559555254876614,0.171726122498512,-0.922960102558136,-0.380840003490448,0.0557278990745544,-0.239538297057152,0.148093312978745,-0.95952582359314,-0.221127092838287,-0.00342833017930388,-0.975239038467407,-0.994434475898743,-0.0330664664506912,0.100034162402153,-0.146127015352249,-0.0792327895760536,-0.986087739467621,-0.239538297057152,0.148093312978745,-0.95952582359314,-0.358151227235794,0.0882855355739594,-0.929480254650116,-0.146127015352249,-0.0792327895760536,-0.986087739467621,0.802802860736847,0.569764256477356,-0.175717011094093,0.984274983406067,0.0751990452408791,-0.159837320446968,-0.152620866894722,0.00941079296171665,-0.98824006319046,0.982448875904083,0.0930787548422813,-0.161649405956268,0.996524393558502,-0.00510957604274154,-0.0831457227468491,0.996635615825653,-0.0674002021551132,-0.0466347672045231,0.995480537414551,0.015409036539495,-0.0937078595161438,0.9874227643013,-0.00969963613897562,-0.157804667949677,0.113534286618233,0.0195890832692385,0.993341028690338,0.995480537414551,0.015409036539495,-0.0937078595161438,
- 0.996635615825653,-0.0674002021551132,-0.0466347672045231,0.162285014986992,0.200067356228828,0.96624881029129,0.705441534519196,-0.708513140678406,0.019009493291378,0.506404161453247,-0.861859858036041,-0.0274339690804482,0.631328761577606,-0.768687307834625,0.102683454751968,0.737023591995239,-0.667601048946381,0.105380535125732,-0.2330402135849,0.104164458811283,0.96687239408493,0.146112993359566,0.175088465213776,0.973650455474854,-0.116829000413418,-0.000398751348257065,0.993152022361755,0.477382928133011,0.458835124969482,-0.749383747577667,-0.82421487569809,0.556941509246826,-0.102401532232761,-0.673142790794373,0.73598575592041,-0.0721375867724419,0.929543554782867,-0.366784036159515,0.0376608371734619,0.799497544765472,-0.58654397726059,0.129498824477196,0.798754632472992,-0.59515905380249,-0.0881858766078949,0.146112993359566,0.175088465213776,0.973650455474854,-0.2330402135849,0.104164458811283,0.96687239408493,0.311852872371674,-0.295826435089111,0.902903437614441,0.577151477336884,-0.503539204597473,0.642918765544891,0.798754632472992,-0.59515905380249,-0.0881858766078949,0.799497544765472,-0.58654397726059,0.129498824477196,0.929543554782867,-0.366784036159515,0.0376608371734619,-0.0287778489291668,-0.2486462444067,-0.968166828155518,0.136558637022972,-0.0400691963732243,-0.989821314811707,0.705441534519196,-0.708513140678406,0.019009493291378,0.929543554782867,-0.366784036159515,0.0376608371734619,0.798754632472992,-0.59515905380249,-0.0881858766078949,0.592649698257446,-0.397379547357559,-0.700611114501953,-0.0287778489291668,-0.2486462444067,-0.968166828155518,0.577151477336884,-0.503539204597473,0.642918765544891,0.146112993359566,0.175088465213776,0.973650455474854,0.311852872371674,-0.295826435089111,0.902903437614441,0.144928425550461,-0.0403695106506348,-0.98861837387085,-0.00398905202746391,0.033707968890667,-0.999423742294312,0.145534455776215,0.0534293502569199,-0.987909495830536,0.146112993359566,0.175088465213776,0.973650455474854,0.799497544765472,-0.58654397726059,0.129498824477196,0.737023591995239,-0.667601048946381,0.105380535125732,
- -0.035972248762846,-0.0496789366006851,0.99811726808548,0.799497544765472,-0.58654397726059,0.129498824477196,0.146112993359566,0.175088465213776,0.973650455474854,0.577151477336884,-0.503539204597473,0.642918765544891,0.0974884405732155,0.0180875975638628,-0.995072364807129,-0.636952877044678,0.767843306064606,-0.0686140060424805,-0.0891279280185699,0.994394242763519,-0.0568887963891029,-0.0377814956009388,-0.0476072281599045,-0.998151421546936,-0.0287778489291668,-0.2486462444067,-0.968166828155518,0.592649698257446,-0.397379547357559,-0.700611114501953,0.406491100788116,-0.252040654420853,-0.87820303440094,0.406491100788116,-0.252040654420853,-0.87820303440094,0.144928425550461,-0.0403695106506348,-0.98861837387085,-0.0287778489291668,-0.2486462444067,-0.968166828155518,0.136558637022972,-0.0400691963732243,-0.989821314811707,0.0974884405732155,0.0180875975638628,-0.995072364807129,-0.0377814956009388,-0.0476072281599045,-0.998151421546936,0.306360453367233,0.113564178347588,-0.945117235183716,0.799497544765472,-0.58654397726059,0.129498824477196,0.929543554782867,-0.366784036159515,0.0376608371734619,0.705441534519196,-0.708513140678406,0.019009493291378,0.737023591995239,-0.667601048946381,0.105380535125732,-0.668519496917725,0.743037343025208,-0.0312601439654827,-0.617685794830322,0.786202251911163,-0.018714401870966,-0.661238729953766,0.747798621654511,-0.0596710667014122,-0.673142790794373,0.73598575592041,-0.0721375867724419,0.705441534519196,-0.708513140678406,0.019009493291378,0.136558637022972,-0.0400691963732243,-0.989821314811707,0.306360453367233,0.113564178347588,-0.945117235183716,0.506404161453247,-0.861859858036041,-0.0274339690804482,0.737023591995239,-0.667601048946381,0.105380535125732,0.631328761577606,-0.768687307834625,0.102683454751968,-0.115326538681984,-0.119718670845032,0.986086845397949,-0.035972248762846,-0.0496789366006851,0.99811726808548,-0.668519496917725,0.743037343025208,-0.0312601439654827,-0.629384279251099,0.776784539222717,-0.0219368040561676,-0.116829000413418,-0.000398751348257065,0.993152022361755,
- -0.0530132129788399,0.0553544014692307,0.997058510780334,0.145534455776215,0.0534293502569199,-0.987909495830536,-0.636952877044678,0.767843306064606,-0.0686140060424805,0.0974884405732155,0.0180875975638628,-0.995072364807129,-0.0287778489291668,-0.2486462444067,-0.968166828155518,0.144928425550461,-0.0403695106506348,-0.98861837387085,0.145534455776215,0.0534293502569199,-0.987909495830536,-0.0530132129788399,0.0553544014692307,0.997058510780334,-0.035972248762846,-0.0496789366006851,0.99811726808548,-0.115326538681984,-0.119718670845032,0.986086845397949,0.275532633066177,0.321783453226089,0.905835151672363,0.0610047578811646,0.292145252227783,0.954426288604736,-0.339704275131226,0.939732372760773,0.0387843027710915,0.275532633066177,0.321783453226089,0.905835151672363,0.631328761577606,-0.768687307834625,0.102683454751968,0.506404161453247,-0.861859858036041,-0.0274339690804482,0.261211812496185,-0.900993227958679,-0.346380859613419,0.260590970516205,-0.958260893821716,0.117594242095947,-0.0377814956009388,-0.0476072281599045,-0.998151421546936,-0.0891279280185699,0.994394242763519,-0.0568887963891029,-0.129357144236565,0.975492656230927,-0.177990898489952,0.0841806828975677,0.0588745847344399,-0.994709730148315,0.128467097878456,0.0053523532114923,-0.99169933795929,-0.0377814956009388,-0.0476072281599045,-0.998151421546936,0.0841806828975677,0.0588745847344399,-0.994709730148315,-0.115326538681984,-0.119718670845032,0.986086845397949,0.631328761577606,-0.768687307834625,0.102683454751968,0.260590970516205,-0.958260893821716,0.117594242095947,0.0879488736391068,0.0563951246440411,0.994527339935303,-0.115326538681984,-0.119718670845032,0.986086845397949,0.260590970516205,-0.958260893821716,0.117594242095947,0.275532633066177,0.321783453226089,0.905835151672363,-0.617685794830322,0.786202251911163,-0.018714401870966,-0.668519496917725,0.743037343025208,-0.0312601439654827,-0.0530132129788399,0.0553544014692307,0.997058510780334,-0.0287778489291668,-0.2486462444067,-0.968166828155518,0.145534455776215,0.0534293502569199,-0.987909495830536,
- 0.0974884405732155,0.0180875975638628,-0.995072364807129,0.136558637022972,-0.0400691963732243,-0.989821314811707,0.275532633066177,0.321783453226089,0.905835151672363,0.0879488736391068,0.0563951246440411,0.994527339935303,0.0610047578811646,0.292145252227783,0.954426288604736,-0.661238729953766,0.747798621654511,-0.0596710667014122,-0.617685794830322,0.786202251911163,-0.018714401870966,-0.339704275131226,0.939732372760773,0.0387843027710915,-0.0611858740448952,0.979914546012878,-0.189799308776855,0.275532633066177,0.321783453226089,0.905835151672363,-0.115326538681984,-0.119718670845032,0.986086845397949,0.0879488736391068,0.0563951246440411,0.994527339935303,0.306360453367233,0.113564178347588,-0.945117235183716,0.128467097878456,0.0053523532114923,-0.99169933795929,0.261211812496185,-0.900993227958679,-0.346380859613419,0.306360453367233,0.113564178347588,-0.945117235183716,-0.0377814956009388,-0.0476072281599045,-0.998151421546936,0.128467097878456,0.0053523532114923,-0.99169933795929,0.506404161453247,-0.861859858036041,-0.0274339690804482,0.306360453367233,0.113564178347588,-0.945117235183716,0.261211812496185,-0.900993227958679,-0.346380859613419,-0.82421487569809,0.556941509246826,-0.102401532232761,-0.629384279251099,0.776784539222717,-0.0219368040561676,-0.668519496917725,0.743037343025208,-0.0312601439654827,-0.673142790794373,0.73598575592041,-0.0721375867724419,0.138371720910072,-0.0260877758264542,-0.990036725997925,0.15133336186409,0.00725326687097549,-0.988456249237061,0.129359066486359,0.00367060303688049,-0.991591095924377,0.110484644770622,-0.0092763202264905,-0.993834555149078,0.0993586033582687,-0.00339784892275929,-0.995045900344849,0.0900005176663399,-0.0382595583796501,-0.995206654071808,0.106026574969292,-0.0512210875749588,-0.993043184280396,0.138955101370811,-0.0353540852665901,-0.989667475223541,0.138937965035439,-0.0313238650560379,-0.989805579185486,-0.116829000413418,-0.000398751348257065,0.993152022361755,-0.629384279251099,0.776784539222717,-0.0219368040561676,-0.743090629577637,0.559080064296722,0.367757827043533,
- -0.2330402135849,0.104164458811283,0.96687239408493,-0.789937615394592,0.610244989395142,-0.0599976852536201,-0.82421487569809,0.556941509246826,-0.102401532232761,0.477382928133011,0.458835124969482,-0.749383747577667,-0.789937615394592,0.610244989395142,-0.0599976852536201,-0.743090629577637,0.559080064296722,0.367757827043533,-0.629384279251099,0.776784539222717,-0.0219368040561676,-0.82421487569809,0.556941509246826,-0.102401532232761,0.125366315245628,0.0583471953868866,-0.990393400192261,0.0841806828975677,0.0588745847344399,-0.994709730148315,-0.129357144236565,0.975492656230927,-0.177990898489952,0.0675630420446396,-0.0783899873495102,-0.994630694389343,0.0270826295018196,0.0162597168236971,-0.99950098991394,-0.148885920643806,-0.426937758922577,-0.891940116882324,-0.0121066458523273,0.0115467151626945,-0.999860048294067,-0.116454899311066,-0.0102205872535706,-0.993143439292908,0.0493470802903175,-0.0423694439232349,-0.997882664203644,-0.0554535798728466,0.0358911864459515,-0.99781596660614,0.000867267022840679,-0.999662935733795,-0.0259477701038122,-0.31184333562851,-0.948983550071716,-0.0467349030077457,0.0493470802903175,-0.0423694439232349,-0.997882664203644,-0.116454899311066,-0.0102205872535706,-0.993143439292908,0.271075934171677,-0.961452722549438,0.0461162514984608,-0.31184333562851,-0.948983550071716,-0.0467349030077457,0.000867267022840679,-0.999662935733795,-0.0259477701038122,-0.00587061047554016,-0.580494463443756,0.814243018627167,-0.95521491765976,0.238745033740997,0.174829706549644,0.0533370636403561,-0.305801063776016,0.950600326061249,0.142880797386169,-0.0121721494942904,0.989665031433105,0.0533370636403561,-0.305801063776016,0.950600326061249,0.0523476712405682,-0.0163259617984295,0.99849545955658,0.113534286618233,0.0195890832692385,0.993341028690338,0.162285014986992,0.200067356228828,0.96624881029129,-0.00508980546146631,0.0387772507965565,0.999234914779663,0.128774017095566,0.0273688696324825,0.991296291351318,0.0113847376778722,-0.0356801077723503,0.999298453330994,0.134647324681282,0.990657508373261,0.0216309726238251,
- 0.313655108213425,0.946015000343323,-0.0817077308893204,0.575836777687073,0.81134170293808,0.100680977106094,0.12195648252964,-0.00605544820427895,0.992517054080963,0.151725769042969,-0.315796613693237,0.936617255210876,0.0651247054338455,-0.0305108651518822,0.997410655021667,0.124457903206348,0.0336852632462978,0.99165290594101,0.950214922428131,0.30395495891571,-0.0685796588659287,0.997531890869141,0.0360951498150826,-0.0602268576622009,0.12195648252964,-0.00605544820427895,0.992517054080963,0.124457903206348,0.0336852632462978,0.99165290594101,0.926569044589996,0.348681390285492,-0.14103627204895,0.987841665744781,0.0916307494044304,-0.125589430332184,0.997531890869141,0.0360951498150826,-0.0602268576622009,0.950214922428131,0.30395495891571,-0.0685796588659287,-0.221127092838287,-0.00342833017930388,-0.975239038467407,-0.239538297057152,0.148093312978745,-0.95952582359314,-0.146127015352249,-0.0792327895760536,-0.986087739467621,-0.152620866894722,0.00941079296171665,-0.98824006319046,-0.116829000413418,-0.000398751348257065,0.993152022361755,0.146112993359566,0.175088465213776,0.973650455474854,-0.035972248762846,-0.0496789366006851,0.99811726808548,-0.0530132129788399,0.0553544014692307,0.997058510780334,-0.36364871263504,-0.212770611047745,0.906911432743073,0.199686646461487,0.0806176289916039,0.976537883281708,-0.195527955889702,0.00879787094891071,0.980658769607544,0.275532633066177,0.321783453226089,0.905835151672363,-0.339704275131226,0.939732372760773,0.0387843027710915,-0.617685794830322,0.786202251911163,-0.018714401870966,-0.1400126516819,-0.00380202010273933,-0.990142464637756,-0.0292393155395985,-0.152342572808266,-0.98789519071579,-0.237249433994293,0.138505637645721,-0.961524307727814,-0.231560334563255,-0.0649330615997314,-0.970651090145111,-0.237249433994293,0.138505637645721,-0.961524307727814,-0.766679286956787,0.0817651748657227,-0.636802434921265,-0.231560334563255,-0.0649330615997314,-0.970651090145111,-0.0292393155395985,-0.152342572808266,-0.98789519071579,0.959033071994781,0.172633349895477,-0.224618270993233,
- -0.0703535601496696,-0.053333293646574,-0.996095359325409,0.139964863657951,0.0217065308243036,-0.98991858959198,0.124625124037266,-0.0591842383146286,-0.990437269210815,0.172839060425758,0.367150902748108,-0.913962185382843,0.210282266139984,0.0202166195958853,-0.977431774139404,0.209807947278023,0.0305230282247067,-0.977266073226929,0.918483674526215,-0.385423928499222,0.0885234475135803,0.993662536144257,-0.00588893704116344,0.11225088685751,0.207129165530205,-0.0219854190945625,-0.978066563606262,-0.13607819378376,0.00551850348711014,0.990682780742645,-0.0944011360406876,-0.0580112375319004,0.993842661380768,-0.0394425913691521,0.0189739428460598,0.999041676521301,0.204144433140755,-0.0583026558160782,-0.977203071117401,0.777966201305389,-0.588231861591339,-0.220798194408417,0.252463728189468,0.0910685509443283,-0.963311374187469,0.993835091590881,-0.0358166135847569,0.104924373328686,0.995133936405182,-0.0146538112312555,0.0974361896514893,0.956427156925201,0.211056381464005,0.201748013496399,0.986561715602875,0.0112301027402282,0.163002908229828,-0.198529273271561,-0.0155097600072622,0.979972302913666,-0.0701395347714424,0.335733652114868,0.939342021942139,-0.132376343011856,0.0184425618499517,0.991028010845184,-0.983714818954468,-0.0032248985953629,-0.179707556962967,-0.995731890201569,-0.0593644343316555,-0.0706682726740837,-0.931949019432068,-0.293718427419662,-0.212604358792305,0.193746954202652,-0.302470743656158,-0.933259665966034,0.181035727262497,-0.00463258754462004,-0.983465611934662,0.361368775367737,-0.173694461584091,-0.916102051734924,-0.166468277573586,-0.120001964271069,0.978717446327209,-0.323624819517136,0.16413077712059,0.931841194629669,-0.0917706191539764,0.0930766761302948,0.99142062664032,-0.946490108966827,0.301130414009094,-0.116090700030327,-0.932655990123749,0.32933908700943,-0.147270634770393,-0.987865149974823,0.0192131157964468,-0.154121160507202,-0.994656503200531,0.0437229052186012,-0.0935240462422371,0.98819363117218,0.141762122511864,0.0581102557480335,0.918098747730255,0.374905377626419,0.128610715270042,
- 0.983124792575836,0.104605756700039,0.150077506899834,0.988223254680634,-0.0368754081428051,0.148509725928307,0.995707154273987,-0.0159649141132832,0.0911733955144882,-0.099357895553112,0.00575804244726896,0.995035111904144,-0.0551356449723244,0.0164218451827765,0.998343825340271,-0.0415790490806103,-0.0889212563633919,0.995170474052429,-0.109889961779118,0.0515610612928867,0.992605566978455,0.172865733504295,0.0425200201570988,-0.984027206897736,-0.991444766521454,-0.0561765730381012,-0.117820076644421,-0.980006217956543,0.0875222757458687,-0.178683310747147,-0.153691858053207,0.155854880809784,0.975750029087067,-0.109889961779118,0.0515610612928867,0.992605566978455,-0.0415790490806103,-0.0889212563633919,0.995170474052429,-0.877558648586273,0.361588567495346,-0.314872324466705,-0.965608954429626,0.227329671382904,-0.12617664039135,0.143002361059189,0.128104194998741,-0.981396853923798,0.986814558506012,0.128426194190979,0.0985074192285538,0.99322783946991,0.0448184236884117,0.107190743088722,0.984616875648499,0.0472488775849342,0.16821776330471,0.837057173252106,-0.520482003688812,0.168623626232147,-0.0944011360406876,-0.0580112375319004,0.993842661380768,-0.0499066412448883,-0.0474942773580551,0.997623980045319,-0.0394425913691521,0.0189739428460598,0.999041676521301,-0.198529273271561,-0.0155097600072622,0.979972302913666,-0.179419726133347,0.184736013412476,0.966271877288818,-0.0588366650044918,-0.107175245881081,0.992497742176056,-0.903365433216095,-0.427338778972626,0.0362275578081608,-0.875125348567963,-0.466718226671219,-0.127788424491882,-0.880699217319489,-0.47367325425148,0.00157462432980537,0.204905077815056,-0.0358380079269409,-0.978125512599945,0.210282266139984,0.0202166195958853,-0.977431774139404,0.995707154273987,-0.0159649141132832,0.0911733955144882,-0.0402583628892899,-0.207879617810249,0.977325618267059,-0.179239824414253,0.169777527451515,0.969045341014862,-0.101856231689453,0.0183530356734991,0.994629859924316,-0.0565297715365887,0.0121300499886274,0.998327195644379,-0.13607819378376,0.00551850348711014,0.990682780742645,
- -0.17773275077343,-0.0467305779457092,0.982968628406525,-0.0944011360406876,-0.0580112375319004,0.993842661380768,-0.891758680343628,-0.45145708322525,-0.0308725386857986,-0.992829859256744,-0.0517722107470036,-0.107743158936501,-0.179239824414253,0.169777527451515,0.969045341014862,-0.0373413302004337,0.103750318288803,0.993902146816254,0.961333572864532,-0.22582696378231,0.157606855034828,-0.0551356449723244,0.0164218451827765,0.998343825340271,-0.603423833847046,0.346798539161682,0.718060255050659,-0.851729214191437,0.520360708236694,-0.0614988319575787,-0.833429992198944,0.54994934797287,-0.0543161556124687,-0.385464191436768,-0.0361710451543331,0.922013521194458,-0.629242420196533,0.155163705348969,0.761563003063202,-0.0946006327867508,-0.0762919485569,0.992587685585022,-0.902669072151184,0.422780960798264,-0.0802798569202423,-0.972103476524353,0.131358668208122,-0.194318994879723,-0.941617548465729,0.278412610292435,-0.189322292804718,0.503263771533966,-0.0546696372330189,0.862401843070984,0.983124792575836,0.104605756700039,0.150077506899834,0.885772585868835,0.434047698974609,0.164346009492874,-0.993242502212524,0.0990883484482765,-0.060422271490097,-0.982749223709106,-0.10776574909687,-0.150302082300186,-0.875125348567963,-0.466718226671219,-0.127788424491882,-0.903365433216095,-0.427338778972626,0.0362275578081608,0.179638400673866,0.116950556635857,-0.97675621509552,0.101565971970558,0.0402938984334469,-0.994012475013733,0.060482420027256,-0.0350343585014343,-0.997554302215576,-0.946490108966827,0.301130414009094,-0.116090700030327,-0.902669072151184,0.422780960798264,-0.0802798569202423,-0.932655990123749,0.32933908700943,-0.147270634770393,-0.0394425913691521,0.0189739428460598,0.999041676521301,-0.0499066412448883,-0.0474942773580551,0.997623980045319,0.471827238798141,0.0270471498370171,0.881276071071625,0.172865733504295,0.0425200201570988,-0.984027206897736,-0.980006217956543,0.0875222757458687,-0.178683310747147,0.139964863657951,0.0217065308243036,-0.98991858959198,-0.880699217319489,-0.47367325425148,0.00157462432980537,
- -0.875125348567963,-0.466718226671219,-0.127788424491882,-0.931949019432068,-0.293718427419662,-0.212604358792305,0.975192785263062,0.122678279876709,0.184253185987473,0.907022178173065,-0.412254691123962,0.0857722759246826,0.949746668338776,-0.27612641453743,0.147430166602135,0.934520363807678,-0.293329358100891,0.20156791806221,0.812111139297485,-0.0531854219734669,0.581073939800262,0.949746668338776,-0.27612641453743,0.147430166602135,0.11025620251894,0.0141669604927301,-0.99380224943161,0.179638400673866,0.116950556635857,-0.97675621509552,0.060482420027256,-0.0350343585014343,-0.997554302215576,0.11025620251894,0.0141669604927301,-0.99380224943161,0.258545726537704,0.214044958353043,-0.941986680030823,0.179638400673866,0.116950556635857,-0.97675621509552,-0.890543758869171,0.430714726448059,-0.146344482898712,-0.985605895519257,0.151311919093132,-0.0754051581025124,-0.773524880409241,0.502105057239532,0.386716723442078,-0.0946006327867508,-0.0762919485569,0.992587685585022,-0.0402583628892899,-0.207879617810249,0.977325618267059,-0.0499066412448883,-0.0474942773580551,0.997623980045319,0.949746668338776,-0.27612641453743,0.147430166602135,0.812111139297485,-0.0531854219734669,0.581073939800262,0.975192785263062,0.122678279876709,0.184253185987473,0.171178087592125,-0.00477972300723195,-0.985228538513184,0.172865733504295,0.0425200201570988,-0.984027206897736,0.139964863657951,0.0217065308243036,-0.98991858959198,0.210282266139984,0.0202166195958853,-0.977431774139404,0.204905077815056,-0.0358380079269409,-0.978125512599945,0.995707154273987,-0.0159649141132832,0.0911733955144882,0.210282266139984,0.0202166195958853,-0.977431774139404,0.172839060425758,0.367150902748108,-0.913962185382843,0.98819363117218,0.141762122511864,0.0581102557480335,0.172839060425758,0.367150902748108,-0.913962185382843,0.13236902654171,-0.024029329419136,-0.990909218788147,0.0304110050201416,0.318281233310699,-0.947508454322815,0.181024193763733,-0.0797781720757484,-0.980237603187561,0.101050801575184,0.199134066700935,-0.974748432636261,
- 0.11786562204361,-0.0135134290903807,-0.992937684059143,0.184231951832771,0.0232123769819736,-0.982608735561371,0.980852127075195,0.174506545066834,0.0864670425653458,0.967338085174561,0.201061546802521,0.154374346137047,0.917285978794098,0.394437879323959,-0.0548187419772148,0.954199492931366,0.28494468331337,0.0911589860916138,0.782384991645813,0.431084901094437,-0.449488162994385,0.213353633880615,-0.114187628030777,-0.970279097557068,-0.629242420196533,0.155163705348969,0.761563003063202,-0.179239824414253,0.169777527451515,0.969045341014862,-0.0946006327867508,-0.0762919485569,0.992587685585022,0.995707154273987,-0.0159649141132832,0.0911733955144882,0.970839560031891,0.220593586564064,0.0938563793897629,0.204905077815056,-0.0358380079269409,-0.978125512599945,0.45979630947113,-0.108223870396614,-0.881405115127563,0.970839560031891,0.220593586564064,0.0938563793897629,0.949746668338776,-0.27612641453743,0.147430166602135,-0.0701395347714424,0.335733652114868,0.939342021942139,-0.198529273271561,-0.0155097600072622,0.979972302913666,-0.234057873487473,0.316551327705383,0.919245541095734,0.885772585868835,0.434047698974609,0.164346009492874,0.917285978794098,0.394437879323959,-0.0548187419772148,0.967338085174561,0.201061546802521,0.154374346137047,0.45979630947113,-0.108223870396614,-0.881405115127563,0.907022178173065,-0.412254691123962,0.0857722759246826,0.192528069019318,0.163075000047684,-0.967646360397339,0.980852127075195,0.174506545066834,0.0864670425653458,0.192266747355461,-0.30086949467659,-0.934083044528961,0.190203934907913,0.0149957202374935,-0.981630086898804,0.993835091590881,-0.0358166135847569,0.104924373328686,0.980852127075195,0.174506545066834,0.0864670425653458,0.917285978794098,0.394437879323959,-0.0548187419772148,0.400890499353409,0.402774482965469,-0.822836339473724,0.192266747355461,-0.30086949467659,-0.934083044528961,0.917285978794098,0.394437879323959,-0.0548187419772148,0.172839060425758,0.367150902748108,-0.913962185382843,0.400890499353409,0.402774482965469,-0.822836339473724,-0.946490108966827,0.301130414009094,-0.116090700030327,
- -0.994656503200531,0.0437229052186012,-0.0935240462422371,-0.954277157783508,-0.0731304436922073,0.289839953184128,-0.946490108966827,0.301130414009094,-0.116090700030327,-0.954277157783508,-0.0731304436922073,0.289839953184128,-0.902669072151184,0.422780960798264,-0.0802798569202423,-0.931949019432068,-0.293718427419662,-0.212604358792305,-0.995731890201569,-0.0593644343316555,-0.0706682726740837,-0.880699217319489,-0.47367325425148,0.00157462432980537,-0.0588366650044918,-0.107175245881081,0.992497742176056,-0.179419726133347,0.184736013412476,0.966271877288818,-0.140422627329826,-0.00963715650141239,0.990044772624969,-0.13607819378376,0.00551850348711014,0.990682780742645,0.890350699424744,0.136395797133446,0.434363782405853,0.961333572864532,-0.22582696378231,0.157606855034828,-0.0373413302004337,0.103750318288803,0.993902146816254,0.980135023593903,0.165454089641571,0.109363622963429,0.961333572864532,-0.22582696378231,0.157606855034828,0.890350699424744,0.136395797133446,0.434363782405853,-0.233262062072754,-0.525872051715851,-0.8179532289505,0.134864330291748,-0.049094632267952,-0.989647150039673,0.181024193763733,-0.0797781720757484,-0.980237603187561,0.99322783946991,0.0448184236884117,0.107190743088722,0.986814558506012,0.128426194190979,0.0985074192285538,0.181024193763733,-0.0797781720757484,-0.980237603187561,0.184231951832771,0.0232123769819736,-0.982608735561371,-0.234057873487473,0.316551327705383,0.919245541095734,-0.198529273271561,-0.0155097600072622,0.979972302913666,-0.0588366650044918,-0.107175245881081,0.992497742176056,0.885772585868835,0.434047698974609,0.164346009492874,-0.0588366650044918,-0.107175245881081,0.992497742176056,0.503263771533966,-0.0546696372330189,0.862401843070984,0.782384991645813,0.431084901094437,-0.449488162994385,0.361368775367737,-0.173694461584091,-0.916102051734924,0.181035727262497,-0.00463258754462004,-0.983465611934662,0.213353633880615,-0.114187628030777,-0.970279097557068,0.181035727262497,-0.00463258754462004,-0.983465611934662,0.142024621367455,0.0129297440871596,-0.989778757095337,
- 0.128494918346405,-0.00986983627080917,-0.991661131381989,0.207129165530205,-0.0219854190945625,-0.978066563606262,0.213353633880615,-0.114187628030777,-0.970279097557068,-0.833429992198944,0.54994934797287,-0.0543161556124687,-0.851729214191437,0.520360708236694,-0.0614988319575787,-0.77180290222168,0.635859072208405,0.00193272531032562,0.961333572864532,-0.22582696378231,0.157606855034828,0.987153828144073,-0.0205212235450745,0.158449843525887,-0.0551356449723244,0.0164218451827765,0.998343825340271,0.13236902654171,-0.024029329419136,-0.990909218788147,-0.920884191989899,0.314350068569183,-0.230556517839432,-0.678690552711487,-0.730190336704254,-0.0787472724914551,-0.891748428344727,-0.430929034948349,-0.138148352503777,0.127160832285881,0.0887447893619537,-0.987904071807861,-0.678690552711487,-0.730190336704254,-0.0787472724914551,-0.906814277172089,-0.412128686904907,-0.0885324478149414,-0.961538016796112,-0.197934791445732,-0.190437853336334,0.101050801575184,0.199134066700935,-0.974748432636261,-0.941617548465729,0.278412610292435,-0.189322292804718,-0.932655990123749,0.32933908700943,-0.147270634770393,-0.902669072151184,0.422780960798264,-0.0802798569202423,-0.965608954429626,0.227329671382904,-0.12617664039135,-0.991444766521454,-0.0561765730381012,-0.117820076644421,0.172865733504295,0.0425200201570988,-0.984027206897736,0.0347801819443703,-0.0702003091573715,-0.996926426887512,0.11025620251894,0.0141669604927301,-0.99380224943161,0.060482420027256,-0.0350343585014343,-0.997554302215576,-0.987724542617798,-0.0223247595131397,-0.154602125287056,0.128494918346405,-0.00986983627080917,-0.991661131381989,0.142024621367455,0.0129297440871596,-0.989778757095337,-0.903681814670563,-0.392309546470642,-0.171617195010185,0.918397724628448,-0.363408178091049,0.156461745500565,0.777966201305389,-0.588231861591339,-0.220798194408417,0.332676887512207,-0.308343827724457,0.891207218170166,0.124625124037266,-0.0591842383146286,-0.990437269210815,-0.920884191989899,0.314350068569183,-0.230556517839432,0.13236902654171,-0.024029329419136,-0.990909218788147,
- 0.172839060425758,0.367150902748108,-0.913962185382843,0.124625124037266,-0.0591842383146286,-0.990437269210815,0.13236902654171,-0.024029329419136,-0.990909218788147,-0.891758680343628,-0.45145708322525,-0.0308725386857986,-0.179239824414253,0.169777527451515,0.969045341014862,-0.629242420196533,0.155163705348969,0.761563003063202,-0.629242420196533,0.155163705348969,0.761563003063202,-0.603423833847046,0.346798539161682,0.718060255050659,-0.833429992198944,0.54994934797287,-0.0543161556124687,-0.994656503200531,0.0437229052186012,-0.0935240462422371,-0.993294239044189,0.095710314810276,-0.0648554489016533,-0.166468277573586,-0.120001964271069,0.978717446327209,-0.994656503200531,0.0437229052186012,-0.0935240462422371,-0.166468277573586,-0.120001964271069,0.978717446327209,-0.099357895553112,0.00575804244726896,0.995035111904144,0.989615678787231,0.0550432242453098,0.132782086730003,0.837057173252106,-0.520482003688812,0.168623626232147,-0.0863003805279732,-0.107735648751259,0.990426898002625,-0.0588366650044918,-0.107175245881081,0.992497742176056,0.885772585868835,0.434047698974609,0.164346009492874,-0.234057873487473,0.316551327705383,0.919245541095734,0.885772585868835,0.434047698974609,0.164346009492874,-0.0701395347714424,0.335733652114868,0.939342021942139,-0.234057873487473,0.316551327705383,0.919245541095734,0.181035727262497,-0.00463258754462004,-0.983465611934662,0.193746954202652,-0.302470743656158,-0.933259665966034,0.142024621367455,0.0129297440871596,-0.989778757095337,-0.629242420196533,0.155163705348969,0.761563003063202,-0.833429992198944,0.54994934797287,-0.0543161556124687,-0.891758680343628,-0.45145708322525,-0.0308725386857986,0.13236902654171,-0.024029329419136,-0.990909218788147,-0.678690552711487,-0.730190336704254,-0.0787472724914551,0.127160832285881,0.0887447893619537,-0.987904071807861,0.0370719432830811,0.0821243599057198,-0.995932340621948,-0.0588366650044918,-0.107175245881081,0.992497742176056,-0.0394425913691521,0.0189739428460598,0.999041676521301,0.503263771533966,-0.0546696372330189,0.862401843070984,
- -0.987865149974823,0.0192131157964468,-0.154121160507202,-0.913502395153046,-0.368651688098907,-0.172073945403099,-0.993294239044189,0.095710314810276,-0.0648554489016533,-0.994656503200531,0.0437229052186012,-0.0935240462422371,-0.992829859256744,-0.0517722107470036,-0.107743158936501,-0.976149201393127,-0.101639218628407,-0.191839143633842,-0.972103476524353,0.131358668208122,-0.194318994879723,-0.0701395347714424,0.335733652114868,0.939342021942139,0.967338085174561,0.201061546802521,0.154374346137047,0.986561715602875,0.0112301027402282,0.163002908229828,-0.0681170597672462,0.0124467667192221,0.997599720954895,0.967338085174561,0.201061546802521,0.154374346137047,-0.0701395347714424,0.335733652114868,0.939342021942139,0.885772585868835,0.434047698974609,0.164346009492874,-0.995837211608887,0.0258093755692244,-0.087419681251049,-0.995731890201569,-0.0593644343316555,-0.0706682726740837,-0.983714818954468,-0.0032248985953629,-0.179707556962967,-0.0373413302004337,0.103750318288803,0.993902146816254,-0.0917706191539764,0.0930766761302948,0.99142062664032,0.890350699424744,0.136395797133446,0.434363782405853,-0.166468277573586,-0.120001964271069,0.978717446327209,-0.0917706191539764,0.0930766761302948,0.99142062664032,-0.0373413302004337,0.103750318288803,0.993902146816254,0.988223254680634,-0.0368754081428051,0.148509725928307,-0.0394425913691521,0.0189739428460598,0.999041676521301,0.471827238798141,0.0270471498370171,0.881276071071625,0.143002361059189,0.128104194998741,-0.981396853923798,-0.979162037372589,0.0506383515894413,-0.196665734052658,-0.877558648586273,0.361588567495346,-0.314872324466705,-0.140422627329826,-0.00963715650141239,0.990044772624969,-0.995837211608887,0.0258093755692244,-0.087419681251049,-0.13607819378376,0.00551850348711014,0.990682780742645,-0.995837211608887,0.0258093755692244,-0.087419681251049,-0.17773275077343,-0.0467305779457092,0.982968628406525,-0.13607819378376,0.00551850348711014,0.990682780742645,-0.0415790490806103,-0.0889212563633919,0.995170474052429,0.967572629451752,0.184580236673355,0.172433704137802,
- 0.989615678787231,0.0550432242453098,0.132782086730003,-0.0863003805279732,-0.107735648751259,0.990426898002625,-0.0863003805279732,-0.107735648751259,0.990426898002625,-0.153691858053207,0.155854880809784,0.975750029087067,-0.0415790490806103,-0.0889212563633919,0.995170474052429,0.934520363807678,-0.293329358100891,0.20156791806221,0.988223254680634,-0.0368754081428051,0.148509725928307,0.471827238798141,0.0270471498370171,0.881276071071625,-0.0499066412448883,-0.0474942773580551,0.997623980045319,0.812111139297485,-0.0531854219734669,0.581073939800262,0.934520363807678,-0.293329358100891,0.20156791806221,0.471827238798141,0.0270471498370171,0.881276071071625,-0.198529273271561,-0.0155097600072622,0.979972302913666,-0.903365433216095,-0.427338778972626,0.0362275578081608,-0.179419726133347,0.184736013412476,0.966271877288818,-0.227347552776337,-0.20417894423008,0.952168166637421,-0.928476095199585,0.367146641016006,-0.0559974052011967,-0.965469658374786,0.244976118206978,-0.0886298641562462,-0.14814105629921,-0.0205364432185888,0.988753080368042,0.98819363117218,0.141762122511864,0.0581102557480335,0.172839060425758,0.367150902748108,-0.913962185382843,0.917285978794098,0.394437879323959,-0.0548187419772148,-0.880699217319489,-0.47367325425148,0.00157462432980537,-0.140422627329826,-0.00963715650141239,0.990044772624969,-0.179419726133347,0.184736013412476,0.966271877288818,-0.179419726133347,0.184736013412476,0.966271877288818,-0.903365433216095,-0.427338778972626,0.0362275578081608,-0.880699217319489,-0.47367325425148,0.00157462432980537,-0.385464191436768,-0.0361710451543331,0.922013521194458,-0.0944011360406876,-0.0580112375319004,0.993842661380768,-0.17773275077343,-0.0467305779457092,0.982968628406525,0.918098747730255,0.374905377626419,0.128610715270042,0.917285978794098,0.394437879323959,-0.0548187419772148,0.885772585868835,0.434047698974609,0.164346009492874,0.98819363117218,0.141762122511864,0.0581102557480335,0.917285978794098,0.394437879323959,-0.0548187419772148,0.918098747730255,0.374905377626419,0.128610715270042,
- -0.985605895519257,0.151311919093132,-0.0754051581025124,-0.383044183254242,0.203181535005569,0.901107430458069,-0.773524880409241,0.502105057239532,0.386716723442078,-0.383044183254242,0.203181535005569,0.901107430458069,-0.0684823095798492,0.133978217840195,0.988615274429321,-0.0883725583553314,0.125031769275665,0.988209187984467,0.837057173252106,-0.520482003688812,0.168623626232147,-0.0607860647141933,0.0266274865716696,0.997795641422272,-0.0863003805279732,-0.107735648751259,0.990426898002625,0.0937973260879517,0.0419752337038517,-0.994706153869629,0.134864330291748,-0.049094632267952,-0.989647150039673,0.13056455552578,-0.0785391330718994,-0.988324105739594,-0.985605895519257,0.151311919093132,-0.0754051581025124,-0.0684823095798492,0.133978217840195,0.988615274429321,-0.383044183254242,0.203181535005569,0.901107430458069,-0.0946006327867508,-0.0762919485569,0.992587685585022,-0.0499066412448883,-0.0474942773580551,0.997623980045319,-0.0944011360406876,-0.0580112375319004,0.993842661380768,-0.385464191436768,-0.0361710451543331,0.922013521194458,-0.0946006327867508,-0.0762919485569,0.992587685585022,-0.0944011360406876,-0.0580112375319004,0.993842661380768,0.970839560031891,0.220593586564064,0.0938563793897629,0.45979630947113,-0.108223870396614,-0.881405115127563,0.204905077815056,-0.0358380079269409,-0.978125512599945,0.204905077815056,-0.0358380079269409,-0.978125512599945,0.45979630947113,-0.108223870396614,-0.881405115127563,0.171178087592125,-0.00477972300723195,-0.985228538513184,-0.101856231689453,0.0183530356734991,0.994629859924316,-0.996488928794861,0.0288145188242197,-0.0786098018288612,-0.110793545842171,0.100453846156597,0.98875367641449,-0.996488928794861,0.0288145188242197,-0.0786098018288612,-0.153691858053207,0.155854880809784,0.975750029087067,-0.110793545842171,0.100453846156597,0.98875367641449,-0.891758680343628,-0.45145708322525,-0.0308725386857986,-0.833429992198944,0.54994934797287,-0.0543161556124687,-0.982760012149811,-0.104160569608212,-0.152752608060837,-0.773524880409241,0.502105057239532,0.386716723442078,
- -0.82366544008255,0.539314448833466,-0.175257652997971,-0.890543758869171,0.430714726448059,-0.146344482898712,0.118212193250656,-0.0390638783574104,-0.992219686508179,-0.0457688868045807,0.381237924098969,-0.923343300819397,0.204144433140755,-0.0583026558160782,-0.977203071117401,-0.965608954429626,0.227329671382904,-0.12617664039135,0.172865733504295,0.0425200201570988,-0.984027206897736,0.171178087592125,-0.00477972300723195,-0.985228538513184,-0.965608954429626,0.227329671382904,-0.12617664039135,0.171178087592125,-0.00477972300723195,-0.985228538513184,0.143002361059189,0.128104194998741,-0.981396853923798,0.907022178173065,-0.412254691123962,0.0857722759246826,0.45979630947113,-0.108223870396614,-0.881405115127563,0.949746668338776,-0.27612641453743,0.147430166602135,-0.0457688868045807,0.381237924098969,-0.923343300819397,0.118212193250656,-0.0390638783574104,-0.992219686508179,-0.702234089374542,0.700373649597168,-0.127843573689461,0.812111139297485,-0.0531854219734669,0.581073939800262,-0.0499066412448883,-0.0474942773580551,0.997623980045319,-0.0402583628892899,-0.207879617810249,0.977325618267059,0.918397724628448,-0.363408178091049,0.156461745500565,0.332676887512207,-0.308343827724457,0.891207218170166,-0.10377861559391,-0.123602822422981,0.986890316009521,0.983124792575836,0.104605756700039,0.150077506899834,0.918098747730255,0.374905377626419,0.128610715270042,0.885772585868835,0.434047698974609,0.164346009492874,-0.995731890201569,-0.0593644343316555,-0.0706682726740837,-0.995837211608887,0.0258093755692244,-0.087419681251049,-0.140422627329826,-0.00963715650141239,0.990044772624969,-0.880699217319489,-0.47367325425148,0.00157462432980537,-0.995731890201569,-0.0593644343316555,-0.0706682726740837,-0.140422627329826,-0.00963715650141239,0.990044772624969,0.45979630947113,-0.108223870396614,-0.881405115127563,0.143002361059189,0.128104194998741,-0.981396853923798,0.171178087592125,-0.00477972300723195,-0.985228538513184,0.332676887512207,-0.308343827724457,0.891207218170166,-0.383044183254242,0.203181535005569,0.901107430458069,
- -0.0883725583553314,0.125031769275665,0.988209187984467,0.332676887512207,-0.308343827724457,0.891207218170166,-0.0883725583553314,0.125031769275665,0.988209187984467,-0.10377861559391,-0.123602822422981,0.986890316009521,0.986814558506012,0.128426194190979,0.0985074192285538,-0.233262062072754,-0.525872051715851,-0.8179532289505,0.181024193763733,-0.0797781720757484,-0.980237603187561,0.949746668338776,-0.27612641453743,0.147430166602135,0.970839560031891,0.220593586564064,0.0938563793897629,0.934520363807678,-0.293329358100891,0.20156791806221,0.975192785263062,0.122678279876709,0.184253185987473,0.812111139297485,-0.0531854219734669,0.581073939800262,-0.0402583628892899,-0.207879617810249,0.977325618267059,0.837057173252106,-0.520482003688812,0.168623626232147,0.984616875648499,0.0472488775849342,0.16821776330471,-0.0565297715365887,0.0121300499886274,0.998327195644379,-0.0607860647141933,0.0266274865716696,0.997795641422272,0.986814558506012,0.128426194190979,0.0985074192285538,0.992845118045807,-0.0455716513097286,0.110370725393295,-0.233262062072754,-0.525872051715851,-0.8179532289505,0.954199492931366,0.28494468331337,0.0911589860916138,0.993662536144257,-0.00588893704116344,0.11225088685751,0.987153828144073,-0.0205212235450745,0.158449843525887,0.961333572864532,-0.22582696378231,0.157606855034828,0.980135023593903,0.165454089641571,0.109363622963429,0.980135023593903,0.165454089641571,0.109363622963429,0.890350699424744,0.136395797133446,0.434363782405853,0.782384991645813,0.431084901094437,-0.449488162994385,0.954199492931366,0.28494468331337,0.0911589860916138,-0.983813285827637,-0.0428005121648312,-0.174010381102562,-0.998674929141998,0.0198115762323141,-0.0474979467689991,-0.993294239044189,0.095710314810276,-0.0648554489016533,-0.913502395153046,-0.368651688098907,-0.172073945403099,-0.323624819517136,0.16413077712059,0.931841194629669,-0.166468277573586,-0.120001964271069,0.978717446327209,-0.993294239044189,0.095710314810276,-0.0648554489016533,-0.998674929141998,0.0198115762323141,-0.0474979467689991,
- -0.954277157783508,-0.0731304436922073,0.289839953184128,-0.994656503200531,0.0437229052186012,-0.0935240462422371,-0.109889961779118,0.0515610612928867,0.992605566978455,-0.153691858053207,0.155854880809784,0.975750029087067,-0.954277157783508,-0.0731304436922073,0.289839953184128,-0.109889961779118,0.0515610612928867,0.992605566978455,-0.996488928794861,0.0288145188242197,-0.0786098018288612,-0.972103476524353,0.131358668208122,-0.194318994879723,-0.902669072151184,0.422780960798264,-0.0802798569202423,-0.982760012149811,-0.104160569608212,-0.152752608060837,-0.976149201393127,-0.101639218628407,-0.191839143633842,-0.992829859256744,-0.0517722107470036,-0.107743158936501,-0.891758680343628,-0.45145708322525,-0.0308725386857986,-0.833429992198944,0.54994934797287,-0.0543161556124687,-0.916906356811523,0.234998747706413,-0.322580963373184,-0.982760012149811,-0.104160569608212,-0.152752608060837,-0.77180290222168,0.635859072208405,0.00193272531032562,-0.916906356811523,0.234998747706413,-0.322580963373184,-0.833429992198944,0.54994934797287,-0.0543161556124687,-0.739623367786407,0.661863505840302,-0.122041657567024,0.13056455552578,-0.0785391330718994,-0.988324105739594,0.128494918346405,-0.00986983627080917,-0.991661131381989,-0.987724542617798,-0.0223247595131397,-0.154602125287056,0.0937973260879517,0.0419752337038517,-0.994706153869629,0.13056455552578,-0.0785391330718994,-0.988324105739594,-0.739623367786407,0.661863505840302,-0.122041657567024,0.0937973260879517,0.0419752337038517,-0.994706153869629,-0.739623367786407,0.661863505840302,-0.122041657567024,-0.906814277172089,-0.412128686904907,-0.0885324478149414,-0.906814277172089,-0.412128686904907,-0.0885324478149414,0.101050801575184,0.199134066700935,-0.974748432636261,0.0937973260879517,0.0419752337038517,-0.994706153869629,0.120875798165798,0.0287978984415531,-0.99224990606308,-0.986963152885437,0.0677983686327934,-0.145970448851585,-0.780996561050415,0.607191741466522,-0.146160081028938,0.101451873779297,-0.0727278515696526,-0.992178559303284,0.918397724628448,-0.363408178091049,0.156461745500565,
- 0.832240998744965,-0.55204164981842,0.0512352213263512,0.777966201305389,-0.588231861591339,-0.220798194408417,0.252463728189468,0.0910685509443283,-0.963311374187469,0.777966201305389,-0.588231861591339,-0.220798194408417,0.832240998744965,-0.55204164981842,0.0512352213263512,0.164948046207428,-0.0143309887498617,-0.986198127269745,0.118212193250656,-0.0390638783574104,-0.992219686508179,0.204144433140755,-0.0583026558160782,-0.977203071117401,0.204144433140755,-0.0583026558160782,-0.977203071117401,0.252463728189468,0.0910685509443283,-0.963311374187469,0.164948046207428,-0.0143309887498617,-0.986198127269745,-0.385464191436768,-0.0361710451543331,0.922013521194458,-0.603423833847046,0.346798539161682,0.718060255050659,-0.629242420196533,0.155163705348969,0.761563003063202,-0.385464191436768,-0.0361710451543331,0.922013521194458,-0.851729214191437,0.520360708236694,-0.0614988319575787,-0.603423833847046,0.346798539161682,0.718060255050659,-0.995837211608887,0.0258093755692244,-0.087419681251049,-0.851729214191437,0.520360708236694,-0.0614988319575787,-0.17773275077343,-0.0467305779457092,0.982968628406525,-0.902669072151184,0.422780960798264,-0.0802798569202423,-0.954277157783508,-0.0731304436922073,0.289839953184128,-0.153691858053207,0.155854880809784,0.975750029087067,-0.996488928794861,0.0288145188242197,-0.0786098018288612,-0.902669072151184,0.422780960798264,-0.0802798569202423,-0.153691858053207,0.155854880809784,0.975750029087067,-0.992829859256744,-0.0517722107470036,-0.107743158936501,-0.996488928794861,0.0288145188242197,-0.0786098018288612,-0.101856231689453,0.0183530356734991,0.994629859924316,-0.179239824414253,0.169777527451515,0.969045341014862,-0.992829859256744,-0.0517722107470036,-0.107743158936501,-0.101856231689453,0.0183530356734991,0.994629859924316,0.400890499353409,0.402774482965469,-0.822836339473724,0.172839060425758,0.367150902748108,-0.913962185382843,0.0304110050201416,0.318281233310699,-0.947508454322815,0.192266747355461,-0.30086949467659,-0.934083044528961,0.400890499353409,0.402774482965469,-0.822836339473724,
- 0.0304110050201416,0.318281233310699,-0.947508454322815,0.269683241844177,-0.0521468669176102,-0.961536109447479,0.190203934907913,0.0149957202374935,-0.981630086898804,0.120875798165798,0.0287978984415531,-0.99224990606308,0.101451873779297,-0.0727278515696526,-0.992178559303284,0.19672167301178,0.340206652879715,-0.919543445110321,0.992845118045807,-0.0455716513097286,0.110370725393295,0.989615678787231,0.0550432242453098,0.132782086730003,0.967572629451752,0.184580236673355,0.172433704137802,0.986814558506012,0.128426194190979,0.0985074192285538,0.989615678787231,0.0550432242453098,0.132782086730003,0.992845118045807,-0.0455716513097286,0.110370725393295,0.986814558506012,0.128426194190979,0.0985074192285538,0.837057173252106,-0.520482003688812,0.168623626232147,0.989615678787231,0.0550432242453098,0.132782086730003,-0.961538016796112,-0.197934791445732,-0.190437853336334,-0.979162037372589,0.0506383515894413,-0.196665734052658,0.11786562204361,-0.0135134290903807,-0.992937684059143,0.101050801575184,0.199134066700935,-0.974748432636261,0.213353633880615,-0.114187628030777,-0.970279097557068,0.207129165530205,-0.0219854190945625,-0.978066563606262,0.993662536144257,-0.00588893704116344,0.11225088685751,0.954199492931366,0.28494468331337,0.0911589860916138,0.13056455552578,-0.0785391330718994,-0.988324105739594,0.209807947278023,0.0305230282247067,-0.977266073226929,0.207129165530205,-0.0219854190945625,-0.978066563606262,0.128494918346405,-0.00986983627080917,-0.991661131381989,-0.0373413302004337,0.103750318288803,0.993902146816254,-0.0551356449723244,0.0164218451827765,0.998343825340271,-0.099357895553112,0.00575804244726896,0.995035111904144,-0.166468277573586,-0.120001964271069,0.978717446327209,0.987153828144073,-0.0205212235450745,0.158449843525887,0.967572629451752,0.184580236673355,0.172433704137802,-0.0415790490806103,-0.0889212563633919,0.995170474052429,-0.0551356449723244,0.0164218451827765,0.998343825340271,-0.994656503200531,0.0437229052186012,-0.0935240462422371,-0.099357895553112,0.00575804244726896,0.995035111904144,
- -0.109889961779118,0.0515610612928867,0.992605566978455,0.993662536144257,-0.00588893704116344,0.11225088685751,0.918483674526215,-0.385423928499222,0.0885234475135803,0.967572629451752,0.184580236673355,0.172433704137802,0.987153828144073,-0.0205212235450745,0.158449843525887,0.907022178173065,-0.412254691123962,0.0857722759246826,0.975192785263062,0.122678279876709,0.184253185987473,0.984616875648499,0.0472488775849342,0.16821776330471,0.99322783946991,0.0448184236884117,0.107190743088722,0.184231951832771,0.0232123769819736,-0.982608735561371,0.11786562204361,-0.0135134290903807,-0.992937684059143,0.143002361059189,0.128104194998741,-0.981396853923798,0.192528069019318,0.163075000047684,-0.967646360397339,0.907022178173065,-0.412254691123962,0.0857722759246826,0.99322783946991,0.0448184236884117,0.107190743088722,0.184231951832771,0.0232123769819736,-0.982608735561371,0.192528069019318,0.163075000047684,-0.967646360397339,-0.0565297715365887,0.0121300499886274,0.998327195644379,0.984616875648499,0.0472488775849342,0.16821776330471,0.975192785263062,0.122678279876709,0.184253185987473,-0.0402583628892899,-0.207879617810249,0.977325618267059,0.11786562204361,-0.0135134290903807,-0.992937684059143,-0.979162037372589,0.0506383515894413,-0.196665734052658,0.143002361059189,0.128104194998741,-0.981396853923798,-0.13607819378376,0.00551850348711014,0.990682780742645,-0.0394425913691521,0.0189739428460598,0.999041676521301,-0.0588366650044918,-0.107175245881081,0.992497742176056,-0.992528259754181,0.0350393168628216,-0.116875439882278,-0.77180290222168,0.635859072208405,0.00193272531032562,-0.851729214191437,0.520360708236694,-0.0614988319575787,0.970839560031891,0.220593586564064,0.0938563793897629,0.995707154273987,-0.0159649141132832,0.0911733955144882,0.988223254680634,-0.0368754081428051,0.148509725928307,0.934520363807678,-0.293329358100891,0.20156791806221,0.139964863657951,0.0217065308243036,-0.98991858959198,-0.980006217956543,0.0875222757458687,-0.178683310747147,-0.920884191989899,0.314350068569183,-0.230556517839432,
- 0.124625124037266,-0.0591842383146286,-0.990437269210815,0.988223254680634,-0.0368754081428051,0.148509725928307,0.983124792575836,0.104605756700039,0.150077506899834,0.503263771533966,-0.0546696372330189,0.862401843070984,-0.0394425913691521,0.0189739428460598,0.999041676521301,0.967338085174561,0.201061546802521,0.154374346137047,0.980852127075195,0.174506545066834,0.0864670425653458,0.993835091590881,-0.0358166135847569,0.104924373328686,0.986561715602875,0.0112301027402282,0.163002908229828,-0.0684823095798492,0.133978217840195,0.988615274429321,-0.10377861559391,-0.123602822422981,0.986890316009521,-0.0883725583553314,0.125031769275665,0.988209187984467,-0.997010231018066,0.0024085936602205,-0.077232763171196,-0.929393351078033,-0.363806664943695,-0.0622318014502525,-0.98442554473877,-0.147245422005653,-0.0960484519600868,-0.989923715591431,-0.00793653726577759,-0.141379788517952,-0.989029109477997,0.0165584292262793,-0.146790400147438,0.993835091590881,-0.0358166135847569,0.104924373328686,0.190203934907913,0.0149957202374935,-0.981630086898804,0.19672167301178,0.340206652879715,-0.919543445110321,0.995133936405182,-0.0146538112312555,0.0974361896514893,0.986561715602875,0.0112301027402282,0.163002908229828,0.956427156925201,0.211056381464005,0.201748013496399,-0.0661440938711166,-0.155407935380936,0.985633552074432,-0.0681170597672462,0.0124467667192221,0.997599720954895,-0.132376343011856,0.0184425618499517,0.991028010845184,-0.993242502212524,0.0990883484482765,-0.060422271490097,-0.903365433216095,-0.427338778972626,0.0362275578081608,-0.198529273271561,-0.0155097600072622,0.979972302913666,0.127160832285881,0.0887447893619537,-0.987904071807861,-0.891748428344727,-0.430929034948349,-0.138148352503777,-0.986963152885437,0.0677983686327934,-0.145970448851585,0.120875798165798,0.0287978984415531,-0.99224990606308,0.269683241844177,-0.0521468669176102,-0.961536109447479,0.0370719432830811,0.0821243599057198,-0.995932340621948,0.127160832285881,0.0887447893619537,-0.987904071807861,0.192266747355461,-0.30086949467659,-0.934083044528961,
- -0.110793545842171,0.100453846156597,0.98875367641449,-0.0607860647141933,0.0266274865716696,0.997795641422272,-0.0565297715365887,0.0121300499886274,0.998327195644379,-0.101856231689453,0.0183530356734991,0.994629859924316,-0.982760012149811,-0.104160569608212,-0.152752608060837,-0.916906356811523,0.234998747706413,-0.322580963373184,-0.976149201393127,-0.101639218628407,-0.191839143633842,-0.992528259754181,0.0350393168628216,-0.116875439882278,-0.851729214191437,0.520360708236694,-0.0614988319575787,-0.995837211608887,0.0258093755692244,-0.087419681251049,-0.983714818954468,-0.0032248985953629,-0.179707556962967,0.142024621367455,0.0129297440871596,-0.989778757095337,-0.985255360603333,0.0227385926991701,-0.169572591781616,-0.903681814670563,-0.392309546470642,-0.171617195010185,-0.17773275077343,-0.0467305779457092,0.982968628406525,-0.851729214191437,0.520360708236694,-0.0614988319575787,-0.385464191436768,-0.0361710451543331,0.922013521194458,-0.0607860647141933,0.0266274865716696,0.997795641422272,-0.153691858053207,0.155854880809784,0.975750029087067,-0.0863003805279732,-0.107735648751259,0.990426898002625,0.0937973260879517,0.0419752337038517,-0.994706153869629,0.101050801575184,0.199134066700935,-0.974748432636261,0.181024193763733,-0.0797781720757484,-0.980237603187561,0.134864330291748,-0.049094632267952,-0.989647150039673,-0.138169914484024,-0.00116430525667965,0.990407884120941,-0.0681170597672462,0.0124467667192221,0.997599720954895,-0.0661440938711166,-0.155407935380936,0.985633552074432,-0.167169809341431,0.124090865254402,0.978087842464447,-0.659313857555389,0.356541305780411,0.661954343318939,-0.98154091835022,-0.00603782385587692,0.191156923770905,-0.929393351078033,-0.363806664943695,-0.0622318014502525,-0.167169809341431,0.124090865254402,0.978087842464447,-0.0991521403193474,-0.0904381349682808,-0.990954041481018,-0.98772144317627,-0.0673669576644897,-0.140954852104187,-0.890936255455017,-0.413587659597397,-0.187557831406593,0.161880224943161,0.0786939039826393,-0.98366767168045,-0.988852143287659,0.0174768548458815,-0.14787158370018,
- -0.98154091835022,-0.00603782385587692,0.191156923770905,-0.965469658374786,0.244976118206978,-0.0886298641562462,-0.954364240169525,0.255451947450638,-0.154704168438911,-0.659313857555389,0.356541305780411,0.661954343318939,0.8071049451828,-0.307834923267365,0.503804922103882,-0.14814105629921,-0.0205364432185888,0.988753080368042,0.956427156925201,0.211056381464005,0.201748013496399,0.995133936405182,-0.0146538112312555,0.0974361896514893,0.938368737697601,0.254583209753037,0.233776986598969,0.8071049451828,-0.307834923267365,0.503804922103882,0.101451873779297,-0.0727278515696526,-0.992178559303284,-0.780996561050415,0.607191741466522,-0.146160081028938,-0.98772144317627,-0.0673669576644897,-0.140954852104187,-0.0991521403193474,-0.0904381349682808,-0.990954041481018,0.17616331577301,0.0460225269198418,-0.983284533023834,0.101451873779297,-0.0727278515696526,-0.992178559303284,-0.0991521403193474,-0.0904381349682808,-0.990954041481018,-0.98154091835022,-0.00603782385587692,0.191156923770905,-0.98442554473877,-0.147245422005653,-0.0960484519600868,-0.929393351078033,-0.363806664943695,-0.0622318014502525,0.938368737697601,0.254583209753037,0.233776986598969,0.19672167301178,0.340206652879715,-0.919543445110321,0.499252140522003,0.0996563732624054,-0.860706746578217,-0.0661440938711166,-0.155407935380936,0.985633552074432,0.956427156925201,0.211056381464005,0.201748013496399,0.8071049451828,-0.307834923267365,0.503804922103882,-0.659313857555389,0.356541305780411,0.661954343318939,-0.124444827437401,0.0435664728283882,0.991269648075104,-0.0661440938711166,-0.155407935380936,0.985633552074432,0.8071049451828,-0.307834923267365,0.503804922103882,-0.167169809341431,0.124090865254402,0.978087842464447,-0.929393351078033,-0.363806664943695,-0.0622318014502525,-0.997010231018066,0.0024085936602205,-0.077232763171196,-0.138169914484024,-0.00116430525667965,0.990407884120941,-0.14814105629921,-0.0205364432185888,0.988753080368042,-0.965469658374786,0.244976118206978,-0.0886298641562462,-0.98154091835022,-0.00603782385587692,0.191156923770905,
- -0.659313857555389,0.356541305780411,0.661954343318939,0.146226361393929,-0.00397361116483808,-0.989243268966675,-0.939729034900665,0.301664471626282,-0.160959586501122,-0.702234089374542,0.700373649597168,-0.127843573689461,0.118212193250656,-0.0390638783574104,-0.992219686508179,-0.921051442623138,0.356348931789398,-0.157097846269608,-0.924905180931091,0.369965821504593,-0.0876119211316109,-0.985605895519257,0.151311919093132,-0.0754051581025124,-0.890543758869171,0.430714726448059,-0.146344482898712,-0.0439694263041019,0.00623464165255427,0.999013423919678,0.954596698284149,-0.259641140699387,0.146053716540337,0.918397724628448,-0.363408178091049,0.156461745500565,-0.10377861559391,-0.123602822422981,0.986890316009521,-0.119756102561951,-0.00658347457647324,0.992781519889832,-0.0439694263041019,0.00623464165255427,0.999013423919678,-0.10377861559391,-0.123602822422981,0.986890316009521,-0.0684823095798492,0.133978217840195,0.988615274429321,0.192266747355461,-0.30086949467659,-0.934083044528961,0.127160832285881,0.0887447893619537,-0.987904071807861,0.120875798165798,0.0287978984415531,-0.99224990606308,0.190203934907913,0.0149957202374935,-0.981630086898804,0.17616331577301,0.0460225269198418,-0.983284533023834,-0.0991521403193474,-0.0904381349682808,-0.990954041481018,0.161880224943161,0.0786939039826393,-0.98366767168045,0.208371952176094,-0.0201091170310974,-0.977842926979065,0.146226361393929,-0.00397361116483808,-0.989243268966675,0.118212193250656,-0.0390638783574104,-0.992219686508179,0.164948046207428,-0.0143309887498617,-0.986198127269745,0.252463728189468,0.0910685509443283,-0.963311374187469,0.9494269490242,-0.305405914783478,0.0729097053408623,0.208371952176094,-0.0201091170310974,-0.977842926979065,0.252463728189468,0.0910685509443283,-0.963311374187469,0.832240998744965,-0.55204164981842,0.0512352213263512,0.988649487495422,0.136550575494766,0.0626595839858055,0.975738286972046,-0.171770706772804,0.135755583643913,0.938368737697601,0.254583209753037,0.233776986598969,0.8071049451828,-0.307834923267365,0.503804922103882,
- 0.975738286972046,-0.171770706772804,0.135755583643913,0.856405556201935,-0.494294106960297,0.149140998721123,0.938368737697601,0.254583209753037,0.233776986598969,0.499252140522003,0.0996563732624054,-0.860706746578217,0.344782799482346,-0.11623191088438,-0.931458532810211,-0.985605895519257,0.151311919093132,-0.0754051581025124,-0.924905180931091,0.369965821504593,-0.0876119211316109,-0.119756102561951,-0.00658347457647324,0.992781519889832,-0.0684823095798492,0.133978217840195,0.988615274429321,-0.167169809341431,0.124090865254402,0.978087842464447,-0.124444827437401,0.0435664728283882,0.991269648075104,-0.659313857555389,0.356541305780411,0.661954343318939,-0.989923715591431,-0.00793653726577759,-0.141379788517952,-0.98442554473877,-0.147245422005653,-0.0960484519600868,-0.98154091835022,-0.00603782385587692,0.191156923770905,-0.988852143287659,0.0174768548458815,-0.14787158370018,-0.167169809341431,0.124090865254402,0.978087842464447,-0.0661440938711166,-0.155407935380936,0.985633552074432,-0.124444827437401,0.0435664728283882,0.991269648075104,0.938368737697601,0.254583209753037,0.233776986598969,0.344782799482346,-0.11623191088438,-0.931458532810211,0.209499061107636,-0.15288807451725,-0.965782344341278,0.988649487495422,0.136550575494766,0.0626595839858055,0.19672167301178,0.340206652879715,-0.919543445110321,0.17616331577301,0.0460225269198418,-0.983284533023834,0.499252140522003,0.0996563732624054,-0.860706746578217,0.8071049451828,-0.307834923267365,0.503804922103882,0.938368737697601,0.254583209753037,0.233776986598969,0.975738286972046,-0.171770706772804,0.135755583643913,0.954596698284149,-0.259641140699387,0.146053716540337,0.9494269490242,-0.305405914783478,0.0729097053408623,0.832240998744965,-0.55204164981842,0.0512352213263512,0.918397724628448,-0.363408178091049,0.156461745500565,0.19672167301178,0.340206652879715,-0.919543445110321,0.101451873779297,-0.0727278515696526,-0.992178559303284,0.17616331577301,0.0460225269198418,-0.983284533023834,0.17616331577301,0.0460225269198418,-0.983284533023834,
- 0.161880224943161,0.0786939039826393,-0.98366767168045,0.344782799482346,-0.11623191088438,-0.931458532810211,0.17616331577301,0.0460225269198418,-0.983284533023834,0.344782799482346,-0.11623191088438,-0.931458532810211,0.499252140522003,0.0996563732624054,-0.860706746578217,0.995133936405182,-0.0146538112312555,0.0974361896514893,0.19672167301178,0.340206652879715,-0.919543445110321,0.938368737697601,0.254583209753037,0.233776986598969,-0.14814105629921,-0.0205364432185888,0.988753080368042,0.8071049451828,-0.307834923267365,0.503804922103882,0.0164843946695328,0.275990128517151,0.961019098758698,0.0164843946695328,0.275990128517151,0.961019098758698,0.856405556201935,-0.494294106960297,0.149140998721123,0.954596698284149,-0.259641140699387,0.146053716540337,-0.0439694263041019,0.00623464165255427,0.999013423919678,0.856405556201935,-0.494294106960297,0.149140998721123,0.975738286972046,-0.171770706772804,0.135755583643913,0.988649487495422,0.136550575494766,0.0626595839858055,0.9494269490242,-0.305405914783478,0.0729097053408623,0.954596698284149,-0.259641140699387,0.146053716540337,0.988649487495422,0.136550575494766,0.0626595839858055,0.209499061107636,-0.15288807451725,-0.965782344341278,0.208371952176094,-0.0201091170310974,-0.977842926979065,0.9494269490242,-0.305405914783478,0.0729097053408623,0.161880224943161,0.0786939039826393,-0.98366767168045,0.209499061107636,-0.15288807451725,-0.965782344341278,0.344782799482346,-0.11623191088438,-0.931458532810211,0.161880224943161,0.0786939039826393,-0.98366767168045,-0.890936255455017,-0.413587659597397,-0.187557831406593,-0.939729034900665,0.301664471626282,-0.160959586501122,0.146226361393929,-0.00397361116483808,-0.989243268966675,-0.954364240169525,0.255451947450638,-0.154704168438911,-0.965469658374786,0.244976118206978,-0.0886298641562462,-0.928476095199585,0.367146641016006,-0.0559974052011967,-0.924905180931091,0.369965821504593,-0.0876119211316109,-0.921051442623138,0.356348931789398,-0.157097846269608,-0.119756102561951,-0.00658347457647324,0.992781519889832,
- -0.924905180931091,0.369965821504593,-0.0876119211316109,-0.928476095199585,0.367146641016006,-0.0559974052011967,-0.227347552776337,-0.20417894423008,0.952168166637421,0.994923412799835,0.011037852615118,0.100028797984123,0.991053760051727,-0.106754466891289,0.0801000669598579,0.954784452915192,0.221730574965477,0.198045954108238,0.981949031352997,-0.00310672912746668,0.189120411872864,-0.222790643572807,-0.00129035126883537,0.974865436553955,-0.0380612872540951,0.219487324357033,0.974872648715973,-0.127724826335907,-0.0500455051660538,0.99054628610611,0.0839345157146454,0.609666764736176,-0.788201510906219,-0.976277887821198,-0.161105260252953,-0.144660219550133,-0.990383207798004,-0.0162634532898664,-0.137392535805702,0.932281494140625,0.353184282779694,0.078180268406868,0.975323677062988,-0.11163629591465,0.190476357936859,0.998652398586273,0.00107711332384497,-0.0518884435296059,-0.0380612872540951,0.219487324357033,0.974872648715973,-0.222790643572807,-0.00129035126883537,0.974865436553955,0.173899456858635,-0.000642854545731097,0.984763264656067,0.488927483558655,-0.0188682060688734,0.872120320796967,0.998652398586273,0.00107711332384497,-0.0518884435296059,0.975323677062988,-0.11163629591465,0.190476357936859,0.932281494140625,0.353184282779694,0.078180268406868,0.223644614219666,-0.294288843870163,-0.929180979728699,0.209802463650703,-0.00838256441056728,-0.977707862854004,0.994923412799835,0.011037852615118,0.100028797984123,0.932281494140625,0.353184282779694,0.078180268406868,0.998652398586273,0.00107711332384497,-0.0518884435296059,0.777504563331604,-0.00119124550838023,-0.628876209259033,0.223644614219666,-0.294288843870163,-0.929180979728699,0.488927483558655,-0.0188682060688734,0.872120320796967,-0.0380612872540951,0.219487324357033,0.974872648715973,0.173899456858635,-0.000642854545731097,0.984763264656067,0.228947907686234,-0.00410193437710404,-0.973430097103119,0.0417320318520069,-0.0196645278483629,-0.998935341835022,0.142021045088768,0.047311432659626,-0.98873233795166,-0.0380612872540951,0.219487324357033,0.974872648715973,
- 0.975323677062988,-0.11163629591465,0.190476357936859,0.981949031352997,-0.00310672912746668,0.189120411872864,-0.0434471778571606,-0.00293602817691863,0.999051511287689,0.975323677062988,-0.11163629591465,0.190476357936859,-0.0380612872540951,0.219487324357033,0.974872648715973,0.488927483558655,-0.0188682060688734,0.872120320796967,0.139179855585098,0.00355017045512795,-0.99026083946228,-0.990516602993011,-0.00193073344416916,-0.137379929423332,-0.838683128356934,0.524546265602112,-0.146498680114746,0.113735027611256,-0.128904804587364,-0.985113143920898,0.223644614219666,-0.294288843870163,-0.929180979728699,0.777504563331604,-0.00119124550838023,-0.628876209259033,0.562351286411285,-0.00803915876895189,-0.826859414577484,0.562351286411285,-0.00803915876895189,-0.826859414577484,0.228947907686234,-0.00410193437710404,-0.973430097103119,0.223644614219666,-0.294288843870163,-0.929180979728699,0.209802463650703,-0.00838256441056728,-0.977707862854004,0.139179855585098,0.00355017045512795,-0.99026083946228,0.113735027611256,-0.128904804587364,-0.985113143920898,0.198471903800964,0.143446311354637,-0.969552576541901,0.975323677062988,-0.11163629591465,0.190476357936859,0.932281494140625,0.353184282779694,0.078180268406868,0.994923412799835,0.011037852615118,0.100028797984123,0.981949031352997,-0.00310672912746668,0.189120411872864,-0.995486736297607,0.046786293387413,-0.0825661793351173,-0.984433889389038,-0.159311607480049,-0.0742287039756775,-0.964334011077881,-0.232352942228317,-0.126776173710823,-0.990383207798004,-0.0162634532898664,-0.137392535805702,0.994923412799835,0.011037852615118,0.100028797984123,0.209802463650703,-0.00838256441056728,-0.977707862854004,0.198471903800964,0.143446311354637,-0.969552576541901,0.991053760051727,-0.106754466891289,0.0801000669598579,0.981949031352997,-0.00310672912746668,0.189120411872864,0.954784452915192,0.221730574965477,0.198045954108238,-0.0387755371630192,-0.137753561139107,0.989707291126251,-0.0434471778571606,-0.00293602817691863,0.999051511287689,-0.995486736297607,0.046786293387413,-0.0825661793351173,
- -0.774700582027435,0.630362808704376,-0.0498196557164192,-0.127724826335907,-0.0500455051660538,0.99054628610611,-0.117164894938469,0.0178776644170284,0.992951571941376,0.142021045088768,0.047311432659626,-0.98873233795166,-0.990516602993011,-0.00193073344416916,-0.137379929423332,0.139179855585098,0.00355017045512795,-0.99026083946228,0.223644614219666,-0.294288843870163,-0.929180979728699,0.228947907686234,-0.00410193437710404,-0.973430097103119,0.142021045088768,0.047311432659626,-0.98873233795166,-0.117164894938469,0.0178776644170284,0.992951571941376,-0.0434471778571606,-0.00293602817691863,0.999051511287689,-0.0387755371630192,-0.137753561139107,0.989707291126251,-0.108438983559608,0.477210760116577,0.872072756290436,-0.323624819517136,0.16413077712059,0.931841194629669,-0.998674929141998,0.0198115762323141,-0.0474979467689991,-0.108438983559608,0.477210760116577,0.872072756290436,0.954784452915192,0.221730574965477,0.198045954108238,0.991053760051727,-0.106754466891289,0.0801000669598579,0.782384991645813,0.431084901094437,-0.449488162994385,0.890350699424744,0.136395797133446,0.434363782405853,0.113735027611256,-0.128904804587364,-0.985113143920898,-0.838683128356934,0.524546265602112,-0.146498680114746,-0.985255360603333,0.0227385926991701,-0.169572591781616,0.193746954202652,-0.302470743656158,-0.933259665966034,0.361368775367737,-0.173694461584091,-0.916102051734924,0.113735027611256,-0.128904804587364,-0.985113143920898,0.193746954202652,-0.302470743656158,-0.933259665966034,-0.0387755371630192,-0.137753561139107,0.989707291126251,0.954784452915192,0.221730574965477,0.198045954108238,0.890350699424744,0.136395797133446,0.434363782405853,-0.0917706191539764,0.0930766761302948,0.99142062664032,-0.0387755371630192,-0.137753561139107,0.989707291126251,0.890350699424744,0.136395797133446,0.434363782405853,-0.108438983559608,0.477210760116577,0.872072756290436,-0.984433889389038,-0.159311607480049,-0.0742287039756775,-0.995486736297607,0.046786293387413,-0.0825661793351173,-0.117164894938469,0.0178776644170284,0.992951571941376,
- 0.223644614219666,-0.294288843870163,-0.929180979728699,0.142021045088768,0.047311432659626,-0.98873233795166,0.139179855585098,0.00355017045512795,-0.99026083946228,0.209802463650703,-0.00838256441056728,-0.977707862854004,-0.108438983559608,0.477210760116577,0.872072756290436,-0.0917706191539764,0.0930766761302948,0.99142062664032,-0.323624819517136,0.16413077712059,0.931841194629669,-0.964334011077881,-0.232352942228317,-0.126776173710823,-0.984433889389038,-0.159311607480049,-0.0742287039756775,-0.998674929141998,0.0198115762323141,-0.0474979467689991,-0.983813285827637,-0.0428005121648312,-0.174010381102562,-0.108438983559608,0.477210760116577,0.872072756290436,-0.0387755371630192,-0.137753561139107,0.989707291126251,-0.0917706191539764,0.0930766761302948,0.99142062664032,-0.191216826438904,-0.639246106147766,0.744849324226379,0.583209753036499,-0.453084647655487,-0.674226045608521,-0.0854562371969223,0.88964980840683,-0.448576092720032,0.198471903800964,0.143446311354637,-0.969552576541901,0.113735027611256,-0.128904804587364,-0.985113143920898,0.361368775367737,-0.173694461584091,-0.916102051734924,0.991053760051727,-0.106754466891289,0.0801000669598579,0.198471903800964,0.143446311354637,-0.969552576541901,0.782384991645813,0.431084901094437,-0.449488162994385,-0.976277887821198,-0.161105260252953,-0.144660219550133,-0.774700582027435,0.630362808704376,-0.0498196557164192,-0.995486736297607,0.046786293387413,-0.0825661793351173,-0.990383207798004,-0.0162634532898664,-0.137392535805702,0.157672882080078,0.00442018639296293,-0.987481534481049,0.157871335744858,0.0329329259693623,-0.986910343170166,0.156756982207298,0.0205254331231117,-0.987423956394196,0.150961741805077,0.00113077706191689,-0.988539040088654,0.120060786604881,0.00121932965703309,-0.992765843868256,0.138723984360695,-0.0227633360773325,-0.990069448947906,0.16212785243988,-0.0206183362752199,-0.986554384231567,0.162443324923515,-0.00137136795092374,-0.986716985702515,0.156124427914619,0.00116000592242926,-0.987736701965332,-0.127724826335907,-0.0500455051660538,0.99054628610611,
- -0.774700582027435,0.630362808704376,-0.0498196557164192,-0.451306134462357,0.0236634090542793,0.892055451869965,-0.222790643572807,-0.00129035126883537,0.974865436553955,-0.990673542022705,0.0124266678467393,0.135688945651054,-0.976277887821198,-0.161105260252953,-0.144660219550133,0.0839345157146454,0.609666764736176,-0.788201510906219,-0.990673542022705,0.0124266678467393,0.135688945651054,-0.451306134462357,0.0236634090542793,0.892055451869965,-0.774700582027435,0.630362808704376,-0.0498196557164192,-0.976277887821198,-0.161105260252953,-0.144660219550133,0.142024621367455,0.0129297440871596,-0.989778757095337,0.193746954202652,-0.302470743656158,-0.933259665966034,-0.985255360603333,0.0227385926991701,-0.169572591781616,0.192528069019318,0.163075000047684,-0.967646360397339,0.143002361059189,0.128104194998741,-0.981396853923798,0.45979630947113,-0.108223870396614,-0.881405115127563,0.134864330291748,-0.049094632267952,-0.989647150039673,-0.233262062072754,-0.525872051715851,-0.8179532289505,0.209807947278023,0.0305230282247067,-0.977266073226929,0.13056455552578,-0.0785391330718994,-0.988324105739594,0.992845118045807,-0.0455716513097286,0.110370725393295,0.918483674526215,-0.385423928499222,0.0885234475135803,0.209807947278023,0.0305230282247067,-0.977266073226929,-0.233262062072754,-0.525872051715851,-0.8179532289505,0.967572629451752,0.184580236673355,0.172433704137802,0.918483674526215,-0.385423928499222,0.0885234475135803,0.992845118045807,-0.0455716513097286,0.110370725393295,0.8071049451828,-0.307834923267365,0.503804922103882,0.856405556201935,-0.494294106960297,0.149140998721123,0.0164843946695328,0.275990128517151,0.961019098758698,-0.14814105629921,-0.0205364432185888,0.988753080368042,0.0164843946695328,0.275990128517151,0.961019098758698,-0.0439694263041019,0.00623464165255427,0.999013423919678,-0.119756102561951,-0.00658347457647324,0.992781519889832,-0.227347552776337,-0.20417894423008,0.952168166637421,-0.110793545842171,0.100453846156597,0.98875367641449,-0.153691858053207,0.155854880809784,0.975750029087067,
- -0.0607860647141933,0.0266274865716696,0.997795641422272,-0.992829859256744,-0.0517722107470036,-0.107743158936501,-0.972103476524353,0.131358668208122,-0.194318994879723,-0.996488928794861,0.0288145188242197,-0.0786098018288612,-0.132376343011856,0.0184425618499517,0.991028010845184,-0.0701395347714424,0.335733652114868,0.939342021942139,-0.0681170597672462,0.0124467667192221,0.997599720954895,-0.138169914484024,-0.00116430525667965,0.990407884120941,-0.997010231018066,0.0024085936602205,-0.077232763171196,-0.993242502212524,0.0990883484482765,-0.060422271490097,-0.132376343011856,0.0184425618499517,0.991028010845184,-0.138169914484024,-0.00116430525667965,0.990407884120941,-0.989029109477997,0.0165584292262793,-0.146790400147438,-0.982749223709106,-0.10776574909687,-0.150302082300186,-0.993242502212524,0.0990883484482765,-0.060422271490097,-0.997010231018066,0.0024085936602205,-0.077232763171196,0.208371952176094,-0.0201091170310974,-0.977842926979065,0.209499061107636,-0.15288807451725,-0.965782344341278,0.161880224943161,0.0786939039826393,-0.98366767168045,0.146226361393929,-0.00397361116483808,-0.989243268966675,-0.127724826335907,-0.0500455051660538,0.99054628610611,-0.0380612872540951,0.219487324357033,0.974872648715973,-0.0434471778571606,-0.00293602817691863,0.999051511287689,-0.117164894938469,0.0178776644170284,0.992951571941376,-0.0946006327867508,-0.0762919485569,0.992587685585022,-0.179239824414253,0.169777527451515,0.969045341014862,-0.0402583628892899,-0.207879617810249,0.977325618267059,-0.108438983559608,0.477210760116577,0.872072756290436,-0.998674929141998,0.0198115762323141,-0.0474979467689991,-0.984433889389038,-0.159311607480049,-0.0742287039756775,0.13236902654171,-0.024029329419136,-0.990909218788147,0.0370719432830811,0.0821243599057198,-0.995932340621948,0.269683241844177,-0.0521468669176102,-0.961536109447479,0.0304110050201416,0.318281233310699,-0.947508454322815,0.236624628305435,0.0126468744128942,-0.971518933773041,0.956445336341858,0.000737061724066734,-0.291910588741302,0.206548303365707,0.167715489864349,-0.963955044746399,
- 0.99485570192337,0.00898403953760862,0.10090409219265,0.993724465370178,-0.0641160309314728,0.0916557088494301,0.936532139778137,0.288095116615295,0.199772298336029,0.986620366573334,0.0167725402861834,0.162169396877289,-0.216281890869141,0.0220989976078272,0.976080894470215,-0.0422384068369865,0.316031277179718,0.947808146476746,-0.128548786044121,0.0201617162674665,0.991498231887817,-0.936191260814667,0.347283780574799,-0.0542204529047012,-0.870274126529694,0.478072226047516,-0.118617169559002,-0.501510977745056,0.865088045597076,-0.0104674324393272,-0.70649117231369,0.707712650299072,-0.00362696126103401,0.114948533475399,0.180943056941032,-0.976753056049347,0.0917302742600441,0.0626494809985161,-0.993811190128326,0.114975474774837,-0.0653290003538132,-0.991217911243439,0.127407744526863,0.0110970083624125,-0.991788446903229,0.114948533475399,0.180943056941032,-0.976753056049347,0.114975474774837,-0.0653290003538132,-0.991217911243439,0.127407744526863,0.0110970083624125,-0.991788446903229,0.128766179084778,0.196137964725494,-0.972085058689117,0.114948533475399,0.180943056941032,-0.976753056049347,-0.984816431999207,0.00990945938974619,-0.17331600189209,-0.964194774627686,-0.25393882393837,-0.0764439180493355,-0.999225318431854,0.00150771741755307,-0.0393275544047356,0.99455189704895,0.0479726009070873,0.0925479307770729,0.976967394351959,-0.145989999175072,0.155633449554443,0.964356482028961,-0.203913077712059,0.16862978041172,-0.0422384068369865,0.316031277179718,0.947808146476746,-0.216281890869141,0.0220989976078272,0.976080894470215,0.181358203291893,0.155649319291115,0.971021413803101,0.822622656822205,-0.303864896297455,0.480580985546112,0.964356482028961,-0.203913077712059,0.16862978041172,0.976967394351959,-0.145989999175072,0.155633449554443,0.99455189704895,0.0479726009070873,0.0925479307770729,0.217503920197487,-0.349326312541962,-0.911407351493835,0.192580029368401,0.0194653943181038,-0.981088221073151,0.99485570192337,0.00898403953760862,0.10090409219265,0.99455189704895,0.0479726009070873,0.0925479307770729,
- 0.964356482028961,-0.203913077712059,0.16862978041172,0.916011214256287,-0.163365080952644,-0.366381585597992,0.217503920197487,-0.349326312541962,-0.911407351493835,-0.948995292186737,0.287290394306183,-0.129893273115158,0.120007701218128,0.155389100313187,-0.980536878108978,-0.987026214599609,0.09456767141819,-0.129754602909088,0.120371848344803,-0.0998365432024002,-0.98769599199295,0.127407744526863,0.0110970083624125,-0.991788446903229,0.114975474774837,-0.0653290003538132,-0.991217911243439,0.976235449314117,0.100776001811028,0.191855981945992,0.956445336341858,0.000737061724066734,-0.291910588741302,0.46927598118782,0.0183809138834476,0.882860243320465,0.822622656822205,-0.303864896297455,0.480580985546112,-0.0422384068369865,0.316031277179718,0.947808146476746,0.181358203291893,0.155649319291115,0.971021413803101,-0.0422384068369865,0.316031277179718,0.947808146476746,0.976967394351959,-0.145989999175072,0.155633449554443,0.986620366573334,0.0167725402861834,0.162169396877289,-0.0653369650244713,0.0162313859909773,0.997731268405914,0.976967394351959,-0.145989999175072,0.155633449554443,-0.0422384068369865,0.316031277179718,0.947808146476746,0.822622656822205,-0.303864896297455,0.480580985546112,-0.16665543615818,-0.0764857530593872,0.983044266700745,-0.98842442035675,0.146936118602753,-0.0377744436264038,-0.995899021625519,0.0307505782693625,-0.085085891187191,-0.154014348983765,-0.0146947372704744,0.987959325313568,-0.964194774627686,-0.25393882393837,-0.0764439180493355,-0.495568484067917,-0.0244071111083031,0.868225932121277,-0.999225318431854,0.00150771741755307,-0.0393275544047356,-0.495568484067917,-0.0244071111083031,0.868225932121277,-0.13810758292675,0.100983187556267,0.985255718231201,-0.156301707029343,0.0730527937412262,0.985004186630249,-0.964194774627686,-0.25393882393837,-0.0764439180493355,-0.13810758292675,0.100983187556267,0.985255718231201,-0.495568484067917,-0.0244071111083031,0.868225932121277,-0.999225318431854,0.00150771741755307,-0.0393275544047356,-0.968542575836182,-0.0513387359678745,-0.243494749069214,
- -0.984816431999207,0.00990945938974619,-0.17331600189209,0.160197645425797,-0.0505523309111595,-0.985789656639099,-0.118211224675179,0.172440350055695,-0.977901041507721,0.236624628305435,0.0126468744128942,-0.971518933773041,-0.118211224675179,0.172440350055695,-0.977901041507721,0.160197645425797,-0.0505523309111595,-0.985789656639099,-0.958288252353668,0.226748123764992,-0.173979580402374,0.976235449314117,0.100776001811028,0.191855981945992,0.46927598118782,0.0183809138834476,0.882860243320465,-0.0609948374330997,-0.112295635044575,0.991801083087921,0.46927598118782,0.0183809138834476,0.882860243320465,-0.495568484067917,-0.0244071111083031,0.868225932121277,-0.156301707029343,0.0730527937412262,0.985004186630249,0.46927598118782,0.0183809138834476,0.882860243320465,-0.156301707029343,0.0730527937412262,0.985004186630249,-0.0609948374330997,-0.112295635044575,0.991801083087921,0.122095853090286,0.0358683466911316,-0.991869986057281,-0.987540006637573,0.0609867759048939,-0.145070388913155,-0.703611016273499,0.698612213134766,-0.129894748330116,0.0978374406695366,-0.0727611929178238,-0.992539048194885,0.976235449314117,0.100776001811028,0.191855981945992,0.995284914970398,-0.0223789196461439,0.0943781584501266,0.956445336341858,0.000737061724066734,-0.291910588741302,0.206548303365707,0.167715489864349,-0.963955044746399,0.956445336341858,0.000737061724066734,-0.291910588741302,0.995284914970398,-0.0223789196461439,0.0943781584501266,0.186710476875305,0.0108527233824134,-0.982355117797852,0.160197645425797,-0.0505523309111595,-0.985789656639099,0.236624628305435,0.0126468744128942,-0.971518933773041,0.236624628305435,0.0126468744128942,-0.971518933773041,0.206548303365707,0.167715489864349,-0.963955044746399,0.186710476875305,0.0108527233824134,-0.982355117797852,0.217503920197487,-0.349326312541962,-0.911407351493835,0.916011214256287,-0.163365080952644,-0.366381585597992,0.230428248643875,-0.281747758388519,-0.931408166885376,0.192580029368401,0.0194653943181038,-0.981088221073151,0.122095853090286,0.0358683466911316,-0.991869986057281,
- 0.0978374406695366,-0.0727611929178238,-0.992539048194885,0.209670960903168,0.354816883802414,-0.911121904850006,0.976967394351959,-0.145989999175072,0.155633449554443,0.99455189704895,0.0479726009070873,0.0925479307770729,0.99485570192337,0.00898403953760862,0.10090409219265,0.986620366573334,0.0167725402861834,0.162169396877289,-0.13810758292675,0.100983187556267,0.985255718231201,-0.0609948374330997,-0.112295635044575,0.991801083087921,-0.156301707029343,0.0730527937412262,0.985004186630249,-0.997000217437744,0.0161773003637791,-0.0756892338395119,-0.874546647071838,-0.483310699462891,-0.0397351160645485,-0.984964072704315,-0.141916632652283,-0.0985170379281044,-0.98974609375,0.0160409938544035,-0.141934454441071,-0.989233136177063,0.0106482468545437,-0.145960748195648,0.99485570192337,0.00898403953760862,0.10090409219265,0.192580029368401,0.0194653943181038,-0.981088221073151,0.209670960903168,0.354816883802414,-0.911121904850006,0.993724465370178,-0.0641160309314728,0.0916557088494301,0.986620366573334,0.0167725402861834,0.162169396877289,0.936532139778137,0.288095116615295,0.199772298336029,-0.0603031516075134,-0.0860342979431152,0.994465529918671,-0.0653369650244713,0.0162313859909773,0.997731268405914,-0.128548786044121,0.0201617162674665,0.991498231887817,-0.936191260814667,0.347283780574799,-0.0542204529047012,-0.70649117231369,0.707712650299072,-0.00362696126103401,-0.216281890869141,0.0220989976078272,0.976080894470215,0.120007701218128,0.155389100313187,-0.980536878108978,-0.948995292186737,0.287290394306183,-0.129893273115158,-0.987540006637573,0.0609867759048939,-0.145070388913155,0.122095853090286,0.0358683466911316,-0.991869986057281,0.230428248643875,-0.281747758388519,-0.931408166885376,0.137299224734306,0.14793287217617,-0.979420721530914,0.120007701218128,0.155389100313187,-0.980536878108978,0.217503920197487,-0.349326312541962,-0.911407351493835,-0.135439947247505,-0.0120072793215513,0.990712881088257,-0.0653369650244713,0.0162313859909773,0.997731268405914,-0.0603031516075134,-0.0860342979431152,0.994465529918671,
- -0.170621424913406,0.0948427841067314,0.980761528015137,-0.582981646060944,0.0944015830755234,0.806982517242432,-0.95984160900116,-0.121320471167564,0.2529536485672,-0.874546647071838,-0.483310699462891,-0.0397351160645485,-0.170621424913406,0.0948427841067314,0.980761528015137,-0.117375142872334,-0.0837210044264793,-0.98955237865448,-0.990992486476898,-0.05684794485569,-0.121253006160259,-0.817783772945404,-0.548284769058228,-0.174967363476753,0.151118531823158,0.0818981528282166,-0.985117197036743,-0.990302681922913,0.0399763435125351,-0.133051097393036,-0.95984160900116,-0.121320471167564,0.2529536485672,-0.995899021625519,0.0307505782693625,-0.085085891187191,-0.987338185310364,-0.0230868477374315,-0.156940683722496,0.254080474376678,-0.623086214065552,0.73973423242569,-0.610252678394318,0.719952821731567,0.330544531345367,0.157727643847466,0.142539069056511,-0.977141082286835,0.936532139778137,0.288095116615295,0.199772298336029,0.993724465370178,-0.0641160309314728,0.0916557088494301,0.821808815002441,0.442000687122345,0.359535574913025,0.21415376663208,0.476009845733643,0.852967023849487,0.0978374406695366,-0.0727611929178238,-0.992539048194885,-0.703611016273499,0.698612213134766,-0.129894748330116,-0.990992486476898,-0.05684794485569,-0.121253006160259,-0.117375142872334,-0.0837210044264793,-0.98955237865448,0.180064663290977,0.0436941310763359,-0.982683837413788,0.0978374406695366,-0.0727611929178238,-0.992539048194885,-0.117375142872334,-0.0837210044264793,-0.98955237865448,-0.95984160900116,-0.121320471167564,0.2529536485672,-0.984964072704315,-0.141916632652283,-0.0985170379281044,-0.874546647071838,-0.483310699462891,-0.0397351160645485,0.821808815002441,0.442000687122345,0.359535574913025,0.209670960903168,0.354816883802414,-0.911121904850006,0.742388129234314,0.337344288825989,-0.578842639923096,-0.0603031516075134,-0.0860342979431152,0.994465529918671,0.936532139778137,0.288095116615295,0.199772298336029,0.21415376663208,0.476009845733643,0.852967023849487,-0.582981646060944,0.0944015830755234,0.806982517242432,
- -0.16274057328701,0.00964417401701212,0.986621797084808,-0.0603031516075134,-0.0860342979431152,0.994465529918671,0.21415376663208,0.476009845733643,0.852967023849487,-0.170621424913406,0.0948427841067314,0.980761528015137,-0.874546647071838,-0.483310699462891,-0.0397351160645485,-0.997000217437744,0.0161773003637791,-0.0756892338395119,-0.135439947247505,-0.0120072793215513,0.990712881088257,-0.154014348983765,-0.0146947372704744,0.987959325313568,-0.995899021625519,0.0307505782693625,-0.085085891187191,-0.95984160900116,-0.121320471167564,0.2529536485672,-0.582981646060944,0.0944015830755234,0.806982517242432,0.154913276433945,-0.00998372677713633,-0.987877666950226,-0.985098719596863,-0.0638579577207565,-0.159695833921433,-0.958288252353668,0.226748123764992,-0.173979580402374,0.160197645425797,-0.0505523309111595,-0.985789656639099,-0.98730856180191,0.0203223563730717,-0.157508432865143,-0.995264232158661,-0.0153943682089448,-0.0959802642464638,-0.964194774627686,-0.25393882393837,-0.0764439180493355,-0.984816431999207,0.00990945938974619,-0.17331600189209,-0.0530455186963081,0.0151901300996542,0.998476564884186,0.983216524124146,0.0510034151375294,0.17516864836216,0.976235449314117,0.100776001811028,0.191855981945992,-0.0609948374330997,-0.112295635044575,0.991801083087921,-0.112480856478214,-0.019410640001297,0.993464291095734,-0.0530455186963081,0.0151901300996542,0.998476564884186,-0.0609948374330997,-0.112295635044575,0.991801083087921,-0.13810758292675,0.100983187556267,0.985255718231201,0.217503920197487,-0.349326312541962,-0.911407351493835,0.120007701218128,0.155389100313187,-0.980536878108978,0.122095853090286,0.0358683466911316,-0.991869986057281,0.192580029368401,0.0194653943181038,-0.981088221073151,0.180064663290977,0.0436941310763359,-0.982683837413788,-0.117375142872334,-0.0837210044264793,-0.98955237865448,0.151118531823158,0.0818981528282166,-0.985117197036743,0.224193751811981,0.00169329554773867,-0.974543154239655,0.154913276433945,-0.00998372677713633,-0.987877666950226,0.160197645425797,-0.0505523309111595,-0.985789656639099,
- 0.186710476875305,0.0108527233824134,-0.982355117797852,0.206548303365707,0.167715489864349,-0.963955044746399,0.994414389133453,0.0174401719123125,0.104095675051212,0.224193751811981,0.00169329554773867,-0.974543154239655,0.206548303365707,0.167715489864349,-0.963955044746399,0.995284914970398,-0.0223789196461439,0.0943781584501266,0.931162059307098,0.358741164207459,0.0651302039623261,0.989007592201233,0.0604710839688778,0.134934931993485,0.821808815002441,0.442000687122345,0.359535574913025,0.21415376663208,0.476009845733643,0.852967023849487,0.989007592201233,0.0604710839688778,0.134934931993485,0.950628042221069,-0.252855479717255,0.179918065667152,0.821808815002441,0.442000687122345,0.359535574913025,0.742388129234314,0.337344288825989,-0.578842639923096,0.356835871934891,-0.114506036043167,-0.92712277173996,-0.964194774627686,-0.25393882393837,-0.0764439180493355,-0.995264232158661,-0.0153943682089448,-0.0959802642464638,-0.112480856478214,-0.019410640001297,0.993464291095734,-0.13810758292675,0.100983187556267,0.985255718231201,-0.170621424913406,0.0948427841067314,0.980761528015137,-0.16274057328701,0.00964417401701212,0.986621797084808,-0.582981646060944,0.0944015830755234,0.806982517242432,-0.98974609375,0.0160409938544035,-0.141934454441071,-0.984964072704315,-0.141916632652283,-0.0985170379281044,-0.95984160900116,-0.121320471167564,0.2529536485672,-0.990302681922913,0.0399763435125351,-0.133051097393036,-0.170621424913406,0.0948427841067314,0.980761528015137,-0.0603031516075134,-0.0860342979431152,0.994465529918671,-0.16274057328701,0.00964417401701212,0.986621797084808,0.821808815002441,0.442000687122345,0.359535574913025,0.356835871934891,-0.114506036043167,-0.92712277173996,0.239598050713539,-0.16019107401371,-0.957565486431122,0.931162059307098,0.358741164207459,0.0651302039623261,0.209670960903168,0.354816883802414,-0.911121904850006,0.180064663290977,0.0436941310763359,-0.982683837413788,0.742388129234314,0.337344288825989,-0.578842639923096,0.21415376663208,0.476009845733643,0.852967023849487,
- 0.821808815002441,0.442000687122345,0.359535574913025,0.989007592201233,0.0604710839688778,0.134934931993485,0.983216524124146,0.0510034151375294,0.17516864836216,0.994414389133453,0.0174401719123125,0.104095675051212,0.995284914970398,-0.0223789196461439,0.0943781584501266,0.976235449314117,0.100776001811028,0.191855981945992,0.209670960903168,0.354816883802414,-0.911121904850006,0.0978374406695366,-0.0727611929178238,-0.992539048194885,0.180064663290977,0.0436941310763359,-0.982683837413788,0.180064663290977,0.0436941310763359,-0.982683837413788,0.151118531823158,0.0818981528282166,-0.985117197036743,0.356835871934891,-0.114506036043167,-0.92712277173996,0.180064663290977,0.0436941310763359,-0.982683837413788,0.356835871934891,-0.114506036043167,-0.92712277173996,0.742388129234314,0.337344288825989,-0.578842639923096,0.993724465370178,-0.0641160309314728,0.0916557088494301,0.209670960903168,0.354816883802414,-0.911121904850006,0.821808815002441,0.442000687122345,0.359535574913025,-0.154014348983765,-0.0146947372704744,0.987959325313568,0.21415376663208,0.476009845733643,0.852967023849487,-0.051253616809845,0.277688682079315,0.959302961826324,-0.051253616809845,0.277688682079315,0.959302961826324,0.950628042221069,-0.252855479717255,0.179918065667152,0.983216524124146,0.0510034151375294,0.17516864836216,-0.0530455186963081,0.0151901300996542,0.998476564884186,0.950628042221069,-0.252855479717255,0.179918065667152,0.989007592201233,0.0604710839688778,0.134934931993485,0.931162059307098,0.358741164207459,0.0651302039623261,0.994414389133453,0.0174401719123125,0.104095675051212,0.983216524124146,0.0510034151375294,0.17516864836216,0.931162059307098,0.358741164207459,0.0651302039623261,0.239598050713539,-0.16019107401371,-0.957565486431122,0.224193751811981,0.00169329554773867,-0.974543154239655,0.994414389133453,0.0174401719123125,0.104095675051212,0.151118531823158,0.0818981528282166,-0.985117197036743,0.239598050713539,-0.16019107401371,-0.957565486431122,0.356835871934891,-0.114506036043167,-0.92712277173996,0.151118531823158,0.0818981528282166,-0.985117197036743,
- -0.817783772945404,-0.548284769058228,-0.174967363476753,-0.985098719596863,-0.0638579577207565,-0.159695833921433,0.154913276433945,-0.00998372677713633,-0.987877666950226,-0.987338185310364,-0.0230868477374315,-0.156940683722496,-0.995899021625519,0.0307505782693625,-0.085085891187191,-0.98842442035675,0.146936118602753,-0.0377744436264038,-0.995264232158661,-0.0153943682089448,-0.0959802642464638,-0.98730856180191,0.0203223563730717,-0.157508432865143,-0.112480856478214,-0.019410640001297,0.993464291095734,-0.995264232158661,-0.0153943682089448,-0.0959802642464638,-0.98842442035675,0.146936118602753,-0.0377744436264038,-0.16665543615818,-0.0764857530593872,0.983044266700745,0.21415376663208,0.476009845733643,0.852967023849487,0.950628042221069,-0.252855479717255,0.179918065667152,-0.051253616809845,0.277688682079315,0.959302961826324,-0.154014348983765,-0.0146947372704744,0.987959325313568,-0.051253616809845,0.277688682079315,0.959302961826324,-0.0530455186963081,0.0151901300996542,0.998476564884186,-0.112480856478214,-0.019410640001297,0.993464291095734,-0.16665543615818,-0.0764857530593872,0.983044266700745,-0.128548786044121,0.0201617162674665,0.991498231887817,-0.0422384068369865,0.316031277179718,0.947808146476746,-0.0653369650244713,0.0162313859909773,0.997731268405914,-0.135439947247505,-0.0120072793215513,0.990712881088257,-0.997000217437744,0.0161773003637791,-0.0756892338395119,-0.936191260814667,0.347283780574799,-0.0542204529047012,-0.128548786044121,0.0201617162674665,0.991498231887817,-0.135439947247505,-0.0120072793215513,0.990712881088257,-0.989233136177063,0.0106482468545437,-0.145960748195648,-0.870274126529694,0.478072226047516,-0.118617169559002,-0.936191260814667,0.347283780574799,-0.0542204529047012,-0.997000217437744,0.0161773003637791,-0.0756892338395119,0.224193751811981,0.00169329554773867,-0.974543154239655,0.239598050713539,-0.16019107401371,-0.957565486431122,0.151118531823158,0.0818981528282166,-0.985117197036743,0.154913276433945,-0.00998372677713633,-0.987877666950226,0.137299224734306,0.14793287217617,-0.979420721530914,
- -0.987026214599609,0.09456767141819,-0.129754602909088,0.120007701218128,0.155389100313187,-0.980536878108978
- }
- BinormalsW: *8998 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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: *26994 {
- a: -0.195094019174576,0,-0.98078453540802,-0.382668972015381,0,-0.923885524272919,-0.382668972015381,0,-0.923885524272919,-0.195094034075737,0,-0.980784595012665,-0.382668972015381,0,-0.923885524272919,-0.555559992790222,0,-0.831476449966431,-0.555559992790222,0,-0.83147656917572,-0.382668972015381,0,-0.923885524272919,-0.555559992790222,0,-0.831476449966431,-0.707109570503235,0,-0.707104086875916,-0.707109570503235,0,-0.707104086875916,-0.555559992790222,0,-0.83147656917572,-0.707109570503235,0,-0.707104086875916,-0.831474244594574,0,-0.555563449859619,-0.831474184989929,0,-0.555563390254974,-0.707109570503235,0,-0.707104086875916,-0.831474244594574,0,-0.555563449859619,-0.923878312110901,0,-0.382686465978622,-0.923878312110901,0,-0.382686465978622,-0.831474184989929,0,-0.555563390254974,-0.923878312110901,0,-0.382686465978622,-0.980785071849823,0,-0.195091173052788,-0.980785131454468,0,-0.195091173052788,-0.923878312110901,0,-0.382686465978622,-0.980785071849823,0,-0.195091173052788,-1,0,0,-1,0,0,-0.980785131454468,0,-0.195091173052788,-1,0,0,-0.980785310268402,0,0.195090502500534,-0.980785250663757,0,0.19509045779705,-1,0,0,-0.980785310268402,0,0.195090502500534,-0.923878848552704,0,0.382685154676437,-0.923878848552704,-5.16324348609487e-007,0.38268518447876,-0.980785250663757,0,0.19509045779705,-0.923878848552704,0,0.382685154676437,-0.831474602222443,-7.74485272359016e-007,0.555562973022461,-0.831474542617798,-1.23917811833962e-006,0.555562973022461,-0.923878848552704,-5.16324348609487e-007,0.38268518447876,-0.831474542617798,0,0.555562913417816,-0.707110047340393,-4.1305028730676e-007,0.707103610038757,-0.707110047340393,2.06526323154321e-007,0.707103610038757,-0.831474542617798,-8.26097220851807e-007,0.555562913417816,-0.707110047340393,-4.1305028730676e-007,0.707103610038757,-0.555560410022736,0,0.831476211547852,-0.555560350418091,0,0.831476211547852,-0.707110047340393,2.06526323154321e-007,0.707103610038757,-0.555560410022736,0,0.831476211547852,-0.382668972015381,0,0.923885643482208,
- -0.382668972015381,0,0.923885643482208,-0.555560350418091,0,0.831476211547852,-0.382668972015381,0,0.923885643482208,-0.195093721151352,0,0.980784595012665,-0.195093721151352,0,0.980784595012665,-0.382668972015381,0,0.923885643482208,-0.195093721151352,0,0.980784595012665,0,0,1,0,0,1,-0.195093721151352,0,0.980784595012665,0,0,1,0.195093721151352,0,0.980784595012665,0.195093721151352,0,0.980784595012665,0,0,1,0.195093721151352,0,0.980784595012665,0.382668972015381,0,0.923885643482208,0.382668972015381,0,0.923885643482208,0.195093721151352,0,0.980784595012665,0.382668972015381,0,0.923885643482208,0.555559635162354,0,0.831476807594299,0.555559635162354,0,0.83147668838501,0.382668972015381,0,0.923885643482208,0.555559635162354,0,0.831476807594299,0.707109153270721,0,0.707104384899139,0.707109153270721,-1.5489391103074e-007,0.707104384899139,0.555559635162354,0,0.83147668838501,0.707109153270721,0,0.707104384899139,0.831474244594574,-1.54893413650825e-007,0.555563449859619,0.831474184989929,-3.61419381533779e-007,0.555563390254974,0.707109153270721,-1.5489391103074e-007,0.707104384899139,0.831474244594574,-1.54893413650825e-007,0.555563449859619,0.923878312110901,-5.16323837018717e-008,0.382686465978622,0.923878312110901,1.44003331394721e-012,0.382686465978622,0.831474184989929,-3.61419381533779e-007,0.555563390254974,0.923878312110901,-5.16323837018717e-008,0.382686465978622,0.980785071849823,1.03266287965198e-007,0.195091173052788,0.980785071849823,1.77020979208464e-007,0.195091158151627,0.923878312110901,1.44003331394721e-012,0.382686465978622,0.980785071849823,1.03266287965198e-007,0.195091173052788,1,0,7.66032258070481e-007,1,-1.05813422260348e-011,7.660323149139e-007,0.980785071849823,1.77020979208464e-007,0.195091158151627,1,0,7.66032258070481e-007,0.980785310268402,0,-0.195090502500534,0.980785250663757,-2.46330707118927e-016,-0.195090487599373,1,-1.05813422260348e-011,7.660323149139e-007,0.980785310268402,0,-0.195090502500534,0.923878312110901,0,-0.382686465978622,0.923878312110901,0,-0.382686465978622,0.980785250663757,-2.46330707118927e-016,-0.195090487599373,
- 0.923878312110901,0,-0.382686465978622,0.831474423408508,8.42685565771717e-009,-0.555563151836395,0.831474483013153,1.31894508877996e-013,-0.55556309223175,0.923878312110901,0,-0.382686465978622,0.831474423408508,8.42685565771717e-009,-0.555563151836395,0.707109570503235,1.58636570546378e-008,-0.707104027271271,0.70710963010788,-3.67409824352655e-013,-0.707103967666626,0.831474483013153,1.31894508877996e-013,-0.55556309223175,0.707109570503235,1.58636570546378e-008,-0.707104027271271,0.555559873580933,7.43372741141002e-009,-0.83147656917572,0.555559754371643,8.88178419700125e-015,-0.831476628780365,0.70710963010788,-3.67409824352655e-013,-0.707103967666626,0.555559873580933,7.43372741141002e-009,-0.83147656917572,0.382668614387512,0,-0.923885703086853,0.382668614387512,0,-0.923885703086853,0.555559754371643,8.88178419700125e-015,-0.831476628780365,0.382668614387512,0,-0.923885703086853,0.195093557238579,0,-0.98078465461731,0.19509357213974,0,-0.980784714221954,0.382668614387512,0,-0.923885703086853,0.195093557238579,0,-0.98078465461731,-5.10693887179059e-009,0,-1,-5.10693887179059e-009,0,-1,0.19509357213974,0,-0.980784714221954,-5.10693887179059e-009,0,-1,-0.195094019174576,0,-0.98078453540802,-0.195094034075737,0,-0.980784595012665,-5.10693887179059e-009,0,-1,-0.195094034075737,0,-0.980784595012665,-0.382668972015381,0,-0.923885524272919,-0.382668972015381,0,-0.923885524272919,-0.195094004273415,0,-0.98078453540802,-0.382668972015381,0,-0.923885524272919,-0.555559933185577,0,-0.83147656917572,-0.555559992790222,0,-0.831476449966431,-0.382668972015381,0,-0.923885524272919,-0.555559933185577,0,-0.83147656917572,-0.707109570503235,0,-0.707104086875916,-0.707109570503235,0,-0.707104086875916,-0.555559992790222,0,-0.831476449966431,-0.707109570503235,0,-0.707104086875916,-0.831474184989929,0,-0.555563390254974,-0.831474244594574,0,-0.555563449859619,-0.707109570503235,0,-0.707104086875916,-0.831474184989929,0,-0.555563390254974,-0.923878312110901,0,-0.382686465978622,-0.923878312110901,0,-0.382686465978622,-0.831474244594574,0,-0.555563449859619,
- -0.923878312110901,0,-0.382686465978622,-0.980785131454468,0,-0.195091173052788,-0.980785071849823,0,-0.195091173052788,-0.923878312110901,0,-0.382686465978622,-0.980785131454468,0,-0.195091173052788,-1,0,0,-1,0,0,-0.980785071849823,0,-0.195091173052788,-1,0,0,-0.980785250663757,0,0.19509045779705,-0.980785310268402,0,0.195090502500534,-1,0,0,-0.980785250663757,0,0.19509045779705,-0.923878848552704,7.22855702406378e-007,0.38268518447876,-0.923878848552704,8.26119617158838e-007,0.382685124874115,-0.980785310268402,0,0.195090502500534,-0.923878848552704,7.22855702406378e-007,0.38268518447876,-0.831474542617798,1.65224025749922e-006,0.555562973022461,-0.831474602222443,-0,0.555562973022461,-0.923878848552704,8.26119617158838e-007,0.382685124874115,-0.831474542617798,-6.19571778770478e-007,0.555562913417816,-0.707110047340393,-6.19575530436123e-007,0.707103610038757,-0.707110047340393,0,0.707103610038757,-0.831474542617798,-9.29360282952985e-007,0.555562913417816,-0.707110047340393,-6.19575530436123e-007,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.555560350418091,0,0.831476211547852,-0.707110047340393,0,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.382668972015381,0,0.923885643482208,-0.382668972015381,0,0.923885643482208,-0.555560350418091,0,0.831476211547852,-0.382668972015381,0,0.923885643482208,-0.195093721151352,0,0.980784595012665,-0.195093721151352,0,0.980784595012665,-0.382668972015381,0,0.923885643482208,-0.195093721151352,0,0.980784595012665,0,0,1,0,0,1,-0.195093721151352,0,0.980784595012665,0,0,1,0.195093721151352,0,0.980784595012665,0.195093721151352,0,0.980784595012665,0,0,1,0.195093721151352,0,0.980784595012665,0.382668972015381,0,0.923885643482208,0.382668942213058,0,0.923885643482208,0.195093721151352,0,0.980784595012665,0.382668972015381,0,0.923885643482208,0.555559635162354,0,0.83147668838501,0.555559635162354,0,0.831476807594299,0.382668942213058,0,0.923885643482208,0.555559635162354,0,0.83147668838501,0.707109153270721,-1.1358893061697e-006,0.707104384899139,0.707109153270721,-1.85872772817675e-006,0.707104384899139,
- 0.555559635162354,0,0.831476807594299,0.707109153270721,-1.1358893061697e-006,0.707104384899139,0.831474184989929,-1.65220490089268e-006,0.555563390254974,0.831474244594574,-1.44568275572965e-006,0.555563449859619,0.707109153270721,-1.85872772817675e-006,0.707104384899139,0.831474184989929,-1.65220490089268e-006,0.555563390254974,0.923878312110901,4.35799573511586e-012,0.382686465978622,0.923878312110901,2.06535545999031e-007,0.382686465978622,0.831474244594574,-1.44568275572965e-006,0.555563449859619,0.923878312110901,4.35799573511586e-012,0.382686465978622,0.980785131454468,3.09799077058415e-007,0.195091173052788,0.980785071849823,2.06532718038943e-007,0.195091173052788,0.923878312110901,2.06535545999031e-007,0.382686465978622,0.980785131454468,3.09799077058415e-007,0.195091173052788,1,0,7.66032258070481e-007,1,0,7.660323149139e-007,0.980785071849823,2.06532718038943e-007,0.195091173052788,1,0,7.66032258070481e-007,0.980785250663757,0,-0.195090487599373,0.980785310268402,0,-0.195090502500534,1,0,7.660323149139e-007,0.980785250663757,0,-0.195090487599373,0.923878312110901,0,-0.382686465978622,0.923878312110901,0,-0.382686465978622,0.980785310268402,0,-0.195090502500534,0.923878312110901,0,-0.382686465978622,0.831474184989929,0,-0.555563390254974,0.831474244594574,0,-0.555563449859619,0.923878312110901,0,-0.382686465978622,0.831474184989929,0,-0.555563390254974,0.70710963010788,0,-0.707103967666626,0.70710963010788,0,-0.707103967666626,0.831474244594574,0,-0.555563449859619,0.70710963010788,0,-0.707103967666626,0.555560111999512,0,-0.831476449966431,0.555559992790222,0,-0.831476449966431,0.70710963010788,0,-0.707103967666626,0.555560111999512,0,-0.831476449966431,0.382668614387512,0,-0.923885703086853,0.382668614387512,0,-0.923885703086853,0.555559992790222,0,-0.831476449966431,0.382668614387512,0,-0.923885703086853,0.19509357213974,0,-0.980784714221954,0.195093557238579,0,-0.98078465461731,0.382668614387512,0,-0.923885703086853,0.19509357213974,0,-0.980784714221954,-5.10693887179059e-009,0,-1,-5.10693887179059e-009,0,-1,
- 0.195093557238579,0,-0.98078465461731,-5.10693887179059e-009,0,-1,-0.195094034075737,0,-0.980784595012665,-0.195094004273415,0,-0.98078453540802,-5.10693887179059e-009,0,-1,-0.195094034075737,0,-0.980784595012665,-0.382668972015381,0,-0.923885524272919,-0.382668972015381,0,-0.923885524272919,-0.195094034075737,0,-0.980784595012665,-0.382668972015381,0,-0.923885524272919,-0.555559933185577,0,-0.83147656917572,-0.555559933185577,0,-0.83147656917572,-0.382668972015381,0,-0.923885524272919,-0.555559933185577,0,-0.83147656917572,-0.707109570503235,0,-0.707104086875916,-0.707109570503235,0,-0.707104086875916,-0.555559933185577,0,-0.83147656917572,-0.707109570503235,0,-0.707104086875916,-0.831474184989929,0,-0.555563390254974,-0.831474184989929,0,-0.555563390254974,-0.707109570503235,0,-0.707104086875916,-0.831474184989929,0,-0.555563390254974,-0.923878312110901,0,-0.382686465978622,-0.923878312110901,0,-0.382686465978622,-0.831474184989929,0,-0.555563390254974,-0.923878312110901,0,-0.382686465978622,-0.980785131454468,0,-0.195091173052788,-0.980785131454468,0,-0.195091173052788,-0.923878312110901,0,-0.382686465978622,-0.980785131454468,0,-0.195091173052788,-1,0,0,-1,0,0,-0.980785131454468,0,-0.195091173052788,-1,0,0,-0.980785250663757,0,0.19509045779705,-0.980785250663757,0,0.19509045779705,-1,0,0,-0.980785250663757,0,0.19509045779705,-0.923878848552704,-7.22854906598513e-007,0.38268518447876,-0.923878848552704,7.22855702406378e-007,0.38268518447876,-0.980785250663757,0,0.19509045779705,-0.923878848552704,-7.22854906598513e-007,0.38268518447876,-0.831474542617798,4.13061172821472e-007,0.555562973022461,-0.831474542617798,1.65224025749922e-006,0.555562973022461,-0.923878848552704,7.22855702406378e-007,0.38268518447876,-0.831474542617798,3.20114259011461e-006,0.555562913417816,-0.707110047340393,3.09788873664729e-007,0.707103610038757,-0.707110047340393,-6.19575530436123e-007,0.707103610038757,-0.831474542617798,-6.19571778770478e-007,0.555562913417816,-0.707110047340393,3.09788873664729e-007,0.707103610038757,-0.555560350418091,0,0.831476211547852,
- -0.555560350418091,0,0.831476211547852,-0.707110047340393,-6.19575530436123e-007,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.382668972015381,0,0.923885643482208,-0.382668972015381,0,0.923885643482208,-0.555560350418091,0,0.831476211547852,-0.382668972015381,0,0.923885643482208,-0.195093721151352,0,0.980784595012665,-0.195093721151352,0,0.980784595012665,-0.382668972015381,0,0.923885643482208,-0.195093721151352,0,0.980784595012665,0,0,1,0,0,1,-0.195093721151352,0,0.980784595012665,0,0,1,0.195093721151352,0,0.980784595012665,0.195093721151352,0,0.980784595012665,0,0,1,0.195093721151352,0,0.980784595012665,0.382668972015381,0,0.923885643482208,0.382668972015381,0,0.923885643482208,0.195093721151352,0,0.980784595012665,0.382668972015381,0,0.923885643482208,0.555559635162354,0,0.83147668838501,0.555559635162354,0,0.83147668838501,0.382668972015381,0,0.923885643482208,0.555559635162354,0,0.83147668838501,0.707109153270721,-8.26101313577965e-007,0.707104384899139,0.707109153270721,-1.1358893061697e-006,0.707104384899139,0.555559635162354,0,0.83147668838501,0.707109153270721,-8.26101313577965e-007,0.707104384899139,0.831474184989929,-1.34241793148249e-006,0.555563390254974,0.831474184989929,-1.65220490089268e-006,0.555563390254974,0.707109153270721,-1.1358893061697e-006,0.707104384899139,0.831474184989929,-1.34241793148249e-006,0.555563390254974,0.923878312110901,4.35799573511586e-012,0.382686465978622,0.923878312110901,4.35799573511586e-012,0.382686465978622,0.831474184989929,-1.65220490089268e-006,0.555563390254974,0.923878312110901,4.35799573511586e-012,0.382686465978622,0.977943301200867,3.09400974174423e-007,0.208870679140091,0.980785131454468,3.09799077058415e-007,0.195091173052788,0.923878312110901,4.35799573511586e-012,0.382686465978622,0.977943301200867,3.09400974174423e-007,0.208870679140091,0.995184779167175,0,0.0980167537927628,1,0,7.66032258070481e-007,1,0,7.66032258070481e-007,0.980785131454468,3.09799077058415e-007,0.195091173052788,1,0,7.66032258070481e-007,0.995184898376465,-0,-0.0980153530836105,
- 0.977943420410156,0,-0.208870097994804,0.980785250663757,0,-0.195090487599373,1,0,7.66032258070481e-007,0.977943420410156,0,-0.208870097994804,0.923878312110901,0,-0.382686465978622,0.923878312110901,0,-0.382686465978622,0.980785250663757,0,-0.195090487599373,0.923878312110901,0,-0.382686465978622,0.831474304199219,-1.45661274383348e-013,-0.55556333065033,0.831474184989929,0,-0.555563390254974,0.923878312110901,0,-0.382686465978622,0.831474304199219,-1.45661274383348e-013,-0.55556333065033,0.70710963010788,4.76359728572573e-013,-0.707103967666626,0.70710963010788,0,-0.707103967666626,0.831474184989929,0,-0.555563390254974,0.70710963010788,4.76359728572573e-013,-0.707103967666626,0.555559933185577,-4.61852778244065e-014,-0.83147656917572,0.555560111999512,0,-0.831476449966431,0.70710963010788,0,-0.707103967666626,0.555559933185577,-4.61852778244065e-014,-0.83147656917572,0.382668614387512,0,-0.923885703086853,0.382668614387512,0,-0.923885703086853,0.555560111999512,0,-0.831476449966431,0.382668614387512,0,-0.923885703086853,0.19509357213974,0,-0.980784714221954,0.19509357213974,0,-0.980784714221954,0.382668614387512,0,-0.923885703086853,0.19509357213974,0,-0.980784714221954,-5.10693887179059e-009,0,-1,-5.10693887179059e-009,0,-1,0.19509357213974,0,-0.980784714221954,-5.10693887179059e-009,0,-1,-0.195094034075737,0,-0.980784595012665,-0.195094034075737,0,-0.980784595012665,-5.10693887179059e-009,0,-1,-0.195094034075737,0,-0.980784595012665,-0.382668972015381,0,-0.923885524272919,-0.382668972015381,0,-0.923885524272919,-0.195094034075737,0,-0.980784595012665,-0.382668972015381,0,-0.923885524272919,-0.555559933185577,0,-0.83147656917572,-0.555559933185577,0,-0.83147656917572,-0.382668972015381,0,-0.923885524272919,-0.555559933185577,0,-0.83147656917572,-0.707109570503235,0,-0.707104086875916,-0.707109570503235,0,-0.707104086875916,-0.555559933185577,0,-0.83147656917572,-0.707109570503235,0,-0.707104086875916,-0.831474184989929,0,-0.555563390254974,-0.831474184989929,0,-0.555563390254974,-0.707109570503235,0,-0.707104086875916,
- -0.831474184989929,0,-0.555563390254974,-0.923878312110901,0,-0.382686465978622,-0.923878312110901,0,-0.382686465978622,-0.831474184989929,0,-0.555563390254974,-0.923878312110901,0,-0.382686465978622,-0.980785131454468,0,-0.195091173052788,-0.980785131454468,0,-0.195091173052788,-0.923878312110901,0,-0.382686465978622,-0.980785131454468,0,-0.195091173052788,-1,0,0,-1,0,0,-0.980785131454468,0,-0.195091173052788,-1,0,0,-0.980785250663757,0,0.19509045779705,-0.980785250663757,0,0.19509045779705,-1,0,0,-0.980785250663757,0,0.19509045779705,-0.923878848552704,-1.13591352146614e-006,0.38268518447876,-0.923878848552704,-7.22854906598513e-007,0.38268518447876,-0.980785250663757,0,0.19509045779705,-0.923878848552704,-1.13591352146614e-006,0.38268518447876,-0.831474542617798,-2.27182613343757e-006,0.555562973022461,-0.831474542617798,4.13061172821472e-007,0.555562973022461,-0.923878848552704,-7.22854906598513e-007,0.38268518447876,-0.831474542617798,5.16312411491526e-006,0.555562913417816,-0.707110047340393,2.27178179557086e-006,0.707103610038757,-0.707110047340393,3.09788873664729e-007,0.707103610038757,-0.831474542617798,3.20114259011461e-006,0.555562913417816,-0.707110047340393,2.27178179557086e-006,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.555560350418091,0,0.831476211547852,-0.707110047340393,3.09788873664729e-007,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.382668972015381,0,0.923885643482208,-0.382668972015381,0,0.923885643482208,-0.555560350418091,0,0.831476211547852,-0.382668972015381,0,0.923885643482208,-0.195093721151352,0,0.980784595012665,-0.195093721151352,0,0.980784595012665,-0.382668972015381,0,0.923885643482208,-0.195093721151352,0,0.980784595012665,0,0,1,0,0,1,-0.195093721151352,0,0.980784595012665,0,0,1,0.195093721151352,0,0.980784595012665,0.195093721151352,0,0.980784595012665,0,0,1,0.195093721151352,0,0.980784595012665,0.382668972015381,0,0.923885643482208,0.382668972015381,0,0.923885643482208,0.195093721151352,0,0.980784595012665,0.382668972015381,0,0.923885643482208,0.555559635162354,0,0.83147668838501,
- 0.555559635162354,0,0.83147668838501,0.382668972015381,0,0.923885643482208,0.555559635162354,0,0.83147668838501,0.707109153270721,-5.67944653084851e-007,0.707104384899139,0.707109153270721,-8.26101313577965e-007,0.707104384899139,0.555559635162354,0,0.83147668838501,0.707109153270721,-5.67944653084851e-007,0.707104384899139,0.831474184989929,-9.8099849310529e-007,0.555563390254974,0.831474184989929,-1.34241793148249e-006,0.555563390254974,0.707109153270721,-8.26101313577965e-007,0.707104384899139,0.831474184989929,-9.8099849310529e-007,0.555563390254974,0.923878312110901,4.35799573511586e-012,0.382686465978622,0.923878312110901,4.35799573511586e-012,0.382686465978622,0.831474184989929,-1.34241793148249e-006,0.555563390254974,0.923878312110901,4.35799573511586e-012,0.382686465978622,0.973855257034302,3.08966889406292e-007,0.227169141173363,0.977943301200867,3.09400974174423e-007,0.208870679140091,0.923878312110901,4.35799573511586e-012,0.382686465978622,0.995184898376465,-0,-0.0980153530836105,0.995184898376465,-0,-0.0980153530836105,0.973855435848236,0,-0.227168843150139,0.977943420410156,0,-0.208870097994804,0.973855435848236,0,-0.227168843150139,0.923878312110901,0,-0.382686465978622,0.923878312110901,0,-0.382686465978622,0.977943420410156,0,-0.208870097994804,0.923878312110901,0,-0.382686465978622,0.831474483013153,-1.58687895723125e-013,-0.55556309223175,0.831474304199219,-1.45661274383348e-013,-0.55556333065033,0.923878312110901,0,-0.382686465978622,0.831474483013153,-1.58687895723125e-013,-0.55556309223175,0.70710963010788,4.58300064565265e-013,-0.707103967666626,0.70710963010788,4.76359728572573e-013,-0.707103967666626,0.831474304199219,-1.45661274383348e-013,-0.55556333065033,0.70710963010788,4.58300064565265e-013,-0.707103967666626,0.555559754371643,-2.81256510865479e-014,-0.831476628780365,0.555559933185577,-4.61852778244065e-014,-0.83147656917572,0.70710963010788,4.76359728572573e-013,-0.707103967666626,0.555559754371643,-2.81256510865479e-014,-0.831476628780365,0.382668614387512,0,-0.923885703086853,0.382668614387512,0,-0.923885703086853,
- 0.555559933185577,-4.61852778244065e-014,-0.83147656917572,0.382668614387512,0,-0.923885703086853,0.19509357213974,0,-0.980784714221954,0.19509357213974,0,-0.980784714221954,0.382668614387512,0,-0.923885703086853,0.19509357213974,0,-0.980784714221954,-5.10693887179059e-009,0,-1,-5.10693887179059e-009,0,-1,0.19509357213974,0,-0.980784714221954,-5.10693887179059e-009,0,-1,-0.195094034075737,0,-0.980784595012665,-0.195094034075737,0,-0.980784595012665,-5.10693887179059e-009,0,-1,-0.195094034075737,0,-0.980784595012665,-0.382668972015381,0,-0.923885524272919,-0.382668972015381,0,-0.923885524272919,-0.195094034075737,0,-0.980784595012665,-0.382668972015381,0,-0.923885524272919,-0.555559933185577,0,-0.83147656917572,-0.555559933185577,0,-0.83147656917572,-0.382668972015381,0,-0.923885524272919,-0.555559933185577,0,-0.83147656917572,-0.707109570503235,0,-0.707104086875916,-0.707109570503235,0,-0.707104086875916,-0.555559933185577,0,-0.83147656917572,-0.707109570503235,0,-0.707104086875916,-0.831474184989929,0,-0.555563390254974,-0.831474184989929,0,-0.555563390254974,-0.707109570503235,0,-0.707104086875916,-0.831474184989929,0,-0.555563390254974,-0.923878312110901,0,-0.382686465978622,-0.923878312110901,0,-0.382686465978622,-0.831474184989929,0,-0.555563390254974,-0.923878312110901,0,-0.382686465978622,-0.980785131454468,0,-0.195091173052788,-0.980785131454468,0,-0.195091173052788,-0.923878312110901,0,-0.382686465978622,-0.980785131454468,0,-0.195091173052788,-1,0,0,-1,0,0,-0.980785131454468,0,-0.195091173052788,-1,0,0,-0.980785250663757,0,0.19509045779705,-0.980785250663757,0,0.19509045779705,-1,0,0,-0.980785250663757,0,0.19509045779705,-0.923878848552704,-4.64692476498385e-007,0.38268518447876,-0.923878848552704,-1.13591352146614e-006,0.38268518447876,-0.980785250663757,0,0.19509045779705,-0.923878848552704,-4.64692476498385e-007,0.38268518447876,-0.831474542617798,-1.44570685733925e-006,0.555562973022461,-0.831474542617798,-2.27182613343757e-006,0.555562973022461,-0.923878848552704,-1.13591352146614e-006,0.38268518447876,
- -0.831474542617798,2.06524759960303e-006,0.555562913417816,-0.707110047340393,2.22014637074608e-006,0.707103610038757,-0.707110047340393,2.27178179557086e-006,0.707103610038757,-0.831474542617798,5.16312411491526e-006,0.555562913417816,-0.707110047340393,2.22014637074608e-006,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.555560350418091,0,0.831476211547852,-0.707110047340393,2.27178179557086e-006,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.382668972015381,0,0.923885643482208,-0.382668972015381,0,0.923885643482208,-0.555560350418091,0,0.831476211547852,-0.382668972015381,0,0.923885643482208,-0.195093721151352,0,0.980784595012665,-0.195093721151352,0,0.980784595012665,-0.382668972015381,0,0.923885643482208,-0.195093721151352,0,0.980784595012665,0,0,1,0,0,1,-0.195093721151352,0,0.980784595012665,0,0,1,0.195093721151352,0,0.980784595012665,0.195093721151352,0,0.980784595012665,0,0,1,0.195093721151352,0,0.980784595012665,0.382668972015381,0,0.923885643482208,0.382668972015381,0,0.923885643482208,0.195093721151352,0,0.980784595012665,0.382668972015381,0,0.923885643482208,0.555559635162354,0,0.83147668838501,0.555559635162354,0,0.83147668838501,0.382668972015381,0,0.923885643482208,0.555559635162354,0,0.83147668838501,0.707109153270721,-3.87234990739671e-007,0.707104384899139,0.707109153270721,-5.67944653084851e-007,0.707104384899139,0.555559635162354,0,0.83147668838501,0.707109153270721,-3.87234990739671e-007,0.707104384899139,0.831474184989929,-6.45392844944581e-007,0.555563390254974,0.831474184989929,-9.8099849310529e-007,0.555563390254974,0.707109153270721,-5.67944653084851e-007,0.707104384899139,0.831474184989929,-6.45392844944581e-007,0.555563390254974,0.923878312110901,5.16360891822387e-008,0.382686465978622,0.923878312110901,4.35799573511586e-012,0.382686465978622,0.831474184989929,-9.8099849310529e-007,0.555563390254974,0.923878312110901,5.16360891822387e-008,0.382686465978622,0.977943360805511,3.71284357925106e-007,0.208870679140091,0.973855257034302,3.08966889406292e-007,0.227169141173363,
- 0.923878312110901,4.35799573511586e-012,0.382686465978622,0.995184898376465,-0,-0.0980153530836105,0.995184898376465,2.11577064407091e-016,-0.0980153605341911,0.977943420410156,-1.57463213475151e-012,-0.208870097994804,0.973855435848236,0,-0.227168843150139,0.977943420410156,-1.57463213475151e-012,-0.208870097994804,0.923878312110901,0,-0.382686465978622,0.923878312110901,0,-0.382686465978622,0.973855435848236,0,-0.227168843150139,0.923878312110901,0,-0.382686465978622,0.831474542617798,0,-0.555562973022461,0.831474483013153,-1.58687895723125e-013,-0.55556309223175,0.923878312110901,0,-0.382686465978622,0.831474542617798,0,-0.555562973022461,0.70710963010788,0,-0.707103908061981,0.70710963010788,4.58300064565265e-013,-0.707103967666626,0.831474483013153,-1.58687895723125e-013,-0.55556309223175,0.70710963010788,0,-0.707103908061981,0.555559694766998,0,-0.83147668838501,0.555559754371643,-2.81256510865479e-014,-0.831476628780365,0.70710963010788,4.58300064565265e-013,-0.707103967666626,0.555559694766998,0,-0.83147668838501,0.382668614387512,0,-0.923885703086853,0.382668614387512,0,-0.923885703086853,0.555559754371643,-2.81256510865479e-014,-0.831476628780365,0.382668614387512,0,-0.923885703086853,0.19509357213974,0,-0.980784714221954,0.19509357213974,0,-0.980784714221954,0.382668614387512,0,-0.923885703086853,0.19509357213974,0,-0.980784714221954,-5.10693887179059e-009,0,-1,-5.10693887179059e-009,0,-1,0.19509357213974,0,-0.980784714221954,-5.10693887179059e-009,0,-1,-0.195094034075737,0,-0.980784595012665,-0.195094034075737,0,-0.980784595012665,-5.10693887179059e-009,0,-1,-0.195094034075737,0,-0.980784595012665,-0.382668972015381,0,-0.923885524272919,-0.382668972015381,0,-0.923885524272919,-0.195094034075737,0,-0.980784595012665,-0.382668972015381,0,-0.923885524272919,-0.555559992790222,0,-0.83147656917572,-0.555559933185577,0,-0.83147656917572,-0.382668972015381,0,-0.923885524272919,-0.555559992790222,0,-0.83147656917572,-0.707109570503235,0,-0.707104086875916,-0.707109570503235,0,-0.707104086875916,-0.555559933185577,0,-0.83147656917572,
- -0.707109570503235,0,-0.707104086875916,-0.831474184989929,0,-0.555563390254974,-0.831474184989929,0,-0.555563390254974,-0.707109570503235,0,-0.707104086875916,-0.831474184989929,0,-0.555563390254974,-0.923878312110901,0,-0.382686465978622,-0.923878312110901,0,-0.382686465978622,-0.831474184989929,0,-0.555563390254974,-0.923878312110901,0,-0.382686465978622,-0.980785131454468,0,-0.195091173052788,-0.980785131454468,0,-0.195091173052788,-0.923878312110901,0,-0.382686465978622,-0.980785131454468,0,-0.195091173052788,-1,0,0,-1,0,0,-0.980785131454468,0,-0.195091173052788,-1,0,0,-0.980785250663757,0,0.19509045779705,-0.980785250663757,0,0.19509045779705,-1,0,0,-0.980785250663757,0,0.19509045779705,-0.923878848552704,-5.16324348609487e-007,0.38268518447876,-0.923878848552704,-4.64692476498385e-007,0.38268518447876,-0.980785250663757,0,0.19509045779705,-0.923878848552704,-5.16324348609487e-007,0.38268518447876,-0.831474542617798,-1.23917811833962e-006,0.555562973022461,-0.831474542617798,-1.44570685733925e-006,0.555562973022461,-0.923878848552704,-4.64692476498385e-007,0.38268518447876,-0.831474542617798,-8.26097220851807e-007,0.555562913417816,-0.707110047340393,2.06526323154321e-007,0.707103610038757,-0.707110047340393,2.22014637074608e-006,0.707103610038757,-0.831474542617798,2.06524759960303e-006,0.555562913417816,-0.707110047340393,2.06526323154321e-007,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.555560350418091,0,0.831476211547852,-0.707110047340393,2.22014637074608e-006,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.382668972015381,0,0.923885643482208,-0.382668972015381,0,0.923885643482208,-0.555560350418091,0,0.831476211547852,-0.382668972015381,0,0.923885643482208,-0.195093721151352,0,0.980784595012665,-0.195093721151352,0,0.980784595012665,-0.382668972015381,0,0.923885643482208,-0.195093721151352,0,0.980784595012665,0,0,1,0,0,1,-0.195093721151352,0,0.980784595012665,0,0,1,0.195093721151352,0,0.980784595012665,0.195093721151352,0,0.980784595012665,0,0,1,0.195093721151352,0,0.980784595012665,
- 0.382668972015381,0,0.923885643482208,0.382668972015381,0,0.923885643482208,0.195093721151352,0,0.980784595012665,0.382668972015381,0,0.923885643482208,0.555559635162354,0,0.83147668838501,0.555559635162354,0,0.83147668838501,0.382668972015381,0,0.923885643482208,0.555559635162354,0,0.83147668838501,0.707109153270721,-1.5489391103074e-007,0.707104384899139,0.707109153270721,-3.87234990739671e-007,0.707104384899139,0.555559635162354,0,0.83147668838501,0.707109153270721,-1.5489391103074e-007,0.707104384899139,0.831474184989929,-3.61419381533779e-007,0.555563390254974,0.831474184989929,-6.45392844944581e-007,0.555563390254974,0.707109153270721,-3.87234990739671e-007,0.707104384899139,0.831474184989929,-3.61419381533779e-007,0.555563390254974,0.923878312110901,1.44003331394721e-012,0.382686465978622,0.923878312110901,5.16360891822387e-008,0.382686465978622,0.831474184989929,-6.45392844944581e-007,0.555563390254974,0.923878312110901,1.44003331394721e-012,0.382686465978622,0.980785071849823,1.77020979208464e-007,0.195091158151627,0.977943360805511,3.71284357925106e-007,0.208870679140091,0.923878312110901,5.16360891822387e-008,0.382686465978622,0.980785071849823,1.77020979208464e-007,0.195091158151627,1,-1.05813422260348e-011,7.660323149139e-007,1,4.16333634234434e-017,7.66032258070481e-007,0.99518483877182,-1.30469636300993e-016,0.0980167537927628,0.977943360805511,3.71284357925106e-007,0.208870679140091,1,-1.05813422260348e-011,7.660323149139e-007,0.980785250663757,-2.46330707118927e-016,-0.195090487599373,0.977943420410156,-1.57463213475151e-012,-0.208870097994804,0.995184898376465,2.11577064407091e-016,-0.0980153605341911,1,4.16333634234434e-017,7.66032258070481e-007,0.980785250663757,-2.46330707118927e-016,-0.195090487599373,0.923878312110901,0,-0.382686465978622,0.923878312110901,0,-0.382686465978622,0.977943420410156,-1.57463213475151e-012,-0.208870097994804,0.923878312110901,0,-0.382686465978622,0.831474483013153,1.31894508877996e-013,-0.55556309223175,0.831474542617798,0,-0.555562973022461,0.923878312110901,0,-0.382686465978622,
- 0.831474483013153,1.31894508877996e-013,-0.55556309223175,0.70710963010788,-3.67409824352655e-013,-0.707103967666626,0.70710963010788,0,-0.707103908061981,0.831474542617798,0,-0.555562973022461,0.70710963010788,-3.67409824352655e-013,-0.707103967666626,0.555559754371643,8.88178419700125e-015,-0.831476628780365,0.555559694766998,0,-0.83147668838501,0.70710963010788,0,-0.707103908061981,0.555559754371643,8.88178419700125e-015,-0.831476628780365,0.382668614387512,0,-0.923885703086853,0.382668614387512,0,-0.923885703086853,0.555559694766998,0,-0.83147668838501,0.382668614387512,0,-0.923885703086853,0.19509357213974,0,-0.980784714221954,0.19509357213974,0,-0.980784714221954,0.382668614387512,0,-0.923885703086853,0.19509357213974,0,-0.980784714221954,-5.10693887179059e-009,0,-1,-5.10693887179059e-009,0,-1,0.19509357213974,0,-0.980784714221954,-5.10693887179059e-009,0,-1,-0.195094034075737,0,-0.980784595012665,-0.195094034075737,0,-0.980784595012665,-5.10693887179059e-009,0,-1,0.19509169459343,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.382661908864975,0,0.923888504505157,0.382661879062653,0,0.923888444900513,0.382661879062653,0,0.923888444900513,0.382661908864975,0,0.923888504505157,0.555571675300598,0,0.831468760967255,0.555571615695953,0,0.83146870136261,0.555571615695953,0,0.83146870136261,0.555571675300598,0,0.831468760967255,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.980785489082336,0,0.195089802145958,0.980785489082336,0,0.195089802145958,0.980785489082336,0,0.195089802145958,0.980785489082336,0,0.195089802145958,1,0,0,1,0,0,1,0,0,1,0,0,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,
- 0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.923880338668823,4.90163927224785e-007,-0.382681429386139,0.923880338668823,0,-0.382681459188461,0.923880338668823,0,-0.382681459188461,0.923880338668823,4.90163927224785e-007,-0.382681429386139,0.831474304199219,1.47050047871744e-006,-0.55556321144104,0.831474304199219,7.35249386707437e-007,-0.55556321144104,0.831474304199219,0,-0.55556321144104,0.831474304199219,9.80423465080094e-007,-0.55556321144104,0.707103490829468,-4.90212300974235e-007,-0.707110166549683,0.707103490829468,4.90209913550643e-007,-0.707110166549683,0.707103490829468,4.90209913550643e-007,-0.707110166549683,0.707103490829468,-4.90212300974235e-007,-0.707110166549683,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.382662266492844,0,-0.923888325691223,0.382662296295166,0,-0.923888325691223,0.382662296295166,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.19512078166008,-6.57251962815457e-014,-0.98077917098999,0.195120766758919,-4.99790830943425e-009,-0.98077917098999,0.195120766758919,-4.99790830943425e-009,-0.98077917098999,0.19512078166008,-6.57251962815457e-014,-0.98077917098999,-1.06060777937955e-008,-1.48029743675295e-015,-1,1.2121232018103e-008,-5.00530772384877e-009,-1,1.2121232018103e-008,-5.00530772384877e-009,-1,-1.06060777937955e-008,-1.48029743675295e-015,-1,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888444900513,-0.382661908864975,0,-0.923888444900513,-0.382661908864975,0,-0.923888504505157,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.70710301399231,0,-0.707110643386841,-0.70710301399231,0,-0.707110643386841,-0.70710301399231,0,-0.707110643386841,
- -0.70710301399231,0,-0.707110643386841,-0.831473827362061,2.45106150487118e-007,-0.555563986301422,-0.831473827362061,0,-0.555563986301422,-0.831473827362061,0,-0.555563986301422,-0.831473827362061,2.45106150487118e-007,-0.555563986301422,-0.923880040645599,2.45081935190683e-007,-0.382682293653488,-0.923880040645599,0,-0.382682323455811,-0.923880040645599,0,-0.382682323455811,-0.923880040645599,2.45081935190683e-007,-0.382682293653488,-0.980784237384796,-2.13479339095102e-007,-0.195095613598824,-0.980784177780151,0,-0.195095613598824,-0.980784177780151,0,-0.195095613598824,-0.980784237384796,-2.13479339095102e-007,-0.195095613598824,-1,-6.76419809053641e-009,-9.12113137019333e-007,-1,0,-9.12113080175914e-007,-1,0,-9.12113080175914e-007,-1,-6.76419809053641e-009,-9.12113137019333e-007,-0.980785667896271,3.07901897337801e-014,0.195088908076286,-0.980785667896271,0,0.195088908076286,-0.980785667896271,0,0.195088908076286,-0.980785667896271,3.07901897337801e-014,0.195088908076286,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.831473827362061,0,0.555564045906067,-0.831473767757416,0,0.555564045906067,-0.831473767757416,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.555571675300598,0,0.831468760967255,-0.555571615695953,0,0.83146870136261,-0.555571615695953,0,0.83146870136261,-0.555571675300598,0,0.831468760967255,-0.382661581039429,0,0.923888623714447,-0.382661640644073,0,0.923888623714447,-0.382661640644073,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785071849823,-0.195091158151627,0,0.980785071849823,-0.195091158151627,0,0.980785131454468,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,0.195091709494591,0,0.980785012245178,
- 0.19509169459343,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.19509169459343,0,0.980785012245178,0.382661879062653,0,0.923888444900513,0.382661908864975,0,0.923888504505157,0.382661908864975,0,0.923888504505157,0.382661879062653,0,0.923888444900513,0.555571615695953,0,0.83146870136261,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.555571615695953,0,0.83146870136261,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.980785489082336,0,0.195089787244797,0.980785489082336,0,0.195089802145958,0.980785489082336,0,0.195089802145958,0.980785489082336,0,0.195089787244797,1,0,0,1,0,0,1,0,0,1,0,0,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.923880338668823,-9.80327740762732e-007,-0.382681488990784,0.923880338668823,-9.80329446065298e-007,-0.382681429386139,0.923880338668823,-9.80329446065298e-007,-0.382681429386139,0.923880338668823,-9.80327740762732e-007,-0.382681488990784,0.831474304199219,-0,-0.55556321144104,0.831474304199219,-1.96067003344069e-006,-0.55556321144104,0.831474304199219,-9.80428467300953e-007,-0.55556321144104,0.831474304199219,0,-0.55556321144104,0.707103490829468,0,-0.707110166549683,0.707103490829468,0,-0.707110166549683,0.707103490829468,0,-0.707110166549683,0.707103490829468,0,-0.707110166549683,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.382662296295166,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,
- 0.382662296295166,0,-0.923888325691223,0.195120766758919,-4.99763697092703e-009,-0.98077917098999,0.19512078166008,6.51330795938335e-014,-0.98077917098999,0.19512078166008,6.51330795938335e-014,-0.98077917098999,0.195120766758919,-4.99763697092703e-009,-0.98077917098999,1.2121232018103e-008,-5.00530195068905e-009,-1,-1.06060777937955e-008,1.48029743675295e-015,-1,-1.06060777937955e-008,1.48029743675295e-015,-1,1.2121232018103e-008,-5.00530195068905e-009,-1,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.382661908864975,0,-0.923888444900513,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888444900513,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.70710301399231,2.45104638452176e-006,-0.707110643386841,-0.70710301399231,1.47062974065193e-006,-0.707110643386841,-0.70710301399231,1.47062974065193e-006,-0.707110643386841,-0.70710301399231,2.45104638452176e-006,-0.707110643386841,-0.831473827362061,2.94113556265074e-006,-0.555563926696777,-0.831473827362061,2.69607608061051e-006,-0.555563986301422,-0.831473827362061,2.69607608061051e-006,-0.555563986301422,-0.831473827362061,2.94113556265074e-006,-0.555563926696777,-0.923880040645599,-9.80512368187192e-007,-0.382682323455811,-0.923880040645599,2.44958016537566e-007,-0.382682293653488,-0.923880040645599,2.44958016537566e-007,-0.382682293653488,-0.923880040645599,-9.80512368187192e-007,-0.382682323455811,-0.980784177780151,-4.90226796046045e-007,-0.195095583796501,-0.980784177780151,-1.22556912174332e-006,-0.195095613598824,-0.980784177780151,-1.22556912174332e-006,-0.195095613598824,-0.980784177780151,-4.90226796046045e-007,-0.195095583796501,-1,0,-9.12113137019333e-007,-1,-6.76632305740554e-009,-9.12113137019333e-007,-1,-6.76632305740554e-009,-9.12113137019333e-007,-1,0,-9.12113137019333e-007,
- -0.980785667896271,0,0.195088908076286,-0.980785548686981,-3.38433459035059e-009,0.195088893175125,-0.980785548686981,-3.38433459035059e-009,0.195088893175125,-0.980785667896271,0,0.195088908076286,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.831473767757416,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.831473767757416,0,0.555564045906067,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.555571615695953,0,0.83146870136261,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.555571615695953,0,0.83146870136261,-0.382661640644073,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,-0.382661640644073,0,0.923888623714447,-0.195091158151627,0,0.980785071849823,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785071849823,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,0.19509169459343,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.382661908864975,0,0.923888504505157,0.382661908864975,0,0.923888504505157,0.382661908864975,0,0.923888504505157,0.382661908864975,0,0.923888504505157,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,
- 0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.980785489082336,0,0.195089802145958,0.980785489082336,0,0.195089802145958,0.980785489082336,0,0.195089802145958,0.980785489082336,0,0.195089802145958,1,0,0,1,0,0,1,0,0,1,0,0,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.923880338668823,-9.80329446065298e-007,-0.382681429386139,0.923880338668823,7.35245578198374e-007,-0.382681429386139,0.923880338668823,7.35245578198374e-007,-0.382681429386139,0.923880338668823,-9.80329446065298e-007,-0.382681429386139,0.831474304199219,-1.96067003344069e-006,-0.55556321144104,0.831474304199219,-9.8033683570975e-007,-0.55556321144104,0.831474304199219,-4.41192742073326e-006,-0.55556321144104,0.831474304199219,-9.80428467300953e-007,-0.55556321144104,0.707103490829468,0,-0.707110166549683,0.707103490829468,-9.80422100838041e-007,-0.707110166549683,0.707103490829468,-9.80422100838041e-007,-0.707110166549683,0.707103490829468,0,-0.707110166549683,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.382662266492844,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.19512078166008,6.51330795938335e-014,-0.98077917098999,0.195120766758919,0,-0.98077917098999,0.195120766758919,0,-0.98077917098999,0.19512078166008,6.51330795938335e-014,-0.98077917098999,-1.06060777937955e-008,1.48029743675295e-015,-1,0,0,-1,0,0,-1,-1.06060777937955e-008,1.48029743675295e-015,-1,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888504505157,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,
- -0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.70710301399231,1.47062974065193e-006,-0.707110643386841,-0.70710301399231,9.80419031293422e-007,-0.707110643386841,-0.70710301399231,9.80419031293422e-007,-0.707110643386841,-0.70710301399231,1.47062974065193e-006,-0.707110643386841,-0.831473827362061,2.69607608061051e-006,-0.555563986301422,-0.831473827362061,1.7157203728857e-006,-0.555563986301422,-0.831473827362061,1.7157203728857e-006,-0.555563986301422,-0.831473827362061,2.69607608061051e-006,-0.555563986301422,-0.923880040645599,2.44958016537566e-007,-0.382682293653488,-0.923880040645599,2.45051069214242e-007,-0.382682293653488,-0.923880040645599,2.45051069214242e-007,-0.382682293653488,-0.923880040645599,2.44958016537566e-007,-0.382682293653488,-0.980784177780151,-1.22556912174332e-006,-0.195095613598824,-0.97794246673584,-4.85695466068137e-007,-0.208874434232712,-0.97794246673584,-4.85695466068137e-007,-0.208874434232712,-0.980784177780151,-1.22556912174332e-006,-0.195095613598824,-1,-6.76632305740554e-009,-9.12113137019333e-007,-1,-2.8421709430404e-014,-9.12113080175914e-007,-0.995184898376465,1.74603062043366e-013,-0.0980153977870941,-1,-2.8421709430404e-014,-9.12113080175914e-007,-1,-6.76632305740554e-009,-9.12113137019333e-007,-0.980785548686981,-3.38433459035059e-009,0.195088893175125,-0.977944195270538,1.51059753594751e-009,0.20886655151844,-0.995185077190399,-9.1282591294789e-013,0.0980135947465897,-0.977944195270538,1.51059753594751e-009,0.20886655151844,-0.980785548686981,-3.38433459035059e-009,0.195088893175125,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.831473827362061,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,
- -0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.382661581039429,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785131454468,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,0.195091709494591,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.382661908864975,0,0.923888504505157,0.382661908864975,0,0.923888504505157,0.382661908864975,0,0.923888504505157,0.382661908864975,0,0.923888504505157,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.980785489082336,0,0.195089802145958,0.980785369873047,0,0.195089802145958,0.980785369873047,0,0.195089802145958,0.980785489082336,0,0.195089802145958,1,0,0,1,0,0,1,0,0,1,0,0,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.923880338668823,7.35245578198374e-007,-0.382681429386139,0.923880338668823,1.71557326211769e-006,-0.382681459188461,0.923880338668823,1.71557326211769e-006,-0.382681459188461,0.923880338668823,7.35245578198374e-007,-0.382681429386139,
- 0.831474304199219,-9.8033683570975e-007,-0.55556321144104,0.831474304199219,2.94099845632445e-006,-0.55556321144104,0.831474304199219,-6.86298426444409e-006,-0.55556321144104,0.831474304199219,-4.41192742073326e-006,-0.55556321144104,0.707103490829468,-9.80422100838041e-007,-0.707110166549683,0.707103490829468,-2.94126539301942e-006,-0.707110166549683,0.707103490829468,-2.94126539301942e-006,-0.707110166549683,0.707103490829468,-9.80422100838041e-007,-0.707110166549683,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.382662266492844,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.195120766758919,0,-0.98077917098999,0.19512078166008,0,-0.98077917098999,0.19512078166008,0,-0.98077917098999,0.195120766758919,0,-0.98077917098999,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888504505157,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.70710301399231,9.80419031293422e-007,-0.707110643386841,-0.70710301399231,2.45104672558227e-007,-0.707110643386841,-0.70710301399231,2.45104672558227e-007,-0.707110643386841,-0.70710301399231,9.80419031293422e-007,-0.707110643386841,-0.831473827362061,1.7157203728857e-006,-0.555563986301422,-0.831473827362061,1.22546225611586e-006,-0.555563926696777,-0.831473827362061,1.22546225611586e-006,-0.555563926696777,-0.831473827362061,1.7157203728857e-006,-0.555563986301422,-0.923880040645599,2.45051069214242e-007,-0.382682293653488,-0.923880040645599,-2.45174589963426e-007,-0.382682293653488,-0.923880040645599,-2.45174589963426e-007,-0.382682293653488,
- -0.923880040645599,2.45051069214242e-007,-0.382682293653488,-0.97794246673584,-4.85695466068137e-007,-0.208874434232712,-0.973854720592499,-4.88910472995485e-007,-0.227171897888184,-0.973854720592499,-4.88910472995485e-007,-0.227171897888184,-0.97794246673584,-4.85695466068137e-007,-0.208874434232712,-0.995184898376465,1.74603062043366e-013,-0.0980153977870941,-0.995185375213623,-0,-0.0980106815695763,-0.973856925964355,0,0.227162286639214,-0.977944195270538,1.51059753594751e-009,0.20886655151844,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.831473827362061,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.382661581039429,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785131454468,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,0.195091709494591,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.382661908864975,0,0.923888504505157,0.382661908864975,0,0.923888504505157,0.382661908864975,0,0.923888504505157,0.382661908864975,0,0.923888504505157,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,
- 0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.980785369873047,0,0.195089802145958,0.980785489082336,0,0.195089802145958,0.980785489082336,0,0.195089802145958,0.980785369873047,0,0.195089802145958,1,0,0,1,0,0,1,0,0,1,0,0,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.923880338668823,1.71557326211769e-006,-0.382681459188461,0.923880338668823,7.35246544536494e-007,-0.382681429386139,0.923880338668823,7.35246544536494e-007,-0.382681429386139,0.923880338668823,1.71557326211769e-006,-0.382681459188461,0.831474304199219,2.94099845632445e-006,-0.55556321144104,0.831474304199219,2.45083333538787e-006,-0.55556321144104,0.831474304199219,-3.43149076797999e-006,-0.55556321144104,0.831474304199219,-6.86298426444409e-006,-0.55556321144104,0.707103490829468,-2.94126539301942e-006,-0.707110166549683,0.707103490829468,-3.18636534757388e-006,-0.707110166549683,0.707103490829468,-3.18636534757388e-006,-0.707110166549683,0.707103490829468,-2.94126539301942e-006,-0.707110166549683,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.382662266492844,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.19512078166008,0,-0.98077917098999,0.195120766758919,0,-0.98077917098999,0.195120766758919,0,-0.98077917098999,0.19512078166008,0,-0.98077917098999,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,
- -0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888504505157,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.70710301399231,2.45104672558227e-007,-0.707110643386841,-0.70710301399231,4.90209458803292e-007,-0.707110643386841,-0.70710301399231,4.90209458803292e-007,-0.707110643386841,-0.70710301399231,2.45104672558227e-007,-0.707110643386841,-0.831473827362061,1.22546225611586e-006,-0.555563926696777,-0.831473827362061,9.8037924090022e-007,-0.555563986301422,-0.831473827362061,9.8037924090022e-007,-0.555563986301422,-0.831473827362061,1.22546225611586e-006,-0.555563926696777,-0.923880040645599,-2.45174589963426e-007,-0.382682293653488,-0.923880040645599,2.45020657985151e-007,-0.382682293653488,-0.923880040645599,2.45020657985151e-007,-0.382682293653488,-0.923880040645599,-2.45174589963426e-007,-0.382682293653488,-0.973854720592499,-4.88910472995485e-007,-0.227171897888184,-0.97794246673584,-8.79764797900862e-007,-0.208874419331551,-0.97794246673584,-8.79764797900862e-007,-0.208874419331551,-0.973854720592499,-4.88910472995485e-007,-0.227171897888184,-0.995185375213623,-0,-0.0980106815695763,-0.995184898376465,-8.57004842525627e-013,-0.0980153977870941,-0.977944135665894,3.90260002092191e-009,0.208866536617279,-0.973856925964355,0,0.227162286639214,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.831473827362061,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,
- -0.555571675300598,0,0.831468760967255,-0.382661581039429,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785131454468,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,0.195091709494591,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.382661908864975,0,0.923888504505157,0.382661908864975,0,0.923888504505157,0.382661908864975,0,0.923888504505157,0.382661908864975,0,0.923888504505157,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.980785489082336,0,0.195089802145958,0.980785489082336,0,0.195089802145958,0.980785489082336,0,0.195089802145958,0.980785489082336,0,0.195089802145958,1,0,0,1,0,0,1,0,0,1,0,0,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.923880338668823,7.35246544536494e-007,-0.382681429386139,0.923880338668823,4.90163927224785e-007,-0.382681429386139,0.923880338668823,4.90163927224785e-007,-0.382681429386139,0.923880338668823,7.35246544536494e-007,-0.382681429386139,0.831474304199219,2.45083333538787e-006,-0.55556321144104,0.831474304199219,1.47050047871744e-006,-0.55556321144104,
- 0.831474304199219,9.80423465080094e-007,-0.55556321144104,0.831474304199219,-3.43149076797999e-006,-0.55556321144104,0.707103490829468,-3.18636534757388e-006,-0.707110166549683,0.707103490829468,-4.90212300974235e-007,-0.707110166549683,0.707103490829468,-4.90212300974235e-007,-0.707110166549683,0.707103490829468,-3.18636534757388e-006,-0.707110166549683,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.382662266492844,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.195120766758919,0,-0.98077917098999,0.19512078166008,-6.57251962815457e-014,-0.98077917098999,0.19512078166008,-6.57251962815457e-014,-0.98077917098999,0.195120766758919,0,-0.98077917098999,0,0,-1,-1.06060777937955e-008,-1.48029743675295e-015,-1,-1.06060777937955e-008,-1.48029743675295e-015,-1,0,0,-1,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888504505157,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.70710301399231,4.90209458803292e-007,-0.707110643386841,-0.70710301399231,0,-0.707110643386841,-0.70710301399231,0,-0.707110643386841,-0.70710301399231,4.90209458803292e-007,-0.707110643386841,-0.831473827362061,9.8037924090022e-007,-0.555563986301422,-0.831473827362061,2.45106150487118e-007,-0.555563986301422,-0.831473827362061,2.45106150487118e-007,-0.555563986301422,-0.831473827362061,9.8037924090022e-007,-0.555563986301422,-0.923880040645599,2.45020657985151e-007,-0.382682293653488,-0.923880040645599,2.45081935190683e-007,-0.382682293653488,-0.923880040645599,2.45081935190683e-007,-0.382682293653488,
- -0.923880040645599,2.45020657985151e-007,-0.382682293653488,-0.97794246673584,-8.79764797900862e-007,-0.208874419331551,-0.980784237384796,-2.13479339095102e-007,-0.195095613598824,-0.980784237384796,-2.13479339095102e-007,-0.195095613598824,-0.97794246673584,-8.79764797900862e-007,-0.208874419331551,-0.995184898376465,-8.57004842525627e-013,-0.0980153977870941,-1,3.19744231092045e-014,-9.12113080175914e-007,-1,-6.76419809053641e-009,-9.12113137019333e-007,-1,-6.76419809053641e-009,-9.12113137019333e-007,-1,3.19744231092045e-014,-9.12113080175914e-007,-0.995185077190399,2.29872653030594e-013,0.0980135947465897,-0.977944135665894,3.90260002092191e-009,0.208866536617279,-0.980785667896271,3.07901897337801e-014,0.195088908076286,-0.980785667896271,3.07901897337801e-014,0.195088908076286,-0.977944135665894,3.90260002092191e-009,0.208866536617279,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.831473827362061,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.382661581039429,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785131454468,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,0.195091709494591,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.973855257034302,3.08966889406292e-007,0.227169141173363,0.99518483877182,-0,0.0980163663625717,
- 0.995184779167175,0,0.0980167537927628,0.977943301200867,3.09400974174423e-007,0.208870679140091,0.977943360805511,3.71284357925106e-007,0.208870679140091,0.99518483877182,-1.30469636300993e-016,0.0980167537927628,0.99518483877182,-0,0.0980163663625717,0.973855257034302,3.08966889406292e-007,0.227169141173363,-0.995185554027557,-0,0.0980088710784912,-0.995185077190399,-9.1282591294789e-013,0.0980135947465897,-0.977944195270538,1.51059753594751e-009,0.20886655151844,-0.973856925964355,0,0.227162286639214,-0.995185077190399,2.29872653030594e-013,0.0980135947465897,-0.995185554027557,-0,0.0980088710784912,-0.973856925964355,0,0.227162286639214,-0.977944135665894,3.90260002092191e-009,0.208866536617279,-7.22958048982036e-008,0,1,-0,0,1,-5.93913043189787e-008,0,1,-1.18782608637957e-007,0,1,6.55357084156094e-008,0,-1,0,0,-1,6.55357084156094e-008,0,-1,1.31071416831219e-007,-0,-1,0.0871834456920624,0.030852597206831,0.995714426040649,-0,0,1,-7.22958048982036e-008,0,1,0.0871826633810997,0.0308535844087601,0.995714545249939,0.0980490893125534,-3.43510420108828e-009,0.995181560516357,0.0980490893125534,-3.008263860238e-009,0.995181560516357,0.0980490893125534,0,0.995181560516357,0.0980490893125534,0,0.995181560516357,0.0980490893125534,0,0.995181560516357,0.0980490893125534,0,0.995181560516357,0.0980490893125534,0,0.995181560516357,0.0980490893125534,0,0.995181560516357,0.0871834605932236,0.030852597206831,-0.995714426040649,0,-0,-1,3.9726767653292e-008,-0,-1,0.0871827229857445,0.030853483825922,-0.995714426040649,0.0980491191148758,0,-0.995181560516357,0.0980491191148758,7.31482252547266e-009,-0.995181560516357,0.0980491116642952,4.90268270425531e-009,-0.995181560516357,0.0980491191148758,0,-0.995181560516357,0.0980491191148758,0,-0.995181560516357,0.0980491191148758,0,-0.995181560516357,0.0980491191148758,0,-0.995181560516357,0.0980491191148758,0,-0.995181560516357,-0.19509269297123,-0,0.980784833431244,-0.195093303918839,-0,0.980784595012665,-0.0980476513504982,-0,0.995181739330292,-0.0980768203735352,-0,0.995178937911987,
- -0.195121645927429,0,0.980778992176056,-0.19510792195797,0,0.980781853199005,-0.0980476513504982,-0,0.995181739330292,-0.0980767980217934,0,0.995178937911987,-0.412776321172714,0,0.910832405090332,-0.19510792195797,0,0.980781853199005,-0.195121645927429,0,0.980778992176056,-0.352140963077545,0,0.935947000980377,-0.582553386688232,0,0.812792420387268,-0.412776321172714,0,0.910832405090332,-0.352140963077545,0,0.935947000980377,-0.527985513210297,0,0.849253356456757,-0.729923784732819,0,0.683528542518616,-0.582553386688232,0,0.812792420387268,-0.527985513210297,0,0.849253356456757,-0.683519542217255,0,0.729932129383087,-0.849261343479156,0,0.527972757816315,-0.729923784732819,0,0.683528542518616,-0.683519542217255,0,0.729932129383087,-0.812797605991364,0,0.582546234130859,-0.935936510562897,-0,0.352168798446655,-0.849261343479156,0,0.527972757816315,-0.812797605991364,0,0.582546234130859,-0.910827457904816,0,0.412787288427353,-0.986658573150635,0,0.162803113460541,-0.935936510562897,-0,0.352168798446655,-0.910827457904816,0,0.412787288427353,-0.973854243755341,0,0.2271738499403,-0.995184779167175,-0,0.0980166718363762,-0.986658573150635,0,0.162803113460541,-0.973854243755341,0,0.2271738499403,-0.99518483877182,0,0.0980159640312195,0.973855316638947,-0,0.227169215679169,0.995184779167175,-0,0.0980166643857956,0.995184779167175,-0,0.0980166494846344,0.98665863275528,-0,0.162803053855896,0.910824835300446,-0,0.412793070077896,0.973855316638947,-0,0.227169215679169,0.98665863275528,-0,0.162803053855896,0.935938656330109,-0,0.352163016796112,0.812798619270325,-0,0.58254474401474,0.910824835300446,-0,0.412793070077896,0.935938656330109,-0,0.352163016796112,0.849254310131073,-0,0.527984023094177,0.683518648147583,-0,0.729933023452759,0.812798619270325,-0,0.58254474401474,0.849254310131073,-0,0.527984023094177,0.72993016242981,-0,0.683521687984467,0.527990877628326,-0,0.849250018596649,0.683518648147583,-0,0.729933023452759,0.72993016242981,-0,0.683521687984467,0.582551062107086,-0,0.812794148921967,0.352126181125641,-0,0.935952484607697,
- 0.527990877628326,-0,0.849250018596649,0.582551062107086,-0,0.812794148921967,0.412775129079819,-0,0.910832941532135,0.19509319961071,-0,0.98078465461731,0.352126181125641,-0,0.935952484607697,0.412775129079819,-0,0.910832941532135,0.195093184709549,-0,0.980784714221954,0.0981063321232796,-0,0.995175957679749,0.0980771481990814,-0,0.995178818702698,0.19509319961071,-0,0.98078465461731,0.195093184709549,-0,0.980784714221954,-0.412792801856995,-0,0.91082501411438,-0.195093303918839,-0,0.980784595012665,-0.19509269297123,-0,0.980784833431244,-0.352138936519623,-0,0.935947775840759,-0.582540333271027,-0,0.812801718711853,-0.412792801856995,-0,0.91082501411438,-0.352138936519623,-0,0.935947775840759,-0.527987778186798,-0,0.849251925945282,-0.729932129383087,-0,0.683519661426544,-0.582540333271027,-0,0.812801718711853,-0.527987778186798,-0,0.849251925945282,-0.683516979217529,-0,0.729934632778168,-0.849255442619324,-0,0.527982115745544,-0.729932129383087,-0,0.683519661426544,-0.683516979217529,-0,0.729934632778168,-0.812798976898193,-0,0.582544326782227,-0.93593817949295,-0,0.352164328098297,-0.849255442619324,-0,0.527982115745544,-0.812798976898193,-0,0.582544326782227,-0.910825312137604,-0,0.412792176008224,-0.986658573150635,-0,0.162802919745445,-0.93593817949295,-0,0.352164328098297,-0.910825312137604,-0,0.412792176008224,-0.973855376243591,-0,0.227168574929237,-0.99518495798111,-0,0.098015084862709,-0.986658573150635,-0,0.162802919745445,-0.973855376243591,-0,0.227168574929237,-0.99518495798111,-0,0.0980149284005165,-0.973853886127472,0,-0.227174922823906,-0.995184779167175,0,-0.0980166643857956,-0.995184779167175,0,-0.0980166494846344,-0.986657679080963,0,-0.162808805704117,-0.910828948020935,0,-0.412783861160278,-0.973853886127472,0,-0.227174922823906,-0.986657679080963,0,-0.162808805704117,-0.935940086841583,0,-0.352159172296524,-0.81279045343399,0,-0.582556307315826,-0.910828948020935,0,-0.412783861160278,-0.935940086841583,0,-0.352159172296524,-0.849252581596375,0,-0.527986705303192,-0.683529794216156,0,-0.729922592639923,
- -0.81279045343399,0,-0.582556307315826,-0.849252581596375,0,-0.527986705303192,-0.729931175708771,0,-0.683520615100861,-0.527975142002106,0,-0.849259853363037,-0.683529794216156,0,-0.729922592639923,-0.729931175708771,0,-0.683520615100861,-0.582549512386322,0,-0.812795281410217,-0.352144509553909,0,-0.935945630073547,-0.527975142002106,0,-0.849259853363037,-0.582549512386322,0,-0.812795281410217,-0.412775605916977,0,-0.910832762718201,-0.162834987044334,0,-0.98665326833725,-0.352144509553909,0,-0.935945630073547,-0.412775605916977,0,-0.910832762718201,-0.22718071937561,0,-0.973852574825287,-0.0980476513504982,0,-0.995181739330292,-0.162834987044334,0,-0.98665326833725,-0.22718071937561,0,-0.973852574825287,-0.098076730966568,0,-0.995178878307343,0.195092335343361,0,-0.980784833431244,0.0980768203735352,0,-0.995178937911987,0.0980476513504982,0,-0.995181739330292,0.195093169808388,0,-0.980784714221954,0.195121645927429,0,-0.980778992176056,0.0980767980217934,0,-0.995178937911987,0.0980476513504982,0,-0.995181739330292,0.19510792195797,0,-0.980781853199005,0.412776648998261,0,-0.910832285881042,0.352140963077545,0,-0.935947000980377,0.195121645927429,0,-0.980778992176056,0.19510792195797,0,-0.980781853199005,0.582553386688232,0,-0.812792420387268,0.527985870838165,0,-0.849253177642822,0.352140963077545,0,-0.935947000980377,0.412776648998261,0,-0.910832285881042,0.729923486709595,0,-0.68352884054184,0.683519244194031,0,-0.729932367801666,0.527985870838165,0,-0.849253177642822,0.582553386688232,0,-0.812792420387268,0.849261343479156,0,-0.527972757816315,0.812797605991364,0,-0.582546234130859,0.683519244194031,0,-0.729932367801666,0.729923486709595,0,-0.68352884054184,0.935936510562897,0,-0.352168798446655,0.910827457904816,0,-0.412787288427353,0.812797605991364,0,-0.582546234130859,0.849261343479156,0,-0.527972757816315,0.986658573150635,0,-0.162803113460541,0.973854243755341,0,-0.2271738499403,0.910827457904816,0,-0.412787288427353,0.935936510562897,0,-0.352168798446655,0.995184779167175,0,-0.0980166718363762,0.99518483877182,0,-0.0980159640312195,
- 0.973854243755341,0,-0.2271738499403,0.986658573150635,0,-0.162803113460541,-0.973855316638947,0,-0.227169215679169,-0.98665863275528,0,-0.162803053855896,-0.995184779167175,0,-0.0980166494846344,-0.995184779167175,0,-0.0980166643857956,-0.910824835300446,0,-0.412793070077896,-0.935938656330109,0,-0.352163016796112,-0.98665863275528,0,-0.162803053855896,-0.973855316638947,0,-0.227169215679169,-0.812798202037811,0,-0.582545459270477,-0.849254310131073,0,-0.527984023094177,-0.935938656330109,0,-0.352163016796112,-0.910824835300446,0,-0.412793070077896,-0.683518946170807,0,-0.72993278503418,-0.72992992401123,0,-0.683521926403046,-0.849254310131073,0,-0.527984023094177,-0.812798202037811,0,-0.582545459270477,-0.527990758419037,0,-0.849250078201294,-0.582551777362823,0,-0.812793731689453,-0.72992992401123,0,-0.683521926403046,-0.683518946170807,0,-0.72993278503418,-0.352126657962799,0,-0.935952425003052,-0.412774741649628,0,-0.910833060741425,-0.582551777362823,0,-0.812793731689453,-0.527990758419037,0,-0.849250078201294,-0.195093780755997,0,-0.98078453540802,-0.195093467831612,0,-0.980784714221954,-0.412774741649628,0,-0.910833060741425,-0.352126657962799,0,-0.935952425003052,-0.0981049463152885,0,-0.995176076889038,-0.195093467831612,0,-0.980784714221954,-0.195093780755997,0,-0.98078453540802,-0.0980764552950859,0,-0.995178878307343,0.412793040275574,0,-0.910824954509735,0.352138966321945,0,-0.935947775840759,0.195092335343361,0,-0.980784833431244,0.195093169808388,0,-0.980784714221954,0.582540333271027,0,-0.812801718711853,0.527988016605377,0,-0.849251806735992,0.352138966321945,0,-0.935947775840759,0.412793040275574,0,-0.910824954509735,0.729932129383087,0,-0.683519661426544,0.683516979217529,0,-0.729934632778168,0.527988016605377,0,-0.849251806735992,0.582540333271027,0,-0.812801718711853,0.849255442619324,0,-0.527982115745544,0.812798976898193,0,-0.582544326782227,0.683516979217529,0,-0.729934632778168,0.729932129383087,0,-0.683519661426544,0.93593817949295,0,-0.352164328098297,0.910825312137604,0,-0.412792176008224,
- 0.812798976898193,0,-0.582544326782227,0.849255442619324,0,-0.527982115745544,0.986658573150635,0,-0.162802919745445,0.973855376243591,0,-0.227168574929237,0.910825312137604,0,-0.412792176008224,0.93593817949295,0,-0.352164328098297,0.99518495798111,0,-0.098015084862709,0.99518495798111,0,-0.0980149284005165,0.973855376243591,0,-0.227168574929237,0.986658573150635,0,-0.162802919745445,0.973853886127472,0,0.227174922823906,0.986657679080963,0,0.162808805704117,0.995184779167175,0,0.0980166494846344,0.995184779167175,0,0.0980166643857956,0.910828948020935,0,0.412783861160278,0.935940086841583,0,0.352159172296524,0.986657679080963,0,0.162808805704117,0.973853886127472,0,0.227174922823906,0.81279045343399,0,0.582556307315826,0.849252581596375,0,0.527986705303192,0.935940086841583,0,0.352159172296524,0.910828948020935,0,0.412783861160278,0.683529794216156,0,0.729922592639923,0.729931175708771,0,0.683520615100861,0.849252581596375,0,0.527986705303192,0.81279045343399,0,0.582556307315826,0.527975380420685,0,0.849259793758392,0.582549631595612,0,0.812795102596283,0.729931175708771,0,0.683520615100861,0.683529794216156,0,0.729922592639923,0.352144300937653,0,0.935945749282837,0.412775576114655,0,0.910832762718201,0.582549631595612,0,0.812795102596283,0.527975380420685,0,0.849259793758392,0.162834987044334,0,0.98665326833725,0.227180451154709,0,0.973852574825287,0.412775576114655,0,0.910832762718201,0.352144300937653,0,0.935945749282837,0.0980476513504982,0,0.995181739330292,0.098076730966568,0,0.995178878307343,0.227180451154709,0,0.973852574825287,0.162834987044334,0,0.98665326833725,-0.0774112492799759,-0.996274888515472,-0.0380005054175854,-0.0273213144391775,-0.999450445175171,0.0187686029821634,-0.00746651599183679,-0.973319709300995,-0.229331538081169,-0.0830672234296799,-0.996086239814758,-0.0301989540457726,0.0623810105025768,-0.997965514659882,-0.0131658678874373,0.432781755924225,-0.900658369064331,0.0389153957366943,0.00843644980341196,-0.999789893627167,-0.0186788160353899,0.00201375735923648,-0.999739229679108,0.0227473396807909,
- -0.00240227673202753,-0.999981641769409,0.00556080834940076,0.00839202757924795,-0.998063385486603,-0.0616368427872658,0.00889263208955526,-0.999756693840027,0.0201885513961315,0.800159275531769,-0.593747556209564,0.0849053710699081,0.439450591802597,-0.672595322132111,-0.595397889614105,0.0655776336789131,-0.987970769405365,-0.140048012137413,-0.0411957465112209,-0.998991012573242,-0.0178826656192541,0.0567830093204975,-0.997581481933594,-0.0400876887142658,-0.210659340023994,-0.969941675662994,-0.121802724897861,-0.040359154343605,-0.999044239521027,-0.0167819503694773,-0.417811274528503,-0.908416628837585,0.0145963933318853,-0.0449887961149216,-0.942547798156738,0.331028044223785,0.00218375027179718,-0.999793887138367,0.0201856922358274,-0.0050844089128077,-0.999987065792084,-0.000165661054779775,-0.006590043194592,-0.998540639877319,-0.0536022000014782,0.0226080045104027,-0.998897731304169,0.0411357618868351,-0.530544459819794,-0.827864468097687,0.182107195258141,-0.0596518069505692,-0.99821674823761,-0.00219283299520612,-0.746703743934631,-0.658012568950653,0.097225733101368,0.119917921721935,-0.986782729625702,-0.108993262052536,-0.105327323079109,-0.97909939289093,0.173984333872795,-0.0709549933671951,-0.993637442588806,0.0874638855457306,0.303730487823486,-0.949690461158752,0.0763929262757301,0.333704233169556,-0.940209329128265,0.0681759566068649,0.0209346115589142,-0.999750673770905,-0.00776491686701775,0.045992698520422,-0.99892795085907,-0.00525574525818229,-0.0607710890471935,-0.998079419136047,-0.0120140668004751,-0.25392472743988,-0.96442973613739,-0.0734671354293823,-0.0764349773526192,-0.99707418680191,-0.000848925265017897,0.0472044199705124,-0.998411655426025,0.0307543948292732,0.0224507916718721,-0.999379634857178,0.0271380972117186,0.0165253356099129,-0.999838054180145,0.0071221636608243,0.0149334613233805,-0.999720215797424,0.0183451045304537,-0.0450831614434719,-0.995477497577667,-0.0836186632514,-0.0639638304710388,-0.996926128864288,0.0452441684901714,-0.0814500749111176,-0.995157122612,-0.0550267435610294,
- -0.161074444651604,-0.986382663249969,-0.033228974789381,0.0921666622161865,-0.99571692943573,0.00728281075134873,0.185080483555794,-0.969878077507019,0.158372417092323,-0.0639638304710388,-0.996926128864288,0.0452441684901714,-0.0450831614434719,-0.995477497577667,-0.0836186632514,0.460474133491516,-0.885861337184906,0.056684959679842,0.159793674945831,-0.965950489044189,-0.203484073281288,0.204968824982643,-0.975918173789978,-0.0746421813964844,-0.17564457654953,-0.984438359737396,-0.00546204717829823,0.0254650339484215,-0.999668121337891,0.00386528624221683,-0.0238566752523184,-0.999711930751801,-0.00265619694255292,0.469328343868256,-0.879389524459839,0.0800308734178543,0.00839202757924795,-0.998063385486603,-0.0616368427872658,0.0614043511450291,-0.997783124446869,-0.0256604459136724,0.00889263208955526,-0.999756693840027,0.0201885513961315,-0.417811274528503,-0.908416628837585,0.0145963933318853,-0.117228202521801,-0.973751783370972,0.195102661848068,-0.0763816013932228,-0.989677548408508,-0.121261075139046,-0.465126752853394,-0.882235288619995,0.0729244872927666,-0.270721644163132,-0.962320983409882,0.0254583712667227,-0.285955607891083,-0.958124935626984,0.0150311216711998,-0.177679017186165,-0.984080374240875,-0.00400550151243806,-0.0830672234296799,-0.996086239814758,-0.0301989540457726,0.0224507916718721,-0.999379634857178,0.0271380972117186,0.0160403586924076,-0.979169428348541,-0.202410295605659,-0.0574031621217728,-0.984882831573486,0.163433864712715,-0.0223908070474863,-0.999609589576721,0.0167166106402874,-0.0215159263461828,-0.999738991260529,0.00768801663070917,-0.00240227673202753,-0.999981641769409,0.00556080834940076,0.0629531145095825,-0.99605518579483,-0.0625383779406548,0.00839202757924795,-0.998063385486603,-0.0616368427872658,-0.459866404533386,-0.886543273925781,0.0506352633237839,-0.0534835495054722,-0.998501181602478,0.0116191059350967,-0.0574031621217728,-0.984882831573486,0.163433864712715,0.1003682538867,-0.988747715950012,0.11092446744442,0.275888234376907,-0.960723757743835,0.0299245994538069,
- 0.0149334613233805,-0.999720215797424,0.0183451045304537,0.842409729957581,-0.257700443267822,-0.473219066858292,0.388183146715164,-0.919499695301056,0.0619213096797466,0.600486993789673,-0.799239277839661,-0.0251369588077068,0.704570412635803,-0.653499007225037,-0.276621729135513,-0.109188817441463,-0.954861104488373,0.276257216930389,0.0130334096029401,-0.994925916194916,-0.0997618734836578,0.422137469053268,-0.899194061756134,0.115108616650105,0.138303235173225,-0.990328788757324,0.0110030993819237,0.269824743270874,-0.946158647537231,0.178824916481972,-0.0975001975893974,-0.981065452098846,-0.167344823479652,-0.0764349773526192,-0.99707418680191,-0.000848925265017897,-0.395149677991867,-0.908687174320221,0.134700939059258,0.0888714045286179,-0.996021151542664,0.00661177653819323,-0.189350977540016,-0.981351315975189,-0.033102985471487,-0.270721644163132,-0.962320983409882,0.0254583712667227,-0.465126752853394,-0.882235288619995,0.0729244872927666,0.303730487823486,-0.949690461158752,0.0763929262757301,0.422137469053268,-0.899194061756134,0.115108616650105,0.333704233169556,-0.940209329128265,0.0681759566068649,0.00889263208955526,-0.999756693840027,0.0201885513961315,0.0614043511450291,-0.997783124446869,-0.0256604459136724,0.232174143195152,-0.948319017887115,0.216301083564758,-0.0814500749111176,-0.995157122612,-0.0550267435610294,0.0921666622161865,-0.99571692943573,0.00728281075134873,-0.0774112492799759,-0.996274888515472,-0.0380005054175854,-0.285955607891083,-0.958124935626984,0.0150311216711998,-0.270721644163132,-0.962320983409882,0.0254583712667227,0.0226080045104027,-0.998897731304169,0.0411357618868351,-0.209029823541641,-0.975985050201416,-0.0613154768943787,0.448527663946152,-0.892703056335449,0.0436377860605717,0.11749879270792,-0.991733491420746,-0.0515620149672031,0.260198086500168,-0.958183348178864,0.119086258113384,-0.0215884000062943,-0.999446928501129,-0.0252959951758385,0.11749879270792,-0.991733491420746,-0.0515620149672031,-0.0811672881245613,-0.996521055698395,0.0189150720834732,-0.367200672626495,-0.929868936538696,-0.0225240048021078,
- -0.333698123693466,-0.848521411418915,0.410678595304489,0.0130334096029401,-0.994925916194916,-0.0997618734836578,0.0160403586924076,-0.979169428348541,-0.202410295605659,0.0614043511450291,-0.997783124446869,-0.0256604459136724,0.11749879270792,-0.991733491420746,-0.0515620149672031,-0.0215884000062943,-0.999446928501129,-0.0252959951758385,-0.209029823541641,-0.975985050201416,-0.0613154768943787,-0.0179521143436432,-0.999838829040527,9.35109565034509e-005,-0.0814500749111176,-0.995157122612,-0.0550267435610294,-0.0774112492799759,-0.996274888515472,-0.0380005054175854,-0.0830672234296799,-0.996086239814758,-0.0301989540457726,-0.177679017186165,-0.984080374240875,-0.00400550151243806,0.0224507916718721,-0.999379634857178,0.0271380972117186,-0.0830672234296799,-0.996086239814758,-0.0301989540457726,-0.00746651599183679,-0.973319709300995,-0.229331538081169,-0.0607710890471935,-0.998079419136047,-0.0120140668004751,-0.00746651599183679,-0.973319709300995,-0.229331538081169,-0.306339353322983,-0.795275688171387,-0.523156642913818,-0.139889076352119,-0.955540597438812,-0.259563446044922,-0.0350365191698074,-0.997908890247345,0.0543172806501389,0.0325162932276726,-0.981725573539734,-0.187503576278687,0.046950738877058,-0.998682379722595,0.0207160133868456,0.0499682389199734,-0.998717308044434,-0.00818902533501387,-0.302679121494293,-0.952732682228088,-0.0261882115155458,-0.218913316726685,-0.975558280944824,-0.01905314065516,-0.486271858215332,-0.873745203018188,-0.0104357907548547,-0.31602069735527,-0.947622656822205,-0.046283196657896,-0.623218238353729,-0.764329254627228,0.16552922129631,-0.11467769742012,-0.98904824256897,0.0929123610258102,-0.109188817441463,-0.954861104488373,0.276257216930389,-0.0574031621217728,-0.984882831573486,0.163433864712715,0.0130334096029401,-0.994925916194916,-0.0997618734836578,0.0224507916718721,-0.999379634857178,0.0271380972117186,-0.455154925584793,-0.890340030193329,-0.0113408779725432,-0.177679017186165,-0.984080374240875,-0.00400550151243806,0.426513701677322,-0.861889958381653,-0.274284183979034,
- -0.455154925584793,-0.890340030193329,-0.0113408779725432,0.11749879270792,-0.991733491420746,-0.0515620149672031,-0.0449887961149216,-0.942547798156738,0.331028044223785,-0.417811274528503,-0.908416628837585,0.0145963933318853,-0.288959592580795,-0.926464378833771,0.241176694631577,-0.395149677991867,-0.908687174320221,0.134700939059258,-0.486271858215332,-0.873745203018188,-0.0104357907548547,-0.218913316726685,-0.975558280944824,-0.01905314065516,0.426513701677322,-0.861889958381653,-0.274284183979034,0.448527663946152,-0.892703056335449,0.0436377860605717,0.265738308429718,-0.962186694145203,-0.0598317496478558,-0.302679121494293,-0.952732682228088,-0.0261882115155458,-0.168013989925385,-0.954255104064941,0.24732281267643,-0.0355767868459225,-0.999117016792297,-0.0223536975681782,-0.0411957465112209,-0.998991012573242,-0.0178826656192541,-0.302679121494293,-0.952732682228088,-0.0261882115155458,-0.486271858215332,-0.873745203018188,-0.0104357907548547,-0.465084344148636,-0.836721777915955,0.289125025272369,-0.168013989925385,-0.954255104064941,0.24732281267643,0.89497709274292,-0.376846969127655,0.238751739263535,0.0746194645762444,-0.50779527425766,-0.858240127563477,0.596952855587006,0.800457000732422,-0.0540007464587688,0.303730487823486,-0.949690461158752,0.0763929262757301,0.045992698520422,-0.99892795085907,-0.00525574525818229,-0.160017445683479,-0.978237271308899,0.132084637880325,0.303730487823486,-0.949690461158752,0.0763929262757301,-0.160017445683479,-0.978237271308899,0.132084637880325,0.422137469053268,-0.899194061756134,0.115108616650105,0.0226080045104027,-0.998897731304169,0.0411357618868351,-0.006590043194592,-0.998540639877319,-0.0536022000014782,-0.285955607891083,-0.958124935626984,0.0150311216711998,-0.0763816013932228,-0.989677548408508,-0.121261075139046,-0.117228202521801,-0.973751783370972,0.195102661848068,-0.0108707025647163,-0.999914288520813,-0.00730019342154264,-0.00240227673202753,-0.999981641769409,0.00556080834940076,-0.23436439037323,-0.919915497303009,-0.314370572566986,0.275888234376907,-0.960723757743835,0.0299245994538069,
- 0.1003682538867,-0.988747715950012,0.11092446744442,-0.184031575918198,-0.982550323009491,0.0269699729979038,0.275888234376907,-0.960723757743835,0.0299245994538069,-0.23436439037323,-0.919915497303009,-0.314370572566986,-0.661539733409882,0.712264955043793,0.234614297747612,-0.244830638170242,0.112266875803471,0.963044285774231,-0.0529822744429111,-0.983116209506989,0.175143957138062,0.0254650339484215,-0.999668121337891,0.00386528624221683,-0.17564457654953,-0.984438359737396,-0.00546204717829823,-0.0350365191698074,-0.997908890247345,0.0543172806501389,0.0499682389199734,-0.998717308044434,-0.00818902533501387,-0.288959592580795,-0.926464378833771,0.241176694631577,-0.417811274528503,-0.908416628837585,0.0145963933318853,-0.0763816013932228,-0.989677548408508,-0.121261075139046,-0.395149677991867,-0.908687174320221,0.134700939059258,-0.0763816013932228,-0.989677548408508,-0.121261075139046,-0.0975001975893974,-0.981065452098846,-0.167344823479652,-0.623218238353729,-0.764329254627228,0.16552922129631,-0.746703743934631,-0.658012568950653,0.097225733101368,-0.0596518069505692,-0.99821674823761,-0.00219283299520612,-0.11467769742012,-0.98904824256897,0.0929123610258102,-0.0596518069505692,-0.99821674823761,-0.00219283299520612,-0.00293096480891109,-0.99999213218689,-0.00265849567949772,-0.00195887684822083,-0.999949514865875,0.00985364057123661,0.00201375735923648,-0.999739229679108,0.0227473396807909,-0.11467769742012,-0.98904824256897,0.0929123610258102,0.600486993789673,-0.799239277839661,-0.0251369588077068,0.388183146715164,-0.919499695301056,0.0619213096797466,0.612155616283417,-0.78089702129364,-0.124359518289566,0.275888234376907,-0.960723757743835,0.0299245994538069,0.0258515644818544,-0.999536216259003,-0.0160934999585152,0.0149334613233805,-0.999720215797424,0.0183451045304537,-0.306339353322983,-0.795275688171387,-0.523156642913818,0.551174521446228,-0.833212852478027,0.0443044453859329,-0.678676664829254,-0.733973622322083,-0.0260904096066952,-0.491260468959808,-0.868418633937836,-0.0671732053160667,
- -0.131130561232567,-0.986773610115051,-0.0953032225370407,-0.678676664829254,-0.733973622322083,-0.0260904096066952,-0.441353410482407,-0.89237916469574,0.0941619873046875,-0.19711697101593,-0.980306029319763,-0.0120403738692403,0.0325162932276726,-0.981725573539734,-0.187503576278687,0.269824743270874,-0.946158647537231,0.178824916481972,0.333704233169556,-0.940209329128265,0.0681759566068649,0.422137469053268,-0.899194061756134,0.115108616650105,0.159793674945831,-0.965950489044189,-0.203484073281288,-0.161074444651604,-0.986382663249969,-0.033228974789381,-0.0814500749111176,-0.995157122612,-0.0550267435610294,-0.0233990028500557,-0.999645233154297,-0.0127270799130201,-0.00195887684822083,-0.999949514865875,0.00985364057123661,-0.00293096480891109,-0.99999213218689,-0.00265849567949772,-0.39040869474411,-0.915237128734589,-0.0996099263429642,-0.119882442057133,-0.991565346717834,-0.049256008118391,0.439450591802597,-0.672595322132111,-0.595397889614105,-0.66998416185379,-0.533721446990967,-0.516006290912628,-0.0273213144391775,-0.999450445175171,0.0187686029821634,0.551174521446228,-0.833212852478027,0.0443044453859329,-0.306339353322983,-0.795275688171387,-0.523156642913818,-0.00746651599183679,-0.973319709300995,-0.229331538081169,-0.0273213144391775,-0.999450445175171,0.0187686029821634,-0.306339353322983,-0.795275688171387,-0.523156642913818,-0.459866404533386,-0.886543273925781,0.0506352633237839,-0.0574031621217728,-0.984882831573486,0.163433864712715,-0.109188817441463,-0.954861104488373,0.276257216930389,-0.109188817441463,-0.954861104488373,0.276257216930389,0.842409729957581,-0.257700443267822,-0.473219066858292,0.600486993789673,-0.799239277839661,-0.0251369588077068,0.045992698520422,-0.99892795085907,-0.00525574525818229,0.108837731182575,-0.99022376537323,-0.0872422307729721,0.119917921721935,-0.986782729625702,-0.108993262052536,0.045992698520422,-0.99892795085907,-0.00525574525818229,0.119917921721935,-0.986782729625702,-0.108993262052536,0.0165253356099129,-0.999838054180145,0.0071221636608243,
- -0.109469324350357,-0.894692778587341,0.433060318231583,0.469328343868256,-0.879389524459839,0.0800308734178543,0.325664937496185,-0.93782913684845,-0.120078235864639,-0.0763816013932228,-0.989677548408508,-0.121261075139046,-0.395149677991867,-0.908687174320221,0.134700939059258,-0.288959592580795,-0.926464378833771,0.241176694631577,-0.395149677991867,-0.908687174320221,0.134700939059258,-0.0449887961149216,-0.942547798156738,0.331028044223785,-0.288959592580795,-0.926464378833771,0.241176694631577,-0.0596518069505692,-0.99821674823761,-0.00219283299520612,-0.530544459819794,-0.827864468097687,0.182107195258141,-0.00293096480891109,-0.99999213218689,-0.00265849567949772,-0.109188817441463,-0.954861104488373,0.276257216930389,0.600486993789673,-0.799239277839661,-0.0251369588077068,-0.459866404533386,-0.886543273925781,0.0506352633237839,-0.306339353322983,-0.795275688171387,-0.523156642913818,-0.678676664829254,-0.733973622322083,-0.0260904096066952,-0.131130561232567,-0.986773610115051,-0.0953032225370407,-0.712851583957672,-0.649534702301025,-0.26447531580925,-0.0763816013932228,-0.989677548408508,-0.121261075139046,0.00889263208955526,-0.999756693840027,0.0201885513961315,-0.0975001975893974,-0.981065452098846,-0.167344823479652,0.0209346115589142,-0.999750673770905,-0.00776491686701775,-0.359235614538193,-0.92815488576889,-0.0973559021949768,0.108837731182575,-0.99022376537323,-0.0872422307729721,0.045992698520422,-0.99892795085907,-0.00525574525818229,-0.0534835495054722,-0.998501181602478,0.0116191059350967,-0.0468772985041142,-0.998159348964691,0.0384772978723049,0.138303235173225,-0.990328788757324,0.0110030993819237,-0.0449887961149216,-0.942547798156738,0.331028044223785,-0.218913316726685,-0.975558280944824,-0.01905314065516,-0.040359154343605,-0.999044239521027,-0.0167819503694773,-0.0154329715296626,-0.999819695949554,0.0110559873282909,-0.218913316726685,-0.975558280944824,-0.01905314065516,-0.0449887961149216,-0.942547798156738,0.331028044223785,-0.395149677991867,-0.908687174320221,0.134700939059258,
- 0.0284293573349714,-0.999504923820496,-0.0134777119383216,-0.006590043194592,-0.998540639877319,-0.0536022000014782,-0.0050844089128077,-0.999987065792084,-0.000165661054779775,0.1003682538867,-0.988747715950012,0.11092446744442,-0.0709549933671951,-0.993637442588806,0.0874638855457306,-0.23436439037323,-0.919915497303009,-0.314370572566986,0.119917921721935,-0.986782729625702,-0.108993262052536,-0.0709549933671951,-0.993637442588806,0.0874638855457306,0.1003682538867,-0.988747715950012,0.11092446744442,0.0472044199705124,-0.998411655426025,0.0307543948292732,0.00889263208955526,-0.999756693840027,0.0201885513961315,0.232174143195152,-0.948319017887115,0.216301083564758,0.204968824982643,-0.975918173789978,-0.0746421813964844,0.164905816316605,-0.984933078289032,0.0520859062671661,0.460474133491516,-0.885861337184906,0.056684959679842,-0.0108707025647163,-0.999914288520813,-0.00730019342154264,0.0284293573349714,-0.999504923820496,-0.0134777119383216,-0.00240227673202753,-0.999981641769409,0.00556080834940076,0.0284293573349714,-0.999504923820496,-0.0134777119383216,0.0629531145095825,-0.99605518579483,-0.0625383779406548,-0.00240227673202753,-0.999981641769409,0.00556080834940076,-0.0450831614434719,-0.995477497577667,-0.0836186632514,-0.216981053352356,-0.97494500875473,-0.0490040592849255,-0.109469324350357,-0.894692778587341,0.433060318231583,0.325664937496185,-0.93782913684845,-0.120078235864639,0.325664937496185,-0.93782913684845,-0.120078235864639,0.185080483555794,-0.969878077507019,0.158372417092323,-0.0450831614434719,-0.995477497577667,-0.0836186632514,0.260198086500168,-0.958183348178864,0.119086258113384,0.0472044199705124,-0.998411655426025,0.0307543948292732,0.232174143195152,-0.948319017887115,0.216301083564758,0.0614043511450291,-0.997783124446869,-0.0256604459136724,-0.0215884000062943,-0.999446928501129,-0.0252959951758385,0.260198086500168,-0.958183348178864,0.119086258113384,0.232174143195152,-0.948319017887115,0.216301083564758,-0.417811274528503,-0.908416628837585,0.0145963933318853,-0.465126752853394,-0.882235288619995,0.0729244872927666,
- -0.117228202521801,-0.973751783370972,0.195102661848068,0.0648196488618851,-0.994837641716003,-0.0780797079205513,0.217097282409668,-0.973653793334961,-0.0697638019919395,0.0862536430358887,-0.987283110618591,-0.133537843823433,0.0956433415412903,-0.994737982749939,-0.0367238558828831,-0.0607710890471935,-0.998079419136047,-0.0120140668004751,-0.00746651599183679,-0.973319709300995,-0.229331538081169,-0.486271858215332,-0.873745203018188,-0.0104357907548547,-0.285955607891083,-0.958124935626984,0.0150311216711998,-0.0108707025647163,-0.999914288520813,-0.00730019342154264,-0.117228202521801,-0.973751783370972,0.195102661848068,-0.117228202521801,-0.973751783370972,0.195102661848068,-0.465126752853394,-0.882235288619995,0.0729244872927666,-0.285955607891083,-0.958124935626984,0.0150311216711998,0.704570412635803,-0.653499007225037,-0.276621729135513,0.00839202757924795,-0.998063385486603,-0.0616368427872658,0.0629531145095825,-0.99605518579483,-0.0625383779406548,-0.25392472743988,-0.96442973613739,-0.0734671354293823,-0.486271858215332,-0.873745203018188,-0.0104357907548547,-0.395149677991867,-0.908687174320221,0.134700939059258,-0.0607710890471935,-0.998079419136047,-0.0120140668004751,-0.486271858215332,-0.873745203018188,-0.0104357907548547,-0.25392472743988,-0.96442973613739,-0.0734671354293823,-0.367200672626495,-0.929868936538696,-0.0225240048021078,-0.817180693149567,-0.520425081253052,0.247736528515816,-0.333698123693466,-0.848521411418915,0.410678595304489,-0.817180693149567,-0.520425081253052,0.247736528515816,-0.0209037996828556,-0.994968235492706,0.0979863852262497,-0.394574046134949,-0.917239010334015,0.0546260997653008,0.469328343868256,-0.879389524459839,0.0800308734178543,0.00773159740492702,-0.999617278575897,0.0265596564859152,0.325664937496185,-0.93782913684845,-0.120078235864639,0.0300347171723843,-0.999103784561157,-0.0298263486474752,0.557448208332062,-0.830185294151306,0.00662571284919977,-0.0367410108447075,-0.996890366077423,0.0697113573551178,-0.367200672626495,-0.929868936538696,-0.0225240048021078,
- -0.0209037996828556,-0.994968235492706,0.0979863852262497,-0.817180693149567,-0.520425081253052,0.247736528515816,0.0130334096029401,-0.994925916194916,-0.0997618734836578,0.0614043511450291,-0.997783124446869,-0.0256604459136724,0.00839202757924795,-0.998063385486603,-0.0616368427872658,0.704570412635803,-0.653499007225037,-0.276621729135513,0.0130334096029401,-0.994925916194916,-0.0997618734836578,0.00839202757924795,-0.998063385486603,-0.0616368427872658,-0.455154925584793,-0.890340030193329,-0.0113408779725432,0.426513701677322,-0.861889958381653,-0.274284183979034,-0.177679017186165,-0.984080374240875,-0.00400550151243806,-0.177679017186165,-0.984080374240875,-0.00400550151243806,0.426513701677322,-0.861889958381653,-0.274284183979034,-0.0179521143436432,-0.999838829040527,9.35109565034509e-005,-0.0223908070474863,-0.999609589576721,0.0167166106402874,0.0386313609778881,-0.995861649513245,-0.082262821495533,-0.00107113400008529,-0.994927763938904,0.100586444139481,0.0386313609778881,-0.995861649513245,-0.082262821495533,0.185080483555794,-0.969878077507019,0.158372417092323,-0.00107113400008529,-0.994927763938904,0.100586444139481,-0.459866404533386,-0.886543273925781,0.0506352633237839,0.600486993789673,-0.799239277839661,-0.0251369588077068,0.0430343113839626,-0.995231866836548,0.087531566619873,-0.333698123693466,-0.848521411418915,0.410678595304489,-0.0671425014734268,-0.635847866535187,0.768888413906097,-0.0811672881245613,-0.996521055698395,0.0189150720834732,0.0244651287794113,-0.998789250850677,0.0426771342754364,0.793989598751068,-0.489062190055847,0.361107528209686,0.800159275531769,-0.593747556209564,0.0849053710699081,0.159793674945831,-0.965950489044189,-0.203484073281288,-0.0814500749111176,-0.995157122612,-0.0550267435610294,-0.0179521143436432,-0.999838829040527,9.35109565034509e-005,0.159793674945831,-0.965950489044189,-0.203484073281288,-0.0179521143436432,-0.999838829040527,9.35109565034509e-005,0.204968824982643,-0.975918173789978,-0.0746421813964844,0.448527663946152,-0.892703056335449,0.0436377860605717,
- 0.426513701677322,-0.861889958381653,-0.274284183979034,0.11749879270792,-0.991733491420746,-0.0515620149672031,0.793989598751068,-0.489062190055847,0.361107528209686,0.0244651287794113,-0.998789250850677,0.0426771342754364,0.454038679599762,-0.88808000087738,0.071851409971714,-0.0215884000062943,-0.999446928501129,-0.0252959951758385,0.0614043511450291,-0.997783124446869,-0.0256604459136724,0.0160403586924076,-0.979169428348541,-0.202410295605659,-0.119882442057133,-0.991565346717834,-0.049256008118391,-0.66998416185379,-0.533721446990967,-0.516006290912628,-0.0555822588503361,-0.991349160671234,-0.118901252746582,-0.0764349773526192,-0.99707418680191,-0.000848925265017897,-0.25392472743988,-0.96442973613739,-0.0734671354293823,-0.395149677991867,-0.908687174320221,0.134700939059258,-0.006590043194592,-0.998540639877319,-0.0536022000014782,0.0284293573349714,-0.999504923820496,-0.0134777119383216,-0.0108707025647163,-0.999914288520813,-0.00730019342154264,-0.285955607891083,-0.958124935626984,0.0150311216711998,-0.006590043194592,-0.998540639877319,-0.0536022000014782,-0.0108707025647163,-0.999914288520813,-0.00730019342154264,0.426513701677322,-0.861889958381653,-0.274284183979034,0.204968824982643,-0.975918173789978,-0.0746421813964844,-0.0179521143436432,-0.999838829040527,9.35109565034509e-005,-0.66998416185379,-0.533721446990967,-0.516006290912628,-0.817180693149567,-0.520425081253052,0.247736528515816,-0.394574046134949,-0.917239010334015,0.0546260997653008,-0.66998416185379,-0.533721446990967,-0.516006290912628,-0.394574046134949,-0.917239010334015,0.0546260997653008,-0.0555822588503361,-0.991349160671234,-0.118901252746582,-0.17564457654953,-0.984438359737396,-0.00546204717829823,0.58513867855072,-0.692364931106567,0.422188878059387,-0.0350365191698074,-0.997908890247345,0.0543172806501389,0.11749879270792,-0.991733491420746,-0.0515620149672031,-0.455154925584793,-0.890340030193329,-0.0113408779725432,0.260198086500168,-0.958183348178864,0.119086258113384,-0.209029823541641,-0.975985050201416,-0.0613154768943787,
- -0.0215884000062943,-0.999446928501129,-0.0252959951758385,0.0160403586924076,-0.979169428348541,-0.202410295605659,0.469328343868256,-0.879389524459839,0.0800308734178543,-0.0238566752523184,-0.999711930751801,-0.00265619694255292,-0.0215159263461828,-0.999738991260529,0.00768801663070917,0.00773159740492702,-0.999617278575897,0.0265596564859152,-0.17564457654953,-0.984438359737396,-0.00546204717829823,0.0395224541425705,-0.995657622814178,-0.0842851772904396,0.58513867855072,-0.692364931106567,0.422188878059387,-0.31602069735527,-0.947622656822205,-0.046283196657896,0.00843644980341196,-0.999789893627167,-0.0186788160353899,0.0258515644818544,-0.999536216259003,-0.0160934999585152,0.275888234376907,-0.960723757743835,0.0299245994538069,-0.184031575918198,-0.982550323009491,0.0269699729979038,-0.184031575918198,-0.982550323009491,0.0269699729979038,-0.23436439037323,-0.919915497303009,-0.314370572566986,-0.623218238353729,-0.764329254627228,0.16552922129631,-0.31602069735527,-0.947622656822205,-0.046283196657896,-0.0635073035955429,-0.994982302188873,-0.0773110091686249,0.0156150031834841,-0.998734354972839,0.0478103347122669,0.108837731182575,-0.99022376537323,-0.0872422307729721,-0.359235614538193,-0.92815488576889,-0.0973559021949768,-0.105327323079109,-0.97909939289093,0.173984333872795,0.119917921721935,-0.986782729625702,-0.108993262052536,0.108837731182575,-0.99022376537323,-0.0872422307729721,0.0156150031834841,-0.998734354972839,0.0478103347122669,-0.160017445683479,-0.978237271308899,0.132084637880325,0.045992698520422,-0.99892795085907,-0.00525574525818229,-0.0639638304710388,-0.996926128864288,0.0452441684901714,0.185080483555794,-0.969878077507019,0.158372417092323,-0.160017445683479,-0.978237271308899,0.132084637880325,-0.0639638304710388,-0.996926128864288,0.0452441684901714,0.0386313609778881,-0.995861649513245,-0.082262821495533,0.138303235173225,-0.990328788757324,0.0110030993819237,0.422137469053268,-0.899194061756134,0.115108616650105,0.0430343113839626,-0.995231866836548,0.087531566619873,-0.0468772985041142,-0.998159348964691,0.0384772978723049,
- -0.0534835495054722,-0.998501181602478,0.0116191059350967,-0.459866404533386,-0.886543273925781,0.0506352633237839,0.600486993789673,-0.799239277839661,-0.0251369588077068,0.581435203552246,-0.812279045581818,0.0462152510881424,0.0430343113839626,-0.995231866836548,0.087531566619873,0.612155616283417,-0.78089702129364,-0.124359518289566,0.581435203552246,-0.812279045581818,0.0462152510881424,0.600486993789673,-0.799239277839661,-0.0251369588077068,0.656859815120697,-0.747422873973846,0.0994694977998734,-0.0367410108447075,-0.996890366077423,0.0697113573551178,-0.00195887684822083,-0.999949514865875,0.00985364057123661,-0.0233990028500557,-0.999645233154297,-0.0127270799130201,0.0300347171723843,-0.999103784561157,-0.0298263486474752,-0.0367410108447075,-0.996890366077423,0.0697113573551178,0.656859815120697,-0.747422873973846,0.0994694977998734,0.0300347171723843,-0.999103784561157,-0.0298263486474752,0.656859815120697,-0.747422873973846,0.0994694977998734,-0.441353410482407,-0.89237916469574,0.0941619873046875,-0.441353410482407,-0.89237916469574,0.0941619873046875,0.0325162932276726,-0.981725573539734,-0.187503576278687,0.0300347171723843,-0.999103784561157,-0.0298263486474752,-0.0306104552000761,-0.998970568180084,-0.0334768928587437,0.000775858119595796,-0.999994277954102,-0.00330899562686682,0.644972741603851,-0.752233803272247,0.134738504886627,0.0144139099866152,-0.995999157428741,0.0881932973861694,-0.119882442057133,-0.991565346717834,-0.049256008118391,0.120128326117992,-0.99259889125824,-0.0177937112748623,0.439450591802597,-0.672595322132111,-0.595397889614105,0.0655776336789131,-0.987970769405365,-0.140048012137413,0.439450591802597,-0.672595322132111,-0.595397889614105,0.120128326117992,-0.99259889125824,-0.0177937112748623,0.0309927426278591,-0.999511539936066,-0.00401421077549458,0.0244651287794113,-0.998789250850677,0.0426771342754364,0.800159275531769,-0.593747556209564,0.0849053710699081,0.800159275531769,-0.593747556209564,0.0849053710699081,0.0655776336789131,-0.987970769405365,-0.140048012137413,
- 0.0309927426278591,-0.999511539936066,-0.00401421077549458,0.704570412635803,-0.653499007225037,-0.276621729135513,0.842409729957581,-0.257700443267822,-0.473219066858292,-0.109188817441463,-0.954861104488373,0.276257216930389,0.704570412635803,-0.653499007225037,-0.276621729135513,0.388183146715164,-0.919499695301056,0.0619213096797466,0.842409729957581,-0.257700443267822,-0.473219066858292,0.0284293573349714,-0.999504923820496,-0.0134777119383216,0.388183146715164,-0.919499695301056,0.0619213096797466,0.0629531145095825,-0.99605518579483,-0.0625383779406548,0.422137469053268,-0.899194061756134,0.115108616650105,-0.160017445683479,-0.978237271308899,0.132084637880325,0.185080483555794,-0.969878077507019,0.158372417092323,0.0386313609778881,-0.995861649513245,-0.082262821495533,0.422137469053268,-0.899194061756134,0.115108616650105,0.185080483555794,-0.969878077507019,0.158372417092323,-0.0534835495054722,-0.998501181602478,0.0116191059350967,0.0386313609778881,-0.995861649513245,-0.082262821495533,-0.0223908070474863,-0.999609589576721,0.0167166106402874,-0.0574031621217728,-0.984882831573486,0.163433864712715,-0.0534835495054722,-0.998501181602478,0.0116191059350967,-0.0223908070474863,-0.999609589576721,0.0167166106402874,-0.465084344148636,-0.836721777915955,0.289125025272369,-0.00746651599183679,-0.973319709300995,-0.229331538081169,-0.139889076352119,-0.955540597438812,-0.259563446044922,-0.168013989925385,-0.954255104064941,0.24732281267643,-0.465084344148636,-0.836721777915955,0.289125025272369,-0.139889076352119,-0.955540597438812,-0.259563446044922,-0.760963022708893,-0.648337662220001,-0.024361489340663,-0.0355767868459225,-0.999117016792297,-0.0223536975681782,-0.0306104552000761,-0.998970568180084,-0.0334768928587437,0.0144139099866152,-0.995999157428741,0.0881932973861694,0.11351539939642,-0.929485559463501,-0.350956827402115,0.0395224541425705,-0.995657622814178,-0.0842851772904396,-0.109469324350357,-0.894692778587341,0.433060318231583,-0.216981053352356,-0.97494500875473,-0.0490040592849255,-0.17564457654953,-0.984438359737396,-0.00546204717829823,
- -0.109469324350357,-0.894692778587341,0.433060318231583,0.0395224541425705,-0.995657622814178,-0.0842851772904396,-0.17564457654953,-0.984438359737396,-0.00546204717829823,0.469328343868256,-0.879389524459839,0.0800308734178543,-0.109469324350357,-0.894692778587341,0.433060318231583,-0.19711697101593,-0.980306029319763,-0.0120403738692403,0.164905816316605,-0.984933078289032,0.0520859062671661,0.046950738877058,-0.998682379722595,0.0207160133868456,0.0325162932276726,-0.981725573539734,-0.187503576278687,-0.11467769742012,-0.98904824256897,0.0929123610258102,0.00201375735923648,-0.999739229679108,0.0227473396807909,0.00843644980341196,-0.999789893627167,-0.0186788160353899,-0.31602069735527,-0.947622656822205,-0.046283196657896,-0.0367410108447075,-0.996890366077423,0.0697113573551178,0.0623810105025768,-0.997965514659882,-0.0131658678874373,0.00201375735923648,-0.999739229679108,0.0227473396807909,-0.00195887684822083,-0.999949514865875,0.00985364057123661,0.1003682538867,-0.988747715950012,0.11092446744442,0.0149334613233805,-0.999720215797424,0.0183451045304537,0.0165253356099129,-0.999838054180145,0.0071221636608243,0.119917921721935,-0.986782729625702,-0.108993262052536,0.0258515644818544,-0.999536216259003,-0.0160934999585152,-0.216981053352356,-0.97494500875473,-0.0490040592849255,-0.0450831614434719,-0.995477497577667,-0.0836186632514,0.0149334613233805,-0.999720215797424,0.0183451045304537,0.045992698520422,-0.99892795085907,-0.00525574525818229,0.0165253356099129,-0.999838054180145,0.0071221636608243,-0.0639638304710388,-0.996926128864288,0.0452441684901714,0.00843644980341196,-0.999789893627167,-0.0186788160353899,0.432781755924225,-0.900658369064331,0.0389153957366943,-0.216981053352356,-0.97494500875473,-0.0490040592849255,0.0258515644818544,-0.999536216259003,-0.0160934999585152,0.448527663946152,-0.892703056335449,0.0436377860605717,-0.209029823541641,-0.975985050201416,-0.0613154768943787,-0.0238566752523184,-0.999711930751801,-0.00265619694255292,0.0254650339484215,-0.999668121337891,0.00386528624221683,
- 0.0499682389199734,-0.998717308044434,-0.00818902533501387,0.046950738877058,-0.998682379722595,0.0207160133868456,0.204968824982643,-0.975918173789978,-0.0746421813964844,0.265738308429718,-0.962186694145203,-0.0598317496478558,0.448527663946152,-0.892703056335449,0.0436377860605717,0.0254650339484215,-0.999668121337891,0.00386528624221683,0.0499682389199734,-0.998717308044434,-0.00818902533501387,0.265738308429718,-0.962186694145203,-0.0598317496478558,-0.0215159263461828,-0.999738991260529,0.00768801663070917,-0.0238566752523184,-0.999711930751801,-0.00265619694255292,-0.209029823541641,-0.975985050201416,-0.0613154768943787,0.0160403586924076,-0.979169428348541,-0.202410295605659,0.046950738877058,-0.998682379722595,0.0207160133868456,0.164905816316605,-0.984933078289032,0.0520859062671661,0.204968824982643,-0.975918173789978,-0.0746421813964844,-0.00240227673202753,-0.999981641769409,0.00556080834940076,0.00889263208955526,-0.999756693840027,0.0201885513961315,-0.0763816013932228,-0.989677548408508,-0.121261075139046,-0.0454317443072796,-0.998810112476349,-0.0177294798195362,0.612155616283417,-0.78089702129364,-0.124359518289566,0.388183146715164,-0.919499695301056,0.0619213096797466,-0.455154925584793,-0.890340030193329,-0.0113408779725432,0.0224507916718721,-0.999379634857178,0.0271380972117186,0.0472044199705124,-0.998411655426025,0.0307543948292732,0.260198086500168,-0.958183348178864,0.119086258113384,-0.0774112492799759,-0.996274888515472,-0.0380005054175854,0.0921666622161865,-0.99571692943573,0.00728281075134873,0.551174521446228,-0.833212852478027,0.0443044453859329,-0.0273213144391775,-0.999450445175171,0.0187686029821634,0.0472044199705124,-0.998411655426025,0.0307543948292732,-0.0764349773526192,-0.99707418680191,-0.000848925265017897,-0.0975001975893974,-0.981065452098846,-0.167344823479652,0.00889263208955526,-0.999756693840027,0.0201885513961315,-0.218913316726685,-0.975558280944824,-0.01905314065516,-0.302679121494293,-0.952732682228088,-0.0261882115155458,-0.0411957465112209,-0.998991012573242,-0.0178826656192541,
- -0.040359154343605,-0.999044239521027,-0.0167819503694773,-0.0209037996828556,-0.994968235492706,0.0979863852262497,-0.0555822588503361,-0.991349160671234,-0.118901252746582,-0.394574046134949,-0.917239010334015,0.0546260997653008,-0.0144096817821264,-0.999883949756622,-0.00493774004280567,-0.34309458732605,-0.939173698425293,-0.0154552692547441,-0.147372648119926,-0.985971748828888,0.0783655568957329,-0.0331541635096073,-0.997119963169098,0.06820959597826,-0.0534019358456135,-0.998527526855469,-0.00953921023756266,-0.0411957465112209,-0.998991012573242,-0.0178826656192541,-0.0355767868459225,-0.999117016792297,-0.0223536975681782,0.11351539939642,-0.929485559463501,-0.350956827402115,0.0567830093204975,-0.997581481933594,-0.0400876887142658,-0.040359154343605,-0.999044239521027,-0.0167819503694773,-0.210659340023994,-0.969941675662994,-0.121802724897861,-0.0676651746034622,-0.989709317684174,-0.126082599163055,-0.0154329715296626,-0.999819695949554,0.0110559873282909,0.00218375027179718,-0.999793887138367,0.0201856922358274,0.0888714045286179,-0.996021151542664,0.00661177653819323,-0.465126752853394,-0.882235288619995,0.0729244872927666,-0.417811274528503,-0.908416628837585,0.0145963933318853,-0.131130561232567,-0.986773610115051,-0.0953032225370407,-0.491260468959808,-0.868418633937836,-0.0671732053160667,0.000775858119595796,-0.999994277954102,-0.00330899562686682,-0.0306104552000761,-0.998970568180084,-0.0334768928587437,-0.760963022708893,-0.648337662220001,-0.024361489340663,-0.712851583957672,-0.649534702301025,-0.26447531580925,-0.131130561232567,-0.986773610115051,-0.0953032225370407,-0.168013989925385,-0.954255104064941,0.24732281267643,-0.00107113400008529,-0.994927763938904,0.100586444139481,0.00773159740492702,-0.999617278575897,0.0265596564859152,-0.0215159263461828,-0.999738991260529,0.00768801663070917,-0.0223908070474863,-0.999609589576721,0.0167166106402874,0.0430343113839626,-0.995231866836548,0.087531566619873,0.581435203552246,-0.812279045581818,0.0462152510881424,-0.0468772985041142,-0.998159348964691,0.0384772978723049,
- -0.0454317443072796,-0.998810112476349,-0.0177294798195362,0.388183146715164,-0.919499695301056,0.0619213096797466,0.0284293573349714,-0.999504923820496,-0.0134777119383216,-0.0050844089128077,-0.999987065792084,-0.000165661054779775,-0.00293096480891109,-0.99999213218689,-0.00265849567949772,0.0290006399154663,-0.997198700904846,-0.0689469799399376,-0.39040869474411,-0.915237128734589,-0.0996099263429642,0.0629531145095825,-0.99605518579483,-0.0625383779406548,0.388183146715164,-0.919499695301056,0.0619213096797466,0.704570412635803,-0.653499007225037,-0.276621729135513,0.00773159740492702,-0.999617278575897,0.0265596564859152,0.185080483555794,-0.969878077507019,0.158372417092323,0.325664937496185,-0.93782913684845,-0.120078235864639,0.0300347171723843,-0.999103784561157,-0.0298263486474752,0.0325162932276726,-0.981725573539734,-0.187503576278687,-0.0350365191698074,-0.997908890247345,0.0543172806501389,0.557448208332062,-0.830185294151306,0.00662571284919977,-0.0100126303732395,-0.999948799610138,-0.00142517848871648,-0.0154329715296626,-0.999819695949554,0.0110559873282909,-0.0676651746034622,-0.989709317684174,-0.126082599163055,-0.021418958902359,-0.993611991405487,0.110798813402653,-0.305452406406403,-0.856569051742554,0.415918588638306,-0.136378422379494,-0.93858015537262,0.316967338323593,-0.34309458732605,-0.939173698425293,-0.0154552692547441,-0.021418958902359,-0.993611991405487,0.110798813402653,-0.244527131319046,-0.969621181488037,-0.00642693089321256,-0.108831264078617,-0.992672562599182,0.0525063090026379,-0.716938078403473,-0.680054247379303,-0.153381913900375,-0.104095794260502,-0.992451906204224,-0.0648316293954849,-0.0136342020705342,-0.99766618013382,0.0669048130512238,-0.136378422379494,-0.93858015537262,0.316967338323593,0.0862536430358887,-0.987283110618591,-0.133537843823433,0.0217316560447216,-0.994622945785522,-0.101256132125854,-0.305452406406403,-0.856569051742554,0.415918588638306,-0.123237505555153,-0.879709541797638,-0.45926421880722,0.0956433415412903,-0.994737982749939,-0.0367238558828831,
- -0.210659340023994,-0.969941675662994,-0.121802724897861,0.0567830093204975,-0.997581481933594,-0.0400876887142658,-0.364302128553391,-0.793609619140625,-0.487306714057922,-0.123237505555153,-0.879709541797638,-0.45926421880722,0.0144139099866152,-0.995999157428741,0.0881932973861694,0.644972741603851,-0.752233803272247,0.134738504886627,-0.108831264078617,-0.992672562599182,0.0525063090026379,-0.244527131319046,-0.969621181488037,-0.00642693089321256,0.0760049596428871,-0.996471166610718,-0.0356158576905727,0.0144139099866152,-0.995999157428741,0.0881932973861694,-0.244527131319046,-0.969621181488037,-0.00642693089321256,-0.136378422379494,-0.93858015537262,0.316967338323593,-0.147372648119926,-0.985971748828888,0.0783655568957329,-0.34309458732605,-0.939173698425293,-0.0154552692547441,-0.364302128553391,-0.793609619140625,-0.487306714057922,0.11351539939642,-0.929485559463501,-0.350956827402115,0.407328933477402,-0.41330423951149,-0.814409554004669,-0.0676651746034622,-0.989709317684174,-0.126082599163055,-0.210659340023994,-0.969941675662994,-0.121802724897861,-0.123237505555153,-0.879709541797638,-0.45926421880722,-0.305452406406403,-0.856569051742554,0.415918588638306,-0.360722362995148,-0.932455837726593,0.0201345179229975,-0.0676651746034622,-0.989709317684174,-0.126082599163055,-0.123237505555153,-0.879709541797638,-0.45926421880722,-0.021418958902359,-0.993611991405487,0.110798813402653,-0.34309458732605,-0.939173698425293,-0.0154552692547441,-0.0144096817821264,-0.999883949756622,-0.00493774004280567,-0.0100126303732395,-0.999948799610138,-0.00142517848871648,0.0956433415412903,-0.994737982749939,-0.0367238558828831,0.0862536430358887,-0.987283110618591,-0.133537843823433,-0.136378422379494,-0.93858015537262,0.316967338323593,-0.305452406406403,-0.856569051742554,0.415918588638306,-0.0373311713337898,-0.999300062656403,0.00243052747100592,-0.0417863391339779,-0.99823135137558,-0.0422852486371994,0.454038679599762,-0.88808000087738,0.071851409971714,0.0244651287794113,-0.998789250850677,0.0426771342754364,
- 0.0591666176915169,-0.997751414775848,-0.0314879938960075,0.035772081464529,-0.998839616775513,-0.0322447866201401,-0.367200672626495,-0.929868936538696,-0.0225240048021078,-0.0811672881245613,-0.996521055698395,0.0189150720834732,0.00564243923872709,-0.999864518642426,0.0154696749523282,0.000986043130978942,-0.999993443489075,-0.00349192903377116,-0.119882442057133,-0.991565346717834,-0.049256008118391,-0.0555822588503361,-0.991349160671234,-0.118901252746582,0.0090413186699152,-0.999763607978821,-0.0197743028402328,0.00564243923872709,-0.999864518642426,0.0154696749523282,-0.0555822588503361,-0.991349160671234,-0.118901252746582,-0.0209037996828556,-0.994968235492706,0.0979863852262497,-0.168013989925385,-0.954255104064941,0.24732281267643,-0.131130561232567,-0.986773610115051,-0.0953032225370407,-0.0306104552000761,-0.998970568180084,-0.0334768928587437,-0.0355767868459225,-0.999117016792297,-0.0223536975681782,0.0760049596428871,-0.996471166610718,-0.0356158576905727,-0.244527131319046,-0.969621181488037,-0.00642693089321256,-0.104095794260502,-0.992451906204224,-0.0648316293954849,-0.0359237305819988,-0.999338746070862,-0.00559642165899277,-0.0373311713337898,-0.999300062656403,0.00243052747100592,0.0244651287794113,-0.998789250850677,0.0426771342754364,0.0309927426278591,-0.999511539936066,-0.00401421077549458,0.0655776336789131,-0.987970769405365,-0.140048012137413,-0.0457383133471012,-0.998904585838318,-0.00988125521689653,-0.0359237305819988,-0.999338746070862,-0.00559642165899277,0.0655776336789131,-0.987970769405365,-0.140048012137413,0.120128326117992,-0.99259889125824,-0.0177937112748623,-0.410040557384491,-0.911370515823364,-0.0356436297297478,0.0329990088939667,-0.997519493103027,0.0621760785579681,-0.364302128553391,-0.793609619140625,-0.487306714057922,-0.123237505555153,-0.879709541797638,-0.45926421880722,0.0329990088939667,-0.997519493103027,0.0621760785579681,0.366711139678955,-0.927846729755402,0.0679956302046776,-0.364302128553391,-0.793609619140625,-0.487306714057922,0.407328933477402,-0.41330423951149,-0.814409554004669,
- -0.557933390140533,-0.825751841068268,0.0827296748757362,-0.367200672626495,-0.929868936538696,-0.0225240048021078,0.035772081464529,-0.998839616775513,-0.0322447866201401,0.0090413186699152,-0.999763607978821,-0.0197743028402328,-0.0209037996828556,-0.994968235492706,0.0979863852262497,-0.021418958902359,-0.993611991405487,0.110798813402653,-0.360722362995148,-0.932455837726593,0.0201345179229975,-0.305452406406403,-0.856569051742554,0.415918588638306,-0.0331541635096073,-0.997119963169098,0.06820959597826,-0.147372648119926,-0.985971748828888,0.0783655568957329,-0.136378422379494,-0.93858015537262,0.316967338323593,-0.0136342020705342,-0.99766618013382,0.0669048130512238,-0.021418958902359,-0.993611991405487,0.110798813402653,-0.0676651746034622,-0.989709317684174,-0.126082599163055,-0.360722362995148,-0.932455837726593,0.0201345179229975,-0.364302128553391,-0.793609619140625,-0.487306714057922,-0.557933390140533,-0.825751841068268,0.0827296748757362,-0.136467337608337,-0.984354436397552,0.111458636820316,-0.410040557384491,-0.911370515823364,-0.0356436297297478,0.11351539939642,-0.929485559463501,-0.350956827402115,0.0760049596428871,-0.996471166610718,-0.0356158576905727,0.407328933477402,-0.41330423951149,-0.814409554004669,-0.123237505555153,-0.879709541797638,-0.45926421880722,-0.364302128553391,-0.793609619140625,-0.487306714057922,0.0329990088939667,-0.997519493103027,0.0621760785579681,0.000986043130978942,-0.999993443489075,-0.00349192903377116,-0.0457383133471012,-0.998904585838318,-0.00988125521689653,0.120128326117992,-0.99259889125824,-0.0177937112748623,-0.119882442057133,-0.991565346717834,-0.049256008118391,0.11351539939642,-0.929485559463501,-0.350956827402115,0.0144139099866152,-0.995999157428741,0.0881932973861694,0.0760049596428871,-0.996471166610718,-0.0356158576905727,0.0760049596428871,-0.996471166610718,-0.0356158576905727,-0.104095794260502,-0.992451906204224,-0.0648316293954849,-0.557933390140533,-0.825751841068268,0.0827296748757362,0.0760049596428871,-0.996471166610718,-0.0356158576905727,
- -0.557933390140533,-0.825751841068268,0.0827296748757362,0.407328933477402,-0.41330423951149,-0.814409554004669,0.0567830093204975,-0.997581481933594,-0.0400876887142658,0.11351539939642,-0.929485559463501,-0.350956827402115,-0.364302128553391,-0.793609619140625,-0.487306714057922,0.0956433415412903,-0.994737982749939,-0.0367238558828831,-0.123237505555153,-0.879709541797638,-0.45926421880722,0.0196115300059319,-0.96543276309967,0.259913384914398,0.0196115300059319,-0.96543276309967,0.259913384914398,0.366711139678955,-0.927846729755402,0.0679956302046776,0.000986043130978942,-0.999993443489075,-0.00349192903377116,0.00564243923872709,-0.999864518642426,0.0154696749523282,0.366711139678955,-0.927846729755402,0.0679956302046776,0.0329990088939667,-0.997519493103027,0.0621760785579681,-0.410040557384491,-0.911370515823364,-0.0356436297297478,-0.0457383133471012,-0.998904585838318,-0.00988125521689653,0.000986043130978942,-0.999993443489075,-0.00349192903377116,-0.410040557384491,-0.911370515823364,-0.0356436297297478,-0.136467337608337,-0.984354436397552,0.111458636820316,-0.0359237305819988,-0.999338746070862,-0.00559642165899277,-0.0457383133471012,-0.998904585838318,-0.00988125521689653,-0.104095794260502,-0.992451906204224,-0.0648316293954849,-0.136467337608337,-0.984354436397552,0.111458636820316,-0.557933390140533,-0.825751841068268,0.0827296748757362,-0.104095794260502,-0.992451906204224,-0.0648316293954849,-0.716938078403473,-0.680054247379303,-0.153381913900375,-0.0417863391339779,-0.99823135137558,-0.0422852486371994,-0.0373311713337898,-0.999300062656403,0.00243052747100592,0.0217316560447216,-0.994622945785522,-0.101256132125854,0.0862536430358887,-0.987283110618591,-0.133537843823433,0.217097282409668,-0.973653793334961,-0.0697638019919395,0.035772081464529,-0.998839616775513,-0.0322447866201401,0.0591666176915169,-0.997751414775848,-0.0314879938960075,0.0090413186699152,-0.999763607978821,-0.0197743028402328,0.035772081464529,-0.998839616775513,-0.0322447866201401,0.217097282409668,-0.973653793334961,-0.0697638019919395,
- 0.0648196488618851,-0.994837641716003,-0.0780797079205513,-0.0137206157669425,-0.999879896640778,-0.00721413595601916,0.154133409261703,-0.987904787063599,-0.0169419329613447,-0.248898461461067,-0.967224836349487,-0.050256434828043,0.00411278940737247,-0.999962568283081,-0.00761463167145848,0.999309480190277,-0.000696562347002327,-0.0371489487588406,0.0471411757171154,-0.966958105564117,0.25053882598877,0.0955097749829292,-0.995115756988525,-0.024952469393611,0.0668401643633842,-0.792072832584381,-0.606756150722504,-0.102263458073139,-0.992772102355957,-0.0628143846988678,-0.0164842065423727,-0.999853014945984,-0.00471736676990986,-0.405947744846344,-0.912865221500397,-0.0434006899595261,0.132485091686249,-0.991184771060944,-0.00070014491211623,-0.553244948387146,-0.033963143825531,0.832325994968414,0.0471411757171154,-0.966958105564117,0.25053882598877,0.999309480190277,-0.000696562347002327,-0.0371489487588406,0.949881196022034,-0.00169804773759097,0.312606781721115,0.805049777030945,-0.00784138310700655,0.593155443668365,-0.553244948387146,-0.033963143825531,0.832325994968414,0.132485091686249,-0.991184771060944,-0.00070014491211623,-0.405947744846344,-0.912865221500397,-0.0434006899595261,-0.0952726528048515,-0.956745266914368,0.274884790182114,-0.00984281394630671,-0.999923467636108,0.00749321794137359,-0.0137206157669425,-0.999879896640778,-0.00721413595601916,-0.405947744846344,-0.912865221500397,-0.0434006899595261,-0.553244948387146,-0.033963143825531,0.832325994968414,-0.88487708568573,-0.0076897144317627,0.465761095285416,-0.0952726528048515,-0.956745266914368,0.274884790182114,0.805049777030945,-0.00784138310700655,0.593155443668365,0.0471411757171154,-0.966958105564117,0.25053882598877,0.949881196022034,-0.00169804773759097,0.312606781721115,-0.993825256824493,-0.0357369668781757,-0.105044201016426,-0.963207483291626,-0.00896556116640568,-0.268609255552292,-0.0497988499701023,-0.997616171836853,-0.0477697551250458,0.0471411757171154,-0.966958105564117,0.25053882598877,0.132485091686249,-0.991184771060944,-0.00070014491211623,
- 0.00411278940737247,-0.999962568283081,-0.00761463167145848,0.0131143042817712,-0.999913692474365,0.000819270440842956,0.132485091686249,-0.991184771060944,-0.00070014491211623,0.0471411757171154,-0.966958105564117,0.25053882598877,0.805049777030945,-0.00784138310700655,0.593155443668365,-0.00877931714057922,-0.999947190284729,-0.0053313709795475,-0.00164872745517641,-0.999994337558746,-0.00294913002289832,0.517763555049896,-0.848384618759155,0.110292471945286,0.00755596486851573,-0.992062449455261,0.125518381595612,-0.0952726528048515,-0.956745266914368,0.274884790182114,-0.88487708568573,-0.0076897144317627,0.465761095285416,-0.977347910404205,-0.0184319112449884,0.210834935307503,-0.977347910404205,-0.0184319112449884,0.210834935307503,-0.993825256824493,-0.0357369668781757,-0.105044201016426,-0.0952726528048515,-0.956745266914368,0.274884790182114,-0.00984281394630671,-0.999923467636108,0.00749321794137359,-0.00877931714057922,-0.999947190284729,-0.0053313709795475,0.00755596486851573,-0.992062449455261,0.125518381595612,0.0998544245958328,-0.986461460590363,-0.130088180303574,0.132485091686249,-0.991184771060944,-0.00070014491211623,-0.405947744846344,-0.912865221500397,-0.0434006899595261,-0.0137206157669425,-0.999879896640778,-0.00721413595601916,0.00411278940737247,-0.999962568283081,-0.00761463167145848,0.0488399639725685,-0.998801827430725,0.00309622404165566,-0.14947384595871,-0.988751888275146,0.0052152993157506,-0.253273546695709,-0.966973185539246,0.0285550635308027,-0.0164842065423727,-0.999853014945984,-0.00471736676990986,-0.0137206157669425,-0.999879896640778,-0.00721413595601916,-0.00984281394630671,-0.999923467636108,0.00749321794137359,0.0998544245958328,-0.986461460590363,-0.130088180303574,0.154133409261703,-0.987904787063599,-0.0169419329613447,0.00411278940737247,-0.999962568283081,-0.00761463167145848,-0.248898461461067,-0.967224836349487,-0.050256434828043,-0.0243386253714561,-0.990895211696625,-0.132417887449265,0.0131143042817712,-0.999913692474365,0.000819270440842956,0.0488399639725685,-0.998801827430725,0.00309622404165566,
- 0.634606838226318,-0.76976603269577,0.0688069611787796,0.0955097749829292,-0.995115756988525,-0.024952469393611,0.0140717597678304,-0.999659597873688,0.021967887878418,-0.0497988499701023,-0.997616171836853,-0.0477697551250458,-0.00164872745517641,-0.999994337558746,-0.00294913002289832,-0.00877931714057922,-0.999947190284729,-0.0053313709795475,-0.0952726528048515,-0.956745266914368,0.274884790182114,-0.993825256824493,-0.0357369668781757,-0.105044201016426,-0.0497988499701023,-0.997616171836853,-0.0477697551250458,0.0140717597678304,-0.999659597873688,0.021967887878418,0.0131143042817712,-0.999913692474365,0.000819270440842956,-0.0243386253714561,-0.990895211696625,-0.132417887449265,-0.0641268864274025,-0.882438659667969,0.466036170721054,-0.105327323079109,-0.97909939289093,0.173984333872795,0.0156150031834841,-0.998734354972839,0.0478103347122669,-0.0641268864274025,-0.882438659667969,0.466036170721054,-0.248898461461067,-0.967224836349487,-0.050256434828043,0.154133409261703,-0.987904787063599,-0.0169419329613447,-0.623218238353729,-0.764329254627228,0.16552922129631,-0.23436439037323,-0.919915497303009,-0.314370572566986,0.00755596486851573,-0.992062449455261,0.125518381595612,0.517763555049896,-0.848384618759155,0.110292471945286,0.0290006399154663,-0.997198700904846,-0.0689469799399376,-0.530544459819794,-0.827864468097687,0.182107195258141,-0.746703743934631,-0.658012568950653,0.097225733101368,0.00755596486851573,-0.992062449455261,0.125518381595612,-0.530544459819794,-0.827864468097687,0.182107195258141,-0.0243386253714561,-0.990895211696625,-0.132417887449265,-0.248898461461067,-0.967224836349487,-0.050256434828043,-0.23436439037323,-0.919915497303009,-0.314370572566986,-0.0709549933671951,-0.993637442588806,0.0874638855457306,-0.0243386253714561,-0.990895211696625,-0.132417887449265,-0.23436439037323,-0.919915497303009,-0.314370572566986,-0.0641268864274025,-0.882438659667969,0.466036170721054,-0.14947384595871,-0.988751888275146,0.0052152993157506,0.0488399639725685,-0.998801827430725,0.00309622404165566,
- 0.0140717597678304,-0.999659597873688,0.021967887878418,-0.0952726528048515,-0.956745266914368,0.274884790182114,-0.0497988499701023,-0.997616171836853,-0.0477697551250458,-0.00877931714057922,-0.999947190284729,-0.0053313709795475,-0.00984281394630671,-0.999923467636108,0.00749321794137359,-0.0641268864274025,-0.882438659667969,0.466036170721054,-0.0709549933671951,-0.993637442588806,0.0874638855457306,-0.105327323079109,-0.97909939289093,0.173984333872795,-0.253273546695709,-0.966973185539246,0.0285550635308027,-0.14947384595871,-0.988751888275146,0.0052152993157506,0.0156150031834841,-0.998734354972839,0.0478103347122669,-0.0635073035955429,-0.994982302188873,-0.0773110091686249,-0.0641268864274025,-0.882438659667969,0.466036170721054,-0.0243386253714561,-0.990895211696625,-0.132417887449265,-0.0709549933671951,-0.993637442588806,0.0874638855457306,0.144971087574959,-0.790684103965759,-0.59481281042099,0.710777342319489,0.597780466079712,-0.370748192071915,0.901233196258545,0.0356952920556068,0.431861788034439,0.0998544245958328,-0.986461460590363,-0.130088180303574,0.00755596486851573,-0.992062449455261,0.125518381595612,-0.746703743934631,-0.658012568950653,0.097225733101368,0.154133409261703,-0.987904787063599,-0.0169419329613447,0.0998544245958328,-0.986461460590363,-0.130088180303574,-0.623218238353729,-0.764329254627228,0.16552922129631,-0.102263458073139,-0.992772102355957,-0.0628143846988678,0.634606838226318,-0.76976603269577,0.0688069611787796,0.0488399639725685,-0.998801827430725,0.00309622404165566,-0.0164842065423727,-0.999853014945984,-0.00471736676990986,-0.991043865680695,-0.00593530153855681,-0.13340550661087,-0.993321597576141,-0.00452130241319537,-0.11528991907835,-0.99552720785141,-0.00401258002966642,-0.0943909361958504,-0.996122777462006,0.00156573811545968,-0.087959885597229,-0.997139573097229,0.000779830967076123,-0.0755783841013908,-0.99621969461441,-0.00528981490060687,-0.0867083445191383,-0.993356764316559,-0.00619878293946385,-0.114908486604691,-0.990085542201996,-0.0358225554227829,-0.135821953415871,
- -0.990444660186768,-0.0193159561604261,-0.136551231145859,0.0955097749829292,-0.995115756988525,-0.024952469393611,0.634606838226318,-0.76976603269577,0.0688069611787796,0.960359871387482,-0.00245168921537697,-0.278752446174622,0.999309480190277,-0.000696562347002327,-0.0371489487588406,0.405588507652283,-0.0155315073207021,-0.913923799991608,-0.102263458073139,-0.992772102355957,-0.0628143846988678,0.0668401643633842,-0.792072832584381,-0.606756150722504,0.405588507652283,-0.0155315073207021,-0.913923799991608,0.960359871387482,-0.00245168921537697,-0.278752446174622,0.634606838226318,-0.76976603269577,0.0688069611787796,-0.102263458073139,-0.992772102355957,-0.0628143846988678,-0.00293096480891109,-0.99999213218689,-0.00265849567949772,-0.530544459819794,-0.827864468097687,0.182107195258141,0.0290006399154663,-0.997198700904846,-0.0689469799399376,0.265738308429718,-0.962186694145203,-0.0598317496478558,0.204968824982643,-0.975918173789978,-0.0746421813964844,0.426513701677322,-0.861889958381653,-0.274284183979034,0.557448208332062,-0.830185294151306,0.00662571284919977,0.58513867855072,-0.692364931106567,0.422188878059387,0.0623810105025768,-0.997965514659882,-0.0131658678874373,-0.0367410108447075,-0.996890366077423,0.0697113573551178,0.0395224541425705,-0.995657622814178,-0.0842851772904396,0.432781755924225,-0.900658369064331,0.0389153957366943,0.0623810105025768,-0.997965514659882,-0.0131658678874373,0.58513867855072,-0.692364931106567,0.422188878059387,-0.216981053352356,-0.97494500875473,-0.0490040592849255,0.432781755924225,-0.900658369064331,0.0389153957366943,0.0395224541425705,-0.995657622814178,-0.0842851772904396,-0.123237505555153,-0.879709541797638,-0.45926421880722,0.366711139678955,-0.927846729755402,0.0679956302046776,0.0196115300059319,-0.96543276309967,0.259913384914398,0.0956433415412903,-0.994737982749939,-0.0367238558828831,0.0196115300059319,-0.96543276309967,0.259913384914398,0.00564243923872709,-0.999864518642426,0.0154696749523282,0.0090413186699152,-0.999763607978821,-0.0197743028402328,
- 0.0648196488618851,-0.994837641716003,-0.0780797079205513,-0.00107113400008529,-0.994927763938904,0.100586444139481,0.185080483555794,-0.969878077507019,0.158372417092323,0.00773159740492702,-0.999617278575897,0.0265596564859152,-0.0534835495054722,-0.998501181602478,0.0116191059350967,0.138303235173225,-0.990328788757324,0.0110030993819237,0.0386313609778881,-0.995861649513245,-0.082262821495533,0.00218375027179718,-0.999793887138367,0.0201856922358274,-0.0449887961149216,-0.942547798156738,0.331028044223785,-0.0154329715296626,-0.999819695949554,0.0110559873282909,-0.0100126303732395,-0.999948799610138,-0.00142517848871648,-0.0144096817821264,-0.999883949756622,-0.00493774004280567,0.0888714045286179,-0.996021151542664,0.00661177653819323,0.00218375027179718,-0.999793887138367,0.0201856922358274,-0.0100126303732395,-0.999948799610138,-0.00142517848871648,-0.0534019358456135,-0.998527526855469,-0.00953921023756266,-0.189350977540016,-0.981351315975189,-0.033102985471487,0.0888714045286179,-0.996021151542664,0.00661177653819323,-0.0144096817821264,-0.999883949756622,-0.00493774004280567,-0.0359237305819988,-0.999338746070862,-0.00559642165899277,-0.136467337608337,-0.984354436397552,0.111458636820316,-0.104095794260502,-0.992451906204224,-0.0648316293954849,-0.0373311713337898,-0.999300062656403,0.00243052747100592,0.0955097749829292,-0.995115756988525,-0.024952469393611,0.0471411757171154,-0.966958105564117,0.25053882598877,0.0131143042817712,-0.999913692474365,0.000819270440842956,0.0140717597678304,-0.999659597873688,0.021967887878418,0.0130334096029401,-0.994925916194916,-0.0997618734836578,-0.0574031621217728,-0.984882831573486,0.163433864712715,0.0160403586924076,-0.979169428348541,-0.202410295605659,-0.0641268864274025,-0.882438659667969,0.466036170721054,0.0156150031834841,-0.998734354972839,0.0478103347122669,-0.14947384595871,-0.988751888275146,0.0052152993157506,-0.306339353322983,-0.795275688171387,-0.523156642913818,-0.712851583957672,-0.649534702301025,-0.26447531580925,-0.760963022708893,-0.648337662220001,-0.024361489340663,
- -0.139889076352119,-0.955540597438812,-0.259563446044922,-0.742577850818634,-0.660943031311035,-0.108317233622074,-0.661314845085144,-0.749813854694366,-0.0210211221128702,-0.581327259540558,-0.707543194293976,-0.401797562837601,-0.745996654033661,-0.657171785831451,-0.107769526541233,-0.996742606163025,0.08006302267313,-0.00970246642827988,-0.979344427585602,-0.202191680669785,-0.00178417924325913,-0.968520104885101,0.248048216104507,0.0210006888955832,-0.962431728839874,0.26568815112114,0.0559915192425251,-0.757268369197845,-0.649309635162354,-0.0702960565686226,-0.770136892795563,-0.627248883247375,-0.115964822471142,-0.749646604061127,-0.661349773406982,-0.0254246573895216,0.993559420108795,-0.0141857331618667,0.11242102086544,0.589707791805267,-0.107019603252411,-0.80049455165863,-0.0516132563352585,-0.984491467475891,-0.167668268084526,-0.371603548526764,-0.926215767860413,-0.0635219812393188,-0.349800556898117,-0.928868651390076,-0.121830031275749,-0.651559770107269,-0.745150208473206,-0.142200604081154,-0.387783527374268,-0.919599950313568,-0.0629268735647202,-0.145239323377609,-0.989373385906219,0.00677420664578676,-0.370120108127594,-0.876559793949127,0.307658940553665,-0.329502105712891,-0.944132149219513,0.0065408032387495,-0.716562211513519,-0.695054650306702,-0.0586302615702152,-0.690569281578064,-0.713119149208069,-0.120727956295013,-0.413150638341904,-0.909090101718903,-0.053496316075325,-0.996797442436218,0.000722812197636813,0.0799651890993118,-0.912113845348358,0.372789084911346,0.170518189668655,-0.998813331127167,-0.00815119035542011,0.0480147004127502,-0.942514181137085,0.3042371571064,-0.138227075338364,-0.82948899269104,0.468122690916061,0.304645895957947,-0.906212151050568,0.383681923151016,0.17767345905304,-0.981621980667114,0.188207268714905,0.0315654054284096,-0.998001933097839,0.0478063151240349,0.0413114652037621,-0.970302999019623,0.241020634770393,0.0205214899033308,-0.980043232440948,0.197317138314247,0.024106677621603,-0.590678572654724,-0.804190278053284,-0.0661569759249687,-0.612217426300049,-0.784145057201386,-0.101520597934723,
- -0.755525648593903,-0.649971008300781,-0.0819673463702202,-0.793589293956757,-0.605932950973511,-0.055328756570816,-0.763817489147186,-0.642748415470123,-0.0587985292077065,-0.970012307167053,0.241476833820343,0.0276617612689734,-0.968725085258484,0.244107902050018,0.0445302315056324,-0.984156966209412,0.155487477779388,-0.0851973593235016,-0.982634902000427,0.167352735996246,0.0801355317234993,-0.814126312732697,-0.57024484872818,-0.109631724655628,-0.857626438140869,-0.507537424564362,-0.0829624682664871,-0.667174279689789,-0.74259477853775,-0.0585790351033211,-0.819016516208649,-0.552045524120331,0.156389132142067,-0.982634902000427,0.167352735996246,0.0801355317234993,-0.984156966209412,0.155487477779388,-0.0851973593235016,-0.994481921195984,0.0148132843896747,-0.103856571018696,-0.979624927043915,0.0746571868658066,-0.186444133520126,-0.954195141792297,-0.256672263145447,-0.153723523020744,-0.999810695648193,0.0190127771347761,0.00413422286510468,-0.981023550033569,-0.191248878836632,-0.0318876318633556,-0.984580934047699,-0.172368377447128,-0.0298211369663477,-0.704301714897156,-0.709896504878998,-0.00249292515218258,-0.770136892795563,-0.627248883247375,-0.115964822471142,-0.921765506267548,-0.380933195352554,-0.0723752081394196,-0.749646604061127,-0.661349773406982,-0.0254246573895216,-0.145239323377609,-0.989373385906219,0.00677420664578676,-0.71351283788681,-0.658090353012085,0.24045042693615,-0.752645671367645,-0.634509265422821,-0.175847738981247,-0.397367835044861,-0.917078733444214,0.0326392836868763,-0.212720260024071,-0.968239724636078,0.131384655833244,-0.579518914222717,-0.801410615444183,0.147982910275459,-0.875599503517151,-0.477845191955566,-0.0706362724304199,-0.745996654033661,-0.657171785831451,-0.107769526541233,-0.763817489147186,-0.642748415470123,-0.0587985292077065,-0.948226451873779,-0.239293247461319,-0.208818733692169,-0.978360891342163,-0.174317628145218,0.111459970474243,-0.967996656894684,-0.250371605157852,0.0172193627804518,-0.967585742473602,-0.252541542053223,-0.000757731439080089,
- -0.757268369197845,-0.649309635162354,-0.0702960565686226,-0.801191687583923,-0.579038619995117,-0.151017442345619,-0.770136892795563,-0.627248883247375,-0.115964822471142,-0.976508259773254,0.211499720811844,0.0412256233394146,-0.991645991802216,-0.128558591008186,-0.0105267148464918,-0.978360891342163,-0.174317628145218,0.111459970474243,-0.931571900844574,0.309893488883972,0.190104514360428,-0.981073498725891,0.185131624341011,0.0567547306418419,-0.968725085258484,0.244107902050018,0.0445302315056324,0.262184739112854,-0.834320962429047,-0.48494103550911,-0.532141745090485,-0.846115589141846,-0.0302261915057898,-0.646104753017426,-0.746240854263306,-0.160228699445724,-0.0245565269142389,-0.856195867061615,-0.516067445278168,0.869833707809448,-0.322526812553406,-0.373317301273346,0.567298650741577,-0.26155024766922,-0.780873656272888,-0.979401528835297,-0.153532639145851,0.131149753928185,-0.951159954071045,-0.30720528960228,-0.0303240586072207,-0.98970901966095,-0.0743698105216026,0.122250936925411,-0.763845801353455,-0.594886422157288,-0.25029930472374,-0.755525648593903,-0.649971008300781,-0.0819673463702202,-0.59803032875061,-0.773906648159027,0.208394438028336,-0.0847448259592056,-0.996348917484283,-0.0103446412831545,-0.0974836498498917,-0.99474036693573,-0.0314399562776089,-0.212720260024071,-0.968239724636078,0.131384655833244,-0.397367835044861,-0.917078733444214,0.0326392836868763,0.990135967731476,0.0160103533416986,0.139191851019859,0.989607334136963,0.0756933763623238,0.122261315584183,0.990213930606842,0.0560254864394665,0.127818450331688,-0.981621980667114,0.188207268714905,0.0315654054284096,-0.979401528835297,-0.153532639145851,0.131149753928185,-0.998001933097839,0.0478063151240349,0.0413114652037621,-0.749646604061127,-0.661349773406982,-0.0254246573895216,-0.921765506267548,-0.380933195352554,-0.0723752081394196,-0.697110652923584,-0.685608744621277,0.209707990288734,-0.814126312732697,-0.57024484872818,-0.109631724655628,-0.667174279689789,-0.74259477853775,-0.0585790351033211,-0.742577850818634,-0.660943031311035,-0.108317233622074,
- -0.579518914222717,-0.801410615444183,0.147982910275459,-0.212720260024071,-0.968239724636078,0.131384655833244,-0.413150638341904,-0.909090101718903,-0.053496316075325,-0.996996223926544,-0.0386678390204906,-0.0671065151691437,-0.832036972045898,-0.548784077167511,-0.0809355303645134,-0.990346372127533,-0.0723181813955307,-0.118255294859409,-0.737060546875,-0.675718128681183,0.0121183423325419,-0.953474044799805,-0.117439828813076,-0.277660250663757,-0.990346372127533,-0.0723181813955307,-0.118255294859409,0.989657044410706,-0.014514297246933,0.142717018723488,0.990135967731476,0.0160103533416986,0.139191851019859,0.990213930606842,0.0560254864394665,0.127818450331688,0.989657044410706,-0.014514297246933,0.142717018723488,0.98882532119751,-0.0660961270332336,0.133625626564026,0.990135967731476,0.0160103533416986,0.139191851019859,-0.00667347246780992,-0.999620139598846,0.0267434604465961,-0.252959847450256,-0.967458486557007,-0.00594967184588313,-0.237461537122726,-0.162047371268272,0.957785308361053,-0.750270426273346,0.358953356742859,-0.5551997423172,-0.948226451873779,-0.239293247461319,-0.208818733692169,-0.921765506267548,-0.380933195352554,-0.0723752081394196,-0.990346372127533,-0.0723181813955307,-0.118255294859409,-0.953474044799805,-0.117439828813076,-0.277660250663757,-0.996996223926544,-0.0386678390204906,-0.0671065151691437,-0.865785598754883,-0.490681797266006,-0.0982168689370155,-0.814126312732697,-0.57024484872818,-0.109631724655628,-0.742577850818634,-0.660943031311035,-0.108317233622074,-0.745996654033661,-0.657171785831451,-0.107769526541233,-0.875599503517151,-0.477845191955566,-0.0706362724304199,-0.763817489147186,-0.642748415470123,-0.0587985292077065,-0.745996654033661,-0.657171785831451,-0.107769526541233,-0.581327259540558,-0.707543194293976,-0.401797562837601,-0.590678572654724,-0.804190278053284,-0.0661569759249687,-0.581327259540558,-0.707543194293976,-0.401797562837601,0.338726431131363,-0.9399533867836,0.0418574921786785,0.383980423212051,-0.922609806060791,-0.0367458797991276,-0.994082629680634,-0.0963283851742744,0.0502059273421764,
- -0.978368043899536,-0.112178482115269,-0.173815548419952,-0.972545206546783,-0.230098277330399,-0.0347949266433716,-0.972788691520691,-0.225512996315956,-0.0531601570546627,-0.544195592403412,-0.837932884693146,-0.0414686761796474,-0.326513916254044,-0.944246709346771,-0.0422719269990921,-0.286247283220291,-0.956579089164734,0.0549452640116215,-0.926481902599335,0.357554107904434,0.117415569722652,-0.98411613702774,0.161314398050308,-0.0741151124238968,-0.878314077854156,0.362553119659424,0.311640024185181,-0.885684072971344,0.44422048330307,0.135025292634964,-0.978360891342163,-0.174317628145218,0.111459970474243,-0.750270426273346,0.358953356742859,-0.5551997423172,-0.763817489147186,-0.642748415470123,-0.0587985292077065,-0.998387575149536,0.0279192160815001,-0.0494227483868599,-0.875599503517151,-0.477845191955566,-0.0706362724304199,-0.999219238758087,0.0332702919840813,0.0213053356856108,-0.998387575149536,0.0279192160815001,-0.0494227483868599,-0.990346372127533,-0.0723181813955307,-0.118255294859409,-0.370120108127594,-0.876559793949127,0.307658940553665,-0.145239323377609,-0.989373385906219,0.00677420664578676,-0.0203040391206741,-0.931981861591339,0.361935675144196,-0.59803032875061,-0.773906648159027,0.208394438028336,-0.286247283220291,-0.956579089164734,0.0549452640116215,-0.326513916254044,-0.944246709346771,-0.0422719269990921,-0.999219238758087,0.0332702919840813,0.0213053356856108,-0.832036972045898,-0.548784077167511,-0.0809355303645134,-0.909482955932617,-0.367838829755783,-0.193740501999855,-0.544195592403412,-0.837932884693146,-0.0414686761796474,-0.493178993463516,-0.850862443447113,0.181128576397896,-0.338766932487488,-0.93842351436615,-0.0678091496229172,-0.371603548526764,-0.926215767860413,-0.0635219812393188,-0.544195592403412,-0.837932884693146,-0.0414686761796474,-0.286247283220291,-0.956579089164734,0.0549452640116215,-0.177667528390884,-0.950979232788086,0.25312602519989,-0.493178993463516,-0.850862443447113,0.181128576397896,-0.286247283220291,-0.956579089164734,0.0549452640116215,-0.581327259540558,-0.707543194293976,-0.401797562837601,
- -0.177667528390884,-0.950979232788086,0.25312602519989,-0.981621980667114,0.188207268714905,0.0315654054284096,-0.980043232440948,0.197317138314247,0.024106677621603,-0.900702238082886,0.379922419786453,0.210699781775475,-0.981621980667114,0.188207268714905,0.0315654054284096,-0.900702238082886,0.379922419786453,0.210699781775475,-0.979401528835297,-0.153532639145851,0.131149753928185,-0.413150638341904,-0.909090101718903,-0.053496316075325,-0.690569281578064,-0.713119149208069,-0.120727956295013,-0.579518914222717,-0.801410615444183,0.147982910275459,-0.752645671367645,-0.634509265422821,-0.175847738981247,-0.71351283788681,-0.658090353012085,0.24045042693615,-0.720343470573425,-0.690642774105072,-0.0641707554459572,-0.757268369197845,-0.649309635162354,-0.0702960565686226,-0.91506552696228,0.321639746427536,-0.243316203355789,-0.981073498725891,0.185131624341011,0.0567547306418419,-0.931571900844574,0.309893488883972,0.190104514360428,-0.964898884296417,0.238965690135956,0.108928933739662,-0.981073498725891,0.185131624341011,0.0567547306418419,-0.91506552696228,0.321639746427536,-0.243316203355789,-0.94219183921814,-0.330266565084457,0.0565557591617107,-0.96674644947052,-0.255678176879883,0.00547642912715673,-0.994082629680634,-0.0963283851742744,0.0502059273421764,-0.981023550033569,-0.191248878836632,-0.0318876318633556,-0.999810695648193,0.0190127771347761,0.00413422286510468,-0.994082629680634,-0.0963283851742744,0.0502059273421764,-0.972788691520691,-0.225512996315956,-0.0531601570546627,-0.0203040391206741,-0.931981861591339,0.361935675144196,-0.145239323377609,-0.989373385906219,0.00677420664578676,-0.752645671367645,-0.634509265422821,-0.175847738981247,-0.59803032875061,-0.773906648159027,0.208394438028336,-0.752645671367645,-0.634509265422821,-0.175847738981247,-0.763845801353455,-0.594886422157288,-0.25029930472374,-0.98411613702774,0.161314398050308,-0.0741151124238968,-0.998813331127167,-0.00815119035542011,0.0480147004127502,-0.912113845348358,0.372789084911346,0.170518189668655,-0.878314077854156,0.362553119659424,0.311640024185181,
- -0.912113845348358,0.372789084911346,0.170518189668655,-0.923819959163666,0.382681578397751,-0.0105624627321959,-0.962778747081757,0.265341967344284,0.051485251635313,-0.962431728839874,0.26568815112114,0.0559915192425251,-0.878314077854156,0.362553119659424,0.311640024185181,-0.646104753017426,-0.746240854263306,-0.160228699445724,-0.532141745090485,-0.846115589141846,-0.0302261915057898,-0.873817265033722,-0.415694206953049,-0.252273291349411,-0.981073498725891,0.185131624341011,0.0567547306418419,-0.976504802703857,0.214474812150002,0.0209483057260513,-0.968725085258484,0.244107902050018,0.0445302315056324,0.338726431131363,-0.9399533867836,0.0418574921786785,-0.00866972748190165,-0.99809467792511,-0.0610898546874523,-0.161496832966805,-0.978052794933319,0.131649196147919,-0.417740643024445,-0.906261026859283,-0.0646819546818733,-0.456530153751373,-0.877916276454926,-0.144371151924133,-0.161496832966805,-0.978052794933319,0.131649196147919,-0.934682786464691,0.331178545951843,0.129184618592262,-0.996070384979248,0.0885277986526489,-0.00259710615500808,-0.978368043899536,-0.112178482115269,-0.173815548419952,-0.98970901966095,-0.0743698105216026,0.122250936925411,-0.998001933097839,0.0478063151240349,0.0413114652037621,-0.979401528835297,-0.153532639145851,0.131149753928185,-0.979624927043915,0.0746571868658066,-0.186444133520126,-0.857626438140869,-0.507537424564362,-0.0829624682664871,-0.814126312732697,-0.57024484872818,-0.109631724655628,0.989084661006927,-0.0380444005131722,0.142352938652039,0.989657044410706,-0.014514297246933,0.142717018723488,0.990213930606842,0.0560254864394665,0.127818450331688,-0.974540233612061,0.223322376608849,0.0199598073959351,-0.962778747081757,0.265341967344284,0.051485251635313,-0.923819959163666,0.382681578397751,-0.0105624627321959,-0.886275112628937,0.459359973669052,-0.059200793504715,-0.127054661512375,-0.990319788455963,-0.0558920986950397,0.589707791805267,-0.107019603252411,-0.80049455165863,-0.80229127407074,-0.0844011828303337,-0.590935826301575,-0.661314845085144,-0.749813854694366,-0.0210211221128702,
- -0.00866972748190165,-0.99809467792511,-0.0610898546874523,0.338726431131363,-0.9399533867836,0.0418574921786785,-0.581327259540558,-0.707543194293976,-0.401797562837601,-0.661314845085144,-0.749813854694366,-0.0210211221128702,0.338726431131363,-0.9399533867836,0.0418574921786785,-0.976508259773254,0.211499720811844,0.0412256233394146,-0.978360891342163,-0.174317628145218,0.111459970474243,-0.885684072971344,0.44422048330307,0.135025292634964,-0.885684072971344,0.44422048330307,0.135025292634964,0.262184739112854,-0.834320962429047,-0.48494103550911,-0.646104753017426,-0.746240854263306,-0.160228699445724,-0.980043232440948,0.197317138314247,0.024106677621603,-0.965703845024109,0.257682502269745,-0.031871996819973,-0.942514181137085,0.3042371571064,-0.138227075338364,-0.980043232440948,0.197317138314247,0.024106677621603,-0.942514181137085,0.3042371571064,-0.138227075338364,-0.970012307167053,0.241476833820343,0.0276617612689734,-0.820659875869751,-0.0830289572477341,0.565352737903595,-0.704301714897156,-0.709896504878998,-0.00249292515218258,-0.711285173892975,-0.660910129547119,-0.239314198493958,-0.752645671367645,-0.634509265422821,-0.175847738981247,-0.59803032875061,-0.773906648159027,0.208394438028336,-0.0203040391206741,-0.931981861591339,0.361935675144196,-0.59803032875061,-0.773906648159027,0.208394438028336,-0.370120108127594,-0.876559793949127,0.307658940553665,-0.0203040391206741,-0.931981861591339,0.361935675144196,-0.912113845348358,0.372789084911346,0.170518189668655,-0.996797442436218,0.000722812197636813,0.0799651890993118,-0.923819959163666,0.382681578397751,-0.0105624627321959,-0.885684072971344,0.44422048330307,0.135025292634964,-0.646104753017426,-0.746240854263306,-0.160228699445724,-0.976508259773254,0.211499720811844,0.0412256233394146,0.338726431131363,-0.9399533867836,0.0418574921786785,-0.161496832966805,-0.978052794933319,0.131649196147919,-0.365252017974854,-0.900040745735168,-0.237734168767929,-0.752645671367645,-0.634509265422821,-0.175847738981247,-0.749646604061127,-0.661349773406982,-0.0254246573895216,
- -0.763845801353455,-0.594886422157288,-0.25029930472374,-0.970302999019623,0.241020634770393,0.0205214899033308,-0.992436170578003,0.105718493461609,-0.0624014288187027,-0.965703845024109,0.257682502269745,-0.031871996819973,-0.980043232440948,0.197317138314247,0.024106677621603,-0.991645991802216,-0.128558591008186,-0.0105267148464918,-0.982735097408295,-0.184984967112541,-0.00350349978543818,-0.951159954071045,-0.30720528960228,-0.0303240586072207,-0.370120108127594,-0.876559793949127,0.307658940553665,-0.326513916254044,-0.944246709346771,-0.0422719269990921,-0.387783527374268,-0.919599950313568,-0.0629268735647202,-0.361244976520538,-0.932457506656647,-0.00501104863360524,-0.326513916254044,-0.944246709346771,-0.0422719269990921,-0.370120108127594,-0.876559793949127,0.307658940553665,-0.59803032875061,-0.773906648159027,0.208394438028336,-0.789842844009399,-0.607454597949982,-0.0845412313938141,-0.690569281578064,-0.713119149208069,-0.120727956295013,-0.716562211513519,-0.695054650306702,-0.0586302615702152,-0.931571900844574,0.309893488883972,0.190104514360428,-0.906212151050568,0.383681923151016,0.17767345905304,-0.91506552696228,0.321639746427536,-0.243316203355789,-0.942514181137085,0.3042371571064,-0.138227075338364,-0.906212151050568,0.383681923151016,0.17767345905304,-0.931571900844574,0.309893488883972,0.190104514360428,-0.793589293956757,-0.605932950973511,-0.055328756570816,-0.749646604061127,-0.661349773406982,-0.0254246573895216,-0.697110652923584,-0.685608744621277,0.209707990288734,-0.954195141792297,-0.256672263145447,-0.153723523020744,-0.929924845695496,-0.367430001497269,-0.0153313353657722,-0.994481921195984,0.0148132843896747,-0.103856571018696,-0.720343470573425,-0.690642774105072,-0.0641707554459572,-0.789842844009399,-0.607454597949982,-0.0845412313938141,-0.757268369197845,-0.649309635162354,-0.0702960565686226,-0.789842844009399,-0.607454597949982,-0.0845412313938141,-0.801191687583923,-0.579038619995117,-0.151017442345619,-0.757268369197845,-0.649309635162354,-0.0702960565686226,-0.984156966209412,0.155487477779388,-0.0851973593235016,
- -0.968140482902527,0.250315099954605,-0.00681630289182067,-0.820659875869751,-0.0830289572477341,0.565352737903595,-0.711285173892975,-0.660910129547119,-0.239314198493958,-0.711285173892975,-0.660910129547119,-0.239314198493958,-0.819016516208649,-0.552045524120331,0.156389132142067,-0.984156966209412,0.155487477779388,-0.0851973593235016,-0.737060546875,-0.675718128681183,0.0121183423325419,-0.793589293956757,-0.605932950973511,-0.055328756570816,-0.697110652923584,-0.685608744621277,0.209707990288734,-0.921765506267548,-0.380933195352554,-0.0723752081394196,-0.953474044799805,-0.117439828813076,-0.277660250663757,-0.737060546875,-0.675718128681183,0.0121183423325419,-0.697110652923584,-0.685608744621277,0.209707990288734,-0.145239323377609,-0.989373385906219,0.00677420664578676,-0.397367835044861,-0.917078733444214,0.0326392836868763,-0.71351283788681,-0.658090353012085,0.24045042693615,-0.000522643269505352,-0.980886936187744,-0.194578140974045,0.0805711150169373,-0.99256032705307,-0.0912816822528839,0.019390020519495,-0.991397440433502,-0.129442319273949,0.0227746926248074,-0.999718368053436,0.00666990131139755,-0.590678572654724,-0.804190278053284,-0.0661569759249687,-0.581327259540558,-0.707543194293976,-0.401797562837601,-0.286247283220291,-0.956579089164734,0.0549452640116215,-0.579518914222717,-0.801410615444183,0.147982910275459,-0.720343470573425,-0.690642774105072,-0.0641707554459572,-0.71351283788681,-0.658090353012085,0.24045042693615,-0.71351283788681,-0.658090353012085,0.24045042693615,-0.397367835044861,-0.917078733444214,0.0326392836868763,-0.579518914222717,-0.801410615444183,0.147982910275459,-0.0194034930318594,-0.956846058368683,-0.289946794509888,-0.770136892795563,-0.627248883247375,-0.115964822471142,-0.801191687583923,-0.579038619995117,-0.151017442345619,-0.612217426300049,-0.784145057201386,-0.101520597934723,-0.286247283220291,-0.956579089164734,0.0549452640116215,-0.59803032875061,-0.773906648159027,0.208394438028336,-0.590678572654724,-0.804190278053284,-0.0661569759249687,-0.286247283220291,-0.956579089164734,0.0549452640116215,
- -0.612217426300049,-0.784145057201386,-0.101520597934723,-0.252959847450256,-0.967458486557007,-0.00594967184588313,-0.948012888431549,-0.0956580862402916,0.303514629602432,-0.237461537122726,-0.162047371268272,0.957785308361053,-0.948012888431549,-0.0956580862402916,0.303514629602432,-0.0429687798023224,-0.994479596614838,0.0957293808460236,-0.394814729690552,-0.917229235172272,0.0530264712870121,-0.704301714897156,-0.709896504878998,-0.00249292515218258,-0.955257177352905,-0.29574117064476,0.00456743594259024,-0.711285173892975,-0.660910129547119,-0.239314198493958,-0.998605847358704,0.0510356575250626,0.0134800793603063,-0.96674644947052,-0.255678176879883,0.00547642912715673,-0.989549934864044,0.12171970307827,0.0773001909255981,-0.252959847450256,-0.967458486557007,-0.00594967184588313,-0.0429687798023224,-0.994479596614838,0.0957293808460236,-0.948012888431549,-0.0956580862402916,0.303514629602432,-0.750270426273346,0.358953356742859,-0.5551997423172,-0.921765506267548,-0.380933195352554,-0.0723752081394196,-0.770136892795563,-0.627248883247375,-0.115964822471142,-0.0194034930318594,-0.956846058368683,-0.289946794509888,-0.750270426273346,0.358953356742859,-0.5551997423172,-0.770136892795563,-0.627248883247375,-0.115964822471142,-0.998387575149536,0.0279192160815001,-0.0494227483868599,-0.999219238758087,0.0332702919840813,0.0213053356856108,-0.875599503517151,-0.477845191955566,-0.0706362724304199,-0.875599503517151,-0.477845191955566,-0.0706362724304199,-0.999219238758087,0.0332702919840813,0.0213053356856108,-0.865785598754883,-0.490681797266006,-0.0982168689370155,-0.967996656894684,-0.250371605157852,0.0172193627804518,-0.813579380512238,-0.572541058063507,-0.101416535675526,-0.95534735918045,-0.293407917022705,-0.0349740125238895,-0.092685803771019,0.994686365127563,-0.0448149628937244,0.819892227649689,0.505758166313171,0.268301010131836,0.666004717350006,0.183906093239784,0.722922027111053,-0.976508259773254,0.211499720811844,0.0412256233394146,-0.646104753017426,-0.746240854263306,-0.160228699445724,
- -0.928880155086517,-0.368758648633957,0.0346233509480953,-0.237461537122726,-0.162047371268272,0.957785308361053,-0.0943227186799049,-0.198414176702499,0.975569069385529,-0.00667347246780992,-0.999620139598846,0.0267434604465961,-0.0975610613822937,-0.994592905044556,0.0355935357511044,0.906145751476288,-0.119262687861919,0.405803501605988,0.993559420108795,-0.0141857331618667,0.11242102086544,-0.979624927043915,0.0746571868658066,-0.186444133520126,-0.814126312732697,-0.57024484872818,-0.109631724655628,-0.865785598754883,-0.490681797266006,-0.0982168689370155,-0.979624927043915,0.0746571868658066,-0.186444133520126,-0.865785598754883,-0.490681797266006,-0.0982168689370155,-0.954195141792297,-0.256672263145447,-0.153723523020744,-0.832036972045898,-0.548784077167511,-0.0809355303645134,-0.999219238758087,0.0332702919840813,0.0213053356856108,-0.990346372127533,-0.0723181813955307,-0.118255294859409,0.906145751476288,-0.119262687861919,0.405803501605988,-0.0975610613822937,-0.994592905044556,0.0355935357511044,0.224552154541016,-0.973284482955933,0.0478922612965107,-0.953474044799805,-0.117439828813076,-0.277660250663757,-0.921765506267548,-0.380933195352554,-0.0723752081394196,-0.948226451873779,-0.239293247461319,-0.208818733692169,-0.127054661512375,-0.990319788455963,-0.0558920986950397,-0.80229127407074,-0.0844011828303337,-0.590935826301575,-0.0836198404431343,-0.989293813705444,-0.119604751467705,-0.755525648593903,-0.649971008300781,-0.0819673463702202,-0.612217426300049,-0.784145057201386,-0.101520597934723,-0.59803032875061,-0.773906648159027,0.208394438028336,-0.690569281578064,-0.713119149208069,-0.120727956295013,-0.789842844009399,-0.607454597949982,-0.0845412313938141,-0.720343470573425,-0.690642774105072,-0.0641707554459572,-0.579518914222717,-0.801410615444183,0.147982910275459,-0.690569281578064,-0.713119149208069,-0.120727956295013,-0.720343470573425,-0.690642774105072,-0.0641707554459572,-0.954195141792297,-0.256672263145447,-0.153723523020744,-0.865785598754883,-0.490681797266006,-0.0982168689370155,
- -0.999219238758087,0.0332702919840813,0.0213053356856108,-0.80229127407074,-0.0844011828303337,-0.590935826301575,-0.948012888431549,-0.0956580862402916,0.303514629602432,-0.394814729690552,-0.917229235172272,0.0530264712870121,-0.80229127407074,-0.0844011828303337,-0.590935826301575,-0.394814729690552,-0.917229235172272,0.0530264712870121,-0.0836198404431343,-0.989293813705444,-0.119604751467705,-0.999810695648193,0.0190127771347761,0.00413422286510468,-0.94219183921814,-0.330266565084457,0.0565557591617107,-0.994082629680634,-0.0963283851742744,0.0502059273421764,-0.990346372127533,-0.0723181813955307,-0.118255294859409,-0.998387575149536,0.0279192160815001,-0.0494227483868599,-0.737060546875,-0.675718128681183,0.0121183423325419,-0.996996223926544,-0.0386678390204906,-0.0671065151691437,-0.953474044799805,-0.117439828813076,-0.277660250663757,-0.948226451873779,-0.239293247461319,-0.208818733692169,-0.704301714897156,-0.709896504878998,-0.00249292515218258,-0.984580934047699,-0.172368377447128,-0.0298211369663477,-0.967585742473602,-0.252541542053223,-0.000757731439080089,-0.955257177352905,-0.29574117064476,0.00456743594259024,-0.999810695648193,0.0190127771347761,0.00413422286510468,-0.996754229068756,-0.00982119794934988,-0.0799029096961021,-0.94219183921814,-0.330266565084457,0.0565557591617107,-0.926481902599335,0.357554107904434,0.117415569722652,-0.968520104885101,0.248048216104507,0.0210006888955832,-0.976504802703857,0.214474812150002,0.0209483057260513,-0.981073498725891,0.185131624341011,0.0567547306418419,-0.964898884296417,0.238965690135956,0.108928933739662,-0.964898884296417,0.238965690135956,0.108928933739662,-0.91506552696228,0.321639746427536,-0.243316203355789,-0.98411613702774,0.161314398050308,-0.0741151124238968,-0.926481902599335,0.357554107904434,0.117415569722652,-0.949287950992584,0.0297587495297194,0.312996447086334,-0.928847193717957,0.330903053283691,0.166571632027626,-0.965703845024109,0.257682502269745,-0.031871996819973,-0.992436170578003,0.105718493461609,-0.0624014288187027,-0.82948899269104,0.468122690916061,0.304645895957947,
- -0.942514181137085,0.3042371571064,-0.138227075338364,-0.965703845024109,0.257682502269745,-0.031871996819973,-0.928847193717957,0.330903053283691,0.166571632027626,-0.900702238082886,0.379922419786453,0.210699781775475,-0.980043232440948,0.197317138314247,0.024106677621603,-0.982634902000427,0.167352735996246,0.0801355317234993,-0.819016516208649,-0.552045524120331,0.156389132142067,-0.900702238082886,0.379922419786453,0.210699781775475,-0.982634902000427,0.167352735996246,0.0801355317234993,-0.813579380512238,-0.572541058063507,-0.101416535675526,-0.951159954071045,-0.30720528960228,-0.0303240586072207,-0.979401528835297,-0.153532639145851,0.131149753928185,-0.928880155086517,-0.368758648633957,0.0346233509480953,-0.982735097408295,-0.184984967112541,-0.00350349978543818,-0.991645991802216,-0.128558591008186,-0.0105267148464918,-0.976508259773254,0.211499720811844,0.0412256233394146,-0.646104753017426,-0.746240854263306,-0.160228699445724,-0.83734917640686,-0.509488344192505,-0.198161438107491,-0.928880155086517,-0.368758648633957,0.0346233509480953,-0.873817265033722,-0.415694206953049,-0.252273291349411,-0.83734917640686,-0.509488344192505,-0.198161438107491,-0.646104753017426,-0.746240854263306,-0.160228699445724,-0.837814688682556,-0.545594751834869,0.0198210012167692,-0.989549934864044,0.12171970307827,0.0773001909255981,-0.962778747081757,0.265341967344284,0.051485251635313,-0.974540233612061,0.223322376608849,0.0199598073959351,-0.998605847358704,0.0510356575250626,0.0134800793603063,-0.989549934864044,0.12171970307827,0.0773001909255981,-0.837814688682556,-0.545594751834869,0.0198210012167692,-0.998605847358704,0.0510356575250626,0.0134800793603063,-0.837814688682556,-0.545594751834869,0.0198210012167692,-0.934682786464691,0.331178545951843,0.129184618592262,-0.934682786464691,0.331178545951843,0.129184618592262,-0.978368043899536,-0.112178482115269,-0.173815548419952,-0.998605847358704,0.0510356575250626,0.0134800793603063,-0.331485748291016,-0.940326571464539,-0.0768320709466934,-0.336005657911301,-0.940775275230408,-0.0451891683042049,
- -0.0530837178230286,-0.99287873506546,0.106648914515972,-0.261453241109848,-0.960119247436523,0.0990612432360649,-0.127054661512375,-0.990319788455963,-0.0558920986950397,0.0719064250588417,-0.997027575969696,-0.0276639498770237,0.589707791805267,-0.107019603252411,-0.80049455165863,-0.0516132563352585,-0.984491467475891,-0.167668268084526,0.589707791805267,-0.107019603252411,-0.80049455165863,0.0719064250588417,-0.997027575969696,-0.0276639498770237,-0.0897013172507286,-0.995775163173676,-0.0196341052651405,-0.0975610613822937,-0.994592905044556,0.0355935357511044,0.993559420108795,-0.0141857331618667,0.11242102086544,0.993559420108795,-0.0141857331618667,0.11242102086544,-0.0516132563352585,-0.984491467475891,-0.167668268084526,-0.0897013172507286,-0.995775163173676,-0.0196341052651405,-0.0194034930318594,-0.956846058368683,-0.289946794509888,0.262184739112854,-0.834320962429047,-0.48494103550911,-0.885684072971344,0.44422048330307,0.135025292634964,-0.0194034930318594,-0.956846058368683,-0.289946794509888,-0.532141745090485,-0.846115589141846,-0.0302261915057898,0.262184739112854,-0.834320962429047,-0.48494103550911,-0.789842844009399,-0.607454597949982,-0.0845412313938141,-0.532141745090485,-0.846115589141846,-0.0302261915057898,-0.801191687583923,-0.579038619995117,-0.151017442345619,-0.979401528835297,-0.153532639145851,0.131149753928185,-0.900702238082886,0.379922419786453,0.210699781775475,-0.819016516208649,-0.552045524120331,0.156389132142067,-0.813579380512238,-0.572541058063507,-0.101416535675526,-0.979401528835297,-0.153532639145851,0.131149753928185,-0.819016516208649,-0.552045524120331,0.156389132142067,-0.991645991802216,-0.128558591008186,-0.0105267148464918,-0.813579380512238,-0.572541058063507,-0.101416535675526,-0.967996656894684,-0.250371605157852,0.0172193627804518,-0.978360891342163,-0.174317628145218,0.111459970474243,-0.991645991802216,-0.128558591008186,-0.0105267148464918,-0.967996656894684,-0.250371605157852,0.0172193627804518,-0.177667528390884,-0.950979232788086,0.25312602519989,-0.581327259540558,-0.707543194293976,-0.401797562837601,
- 0.383980423212051,-0.922609806060791,-0.0367458797991276,-0.493178993463516,-0.850862443447113,0.181128576397896,-0.177667528390884,-0.950979232788086,0.25312602519989,-0.373077005147934,-0.920755565166473,0.114117659628391,-0.338766932487488,-0.93842351436615,-0.0678091496229172,-0.331485748291016,-0.940326571464539,-0.0768320709466934,-0.261453241109848,-0.960119247436523,0.0990612432360649,-0.151893556118011,-0.912603139877319,-0.379583895206451,-0.996754229068756,-0.00982119794934988,-0.0799029096961021,-0.820659875869751,-0.0830289572477341,0.565352737903595,-0.968140482902527,0.250315099954605,-0.00681630289182067,-0.999810695648193,0.0190127771347761,0.00413422286510468,-0.820659875869751,-0.0830289572477341,0.565352737903595,-0.996754229068756,-0.00982119794934988,-0.0799029096961021,-0.999810695648193,0.0190127771347761,0.00413422286510468,-0.704301714897156,-0.709896504878998,-0.00249292515218258,-0.820659875869751,-0.0830289572477341,0.565352737903595,-0.996070384979248,0.0885277986526489,-0.00259710615500808,-0.929924845695496,-0.367430001497269,-0.0153313353657722,-0.972545206546783,-0.230098277330399,-0.0347949266433716,-0.978368043899536,-0.112178482115269,-0.173815548419952,-0.878314077854156,0.362553119659424,0.311640024185181,-0.962431728839874,0.26568815112114,0.0559915192425251,-0.968520104885101,0.248048216104507,0.0210006888955832,-0.926481902599335,0.357554107904434,0.117415569722652,-0.989549934864044,0.12171970307827,0.0773001909255981,-0.996742606163025,0.08006302267313,-0.00970246642827988,-0.962431728839874,0.26568815112114,0.0559915192425251,-0.962778747081757,0.265341967344284,0.051485251635313,-0.931571900844574,0.309893488883972,0.190104514360428,-0.968725085258484,0.244107902050018,0.0445302315056324,-0.970012307167053,0.241476833820343,0.0276617612689734,-0.942514181137085,0.3042371571064,-0.138227075338364,-0.976504802703857,0.214474812150002,0.0209483057260513,-0.968140482902527,0.250315099954605,-0.00681630289182067,-0.984156966209412,0.155487477779388,-0.0851973593235016,-0.968725085258484,0.244107902050018,0.0445302315056324,
- -0.980043232440948,0.197317138314247,0.024106677621603,-0.970012307167053,0.241476833820343,0.0276617612689734,-0.982634902000427,0.167352735996246,0.0801355317234993,-0.968520104885101,0.248048216104507,0.0210006888955832,-0.979344427585602,-0.202191680669785,-0.00178417924325913,-0.968140482902527,0.250315099954605,-0.00681630289182067,-0.976504802703857,0.214474812150002,0.0209483057260513,-0.832036972045898,-0.548784077167511,-0.0809355303645134,-0.996996223926544,-0.0386678390204906,-0.0671065151691437,-0.984580934047699,-0.172368377447128,-0.0298211369663477,-0.981023550033569,-0.191248878836632,-0.0318876318633556,-0.972788691520691,-0.225512996315956,-0.0531601570546627,-0.972545206546783,-0.230098277330399,-0.0347949266433716,-0.954195141792297,-0.256672263145447,-0.153723523020744,-0.909482955932617,-0.367838829755783,-0.193740501999855,-0.832036972045898,-0.548784077167511,-0.0809355303645134,-0.981023550033569,-0.191248878836632,-0.0318876318633556,-0.972788691520691,-0.225512996315956,-0.0531601570546627,-0.909482955932617,-0.367838829755783,-0.193740501999855,-0.967585742473602,-0.252541542053223,-0.000757731439080089,-0.984580934047699,-0.172368377447128,-0.0298211369663477,-0.996996223926544,-0.0386678390204906,-0.0671065151691437,-0.948226451873779,-0.239293247461319,-0.208818733692169,-0.972545206546783,-0.230098277330399,-0.0347949266433716,-0.929924845695496,-0.367430001497269,-0.0153313353657722,-0.954195141792297,-0.256672263145447,-0.153723523020744,-0.757268369197845,-0.649309635162354,-0.0702960565686226,-0.749646604061127,-0.661349773406982,-0.0254246573895216,-0.752645671367645,-0.634509265422821,-0.175847738981247,-0.801292479038239,-0.593181669712067,-0.0778844654560089,-0.873817265033722,-0.415694206953049,-0.252273291349411,-0.532141745090485,-0.846115589141846,-0.0302261915057898,-0.998387575149536,0.0279192160815001,-0.0494227483868599,-0.763817489147186,-0.642748415470123,-0.0587985292077065,-0.793589293956757,-0.605932950973511,-0.055328756570816,-0.737060546875,-0.675718128681183,0.0121183423325419,
- -0.742577850818634,-0.660943031311035,-0.108317233622074,-0.667174279689789,-0.74259477853775,-0.0585790351033211,-0.00866972748190165,-0.99809467792511,-0.0610898546874523,-0.661314845085144,-0.749813854694366,-0.0210211221128702,-0.793589293956757,-0.605932950973511,-0.055328756570816,-0.755525648593903,-0.649971008300781,-0.0819673463702202,-0.763845801353455,-0.594886422157288,-0.25029930472374,-0.749646604061127,-0.661349773406982,-0.0254246573895216,-0.326513916254044,-0.944246709346771,-0.0422719269990921,-0.544195592403412,-0.837932884693146,-0.0414686761796474,-0.371603548526764,-0.926215767860413,-0.0635219812393188,-0.387783527374268,-0.919599950313568,-0.0629268735647202,-0.0429687798023224,-0.994479596614838,0.0957293808460236,-0.0836198404431343,-0.989293813705444,-0.119604751467705,-0.394814729690552,-0.917229235172272,0.0530264712870121,-0.333074033260345,-0.941869735717773,-0.0440801046788692,-0.71414589881897,-0.698217511177063,-0.0498820245265961,-0.561381638050079,-0.827190101146698,0.0246408730745316,-0.570962905883789,-0.820003032684326,0.0399549901485443,-0.357013404369354,-0.932912170886993,-0.0470776073634624,-0.371603548526764,-0.926215767860413,-0.0635219812393188,-0.338766932487488,-0.93842351436615,-0.0678091496229172,-0.151893556118011,-0.912603139877319,-0.379583895206451,-0.349800556898117,-0.928868651390076,-0.121830031275749,-0.387783527374268,-0.919599950313568,-0.0629268735647202,-0.651559770107269,-0.745150208473206,-0.142200604081154,-0.510579168796539,-0.852820336818695,-0.109573788940907,-0.361244976520538,-0.932457506656647,-0.00501104863360524,-0.329502105712891,-0.944132149219513,0.0065408032387495,-0.0847448259592056,-0.996348917484283,-0.0103446412831545,-0.397367835044861,-0.917078733444214,0.0326392836868763,-0.145239323377609,-0.989373385906219,0.00677420664578676,-0.456530153751373,-0.877916276454926,-0.144371151924133,-0.417740643024445,-0.906261026859283,-0.0646819546818733,-0.336005657911301,-0.940775275230408,-0.0451891683042049,-0.331485748291016,-0.940326571464539,-0.0768320709466934,
- -0.373077005147934,-0.920755565166473,0.114117659628391,-0.365252017974854,-0.900040745735168,-0.237734168767929,-0.456530153751373,-0.877916276454926,-0.144371151924133,-0.493178993463516,-0.850862443447113,0.181128576397896,-0.95534735918045,-0.293407917022705,-0.0349740125238895,-0.955257177352905,-0.29574117064476,0.00456743594259024,-0.967585742473602,-0.252541542053223,-0.000757731439080089,-0.967996656894684,-0.250371605157852,0.0172193627804518,-0.928880155086517,-0.368758648633957,0.0346233509480953,-0.83734917640686,-0.509488344192505,-0.198161438107491,-0.982735097408295,-0.184984967112541,-0.00350349978543818,-0.801292479038239,-0.593181669712067,-0.0778844654560089,-0.532141745090485,-0.846115589141846,-0.0302261915057898,-0.789842844009399,-0.607454597949982,-0.0845412313938141,-0.716562211513519,-0.695054650306702,-0.0586302615702152,-0.923819959163666,0.382681578397751,-0.0105624627321959,-0.9411980509758,0.092839889228344,0.324849128723145,-0.886275112628937,0.459359973669052,-0.059200793504715,-0.801191687583923,-0.579038619995117,-0.151017442345619,-0.532141745090485,-0.846115589141846,-0.0302261915057898,-0.0194034930318594,-0.956846058368683,-0.289946794509888,-0.955257177352905,-0.29574117064476,0.00456743594259024,-0.819016516208649,-0.552045524120331,0.156389132142067,-0.711285173892975,-0.660910129547119,-0.239314198493958,-0.998605847358704,0.0510356575250626,0.0134800793603063,-0.978368043899536,-0.112178482115269,-0.173815548419952,-0.994082629680634,-0.0963283851742744,0.0502059273421764,-0.96674644947052,-0.255678176879883,0.00547642912715673,-0.343166291713715,-0.938869416713715,-0.02759107388556,-0.361244976520538,-0.932457506656647,-0.00501104863360524,-0.510579168796539,-0.852820336818695,-0.109573788940907,-0.355757892131805,-0.931257903575897,0.078708179295063,-0.822661876678467,-0.460595041513443,0.333286195993423,-0.448320627212524,-0.826743125915527,0.339859306812286,-0.71414589881897,-0.698217511177063,-0.0498820245265961,-0.355757892131805,-0.931257903575897,0.078708179295063,
- -0.668435275554657,-0.742676496505737,-0.0403228104114532,-0.122540608048439,-0.983400046825409,-0.133821502327919,-0.562755227088928,-0.813308775424957,-0.147767752408981,-0.0388844199478626,-0.995699226856232,-0.0840898156166077,-0.316585928201675,-0.935987174510956,-0.153952300548553,-0.448320627212524,-0.826743125915527,0.339859306812286,0.019390020519495,-0.991397440433502,-0.129442319273949,-0.074278935790062,-0.991140305995941,-0.110107153654099,0.908000409603119,0.351393491029739,0.228161975741386,0.884632408618927,-0.216956496238709,-0.412741273641586,0.028964864090085,-0.985059082508087,-0.16976360976696,-0.651559770107269,-0.745150208473206,-0.142200604081154,-0.349800556898117,-0.928868651390076,-0.121830031275749,-0.618527412414551,-0.615655601024628,-0.488254100084305,-0.956079006195068,-0.265544414520264,-0.124092847108841,-0.261453241109848,-0.960119247436523,0.0990612432360649,-0.0530837178230286,-0.99287873506546,0.106648914515972,-0.122540608048439,-0.983400046825409,-0.133821502327919,-0.668435275554657,-0.742676496505737,-0.0403228104114532,-0.521519720554352,-0.836824715137482,-0.166557386517525,-0.261453241109848,-0.960119247436523,0.0990612432360649,-0.668435275554657,-0.742676496505737,-0.0403228104114532,-0.448320627212524,-0.826743125915527,0.339859306812286,-0.561381638050079,-0.827190101146698,0.0246408730745316,-0.71414589881897,-0.698217511177063,-0.0498820245265961,-0.618527412414551,-0.615655601024628,-0.488254100084305,-0.151893556118011,-0.912603139877319,-0.379583895206451,0.169334039092064,-0.921322882175446,-0.349986046552658,-0.510579168796539,-0.852820336818695,-0.109573788940907,-0.651559770107269,-0.745150208473206,-0.142200604081154,-0.956079006195068,-0.265544414520264,-0.124092847108841,-0.822661876678467,-0.460595041513443,0.333286195993423,-0.922856688499451,-0.38513907790184,-0.00189429975580424,-0.510579168796539,-0.852820336818695,-0.109573788940907,-0.956079006195068,-0.265544414520264,-0.124092847108841,-0.355757892131805,-0.931257903575897,0.078708179295063,-0.71414589881897,-0.698217511177063,-0.0498820245265961,
- -0.333074033260345,-0.941869735717773,-0.0440801046788692,-0.343166291713715,-0.938869416713715,-0.02759107388556,0.0227746926248074,-0.999718368053436,0.00666990131139755,0.019390020519495,-0.991397440433502,-0.129442319273949,-0.448320627212524,-0.826743125915527,0.339859306812286,-0.822661876678467,-0.460595041513443,0.333286195993423,-0.0687121525406837,-0.997632384300232,-0.00288974889554083,-0.0738544017076492,-0.99617612361908,-0.0466770194470882,0.224552154541016,-0.973284482955933,0.0478922612965107,-0.0975610613822937,-0.994592905044556,0.0355935357511044,0.0135188028216362,-0.999211490154266,-0.0373330153524876,-0.0116702578961849,-0.999212503433228,-0.0379236675798893,-0.252959847450256,-0.967458486557007,-0.00594967184588313,-0.00667347246780992,-0.999620139598846,0.0267434604465961,-0.0432312972843647,-0.999002397060394,0.0111925797536969,-0.058394517749548,-0.998243153095245,-0.010034654289484,-0.127054661512375,-0.990319788455963,-0.0558920986950397,-0.0836198404431343,-0.989293813705444,-0.119604751467705,-0.0385873280465603,-0.999008119106293,-0.0222212206572294,-0.0432312972843647,-0.999002397060394,0.0111925797536969,-0.0836198404431343,-0.989293813705444,-0.119604751467705,-0.0429687798023224,-0.994479596614838,0.0957293808460236,-0.493178993463516,-0.850862443447113,0.181128576397896,-0.456530153751373,-0.877916276454926,-0.144371151924133,-0.331485748291016,-0.940326571464539,-0.0768320709466934,-0.338766932487488,-0.93842351436615,-0.0678091496229172,-0.521519720554352,-0.836824715137482,-0.166557386517525,-0.668435275554657,-0.742676496505737,-0.0403228104114532,-0.0388844199478626,-0.995699226856232,-0.0840898156166077,-0.0670940354466438,-0.997676432132721,-0.0118412105366588,-0.0687121525406837,-0.997632384300232,-0.00288974889554083,-0.0975610613822937,-0.994592905044556,0.0355935357511044,-0.0897013172507286,-0.995775163173676,-0.0196341052651405,-0.0516132563352585,-0.984491467475891,-0.167668268084526,-0.0476552844047546,-0.998823940753937,-0.00893398467451334,-0.0670940354466438,-0.997676432132721,-0.0118412105366588,
- -0.0516132563352585,-0.984491467475891,-0.167668268084526,0.0719064250588417,-0.997027575969696,-0.0276639498770237,-0.434711158275604,-0.899836957454681,-0.0363286696374416,-0.114964470267296,-0.992408096790314,0.0436937101185322,-0.618527412414551,-0.615655601024628,-0.488254100084305,-0.956079006195068,-0.265544414520264,-0.124092847108841,-0.114964470267296,-0.992408096790314,0.0436937101185322,0.269132882356644,-0.961352646350861,0.0580397360026836,-0.618527412414551,-0.615655601024628,-0.488254100084305,0.169334039092064,-0.921322882175446,-0.349986046552658,-0.574215710163116,-0.816272914409637,0.0630463436245918,-0.252959847450256,-0.967458486557007,-0.00594967184588313,-0.0116702578961849,-0.999212503433228,-0.0379236675798893,-0.0385873280465603,-0.999008119106293,-0.0222212206572294,-0.0429687798023224,-0.994479596614838,0.0957293808460236,-0.355757892131805,-0.931257903575897,0.078708179295063,-0.922856688499451,-0.38513907790184,-0.00189429975580424,-0.822661876678467,-0.460595041513443,0.333286195993423,-0.570962905883789,-0.820003032684326,0.0399549901485443,-0.561381638050079,-0.827190101146698,0.0246408730745316,-0.448320627212524,-0.826743125915527,0.339859306812286,-0.316585928201675,-0.935987174510956,-0.153952300548553,-0.355757892131805,-0.931257903575897,0.078708179295063,-0.510579168796539,-0.852820336818695,-0.109573788940907,-0.922856688499451,-0.38513907790184,-0.00189429975580424,-0.618527412414551,-0.615655601024628,-0.488254100084305,-0.574215710163116,-0.816272914409637,0.0630463436245918,-0.0758363455533981,-0.988967180252075,0.127250805497169,-0.434711158275604,-0.899836957454681,-0.0363286696374416,-0.151893556118011,-0.912603139877319,-0.379583895206451,-0.521519720554352,-0.836824715137482,-0.166557386517525,0.169334039092064,-0.921322882175446,-0.349986046552658,-0.956079006195068,-0.265544414520264,-0.124092847108841,-0.618527412414551,-0.615655601024628,-0.488254100084305,-0.114964470267296,-0.992408096790314,0.0436937101185322,-0.058394517749548,-0.998243153095245,-0.010034654289484,
- -0.0476552844047546,-0.998823940753937,-0.00893398467451334,0.0719064250588417,-0.997027575969696,-0.0276639498770237,-0.127054661512375,-0.990319788455963,-0.0558920986950397,-0.151893556118011,-0.912603139877319,-0.379583895206451,-0.261453241109848,-0.960119247436523,0.0990612432360649,-0.521519720554352,-0.836824715137482,-0.166557386517525,-0.521519720554352,-0.836824715137482,-0.166557386517525,-0.0388844199478626,-0.995699226856232,-0.0840898156166077,-0.574215710163116,-0.816272914409637,0.0630463436245918,-0.521519720554352,-0.836824715137482,-0.166557386517525,-0.574215710163116,-0.816272914409637,0.0630463436245918,0.169334039092064,-0.921322882175446,-0.349986046552658,-0.349800556898117,-0.928868651390076,-0.121830031275749,-0.151893556118011,-0.912603139877319,-0.379583895206451,-0.618527412414551,-0.615655601024628,-0.488254100084305,0.0227746926248074,-0.999718368053436,0.00666990131139755,-0.956079006195068,-0.265544414520264,-0.124092847108841,-0.0597397498786449,-0.954098403453827,0.293474733829498,-0.0597397498786449,-0.954098403453827,0.293474733829498,0.269132882356644,-0.961352646350861,0.0580397360026836,-0.058394517749548,-0.998243153095245,-0.010034654289484,-0.0432312972843647,-0.999002397060394,0.0111925797536969,0.269132882356644,-0.961352646350861,0.0580397360026836,-0.114964470267296,-0.992408096790314,0.0436937101185322,-0.434711158275604,-0.899836957454681,-0.0363286696374416,-0.0476552844047546,-0.998823940753937,-0.00893398467451334,-0.058394517749548,-0.998243153095245,-0.010034654289484,-0.434711158275604,-0.899836957454681,-0.0363286696374416,-0.0758363455533981,-0.988967180252075,0.127250805497169,-0.0670940354466438,-0.997676432132721,-0.0118412105366588,-0.0476552844047546,-0.998823940753937,-0.00893398467451334,-0.0388844199478626,-0.995699226856232,-0.0840898156166077,-0.0758363455533981,-0.988967180252075,0.127250805497169,-0.574215710163116,-0.816272914409637,0.0630463436245918,-0.0388844199478626,-0.995699226856232,-0.0840898156166077,-0.562755227088928,-0.813308775424957,-0.147767752408981,
- -0.0738544017076492,-0.99617612361908,-0.0466770194470882,-0.0687121525406837,-0.997632384300232,-0.00288974889554083,-0.074278935790062,-0.991140305995941,-0.110107153654099,0.019390020519495,-0.991397440433502,-0.129442319273949,0.0805711150169373,-0.99256032705307,-0.0912816822528839,-0.0116702578961849,-0.999212503433228,-0.0379236675798893,0.0135188028216362,-0.999211490154266,-0.0373330153524876,-0.0385873280465603,-0.999008119106293,-0.0222212206572294,-0.0116702578961849,-0.999212503433228,-0.0379236675798893,0.0805711150169373,-0.99256032705307,-0.0912816822528839,-0.000522643269505352,-0.980886936187744,-0.194578140974045,-0.75428181886673,0.653635919094086,0.0617974437773228,-0.888125896453857,0.458810150623322,0.0269372705370188,-0.797890365123749,0.602784395217896,-0.00466854218393564,-0.762541472911835,0.644098699092865,0.0605595335364342,-0.826912105083466,-0.528364837169647,-0.192475810647011,-0.653777003288269,0.703438460826874,0.278836518526077,-0.676836967468262,0.735946476459503,0.0165630858391523,-0.637684762477875,0.566510438919067,-0.521942496299744,-0.61616587638855,0.787615716457367,-0.00108752667438239,-0.745361089706421,0.663370847702026,0.0661502480506897,-0.331821769475937,0.942355334758759,0.0431362092494965,-0.669279456138611,0.741215705871582,0.0516173355281353,-0.0109923603013158,-0.0287357065826654,0.999526619911194,-0.653777003288269,0.703438460826874,0.278836518526077,-0.826912105083466,-0.528364837169647,-0.192475810647011,-0.757909834384918,-0.522012412548065,0.391248911619186,-0.617418646812439,-0.445560812950134,0.648282170295715,-0.0109923603013158,-0.0287357065826654,0.999526619911194,-0.669279456138611,0.741215705871582,0.0516173355281353,-0.331821769475937,0.942355334758759,0.0431362092494965,-0.62804514169693,0.671158969402313,0.393833756446838,-0.766881704330444,0.635123550891876,0.0922524631023407,-0.75428181886673,0.653635919094086,0.0617974437773228,-0.331821769475937,0.942355334758759,0.0431362092494965,-0.0109923603013158,-0.0287357065826654,0.999526619911194,0.706034660339355,0.442936778068542,0.552559614181519,
- -0.62804514169693,0.671158969402313,0.393833756446838,-0.617418646812439,-0.445560812950134,0.648282170295715,-0.653777003288269,0.703438460826874,0.278836518526077,-0.757909834384918,-0.522012412548065,0.391248911619186,0.80596923828125,0.591502845287323,-0.0231960900127888,0.795466125011444,0.563451290130615,-0.223061129450798,-0.704284727573395,0.709872722625732,-0.00798520445823669,-0.653777003288269,0.703438460826874,0.278836518526077,-0.669279456138611,0.741215705871582,0.0516173355281353,-0.762541472911835,0.644098699092865,0.0605595335364342,-0.735148310661316,0.676529467105865,0.043182086199522,-0.669279456138611,0.741215705871582,0.0516173355281353,-0.653777003288269,0.703438460826874,0.278836518526077,-0.617418646812439,-0.445560812950134,0.648282170295715,-0.768324315547943,0.635174095630646,0.0789400637149811,-0.776761829853058,0.626090049743652,0.0682070404291153,-0.98678994178772,0.0900003239512444,0.134705379605293,-0.814566075801849,0.552273750305176,0.177414000034332,-0.62804514169693,0.671158969402313,0.393833756446838,0.706034660339355,0.442936778068542,0.552559614181519,0.790483474731445,0.532884418964386,0.301943778991699,0.790483474731445,0.532884418964386,0.301943778991699,0.80596923828125,0.591502845287323,-0.0231960900127888,-0.62804514169693,0.671158969402313,0.393833756446838,-0.766881704330444,0.635123550891876,0.0922524631023407,-0.768324315547943,0.635174095630646,0.0789400637149811,-0.814566075801849,0.552273750305176,0.177414000034332,-0.852551102638245,0.509175956249237,-0.117883741855621,-0.669279456138611,0.741215705871582,0.0516173355281353,-0.331821769475937,0.942355334758759,0.0431362092494965,-0.75428181886673,0.653635919094086,0.0617974437773228,-0.762541472911835,0.644098699092865,0.0605595335364342,-0.752756178379059,0.655060648918152,0.0652199313044548,-0.797317445278168,0.595320641994476,0.0993890464305878,-0.756298780441284,0.639704704284668,0.137076571583748,-0.745361089706421,0.663370847702026,0.0661502480506897,-0.75428181886673,0.653635919094086,0.0617974437773228,
- -0.766881704330444,0.635123550891876,0.0922524631023407,-0.852551102638245,0.509175956249237,-0.117883741855621,-0.888125896453857,0.458810150623322,0.0269372705370188,-0.762541472911835,0.644098699092865,0.0605595335364342,-0.797890365123749,0.602784395217896,-0.00466854218393564,-0.785129487514496,0.609358668327332,-0.110696844756603,-0.735148310661316,0.676529467105865,0.043182086199522,-0.752756178379059,0.655060648918152,0.0652199313044548,-0.791898727416992,0.61007696390152,0.0265051405876875,-0.676836967468262,0.735946476459503,0.0165630858391523,-0.736863613128662,0.671227276325226,0.0805353224277496,-0.704284727573395,0.709872722625732,-0.00798520445823669,-0.776761829853058,0.626090049743652,0.0682070404291153,-0.768324315547943,0.635174095630646,0.0789400637149811,-0.62804514169693,0.671158969402313,0.393833756446838,0.80596923828125,0.591502845287323,-0.0231960900127888,-0.704284727573395,0.709872722625732,-0.00798520445823669,-0.736863613128662,0.671227276325226,0.0805353224277496,-0.735148310661316,0.676529467105865,0.043182086199522,-0.785129487514496,0.609358668327332,-0.110696844756603,-0.667194306850433,0.54497891664505,0.507789134979248,-0.82948899269104,0.468122690916061,0.304645895957947,-0.928847193717957,0.330903053283691,0.166571632027626,-0.667194306850433,0.54497891664505,0.507789134979248,-0.797890365123749,0.602784395217896,-0.00466854218393564,-0.888125896453857,0.458810150623322,0.0269372705370188,-0.98411613702774,0.161314398050308,-0.0741151124238968,-0.91506552696228,0.321639746427536,-0.243316203355789,-0.814566075801849,0.552273750305176,0.177414000034332,-0.98678994178772,0.0900003239512444,0.134705379605293,-0.9411980509758,0.092839889228344,0.324849128723145,-0.996797442436218,0.000722812197636813,0.0799651890993118,-0.998813331127167,-0.00815119035542011,0.0480147004127502,-0.814566075801849,0.552273750305176,0.177414000034332,-0.996797442436218,0.000722812197636813,0.0799651890993118,-0.785129487514496,0.609358668327332,-0.110696844756603,-0.797890365123749,0.602784395217896,-0.00466854218393564,
- -0.91506552696228,0.321639746427536,-0.243316203355789,-0.906212151050568,0.383681923151016,0.17767345905304,-0.785129487514496,0.609358668327332,-0.110696844756603,-0.91506552696228,0.321639746427536,-0.243316203355789,-0.667194306850433,0.54497891664505,0.507789134979248,-0.797317445278168,0.595320641994476,0.0993890464305878,-0.752756178379059,0.655060648918152,0.0652199313044548,-0.736863613128662,0.671227276325226,0.0805353224277496,-0.62804514169693,0.671158969402313,0.393833756446838,-0.704284727573395,0.709872722625732,-0.00798520445823669,-0.768324315547943,0.635174095630646,0.0789400637149811,-0.766881704330444,0.635123550891876,0.0922524631023407,-0.667194306850433,0.54497891664505,0.507789134979248,-0.906212151050568,0.383681923151016,0.17767345905304,-0.82948899269104,0.468122690916061,0.304645895957947,-0.756298780441284,0.639704704284668,0.137076571583748,-0.797317445278168,0.595320641994476,0.0993890464305878,-0.928847193717957,0.330903053283691,0.166571632027626,-0.949287950992584,0.0297587495297194,0.312996447086334,-0.667194306850433,0.54497891664505,0.507789134979248,-0.785129487514496,0.609358668327332,-0.110696844756603,-0.906212151050568,0.383681923151016,0.17767345905304,-0.852551102638245,0.509175956249237,-0.117883741855621,-0.998813331127167,-0.00815119035542011,0.0480147004127502,-0.98411613702774,0.161314398050308,-0.0741151124238968,-0.852551102638245,0.509175956249237,-0.117883741855621,-0.814566075801849,0.552273750305176,0.177414000034332,-0.998813331127167,-0.00815119035542011,0.0480147004127502,-0.888125896453857,0.458810150623322,0.0269372705370188,-0.852551102638245,0.509175956249237,-0.117883741855621,-0.98411613702774,0.161314398050308,-0.0741151124238968,-0.61616587638855,0.787615716457367,-0.00108752667438239,-0.791898727416992,0.61007696390152,0.0265051405876875,-0.752756178379059,0.655060648918152,0.0652199313044548,-0.745361089706421,0.663370847702026,0.0661502480506897,0.82126122713089,0.564299046993256,-0.0842410922050476,0.823388814926147,0.562801003456116,-0.0727040022611618,
- 0.825386524200439,0.561760067939758,-0.0562395937740803,0.834763705730438,0.548294544219971,-0.0504240207374096,0.83428281545639,0.550026595592499,-0.0379853993654251,0.825467586517334,0.562351703643799,-0.0486195795238018,0.822474956512451,0.564393401145935,-0.0706747248768806,0.800793528556824,0.592856526374817,-0.0851521044969559,0.81195068359375,0.577326774597168,-0.0861969292163849,-0.676836967468262,0.735946476459503,0.0165630858391523,-0.791898727416992,0.61007696390152,0.0265051405876875,-0.48777836561203,-0.233625888824463,-0.841124951839447,-0.826912105083466,-0.528364837169647,-0.192475810647011,-0.195113927125931,-0.0204837042838335,-0.980566620826721,-0.61616587638855,0.787615716457367,-0.00108752667438239,-0.637684762477875,0.566510438919067,-0.521942496299744,-0.195113927125931,-0.0204837042838335,-0.980566620826721,-0.48777836561203,-0.233625888824463,-0.841124951839447,-0.791898727416992,0.61007696390152,0.0265051405876875,-0.61616587638855,0.787615716457367,-0.00108752667438239,-0.923819959163666,0.382681578397751,-0.0105624627321959,-0.996797442436218,0.000722812197636813,0.0799651890993118,-0.9411980509758,0.092839889228344,0.324849128723145,-0.909482955932617,-0.367838829755783,-0.193740501999855,-0.954195141792297,-0.256672263145447,-0.153723523020744,-0.999219238758087,0.0332702919840813,0.0213053356856108,-0.96674644947052,-0.255678176879883,0.00547642912715673,-0.94219183921814,-0.330266565084457,0.0565557591617107,-0.996742606163025,0.08006302267313,-0.00970246642827988,-0.989549934864044,0.12171970307827,0.0773001909255981,-0.996754229068756,-0.00982119794934988,-0.0799029096961021,-0.979344427585602,-0.202191680669785,-0.00178417924325913,-0.996742606163025,0.08006302267313,-0.00970246642827988,-0.94219183921814,-0.330266565084457,0.0565557591617107,-0.968140482902527,0.250315099954605,-0.00681630289182067,-0.979344427585602,-0.202191680669785,-0.00178417924325913,-0.996754229068756,-0.00982119794934988,-0.0799029096961021,-0.956079006195068,-0.265544414520264,-0.124092847108841,0.269132882356644,-0.961352646350861,0.0580397360026836,
- -0.0597397498786449,-0.954098403453827,0.293474733829498,0.0227746926248074,-0.999718368053436,0.00666990131139755,-0.0597397498786449,-0.954098403453827,0.293474733829498,-0.0432312972843647,-0.999002397060394,0.0111925797536969,-0.0385873280465603,-0.999008119106293,-0.0222212206572294,-0.000522643269505352,-0.980886936187744,-0.194578140974045,-0.95534735918045,-0.293407917022705,-0.0349740125238895,-0.819016516208649,-0.552045524120331,0.156389132142067,-0.955257177352905,-0.29574117064476,0.00456743594259024,-0.991645991802216,-0.128558591008186,-0.0105267148464918,-0.951159954071045,-0.30720528960228,-0.0303240586072207,-0.813579380512238,-0.572541058063507,-0.101416535675526,-0.329502105712891,-0.944132149219513,0.0065408032387495,-0.370120108127594,-0.876559793949127,0.307658940553665,-0.361244976520538,-0.932457506656647,-0.00501104863360524,-0.343166291713715,-0.938869416713715,-0.02759107388556,-0.333074033260345,-0.941869735717773,-0.0440801046788692,-0.0847448259592056,-0.996348917484283,-0.0103446412831545,-0.329502105712891,-0.944132149219513,0.0065408032387495,-0.343166291713715,-0.938869416713715,-0.02759107388556,-0.357013404369354,-0.932912170886993,-0.0470776073634624,-0.0974836498498917,-0.99474036693573,-0.0314399562776089,-0.0847448259592056,-0.996348917484283,-0.0103446412831545,-0.333074033260345,-0.941869735717773,-0.0440801046788692,-0.0670940354466438,-0.997676432132721,-0.0118412105366588,-0.0758363455533981,-0.988967180252075,0.127250805497169,-0.0388844199478626,-0.995699226856232,-0.0840898156166077,-0.0687121525406837,-0.997632384300232,-0.00288974889554083,-0.676836967468262,0.735946476459503,0.0165630858391523,-0.653777003288269,0.703438460826874,0.278836518526077,-0.735148310661316,0.676529467105865,0.043182086199522,-0.736863613128662,0.671227276325226,0.0805353224277496,-0.750270426273346,0.358953356742859,-0.5551997423172,-0.978360891342163,-0.174317628145218,0.111459970474243,-0.948226451873779,-0.239293247461319,-0.208818733692169,-0.667194306850433,0.54497891664505,0.507789134979248,
- -0.928847193717957,0.330903053283691,0.166571632027626,-0.797317445278168,0.595320641994476,0.0993890464305878,0.338726431131363,-0.9399533867836,0.0418574921786785,-0.365252017974854,-0.900040745735168,-0.237734168767929,-0.373077005147934,-0.920755565166473,0.114117659628391,0.383980423212051,-0.922609806060791,-0.0367458797991276,-0.373077005147934,-0.920755565166473,0.114117659628391,-0.177667528390884,-0.950979232788086,0.25312602519989,0.383980423212051,-0.922609806060791,-0.0367458797991276,-0.365252017974854,-0.900040745735168,-0.237734168767929,-0.161496832966805,-0.978052794933319,0.131649196147919,-0.456530153751373,-0.877916276454926,-0.144371151924133,0.0384459979832172,0.998822569847107,-0.0295845940709114,0.0760583057999611,0.996120452880859,0.0442615412175655,0.0340074114501476,0.96150404214859,-0.272678285837173,0.0443579368293285,0.998689770698547,-0.0255153495818377,-0.0623582825064659,0.99796587228775,-0.013245327398181,-0.432798862457275,0.900681674480438,0.0381789617240429,-0.00837237387895584,0.999790191650391,-0.0186939518898726,-0.0019695833325386,0.999739468097687,0.0227411221712828,0.0337561331689358,0.999419569969177,0.00458432221785188,-0.0475633926689625,0.997498571872711,-0.0522921048104763,-0.00882187578827143,0.999758243560791,0.0201389472931623,-0.828241407871246,-0.555015087127686,0.0772938430309296,-0.59513121843338,-0.155681326985359,-0.788404822349548,-0.521752893924713,0.851813316345215,-0.0467770211398602,-0.0460329726338387,0.998927593231201,-0.00497360760346055,-0.0542169772088528,0.997612595558167,-0.0427752994000912,0.242202430963516,0.962496638298035,-0.122222006320953,0.0118275489658117,0.999851107597351,-0.0125662172213197,0.438741058111191,0.898345410823822,0.0219521168619394,0.0443981178104877,0.942532300949097,0.331152379512787,-0.00227775773964822,0.999793708324432,0.0201859883964062,0.00597162544727325,0.999982118606567,-0.000339580641593784,0.0539904125034809,0.996814072132111,-0.0587086081504822,0.306375920772552,0.951449930667877,0.0296115837991238,0.530242443084717,0.827705025672913,0.183703973889351,
- 0.0597159378230572,0.998213052749634,-0.00213285116478801,0.746381759643555,0.658132672309875,0.0988722443580627,-0.119613833725452,0.986795902252197,-0.109208472073078,0.104480721056461,0.979117631912231,0.174391746520996,0.0706014186143875,0.993646264076233,0.0876501873135567,-0.304145246744156,0.949595093727112,0.0759264677762985,-0.333836495876312,0.940202653408051,0.0676178112626076,-0.0209418870508671,0.999750256538391,-0.00779444165527821,-0.0459665507078171,0.998928725719452,-0.0053322110325098,0.151444613933563,0.988154888153076,-0.0247872825711966,0.403699070215225,0.910246849060059,-0.0920748636126518,0.136973366141319,0.99055814743042,-0.00572287291288376,-0.0466442368924618,0.998427033424377,0.0311104897409678,-0.0165662653744221,0.999507009983063,0.0266704354435205,-0.0165750961750746,0.999837458133698,0.00709338346496224,-0.0150007614865899,0.999719619750977,0.0183216091245413,0.0450408682227135,0.99548864364624,-0.083508089184761,0.0637336298823357,0.996935546398163,0.0453618131577969,0.00543001340702176,0.99902755022049,-0.0437563396990299,0.052757989615202,0.998410403728485,-0.0198335293680429,-0.0921244695782661,0.995722234249115,0.00709711341187358,-0.185357004404068,0.969879329204559,0.158040568232536,0.0637336298823357,0.996935546398163,0.0453618131577969,0.0450408682227135,0.99548864364624,-0.083508089184761,-0.374103009700775,0.926674783229828,0.0363424122333527,-0.266258865594864,0.944969296455383,-0.190103143453598,-0.0512423254549503,0.990688800811768,-0.126134663820267,0.175353437662125,0.984492242336273,-0.00510775903239846,0.0553294643759727,0.998437941074371,-0.00777341984212399,0.0506601855158806,0.998689115047455,-0.00732266437262297,-0.469326436519623,0.879460871219635,0.0792553648352623,-0.0475633926689625,0.997498571872711,-0.0522921048104763,-0.152708396315575,0.987626791000366,-0.0356842651963234,-0.00882187578827143,0.999758243560791,0.0201389472931623,0.438741058111191,0.898345410823822,0.0219521168619394,0.175613299012184,0.969532370567322,0.170783743262291,0.122378349304199,0.985678374767303,-0.116024181246758,
- 0.475815564393997,0.876848936080933,0.0688153654336929,0.489886194467545,0.868746995925903,-0.0727337747812271,0.482166856527328,0.875819087028503,-0.0213510785251856,0.0470335260033607,0.998503148555756,0.0279151275753975,0.0443579368293285,0.998689770698547,-0.0255153495818377,-0.0165662653744221,0.999507009983063,0.0266704354435205,-0.020402641966939,0.97867226600647,-0.204412490129471,0.0570985749363899,0.984885096549988,0.163526862859726,0.0223691184073687,0.999609351158142,0.0167547389864922,0.0215068887919188,0.999738931655884,0.00772242061793804,0.0337561331689358,0.999419569969177,0.00458432221785188,-0.119152456521988,0.991935670375824,-0.0431991666555405,-0.0475633926689625,0.997498571872711,-0.0522921048104763,0.459841072559357,0.886512935161591,0.0513907410204411,0.0534603744745255,0.998501300811768,0.0117086116224527,0.0570985749363899,0.984885096549988,0.163526862859726,-0.100411728024483,0.988758563995361,0.110787749290466,-0.275896787643433,0.960735678672791,0.0294609237462282,-0.0150007614865899,0.999719619750977,0.0183216091245413,-0.894191920757294,0.225233256816864,-0.386899054050446,-0.520118415355682,0.850073099136353,0.0827807784080505,-0.530927717685699,0.842624068260193,-0.0900022312998772,-0.814769923686981,0.54884272813797,-0.186873525381088,0.108601845800877,0.954786777496338,0.276745140552521,-0.118520647287369,0.991115808486938,-0.0603516772389412,-0.422665029764175,0.899045050144196,0.114333473145962,-0.138617426156998,0.990287244319916,0.0107897110283375,-0.27019065618515,0.946139276027679,0.17837481200695,0.147385597229004,0.97658360004425,-0.156722918152809,0.136973366141319,0.99055814743042,-0.00572287291288376,0.494559675455093,0.863396227359772,0.0997889414429665,-0.092932365834713,0.99563729763031,0.00836627185344696,0.109323434531689,0.993821144104004,-0.0191781781613827,0.489886194467545,0.868746995925903,-0.0727337747812271,0.475815564393997,0.876848936080933,0.0688153654336929,-0.801490247249603,-0.591162621974945,0.0902233049273491,-0.779091358184814,-0.622319459915161,0.075730673968792,
- -0.790935218334198,-0.606278479099274,0.0827522054314613,-0.304145246744156,0.949595093727112,0.0759264677762985,-0.422665029764175,0.899045050144196,0.114333473145962,-0.333836495876312,0.940202653408051,0.0676178112626076,-0.00882187578827143,0.999758243560791,0.0201389472931623,-0.152708396315575,0.987626791000366,-0.0356842651963234,-0.28632053732872,0.93494439125061,0.209522038698196,0.00543001340702176,0.99902755022049,-0.0437563396990299,-0.0921244695782661,0.995722234249115,0.00709711341187358,0.0384459979832172,0.998822569847107,-0.0295845940709114,0.482166856527328,0.875819087028503,-0.0213510785251856,0.489886194467545,0.868746995925903,-0.0727337747812271,0.306375920772552,0.951449930667877,0.0296115837991238,0.147792920470238,0.98718672990799,-0.0601628124713898,-0.437989741563797,0.898042440414429,0.0410453788936138,-0.298935353755951,0.953987956047058,-0.0233375914394856,-0.346216142177582,0.9298015832901,0.124913789331913,-0.0684424638748169,0.997474431991577,0.0189863555133343,-0.298935353755951,0.953987956047058,-0.0233375914394856,-0.826369106769562,-0.554876565933228,0.0960520952939987,-0.801490247249603,-0.591162621974945,0.0902233049273491,-0.790935218334198,-0.606278479099274,0.0827522054314613,-0.826369106769562,-0.554876565933228,0.0960520952939987,-0.855199754238129,-0.51167619228363,0.0825898349285126,-0.801490247249603,-0.591162621974945,0.0902233049273491,-0.439227253198624,0.894474387168884,0.083637110888958,-0.107562631368637,0.993521690368652,0.0366718657314777,0.319708794355392,0.341531783342361,0.883822560310364,-0.118520647287369,0.991115808486938,-0.0603516772389412,-0.020402641966939,0.97867226600647,-0.204412490129471,-0.152708396315575,0.987626791000366,-0.0356842651963234,-0.298935353755951,0.953987956047058,-0.0233375914394856,-0.0684424638748169,0.997474431991577,0.0189863555133343,0.147792920470238,0.98718672990799,-0.0601628124713898,-0.0591606386005878,0.998075902462006,0.0185616854578257,0.00543001340702176,0.99902755022049,-0.0437563396990299,0.0384459979832172,0.998822569847107,-0.0295845940709114,
- 0.0443579368293285,0.998689770698547,-0.0255153495818377,0.0470335260033607,0.998503148555756,0.0279151275753975,-0.0165662653744221,0.999507009983063,0.0266704354435205,0.0443579368293285,0.998689770698547,-0.0255153495818377,0.0340074114501476,0.96150404214859,-0.272678285837173,0.151444613933563,0.988154888153076,-0.0247872825711966,0.0340074114501476,0.96150404214859,-0.272678285837173,0.710468530654907,0.676199972629547,-0.194905042648315,0.557927370071411,0.811709702014923,-0.172755390405655,0.0349397175014019,0.997910797595978,0.0543439425528049,-0.0321865007281303,0.981729924678802,-0.187538087368011,0.0348725169897079,0.999375343322754,0.00573472073301673,0.033844880759716,0.999010741710663,-0.0288475416600704,0.217958450317383,0.975911140441895,-0.00956654828041792,0.221486121416092,0.975022614002228,-0.0165746342390776,0.456055015325546,0.889782249927521,0.0173655953258276,0.316042810678482,0.947641968727112,-0.0457336865365505,0.622950613498688,0.764351308345795,0.166432082653046,0.114571556448936,0.989043891429901,0.0930891409516335,0.108601845800877,0.954786777496338,0.276745140552521,0.0570985749363899,0.984885096549988,0.163526862859726,-0.118520647287369,0.991115808486938,-0.0603516772389412,-0.0165662653744221,0.999507009983063,0.0266704354435205,0.276537150144577,0.960378587245941,0.0346418283879757,0.0470335260033607,0.998503148555756,0.0279151275753975,-0.749758958816528,0.637046575546265,-0.178977847099304,0.276537150144577,0.960378587245941,0.0346418283879757,-0.298935353755951,0.953987956047058,-0.0233375914394856,0.0443981178104877,0.942532300949097,0.331152379512787,0.438741058111191,0.898345410823822,0.0219521168619394,0.521868050098419,0.738126039505005,0.427578985691071,0.494559675455093,0.863396227359772,0.0997889414429665,0.456055015325546,0.889782249927521,0.0173655953258276,0.221486121416092,0.975022614002228,-0.0165746342390776,-0.749758958816528,0.637046575546265,-0.178977847099304,-0.437989741563797,0.898042440414429,0.0410453788936138,-0.112138129770756,0.984354972839355,-0.135905161499977,
- 0.217958450317383,0.975911140441895,-0.00956654828041792,0.0336074307560921,0.954145729541779,0.297449976205826,-0.047412134706974,0.998843610286713,-0.00797358248382807,-0.0460329726338387,0.998927593231201,-0.00497360760346055,0.217958450317383,0.975911140441895,-0.00956654828041792,0.456055015325546,0.889782249927521,0.0173655953258276,0.731207609176636,0.681511282920837,-0.0296288412064314,0.0336074307560921,0.954145729541779,0.297449976205826,0.456055015325546,0.889782249927521,0.0173655953258276,0.0340074114501476,0.96150404214859,-0.272678285837173,0.731207609176636,0.681511282920837,-0.0296288412064314,-0.304145246744156,0.949595093727112,0.0759264677762985,-0.0459665507078171,0.998928725719452,-0.0053322110325098,0.15976981818676,0.978236973285675,0.132386073470116,-0.304145246744156,0.949595093727112,0.0759264677762985,0.15976981818676,0.978236973285675,0.132386073470116,-0.422665029764175,0.899045050144196,0.114333473145962,0.306375920772552,0.951449930667877,0.0296115837991238,0.0539904125034809,0.996814072132111,-0.0587086081504822,0.482166856527328,0.875819087028503,-0.0213510785251856,0.122378349304199,0.985678374767303,-0.116024181246758,0.175613299012184,0.969532370567322,0.170783743262291,0.0760318264365196,0.99702787399292,-0.0124307908117771,0.0337561331689358,0.999419569969177,0.00458432221785188,0.234514713287354,0.919992685317993,-0.314032703638077,-0.275896787643433,0.960735678672791,0.0294609237462282,-0.100411728024483,0.988758563995361,0.110787749290466,0.183899343013763,0.982565939426422,0.0272968001663685,-0.275896787643433,0.960735678672791,0.0294609237462282,0.234514713287354,0.919992685317993,-0.314032703638077,0.661424696445465,-0.712133407592773,0.235337063670158,0.24333219230175,-0.11234737187624,0.96341460943222,0.0526629202067852,0.983144402503967,0.175081953406334,0.0553294643759727,0.998437941074371,-0.00777341984212399,0.175353437662125,0.984492242336273,-0.00510775903239846,0.0349397175014019,0.997910797595978,0.0543439425528049,0.033844880759716,0.999010741710663,-0.0288475416600704,
- 0.521868050098419,0.738126039505005,0.427578985691071,0.438741058111191,0.898345410823822,0.0219521168619394,0.122378349304199,0.985678374767303,-0.116024181246758,0.494559675455093,0.863396227359772,0.0997889414429665,0.122378349304199,0.985678374767303,-0.116024181246758,0.147385597229004,0.97658360004425,-0.156722918152809,0.622950613498688,0.764351308345795,0.166432082653046,0.746381759643555,0.658132672309875,0.0988722443580627,0.0597159378230572,0.998213052749634,-0.00213285116478801,0.114571556448936,0.989043891429901,0.0930891409516335,0.0597159378230572,0.998213052749634,-0.00213285116478801,0.00299072056077421,0.999991774559021,-0.00271686003543437,0.00201924843713641,0.99994945526123,0.00985068175941706,-0.0019695833325386,0.999739468097687,0.0227411221712828,0.114571556448936,0.989043891429901,0.0930891409516335,-0.530927717685699,0.842624068260193,-0.0900022312998772,-0.520118415355682,0.850073099136353,0.0827807784080505,-0.669606149196625,0.73425430059433,-0.1117949411273,-0.275896787643433,0.960735678672791,0.0294609237462282,-0.0257828254252672,0.999537169933319,-0.016140416264534,-0.0150007614865899,0.999719619750977,0.0183216091245413,0.710468530654907,0.676199972629547,-0.194905042648315,-0.310841679573059,0.949286758899689,0.047244917601347,0.721322953701019,0.687304019927979,-0.0854770615696907,0.428367972373962,0.901957333087921,-0.0545349046587944,-0.0110572455450892,0.996600806713104,-0.0816374272108078,0.721322953701019,0.687304019927979,-0.0854770615696907,0.441138416528702,0.892404913902283,0.0949229300022125,0.197122663259506,0.980308890342712,-0.0117138791829348,-0.0321865007281303,0.981729924678802,-0.187538087368011,-0.27019065618515,0.946139276027679,0.17837481200695,-0.333836495876312,0.940202653408051,0.0676178112626076,-0.422665029764175,0.899045050144196,0.114333473145962,-0.266258865594864,0.944969296455383,-0.190103143453598,0.052757989615202,0.998410403728485,-0.0198335293680429,0.00543001340702176,0.99902755022049,-0.0437563396990299,-0.848821043968201,-0.518514335155487,0.103178061544895,
- -0.826369106769562,-0.554876565933228,0.0960520952939987,-0.790935218334198,-0.606278479099274,0.0827522054314613,0.0234138295054436,0.999645411968231,-0.0126838712021708,0.00201924843713641,0.99994945526123,0.00985068175941706,0.00299072056077421,0.999991774559021,-0.00271686003543437,0.390526920557022,0.915257811546326,-0.0989547893404961,-0.37940788269043,0.925110697746277,0.0148283988237381,-0.59513121843338,-0.155681326985359,-0.788404822349548,0.610550224781036,0.541379451751709,-0.578045666217804,0.0760583057999611,0.996120452880859,0.0442615412175655,-0.310841679573059,0.949286758899689,0.047244917601347,0.710468530654907,0.676199972629547,-0.194905042648315,0.0340074114501476,0.96150404214859,-0.272678285837173,0.0760583057999611,0.996120452880859,0.0442615412175655,0.710468530654907,0.676199972629547,-0.194905042648315,0.459841072559357,0.886512935161591,0.0513907410204411,0.0570985749363899,0.984885096549988,0.163526862859726,0.108601845800877,0.954786777496338,0.276745140552521,0.108601845800877,0.954786777496338,0.276745140552521,-0.894191920757294,0.225233256816864,-0.386899054050446,-0.530927717685699,0.842624068260193,-0.0900022312998772,-0.0459665507078171,0.998928725719452,-0.0053322110325098,-0.108472086489201,0.990243971347809,-0.0874672904610634,-0.119613833725452,0.986795902252197,-0.109208472073078,-0.0459665507078171,0.998928725719452,-0.0053322110325098,-0.119613833725452,0.986795902252197,-0.109208472073078,-0.0165750961750746,0.999837458133698,0.00709338346496224,0.108259752392769,0.894706189632416,0.433336675167084,-0.469326436519623,0.879460871219635,0.0792553648352623,-0.325438678264618,0.937838137149811,-0.1206199452281,0.122378349304199,0.985678374767303,-0.116024181246758,0.494559675455093,0.863396227359772,0.0997889414429665,0.521868050098419,0.738126039505005,0.427578985691071,0.494559675455093,0.863396227359772,0.0997889414429665,0.0443981178104877,0.942532300949097,0.331152379512787,0.521868050098419,0.738126039505005,0.427578985691071,0.0597159378230572,0.998213052749634,-0.00213285116478801,
- 0.530242443084717,0.827705025672913,0.183703973889351,0.00299072056077421,0.999991774559021,-0.00271686003543437,0.108601845800877,0.954786777496338,0.276745140552521,-0.530927717685699,0.842624068260193,-0.0900022312998772,0.459841072559357,0.886512935161591,0.0513907410204411,0.710468530654907,0.676199972629547,-0.194905042648315,0.721322953701019,0.687304019927979,-0.0854770615696907,-0.0110572455450892,0.996600806713104,-0.0816374272108078,0.712126672267914,0.649540901184082,-0.266405999660492,0.122378349304199,0.985678374767303,-0.116024181246758,-0.00882187578827143,0.999758243560791,0.0201389472931623,0.147385597229004,0.97658360004425,-0.156722918152809,-0.0209418870508671,0.999750256538391,-0.00779444165527821,0.359273016452789,0.92820405960083,-0.0967470929026604,-0.108472086489201,0.990243971347809,-0.0874672904610634,-0.0459665507078171,0.998928725719452,-0.0053322110325098,0.0534603744745255,0.998501300811768,0.0117086116224527,0.112090103328228,0.993144631385803,0.0331580229103565,-0.138617426156998,0.990287244319916,0.0107897110283375,0.0443981178104877,0.942532300949097,0.331152379512787,0.221486121416092,0.975022614002228,-0.0165746342390776,0.0118275489658117,0.999851107597351,-0.0125662172213197,0.0154152614995837,0.999819755554199,0.0110760442912579,0.221486121416092,0.975022614002228,-0.0165746342390776,0.0443981178104877,0.942532300949097,0.331152379512787,0.494559675455093,0.863396227359772,0.0997889414429665,-0.0292356908321381,0.999481916427612,-0.0134568139910698,0.0539904125034809,0.996814072132111,-0.0587086081504822,0.00597162544727325,0.999982118606567,-0.000339580641593784,-0.100411728024483,0.988758563995361,0.110787749290466,0.0706014186143875,0.993646264076233,0.0876501873135567,0.234514713287354,0.919992685317993,-0.314032703638077,-0.119613833725452,0.986795902252197,-0.109208472073078,0.0706014186143875,0.993646264076233,0.0876501873135567,-0.100411728024483,0.988758563995361,0.110787749290466,-0.0466442368924618,0.998427033424377,0.0311104897409678,-0.00882187578827143,0.999758243560791,0.0201389472931623,
- -0.28632053732872,0.93494439125061,0.209522038698196,-0.0512423254549503,0.990688800811768,-0.126134663820267,-0.0464620850980282,0.997954607009888,0.043907605111599,-0.374103009700775,0.926674783229828,0.0363424122333527,0.0760318264365196,0.99702787399292,-0.0124307908117771,-0.0292356908321381,0.999481916427612,-0.0134568139910698,0.0337561331689358,0.999419569969177,0.00458432221785188,-0.0292356908321381,0.999481916427612,-0.0134568139910698,-0.119152456521988,0.991935670375824,-0.0431991666555405,0.0337561331689358,0.999419569969177,0.00458432221785188,0.0450408682227135,0.99548864364624,-0.083508089184761,0.216856941580772,0.974991321563721,-0.0486310012638569,0.108259752392769,0.894706189632416,0.433336675167084,-0.325438678264618,0.937838137149811,-0.1206199452281,-0.325438678264618,0.937838137149811,-0.1206199452281,-0.185357004404068,0.969879329204559,0.158040568232536,0.0450408682227135,0.99548864364624,-0.083508089184761,-0.346216142177582,0.9298015832901,0.124913789331913,-0.0466442368924618,0.998427033424377,0.0311104897409678,-0.28632053732872,0.93494439125061,0.209522038698196,-0.152708396315575,0.987626791000366,-0.0356842651963234,-0.0684424638748169,0.997474431991577,0.0189863555133343,-0.346216142177582,0.9298015832901,0.124913789331913,-0.28632053732872,0.93494439125061,0.209522038698196,0.438741058111191,0.898345410823822,0.0219521168619394,0.475815564393997,0.876848936080933,0.0688153654336929,0.175613299012184,0.969532370567322,0.170783743262291,-0.278394550085068,0.938945949077606,-0.202180743217468,-0.378088891506195,0.925196170806885,-0.0325718782842159,-0.255537182092667,0.963691294193268,-0.0774582624435425,-0.303711771965027,0.952641546726227,-0.0152737237513065,0.151444613933563,0.988154888153076,-0.0247872825711966,0.0340074114501476,0.96150404214859,-0.272678285837173,0.456055015325546,0.889782249927521,0.0173655953258276,0.482166856527328,0.875819087028503,-0.0213510785251856,0.0760318264365196,0.99702787399292,-0.0124307908117771,0.175613299012184,0.969532370567322,0.170783743262291,
- 0.175613299012184,0.969532370567322,0.170783743262291,0.475815564393997,0.876848936080933,0.0688153654336929,0.482166856527328,0.875819087028503,-0.0213510785251856,-0.814769923686981,0.54884272813797,-0.186873525381088,-0.0475633926689625,0.997498571872711,-0.0522921048104763,-0.119152456521988,0.991935670375824,-0.0431991666555405,0.403699070215225,0.910246849060059,-0.0920748636126518,0.456055015325546,0.889782249927521,0.0173655953258276,0.494559675455093,0.863396227359772,0.0997889414429665,0.151444613933563,0.988154888153076,-0.0247872825711966,0.456055015325546,0.889782249927521,0.0173655953258276,0.403699070215225,0.910246849060059,-0.0920748636126518,-0.107562631368637,0.993521690368652,0.0366718657314777,0.740525782108307,0.593146204948425,0.315909892320633,0.319708794355392,0.341531783342361,0.883822560310364,0.740525782108307,0.593146204948425,0.315909892320633,-0.449842303991318,0.878054738044739,0.163284465670586,-0.0838579908013344,0.988302171230316,0.127383902668953,-0.469326436519623,0.879460871219635,0.0792553648352623,-0.00776421185582876,0.999621748924255,0.0263817440718412,-0.325438678264618,0.937838137149811,-0.1206199452281,-0.0300861038267612,0.999101758003235,-0.0298431720584631,-0.557662189006805,0.830048739910126,0.00565983168780804,0.036642100661993,0.996892392635345,0.0697338059544563,-0.107562631368637,0.993521690368652,0.0366718657314777,-0.449842303991318,0.878054738044739,0.163284465670586,0.740525782108307,0.593146204948425,0.315909892320633,-0.118520647287369,0.991115808486938,-0.0603516772389412,-0.152708396315575,0.987626791000366,-0.0356842651963234,-0.0475633926689625,0.997498571872711,-0.0522921048104763,-0.814769923686981,0.54884272813797,-0.186873525381088,-0.118520647287369,0.991115808486938,-0.0603516772389412,-0.0475633926689625,0.997498571872711,-0.0522921048104763,0.276537150144577,0.960378587245941,0.0346418283879757,-0.749758958816528,0.637046575546265,-0.178977847099304,0.0470335260033607,0.998503148555756,0.0279151275753975,0.0470335260033607,0.998503148555756,0.0279151275753975,
- -0.749758958816528,0.637046575546265,-0.178977847099304,-0.0591606386005878,0.998075902462006,0.0185616854578257,0.0223691184073687,0.999609351158142,0.0167547389864922,-0.0385392718017101,0.995861291885376,-0.0823101550340652,0.000923843414057046,0.994930744171143,0.100558869540691,-0.0385392718017101,0.995861291885376,-0.0823101550340652,-0.185357004404068,0.969879329204559,0.158040568232536,0.000923843414057046,0.994930744171143,0.100558869540691,0.459841072559357,0.886512935161591,0.0513907410204411,-0.530927717685699,0.842624068260193,-0.0900022312998772,0.12159164249897,0.990004360675812,0.0714629888534546,0.319708794355392,0.341531783342361,0.883822560310364,-0.0936000421643257,0.157333180308342,0.983099937438965,-0.439227253198624,0.894474387168884,0.083637110888958,-0.495427459478378,0.862771391868591,0.100882269442081,-0.805728912353516,-0.404328018426895,0.432804614305496,-0.828241407871246,-0.555015087127686,0.0772938430309296,-0.266258865594864,0.944969296455383,-0.190103143453598,0.00543001340702176,0.99902755022049,-0.0437563396990299,-0.0591606386005878,0.998075902462006,0.0185616854578257,-0.266258865594864,0.944969296455383,-0.190103143453598,-0.0591606386005878,0.998075902462006,0.0185616854578257,-0.0512423254549503,0.990688800811768,-0.126134663820267,-0.437989741563797,0.898042440414429,0.0410453788936138,-0.749758958816528,0.637046575546265,-0.178977847099304,-0.298935353755951,0.953987956047058,-0.0233375914394856,-0.805728912353516,-0.404328018426895,0.432804614305496,-0.495427459478378,0.862771391868591,0.100882269442081,-0.803639352321625,0.585812270641327,0.104822859168053,-0.0684424638748169,0.997474431991577,0.0189863555133343,-0.152708396315575,0.987626791000366,-0.0356842651963234,-0.020402641966939,0.97867226600647,-0.204412490129471,-0.37940788269043,0.925110697746277,0.0148283988237381,0.610550224781036,0.541379451751709,-0.578045666217804,-0.41439750790596,0.904797077178955,-0.0980658829212189,0.136973366141319,0.99055814743042,-0.00572287291288376,0.403699070215225,0.910246849060059,-0.0920748636126518,
- 0.494559675455093,0.863396227359772,0.0997889414429665,0.0539904125034809,0.996814072132111,-0.0587086081504822,-0.0292356908321381,0.999481916427612,-0.0134568139910698,0.0760318264365196,0.99702787399292,-0.0124307908117771,0.482166856527328,0.875819087028503,-0.0213510785251856,0.0539904125034809,0.996814072132111,-0.0587086081504822,0.0760318264365196,0.99702787399292,-0.0124307908117771,-0.749758958816528,0.637046575546265,-0.178977847099304,-0.0512423254549503,0.990688800811768,-0.126134663820267,-0.0591606386005878,0.998075902462006,0.0185616854578257,0.610550224781036,0.541379451751709,-0.578045666217804,0.740525782108307,0.593146204948425,0.315909892320633,-0.0838579908013344,0.988302171230316,0.127383902668953,0.610550224781036,0.541379451751709,-0.578045666217804,-0.0838579908013344,0.988302171230316,0.127383902668953,-0.41439750790596,0.904797077178955,-0.0980658829212189,0.175353437662125,0.984492242336273,-0.00510775903239846,-0.586131811141968,0.692200362682343,0.421079695224762,0.0349397175014019,0.997910797595978,0.0543439425528049,-0.298935353755951,0.953987956047058,-0.0233375914394856,0.276537150144577,0.960378587245941,0.0346418283879757,-0.346216142177582,0.9298015832901,0.124913789331913,0.147792920470238,0.98718672990799,-0.0601628124713898,-0.0684424638748169,0.997474431991577,0.0189863555133343,-0.020402641966939,0.97867226600647,-0.204412490129471,-0.469326436519623,0.879460871219635,0.0792553648352623,0.0506601855158806,0.998689115047455,-0.00732266437262297,0.0215068887919188,0.999738931655884,0.00772242061793804,-0.00776421185582876,0.999621748924255,0.0263817440718412,0.175353437662125,0.984492242336273,-0.00510775903239846,-0.0399722456932068,0.995632410049438,-0.0843694880604744,-0.586131811141968,0.692200362682343,0.421079695224762,0.316042810678482,0.947641968727112,-0.0457336865365505,-0.00837237387895584,0.999790191650391,-0.0186939518898726,-0.0257828254252672,0.999537169933319,-0.016140416264534,-0.275896787643433,0.960735678672791,0.0294609237462282,0.183899343013763,0.982565939426422,0.0272968001663685,
- 0.183899343013763,0.982565939426422,0.0272968001663685,0.234514713287354,0.919992685317993,-0.314032703638077,0.622950613498688,0.764351308345795,0.166432082653046,0.316042810678482,0.947641968727112,-0.0457336865365505,0.0641114786267281,0.994951605796814,-0.0772081166505814,-0.0150093352422118,0.998748421669006,0.0477108657360077,-0.108472086489201,0.990243971347809,-0.0874672904610634,0.359273016452789,0.92820405960083,-0.0967470929026604,0.104480721056461,0.979117631912231,0.174391746520996,-0.119613833725452,0.986795902252197,-0.109208472073078,-0.108472086489201,0.990243971347809,-0.0874672904610634,-0.0150093352422118,0.998748421669006,0.0477108657360077,0.15976981818676,0.978236973285675,0.132386073470116,-0.0459665507078171,0.998928725719452,-0.0053322110325098,0.0637336298823357,0.996935546398163,0.0453618131577969,-0.185357004404068,0.969879329204559,0.158040568232536,0.15976981818676,0.978236973285675,0.132386073470116,0.0637336298823357,0.996935546398163,0.0453618131577969,-0.0385392718017101,0.995861291885376,-0.0823101550340652,-0.138617426156998,0.990287244319916,0.0107897110283375,-0.422665029764175,0.899045050144196,0.114333473145962,0.12159164249897,0.990004360675812,0.0714629888534546,0.112090103328228,0.993144631385803,0.0331580229103565,0.0534603744745255,0.998501300811768,0.0117086116224527,0.459841072559357,0.886512935161591,0.0513907410204411,-0.530927717685699,0.842624068260193,-0.0900022312998772,-0.274425715208054,0.960782587528229,0.03984160348773,0.12159164249897,0.990004360675812,0.0714629888534546,-0.669606149196625,0.73425430059433,-0.1117949411273,-0.274425715208054,0.960782587528229,0.03984160348773,-0.530927717685699,0.842624068260193,-0.0900022312998772,-0.657060086727142,0.747391879558563,0.0983739942312241,0.036642100661993,0.996892392635345,0.0697338059544563,0.00201924843713641,0.99994945526123,0.00985068175941706,0.0234138295054436,0.999645411968231,-0.0126838712021708,-0.0300861038267612,0.999101758003235,-0.0298431720584631,0.036642100661993,0.996892392635345,0.0697338059544563,
- -0.657060086727142,0.747391879558563,0.0983739942312241,-0.0300861038267612,0.999101758003235,-0.0298431720584631,-0.657060086727142,0.747391879558563,0.0983739942312241,0.441138416528702,0.892404913902283,0.0949229300022125,0.441138416528702,0.892404913902283,0.0949229300022125,-0.0321865007281303,0.981729924678802,-0.187538087368011,-0.0300861038267612,0.999101758003235,-0.0298431720584631,-0.0490848682820797,0.998621106147766,-0.0186192356050015,-0.0713753178715706,0.997410953044891,0.00877050682902336,-0.600573897361755,0.788468420505524,0.132772415876389,-0.0195126868784428,0.997131586074829,0.0731292441487312,-0.37940788269043,0.925110697746277,0.0148283988237381,-0.597466468811035,0.800585567951202,0.0457874052226543,-0.59513121843338,-0.155681326985359,-0.788404822349548,-0.521752893924713,0.851813316345215,-0.0467770211398602,-0.59513121843338,-0.155681326985359,-0.788404822349548,-0.597466468811035,0.800585567951202,0.0457874052226543,-0.502485573291779,0.862419486045837,0.0611637234687805,-0.495427459478378,0.862771391868591,0.100882269442081,-0.828241407871246,-0.555015087127686,0.0772938430309296,-0.828241407871246,-0.555015087127686,0.0772938430309296,-0.521752893924713,0.851813316345215,-0.0467770211398602,-0.502485573291779,0.862419486045837,0.0611637234687805,-0.814769923686981,0.54884272813797,-0.186873525381088,-0.894191920757294,0.225233256816864,-0.386899054050446,0.108601845800877,0.954786777496338,0.276745140552521,-0.814769923686981,0.54884272813797,-0.186873525381088,-0.520118415355682,0.850073099136353,0.0827807784080505,-0.894191920757294,0.225233256816864,-0.386899054050446,-0.0292356908321381,0.999481916427612,-0.0134568139910698,-0.520118415355682,0.850073099136353,0.0827807784080505,-0.119152456521988,0.991935670375824,-0.0431991666555405,-0.422665029764175,0.899045050144196,0.114333473145962,0.15976981818676,0.978236973285675,0.132386073470116,-0.185357004404068,0.969879329204559,0.158040568232536,-0.0385392718017101,0.995861291885376,-0.0823101550340652,-0.422665029764175,0.899045050144196,0.114333473145962,
- -0.185357004404068,0.969879329204559,0.158040568232536,0.0534603744745255,0.998501300811768,0.0117086116224527,-0.0385392718017101,0.995861291885376,-0.0823101550340652,0.0223691184073687,0.999609351158142,0.0167547389864922,0.0570985749363899,0.984885096549988,0.163526862859726,0.0534603744745255,0.998501300811768,0.0117086116224527,0.0223691184073687,0.999609351158142,0.0167547389864922,-0.335392713546753,-0.719850122928619,-0.607723236083984,-0.056560643017292,0.537815392017365,-0.841163218021393,-0.0706779882311821,-0.00475694611668587,-0.997487843036652,0.0336074307560921,0.954145729541779,0.297449976205826,0.731207609176636,0.681511282920837,-0.0296288412064314,0.557927370071411,0.811709702014923,-0.172755390405655,0.760872602462769,0.648362278938293,-0.0264415480196476,-0.047412134706974,0.998843610286713,-0.00797358248382807,-0.0490848682820797,0.998621106147766,-0.0186192356050015,-0.0195126868784428,0.997131586074829,0.0731292441487312,-0.109966956079006,0.939654409885406,-0.323970347642899,-0.0399722456932068,0.995632410049438,-0.0843694880604744,0.108259752392769,0.894706189632416,0.433336675167084,0.216856941580772,0.974991321563721,-0.0486310012638569,0.175353437662125,0.984492242336273,-0.00510775903239846,0.108259752392769,0.894706189632416,0.433336675167084,-0.0399722456932068,0.995632410049438,-0.0843694880604744,0.175353437662125,0.984492242336273,-0.00510775903239846,-0.469326436519623,0.879460871219635,0.0792553648352623,0.108259752392769,0.894706189632416,0.433336675167084,0.197122663259506,0.980308890342712,-0.0117138791829348,-0.0464620850980282,0.997954607009888,0.043907605111599,0.0348725169897079,0.999375343322754,0.00573472073301673,-0.0321865007281303,0.981729924678802,-0.187538087368011,0.114571556448936,0.989043891429901,0.0930891409516335,-0.0019695833325386,0.999739468097687,0.0227411221712828,-0.00837237387895584,0.999790191650391,-0.0186939518898726,0.316042810678482,0.947641968727112,-0.0457336865365505,0.036642100661993,0.996892392635345,0.0697338059544563,-0.0623582825064659,0.99796587228775,-0.013245327398181,
- -0.0019695833325386,0.999739468097687,0.0227411221712828,0.00201924843713641,0.99994945526123,0.00985068175941706,-0.100411728024483,0.988758563995361,0.110787749290466,-0.0150007614865899,0.999719619750977,0.0183216091245413,-0.0165750961750746,0.999837458133698,0.00709338346496224,-0.119613833725452,0.986795902252197,-0.109208472073078,-0.0257828254252672,0.999537169933319,-0.016140416264534,0.216856941580772,0.974991321563721,-0.0486310012638569,0.0450408682227135,0.99548864364624,-0.083508089184761,-0.0150007614865899,0.999719619750977,0.0183216091245413,-0.0459665507078171,0.998928725719452,-0.0053322110325098,-0.0165750961750746,0.999837458133698,0.00709338346496224,0.0637336298823357,0.996935546398163,0.0453618131577969,-0.00837237387895584,0.999790191650391,-0.0186939518898726,-0.432798862457275,0.900681674480438,0.0381789617240429,0.216856941580772,0.974991321563721,-0.0486310012638569,-0.0257828254252672,0.999537169933319,-0.016140416264534,-0.437989741563797,0.898042440414429,0.0410453788936138,0.147792920470238,0.98718672990799,-0.0601628124713898,0.0506601855158806,0.998689115047455,-0.00732266437262297,0.0553294643759727,0.998437941074371,-0.00777341984212399,0.033844880759716,0.999010741710663,-0.0288475416600704,0.0348725169897079,0.999375343322754,0.00573472073301673,-0.0512423254549503,0.990688800811768,-0.126134663820267,-0.112138129770756,0.984354972839355,-0.135905161499977,-0.437989741563797,0.898042440414429,0.0410453788936138,0.0553294643759727,0.998437941074371,-0.00777341984212399,0.033844880759716,0.999010741710663,-0.0288475416600704,-0.112138129770756,0.984354972839355,-0.135905161499977,0.0215068887919188,0.999738931655884,0.00772242061793804,0.0506601855158806,0.998689115047455,-0.00732266437262297,0.147792920470238,0.98718672990799,-0.0601628124713898,-0.020402641966939,0.97867226600647,-0.204412490129471,0.0348725169897079,0.999375343322754,0.00573472073301673,-0.0464620850980282,0.997954607009888,0.043907605111599,-0.0512423254549503,0.990688800811768,-0.126134663820267,0.0337561331689358,0.999419569969177,0.00458432221785188,
- -0.00882187578827143,0.999758243560791,0.0201389472931623,0.122378349304199,0.985678374767303,-0.116024181246758,-0.0405947715044022,0.99914813041687,-0.00742907868698239,-0.669606149196625,0.73425430059433,-0.1117949411273,-0.520118415355682,0.850073099136353,0.0827807784080505,0.276537150144577,0.960378587245941,0.0346418283879757,-0.0165662653744221,0.999507009983063,0.0266704354435205,-0.0466442368924618,0.998427033424377,0.0311104897409678,-0.346216142177582,0.9298015832901,0.124913789331913,0.0384459979832172,0.998822569847107,-0.0295845940709114,-0.0921244695782661,0.995722234249115,0.00709711341187358,-0.310841679573059,0.949286758899689,0.047244917601347,0.0760583057999611,0.996120452880859,0.0442615412175655,-0.0466442368924618,0.998427033424377,0.0311104897409678,0.136973366141319,0.99055814743042,-0.00572287291288376,0.147385597229004,0.97658360004425,-0.156722918152809,-0.00882187578827143,0.999758243560791,0.0201389472931623,0.221486121416092,0.975022614002228,-0.0165746342390776,0.217958450317383,0.975911140441895,-0.00956654828041792,-0.0460329726338387,0.998927593231201,-0.00497360760346055,0.0118275489658117,0.999851107597351,-0.0125662172213197,-0.449842303991318,0.878054738044739,0.163284465670586,-0.41439750790596,0.904797077178955,-0.0980658829212189,-0.0838579908013344,0.988302171230316,0.127383902668953,-0.00302056316286325,0.999995112419128,-0.000837060157209635,0.355418622493744,0.934551298618317,-0.0170707926154137,0.15021313726902,0.985608518123627,0.077536016702652,0.0301218535751104,0.997024595737457,0.0709550380706787,-0.0174718741327524,0.999844312667847,0.00247152871452272,-0.0460329726338387,0.998927593231201,-0.00497360760346055,-0.047412134706974,0.998843610286713,-0.00797358248382807,-0.109966956079006,0.939654409885406,-0.323970347642899,-0.0542169772088528,0.997612595558167,-0.0427752994000912,0.0118275489658117,0.999851107597351,-0.0125662172213197,0.242202430963516,0.962496638298035,-0.122222006320953,0.0634124651551247,0.985543549060822,-0.157106667757034,0.0154152614995837,0.999819755554199,0.0110760442912579,
- -0.00227775773964822,0.999793708324432,0.0201859883964062,-0.092932365834713,0.99563729763031,0.00836627185344696,0.475815564393997,0.876848936080933,0.0688153654336929,0.438741058111191,0.898345410823822,0.0219521168619394,-0.0110572455450892,0.996600806713104,-0.0816374272108078,0.428367972373962,0.901957333087921,-0.0545349046587944,-0.0713753178715706,0.997410953044891,0.00877050682902336,-0.0490848682820797,0.998621106147766,-0.0186192356050015,0.760872602462769,0.648362278938293,-0.0264415480196476,0.712126672267914,0.649540901184082,-0.266405999660492,-0.0110572455450892,0.996600806713104,-0.0816374272108078,0.0336074307560921,0.954145729541779,0.297449976205826,0.000923843414057046,0.994930744171143,0.100558869540691,-0.00776421185582876,0.999621748924255,0.0263817440718412,0.0215068887919188,0.999738931655884,0.00772242061793804,0.0223691184073687,0.999609351158142,0.0167547389864922,0.12159164249897,0.990004360675812,0.0714629888534546,-0.274425715208054,0.960782587528229,0.03984160348773,0.112090103328228,0.993144631385803,0.0331580229103565,-0.0405947715044022,0.99914813041687,-0.00742907868698239,-0.520118415355682,0.850073099136353,0.0827807784080505,-0.0292356908321381,0.999481916427612,-0.0134568139910698,0.00597162544727325,0.999982118606567,-0.000339580641593784,0.00299072056077421,0.999991774559021,-0.00271686003543437,-0.0290777757763863,0.997196912765503,-0.0689400136470795,0.390526920557022,0.915257811546326,-0.0989547893404961,-0.119152456521988,0.991935670375824,-0.0431991666555405,-0.520118415355682,0.850073099136353,0.0827807784080505,-0.814769923686981,0.54884272813797,-0.186873525381088,-0.00776421185582876,0.999621748924255,0.0263817440718412,-0.185357004404068,0.969879329204559,0.158040568232536,-0.325438678264618,0.937838137149811,-0.1206199452281,-0.0300861038267612,0.999101758003235,-0.0298431720584631,-0.0321865007281303,0.981729924678802,-0.187538087368011,0.0349397175014019,0.997910797595978,0.0543439425528049,-0.557662189006805,0.830048739910126,0.00565983168780804,0.0100226905196905,0.999948799610138,-0.00141030200757086,
- 0.0154152614995837,0.999819755554199,0.0110760442912579,0.0634124651551247,0.985543549060822,-0.157106667757034,0.0217319931834936,0.992536664009094,0.119994111359119,0.279364377260208,0.777940571308136,0.562817990779877,0.131055176258087,0.928898334503174,0.346370369195938,0.355418622493744,0.934551298618317,-0.0170707926154137,0.0217319931834936,0.992536664009094,0.119994111359119,0.175395458936691,0.984486281871796,0.00480941962450743,0.0778095722198486,0.99516350030899,0.059959813952446,0.408970326185226,0.906514942646027,-0.104755841195583,-0.153952300548553,0.986080229282379,-0.0628041550517082,-0.00865539535880089,0.997422277927399,0.0712307915091515,0.131055176258087,0.928898334503174,0.346370369195938,-0.255537182092667,0.963691294193268,-0.0774582624435425,-0.27598163485527,0.959736824035645,-0.0523395612835884,0.279364377260208,0.777940571308136,0.562817990779877,-0.0188524108380079,0.837983191013336,-0.545370280742645,-0.303711771965027,0.952641546726227,-0.0152737237513065,0.242202430963516,0.962496638298035,-0.122222006320953,-0.0542169772088528,0.997612595558167,-0.0427752994000912,0.253275722265244,0.839101314544678,-0.481414973735809,-0.0188524108380079,0.837983191013336,-0.545370280742645,-0.0195126868784428,0.997131586074829,0.0731292441487312,-0.600573897361755,0.788468420505524,0.132772415876389,0.0778095722198486,0.99516350030899,0.059959813952446,0.175395458936691,0.984486281871796,0.00480941962450743,-0.0819845199584961,0.996200740337372,-0.0293678604066372,-0.0195126868784428,0.997131586074829,0.0731292441487312,0.175395458936691,0.984486281871796,0.00480941962450743,0.131055176258087,0.928898334503174,0.346370369195938,0.15021313726902,0.985608518123627,0.077536016702652,0.355418622493744,0.934551298618317,-0.0170707926154137,0.253275722265244,0.839101314544678,-0.481414973735809,-0.109966956079006,0.939654409885406,-0.323970347642899,-0.469804883003235,0.554641962051392,-0.686771929264069,0.0634124651551247,0.985543549060822,-0.157106667757034,0.242202430963516,0.962496638298035,-0.122222006320953,
- -0.0188524108380079,0.837983191013336,-0.545370280742645,0.279364377260208,0.777940571308136,0.562817990779877,0.388499945402145,0.921217083930969,0.0206605102866888,0.0634124651551247,0.985543549060822,-0.157106667757034,-0.0188524108380079,0.837983191013336,-0.545370280742645,0.0217319931834936,0.992536664009094,0.119994111359119,0.355418622493744,0.934551298618317,-0.0170707926154137,-0.00302056316286325,0.999995112419128,-0.000837060157209635,0.0100226905196905,0.999948799610138,-0.00141030200757086,-0.303711771965027,0.952641546726227,-0.0152737237513065,-0.255537182092667,0.963691294193268,-0.0774582624435425,0.131055176258087,0.928898334503174,0.346370369195938,0.279364377260208,0.777940571308136,0.562817990779877,-0.32405236363411,0.944380521774292,0.0559955909848213,-0.367515057325363,0.929864704608917,0.0168618205934763,-0.803639352321625,0.585812270641327,0.104822859168053,-0.495427459478378,0.862771391868591,0.100882269442081,-0.326464712619781,0.945114016532898,0.0134253613650799,-0.392173677682877,0.919652998447418,0.0209324322640896,-0.107562631368637,0.993521690368652,0.0366718657314777,-0.439227253198624,0.894474387168884,0.083637110888958,-0.337988585233688,0.940084397792816,0.0447780713438988,-0.34205037355423,0.938724160194397,0.042408287525177,-0.37940788269043,0.925110697746277,0.0148283988237381,-0.41439750790596,0.904797077178955,-0.0980658829212189,-0.348906725645065,0.937105417251587,0.00987907312810421,-0.337988585233688,0.940084397792816,0.0447780713438988,-0.41439750790596,0.904797077178955,-0.0980658829212189,-0.449842303991318,0.878054738044739,0.163284465670586,0.0336074307560921,0.954145729541779,0.297449976205826,-0.0110572455450892,0.996600806713104,-0.0816374272108078,-0.0490848682820797,0.998621106147766,-0.0186192356050015,-0.047412134706974,0.998843610286713,-0.00797358248382807,-0.0819845199584961,0.996200740337372,-0.0293678604066372,0.175395458936691,0.984486281871796,0.00480941962450743,-0.153952300548553,0.986080229282379,-0.0628041550517082,-0.325797289609909,0.943979203701019,0.0525316148996353,
- -0.32405236363411,0.944380521774292,0.0559955909848213,-0.495427459478378,0.862771391868591,0.100882269442081,-0.502485573291779,0.862419486045837,0.0611637234687805,-0.521752893924713,0.851813316345215,-0.0467770211398602,-0.344972640275955,0.93768697977066,0.0416770242154598,-0.325797289609909,0.943979203701019,0.0525316148996353,-0.521752893924713,0.851813316345215,-0.0467770211398602,-0.597466468811035,0.800585567951202,0.0457874052226543,0.161088019609451,0.986936450004578,-0.00267917173914611,-0.190273433923721,0.978984832763672,0.0733807757496834,0.253275722265244,0.839101314544678,-0.481414973735809,-0.0188524108380079,0.837983191013336,-0.545370280742645,-0.190273433923721,0.978984832763672,0.0733807757496834,-0.548177421092987,0.831957161426544,0.0857255011796951,0.253275722265244,0.839101314544678,-0.481414973735809,-0.469804883003235,0.554641962051392,-0.686771929264069,0.419988960027695,0.90321284532547,0.088406540453434,-0.107562631368637,0.993521690368652,0.0366718657314777,-0.392173677682877,0.919652998447418,0.0209324322640896,-0.348906725645065,0.937105417251587,0.00987907312810421,-0.449842303991318,0.878054738044739,0.163284465670586,0.0217319931834936,0.992536664009094,0.119994111359119,0.388499945402145,0.921217083930969,0.0206605102866888,0.279364377260208,0.777940571308136,0.562817990779877,0.0301218535751104,0.997024595737457,0.0709550380706787,0.15021313726902,0.985608518123627,0.077536016702652,0.131055176258087,0.928898334503174,0.346370369195938,-0.00865539535880089,0.997422277927399,0.0712307915091515,0.0217319931834936,0.992536664009094,0.119994111359119,0.0634124651551247,0.985543549060822,-0.157106667757034,0.388499945402145,0.921217083930969,0.0206605102866888,0.253275722265244,0.839101314544678,-0.481414973735809,0.419988960027695,0.90321284532547,0.088406540453434,-0.117197714745998,0.978941380977631,0.167148321866989,0.161088019609451,0.986936450004578,-0.00267917173914611,-0.109966956079006,0.939654409885406,-0.323970347642899,-0.0819845199584961,0.996200740337372,-0.0293678604066372,
- -0.469804883003235,0.554641962051392,-0.686771929264069,-0.0188524108380079,0.837983191013336,-0.545370280742645,0.253275722265244,0.839101314544678,-0.481414973735809,-0.190273433923721,0.978984832763672,0.0733807757496834,-0.34205037355423,0.938724160194397,0.042408287525177,-0.344972640275955,0.93768697977066,0.0416770242154598,-0.597466468811035,0.800585567951202,0.0457874052226543,-0.37940788269043,0.925110697746277,0.0148283988237381,-0.109966956079006,0.939654409885406,-0.323970347642899,-0.0195126868784428,0.997131586074829,0.0731292441487312,-0.0819845199584961,0.996200740337372,-0.0293678604066372,-0.0819845199584961,0.996200740337372,-0.0293678604066372,-0.153952300548553,0.986080229282379,-0.0628041550517082,0.419988960027695,0.90321284532547,0.088406540453434,-0.0819845199584961,0.996200740337372,-0.0293678604066372,0.419988960027695,0.90321284532547,0.088406540453434,-0.469804883003235,0.554641962051392,-0.686771929264069,-0.0542169772088528,0.997612595558167,-0.0427752994000912,-0.109966956079006,0.939654409885406,-0.323970347642899,0.253275722265244,0.839101314544678,-0.481414973735809,-0.303711771965027,0.952641546726227,-0.0152737237513065,-0.0188524108380079,0.837983191013336,-0.545370280742645,-0.223795354366302,0.932448208332062,0.283647418022156,-0.223795354366302,0.932448208332062,0.283647418022156,-0.548177421092987,0.831957161426544,0.0857255011796951,-0.34205037355423,0.938724160194397,0.042408287525177,-0.337988585233688,0.940084397792816,0.0447780713438988,-0.548177421092987,0.831957161426544,0.0857255011796951,-0.190273433923721,0.978984832763672,0.0733807757496834,0.161088019609451,0.986936450004578,-0.00267917173914611,-0.344972640275955,0.93768697977066,0.0416770242154598,-0.34205037355423,0.938724160194397,0.042408287525177,0.161088019609451,0.986936450004578,-0.00267917173914611,-0.117197714745998,0.978941380977631,0.167148321866989,-0.325797289609909,0.943979203701019,0.0525316148996353,-0.344972640275955,0.93768697977066,0.0416770242154598,-0.153952300548553,0.986080229282379,-0.0628041550517082,
- -0.117197714745998,0.978941380977631,0.167148321866989,0.419988960027695,0.90321284532547,0.088406540453434,-0.153952300548553,0.986080229282379,-0.0628041550517082,0.408970326185226,0.906514942646027,-0.104755841195583,-0.367515057325363,0.929864704608917,0.0168618205934763,-0.32405236363411,0.944380521774292,0.0559955909848213,-0.27598163485527,0.959736824035645,-0.0523395612835884,-0.255537182092667,0.963691294193268,-0.0774582624435425,-0.378088891506195,0.925196170806885,-0.0325718782842159,-0.392173677682877,0.919652998447418,0.0209324322640896,-0.326464712619781,0.945114016532898,0.0134253613650799,-0.348906725645065,0.937105417251587,0.00987907312810421,-0.392173677682877,0.919652998447418,0.0209324322640896,-0.378088891506195,0.925196170806885,-0.0325718782842159,-0.278394550085068,0.938945949077606,-0.202180743217468,0.0137524260208011,0.999879598617554,-0.00719141401350498,-0.153935581445694,0.987930536270142,-0.0172360725700855,0.248810276389122,0.967267751693726,-0.0498649254441261,-0.0040599568746984,0.999962687492371,-0.00762460473924875,-0.99924647808075,0.000697880634106696,-0.0388059727847576,-0.0475296527147293,0.966930210590363,0.250573426485062,-0.0954369083046913,0.995118618011475,-0.0251143518835306,-0.0658416971564293,0.792070388793945,-0.606868445873261,0.102287620306015,0.992781043052673,-0.0626339167356491,0.0165099687874317,0.999852776527405,-0.00469066156074405,0.405984371900558,0.912880599498749,-0.0427270568907261,-0.132440730929375,0.991190433502197,-0.000926336797419935,0.551823794841766,0.0339645706117153,0.833268821239471,-0.0475296527147293,0.966930210590363,0.250573426485062,-0.99924647808075,0.000697880634106696,-0.0388059727847576,-0.950402677059174,0.0016905254451558,0.311017632484436,-0.805972993373871,0.00783349759876728,0.59190034866333,0.551823794841766,0.0339645706117153,0.833268821239471,-0.132440730929375,0.991190433502197,-0.000926336797419935,0.405984371900558,0.912880599498749,-0.0427270568907261,0.0947497263550758,0.956755518913269,0.275030016899109,0.00984243396669626,0.999923348426819,0.00751373777166009,
- 0.0137524260208011,0.999879598617554,-0.00719141401350498,0.405984371900558,0.912880599498749,-0.0427270568907261,0.551823794841766,0.0339645706117153,0.833268821239471,0.884072840213776,0.00769654288887978,0.467285692691803,0.0947497263550758,0.956755518913269,0.275030016899109,-0.805972993373871,0.00783349759876728,0.59190034866333,-0.0475296527147293,0.966930210590363,0.250573426485062,-0.950402677059174,0.0016905254451558,0.311017632484436,0.993999540805817,0.0357339680194855,-0.103381887078285,0.963666558265686,0.00897345878183842,-0.266957372426987,0.0498412437736988,0.99761837720871,-0.0476814843714237,-0.0475296527147293,0.966930210590363,0.250573426485062,-0.132440730929375,0.991190433502197,-0.000926336797419935,-0.0040599568746984,0.999962687492371,-0.00762460473924875,-0.0130878547206521,0.999914050102234,0.000794497900642455,-0.132440730929375,0.991190433502197,-0.000926336797419935,-0.0475296527147293,0.966930210590363,0.250573426485062,-0.805972993373871,0.00783349759876728,0.59190034866333,0.00880098342895508,0.999947071075439,-0.00532032735645771,0.00163824972696602,0.999994337558746,-0.0029433302115649,-0.517987847328186,0.848357975482941,0.109440930187702,-0.00763912964612246,0.9920494556427,0.125616580247879,0.0947497263550758,0.956755518913269,0.275030016899109,0.884072840213776,0.00769654288887978,0.467285692691803,0.976989507675171,0.018440242856741,0.212488532066345,0.976989507675171,0.018440242856741,0.212488532066345,0.993999540805817,0.0357339680194855,-0.103381887078285,0.0947497263550758,0.956755518913269,0.275030016899109,0.00984243396669626,0.999923348426819,0.00751373777166009,0.00880098342895508,0.999947071075439,-0.00532032735645771,-0.00763912964612246,0.9920494556427,0.125616580247879,-0.0995407029986382,0.986469626426697,-0.130266442894936,-0.132440730929375,0.991190433502197,-0.000926336797419935,0.405984371900558,0.912880599498749,-0.0427270568907261,0.0137524260208011,0.999879598617554,-0.00719141401350498,-0.0040599568746984,0.999962687492371,-0.00762460473924875,-0.0488292425870895,0.998802602291107,0.00301367370411754,
- 0.149763822555542,0.988706946372986,0.00541431689634919,0.253463476896286,0.966911375522614,0.0289579294621944,0.0165099687874317,0.999852776527405,-0.00469066156074405,0.0137524260208011,0.999879598617554,-0.00719141401350498,0.00984243396669626,0.999923348426819,0.00751373777166009,-0.0995407029986382,0.986469626426697,-0.130266442894936,-0.153935581445694,0.987930536270142,-0.0172360725700855,-0.0040599568746984,0.999962687492371,-0.00762460473924875,0.248810276389122,0.967267751693726,-0.0498649254441261,0.0245943237096071,0.990898191928864,-0.132348224520683,-0.0130878547206521,0.999914050102234,0.000794497900642455,-0.0488292425870895,0.998802602291107,0.00301367370411754,-0.63459187746048,0.769875407218933,0.0677127242088318,-0.0954369083046913,0.995118618011475,-0.0251143518835306,-0.0140803605318069,0.999660074710846,0.0219418220221996,0.0498412437736988,0.99761837720871,-0.0476814843714237,0.00163824972696602,0.999994337558746,-0.0029433302115649,0.00880098342895508,0.999947071075439,-0.00532032735645771,0.0947497263550758,0.956755518913269,0.275030016899109,0.993999540805817,0.0357339680194855,-0.103381887078285,0.0498412437736988,0.99761837720871,-0.0476814843714237,-0.0140803605318069,0.999660074710846,0.0219418220221996,-0.0130878547206521,0.999914050102234,0.000794497900642455,0.0245943237096071,0.990898191928864,-0.132348224520683,0.0633757188916206,0.882454216480255,0.466109424829483,0.104480721056461,0.979117631912231,0.174391746520996,-0.0150093352422118,0.998748421669006,0.0477108657360077,0.0633757188916206,0.882454216480255,0.466109424829483,0.248810276389122,0.967267751693726,-0.0498649254441261,-0.153935581445694,0.987930536270142,-0.0172360725700855,0.622950613498688,0.764351308345795,0.166432082653046,0.234514713287354,0.919992685317993,-0.314032703638077,-0.00763912964612246,0.9920494556427,0.125616580247879,-0.517987847328186,0.848357975482941,0.109440930187702,-0.0290777757763863,0.997196912765503,-0.0689400136470795,0.530242443084717,0.827705025672913,0.183703973889351,0.746381759643555,0.658132672309875,0.0988722443580627,
- -0.00763912964612246,0.9920494556427,0.125616580247879,0.530242443084717,0.827705025672913,0.183703973889351,0.0245943237096071,0.990898191928864,-0.132348224520683,0.248810276389122,0.967267751693726,-0.0498649254441261,0.234514713287354,0.919992685317993,-0.314032703638077,0.0706014186143875,0.993646264076233,0.0876501873135567,0.0245943237096071,0.990898191928864,-0.132348224520683,0.234514713287354,0.919992685317993,-0.314032703638077,0.0633757188916206,0.882454216480255,0.466109424829483,0.149763822555542,0.988706946372986,0.00541431689634919,-0.0488292425870895,0.998802602291107,0.00301367370411754,-0.0140803605318069,0.999660074710846,0.0219418220221996,0.0947497263550758,0.956755518913269,0.275030016899109,0.0498412437736988,0.99761837720871,-0.0476814843714237,0.00880098342895508,0.999947071075439,-0.00532032735645771,0.00984243396669626,0.999923348426819,0.00751373777166009,0.0633757188916206,0.882454216480255,0.466109424829483,0.0706014186143875,0.993646264076233,0.0876501873135567,0.104480721056461,0.979117631912231,0.174391746520996,0.253463476896286,0.966911375522614,0.0289579294621944,0.149763822555542,0.988706946372986,0.00541431689634919,-0.0150093352422118,0.998748421669006,0.0477108657360077,0.0641114786267281,0.994951605796814,-0.0772081166505814,0.0633757188916206,0.882454216480255,0.466109424829483,0.0245943237096071,0.990898191928864,-0.132348224520683,0.0706014186143875,0.993646264076233,0.0876501873135567,-0.143904104828835,0.790573060512543,-0.595219135284424,-0.709949374198914,-0.597840845584869,-0.372234135866165,-0.901925027370453,-0.035633459687233,0.430420160293579,-0.0995407029986382,0.986469626426697,-0.130266442894936,-0.00763912964612246,0.9920494556427,0.125616580247879,0.746381759643555,0.658132672309875,0.0988722443580627,-0.153935581445694,0.987930536270142,-0.0172360725700855,-0.0995407029986382,0.986469626426697,-0.130266442894936,0.622950613498688,0.764351308345795,0.166432082653046,0.102287620306015,0.992781043052673,-0.0626339167356491,-0.63459187746048,0.769875407218933,0.0677127242088318,
- -0.0488292425870895,0.998802602291107,0.00301367370411754,0.0165099687874317,0.999852776527405,-0.00469066156074405,0.991265118122101,0.00594343198463321,-0.131750389933586,0.993513584136963,0.00452960934489965,-0.113623380661011,0.995684146881104,0.0040205717086792,-0.0927200242877007,0.996269166469574,-0.00155798415653408,-0.0862860232591629,0.997265458106995,-0.000780930102337152,-0.0739001408219337,0.996363699436188,0.00529635045677423,-0.0850376188755035,0.993547737598419,0.00620620092377067,-0.113244988024235,0.990312397480011,0.035819735378027,-0.134157866239548,0.990670800209045,0.0193250831216574,-0.13489955663681,-0.0954369083046913,0.995118618011475,-0.0251143518835306,-0.63459187746048,0.769875407218933,0.0677127242088318,-0.959898412227631,0.0024480929132551,-0.280337452888489,-0.99924647808075,0.000697880634106696,-0.0388059727847576,-0.404052138328552,0.0155370458960533,-0.91460394859314,0.102287620306015,0.992781043052673,-0.0626339167356491,-0.0658416971564293,0.792070388793945,-0.606868445873261,-0.404052138328552,0.0155370458960533,-0.91460394859314,-0.959898412227631,0.0024480929132551,-0.280337452888489,-0.63459187746048,0.769875407218933,0.0677127242088318,0.102287620306015,0.992781043052673,-0.0626339167356491,0.00299072056077421,0.999991774559021,-0.00271686003543437,0.530242443084717,0.827705025672913,0.183703973889351,-0.0290777757763863,0.997196912765503,-0.0689400136470795,-0.112138129770756,0.984354972839355,-0.135905161499977,-0.0512423254549503,0.990688800811768,-0.126134663820267,-0.749758958816528,0.637046575546265,-0.178977847099304,-0.557662189006805,0.830048739910126,0.00565983168780804,-0.586131811141968,0.692200362682343,0.421079695224762,-0.0623582825064659,0.99796587228775,-0.013245327398181,0.036642100661993,0.996892392635345,0.0697338059544563,-0.0399722456932068,0.995632410049438,-0.0843694880604744,-0.432798862457275,0.900681674480438,0.0381789617240429,-0.0623582825064659,0.99796587228775,-0.013245327398181,-0.586131811141968,0.692200362682343,0.421079695224762,0.216856941580772,0.974991321563721,-0.0486310012638569,
- -0.432798862457275,0.900681674480438,0.0381789617240429,-0.0399722456932068,0.995632410049438,-0.0843694880604744,-0.0188524108380079,0.837983191013336,-0.545370280742645,-0.548177421092987,0.831957161426544,0.0857255011796951,-0.223795354366302,0.932448208332062,0.283647418022156,-0.303711771965027,0.952641546726227,-0.0152737237513065,-0.223795354366302,0.932448208332062,0.283647418022156,-0.337988585233688,0.940084397792816,0.0447780713438988,-0.348906725645065,0.937105417251587,0.00987907312810421,-0.278394550085068,0.938945949077606,-0.202180743217468,0.000923843414057046,0.994930744171143,0.100558869540691,-0.185357004404068,0.969879329204559,0.158040568232536,-0.00776421185582876,0.999621748924255,0.0263817440718412,0.0534603744745255,0.998501300811768,0.0117086116224527,-0.138617426156998,0.990287244319916,0.0107897110283375,-0.0385392718017101,0.995861291885376,-0.0823101550340652,-0.00227775773964822,0.999793708324432,0.0201859883964062,0.0443981178104877,0.942532300949097,0.331152379512787,0.0154152614995837,0.999819755554199,0.0110760442912579,0.0100226905196905,0.999948799610138,-0.00141030200757086,-0.00302056316286325,0.999995112419128,-0.000837060157209635,-0.092932365834713,0.99563729763031,0.00836627185344696,-0.00227775773964822,0.999793708324432,0.0201859883964062,0.0100226905196905,0.999948799610138,-0.00141030200757086,-0.0174718741327524,0.999844312667847,0.00247152871452272,0.109323434531689,0.993821144104004,-0.0191781781613827,-0.092932365834713,0.99563729763031,0.00836627185344696,-0.00302056316286325,0.999995112419128,-0.000837060157209635,-0.325797289609909,0.943979203701019,0.0525316148996353,-0.117197714745998,0.978941380977631,0.167148321866989,-0.153952300548553,0.986080229282379,-0.0628041550517082,-0.32405236363411,0.944380521774292,0.0559955909848213,-0.0954369083046913,0.995118618011475,-0.0251143518835306,-0.0475296527147293,0.966930210590363,0.250573426485062,-0.0130878547206521,0.999914050102234,0.000794497900642455,-0.0140803605318069,0.999660074710846,0.0219418220221996,-0.118520647287369,0.991115808486938,-0.0603516772389412,
- 0.0570985749363899,0.984885096549988,0.163526862859726,-0.020402641966939,0.97867226600647,-0.204412490129471,0.0633757188916206,0.882454216480255,0.466109424829483,-0.0150093352422118,0.998748421669006,0.0477108657360077,0.149763822555542,0.988706946372986,0.00541431689634919,0.710468530654907,0.676199972629547,-0.194905042648315,0.712126672267914,0.649540901184082,-0.266405999660492,0.760872602462769,0.648362278938293,-0.0264415480196476,0.557927370071411,0.811709702014923,-0.172755390405655,-0.993757426738739,0.0141836553812027,0.110656760632992,-0.588245272636414,0.107015609741211,-0.801570475101471,0.0519178472459316,0.984474420547485,-0.167674347758293,0.0072767436504364,0.999826192855835,-0.0171687584370375,-0.115484744310379,0.992735028266907,-0.0337691195309162,0.304563283920288,0.946299254894257,-0.10843887925148,0.0179356653243303,0.999696016311646,-0.0169209614396095,-0.786534368991852,0.617397427558899,-0.0135671589523554,-0.0362854301929474,0.948240518569946,0.315473079681396,-0.0946487560868263,0.995123684406281,0.0277568325400352,-0.347679376602173,0.936387240886688,0.0479370467364788,-0.480672776699066,0.875510692596436,0.0493440516293049,-0.879974246025085,0.47347891330719,0.0382500775158405,-0.713939666748047,0.700204968452454,0.00177095283288509,-0.990368068218231,-0.016009584069252,0.137530654668808,-0.989814043045044,-0.0756731852889061,0.120589189231396,-0.990427315235138,-0.0560172535479069,0.126157820224762,-0.989894211292267,0.0145129188895226,0.141063064336777,-0.990368068218231,-0.016009584069252,0.137530654668808,-0.990427315235138,-0.0560172535479069,0.126157820224762,-0.989894211292267,0.0145129188895226,0.141063064336777,-0.989048779010773,0.0660871863365173,0.13196662068367,-0.990368068218231,-0.016009584069252,0.137530654668808,0.00667829066514969,0.999619781970978,0.0267519932240248,0.252962499856949,0.967460334300995,-0.00552127277478576,0.235941424965858,0.16204459965229,0.958161354064941,0.0894725322723389,0.995953142642975,0.00847719982266426,-0.189855813980103,0.981656312942505,0.0174832791090012,
- -0.182340040802956,0.892878413200378,0.411728531122208,-0.0362854301929474,0.948240518569946,0.315473079681396,-0.786534368991852,0.617397427558899,-0.0135671589523554,-0.852359652519226,0.396634876728058,0.340828120708466,-0.508610427379608,0.608859717845917,0.608773469924927,-0.182340040802956,0.892878413200378,0.411728531122208,-0.189855813980103,0.981656312942505,0.0174832791090012,0.0894725322723389,0.995953142642975,0.00847719982266426,0.0913442596793175,0.936720371246338,0.337951451539993,-0.0184277929365635,0.999683022499084,-0.0171558242291212,0.0072767436504364,0.999826192855835,-0.0171687584370375,0.0894725322723389,0.995953142642975,0.00847719982266426,-0.182340040802956,0.892878413200378,0.411728531122208,0.4928959608078,0.584522485733032,0.644505321979523,0.0913442596793175,0.936720371246338,0.337951451539993,-0.348354399204254,0.936795890331268,0.0325977802276611,-0.000272962322924286,0.98740828037262,-0.158192440867424,-0.147675156593323,0.980799674987793,-0.127373829483986,-0.98932158946991,0.0380449742078781,0.140696033835411,-0.989894211292267,0.0145129188895226,0.141063064336777,-0.990427315235138,-0.0560172535479069,0.126157820224762,0.127180710434914,0.990315556526184,-0.0556799732148647,-0.588245272636414,0.107015609741211,-0.801570475101471,0.803245544433594,0.0843990445137024,-0.589638292789459,-0.508610427379608,0.608859717845917,0.608773469924927,-0.0362854301929474,0.948240518569946,0.315473079681396,-0.852359652519226,0.396634876728058,0.340828120708466,-0.0362854301929474,0.948240518569946,0.315473079681396,-0.189855813980103,0.981656312942505,0.0174832791090012,0.0179356653243303,0.999696016311646,-0.0169209614396095,-0.0100128902122378,0.999794185161591,0.0176450572907925,-0.189855813980103,0.981656312942505,0.0174832791090012,-0.0362854301929474,0.948240518569946,0.315473079681396,-0.508610427379608,0.608859717845917,0.608773469924927,-0.0109430458396673,0.99707704782486,-0.0756149590015411,-0.162318199872971,0.983880996704102,-0.075040191411972,-0.0539295040071011,0.989648878574371,-0.132991194725037,
- -0.0431856699287891,0.998933911323547,-0.0163121148943901,0.252962499856949,0.967460334300995,-0.00552127277478576,0.947490215301514,0.0956387296319008,0.305148422718048,0.235941424965858,0.16204459965229,0.958161354064941,0.947490215301514,0.0956387296319008,0.305148422718048,0.0428606681525707,0.994477152824402,0.0958030745387077,0.394734025001526,0.917224705219269,0.0536999255418777,0.252962499856949,0.967460334300995,-0.00552127277478576,0.0428606681525707,0.994477152824402,0.0958030745387077,0.947490215301514,0.0956387296319008,0.305148422718048,0.235941424965858,0.16204459965229,0.958161354064941,0.0927283093333244,0.198408678174019,0.975723147392273,0.00667829066514969,0.999619781970978,0.0267519932240248,0.0975184217095375,0.994593501091003,0.0356951914727688,-0.906804442405701,0.119262143969536,0.404329657554626,-0.993757426738739,0.0141836553812027,0.110656760632992,-0.906804442405701,0.119262143969536,0.404329657554626,0.0975184217095375,0.994593501091003,0.0356951914727688,-0.224569082260132,0.973299145698547,0.0475128777325153,0.127180710434914,0.990315556526184,-0.0556799732148647,0.803245544433594,0.0843990445137024,-0.589638292789459,0.0838442146778107,0.989293336868286,-0.119452647864819,0.803245544433594,0.0843990445137024,-0.589638292789459,0.947490215301514,0.0956387296319008,0.305148422718048,0.394734025001526,0.917224705219269,0.0536999255418777,0.803245544433594,0.0843990445137024,-0.589638292789459,0.394734025001526,0.917224705219269,0.0536999255418777,0.0838442146778107,0.989293336868286,-0.119452647864819,-0.0242858696728945,0.999205470085144,-0.031599398702383,-0.0648000985383987,0.997871220111847,0.00734593672677875,-0.691148221492767,0.710438966751099,0.132629260420799,-0.0593694299459457,0.995106816291809,0.0789779424667358,0.127180710434914,0.990315556526184,-0.0556799732148647,-0.0718092694878578,0.997031092643738,-0.0277937557548285,-0.588245272636414,0.107015609741211,-0.801570475101471,0.0519178472459316,0.984474420547485,-0.167674347758293,-0.588245272636414,0.107015609741211,-0.801570475101471,
- -0.0718092694878578,0.997031092643738,-0.0277937557548285,0.0897458493709564,0.99577134847641,-0.0196234248578548,0.0975184217095375,0.994593501091003,0.0356951914727688,-0.993757426738739,0.0141836553812027,0.110656760632992,-0.993757426738739,0.0141836553812027,0.110656760632992,0.0519178472459316,0.984474420547485,-0.167674347758293,0.0897458493709564,0.99577134847641,-0.0196234248578548,0.0913442596793175,0.936720371246338,0.337951451539993,0.4928959608078,0.584522485733032,0.644505321979523,0.197918623685837,0.946761012077332,0.253912895917892,-0.0184277929365635,0.999683022499084,-0.0171558242291212,-0.0242858696728945,0.999205470085144,-0.031599398702383,-0.0593694299459457,0.995106816291809,0.0789779424667358,-0.154571861028671,0.931588888168335,-0.329013258218765,-0.189855813980103,0.981656312942505,0.0174832791090012,0.0894725322723389,0.995953142642975,0.00847719982266426,0.0072767436504364,0.999826192855835,-0.0171687584370375,0.0179356653243303,0.999696016311646,-0.0169209614396095,0.0428606681525707,0.994477152824402,0.0958030745387077,0.0838442146778107,0.989293336868286,-0.119452647864819,0.394734025001526,0.917224705219269,0.0536999255418777,-0.0168998781591654,0.999857187271118,-0.000240671812207438,0.483461558818817,0.875159561634064,-0.0189899187535048,0.150254160165787,0.984569549560547,0.0897016674280167,0.00784055888652802,0.99754410982132,0.0696013569831848,-0.0122476750984788,0.999924063682556,0.00136316986754537,0.0072767436504364,0.999826192855835,-0.0171687584370375,-0.0184277929365635,0.999683022499084,-0.0171558242291212,-0.154571861028671,0.931588888168335,-0.329013258218765,-0.115484744310379,0.992735028266907,-0.0337691195309162,0.0179356653243303,0.999696016311646,-0.0169209614396095,0.304563283920288,0.946299254894257,-0.10843887925148,0.203277662396431,0.974185585975647,-0.0981869995594025,-0.0100128902122378,0.999794185161591,0.0176450572907925,-0.0946487560868263,0.995123684406281,0.0277568325400352,-0.347679376602173,0.936387240886688,0.0479370467364788,-0.713939666748047,0.700204968452454,0.00177095283288509,
- -0.786534368991852,0.617397427558899,-0.0135671589523554,-0.000272962322924286,0.98740828037262,-0.158192440867424,-0.348354399204254,0.936795890331268,0.0325977802276611,-0.0648000985383987,0.997871220111847,0.00734593672677875,-0.0242858696728945,0.999205470085144,-0.031599398702383,0.197918623685837,0.946761012077332,0.253912895917892,0.121715314686298,0.977484703063965,-0.172363236546516,-0.000272962322924286,0.98740828037262,-0.158192440867424,0.0913442596793175,0.936720371246338,0.337951451539993,-0.0152346203103662,0.999822020530701,-0.0111274803057313,-0.0100128902122378,0.999794185161591,0.0176450572907925,0.203277662396431,0.974185585975647,-0.0981869995594025,0.0643890500068665,0.99414473772049,0.0867768302559853,0.637885212898254,0.677361845970154,0.3664470911026,0.27190774679184,0.908327221870422,0.317817389965057,0.483461558818817,0.875159561634064,-0.0189899187535048,0.0643890500068665,0.99414473772049,0.0867768302559853,0.122474648058414,0.992306292057037,0.0181214343756437,0.0757882073521614,0.991783261299133,0.103063069283962,0.541136503219604,0.828522384166718,-0.143951132893562,0.00852094404399395,0.99646270275116,-0.083602711558342,-0.0309134535491467,0.992453396320343,0.118661865592003,0.27190774679184,0.908327221870422,0.317817389965057,-0.0539295040071011,0.989648878574371,-0.132991194725037,-0.00129544769879431,0.995034217834473,-0.0995251834392548,-0.715629816055298,-0.438669413328171,0.543546795845032,-0.798559784889221,0.195089921355248,-0.569422662258148,-0.0458656772971153,0.990336298942566,-0.130882993340492,0.304563283920288,0.946299254894257,-0.10843887925148,-0.115484744310379,0.992735028266907,-0.0337691195309162,0.452631533145905,0.741816699504852,-0.494805544614792,0.563485682010651,0.709774672985077,-0.422733873128891,-0.0593694299459457,0.995106816291809,0.0789779424667358,-0.691148221492767,0.710438966751099,0.132629260420799,0.0757882073521614,0.991783261299133,0.103063069283962,0.122474648058414,0.992306292057037,0.0181214343756437,-0.225559279322624,0.974229276180267,-0.000538246356882155,
- -0.0593694299459457,0.995106816291809,0.0789779424667358,0.122474648058414,0.992306292057037,0.0181214343756437,0.27190774679184,0.908327221870422,0.317817389965057,0.150254160165787,0.984569549560547,0.0897016674280167,0.483461558818817,0.875159561634064,-0.0189899187535048,0.452631533145905,0.741816699504852,-0.494805544614792,-0.154571861028671,0.931588888168335,-0.329013258218765,-0.391645431518555,0.361817836761475,-0.845991611480713,0.203277662396431,0.974185585975647,-0.0981869995594025,0.304563283920288,0.946299254894257,-0.10843887925148,0.563485682010651,0.709774672985077,-0.422733873128891,0.637885212898254,0.677361845970154,0.3664470911026,0.75868433713913,0.651440620422363,-0.00481564551591873,0.203277662396431,0.974185585975647,-0.0981869995594025,0.563485682010651,0.709774672985077,-0.422733873128891,0.0643890500068665,0.99414473772049,0.0867768302559853,0.483461558818817,0.875159561634064,-0.0189899187535048,-0.0168998781591654,0.999857187271118,-0.000240671812207438,-0.0152346203103662,0.999822020530701,-0.0111274803057313,-0.0431856699287891,0.998933911323547,-0.0163121148943901,-0.0539295040071011,0.989648878574371,-0.132991194725037,0.27190774679184,0.908327221870422,0.317817389965057,0.637885212898254,0.677361845970154,0.3664470911026,0.0578036643564701,0.998327970504761,-0.000250987097388133,0.0621248185634613,0.997016906738281,-0.0458040498197079,-0.224569082260132,0.973299145698547,0.0475128777325153,0.0975184217095375,0.994593501091003,0.0356951914727688,-0.0245956778526306,0.999029815196991,-0.0365327410399914,0.0116283940151334,0.999190151691437,-0.0385206341743469,0.252962499856949,0.967460334300995,-0.00552127277478576,0.00667829066514969,0.999619781970978,0.0267519932240248,0.0313617438077927,0.999441027641296,0.0115735465660691,0.0509531646966934,0.9986612200737,-0.00891733821481466,0.127180710434914,0.990315556526184,-0.0556799732148647,0.0838442146778107,0.989293336868286,-0.119452647864819,0.0275721270591021,0.999389946460724,-0.0214361995458603,0.0313617438077927,0.999441027641296,0.0115735465660691,
- 0.0838442146778107,0.989293336868286,-0.119452647864819,0.0428606681525707,0.994477152824402,0.0958030745387077,0.0913442596793175,0.936720371246338,0.337951451539993,-0.000272962322924286,0.98740828037262,-0.158192440867424,-0.0242858696728945,0.999205470085144,-0.031599398702383,-0.0184277929365635,0.999683022499084,-0.0171558242291212,-0.225559279322624,0.974229276180267,-0.000538246356882155,0.122474648058414,0.992306292057037,0.0181214343756437,0.00852094404399395,0.99646270275116,-0.083602711558342,0.0562104433774948,0.998381018638611,-0.00871055480092764,0.0578036643564701,0.998327970504761,-0.000250987097388133,0.0975184217095375,0.994593501091003,0.0356951914727688,0.0897458493709564,0.99577134847641,-0.0196234248578548,0.0519178472459316,0.984474420547485,-0.167674347758293,0.0315749906003475,0.999479353427887,-0.00664943130686879,0.0562104433774948,0.998381018638611,-0.00871055480092764,0.0519178472459316,0.984474420547485,-0.167674347758293,-0.0718092694878578,0.997031092643738,-0.0277937557548285,0.412380486726761,0.91043484210968,-0.0324163362383842,0.074628472328186,0.995950758457184,0.0501262955367565,0.452631533145905,0.741816699504852,-0.494805544614792,0.563485682010651,0.709774672985077,-0.422733873128891,0.074628472328186,0.995950758457184,0.0501262955367565,-0.284814745187759,0.956744730472565,0.0593311786651611,0.452631533145905,0.741816699504852,-0.494805544614792,-0.391645431518555,0.361817836761475,-0.845991611480713,0.557559072971344,0.825767874717712,0.0850597321987152,0.252962499856949,0.967460334300995,-0.00552127277478576,0.0116283940151334,0.999190151691437,-0.0385206341743469,0.0275721270591021,0.999389946460724,-0.0214361995458603,0.0428606681525707,0.994477152824402,0.0958030745387077,0.0643890500068665,0.99414473772049,0.0867768302559853,0.75868433713913,0.651440620422363,-0.00481564551591873,0.637885212898254,0.677361845970154,0.3664470911026,0.00784055888652802,0.99754410982132,0.0696013569831848,0.150254160165787,0.984569549560547,0.0897016674280167,0.27190774679184,0.908327221870422,0.317817389965057,
- -0.0309134535491467,0.992453396320343,0.118661865592003,0.0643890500068665,0.99414473772049,0.0867768302559853,0.203277662396431,0.974185585975647,-0.0981869995594025,0.75868433713913,0.651440620422363,-0.00481564551591873,0.452631533145905,0.741816699504852,-0.494805544614792,0.557559072971344,0.825767874717712,0.0850597321987152,0.0490105412900448,0.988358736038208,0.144031763076782,0.412380486726761,0.91043484210968,-0.0324163362383842,-0.154571861028671,0.931588888168335,-0.329013258218765,-0.225559279322624,0.974229276180267,-0.000538246356882155,-0.391645431518555,0.361817836761475,-0.845991611480713,0.563485682010651,0.709774672985077,-0.422733873128891,0.452631533145905,0.741816699504852,-0.494805544614792,0.074628472328186,0.995950758457184,0.0501262955367565,0.0509531646966934,0.9986612200737,-0.00891733821481466,0.0315749906003475,0.999479353427887,-0.00664943130686879,-0.0718092694878578,0.997031092643738,-0.0277937557548285,0.127180710434914,0.990315556526184,-0.0556799732148647,-0.154571861028671,0.931588888168335,-0.329013258218765,-0.0593694299459457,0.995106816291809,0.0789779424667358,-0.225559279322624,0.974229276180267,-0.000538246356882155,-0.225559279322624,0.974229276180267,-0.000538246356882155,0.00852094404399395,0.99646270275116,-0.083602711558342,0.557559072971344,0.825767874717712,0.0850597321987152,-0.225559279322624,0.974229276180267,-0.000538246356882155,0.557559072971344,0.825767874717712,0.0850597321987152,-0.391645431518555,0.361817836761475,-0.845991611480713,-0.115484744310379,0.992735028266907,-0.0337691195309162,-0.154571861028671,0.931588888168335,-0.329013258218765,0.452631533145905,0.741816699504852,-0.494805544614792,-0.0431856699287891,0.998933911323547,-0.0163121148943901,0.563485682010651,0.709774672985077,-0.422733873128891,0.0341925099492073,0.963260650634766,0.266382992267609,0.0341925099492073,0.963260650634766,0.266382992267609,-0.284814745187759,0.956744730472565,0.0593311786651611,0.0509531646966934,0.9986612200737,-0.00891733821481466,0.0313617438077927,0.999441027641296,0.0115735465660691,
- -0.284814745187759,0.956744730472565,0.0593311786651611,0.074628472328186,0.995950758457184,0.0501262955367565,0.412380486726761,0.91043484210968,-0.0324163362383842,0.0315749906003475,0.999479353427887,-0.00664943130686879,0.0509531646966934,0.9986612200737,-0.00891733821481466,0.412380486726761,0.91043484210968,-0.0324163362383842,0.0490105412900448,0.988358736038208,0.144031763076782,0.0562104433774948,0.998381018638611,-0.00871055480092764,0.0315749906003475,0.999479353427887,-0.00664943130686879,0.00852094404399395,0.99646270275116,-0.083602711558342,0.0490105412900448,0.988358736038208,0.144031763076782,0.557559072971344,0.825767874717712,0.0850597321987152,0.00852094404399395,0.99646270275116,-0.083602711558342,0.541136503219604,0.828522384166718,-0.143951132893562,0.0621248185634613,0.997016906738281,-0.0458040498197079,0.0578036643564701,0.998327970504761,-0.000250987097388133,-0.00129544769879431,0.995034217834473,-0.0995251834392548,-0.0539295040071011,0.989648878574371,-0.132991194725037,-0.162318199872971,0.983880996704102,-0.075040191411972,0.0116283940151334,0.999190151691437,-0.0385206341743469,-0.0245956778526306,0.999029815196991,-0.0365327410399914,0.0275721270591021,0.999389946460724,-0.0214361995458603,0.0116283940151334,0.999190151691437,-0.0385206341743469,-0.162318199872971,0.983880996704102,-0.075040191411972,-0.0109430458396673,0.99707704782486,-0.0756149590015411,0.563485682010651,0.709774672985077,-0.422733873128891,-0.284814745187759,0.956744730472565,0.0593311786651611,0.0341925099492073,0.963260650634766,0.266382992267609,-0.0431856699287891,0.998933911323547,-0.0163121148943901,0.0341925099492073,0.963260650634766,0.266382992267609,0.0313617438077927,0.999441027641296,0.0115735465660691,0.0275721270591021,0.999389946460724,-0.0214361995458603,-0.0109430458396673,0.99707704782486,-0.0756149590015411,-0.0946487560868263,0.995123684406281,0.0277568325400352,-0.0362854301929474,0.948240518569946,0.315473079681396,-0.0100128902122378,0.999794185161591,0.0176450572907925,-0.0152346203103662,0.999822020530701,-0.0111274803057313,
- -0.0168998781591654,0.999857187271118,-0.000240671812207438,-0.347679376602173,0.936387240886688,0.0479370467364788,-0.0946487560868263,0.995123684406281,0.0277568325400352,-0.0152346203103662,0.999822020530701,-0.0111274803057313,-0.0122476750984788,0.999924063682556,0.00136316986754537,-0.480672776699066,0.875510692596436,0.0493440516293049,-0.347679376602173,0.936387240886688,0.0479370467364788,-0.0168998781591654,0.999857187271118,-0.000240671812207438,0.0562104433774948,0.998381018638611,-0.00871055480092764,0.0490105412900448,0.988358736038208,0.144031763076782,0.00852094404399395,0.99646270275116,-0.083602711558342,0.0578036643564701,0.998327970504761,-0.000250987097388133,0.121715314686298,0.977484703063965,-0.172363236546516,-0.147675156593323,0.980799674987793,-0.127373829483986,-0.000272962322924286,0.98740828037262,-0.158192440867424,-0.999999940395355,-0.000115492228360381,-3.94862545363139e-005,-0.996161222457886,5.65867480872839e-007,0.087537057697773,-0.996161282062531,7.03658884049219e-007,0.0875370353460312,-0.999998569488525,-0.00169373222161084,9.81377452262677e-005,-0.999554872512817,0.000518743298016489,-0.0298282951116562,-0.996161341667175,1.97144629510149e-008,0.087537057697773,-0.996161282062531,6.38297237287588e-009,0.0875367671251297,-0.99957948923111,0.000338448764523491,0.0289969518780708,-0.999998152256012,-0.00188479421194643,-0.000118305906653404,-0.996161341667175,-5.23814719599613e-007,0.0875362306833267,-0.996161341667175,-1.3879359528346e-007,0.0875364765524864,-1,0.000126304061268456,-3.72060640074778e-005,-0.999999940395355,2.80816529993899e-005,-0.000415299989981577,-0.996161162853241,-1.13857609562729e-007,0.0875381156802177,-0.996161282062531,2.62871875378323e-008,0.0875370278954506,-0.999583601951599,0.0028859581798315,0.0287118256092072,-0.00722868740558624,0.999148666858673,-0.0406175628304482,0.0179953258484602,0.994712233543396,0.101112678647041,1.91330309462501e-006,1,1.01567920864909e-005,-0.000517306325491518,0.999995648860931,-0.00290727708488703,0.00617829198017716,0.999378263950348,0.0347145013511181,
- 0.00669665168970823,0.999269366264343,0.037627100944519,0.00723107438534498,-0.999148070812225,-0.0406309366226196,-0.0179927591234446,-0.994713723659515,0.101098299026489,9.46492036746349e-007,-1,-6.13084012002219e-006,0.000519464374519885,-0.999995648860931,-0.0029196219984442,-0.00617503328248858,-0.99937891960144,0.0346959754824638,-0.00669334921985865,-0.999270081520081,0.0376083254814148,-0.999559164047241,-0.00297232996672392,-0.0295381993055344,-0.996161341667175,4.64938061384146e-008,0.0875372365117073,-0.996161222457886,5.65867480872839e-007,0.087537057697773,-0.999999940395355,-0.000115492228360381,-3.94862545363139e-005,-0.0960533916950226,0.836362957954407,-0.539695084095001,-0.0113774845376611,0.997889697551727,-0.0639270320534706,0.0179953258484602,0.994712233543396,0.101112678647041,-0.00722868740558624,0.999148666858673,-0.0406175628304482,-1,0.000126304061268456,-3.72060640074778e-005,-0.996161341667175,-1.3879359528346e-007,0.0875364765524864,-0.996161162853241,-1.13857609562729e-007,0.0875381156802177,-0.999999940395355,2.80816529993899e-005,-0.000415299989981577,0.0960570275783539,-0.836350500583649,-0.539713740348816,0.0113806985318661,-0.997888624668121,-0.0639429837465286,-0.0179927591234446,-0.994713723659515,0.101098299026489,0.00723107438534498,-0.999148070812225,-0.0406309366226196,-0.999554872512817,0.000518743298016489,-0.0298282951116562,-0.999998569488525,-0.00169373222161084,9.81377452262677e-005,-0.996161282062531,7.03658884049219e-007,0.0875370353460312,-0.996161341667175,1.97144629510149e-008,0.087537057697773,-0.999998152256012,-0.00188479421194643,-0.000118305906653404,-0.99957948923111,0.000338448764523491,0.0289969518780708,-0.996161282062531,6.38297237287588e-009,0.0875367671251297,-0.996161341667175,-5.23814719599613e-007,0.0875362306833267,-0.996087729930878,6.00186638166633e-007,-0.088370107114315,-0.999999940395355,-0.000115492228360381,-3.94862545363139e-005,-0.999998569488525,-0.00169373222161084,9.81377452262677e-005,-0.996087670326233,3.81994539111474e-007,-0.0883703529834747,
- -0.996087729930878,1.98153458086381e-008,-0.0883698239922524,-0.999559164047241,-0.00297232996672392,-0.0295381993055344,-0.999999940395355,-0.000115492228360381,-3.94862545363139e-005,-0.996087729930878,6.00186638166633e-007,-0.088370107114315,-0.996087789535522,-2.98615390192936e-008,-0.08836929500103,-0.999999940395355,2.80816529993899e-005,-0.000415299989981577,-0.999583601951599,0.0028859581798315,0.0287118256092072,-0.996087789535522,9.089048091937e-008,-0.0883691310882568,-0.996087789535522,-1.94687387988779e-007,-0.0883694291114807,-1,0.000126304061268456,-3.72060640074778e-005,-0.999999940395355,2.80816529993899e-005,-0.000415299989981577,-0.996087789535522,-2.98615390192936e-008,-0.08836929500103,-0.996087849140167,-1.79915650733165e-006,-0.0883695930242538,-0.999998152256012,-0.00188479421194643,-0.000118305906653404,-1,0.000126304061268456,-3.72060640074778e-005,-0.996087789535522,-1.94687387988779e-007,-0.0883694291114807,-0.996087849140167,-1.79915650733165e-006,-0.0883695930242538,-0.996087729930878,-6.35141716998078e-009,-0.0883705466985703,-0.99957948923111,0.000338448764523491,0.0289969518780708,-0.999998152256012,-0.00188479421194643,-0.000118305906653404,-0.996087670326233,1.22420296122527e-008,-0.0883706137537956,-0.999554872512817,0.000518743298016489,-0.0298282951116562,-0.99957948923111,0.000338448764523491,0.0289969518780708,-0.996087729930878,-6.35141716998078e-009,-0.0883705466985703,-0.996087670326233,1.22420296122527e-008,-0.0883706137537956,-0.996087670326233,3.81994539111474e-007,-0.0883703529834747,-0.999998569488525,-0.00169373222161084,9.81377452262677e-005,-0.999554872512817,0.000518743298016489,-0.0298282951116562,0.0770810917019844,-0.99695235490799,0.0120226023718715,0.013207440264523,-0.999440312385559,-0.0307338144630194,0.0529964417219162,-0.994409263134003,0.0913322046399117,0.0801090598106384,-0.996777951717377,0.00402734847739339,-0.0429310500621796,-0.998263120651245,0.0403438843786716,-0.380081236362457,-0.922171175479889,0.0716832652688026,-0.00502962525933981,-0.999959170818329,0.00751304300501943,
- -0.00833624321967363,-0.999750792980194,-0.0207081157714128,0.00180558767169714,-0.999980509281158,-0.0059698298573494,0.00315081002190709,-0.998049855232239,0.0623420551419258,-0.0103826662525535,-0.999773561954498,-0.0185797363519669,-0.752456486225128,-0.631422996520996,0.187388464808464,-0.222105607390404,-0.693299174308777,0.685569405555725,-0.00715793296694756,-0.986987888813019,0.160635143518448,0.0370190180838108,-0.999297916889191,0.00576734123751521,-0.00996946450322866,-0.997992038726807,0.0625506639480591,0.201499238610268,-0.975371718406677,0.0897106379270554,0.0359622724354267,-0.999340832233429,0.0049577453173697,0.397633522748947,-0.915303230285645,-0.0640894919633865,-0.0161266103386879,-0.941989064216614,-0.335255980491638,-0.0078241964802146,-0.999813914299011,-0.0176328029483557,0.0029141993727535,-0.999991178512573,0.00303270667791367,0.0170305781066418,-0.998395264148712,0.0540079362690449,-0.0381697714328766,-0.999038577079773,-0.0215632691979408,0.412732988595963,-0.837288081645966,-0.358608573675156,0.048603817820549,-0.998722732067108,-0.013806514441967,0.607258319854736,-0.702142417430878,-0.371797323226929,-0.0881578028202057,-0.986832737922668,0.13560776412487,0.0719475746154785,-0.977915585041046,-0.196226045489311,0.0548605285584927,-0.993713557720184,-0.0975898206233978,-0.300301045179367,-0.953677535057068,0.0178462900221348,-0.326628476381302,-0.944422483444214,0.037149041891098,-0.0172007214277983,-0.999742329120636,0.0148175163194537,-0.0421938300132751,-0.998949527740479,0.0178755428642035,0.0633349716663361,-0.997757911682129,0.021630784496665,0.23894414305687,-0.970537304878235,0.0310336202383041,0.0563832260668278,-0.998341023921967,0.01166707649827,-0.0395329594612122,-0.999157309532166,-0.0110352709889412,-0.0221848264336586,-0.999662160873413,-0.0135444467887282,-0.0155299976468086,-0.999870359897614,-0.00426600594073534,-0.0158820599317551,-0.999752640724182,-0.0155678298324347,0.0510089248418808,-0.99499249458313,0.0859544575214386,0.0498549416661263,-0.997117280960083,-0.0571973137557507,
- 0.0876214057207108,-0.995754241943359,0.0282140132039785,0.161184459924698,-0.986857175827026,-0.0115052703768015,-0.0856329351663589,-0.996140599250793,0.0192554220557213,-0.199197873473167,-0.97201544046402,-0.124523684382439,0.0498549416661263,-0.997117280960083,-0.0571973137557507,0.0510089248418808,-0.99499249458313,0.0859544575214386,-0.441688358783722,-0.893132567405701,0.0850038081407547,-0.0912293791770935,-0.970620334148407,0.222650915384293,-0.150209471583366,-0.979841232299805,0.131712555885315,0.124197907745838,-0.99144458770752,-0.0401557348668575,-0.0207217074930668,-0.999772965908051,0.00496733002364635,0.0276804678142071,-0.999615848064423,-0.00136420037597418,-0.521378815174103,-0.852312028408051,0.0415740311145782,0.00315081002190709,-0.998049855232239,0.0623420551419258,-0.045603908598423,-0.998374819755554,0.0341761521995068,-0.0103826662525535,-0.999773561954498,-0.0185797363519669,0.397633522748947,-0.915303230285645,-0.0640894919633865,0.0750237628817558,-0.972294509410858,-0.221392899751663,0.082126796245575,-0.990463256835938,0.11062490940094,0.413932234048843,-0.878149628639221,-0.239819690585136,0.231543898582459,-0.961955606937408,-0.145013183355331,0.275417566299438,-0.958484172821045,-0.0738451778888702,0.145569249987602,-0.988021075725555,-0.0512241125106812,0.0801090598106384,-0.996777951717377,0.00402734847739339,-0.0221848264336586,-0.999662160873413,-0.0135444467887282,0.0170979294925928,-0.978498697280884,0.205542802810669,0.0230554807931185,-0.98404461145401,-0.176422357559204,0.0154929831624031,-0.999680638313293,-0.0199627857655287,0.0159053299576044,-0.999788641929626,-0.013023185543716,0.00180558767169714,-0.999980509281158,-0.0059698298573494,-0.0481038726866245,-0.996109962463379,0.0738311931490898,0.00315081002190709,-0.998049855232239,0.0623420551419258,0.444655001163483,-0.88642680644989,-0.128566741943359,0.0512012429535389,-0.998669624328613,-0.00612059701234102,0.0230554807931185,-0.98404461145401,-0.176422357559204,-0.103286974132061,-0.989633798599243,-0.0997841954231262,
- -0.227067992091179,-0.973835229873657,0.00923239253461361,-0.0158820599317551,-0.999752640724182,-0.0155678298324347,-0.727247893810272,-0.262196034193039,0.634321570396423,-0.389557152986526,-0.920472979545593,0.0312228817492723,-0.607972204685211,-0.793538689613342,0.0258094668388367,-0.62705659866333,-0.668359220027924,0.40011990070343,0.081381119787693,-0.961628019809723,-0.262008905410767,0.0103406319394708,-0.994755208492279,0.101760111749172,-0.429077237844467,-0.89528101682663,-0.119852229952812,-0.129999563097954,-0.991306722164154,0.0202773995697498,-0.298166632652283,-0.950835585594177,-0.0837166607379913,0.101970441639423,-0.981975078582764,0.159144669771194,0.0563832260668278,-0.998341023921967,0.01166707649827,0.294539570808411,-0.924337089061737,-0.242584958672524,-0.0939956083893776,-0.995549857616425,0.00673332158476114,0.184897243976593,-0.98252010345459,-0.0216149650514126,0.231543898582459,-0.961955606937408,-0.145013183355331,0.413932234048843,-0.878149628639221,-0.239819690585136,-0.300301045179367,-0.953677535057068,0.0178462900221348,-0.429077237844467,-0.89528101682663,-0.119852229952812,-0.326628476381302,-0.944422483444214,0.037149041891098,-0.0103826662525535,-0.999773561954498,-0.0185797363519669,-0.045603908598423,-0.998374819755554,0.0341761521995068,-0.217243954539299,-0.958546221256256,-0.18437547981739,0.0876214057207108,-0.995754241943359,0.0282140132039785,-0.0856329351663589,-0.996140599250793,0.0192554220557213,0.0770810917019844,-0.99695235490799,0.0120226023718715,0.275417566299438,-0.958484172821045,-0.0738451778888702,0.231543898582459,-0.961955606937408,-0.145013183355331,-0.0381697714328766,-0.999038577079773,-0.0215632691979408,0.180614843964577,-0.983279764652252,0.0232203043997288,-0.41464763879776,-0.906478404998779,0.0797751918435097,-0.0875155255198479,-0.989324033260345,0.116529315710068,-0.230261862277985,-0.97042590379715,-0.0724782571196556,0.0383454263210297,-0.999262869358063,-0.00184593664016575,-0.0875155255198479,-0.989324033260345,0.116529315710068,0.0606657937169075,-0.997698426246643,-0.0302907023578882,
- 0.365903526544571,-0.92852783203125,-0.0628546252846718,0.237895950675011,-0.900657534599304,-0.363622903823853,0.0103406319394708,-0.994755208492279,0.101760111749172,0.0170979294925928,-0.978498697280884,0.205542802810669,-0.045603908598423,-0.998374819755554,0.0341761521995068,-0.0875155255198479,-0.989324033260345,0.116529315710068,0.0383454263210297,-0.999262869358063,-0.00184593664016575,0.180614843964577,-0.983279764652252,0.0232203043997288,0.0135872578248382,-0.999905347824097,-0.0021571428515017,0.0876214057207108,-0.995754241943359,0.0282140132039785,0.0770810917019844,-0.99695235490799,0.0120226023718715,0.0801090598106384,-0.996777951717377,0.00402734847739339,0.145569249987602,-0.988021075725555,-0.0512241125106812,-0.0221848264336586,-0.999662160873413,-0.0135444467887282,0.0801090598106384,-0.996777951717377,0.00402734847739339,0.0529964417219162,-0.994409263134003,0.0913322046399117,0.0633349716663361,-0.997757911682129,0.021630784496665,0.0529964417219162,-0.994409263134003,0.0913322046399117,0.411279112100601,-0.905358970165253,0.105709910392761,0.157668367028236,-0.986725926399231,-0.0388918183743954,0.00597813911736012,-0.996597766876221,-0.0822022184729576,0.0315658077597618,-0.979881405830383,0.197068750858307,-0.0447867549955845,-0.998982012271881,-0.00540044950321317,-0.0382034368813038,-0.999005973339081,0.022971061989665,0.242653474211693,-0.968634903430939,-0.0535310804843903,0.194472074508667,-0.979909539222717,-0.0442489758133888,0.420202881097794,-0.892751216888428,-0.162556514143944,0.28108948469162,-0.958122730255127,-0.0546758100390434,0.574118793010712,-0.779256999492645,-0.251288831233978,0.0590618401765823,-0.989825308322906,-0.129451021552086,0.081381119787693,-0.961628019809723,-0.262008905410767,0.0230554807931185,-0.98404461145401,-0.176422357559204,0.0103406319394708,-0.994755208492279,0.101760111749172,-0.0221848264336586,-0.999662160873413,-0.0135444467887282,0.403753012418747,-0.907967805862427,-0.112151443958282,0.145569249987602,-0.988021075725555,-0.0512241125106812,
- -0.389818370342255,-0.88618415594101,0.250438332557678,0.403753012418747,-0.907967805862427,-0.112151443958282,-0.0875155255198479,-0.989324033260345,0.116529315710068,-0.0161266103386879,-0.941989064216614,-0.335255980491638,0.397633522748947,-0.915303230285645,-0.0640894919633865,0.214715003967285,-0.942411005496979,-0.256435066461563,0.294539570808411,-0.924337089061737,-0.242584958672524,0.420202881097794,-0.892751216888428,-0.162556514143944,0.194472074508667,-0.979909539222717,-0.0442489758133888,-0.389818370342255,-0.88618415594101,0.250438332557678,-0.41464763879776,-0.906478404998779,0.0797751918435097,-0.190041318535805,-0.971136212348938,0.144148468971252,0.242653474211693,-0.968634903430939,-0.0535310804843903,0.060501255095005,-0.954110145568848,-0.293280392885208,0.0353534705936909,-0.999322295188904,0.0102472035214305,0.0370190180838108,-0.999297916889191,0.00576734123751521,0.242653474211693,-0.968634903430939,-0.0535310804843903,0.420202881097794,-0.892751216888428,-0.162556514143944,0.373572409152985,-0.862134993076324,-0.342296630144119,0.060501255095005,-0.954110145568848,-0.293280392885208,-0.913718104362488,-0.403097867965698,-0.0512965098023415,0.195290997624397,-0.531317830085754,0.824356019496918,-0.142729982733727,0.828465759754181,0.54154646396637,-0.300301045179367,-0.953677535057068,0.0178462900221348,-0.0421938300132751,-0.998949527740479,0.0178755428642035,0.123520366847515,-0.979808986186981,-0.157216727733612,-0.300301045179367,-0.953677535057068,0.0178462900221348,0.123520366847515,-0.979808986186981,-0.157216727733612,-0.429077237844467,-0.89528101682663,-0.119852229952812,-0.0381697714328766,-0.999038577079773,-0.0215632691979408,0.0170305781066418,-0.998395264148712,0.0540079362690449,0.275417566299438,-0.958484172821045,-0.0738451778888702,0.082126796245575,-0.990463256835938,0.11062490940094,0.0750237628817558,-0.972294509410858,-0.221392899751663,0.0115070715546608,-0.999920904636383,0.00509213376790285,0.00180558767169714,-0.999980509281158,-0.0059698298573494,0.272252857685089,-0.923984050750732,0.268573611974716,
- -0.227067992091179,-0.973835229873657,0.00923239253461361,-0.103286974132061,-0.989633798599243,-0.0997841954231262,0.156768843531609,-0.983885407447815,-0.0859827771782875,-0.227067992091179,-0.973835229873657,0.00923239253461361,0.272252857685089,-0.923984050750732,0.268573611974716,-0.600871205329895,-0.583857834339142,-0.545952200889587,-0.500476181507111,-0.865379691123962,0.0253296624869108,0.00597813911736012,-0.996597766876221,-0.0822022184729576,-0.0207217074930668,-0.999772965908051,0.00496733002364635,0.124197907745838,-0.99144458770752,-0.0401557348668575,0.00597813911736012,-0.996597766876221,-0.0822022184729576,-0.0382034368813038,-0.999005973339081,0.022971061989665,0.214715003967285,-0.942411005496979,-0.256435066461563,0.397633522748947,-0.915303230285645,-0.0640894919633865,0.082126796245575,-0.990463256835938,0.11062490940094,0.294539570808411,-0.924337089061737,-0.242584958672524,0.082126796245575,-0.990463256835938,0.11062490940094,0.101970441639423,-0.981975078582764,0.159144669771194,0.574118793010712,-0.779256999492645,-0.251288831233978,0.607258319854736,-0.702142417430878,-0.371797323226929,0.048603817820549,-0.998722732067108,-0.013806514441967,0.0590618401765823,-0.989825308322906,-0.129451021552086,0.048603817820549,-0.998722732067108,-0.013806514441967,0.00939265172928572,-0.999887466430664,0.0116970632225275,-0.000913496420253068,-0.999951541423798,-0.00980005133897066,-0.00833624321967363,-0.999750792980194,-0.0207081157714128,0.0590618401765823,-0.989825308322906,-0.129451021552086,-0.607972204685211,-0.793538689613342,0.0258094668388367,-0.389557152986526,-0.920472979545593,0.0312228817492723,-0.55565744638443,-0.788072049617767,0.264928996562958,-0.227067992091179,-0.973835229873657,0.00923239253461361,-0.0193767677992582,-0.999764263629913,0.0097960215061903,-0.0158820599317551,-0.999752640724182,-0.0155678298324347,0.411279112100601,-0.905358970165253,0.105709910392761,-0.538153946399689,-0.835725784301758,0.109328649938107,0.659895896911621,-0.72788006067276,-0.186354532837868,
- 0.488168954849243,-0.870232582092285,-0.0662304610013962,0.140344992280006,-0.988407015800476,0.0579216592013836,0.659895896911621,-0.72788006067276,-0.186354532837868,0.391039222478867,-0.901346564292908,-0.186179384589195,0.192813754081726,-0.980275511741638,-0.0433912947773933,0.0315658077597618,-0.979881405830383,0.197068750858307,-0.298166632652283,-0.950835585594177,-0.0837166607379913,-0.326628476381302,-0.944422483444214,0.037149041891098,-0.429077237844467,-0.89528101682663,-0.119852229952812,-0.0912293791770935,-0.970620334148407,0.222650915384293,0.161184459924698,-0.986857175827026,-0.0115052703768015,0.0876214057207108,-0.995754241943359,0.0282140132039785,0.023897772654891,-0.999678552150726,0.00846482999622822,-0.000913496420253068,-0.999951541423798,-0.00980005133897066,0.00939265172928572,-0.999887466430664,0.0116970632225275,0.394949853420258,-0.918499946594238,-0.0192984621971846,0.0952757969498634,-0.995039284229279,0.0286233425140381,-0.222105607390404,-0.693299174308777,0.685569405555725,0.708038866519928,-0.591001808643341,0.386520117521286,0.013207440264523,-0.999440312385559,-0.0307338144630194,-0.538153946399689,-0.835725784301758,0.109328649938107,0.411279112100601,-0.905358970165253,0.105709910392761,0.0529964417219162,-0.994409263134003,0.0913322046399117,0.013207440264523,-0.999440312385559,-0.0307338144630194,0.411279112100601,-0.905358970165253,0.105709910392761,0.444655001163483,-0.88642680644989,-0.128566741943359,0.0230554807931185,-0.98404461145401,-0.176422357559204,0.081381119787693,-0.961628019809723,-0.262008905410767,0.081381119787693,-0.961628019809723,-0.262008905410767,-0.727247893810272,-0.262196034193039,0.634321570396423,-0.607972204685211,-0.793538689613342,0.0258094668388367,-0.0421938300132751,-0.998949527740479,0.0178755428642035,-0.0894178375601768,-0.991496860980988,0.0945430770516396,-0.0881578028202057,-0.986832737922668,0.13560776412487,-0.0421938300132751,-0.998949527740479,0.0178755428642035,-0.0881578028202057,-0.986832737922668,0.13560776412487,-0.0155299976468086,-0.999870359897614,-0.00426600594073534,
- -0.0111239943653345,-0.890104055404663,-0.45562157034874,-0.521378815174103,-0.852312028408051,0.0415740311145782,-0.252512127161026,-0.959456086158752,0.125225856900215,0.082126796245575,-0.990463256835938,0.11062490940094,0.294539570808411,-0.924337089061737,-0.242584958672524,0.214715003967285,-0.942411005496979,-0.256435066461563,0.294539570808411,-0.924337089061737,-0.242584958672524,-0.0161266103386879,-0.941989064216614,-0.335255980491638,0.214715003967285,-0.942411005496979,-0.256435066461563,0.048603817820549,-0.998722732067108,-0.013806514441967,0.412732988595963,-0.837288081645966,-0.358608573675156,0.00939265172928572,-0.999887466430664,0.0116970632225275,0.081381119787693,-0.961628019809723,-0.262008905410767,-0.607972204685211,-0.793538689613342,0.0258094668388367,0.444655001163483,-0.88642680644989,-0.128566741943359,0.411279112100601,-0.905358970165253,0.105709910392761,0.659895896911621,-0.72788006067276,-0.186354532837868,0.140344992280006,-0.988407015800476,0.0579216592013836,0.722824573516846,-0.690174102783203,0.0344120003283024,0.082126796245575,-0.990463256835938,0.11062490940094,-0.0103826662525535,-0.999773561954498,-0.0185797363519669,0.101970441639423,-0.981975078582764,0.159144669771194,-0.0172007214277983,-0.999742329120636,0.0148175163194537,0.371749877929688,-0.928212642669678,-0.0149492053315043,-0.0894178375601768,-0.991496860980988,0.0945430770516396,-0.0421938300132751,-0.998949527740479,0.0178755428642035,0.0512012429535389,-0.998669624328613,-0.00612059701234102,0.0326174162328243,-0.998885929584503,-0.0340998210012913,-0.129999563097954,-0.991306722164154,0.0202773995697498,-0.0161266103386879,-0.941989064216614,-0.335255980491638,0.194472074508667,-0.979909539222717,-0.0442489758133888,0.0359622724354267,-0.999340832233429,0.0049577453173697,0.0110877752304077,-0.999850630760193,-0.0132579607889056,0.194472074508667,-0.979909539222717,-0.0442489758133888,-0.0161266103386879,-0.941989064216614,-0.335255980491638,0.294539570808411,-0.924337089061737,-0.242584958672524,-0.0232338327914476,-0.999501705169678,0.0213641244918108,
- 0.0170305781066418,-0.998395264148712,0.0540079362690449,0.0029141993727535,-0.999991178512573,0.00303270667791367,-0.103286974132061,-0.989633798599243,-0.0997841954231262,0.0548605285584927,-0.993713557720184,-0.0975898206233978,0.272252857685089,-0.923984050750732,0.268573611974716,-0.0881578028202057,-0.986832737922668,0.13560776412487,0.0548605285584927,-0.993713557720184,-0.0975898206233978,-0.103286974132061,-0.989633798599243,-0.0997841954231262,-0.0395329594612122,-0.999157309532166,-0.0110352709889412,-0.0103826662525535,-0.999773561954498,-0.0185797363519669,-0.217243954539299,-0.958546221256256,-0.18437547981739,-0.150209471583366,-0.979841232299805,0.131712555885315,-0.166843488812447,-0.985967218875885,0.0056494208984077,-0.441688358783722,-0.893132567405701,0.0850038081407547,0.0115070715546608,-0.999920904636383,0.00509213376790285,-0.0232338327914476,-0.999501705169678,0.0213641244918108,0.00180558767169714,-0.999980509281158,-0.0059698298573494,-0.0232338327914476,-0.999501705169678,0.0213641244918108,-0.0481038726866245,-0.996109962463379,0.0738311931490898,0.00180558767169714,-0.999980509281158,-0.0059698298573494,0.0510089248418808,-0.99499249458313,0.0859544575214386,0.187455609440804,-0.982272684574127,0.000864355417434126,-0.0111239943653345,-0.890104055404663,-0.45562157034874,-0.252512127161026,-0.959456086158752,0.125225856900215,-0.252512127161026,-0.959456086158752,0.125225856900215,-0.199197873473167,-0.97201544046402,-0.124523684382439,0.0510089248418808,-0.99499249458313,0.0859544575214386,-0.230261862277985,-0.97042590379715,-0.0724782571196556,-0.0395329594612122,-0.999157309532166,-0.0110352709889412,-0.217243954539299,-0.958546221256256,-0.18437547981739,-0.045603908598423,-0.998374819755554,0.0341761521995068,0.0383454263210297,-0.999262869358063,-0.00184593664016575,-0.230261862277985,-0.97042590379715,-0.0724782571196556,-0.217243954539299,-0.958546221256256,-0.18437547981739,0.397633522748947,-0.915303230285645,-0.0640894919633865,0.413932234048843,-0.878149628639221,-0.239819690585136,
- 0.0750237628817558,-0.972294509410858,-0.221392899751663,-0.0462262667715549,-0.994960725307465,0.0889732539653778,-0.197459533810616,-0.975187659263611,0.100093580782413,-0.0508590191602707,-0.989955365657806,0.131915137171745,-0.0811379179358482,-0.99535995721817,0.0517217665910721,0.0633349716663361,-0.997757911682129,0.021630784496665,0.0529964417219162,-0.994409263134003,0.0913322046399117,0.420202881097794,-0.892751216888428,-0.162556514143944,0.275417566299438,-0.958484172821045,-0.0738451778888702,0.0115070715546608,-0.999920904636383,0.00509213376790285,0.0750237628817558,-0.972294509410858,-0.221392899751663,0.0750237628817558,-0.972294509410858,-0.221392899751663,0.413932234048843,-0.878149628639221,-0.239819690585136,0.275417566299438,-0.958484172821045,-0.0738451778888702,-0.62705659866333,-0.668359220027924,0.40011990070343,0.00315081002190709,-0.998049855232239,0.0623420551419258,-0.0481038726866245,-0.996109962463379,0.0738311931490898,0.23894414305687,-0.970537304878235,0.0310336202383041,0.420202881097794,-0.892751216888428,-0.162556514143944,0.294539570808411,-0.924337089061737,-0.242584958672524,0.0633349716663361,-0.997757911682129,0.021630784496665,0.420202881097794,-0.892751216888428,-0.162556514143944,0.23894414305687,-0.970537304878235,0.0310336202383041,0.365903526544571,-0.92852783203125,-0.0628546252846718,0.744850158691406,-0.533777296543121,-0.400349974632263,0.237895950675011,-0.900657534599304,-0.363622903823853,0.744850158691406,-0.533777296543121,-0.400349974632263,0.00291943061165512,-0.994661688804626,-0.103148460388184,0.356640875339508,-0.926119029521942,-0.12292567640543,-0.521378815174103,-0.852312028408051,0.0415740311145782,-0.00728142913430929,-0.999647915363312,-0.0255118925124407,-0.252512127161026,-0.959456086158752,0.125225856900215,-0.0377369411289692,-0.998253345489502,0.0454550720751286,-0.500476181507111,-0.865379691123962,0.0253296624869108,0.0080720204859972,-0.996727645397186,-0.0804291367530823,0.365903526544571,-0.92852783203125,-0.0628546252846718,0.00291943061165512,-0.994661688804626,-0.103148460388184,
- 0.744850158691406,-0.533777296543121,-0.400349974632263,0.0103406319394708,-0.994755208492279,0.101760111749172,-0.045603908598423,-0.998374819755554,0.0341761521995068,0.00315081002190709,-0.998049855232239,0.0623420551419258,-0.62705659866333,-0.668359220027924,0.40011990070343,0.0103406319394708,-0.994755208492279,0.101760111749172,0.00315081002190709,-0.998049855232239,0.0623420551419258,0.403753012418747,-0.907967805862427,-0.112151443958282,-0.389818370342255,-0.88618415594101,0.250438332557678,0.145569249987602,-0.988021075725555,-0.0512241125106812,0.145569249987602,-0.988021075725555,-0.0512241125106812,-0.389818370342255,-0.88618415594101,0.250438332557678,0.0135872578248382,-0.999905347824097,-0.0021571428515017,0.0154929831624031,-0.999680638313293,-0.0199627857655287,-0.0224513038992882,-0.996485710144043,0.0806979164481163,-0.0174830742180347,-0.994931817054749,-0.0990202352404594,-0.0224513038992882,-0.996485710144043,0.0806979164481163,-0.199197873473167,-0.97201544046402,-0.124523684382439,-0.0174830742180347,-0.994931817054749,-0.0990202352404594,0.444655001163483,-0.88642680644989,-0.128566741943359,-0.607972204685211,-0.793538689613342,0.0258094668388367,-0.0628186389803886,-0.996956706047058,-0.0461636446416378,0.237895950675011,-0.900657534599304,-0.363622903823853,-0.186578750610352,-0.639967024326324,-0.745406329631805,0.0606657937169075,-0.997698426246643,-0.0302907023578882,-0.0362762920558453,-0.998757243156433,-0.0341767929494381,-0.867128670215607,-0.487758696079254,-0.100893057882786,-0.752456486225128,-0.631422996520996,0.187388464808464,-0.0912293791770935,-0.970620334148407,0.222650915384293,0.0876214057207108,-0.995754241943359,0.0282140132039785,0.0135872578248382,-0.999905347824097,-0.0021571428515017,-0.0912293791770935,-0.970620334148407,0.222650915384293,0.0135872578248382,-0.999905347824097,-0.0021571428515017,-0.150209471583366,-0.979841232299805,0.131712555885315,-0.41464763879776,-0.906478404998779,0.0797751918435097,-0.389818370342255,-0.88618415594101,0.250438332557678,
- -0.0875155255198479,-0.989324033260345,0.116529315710068,-0.867128670215607,-0.487758696079254,-0.100893057882786,-0.0362762920558453,-0.998757243156433,-0.0341767929494381,-0.45001208782196,-0.891344785690308,0.0547153800725937,0.0383454263210297,-0.999262869358063,-0.00184593664016575,-0.045603908598423,-0.998374819755554,0.0341761521995068,0.0170979294925928,-0.978498697280884,0.205542802810669,0.0952757969498634,-0.995039284229279,0.0286233425140381,0.708038866519928,-0.591001808643341,0.386520117521286,0.0661620050668716,-0.991589486598969,0.111233703792095,0.0563832260668278,-0.998341023921967,0.01166707649827,0.23894414305687,-0.970537304878235,0.0310336202383041,0.294539570808411,-0.924337089061737,-0.242584958672524,0.0170305781066418,-0.998395264148712,0.0540079362690449,-0.0232338327914476,-0.999501705169678,0.0213641244918108,0.0115070715546608,-0.999920904636383,0.00509213376790285,0.275417566299438,-0.958484172821045,-0.0738451778888702,0.0170305781066418,-0.998395264148712,0.0540079362690449,0.0115070715546608,-0.999920904636383,0.00509213376790285,-0.389818370342255,-0.88618415594101,0.250438332557678,-0.150209471583366,-0.979841232299805,0.131712555885315,0.0135872578248382,-0.999905347824097,-0.0021571428515017,0.708038866519928,-0.591001808643341,0.386520117521286,0.744850158691406,-0.533777296543121,-0.400349974632263,0.356640875339508,-0.926119029521942,-0.12292567640543,0.708038866519928,-0.591001808643341,0.386520117521286,0.356640875339508,-0.926119029521942,-0.12292567640543,0.0661620050668716,-0.991589486598969,0.111233703792095,0.124197907745838,-0.99144458770752,-0.0401557348668575,-0.600871205329895,-0.583857834339142,-0.545952200889587,0.00597813911736012,-0.996597766876221,-0.0822022184729576,-0.0875155255198479,-0.989324033260345,0.116529315710068,0.403753012418747,-0.907967805862427,-0.112151443958282,-0.230261862277985,-0.97042590379715,-0.0724782571196556,0.180614843964577,-0.983279764652252,0.0232203043997288,0.0383454263210297,-0.999262869358063,-0.00184593664016575,0.0170979294925928,-0.978498697280884,0.205542802810669,
- -0.521378815174103,-0.852312028408051,0.0415740311145782,0.0276804678142071,-0.999615848064423,-0.00136420037597418,0.0159053299576044,-0.999788641929626,-0.013023185543716,-0.00728142913430929,-0.999647915363312,-0.0255118925124407,0.124197907745838,-0.99144458770752,-0.0401557348668575,-0.0310220494866371,-0.989270448684692,0.142763540148735,-0.600871205329895,-0.583857834339142,-0.545952200889587,0.28108948469162,-0.958122730255127,-0.0546758100390434,-0.00502962525933981,-0.999959170818329,0.00751304300501943,-0.0193767677992582,-0.999764263629913,0.0097960215061903,-0.227067992091179,-0.973835229873657,0.00923239253461361,0.156768843531609,-0.983885407447815,-0.0859827771782875,0.156768843531609,-0.983885407447815,-0.0859827771782875,0.272252857685089,-0.923984050750732,0.268573611974716,0.574118793010712,-0.779256999492645,-0.251288831233978,0.28108948469162,-0.958122730255127,-0.0546758100390434,0.0539832897484303,-0.996631920337677,0.0617306977510452,-0.0206929575651884,-0.999535202980042,-0.022386347874999,-0.0894178375601768,-0.991496860980988,0.0945430770516396,0.371749877929688,-0.928212642669678,-0.0149492053315043,0.0719475746154785,-0.977915585041046,-0.196226045489311,-0.0881578028202057,-0.986832737922668,0.13560776412487,-0.0894178375601768,-0.991496860980988,0.0945430770516396,-0.0206929575651884,-0.999535202980042,-0.022386347874999,0.123520366847515,-0.979808986186981,-0.157216727733612,-0.0421938300132751,-0.998949527740479,0.0178755428642035,0.0498549416661263,-0.997117280960083,-0.0571973137557507,-0.199197873473167,-0.97201544046402,-0.124523684382439,0.123520366847515,-0.979808986186981,-0.157216727733612,0.0498549416661263,-0.997117280960083,-0.0571973137557507,-0.0224513038992882,-0.996485710144043,0.0806979164481163,-0.129999563097954,-0.991306722164154,0.0202773995697498,-0.429077237844467,-0.89528101682663,-0.119852229952812,-0.0628186389803886,-0.996956706047058,-0.0461636446416378,0.0326174162328243,-0.998885929584503,-0.0340998210012913,0.0512012429535389,-0.998669624328613,-0.00612059701234102,
- 0.444655001163483,-0.88642680644989,-0.128566741943359,-0.607972204685211,-0.793538689613342,0.0258094668388367,-0.539538502693176,-0.832695960998535,0.12456202507019,-0.0628186389803886,-0.996956706047058,-0.0461636446416378,-0.55565744638443,-0.788072049617767,0.264928996562958,-0.539538502693176,-0.832695960998535,0.12456202507019,-0.607972204685211,-0.793538689613342,0.0258094668388367,-0.655805110931396,-0.749592959880829,0.0896101221442223,0.0080720204859972,-0.996727645397186,-0.0804291367530823,-0.000913496420253068,-0.999951541423798,-0.00980005133897066,0.023897772654891,-0.999678552150726,0.00846482999622822,-0.0377369411289692,-0.998253345489502,0.0454550720751286,0.0080720204859972,-0.996727645397186,-0.0804291367530823,-0.655805110931396,-0.749592959880829,0.0896101221442223,-0.0377369411289692,-0.998253345489502,0.0454550720751286,-0.655805110931396,-0.749592959880829,0.0896101221442223,0.391039222478867,-0.901346564292908,-0.186179384589195,0.391039222478867,-0.901346564292908,-0.186179384589195,0.0315658077597618,-0.979881405830383,0.197068750858307,-0.0377369411289692,-0.998253345489502,0.0454550720751286,0.0346299558877945,-0.999155104160309,0.0221311915665865,0.00248900451697409,-0.999930620193481,0.0115107055753469,-0.652803957462311,-0.755738496780396,0.0520208142697811,-0.0437339842319489,-0.995381057262421,-0.0854621455073357,0.0952757969498634,-0.995039284229279,0.0286233425140381,-0.0800617560744286,-0.995661437511444,0.0474153347313404,-0.222105607390404,-0.693299174308777,0.685569405555725,-0.00715793296694756,-0.986987888813019,0.160635143518448,-0.222105607390404,-0.693299174308777,0.685569405555725,-0.0800617560744286,-0.995661437511444,0.0474153347313404,-0.0255903955549002,-0.999567985534668,0.0144558502361178,-0.0362762920558453,-0.998757243156433,-0.0341767929494381,-0.752456486225128,-0.631422996520996,0.187388464808464,-0.752456486225128,-0.631422996520996,0.187388464808464,-0.00715793296694756,-0.986987888813019,0.160635143518448,-0.0255903955549002,-0.999567985534668,0.0144558502361178,
- -0.62705659866333,-0.668359220027924,0.40011990070343,-0.727247893810272,-0.262196034193039,0.634321570396423,0.081381119787693,-0.961628019809723,-0.262008905410767,-0.62705659866333,-0.668359220027924,0.40011990070343,-0.389557152986526,-0.920472979545593,0.0312228817492723,-0.727247893810272,-0.262196034193039,0.634321570396423,-0.0232338327914476,-0.999501705169678,0.0213641244918108,-0.389557152986526,-0.920472979545593,0.0312228817492723,-0.0481038726866245,-0.996109962463379,0.0738311931490898,-0.429077237844467,-0.89528101682663,-0.119852229952812,0.123520366847515,-0.979808986186981,-0.157216727733612,-0.199197873473167,-0.97201544046402,-0.124523684382439,-0.0224513038992882,-0.996485710144043,0.0806979164481163,-0.429077237844467,-0.89528101682663,-0.119852229952812,-0.199197873473167,-0.97201544046402,-0.124523684382439,0.0512012429535389,-0.998669624328613,-0.00612059701234102,-0.0224513038992882,-0.996485710144043,0.0806979164481163,0.0154929831624031,-0.999680638313293,-0.0199627857655287,0.0230554807931185,-0.98404461145401,-0.176422357559204,0.0512012429535389,-0.998669624328613,-0.00612059701234102,0.0154929831624031,-0.999680638313293,-0.0199627857655287,-0.142729982733727,0.828465759754181,0.54154646396637,0.195290997624397,-0.531317830085754,0.824356019496918,0.29151776432991,-0.422632485628128,0.85813707113266,0.060501255095005,-0.954110145568848,-0.293280392885208,0.373572409152985,-0.862134993076324,-0.342296630144119,0.157668367028236,-0.986725926399231,-0.0388918183743954,0.681399762630463,-0.696699678897858,-0.224285289645195,0.0353534705936909,-0.999322295188904,0.0102472035214305,0.0346299558877945,-0.999155104160309,0.0221311915665865,-0.0437339842319489,-0.995381057262421,-0.0854621455073357,0.016888590529561,-0.927932500839233,0.372365534305573,-0.0310220494866371,-0.989270448684692,0.142763540148735,-0.0111239943653345,-0.890104055404663,-0.45562157034874,0.187455609440804,-0.982272684574127,0.000864355417434126,0.124197907745838,-0.99144458770752,-0.0401557348668575,-0.0111239943653345,-0.890104055404663,-0.45562157034874,
- -0.0310220494866371,-0.989270448684692,0.142763540148735,0.124197907745838,-0.99144458770752,-0.0401557348668575,-0.521378815174103,-0.852312028408051,0.0415740311145782,-0.0111239943653345,-0.890104055404663,-0.45562157034874,0.192813754081726,-0.980275511741638,-0.0433912947773933,-0.166843488812447,-0.985967218875885,0.0056494208984077,-0.0447867549955845,-0.998982012271881,-0.00540044950321317,0.0315658077597618,-0.979881405830383,0.197068750858307,0.0590618401765823,-0.989825308322906,-0.129451021552086,-0.00833624321967363,-0.999750792980194,-0.0207081157714128,-0.00502962525933981,-0.999959170818329,0.00751304300501943,0.28108948469162,-0.958122730255127,-0.0546758100390434,0.0080720204859972,-0.996727645397186,-0.0804291367530823,-0.0429310500621796,-0.998263120651245,0.0403438843786716,-0.00833624321967363,-0.999750792980194,-0.0207081157714128,-0.000913496420253068,-0.999951541423798,-0.00980005133897066,-0.103286974132061,-0.989633798599243,-0.0997841954231262,-0.0158820599317551,-0.999752640724182,-0.0155678298324347,-0.0155299976468086,-0.999870359897614,-0.00426600594073534,-0.0881578028202057,-0.986832737922668,0.13560776412487,-0.0193767677992582,-0.999764263629913,0.0097960215061903,0.187455609440804,-0.982272684574127,0.000864355417434126,0.0510089248418808,-0.99499249458313,0.0859544575214386,-0.0158820599317551,-0.999752640724182,-0.0155678298324347,-0.0421938300132751,-0.998949527740479,0.0178755428642035,-0.0155299976468086,-0.999870359897614,-0.00426600594073534,0.0498549416661263,-0.997117280960083,-0.0571973137557507,-0.00502962525933981,-0.999959170818329,0.00751304300501943,-0.380081236362457,-0.922171175479889,0.0716832652688026,0.187455609440804,-0.982272684574127,0.000864355417434126,-0.0193767677992582,-0.999764263629913,0.0097960215061903,-0.41464763879776,-0.906478404998779,0.0797751918435097,0.180614843964577,-0.983279764652252,0.0232203043997288,0.0276804678142071,-0.999615848064423,-0.00136420037597418,-0.0207217074930668,-0.999772965908051,0.00496733002364635,-0.0382034368813038,-0.999005973339081,0.022971061989665,
- -0.0447867549955845,-0.998982012271881,-0.00540044950321317,-0.150209471583366,-0.979841232299805,0.131712555885315,-0.190041318535805,-0.971136212348938,0.144148468971252,-0.41464763879776,-0.906478404998779,0.0797751918435097,-0.0207217074930668,-0.999772965908051,0.00496733002364635,-0.0382034368813038,-0.999005973339081,0.022971061989665,-0.190041318535805,-0.971136212348938,0.144148468971252,0.0159053299576044,-0.999788641929626,-0.013023185543716,0.0276804678142071,-0.999615848064423,-0.00136420037597418,0.180614843964577,-0.983279764652252,0.0232203043997288,0.0170979294925928,-0.978498697280884,0.205542802810669,-0.0447867549955845,-0.998982012271881,-0.00540044950321317,-0.166843488812447,-0.985967218875885,0.0056494208984077,-0.150209471583366,-0.979841232299805,0.131712555885315,0.00180558767169714,-0.999980509281158,-0.0059698298573494,-0.0103826662525535,-0.999773561954498,-0.0185797363519669,0.082126796245575,-0.990463256835938,0.11062490940094,0.0486821793019772,-0.998812854290009,0.00172357156407088,-0.55565744638443,-0.788072049617767,0.264928996562958,-0.389557152986526,-0.920472979545593,0.0312228817492723,0.403753012418747,-0.907967805862427,-0.112151443958282,-0.0221848264336586,-0.999662160873413,-0.0135444467887282,-0.0395329594612122,-0.999157309532166,-0.0110352709889412,-0.230261862277985,-0.97042590379715,-0.0724782571196556,0.0770810917019844,-0.99695235490799,0.0120226023718715,-0.0856329351663589,-0.996140599250793,0.0192554220557213,-0.538153946399689,-0.835725784301758,0.109328649938107,0.013207440264523,-0.999440312385559,-0.0307338144630194,-0.0395329594612122,-0.999157309532166,-0.0110352709889412,0.0563832260668278,-0.998341023921967,0.01166707649827,0.101970441639423,-0.981975078582764,0.159144669771194,-0.0103826662525535,-0.999773561954498,-0.0185797363519669,0.194472074508667,-0.979909539222717,-0.0442489758133888,0.242653474211693,-0.968634903430939,-0.0535310804843903,0.0370190180838108,-0.999297916889191,0.00576734123751521,0.0359622724354267,-0.999340832233429,0.0049577453173697,
- 0.00291943061165512,-0.994661688804626,-0.103148460388184,0.0661620050668716,-0.991589486598969,0.111233703792095,0.356640875339508,-0.926119029521942,-0.12292567640543,0.0154501618817449,-0.999840378761292,0.00897811353206635,0.347977370023727,-0.936156809329987,-0.0502201281487942,0.132570639252663,-0.986558854579926,-0.0955333784222603,0.00112072087358683,-0.998561859130859,-0.0535987727344036,0.0535490140318871,-0.99855774641037,0.00386741920374334,0.0370190180838108,-0.999297916889191,0.00576734123751521,0.0353534705936909,-0.999322295188904,0.0102472035214305,0.016888590529561,-0.927932500839233,0.372365534305573,-0.00996946450322866,-0.997992038726807,0.0625506639480591,0.0359622724354267,-0.999340832233429,0.0049577453173697,0.201499238610268,-0.975371718406677,0.0897106379270554,0.0773286893963814,-0.990104258060455,0.117105834186077,0.0110877752304077,-0.999850630760193,-0.0132579607889056,-0.0078241964802146,-0.999813914299011,-0.0176328029483557,-0.0939956083893776,-0.995549857616425,0.00673332158476114,0.413932234048843,-0.878149628639221,-0.239819690585136,0.397633522748947,-0.915303230285645,-0.0640894919633865,0.140344992280006,-0.988407015800476,0.0579216592013836,0.488168954849243,-0.870232582092285,-0.0662304610013962,0.00248900451697409,-0.999930620193481,0.0115107055753469,0.0346299558877945,-0.999155104160309,0.0221311915665865,0.681399762630463,-0.696699678897858,-0.224285289645195,0.722824573516846,-0.690174102783203,0.0344120003283024,0.140344992280006,-0.988407015800476,0.0579216592013836,0.060501255095005,-0.954110145568848,-0.293280392885208,-0.0174830742180347,-0.994931817054749,-0.0990202352404594,-0.00728142913430929,-0.999647915363312,-0.0255118925124407,0.0159053299576044,-0.999788641929626,-0.013023185543716,0.0154929831624031,-0.999680638313293,-0.0199627857655287,-0.0628186389803886,-0.996956706047058,-0.0461636446416378,-0.539538502693176,-0.832695960998535,0.12456202507019,0.0326174162328243,-0.998885929584503,-0.0340998210012913,0.0486821793019772,-0.998812854290009,0.00172357156407088,
- -0.389557152986526,-0.920472979545593,0.0312228817492723,-0.0232338327914476,-0.999501705169678,0.0213641244918108,0.0029141993727535,-0.999991178512573,0.00303270667791367,0.00939265172928572,-0.999887466430664,0.0116970632225275,-0.0103417178615928,-0.997289836406708,0.072843000292778,0.394949853420258,-0.918499946594238,-0.0192984621971846,-0.0481038726866245,-0.996109962463379,0.0738311931490898,-0.389557152986526,-0.920472979545593,0.0312228817492723,-0.62705659866333,-0.668359220027924,0.40011990070343,-0.00728142913430929,-0.999647915363312,-0.0255118925124407,-0.199197873473167,-0.97201544046402,-0.124523684382439,-0.252512127161026,-0.959456086158752,0.125225856900215,-0.0377369411289692,-0.998253345489502,0.0454550720751286,0.0315658077597618,-0.979881405830383,0.197068750858307,0.00597813911736012,-0.996597766876221,-0.0822022184729576,-0.500476181507111,-0.865379691123962,0.0253296624869108,0.00851440895348787,-0.999963760375977,-4.23507262894418e-005,0.0110877752304077,-0.999850630760193,-0.0132579607889056,0.0773286893963814,-0.990104258060455,0.117105834186077,0.000989553169347346,-0.993231177330017,-0.11615078151226,0.224295139312744,-0.880812764167786,-0.416965812444687,0.0853090509772301,-0.932914137840271,-0.349848002195358,0.347977370023727,-0.936156809329987,-0.0502201281487942,0.000989553169347346,-0.993231177330017,-0.11615078151226,0.226437777280808,-0.968882501125336,-0.0999622344970703,0.0881720334291458,-0.992090880870819,-0.0893379375338554,0.726037800312042,-0.685334384441376,-0.0564415790140629,0.108020216226578,-0.993642807006836,0.0317086279392242,-0.00464325118809938,-0.996949255466461,-0.0779137164354324,0.0853090509772301,-0.932914137840271,-0.349848002195358,-0.0508590191602707,-0.989955365657806,0.131915137171745,0.018385274335742,-0.996714532375336,0.0788806527853012,0.224295139312744,-0.880812764167786,-0.416965812444687,0.341080337762833,-0.878246486186981,0.335182368755341,-0.0811379179358482,-0.99535995721817,0.0517217665910721,0.201499238610268,-0.975371718406677,0.0897106379270554,
- -0.00996946450322866,-0.997992038726807,0.0625506639480591,0.457448303699493,-0.776893496513367,0.432640224695206,0.341080337762833,-0.878246486186981,0.335182368755341,-0.0437339842319489,-0.995381057262421,-0.0854621455073357,-0.652803957462311,-0.755738496780396,0.0520208142697811,0.0881720334291458,-0.992090880870819,-0.0893379375338554,0.226437777280808,-0.968882501125336,-0.0999622344970703,-0.0228617656975985,-0.998089849948883,0.0573935210704803,-0.0437339842319489,-0.995381057262421,-0.0854621455073357,0.226437777280808,-0.968882501125336,-0.0999622344970703,0.0853090509772301,-0.932914137840271,-0.349848002195358,0.132570639252663,-0.986558854579926,-0.0955333784222603,0.347977370023727,-0.936156809329987,-0.0502201281487942,0.457448303699493,-0.776893496513367,0.432640224695206,0.016888590529561,-0.927932500839233,0.372365534305573,-0.41828927397728,-0.601155400276184,0.680915832519531,0.0773286893963814,-0.990104258060455,0.117105834186077,0.201499238610268,-0.975371718406677,0.0897106379270554,0.341080337762833,-0.878246486186981,0.335182368755341,0.224295139312744,-0.880812764167786,-0.416965812444687,0.309172183275223,-0.947776198387146,-0.0783128142356873,0.0773286893963814,-0.990104258060455,0.117105834186077,0.341080337762833,-0.878246486186981,0.335182368755341,0.000989553169347346,-0.993231177330017,-0.11615078151226,0.347977370023727,-0.936156809329987,-0.0502201281487942,0.0154501618817449,-0.999840378761292,0.00897811353206635,0.00851440895348787,-0.999963760375977,-4.23507262894418e-005,-0.0811379179358482,-0.99535995721817,0.0517217665910721,-0.0508590191602707,-0.989955365657806,0.131915137171745,0.0853090509772301,-0.932914137840271,-0.349848002195358,0.224295139312744,-0.880812764167786,-0.416965812444687,0.0291617587208748,-0.999478101730347,-0.0138943428173661,0.0479582250118256,-0.998640894889832,0.0204088389873505,-0.45001208782196,-0.891344785690308,0.0547153800725937,-0.0362762920558453,-0.998757243156433,-0.0341767929494381,-0.0482178963720798,-0.998190999031067,0.0359125249087811,
- -0.0279172118753195,-0.999141037464142,0.030624570325017,0.365903526544571,-0.92852783203125,-0.0628546252846718,0.0606657937169075,-0.997698426246643,-0.0302907023578882,-0.00675254920497537,-0.999876618385315,-0.0141851827502251,-0.000560020445846021,-0.999970614910126,-0.00764733925461769,0.0952757969498634,-0.995039284229279,0.0286233425140381,0.0661620050668716,-0.991589486598969,0.111233703792095,-0.00389983342029154,-0.999769985675812,0.0210875775665045,-0.00675254920497537,-0.999876618385315,-0.0141851827502251,0.0661620050668716,-0.991589486598969,0.111233703792095,0.00291943061165512,-0.994661688804626,-0.103148460388184,0.060501255095005,-0.954110145568848,-0.293280392885208,0.140344992280006,-0.988407015800476,0.0579216592013836,0.0346299558877945,-0.999155104160309,0.0221311915665865,0.0353534705936909,-0.999322295188904,0.0102472035214305,-0.0228617656975985,-0.998089849948883,0.0573935210704803,0.226437777280808,-0.968882501125336,-0.0999622344970703,0.108020216226578,-0.993642807006836,0.0317086279392242,0.0303527247160673,-0.999523282051086,-0.0056590037420392,0.0291617587208748,-0.999478101730347,-0.0138943428173661,-0.0362762920558453,-0.998757243156433,-0.0341767929494381,-0.0255903955549002,-0.999567985534668,0.0144558502361178,-0.00715793296694756,-0.986987888813019,0.160635143518448,0.0357257202267647,-0.999286413192749,-0.0122596276924014,0.0303527247160673,-0.999523282051086,-0.0056590037420392,-0.00715793296694756,-0.986987888813019,0.160635143518448,-0.0800617560744286,-0.995661437511444,0.0474153347313404,0.348614007234573,-0.933223068714142,-0.0869650021195412,-0.0417838022112846,-0.99670284986496,-0.0695527717471123,0.457448303699493,-0.776893496513367,0.432640224695206,0.341080337762833,-0.878246486186981,0.335182368755341,-0.0417838022112846,-0.99670284986496,-0.0695527717471123,-0.329042911529541,-0.944312036037445,-0.00232800305821002,0.457448303699493,-0.776893496513367,0.432640224695206,-0.41828927397728,-0.601155400276184,0.680915832519531,0.428199380636215,-0.861933529376984,-0.271506756544113,
- 0.365903526544571,-0.92852783203125,-0.0628546252846718,-0.0279172118753195,-0.999141037464142,0.030624570325017,-0.00389983342029154,-0.999769985675812,0.0210875775665045,0.00291943061165512,-0.994661688804626,-0.103148460388184,0.000989553169347346,-0.993231177330017,-0.11615078151226,0.309172183275223,-0.947776198387146,-0.0783128142356873,0.224295139312744,-0.880812764167786,-0.416965812444687,0.00112072087358683,-0.998561859130859,-0.0535987727344036,0.132570639252663,-0.986558854579926,-0.0955333784222603,0.0853090509772301,-0.932914137840271,-0.349848002195358,-0.00464325118809938,-0.996949255466461,-0.0779137164354324,0.000989553169347346,-0.993231177330017,-0.11615078151226,0.0773286893963814,-0.990104258060455,0.117105834186077,0.309172183275223,-0.947776198387146,-0.0783128142356873,0.457448303699493,-0.776893496513367,0.432640224695206,0.428199380636215,-0.861933529376984,-0.271506756544113,0.0720972940325737,-0.984040439128876,-0.162684753537178,0.348614007234573,-0.933223068714142,-0.0869650021195412,0.016888590529561,-0.927932500839233,0.372365534305573,-0.0228617656975985,-0.998089849948883,0.0573935210704803,-0.41828927397728,-0.601155400276184,0.680915832519531,0.341080337762833,-0.878246486186981,0.335182368755341,0.457448303699493,-0.776893496513367,0.432640224695206,-0.0417838022112846,-0.99670284986496,-0.0695527717471123,-0.000560020445846021,-0.999970614910126,-0.00764733925461769,0.0357257202267647,-0.999286413192749,-0.0122596276924014,-0.0800617560744286,-0.995661437511444,0.0474153347313404,0.0952757969498634,-0.995039284229279,0.0286233425140381,0.016888590529561,-0.927932500839233,0.372365534305573,-0.0437339842319489,-0.995381057262421,-0.0854621455073357,-0.0228617656975985,-0.998089849948883,0.0573935210704803,-0.0228617656975985,-0.998089849948883,0.0573935210704803,0.108020216226578,-0.993642807006836,0.0317086279392242,0.428199380636215,-0.861933529376984,-0.271506756544113,-0.0228617656975985,-0.998089849948883,0.0573935210704803,0.428199380636215,-0.861933529376984,-0.271506756544113,
- -0.41828927397728,-0.601155400276184,0.680915832519531,-0.00996946450322866,-0.997992038726807,0.0625506639480591,0.016888590529561,-0.927932500839233,0.372365534305573,0.457448303699493,-0.776893496513367,0.432640224695206,-0.0811379179358482,-0.99535995721817,0.0517217665910721,0.341080337762833,-0.878246486186981,0.335182368755341,-0.0580135323107243,-0.962616086006165,-0.264584004878998,-0.0580135323107243,-0.962616086006165,-0.264584004878998,-0.329042911529541,-0.944312036037445,-0.00232800305821002,-0.000560020445846021,-0.999970614910126,-0.00764733925461769,-0.00675254920497537,-0.999876618385315,-0.0141851827502251,-0.329042911529541,-0.944312036037445,-0.00232800305821002,-0.0417838022112846,-0.99670284986496,-0.0695527717471123,0.348614007234573,-0.933223068714142,-0.0869650021195412,0.0357257202267647,-0.999286413192749,-0.0122596276924014,-0.000560020445846021,-0.999970614910126,-0.00764733925461769,0.348614007234573,-0.933223068714142,-0.0869650021195412,0.0720972940325737,-0.984040439128876,-0.162684753537178,0.0303527247160673,-0.999523282051086,-0.0056590037420392,0.0357257202267647,-0.999286413192749,-0.0122596276924014,0.108020216226578,-0.993642807006836,0.0317086279392242,0.0720972940325737,-0.984040439128876,-0.162684753537178,0.428199380636215,-0.861933529376984,-0.271506756544113,0.108020216226578,-0.993642807006836,0.0317086279392242,0.726037800312042,-0.685334384441376,-0.0564415790140629,0.0479582250118256,-0.998640894889832,0.0204088389873505,0.0291617587208748,-0.999478101730347,-0.0138943428173661,0.018385274335742,-0.996714532375336,0.0788806527853012,-0.0508590191602707,-0.989955365657806,0.131915137171745,-0.197459533810616,-0.975187659263611,0.100093580782413,-0.0279172118753195,-0.999141037464142,0.030624570325017,-0.0482178963720798,-0.998190999031067,0.0359125249087811,-0.00389983342029154,-0.999769985675812,0.0210875775665045,-0.0279172118753195,-0.999141037464142,0.030624570325017,-0.197459533810616,-0.975187659263611,0.100093580782413,-0.0462262667715549,-0.994960725307465,0.0889732539653778,
- 0.0113030225038528,-0.999934196472168,0.00195680349133909,-0.102508515119553,-0.993018925189972,0.0583562515676022,0.225859761238098,-0.974159240722656,-0.000996591174043715,-0.00185799202881753,-0.999978303909302,0.00633044447749853,-0.975220799446106,-0.000613863405305892,0.221232950687408,-0.083840511739254,-0.972849786281586,-0.215717926621437,-0.0837086737155914,-0.994615316390991,0.0611006580293179,0.126909181475639,-0.791007101535797,0.598499536514282,0.165562376379967,-0.986049115657806,0.0172112323343754,0.0163189973682165,-0.999866902828217,-5.85203561058734e-005,0.349115490913391,-0.935165643692017,-0.059863343834877,-0.109000846743584,-0.99372386932373,0.0251340307295322,0.0527770258486271,-0.0334565825760365,-0.99804562330246,-0.083840511739254,-0.972849786281586,-0.215717926621437,-0.975220799446106,-0.000613863405305892,0.221232950687408,-0.984512507915497,-0.00163435470312834,-0.175306394696236,-0.871632695198059,-0.00923333317041397,-0.490072637796402,0.0527770258486271,-0.0334565825760365,-0.99804562330246,-0.109000846743584,-0.99372386932373,0.0251340307295322,0.349115490913391,-0.935165643692017,-0.059863343834877,-0.00787807907909155,-0.953826069831848,-0.300256103277206,0.00456098467111588,-0.999944388866425,-0.00951552391052246,0.0113030225038528,-0.999934196472168,0.00195680349133909,0.349115490913391,-0.935165643692017,-0.059863343834877,0.0527770258486271,-0.0334565825760365,-0.99804562330246,0.630231738090515,-0.00792222376912832,-0.776366531848907,-0.00787807907909155,-0.953826069831848,-0.300256103277206,-0.871632695198059,-0.00923333317041397,-0.490072637796402,-0.083840511739254,-0.972849786281586,-0.215717926621437,-0.984512507915497,-0.00163435470312834,-0.175306394696236,0.972851097583771,-0.0401098541915417,-0.227929726243019,0.99913889169693,-0.00907375384122133,-0.0404890030622482,0.0567702911794186,-0.997609257698059,0.0394062176346779,-0.083840511739254,-0.972849786281586,-0.215717926621437,-0.109000846743584,-0.99372386932373,0.0251340307295322,-0.00185799202881753,-0.999978303909302,0.00633044447749853,
- -0.0129457805305719,-0.999910175800323,0.00347576360218227,-0.109000846743584,-0.99372386932373,0.0251340307295322,-0.083840511739254,-0.972849786281586,-0.215717926621437,-0.871632695198059,-0.00923333317041397,-0.490072637796402,0.00749627687036991,-0.999968469142914,0.00262900209054351,0.00228558154776692,-0.999995648860931,0.00186350615695119,-0.525579273700714,-0.850136637687683,0.0321579352021217,-0.0466485507786274,-0.991092383861542,-0.124739252030849,-0.00787807907909155,-0.953826069831848,-0.300256103277206,0.630231738090515,-0.00792222376912832,-0.776366531848907,0.827335000038147,-0.0197620466351509,-0.561360955238342,0.827335000038147,-0.0197620466351509,-0.561360955238342,0.972851097583771,-0.0401098541915417,-0.227929726243019,-0.00787807907909155,-0.953826069831848,-0.300256103277206,0.00456098467111588,-0.999944388866425,-0.00951552391052246,0.00749627687036991,-0.999968469142914,0.00262900209054351,-0.0466485507786274,-0.991092383861542,-0.124739252030849,-0.0425351224839687,-0.987028062343597,0.154810965061188,-0.109000846743584,-0.99372386932373,0.0251340307295322,0.349115490913391,-0.935165643692017,-0.059863343834877,0.0113030225038528,-0.999934196472168,0.00195680349133909,-0.00185799202881753,-0.999978303909302,0.00633044447749853,-0.0463984198868275,-0.998891651630402,0.0079093798995018,0.1572535187006,-0.986880481243134,-0.0365825407207012,0.223324164748192,-0.97145289182663,-0.080035388469696,0.0163189973682165,-0.999866902828217,-5.85203561058734e-005,0.0113030225038528,-0.999934196472168,0.00195680349133909,0.00456098467111588,-0.999944388866425,-0.00951552391052246,-0.0425351224839687,-0.987028062343597,0.154810965061188,-0.102508515119553,-0.993018925189972,0.0583562515676022,-0.00185799202881753,-0.999978303909302,0.00633044447749853,0.225859761238098,-0.974159240722656,-0.000996591174043715,0.0423453152179718,-0.989700555801392,0.136746600270271,-0.0129457805305719,-0.999910175800323,0.00347576360218227,-0.0463984198868275,-0.998891651630402,0.0079093798995018,-0.625870227813721,-0.775497257709503,0.0830086693167686,
- -0.0837086737155914,-0.994615316390991,0.0611006580293179,-0.0171741172671318,-0.999724268913269,-0.0160134062170982,0.0567702911794186,-0.997609257698059,0.0394062176346779,0.00228558154776692,-0.999995648860931,0.00186350615695119,0.00749627687036991,-0.999968469142914,0.00262900209054351,-0.00787807907909155,-0.953826069831848,-0.300256103277206,0.972851097583771,-0.0401098541915417,-0.227929726243019,0.0567702911794186,-0.997609257698059,0.0394062176346779,-0.0171741172671318,-0.999724268913269,-0.0160134062170982,-0.0129457805305719,-0.999910175800323,0.00347576360218227,0.0423453152179718,-0.989700555801392,0.136746600270271,-0.0216784030199051,-0.878489971160889,-0.477268666028976,0.0719475746154785,-0.977915585041046,-0.196226045489311,-0.0206929575651884,-0.999535202980042,-0.022386347874999,-0.0216784030199051,-0.878489971160889,-0.477268666028976,0.225859761238098,-0.974159240722656,-0.000996591174043715,-0.102508515119553,-0.993018925189972,0.0583562515676022,0.574118793010712,-0.779256999492645,-0.251288831233978,0.272252857685089,-0.923984050750732,0.268573611974716,-0.0466485507786274,-0.991092383861542,-0.124739252030849,-0.525579273700714,-0.850136637687683,0.0321579352021217,-0.0103417178615928,-0.997289836406708,0.072843000292778,0.412732988595963,-0.837288081645966,-0.358608573675156,0.607258319854736,-0.702142417430878,-0.371797323226929,-0.0466485507786274,-0.991092383861542,-0.124739252030849,0.412732988595963,-0.837288081645966,-0.358608573675156,0.0423453152179718,-0.989700555801392,0.136746600270271,0.225859761238098,-0.974159240722656,-0.000996591174043715,0.272252857685089,-0.923984050750732,0.268573611974716,0.0548605285584927,-0.993713557720184,-0.0975898206233978,0.0423453152179718,-0.989700555801392,0.136746600270271,0.272252857685089,-0.923984050750732,0.268573611974716,-0.0216784030199051,-0.878489971160889,-0.477268666028976,0.1572535187006,-0.986880481243134,-0.0365825407207012,-0.0463984198868275,-0.998891651630402,0.0079093798995018,-0.0171741172671318,-0.999724268913269,-0.0160134062170982,
- -0.00787807907909155,-0.953826069831848,-0.300256103277206,0.0567702911794186,-0.997609257698059,0.0394062176346779,0.00749627687036991,-0.999968469142914,0.00262900209054351,0.00456098467111588,-0.999944388866425,-0.00951552391052246,-0.0216784030199051,-0.878489971160889,-0.477268666028976,0.0548605285584927,-0.993713557720184,-0.0975898206233978,0.0719475746154785,-0.977915585041046,-0.196226045489311,0.223324164748192,-0.97145289182663,-0.080035388469696,0.1572535187006,-0.986880481243134,-0.0365825407207012,-0.0206929575651884,-0.999535202980042,-0.022386347874999,0.0539832897484303,-0.996631920337677,0.0617306977510452,-0.0216784030199051,-0.878489971160889,-0.477268666028976,0.0423453152179718,-0.989700555801392,0.136746600270271,0.0548605285584927,-0.993713557720184,-0.0975898206233978,0.0668472871184349,-0.765607953071594,0.639825046062469,-0.399653792381287,0.563957810401917,0.722653746604919,-0.966219484806061,0.0350879281759262,-0.25532129406929,-0.0425351224839687,-0.987028062343597,0.154810965061188,-0.0466485507786274,-0.991092383861542,-0.124739252030849,0.607258319854736,-0.702142417430878,-0.371797323226929,-0.102508515119553,-0.993018925189972,0.0583562515676022,-0.0425351224839687,-0.987028062343597,0.154810965061188,0.574118793010712,-0.779256999492645,-0.251288831233978,0.165562376379967,-0.986049115657806,0.0172112323343754,-0.625870227813721,-0.775497257709503,0.0830086693167686,-0.0463984198868275,-0.998891651630402,0.0079093798995018,0.0163189973682165,-0.999866902828217,-5.85203561058734e-005,0.98773717880249,-0.00668616918846965,-0.155982866883278,0.987723112106323,-0.00592573778703809,-0.156102448701859,0.98789781332016,-0.00444178702309728,-0.155042484402657,0.988787889480591,0.00134320475626737,-0.14932045340538,0.992960929870605,0.000744867254979908,-0.118440844118595,0.99051296710968,-0.006556476932019,-0.137262880802155,0.986989259719849,-0.00663646543398499,-0.160649240016937,0.98617547750473,-0.0402983017265797,-0.160730019211769,0.987776756286621,-0.0213057361543179,-0.154412016272545,
- -0.0837086737155914,-0.994615316390991,0.0611006580293179,-0.625870227813721,-0.775497257709503,0.0830086693167686,-0.89310896396637,-0.00114901480264962,0.4498390853405,-0.975220799446106,-0.000613863405305892,0.221232950687408,-0.137309238314629,-0.0177463199943304,0.990369319915771,0.165562376379967,-0.986049115657806,0.0172112323343754,0.126909181475639,-0.791007101535797,0.598499536514282,-0.137309238314629,-0.0177463199943304,0.990369319915771,-0.89310896396637,-0.00114901480264962,0.4498390853405,-0.625870227813721,-0.775497257709503,0.0830086693167686,0.165562376379967,-0.986049115657806,0.0172112323343754,0.00939265172928572,-0.999887466430664,0.0116970632225275,0.412732988595963,-0.837288081645966,-0.358608573675156,-0.0103417178615928,-0.997289836406708,0.072843000292778,-0.190041318535805,-0.971136212348938,0.144148468971252,-0.150209471583366,-0.979841232299805,0.131712555885315,-0.389818370342255,-0.88618415594101,0.250438332557678,-0.500476181507111,-0.865379691123962,0.0253296624869108,-0.600871205329895,-0.583857834339142,-0.545952200889587,-0.0429310500621796,-0.998263120651245,0.0403438843786716,0.0080720204859972,-0.996727645397186,-0.0804291367530823,-0.0310220494866371,-0.989270448684692,0.142763540148735,-0.380081236362457,-0.922171175479889,0.0716832652688026,-0.0429310500621796,-0.998263120651245,0.0403438843786716,-0.600871205329895,-0.583857834339142,-0.545952200889587,0.187455609440804,-0.982272684574127,0.000864355417434126,-0.380081236362457,-0.922171175479889,0.0716832652688026,-0.0310220494866371,-0.989270448684692,0.142763540148735,0.341080337762833,-0.878246486186981,0.335182368755341,-0.329042911529541,-0.944312036037445,-0.00232800305821002,-0.0580135323107243,-0.962616086006165,-0.264584004878998,-0.0811379179358482,-0.99535995721817,0.0517217665910721,-0.0580135323107243,-0.962616086006165,-0.264584004878998,-0.00675254920497537,-0.999876618385315,-0.0141851827502251,-0.00389983342029154,-0.999769985675812,0.0210875775665045,-0.0462262667715549,-0.994960725307465,0.0889732539653778,
- -0.0174830742180347,-0.994931817054749,-0.0990202352404594,-0.199197873473167,-0.97201544046402,-0.124523684382439,-0.00728142913430929,-0.999647915363312,-0.0255118925124407,0.0512012429535389,-0.998669624328613,-0.00612059701234102,-0.129999563097954,-0.991306722164154,0.0202773995697498,-0.0224513038992882,-0.996485710144043,0.0806979164481163,-0.0078241964802146,-0.999813914299011,-0.0176328029483557,-0.0161266103386879,-0.941989064216614,-0.335255980491638,0.0110877752304077,-0.999850630760193,-0.0132579607889056,0.00851440895348787,-0.999963760375977,-4.23507262894418e-005,0.0154501618817449,-0.999840378761292,0.00897811353206635,-0.0939956083893776,-0.995549857616425,0.00673332158476114,-0.0078241964802146,-0.999813914299011,-0.0176328029483557,0.00851440895348787,-0.999963760375977,-4.23507262894418e-005,0.0535490140318871,-0.99855774641037,0.00386741920374334,0.184897243976593,-0.98252010345459,-0.0216149650514126,-0.0939956083893776,-0.995549857616425,0.00673332158476114,0.0154501618817449,-0.999840378761292,0.00897811353206635,0.0303527247160673,-0.999523282051086,-0.0056590037420392,0.0720972940325737,-0.984040439128876,-0.162684753537178,0.108020216226578,-0.993642807006836,0.0317086279392242,0.0291617587208748,-0.999478101730347,-0.0138943428173661,-0.0837086737155914,-0.994615316390991,0.0611006580293179,-0.083840511739254,-0.972849786281586,-0.215717926621437,-0.0129457805305719,-0.999910175800323,0.00347576360218227,-0.0171741172671318,-0.999724268913269,-0.0160134062170982,0.0103406319394708,-0.994755208492279,0.101760111749172,0.0230554807931185,-0.98404461145401,-0.176422357559204,0.0170979294925928,-0.978498697280884,0.205542802810669,-0.0216784030199051,-0.878489971160889,-0.477268666028976,-0.0206929575651884,-0.999535202980042,-0.022386347874999,0.1572535187006,-0.986880481243134,-0.0365825407207012,0.411279112100601,-0.905358970165253,0.105709910392761,0.722824573516846,-0.690174102783203,0.0344120003283024,0.681399762630463,-0.696699678897858,-0.224285289645195,0.157668367028236,-0.986725926399231,-0.0388918183743954,
- 0.707496643066406,-0.703925490379334,-0.0627493336796761,0.604305922985077,-0.7874875664711,-0.121150240302086,0.62261176109314,-0.755265474319458,0.204764902591705,0.710909724235535,-0.700845062732697,-0.0585116967558861,0.994722485542297,0.0920697152614594,0.0452815853059292,0.948632180690765,-0.313737750053406,0.0408117696642876,0.966766178607941,0.251619964838028,0.0452840030193329,0.954323828220367,0.296956300735474,0.0329098962247372,0.73690664768219,-0.675864636898041,-0.0132493209093809,0.744691729545593,-0.666426062583923,0.0362008735537529,0.687805354595184,-0.72332489490509,-0.0610308311879635,-0.972039639949799,-0.0132842008024454,0.234440997242928,-0.292062103748322,-0.109468497335911,0.950113892555237,0.0979535728693008,-0.983843743801117,0.149855345487595,0.325805276632309,-0.945127725601196,-0.0241778418421745,0.329485952854156,-0.942870795726776,0.0493331402540207,0.621758580207825,-0.783081650733948,0.0141165535897017,0.307806015014648,-0.951143682003021,-0.0241085086017847,0.138233795762062,-0.989628970623016,-0.0390621647238731,0.285450160503387,-0.893212914466858,-0.347403138875961,0.287136644124985,-0.957006633281708,-0.0411209873855114,0.700678706169128,-0.709314107894897,-0.0769591927528381,0.687400341033936,-0.726278603076935,-0.000575281912460923,0.395714998245239,-0.917127549648285,-0.0478189624845982,0.9964240193367,0.00229827081784606,0.0844617858529091,0.909744501113892,0.412876099348068,-0.0435690730810165,0.991697549819946,-0.00639424473047256,0.128432363271713,0.916573524475098,0.335626929998398,0.217365026473999,0.844145774841309,0.495155692100525,-0.205520644783974,0.899401366710663,0.424665331840515,-0.103617459535599,0.979444980621338,0.201593935489655,0.00688434392213821,0.998487770557404,0.0549166686832905,-0.00252184108830988,0.967127561569214,0.249519810080528,0.0490311868488789,0.97781777381897,0.204382076859474,0.0458295047283173,0.531846940517426,-0.846101582050323,-0.0353699401021004,0.593518137931824,-0.804807066917419,-0.00467088166624308,0.71919310092926,-0.693547368049622,-0.0418736860156059,
- 0.685182809829712,-0.725124180316925,-0.0686974078416824,0.724291682243347,-0.685834348201752,-0.0709427744150162,0.962706923484802,0.270078957080841,0.015896201133728,0.961793899536133,0.273321211338043,-0.0157491732388735,0.979091644287109,0.175819456577301,0.102308787405491,0.980329990386963,0.187497809529305,-0.0616258196532726,0.786317706108093,-0.616121351718903,-0.0458150468766689,0.852237939834595,-0.520302772521973,-0.0545476116240025,0.653777837753296,-0.75358247756958,-0.0684688314795494,0.816078066825867,-0.570851385593414,-0.0902516171336174,0.980329990386963,0.187497809529305,-0.0616258196532726,0.979091644287109,0.175819456577301,0.102308787405491,0.999489784240723,0.0145554859191179,-0.0284305177628994,0.996601581573486,0.0782353281974792,0.0257799997925758,0.95842707157135,-0.284538298845291,0.0213408619165421,0.997918725013733,0.0522703416645527,-0.0377634353935719,0.964816927909851,-0.261274605989456,-0.0293899774551392,0.964420258998871,-0.262858122587204,-0.0282692834734917,0.764615416526794,-0.643913269042969,-0.0271862577646971,0.744691729545593,-0.666426062583923,0.0362008735537529,0.892451941967011,-0.450401961803436,0.0258346479386091,0.687805354595184,-0.72332489490509,-0.0610308311879635,0.138233795762062,-0.989628970623016,-0.0390621647238731,0.652353048324585,-0.671915709972382,-0.350663512945175,0.713890969753265,-0.700178742408752,0.0104551212862134,0.376908928155899,-0.913124561309814,-0.155381172895432,0.179492980241776,-0.96378093957901,-0.197252884507179,0.546137750148773,-0.806161463260651,-0.227677822113037,0.844973385334015,-0.528368890285492,-0.0827418267726898,0.710909724235535,-0.700845062732697,-0.0585116967558861,0.724291682243347,-0.685834348201752,-0.0709427744150162,0.943421006202698,-0.271389037370682,0.190538063645363,0.963672816753387,-0.196559324860573,-0.180829077959061,0.958813667297363,-0.279510587453842,-0.0504994615912437,0.958401143550873,-0.283002406358719,-0.0371052846312523,0.73690664768219,-0.675864636898041,-0.0132493209093809,0.79950624704361,-0.596198439598084,0.0730558559298515,
- 0.744691729545593,-0.666426062583923,0.0362008735537529,0.96850997209549,0.217192128300667,-0.1217210739851,0.989983141422272,-0.133555963635445,-0.0457846187055111,0.963672816753387,-0.196559324860573,-0.180829077959061,0.92573744058609,0.34519749879837,-0.154430791735649,0.982556462287903,0.183070555329323,0.0326773338019848,0.961793899536133,0.273321211338043,-0.0157491732388735,-0.214418724179268,-0.83812016248703,0.501576840877533,0.508559465408325,-0.859444618225098,-0.0521753206849098,0.64685183763504,-0.761628329753876,0.0387961119413376,0.0645461827516556,-0.855921268463135,0.513062179088593,-0.829098641872406,-0.339742422103882,0.444038897752762,-0.524172723293304,-0.294508039951324,0.799066960811615,0.978377819061279,-0.154780954122543,-0.137184605002403,0.948937356472015,-0.315351903438568,-0.00842750631272793,0.989064931869507,-0.0765118524432182,-0.126081377267838,0.732277870178223,-0.657774329185486,0.176358133554459,0.71919310092926,-0.693547368049622,-0.0418736860156059,0.326863467693329,-0.880228519439697,-0.344032108783722,0.0351616479456425,-0.999245524406433,-0.0164885614067316,0.0919794291257858,-0.995756328105927,-0.00303203798830509,0.179492980241776,-0.96378093957901,-0.197252884507179,0.376908928155899,-0.913124561309814,-0.155381172895432,-0.993551433086395,0.0153252528980374,0.112342357635498,-0.993293225765228,0.0785682499408722,0.0848269611597061,-0.991150736808777,0.062103196978569,0.117317207157612,0.979444980621338,0.201593935489655,0.00688434392213821,0.978377819061279,-0.154780954122543,-0.137184605002403,0.998487770557404,0.0549166686832905,-0.00252184108830988,0.687805354595184,-0.72332489490509,-0.0610308311879635,0.892451941967011,-0.450401961803436,0.0258346479386091,0.597235679626465,-0.746052801609039,-0.294473528862,0.786317706108093,-0.616121351718903,-0.0458150468766689,0.653777837753296,-0.75358247756958,-0.0684688314795494,0.707496643066406,-0.703925490379334,-0.0627493336796761,0.546137750148773,-0.806161463260651,-0.227677822113037,0.179492980241776,-0.96378093957901,-0.197252884507179,
- 0.395714998245239,-0.917127549648285,-0.0478189624845982,0.999833881855011,0.0064829820767045,-0.0170346144586802,0.815267384052277,-0.579062461853027,0.00508114788681269,0.999312996864319,-0.0286347288638353,0.023529464378953,0.7174391746521,-0.682917296886444,-0.137494772672653,0.961169600486755,-0.158770263195038,0.225709870457649,0.999312996864319,-0.0286347288638353,0.023529464378953,-0.991933107376099,-0.0145967388525605,0.125918880105019,-0.993551433086395,0.0153252528980374,0.112342357635498,-0.991150736808777,0.062103196978569,0.117317207157612,-0.991933107376099,-0.0145967388525605,0.125918880105019,-0.987044811248779,-0.0717197731137276,0.143522977828979,-0.993551433086395,0.0153252528980374,0.112342357635498,-0.0133866351097822,-0.999661922454834,-0.0222868788987398,0.250335484743118,-0.966631889343262,-0.0543593801558018,-0.0368617027997971,-0.181572675704956,-0.982686400413513,0.807213187217712,0.413939118385315,0.420786529779434,0.943421006202698,-0.271389037370682,0.190538063645363,0.892451941967011,-0.450401961803436,0.0258346479386091,0.999312996864319,-0.0286347288638353,0.023529464378953,0.961169600486755,-0.158770263195038,0.225709870457649,0.999833881855011,0.0064829820767045,-0.0170346144586802,0.846337795257568,-0.531747341156006,-0.0309359207749367,0.786317706108093,-0.616121351718903,-0.0458150468766689,0.707496643066406,-0.703925490379334,-0.0627493336796761,0.710909724235535,-0.700845062732697,-0.0585116967558861,0.844973385334015,-0.528368890285492,-0.0827418267726898,0.724291682243347,-0.685834348201752,-0.0709427744150162,0.710909724235535,-0.700845062732697,-0.0585116967558861,0.62261176109314,-0.755265474319458,0.204764902591705,0.531846940517426,-0.846101582050323,-0.0353699401021004,0.62261176109314,-0.755265474319458,0.204764902591705,-0.308442831039429,-0.95006799697876,0.0472639799118042,-0.319115102291107,-0.937490344047546,0.138843417167664,0.989563882350922,-0.109717726707459,-0.093409538269043,0.977947592735291,-0.126089677214623,0.166492685675621,0.96560150384903,-0.256612837314606,-0.0419940873980522,
- 0.966637253761292,-0.254028677940369,-0.0328891053795815,0.474141716957092,-0.874795377254486,-0.0996128246188164,0.313059151172638,-0.948783874511719,-0.0424638465046883,0.221989259123802,-0.964072227478027,-0.145896106958389,0.912464439868927,0.40871986746788,-0.0188824236392975,0.957442343235016,0.196195602416992,0.211687043309212,0.890753388404846,0.399457156658173,-0.216776952147484,0.862642467021942,0.459545433521271,-0.211343318223953,0.963672816753387,-0.196559324860573,-0.180829077959061,0.807213187217712,0.413939118385315,0.420786529779434,0.724291682243347,-0.685834348201752,-0.0709427744150162,0.973240494728088,0.202289924025536,-0.109003692865372,0.844973385334015,-0.528368890285492,-0.0827418267726898,0.982494533061981,0.0382675789296627,-0.182318821549416,0.973240494728088,0.202289924025536,-0.109003692865372,0.999312996864319,-0.0286347288638353,0.023529464378953,0.285450160503387,-0.893212914466858,-0.347403138875961,0.138233795762062,-0.989628970623016,-0.0390621647238731,-0.0289131589233875,-0.879908621311188,-0.474262356758118,0.326863467693329,-0.880228519439697,-0.344032108783722,0.221989259123802,-0.964072227478027,-0.145896106958389,0.313059151172638,-0.948783874511719,-0.0424638465046883,0.982494533061981,0.0382675789296627,-0.182318821549416,0.815267384052277,-0.579062461853027,0.00508114788681269,0.907563745975494,-0.409279555082321,0.09390539675951,0.474141716957092,-0.874795377254486,-0.0996128246188164,0.371620744466782,-0.869957864284515,-0.324147164821625,0.307054460048676,-0.951214551925659,-0.0301383379846811,0.325805276632309,-0.945127725601196,-0.0241778418421745,0.474141716957092,-0.874795377254486,-0.0996128246188164,0.221989259123802,-0.964072227478027,-0.145896106958389,0.109841965138912,-0.96052885055542,-0.255575925111771,0.371620744466782,-0.869957864284515,-0.324147164821625,0.221989259123802,-0.964072227478027,-0.145896106958389,0.62261176109314,-0.755265474319458,0.204764902591705,0.109841965138912,-0.96052885055542,-0.255575925111771,0.979444980621338,0.201593935489655,0.00688434392213821,
- 0.97781777381897,0.204382076859474,0.0458295047283173,0.898647665977478,0.39046123623848,-0.199931219220161,0.979444980621338,0.201593935489655,0.00688434392213821,0.898647665977478,0.39046123623848,-0.199931219220161,0.978377819061279,-0.154780954122543,-0.137184605002403,0.395714998245239,-0.917127549648285,-0.0478189624845982,0.687400341033936,-0.726278603076935,-0.000575281912460923,0.546137750148773,-0.806161463260651,-0.227677822113037,0.713890969753265,-0.700178742408752,0.0104551212862134,0.652353048324585,-0.671915709972382,-0.350663512945175,0.707143723964691,-0.706318080425262,-0.0325955897569656,0.73690664768219,-0.675864636898041,-0.0132493209093809,0.840511322021484,0.285106718540192,0.460711061954498,0.982556462287903,0.183070555329323,0.0326773338019848,0.92573744058609,0.34519749879837,-0.154430791735649,0.967408001422882,0.252464592456818,-0.0195810422301292,0.982556462287903,0.183070555329323,0.0326773338019848,0.840511322021484,0.285106718540192,0.460711061954498,0.92034238576889,-0.377022415399551,-0.104038342833519,0.959150314331055,-0.282505542039871,-0.0148761877790093,0.989563882350922,-0.109717726707459,-0.093409538269043,0.964816927909851,-0.261274605989456,-0.0293899774551392,0.997918725013733,0.0522703416645527,-0.0377634353935719,0.989563882350922,-0.109717726707459,-0.093409538269043,0.966637253761292,-0.254028677940369,-0.0328891053795815,-0.0289131589233875,-0.879908621311188,-0.474262356758118,0.138233795762062,-0.989628970623016,-0.0390621647238731,0.713890969753265,-0.700178742408752,0.0104551212862134,0.326863467693329,-0.880228519439697,-0.344032108783722,0.713890969753265,-0.700178742408752,0.0104551212862134,0.732277870178223,-0.657774329185486,0.176358133554459,0.957442343235016,0.196195602416992,0.211687043309212,0.991697549819946,-0.00639424473047256,0.128432363271713,0.909744501113892,0.412876099348068,-0.0435690730810165,0.890753388404846,0.399457156658173,-0.216776952147484,0.909744501113892,0.412876099348068,-0.0435690730810165,0.896600961685181,0.420696794986725,0.138278424739838,
- 0.954866170883179,0.294783234596252,0.0365168452262878,0.954323828220367,0.296956300735474,0.0329098962247372,0.890753388404846,0.399457156658173,-0.216776952147484,0.64685183763504,-0.761628329753876,0.0387961119413376,0.508559465408325,-0.859444618225098,-0.0521753206849098,0.898343741893768,-0.427967369556427,0.0991080701351166,0.982556462287903,0.183070555329323,0.0326773338019848,0.953355967998505,0.298602372407913,0.0441481880843639,0.961793899536133,0.273321211338043,-0.0157491732388735,-0.308442831039429,-0.95006799697876,0.0472639799118042,0.0159018095582724,-0.998905122280121,0.0439971536397934,0.131643563508987,-0.973644912242889,-0.186240628361702,0.418962627649307,-0.906882345676422,-0.0451080277562141,0.436620026826859,-0.89947909116745,0.0173220448195934,0.131643563508987,-0.973644912242889,-0.186240628361702,0.929400861263275,0.344485491514206,-0.132452964782715,0.995092868804932,0.0902889668941498,-0.0404723882675171,0.977947592735291,-0.126089677214623,0.166492685675621,0.989064931869507,-0.0765118524432182,-0.126081377267838,0.998487770557404,0.0549166686832905,-0.00252184108830988,0.978377819061279,-0.154780954122543,-0.137184605002403,0.996601581573486,0.0782353281974792,0.0257799997925758,0.852237939834595,-0.520302772521973,-0.0545476116240025,0.786317706108093,-0.616121351718903,-0.0458150468766689,-0.992386281490326,-0.0448163785040379,0.114721447229385,-0.991933107376099,-0.0145967388525605,0.125918880105019,-0.991150736808777,0.062103196978569,0.117317207157612,0.971738815307617,0.230703413486481,0.0499971397221088,0.954866170883179,0.294783234596252,0.0365168452262878,0.896600961685181,0.420696794986725,0.138278424739838,0.867758572101593,0.473101824522018,0.152216002345085,0.108167871832848,-0.993727385997772,0.028382321819663,-0.292062103748322,-0.109468497335911,0.950113892555237,0.879960656166077,-0.0882286131381989,0.466781407594681,0.604305922985077,-0.7874875664711,-0.121150240302086,0.0159018095582724,-0.998905122280121,0.0439971536397934,-0.308442831039429,-0.95006799697876,0.0472639799118042,
- 0.62261176109314,-0.755265474319458,0.204764902591705,0.604305922985077,-0.7874875664711,-0.121150240302086,-0.308442831039429,-0.95006799697876,0.0472639799118042,0.96850997209549,0.217192128300667,-0.1217210739851,0.963672816753387,-0.196559324860573,-0.180829077959061,0.862642467021942,0.459545433521271,-0.211343318223953,0.862642467021942,0.459545433521271,-0.211343318223953,-0.214418724179268,-0.83812016248703,0.501576840877533,0.64685183763504,-0.761628329753876,0.0387961119413376,0.97781777381897,0.204382076859474,0.0458295047283173,0.955172598361969,0.264811158180237,0.132364377379417,0.916573524475098,0.335626929998398,0.217365026473999,0.97781777381897,0.204382076859474,0.0458295047283173,0.916573524475098,0.335626929998398,0.217365026473999,0.962706923484802,0.270078957080841,0.015896201133728,0.762624204158783,0.0943267643451691,-0.639927208423615,0.764615416526794,-0.643913269042969,-0.0271862577646971,0.499035716056824,-0.574514508247375,0.648765206336975,0.557729303836823,-0.521345376968384,0.645861446857452,0.852527499198914,0.46152999997139,-0.245330259203911,0.0547501370310783,0.441065222024918,0.895803511142731,0.326863467693329,-0.880228519439697,-0.344032108783722,0.285450160503387,-0.893212914466858,-0.347403138875961,-0.0289131589233875,-0.879908621311188,-0.474262356758118,0.909744501113892,0.412876099348068,-0.0435690730810165,0.9964240193367,0.00229827081784606,0.0844617858529091,0.896600961685181,0.420696794986725,0.138278424739838,0.862642467021942,0.459545433521271,-0.211343318223953,0.64685183763504,-0.761628329753876,0.0387961119413376,0.96850997209549,0.217192128300667,-0.1217210739851,-0.308442831039429,-0.95006799697876,0.0472639799118042,0.131643563508987,-0.973644912242889,-0.186240628361702,0.38243243098259,-0.914827167987823,0.129755735397339,0.713890969753265,-0.700178742408752,0.0104551212862134,0.687805354595184,-0.72332489490509,-0.0610308311879635,0.732277870178223,-0.657774329185486,0.176358133554459,0.967127561569214,0.249519810080528,0.0490311868488789,0.9799964427948,0.10706203430891,0.167764037847519,
- 0.955172598361969,0.264811158180237,0.132364377379417,0.97781777381897,0.204382076859474,0.0458295047283173,0.989983141422272,-0.133555963635445,-0.0457846187055111,0.979712069034576,-0.191623151302338,-0.0586916692554951,0.948937356472015,-0.315351903438568,-0.00842750631272793,0.285450160503387,-0.893212914466858,-0.347403138875961,0.313059151172638,-0.948783874511719,-0.0424638465046883,0.307806015014648,-0.951143682003021,-0.0241085086017847,0.317701160907745,-0.946886897087097,-0.0497092492878437,0.313059151172638,-0.948783874511719,-0.0424638465046883,0.285450160503387,-0.893212914466858,-0.347403138875961,0.326863467693329,-0.880228519439697,-0.344032108783722,0.78214168548584,-0.622282743453979,-0.0319131650030613,0.687400341033936,-0.726278603076935,-0.000575281912460923,0.700678706169128,-0.709314107894897,-0.0769591927528381,0.92573744058609,0.34519749879837,-0.154430791735649,0.899401366710663,0.424665331840515,-0.103617459535599,0.840511322021484,0.285106718540192,0.460711061954498,0.916573524475098,0.335626929998398,0.217365026473999,0.899401366710663,0.424665331840515,-0.103617459535599,0.92573744058609,0.34519749879837,-0.154430791735649,0.685182809829712,-0.725124180316925,-0.0686974078416824,0.687805354595184,-0.72332489490509,-0.0610308311879635,0.597235679626465,-0.746052801609039,-0.294473528862,0.95842707157135,-0.284538298845291,0.0213408619165421,0.923917591571808,-0.380248427391052,-0.0422785244882107,0.999489784240723,0.0145554859191179,-0.0284305177628994,0.707143723964691,-0.706318080425262,-0.0325955897569656,0.78214168548584,-0.622282743453979,-0.0319131650030613,0.73690664768219,-0.675864636898041,-0.0132493209093809,0.78214168548584,-0.622282743453979,-0.0319131650030613,0.79950624704361,-0.596198439598084,0.0730558559298515,0.73690664768219,-0.675864636898041,-0.0132493209093809,0.979091644287109,0.175819456577301,0.102308787405491,0.960669994354248,0.273232787847519,0.0495679900050163,0.762624204158783,0.0943267643451691,-0.639927208423615,0.499035716056824,-0.574514508247375,0.648765206336975,
- 0.499035716056824,-0.574514508247375,0.648765206336975,0.816078066825867,-0.570851385593414,-0.0902516171336174,0.979091644287109,0.175819456577301,0.102308787405491,0.7174391746521,-0.682917296886444,-0.137494772672653,0.685182809829712,-0.725124180316925,-0.0686974078416824,0.597235679626465,-0.746052801609039,-0.294473528862,0.892451941967011,-0.450401961803436,0.0258346479386091,0.961169600486755,-0.158770263195038,0.225709870457649,0.7174391746521,-0.682917296886444,-0.137494772672653,0.597235679626465,-0.746052801609039,-0.294473528862,0.138233795762062,-0.989628970623016,-0.0390621647238731,0.376908928155899,-0.913124561309814,-0.155381172895432,0.652353048324585,-0.671915709972382,-0.350663512945175,0.0325278490781784,-0.979782044887543,0.197406306862831,-0.0628679394721985,-0.993713319301605,0.0926358476281166,0.00467339064925909,-0.993115901947021,0.117042079567909,-0.025805277749896,-0.999630272388458,-0.0085691325366497,0.531846940517426,-0.846101582050323,-0.0353699401021004,0.62261176109314,-0.755265474319458,0.204764902591705,0.221989259123802,-0.964072227478027,-0.145896106958389,0.546137750148773,-0.806161463260651,-0.227677822113037,0.707143723964691,-0.706318080425262,-0.0325955897569656,0.652353048324585,-0.671915709972382,-0.350663512945175,0.652353048324585,-0.671915709972382,-0.350663512945175,0.376908928155899,-0.913124561309814,-0.155381172895432,0.546137750148773,-0.806161463260651,-0.227677822113037,0.0409493260085583,-0.956974864006042,0.28726664185524,0.744691729545593,-0.666426062583923,0.0362008735537529,0.79950624704361,-0.596198439598084,0.0730558559298515,0.593518137931824,-0.804807066917419,-0.00467088166624308,0.221989259123802,-0.964072227478027,-0.145896106958389,0.326863467693329,-0.880228519439697,-0.344032108783722,0.531846940517426,-0.846101582050323,-0.0353699401021004,0.221989259123802,-0.964072227478027,-0.145896106958389,0.593518137931824,-0.804807066917419,-0.00467088166624308,0.250335484743118,-0.966631889343262,-0.0543593801558018,0.865936756134033,-0.0975016057491302,-0.490557968616486,
- -0.0368617027997971,-0.181572675704956,-0.982686400413513,0.865936756134033,-0.0975016057491302,-0.490557968616486,0.0222750715911388,-0.994201719760895,-0.105198107659817,0.355279117822647,-0.926345765590668,-0.125141337513924,0.764615416526794,-0.643913269042969,-0.0271862577646971,0.944025993347168,-0.32910230755806,-0.0225056856870651,0.499035716056824,-0.574514508247375,0.648765206336975,0.998480796813965,0.0536782965064049,-0.0124395284801722,0.959150314331055,-0.282505542039871,-0.0148761877790093,0.989313006401062,0.136946141719818,-0.0500551089644432,0.250335484743118,-0.966631889343262,-0.0543593801558018,0.0222750715911388,-0.994201719760895,-0.105198107659817,0.865936756134033,-0.0975016057491302,-0.490557968616486,0.807213187217712,0.413939118385315,0.420786529779434,0.892451941967011,-0.450401961803436,0.0258346479386091,0.744691729545593,-0.666426062583923,0.0362008735537529,0.0409493260085583,-0.956974864006042,0.28726664185524,0.807213187217712,0.413939118385315,0.420786529779434,0.744691729545593,-0.666426062583923,0.0362008735537529,0.973240494728088,0.202289924025536,-0.109003692865372,0.982494533061981,0.0382675789296627,-0.182318821549416,0.844973385334015,-0.528368890285492,-0.0827418267726898,0.844973385334015,-0.528368890285492,-0.0827418267726898,0.982494533061981,0.0382675789296627,-0.182318821549416,0.846337795257568,-0.531747341156006,-0.0309359207749367,0.958813667297363,-0.279510587453842,-0.0504994615912437,0.807221829891205,-0.58375072479248,0.0873381495475769,0.945102870464325,-0.326305329799652,0.0174769833683968,0.0949801355600357,0.99452793598175,0.0435106828808784,-0.811322629451752,0.527647793292999,-0.25168114900589,-0.732159316539764,0.229529425501823,-0.641294777393341,0.96850997209549,0.217192128300667,-0.1217210739851,0.64685183763504,-0.761628329753876,0.0387961119413376,0.919678151607513,-0.374979108572006,-0.116544626653194,-0.0368617027997971,-0.181572675704956,-0.982686400413513,-0.225608259439468,-0.202276527881622,-0.952987492084503,-0.0133866351097822,-0.999661922454834,-0.0222868788987398,
- 0.0689472779631615,-0.99566650390625,-0.0624043457210064,-0.987967014312744,-0.117778018116951,-0.100247569382191,-0.972039639949799,-0.0132842008024454,0.234440997242928,0.996601581573486,0.0782353281974792,0.0257799997925758,0.786317706108093,-0.616121351718903,-0.0458150468766689,0.846337795257568,-0.531747341156006,-0.0309359207749367,0.996601581573486,0.0782353281974792,0.0257799997925758,0.846337795257568,-0.531747341156006,-0.0309359207749367,0.95842707157135,-0.284538298845291,0.0213408619165421,0.815267384052277,-0.579062461853027,0.00508114788681269,0.982494533061981,0.0382675789296627,-0.182318821549416,0.999312996864319,-0.0286347288638353,0.023529464378953,-0.987967014312744,-0.117778018116951,-0.100247569382191,0.0689472779631615,-0.99566650390625,-0.0624043457210064,-0.227511018514633,-0.97365015745163,0.0156269352883101,0.961169600486755,-0.158770263195038,0.225709870457649,0.892451941967011,-0.450401961803436,0.0258346479386091,0.943421006202698,-0.271389037370682,0.190538063645363,0.108167871832848,-0.993727385997772,0.028382321819663,0.879960656166077,-0.0882286131381989,0.466781407594681,0.0913440138101578,-0.990102887153625,0.106548167765141,0.71919310092926,-0.693547368049622,-0.0418736860156059,0.593518137931824,-0.804807066917419,-0.00467088166624308,0.326863467693329,-0.880228519439697,-0.344032108783722,0.687400341033936,-0.726278603076935,-0.000575281912460923,0.78214168548584,-0.622282743453979,-0.0319131650030613,0.707143723964691,-0.706318080425262,-0.0325955897569656,0.546137750148773,-0.806161463260651,-0.227677822113037,0.687400341033936,-0.726278603076935,-0.000575281912460923,0.707143723964691,-0.706318080425262,-0.0325955897569656,0.95842707157135,-0.284538298845291,0.0213408619165421,0.846337795257568,-0.531747341156006,-0.0309359207749367,0.982494533061981,0.0382675789296627,-0.182318821549416,0.879960656166077,-0.0882286131381989,0.466781407594681,0.865936756134033,-0.0975016057491302,-0.490557968616486,0.355279117822647,-0.926345765590668,-0.125141337513924,0.879960656166077,-0.0882286131381989,0.466781407594681,
- 0.355279117822647,-0.926345765590668,-0.125141337513924,0.0913440138101578,-0.990102887153625,0.106548167765141,0.997918725013733,0.0522703416645527,-0.0377634353935719,0.92034238576889,-0.377022415399551,-0.104038342833519,0.989563882350922,-0.109717726707459,-0.093409538269043,0.999312996864319,-0.0286347288638353,0.023529464378953,0.973240494728088,0.202289924025536,-0.109003692865372,0.7174391746521,-0.682917296886444,-0.137494772672653,0.999833881855011,0.0064829820767045,-0.0170346144586802,0.961169600486755,-0.158770263195038,0.225709870457649,0.943421006202698,-0.271389037370682,0.190538063645363,0.764615416526794,-0.643913269042969,-0.0271862577646971,0.964420258998871,-0.262858122587204,-0.0282692834734917,0.958401143550873,-0.283002406358719,-0.0371052846312523,0.944025993347168,-0.32910230755806,-0.0225056856870651,0.997918725013733,0.0522703416645527,-0.0377634353935719,0.99496591091156,-0.00173762952908874,0.100199162960052,0.92034238576889,-0.377022415399551,-0.104038342833519,0.912464439868927,0.40871986746788,-0.0188824236392975,0.966766178607941,0.251619964838028,0.0452840030193329,0.953355967998505,0.298602372407913,0.0441481880843639,0.982556462287903,0.183070555329323,0.0326773338019848,0.967408001422882,0.252464592456818,-0.0195810422301292,0.967408001422882,0.252464592456818,-0.0195810422301292,0.840511322021484,0.285106718540192,0.460711061954498,0.957442343235016,0.196195602416992,0.211687043309212,0.912464439868927,0.40871986746788,-0.0188824236392975,0.986034691333771,0.0298326034098864,-0.163846716284752,0.939678132534027,0.340864062309265,-0.0285761393606663,0.955172598361969,0.264811158180237,0.132364377379417,0.9799964427948,0.10706203430891,0.167764037847519,0.844145774841309,0.495155692100525,-0.205520644783974,0.916573524475098,0.335626929998398,0.217365026473999,0.955172598361969,0.264811158180237,0.132364377379417,0.939678132534027,0.340864062309265,-0.0285761393606663,0.898647665977478,0.39046123623848,-0.199931219220161,0.97781777381897,0.204382076859474,0.0458295047283173,0.980329990386963,0.187497809529305,-0.0616258196532726,
- 0.816078066825867,-0.570851385593414,-0.0902516171336174,0.898647665977478,0.39046123623848,-0.199931219220161,0.980329990386963,0.187497809529305,-0.0616258196532726,0.807221829891205,-0.58375072479248,0.0873381495475769,0.948937356472015,-0.315351903438568,-0.00842750631272793,0.978377819061279,-0.154780954122543,-0.137184605002403,0.919678151607513,-0.374979108572006,-0.116544626653194,0.979712069034576,-0.191623151302338,-0.0586916692554951,0.989983141422272,-0.133555963635445,-0.0457846187055111,0.96850997209549,0.217192128300667,-0.1217210739851,0.64685183763504,-0.761628329753876,0.0387961119413376,0.85494202375412,-0.511699795722961,0.0850730463862419,0.919678151607513,-0.374979108572006,-0.116544626653194,0.898343741893768,-0.427967369556427,0.0991080701351166,0.85494202375412,-0.511699795722961,0.0850730463862419,0.64685183763504,-0.761628329753876,0.0387961119413376,0.828169167041779,-0.560283839702606,0.0147576546296477,0.989313006401062,0.136946141719818,-0.0500551089644432,0.954866170883179,0.294783234596252,0.0365168452262878,0.971738815307617,0.230703413486481,0.0499971397221088,0.998480796813965,0.0536782965064049,-0.0124395284801722,0.989313006401062,0.136946141719818,-0.0500551089644432,0.828169167041779,-0.560283839702606,0.0147576546296477,0.998480796813965,0.0536782965064049,-0.0124395284801722,0.828169167041779,-0.560283839702606,0.0147576546296477,0.929400861263275,0.344485491514206,-0.132452964782715,0.929400861263275,0.344485491514206,-0.132452964782715,0.977947592735291,-0.126089677214623,0.166492685675621,0.998480796813965,0.0536782965064049,-0.0124395284801722,0.303597182035446,-0.95255446434021,-0.0216498449444771,0.327545195817947,-0.944385170936584,-0.0291675869375467,0.0195272900164127,-0.99482786655426,-0.0996799916028976,0.191000863909721,-0.96657383441925,-0.171036720275879,0.108167871832848,-0.993727385997772,0.028382321819663,-0.0190104376524687,-0.999030351638794,0.0397092029452324,-0.292062103748322,-0.109468497335911,0.950113892555237,0.0979535728693008,-0.983843743801117,0.149855345487595,
- -0.292062103748322,-0.109468497335911,0.950113892555237,-0.0190104376524687,-0.999030351638794,0.0397092029452324,0.0806671679019928,-0.996727705001831,-0.00518083246424794,0.0689472779631615,-0.99566650390625,-0.0624043457210064,-0.972039639949799,-0.0132842008024454,0.234440997242928,-0.972039639949799,-0.0132842008024454,0.234440997242928,0.0979535728693008,-0.983843743801117,0.149855345487595,0.0806671679019928,-0.996727705001831,-0.00518083246424794,0.0409493260085583,-0.956974864006042,0.28726664185524,-0.214418724179268,-0.83812016248703,0.501576840877533,0.862642467021942,0.459545433521271,-0.211343318223953,0.0409493260085583,-0.956974864006042,0.28726664185524,0.508559465408325,-0.859444618225098,-0.0521753206849098,-0.214418724179268,-0.83812016248703,0.501576840877533,0.78214168548584,-0.622282743453979,-0.0319131650030613,0.508559465408325,-0.859444618225098,-0.0521753206849098,0.79950624704361,-0.596198439598084,0.0730558559298515,0.978377819061279,-0.154780954122543,-0.137184605002403,0.898647665977478,0.39046123623848,-0.199931219220161,0.816078066825867,-0.570851385593414,-0.0902516171336174,0.807221829891205,-0.58375072479248,0.0873381495475769,0.978377819061279,-0.154780954122543,-0.137184605002403,0.816078066825867,-0.570851385593414,-0.0902516171336174,0.989983141422272,-0.133555963635445,-0.0457846187055111,0.807221829891205,-0.58375072479248,0.0873381495475769,0.958813667297363,-0.279510587453842,-0.0504994615912437,0.963672816753387,-0.196559324860573,-0.180829077959061,0.989983141422272,-0.133555963635445,-0.0457846187055111,0.958813667297363,-0.279510587453842,-0.0504994615912437,0.109841965138912,-0.96052885055542,-0.255575925111771,0.62261176109314,-0.755265474319458,0.204764902591705,-0.319115102291107,-0.937490344047546,0.138843417167664,0.371620744466782,-0.869957864284515,-0.324147164821625,0.109841965138912,-0.96052885055542,-0.255575925111771,0.289337307214737,-0.934788048267365,-0.206046313047409,0.307054460048676,-0.951214551925659,-0.0301383379846811,0.303597182035446,-0.95255446434021,-0.0216498449444771,
- 0.191000863909721,-0.96657383441925,-0.171036720275879,0.237298011779785,-0.919724524021149,0.312724232673645,0.99496591091156,-0.00173762952908874,0.100199162960052,0.762624204158783,0.0943267643451691,-0.639927208423615,0.960669994354248,0.273232787847519,0.0495679900050163,0.997918725013733,0.0522703416645527,-0.0377634353935719,0.762624204158783,0.0943267643451691,-0.639927208423615,0.99496591091156,-0.00173762952908874,0.100199162960052,0.997918725013733,0.0522703416645527,-0.0377634353935719,0.764615416526794,-0.643913269042969,-0.0271862577646971,0.762624204158783,0.0943267643451691,-0.639927208423615,0.995092868804932,0.0902889668941498,-0.0404723882675171,0.923917591571808,-0.380248427391052,-0.0422785244882107,0.96560150384903,-0.256612837314606,-0.0419940873980522,0.977947592735291,-0.126089677214623,0.166492685675621,0.890753388404846,0.399457156658173,-0.216776952147484,0.954323828220367,0.296956300735474,0.0329098962247372,0.966766178607941,0.251619964838028,0.0452840030193329,0.912464439868927,0.40871986746788,-0.0188824236392975,0.989313006401062,0.136946141719818,-0.0500551089644432,0.994722485542297,0.0920697152614594,0.0452815853059292,0.954323828220367,0.296956300735474,0.0329098962247372,0.954866170883179,0.294783234596252,0.0365168452262878,0.92573744058609,0.34519749879837,-0.154430791735649,0.961793899536133,0.273321211338043,-0.0157491732388735,0.962706923484802,0.270078957080841,0.015896201133728,0.916573524475098,0.335626929998398,0.217365026473999,0.953355967998505,0.298602372407913,0.0441481880843639,0.960669994354248,0.273232787847519,0.0495679900050163,0.979091644287109,0.175819456577301,0.102308787405491,0.961793899536133,0.273321211338043,-0.0157491732388735,0.97781777381897,0.204382076859474,0.0458295047283173,0.962706923484802,0.270078957080841,0.015896201133728,0.980329990386963,0.187497809529305,-0.0616258196532726,0.966766178607941,0.251619964838028,0.0452840030193329,0.948632180690765,-0.313737750053406,0.0408117696642876,0.960669994354248,0.273232787847519,0.0495679900050163,
- 0.953355967998505,0.298602372407913,0.0441481880843639,0.815267384052277,-0.579062461853027,0.00508114788681269,0.999833881855011,0.0064829820767045,-0.0170346144586802,0.964420258998871,-0.262858122587204,-0.0282692834734917,0.964816927909851,-0.261274605989456,-0.0293899774551392,0.966637253761292,-0.254028677940369,-0.0328891053795815,0.96560150384903,-0.256612837314606,-0.0419940873980522,0.95842707157135,-0.284538298845291,0.0213408619165421,0.907563745975494,-0.409279555082321,0.09390539675951,0.815267384052277,-0.579062461853027,0.00508114788681269,0.964816927909851,-0.261274605989456,-0.0293899774551392,0.966637253761292,-0.254028677940369,-0.0328891053795815,0.907563745975494,-0.409279555082321,0.09390539675951,0.958401143550873,-0.283002406358719,-0.0371052846312523,0.964420258998871,-0.262858122587204,-0.0282692834734917,0.999833881855011,0.0064829820767045,-0.0170346144586802,0.943421006202698,-0.271389037370682,0.190538063645363,0.96560150384903,-0.256612837314606,-0.0419940873980522,0.923917591571808,-0.380248427391052,-0.0422785244882107,0.95842707157135,-0.284538298845291,0.0213408619165421,0.73690664768219,-0.675864636898041,-0.0132493209093809,0.687805354595184,-0.72332489490509,-0.0610308311879635,0.713890969753265,-0.700178742408752,0.0104551212862134,0.792795538902283,-0.607364416122437,-0.0508316867053509,0.898343741893768,-0.427967369556427,0.0991080701351166,0.508559465408325,-0.859444618225098,-0.0521753206849098,0.973240494728088,0.202289924025536,-0.109003692865372,0.724291682243347,-0.685834348201752,-0.0709427744150162,0.685182809829712,-0.725124180316925,-0.0686974078416824,0.7174391746521,-0.682917296886444,-0.137494772672653,0.707496643066406,-0.703925490379334,-0.0627493336796761,0.653777837753296,-0.75358247756958,-0.0684688314795494,0.0159018095582724,-0.998905122280121,0.0439971536397934,0.604305922985077,-0.7874875664711,-0.121150240302086,0.685182809829712,-0.725124180316925,-0.0686974078416824,0.71919310092926,-0.693547368049622,-0.0418736860156059,0.732277870178223,-0.657774329185486,0.176358133554459,
- 0.687805354595184,-0.72332489490509,-0.0610308311879635,0.313059151172638,-0.948783874511719,-0.0424638465046883,0.474141716957092,-0.874795377254486,-0.0996128246188164,0.325805276632309,-0.945127725601196,-0.0241778418421745,0.307806015014648,-0.951143682003021,-0.0241085086017847,0.0222750715911388,-0.994201719760895,-0.105198107659817,0.0913440138101578,-0.990102887153625,0.106548167765141,0.355279117822647,-0.926345765590668,-0.125141337513924,0.302975922822952,-0.952683091163635,-0.0245046466588974,0.708112776279449,-0.699034810066223,-0.0996320694684982,0.536972105503082,-0.831368029117584,-0.14313668012619,0.527249276638031,-0.833887159824371,-0.163219049572945,0.34771740436554,-0.937045216560364,-0.0322332046926022,0.325805276632309,-0.945127725601196,-0.0241778418421745,0.307054460048676,-0.951214551925659,-0.0301383379846811,0.237298011779785,-0.919724524021149,0.312724232673645,0.329485952854156,-0.942870795726776,0.0493331402540207,0.307806015014648,-0.951143682003021,-0.0241085086017847,0.621758580207825,-0.783081650733948,0.0141165535897017,0.467416286468506,-0.882948994636536,0.0438539572060108,0.317701160907745,-0.946886897087097,-0.0497092492878437,0.287136644124985,-0.957006633281708,-0.0411209873855114,0.0351616479456425,-0.999245524406433,-0.0164885614067316,0.376908928155899,-0.913124561309814,-0.155381172895432,0.138233795762062,-0.989628970623016,-0.0390621647238731,0.436620026826859,-0.89947909116745,0.0173220448195934,0.418962627649307,-0.906882345676422,-0.0451080277562141,0.327545195817947,-0.944385170936584,-0.0291675869375467,0.303597182035446,-0.95255446434021,-0.0216498449444771,0.289337307214737,-0.934788048267365,-0.206046313047409,0.38243243098259,-0.914827167987823,0.129755735397339,0.436620026826859,-0.89947909116745,0.0173220448195934,0.371620744466782,-0.869957864284515,-0.324147164821625,0.945102870464325,-0.326305329799652,0.0174769833683968,0.944025993347168,-0.32910230755806,-0.0225056856870651,0.958401143550873,-0.283002406358719,-0.0371052846312523,0.958813667297363,-0.279510587453842,-0.0504994615912437,
- 0.919678151607513,-0.374979108572006,-0.116544626653194,0.85494202375412,-0.511699795722961,0.0850730463862419,0.979712069034576,-0.191623151302338,-0.0586916692554951,0.792795538902283,-0.607364416122437,-0.0508316867053509,0.508559465408325,-0.859444618225098,-0.0521753206849098,0.78214168548584,-0.622282743453979,-0.0319131650030613,0.700678706169128,-0.709314107894897,-0.0769591927528381,0.896600961685181,0.420696794986725,0.138278424739838,0.979425668716431,0.0976551845669746,-0.176603376865387,0.867758572101593,0.473101824522018,0.152216002345085,0.79950624704361,-0.596198439598084,0.0730558559298515,0.508559465408325,-0.859444618225098,-0.0521753206849098,0.0409493260085583,-0.956974864006042,0.28726664185524,0.944025993347168,-0.32910230755806,-0.0225056856870651,0.816078066825867,-0.570851385593414,-0.0902516171336174,0.499035716056824,-0.574514508247375,0.648765206336975,0.998480796813965,0.0536782965064049,-0.0124395284801722,0.977947592735291,-0.126089677214623,0.166492685675621,0.989563882350922,-0.109717726707459,-0.093409538269043,0.959150314331055,-0.282505542039871,-0.0148761877790093,0.308865308761597,-0.951083958148956,-0.00645711552351713,0.317701160907745,-0.946886897087097,-0.0497092492878437,0.467416286468506,-0.882948994636536,0.0438539572060108,0.304883301258087,-0.940610706806183,-0.149324029684067,0.712738692760468,-0.502009451389313,-0.489887863397598,0.381350845098495,-0.815626323223114,-0.435115188360214,0.708112776279449,-0.699034810066223,-0.0996320694684982,0.304883301258087,-0.940610706806183,-0.149324029684067,0.63098007440567,-0.756732523441315,-0.170938551425934,0.148958295583725,-0.985847353935242,0.0769173577427864,0.576090931892395,-0.817192733287811,-0.0177546180784702,0.0593759082257748,-0.995692908763886,0.071205735206604,0.367478400468826,-0.929184198379517,0.0397034250199795,0.381350845098495,-0.815626323223114,-0.435115188360214,0.00467339064925909,-0.993115901947021,0.117042079567909,0.105675153434277,-0.991852641105652,0.0711418017745018,-0.921336889266968,0.372717499732971,-0.110545113682747,
- -0.754170060157776,-0.158764809370041,0.637197971343994,0.00204187561757863,-0.983451068401337,0.181162461638451,0.621758580207825,-0.783081650733948,0.0141165535897017,0.329485952854156,-0.942870795726776,0.0493331402540207,0.682315468788147,-0.618547677993774,0.389672219753265,0.952246129512787,-0.251821875572205,-0.172664597630501,0.191000863909721,-0.96657383441925,-0.171036720275879,0.0195272900164127,-0.99482786655426,-0.0996799916028976,0.148958295583725,-0.985847353935242,0.0769173577427864,0.63098007440567,-0.756732523441315,-0.170938551425934,0.522549152374268,-0.85247665643692,-0.0150268971920013,0.191000863909721,-0.96657383441925,-0.171036720275879,0.63098007440567,-0.756732523441315,-0.170938551425934,0.381350845098495,-0.815626323223114,-0.435115188360214,0.536972105503082,-0.831368029117584,-0.14313668012619,0.708112776279449,-0.699034810066223,-0.0996320694684982,0.682315468788147,-0.618547677993774,0.389672219753265,0.237298011779785,-0.919724524021149,0.312724232673645,-0.0525900460779667,-0.938962697982788,0.339975476264954,0.467416286468506,-0.882948994636536,0.0438539572060108,0.621758580207825,-0.783081650733948,0.0141165535897017,0.952246129512787,-0.251821875572205,-0.172664597630501,0.712738692760468,-0.502009451389313,-0.489887863397598,0.890763282775879,-0.426378548145294,-0.15729621052742,0.467416286468506,-0.882948994636536,0.0438539572060108,0.952246129512787,-0.251821875572205,-0.172664597630501,0.304883301258087,-0.940610706806183,-0.149324029684067,0.708112776279449,-0.699034810066223,-0.0996320694684982,0.302975922822952,-0.952683091163635,-0.0245046466588974,0.308865308761597,-0.951083958148956,-0.00645711552351713,-0.025805277749896,-0.999630272388458,-0.0085691325366497,0.00467339064925909,-0.993115901947021,0.117042079567909,0.381350845098495,-0.815626323223114,-0.435115188360214,0.712738692760468,-0.502009451389313,-0.489887863397598,0.0574826784431934,-0.998177230358124,-0.0183828771114349,0.0789346247911453,-0.996732354164124,0.0171427540481091,-0.227511018514633,-0.97365015745163,0.0156269352883101,
- 0.0689472779631615,-0.99566650390625,-0.0624043457210064,-0.00491984654217958,-0.999518036842346,0.0306517705321312,0.0178174413740635,-0.999530673027039,0.0249190460890532,0.250335484743118,-0.966631889343262,-0.0543593801558018,-0.0133866351097822,-0.999661922454834,-0.0222868788987398,0.0365641266107559,-0.999164581298828,-0.0182538330554962,0.0542541518807411,-0.998420655727386,-0.0145886205136776,0.108167871832848,-0.993727385997772,0.028382321819663,0.0913440138101578,-0.990102887153625,0.106548167765141,0.0384036675095558,-0.999144911766052,0.015314175747335,0.0365641266107559,-0.999164581298828,-0.0182538330554962,0.0913440138101578,-0.990102887153625,0.106548167765141,0.0222750715911388,-0.994201719760895,-0.105198107659817,0.371620744466782,-0.869957864284515,-0.324147164821625,0.436620026826859,-0.89947909116745,0.0173220448195934,0.303597182035446,-0.95255446434021,-0.0216498449444771,0.307054460048676,-0.951214551925659,-0.0301383379846811,0.522549152374268,-0.85247665643692,-0.0150268971920013,0.63098007440567,-0.756732523441315,-0.170938551425934,0.0593759082257748,-0.995692908763886,0.071205735206604,0.058433685451746,-0.998243749141693,-0.0097401374951005,0.0574826784431934,-0.998177230358124,-0.0183828771114349,0.0689472779631615,-0.99566650390625,-0.0624043457210064,0.0806671679019928,-0.996727705001831,-0.00518083246424794,0.0979535728693008,-0.983843743801117,0.149855345487595,0.0320185348391533,-0.999414503574371,-0.0120635898783803,0.058433685451746,-0.998243749141693,-0.0097401374951005,0.0979535728693008,-0.983843743801117,0.149855345487595,-0.0190104376524687,-0.999030351638794,0.0397092029452324,0.375645399093628,-0.922838628292084,-0.0852026492357254,0.0880090743303299,-0.992758512496948,-0.0817611813545227,0.682315468788147,-0.618547677993774,0.389672219753265,0.952246129512787,-0.251821875572205,-0.172664597630501,0.0880090743303299,-0.992758512496948,-0.0817611813545227,-0.243748977780342,-0.96981006860733,-0.00740903103724122,0.682315468788147,-0.618547677993774,0.389672219753265,-0.0525900460779667,-0.938962697982788,0.339975476264954,
- 0.448848754167557,-0.856653869152069,-0.254320502281189,0.250335484743118,-0.966631889343262,-0.0543593801558018,0.0178174413740635,-0.999530673027039,0.0249190460890532,0.0384036675095558,-0.999144911766052,0.015314175747335,0.0222750715911388,-0.994201719760895,-0.105198107659817,0.304883301258087,-0.940610706806183,-0.149324029684067,0.890763282775879,-0.426378548145294,-0.15729621052742,0.712738692760468,-0.502009451389313,-0.489887863397598,0.527249276638031,-0.833887159824371,-0.163219049572945,0.536972105503082,-0.831368029117584,-0.14313668012619,0.381350845098495,-0.815626323223114,-0.435115188360214,0.367478400468826,-0.929184198379517,0.0397034250199795,0.304883301258087,-0.940610706806183,-0.149324029684067,0.467416286468506,-0.882948994636536,0.0438539572060108,0.890763282775879,-0.426378548145294,-0.15729621052742,0.682315468788147,-0.618547677993774,0.389672219753265,0.448848754167557,-0.856653869152069,-0.254320502281189,0.0189430210739374,-0.987397193908691,-0.15712396800518,0.375645399093628,-0.922838628292084,-0.0852026492357254,0.237298011779785,-0.919724524021149,0.312724232673645,0.522549152374268,-0.85247665643692,-0.0150268971920013,-0.0525900460779667,-0.938962697982788,0.339975476264954,0.952246129512787,-0.251821875572205,-0.172664597630501,0.682315468788147,-0.618547677993774,0.389672219753265,0.0880090743303299,-0.992758512496948,-0.0817611813545227,0.0542541518807411,-0.998420655727386,-0.0145886205136776,0.0320185348391533,-0.999414503574371,-0.0120635898783803,-0.0190104376524687,-0.999030351638794,0.0397092029452324,0.108167871832848,-0.993727385997772,0.028382321819663,0.237298011779785,-0.919724524021149,0.312724232673645,0.191000863909721,-0.96657383441925,-0.171036720275879,0.522549152374268,-0.85247665643692,-0.0150268971920013,0.522549152374268,-0.85247665643692,-0.0150268971920013,0.0593759082257748,-0.995692908763886,0.071205735206604,0.448848754167557,-0.856653869152069,-0.254320502281189,0.522549152374268,-0.85247665643692,-0.0150268971920013,0.448848754167557,-0.856653869152069,-0.254320502281189,
- -0.0525900460779667,-0.938962697982788,0.339975476264954,0.329485952854156,-0.942870795726776,0.0493331402540207,0.237298011779785,-0.919724524021149,0.312724232673645,0.682315468788147,-0.618547677993774,0.389672219753265,-0.025805277749896,-0.999630272388458,-0.0085691325366497,0.952246129512787,-0.251821875572205,-0.172664597630501,0.00415461836382747,-0.95187908411026,-0.306445568799973,0.00415461836382747,-0.95187908411026,-0.306445568799973,-0.243748977780342,-0.96981006860733,-0.00740903103724122,0.0542541518807411,-0.998420655727386,-0.0145886205136776,0.0365641266107559,-0.999164581298828,-0.0182538330554962,-0.243748977780342,-0.96981006860733,-0.00740903103724122,0.0880090743303299,-0.992758512496948,-0.0817611813545227,0.375645399093628,-0.922838628292084,-0.0852026492357254,0.0320185348391533,-0.999414503574371,-0.0120635898783803,0.0542541518807411,-0.998420655727386,-0.0145886205136776,0.375645399093628,-0.922838628292084,-0.0852026492357254,0.0189430210739374,-0.987397193908691,-0.15712396800518,0.058433685451746,-0.998243749141693,-0.0097401374951005,0.0320185348391533,-0.999414503574371,-0.0120635898783803,0.0593759082257748,-0.995692908763886,0.071205735206604,0.0189430210739374,-0.987397193908691,-0.15712396800518,0.448848754167557,-0.856653869152069,-0.254320502281189,0.0593759082257748,-0.995692908763886,0.071205735206604,0.576090931892395,-0.817192733287811,-0.0177546180784702,0.0789346247911453,-0.996732354164124,0.0171427540481091,0.0574826784431934,-0.998177230358124,-0.0183828771114349,0.105675153434277,-0.991852641105652,0.0711418017745018,0.00467339064925909,-0.993115901947021,0.117042079567909,-0.0628679394721985,-0.993713319301605,0.0926358476281166,0.0178174413740635,-0.999530673027039,0.0249190460890532,-0.00491984654217958,-0.999518036842346,0.0306517705321312,0.0384036675095558,-0.999144911766052,0.015314175747335,0.0178174413740635,-0.999530673027039,0.0249190460890532,-0.0628679394721985,-0.993713319301605,0.0926358476281166,0.0325278490781784,-0.979782044887543,0.197406306862831,
- 0.705909669399261,0.704750120639801,0.0708430409431458,0.855970442295074,0.498588025569916,0.136837363243103,0.757405757904053,0.639604210853577,0.131312415003777,0.66419905424118,0.744288444519043,0.0698172599077225,0.77047461271286,-0.586859166622162,0.24892783164978,0.638353407382965,0.735199928283691,-0.228004559874535,0.633283197879791,0.770296454429626,0.0748052597045898,0.458475857973099,0.597478032112122,0.657890498638153,0.546311020851135,0.82964026927948,0.115071199834347,0.732553780078888,0.676979005336761,0.0711646601557732,0.365942627191544,0.930231869220734,0.0274715386331081,0.582842171192169,0.809660375118256,0.0688851103186607,-0.0116404658183455,0.131257370114326,-0.99127995967865,0.638353407382965,0.735199928283691,-0.228004559874535,0.77047461271286,-0.586859166622162,0.24892783164978,0.74249941110611,-0.517049849033356,-0.425856828689575,0.551653265953064,-0.340094596147537,-0.761586785316467,-0.0116404658183455,0.131257370114326,-0.99127995967865,0.582842171192169,0.809660375118256,0.0688851103186607,0.365942627191544,0.930231869220734,0.0274715386331081,0.665731489658356,0.71773099899292,-0.204117134213448,0.729460656642914,0.680104732513428,0.0731070414185524,0.705909669399261,0.704750120639801,0.0708430409431458,0.365942627191544,0.930231869220734,0.0274715386331081,-0.0116404658183455,0.131257370114326,-0.99127995967865,-0.529668629169464,0.463027656078339,-0.710673391819,0.665731489658356,0.71773099899292,-0.204117134213448,0.551653265953064,-0.340094596147537,-0.761586785316467,0.638353407382965,0.735199928283691,-0.228004559874535,0.74249941110611,-0.517049849033356,-0.425856828689575,-0.758440792560577,0.637136578559875,-0.137202098965645,-0.792383134365082,0.609562337398529,0.0237216372042894,0.645688951015472,0.751435339450836,0.135760098695755,0.638353407382965,0.735199928283691,-0.228004559874535,0.582842171192169,0.809660375118256,0.0688851103186607,0.66419905424118,0.744288444519043,0.0698172599077225,0.693476676940918,0.71791535615921,0.0607255138456821,0.582842171192169,0.809660375118256,0.0688851103186607,
- 0.638353407382965,0.735199928283691,-0.228004559874535,0.551653265953064,-0.340094596147537,-0.761586785316467,0.729818403720856,0.678481340408325,0.0838340595364571,0.764229834079742,0.640618741512299,0.0745678246021271,0.995616137981415,0.0905731990933418,0.0233484581112862,0.801681816577911,0.594860196113586,-0.0587169267237186,0.665731489658356,0.71773099899292,-0.204117134213448,-0.529668629169464,0.463027656078339,-0.710673391819,-0.671500146389008,0.569383382797241,-0.474225878715515,-0.671500146389008,0.569383382797241,-0.474225878715515,-0.758440792560577,0.637136578559875,-0.137202098965645,0.665731489658356,0.71773099899292,-0.204117134213448,0.729460656642914,0.680104732513428,0.0731070414185524,0.729818403720856,0.678481340408325,0.0838340595364571,0.801681816577911,0.594860196113586,-0.0587169267237186,0.77213978767395,0.551024258136749,0.316500157117844,0.582842171192169,0.809660375118256,0.0688851103186607,0.365942627191544,0.930231869220734,0.0274715386331081,0.705909669399261,0.704750120639801,0.0708430409431458,0.66419905424118,0.744288444519043,0.0698172599077225,0.739959716796875,0.668781578540802,0.07204719632864,0.785639643669128,0.617957472801209,0.0299823991954327,0.749638915061951,0.661680161952972,-0.0148608814924955,0.732553780078888,0.676979005336761,0.0711646601557732,0.705909669399261,0.704750120639801,0.0708430409431458,0.729460656642914,0.680104732513428,0.0731070414185524,0.77213978767395,0.551024258136749,0.316500157117844,0.855970442295074,0.498588025569916,0.136837363243103,0.66419905424118,0.744288444519043,0.0698172599077225,0.757405757904053,0.639604210853577,0.131312415003777,0.7367182970047,0.655569970607758,0.165753290057182,0.693476676940918,0.71791535615921,0.0607255138456821,0.739959716796875,0.668781578540802,0.07204719632864,0.768631935119629,0.626437067985535,0.129543632268906,0.633283197879791,0.770296454429626,0.0748052597045898,0.703441262245178,0.71075052022934,-0.0020575406961143,0.645688951015472,0.751435339450836,0.135760098695755,0.764229834079742,0.640618741512299,0.0745678246021271,
- 0.729818403720856,0.678481340408325,0.0838340595364571,0.665731489658356,0.71773099899292,-0.204117134213448,-0.758440792560577,0.637136578559875,-0.137202098965645,0.645688951015472,0.751435339450836,0.135760098695755,0.703441262245178,0.71075052022934,-0.0020575406961143,0.693476676940918,0.71791535615921,0.0607255138456821,0.7367182970047,0.655569970607758,0.165753290057182,0.691289961338043,0.588465869426727,-0.419316351413727,0.844145774841309,0.495155692100525,-0.205520644783974,0.939678132534027,0.340864062309265,-0.0285761393606663,0.691289961338043,0.588465869426727,-0.419316351413727,0.757405757904053,0.639604210853577,0.131312415003777,0.855970442295074,0.498588025569916,0.136837363243103,0.957442343235016,0.196195602416992,0.211687043309212,0.840511322021484,0.285106718540192,0.460711061954498,0.801681816577911,0.594860196113586,-0.0587169267237186,0.995616137981415,0.0905731990933418,0.0233484581112862,0.979425668716431,0.0976551845669746,-0.176603376865387,0.9964240193367,0.00229827081784606,0.0844617858529091,0.991697549819946,-0.00639424473047256,0.128432363271713,0.801681816577911,0.594860196113586,-0.0587169267237186,0.9964240193367,0.00229827081784606,0.0844617858529091,0.7367182970047,0.655569970607758,0.165753290057182,0.757405757904053,0.639604210853577,0.131312415003777,0.840511322021484,0.285106718540192,0.460711061954498,0.899401366710663,0.424665331840515,-0.103617459535599,0.7367182970047,0.655569970607758,0.165753290057182,0.840511322021484,0.285106718540192,0.460711061954498,0.691289961338043,0.588465869426727,-0.419316351413727,0.785639643669128,0.617957472801209,0.0299823991954327,0.739959716796875,0.668781578540802,0.07204719632864,0.703441262245178,0.71075052022934,-0.0020575406961143,0.665731489658356,0.71773099899292,-0.204117134213448,0.645688951015472,0.751435339450836,0.135760098695755,0.729818403720856,0.678481340408325,0.0838340595364571,0.729460656642914,0.680104732513428,0.0731070414185524,0.691289961338043,0.588465869426727,-0.419316351413727,0.899401366710663,0.424665331840515,-0.103617459535599,
- 0.844145774841309,0.495155692100525,-0.205520644783974,0.749638915061951,0.661680161952972,-0.0148608814924955,0.785639643669128,0.617957472801209,0.0299823991954327,0.939678132534027,0.340864062309265,-0.0285761393606663,0.986034691333771,0.0298326034098864,-0.163846716284752,0.691289961338043,0.588465869426727,-0.419316351413727,0.7367182970047,0.655569970607758,0.165753290057182,0.899401366710663,0.424665331840515,-0.103617459535599,0.77213978767395,0.551024258136749,0.316500157117844,0.991697549819946,-0.00639424473047256,0.128432363271713,0.957442343235016,0.196195602416992,0.211687043309212,0.77213978767395,0.551024258136749,0.316500157117844,0.801681816577911,0.594860196113586,-0.0587169267237186,0.991697549819946,-0.00639424473047256,0.128432363271713,0.855970442295074,0.498588025569916,0.136837363243103,0.77213978767395,0.551024258136749,0.316500157117844,0.957442343235016,0.196195602416992,0.211687043309212,0.546311020851135,0.82964026927948,0.115071199834347,0.768631935119629,0.626437067985535,0.129543632268906,0.739959716796875,0.668781578540802,0.07204719632864,0.732553780078888,0.676979005336761,0.0711646601557732,-0.782710492610931,0.609610080718994,-0.125458344817162,-0.784374058246613,0.609417915344238,-0.115616358816624,-0.787839770317078,0.607620358467102,-0.100529223680496,-0.797715842723846,0.595623850822449,-0.094241589307785,-0.798790693283081,0.596022367477417,-0.0817971453070641,-0.788228154182434,0.608059346675873,-0.094658762216568,-0.78526771068573,0.608341038227081,-0.115220710635185,-0.759557962417603,0.637434601783752,-0.129417583346367,-0.772556602954865,0.621884822845459,-0.128123417496681,0.633283197879791,0.770296454429626,0.0748052597045898,0.768631935119629,0.626437067985535,0.129543632268906,0.277884840965271,-0.242135167121887,0.929596960544586,0.77047461271286,-0.586859166622162,0.24892783164978,-0.0623349249362946,0.0174211729317904,0.997903227806091,0.546311020851135,0.82964026927948,0.115071199834347,0.458475857973099,0.597478032112122,0.657890498638153,-0.0623349249362946,0.0174211729317904,0.997903227806091,
- 0.277884840965271,-0.242135167121887,0.929596960544586,0.768631935119629,0.626437067985535,0.129543632268906,0.546311020851135,0.82964026927948,0.115071199834347,0.896600961685181,0.420696794986725,0.138278424739838,0.9964240193367,0.00229827081784606,0.0844617858529091,0.979425668716431,0.0976551845669746,-0.176603376865387,0.907563745975494,-0.409279555082321,0.09390539675951,0.95842707157135,-0.284538298845291,0.0213408619165421,0.982494533061981,0.0382675789296627,-0.182318821549416,0.959150314331055,-0.282505542039871,-0.0148761877790093,0.92034238576889,-0.377022415399551,-0.104038342833519,0.994722485542297,0.0920697152614594,0.0452815853059292,0.989313006401062,0.136946141719818,-0.0500551089644432,0.99496591091156,-0.00173762952908874,0.100199162960052,0.948632180690765,-0.313737750053406,0.0408117696642876,0.994722485542297,0.0920697152614594,0.0452815853059292,0.92034238576889,-0.377022415399551,-0.104038342833519,0.960669994354248,0.273232787847519,0.0495679900050163,0.948632180690765,-0.313737750053406,0.0408117696642876,0.99496591091156,-0.00173762952908874,0.100199162960052,0.952246129512787,-0.251821875572205,-0.172664597630501,-0.243748977780342,-0.96981006860733,-0.00740903103724122,0.00415461836382747,-0.95187908411026,-0.306445568799973,-0.025805277749896,-0.999630272388458,-0.0085691325366497,0.00415461836382747,-0.95187908411026,-0.306445568799973,0.0365641266107559,-0.999164581298828,-0.0182538330554962,0.0384036675095558,-0.999144911766052,0.015314175747335,0.0325278490781784,-0.979782044887543,0.197406306862831,0.945102870464325,-0.326305329799652,0.0174769833683968,0.816078066825867,-0.570851385593414,-0.0902516171336174,0.944025993347168,-0.32910230755806,-0.0225056856870651,0.989983141422272,-0.133555963635445,-0.0457846187055111,0.948937356472015,-0.315351903438568,-0.00842750631272793,0.807221829891205,-0.58375072479248,0.0873381495475769,0.287136644124985,-0.957006633281708,-0.0411209873855114,0.285450160503387,-0.893212914466858,-0.347403138875961,0.317701160907745,-0.946886897087097,-0.0497092492878437,
- 0.308865308761597,-0.951083958148956,-0.00645711552351713,0.302975922822952,-0.952683091163635,-0.0245046466588974,0.0351616479456425,-0.999245524406433,-0.0164885614067316,0.287136644124985,-0.957006633281708,-0.0411209873855114,0.308865308761597,-0.951083958148956,-0.00645711552351713,0.34771740436554,-0.937045216560364,-0.0322332046926022,0.0919794291257858,-0.995756328105927,-0.00303203798830509,0.0351616479456425,-0.999245524406433,-0.0164885614067316,0.302975922822952,-0.952683091163635,-0.0245046466588974,0.058433685451746,-0.998243749141693,-0.0097401374951005,0.0189430210739374,-0.987397193908691,-0.15712396800518,0.0593759082257748,-0.995692908763886,0.071205735206604,0.0574826784431934,-0.998177230358124,-0.0183828771114349,0.633283197879791,0.770296454429626,0.0748052597045898,0.638353407382965,0.735199928283691,-0.228004559874535,0.693476676940918,0.71791535615921,0.0607255138456821,0.703441262245178,0.71075052022934,-0.0020575406961143,0.807213187217712,0.413939118385315,0.420786529779434,0.963672816753387,-0.196559324860573,-0.180829077959061,0.943421006202698,-0.271389037370682,0.190538063645363,0.691289961338043,0.588465869426727,-0.419316351413727,0.939678132534027,0.340864062309265,-0.0285761393606663,0.785639643669128,0.617957472801209,0.0299823991954327,-0.308442831039429,-0.95006799697876,0.0472639799118042,0.38243243098259,-0.914827167987823,0.129755735397339,0.289337307214737,-0.934788048267365,-0.206046313047409,-0.319115102291107,-0.937490344047546,0.138843417167664,0.289337307214737,-0.934788048267365,-0.206046313047409,0.109841965138912,-0.96052885055542,-0.255575925111771,-0.319115102291107,-0.937490344047546,0.138843417167664,0.38243243098259,-0.914827167987823,0.129755735397339,0.131643563508987,-0.973644912242889,-0.186240628361702,0.436620026826859,-0.89947909116745,0.0173220448195934,-0.0393401682376862,0.999092102050781,0.0163453668355942,-0.0480151064693928,0.996690094470978,-0.0655995383858681,-0.130245998501778,0.92829829454422,0.348279118537903,-0.0436543822288513,0.998983144760132,0.0112706804648042,
- 0.0429723486304283,0.998258829116821,0.0404043719172478,0.379994004964828,0.922156631946564,0.072330541908741,0.00507557252421975,0.999958693981171,0.00753033952787519,0.00848201476037502,0.999750256538391,-0.02067656442523,-0.0313332863152027,0.999460220336914,-0.00987127423286438,0.0332666002213955,0.997559487819672,0.0613880529999733,0.0105586191639304,0.9997718334198,-0.0185709502547979,0.773135304450989,-0.602715730667114,0.197472974658012,0.198060795664787,-0.10390480607748,0.974667012691498,0.43809711933136,0.876914381980896,0.197716906666756,0.034296840429306,0.999279618263245,0.0162536762654781,0.00833689142018557,0.997855305671692,0.0649251639842987,-0.23129715025425,0.969387650489807,0.0823969841003418,-0.0130498642101884,0.999863862991333,0.0100974990054965,-0.411807298660278,0.908651530742645,-0.0690456703305244,0.0165847074240446,0.941923439502716,-0.335417926311493,0.00775490794330835,0.99981552362442,-0.0175702329725027,-0.00384796829894185,0.999987721443176,0.00311864749528468,-0.0630144625902176,0.99672943353653,0.0505917780101299,-0.278530687093735,0.955324828624725,-0.0988695397973061,-0.412833213806152,0.837821662425995,-0.357244312763214,-0.0485501773655415,0.99872761964798,-0.0136415641754866,-0.60682874917984,0.702141940593719,-0.372499018907547,0.0877542570233345,0.986825406551361,0.135922059416771,-0.0703001916408539,0.977946877479553,-0.19666662812233,-0.0537520013749599,0.993707358837128,-0.0982669070363045,0.301071852445602,0.953422784805298,0.0184602048248053,0.32741779088974,0.944122910499573,0.0378108993172646,0.0171379074454308,0.999743819236755,0.0147822191938758,0.0422294624149799,0.998947739601135,0.0178893767297268,-0.142833217978477,0.989637732505798,0.0146915940567851,-0.379539549350739,0.925088286399841,0.0127066541463137,-0.106579698622227,0.994290828704834,0.00514799635857344,0.0389085747301579,0.999184310436249,-0.0108075765892863,0.0172878690063953,0.999756157398224,-0.0137390373274684,0.0154799781739712,0.99987119436264,-0.00424029538407922,0.0158490650355816,0.999753177165985,-0.0155697287991643,
- -0.0510970316827297,0.994917631149292,0.08676378428936,-0.0496583543717861,0.997121632099152,-0.0572932511568069,-0.0158041194081306,0.999058842658997,0.040393203496933,-0.0571604706346989,0.998352587223053,0.00498576229438186,0.0854252502322197,0.996155500411987,0.0194115396589041,0.19902677834034,0.972126722335815,-0.123927131295204,-0.0496583543717861,0.997121632099152,-0.0572932511568069,-0.0510970316827297,0.994917631149292,0.08676378428936,0.355368167161942,0.931370794773102,0.0791325196623802,0.190823376178741,0.949271202087402,0.249941319227219,0.00533701758831739,0.991473734378815,0.13019722700119,-0.124974474310875,0.991334199905396,-0.0404705367982388,-0.0445248521864414,0.998995125293732,-0.00513162650167942,-0.0470193661749363,0.998879671096802,-0.00534951593726873,0.521388351917267,0.852263629436493,0.0424379482865334,0.0332666002213955,0.997559487819672,0.0613880529999733,0.119434326887131,0.991417229175568,0.0531735494732857,0.0105586191639304,0.9997718334198,-0.0185709502547979,-0.411807298660278,0.908651530742645,-0.0690456703305244,-0.133414447307587,0.968567311763763,-0.20994758605957,-0.118688710033894,0.9879190325737,0.0996447801589966,-0.42272225022316,0.872976720333099,-0.243346840143204,-0.45206418633461,0.882733225822449,-0.128140553832054,-0.472252249717712,0.877789914608002,-0.080390527844429,-0.0264253690838814,0.998762607574463,-0.0421299263834953,-0.0436543822288513,0.998983144760132,0.0112706804648042,0.0172878690063953,0.999756157398224,-0.0137390373274684,-0.0136962998658419,0.978141486644745,0.207488968968391,-0.0227652061730623,0.984017372131348,-0.176611423492432,-0.0154730528593063,0.999679625034332,-0.020030751824379,-0.0158935822546482,0.999788641929626,-0.013047774322331,-0.0313332863152027,0.999460220336914,-0.00987127423286438,0.103667758405209,0.992424786090851,0.0659245252609253,0.0332666002213955,0.997559487819672,0.0613880529999733,-0.444313436746597,0.88649046421051,-0.129307076334953,-0.0513993464410305,0.998658657073975,-0.00623668124899268,-0.0227652061730623,0.984017372131348,-0.176611423492432,
- 0.103298850357533,0.989668428897858,-0.0994273945689201,0.227177113294601,0.973805725574493,0.00963539257645607,0.0158490650355816,0.999753177165985,-0.0155697287991643,0.796894669532776,0.229553729295731,0.5588059425354,0.5185866355896,0.853932440280914,0.043212253600359,0.54950225353241,0.835141897201538,0.0241926778107882,0.752876698970795,0.565378129482269,0.336933612823486,-0.0803836807608604,0.961621165275574,-0.262341439723969,0.0885454341769218,0.992462575435638,0.0847213417291641,0.429789751768112,0.89508992433548,-0.118721604347229,0.129854917526245,0.991320788860321,0.0205135121941566,0.297929525375366,0.950941205024719,-0.0833586826920509,-0.139347553253174,0.979801058769226,0.143429577350616,-0.106579698622227,0.994290828704834,0.00514799635857344,-0.393123745918274,0.889884769916534,-0.231427758932114,0.0986427813768387,0.995069324970245,0.0103202890604734,-0.107321590185165,0.994162559509277,-0.0110874343663454,-0.45206418633461,0.882733225822449,-0.128140553832054,-0.42272225022316,0.872976720333099,-0.243346840143204,0.77759176492691,-0.625063300132751,0.0681683272123337,0.76752781867981,-0.638859927654266,0.0525270588696003,0.748967468738556,-0.659050643444061,0.0685564503073692,0.301071852445602,0.953422784805298,0.0184602048248053,0.429789751768112,0.89508992433548,-0.118721604347229,0.32741779088974,0.944122910499573,0.0378108993172646,0.0105586191639304,0.9997718334198,-0.0185709502547979,0.119434326887131,0.991417229175568,0.0531735494732857,0.261126905679703,0.950400233268738,-0.168973624706268,-0.0158041194081306,0.999058842658997,0.040393203496933,0.0854252502322197,0.996155500411987,0.0194115396589041,-0.0393401682376862,0.999092102050781,0.0163453668355942,-0.472252249717712,0.877789914608002,-0.080390527844429,-0.45206418633461,0.882733225822449,-0.128140553832054,-0.278530687093735,0.955324828624725,-0.0988695397973061,-0.130455374717712,0.990980327129364,0.0306501388549805,0.406592130661011,0.910423934459686,0.0762307718396187,0.255720138549805,0.956070959568024,0.143302261829376,0.310595393180847,0.948681771755219,-0.0594415701925755,
- 0.068693108856678,0.997626781463623,-0.00469344947487116,0.255720138549805,0.956070959568024,0.143302261829376,0.791995286941528,-0.605363309383392,0.0792373269796371,0.77759176492691,-0.625063300132751,0.0681683272123337,0.748967468738556,-0.659050643444061,0.0685564503073692,0.791995286941528,-0.605363309383392,0.0792373269796371,0.843062996864319,-0.526053190231323,0.111860722303391,0.77759176492691,-0.625063300132751,0.0681683272123337,0.430838912725449,0.9018434882164,0.0325011275708675,0.151298597455025,0.988470375537872,0.00592209538444877,-0.196413442492485,0.390220433473587,-0.899527490139008,0.0885454341769218,0.992462575435638,0.0847213417291641,-0.0136962998658419,0.978141486644745,0.207488968968391,0.119434326887131,0.991417229175568,0.0531735494732857,0.255720138549805,0.956070959568024,0.143302261829376,0.068693108856678,0.997626781463623,-0.00469344947487116,-0.130455374717712,0.990980327129364,0.0306501388549805,0.0597994923591614,0.998195052146912,0.00554720731452107,-0.0158041194081306,0.999058842658997,0.040393203496933,-0.0393401682376862,0.999092102050781,0.0163453668355942,-0.0436543822288513,0.998983144760132,0.0112706804648042,-0.0264253690838814,0.998762607574463,-0.0421299263834953,0.0172878690063953,0.999756157398224,-0.0137390373274684,-0.0436543822288513,0.998983144760132,0.0112706804648042,-0.130245998501778,0.92829829454422,0.348279118537903,-0.142833217978477,0.989637732505798,0.0146915940567851,-0.130245998501778,0.92829829454422,0.348279118537903,-0.690009593963623,0.715465843677521,-0.109523713588715,-0.569642186164856,0.784456372261047,0.24522665143013,-0.00588787719607353,0.996598720550537,-0.0821970850229263,-0.0318336822092533,0.979909002780914,0.196888193488121,-0.0279832016676664,0.999465107917786,-0.0169239807873964,-0.0378222912549973,0.999148070812225,0.0165116861462593,-0.17109951376915,0.984206318855286,-0.0454177223145962,-0.196695670485497,0.979511797428131,-0.0432127565145493,-0.397313445806503,0.897135376930237,-0.193106651306152,-0.280860722064972,0.958163321018219,-0.0551385879516602,
- -0.574075698852539,0.779020965099335,-0.252117902040482,-0.0588026531040668,0.989844739437103,-0.129420265555382,-0.0803836807608604,0.961621165275574,-0.262341439723969,-0.0227652061730623,0.984017372131348,-0.176611423492432,0.0885454341769218,0.992462575435638,0.0847213417291641,0.0172878690063953,0.999756157398224,-0.0137390373274684,-0.210222914814949,0.9715616106987,-0.10896997153759,-0.0264253690838814,0.998762607574463,-0.0421299263834953,0.679186820983887,0.682288825511932,0.270531266927719,-0.210222914814949,0.9715616106987,-0.10896997153759,0.255720138549805,0.956070959568024,0.143302261829376,0.0165847074240446,0.941923439502716,-0.335417926311493,-0.411807298660278,0.908651530742645,-0.0690456703305244,-0.420506954193115,0.819531798362732,-0.389283180236816,-0.393123745918274,0.889884769916534,-0.231427758932114,-0.397313445806503,0.897135376930237,-0.193106651306152,-0.196695670485497,0.979511797428131,-0.0432127565145493,0.679186820983887,0.682288825511932,0.270531266927719,0.406592130661011,0.910423934459686,0.0762307718396187,0.035335760563612,0.984303057193756,0.172912701964378,-0.17109951376915,0.984206318855286,-0.0454177223145962,0.0672640204429626,0.953643679618835,-0.293324708938599,0.0379944369196892,0.999021768569946,0.0226233322173357,0.034296840429306,0.999279618263245,0.0162536762654781,-0.17109951376915,0.984206318855286,-0.0454177223145962,-0.397313445806503,0.897135376930237,-0.193106651306152,-0.734022557735443,0.678648948669434,-0.0254244860261679,0.0672640204429626,0.953643679618835,-0.293324708938599,-0.397313445806503,0.897135376930237,-0.193106651306152,-0.130245998501778,0.92829829454422,0.348279118537903,-0.734022557735443,0.678648948669434,-0.0254244860261679,0.301071852445602,0.953422784805298,0.0184602048248053,0.0422294624149799,0.998947739601135,0.0178893767297268,-0.122876092791557,0.979872524738312,-0.157325938344002,0.301071852445602,0.953422784805298,0.0184602048248053,-0.122876092791557,0.979872524738312,-0.157325938344002,0.429789751768112,0.89508992433548,-0.118721604347229,
- -0.278530687093735,0.955324828624725,-0.0988695397973061,-0.0630144625902176,0.99672943353653,0.0505917780101299,-0.472252249717712,0.877789914608002,-0.080390527844429,-0.118688710033894,0.9879190325737,0.0996447801589966,-0.133414447307587,0.968567311763763,-0.20994758605957,-0.0733916759490967,0.997302889823914,-0.000701673794537783,-0.0313332863152027,0.999460220336914,-0.00987127423286438,-0.2724529504776,0.923998296260834,0.268321573734283,0.227177113294601,0.973805725574493,0.00963539257645607,0.103298850357533,0.989668428897858,-0.0994273945689201,-0.156470194458961,0.983911395072937,-0.0862284973263741,0.227177113294601,0.973805725574493,0.00963539257645607,-0.2724529504776,0.923998296260834,0.268321573734283,0.601245105266571,0.583103835582733,-0.546346247196198,0.500847995281219,0.865164399147034,0.0253338851034641,-0.00588787719607353,0.996598720550537,-0.0821970850229263,-0.0445248521864414,0.998995125293732,-0.00513162650167942,-0.124974474310875,0.991334199905396,-0.0404705367982388,-0.00588787719607353,0.996598720550537,-0.0821970850229263,-0.0378222912549973,0.999148070812225,0.0165116861462593,-0.420506954193115,0.819531798362732,-0.389283180236816,-0.411807298660278,0.908651530742645,-0.0690456703305244,-0.118688710033894,0.9879190325737,0.0996447801589966,-0.393123745918274,0.889884769916534,-0.231427758932114,-0.118688710033894,0.9879190325737,0.0996447801589966,-0.139347553253174,0.979801058769226,0.143429577350616,-0.574075698852539,0.779020965099335,-0.252117902040482,-0.60682874917984,0.702141940593719,-0.372499018907547,-0.0485501773655415,0.99872761964798,-0.0136415641754866,-0.0588026531040668,0.989844739437103,-0.129420265555382,-0.0485501773655415,0.99872761964798,-0.0136415641754866,-0.0093236081302166,0.999887824058533,0.0117239449173212,0.00104386068414897,0.999951243400574,-0.0098170880228281,0.00848201476037502,0.999750256538391,-0.02067656442523,-0.0588026531040668,0.989844739437103,-0.129420265555382,0.54950225353241,0.835141897201538,0.0241926778107882,0.5185866355896,0.853932440280914,0.043212253600359,
- 0.610847473144531,0.740592956542969,0.279977649450302,0.227177113294601,0.973805725574493,0.00963539257645607,0.0192093271762133,0.999767422676086,0.00980681553483009,0.0158490650355816,0.999753177165985,-0.0155697287991643,-0.690009593963623,0.715465843677521,-0.109523713588715,0.313178062438965,0.948735952377319,0.0426554307341576,-0.71385246515274,0.681077003479004,-0.162937834858894,-0.426730036735535,0.902370572090149,-0.0602384582161903,-0.0171544849872589,0.996037185192108,0.0872673094272614,-0.71385246515274,0.681077003479004,-0.162937834858894,-0.391271680593491,0.901084244251251,-0.186958909034729,-0.193111538887024,0.980200827121735,-0.0437505058944225,-0.0318336822092533,0.979909002780914,0.196888193488121,0.297929525375366,0.950941205024719,-0.0833586826920509,0.32741779088974,0.944122910499573,0.0378108993172646,0.429789751768112,0.89508992433548,-0.118721604347229,0.190823376178741,0.949271202087402,0.249941319227219,-0.0571604706346989,0.998352587223053,0.00498576229438186,-0.0158041194081306,0.999058842658997,0.040393203496933,0.802028656005859,-0.593198895454407,0.0697518363595009,0.791995286941528,-0.605363309383392,0.0792373269796371,0.748967468738556,-0.659050643444061,0.0685564503073692,-0.0239048302173615,0.999679207801819,0.00836851634085178,0.00104386068414897,0.999951243400574,-0.0098170880228281,-0.0093236081302166,0.999887824058533,0.0117239449173212,-0.394934922456741,0.918490827083588,-0.0200282745063305,0.355564743280411,0.931515157222748,0.0765068605542183,0.198060795664787,-0.10390480607748,0.974667012691498,-0.673748075962067,0.583523154258728,0.453391969203949,-0.0480151064693928,0.996690094470978,-0.0655995383858681,0.313178062438965,0.948735952377319,0.0426554307341576,-0.690009593963623,0.715465843677521,-0.109523713588715,-0.130245998501778,0.92829829454422,0.348279118537903,-0.0480151064693928,0.996690094470978,-0.0655995383858681,-0.690009593963623,0.715465843677521,-0.109523713588715,-0.444313436746597,0.88649046421051,-0.129307076334953,-0.0227652061730623,0.984017372131348,-0.176611423492432,
- -0.0803836807608604,0.961621165275574,-0.262341439723969,-0.0803836807608604,0.961621165275574,-0.262341439723969,0.796894669532776,0.229553729295731,0.5588059425354,0.54950225353241,0.835141897201538,0.0241926778107882,0.0422294624149799,0.998947739601135,0.0178893767297268,0.0893572866916656,0.991492867469788,0.0946414917707443,0.0877542570233345,0.986825406551361,0.135922059416771,0.0422294624149799,0.998947739601135,0.0178893767297268,0.0877542570233345,0.986825406551361,0.135922059416771,0.0154799781739712,0.99987119436264,-0.00424029538407922,0.0115881338715553,0.890214860439301,-0.455393403768539,0.521388351917267,0.852263629436493,0.0424379482865334,0.252634793519974,0.959275126457214,0.12636025249958,-0.118688710033894,0.9879190325737,0.0996447801589966,-0.393123745918274,0.889884769916534,-0.231427758932114,-0.420506954193115,0.819531798362732,-0.389283180236816,-0.393123745918274,0.889884769916534,-0.231427758932114,0.0165847074240446,0.941923439502716,-0.335417926311493,-0.420506954193115,0.819531798362732,-0.389283180236816,-0.0485501773655415,0.99872761964798,-0.0136415641754866,-0.412833213806152,0.837821662425995,-0.357244312763214,-0.0093236081302166,0.999887824058533,0.0117239449173212,-0.0803836807608604,0.961621165275574,-0.262341439723969,0.54950225353241,0.835141897201538,0.0241926778107882,-0.444313436746597,0.88649046421051,-0.129307076334953,-0.690009593963623,0.715465843677521,-0.109523713588715,-0.71385246515274,0.681077003479004,-0.162937834858894,-0.0171544849872589,0.996037185192108,0.0872673094272614,-0.722768306732178,0.6904376745224,0.0300294775515795,-0.118688710033894,0.9879190325737,0.0996447801589966,0.0105586191639304,0.9997718334198,-0.0185709502547979,-0.139347553253174,0.979801058769226,0.143429577350616,0.0171379074454308,0.999743819236755,0.0147822191938758,-0.37165555357933,0.928239166736603,-0.0156253501772881,0.0893572866916656,0.991492867469788,0.0946414917707443,0.0422294624149799,0.998947739601135,0.0178893767297268,-0.0513993464410305,0.998658657073975,-0.00623668124899268,
- -0.0944208204746246,0.994449257850647,-0.046425573527813,0.129854917526245,0.991320788860321,0.0205135121941566,0.0165847074240446,0.941923439502716,-0.335417926311493,-0.196695670485497,0.979511797428131,-0.0432127565145493,-0.0130498642101884,0.999863862991333,0.0100974990054965,-0.0111237019300461,0.999850571155548,-0.013234387151897,-0.196695670485497,0.979511797428131,-0.0432127565145493,0.0165847074240446,0.941923439502716,-0.335417926311493,-0.393123745918274,0.889884769916534,-0.231427758932114,0.0240114144980907,0.999479174613953,0.0215565972030163,-0.0630144625902176,0.99672943353653,0.0505917780101299,-0.00384796829894185,0.999987721443176,0.00311864749528468,0.103298850357533,0.989668428897858,-0.0994273945689201,-0.0537520013749599,0.993707358837128,-0.0982669070363045,-0.2724529504776,0.923998296260834,0.268321573734283,0.0877542570233345,0.986825406551361,0.135922059416771,-0.0537520013749599,0.993707358837128,-0.0982669070363045,0.103298850357533,0.989668428897858,-0.0994273945689201,0.0389085747301579,0.999184310436249,-0.0108075765892863,0.0105586191639304,0.9997718334198,-0.0185709502547979,0.261126905679703,0.950400233268738,-0.168973624706268,0.00533701758831739,0.991473734378815,0.13019722700119,0.0549924112856388,0.998346507549286,-0.0167383421212435,0.355368167161942,0.931370794773102,0.0791325196623802,-0.0733916759490967,0.997302889823914,-0.000701673794537783,0.0240114144980907,0.999479174613953,0.0215565972030163,-0.0313332863152027,0.999460220336914,-0.00987127423286438,0.0240114144980907,0.999479174613953,0.0215565972030163,0.103667758405209,0.992424786090851,0.0659245252609253,-0.0313332863152027,0.999460220336914,-0.00987127423286438,-0.0510970316827297,0.994917631149292,0.08676378428936,-0.187482044100761,0.982267916202545,0.000552366545889527,0.0115881338715553,0.890214860439301,-0.455393403768539,0.252634793519974,0.959275126457214,0.12636025249958,0.252634793519974,0.959275126457214,0.12636025249958,0.19902677834034,0.972126722335815,-0.123927131295204,-0.0510970316827297,0.994917631149292,0.08676378428936,
- 0.310595393180847,0.948681771755219,-0.0594415701925755,0.0389085747301579,0.999184310436249,-0.0108075765892863,0.261126905679703,0.950400233268738,-0.168973624706268,0.119434326887131,0.991417229175568,0.0531735494732857,0.068693108856678,0.997626781463623,-0.00469344947487116,0.310595393180847,0.948681771755219,-0.0594415701925755,0.261126905679703,0.950400233268738,-0.168973624706268,-0.411807298660278,0.908651530742645,-0.0690456703305244,-0.42272225022316,0.872976720333099,-0.243346840143204,-0.133414447307587,0.968567311763763,-0.20994758605957,0.213543623685837,0.943521082401276,0.253312140703201,0.359679311513901,0.926481664180756,0.110736928880215,0.232925891876221,0.964102029800415,0.127486243844032,0.269745379686356,0.961037039756775,0.0603756904602051,-0.142833217978477,0.989637732505798,0.0146915940567851,-0.130245998501778,0.92829829454422,0.348279118537903,-0.397313445806503,0.897135376930237,-0.193106651306152,-0.472252249717712,0.877789914608002,-0.080390527844429,-0.0733916759490967,0.997302889823914,-0.000701673794537783,-0.133414447307587,0.968567311763763,-0.20994758605957,-0.133414447307587,0.968567311763763,-0.20994758605957,-0.42272225022316,0.872976720333099,-0.243346840143204,-0.472252249717712,0.877789914608002,-0.080390527844429,0.752876698970795,0.565378129482269,0.336933612823486,0.0332666002213955,0.997559487819672,0.0613880529999733,0.103667758405209,0.992424786090851,0.0659245252609253,-0.379539549350739,0.925088286399841,0.0127066541463137,-0.397313445806503,0.897135376930237,-0.193106651306152,-0.393123745918274,0.889884769916534,-0.231427758932114,-0.142833217978477,0.989637732505798,0.0146915940567851,-0.397313445806503,0.897135376930237,-0.193106651306152,-0.379539549350739,0.925088286399841,0.0127066541463137,0.151298597455025,0.988470375537872,0.00592209538444877,-0.67282372713089,0.607027888298035,-0.422877490520477,-0.196413442492485,0.390220433473587,-0.899527490139008,-0.67282372713089,0.607027888298035,-0.422877490520477,0.425670742988586,0.900137662887573,-0.0925010219216347,
- 0.103270031511784,0.987894594669342,-0.115756832063198,0.521388351917267,0.852263629436493,0.0424379482865334,0.00736333290114999,0.999628782272339,-0.02622782997787,0.252634793519974,0.959275126457214,0.12636025249958,0.0383934266865253,0.998215198516846,0.0457436740398407,0.500847995281219,0.865164399147034,0.0253338851034641,-0.00786164496093988,0.9967440366745,-0.0802468210458755,0.151298597455025,0.988470375537872,0.00592209538444877,0.425670742988586,0.900137662887573,-0.0925010219216347,-0.67282372713089,0.607027888298035,-0.422877490520477,0.0885454341769218,0.992462575435638,0.0847213417291641,0.119434326887131,0.991417229175568,0.0531735494732857,0.0332666002213955,0.997559487819672,0.0613880529999733,0.752876698970795,0.565378129482269,0.336933612823486,0.0885454341769218,0.992462575435638,0.0847213417291641,0.0332666002213955,0.997559487819672,0.0613880529999733,-0.210222914814949,0.9715616106987,-0.10896997153759,0.679186820983887,0.682288825511932,0.270531266927719,-0.0264253690838814,0.998762607574463,-0.0421299263834953,-0.0264253690838814,0.998762607574463,-0.0421299263834953,0.679186820983887,0.682288825511932,0.270531266927719,0.0597994923591614,0.998195052146912,0.00554720731452107,-0.0154730528593063,0.999679625034332,-0.020030751824379,0.0224434453994036,0.996481001377106,0.0807593613862991,0.0175749640911818,0.994921147823334,-0.0991111025214195,0.0224434453994036,0.996481001377106,0.0807593613862991,0.19902677834034,0.972126722335815,-0.123927131295204,0.0175749640911818,0.994921147823334,-0.0991111025214195,-0.444313436746597,0.88649046421051,-0.129307076334953,0.54950225353241,0.835141897201538,0.0241926778107882,-0.0936643406748772,0.992820858955383,-0.0743896812200546,-0.196413442492485,0.390220433473587,-0.899527490139008,0.31492280960083,0.178008809685707,-0.932274878025055,0.430838912725449,0.9018434882164,0.0325011275708675,0.464795649051666,0.885180056095123,0.0205256417393684,0.880628347396851,-0.420957148075104,-0.217459961771965,0.773135304450989,-0.602715730667114,0.197472974658012,
- 0.190823376178741,0.949271202087402,0.249941319227219,-0.0158041194081306,0.999058842658997,0.040393203496933,0.0597994923591614,0.998195052146912,0.00554720731452107,0.190823376178741,0.949271202087402,0.249941319227219,0.0597994923591614,0.998195052146912,0.00554720731452107,0.00533701758831739,0.991473734378815,0.13019722700119,0.406592130661011,0.910423934459686,0.0762307718396187,0.679186820983887,0.682288825511932,0.270531266927719,0.255720138549805,0.956070959568024,0.143302261829376,0.880628347396851,-0.420957148075104,-0.217459961771965,0.464795649051666,0.885180056095123,0.0205256417393684,0.696819663047791,0.712961077690125,0.0782882124185562,0.068693108856678,0.997626781463623,-0.00469344947487116,0.119434326887131,0.991417229175568,0.0531735494732857,-0.0136962998658419,0.978141486644745,0.207488968968391,0.355564743280411,0.931515157222748,0.0765068605542183,-0.673748075962067,0.583523154258728,0.453391969203949,0.354007035493851,0.922678291797638,0.152786985039711,-0.106579698622227,0.994290828704834,0.00514799635857344,-0.379539549350739,0.925088286399841,0.0127066541463137,-0.393123745918274,0.889884769916534,-0.231427758932114,-0.0630144625902176,0.99672943353653,0.0505917780101299,0.0240114144980907,0.999479174613953,0.0215565972030163,-0.0733916759490967,0.997302889823914,-0.000701673794537783,-0.472252249717712,0.877789914608002,-0.080390527844429,-0.0630144625902176,0.99672943353653,0.0505917780101299,-0.0733916759490967,0.997302889823914,-0.000701673794537783,0.679186820983887,0.682288825511932,0.270531266927719,0.00533701758831739,0.991473734378815,0.13019722700119,0.0597994923591614,0.998195052146912,0.00554720731452107,-0.673748075962067,0.583523154258728,0.453391969203949,-0.67282372713089,0.607027888298035,-0.422877490520477,0.103270031511784,0.987894594669342,-0.115756832063198,-0.673748075962067,0.583523154258728,0.453391969203949,0.103270031511784,0.987894594669342,-0.115756832063198,0.354007035493851,0.922678291797638,0.152786985039711,-0.124974474310875,0.991334199905396,-0.0404705367982388,
- 0.601245105266571,0.583103835582733,-0.546346247196198,-0.00588787719607353,0.996598720550537,-0.0821970850229263,0.255720138549805,0.956070959568024,0.143302261829376,-0.210222914814949,0.9715616106987,-0.10896997153759,0.310595393180847,0.948681771755219,-0.0594415701925755,-0.130455374717712,0.990980327129364,0.0306501388549805,0.068693108856678,0.997626781463623,-0.00469344947487116,-0.0136962998658419,0.978141486644745,0.207488968968391,0.521388351917267,0.852263629436493,0.0424379482865334,-0.0470193661749363,0.998879671096802,-0.00534951593726873,-0.0158935822546482,0.999788641929626,-0.013047774322331,0.00736333290114999,0.999628782272339,-0.02622782997787,-0.124974474310875,0.991334199905396,-0.0404705367982388,0.0295639541000128,0.989345550537109,0.142553046345711,0.601245105266571,0.583103835582733,-0.546346247196198,-0.280860722064972,0.958163321018219,-0.0551385879516602,0.00507557252421975,0.999958693981171,0.00753033952787519,0.0192093271762133,0.999767422676086,0.00980681553483009,0.227177113294601,0.973805725574493,0.00963539257645607,-0.156470194458961,0.983911395072937,-0.0862284973263741,-0.156470194458961,0.983911395072937,-0.0862284973263741,-0.2724529504776,0.923998296260834,0.268321573734283,-0.574075698852539,0.779020965099335,-0.252117902040482,-0.280860722064972,0.958163321018219,-0.0551385879516602,-0.0542980879545212,0.996606886386871,0.0618577748537064,0.0208717212080956,0.999541640281677,-0.0219287276268005,0.0893572866916656,0.991492867469788,0.0946414917707443,-0.37165555357933,0.928239166736603,-0.0156253501772881,-0.0703001916408539,0.977946877479553,-0.19666662812233,0.0877542570233345,0.986825406551361,0.135922059416771,0.0893572866916656,0.991492867469788,0.0946414917707443,0.0208717212080956,0.999541640281677,-0.0219287276268005,-0.122876092791557,0.979872524738312,-0.157325938344002,0.0422294624149799,0.998947739601135,0.0178893767297268,-0.0496583543717861,0.997121632099152,-0.0572932511568069,0.19902677834034,0.972126722335815,-0.123927131295204,-0.122876092791557,0.979872524738312,-0.157325938344002,
- -0.0496583543717861,0.997121632099152,-0.0572932511568069,0.0224434453994036,0.996481001377106,0.0807593613862991,0.129854917526245,0.991320788860321,0.0205135121941566,0.429789751768112,0.89508992433548,-0.118721604347229,-0.0936643406748772,0.992820858955383,-0.0743896812200546,-0.0944208204746246,0.994449257850647,-0.046425573527813,-0.0513993464410305,0.998658657073975,-0.00623668124899268,-0.444313436746597,0.88649046421051,-0.129307076334953,0.54950225353241,0.835141897201538,0.0241926778107882,0.235962986946106,0.971068143844604,0.0367158614099026,-0.0936643406748772,0.992820858955383,-0.0743896812200546,0.610847473144531,0.740592956542969,0.279977649450302,0.235962986946106,0.971068143844604,0.0367158614099026,0.54950225353241,0.835141897201538,0.0241926778107882,0.655749022960663,0.749512434005737,0.0906870365142822,-0.00786164496093988,0.9967440366745,-0.0802468210458755,0.00104386068414897,0.999951243400574,-0.0098170880228281,-0.0239048302173615,0.999679207801819,0.00836851634085178,0.0383934266865253,0.998215198516846,0.0457436740398407,-0.00786164496093988,0.9967440366745,-0.0802468210458755,0.655749022960663,0.749512434005737,0.0906870365142822,0.0383934266865253,0.998215198516846,0.0457436740398407,0.655749022960663,0.749512434005737,0.0906870365142822,-0.391271680593491,0.901084244251251,-0.186958909034729,-0.391271680593491,0.901084244251251,-0.186958909034729,-0.0318336822092533,0.979909002780914,0.196888193488121,0.0383934266865253,0.998215198516846,0.0457436740398407,0.0363137014210224,0.998781740665436,0.0334112010896206,0.0656133890151978,0.997649908065796,0.0197371356189251,0.608270764350891,0.792595267295837,0.0424191690981388,0.043234009295702,0.996704280376434,-0.0686388462781906,0.355564743280411,0.931515157222748,0.0765068605542183,0.545242488384247,0.831710696220398,0.104728244245052,0.198060795664787,-0.10390480607748,0.974667012691498,0.43809711933136,0.876914381980896,0.197716906666756,0.198060795664787,-0.10390480607748,0.974667012691498,0.545242488384247,0.831710696220398,0.104728244245052,
- 0.458598703145981,0.886348485946655,0.0638235956430435,0.464795649051666,0.885180056095123,0.0205256417393684,0.773135304450989,-0.602715730667114,0.197472974658012,0.773135304450989,-0.602715730667114,0.197472974658012,0.43809711933136,0.876914381980896,0.197716906666756,0.458598703145981,0.886348485946655,0.0638235956430435,0.752876698970795,0.565378129482269,0.336933612823486,0.796894669532776,0.229553729295731,0.5588059425354,-0.0803836807608604,0.961621165275574,-0.262341439723969,0.752876698970795,0.565378129482269,0.336933612823486,0.5185866355896,0.853932440280914,0.043212253600359,0.796894669532776,0.229553729295731,0.5588059425354,0.0240114144980907,0.999479174613953,0.0215565972030163,0.5185866355896,0.853932440280914,0.043212253600359,0.103667758405209,0.992424786090851,0.0659245252609253,0.429789751768112,0.89508992433548,-0.118721604347229,-0.122876092791557,0.979872524738312,-0.157325938344002,0.19902677834034,0.972126722335815,-0.123927131295204,0.0224434453994036,0.996481001377106,0.0807593613862991,0.429789751768112,0.89508992433548,-0.118721604347229,0.19902677834034,0.972126722335815,-0.123927131295204,-0.0513993464410305,0.998658657073975,-0.00623668124899268,0.0224434453994036,0.996481001377106,0.0807593613862991,-0.0154730528593063,0.999679625034332,-0.020030751824379,-0.0227652061730623,0.984017372131348,-0.176611423492432,-0.0513993464410305,0.998658657073975,-0.00623668124899268,-0.0154730528593063,0.999679625034332,-0.020030751824379,-0.734022557735443,0.678648948669434,-0.0254244860261679,-0.130245998501778,0.92829829454422,0.348279118537903,-0.569642186164856,0.784456372261047,0.24522665143013,0.0672640204429626,0.953643679618835,-0.293324708938599,-0.734022557735443,0.678648948669434,-0.0254244860261679,-0.569642186164856,0.784456372261047,0.24522665143013,-0.679712116718292,0.696998178958893,-0.228439927101135,0.0379944369196892,0.999021768569946,0.0226233322173357,0.0363137014210224,0.998781740665436,0.0334112010896206,0.043234009295702,0.996704280376434,-0.0686388462781906,-0.0112903099507093,0.938593864440918,0.344839423894882,
- 0.0295639541000128,0.989345550537109,0.142553046345711,0.0115881338715553,0.890214860439301,-0.455393403768539,-0.187482044100761,0.982267916202545,0.000552366545889527,-0.124974474310875,0.991334199905396,-0.0404705367982388,0.0115881338715553,0.890214860439301,-0.455393403768539,0.0295639541000128,0.989345550537109,0.142553046345711,-0.124974474310875,0.991334199905396,-0.0404705367982388,0.521388351917267,0.852263629436493,0.0424379482865334,0.0115881338715553,0.890214860439301,-0.455393403768539,-0.193111538887024,0.980200827121735,-0.0437505058944225,0.0549924112856388,0.998346507549286,-0.0167383421212435,-0.0279832016676664,0.999465107917786,-0.0169239807873964,-0.0318336822092533,0.979909002780914,0.196888193488121,-0.0588026531040668,0.989844739437103,-0.129420265555382,0.00848201476037502,0.999750256538391,-0.02067656442523,0.00507557252421975,0.999958693981171,0.00753033952787519,-0.280860722064972,0.958163321018219,-0.0551385879516602,-0.00786164496093988,0.9967440366745,-0.0802468210458755,0.0429723486304283,0.998258829116821,0.0404043719172478,0.00848201476037502,0.999750256538391,-0.02067656442523,0.00104386068414897,0.999951243400574,-0.0098170880228281,0.103298850357533,0.989668428897858,-0.0994273945689201,0.0158490650355816,0.999753177165985,-0.0155697287991643,0.0154799781739712,0.99987119436264,-0.00424029538407922,0.0877542570233345,0.986825406551361,0.135922059416771,0.0192093271762133,0.999767422676086,0.00980681553483009,-0.187482044100761,0.982267916202545,0.000552366545889527,-0.0510970316827297,0.994917631149292,0.08676378428936,0.0158490650355816,0.999753177165985,-0.0155697287991643,0.0422294624149799,0.998947739601135,0.0178893767297268,0.0154799781739712,0.99987119436264,-0.00424029538407922,-0.0496583543717861,0.997121632099152,-0.0572932511568069,0.00507557252421975,0.999958693981171,0.00753033952787519,0.379994004964828,0.922156631946564,0.072330541908741,-0.187482044100761,0.982267916202545,0.000552366545889527,0.0192093271762133,0.999767422676086,0.00980681553483009,0.406592130661011,0.910423934459686,0.0762307718396187,
- -0.130455374717712,0.990980327129364,0.0306501388549805,-0.0470193661749363,0.998879671096802,-0.00534951593726873,-0.0445248521864414,0.998995125293732,-0.00513162650167942,-0.0378222912549973,0.999148070812225,0.0165116861462593,-0.0279832016676664,0.999465107917786,-0.0169239807873964,0.00533701758831739,0.991473734378815,0.13019722700119,0.035335760563612,0.984303057193756,0.172912701964378,0.406592130661011,0.910423934459686,0.0762307718396187,-0.0445248521864414,0.998995125293732,-0.00513162650167942,-0.0378222912549973,0.999148070812225,0.0165116861462593,0.035335760563612,0.984303057193756,0.172912701964378,-0.0158935822546482,0.999788641929626,-0.013047774322331,-0.0470193661749363,0.998879671096802,-0.00534951593726873,-0.130455374717712,0.990980327129364,0.0306501388549805,-0.0136962998658419,0.978141486644745,0.207488968968391,-0.0279832016676664,0.999465107917786,-0.0169239807873964,0.0549924112856388,0.998346507549286,-0.0167383421212435,0.00533701758831739,0.991473734378815,0.13019722700119,-0.0313332863152027,0.999460220336914,-0.00987127423286438,0.0105586191639304,0.9997718334198,-0.0185709502547979,-0.118688710033894,0.9879190325737,0.0996447801589966,0.0334299840033054,0.999317705631256,0.0157022252678871,0.610847473144531,0.740592956542969,0.279977649450302,0.5185866355896,0.853932440280914,0.043212253600359,-0.210222914814949,0.9715616106987,-0.10896997153759,0.0172878690063953,0.999756157398224,-0.0137390373274684,0.0389085747301579,0.999184310436249,-0.0108075765892863,0.310595393180847,0.948681771755219,-0.0594415701925755,-0.0393401682376862,0.999092102050781,0.0163453668355942,0.0854252502322197,0.996155500411987,0.0194115396589041,0.313178062438965,0.948735952377319,0.0426554307341576,-0.0480151064693928,0.996690094470978,-0.0655995383858681,0.0389085747301579,0.999184310436249,-0.0108075765892863,-0.106579698622227,0.994290828704834,0.00514799635857344,-0.139347553253174,0.979801058769226,0.143429577350616,0.0105586191639304,0.9997718334198,-0.0185709502547979,-0.196695670485497,0.979511797428131,-0.0432127565145493,
- -0.17109951376915,0.984206318855286,-0.0454177223145962,0.034296840429306,0.999279618263245,0.0162536762654781,-0.0130498642101884,0.999863862991333,0.0100974990054965,0.425670742988586,0.900137662887573,-0.0925010219216347,0.354007035493851,0.922678291797638,0.152786985039711,0.103270031511784,0.987894594669342,-0.115756832063198,0.00149871048051864,0.999928772449493,0.0118368472903967,-0.360998004674912,0.931115090847015,-0.0520105101168156,-0.138092160224915,0.985768258571625,-0.095872662961483,4.14695459767245e-005,0.99841183423996,-0.0563375018537045,0.0149242589250207,0.999813854694366,0.0122270900756121,0.034296840429306,0.999279618263245,0.0162536762654781,0.0379944369196892,0.999021768569946,0.0226233322173357,-0.0112903099507093,0.938593864440918,0.344839423894882,0.00833689142018557,0.997855305671692,0.0649251639842987,-0.0130498642101884,0.999863862991333,0.0100974990054965,-0.23129715025425,0.969387650489807,0.0823969841003418,-0.0783010274171829,0.985558986663818,0.150141537189484,-0.0111237019300461,0.999850571155548,-0.013234387151897,0.00775490794330835,0.99981552362442,-0.0175702329725027,0.0986427813768387,0.995069324970245,0.0103202890604734,-0.42272225022316,0.872976720333099,-0.243346840143204,-0.411807298660278,0.908651530742645,-0.0690456703305244,-0.0171544849872589,0.996037185192108,0.0872673094272614,-0.426730036735535,0.902370572090149,-0.0602384582161903,0.0656133890151978,0.997649908065796,0.0197371356189251,0.0363137014210224,0.998781740665436,0.0334112010896206,-0.679712116718292,0.696998178958893,-0.228439927101135,-0.722768306732178,0.6904376745224,0.0300294775515795,-0.0171544849872589,0.996037185192108,0.0872673094272614,0.0672640204429626,0.953643679618835,-0.293324708938599,0.0175749640911818,0.994921147823334,-0.0991111025214195,0.00736333290114999,0.999628782272339,-0.02622782997787,-0.0158935822546482,0.999788641929626,-0.013047774322331,-0.0154730528593063,0.999679625034332,-0.020030751824379,-0.0936643406748772,0.992820858955383,-0.0743896812200546,0.235962986946106,0.971068143844604,0.0367158614099026,
- -0.0944208204746246,0.994449257850647,-0.046425573527813,0.0334299840033054,0.999317705631256,0.0157022252678871,0.5185866355896,0.853932440280914,0.043212253600359,0.0240114144980907,0.999479174613953,0.0215565972030163,-0.00384796829894185,0.999987721443176,0.00311864749528468,-0.0093236081302166,0.999887824058533,0.0117239449173212,0.0104256765916944,0.997266411781311,0.0731514543294907,-0.394934922456741,0.918490827083588,-0.0200282745063305,0.103667758405209,0.992424786090851,0.0659245252609253,0.5185866355896,0.853932440280914,0.043212253600359,0.752876698970795,0.565378129482269,0.336933612823486,0.00736333290114999,0.999628782272339,-0.02622782997787,0.19902677834034,0.972126722335815,-0.123927131295204,0.252634793519974,0.959275126457214,0.12636025249958,0.0383934266865253,0.998215198516846,0.0457436740398407,-0.0318336822092533,0.979909002780914,0.196888193488121,-0.00588787719607353,0.996598720550537,-0.0821970850229263,0.500847995281219,0.865164399147034,0.0253338851034641,-0.0085646640509367,0.999963343143463,-1.9301449356135e-005,-0.0111237019300461,0.999850571155548,-0.013234387151897,-0.0783010274171829,0.985558986663818,0.150141537189484,0.000509985373355448,0.992058515548706,-0.125776171684265,-0.15587443113327,0.79646760225296,-0.584245383739471,-0.0787848085165024,0.923520863056183,-0.375369369983673,-0.360998004674912,0.931115090847015,-0.0520105101168156,0.000509985373355448,0.992058515548706,-0.125776171684265,-0.158462077379227,0.984587967395782,-0.0740018710494041,-0.0553768165409565,0.994639456272125,-0.0873255729675293,-0.418385326862335,0.908143222332001,-0.0151534480974078,0.111744485795498,0.988941788673401,0.0975054055452347,0.0288351122289896,0.99676501750946,-0.0750201269984245,-0.0787848085165024,0.923520863056183,-0.375369369983673,0.232925891876221,0.964102029800415,0.127486243844032,0.240837454795837,0.964636206626892,0.107117630541325,-0.15587443113327,0.79646760225296,-0.584245383739471,-0.0810898840427399,0.787432074546814,0.61104428768158,0.269745379686356,0.961037039756775,0.0603756904602051,
- -0.23129715025425,0.969387650489807,0.0823969841003418,0.00833689142018557,0.997855305671692,0.0649251639842987,-0.337196320295334,0.822846055030823,0.457409024238586,-0.0810898840427399,0.787432074546814,0.61104428768158,0.043234009295702,0.996704280376434,-0.0686388462781906,0.608270764350891,0.792595267295837,0.0424191690981388,-0.0553768165409565,0.994639456272125,-0.0873255729675293,-0.158462077379227,0.984587967395782,-0.0740018710494041,0.0372287258505821,0.997880339622498,0.0533755049109459,0.043234009295702,0.996704280376434,-0.0686388462781906,-0.158462077379227,0.984587967395782,-0.0740018710494041,-0.0787848085165024,0.923520863056183,-0.375369369983673,-0.138092160224915,0.985768258571625,-0.095872662961483,-0.360998004674912,0.931115090847015,-0.0520105101168156,-0.337196320295334,0.822846055030823,0.457409024238586,-0.0112903099507093,0.938593864440918,0.344839423894882,0.539031624794006,0.742011070251465,0.398578077554703,-0.0783010274171829,0.985558986663818,0.150141537189484,-0.23129715025425,0.969387650489807,0.0823969841003418,-0.0810898840427399,0.787432074546814,0.61104428768158,-0.15587443113327,0.79646760225296,-0.584245383739471,-0.333967357873917,0.938906371593475,-0.0831916406750679,-0.0783010274171829,0.985558986663818,0.150141537189484,-0.0810898840427399,0.787432074546814,0.61104428768158,0.000509985373355448,0.992058515548706,-0.125776171684265,-0.360998004674912,0.931115090847015,-0.0520105101168156,0.00149871048051864,0.999928772449493,0.0118368472903967,-0.0085646640509367,0.999963343143463,-1.9301449356135e-005,0.269745379686356,0.961037039756775,0.0603756904602051,0.232925891876221,0.964102029800415,0.127486243844032,-0.0787848085165024,0.923520863056183,-0.375369369983673,-0.15587443113327,0.79646760225296,-0.584245383739471,0.293832838535309,0.955036282539368,0.0395970977842808,0.29541090130806,0.953353524208069,0.0620447248220444,0.696819663047791,0.712961077690125,0.0782882124185562,0.464795649051666,0.885180056095123,0.0205256417393684,0.349317103624344,0.934291064739227,0.0712587386369705,
- 0.364711761474609,0.928451955318451,0.0704435184597969,0.151298597455025,0.988470375537872,0.00592209538444877,0.430838912725449,0.9018434882164,0.0325011275708675,0.303085327148438,0.952934741973877,0.00739257456734777,0.258916288614273,0.965594291687012,0.0242880657315254,0.355564743280411,0.931515157222748,0.0765068605542183,0.354007035493851,0.922678291797638,0.152786985039711,0.309234857559204,0.94998562335968,0.0436017066240311,0.303085327148438,0.952934741973877,0.00739257456734777,0.354007035493851,0.922678291797638,0.152786985039711,0.425670742988586,0.900137662887573,-0.0925010219216347,0.0672640204429626,0.953643679618835,-0.293324708938599,-0.0171544849872589,0.996037185192108,0.0872673094272614,0.0363137014210224,0.998781740665436,0.0334112010896206,0.0379944369196892,0.999021768569946,0.0226233322173357,0.0372287258505821,0.997880339622498,0.0533755049109459,-0.158462077379227,0.984587967395782,-0.0740018710494041,0.111744485795498,0.988941788673401,0.0975054055452347,0.294092923402786,0.954807579517365,0.0430338829755783,0.293832838535309,0.955036282539368,0.0395970977842808,0.464795649051666,0.885180056095123,0.0205256417393684,0.458598703145981,0.886348485946655,0.0638235956430435,0.43809711933136,0.876914381980896,0.197716906666756,0.303791671991348,0.952181935310364,0.0325608253479004,0.294092923402786,0.954807579517365,0.0430338829755783,0.43809711933136,0.876914381980896,0.197716906666756,0.545242488384247,0.831710696220398,0.104728244245052,-0.133615523576736,0.989827215671539,-0.0488760322332382,0.178254023194313,0.98328685760498,-0.0370474867522717,-0.337196320295334,0.822846055030823,0.457409024238586,-0.0810898840427399,0.787432074546814,0.61104428768158,0.178254023194313,0.98328685760498,-0.0370474867522717,0.496069699525833,0.867840647697449,0.0277032181620598,-0.337196320295334,0.822846055030823,0.457409024238586,0.539031624794006,0.742011070251465,0.398578077554703,-0.30732735991478,0.923635423183441,-0.229014068841934,0.151298597455025,0.988470375537872,0.00592209538444877,0.364711761474609,0.928451955318451,0.0704435184597969,
- 0.309234857559204,0.94998562335968,0.0436017066240311,0.425670742988586,0.900137662887573,-0.0925010219216347,0.000509985373355448,0.992058515548706,-0.125776171684265,-0.333967357873917,0.938906371593475,-0.0831916406750679,-0.15587443113327,0.79646760225296,-0.584245383739471,4.14695459767245e-005,0.99841183423996,-0.0563375018537045,-0.138092160224915,0.985768258571625,-0.095872662961483,-0.0787848085165024,0.923520863056183,-0.375369369983673,0.0288351122289896,0.99676501750946,-0.0750201269984245,0.000509985373355448,0.992058515548706,-0.125776171684265,-0.0783010274171829,0.985558986663818,0.150141537189484,-0.333967357873917,0.938906371593475,-0.0831916406750679,-0.337196320295334,0.822846055030823,0.457409024238586,-0.30732735991478,0.923635423183441,-0.229014068841934,0.150472775101662,0.980976164340973,-0.122652523219585,-0.133615523576736,0.989827215671539,-0.0488760322332382,-0.0112903099507093,0.938593864440918,0.344839423894882,0.0372287258505821,0.997880339622498,0.0533755049109459,0.539031624794006,0.742011070251465,0.398578077554703,-0.0810898840427399,0.787432074546814,0.61104428768158,-0.337196320295334,0.822846055030823,0.457409024238586,0.178254023194313,0.98328685760498,-0.0370474867522717,0.258916288614273,0.965594291687012,0.0242880657315254,0.303791671991348,0.952181935310364,0.0325608253479004,0.545242488384247,0.831710696220398,0.104728244245052,0.355564743280411,0.931515157222748,0.0765068605542183,-0.0112903099507093,0.938593864440918,0.344839423894882,0.043234009295702,0.996704280376434,-0.0686388462781906,0.0372287258505821,0.997880339622498,0.0533755049109459,0.0372287258505821,0.997880339622498,0.0533755049109459,0.111744485795498,0.988941788673401,0.0975054055452347,-0.30732735991478,0.923635423183441,-0.229014068841934,0.0372287258505821,0.997880339622498,0.0533755049109459,-0.30732735991478,0.923635423183441,-0.229014068841934,0.539031624794006,0.742011070251465,0.398578077554703,0.00833689142018557,0.997855305671692,0.0649251639842987,-0.0112903099507093,0.938593864440918,0.344839423894882,
- -0.337196320295334,0.822846055030823,0.457409024238586,0.269745379686356,0.961037039756775,0.0603756904602051,-0.0810898840427399,0.787432074546814,0.61104428768158,0.238660335540771,0.932281732559204,-0.271830946207047,0.238660335540771,0.932281732559204,-0.271830946207047,0.496069699525833,0.867840647697449,0.0277032181620598,0.258916288614273,0.965594291687012,0.0242880657315254,0.303085327148438,0.952934741973877,0.00739257456734777,0.496069699525833,0.867840647697449,0.0277032181620598,0.178254023194313,0.98328685760498,-0.0370474867522717,-0.133615523576736,0.989827215671539,-0.0488760322332382,0.303791671991348,0.952181935310364,0.0325608253479004,0.258916288614273,0.965594291687012,0.0242880657315254,-0.133615523576736,0.989827215671539,-0.0488760322332382,0.150472775101662,0.980976164340973,-0.122652523219585,0.294092923402786,0.954807579517365,0.0430338829755783,0.303791671991348,0.952181935310364,0.0325608253479004,0.111744485795498,0.988941788673401,0.0975054055452347,0.150472775101662,0.980976164340973,-0.122652523219585,-0.30732735991478,0.923635423183441,-0.229014068841934,0.111744485795498,0.988941788673401,0.0975054055452347,-0.418385326862335,0.908143222332001,-0.0151534480974078,0.29541090130806,0.953353524208069,0.0620447248220444,0.293832838535309,0.955036282539368,0.0395970977842808,0.240837454795837,0.964636206626892,0.107117630541325,0.232925891876221,0.964102029800415,0.127486243844032,0.359679311513901,0.926481664180756,0.110736928880215,0.364711761474609,0.928451955318451,0.0704435184597969,0.349317103624344,0.934291064739227,0.0712587386369705,0.309234857559204,0.94998562335968,0.0436017066240311,0.364711761474609,0.928451955318451,0.0704435184597969,0.359679311513901,0.926481664180756,0.110736928880215,0.213543623685837,0.943521082401276,0.253312140703201,-0.011284944601357,0.999934554100037,0.00190470274537802,0.102243162691593,0.993039906024933,0.058464128524065,-0.225925415754318,0.974143445491791,-0.00145077367778867,0.00194792449474335,0.999978184700012,0.00631290348246694,0.974865972995758,0.000614619231782854,0.222791567444801,
- 0.0841155499219894,0.972820818424225,-0.21574130654335,0.0836129039525986,0.99462753534317,0.0610330663621426,-0.127896308898926,0.791041493415833,0.598243951797485,-0.165250912308693,0.986104488372803,0.0170343872159719,-0.0164045002311468,0.999865412712097,-0.000105704333691392,-0.349184691905975,0.935102760791779,-0.0604392401874065,0.108797892928123,0.993741154670715,0.0253281742334366,-0.0518954172730446,0.0334460660815239,-0.998092293739319,0.0841155499219894,0.972820818424225,-0.21574130654335,0.974865972995758,0.000614619231782854,0.222791567444801,0.984762191772461,0.00162790960166603,-0.173898205161095,0.87232369184494,0.00922468304634094,-0.48884192109108,-0.0518954172730446,0.0334460660815239,-0.998092293739319,0.108797892928123,0.993741154670715,0.0253281742334366,-0.349184691905975,0.935102760791779,-0.0604392401874065,0.0083752078935504,0.953872978687286,-0.300093442201614,-0.00451630353927612,0.99994432926178,-0.00954234879463911,-0.011284944601357,0.999934554100037,0.00190470274537802,-0.349184691905975,0.935102760791779,-0.0604392401874065,-0.0518954172730446,0.0334460660815239,-0.998092293739319,-0.628849506378174,0.00793547369539738,-0.777486622333527,0.0083752078935504,0.953872978687286,-0.300093442201614,0.87232369184494,0.00922468304634094,-0.48884192109108,0.0841155499219894,0.972820818424225,-0.21574130654335,0.984762191772461,0.00162790960166603,-0.173898205161095,-0.972617030143738,0.0401140376925468,-0.228925719857216,-0.999079883098602,0.00908715277910233,-0.0419169552624226,-0.0568549782037735,0.997597992420197,0.0395690388977528,0.0841155499219894,0.972820818424225,-0.21574130654335,0.108797892928123,0.993741154670715,0.0253281742334366,0.00194792449474335,0.999978184700012,0.00631290348246694,0.0129457488656044,0.999910056591034,0.00350154144689441,0.108797892928123,0.993741154670715,0.0253281742334366,0.0841155499219894,0.972820818424225,-0.21574130654335,0.87232369184494,0.00922468304634094,-0.48884192109108,-0.0074645159766078,0.999968886375427,0.00253584678284824,-0.0022076761815697,0.999995887279511,0.00186355062760413,
- 0.525821030139923,0.849952757358551,0.0330537520349026,0.0468473210930824,0.991140067577362,-0.124284744262695,0.0083752078935504,0.953872978687286,-0.300093442201614,-0.628849506378174,0.00793547369539738,-0.777486622333527,-0.826635122299194,0.0197708494961262,-0.562390923500061,-0.826635122299194,0.0197708494961262,-0.562390923500061,-0.972617030143738,0.0401140376925468,-0.228925719857216,0.0083752078935504,0.953872978687286,-0.300093442201614,-0.00451630353927612,0.99994432926178,-0.00954234879463911,-0.0074645159766078,0.999968886375427,0.00253584678284824,0.0468473210930824,0.991140067577362,-0.124284744262695,0.0422931686043739,0.987056791782379,0.154693692922592,0.108797892928123,0.993741154670715,0.0253281742334366,-0.349184691905975,0.935102760791779,-0.0604392401874065,-0.011284944601357,0.999934554100037,0.00190470274537802,0.00194792449474335,0.999978184700012,0.00631290348246694,0.0462844632565975,0.998896360397339,0.00798255391418934,-0.156933382153511,0.986920416355133,-0.0368772894144058,-0.223466292023659,0.971380710601807,-0.0805122032761574,-0.0164045002311468,0.999865412712097,-0.000105704333691392,-0.011284944601357,0.999934554100037,0.00190470274537802,-0.00451630353927612,0.99994432926178,-0.00954234879463911,0.0422931686043739,0.987056791782379,0.154693692922592,0.102243162691593,0.993039906024933,0.058464128524065,0.00194792449474335,0.999978184700012,0.00631290348246694,-0.225925415754318,0.974143445491791,-0.00145077367778867,-0.0424902401864529,0.989783644676209,0.136099472641945,0.0129457488656044,0.999910056591034,0.00350154144689441,0.0462844632565975,0.998896360397339,0.00798255391418934,0.625649631023407,0.775556027889252,0.0841158702969551,0.0836129039525986,0.99462753534317,0.0610330663621426,0.0172029305249453,0.999724507331848,-0.0159697216004133,-0.0568549782037735,0.997597992420197,0.0395690388977528,-0.0022076761815697,0.999995887279511,0.00186355062760413,-0.0074645159766078,0.999968886375427,0.00253584678284824,0.0083752078935504,0.953872978687286,-0.300093442201614,-0.972617030143738,0.0401140376925468,-0.228925719857216,
- -0.0568549782037735,0.997597992420197,0.0395690388977528,0.0172029305249453,0.999724507331848,-0.0159697216004133,0.0129457488656044,0.999910056591034,0.00350154144689441,-0.0424902401864529,0.989783644676209,0.136099472641945,0.0226159766316414,0.878202974796295,-0.477753072977066,-0.0703001916408539,0.977946877479553,-0.19666662812233,0.0208717212080956,0.999541640281677,-0.0219287276268005,0.0226159766316414,0.878202974796295,-0.477753072977066,-0.225925415754318,0.974143445491791,-0.00145077367778867,0.102243162691593,0.993039906024933,0.058464128524065,-0.574075698852539,0.779020965099335,-0.252117902040482,-0.2724529504776,0.923998296260834,0.268321573734283,0.0468473210930824,0.991140067577362,-0.124284744262695,0.525821030139923,0.849952757358551,0.0330537520349026,0.0104256765916944,0.997266411781311,0.0731514543294907,-0.412833213806152,0.837821662425995,-0.357244312763214,-0.60682874917984,0.702141940593719,-0.372499018907547,0.0468473210930824,0.991140067577362,-0.124284744262695,-0.412833213806152,0.837821662425995,-0.357244312763214,-0.0424902401864529,0.989783644676209,0.136099472641945,-0.225925415754318,0.974143445491791,-0.00145077367778867,-0.2724529504776,0.923998296260834,0.268321573734283,-0.0537520013749599,0.993707358837128,-0.0982669070363045,-0.0424902401864529,0.989783644676209,0.136099472641945,-0.2724529504776,0.923998296260834,0.268321573734283,0.0226159766316414,0.878202974796295,-0.477753072977066,-0.156933382153511,0.986920416355133,-0.0368772894144058,0.0462844632565975,0.998896360397339,0.00798255391418934,0.0172029305249453,0.999724507331848,-0.0159697216004133,0.0083752078935504,0.953872978687286,-0.300093442201614,-0.0568549782037735,0.997597992420197,0.0395690388977528,-0.0074645159766078,0.999968886375427,0.00253584678284824,-0.00451630353927612,0.99994432926178,-0.00954234879463911,0.0226159766316414,0.878202974796295,-0.477753072977066,-0.0537520013749599,0.993707358837128,-0.0982669070363045,-0.0703001916408539,0.977946877479553,-0.19666662812233,-0.223466292023659,0.971380710601807,-0.0805122032761574,
- -0.156933382153511,0.986920416355133,-0.0368772894144058,0.0208717212080956,0.999541640281677,-0.0219287276268005,-0.0542980879545212,0.996606886386871,0.0618577748537064,0.0226159766316414,0.878202974796295,-0.477753072977066,-0.0424902401864529,0.989783644676209,0.136099472641945,-0.0537520013749599,0.993707358837128,-0.0982669070363045,-0.0679404959082603,0.76565158367157,0.639657497406006,0.398364871740341,-0.563815414905548,0.723476052284241,0.966636598110199,-0.0350871793925762,-0.253737181425095,0.0422931686043739,0.987056791782379,0.154693692922592,0.0468473210930824,0.991140067577362,-0.124284744262695,-0.60682874917984,0.702141940593719,-0.372499018907547,0.102243162691593,0.993039906024933,0.058464128524065,0.0422931686043739,0.987056791782379,0.154693692922592,-0.574075698852539,0.779020965099335,-0.252117902040482,-0.165250912308693,0.986104488372803,0.0170343872159719,0.625649631023407,0.775556027889252,0.0841158702969551,0.0462844632565975,0.998896360397339,0.00798255391418934,-0.0164045002311468,0.999865412712097,-0.000105704333691392,-0.987473726272583,0.00669729197397828,-0.157641664147377,-0.987459480762482,0.00593360047787428,-0.157761186361313,-0.98763644695282,0.00445084134116769,-0.15669821202755,-0.988538563251495,-0.00133590225595981,-0.150963187217712,-0.992766141891479,-0.000745649042073637,-0.120061732828617,-0.990284025669098,0.00656472612172365,-0.138904988765717,-0.986720144748688,0.00664486782625318,-0.162293970584869,-0.985907316207886,0.0402997843921185,-0.162366047501564,-0.987516939640045,0.0213112868368626,-0.156064659357071,0.0836129039525986,0.99462753534317,0.0610330663621426,0.625649631023407,0.775556027889252,0.0841158702969551,0.892316877841949,0.0011438571382314,0.451408058404922,0.974865972995758,0.000614619231782854,0.222791567444801,0.135896533727646,0.0177439544349909,0.990564107894897,-0.165250912308693,0.986104488372803,0.0170343872159719,-0.127896308898926,0.791041493415833,0.598243951797485,0.135896533727646,0.0177439544349909,0.990564107894897,0.892316877841949,0.0011438571382314,0.451408058404922,
- 0.625649631023407,0.775556027889252,0.0841158702969551,-0.165250912308693,0.986104488372803,0.0170343872159719,-0.0093236081302166,0.999887824058533,0.0117239449173212,-0.412833213806152,0.837821662425995,-0.357244312763214,0.0104256765916944,0.997266411781311,0.0731514543294907,0.035335760563612,0.984303057193756,0.172912701964378,0.00533701758831739,0.991473734378815,0.13019722700119,0.679186820983887,0.682288825511932,0.270531266927719,0.500847995281219,0.865164399147034,0.0253338851034641,0.601245105266571,0.583103835582733,-0.546346247196198,0.0429723486304283,0.998258829116821,0.0404043719172478,-0.00786164496093988,0.9967440366745,-0.0802468210458755,0.0295639541000128,0.989345550537109,0.142553046345711,0.379994004964828,0.922156631946564,0.072330541908741,0.0429723486304283,0.998258829116821,0.0404043719172478,0.601245105266571,0.583103835582733,-0.546346247196198,-0.187482044100761,0.982267916202545,0.000552366545889527,0.379994004964828,0.922156631946564,0.072330541908741,0.0295639541000128,0.989345550537109,0.142553046345711,-0.0810898840427399,0.787432074546814,0.61104428768158,0.496069699525833,0.867840647697449,0.0277032181620598,0.238660335540771,0.932281732559204,-0.271830946207047,0.269745379686356,0.961037039756775,0.0603756904602051,0.238660335540771,0.932281732559204,-0.271830946207047,0.303085327148438,0.952934741973877,0.00739257456734777,0.309234857559204,0.94998562335968,0.0436017066240311,0.213543623685837,0.943521082401276,0.253312140703201,0.0175749640911818,0.994921147823334,-0.0991111025214195,0.19902677834034,0.972126722335815,-0.123927131295204,0.00736333290114999,0.999628782272339,-0.02622782997787,-0.0513993464410305,0.998658657073975,-0.00623668124899268,0.129854917526245,0.991320788860321,0.0205135121941566,0.0224434453994036,0.996481001377106,0.0807593613862991,0.00775490794330835,0.99981552362442,-0.0175702329725027,0.0165847074240446,0.941923439502716,-0.335417926311493,-0.0111237019300461,0.999850571155548,-0.013234387151897,-0.0085646640509367,0.999963343143463,-1.9301449356135e-005,
- 0.00149871048051864,0.999928772449493,0.0118368472903967,0.0986427813768387,0.995069324970245,0.0103202890604734,0.00775490794330835,0.99981552362442,-0.0175702329725027,-0.0085646640509367,0.999963343143463,-1.9301449356135e-005,0.0149242589250207,0.999813854694366,0.0122270900756121,-0.107321590185165,0.994162559509277,-0.0110874343663454,0.0986427813768387,0.995069324970245,0.0103202890604734,0.00149871048051864,0.999928772449493,0.0118368472903967,0.294092923402786,0.954807579517365,0.0430338829755783,0.150472775101662,0.980976164340973,-0.122652523219585,0.111744485795498,0.988941788673401,0.0975054055452347,0.293832838535309,0.955036282539368,0.0395970977842808,0.0836129039525986,0.99462753534317,0.0610330663621426,0.0841155499219894,0.972820818424225,-0.21574130654335,0.0129457488656044,0.999910056591034,0.00350154144689441,0.0172029305249453,0.999724507331848,-0.0159697216004133,0.0885454341769218,0.992462575435638,0.0847213417291641,-0.0227652061730623,0.984017372131348,-0.176611423492432,-0.0136962998658419,0.978141486644745,0.207488968968391,0.0226159766316414,0.878202974796295,-0.477753072977066,0.0208717212080956,0.999541640281677,-0.0219287276268005,-0.156933382153511,0.986920416355133,-0.0368772894144058,-0.690009593963623,0.715465843677521,-0.109523713588715,-0.722768306732178,0.6904376745224,0.0300294775515795,-0.679712116718292,0.696998178958893,-0.228439927101135,-0.569642186164856,0.784456372261047,0.24522665143013,0.971471309661865,0.0132691152393818,0.236785754561424,0.290080398321152,0.109431691467762,0.950725018978119,-0.0981976911425591,0.983778476715088,0.150123506784439,-0.0103402072563767,0.999863028526306,0.0129251983016729,0.0574841052293777,0.995655298233032,0.0732535421848297,-0.304777801036835,0.95066636800766,0.057825144380331,-0.0187258496880531,0.999769270420074,0.0105237755924463,0.754450380802155,0.638342559337616,0.152720153331757,0.0812779366970062,0.946597337722778,-0.312005460262299,0.0922909528017044,0.995697736740112,-0.00828149169683456,0.345920115709305,0.937680542469025,0.0330840609967709,
- 0.473335087299347,0.878317475318909,0.0671732947230339,0.854337394237518,0.497113078832626,0.151612147688866,0.702103674411774,0.701517879962921,0.122160159051418,0.993355393409729,-0.015335313975811,0.114061512053013,0.993131756782532,-0.0785473585128784,0.086715966463089,0.990944802761078,-0.0621157772839069,0.119037710130215,0.9917231798172,0.014590029604733,0.12756259739399,0.993355393409729,-0.015335313975811,0.114061512053013,0.990944802761078,-0.0621157772839069,0.119037710130215,0.9917231798172,0.014590029604733,0.12756259739399,0.986803352832794,0.0717009827494621,0.145182952284813,0.993355393409729,-0.015335313975811,0.114061512053013,0.0139482850208879,0.999658346176147,-0.0221008211374283,-0.250245302915573,0.966636180877686,-0.0546969845890999,0.0389473475515842,0.181585505604744,-0.982603549957275,-0.0445001125335693,0.998238921165466,-0.0392277762293816,0.145943537354469,0.989222764968872,0.0117877153679729,0.258564442396164,0.861598670482636,-0.436797529459,0.0812779366970062,0.946597337722778,-0.312005460262299,0.754450380802155,0.638342559337616,0.152720153331757,0.854045987129211,0.464604079723358,-0.233984082937241,0.556354522705078,0.604551792144775,-0.57007622718811,0.258564442396164,0.861598670482636,-0.436797529459,0.145943537354469,0.989222764968872,0.0117877153679729,-0.0445001125335693,0.998238921165466,-0.0392277762293816,0.0316911973059177,0.935797095298767,-0.351111501455307,0.0124962525442243,0.99967348575592,0.0222870539873838,-0.0103402072563767,0.999863028526306,0.0129251983016729,-0.0445001125335693,0.998238921165466,-0.0392277762293816,0.258564442396164,0.861598670482636,-0.436797529459,-0.204916924238205,0.594617307186127,-0.777456879615784,0.0316911973059177,0.935797095298767,-0.351111501455307,0.284308135509491,0.957840800285339,0.0413524620234966,-0.0471876189112663,0.987451255321503,0.150709569454193,0.0847636759281158,0.993254959583282,0.0791172981262207,0.992191970348358,0.0448163934051991,0.116389729082584,0.9917231798172,0.014590029604733,0.12756259739399,0.990944802761078,-0.0621157772839069,0.119037710130215,
- -0.108135715126991,0.993734419345856,0.0282573383301497,0.290080398321152,0.109431691467762,0.950725018978119,-0.880324423313141,0.0882518514990807,0.466090708971024,0.556354522705078,0.604551792144775,-0.57007622718811,0.0812779366970062,0.946597337722778,-0.312005460262299,0.854045987129211,0.464604079723358,-0.233984082937241,0.0812779366970062,0.946597337722778,-0.312005460262299,0.145943537354469,0.989222764968872,0.0117877153679729,-0.0187258496880531,0.999769270420074,0.0105237755924463,0.0120055582374334,0.999808073043823,-0.0154789816588163,0.145943537354469,0.989222764968872,0.0117877153679729,0.0812779366970062,0.946597337722778,-0.312005460262299,0.556354522705078,0.604551792144775,-0.57007622718811,-0.0011635331902653,0.997001349925995,0.0773744359612465,0.142695933580399,0.984956443309784,0.0974608138203621,0.0195660348981619,0.991413772106171,0.129289969801903,0.0388941951096058,0.999024331569672,0.0209225863218308,-0.250245302915573,0.966636180877686,-0.0546969845890999,-0.865526974201202,0.0974626019597054,-0.491288155317307,0.0389473475515842,0.181585505604744,-0.982603549957275,-0.865526974201202,0.0974626019597054,-0.491288155317307,-0.0222514197230339,0.994221031665802,-0.10502115637064,-0.355063527822495,0.926440477371216,-0.125051349401474,-0.250245302915573,0.966636180877686,-0.0546969845890999,-0.0222514197230339,0.994221031665802,-0.10502115637064,-0.865526974201202,0.0974626019597054,-0.491288155317307,0.0389473475515842,0.181585505604744,-0.982603549957275,0.228663429617882,0.202423989772797,-0.952227711677551,0.0139482850208879,0.999658346176147,-0.0221008211374283,-0.0687723457813263,0.995689153671265,-0.0622359700500965,0.98812335729599,0.11779411137104,-0.098675437271595,0.971471309661865,0.0132691152393818,0.236785754561424,0.98812335729599,0.11779411137104,-0.098675437271595,-0.0687723457813263,0.995689153671265,-0.0622359700500965,0.227467641234398,0.973653197288513,0.0160619858652353,-0.108135715126991,0.993734419345856,0.0282573383301497,-0.880324423313141,0.0882518514990807,0.466090708971024,
- -0.0916526690125465,0.990083396434784,0.106464587152004,-0.880324423313141,0.0882518514990807,0.466090708971024,-0.865526974201202,0.0974626019597054,-0.491288155317307,-0.355063527822495,0.926440477371216,-0.125051349401474,-0.880324423313141,0.0882518514990807,0.466090708971024,-0.355063527822495,0.926440477371216,-0.125051349401474,-0.0916526690125465,0.990083396434784,0.106464587152004,0.0130822220817208,0.999201774597168,0.0377438589930534,0.0585021935403347,0.998059332370758,0.0213356222957373,0.696422100067139,0.714282631874084,0.0692583918571472,0.0791510716080666,0.994733393192291,-0.0651199072599411,-0.108135715126991,0.993734419345856,0.0282573383301497,0.0186907611787319,0.999033570289612,0.0397831536829472,0.290080398321152,0.109431691467762,0.950725018978119,-0.0981976911425591,0.983778476715088,0.150123506784439,0.290080398321152,0.109431691467762,0.950725018978119,0.0186907611787319,0.999033570289612,0.0397831536829472,-0.0807726308703423,0.996723115444183,-0.00434052431955934,-0.0687723457813263,0.995689153671265,-0.0622359700500965,0.971471309661865,0.0132691152393818,0.236785754561424,0.971471309661865,0.0132691152393818,0.236785754561424,-0.0981976911425591,0.983778476715088,0.150123506784439,-0.0807726308703423,0.996723115444183,-0.00434052431955934,0.0316911973059177,0.935797095298767,-0.351111501455307,-0.204916924238205,0.594617307186127,-0.777456879615784,-0.0826789066195488,0.948036193847656,-0.307232260704041,0.0124962525442243,0.99967348575592,0.0222870539873838,0.0130822220817208,0.999201774597168,0.0377438589930534,0.0791510716080666,0.994733393192291,-0.0651199072599411,0.0231179185211658,0.929775178432465,0.367401003837585,0.145943537354469,0.989222764968872,0.0117877153679729,-0.0445001125335693,0.998238921165466,-0.0392277762293816,-0.0103402072563767,0.999863028526306,0.0129251983016729,-0.0187258496880531,0.999769270420074,0.0105237755924463,-0.0222514197230339,0.994221031665802,-0.10502115637064,-0.0916526690125465,0.990083396434784,0.106464587152004,-0.355063527822495,0.926440477371216,-0.125051349401474,
- 0.0148767260834575,0.999732375144959,0.0177154876291752,-0.4798504114151,0.874297440052032,-0.0731276795268059,-0.132345736026764,0.986374795436859,-0.0977210476994514,0.0217892546206713,0.999000132083893,-0.0390382558107376,0.0086965523660183,0.999864220619202,0.0140029676258564,-0.0103402072563767,0.999863028526306,0.0129251983016729,0.0124962525442243,0.99967348575592,0.0222870539873838,0.0231179185211658,0.929775178432465,0.367401003837585,0.0574841052293777,0.995655298233032,0.0732535421848297,-0.0187258496880531,0.999769270420074,0.0105237755924463,-0.304777801036835,0.95066636800766,0.057825144380331,-0.18791925907135,0.979442596435547,0.0733394250273705,0.0120055582374334,0.999808073043823,-0.0154789816588163,0.0922909528017044,0.995697736740112,-0.00828149169683456,0.345920115709305,0.937680542469025,0.0330840609967709,0.702103674411774,0.701517879962921,0.122160159051418,0.754450380802155,0.638342559337616,0.152720153331757,-0.0471876189112663,0.987451255321503,0.150709569454193,0.284308135509491,0.957840800285339,0.0413524620234966,0.0585021935403347,0.998059332370758,0.0213356222957373,0.0130822220817208,0.999201774597168,0.0377438589930534,-0.0826789066195488,0.948036193847656,-0.307232260704041,-0.157888576388359,0.979411065578461,0.125797957181931,-0.0471876189112663,0.987451255321503,0.150709569454193,0.0316911973059177,0.935797095298767,-0.351111501455307,0.0119740338996053,0.999833643436432,0.0137547869235277,0.0120055582374334,0.999808073043823,-0.0154789816588163,-0.18791925907135,0.979442596435547,0.0733394250273705,-0.0445528365671635,0.993596196174622,-0.103834718465805,-0.522851884365082,0.716654360294342,-0.461554437875748,-0.212752938270569,0.902514159679413,-0.37443882226944,-0.4798504114151,0.874297440052032,-0.0731276795268059,-0.0445528365671635,0.993596196174622,-0.103834718465805,-0.106645062565804,0.991740584373474,-0.0712564960122108,-0.0413093976676464,0.991039931774139,-0.127017706632614,-0.554393589496613,0.83209502696991,-0.0162941925227642,-0.0331399329006672,0.996421635150909,0.0777542367577553,
- 0.0554363466799259,0.991863667964935,-0.114600159227848,-0.212752938270569,0.902514159679413,-0.37443882226944,0.0195660348981619,0.991413772106171,0.129289969801903,-0.0358597189188004,0.996225535869598,0.0790487229824066,0.740732491016388,-0.366427093744278,-0.563068866729736,0.592988550662994,0.138451814651489,0.793218553066254,0.0188459679484367,0.988912582397461,0.147298291325569,-0.304777801036835,0.95066636800766,0.057825144380331,0.0574841052293777,0.995655298233032,0.0732535421848297,-0.566178023815155,0.704196572303772,0.428426861763,-0.823518216609955,0.557597696781158,-0.104414880275726,0.0791510716080666,0.994733393192291,-0.0651199072599411,0.696422100067139,0.714282631874084,0.0692583918571472,-0.0413093976676464,0.991039931774139,-0.127017706632614,-0.106645062565804,0.991740584373474,-0.0712564960122108,0.16297647356987,0.98388010263443,0.073610745370388,0.0791510716080666,0.994733393192291,-0.0651199072599411,-0.106645062565804,0.991740584373474,-0.0712564960122108,-0.212752938270569,0.902514159679413,-0.37443882226944,-0.132345736026764,0.986374795436859,-0.0977210476994514,-0.4798504114151,0.874297440052032,-0.0731276795268059,-0.566178023815155,0.704196572303772,0.428426861763,0.0231179185211658,0.929775178432465,0.367401003837585,0.365254074335098,0.520500779151917,0.771795690059662,-0.18791925907135,0.979442596435547,0.0733394250273705,-0.304777801036835,0.95066636800766,0.057825144380331,-0.823518216609955,0.557597696781158,-0.104414880275726,-0.522851884365082,0.716654360294342,-0.461554437875748,-0.705852150917053,0.69755494594574,-0.12324695289135,-0.18791925907135,0.979442596435547,0.0733394250273705,-0.823518216609955,0.557597696781158,-0.104414880275726,-0.0445528365671635,0.993596196174622,-0.103834718465805,-0.4798504114151,0.874297440052032,-0.0731276795268059,0.0148767260834575,0.999732375144959,0.0177154876291752,0.0119740338996053,0.999833643436432,0.0137547869235277,0.0388941951096058,0.999024331569672,0.0209225863218308,0.0195660348981619,0.991413772106171,0.129289969801903,-0.212752938270569,0.902514159679413,-0.37443882226944,
- -0.522851884365082,0.716654360294342,-0.461554437875748,-0.047276895493269,0.998728334903717,-0.0175070762634277,-0.0677846968173981,0.997514128684998,0.0192579105496407,0.227467641234398,0.973653197288513,0.0160619858652353,-0.0687723457813263,0.995689153671265,-0.0622359700500965,0.0153646236285567,0.999349415302277,0.0326300598680973,-0.0179233979433775,0.999513030052185,0.025543225929141,-0.250245302915573,0.966636180877686,-0.0546969845890999,0.0139482850208879,0.999658346176147,-0.0221008211374283,-0.0261509884148836,0.999520182609558,-0.0165953151881695,-0.0493055917322636,0.9986851811409,-0.0140337785705924,-0.108135715126991,0.993734419345856,0.0282573383301497,-0.0916526690125465,0.990083396434784,0.106464587152004,-0.0286466423422098,0.999456942081451,0.0162843316793442,-0.0261509884148836,0.999520182609558,-0.0165953151881695,-0.0916526690125465,0.990083396434784,0.106464587152004,-0.0222514197230339,0.994221031665802,-0.10502115637064,0.0316911973059177,0.935797095298767,-0.351111501455307,-0.0471876189112663,0.987451255321503,0.150709569454193,0.0130822220817208,0.999201774597168,0.0377438589930534,0.0124962525442243,0.99967348575592,0.0222870539873838,0.16297647356987,0.98388010263443,0.073610745370388,-0.106645062565804,0.991740584373474,-0.0712564960122108,-0.0331399329006672,0.996421635150909,0.0777542367577553,-0.0481452308595181,0.998796582221985,-0.0093403784558177,-0.047276895493269,0.998728334903717,-0.0175070762634277,-0.0687723457813263,0.995689153671265,-0.0622359700500965,-0.0807726308703423,0.996723115444183,-0.00434052431955934,-0.0981976911425591,0.983778476715088,0.150123506784439,-0.0164647176861763,0.999812245368958,-0.0102227656170726,-0.0481452308595181,0.998796582221985,-0.0093403784558177,-0.0981976911425591,0.983778476715088,0.150123506784439,0.0186907611787319,0.999033570289612,0.0397831536829472,-0.353218197822571,0.93186616897583,-0.0828394591808319,-0.0502935647964478,0.995715022087097,-0.0776022002100945,-0.566178023815155,0.704196572303772,0.428426861763,-0.823518216609955,0.557597696781158,-0.104414880275726,
- -0.0502935647964478,0.995715022087097,-0.0776022002100945,0.258026897907257,0.966121733188629,-0.00554938800632954,-0.566178023815155,0.704196572303772,0.428426861763,0.365254074335098,0.520500779151917,0.771795690059662,-0.42780864238739,0.862239837646484,-0.271149784326553,-0.250245302915573,0.966636180877686,-0.0546969845890999,-0.0179233979433775,0.999513030052185,0.025543225929141,-0.0286466423422098,0.999456942081451,0.0162843316793442,-0.0222514197230339,0.994221031665802,-0.10502115637064,-0.0445528365671635,0.993596196174622,-0.103834718465805,-0.705852150917053,0.69755494594574,-0.12324695289135,-0.522851884365082,0.716654360294342,-0.461554437875748,0.0217892546206713,0.999000132083893,-0.0390382558107376,-0.132345736026764,0.986374795436859,-0.0977210476994514,-0.212752938270569,0.902514159679413,-0.37443882226944,0.0554363466799259,0.991863667964935,-0.114600159227848,-0.0445528365671635,0.993596196174622,-0.103834718465805,-0.18791925907135,0.979442596435547,0.0733394250273705,-0.705852150917053,0.69755494594574,-0.12324695289135,-0.566178023815155,0.704196572303772,0.428426861763,-0.42780864238739,0.862239837646484,-0.271149784326553,0.0087988693267107,0.986611783504486,-0.162848606705666,-0.353218197822571,0.93186616897583,-0.0828394591808319,0.0231179185211658,0.929775178432465,0.367401003837585,0.16297647356987,0.98388010263443,0.073610745370388,0.365254074335098,0.520500779151917,0.771795690059662,-0.823518216609955,0.557597696781158,-0.104414880275726,-0.566178023815155,0.704196572303772,0.428426861763,-0.0502935647964478,0.995715022087097,-0.0776022002100945,-0.0493055917322636,0.9986851811409,-0.0140337785705924,-0.0164647176861763,0.999812245368958,-0.0102227656170726,0.0186907611787319,0.999033570289612,0.0397831536829472,-0.108135715126991,0.993734419345856,0.0282573383301497,0.0231179185211658,0.929775178432465,0.367401003837585,0.0791510716080666,0.994733393192291,-0.0651199072599411,0.16297647356987,0.98388010263443,0.073610745370388,0.16297647356987,0.98388010263443,0.073610745370388,-0.0331399329006672,0.996421635150909,0.0777542367577553,
- -0.42780864238739,0.862239837646484,-0.271149784326553,0.16297647356987,0.98388010263443,0.073610745370388,-0.42780864238739,0.862239837646484,-0.271149784326553,0.365254074335098,0.520500779151917,0.771795690059662,0.0574841052293777,0.995655298233032,0.0732535421848297,0.0231179185211658,0.929775178432465,0.367401003837585,-0.566178023815155,0.704196572303772,0.428426861763,0.0388941951096058,0.999024331569672,0.0209225863218308,-0.823518216609955,0.557597696781158,-0.104414880275726,0.0138195343315601,0.960670709609985,-0.277346253395081,0.0138195343315601,0.960670709609985,-0.277346253395081,0.258026897907257,0.966121733188629,-0.00554938800632954,-0.0493055917322636,0.9986851811409,-0.0140337785705924,-0.0261509884148836,0.999520182609558,-0.0165953151881695,0.258026897907257,0.966121733188629,-0.00554938800632954,-0.0502935647964478,0.995715022087097,-0.0776022002100945,-0.353218197822571,0.93186616897583,-0.0828394591808319,-0.0164647176861763,0.999812245368958,-0.0102227656170726,-0.0493055917322636,0.9986851811409,-0.0140337785705924,-0.353218197822571,0.93186616897583,-0.0828394591808319,0.0087988693267107,0.986611783504486,-0.162848606705666,-0.0481452308595181,0.998796582221985,-0.0093403784558177,-0.0164647176861763,0.999812245368958,-0.0102227656170726,-0.0331399329006672,0.996421635150909,0.0777542367577553,0.0087988693267107,0.986611783504486,-0.162848606705666,-0.42780864238739,0.862239837646484,-0.271149784326553,-0.0331399329006672,0.996421635150909,0.0777542367577553,-0.554393589496613,0.83209502696991,-0.0162941925227642,-0.0677846968173981,0.997514128684998,0.0192579105496407,-0.047276895493269,0.998728334903717,-0.0175070762634277,-0.0358597189188004,0.996225535869598,0.0790487229824066,0.0195660348981619,0.991413772106171,0.129289969801903,0.142695933580399,0.984956443309784,0.0974608138203621,-0.0179233979433775,0.999513030052185,0.025543225929141,0.0153646236285567,0.999349415302277,0.0326300598680973,-0.0286466423422098,0.999456942081451,0.0162843316793442,-0.0179233979433775,0.999513030052185,0.025543225929141,
- 0.142695933580399,0.984956443309784,0.0974608138203621,-0.0011635331902653,0.997001349925995,0.0773744359612465,-0.823518216609955,0.557597696781158,-0.104414880275726,0.258026897907257,0.966121733188629,-0.00554938800632954,0.0138195343315601,0.960670709609985,-0.277346253395081,0.0388941951096058,0.999024331569672,0.0209225863218308,0.0138195343315601,0.960670709609985,-0.277346253395081,-0.0261509884148836,0.999520182609558,-0.0165953151881695,-0.0286466423422098,0.999456942081451,0.0162843316793442,-0.0011635331902653,0.997001349925995,0.0773744359612465,0.0922909528017044,0.995697736740112,-0.00828149169683456,0.0812779366970062,0.946597337722778,-0.312005460262299,0.0120055582374334,0.999808073043823,-0.0154789816588163,0.0119740338996053,0.999833643436432,0.0137547869235277,0.0148767260834575,0.999732375144959,0.0177154876291752,0.345920115709305,0.937680542469025,0.0330840609967709,0.0922909528017044,0.995697736740112,-0.00828149169683456,0.0119740338996053,0.999833643436432,0.0137547869235277,0.0086965523660183,0.999864220619202,0.0140029676258564,0.473335087299347,0.878317475318909,0.0671732947230339,0.345920115709305,0.937680542469025,0.0330840609967709,0.0148767260834575,0.999732375144959,0.0177154876291752,-0.0481452308595181,0.998796582221985,-0.0093403784558177,0.0087988693267107,0.986611783504486,-0.162848606705666,-0.0331399329006672,0.996421635150909,0.0777542367577553,-0.047276895493269,0.998728334903717,-0.0175070762634277,-0.157888576388359,0.979411065578461,0.125797957181931,0.0847636759281158,0.993254959583282,0.0791172981262207,-0.0471876189112663,0.987451255321503,0.150709569454193
- }
- TangentsW: *8998 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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: *4870 {
- a: 4.81237649917603,0,5.03111696243286,0,5.03111696243286,0.25287526845932,4.81237649917603,0.25287526845932,5.24986171722412,0,5.24986219406128,0.25287526845932,5.4686074256897,0,5.4686074256897,0.25287526845932,5.68736171722412,0,5.68736171722412,0.25287526845932,5.90611553192139,0,5.90611553192139,0.25287526845932,6.12487077713013,0,6.12487077713013,0.25287526845932,6.34362506866455,0,6.34362506866455,0.25287526845932,6.56236934661865,0,6.56236934661865,0.25287526845932,6.78111267089844,0,6.78111267089844,0.25287526845932,6.99985551834106,0,6.99984931945801,0.252875566482544,0,0,0.218744769692421,0,0.218744769692421,0.252875208854675,1.39064965765101e-007,0.252874970436096,0.437487870454788,0,0.437487989664078,0.252875208854675,0.65623015165329,0,0.65623015165329,0.252875208854675,0.874972522258759,0,0.874972581863403,0.252875208854675,1.09371721744537,0,1.09371721744537,0.252875208854675,1.31245994567871,0,1.31245994567871,0.252875208854675,1.53120315074921,0,1.53120315074921,0.252875208854675,1.74994730949402,0,1.74994719028473,0.252875208854675,1.9686906337738,0,1.96869087219238,0.252875208854675,2.18743562698364,0,2.18743538856506,0.252875298261642,2.40618658065796,0,2.40618658065796,0.252875328063965,2.62493300437927,0,2.62493300437927,0.25287526845932,2.84368014335632,0,2.84368014335632,0.25287526845932,3.0624372959137,0,3.0624372959137,0.25287526845932,3.28118872642517,0,3.28118872642517,0.25287526845932,3.4999463558197,0,3.4999463558197,0.25287526845932,3.71869206428528,0,3.71869206428528,0.25287526845932,3.93743300437927,0,3.93743324279785,0.25287526845932,4.1561713218689,0,4.1561713218689,0.25287526845932,4.37490129470825,0,4.37490177154541,0.25287526845932,4.59364032745361,0,4.59364032745361,0.25287526845932,4.81237697601318,1.26437556743622,5.0311164855957,1.26437556743622,5.0311164855957,1.5172506570816,4.81237697601318,1.5172506570816,5.2498631477356,1.26437556743622,5.2498631477356,1.5172506570816,5.46860694885254,1.26437556743622,5.46860647201538,1.5172506570816,5.68736219406128,
- 1.26437556743622,5.68736219406128,1.5172506570816,5.90611696243286,1.26437556743622,5.90611696243286,1.5172506570816,6.12487125396729,1.26437556743622,6.12487125396729,1.5172506570816,6.34362506866455,1.26437556743622,6.34362506866455,1.5172506570816,6.56236934661865,1.26437556743622,6.56236934661865,1.5172506570816,6.78111267089844,1.26437556743622,6.78111267089844,1.5172506570816,6.99984502792358,1.26437509059906,6.99985551834106,1.5172506570816,3.32234264988074e-007,1.26437473297119,0.218744844198227,1.26437509059906,0.218744859099388,1.51725006103516,4.1724371158125e-007,1.51725006103516,0.437488287687302,1.26437509059906,0.437488406896591,1.51725006103516,0.65623015165329,1.26437509059906,0.65623015165329,1.51725006103516,0.874972701072693,1.26437509059906,0.874972820281982,1.51725006103516,1.09371733665466,1.26437509059906,1.09371745586395,1.51725006103516,1.31245982646942,1.26437509059906,1.31245982646942,1.51725006103516,1.53120338916779,1.26437509059906,1.53120338916779,1.51725006103516,1.74994671344757,1.26437509059906,1.74994659423828,1.51725006103516,1.96869111061096,1.26437509059906,1.96869111061096,1.51725006103516,2.18743467330933,1.26437556743622,2.18743467330933,1.5172506570816,2.4061872959137,1.26437568664551,2.4061872959137,1.51725077629089,2.62493300437927,1.26437556743622,2.62493276596069,1.5172506570816,2.84368014335632,1.26437556743622,2.84368014335632,1.5172506570816,3.06243753433228,1.26437556743622,3.06243777275085,1.5172506570816,3.28118944168091,1.26437556743622,3.28118968009949,1.5172506570816,3.4999463558197,1.26437556743622,3.4999463558197,1.5172506570816,3.71869206428528,1.26437556743622,3.71869206428528,1.5172506570816,3.93743491172791,1.26437556743622,3.93743491172791,1.5172506570816,4.15617275238037,1.26437556743622,4.15617275238037,1.5172506570816,4.37490320205688,1.26437556743622,4.37490320205688,1.5172506570816,4.59364032745361,1.26437556743622,4.59364032745361,1.5172506570816,4.81237697601318,1.01150047779083,5.0311164855957,1.01150047779083,5.2498631477356,1.01150047779083,5.46860694885254,
- 1.01150047779083,5.68736219406128,1.01150047779083,5.90611696243286,1.01150047779083,6.12487125396729,1.01150047779083,6.34362506866455,1.01150047779083,6.56236934661865,1.01150047779083,6.78111267089844,1.01150047779083,6.99986028671265,1.01150059700012,4.13082290151578e-007,1.01150047779083,0.218744844198227,1.01150012016296,0.437488228082657,1.01150012016296,0.65623015165329,1.01150012016296,0.874972581863403,1.01150012016296,1.09371733665466,1.01150012016296,1.31245982646942,1.01150012016296,1.53120338916779,1.01150012016296,1.74994683265686,1.01150012016296,1.96869111061096,1.01150012016296,2.18743491172791,1.01150047779083,2.40618681907654,1.01150059700012,2.62493300437927,1.01150047779083,2.84368014335632,1.01150047779083,3.06243753433228,1.01150047779083,3.28118944168091,1.01150047779083,3.4999463558197,1.01150047779083,3.71869206428528,1.01150047779083,3.93743443489075,1.01150047779083,4.15617179870605,1.01150047779083,4.37490272521973,1.01150047779083,4.59364032745361,1.01150047779083,4.81237697601318,0.758625388145447,5.0311164855957,0.758625388145447,5.24986267089844,0.758625388145447,5.46860694885254,0.758625388145447,5.68736219406128,0.758625388145447,5.9061164855957,0.758625388145447,6.12487125396729,0.758625388145447,6.34362506866455,0.758625388145447,6.56236934661865,0.758625388145447,6.78111267089844,0.758625388145447,6.99987125396729,0.758625984191895,2.75767831681151e-007,0.758626282215118,0.218744829297066,0.758625149726868,0.43748813867569,0.758625149726868,0.65623015165329,0.758625149726868,0.874972581863403,0.758625149726868,1.09371733665466,0.758625149726868,1.31245994567871,0.758625149726868,1.5312032699585,0.758625149726868,1.74994695186615,0.758625149726868,1.96869111061096,0.758625149726868,2.18743491172791,0.758625388145447,2.40618681907654,0.758625507354736,2.62493300437927,0.758625388145447,3.06243753433228,0.758625388145447,3.28118944168091,0.758625388145447,3.4999463558197,0.758625388145447,3.71869206428528,0.758625388145447,3.93743395805359,0.758625388145447,4.15617179870605,0.758625388145447,
- 4.37490224838257,0.758625388145447,4.59364032745361,0.758625388145447,4.81237649917603,0.505750298500061,5.03111696243286,0.505750298500061,5.24986267089844,0.505750298500061,5.4686074256897,0.505750298500061,5.68736219406128,0.505750298500061,5.9061164855957,0.505750298500061,6.12487125396729,0.505750298500061,6.34362506866455,0.505750298500061,6.56236934661865,0.505750298500061,6.78111267089844,0.505750298500061,6.9998574256897,0.505750417709351,2.13233107615451e-007,0.505750894546509,0.218744814395905,0.505750179290771,0.437488049268723,0.505750179290771,0.65623015165329,0.505750179290771,0.874972581863403,0.505750179290771,1.09371733665466,0.505750179290771,1.31245994567871,0.505750179290771,1.5312032699585,0.505750179290771,1.74994719028473,0.505750179290771,1.96869111061096,0.505750179290771,2.18743515014648,0.505750358104706,2.40618658065796,0.505750417709351,2.62493300437927,0.505750298500061,2.84368014335632,0.505750298500061,3.06243753433228,0.505750298500061,3.28118920326233,0.505750298500061,3.4999463558197,0.505750298500061,3.71869206428528,0.505750298500061,3.93743371963501,0.505750298500061,4.1561713218689,0.505750298500061,4.37490177154541,0.505750298500061,4.59364032745361,0.505750298500061,1.87497711181641,3.15063516609371e-006,1.87497711181641,0.252878397703171,1.68748712539673,0.252878397703171,1.68748712539673,3.15063516609371e-006,1.49999332427979,0.252878397703171,1.49999380111694,3.15063516609371e-006,1.31249904632568,0.252878397703171,1.31249904632568,3.15063516609371e-006,1.12499713897705,0.252878397703171,1.12499713897705,3.15063516609371e-006,0.937496185302734,0.252878397703171,0.937496185302734,3.15063516609371e-006,0.749993324279785,0.252878397703171,0.749993324279785,3.15063516609371e-006,0.562491416931152,0.252878397703171,0.562491416931152,3.15063516609371e-006,0.374998092651367,0.252878397703171,0.374998092651367,3.15063516609371e-006,0.187505722045898,0.252878397703171,0.187505722045898,3.15063516609371e-006,1.9073486328125e-005,0.25287863612175,1.38282775878906e-005,3.15063516609371e-006,
- 5.999831199646,3.15063516609371e-006,5.999831199646,0.252878159284592,5.81233739852905,0.252878397703171,5.81233739852905,3.15063516609371e-006,5.62484502792358,0.252878397703171,5.62484550476074,3.15063516609371e-006,5.43735361099243,0.252878397703171,5.43735361099243,3.15063516609371e-006,5.24986171722412,0.252878397703171,5.24986219406128,3.15063516609371e-006,5.06236839294434,0.252878397703171,5.06236839294434,3.15063516609371e-006,4.87487649917603,0.252878397703171,4.87487649917603,3.15063516609371e-006,4.68738412857056,0.252878397703171,4.68738412857056,3.15063516609371e-006,4.49989128112793,0.252878397703171,4.49989128112793,3.15063516609371e-006,4.3123984336853,0.252878397703171,4.3123984336853,3.15063516609371e-006,4.12490463256836,0.252878397703171,4.12490463256836,3.15063516609371e-006,3.93740558624268,0.252878397703171,3.93740558624268,3.15063516609371e-006,3.74991059303284,0.252878397703171,3.74991059303284,3.15063516609371e-006,3.56241488456726,0.252878397703171,3.56241488456726,3.15063516609371e-006,3.37491059303284,0.252878397703171,3.37491059303284,3.15063516609371e-006,3.18741130828857,0.252878397703171,3.18741130828857,3.15063516609371e-006,2.99990630149841,0.252878397703171,2.99990630149841,3.15063516609371e-006,2.81241202354431,0.252878397703171,2.81241202354431,3.15063516609371e-006,2.6249213218689,0.252878397703171,2.62492156028748,3.15063516609371e-006,2.43743324279785,0.252878397703171,2.43743324279785,3.15063516609371e-006,2.24995183944702,0.252878397703171,2.24995231628418,3.15063516609371e-006,2.0624635219574,0.252878397703171,2.0624635219574,3.15063516609371e-006,1.87497663497925,1.26437866687775,1.87497663497925,1.51725399494171,1.68748760223389,1.51725399494171,1.68748760223389,1.26437866687775,1.49999237060547,1.51725399494171,1.49999237060547,1.26437866687775,1.3125,1.51725399494171,1.31249952316284,1.26437866687775,1.12499666213989,1.51725399494171,1.12499666213989,1.26437866687775,0.93749475479126,1.51725399494171,0.93749475479126,1.26437866687775,0.749992847442627,1.51725399494171,
- 0.749992847442627,1.26437866687775,0.562491416931152,1.51725399494171,0.562491416931152,1.26437866687775,0.374998092651367,1.51725399494171,0.374998092651367,1.26437866687775,0.187505722045898,1.51725399494171,0.187505722045898,1.26437866687775,1.38282775878906e-005,1.51725399494171,2.288818359375e-005,1.26437819004059,5.999831199646,1.26437819004059,5.99983072280884,1.51725327968597,5.81233739852905,1.51725327968597,5.81233739852905,1.26437819004059,5.62484455108643,1.51725327968597,5.62484502792358,1.26437819004059,5.43735361099243,1.51725327968597,5.43735361099243,1.26437819004059,5.24986171722412,1.51725327968597,5.24986171722412,1.26437819004059,5.06236839294434,1.51725327968597,5.06236839294434,1.26437819004059,4.87487649917603,1.51725327968597,4.87487649917603,1.26437819004059,4.68738412857056,1.51725327968597,4.68738412857056,1.26437819004059,4.49989175796509,1.51725327968597,4.49989128112793,1.26437819004059,4.31239795684814,1.51725327968597,4.31239795684814,1.26437819004059,4.12490558624268,1.51725399494171,4.12490558624268,1.26437866687775,3.93740510940552,1.51725423336029,3.93740510940552,1.2643791437149,3.74991083145142,1.51725399494171,3.74991059303284,1.26437866687775,3.56241488456726,1.51725399494171,3.56241488456726,1.26437866687775,3.37491011619568,1.51725399494171,3.37491035461426,1.26437866687775,3.18741035461426,1.51725399494171,3.18741059303284,1.26437866687775,2.99990630149841,1.51725399494171,2.99990630149841,1.26437866687775,2.81241202354431,1.51725399494171,2.81241202354431,1.26437866687775,2.62491989135742,1.51725399494171,2.62491989135742,1.26437866687775,2.43743205070496,1.51725399494171,2.43743205070496,1.26437866687775,2.24995064735413,1.51725399494171,2.24995064735413,1.26437866687775,2.0624635219574,1.51725399494171,2.0624635219574,1.26437866687775,1.87497663497925,1.01150381565094,1.68748760223389,1.01150381565094,1.49999237060547,1.01150381565094,1.31249952316284,1.01150381565094,1.12499666213989,1.01150381565094,0.93749475479126,1.01150381565094,0.749992847442627,1.01150381565094,
- 0.562491416931152,1.01150381565094,0.374998092651367,1.01150381565094,0.187505722045898,1.01150381565094,9.5367431640625e-006,1.01150381565094,5.999831199646,1.01150381565094,5.81233739852905,1.01150333881378,5.62484502792358,1.01150333881378,5.43735361099243,1.01150333881378,5.24986171722412,1.01150333881378,5.06236839294434,1.01150333881378,4.87487649917603,1.01150333881378,4.68738412857056,1.01150333881378,4.49989128112793,1.01150333881378,4.31239795684814,1.01150333881378,4.12490510940552,1.01150381565094,3.9374053478241,1.01150381565094,3.74991059303284,1.01150381565094,3.56241488456726,1.01150381565094,3.37491035461426,1.01150381565094,3.18741059303284,1.01150381565094,2.99990630149841,1.01150381565094,2.81241202354431,1.01150381565094,2.62492036819458,1.01150381565094,2.43743300437927,1.01150381565094,2.24995112419128,1.01150381565094,2.0624635219574,1.01150381565094,1.87497663497925,0.75862842798233,1.68748760223389,0.75862842798233,1.49999284744263,0.75862842798233,1.31249952316284,0.75862842798233,1.12499666213989,0.75862842798233,0.937495231628418,0.75862842798233,0.749992847442627,0.75862842798233,0.562491416931152,0.75862842798233,0.374998092651367,0.75862842798233,0.187505722045898,0.75862842798233,0,0.758629143238068,5.999831199646,0.758629620075226,5.81233739852905,0.75862842798233,5.62484502792358,0.75862842798233,5.43735361099243,0.75862842798233,5.24986171722412,0.75862842798233,5.06236839294434,0.75862842798233,4.87487649917603,0.75862842798233,4.68738412857056,0.75862842798233,4.49989128112793,0.75862842798233,4.31239795684814,0.75862842798233,4.12490510940552,0.75862842798233,3.9374053478241,0.758628666400909,3.74991059303284,0.75862842798233,3.37491035461426,0.75862842798233,3.18741059303284,0.75862842798233,2.99990630149841,0.75862842798233,2.81241202354431,0.75862842798233,2.62492084503174,0.75862842798233,2.43743300437927,0.75862842798233,2.24995160102844,0.75862842798233,2.0624635219574,0.75862842798233,1.87497711181641,0.505753457546234,1.68748712539673,0.505753457546234,1.49999284744263,
- 0.505753457546234,1.31249904632568,0.505753457546234,1.12499666213989,0.505753457546234,0.937495231628418,0.505753457546234,0.749992847442627,0.505753457546234,0.562491416931152,0.505753457546234,0.374998092651367,0.505753457546234,0.187505722045898,0.505753457546234,1.19209289550781e-005,0.505753695964813,5.999831199646,0.505754172801971,5.81233739852905,0.505753219127655,5.62484502792358,0.505753219127655,5.43735361099243,0.505753219127655,5.24986171722412,0.505753219127655,5.06236839294434,0.505753219127655,4.87487649917603,0.505753219127655,4.68738412857056,0.505753219127655,4.49989128112793,0.505753219127655,4.31239795684814,0.505753219127655,4.12490510940552,0.505753457546234,3.93740558624268,0.505753695964813,3.74991059303284,0.505753457546234,3.56241488456726,0.505753457546234,3.37491035461426,0.505753457546234,3.18741083145142,0.505753457546234,2.99990630149841,0.505753457546234,2.81241202354431,0.505753457546234,2.62492084503174,0.505753457546234,2.43743324279785,0.505753457546234,2.24995183944702,0.505753457546234,2.0624635219574,0.505753457546234,2.7343065738678,1.01150047779083,2.7343065738678,0.758625388145447,2.7343065738678,0.505750298500061,2.95305871963501,1.01150047779083,2.95305871963501,0.758625388145447,2.95305871963501,0.505750298500061,3.65616273880005,1.01150381565094,3.65616273880005,0.75862842798233,3.65616273880005,0.505753457546234,3.46866273880005,1.01150381565094,3.46866273880005,0.75862842798233,3.46866273880005,0.505753457546234,0.937394380569458,-2.63475799560547,0.937394380569458,-2.47222280502319,0.775774478912354,-2.47222280502319,0.775774478912354,-2.63475799560547,2.13562393188477,-2.04549908638,2.13562393188477,-2.20803427696228,2.31334066390991,-2.20803427696228,2.31334066390991,-2.04549908638,1.95303630828857,-2.20803427696228,1.95303630828857,-2.04549908638,1.75361084938049,-2.2080340385437,1.75361084938049,-2.04549908638,1.53891265392303,-2.20803427696228,1.53891265392303,-2.04549908638,1.32405114173889,-2.20803427696228,1.32405114173889,-2.04549908638,1.12010836601257,-2.20803427696228,
- 1.12010836601257,-2.04549932479858,0.937394380569458,-2.20803427696228,0.937394380569458,-2.04549908638,0.775774478912354,-2.20803427696228,0.775774478912354,-2.04549932479858,0.937394380569458,-2.2647876739502,0.775774478912354,-2.2647876739502,0.775774478912354,-2.42732286453247,0.937394380569458,-2.42732286453247,1.12010836601257,-2.2647876739502,1.12010836601257,-2.42732286453247,1.32405114173889,-2.2647876739502,1.32405114173889,-2.42732286453247,1.53891265392303,-2.26478815078735,1.53891265392303,-2.42732286453247,1.75361084938049,-2.2647876739502,1.75361084938049,-2.42732286453247,1.95303630828857,-2.26478815078735,1.95303630828857,-2.42732286453247,2.13562393188477,-2.2647876739502,2.13562393188477,-2.42732286453247,2.31334066390991,-2.42732286453247,2.31334066390991,-2.2647876739502,1.12010836601257,-2.47222280502319,1.12010836601257,-2.63475799560547,1.32405114173889,-2.47222280502319,1.32405114173889,-2.63475799560547,1.53891265392303,-2.47222280502319,1.53891265392303,-2.63475799560547,1.75361084938049,-2.47222280502319,1.75361084938049,-2.63475799560547,1.95303630828857,-2.47222280502319,1.95303630828857,-2.63475799560547,2.13562393188477,-2.47222280502319,2.13562393188477,-2.63475799560547,2.31334066390991,-2.47222280502319,2.31334066390991,-2.63475799560547,0.937394380569458,-2.67373132705688,0.775774478912354,-2.67373132705688,0.775774478912354,-2.83626651763916,0.937394380569458,-2.83626651763916,1.12010836601257,-2.67373132705688,1.12010836601257,-2.83626651763916,1.32405114173889,-2.67373132705688,1.32405114173889,-2.83626651763916,1.53891265392303,-2.67373132705688,1.53891265392303,-2.83626651763916,1.75361084938049,-2.67373132705688,1.75361084938049,-2.83626651763916,1.95303630828857,-2.67373132705688,1.95303630828857,-2.83626651763916,2.13562393188477,-2.67373132705688,2.13562393188477,-2.83626651763916,2.31334066390991,-2.67373132705688,2.31334066390991,-2.83626651763916,2.15172076225281,-1.76649367809296,2.31334066390991,-1.76649367809296,2.31334066390991,-1.60395860671997,2.15172076225281,
- -1.60395860671997,0.9534912109375,-1.20390510559082,0.775774478912354,-1.20390510559082,0.775774478912354,-1.3664402961731,0.9534912109375,-1.3664402961731,1.13607883453369,-1.3664402961731,1.13607883453369,-1.20390510559082,1.33550429344177,-1.3664402961731,1.33550429344177,-1.20390510559082,1.55020248889923,-1.3664402961731,1.55020248889923,-1.20390510559082,1.76506400108337,-1.3664402961731,1.76506400108337,-1.20390510559082,1.96900677680969,-1.3664402961731,1.96900677680969,-1.2039053440094,2.15172076225281,-1.3664402961731,2.15172076225281,-1.20390510559082,2.31334066390991,-1.3664402961731,2.31334066390991,-1.2039053440094,2.15172076225281,-1.4172670841217,2.15172076225281,-1.5798020362854,2.31334066390991,-1.5798020362854,2.31334066390991,-1.4172670841217,1.96900677680969,-1.4172670841217,1.96900677680969,-1.5798020362854,1.76506400108337,-1.4172670841217,1.76506400108337,-1.5798020362854,1.55020248889923,-1.4172670841217,1.55020248889923,-1.5798020362854,1.33550429344177,-1.4172670841217,1.33550429344177,-1.57980227470398,1.13607883453369,-1.41726732254028,1.13607883453369,-1.5798020362854,0.9534912109375,-1.4172670841217,0.9534912109375,-1.57980227470398,0.775774478912354,-1.5798020362854,0.775774478912354,-1.4172670841217,1.96900677680969,-1.60395860671997,1.96900677680969,-1.76649379730225,1.76506400108337,-1.60395860671997,1.76506400108337,-1.76649367809296,1.55020248889923,-1.60395860671997,1.55020248889923,-1.76649367809296,1.33550429344177,-1.60395860671997,1.33550429344177,-1.76649367809296,1.13607883453369,-1.60395860671997,1.13607883453369,-1.76649367809296,0.9534912109375,-1.60395860671997,0.9534912109375,-1.76649367809296,0.775774478912354,-1.60395860671997,0.775774478912354,-1.76649367809296,2.15172076225281,-1.78176021575928,2.15172076225281,-1.94429528713226,2.31334066390991,-1.94429528713226,2.31334066390991,-1.78176021575928,1.96900677680969,-1.78176021575928,1.96900677680969,-1.94429528713226,1.76506400108337,-1.78176021575928,1.76506400108337,-1.94429528713226,1.55020248889923,-1.78176021575928,
- 1.55020248889923,-1.94429528713226,1.33550429344177,-1.78176021575928,1.33550429344177,-1.94429528713226,1.13607883453369,-1.78176021575928,1.13607883453369,-1.94429540634155,0.9534912109375,-1.78176021575928,0.9534912109375,-1.94429528713226,0.775774478912354,-1.78176021575928,0.775774478912354,-1.94429528713226,0.56822282075882,0.265221774578094,0.651033401489258,0.281883269548416,0.639989614486694,0.454478800296783,0.563888430595398,0.460378408432007,0.314472675323486,0.45414525270462,0.316249132156372,0.464462846517563,0.243762567639351,0.462910056114197,0.243548437952995,0.457541525363922,0.562058329582214,0.815716505050659,0.480867654085159,0.744877457618713,0.564170181751251,0.627433001995087,0.984057366847992,0.344479262828827,0.986024141311646,0.470556139945984,0.974040985107422,0.466085195541382,0.72833377122879,0.466112941503525,0.776334881782532,0.466931104660034,0.773598194122314,0.629267752170563,0.725995540618896,0.625412106513977,0.653295755386353,0.809187650680542,0.663752019405365,0.627372324466705,0.661735117435455,0.805055975914001,0.559323608875275,0.983009576797485,0.608413577079773,0.825200974941254,0.640528559684753,0.973015427589417,0.159469977021217,0.27668622136116,0.163802221417427,0.36059957742691,0.157148972153664,0.360757887363434,0.17594887316227,0.803154230117798,0.161242112517357,0.784672439098358,0.160628035664558,0.717049479484558,0.316232681274414,0.841520965099335,0.314828872680664,0.976958870887756,0.241128042340279,0.983860850334167,0.240881845355034,0.818339943885803,0.611778020858765,0.467631161212921,0.642244398593903,0.547451674938202,0.626427054405212,0.619065046310425,0.564406394958496,0.62201988697052,0.563916563987732,0.467342138290405,0.240880087018013,0.812818646430969,0.2420264929533,0.628064393997192,0.315363347530365,0.628137290477753,0.305009931325912,0.811232089996338,0.525453448295593,0.26231175661087,0.522842168807983,0.256372630596161,0.568718492984772,0.259451419115067,0.322720944881439,0.796192705631256,0.478686958551407,0.263930767774582,0.491300612688065,
- 0.260244160890579,0.479227304458618,0.277105391025543,0.332485616207123,0.465049803256989,0.401788622140884,0.46394544839859,0.399586290121078,0.622348248958588,0.33570808172226,0.620140552520752,0.479652762413025,0.657012224197388,0.646789312362671,0.81240576505661,0.64479672908783,0.639150381088257,0.652386903762817,0.827859044075012,0.647516369819641,0.965706527233124,0.645092606544495,0.825522243976593,0.492206931114197,0.461434185504913,0.455158770084381,0.626716434955597,0.451133221387863,0.810630917549133,0.395990490913391,0.817137479782104,0.399362355470657,0.629257917404175,0.495367228984833,0.812524974346161,0.457449197769165,0.839829385280609,0.395913034677505,0.821518361568451,0.172645673155785,0.629663169384003,0.171472117304802,0.614707767963409,0.487300843000412,0.822481334209442,0.493021339178085,0.817911446094513,0.478452205657959,0.866204798221588,0.486157238483429,0.812815010547638,0.472989559173584,0.790342688560486,0.474907159805298,0.744882106781006,0.323577284812927,0.843742549419403,0.333368748426437,0.976017713546753,0.32480576634407,0.96162611246109,0.63181483745575,0.628981232643127,0.654856443405151,0.61117821931839,0.660376071929932,0.821462333202362,0.660499095916748,0.983581781387329,0.504627704620361,0.627276241779327,0.452084124088287,0.620649456977844,0.470830053091049,0.466629892587662,0.480874836444855,0.55218768119812,0.490988075733185,0.61328136920929,0.478126108646393,0.631805002689362,0.974214553833008,0.98486340045929,0.962304353713989,0.824326872825623,0.986024141311646,0.865287661552429,0.494130671024323,0.275798738002777,0.658007979393005,0.292339146137238,0.65370500087738,0.432794332504272,0.333715915679932,0.454250633716583,0.337385296821594,0.262161254882813,0.412637740373611,0.26451912522316,0.401870310306549,0.458857834339142,0.680412650108337,0.466558873653412,0.66656506061554,0.621894776821136,0.654926955699921,0.492236077785492,0.177052602171898,0.463093340396881,0.162467941641808,0.462888985872269,0.17419122159481,0.459328502416611,0.491947054862976,0.467524528503418,
- 0.48239877820015,0.459132432937622,0.654095768928528,0.660075187683105,0.471260130405426,0.460340261459351,0.679005324840546,0.46263325214386,0.728395998477936,0.461750239133835,0.654852449893951,0.467862069606781,0.302760481834412,0.820727646350861,0.602484881877899,0.816682994365692,0.161264821887016,0.622668445110321,0.172660335898399,0.54345178604126,0.324649661779404,0.452768236398697,0.325709879398346,0.346384793519974,0.168563976883888,0.271733582019806,0.244106248021126,0.256961703300476,0.483754754066467,0.97734546661377,0.242102727293968,0.619433701038361,0.649846196174622,0.257646918296814,0.65733414888382,0.258551925420761,0.672805070877075,0.266852140426636,0.678712487220764,0.27632263302803,0.330794632434845,0.246963679790497,0.339218378067017,0.253643810749054,0.243946060538292,0.251300275325775,0.168239817023277,0.256533056497574,0.973279476165771,0.631101608276367,0.986024141311646,0.632217228412628,0.168039813637733,0.830272734165192,0.32233864068985,0.619080185890198,0.322989970445633,0.635083079338074,0.666059017181396,0.281845778226852,0.167349830269814,0.976640641689301,0.405477613210678,0.97720193862915,0.726129174232483,0.630254089832306,0.562464892864227,0.823702394962311,0.412688940763474,0.255624264478683,0.314176440238953,0.620930016040802,0.838913261890411,0.81359738111496,0.8413405418396,0.822668194770813,0.800585627555847,0.860344290733337,0.795989811420441,0.79228800535202,0.986024141311646,0.802093505859375,0.961355686187744,0.818050086498261,0.976323425769806,0.797898769378662,0.334126472473145,0.626672208309174,0.32939624786377,0.275321006774902,0.314326405525208,0.26180574297905,0.336580991744995,0.822968065738678,0.332162380218506,0.815138638019562,0.470511972904205,0.906128346920013,0.987110376358032,0.982086420059204,0.969059705734253,0.274425476789474,0.98284900188446,0.274887472391129,0.969772100448608,0.265130221843719,0.974470853805542,0.637994468212128,0.324545592069626,0.468856930732727,0.158446058630943,0.974398553371429,0.157912954688072,0.830502152442932,0.470582127571106,
- 0.97213226556778,0.318570077419281,0.250938475131989,0.731864869594574,0.275119483470917,0.731071472167969,0.267739802598953,0.782851934432983,0.267821878194809,0.781634926795959,0.276601880788803,0.973341763019562,0.472994148731232,0.977505743503571,0.344733208417892,0.66324782371521,0.431643515825272,0.777967691421509,0.460676640272141,0.514732182025909,0.981611728668213,0.72089409828186,0.821037411689758,0.757523059844971,0.824855625629425,0.772486329078674,0.86131489276886,0.77501392364502,0.976841568946838,0.721421003341675,0.981828331947327,0.779466390609741,0.634128510951996,0.160359457135201,0.262830406427383,0.720696568489075,0.815064907073975,0.755710661411285,0.817486763000488,0.785544991493225,0.795607089996338,0.787339329719543,0.834826767444611,0.791281461715698,0.285563051700592,0.790993511676788,0.273117989301682,0.801990926265717,0.270214438438416,0.802817106246948,0.279121458530426,0.786727786064148,0.970533013343811,0.796403646469116,0.983501434326172,0.792169690132141,0.63409298658371,0.791450142860413,0.492243945598602,0.791624486446381,0.34745916724205,0.794032454490662,0.451268166303635,0.775314569473267,0.792307376861572,0.892643570899963,0.274390369653702,0.892728924751282,0.266594141721725,0.89245742559433,0.990655779838562,0.890857338905334,0.822009682655334,0.893964171409607,0.632924556732178,0.894562005996704,0.62713235616684,0.890827178955078,0.815278649330139,0.89575469493866,0.463133931159973,0.896018147468567,0.471351832151413,0.812949120998383,0.47166246175766,0.806636333465576,0.543469488620758,0.81093692779541,0.623522758483887,0.802647829055786,0.445386409759521,0.812379539012909,0.465350151062012,0.806151866912842,0.629575312137604,0.0903670117259026,0.463999569416046,0.148881271481514,0.460160732269287,0.152503803372383,0.621879696846008,0.094897136092186,0.620186805725098,0.0270303934812546,0.801061570644379,0.0365517288446426,0.627800166606903,0.0355781763792038,0.803791582584381,0.0352348536252975,0.990207076072693,0.0356507450342178,0.981645464897156,0.0960242375731468,0.980417907238007,
- 0.0398750156164169,0.466373562812805,0.0434053093194962,0.620134353637695,0.0269170552492142,0.488004982471466,0.0278220027685165,0.652385890483856,0.0267984122037888,0.600576937198639,0.0354234725236893,0.456222265958786,0.0963767915964127,0.455658942461014,0.0174058228731155,0.462196677923203,0.0264795273542404,0.289590746164322,0.0134538263082504,0.270753085613251,0.0376585870981216,0.266603469848633,0.0948010832071304,0.626824617385864,0.0969859138131142,0.263581156730652,0.0970609933137894,0.256996899843216,0.150541409850121,0.256646126508713,0.149393334984779,0.262534350156784,0.0277488976716995,0.429344028234482,0.151720032095909,0.449683994054794,0.0893183574080467,0.814825594425201,0.146918177604675,0.817610681056976,0.149321600794792,0.979634284973145,0.153646424412727,0.631666839122772,0.0346330255270004,0.814769566059113,0.0890380665659904,0.808473885059357,0.149250045418739,0.81097686290741,0.333506226539612,0.20244175195694,0.321322381496429,0.215474128723145,0.212311714887619,0.219094514846802,0.185194075107574,0.188393652439117,0.184036493301392,0.0412274077534676,0.194486856460571,0.0321927666664124,0.330694377422333,0.0361021161079407,0.346486032009125,0.0507869198918343,0.348552644252777,0.184306144714355,0.0261907130479813,0.82157438993454,0.0224321037530899,0.966704189777374,0.56822282075882,0.265221774578094,0.651033401489258,0.281883269548416,0.639989614486694,0.454478800296783,0.563888430595398,0.460378408432007,0.314472675323486,0.45414525270462,0.316249132156372,0.464462846517563,0.243762567639351,0.462910056114197,0.243548437952995,0.457541525363922,0.562058329582214,0.815716505050659,0.480867654085159,0.744877457618713,0.564170181751251,0.627433001995087,0.984057366847992,0.344479262828827,0.986024141311646,0.470556139945984,0.974040985107422,0.466085195541382,0.72833377122879,0.466112941503525,0.776334881782532,0.466931104660034,0.773598194122314,0.629267752170563,0.725995540618896,0.625412106513977,0.653295755386353,0.809187650680542,0.663752019405365,0.627372324466705,0.661735117435455,
- 0.805055975914001,0.559323608875275,0.983009576797485,0.608413577079773,0.825200974941254,0.640528559684753,0.973015427589417,0.159469977021217,0.27668622136116,0.163802221417427,0.36059957742691,0.157148972153664,0.360757887363434,0.17594887316227,0.803154230117798,0.161242112517357,0.784672439098358,0.160628035664558,0.717049479484558,0.316232681274414,0.841520965099335,0.314828872680664,0.976958870887756,0.241128042340279,0.983860850334167,0.240881845355034,0.818339943885803,0.611778020858765,0.467631161212921,0.642244398593903,0.547451674938202,0.626427054405212,0.619065046310425,0.564406394958496,0.62201988697052,0.563916563987732,0.467342138290405,0.240880087018013,0.812818646430969,0.2420264929533,0.628064393997192,0.315363347530365,0.628137290477753,0.305009931325912,0.811232089996338,0.525453448295593,0.26231175661087,0.522842168807983,0.256372630596161,0.568718492984772,0.259451419115067,0.322720944881439,0.796192705631256,0.478686958551407,0.263930767774582,0.491300612688065,0.260244160890579,0.479227304458618,0.277105391025543,0.332485616207123,0.465049803256989,0.401788622140884,0.46394544839859,0.399586290121078,0.622348248958588,0.33570808172226,0.620140552520752,0.479652762413025,0.657012224197388,0.646789312362671,0.81240576505661,0.64479672908783,0.639150381088257,0.652386903762817,0.827859044075012,0.647516369819641,0.965706527233124,0.645092606544495,0.825522243976593,0.492206931114197,0.461434185504913,0.455158770084381,0.626716434955597,0.451133221387863,0.810630917549133,0.395990490913391,0.817137479782104,0.399362355470657,0.629257917404175,0.495367228984833,0.812524974346161,0.457449197769165,0.839829385280609,0.395913034677505,0.821518361568451,0.172645673155785,0.629663169384003,0.171472117304802,0.614707767963409,0.487300843000412,0.822481334209442,0.493021339178085,0.817911446094513,0.478452205657959,0.866204798221588,0.486157238483429,0.812815010547638,0.472989559173584,0.790342688560486,0.474907159805298,0.744882106781006,0.323577284812927,0.843742549419403,0.333368748426437,0.976017713546753,
- 0.32480576634407,0.96162611246109,0.63181483745575,0.628981232643127,0.654856443405151,0.61117821931839,0.660376071929932,0.821462333202362,0.660499095916748,0.983581781387329,0.122671283781528,0.0273185670375824,0.164393857121468,0.0478752925992012,0.166750967502594,0.208594918251038,0.504627704620361,0.627276241779327,0.452084124088287,0.620649456977844,0.470830053091049,0.466629892587662,0.480874836444855,0.55218768119812,0.490988075733185,0.61328136920929,0.478126108646393,0.631805002689362,0.00835613440722227,0.0969506949186325,0.0131039945408702,0.0307190269231796,0.974214553833008,0.98486340045929,0.962304353713989,0.824326872825623,0.986024141311646,0.865287661552429,0.494130671024323,0.275798738002777,0.658007979393005,0.292339146137238,0.65370500087738,0.432794332504272,0.333715915679932,0.454250633716583,0.337385296821594,0.262161254882813,0.412637740373611,0.26451912522316,0.401870310306549,0.458857834339142,0.680412650108337,0.466558873653412,0.66656506061554,0.621894776821136,0.654926955699921,0.492236077785492,0.177052602171898,0.463093340396881,0.162467941641808,0.462888985872269,0.17419122159481,0.459328502416611,0.491947054862976,0.467524528503418,0.48239877820015,0.459132432937622,0.654095768928528,0.660075187683105,0.471260130405426,0.460340261459351,0.679005324840546,0.46263325214386,0.728395998477936,0.461750239133835,0.654852449893951,0.467862069606781,0.302760481834412,0.820727646350861,0.602484881877899,0.816682994365692,0.161264821887016,0.622668445110321,0.172660335898399,0.54345178604126,0.324649661779404,0.452768236398697,0.325709879398346,0.346384793519974,0.168563976883888,0.271733582019806,0.244106248021126,0.256961703300476,0.483754754066467,0.97734546661377,0.242102727293968,0.619433701038361,0.649846196174622,0.257646918296814,0.65733414888382,0.258551925420761,0.672805070877075,0.266852140426636,0.678712487220764,0.27632263302803,0.330794632434845,0.246963679790497,0.339218378067017,0.253643810749054,0.0163896027952433,0.214215338230133,0.243946060538292,0.251300275325775,0.168239817023277,
- 0.256533056497574,0.973279476165771,0.631101608276367,0.986024141311646,0.632217228412628,0.168039813637733,0.830272734165192,0.32233864068985,0.619080185890198,0.322989970445633,0.635083079338074,0.666059017181396,0.281845778226852,0.167349830269814,0.976640641689301,0.405477613210678,0.97720193862915,0.726129174232483,0.630254089832306,0.562464892864227,0.823702394962311,0.412688940763474,0.255624264478683,0.314176440238953,0.620930016040802,0.838913261890411,0.81359738111496,0.8413405418396,0.822668194770813,0.800585627555847,0.860344290733337,0.795989811420441,0.79228800535202,0.986024141311646,0.802093505859375,0.961355686187744,0.818050086498261,0.976323425769806,0.797898769378662,0.334126472473145,0.626672208309174,0.32939624786377,0.275321006774902,0.314326405525208,0.26180574297905,0.336580991744995,0.822968065738678,0.332162380218506,0.815138638019562,0.470511972904205,0.906128346920013,0.987110376358032,0.982086420059204,0.969059705734253,0.274425476789474,0.98284900188446,0.274887472391129,0.969772100448608,0.265130221843719,0.974470853805542,0.637994468212128,0.324545592069626,0.468856930732727,0.158446058630943,0.974398553371429,0.157912954688072,0.830502152442932,0.470582127571106,0.97213226556778,0.318570077419281,0.250938475131989,0.731864869594574,0.275119483470917,0.731071472167969,0.267739802598953,0.782851934432983,0.267821878194809,0.781634926795959,0.276601880788803,0.973341763019562,0.472994148731232,0.977505743503571,0.344733208417892,0.66324782371521,0.431643515825272,0.777967691421509,0.460676640272141,0.514732182025909,0.981611728668213,0.72089409828186,0.821037411689758,0.757523059844971,0.824855625629425,0.772486329078674,0.86131489276886,0.77501392364502,0.976841568946838,0.721421003341675,0.981828331947327,0.779466390609741,0.634128510951996,0.160359457135201,0.262830406427383,0.720696568489075,0.815064907073975,0.755710661411285,0.817486763000488,0.785544991493225,0.795607089996338,0.787339329719543,0.834826767444611,0.791281461715698,0.285563051700592,0.790993511676788,0.273117989301682,
- 0.801990926265717,0.270214438438416,0.802817106246948,0.279121458530426,0.786727786064148,0.970533013343811,0.796403646469116,0.983501434326172,0.792169690132141,0.63409298658371,0.791450142860413,0.492243945598602,0.791624486446381,0.34745916724205,0.794032454490662,0.451268166303635,0.775314569473267,0.792307376861572,0.892643570899963,0.274390369653702,0.892728924751282,0.266594141721725,0.89245742559433,0.990655779838562,0.890857338905334,0.822009682655334,0.893964171409607,0.632924556732178,0.894562005996704,0.62713235616684,0.890827178955078,0.815278649330139,0.89575469493866,0.463133931159973,0.896018147468567,0.471351832151413,0.812949120998383,0.47166246175766,0.806636333465576,0.543469488620758,0.81093692779541,0.623522758483887,0.802647829055786,0.445386409759521,0.812379539012909,0.465350151062012,0.806151866912842,0.629575312137604,0.0903670117259026,0.463999569416046,0.148881271481514,0.460160732269287,0.152503803372383,0.621879696846008,0.094897136092186,0.620186805725098,0.0270303934812546,0.801061570644379,0.0365517288446426,0.627800166606903,0.0355781763792038,0.803791582584381,0.0352348536252975,0.990207076072693,0.0356507450342178,0.981645464897156,0.0960242375731468,0.980417907238007,0.0398750156164169,0.466373562812805,0.0434053093194962,0.620134353637695,0.0269170552492142,0.488004982471466,0.0278220027685165,0.652385890483856,0.0267984122037888,0.600576937198639,0.0354234725236893,0.456222265958786,0.0963767915964127,0.455658942461014,0.0174058228731155,0.462196677923203,0.0264795273542404,0.289590746164322,0.0134538263082504,0.270753085613251,0.0376585870981216,0.266603469848633,0.0948010832071304,0.626824617385864,0.0969859138131142,0.263581156730652,0.0970609933137894,0.256996899843216,0.150541409850121,0.256646126508713,0.149393334984779,0.262534350156784,0.0277488976716995,0.429344028234482,0.151720032095909,0.449683994054794,0.0893183574080467,0.814825594425201,0.146918177604675,0.817610681056976,0.149321600794792,0.979634284973145,0.153646424412727,0.631666839122772,0.0346330255270004,
- 0.814769566059113,0.0890380665659904,0.808473885059357,0.149250045418739,0.81097686290741,0.333506226539612,0.20244175195694,0.321322381496429,0.215474128723145,0.212311714887619,0.219094514846802,0.185194075107574,0.188393652439117,0.184036493301392,0.0412274077534676,0.194486856460571,0.0321927666664124,0.330694377422333,0.0361021161079407,0.346486032009125,0.0507869198918343,0.348552644252777,0.184306144714355,0.0261907130479813,0.82157438993454,0.0224321037530899,0.966704189777374,0.56822282075882,0.265221774578094,0.651033401489258,0.281883269548416,0.639989614486694,0.454478800296783,0.563888430595398,0.460378408432007,0.314472675323486,0.45414525270462,0.316249132156372,0.464462846517563,0.243762567639351,0.462910056114197,0.243548437952995,0.457541525363922,0.562058329582214,0.815716505050659,0.480867654085159,0.744877457618713,0.564170181751251,0.627433001995087,0.984057366847992,0.344479262828827,0.986024141311646,0.470556139945984,0.974040985107422,0.466085195541382,0.72833377122879,0.466112941503525,0.776334881782532,0.466931104660034,0.773598194122314,0.629267752170563,0.725995540618896,0.625412106513977,0.653295755386353,0.809187650680542,0.663752019405365,0.627372324466705,0.661735117435455,0.805055975914001,0.559323608875275,0.983009576797485,0.608413577079773,0.825200974941254,0.640528559684753,0.973015427589417,0.159469977021217,0.27668622136116,0.163802221417427,0.36059957742691,0.157148972153664,0.360757887363434,0.17594887316227,0.803154230117798,0.161242112517357,0.784672439098358,0.160628035664558,0.717049479484558,0.316232681274414,0.841520965099335,0.314828872680664,0.976958870887756,0.241128042340279,0.983860850334167,0.240881845355034,0.818339943885803,0.611778020858765,0.467631161212921,0.642244398593903,0.547451674938202,0.626427054405212,0.619065046310425,0.564406394958496,0.62201988697052,0.563916563987732,0.467342138290405,0.240880087018013,0.812818646430969,0.2420264929533,0.628064393997192,0.315363347530365,0.628137290477753,0.305009931325912,0.811232089996338,0.525453448295593,0.26231175661087,
- 0.522842168807983,0.256372630596161,0.568718492984772,0.259451419115067,0.322720944881439,0.796192705631256,0.478686958551407,0.263930767774582,0.491300612688065,0.260244160890579,0.479227304458618,0.277105391025543,0.332485616207123,0.465049803256989,0.401788622140884,0.46394544839859,0.399586290121078,0.622348248958588,0.33570808172226,0.620140552520752,0.479652762413025,0.657012224197388,0.646789312362671,0.81240576505661,0.64479672908783,0.639150381088257,0.652386903762817,0.827859044075012,0.647516369819641,0.965706527233124,0.645092606544495,0.825522243976593,0.492206931114197,0.461434185504913,0.455158770084381,0.626716434955597,0.451133221387863,0.810630917549133,0.395990490913391,0.817137479782104,0.399362355470657,0.629257917404175,0.495367228984833,0.812524974346161,0.457449197769165,0.839829385280609,0.395913034677505,0.821518361568451,0.172645673155785,0.629663169384003,0.171472117304802,0.614707767963409,0.487300843000412,0.822481334209442,0.493021339178085,0.817911446094513,0.478452205657959,0.866204798221588,0.486157238483429,0.812815010547638,0.472989559173584,0.790342688560486,0.474907159805298,0.744882106781006,0.323577284812927,0.843742549419403,0.333368748426437,0.976017713546753,0.32480576634407,0.96162611246109,0.63181483745575,0.628981232643127,0.654856443405151,0.61117821931839,0.660376071929932,0.821462333202362,0.660499095916748,0.983581781387329,0.122671283781528,0.0273185670375824,0.164393857121468,0.0478752925992012,0.166750967502594,0.208594918251038,0.504627704620361,0.627276241779327,0.452084124088287,0.620649456977844,0.470830053091049,0.466629892587662,0.480874836444855,0.55218768119812,0.490988075733185,0.61328136920929,0.478126108646393,0.631805002689362,0.00835613440722227,0.0969506949186325,0.0131039945408702,0.0307190269231796,0.974214553833008,0.98486340045929,0.962304353713989,0.824326872825623,0.986024141311646,0.865287661552429,0.494130671024323,0.275798738002777,0.658007979393005,0.292339146137238,0.65370500087738,0.432794332504272,0.333715915679932,0.454250633716583,0.337385296821594,
- 0.262161254882813,0.412637740373611,0.26451912522316,0.401870310306549,0.458857834339142,0.680412650108337,0.466558873653412,0.66656506061554,0.621894776821136,0.654926955699921,0.492236077785492,0.177052602171898,0.463093340396881,0.162467941641808,0.462888985872269,0.17419122159481,0.459328502416611,0.491947054862976,0.467524528503418,0.48239877820015,0.459132432937622,0.654095768928528,0.660075187683105,0.471260130405426,0.460340261459351,0.679005324840546,0.46263325214386,0.728395998477936,0.461750239133835,0.654852449893951,0.467862069606781,0.302760481834412,0.820727646350861,0.602484881877899,0.816682994365692,0.161264821887016,0.622668445110321,0.172660335898399,0.54345178604126,0.324649661779404,0.452768236398697,0.325709879398346,0.346384793519974,0.168563976883888,0.271733582019806,0.244106248021126,0.256961703300476,0.483754754066467,0.97734546661377,0.242102727293968,0.619433701038361,0.649846196174622,0.257646918296814,0.65733414888382,0.258551925420761,0.672805070877075,0.266852140426636,0.678712487220764,0.27632263302803,0.330794632434845,0.246963679790497,0.339218378067017,0.253643810749054,0.0163896027952433,0.214215338230133,0.243946060538292,0.251300275325775,0.168239817023277,0.256533056497574,0.973279476165771,0.631101608276367,0.986024141311646,0.632217228412628,0.168039813637733,0.830272734165192,0.32233864068985,0.619080185890198,0.322989970445633,0.635083079338074,0.666059017181396,0.281845778226852,0.167349830269814,0.976640641689301,0.405477613210678,0.97720193862915,0.726129174232483,0.630254089832306,0.562464892864227,0.823702394962311,0.412688940763474,0.255624264478683,0.314176440238953,0.620930016040802,0.838913261890411,0.81359738111496,0.8413405418396,0.822668194770813,0.800585627555847,0.860344290733337,0.795989811420441,0.79228800535202,0.986024141311646,0.802093505859375,0.961355686187744,0.818050086498261,0.976323425769806,0.797898769378662,0.334126472473145,0.626672208309174,0.32939624786377,0.275321006774902,0.314326405525208,0.26180574297905,0.336580991744995,0.822968065738678,
- 0.332162380218506,0.815138638019562,0.470511972904205,0.906128346920013,0.987110376358032,0.982086420059204,0.969059705734253,0.274425476789474,0.98284900188446,0.274887472391129,0.969772100448608,0.265130221843719,0.974470853805542,0.637994468212128,0.324545592069626,0.468856930732727,0.158446058630943,0.974398553371429,0.157912954688072,0.830502152442932,0.470582127571106,0.97213226556778,0.318570077419281,0.250938475131989,0.731864869594574,0.275119483470917,0.731071472167969,0.267739802598953,0.782851934432983,0.267821878194809,0.781634926795959,0.276601880788803,0.973341763019562,0.472994148731232,0.977505743503571,0.344733208417892,0.66324782371521,0.431643515825272,0.777967691421509,0.460676640272141,0.514732182025909,0.981611728668213,0.72089409828186,0.821037411689758,0.757523059844971,0.824855625629425,0.772486329078674,0.86131489276886,0.77501392364502,0.976841568946838,0.721421003341675,0.981828331947327,0.779466390609741,0.634128510951996,0.160359457135201,0.262830406427383,0.720696568489075,0.815064907073975,0.755710661411285,0.817486763000488,0.785544991493225,0.795607089996338,0.787339329719543,0.834826767444611,0.791281461715698,0.285563051700592,0.790993511676788,0.273117989301682,0.801990926265717,0.270214438438416,0.802817106246948,0.279121458530426,0.786727786064148,0.970533013343811,0.796403646469116,0.983501434326172,0.792169690132141,0.63409298658371,0.791450142860413,0.492243945598602,0.791624486446381,0.34745916724205,0.794032454490662,0.451268166303635,0.775314569473267,0.792307376861572,0.892643570899963,0.274390369653702,0.892728924751282,0.266594141721725,0.89245742559433,0.990655779838562,0.890857338905334,0.822009682655334,0.893964171409607,0.632924556732178,0.894562005996704,0.62713235616684,0.890827178955078,0.815278649330139,0.89575469493866,0.463133931159973,0.896018147468567,0.471351832151413,0.812949120998383,0.47166246175766,0.806636333465576,0.543469488620758,0.81093692779541,0.623522758483887,0.802647829055786,0.445386409759521,0.812379539012909,0.465350151062012,0.806151866912842,
- 0.629575312137604,0.0903670117259026,0.463999569416046,0.148881271481514,0.460160732269287,0.152503803372383,0.621879696846008,0.094897136092186,0.620186805725098,0.0270303934812546,0.801061570644379,0.0365517288446426,0.627800166606903,0.0355781763792038,0.803791582584381,0.0352348536252975,0.990207076072693,0.0356507450342178,0.981645464897156,0.0960242375731468,0.980417907238007,0.0398750156164169,0.466373562812805,0.0434053093194962,0.620134353637695,0.0269170552492142,0.488004982471466,0.0278220027685165,0.652385890483856,0.0267984122037888,0.600576937198639,0.0354234725236893,0.456222265958786,0.0963767915964127,0.455658942461014,0.0174058228731155,0.462196677923203,0.0264795273542404,0.289590746164322,0.0134538263082504,0.270753085613251,0.0376585870981216,0.266603469848633,0.0948010832071304,0.626824617385864,0.0969859138131142,0.263581156730652,0.0970609933137894,0.256996899843216,0.150541409850121,0.256646126508713,0.149393334984779,0.262534350156784,0.0277488976716995,0.429344028234482,0.151720032095909,0.449683994054794,0.0893183574080467,0.814825594425201,0.146918177604675,0.817610681056976,0.149321600794792,0.979634284973145,0.153646424412727,0.631666839122772,0.0346330255270004,0.814769566059113,0.0890380665659904,0.808473885059357,0.149250045418739,0.81097686290741,0.333506226539612,0.20244175195694,0.321322381496429,0.215474128723145,0.212311714887619,0.219094514846802,0.185194075107574,0.188393652439117,0.184036493301392,0.0412274077534676,0.194486856460571,0.0321927666664124,0.330694377422333,0.0361021161079407,0.346486032009125,0.0507869198918343,0.348552644252777,0.184306144714355,0.0261907130479813,0.82157438993454,0.0224321037530899,0.966704189777374,0.984057366847992,0.344479262828827,0.986024141311646,0.470556139945984,0.974040985107422,0.466085195541382,0.72833377122879,0.466112941503525,0.776334881782532,0.466931104660034,0.773598194122314,0.629267752170563,0.725995540618896,0.625412106513977,0.653295755386353,0.809187650680542,0.663752019405365,0.627372324466705,0.661735117435455,0.805055975914001,
- 0.660376071929932,0.821462333202362,0.660499095916748,0.983581781387329,0.647516369819641,0.965706527233124,0.652386903762817,0.827859044075012,0.122671283781528,0.0273185670375824,0.164393857121468,0.0478752925992012,0.166750967502594,0.208594918251038,0.00835613440722227,0.0969506949186325,0.0131039945408702,0.0307190269231796,0.974214553833008,0.98486340045929,0.962304353713989,0.824326872825623,0.986024141311646,0.865287661552429,0.680412650108337,0.466558873653412,0.66656506061554,0.621894776821136,0.654926955699921,0.492236077785492,0.654095768928528,0.660075187683105,0.654856443405151,0.61117821931839,0.679005324840546,0.46263325214386,0.728395998477936,0.461750239133835,0.654852449893951,0.467862069606781,0.672805070877075,0.266852140426636,0.678712487220764,0.27632263302803,0.65733414888382,0.258551925420761,0.0163896027952433,0.214215338230133,0.973279476165771,0.631101608276367,0.986024141311646,0.632217228412628,0.726129174232483,0.630254089832306,0.838913261890411,0.81359738111496,0.8413405418396,0.822668194770813,0.800585627555847,0.860344290733337,0.795989811420441,0.79228800535202,0.986024141311646,0.802093505859375,0.961355686187744,0.818050086498261,0.976323425769806,0.797898769378662,0.987110376358032,0.982086420059204,0.969059705734253,0.274425476789474,0.98284900188446,0.274887472391129,0.969772100448608,0.265130221843719,0.974470853805542,0.637994468212128,0.731864869594574,0.275119483470917,0.731071472167969,0.267739802598953,0.782851934432983,0.267821878194809,0.781634926795959,0.276601880788803,0.973341763019562,0.472994148731232,0.977505743503571,0.344733208417892,0.66324782371521,0.431643515825272,0.777967691421509,0.460676640272141,0.72089409828186,0.821037411689758,0.757523059844971,0.824855625629425,0.772486329078674,0.86131489276886,0.77501392364502,0.976841568946838,0.721421003341675,0.981828331947327,0.779466390609741,0.634128510951996,0.666059017181396,0.281845778226852,0.720696568489075,0.815064907073975,0.755710661411285,0.817486763000488,0.785544991493225,0.795607089996338,0.787339329719543,
- 0.834826767444611,0.791281461715698,0.285563051700592,0.790993511676788,0.273117989301682,0.801990926265717,0.270214438438416,0.802817106246948,0.279121458530426,0.786727786064148,0.970533013343811,0.796403646469116,0.983501434326172,0.792169690132141,0.63409298658371,0.791450142860413,0.492243945598602,0.791624486446381,0.34745916724205,0.794032454490662,0.451268166303635,0.775314569473267,0.792307376861572,0.892643570899963,0.274390369653702,0.892728924751282,0.266594141721725,0.89245742559433,0.990655779838562,0.890857338905334,0.822009682655334,0.893964171409607,0.632924556732178,0.894562005996704,0.62713235616684,0.890827178955078,0.815278649330139,0.89575469493866,0.463133931159973,0.896018147468567,0.471351832151413,0.812949120998383,0.47166246175766,0.806636333465576,0.543469488620758,0.81093692779541,0.623522758483887,0.802647829055786,0.445386409759521,0.812379539012909,0.465350151062012,0.806151866912842,0.629575312137604,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.56822282075882,0.265221774578094,0.651033401489258,0.281883269548416,0.639989614486694,0.454478800296783,0.563888430595398,0.460378408432007,0.314472675323486,0.45414525270462,0.316249132156372,0.464462846517563,0.243762567639351,0.462910056114197,0.243548437952995,0.457541525363922,0.562058329582214,0.815716505050659,0.480867654085159,0.744877457618713,0.564170181751251,0.627433001995087,0.984057366847992,0.344479262828827,0.986024141311646,0.470556139945984,0.974040985107422,0.466085195541382,0.72833377122879,0.466112941503525,0.776334881782532,0.466931104660034,0.773598194122314,0.629267752170563,0.725995540618896,0.625412106513977,0.653295755386353,0.809187650680542,0.663752019405365,0.627372324466705,0.661735117435455,0.805055975914001,0.559323608875275,0.983009576797485,0.608413577079773,0.825200974941254,0.640528559684753,0.973015427589417,0.159469977021217,0.27668622136116,0.163802221417427,0.36059957742691,0.157148972153664,0.360757887363434,0.17594887316227,0.803154230117798,0.161242112517357,0.784672439098358,0.160628035664558,0.717049479484558,0.316232681274414,0.841520965099335,0.314828872680664,0.976958870887756,0.241128042340279,0.983860850334167,0.240881845355034,0.818339943885803,0.611778020858765,0.467631161212921,0.642244398593903,0.547451674938202,0.626427054405212,0.619065046310425,0.564406394958496,0.62201988697052,0.563916563987732,0.467342138290405,0.240880087018013,0.812818646430969,0.2420264929533,0.628064393997192,0.315363347530365,0.628137290477753,0.305009931325912,0.811232089996338,0.525453448295593,0.26231175661087,0.522842168807983,0.256372630596161,0.568718492984772,0.259451419115067,0.322720944881439,0.796192705631256,
- 0.478686958551407,0.263930767774582,0.491300612688065,0.260244160890579,0.479227304458618,0.277105391025543,0.332485616207123,0.465049803256989,0.401788622140884,0.46394544839859,0.399586290121078,0.622348248958588,0.33570808172226,0.620140552520752,0.479652762413025,0.657012224197388,0.646789312362671,0.81240576505661,0.64479672908783,0.639150381088257,0.652386903762817,0.827859044075012,0.647516369819641,0.965706527233124,0.645092606544495,0.825522243976593,0.492206931114197,0.461434185504913,0.455158770084381,0.626716434955597,0.451133221387863,0.810630917549133,0.395990490913391,0.817137479782104,0.399362355470657,0.629257917404175,0.495367228984833,0.812524974346161,0.457449197769165,0.839829385280609,0.395913034677505,0.821518361568451,0.172645673155785,0.629663169384003,0.171472117304802,0.614707767963409,0.487300843000412,0.822481334209442,0.493021339178085,0.817911446094513,0.478452205657959,0.866204798221588,0.486157238483429,0.812815010547638,0.472989559173584,0.790342688560486,0.474907159805298,0.744882106781006,0.323577284812927,0.843742549419403,0.333368748426437,0.976017713546753,0.32480576634407,0.96162611246109,0.63181483745575,0.628981232643127,0.654856443405151,0.61117821931839,0.660376071929932,0.821462333202362,0.660499095916748,0.983581781387329,0.504627704620361,0.627276241779327,0.452084124088287,0.620649456977844,0.470830053091049,0.466629892587662,0.480874836444855,0.55218768119812,0.490988075733185,0.61328136920929,0.478126108646393,0.631805002689362,0.974214553833008,0.98486340045929,0.962304353713989,0.824326872825623,0.986024141311646,0.865287661552429,0.494130671024323,0.275798738002777,0.658007979393005,0.292339146137238,0.65370500087738,0.432794332504272,0.333715915679932,0.454250633716583,0.337385296821594,0.262161254882813,0.412637740373611,0.26451912522316,0.401870310306549,0.458857834339142,0.680412650108337,0.466558873653412,0.66656506061554,0.621894776821136,0.654926955699921,0.492236077785492,0.177052602171898,0.463093340396881,0.162467941641808,0.462888985872269,0.17419122159481,
- 0.459328502416611,0.491947054862976,0.467524528503418,0.48239877820015,0.459132432937622,0.654095768928528,0.660075187683105,0.471260130405426,0.460340261459351,0.679005324840546,0.46263325214386,0.728395998477936,0.461750239133835,0.654852449893951,0.467862069606781,0.302760481834412,0.820727646350861,0.602484881877899,0.816682994365692,0.161264821887016,0.622668445110321,0.172660335898399,0.54345178604126,0.324649661779404,0.452768236398697,0.325709879398346,0.346384793519974,0.168563976883888,0.271733582019806,0.244106248021126,0.256961703300476,0.483754754066467,0.97734546661377,0.242102727293968,0.619433701038361,0.649846196174622,0.257646918296814,0.65733414888382,0.258551925420761,0.672805070877075,0.266852140426636,0.678712487220764,0.27632263302803,0.330794632434845,0.246963679790497,0.339218378067017,0.253643810749054,0.243946060538292,0.251300275325775,0.168239817023277,0.256533056497574,0.973279476165771,0.631101608276367,0.986024141311646,0.632217228412628,0.168039813637733,0.830272734165192,0.32233864068985,0.619080185890198,0.322989970445633,0.635083079338074,0.666059017181396,0.281845778226852,0.167349830269814,0.976640641689301,0.405477613210678,0.97720193862915,0.726129174232483,0.630254089832306,0.562464892864227,0.823702394962311,0.412688940763474,0.255624264478683,0.314176440238953,0.620930016040802,0.838913261890411,0.81359738111496,0.8413405418396,0.822668194770813,0.800585627555847,0.860344290733337,0.795989811420441,0.79228800535202,0.986024141311646,0.802093505859375,0.961355686187744,0.818050086498261,0.976323425769806,0.797898769378662,0.334126472473145,0.626672208309174,0.32939624786377,0.275321006774902,0.314326405525208,0.26180574297905,0.336580991744995,0.822968065738678,0.332162380218506,0.815138638019562,0.470511972904205,0.906128346920013,0.987110376358032,0.982086420059204,0.969059705734253,0.274425476789474,0.98284900188446,0.274887472391129,0.969772100448608,0.265130221843719,0.974470853805542,0.637994468212128,0.324545592069626,0.468856930732727,0.158446058630943,0.974398553371429,
- 0.157912954688072,0.830502152442932,0.470582127571106,0.97213226556778,0.318570077419281,0.250938475131989,0.731864869594574,0.275119483470917,0.731071472167969,0.267739802598953,0.782851934432983,0.267821878194809,0.781634926795959,0.276601880788803,0.973341763019562,0.472994148731232,0.977505743503571,0.344733208417892,0.66324782371521,0.431643515825272,0.777967691421509,0.460676640272141,0.514732182025909,0.981611728668213,0.72089409828186,0.821037411689758,0.757523059844971,0.824855625629425,0.772486329078674,0.86131489276886,0.77501392364502,0.976841568946838,0.721421003341675,0.981828331947327,0.779466390609741,0.634128510951996,0.160359457135201,0.262830406427383,0.720696568489075,0.815064907073975,0.755710661411285,0.817486763000488,0.785544991493225,0.795607089996338,0.787339329719543,0.834826767444611,0.791281461715698,0.285563051700592,0.790993511676788,0.273117989301682,0.801990926265717,0.270214438438416,0.802817106246948,0.279121458530426,0.786727786064148,0.970533013343811,0.796403646469116,0.983501434326172,0.792169690132141,0.63409298658371,0.791450142860413,0.492243945598602,0.791624486446381,0.34745916724205,0.794032454490662,0.451268166303635,0.775314569473267,0.792307376861572,0.892643570899963,0.274390369653702,0.892728924751282,0.266594141721725,0.89245742559433,0.990655779838562,0.890857338905334,0.822009682655334,0.893964171409607,0.632924556732178,0.894562005996704,0.62713235616684,0.890827178955078,0.815278649330139,0.89575469493866,0.463133931159973,0.896018147468567,0.471351832151413,0.812949120998383,0.47166246175766,0.806636333465576,0.543469488620758,0.81093692779541,0.623522758483887,0.802647829055786,0.445386409759521,0.812379539012909,0.465350151062012,0.806151866912842,0.629575312137604,0.0903670117259026,0.463999569416046,0.148881271481514,0.460160732269287,0.152503803372383,0.621879696846008,0.094897136092186,0.620186805725098,0.0270303934812546,0.801061570644379,0.0365517288446426,0.627800166606903,0.0355781763792038,0.803791582584381,0.0352348536252975,0.990207076072693,0.0356507450342178,
- 0.981645464897156,0.0960242375731468,0.980417907238007,0.0398750156164169,0.466373562812805,0.0434053093194962,0.620134353637695,0.0269170552492142,0.488004982471466,0.0278220027685165,0.652385890483856,0.0267984122037888,0.600576937198639,0.0354234725236893,0.456222265958786,0.0963767915964127,0.455658942461014,0.0174058228731155,0.462196677923203,0.0264795273542404,0.289590746164322,0.0134538263082504,0.270753085613251,0.0376585870981216,0.266603469848633,0.0948010832071304,0.626824617385864,0.0969859138131142,0.263581156730652,0.0970609933137894,0.256996899843216,0.150541409850121,0.256646126508713,0.149393334984779,0.262534350156784,0.0277488976716995,0.429344028234482,0.151720032095909,0.449683994054794,0.0893183574080467,0.814825594425201,0.146918177604675,0.817610681056976,0.149321600794792,0.979634284973145,0.153646424412727,0.631666839122772,0.0346330255270004,0.814769566059113,0.0890380665659904,0.808473885059357,0.149250045418739,0.81097686290741,0.333506226539612,0.20244175195694,0.321322381496429,0.215474128723145,0.212311714887619,0.219094514846802,0.185194075107574,0.188393652439117,0.184036493301392,0.0412274077534676,0.194486856460571,0.0321927666664124,0.330694377422333,0.0361021161079407,0.346486032009125,0.0507869198918343,0.348552644252777,0.184306144714355,0.0261907130479813,0.82157438993454,0.0224321037530899,0.966704189777374,0.56822282075882,0.265221774578094,0.651033401489258,0.281883269548416,0.639989614486694,0.454478800296783,0.563888430595398,0.460378408432007,0.314472675323486,0.45414525270462,0.316249132156372,0.464462846517563,0.243762567639351,0.462910056114197,0.243548437952995,0.457541525363922,0.562058329582214,0.815716505050659,0.480867654085159,0.744877457618713,0.564170181751251,0.627433001995087,0.984057366847992,0.344479262828827,0.986024141311646,0.470556139945984,0.974040985107422,0.466085195541382,0.72833377122879,0.466112941503525,0.776334881782532,0.466931104660034,0.773598194122314,0.629267752170563,0.725995540618896,0.625412106513977,0.653295755386353,0.809187650680542,
- 0.663752019405365,0.627372324466705,0.661735117435455,0.805055975914001,0.559323608875275,0.983009576797485,0.608413577079773,0.825200974941254,0.640528559684753,0.973015427589417,0.159469977021217,0.27668622136116,0.163802221417427,0.36059957742691,0.157148972153664,0.360757887363434,0.17594887316227,0.803154230117798,0.161242112517357,0.784672439098358,0.160628035664558,0.717049479484558,0.316232681274414,0.841520965099335,0.314828872680664,0.976958870887756,0.241128042340279,0.983860850334167,0.240881845355034,0.818339943885803,0.611778020858765,0.467631161212921,0.642244398593903,0.547451674938202,0.626427054405212,0.619065046310425,0.564406394958496,0.62201988697052,0.563916563987732,0.467342138290405,0.240880087018013,0.812818646430969,0.2420264929533,0.628064393997192,0.315363347530365,0.628137290477753,0.305009931325912,0.811232089996338,0.525453448295593,0.26231175661087,0.522842168807983,0.256372630596161,0.568718492984772,0.259451419115067,0.322720944881439,0.796192705631256,0.478686958551407,0.263930767774582,0.491300612688065,0.260244160890579,0.479227304458618,0.277105391025543,0.332485616207123,0.465049803256989,0.401788622140884,0.46394544839859,0.399586290121078,0.622348248958588,0.33570808172226,0.620140552520752,0.479652762413025,0.657012224197388,0.646789312362671,0.81240576505661,0.64479672908783,0.639150381088257,0.652386903762817,0.827859044075012,0.647516369819641,0.965706527233124,0.645092606544495,0.825522243976593,0.492206931114197,0.461434185504913,0.455158770084381,0.626716434955597,0.451133221387863,0.810630917549133,0.395990490913391,0.817137479782104,0.399362355470657,0.629257917404175,0.495367228984833,0.812524974346161,0.457449197769165,0.839829385280609,0.395913034677505,0.821518361568451,0.172645673155785,0.629663169384003,0.171472117304802,0.614707767963409,0.487300843000412,0.822481334209442,0.493021339178085,0.817911446094513,0.478452205657959,0.866204798221588,0.486157238483429,0.812815010547638,0.472989559173584,0.790342688560486,0.474907159805298,0.744882106781006,0.323577284812927,
- 0.843742549419403,0.333368748426437,0.976017713546753,0.32480576634407,0.96162611246109,0.63181483745575,0.628981232643127,0.654856443405151,0.61117821931839,0.660376071929932,0.821462333202362,0.660499095916748,0.983581781387329,0.122671283781528,0.0273185670375824,0.164393857121468,0.0478752925992012,0.166750967502594,0.208594918251038,0.504627704620361,0.627276241779327,0.452084124088287,0.620649456977844,0.470830053091049,0.466629892587662,0.480874836444855,0.55218768119812,0.490988075733185,0.61328136920929,0.478126108646393,0.631805002689362,0.00835613440722227,0.0969506949186325,0.0131039945408702,0.0307190269231796,0.974214553833008,0.98486340045929,0.962304353713989,0.824326872825623,0.986024141311646,0.865287661552429,0.494130671024323,0.275798738002777,0.658007979393005,0.292339146137238,0.65370500087738,0.432794332504272,0.333715915679932,0.454250633716583,0.337385296821594,0.262161254882813,0.412637740373611,0.26451912522316,0.401870310306549,0.458857834339142,0.680412650108337,0.466558873653412,0.66656506061554,0.621894776821136,0.654926955699921,0.492236077785492,0.177052602171898,0.463093340396881,0.162467941641808,0.462888985872269,0.17419122159481,0.459328502416611,0.491947054862976,0.467524528503418,0.48239877820015,0.459132432937622,0.654095768928528,0.660075187683105,0.471260130405426,0.460340261459351,0.679005324840546,0.46263325214386,0.728395998477936,0.461750239133835,0.654852449893951,0.467862069606781,0.302760481834412,0.820727646350861,0.602484881877899,0.816682994365692,0.161264821887016,0.622668445110321,0.172660335898399,0.54345178604126,0.324649661779404,0.452768236398697,0.325709879398346,0.346384793519974,0.168563976883888,0.271733582019806,0.244106248021126,0.256961703300476,0.483754754066467,0.97734546661377,0.242102727293968,0.619433701038361,0.649846196174622,0.257646918296814,0.65733414888382,0.258551925420761,0.672805070877075,0.266852140426636,0.678712487220764,0.27632263302803,0.330794632434845,0.246963679790497,0.339218378067017,0.253643810749054,0.0163896027952433,0.214215338230133,
- 0.243946060538292,0.251300275325775,0.168239817023277,0.256533056497574,0.973279476165771,0.631101608276367,0.986024141311646,0.632217228412628,0.168039813637733,0.830272734165192,0.32233864068985,0.619080185890198,0.322989970445633,0.635083079338074,0.666059017181396,0.281845778226852,0.167349830269814,0.976640641689301,0.405477613210678,0.97720193862915,0.726129174232483,0.630254089832306,0.562464892864227,0.823702394962311,0.412688940763474,0.255624264478683,0.314176440238953,0.620930016040802,0.838913261890411,0.81359738111496,0.8413405418396,0.822668194770813,0.800585627555847,0.860344290733337,0.795989811420441,0.79228800535202,0.986024141311646,0.802093505859375,0.961355686187744,0.818050086498261,0.976323425769806,0.797898769378662,0.334126472473145,0.626672208309174,0.32939624786377,0.275321006774902,0.314326405525208,0.26180574297905,0.336580991744995,0.822968065738678,0.332162380218506,0.815138638019562,0.470511972904205,0.906128346920013,0.987110376358032,0.982086420059204,0.969059705734253,0.274425476789474,0.98284900188446,0.274887472391129,0.969772100448608,0.265130221843719,0.974470853805542,0.637994468212128,0.324545592069626,0.468856930732727,0.158446058630943,0.974398553371429,0.157912954688072,0.830502152442932,0.470582127571106,0.97213226556778,0.318570077419281,0.250938475131989,0.731864869594574,0.275119483470917,0.731071472167969,0.267739802598953,0.782851934432983,0.267821878194809,0.781634926795959,0.276601880788803,0.973341763019562,0.472994148731232,0.977505743503571,0.344733208417892,0.66324782371521,0.431643515825272,0.777967691421509,0.460676640272141,0.514732182025909,0.981611728668213,0.72089409828186,0.821037411689758,0.757523059844971,0.824855625629425,0.772486329078674,0.86131489276886,0.77501392364502,0.976841568946838,0.721421003341675,0.981828331947327,0.779466390609741,0.634128510951996,0.160359457135201,0.262830406427383,0.720696568489075,0.815064907073975,0.755710661411285,0.817486763000488,0.785544991493225,0.795607089996338,0.787339329719543,0.834826767444611,0.791281461715698,
- 0.285563051700592,0.790993511676788,0.273117989301682,0.801990926265717,0.270214438438416,0.802817106246948,0.279121458530426,0.786727786064148,0.970533013343811,0.796403646469116,0.983501434326172,0.792169690132141,0.63409298658371,0.791450142860413,0.492243945598602,0.791624486446381,0.34745916724205,0.794032454490662,0.451268166303635,0.775314569473267,0.792307376861572,0.892643570899963,0.274390369653702,0.892728924751282,0.266594141721725,0.89245742559433,0.990655779838562,0.890857338905334,0.822009682655334,0.893964171409607,0.632924556732178,0.894562005996704,0.62713235616684,0.890827178955078,0.815278649330139,0.89575469493866,0.463133931159973,0.896018147468567,0.471351832151413,0.812949120998383,0.47166246175766,0.806636333465576,0.543469488620758,0.81093692779541,0.623522758483887,0.802647829055786,0.445386409759521,0.812379539012909,0.465350151062012,0.806151866912842,0.629575312137604,0.0903670117259026,0.463999569416046,0.148881271481514,0.460160732269287,0.152503803372383,0.621879696846008,0.094897136092186,0.620186805725098,0.0270303934812546,0.801061570644379,0.0365517288446426,0.627800166606903,0.0355781763792038,0.803791582584381,0.0352348536252975,0.990207076072693,0.0356507450342178,0.981645464897156,0.0960242375731468,0.980417907238007,0.0398750156164169,0.466373562812805,0.0434053093194962,0.620134353637695,0.0269170552492142,0.488004982471466,0.0278220027685165,0.652385890483856,0.0267984122037888,0.600576937198639,0.0354234725236893,0.456222265958786,0.0963767915964127,0.455658942461014,0.0174058228731155,0.462196677923203,0.0264795273542404,0.289590746164322,0.0134538263082504,0.270753085613251,0.0376585870981216,0.266603469848633,0.0948010832071304,0.626824617385864,0.0969859138131142,0.263581156730652,0.0970609933137894,0.256996899843216,0.150541409850121,0.256646126508713,0.149393334984779,0.262534350156784,0.0277488976716995,0.429344028234482,0.151720032095909,0.449683994054794,0.0893183574080467,0.814825594425201,0.146918177604675,0.817610681056976,0.149321600794792,0.979634284973145,
- 0.153646424412727,0.631666839122772,0.0346330255270004,0.814769566059113,0.0890380665659904,0.808473885059357,0.149250045418739,0.81097686290741,0.333506226539612,0.20244175195694,0.321322381496429,0.215474128723145,0.212311714887619,0.219094514846802,0.185194075107574,0.188393652439117,0.184036493301392,0.0412274077534676,0.194486856460571,0.0321927666664124,0.330694377422333,0.0361021161079407,0.346486032009125,0.0507869198918343,0.348552644252777,0.184306144714355,0.0261907130479813,0.82157438993454,0.0224321037530899,0.966704189777374,0.56822282075882,0.265221774578094,0.651033401489258,0.281883269548416,0.639989614486694,0.454478800296783,0.563888430595398,0.460378408432007,0.314472675323486,0.45414525270462,0.316249132156372,0.464462846517563,0.243762567639351,0.462910056114197,0.243548437952995,0.457541525363922,0.562058329582214,0.815716505050659,0.480867654085159,0.744877457618713,0.564170181751251,0.627433001995087,0.984057366847992,0.344479262828827,0.986024141311646,0.470556139945984,0.974040985107422,0.466085195541382,0.72833377122879,0.466112941503525,0.776334881782532,0.466931104660034,0.773598194122314,0.629267752170563,0.725995540618896,0.625412106513977,0.653295755386353,0.809187650680542,0.663752019405365,0.627372324466705,0.661735117435455,0.805055975914001,0.559323608875275,0.983009576797485,0.608413577079773,0.825200974941254,0.640528559684753,0.973015427589417,0.159469977021217,0.27668622136116,0.163802221417427,0.36059957742691,0.157148972153664,0.360757887363434,0.17594887316227,0.803154230117798,0.161242112517357,0.784672439098358,0.160628035664558,0.717049479484558,0.316232681274414,0.841520965099335,0.314828872680664,0.976958870887756,0.241128042340279,0.983860850334167,0.240881845355034,0.818339943885803,0.611778020858765,0.467631161212921,0.642244398593903,0.547451674938202,0.626427054405212,0.619065046310425,0.564406394958496,0.62201988697052,0.563916563987732,0.467342138290405,0.240880087018013,0.812818646430969,0.2420264929533,0.628064393997192,0.315363347530365,0.628137290477753,0.305009931325912,
- 0.811232089996338,0.525453448295593,0.26231175661087,0.522842168807983,0.256372630596161,0.568718492984772,0.259451419115067,0.322720944881439,0.796192705631256,0.478686958551407,0.263930767774582,0.491300612688065,0.260244160890579,0.479227304458618,0.277105391025543,0.332485616207123,0.465049803256989,0.401788622140884,0.46394544839859,0.399586290121078,0.622348248958588,0.33570808172226,0.620140552520752,0.479652762413025,0.657012224197388,0.646789312362671,0.81240576505661,0.64479672908783,0.639150381088257,0.652386903762817,0.827859044075012,0.647516369819641,0.965706527233124,0.645092606544495,0.825522243976593,0.492206931114197,0.461434185504913,0.455158770084381,0.626716434955597,0.451133221387863,0.810630917549133,0.395990490913391,0.817137479782104,0.399362355470657,0.629257917404175,0.495367228984833,0.812524974346161,0.457449197769165,0.839829385280609,0.395913034677505,0.821518361568451,0.172645673155785,0.629663169384003,0.171472117304802,0.614707767963409,0.487300843000412,0.822481334209442,0.493021339178085,0.817911446094513,0.478452205657959,0.866204798221588,0.486157238483429,0.812815010547638,0.472989559173584,0.790342688560486,0.474907159805298,0.744882106781006,0.323577284812927,0.843742549419403,0.333368748426437,0.976017713546753,0.32480576634407,0.96162611246109,0.63181483745575,0.628981232643127,0.654856443405151,0.61117821931839,0.660376071929932,0.821462333202362,0.660499095916748,0.983581781387329,0.122671283781528,0.0273185670375824,0.164393857121468,0.0478752925992012,0.166750967502594,0.208594918251038,0.504627704620361,0.627276241779327,0.452084124088287,0.620649456977844,0.470830053091049,0.466629892587662,0.480874836444855,0.55218768119812,0.490988075733185,0.61328136920929,0.478126108646393,0.631805002689362,0.00835613440722227,0.0969506949186325,0.0131039945408702,0.0307190269231796,0.974214553833008,0.98486340045929,0.962304353713989,0.824326872825623,0.986024141311646,0.865287661552429,0.494130671024323,0.275798738002777,0.658007979393005,0.292339146137238,0.65370500087738,0.432794332504272,
- 0.333715915679932,0.454250633716583,0.337385296821594,0.262161254882813,0.412637740373611,0.26451912522316,0.401870310306549,0.458857834339142,0.680412650108337,0.466558873653412,0.66656506061554,0.621894776821136,0.654926955699921,0.492236077785492,0.177052602171898,0.463093340396881,0.162467941641808,0.462888985872269,0.17419122159481,0.459328502416611,0.491947054862976,0.467524528503418,0.48239877820015,0.459132432937622,0.654095768928528,0.660075187683105,0.471260130405426,0.460340261459351,0.679005324840546,0.46263325214386,0.728395998477936,0.461750239133835,0.654852449893951,0.467862069606781,0.302760481834412,0.820727646350861,0.602484881877899,0.816682994365692,0.161264821887016,0.622668445110321,0.172660335898399,0.54345178604126,0.324649661779404,0.452768236398697,0.325709879398346,0.346384793519974,0.168563976883888,0.271733582019806,0.244106248021126,0.256961703300476,0.483754754066467,0.97734546661377,0.242102727293968,0.619433701038361,0.649846196174622,0.257646918296814,0.65733414888382,0.258551925420761,0.672805070877075,0.266852140426636,0.678712487220764,0.27632263302803,0.330794632434845,0.246963679790497,0.339218378067017,0.253643810749054,0.0163896027952433,0.214215338230133,0.243946060538292,0.251300275325775,0.168239817023277,0.256533056497574,0.973279476165771,0.631101608276367,0.986024141311646,0.632217228412628,0.168039813637733,0.830272734165192,0.32233864068985,0.619080185890198,0.322989970445633,0.635083079338074,0.666059017181396,0.281845778226852,0.167349830269814,0.976640641689301,0.405477613210678,0.97720193862915,0.726129174232483,0.630254089832306,0.562464892864227,0.823702394962311,0.412688940763474,0.255624264478683,0.314176440238953,0.620930016040802,0.838913261890411,0.81359738111496,0.8413405418396,0.822668194770813,0.800585627555847,0.860344290733337,0.795989811420441,0.79228800535202,0.986024141311646,0.802093505859375,0.961355686187744,0.818050086498261,0.976323425769806,0.797898769378662,0.334126472473145,0.626672208309174,0.32939624786377,0.275321006774902,0.314326405525208,
- 0.26180574297905,0.336580991744995,0.822968065738678,0.332162380218506,0.815138638019562,0.470511972904205,0.906128346920013,0.987110376358032,0.982086420059204,0.969059705734253,0.274425476789474,0.98284900188446,0.274887472391129,0.969772100448608,0.265130221843719,0.974470853805542,0.637994468212128,0.324545592069626,0.468856930732727,0.158446058630943,0.974398553371429,0.157912954688072,0.830502152442932,0.470582127571106,0.97213226556778,0.318570077419281,0.250938475131989,0.731864869594574,0.275119483470917,0.731071472167969,0.267739802598953,0.782851934432983,0.267821878194809,0.781634926795959,0.276601880788803,0.973341763019562,0.472994148731232,0.977505743503571,0.344733208417892,0.66324782371521,0.431643515825272,0.777967691421509,0.460676640272141,0.514732182025909,0.981611728668213,0.72089409828186,0.821037411689758,0.757523059844971,0.824855625629425,0.772486329078674,0.86131489276886,0.77501392364502,0.976841568946838,0.721421003341675,0.981828331947327,0.779466390609741,0.634128510951996,0.160359457135201,0.262830406427383,0.720696568489075,0.815064907073975,0.755710661411285,0.817486763000488,0.785544991493225,0.795607089996338,0.787339329719543,0.834826767444611,0.791281461715698,0.285563051700592,0.790993511676788,0.273117989301682,0.801990926265717,0.270214438438416,0.802817106246948,0.279121458530426,0.786727786064148,0.970533013343811,0.796403646469116,0.983501434326172,0.792169690132141,0.63409298658371,0.791450142860413,0.492243945598602,0.791624486446381,0.34745916724205,0.794032454490662,0.451268166303635,0.775314569473267,0.792307376861572,0.892643570899963,0.274390369653702,0.892728924751282,0.266594141721725,0.89245742559433,0.990655779838562,0.890857338905334,0.822009682655334,0.893964171409607,0.632924556732178,0.894562005996704,0.62713235616684,0.890827178955078,0.815278649330139,0.89575469493866,0.463133931159973,0.896018147468567,0.471351832151413,0.812949120998383,0.47166246175766,0.806636333465576,0.543469488620758,0.81093692779541,0.623522758483887,0.802647829055786,0.445386409759521,
- 0.812379539012909,0.465350151062012,0.806151866912842,0.629575312137604,0.0903670117259026,0.463999569416046,0.148881271481514,0.460160732269287,0.152503803372383,0.621879696846008,0.094897136092186,0.620186805725098,0.0270303934812546,0.801061570644379,0.0365517288446426,0.627800166606903,0.0355781763792038,0.803791582584381,0.0352348536252975,0.990207076072693,0.0356507450342178,0.981645464897156,0.0960242375731468,0.980417907238007,0.0398750156164169,0.466373562812805,0.0434053093194962,0.620134353637695,0.0269170552492142,0.488004982471466,0.0278220027685165,0.652385890483856,0.0267984122037888,0.600576937198639,0.0354234725236893,0.456222265958786,0.0963767915964127,0.455658942461014,0.0174058228731155,0.462196677923203,0.0264795273542404,0.289590746164322,0.0134538263082504,0.270753085613251,0.0376585870981216,0.266603469848633,0.0948010832071304,0.626824617385864,0.0969859138131142,0.263581156730652,0.0970609933137894,0.256996899843216,0.150541409850121,0.256646126508713,0.149393334984779,0.262534350156784,0.0277488976716995,0.429344028234482,0.151720032095909,0.449683994054794,0.0893183574080467,0.814825594425201,0.146918177604675,0.817610681056976,0.149321600794792,0.979634284973145,0.153646424412727,0.631666839122772,0.0346330255270004,0.814769566059113,0.0890380665659904,0.808473885059357,0.149250045418739,0.81097686290741,0.333506226539612,0.20244175195694,0.321322381496429,0.215474128723145,0.212311714887619,0.219094514846802,0.185194075107574,0.188393652439117,0.184036493301392,0.0412274077534676,0.194486856460571,0.0321927666664124,0.330694377422333,0.0361021161079407,0.346486032009125,0.0507869198918343,0.348552644252777,0.184306144714355,0.0261907130479813,0.82157438993454,0.0224321037530899,0.966704189777374,0.984057366847992,0.344479262828827,0.986024141311646,0.470556139945984,0.974040985107422,0.466085195541382,0.72833377122879,0.466112941503525,0.776334881782532,0.466931104660034,0.773598194122314,0.629267752170563,0.725995540618896,0.625412106513977,0.653295755386353,0.809187650680542,0.663752019405365,
- 0.627372324466705,0.661735117435455,0.805055975914001,0.660376071929932,0.821462333202362,0.660499095916748,0.983581781387329,0.647516369819641,0.965706527233124,0.652386903762817,0.827859044075012,0.122671283781528,0.0273185670375824,0.164393857121468,0.0478752925992012,0.166750967502594,0.208594918251038,0.00835613440722227,0.0969506949186325,0.0131039945408702,0.0307190269231796,0.974214553833008,0.98486340045929,0.962304353713989,0.824326872825623,0.986024141311646,0.865287661552429,0.680412650108337,0.466558873653412,0.66656506061554,0.621894776821136,0.654926955699921,0.492236077785492,0.654095768928528,0.660075187683105,0.654856443405151,0.61117821931839,0.679005324840546,0.46263325214386,0.728395998477936,0.461750239133835,0.654852449893951,0.467862069606781,0.672805070877075,0.266852140426636,0.678712487220764,0.27632263302803,0.65733414888382,0.258551925420761,0.0163896027952433,0.214215338230133,0.973279476165771,0.631101608276367,0.986024141311646,0.632217228412628,0.726129174232483,0.630254089832306,0.838913261890411,0.81359738111496,0.8413405418396,0.822668194770813,0.800585627555847,0.860344290733337,0.795989811420441,0.79228800535202,0.986024141311646,0.802093505859375,0.961355686187744,0.818050086498261,0.976323425769806,0.797898769378662,0.987110376358032,0.982086420059204,0.969059705734253,0.274425476789474,0.98284900188446,0.274887472391129,0.969772100448608,0.265130221843719,0.974470853805542,0.637994468212128,0.731864869594574,0.275119483470917,0.731071472167969,0.267739802598953,0.782851934432983,0.267821878194809,0.781634926795959,0.276601880788803,0.973341763019562,0.472994148731232,0.977505743503571,0.344733208417892,0.66324782371521,0.431643515825272,0.777967691421509,0.460676640272141,0.72089409828186,0.821037411689758,0.757523059844971,0.824855625629425,0.772486329078674,0.86131489276886,0.77501392364502,0.976841568946838,0.721421003341675,0.981828331947327,0.779466390609741,0.634128510951996,0.666059017181396,0.281845778226852,0.720696568489075,0.815064907073975,0.755710661411285,0.817486763000488,
- 0.785544991493225,0.795607089996338,0.787339329719543,0.834826767444611,0.791281461715698,0.285563051700592,0.790993511676788,0.273117989301682,0.801990926265717,0.270214438438416,0.802817106246948,0.279121458530426,0.786727786064148,0.970533013343811,0.796403646469116,0.983501434326172,0.792169690132141,0.63409298658371,0.791450142860413,0.492243945598602,0.791624486446381,0.34745916724205,0.794032454490662,0.451268166303635,0.775314569473267,0.792307376861572,0.892643570899963,0.274390369653702,0.892728924751282,0.266594141721725,0.89245742559433,0.990655779838562,0.890857338905334,0.822009682655334,0.893964171409607,0.632924556732178,0.894562005996704,0.62713235616684,0.890827178955078,0.815278649330139,0.89575469493866,0.463133931159973,0.896018147468567,0.471351832151413,0.812949120998383,0.47166246175766,0.806636333465576,0.543469488620758,0.81093692779541,0.623522758483887,0.802647829055786,0.445386409759521,0.812379539012909,0.465350151062012,0.806151866912842,0.629575312137604,0.379672288894653,-0.141679406166077,0.0992694795131683,-0.141679406166077,0.0992694795131683,-0.603019773960114,0.379672288894653,-0.603019773960114,0.0992694795131683,-1.06436014175415,0.379672288894653,-1.06436014175415,0.403607130050659,-0.603019773960114,0.403607130050659,-1.06436014175415,0.684009909629822,-1.06436014175415,0.684009909629822,-0.603019773960114,0.684009909629822,-0.141679406166077,0.403607130050659,-0.141679406166077,0.722315609455109,-0.888852596282959,1.00543856620789,-0.888852596282959,0.988152623176575,-0.713344991207123,0.707749843597412,-0.740971326828003,0.988152861595154,-1.06436014175415,0.707750082015991,-1.03673374652863,1.06509590148926,-0.517873108386993,0.781973004341125,-0.517873108386993,0.799258589744568,-0.69338071346283,1.07966148853302,-0.665754318237305,0.799258947372437,-0.342365562915802,1.07966160774231,-0.369991898536682
- }
- UVIndex: *8998 {
- a: 0,1,2,3,1,4,5,2,4,6,7,5,6,8,9,7,8,10,11,9,10,12,13,11,12,14,15,13,14,16,17,15,16,18,19,17,18,20,21,19,22,23,24,25,23,26,27,24,26,28,29,27,28,30,31,29,30,32,33,31,32,34,35,33,34,36,37,35,36,38,39,37,38,40,41,39,40,42,43,41,42,44,45,43,44,46,47,45,46,48,49,47,48,50,51,49,50,52,53,51,52,54,55,53,54,56,57,55,56,58,59,57,58,60,61,59,60,62,63,61,62,64,65,63,64,0,3,65,66,67,68,69,67,70,71,68,70,72,73,71,72,74,75,73,74,76,77,75,76,78,79,77,78,80,81,79,80,82,83,81,82,84,85,83,84,86,87,85,88,89,90,91,89,92,93,90,92,94,95,93,94,96,97,95,96,98,99,97,98,100,101,99,100,102,103,101,102,104,105,103,104,106,107,105,106,108,109,107,108,110,111,109,110,112,113,111,112,114,115,113,114,116,117,115,116,118,119,117,118,120,121,119,120,122,123,121,122,124,125,123,124,126,127,125,126,128,129,127,128,130,131,129,130,66,69,131,132,133,67,66,133,134,70,67,134,135,72,70,135,136,74,72,136,137,76,74,137,138,78,76,138,139,80,78,139,140,82,80,140,141,84,82,141,142,86,84,143,144,89,88,144,145,92,89,145,146,94,92,146,147,96,94,147,148,98,96,148,149,100,98,149,150,102,100,150,151,104,102,151,152,106,104,152,153,108,106,153,154,110,108,154,155,112,110,155,460,156,114,112,156,463,157,116,114,157,158,118,116,158,159,120,118,159,160,122,120,160,161,124,122,161,162,126,124,162,163,128,126,163,164,130,128,164,132,66,130,165,166,133,132,166,167,134,133,167,168,135,134,168,169,136,135,169,170,137,136,170,171,138,137,171,172,139,138,172,173,140,139,173,174,141,140,174,175,142,141,176,177,144,143,177,178,145,144,178,179,146,145,179,180,147,146,180,181,148,147,181,182,149,148,182,183,150,149,183,184,151,150,184,185,152,151,185,186,153,152,186,187,154,153,187,188,155,154,463,464,189,157,189,190,158,157,190,191,159,158,191,192,160,159,192,193,161,160,193,194,162,161,194,195,163,162,195,196,164,163,196,165,132,164,197,198,166,165,198,199,167,166,199,200,168,167,200,201,169,168,201,202,170,169,202,203,171,170,203,204,172,171,204,205,173,172,205,206,174,173,206,207,175,174,208,209,177,176,209,210,178,177,210,211,179,178,211,212,180,179,212,213,
- 181,180,213,214,182,181,214,215,183,182,215,216,184,183,216,217,185,184,217,218,186,185,218,219,187,186,219,220,188,187,464,465,222,189,222,223,190,189,223,224,191,190,224,225,192,191,225,226,193,192,226,227,194,193,227,228,195,194,228,229,196,195,229,197,165,196,3,2,198,197,2,5,199,198,5,7,200,199,7,9,201,200,9,11,202,201,11,13,203,202,13,15,204,203,15,17,205,204,17,19,206,205,19,21,207,206,25,24,209,208,24,27,210,209,27,29,211,210,29,31,212,211,31,33,213,212,33,35,214,213,35,37,215,214,37,39,216,215,39,41,217,216,41,43,218,217,43,45,219,218,45,47,220,219,47,49,221,462,220,49,51,222,465,221,51,53,223,222,53,55,224,223,55,57,225,224,57,59,226,225,59,61,227,226,61,63,228,227,63,65,229,228,65,3,197,229,230,231,232,233,233,232,234,235,235,234,236,237,237,236,238,239,239,238,240,241,241,240,242,243,243,242,244,245,245,244,246,247,247,246,248,249,249,248,250,251,252,253,254,255,255,254,256,257,257,256,258,259,259,258,260,261,261,260,262,263,263,262,264,265,265,264,266,267,267,266,268,269,269,268,270,271,271,270,272,273,273,272,274,275,275,274,276,277,277,276,278,279,279,278,280,281,281,280,282,283,283,282,284,285,285,284,286,287,287,286,288,289,289,288,290,291,291,290,292,293,293,292,294,295,295,294,231,230,296,297,298,299,299,298,300,301,301,300,302,303,303,302,304,305,305,304,306,307,307,306,308,309,309,308,310,311,311,310,312,313,313,312,314,315,315,314,316,317,318,319,320,321,321,320,322,323,323,322,324,325,325,324,326,327,327,326,328,329,329,328,330,331,331,330,332,333,333,332,334,335,335,334,336,337,337,336,338,339,339,338,340,341,341,340,342,343,343,342,344,345,345,344,346,347,347,346,348,349,349,348,350,351,351,350,352,353,353,352,354,355,355,354,356,357,357,356,358,359,359,358,360,361,361,360,297,296,362,296,299,363,363,299,301,364,364,301,303,365,365,303,305,366,366,305,307,367,367,307,309,368,368,309,311,369,369,311,313,370,370,313,315,371,371,315,317,372,373,318,321,374,374,321,323,375,375,323,325,376,376,325,327,377,377,327,329,378,378,329,331,379,379,331,333,380,380,333,335,381,381,335,337,382,382,337,339,
- 383,383,339,341,384,384,341,343,385,385,343,345,386,466,386,345,347,387,469,387,347,349,388,388,349,351,389,389,351,353,390,390,353,355,391,391,355,357,392,392,357,359,393,393,359,361,394,394,361,296,362,395,362,363,396,396,363,364,397,397,364,365,398,398,365,366,399,399,366,367,400,400,367,368,401,401,368,369,402,402,369,370,403,403,370,371,404,404,371,372,405,406,373,374,407,407,374,375,408,408,375,376,409,409,376,377,410,410,377,378,411,411,378,379,412,412,379,380,413,413,380,381,414,414,381,382,415,415,382,383,416,416,383,384,417,417,384,385,418,418,385,466,467,419,387,388,420,420,388,389,421,421,389,390,422,422,390,391,423,423,391,392,424,424,392,393,425,425,393,394,426,426,394,362,395,427,395,396,428,428,396,397,429,429,397,398,430,430,398,399,431,431,399,400,432,432,400,401,433,433,401,402,434,434,402,403,435,435,403,404,436,436,404,405,437,438,406,407,439,439,407,408,440,440,408,409,441,441,409,410,442,442,410,411,443,443,411,412,444,444,412,413,445,445,413,414,446,446,414,415,447,447,415,416,448,448,416,417,449,449,417,418,450,450,418,467,468,452,419,420,453,453,420,421,454,454,421,422,455,455,422,423,456,456,423,424,457,457,424,425,458,458,425,426,459,459,426,395,427,231,427,428,232,232,428,429,234,234,429,430,236,236,430,431,238,238,431,432,240,240,432,433,242,242,433,434,244,244,434,435,246,246,435,436,248,248,436,437,250,253,438,439,254,254,439,440,256,256,440,441,258,258,441,442,260,260,442,443,262,262,443,444,264,264,444,445,266,266,445,446,268,268,446,447,270,270,447,448,272,272,448,449,274,274,449,450,276,276,450,468,451,278,278,451,471,452,280,280,452,453,282,282,453,454,284,284,454,455,286,286,455,456,288,288,456,457,290,290,457,458,292,292,458,459,294,294,459,427,231,188,461,460,155,220,462,461,188,470,469,387,419,471,470,419,452,2423,2424,2425,2426,2429,2430,2431,2432,2427,2424,2423,2428,2411,2412,2413,2414,2414,2413,2415,2416,2433,2430,2429,2434,2417,2418,2419,2420,2417,2420,2421,2422,472,473,474,475,476,477,478,479,480,477,476,481,482,480,481,483,484,482,483,485,486,484,485,487,488,486,487,489,
- 490,488,489,491,492,490,491,493,494,495,496,497,498,494,497,499,500,498,499,501,502,500,501,503,504,502,503,505,506,504,505,507,508,506,507,509,510,511,508,509,512,473,472,513,514,512,513,515,516,514,515,517,518,516,517,519,520,518,519,521,522,520,521,523,524,522,523,525,526,527,528,529,530,526,529,531,532,530,531,533,534,532,533,535,536,534,535,537,538,536,537,539,540,538,539,541,542,540,541,543,544,545,546,547,548,549,550,551,552,553,548,551,554,555,553,552,556,557,555,554,558,559,557,556,560,561,559,558,562,563,561,560,564,565,563,562,566,567,568,569,570,571,567,566,572,573,571,570,574,575,573,572,576,577,575,574,578,579,577,576,580,581,579,578,582,581,580,583,584,585,544,547,586,587,585,584,588,589,587,586,590,591,589,588,592,593,591,590,594,595,593,592,596,597,595,594,598,599,600,601,602,603,599,598,604,605,603,602,606,607,605,604,608,609,607,606,610,611,609,608,612,613,611,610,614,615,613,612,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,658,657,663,664,665,666,667,668,669,625,670,626,634,671,672,673,674,675,676,619,654,677,678,679,680,624,681,625,682,683,678,684,685,656,686,687,688,689,690,691,692,693,694,695,652,696,697,698,674,673,646,692,647,626,670,699,659,661,616,675,674,639,700,701,702,703,704,702,705,706,707,691,677,670,702,704,700,708,659,616,619,676,654,619,618,650,618,709,710,711,712,713,714,715,716,717,718,719,720,690,678,691,654,721,676,722,721,702,635,634,723,696,717,716,722,701,724,715,725,726,630,715,717,727,725,717,618,727,646,649,728,646,728,692,639,638,675,672,671,729,624,730,685,684,731,685,730,732,733,711,667,666,711,714,723,634,672,696,672,695,719,642,641,720,641,734,735,623,720,688,687,736,685,737,656,709,738,739,740,741,739,742,743,712,694,647,692,664,660,659,744,735,734,745,746,628,747,617,738,709,618,617,709,682,678,690,690,686,688,649,748,643,649,643,655,749,669,750,672,696,723,696,635,723,641,640,734,690,688,682,709,739,741,751,672,626,695,648,
- 752,748,649,683,753,693,635,716,633,754,716,635,696,755,638,637,684,645,730,643,645,684,653,626,699,665,756,663,729,755,624,755,681,624,657,757,749,750,750,662,657,703,653,699,670,704,703,699,634,673,671,758,759,760,761,650,618,717,675,729,671,671,673,675,689,625,681,651,717,696,650,717,651,706,762,707,762,763,764,669,765,750,766,733,767,706,763,762,691,670,625,689,691,625,721,722,676,676,722,708,679,768,769,768,662,769,682,688,770,707,771,705,772,773,627,664,659,708,664,708,665,701,722,702,773,772,774,704,670,677,746,747,775,652,651,696,638,755,729,675,638,729,722,665,708,747,762,764,747,764,775,666,732,711,702,721,703,700,704,677,669,668,680,765,666,776,732,718,622,737,685,731,731,730,719,718,777,778,748,752,644,643,748,778,728,649,658,662,728,658,768,693,692,770,753,683,682,688,779,770,736,779,688,780,767,735,744,766,767,780,766,780,742,742,712,766,781,782,783,784,746,785,628,629,628,785,786,772,627,627,629,786,689,686,690,689,687,686,755,687,681,692,728,662,768,692,662,683,768,679,678,683,679,727,618,710,725,727,710,787,726,781,784,788,776,749,757,666,749,776,666,669,749,743,756,713,712,720,623,622,718,767,620,623,735,684,656,655,643,737,757,657,656,649,655,658,622,621,757,737,701,700,668,667,714,713,665,724,701,667,714,724,680,668,700,677,713,756,665,624,626,672,789,736,687,721,654,653,703,616,661,738,617,653,652,695,626,716,715,630,633,763,775,764,790,791,792,793,794,630,726,788,631,633,632,795,754,636,697,673,634,741,740,782,781,787,751,741,725,769,765,680,679,770,779,753,789,687,755,637,734,796,745,681,687,689,765,662,750,766,712,711,733,797,754,795,798,799,800,791,798,801,802,803,804,805,800,760,806,799,807,761,632,631,808,807,784,783,802,801,809,784,801,800,792,791,808,788,810,795,632,807,799,811,795,807,798,791,790,797,761,760,800,799,812,813,774,772,814,815,706,705,816,817,746,775,818,816,775,763,725,741,781,726,809,801,804,819,812,772,786,629,820,819,629,785,821,822,808,807,822,823,808,810,824,706,815,818,763,798,811,799,793,792,800,805,798,795,811,808,824,825,821,788,809,810,807,808,822,817,820,785,746,
- 788,784,809,809,804,824,809,824,810,631,788,808,761,807,826,826,823,817,816,823,822,821,820,817,821,825,819,820,804,825,824,804,803,813,812,806,760,759,815,814,818,815,759,758,827,828,829,830,831,832,833,834,835,836,837,838,839,832,831,840,841,839,838,837,842,843,827,837,839,844,842,841,832,840,845,846,847,832,838,830,848,838,832,841,849,850,851,852,842,844,853,853,845,842,843,849,852,854,838,837,827,830,855,856,857,836,827,843,854,828,830,829,858,848,855,859,833,860,847,850,849,842,845,847,860,848,858,861,644,778,861,829,828,719,730,852,851,796,640,642,852,640,858,829,730,645,858,730,861,856,855,860,842,847,849,843,861,645,644,857,856,778,777,861,858,645,854,642,719,854,852,642,828,854,719,835,859,855,836,862,863,864,865,866,867,868,869,870,833,859,871,831,872,835,834,872,871,859,835,734,640,796,724,665,722,733,732,620,767,776,621,620,732,757,621,776,807,823,826,761,826,816,818,758,769,662,765,683,693,768,636,635,754,797,790,697,636,797,794,698,697,790,819,825,804,812,833,832,848,860,691,678,677,861,778,856,709,751,787,710,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,915,914,920,921,922,923,924,925,926,882,927,883,891,928,929,930,931,932,933,876,911,934,935,936,937,881,938,882,939,940,935,941,942,913,943,944,945,946,947,948,949,950,951,952,909,953,954,955,931,930,956,957,958,903,949,904,883,927,959,916,918,873,932,931,896,960,961,962,963,964,962,965,956,958,965,966,956,967,968,969,948,934,927,962,964,960,970,916,873,876,933,911,876,875,907,875,971,972,973,974,975,976,977,978,979,980,981,982,947,935,948,911,983,933,984,983,962,892,891,985,953,979,978,984,961,986,977,987,988,887,977,979,989,987,979,875,989,903,906,990,903,990,949,896,895,932,929,928,991,881,992,942,941,993,942,992,994,995,973,924,923,973,976,985,891,929,953,929,952,981,899,898,982,898,996,997,880,982,945,944,998,942,999,913,971,1000,1001,1002,1003,1001,1004,1005,974,951,904,949,921,917,916,1006,965,958,1007,
- 997,996,1008,1009,885,1010,874,1000,971,875,874,971,939,935,947,947,943,945,906,1011,900,906,900,912,1012,926,1013,929,953,985,953,892,985,898,897,996,947,945,939,971,1001,1014,929,883,952,905,1015,1011,906,940,1016,950,892,978,890,1017,978,892,953,1018,895,894,941,902,992,900,902,941,910,883,959,922,1019,920,991,1018,881,1018,938,881,914,1020,1012,1013,1013,919,914,963,910,959,927,964,963,959,891,930,928,1021,1022,1023,1024,907,875,979,932,991,928,928,930,932,946,882,938,908,979,953,907,979,908,968,1025,969,1025,1026,1027,926,1028,1013,1029,995,1030,968,1026,1025,948,927,882,946,948,882,983,984,933,933,984,970,936,1031,1032,1031,919,1032,939,945,1033,969,1034,967,1035,1036,884,921,916,970,921,970,922,961,984,962,1036,1035,1037,964,927,934,1009,1010,1038,909,908,953,895,1018,991,932,895,991,922,970,984,1010,1025,1027,1010,1027,1038,923,994,973,962,983,963,960,964,934,926,925,937,1028,923,1039,994,980,879,999,942,993,993,992,981,980,1040,1041,1011,1015,901,900,1011,1041,990,906,915,919,990,915,1031,950,949,1033,1016,940,939,945,1042,1033,998,1042,945,1043,1030,997,1007,1029,1030,1043,1029,1043,1004,1004,974,1029,1044,1045,1046,1047,1009,1048,885,886,885,1048,1049,1035,884,884,886,1049,946,943,947,946,944,943,1018,944,938,949,990,919,1031,949,919,940,1031,936,935,940,936,989,875,972,987,989,1050,988,1044,1047,1051,1039,1012,1020,923,1012,1039,923,926,1012,1005,1019,975,974,982,880,879,980,1030,877,880,997,941,913,912,900,999,1020,914,913,906,912,915,879,878,1020,999,961,960,925,924,976,975,922,986,961,924,976,986,937,925,960,934,975,1019,922,881,883,929,1052,998,944,983,911,910,963,873,918,1000,874,910,909,952,883,978,977,887,890,1026,1038,1027,1053,1054,1055,1056,1057,887,988,1051,888,890,889,1058,1017,893,954,930,891,1003,1002,1045,1044,1050,1014,1003,987,1032,1028,937,936,1033,1042,1016,1052,944,1018,894,996,1059,1008,938,944,946,1028,919,1013,1029,974,973,995,1060,1017,1058,1061,1062,1063,1054,1061,1064,1065,1066,1067,1068,1063,1023,1069,1062,1070,1024,889,888,1071,1070,1047,1046,1065,1064,1072,1047,1064,1063,1055,
- 1054,1071,1051,1073,1058,889,1070,1062,1074,1058,1070,1061,1054,1053,1060,1024,1023,1063,1062,1075,1076,1037,1035,1077,1078,968,967,1079,1080,1009,1038,1081,1079,1038,1026,987,1003,1044,988,1072,1064,1067,1082,1075,1035,1049,886,1083,1082,886,1048,1084,1085,1071,1070,1085,1086,1071,1073,1087,968,1078,1081,1026,1061,1074,1062,1056,1055,1063,1068,1061,1058,1074,1071,1087,1088,1084,1051,1072,1073,1070,1071,1085,1080,1083,1048,1009,1051,1047,1072,1072,1067,1087,1072,1087,1073,888,1051,1071,1024,1070,1089,1089,1086,1080,1079,1086,1085,1084,1083,1080,1084,1088,1082,1083,1067,1088,1087,1067,1066,1076,1075,1069,1023,1022,1078,1077,1081,1078,1022,1021,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1095,1094,1103,1104,1102,1101,1100,1105,1106,1090,1100,1102,1107,1105,1104,1095,1103,1108,1109,1110,1095,1101,1093,1111,1101,1095,1104,1112,1113,1114,1115,1105,1107,1116,1116,1108,1105,1106,1112,1115,1117,1101,1100,1090,1093,1118,1119,1120,1099,1090,1106,1117,1091,1093,1092,1121,1111,1118,1122,1096,1123,1110,1113,1112,1105,1108,1110,1123,1111,1121,1124,901,1041,1124,1092,1091,981,992,1115,1114,1059,897,899,1115,897,1121,1092,992,902,1121,992,1124,1119,1118,1123,1105,1110,1112,1106,1124,902,901,1120,1119,1041,1040,1124,1121,902,1117,899,981,1117,1115,899,1091,1117,981,1098,1122,1118,1099,1125,1126,1127,1128,1129,1130,1131,1132,1133,1096,1122,1134,1094,1135,1098,1097,1135,1134,1122,1098,996,897,1059,986,922,984,995,994,877,1030,1039,878,877,994,1020,878,1039,1070,1086,1089,1024,1089,1079,1081,1021,1032,919,1028,940,950,1031,893,892,1017,1060,1053,954,893,1060,1057,955,954,1053,1082,1088,1067,1075,1096,1095,1111,1123,948,935,934,1124,1041,1119,971,1014,1050,972,1050,989,972,1014,1001,1003,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1178,1177,1183,1184,1185,1186,1187,1188,1189,1145,1190,1146,1154,1191,1192,1193,1194,1195,1196,1139,
- 1174,1197,1198,1199,1200,1144,1201,1145,1202,1203,1198,1204,1205,1176,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1172,1216,1217,1218,1194,1193,1219,1220,1221,1166,1212,1167,1146,1190,1222,1179,1181,1136,1195,1194,1159,1223,1224,1225,1226,1227,1225,1228,1219,1221,1228,1229,1219,1230,1231,1232,1211,1197,1190,1225,1227,1223,1233,1179,1136,1139,1196,1174,1139,1138,1170,1138,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1210,1198,1211,1174,1246,1196,1247,1246,1225,1155,1154,1248,1216,1242,1241,1247,1224,1249,1240,1250,1251,1150,1240,1242,1252,1250,1242,1138,1252,1166,1169,1253,1166,1253,1212,1159,1158,1195,1192,1191,1254,1144,1255,1205,1204,1256,1205,1255,1257,1258,1236,1187,1186,1236,1239,1248,1154,1192,1216,1192,1215,1244,1162,1161,1245,1161,1259,1260,1143,1245,1208,1207,1261,1205,1262,1176,1234,1263,1264,1265,1266,1264,1267,1268,1237,1214,1167,1212,1184,1180,1179,1269,1228,1221,1270,1260,1259,1271,1272,1148,1273,1137,1263,1234,1138,1137,1234,1202,1198,1210,1210,1206,1208,1169,1274,1163,1169,1163,1175,1275,1189,1276,1192,1216,1248,1216,1155,1248,1161,1160,1259,1210,1208,1202,1234,1264,1266,1277,1192,1146,1215,1168,1278,1274,1169,1203,1279,1213,1155,1241,1153,1280,1241,1155,1216,1281,1158,1157,1204,1165,1255,1163,1165,1204,1173,1146,1222,1185,1282,1183,1254,1281,1144,1281,1201,1144,1177,1283,1275,1276,1276,1182,1177,1226,1173,1222,1190,1227,1226,1222,1154,1193,1191,1284,1285,1286,1287,1170,1138,1242,1195,1254,1191,1191,1193,1195,1209,1145,1201,1171,1242,1216,1170,1242,1171,1231,1288,1232,1288,1289,1290,1189,1291,1276,1292,1258,1293,1231,1289,1288,1211,1190,1145,1209,1211,1145,1246,1247,1196,1196,1247,1233,1199,1294,1295,1294,1182,1295,1202,1208,1296,1232,1297,1230,1298,1299,1147,1184,1179,1233,1184,1233,1185,1224,1247,1225,1299,1298,1300,1227,1190,1197,1272,1273,1301,1172,1171,1216,1158,1281,1254,1195,1158,1254,1247,1185,1233,1273,1288,1290,1273,1290,1301,1186,1257,1236,1225,1246,1226,1223,1227,1197,1189,1188,1200,1291,1186,1302,1257,1243,1142,1262,1205,1256,1256,1255,1244,1243,1303,1304,1274,1278,
- 1164,1163,1274,1304,1253,1169,1178,1182,1253,1178,1294,1213,1212,1296,1279,1203,1202,1208,1305,1296,1261,1305,1208,1306,1293,1260,1270,1292,1293,1306,1292,1306,1267,1267,1237,1292,1307,1308,1309,1310,1272,1311,1148,1149,1148,1311,1312,1298,1147,1147,1149,1312,1209,1206,1210,1209,1207,1206,1281,1207,1201,1212,1253,1182,1294,1212,1182,1203,1294,1199,1198,1203,1199,1252,1138,1235,1250,1252,1235,1313,1251,1307,1310,1314,1302,1275,1283,1186,1275,1302,1186,1189,1275,1268,1282,1238,1237,1245,1143,1142,1243,1293,1140,1143,1260,1204,1176,1175,1163,1262,1283,1177,1176,1169,1175,1178,1142,1141,1283,1262,1224,1223,1188,1187,1239,1238,1185,1249,1224,1187,1239,1249,1200,1188,1223,1197,1238,1282,1185,1144,1146,1192,1315,1261,1207,1246,1174,1173,1226,1136,1181,1263,1137,1173,1172,1215,1146,1241,1240,1150,1153,1289,1301,1290,1316,1317,1318,1319,1320,1150,1251,1314,1151,1153,1152,1321,1280,1156,1217,1193,1154,1266,1265,1308,1307,1313,1277,1266,1250,1295,1291,1200,1199,1296,1305,1279,1315,1207,1281,1157,1259,1322,1271,1201,1207,1209,1291,1182,1276,1292,1237,1236,1258,1323,1280,1321,1324,1325,1326,1317,1324,1327,1328,1329,1330,1331,1326,1286,1332,1325,1333,1287,1152,1151,1334,1333,1310,1309,1328,1327,1335,1310,1327,1326,1318,1317,1334,1314,1336,1321,1152,1333,1325,1337,1321,1333,1324,1317,1316,1323,1287,1286,1326,1325,1338,1339,1300,1298,1340,1341,1231,1230,1342,1343,1272,1301,1344,1342,1301,1289,1250,1266,1307,1251,1335,1327,1330,1345,1338,1298,1312,1149,1346,1345,1149,1311,1347,1348,1334,1333,1348,1349,1334,1336,1350,1231,1341,1344,1289,1324,1337,1325,1319,1318,1326,1331,1324,1321,1337,1334,1350,1351,1347,1314,1335,1336,1333,1334,1348,1343,1346,1311,1272,1314,1310,1335,1335,1330,1350,1335,1350,1336,1151,1314,1334,1287,1333,1352,1352,1349,1343,1342,1349,1348,1347,1346,1343,1347,1351,1345,1346,1330,1351,1350,1330,1329,1339,1338,1332,1286,1285,1341,1340,1344,1341,1285,1284,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1358,1357,1366,1367,1365,1364,1363,1368,1369,1353,1363,1365,1370,1368,1367,1358,1366,1371,1372,1373,
- 1358,1364,1356,1374,1364,1358,1367,1375,1376,1377,1378,1368,1370,1379,1379,1371,1368,1369,1375,1378,1380,1364,1363,1353,1356,1381,1382,1383,1362,1353,1369,1380,1354,1356,1355,1384,1374,1381,1385,1359,1386,1373,1376,1375,1368,1371,1373,1386,1374,1384,1387,1164,1304,1387,1355,1354,1244,1255,1378,1377,1322,1160,1162,1378,1160,1384,1355,1255,1165,1384,1255,1387,1382,1381,1386,1368,1373,1375,1369,1387,1165,1164,1383,1382,1304,1303,1387,1384,1165,1380,1162,1244,1380,1378,1162,1354,1380,1244,1361,1385,1381,1362,1388,1389,1390,1391,1392,1393,1394,1395,1396,1359,1385,1397,1357,1398,1361,1360,1398,1397,1385,1361,1259,1160,1322,1249,1185,1247,1258,1257,1140,1293,1302,1141,1140,1257,1283,1141,1302,1333,1349,1352,1287,1352,1342,1344,1284,1295,1182,1291,1203,1213,1294,1156,1155,1280,1323,1316,1217,1156,1323,1320,1218,1217,1316,1345,1351,1330,1338,1359,1358,1374,1386,1211,1198,1197,1387,1304,1382,1234,1277,1313,1235,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1413,1415,1416,1417,1413,1418,1419,1420,1421,1422,1423,1407,1406,1424,1425,1423,1422,1421,1426,1427,1402,1421,1423,1428,1426,1429,1430,1431,1432,1416,1415,1433,1400,1434,1425,1407,1424,1407,1422,1405,1435,1422,1407,1425,1436,1437,1438,1439,1419,1440,1420,1440,1441,1442,1419,1441,1440,1420,1443,1418,1444,1445,1399,1445,1444,1446,1433,1434,1447,1434,1440,1442,1434,1442,1447,1448,1449,1450,1451,1433,1452,1400,1401,1400,1452,1453,1444,1399,1399,1401,1453,1426,1428,1454,1427,1448,1451,1455,1422,1421,1402,1405,1441,1447,1442,1456,1457,1458,1459,1460,1402,1427,1455,1403,1405,1404,1461,1435,1408,1409,1412,1406,1430,1429,1449,1448,1454,1462,1430,1426,1463,1435,1461,1464,1465,1466,1457,1464,1467,1468,1469,1470,1471,1466,1438,1472,1465,1473,1439,1404,1403,1474,1473,1451,1450,1468,1467,1475,1451,1467,1466,1458,1457,1474,1455,1476,1461,1404,1473,1465,1477,1461,1473,1464,1457,1456,1463,1439,1438,1466,1465,1478,1479,1446,1444,1480,1481,1419,1418,1482,1483,1433,1447,1484,1482,1447,1441,1426,1430,1448,1427,1475,1467,1470,1485,1478,1444,1453,1401,
- 1486,1485,1401,1452,1487,1488,1474,1473,1488,1489,1474,1476,1490,1419,1481,1484,1441,1464,1477,1465,1459,1458,1466,1471,1464,1461,1477,1474,1490,1491,1487,1455,1475,1476,1473,1474,1488,1483,1486,1452,1433,1455,1451,1475,1475,1470,1490,1475,1490,1476,1403,1455,1474,1439,1473,1492,1492,1489,1483,1482,1489,1488,1487,1486,1483,1487,1491,1485,1486,1470,1491,1490,1470,1469,1479,1478,1472,1438,1437,1481,1480,1484,1481,1437,1436,1473,1489,1492,1439,1492,1482,1484,1436,1408,1407,1435,1463,1456,1409,1408,1463,1460,1410,1409,1456,1485,1491,1470,1478,1462,1431,1430,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1499,1498,1512,1513,1514,1515,1516,1517,1518,1519,1520,1494,1493,1521,1522,1510,1509,1504,1503,1506,1505,1523,1524,1514,1513,1497,1496,1495,1498,1501,1500,1499,1502,1525,1493,1496,1526,1527,1519,1493,1525,1528,1505,1508,1529,1530,1504,1505,1528,1531,1501,1504,1530,1531,1532,1500,1501,1533,1497,1500,1532,1533,1526,1496,1497,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1576,1575,1581,1582,1583,1584,1585,1586,1587,1543,1588,1544,1552,1589,1590,1591,1592,1593,1594,1537,1572,1595,1596,1597,1598,1542,1599,1543,1600,1601,1596,1602,1603,1574,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1570,1614,1615,1616,1592,1591,1564,1610,1565,1544,1588,1617,1577,1579,1534,1593,1592,1557,1618,1619,1620,1621,1622,1620,1623,1624,1625,1609,1595,1588,1620,1622,1618,1626,1577,1534,1537,1594,1572,1537,1536,1568,1536,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1608,1596,1609,1572,1639,1594,1640,1639,1620,1553,1552,1641,1614,1635,1634,1640,1619,1642,1633,1643,1644,1548,1633,1635,1645,1643,1635,1536,1645,1564,1567,1646,1564,1646,1610,1557,1556,1593,1590,1589,1647,1542,1648,1603,1602,1649,1603,1648,1650,1651,1629,1585,1584,1629,1632,1641,1552,1590,1614,1590,1613,1637,1560,1559,1638,1559,1652,1653,
- 1541,1638,1606,1605,1654,1603,1655,1574,1627,1656,1657,1658,1659,1657,1660,1661,1630,1612,1565,1610,1582,1578,1577,1662,1653,1652,1663,1664,1546,1665,1535,1656,1627,1536,1535,1627,1600,1596,1608,1608,1604,1606,1567,1666,1561,1567,1561,1573,1667,1587,1668,1590,1614,1641,1614,1553,1641,1559,1558,1652,1608,1606,1600,1627,1657,1659,1669,1590,1544,1613,1566,1670,1666,1567,1601,1671,1611,1553,1634,1551,1672,1634,1553,1614,1673,1556,1555,1602,1563,1648,1561,1563,1602,1571,1544,1617,1583,1674,1581,1647,1673,1542,1673,1599,1542,1575,1675,1667,1668,1668,1580,1575,1621,1571,1617,1588,1622,1621,1617,1552,1591,1589,1676,1677,1678,1679,1568,1536,1635,1593,1647,1589,1589,1591,1593,1607,1543,1599,1569,1635,1614,1568,1635,1569,1624,1680,1625,1680,1681,1682,1587,1683,1668,1684,1651,1685,1624,1681,1680,1609,1588,1543,1607,1609,1543,1639,1640,1594,1594,1640,1626,1597,1686,1687,1686,1580,1687,1600,1606,1688,1625,1689,1623,1690,1691,1545,1582,1577,1626,1582,1626,1583,1619,1640,1620,1691,1690,1692,1622,1588,1595,1664,1665,1693,1570,1569,1614,1556,1673,1647,1593,1556,1647,1640,1583,1626,1665,1680,1682,1665,1682,1693,1584,1650,1629,1620,1639,1621,1618,1622,1595,1587,1586,1598,1683,1584,1694,1650,1636,1540,1655,1603,1649,1649,1648,1637,1636,1695,1696,1666,1670,1562,1561,1666,1696,1646,1567,1576,1580,1646,1576,1686,1611,1610,1688,1671,1601,1600,1606,1697,1688,1654,1697,1606,1698,1685,1653,1662,1684,1685,1698,1684,1698,1660,1660,1630,1684,1699,1700,1701,1702,1664,1703,1546,1547,1546,1703,1704,1690,1545,1545,1547,1704,1607,1604,1608,1607,1605,1604,1673,1605,1599,1610,1646,1580,1686,1610,1580,1601,1686,1597,1596,1601,1597,1645,1536,1628,1643,1645,1628,1705,1644,1699,1702,1706,1694,1667,1675,1584,1667,1694,1584,1587,1667,1661,1674,1631,1630,1638,1541,1540,1636,1685,1538,1541,1653,1602,1574,1573,1561,1655,1675,1575,1574,1567,1573,1576,1540,1539,1675,1655,1619,1618,1586,1585,1632,1631,1583,1642,1619,1585,1632,1642,1598,1586,1618,1595,1631,1674,1583,1542,1544,1590,1707,1654,1605,1639,1572,1571,1621,1534,1579,1656,1535,1571,1570,1613,1544,1634,1633,
- 1548,1551,1681,1693,1682,1708,1709,1710,1711,1712,1548,1644,1706,1549,1551,1550,1713,1672,1554,1615,1591,1552,1659,1658,1700,1699,1705,1669,1659,1643,1687,1683,1598,1597,1688,1697,1671,1707,1605,1673,1555,1652,1714,1663,1599,1605,1607,1683,1580,1668,1684,1630,1629,1651,1715,1672,1713,1716,1717,1718,1709,1716,1719,1720,1721,1722,1723,1718,1678,1724,1717,1725,1679,1550,1549,1726,1725,1702,1701,1720,1719,1727,1702,1719,1718,1710,1709,1726,1706,1728,1713,1550,1725,1717,1729,1713,1725,1716,1709,1708,1715,1679,1678,1718,1717,1730,1731,1692,1690,1732,1733,1624,1623,1734,1735,1664,1693,1736,1734,1693,1681,1643,1659,1699,1644,1727,1719,1722,1737,1730,1690,1704,1547,1738,1737,1547,1703,1739,1740,1726,1725,1740,1741,1726,1728,1742,1624,1733,1736,1681,1716,1729,1717,1711,1710,1718,1723,1716,1713,1729,1726,1742,1743,1739,1706,1727,1728,1725,1726,1740,1735,1738,1703,1664,1706,1702,1727,1727,1722,1742,1727,1742,1728,1549,1706,1726,1679,1725,1744,1744,1741,1735,1734,1741,1740,1739,1738,1735,1739,1743,1737,1738,1722,1743,1742,1722,1721,1731,1730,1724,1678,1677,1733,1732,1736,1733,1677,1676,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1750,1749,1758,1759,1757,1756,1755,1760,1761,1745,1755,1757,1762,1760,1759,1750,1758,1763,1764,1765,1750,1756,1748,1766,1756,1750,1759,1767,1768,1769,1770,1760,1762,1771,1771,1763,1760,1761,1767,1770,1772,1756,1755,1745,1748,1773,1774,1775,1754,1745,1761,1772,1746,1748,1747,1776,1766,1773,1777,1751,1778,1765,1768,1767,1760,1763,1765,1778,1766,1776,1779,1562,1696,1779,1747,1746,1637,1648,1770,1769,1714,1558,1560,1770,1558,1776,1747,1648,1563,1776,1648,1779,1774,1773,1778,1760,1765,1767,1761,1779,1563,1562,1775,1774,1696,1695,1779,1776,1563,1772,1560,1637,1772,1770,1560,1746,1772,1637,1753,1777,1773,1754,1780,1781,1782,1783,1784,1785,1786,1787,1788,1751,1777,1789,1749,1790,1753,1752,1790,1789,1777,1753,1652,1558,1714,1642,1583,1640,1651,1650,1538,1685,1694,1539,1538,1650,1675,1539,1694,1725,1741,1744,1679,1744,1734,1736,1676,1687,1580,1683,1601,1611,1686,1554,1553,1672,1715,1708,1615,
- 1554,1715,1712,1616,1615,1708,1737,1743,1722,1730,1751,1750,1766,1778,1609,1596,1595,1779,1696,1774,1627,1669,1705,1628,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1833,1832,1838,1839,1840,1841,1842,1843,1844,1800,1845,1801,1809,1846,1847,1848,1849,1850,1851,1794,1829,1852,1853,1854,1855,1799,1856,1800,1857,1858,1853,1859,1860,1831,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1827,1871,1872,1873,1849,1848,1874,1875,1876,1821,1867,1822,1801,1845,1877,1834,1836,1791,1850,1849,1814,1878,1879,1880,1881,1882,1880,1883,1874,1876,1883,1884,1874,1885,1886,1887,1866,1852,1845,1880,1882,1878,1888,1834,1791,1794,1851,1829,1794,1793,1825,1793,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1865,1853,1866,1829,1901,1851,1902,1901,1880,1810,1809,1903,1871,1897,1896,1902,1879,1904,1895,1905,1906,1805,1895,1897,1907,1905,1897,1793,1907,1821,1824,1908,1821,1908,1867,1814,1813,1850,1847,1846,1909,1799,1910,1860,1859,1911,1860,1910,1912,1913,1891,1842,1841,1891,1894,1903,1809,1847,1871,1847,1870,1899,1817,1816,1900,1816,1914,1915,1798,1900,1863,1862,1916,1860,1917,1831,1889,1918,1919,1920,1921,1919,1922,1923,1892,1869,1822,1867,1839,1835,1834,1924,1883,1876,1925,1915,1914,1926,1927,1803,1928,1792,1918,1889,1793,1792,1889,1857,1853,1865,1865,1861,1863,1824,1929,1818,1824,1818,1830,1930,1844,1931,1847,1871,1903,1871,1810,1903,1816,1815,1914,1865,1863,1857,1889,1919,1932,1847,1801,1870,1823,1933,1929,1824,1858,1934,1868,1810,1896,1808,1935,1896,1810,1871,1936,1813,1812,1859,1820,1910,1818,1820,1859,1828,1801,1877,1840,1937,1838,1909,1936,1799,1936,1856,1799,1832,1938,1930,1931,1931,1837,1832,1881,1828,1877,1845,1882,1881,1877,1809,1848,1846,1939,1940,1941,1942,1825,1793,1897,1850,1909,1846,1846,1848,1850,1864,1800,1856,1826,1897,1871,1825,1897,1826,1886,1943,1887,1943,1944,1945,1844,1946,1931,1947,1913,1948,1886,1944,1943,1866,1845,
- 1800,1864,1866,1800,1901,1902,1851,1851,1902,1888,1854,1949,1950,1949,1837,1950,1857,1863,1951,1887,1952,1885,1953,1954,1802,1839,1834,1888,1839,1888,1840,1879,1902,1880,1954,1953,1955,1882,1845,1852,1927,1928,1956,1827,1826,1871,1813,1936,1909,1850,1813,1909,1840,1888,1902,1928,1943,1945,1928,1945,1956,1841,1912,1891,1880,1901,1881,1878,1882,1852,1844,1843,1855,1946,1841,1957,1912,1898,1797,1917,1860,1911,1911,1910,1899,1898,1958,1959,1929,1933,1819,1818,1929,1959,1908,1824,1833,1837,1908,1833,1949,1868,1867,1951,1934,1858,1857,1863,1960,1951,1916,1960,1863,1961,1948,1915,1925,1947,1948,1961,1947,1961,1922,1922,1892,1947,1962,1963,1964,1965,1927,1966,1803,1804,1803,1966,1967,1953,1802,1802,1804,1967,1864,1861,1865,1864,1862,1861,1936,1862,1856,1867,1908,1837,1949,1867,1837,1858,1949,1854,1853,1858,1854,1907,1793,1890,1905,1907,1968,1906,1962,1965,1969,1957,1930,1938,1841,1930,1957,1841,1844,1930,1923,1937,1893,1892,1900,1798,1797,1898,1948,1795,1798,1915,1859,1831,1830,1818,1917,1938,1832,1831,1824,1830,1833,1797,1796,1938,1917,1879,1878,1843,1842,1894,1893,1840,1904,1879,1842,1894,1904,1855,1843,1878,1852,1893,1937,1840,1799,1801,1847,1970,1916,1862,1901,1829,1828,1881,1791,1836,1918,1792,1828,1827,1870,1801,1896,1895,1805,1808,1944,1956,1945,1971,1972,1973,1974,1975,1805,1906,1969,1806,1808,1807,1976,1935,1811,1872,1848,1809,1921,1920,1963,1962,1968,1932,1921,1905,1950,1946,1855,1854,1951,1960,1934,1970,1862,1936,1812,1914,1977,1926,1856,1862,1864,1946,1837,1931,1947,1892,1891,1913,1978,1935,1976,1979,1980,1981,1972,1979,1982,1983,1984,1985,1986,1981,1941,1987,1980,1988,1942,1807,1806,1989,1988,1965,1964,1983,1982,1990,1965,1982,1981,1973,1972,1989,1969,1991,1976,1807,1988,1980,1992,1976,1988,1979,1972,1971,1978,1942,1941,1981,1980,1993,1994,1955,1953,1995,1996,1886,1885,1997,1998,1927,1956,1999,1997,1956,1944,1905,1921,1962,1906,1990,1982,1985,2000,1993,1953,1967,1804,2001,2000,1804,1966,2002,2003,1989,1988,2003,2004,1989,1991,2005,1886,1996,1999,1944,1979,1992,1980,1974,1973,1981,1986,1979,1976,1992,1989,2005,
- 2006,2002,1969,1990,1991,1988,1989,2003,1998,2001,1966,1927,1969,1965,1990,1990,1985,2005,1990,2005,1991,1806,1969,1989,1942,1988,2007,2007,2004,1998,1997,2004,2003,2002,2001,1998,2002,2006,2000,2001,1985,2006,2005,1985,1984,1994,1993,1987,1941,1940,1996,1995,1999,1996,1940,1939,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2013,2012,2021,2022,2020,2019,2018,2023,2024,2008,2018,2020,2025,2023,2022,2013,2021,2026,2027,2028,2013,2019,2011,2029,2019,2013,2022,2030,2031,2032,2033,2023,2025,2034,2034,2026,2023,2024,2030,2033,2035,2019,2018,2008,2011,2036,2037,2038,2017,2008,2024,2035,2009,2011,2010,2039,2029,2036,2040,2014,2041,2028,2031,2030,2023,2026,2028,2041,2029,2039,2042,1819,1959,2042,2010,2009,1899,1910,2033,2032,1977,1815,1817,2033,1815,2039,2010,1910,1820,2039,1910,2042,2037,2036,2041,2023,2028,2030,2024,2042,1820,1819,2038,2037,1959,1958,2042,2039,1820,2035,1817,1899,2035,2033,1817,2009,2035,1899,2016,2040,2036,2017,2043,2044,2045,2046,2047,2048,2049,2050,2051,2014,2040,2052,2012,2053,2016,2015,2053,2052,2040,2016,1914,1815,1977,1904,1840,1902,1913,1912,1795,1948,1957,1796,1795,1912,1938,1796,1957,1988,2004,2007,1942,2007,1997,1999,1939,1950,1837,1946,1858,1868,1949,1811,1810,1935,1978,1971,1872,1811,1978,1975,1873,1872,1971,2000,2006,1985,1993,2014,2013,2029,2041,1866,1853,1852,2042,1959,2037,1889,1932,1968,1890,1968,1907,1890,1932,1919,1921,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2096,2095,2101,2102,2103,2104,2105,2106,2107,2063,2108,2064,2072,2109,2110,2111,2112,2113,2114,2057,2092,2115,2116,2117,2118,2062,2119,2063,2120,2121,2116,2122,2123,2094,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2090,2134,2135,2136,2112,2111,2137,2138,2139,2084,2130,2085,2064,2108,2140,2097,2099,2054,2113,2112,2077,2141,2142,2143,2144,2145,2143,2146,2137,2139,2146,2147,2137,2148,2149,2150,2129,2115,2108,2143,2145,
- 2141,2151,2097,2054,2057,2114,2092,2057,2056,2088,2056,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2128,2116,2129,2092,2164,2114,2165,2164,2143,2073,2072,2166,2134,2160,2159,2165,2142,2167,2158,2168,2169,2068,2158,2160,2170,2168,2160,2056,2170,2084,2087,2171,2084,2171,2130,2077,2076,2113,2110,2109,2172,2062,2173,2123,2122,2174,2123,2173,2175,2176,2154,2105,2104,2154,2157,2166,2072,2110,2134,2110,2133,2162,2080,2079,2163,2079,2177,2178,2061,2163,2126,2125,2179,2123,2180,2094,2152,2181,2182,2183,2184,2182,2185,2186,2155,2132,2085,2130,2102,2098,2097,2187,2146,2139,2188,2178,2177,2189,2190,2066,2191,2055,2181,2152,2056,2055,2152,2120,2116,2128,2128,2124,2126,2087,2192,2081,2087,2081,2093,2193,2107,2194,2110,2134,2166,2134,2073,2166,2079,2078,2177,2128,2126,2120,2152,2182,2184,2195,2110,2064,2133,2086,2196,2192,2087,2121,2197,2131,2073,2159,2071,2198,2159,2073,2134,2199,2076,2075,2122,2083,2173,2081,2083,2122,2091,2064,2140,2103,2200,2101,2172,2199,2062,2199,2119,2062,2095,2201,2193,2194,2194,2100,2095,2144,2091,2140,2108,2145,2144,2140,2072,2111,2109,2202,2203,2204,2205,2088,2056,2160,2113,2172,2109,2109,2111,2113,2127,2063,2119,2089,2160,2134,2088,2160,2089,2149,2206,2150,2206,2207,2208,2107,2209,2194,2210,2176,2211,2149,2207,2206,2129,2108,2063,2127,2129,2063,2164,2165,2114,2114,2165,2151,2117,2212,2213,2212,2100,2213,2120,2126,2214,2150,2215,2148,2216,2217,2065,2102,2097,2151,2102,2151,2103,2142,2165,2143,2217,2216,2218,2145,2108,2115,2190,2191,2219,2090,2089,2134,2076,2199,2172,2113,2076,2172,2165,2103,2151,2191,2206,2208,2191,2208,2219,2104,2175,2154,2143,2164,2144,2141,2145,2115,2107,2106,2118,2209,2104,2220,2175,2161,2060,2180,2123,2174,2174,2173,2162,2161,2221,2222,2192,2196,2082,2081,2192,2222,2171,2087,2096,2100,2171,2096,2212,2131,2130,2214,2197,2121,2120,2126,2223,2214,2179,2223,2126,2224,2211,2178,2188,2210,2211,2224,2210,2224,2185,2185,2155,2210,2225,2226,2227,2228,2190,2229,2066,2067,2066,2229,2230,2216,2065,2065,2067,2230,2127,2124,2128,2127,2125,2124,2199,2125,2119,2130,2171,2100,2212,
- 2130,2100,2121,2212,2117,2116,2121,2117,2170,2056,2153,2168,2170,2153,2231,2169,2225,2228,2232,2220,2193,2201,2104,2193,2220,2104,2107,2193,2186,2200,2156,2155,2163,2061,2060,2161,2211,2058,2061,2178,2122,2094,2093,2081,2180,2201,2095,2094,2087,2093,2096,2060,2059,2201,2180,2142,2141,2106,2105,2157,2156,2103,2167,2142,2105,2157,2167,2118,2106,2141,2115,2156,2200,2103,2062,2064,2110,2233,2179,2125,2164,2092,2091,2144,2054,2099,2181,2055,2091,2090,2133,2064,2159,2158,2068,2071,2207,2219,2208,2234,2235,2236,2237,2238,2068,2169,2232,2069,2071,2070,2239,2198,2074,2135,2111,2072,2184,2183,2226,2225,2231,2195,2184,2168,2213,2209,2118,2117,2214,2223,2197,2233,2125,2199,2075,2177,2240,2189,2119,2125,2127,2209,2100,2194,2210,2155,2154,2176,2241,2198,2239,2242,2243,2244,2235,2242,2245,2246,2247,2248,2249,2244,2204,2250,2243,2251,2205,2070,2069,2252,2251,2228,2227,2246,2245,2253,2228,2245,2244,2236,2235,2252,2232,2254,2239,2070,2251,2243,2255,2239,2251,2242,2235,2234,2241,2205,2204,2244,2243,2256,2257,2218,2216,2258,2259,2149,2148,2260,2261,2190,2219,2262,2260,2219,2207,2168,2184,2225,2169,2253,2245,2248,2263,2256,2216,2230,2067,2264,2263,2067,2229,2265,2266,2252,2251,2266,2267,2252,2254,2268,2149,2259,2262,2207,2242,2255,2243,2237,2236,2244,2249,2242,2239,2255,2252,2268,2269,2265,2232,2253,2254,2251,2252,2266,2261,2264,2229,2190,2232,2228,2253,2253,2248,2268,2253,2268,2254,2069,2232,2252,2205,2251,2270,2270,2267,2261,2260,2267,2266,2265,2264,2261,2265,2269,2263,2264,2248,2269,2268,2248,2247,2257,2256,2250,2204,2203,2259,2258,2262,2259,2203,2202,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2276,2275,2284,2285,2283,2282,2281,2286,2287,2271,2281,2283,2288,2286,2285,2276,2284,2289,2290,2291,2276,2282,2274,2292,2282,2276,2285,2293,2294,2295,2296,2286,2288,2297,2297,2289,2286,2287,2293,2296,2298,2282,2281,2271,2274,2299,2300,2301,2280,2271,2287,2298,2272,2274,2273,2302,2292,2299,2303,2277,2304,2291,2294,2293,2286,2289,2291,2304,2292,2302,2305,2082,2222,2305,2273,2272,2162,2173,2296,2295,2240,2078,2080,2296,2078,
- 2302,2273,2173,2083,2302,2173,2305,2300,2299,2304,2286,2291,2293,2287,2305,2083,2082,2301,2300,2222,2221,2305,2302,2083,2298,2080,2162,2298,2296,2080,2272,2298,2162,2279,2303,2299,2280,2306,2307,2308,2309,2310,2311,2312,2313,2314,2277,2303,2315,2275,2316,2279,2278,2316,2315,2303,2279,2177,2078,2240,2167,2103,2165,2176,2175,2058,2211,2220,2059,2058,2175,2201,2059,2220,2251,2267,2270,2205,2270,2260,2262,2202,2213,2100,2209,2121,2131,2212,2074,2073,2198,2241,2234,2135,2074,2241,2238,2136,2135,2234,2263,2269,2248,2256,2277,2276,2292,2304,2129,2116,2115,2305,2222,2300,2152,2195,2231,2153,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2331,2333,2334,2335,2331,2336,2337,2338,2339,2340,2341,2325,2324,2342,2343,2341,2340,2339,2344,2345,2320,2339,2341,2346,2344,2347,2348,2349,2350,2334,2333,2351,2318,2352,2343,2325,2342,2325,2340,2323,2353,2340,2325,2343,2354,2355,2356,2357,2337,2358,2338,2358,2359,2360,2337,2359,2358,2338,2361,2336,2362,2363,2317,2363,2362,2364,2351,2352,2365,2352,2358,2360,2352,2360,2365,2366,2367,2368,2369,2351,2370,2318,2319,2318,2370,2371,2362,2317,2317,2319,2371,2344,2346,2372,2345,2366,2369,2373,2340,2339,2320,2323,2359,2365,2360,2374,2375,2376,2377,2378,2320,2345,2373,2321,2323,2322,2379,2353,2326,2327,2330,2324,2348,2347,2367,2366,2372,2380,2348,2344,2381,2353,2379,2382,2383,2384,2375,2382,2385,2386,2387,2388,2389,2384,2356,2390,2383,2391,2357,2322,2321,2392,2391,2369,2368,2386,2385,2393,2369,2385,2384,2376,2375,2392,2373,2394,2379,2322,2391,2383,2395,2379,2391,2382,2375,2374,2381,2357,2356,2384,2383,2396,2397,2364,2362,2398,2399,2337,2336,2400,2401,2351,2365,2402,2400,2365,2359,2344,2348,2366,2345,2393,2385,2388,2403,2396,2362,2371,2319,2404,2403,2319,2370,2405,2406,2392,2391,2406,2407,2392,2394,2408,2337,2399,2402,2359,2382,2395,2383,2377,2376,2384,2389,2382,2379,2395,2392,2408,2409,2405,2373,2393,2394,2391,2392,2406,2401,2404,2370,2351,2373,2369,2393,2393,2388,2408,2393,2408,2394,2321,2373,2392,2357,2391,2410,2410,2407,2401,2400,2407,2406,2405,2404,2401,
- 2405,2409,2403,2404,2388,2409,2408,2388,2387,2397,2396,2390,2356,2355,2399,2398,2402,2399,2355,2354,2391,2407,2410,2357,2410,2400,2402,2354,2326,2325,2353,2381,2374,2327,2326,2381,2378,2328,2327,2374,2403,2409,2388,2396,2380,2349,2348
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *4514 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,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,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,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,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,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,0,1,0,1,1,0,1,1,1,1,1,1,0,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,0,0,0,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,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,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,0,1,0,1,1,0,1,1,1,1,1,1,0,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,0,0,0
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "ByPolygon"
- ReferenceInformationType: "IndexToDirect"
- Materials: *2548 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- 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: 2399509529312, "Geometry::", "Mesh" {
- Vertices: *1932 {
- a: 382.50390625,0,-76.0850830078125,360.3125,0,-149.246337890625,324.2734375,0,-216.672119140625,275.7734375,0,-275.771362304688,216.671875,0,-324.272827148438,149.24609375,0,-360.312744140625,76.0859375,0,-382.505981445313,0,0,-389.999755859375,-76.0859375,0,-382.505981445313,-149.24609375,0,-360.312866210938,-216.671875,0,-324.273071289063,-275.7734375,0,-275.771606445313,-324.2734375,0,-216.672485351563,-360.3125,0,-149.246704101563,-382.50390625,0,-76.08544921875,-390,0,-0.000244140625,-382.50390625,0,76.0849609375,-360.3125,0,149.246215820313,-324.2734375,0,216.671997070313,-275.7734375,0,275.771362304688,-216.671875,0,324.272827148438,-149.24609375,0,360.312744140625,-76.0859375,0,382.505981445313,0,0,389.999755859375,76.0859375,0,382.506103515625,149.24609375,0,360.312866210938,216.671875,0,324.27294921875,275.7734375,0,275.771484375,324.2734375,0,216.672241210938,360.3125,0,149.246459960938,382.50390625,0,76.0850830078125,390,0,-0.0001220703125,382.50390625,600,-76.0850830078125,360.3125,600,-149.246337890625,324.2734375,600,-216.672119140625,275.7734375,600,-275.771362304688,216.671875,600,-324.272827148438,149.24609375,600,-360.312744140625,76.0859375,600,-382.505981445313,0,600,-389.999755859375,-76.0859375,600,-382.505981445313,-149.24609375,600,-360.312866210938,-216.671875,600,-324.273071289063,-275.7734375,600,-275.771606445313,-324.2734375,600,-216.672485351563,-360.3125,600,-149.246704101563,-382.50390625,600,-76.08544921875,-390,600,-0.000244140625,-382.50390625,600,76.0849609375,-360.3125,600,149.246215820313,-324.2734375,600,216.671997070313,-275.7734375,600,275.771362304688,-216.671875,600,324.272827148438,-149.24609375,600,360.312744140625,-76.0859375,600,382.505981445313,0,600,389.999755859375,76.0859375,600,382.506103515625,149.24609375,600,360.312866210938,216.671875,600,324.27294921875,275.7734375,600,275.771484375,324.2734375,600,216.672241210938,360.3125,600,149.246459960938,382.50390625,600,76.0850830078125,390,600,-0.0001220703125,382.50390625,500,-76.0850830078125,360.3125,500,-149.246337890625,
- 324.2734375,500,-216.672119140625,275.7734375,500,-275.771362304688,216.671875,500,-324.272827148438,149.24609375,500,-360.312744140625,76.0859375,500,-382.505981445313,0,500,-389.999755859375,-76.0859375,500,-382.505981445313,-149.24609375,500,-360.312866210938,-216.671875,500,-324.273071289063,-275.7734375,500,-275.771606445313,-324.2734375,500,-216.672485351563,-360.3125,500,-149.246704101563,-382.50390625,500,-76.08544921875,-390,500,-0.000244140625,-382.50390625,500,76.0849609375,-360.3125,500,149.246215820313,-324.2734375,500,216.671997070313,-275.7734375,500,275.771362304688,-216.671875,500,324.272827148438,-149.24609375,500,360.312744140625,-76.0859375,500,382.505981445313,0,500,389.999755859375,76.0859375,500,382.506103515625,149.24609375,500,360.312866210938,216.671875,500,324.27294921875,275.7734375,500,275.771484375,324.2734375,500,216.672241210938,360.3125,500,149.246459960938,382.50390625,500,76.0850830078125,390,500,-0.0001220703125,382.50390625,400,-76.0850830078125,360.3125,400,-149.246337890625,324.2734375,400,-216.672119140625,275.7734375,400,-275.771362304688,216.671875,400,-324.272827148438,149.24609375,400,-360.312744140625,76.0859375,400,-382.505981445313,0,400,-389.999755859375,-76.0859375,400,-382.505981445313,-149.24609375,400,-360.312866210938,-216.671875,400,-324.273071289063,-275.7734375,400,-275.771606445313,-324.2734375,400,-216.672485351563,-360.3125,400,-149.246704101563,-382.50390625,400,-76.08544921875,-390,400,-0.000244140625,-382.50390625,400,76.0849609375,-360.3125,400,149.246215820313,-324.2734375,400,216.671997070313,-275.7734375,400,275.771362304688,-216.671875,400,324.272827148438,-149.24609375,400,360.312744140625,-76.0859375,400,382.505981445313,0,400,389.999755859375,76.0859375,400,382.506103515625,149.24609375,400,360.312866210938,216.671875,400,324.27294921875,275.7734375,400,275.771484375,324.2734375,400,216.672241210938,360.3125,400,149.246459960938,382.50390625,400,76.0850830078125,390,400,-0.0001220703125,382.50390625,300,-76.0850830078125,360.3125,300,-149.246337890625,
- 324.2734375,300,-216.672119140625,275.7734375,300,-275.771362304688,216.671875,300,-324.272827148438,149.24609375,300,-360.312744140625,76.0859375,300,-382.505981445313,0,300,-389.999755859375,-76.0859375,300,-382.505981445313,-149.24609375,300,-360.312866210938,-216.671875,300,-324.273071289063,-275.7734375,300,-275.771606445313,-324.2734375,300,-216.672485351563,-360.3125,300,-149.246704101563,-382.50390625,300,-76.08544921875,-390,300,-0.000244140625,-382.50390625,300,76.0849609375,-360.3125,300,149.246215820313,-324.2734375,300,216.671997070313,-275.7734375,300,275.771362304688,-216.671875,300,324.272827148438,-149.24609375,300,360.312744140625,-76.0859375,300,382.505981445313,76.0859375,300,382.506103515625,149.24609375,300,360.312866210938,216.671875,300,324.27294921875,275.7734375,300,275.771606445313,324.2734375,300,216.672241210938,360.3125,300,149.246459960938,382.50390625,300,76.0850830078125,390,300,-0.0001220703125,382.50390625,200,-76.0850830078125,360.3125,200,-149.246337890625,324.2734375,200,-216.672119140625,275.7734375,200,-275.771362304688,216.671875,200,-324.272827148438,149.24609375,200,-360.312744140625,76.0859375,200,-382.505981445313,0,200,-389.999755859375,-76.0859375,200,-382.505981445313,-149.24609375,200,-360.312866210938,-216.671875,200,-324.273071289063,-275.7734375,200,-275.771606445313,-324.2734375,200,-216.672485351563,-360.3125,200,-149.246704101563,-382.50390625,200,-76.08544921875,-390,200,-0.000244140625,-382.50390625,200,76.0849609375,-360.3125,200,149.246215820313,-324.2734375,200,216.671997070313,-275.7734375,200,275.771362304688,-216.671875,200,324.272827148438,-149.24609375,200,360.312744140625,-76.0859375,200,382.505981445313,0,200,389.999755859375,76.0859375,200,382.506103515625,149.24609375,200,360.312866210938,216.671875,200,324.27294921875,275.7734375,200,275.771606445313,324.2734375,200,216.672241210938,360.3125,200,149.246459960938,382.50390625,200,76.0850830078125,390,200,-0.0001220703125,382.50390625,100,-76.0850830078125,360.3125,100,-149.246337890625,324.2734375,100,-216.672119140625,
- 275.7734375,100,-275.771362304688,216.671875,100,-324.272827148438,149.24609375,100,-360.312744140625,76.0859375,100,-382.505981445313,0,100,-389.999755859375,-76.0859375,100,-382.505981445313,-149.24609375,100,-360.312866210938,-216.671875,100,-324.273071289063,-275.7734375,100,-275.771606445313,-324.2734375,100,-216.672485351563,-360.3125,100,-149.246704101563,-382.50390625,100,-76.08544921875,-390,100,-0.000244140625,-382.50390625,100,76.0849609375,-360.3125,100,149.246215820313,-324.2734375,100,216.671997070313,-275.7734375,100,275.771362304688,-216.671875,100,324.272827148438,-149.24609375,100,360.312744140625,-76.0859375,100,382.505981445313,0,100,389.999755859375,76.0859375,100,382.506103515625,149.24609375,100,360.312866210938,216.671875,100,324.27294921875,275.7734375,100,275.771606445313,324.2734375,100,216.672241210938,360.3125,100,149.246459960938,382.50390625,100,76.0850830078125,390,100,-0.0001220703125,322.3125,0,-64.1124267578125,303.6171875,0,-125.76123046875,273.24609375,0,-182.577026367188,232.37890625,0,-232.37646484375,182.578125,0,-273.245849609375,125.76171875,0,-303.614624023438,64.11328125,0,-322.315551757813,0,0,-328.630126953125,-64.11328125,0,-322.315551757813,-125.7578125,0,-303.61474609375,-182.578125,0,-273.24609375,-232.375,0,-232.376708984375,-273.24609375,0,-182.577270507813,-303.61328125,0,-125.761474609375,-322.3125,0,-64.11279296875,-328.6328125,0,-0.000213623046875,-322.3125,0,64.1124267578125,-303.61328125,0,125.761108398438,-273.24609375,0,182.577026367188,-232.375,0,232.37646484375,-182.578125,0,273.245971679688,-125.7578125,0,303.614624023438,-64.11328125,0,322.315551757813,0,0,328.630126953125,64.11328125,0,322.315673828125,125.76171875,0,303.61474609375,182.578125,0,273.245971679688,232.37890625,0,232.376586914063,273.24609375,0,182.5771484375,303.6171875,0,125.761352539063,322.3125,0,64.1124267578125,328.6328125,0,-0.0001220703125,322.3125,600,-64.1124267578125,303.6171875,600,-125.76123046875,273.24609375,600,-182.577026367188,232.37890625,600,-232.37646484375,182.578125,600,-273.245849609375,
- 125.76171875,600,-303.614624023438,64.11328125,600,-322.315551757813,0,600,-328.630126953125,-64.11328125,600,-322.315551757813,-125.7578125,600,-303.61474609375,-182.578125,600,-273.24609375,-232.375,600,-232.376708984375,-273.24609375,600,-182.577270507813,-303.61328125,600,-125.761474609375,-322.3125,600,-64.11279296875,-328.6328125,600,-0.000213623046875,-322.3125,600,64.1124267578125,-303.61328125,600,125.761108398438,-273.24609375,600,182.577026367188,-232.375,600,232.37646484375,-182.578125,600,273.245971679688,-125.7578125,600,303.614624023438,-64.11328125,600,322.315551757813,0,600,328.630126953125,64.11328125,600,322.315673828125,125.76171875,600,303.61474609375,182.578125,600,273.245971679688,232.37890625,600,232.376586914063,273.24609375,600,182.5771484375,303.6171875,600,125.761352539063,322.3125,600,64.1124267578125,328.6328125,600,-0.0001220703125,322.3125,500,-64.1124267578125,303.6171875,500,-125.76123046875,273.24609375,500,-182.577026367188,232.37890625,500,-232.37646484375,182.578125,500,-273.245849609375,125.76171875,500,-303.614624023438,64.11328125,500,-322.315551757813,0,500,-328.630126953125,-64.11328125,500,-322.315551757813,-125.7578125,500,-303.61474609375,-182.578125,500,-273.24609375,-232.375,500,-232.376708984375,-273.24609375,500,-182.577270507813,-303.61328125,500,-125.761474609375,-322.3125,500,-64.11279296875,-328.6328125,500,-0.00018310546875,-322.3125,500,64.1124267578125,-303.61328125,500,125.761108398438,-273.24609375,500,182.577026367188,-232.375,500,232.37646484375,-182.578125,500,273.245971679688,-125.7578125,500,303.614624023438,-64.11328125,500,322.315551757813,0,500,328.630126953125,64.11328125,500,322.315673828125,125.76171875,500,303.61474609375,182.578125,500,273.245971679688,232.37890625,500,232.376586914063,273.24609375,500,182.5771484375,303.6171875,500,125.761352539063,322.3125,500,64.1124267578125,328.6328125,500,-0.0001220703125,322.3125,400,-64.1124267578125,303.6171875,400,-125.76123046875,273.24609375,400,-182.577026367188,232.37890625,400,-232.37646484375,182.578125,400,-273.245849609375,
- 125.76171875,400,-303.614624023438,64.11328125,400,-322.315551757813,0,400,-328.630126953125,-64.11328125,400,-322.315551757813,-125.7578125,400,-303.61474609375,-182.578125,400,-273.24609375,-232.375,400,-232.376708984375,-273.24609375,400,-182.577270507813,-303.61328125,400,-125.761474609375,-322.3125,400,-64.11279296875,-328.6328125,400,-0.00018310546875,-322.3125,400,64.1124267578125,-303.61328125,400,125.761108398438,-273.24609375,400,182.577026367188,-232.375,400,232.37646484375,-182.578125,400,273.245971679688,-125.7578125,400,303.614624023438,-64.11328125,400,322.315551757813,0,400,328.630126953125,64.11328125,400,322.315673828125,125.76171875,400,303.61474609375,182.578125,400,273.245971679688,232.37890625,400,232.376586914063,273.24609375,400,182.5771484375,303.6171875,400,125.761352539063,322.3125,400,64.1124267578125,328.6328125,400,-0.0001220703125,322.3125,300,-64.1124267578125,303.6171875,300,-125.76123046875,273.24609375,300,-182.577026367188,232.37890625,300,-232.37646484375,182.578125,300,-273.245849609375,125.76171875,300,-303.614624023438,64.11328125,300,-322.315551757813,0,300,-328.630126953125,-64.11328125,300,-322.315551757813,-125.7578125,300,-303.61474609375,-182.578125,300,-273.24609375,-232.375,300,-232.376708984375,-273.24609375,300,-182.577270507813,-303.61328125,300,-125.761474609375,-322.3125,300,-64.11279296875,-328.6328125,300,-0.00018310546875,-322.3125,300,64.1124267578125,-303.61328125,300,125.761108398438,-273.24609375,300,182.577026367188,-232.375,300,232.37646484375,-182.578125,300,273.245971679688,-125.7578125,300,303.614624023438,-64.11328125,300,322.315551757813,64.11328125,300,322.315673828125,125.76171875,300,303.61474609375,182.578125,300,273.245971679688,232.37890625,300,232.376586914063,273.24609375,300,182.5771484375,303.6171875,300,125.761352539063,322.3125,300,64.1124267578125,328.6328125,300,-0.0001220703125,322.3125,200,-64.1124267578125,303.6171875,200,-125.76123046875,273.24609375,200,-182.577026367188,232.37890625,200,-232.37646484375,182.578125,200,-273.245849609375,
- 125.76171875,200,-303.614624023438,64.11328125,200,-322.315551757813,0,200,-328.630126953125,-64.11328125,200,-322.315551757813,-125.7578125,200,-303.61474609375,-182.578125,200,-273.24609375,-232.375,200,-232.376708984375,-273.24609375,200,-182.577270507813,-303.61328125,200,-125.761474609375,-322.3125,200,-64.11279296875,-328.6328125,200,-0.00018310546875,-322.3125,200,64.1124267578125,-303.61328125,200,125.761108398438,-273.24609375,200,182.577026367188,-232.375,200,232.37646484375,-182.578125,200,273.245971679688,-125.7578125,200,303.614624023438,-64.11328125,200,322.315551757813,0,200,328.630126953125,64.11328125,200,322.315673828125,125.76171875,200,303.61474609375,182.578125,200,273.245971679688,232.37890625,200,232.376586914063,273.24609375,200,182.5771484375,303.6171875,200,125.761352539063,322.3125,200,64.1124267578125,328.6328125,200,-0.0001220703125,322.3125,100,-64.1124267578125,303.6171875,100,-125.76123046875,273.24609375,100,-182.577026367188,232.37890625,100,-232.37646484375,182.578125,100,-273.245849609375,125.76171875,100,-303.614624023438,64.11328125,100,-322.315551757813,0,100,-328.630126953125,-64.11328125,100,-322.315551757813,-125.7578125,100,-303.61474609375,-182.578125,100,-273.24609375,-232.375,100,-232.376708984375,-273.24609375,100,-182.577270507813,-303.61328125,100,-125.761474609375,-322.3125,100,-64.11279296875,-328.6328125,100,-0.00018310546875,-322.3125,100,64.1124267578125,-303.61328125,100,125.761108398438,-273.24609375,100,182.577026367188,-232.375,100,232.37646484375,-182.578125,100,273.245971679688,-125.7578125,100,303.614624023438,-64.11328125,100,322.315551757813,0,100,328.630126953125,64.11328125,100,322.315673828125,125.76171875,100,303.61474609375,182.578125,100,273.245971679688,232.37890625,100,232.376586914063,273.24609375,100,182.5771484375,303.6171875,100,125.761352539063,322.3125,100,64.1124267578125,328.6328125,100,-0.0001220703125,-38.04296875,400,386.252868652344,-38.04296875,300,386.252868652344,-38.04296875,200,386.252868652344,38.04296875,400,386.2529296875,38.04296875,300,386.2529296875,
- 38.04296875,200,386.2529296875,-32.0546875,400,325.472839355469,-32.0546875,300,325.472839355469,-32.0546875,200,325.472839355469,32.0546875,400,325.472900390625,32.0546875,300,325.472900390625,32.0546875,200,325.472900390625,-67.9775390625,180.848999023438,384.029083251953,68.5791015625,180.848999023438,384.029083251953,-57.025390625,180.848999023438,322.494720458984,57.626953125,180.848999023438,322.494720458984,-69.248046875,186.760620117188,391.170166015625,69.849609375,186.760620117188,391.170166015625,56.3564453125,186.760620117188,315.353637695313,-55.7548828125,186.760620117188,315.353637695313,-69.248046875,204.867309570313,391.170166015625,69.849609375,204.867309570313,391.170166015625,-55.7548828125,204.867309570313,315.353637695313,56.3564453125,204.867309570313,315.353637695313,-0.03125,204.867309570313,397.310943603516,-0.03125,186.760620117188,397.310943603516,-0.025390625,180.848999023438,390.0576171875,0.02734375,180.848999023438,327.556304931641,0.033203125,186.760620117188,320.302978515625,0.033203125,204.867309570313,320.302978515625,-35.65234375,204.59326171875,392.714813232422,-66.349609375,204.59326171875,388.911682128906,-61.294921875,204.59326171875,359.443054199219,-32.9453125,204.59326171875,363.16796875,-35.65234375,342.613037109375,392.714813232422,-66.349609375,342.613037109375,388.911682128906,-61.294921875,342.613037109375,359.443054199219,-32.9453125,342.613037109375,363.16796875,-61.294921875,229.517578125,359.443054199219,-66.349609375,229.517578125,388.911682128906,-35.65234375,229.517578125,392.714813232422,-32.9453125,229.517578125,363.16796875,-61.294921875,253.74169921875,359.443054199219,-66.349609375,253.74169921875,388.911682128906,-35.65234375,253.74169921875,392.714813232422,-32.9453125,253.74169921875,363.16796875,-61.294921875,275.273681640625,359.443054199219,-66.349609375,275.273681640625,388.911682128906,-35.65234375,275.273681640625,392.714813232422,-32.9453125,275.273681640625,363.16796875,-61.294921875,296.556396484375,359.443054199219,-66.349609375,296.556396484375,388.911682128906,
- -35.65234375,296.556396484375,392.714813232422,-32.9453125,296.556396484375,363.16796875,-61.294921875,319.896728515625,359.443054199219,-66.349609375,319.896728515625,388.911682128906,-35.65234375,319.896728515625,392.714813232422,-32.9453125,319.896728515625,363.16796875,28.068359375,380.04345703125,393.379028320313,53.380859375,397.669921875,390.997222900391,49.3544921875,397.669921875,361.370422363281,25.9775390625,380.04345703125,363.782165527344,-60.3388671875,370.753662109375,359.605712890625,-65.3154296875,370.753662109375,389.087707519531,-35.091796875,365.76171875,392.765777587891,-32.4267578125,365.76171875,363.215087890625,-51.255859375,395.7294921875,361.021484375,-55.4873046875,395.7294921875,390.619659423828,-29.443359375,378.405029296875,393.234405517578,-27.203125,378.405029296875,363.648406982422,-29.1826171875,414.839111328125,363.493103027344,-31.6025390625,414.839111328125,393.294128417969,-15.8251953125,389.1982421875,394.028656005859,-14.6103515625,389.1982421875,364.382843017578,0.5947265625,421.30322265625,364.688049316406,0.619140625,421.30322265625,394.587158203125,0.50390625,392.565673828125,394.358764648438,0.48828125,392.565673828125,364.688110351563,31.541015625,413.39892578125,363.346160888672,34.10546875,413.39892578125,393.135131835938,16.9658203125,388.751220703125,394.006225585938,15.7109375,388.751220703125,364.362091064453,35.59765625,249.419189453125,392.7744140625,66.3017578125,249.419189453125,389.022644042969,61.294921875,249.419189453125,359.545593261719,32.939453125,249.419189453125,363.223083496094,61.23828125,362.71826171875,359.555206298828,66.240234375,362.71826171875,389.033050537109,35.5224609375,362.135009765625,392.781219482422,32.869140625,362.135009765625,363.229370117188,61.294921875,337.872802734375,359.545593261719,66.3017578125,337.872802734375,389.022644042969,35.59765625,337.872802734375,392.7744140625,32.939453125,337.872802734375,363.223083496094,61.294921875,316.65869140625,359.545593261719,66.3017578125,316.65869140625,389.022644042969,35.59765625,316.65869140625,392.7744140625,
- 32.939453125,316.65869140625,363.223083496094,61.294921875,295.34326171875,359.545593261719,66.3017578125,295.34326171875,389.022644042969,35.59765625,295.34326171875,392.7744140625,32.939453125,295.34326171875,363.223083496094,61.294921875,271.89453125,359.545593261719,66.3017578125,271.89453125,389.022644042969,35.59765625,271.89453125,392.7744140625,32.939453125,271.89453125,363.223083496094,61.294921875,224.02197265625,359.545593261719,66.3017578125,224.02197265625,389.022644042969,35.59765625,224.02197265625,392.7744140625,32.939453125,224.02197265625,363.223083496094,61.294921875,204.469482421875,359.545593261719,66.3017578125,204.469482421875,389.022644042969,35.59765625,204.469482421875,392.7744140625,32.939453125,204.469482421875,363.223083496094,29.232421875,204.732238769531,322.015563964844,54.3291015625,204.732238769531,318.529968261719,59.3369140625,204.732238769531,348.007446289063,31.890625,204.732238769531,351.566955566406,29.232421875,342.613037109375,322.015563964844,54.3291015625,342.613037109375,318.529968261719,59.3369140625,342.613037109375,348.007446289063,31.890625,342.613037109375,351.566955566406,59.3369140625,229.517578125,348.007446289063,54.3291015625,229.517578125,318.529968261719,29.232421875,229.517578125,322.015563964844,31.890625,229.517578125,351.566955566406,59.3369140625,253.74169921875,348.007446289063,54.3291015625,253.74169921875,318.529968261719,29.232421875,253.74169921875,322.015563964844,31.890625,253.74169921875,351.566955566406,59.3369140625,275.273681640625,348.007446289063,54.3291015625,275.273681640625,318.529968261719,29.232421875,275.273681640625,322.015563964844,31.890625,275.273681640625,351.566955566406,59.3369140625,296.556396484375,348.007446289063,54.3291015625,296.556396484375,318.529968261719,29.232421875,296.556396484375,322.015563964844,31.890625,296.556396484375,351.566955566406,59.3369140625,319.896728515625,348.007446289063,54.3291015625,319.896728515625,318.529968261719,29.232421875,319.896728515625,322.015563964844,31.890625,319.896728515625,351.566955566406,
- -22.9970703125,380.04345703125,322.472686767578,-43.685546875,397.669921875,320.0732421875,-47.76171875,397.669921875,349.693908691406,-25.1376953125,380.04345703125,352.066070556641,58.41015625,370.753662109375,348.163513183594,53.482421875,370.753662109375,318.672668457031,28.7744140625,365.76171875,322.056488037109,31.390625,365.76171875,351.611633300781,49.6162109375,395.7294921875,349.519073486328,45.4345703125,395.7294921875,319.913238525391,24.142578125,378.405029296875,322.432952880859,26.3330078125,378.405029296875,352.022674560547,28.2490234375,414.839111328125,351.875549316406,25.87890625,414.839111328125,322.069885253906,12.978515625,389.1982421875,323.065307617188,14.1435546875,389.1982421875,352.713134765625,-0.5732421875,421.30322265625,352.98388671875,-0.4990234375,421.30322265625,323.084259033203,-0.4052734375,392.565673828125,323.3134765625,-0.4697265625,392.565673828125,352.984130859375,-30.5234375,413.39892578125,351.635009765625,-27.9091796875,413.39892578125,321.849731445313,-13.8984375,388.751220703125,323.001922607422,-15.203125,388.751220703125,352.643951416016,-29.16796875,249.419189453125,321.966796875,-54.259765625,249.419189453125,318.439147949219,-59.314453125,249.419189453125,347.908538818359,-31.8759765625,249.419189453125,351.513702392578,-59.259765625,362.71826171875,347.917938232422,-54.2099609375,362.71826171875,318.447723388672,-29.107421875,362.135009765625,321.972381591797,-31.8095703125,362.135009765625,351.519836425781,-59.314453125,337.872802734375,347.908538818359,-54.259765625,337.872802734375,318.439147949219,-29.16796875,337.872802734375,321.966796875,-31.8759765625,337.872802734375,351.513702392578,-59.314453125,316.65869140625,347.908538818359,-54.259765625,316.65869140625,318.439147949219,-29.16796875,316.65869140625,321.966796875,-31.8759765625,316.65869140625,351.513702392578,-59.314453125,295.34326171875,347.908538818359,-54.259765625,295.34326171875,318.439147949219,-29.16796875,295.34326171875,321.966796875,-31.8759765625,295.34326171875,351.513702392578,-59.314453125,271.89453125,347.908538818359,
- -54.259765625,271.89453125,318.439147949219,-29.16796875,271.89453125,321.966796875,-31.8759765625,271.89453125,351.513702392578,-59.314453125,224.02197265625,347.908538818359,-54.259765625,224.02197265625,318.439147949219,-29.16796875,224.02197265625,321.966796875,-31.8759765625,224.02197265625,351.513702392578,-59.314453125,204.469482421875,347.908538818359,-54.259765625,204.469482421875,318.439147949219,-29.16796875,204.469482421875,321.966796875,-31.8759765625,204.469482421875,351.513702392578
- }
- PolygonVertexIndex: *2536 {
- a: 0,1,192,-192,1,2,193,-193,2,3,194,-194,3,4,195,-195,4,5,196,-196,5,6,197,-197,6,7,198,-198,7,8,199,-199,8,9,200,-200,9,10,201,-201,10,11,202,-202,11,12,203,-203,12,13,204,-204,13,14,205,-205,14,15,206,-206,15,16,207,-207,16,17,208,-208,17,18,209,-209,18,19,210,-210,19,20,211,-211,20,21,212,-212,21,22,213,-213,22,23,214,-214,23,24,215,-215,24,25,216,-216,25,26,217,-217,26,27,218,-218,27,28,219,-219,28,29,220,-220,29,30,221,-221,30,31,222,-222,31,0,191,-223,64,65,33,-33,65,66,34,-34,66,67,35,-35,67,68,36,-36,68,69,37,-37,69,70,38,-38,70,71,39,-39,71,72,40,-40,72,73,41,-41,73,74,42,-42,74,75,43,-43,75,76,44,-44,76,77,45,-45,77,78,46,-46,78,79,47,-47,79,80,48,-48,80,81,49,-49,81,82,50,-50,82,83,51,-51,83,84,52,-52,84,85,53,-53,85,86,54,-54,86,87,55,-55,87,88,56,-56,88,89,57,-57,89,90,58,-58,90,91,59,-59,91,92,60,-60,92,93,61,-61,93,94,62,-62,94,95,63,-63,95,64,32,-64,96,97,65,-65,97,98,66,-66,98,99,67,-67,99,100,68,-68,100,101,69,-69,101,102,70,-70,102,103,71,-71,103,104,72,-72,104,105,73,-73,105,106,74,-74,106,107,75,-75,107,108,76,-76,108,109,77,-77,109,110,78,-78,110,111,79,-79,111,112,80,-80,112,113,81,-81,113,114,82,-82,114,115,83,-83,115,116,84,-84,116,117,85,-85,117,118,86,-86,118,446,119,87,-87,119,449,120,88,-88,120,121,89,-89,121,122,90,-90,122,123,91,-91,123,124,92,-92,124,125,93,-93,125,126,94,-94,126,127,95,-95,127,96,64,-96,128,129,97,-97,129,130,98,-98,130,131,99,-99,131,132,100,-100,132,133,101,-101,133,134,102,-102,134,135,103,-103,135,136,104,-104,136,137,105,-105,137,138,106,-106,138,139,107,-107,139,140,108,-108,140,141,109,-109,141,142,110,-110,142,143,111,-111,143,144,112,-112,144,145,113,-113,145,146,114,-114,146,147,115,-115,147,148,116,-116,148,149,117,-117,149,150,118,-118,449,450,151,-121,151,152,121,-121,152,153,122,-122,153,154,123,-123,154,155,124,-124,155,156,125,-125,156,157,126,-126,157,158,127,-127,158,128,96,-128,159,160,129,-129,160,161,130,-130,161,162,131,-131,162,163,132,-132,163,164,133,-133,164,165,134,-134,165,166,135,-135,166,167,136,-136,167,168,137,-137,168,
- 169,138,-138,169,170,139,-139,170,171,140,-140,171,172,141,-141,172,173,142,-142,173,174,143,-143,174,175,144,-144,175,176,145,-145,176,177,146,-146,177,178,147,-147,178,179,148,-148,179,180,149,-149,180,181,150,-150,450,451,183,-152,183,184,152,-152,184,185,153,-153,185,186,154,-154,186,187,155,-155,187,188,156,-156,188,189,157,-157,189,190,158,-158,190,159,128,-159,191,192,160,-160,192,193,161,-161,193,194,162,-162,194,195,163,-163,195,196,164,-164,196,197,165,-165,197,198,166,-166,198,199,167,-167,199,200,168,-168,200,201,169,-169,201,202,170,-170,202,203,171,-171,203,204,172,-172,204,205,173,-173,205,206,174,-174,206,207,175,-175,207,208,176,-176,208,209,177,-177,209,210,178,-178,210,211,179,-179,211,212,180,-180,212,213,181,-181,213,214,182,448,-182,214,215,183,451,-183,215,216,184,-184,216,217,185,-185,217,218,186,-186,218,219,187,-187,219,220,188,-188,220,221,189,-189,221,222,190,-190,222,191,159,-191,223,414,415,-225,224,415,416,-226,225,416,417,-227,226,417,418,-228,227,418,419,-229,228,419,420,-230,229,420,421,-231,230,421,422,-232,231,422,423,-233,232,423,424,-234,233,424,425,-235,234,425,426,-236,235,426,427,-237,236,427,428,-238,237,428,429,-239,238,429,430,-240,239,430,431,-241,240,431,432,-242,241,432,433,-243,242,433,434,-244,243,434,435,-245,244,435,436,-246,245,436,437,-247,246,437,438,-248,247,438,439,-249,248,439,440,-250,249,440,441,-251,250,441,442,-252,251,442,443,-253,252,443,444,-254,253,444,445,-255,254,445,414,-224,287,255,256,-289,288,256,257,-290,289,257,258,-291,290,258,259,-292,291,259,260,-293,292,260,261,-294,293,261,262,-295,294,262,263,-296,295,263,264,-297,296,264,265,-298,297,265,266,-299,298,266,267,-300,299,267,268,-301,300,268,269,-302,301,269,270,-303,302,270,271,-304,303,271,272,-305,304,272,273,-306,305,273,274,-307,306,274,275,-308,307,275,276,-309,308,276,277,-310,309,277,278,-311,310,278,279,-312,311,279,280,-313,312,280,281,-314,313,281,282,-315,314,282,283,-316,315,283,284,-317,316,284,285,-318,317,285,286,-319,318,286,255,-288,319,287,288,-321,320,288,289,-322,321,289,
- 290,-323,322,290,291,-324,323,291,292,-325,324,292,293,-326,325,293,294,-327,326,294,295,-328,327,295,296,-329,328,296,297,-330,329,297,298,-331,330,298,299,-332,331,299,300,-333,332,300,301,-334,333,301,302,-335,334,302,303,-336,335,303,304,-337,336,304,305,-338,337,305,306,-339,338,306,307,-340,339,307,308,-341,340,308,309,-342,341,309,310,342,-453,342,310,311,343,-456,343,311,312,-345,344,312,313,-346,345,313,314,-347,346,314,315,-348,347,315,316,-349,348,316,317,-350,349,317,318,-351,350,318,287,-320,351,319,320,-353,352,320,321,-354,353,321,322,-355,354,322,323,-356,355,323,324,-357,356,324,325,-358,357,325,326,-359,358,326,327,-360,359,327,328,-361,360,328,329,-362,361,329,330,-363,362,330,331,-364,363,331,332,-365,364,332,333,-366,365,333,334,-367,366,334,335,-368,367,335,336,-369,368,336,337,-370,369,337,338,-371,370,338,339,-372,371,339,340,-373,372,340,341,-374,373,341,452,-454,374,343,344,-376,375,344,345,-377,376,345,346,-378,377,346,347,-379,378,347,348,-380,379,348,349,-381,380,349,350,-382,381,350,319,-352,382,351,352,-384,383,352,353,-385,384,353,354,-386,385,354,355,-387,386,355,356,-388,387,356,357,-389,388,357,358,-390,389,358,359,-391,390,359,360,-392,391,360,361,-393,392,361,362,-394,393,362,363,-395,394,363,364,-396,395,364,365,-397,396,365,366,-398,397,366,367,-399,398,367,368,-400,399,368,369,-401,400,369,370,-402,401,370,371,-403,402,371,372,-404,403,372,373,-405,404,373,453,-455,406,374,375,-408,407,375,376,-409,408,376,377,-410,409,377,378,-411,410,378,379,-412,411,379,380,-413,412,380,381,-414,413,381,351,-383,414,382,383,-416,415,383,384,-417,416,384,385,-418,417,385,386,-419,418,386,387,-420,419,387,388,-421,420,388,389,-422,421,389,390,-423,422,390,391,-424,423,391,392,-425,424,392,393,-426,425,393,394,-427,426,394,395,-428,427,395,396,-429,428,396,397,-430,429,397,398,-431,430,398,399,-432,431,399,400,-433,432,400,401,-434,433,401,402,-435,434,402,403,-436,435,403,404,-437,436,404,454,405,-438,437,405,457,406,-439,438,406,407,-440,439,407,408,-441,440,408,409,-442,441,409,410,-443,442,
- 410,411,-444,443,411,412,-445,444,412,413,-446,445,413,382,-415,150,447,446,-119,181,448,447,-151,456,455,343,-375,457,456,374,-407,342,119,446,-453,405,182,451,-458,449,119,342,-456,449,455,456,-451,450,456,457,-452,448,182,405,-455,447,448,454,-454,447,453,452,-447,285,62,63,-287,269,46,47,-271,45,46,269,-269,44,45,268,-268,43,44,267,-267,42,43,266,-266,41,42,265,-265,40,41,264,-264,39,40,263,-263,38,39,262,-262,37,38,261,-261,36,37,260,-260,35,36,259,-259,34,35,258,-258,33,34,257,-257,32,33,256,-256,286,63,32,-256,61,62,285,-285,60,61,284,-284,59,60,283,-283,58,59,282,-282,57,58,281,-281,56,57,280,-280,55,56,279,-279,54,55,278,-278,53,54,277,-277,52,53,276,-276,51,52,275,-275,50,51,274,-274,49,50,273,-273,48,49,272,-272,47,48,271,-271,253,254,31,-31,237,238,15,-15,13,236,237,-15,12,235,236,-14,11,234,235,-13,10,233,234,-12,9,232,233,-11,8,231,232,-10,7,230,231,-9,6,229,230,-8,5,228,229,-7,4,227,228,-6,3,226,227,-5,2,225,226,-4,1,224,225,-3,0,223,224,-2,254,223,0,-32,29,252,253,-31,28,251,252,-30,27,250,251,-29,26,249,250,-28,25,248,249,-27,24,247,248,-26,23,246,247,-25,22,245,246,-24,21,244,245,-23,20,243,244,-22,19,242,243,-21,18,241,242,-20,17,240,241,-19,16,239,240,-18,15,238,239,-17,471,463,467,-471,467,469,475,-471,475,469,464,-475,473,461,459,-473,463,464,469,-468,465,462,466,-469,472,459,463,-472,459,461,464,-464,474,464,461,-474,460,458,462,-466,462,471,470,-467,458,472,471,-463,460,473,472,-459,465,474,473,-461,468,475,474,-466,475,468,466,-471,501,502,480,-482,502,503,483,-481,501,481,482,-501,477,485,484,-479,477,476,486,-486,476,479,487,-487,485,489,488,-485,485,486,490,-490,486,487,491,-491,489,493,492,-489,489,490,494,-494,490,491,495,-495,493,497,496,-493,493,494,498,-498,494,495,499,-499,497,501,500,-497,497,498,502,-502,498,499,503,-503,525,526,504,-506,526,527,507,-505,525,505,506,-525,481,509,508,-483,481,480,510,-510,480,483,511,-511,509,513,512,-509,509,510,514,-514,510,511,515,-515,513,517,516,-513,513,514,518,-518,514,515,519,-519,517,521,520,-517,517,518,522,-522,518,519,523,-523,521,525,
- 524,-521,521,522,526,-526,522,523,527,-527,549,550,528,-530,550,551,531,-529,549,529,530,-549,505,533,532,-507,505,504,534,-534,504,507,535,-535,533,537,536,-533,533,534,538,-538,534,535,539,-539,537,541,540,-537,537,538,542,-542,538,539,543,-543,541,545,544,-541,541,542,546,-546,542,543,547,-547,545,549,548,-545,545,546,550,-550,546,547,551,-551,529,553,552,-531,529,528,554,-554,528,531,555,-555,553,557,556,-553,553,554,558,-558,554,555,559,-559,487,479,478,-485,491,488,492,-496,495,492,496,-500,499,496,500,-504,503,500,482,-484,483,482,508,-512,511,508,512,-516,515,512,516,-520,519,516,520,-524,523,520,524,-528,527,524,506,-508,507,506,532,-536,535,532,536,-540,539,536,540,-544,543,540,544,-548,547,544,548,-552,551,548,530,-532,531,530,552,-556,555,552,556,-560,487,484,488,-492,585,586,564,-566,586,587,567,-565,585,565,566,-585,561,569,568,-563,561,560,570,-570,560,563,571,-571,569,573,572,-569,569,570,574,-574,570,571,575,-575,573,577,576,-573,573,574,578,-578,574,575,579,-579,577,581,580,-577,577,578,582,-582,578,579,583,-583,581,585,584,-581,581,582,586,-586,582,583,587,-587,609,610,588,-590,610,611,591,-589,609,589,590,-609,565,593,592,-567,565,564,594,-594,564,567,595,-595,593,597,596,-593,593,594,598,-598,594,595,599,-599,597,601,600,-597,597,598,602,-602,598,599,603,-603,601,605,604,-601,601,602,606,-606,602,603,607,-607,605,609,608,-605,605,606,610,-610,606,607,611,-611,633,634,612,-614,634,635,615,-613,633,613,614,-633,589,617,616,-591,589,588,618,-618,588,591,619,-619,617,621,620,-617,617,618,622,-622,618,619,623,-623,621,625,624,-621,621,622,626,-626,622,623,627,-627,625,629,628,-625,625,626,630,-630,626,627,631,-631,629,633,632,-629,629,630,634,-634,630,631,635,-635,613,637,636,-615,613,612,638,-638,612,615,639,-639,637,641,640,-637,637,638,642,-642,638,639,643,-643,571,563,562,-569,575,572,576,-580,579,576,580,-584,583,580,584,-588,587,584,566,-568,567,566,592,-596,595,592,596,-600,599,596,600,-604,603,600,604,-608,607,604,608,-612,611,608,590,-592,591,590,616,-620,619,616,620,-624,623,620,624,-628,
- 627,624,628,-632,631,628,632,-636,635,632,614,-616,615,614,636,-640,639,636,640,-644,571,568,572,-576
- }
- Edges: *1276 {
- a: 0,4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,130,134,138,142,146,150,154,158,162,166,170,174,178,182,186,190,194,198,202,206,210,214,218,222,226,230,234,238,242,246,250,254,3,1,5,9,13,17,21,25,29,33,37,41,45,49,53,57,61,65,69,73,77,81,85,89,93,97,101,105,109,113,117,121,131,129,133,137,141,145,149,153,157,161,165,169,173,177,181,185,189,193,197,201,205,209,213,217,221,225,229,233,237,241,245,249,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236,240,244,248,252,259,257,261,265,269,273,277,281,285,289,293,297,301,305,309,313,317,321,325,329,333,337,341,346,351,355,359,363,367,371,375,379,256,260,264,268,272,276,280,284,288,292,296,300,304,308,312,316,320,324,328,332,336,340,345,350,354,358,362,366,370,374,378,382,389,387,391,395,399,403,407,411,415,419,423,427,431,435,439,443,447,451,455,459,463,467,471,476,479,483,487,491,495,499,503,386,390,394,398,402,406,410,414,418,422,426,430,434,438,442,446,450,454,458,462,466,470,475,478,482,486,490,494,498,502,506,513,511,515,519,523,527,531,535,539,543,547,551,555,559,563,567,571,575,579,583,587,591,595,600,603,607,611,615,619,623,627,510,514,518,522,526,530,534,538,542,546,550,554,558,562,566,570,574,578,582,586,590,594,724,599,602,606,610,614,618,622,626,630,637,635,639,643,647,651,655,659,663,667,671,675,679,683,687,691,695,699,703,707,711,715,719,723,728,733,737,741,745,749,753,757,2,6,10,14,18,22,26,30,34,38,42,46,50,54,58,62,66,70,74,78,82,86,90,94,98,102,106,110,114,118,122,126,767,771,775,779,783,787,791,795,799,803,807,811,815,819,823,827,831,835,839,843,847,851,855,859,863,867,871,875,879,883,887,891,893,897,901,905,909,913,917,921,925,929,933,937,941,945,949,953,957,961,965,969,973,977,981,985,989,993,997,1001,1005,1009,1013,1017,764,766,770,774,778,782,786,790,794,798,802,806,810,814,818,822,826,830,834,838,842,846,850,854,858,862,866,870,874,878,882,886,892,894,898,902,906,910,914,918,922,926,930,934,938,942,946,950,954,958,962,
- 966,970,974,978,982,986,990,994,998,1002,1006,1010,1014,895,899,903,907,911,915,919,923,927,931,935,939,943,947,951,955,959,963,967,971,975,979,983,987,991,995,999,1003,1007,1011,1015,1019,1020,1022,1026,1030,1034,1038,1042,1046,1050,1054,1058,1062,1066,1070,1074,1078,1082,1086,1090,1094,1098,1102,1106,1110,1115,1120,1124,1128,1132,1136,1140,1144,1023,1027,1031,1035,1039,1043,1047,1051,1055,1059,1063,1067,1071,1075,1079,1083,1087,1091,1095,1099,1103,1107,1111,1116,1121,1125,1129,1133,1137,1141,1145,1149,1150,1152,1156,1160,1164,1168,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1232,1236,1242,1244,1248,1252,1256,1260,1264,1268,1153,1157,1161,1165,1169,1173,1177,1181,1185,1189,1193,1197,1201,1205,1209,1213,1217,1221,1225,1229,1233,1237,1539,1245,1249,1253,1257,1261,1265,1269,1273,1274,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1316,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1366,1368,1372,1376,1380,1384,1388,1392,1277,1281,1285,1289,1293,1297,1301,1305,1309,1313,1317,1321,1325,1329,1333,1337,1341,1345,1349,1353,1357,1361,1488,1493,1369,1373,1377,1381,1385,1389,1393,1397,1398,1400,1404,1408,1412,1416,1420,1424,1428,1432,1436,1440,1444,1448,1452,1456,1460,1464,1468,1472,1476,1480,1484,1489,1494,1498,1502,1506,1510,1514,1518,1522,765,769,773,777,781,785,789,793,797,801,805,809,813,817,821,825,829,833,837,841,845,849,853,857,861,865,869,873,877,881,885,889,344,1528,725,1529,1533,349,730,474,598,1112,1241,1365,1240,1364,1117,1492,1536,1540,1546,1544,1550,1548,1555,1558,1567,1571,1578,1576,1582,1580,1587,1591,1595,1599,1603,1607,1611,1615,1619,1623,1627,1631,1635,1639,1647,1651,1655,1659,1663,1667,1671,1675,1679,1683,1687,1691,1695,1699,1705,1707,1709,1711,1712,1716,1720,1724,1728,1732,1736,1740,1744,1748,1752,1756,1760,1764,1772,1776,1780,1784,1788,1792,1796,1800,1804,1808,1812,1816,1820,1824,1876,1880,1869,1857,1868,1845,1853,1833,1861,1871,1872,1848,1842,1852,1854,1855,1841,1836,1834,1888,1874,1832,1835,1846,1859,1844,1847,1884,1867,1837,1843,1838,1912,1916,1911,1897,1898,
- 1902,1908,1905,1910,1917,1922,1920,1909,1913,1914,1929,1918,1934,1932,1921,1925,1926,1941,1930,1946,1944,1933,1937,1938,1953,1942,1958,1956,1945,1949,1950,1965,1954,1906,1899,1907,1961,1896,1901,1900,1969,1970,1974,1980,1977,1982,1989,1994,1992,1981,1985,1986,2001,1990,2006,2004,1993,1997,1998,2013,2002,2018,2016,2005,2009,2010,2025,2014,2030,2028,2017,2021,2022,2037,2026,1978,1971,1979,2033,1968,1973,1972,2041,2042,2046,2052,2049,2054,2061,2066,2064,2053,2057,2058,2073,2062,2078,2076,2065,2069,2070,2085,2074,2090,2088,2077,2081,2082,2097,2086,2102,2100,2089,2093,2094,2109,2098,2050,2043,2051,2105,2040,2045,2044,2112,2114,2121,2126,2124,2113,2117,2118,2133,2122,2125,2129,2130,2134,2210,2137,2140,2142,2146,2150,2154,2158,2162,2166,2170,2174,2178,2182,2186,2190,2194,2198,2202,2206,2139,2232,2236,2231,2217,2218,2222,2228,2225,2230,2237,2242,2240,2229,2233,2234,2249,2238,2254,2252,2241,2245,2246,2261,2250,2266,2264,2253,2257,2258,2273,2262,2278,2276,2265,2269,2270,2285,2274,2226,2219,2227,2281,2216,2221,2220,2289,2290,2294,2300,2297,2302,2309,2314,2312,2301,2305,2306,2321,2310,2326,2324,2313,2317,2318,2333,2322,2338,2336,2325,2329,2330,2345,2334,2350,2348,2337,2341,2342,2357,2346,2298,2291,2299,2353,2288,2293,2292,2361,2362,2366,2372,2369,2374,2381,2386,2384,2373,2377,2378,2393,2382,2398,2396,2385,2389,2390,2405,2394,2410,2408,2397,2401,2402,2417,2406,2422,2420,2409,2413,2414,2429,2418,2370,2363,2371,2425,2360,2365,2364,2432,2434,2441,2446,2444,2433,2437,2438,2453,2442,2445,2449,2450,2454,2530,2457,2460,2462,2466,2470,2474,2478,2482,2486,2490,2494,2498,2502,2506,2510,2514,2518,2522,2526,2459
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *7608 {
- a: 0.980784595012665,0,-0.195094019174576,0.923885583877563,0,-0.382668972015381,0.923885583877563,0,-0.382668972015381,0.980784595012665,0,-0.195094019174576,0.923885583877563,0,-0.382668972015381,0.83147656917572,0,-0.555559992790222,0.83147656917572,0,-0.555559992790222,0.923885583877563,0,-0.382668972015381,0.83147656917572,0,-0.555559992790222,0.707104086875916,0,-0.707109570503235,0.707104086875916,0,-0.707109570503235,0.83147656917572,0,-0.555559992790222,0.707104086875916,0,-0.707109570503235,0.555563390254974,0,-0.831474184989929,0.555563390254974,0,-0.831474184989929,0.707104086875916,0,-0.707109570503235,0.555563390254974,0,-0.831474184989929,0.382686465978622,0,-0.923878252506256,0.382686465978622,0,-0.923878252506256,0.555563390254974,0,-0.831474184989929,0.382686465978622,0,-0.923878252506256,0.19509120285511,0,-0.980785131454468,0.19509120285511,0,-0.980785131454468,0.382686465978622,0,-0.923878252506256,0.19509120285511,0,-0.980785131454468,0,0,-1,0,0,-1,0.19509120285511,0,-0.980785131454468,0,0,-1,-0.19509045779705,0,-0.980785191059113,-0.19509045779705,0,-0.980785191059113,0,0,-1,-0.19509045779705,0,-0.980785191059113,-0.38268518447876,0,-0.923878908157349,-0.38268518447876,0,-0.923878908157349,-0.19509045779705,0,-0.980785191059113,-0.38268518447876,0,-0.923878908157349,-0.555562913417816,0,-0.831474542617798,-0.555562913417816,0,-0.831474542617798,-0.38268518447876,0,-0.923878908157349,-0.555562913417816,0,-0.831474542617798,-0.707103610038757,0,-0.707110047340393,-0.707103610038757,0,-0.707110047340393,-0.555562913417816,0,-0.831474542617798,-0.707103610038757,0,-0.707110047340393,-0.831476151943207,0,-0.555560350418091,-0.831476211547852,0,-0.555560350418091,-0.707103610038757,0,-0.707110047340393,-0.831476151943207,0,-0.555560350418091,-0.923885583877563,0,-0.382668942213058,-0.923885583877563,0,-0.382668942213058,-0.831476211547852,0,-0.555560350418091,-0.923885583877563,0,-0.382668942213058,-0.980784595012665,0,-0.195093706250191,-0.980784595012665,0,-0.195093706250191,
- -0.923885583877563,0,-0.382668942213058,-0.980784595012665,0,-0.195093706250191,-1,0,0,-1,0,0,-0.980784595012665,0,-0.195093706250191,-1,0,0,-0.980784595012665,0,0.195093706250191,-0.980784595012665,0,0.195093706250191,-1,0,0,-0.980784595012665,0,0.195093706250191,-0.923885583877563,0,0.382668942213058,-0.923885583877563,0,0.382668942213058,-0.980784595012665,0,0.195093706250191,-0.923885583877563,0,0.382668942213058,-0.83147668838501,0,0.555559575557709,-0.83147668838501,0,0.555559575557709,-0.923885583877563,0,0.382668942213058,-0.83147668838501,0,0.555559575557709,-0.707104384899139,0,0.707109153270721,-0.707104384899139,0,0.707109153270721,-0.83147668838501,0,0.555559575557709,-0.707104384899139,0,0.707109153270721,-0.555563390254974,0,0.831474184989929,-0.555563390254974,0,0.831474184989929,-0.707104384899139,0,0.707109153270721,-0.555563390254974,0,0.831474184989929,-0.382686465978622,0,0.923878252506256,-0.382686465978622,0,0.923878252506256,-0.555563390254974,0,0.831474184989929,-0.382686465978622,0,0.923878252506256,-0.19509120285511,0,0.980785131454468,-0.19509120285511,-5.01373054184739e-010,0.980785131454468,-0.382686465978622,0,0.923878252506256,-0.19509120285511,0,0.980785131454468,-7.66032258070481e-007,0,1,-7.66032258070481e-007,-7.52050366426005e-010,1,-0.19509120285511,-5.01373054184739e-010,0.980785131454468,-7.66032258070481e-007,0,1,0.19509045779705,0,0.980785191059113,0.195090472698212,-2.50686554847945e-010,0.980785191059113,-7.66032258070481e-007,-7.52050366426005e-010,1,0.19509045779705,0,0.980785191059113,0.382686465978622,0,0.923878252506256,0.382686465978622,0,0.923878252506256,0.195090472698212,-2.50686554847945e-010,0.980785191059113,0.382686465978622,0,0.923878252506256,0.55556309223175,-2.56699166811813e-007,0.831474304199219,0.555562973022461,-1.28349597616761e-007,0.831474363803864,0.382686465978622,0,0.923878252506256,0.55556309223175,-2.56699166811813e-007,0.831474304199219,0.707104027271271,-4.83132566841959e-007,0.707109570503235,0.707103967666626,-2.4156628342098e-007,0.70710963010788,
- 0.555562973022461,-1.28349597616761e-007,0.831474363803864,0.707104027271271,-4.83132566841959e-007,0.707109570503235,0.83147656917572,-2.26433911620916e-007,0.555559873580933,0.83147656917572,-1.13216934494176e-007,0.555559754371643,0.707103967666626,-2.4156628342098e-007,0.70710963010788,0.83147656917572,-2.26433911620916e-007,0.555559873580933,0.923885703086853,0,0.382668644189835,0.923885703086853,0,0.382668644189835,0.83147656917572,-1.13216934494176e-007,0.555559754371643,0.923885703086853,0,0.382668644189835,0.98078465461731,0,0.195093557238579,0.98078465461731,0,0.195093557238579,0.923885703086853,0,0.382668644189835,0.98078465461731,0,0.195093557238579,1,0,-5.10693887179059e-009,1,0,-5.10693887179059e-009,0.98078465461731,0,0.195093557238579,1,0,-5.10693887179059e-009,0.980784595012665,0,-0.195094019174576,0.980784595012665,0,-0.195094019174576,1,0,-5.10693887179059e-009,0.980784595012665,0,-0.195094019174576,0.923885583877563,0,-0.382668972015381,0.923885583877563,0,-0.382668972015381,0.980784595012665,0,-0.195094019174576,0.923885583877563,0,-0.382668972015381,0.83147656917572,0,-0.555559992790222,0.83147656917572,0,-0.555559992790222,0.923885583877563,0,-0.382668972015381,0.83147656917572,0,-0.555559992790222,0.707104086875916,0,-0.707109570503235,0.707104086875916,0,-0.707109570503235,0.83147656917572,0,-0.555559992790222,0.707104086875916,0,-0.707109570503235,0.555563390254974,0,-0.831474184989929,0.555563390254974,0,-0.831474184989929,0.707104086875916,0,-0.707109570503235,0.555563390254974,0,-0.831474184989929,0.382686465978622,0,-0.923878252506256,0.382686465978622,0,-0.923878252506256,0.555563390254974,0,-0.831474184989929,0.382686465978622,0,-0.923878252506256,0.19509120285511,0,-0.980785131454468,0.19509120285511,0,-0.980785131454468,0.382686465978622,0,-0.923878252506256,0.19509120285511,0,-0.980785131454468,0,0,-1,0,0,-1,0.19509120285511,0,-0.980785131454468,0,0,-1,-0.19509045779705,0,-0.980785191059113,-0.19509045779705,0,-0.980785191059113,0,0,-1,-0.19509045779705,0,-0.980785191059113,-0.38268518447876,0,-0.923878908157349,
- -0.38268518447876,0,-0.923878908157349,-0.19509045779705,0,-0.980785191059113,-0.38268518447876,0,-0.923878908157349,-0.555562913417816,0,-0.831474542617798,-0.555562913417816,0,-0.831474542617798,-0.38268518447876,0,-0.923878908157349,-0.555562913417816,0,-0.831474542617798,-0.707103610038757,0,-0.707110047340393,-0.707103610038757,0,-0.707110047340393,-0.555562913417816,0,-0.831474542617798,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.831476151943207,0,-0.555560350418091,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.923885583877563,0,-0.382668942213058,-0.923885583877563,0,-0.382668942213058,-0.831476151943207,0,-0.555560350418091,-0.923885583877563,0,-0.382668942213058,-0.980784595012665,0,-0.195093706250191,-0.980784595012665,0,-0.195093706250191,-0.923885583877563,0,-0.382668942213058,-0.980784595012665,0,-0.195093706250191,-1,0,0,-1,0,0,-0.980784595012665,0,-0.195093706250191,-1,0,0,-0.980784595012665,0,0.195093706250191,-0.980784595012665,0,0.195093706250191,-1,0,0,-0.980784595012665,0,0.195093706250191,-0.923885583877563,0,0.382668942213058,-0.923885583877563,0,0.382668942213058,-0.980784595012665,0,0.195093706250191,-0.923885583877563,0,0.382668942213058,-0.83147668838501,0,0.555559575557709,-0.83147668838501,0,0.555559575557709,-0.923885583877563,0,0.382668942213058,-0.83147668838501,0,0.555559575557709,-0.707104384899139,0,0.707109153270721,-0.707104384899139,0,0.707109153270721,-0.83147668838501,0,0.555559575557709,-0.707104384899139,0,0.707109153270721,-0.555563390254974,0,0.831474184989929,-0.555563390254974,0,0.831474184989929,-0.707104384899139,0,0.707109153270721,-0.555563390254974,0,0.831474184989929,-0.382686465978622,0,0.923878252506256,-0.382686465978622,0,0.923878252506256,-0.555563390254974,0,0.831474184989929,-0.382686465978622,0,0.923878252506256,-0.19509120285511,0,0.980785131454468,-0.19509120285511,0,0.980785131454468,-0.382686465978622,0,0.923878252506256,-0.19509120285511,0,0.980785131454468,-7.66032258070481e-007,0,1,
- -7.66032258070481e-007,0,1,-0.19509120285511,0,0.980785131454468,-7.66032258070481e-007,0,1,0.195090472698212,0,0.980785191059113,0.19509045779705,0,0.980785191059113,-7.66032258070481e-007,0,1,0.195090472698212,0,0.980785191059113,0.382686465978622,0,0.923878252506256,0.382686465978622,0,0.923878252506256,0.19509045779705,0,0.980785191059113,0.382686465978622,0,0.923878252506256,0.555563390254974,0,0.831474184989929,0.555563390254974,0,0.831474184989929,0.382686465978622,0,0.923878252506256,0.555563390254974,0,0.831474184989929,0.707103967666626,0,0.70710963010788,0.707103967666626,0,0.70710963010788,0.555563390254974,0,0.831474184989929,0.707103967666626,0,0.70710963010788,0.831476449966431,0,0.555559992790222,0.831476449966431,0,0.555559992790222,0.707103967666626,0,0.70710963010788,0.831476449966431,0,0.555559992790222,0.923885703086853,0,0.382668644189835,0.923885703086853,0,0.382668644189835,0.831476449966431,0,0.555559992790222,0.923885703086853,0,0.382668644189835,0.98078465461731,0,0.195093557238579,0.98078465461731,0,0.195093557238579,0.923885703086853,0,0.382668644189835,0.98078465461731,0,0.195093557238579,1,0,-5.10693887179059e-009,1,0,-5.10693887179059e-009,0.98078465461731,0,0.195093557238579,1,0,-5.10693887179059e-009,0.980784595012665,0,-0.195094019174576,0.980784595012665,0,-0.195094019174576,1,0,-5.10693887179059e-009,0.980784595012665,0,-0.195094019174576,0.923885583877563,0,-0.382668972015381,0.923885583877563,0,-0.382668972015381,0.980784595012665,0,-0.195094019174576,0.923885583877563,0,-0.382668972015381,0.83147656917572,0,-0.555559992790222,0.83147656917572,0,-0.555559992790222,0.923885583877563,0,-0.382668972015381,0.83147656917572,0,-0.555559992790222,0.707104086875916,0,-0.707109570503235,0.707104086875916,0,-0.707109570503235,0.83147656917572,0,-0.555559992790222,0.707104086875916,0,-0.707109570503235,0.555563390254974,0,-0.831474184989929,0.555563390254974,0,-0.831474184989929,0.707104086875916,0,-0.707109570503235,0.555563390254974,0,-0.831474184989929,0.382686465978622,0,-0.923878252506256,
- 0.382686465978622,0,-0.923878252506256,0.555563390254974,0,-0.831474184989929,0.382686465978622,0,-0.923878252506256,0.19509120285511,0,-0.980785131454468,0.19509120285511,0,-0.980785131454468,0.382686465978622,0,-0.923878252506256,0.19509120285511,0,-0.980785131454468,0,0,-1,0,0,-1,0.19509120285511,0,-0.980785131454468,0,0,-1,-0.19509045779705,0,-0.980785191059113,-0.19509045779705,0,-0.980785191059113,0,0,-1,-0.19509045779705,0,-0.980785191059113,-0.38268518447876,0,-0.923878908157349,-0.38268518447876,0,-0.923878908157349,-0.19509045779705,0,-0.980785191059113,-0.38268518447876,0,-0.923878908157349,-0.555562913417816,0,-0.831474542617798,-0.555562913417816,0,-0.831474542617798,-0.38268518447876,0,-0.923878908157349,-0.555562913417816,0,-0.831474542617798,-0.707103610038757,0,-0.707110047340393,-0.707103610038757,0,-0.707110047340393,-0.555562913417816,0,-0.831474542617798,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.831476211547852,0,-0.555560350418091,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.923885583877563,0,-0.382668942213058,-0.923885583877563,0,-0.382668942213058,-0.831476211547852,0,-0.555560350418091,-0.923885583877563,0,-0.382668942213058,-0.980784595012665,0,-0.195093706250191,-0.980784595012665,0,-0.195093706250191,-0.923885583877563,0,-0.382668942213058,-0.980784595012665,0,-0.195093706250191,-1,0,0,-1,0,0,-0.980784595012665,0,-0.195093706250191,-1,0,0,-0.980784595012665,0,0.195093706250191,-0.980784595012665,0,0.195093706250191,-1,0,0,-0.980784595012665,0,0.195093706250191,-0.923885583877563,0,0.382668942213058,-0.923885583877563,0,0.382668942213058,-0.980784595012665,0,0.195093706250191,-0.923885583877563,0,0.382668942213058,-0.83147668838501,0,0.555559575557709,-0.83147668838501,0,0.555559575557709,-0.923885583877563,0,0.382668942213058,-0.83147668838501,0,0.555559575557709,-0.707104384899139,0,0.707109153270721,-0.707104384899139,0,0.707109153270721,-0.83147668838501,0,0.555559575557709,-0.707104384899139,0,0.707109153270721,
- -0.555563390254974,0,0.831474184989929,-0.555563390254974,0,0.831474184989929,-0.707104384899139,0,0.707109153270721,-0.555563390254974,0,0.831474184989929,-0.382686465978622,0,0.923878252506256,-0.382686465978622,0,0.923878252506256,-0.555563390254974,0,0.831474184989929,-0.382686465978622,0,0.923878252506256,-0.208870649337769,0,0.977943181991577,-0.19509120285511,0,0.980785131454468,-0.382686465978622,0,0.923878252506256,-0.208870649337769,0,0.977943181991577,-0.0980167463421822,0,0.995184719562531,-7.66032258070481e-007,0,1,-7.66032258070481e-007,0,1,-0.19509120285511,0,0.980785131454468,-7.66032258070481e-007,0,1,0.0980153456330299,0,0.99518483877182,0.208870112895966,0,0.977943420410156,0.195090472698212,0,0.980785191059113,-7.66032258070481e-007,0,1,0.208870112895966,0,0.977943420410156,0.382686465978622,0,0.923878252506256,0.382686465978622,0,0.923878252506256,0.195090472698212,0,0.980785191059113,0.382686465978622,0,0.923878252506256,0.555563271045685,1.28349569195052e-007,0.831474244594574,0.555563390254974,0,0.831474184989929,0.382686465978622,0,0.923878252506256,0.555563271045685,1.28349569195052e-007,0.831474244594574,0.707103967666626,2.4156628342098e-007,0.70710963010788,0.707103967666626,0,0.70710963010788,0.555563390254974,0,0.831474184989929,0.707103967666626,2.4156628342098e-007,0.70710963010788,0.831476509571075,1.13216970021313e-007,0.555559933185577,0.831476449966431,0,0.555559992790222,0.707103967666626,0,0.70710963010788,0.831476509571075,1.13216970021313e-007,0.555559933185577,0.923885703086853,0,0.382668644189835,0.923885703086853,0,0.382668644189835,0.831476449966431,0,0.555559992790222,0.923885703086853,0,0.382668644189835,0.98078465461731,0,0.195093557238579,0.98078465461731,0,0.195093557238579,0.923885703086853,0,0.382668644189835,0.98078465461731,0,0.195093557238579,1,0,-5.10693887179059e-009,1,0,-5.10693887179059e-009,0.98078465461731,0,0.195093557238579,1,0,-5.10693887179059e-009,0.980784595012665,0,-0.195094019174576,0.980784595012665,0,-0.195094019174576,1,0,-5.10693887179059e-009,
- 0.980784595012665,0,-0.195094019174576,0.923885583877563,0,-0.382668972015381,0.923885583877563,0,-0.382668972015381,0.980784595012665,0,-0.195094019174576,0.923885583877563,0,-0.382668972015381,0.83147656917572,0,-0.555559992790222,0.83147656917572,0,-0.555559992790222,0.923885583877563,0,-0.382668972015381,0.83147656917572,0,-0.555559992790222,0.707104086875916,0,-0.707109570503235,0.707104086875916,0,-0.707109570503235,0.83147656917572,0,-0.555559992790222,0.707104086875916,0,-0.707109570503235,0.555563390254974,0,-0.831474184989929,0.555563390254974,0,-0.831474184989929,0.707104086875916,0,-0.707109570503235,0.555563390254974,0,-0.831474184989929,0.382686465978622,0,-0.923878252506256,0.382686465978622,0,-0.923878252506256,0.555563390254974,0,-0.831474184989929,0.382686465978622,0,-0.923878252506256,0.19509120285511,0,-0.980785131454468,0.19509120285511,0,-0.980785131454468,0.382686465978622,0,-0.923878252506256,0.19509120285511,0,-0.980785131454468,0,0,-1,0,0,-1,0.19509120285511,0,-0.980785131454468,0,0,-1,-0.19509045779705,0,-0.980785191059113,-0.19509045779705,0,-0.980785191059113,0,0,-1,-0.19509045779705,0,-0.980785191059113,-0.38268518447876,0,-0.923878908157349,-0.38268518447876,0,-0.923878908157349,-0.19509045779705,0,-0.980785191059113,-0.38268518447876,0,-0.923878908157349,-0.555562913417816,0,-0.831474542617798,-0.555562913417816,0,-0.831474542617798,-0.38268518447876,0,-0.923878908157349,-0.555562913417816,0,-0.831474542617798,-0.707103610038757,0,-0.707110047340393,-0.707103610038757,0,-0.707110047340393,-0.555562913417816,0,-0.831474542617798,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.831476211547852,0,-0.555560350418091,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.923885583877563,0,-0.382668942213058,-0.923885583877563,0,-0.382668942213058,-0.831476211547852,0,-0.555560350418091,-0.923885583877563,0,-0.382668942213058,-0.980784595012665,0,-0.195093706250191,-0.980784595012665,0,-0.195093706250191,-0.923885583877563,0,-0.382668942213058,
- -0.980784595012665,0,-0.195093706250191,-1,0,0,-1,0,0,-0.980784595012665,0,-0.195093706250191,-1,0,0,-0.980784595012665,0,0.195093706250191,-0.980784595012665,0,0.195093706250191,-1,0,0,-0.980784595012665,0,0.195093706250191,-0.923885583877563,0,0.382668942213058,-0.923885583877563,0,0.382668942213058,-0.980784595012665,0,0.195093706250191,-0.923885583877563,0,0.382668942213058,-0.83147668838501,0,0.555559575557709,-0.83147668838501,0,0.555559575557709,-0.923885583877563,0,0.382668942213058,-0.83147668838501,0,0.555559575557709,-0.707104384899139,0,0.707109153270721,-0.707104384899139,0,0.707109153270721,-0.83147668838501,0,0.555559575557709,-0.707104384899139,0,0.707109153270721,-0.555563390254974,0,0.831474184989929,-0.555563390254974,0,0.831474184989929,-0.707104384899139,0,0.707109153270721,-0.555563390254974,0,0.831474184989929,-0.382686465978622,0,0.923878252506256,-0.382686465978622,0,0.923878252506256,-0.555563390254974,0,0.831474184989929,-0.382686465978622,0,0.923878252506256,-0.227169156074524,0,0.973855316638947,-0.208870649337769,0,0.977943181991577,-0.382686465978622,0,0.923878252506256,0.0980153456330299,0,0.99518483877182,0.0980153456330299,0,0.995184898376465,0.2271688580513,0,0.973855435848236,0.208870112895966,0,0.977943420410156,0.2271688580513,0,0.973855435848236,0.382686465978622,0,0.923878252506256,0.382686465978622,0,0.923878252506256,0.208870112895966,0,0.977943420410156,0.382686465978622,0,0.923878252506256,0.555562973022461,1.28349597616761e-007,0.831474363803864,0.555563271045685,1.28349569195052e-007,0.831474244594574,0.382686465978622,0,0.923878252506256,0.555562973022461,1.28349597616761e-007,0.831474363803864,0.707103967666626,2.4156628342098e-007,0.70710963010788,0.707103967666626,2.4156628342098e-007,0.70710963010788,0.555563271045685,1.28349569195052e-007,0.831474244594574,0.707103967666626,2.4156628342098e-007,0.70710963010788,0.83147656917572,1.13216934494176e-007,0.555559754371643,0.831476509571075,1.13216970021313e-007,0.555559933185577,0.707103967666626,2.4156628342098e-007,0.70710963010788,
- 0.83147656917572,1.13216934494176e-007,0.555559754371643,0.923885703086853,0,0.382668644189835,0.923885703086853,0,0.382668644189835,0.831476509571075,1.13216970021313e-007,0.555559933185577,0.923885703086853,0,0.382668644189835,0.98078465461731,0,0.195093557238579,0.98078465461731,0,0.195093557238579,0.923885703086853,0,0.382668644189835,0.98078465461731,0,0.195093557238579,1,0,-5.10693887179059e-009,1,0,-5.10693887179059e-009,0.98078465461731,0,0.195093557238579,1,0,-5.10693887179059e-009,0.980784595012665,0,-0.195094019174576,0.980784595012665,0,-0.195094019174576,1,0,-5.10693887179059e-009,0.980784595012665,0,-0.195094019174576,0.923885583877563,0,-0.382668972015381,0.923885583877563,0,-0.382668972015381,0.980784595012665,0,-0.195094019174576,0.923885583877563,0,-0.382668972015381,0.83147656917572,0,-0.555559992790222,0.83147656917572,0,-0.555559992790222,0.923885583877563,0,-0.382668972015381,0.83147656917572,0,-0.555559992790222,0.707104086875916,0,-0.707109570503235,0.707104086875916,0,-0.707109570503235,0.83147656917572,0,-0.555559992790222,0.707104086875916,0,-0.707109570503235,0.555563390254974,0,-0.831474184989929,0.555563390254974,0,-0.831474184989929,0.707104086875916,0,-0.707109570503235,0.555563390254974,0,-0.831474184989929,0.382686465978622,0,-0.923878252506256,0.382686465978622,0,-0.923878252506256,0.555563390254974,0,-0.831474184989929,0.382686465978622,0,-0.923878252506256,0.19509120285511,0,-0.980785131454468,0.19509120285511,0,-0.980785131454468,0.382686465978622,0,-0.923878252506256,0.19509120285511,0,-0.980785131454468,0,0,-1,0,0,-1,0.19509120285511,0,-0.980785131454468,0,0,-1,-0.19509045779705,0,-0.980785191059113,-0.19509045779705,0,-0.980785191059113,0,0,-1,-0.19509045779705,0,-0.980785191059113,-0.38268518447876,0,-0.923878908157349,-0.38268518447876,0,-0.923878908157349,-0.19509045779705,0,-0.980785191059113,-0.38268518447876,0,-0.923878908157349,-0.555562913417816,0,-0.831474542617798,-0.555562913417816,0,-0.831474542617798,-0.38268518447876,0,-0.923878908157349,-0.555562913417816,0,-0.831474542617798,
- -0.707103610038757,0,-0.707110047340393,-0.707103610038757,0,-0.707110047340393,-0.555562913417816,0,-0.831474542617798,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.831476211547852,0,-0.555560350418091,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.923885583877563,0,-0.382668942213058,-0.923885583877563,0,-0.382668942213058,-0.831476211547852,0,-0.555560350418091,-0.923885583877563,0,-0.382668942213058,-0.980784595012665,0,-0.195093706250191,-0.980784595012665,0,-0.195093706250191,-0.923885583877563,0,-0.382668942213058,-0.980784595012665,0,-0.195093706250191,-1,0,0,-1,0,0,-0.980784595012665,0,-0.195093706250191,-1,0,0,-0.980784595012665,0,0.195093706250191,-0.980784595012665,0,0.195093706250191,-1,0,0,-0.980784595012665,0,0.195093706250191,-0.923885583877563,0,0.382668942213058,-0.923885583877563,0,0.382668942213058,-0.980784595012665,0,0.195093706250191,-0.923885583877563,0,0.382668942213058,-0.83147668838501,0,0.555559575557709,-0.83147668838501,0,0.555559575557709,-0.923885583877563,0,0.382668942213058,-0.83147668838501,0,0.555559575557709,-0.707104384899139,0,0.707109153270721,-0.707104384899139,0,0.707109153270721,-0.83147668838501,0,0.555559575557709,-0.707104384899139,0,0.707109153270721,-0.555563390254974,0,0.831474184989929,-0.555563390254974,0,0.831474184989929,-0.707104384899139,0,0.707109153270721,-0.555563390254974,0,0.831474184989929,-0.382686465978622,0,0.923878252506256,-0.382686465978622,0,0.923878252506256,-0.555563390254974,0,0.831474184989929,-0.382686465978622,0,0.923878252506256,-0.208870649337769,-5.72942027154966e-010,0.977943181991577,-0.227169156074524,0,0.973855316638947,-0.382686465978622,0,0.923878252506256,0.0980153456330299,0,0.995184898376465,0.0980153456330299,-7.9832440658123e-010,0.99518483877182,0.208870112895966,-2.86471041333058e-010,0.977943420410156,0.2271688580513,0,0.973855435848236,0.208870112895966,-2.86471041333058e-010,0.977943420410156,0.382686465978622,0,0.923878252506256,0.382686465978622,0,0.923878252506256,
- 0.2271688580513,0,0.973855435848236,0.382686465978622,0,0.923878252506256,0.555562853813171,0,0.831474542617798,0.555562973022461,1.28349597616761e-007,0.831474363803864,0.382686465978622,0,0.923878252506256,0.555562853813171,0,0.831474542617798,0.707103908061981,0,0.70710963010788,0.707103967666626,2.4156628342098e-007,0.70710963010788,0.555562973022461,1.28349597616761e-007,0.831474363803864,0.707103908061981,0,0.70710963010788,0.83147668838501,0,0.555559694766998,0.83147656917572,1.13216934494176e-007,0.555559754371643,0.707103967666626,2.4156628342098e-007,0.70710963010788,0.83147668838501,0,0.555559694766998,0.923885703086853,0,0.382668644189835,0.923885703086853,0,0.382668644189835,0.83147656917572,1.13216934494176e-007,0.555559754371643,0.923885703086853,0,0.382668644189835,0.98078465461731,0,0.195093557238579,0.98078465461731,0,0.195093557238579,0.923885703086853,0,0.382668644189835,0.98078465461731,0,0.195093557238579,1,0,-5.10693887179059e-009,1,0,-5.10693887179059e-009,0.98078465461731,0,0.195093557238579,1,0,-5.10693887179059e-009,0.980784595012665,0,-0.195094019174576,0.980784595012665,0,-0.195094019174576,1,0,-5.10693887179059e-009,0.980784595012665,0,-0.195094019174576,0.923885583877563,0,-0.382668972015381,0.923885583877563,0,-0.382668972015381,0.980784595012665,0,-0.195094019174576,0.923885583877563,0,-0.382668972015381,0.83147656917572,0,-0.555559992790222,0.83147656917572,0,-0.555559992790222,0.923885583877563,0,-0.382668972015381,0.83147656917572,0,-0.555559992790222,0.707104086875916,0,-0.707109570503235,0.707104086875916,0,-0.707109570503235,0.83147656917572,0,-0.555559992790222,0.707104086875916,0,-0.707109570503235,0.555563390254974,0,-0.831474184989929,0.555563390254974,0,-0.831474184989929,0.707104086875916,0,-0.707109570503235,0.555563390254974,0,-0.831474184989929,0.382686465978622,0,-0.923878252506256,0.382686465978622,0,-0.923878252506256,0.555563390254974,0,-0.831474184989929,0.382686465978622,0,-0.923878252506256,0.19509120285511,0,-0.980785131454468,0.19509120285511,0,-0.980785131454468,
- 0.382686465978622,0,-0.923878252506256,0.19509120285511,0,-0.980785131454468,0,0,-1,0,0,-1,0.19509120285511,0,-0.980785131454468,0,0,-1,-0.19509045779705,0,-0.980785191059113,-0.19509045779705,0,-0.980785191059113,0,0,-1,-0.19509045779705,0,-0.980785191059113,-0.38268518447876,0,-0.923878908157349,-0.38268518447876,0,-0.923878908157349,-0.19509045779705,0,-0.980785191059113,-0.38268518447876,0,-0.923878908157349,-0.555562913417816,0,-0.831474542617798,-0.555562913417816,0,-0.831474542617798,-0.38268518447876,0,-0.923878908157349,-0.555562913417816,0,-0.831474542617798,-0.707103610038757,0,-0.707110047340393,-0.707103610038757,0,-0.707110047340393,-0.555562913417816,0,-0.831474542617798,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.831476211547852,0,-0.555560350418091,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.923885583877563,0,-0.382668942213058,-0.923885583877563,0,-0.382668942213058,-0.831476211547852,0,-0.555560350418091,-0.923885583877563,0,-0.382668942213058,-0.980784595012665,0,-0.195093706250191,-0.980784595012665,0,-0.195093706250191,-0.923885583877563,0,-0.382668942213058,-0.980784595012665,0,-0.195093706250191,-1,0,0,-1,0,0,-0.980784595012665,0,-0.195093706250191,-1,0,0,-0.980784595012665,0,0.195093706250191,-0.980784595012665,0,0.195093706250191,-1,0,0,-0.980784595012665,0,0.195093706250191,-0.923885583877563,0,0.382668942213058,-0.923885583877563,0,0.382668942213058,-0.980784595012665,0,0.195093706250191,-0.923885583877563,0,0.382668942213058,-0.83147668838501,0,0.555559575557709,-0.83147668838501,0,0.555559575557709,-0.923885583877563,0,0.382668942213058,-0.83147668838501,0,0.555559575557709,-0.707104384899139,0,0.707109153270721,-0.707104384899139,0,0.707109153270721,-0.83147668838501,0,0.555559575557709,-0.707104384899139,0,0.707109153270721,-0.555563390254974,0,0.831474184989929,-0.555563390254974,0,0.831474184989929,-0.707104384899139,0,0.707109153270721,-0.555563390254974,0,0.831474184989929,-0.382686465978622,0,0.923878252506256,
- -0.382686465978622,0,0.923878252506256,-0.555563390254974,0,0.831474184989929,-0.382686465978622,0,0.923878252506256,-0.19509120285511,-5.01373054184739e-010,0.980785131454468,-0.208870649337769,-5.72942027154966e-010,0.977943181991577,-0.382686465978622,0,0.923878252506256,-0.19509120285511,-5.01373054184739e-010,0.980785131454468,-7.66032258070481e-007,-7.52050366426005e-010,1,-7.66032258070481e-007,-1.50410073285201e-009,1,-0.0980167463421822,-1.59664870214016e-009,0.995184719562531,-0.208870649337769,-5.72942027154966e-010,0.977943181991577,-7.66032258070481e-007,-7.52050366426005e-010,1,0.195090472698212,-2.50686554847945e-010,0.980785191059113,0.208870112895966,-2.86471041333058e-010,0.977943420410156,0.0980153456330299,-7.9832440658123e-010,0.99518483877182,-7.66032258070481e-007,-1.50410073285201e-009,1,0.195090472698212,-2.50686554847945e-010,0.980785191059113,0.382686465978622,0,0.923878252506256,0.382686465978622,0,0.923878252506256,0.208870112895966,-2.86471041333058e-010,0.977943420410156,0.382686465978622,0,0.923878252506256,0.555562973022461,-1.28349597616761e-007,0.831474363803864,0.555562853813171,0,0.831474542617798,0.382686465978622,0,0.923878252506256,0.555562973022461,-1.28349597616761e-007,0.831474363803864,0.707103967666626,-2.4156628342098e-007,0.70710963010788,0.707103908061981,0,0.70710963010788,0.555562853813171,0,0.831474542617798,0.707103967666626,-2.4156628342098e-007,0.70710963010788,0.83147656917572,-1.13216934494176e-007,0.555559754371643,0.83147668838501,0,0.555559694766998,0.707103908061981,0,0.70710963010788,0.83147656917572,-1.13216934494176e-007,0.555559754371643,0.923885703086853,0,0.382668644189835,0.923885703086853,0,0.382668644189835,0.83147668838501,0,0.555559694766998,0.923885703086853,0,0.382668644189835,0.98078465461731,0,0.195093557238579,0.98078465461731,0,0.195093557238579,0.923885703086853,0,0.382668644189835,0.98078465461731,0,0.195093557238579,1,0,-5.10693887179059e-009,1,0,-5.10693887179059e-009,0.98078465461731,0,0.195093557238579,1,0,-5.10693887179059e-009,0.980784595012665,0,-0.195094019174576,
- 0.980784595012665,0,-0.195094019174576,1,0,-5.10693887179059e-009,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.555564045906067,0,0.831473767757416,-0.555563986301422,0,0.831473767757416,-0.555563986301422,0,0.831473767757416,-0.555564045906067,0,0.831473767757416,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.195089772343636,0,0.980785369873047,-0.195089757442474,0,0.980785369873047,-0.195089757442474,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,0,0,1,0,0,1,0,0,1,0,0,1,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662296295166,0.923888325691223,0,0.382662296295166,0.923888325691223,0,0.382662266492844,0.980779230594635,7.61595444487284e-008,0.195120796561241,
- 0.980779230594635,1.52319088897457e-007,0.19512078166008,0.980779230594635,1.52319088897457e-007,0.19512078166008,0.980779230594635,7.61595444487284e-008,0.195120796561241,1,7.61599210363784e-008,-1.06060769056171e-008,1,1.5231991312703e-007,1.21212311299246e-008,1,1.5231991312703e-007,1.21212311299246e-008,1,7.61599210363784e-008,-1.06060769056171e-008,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120722055435,0.980779230594635,0,-0.195120722055435,0.980779230594635,0,-0.195120736956596,0.923888444900513,0,-0.38266184926033,0.923888444900513,0,-0.382661879062653,0.923888444900513,0,-0.382661879062653,0.923888444900513,0,-0.38266184926033,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.382682263851166,0,-0.923879981040955,0.382682293653488,0,-0.923879981040955,0.382682293653488,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,0.195095613598824,-2.40386384575686e-007,-0.980784177780151,0.195095598697662,0,-0.980784177780151,0.195095598697662,0,-0.980784177780151,0.195095613598824,-2.40386384575686e-007,-0.980784177780151,9.12113080175914e-007,-4.80754579257336e-007,-1,9.12113080175914e-007,0,-1,9.12113080175914e-007,0,-1,9.12113080175914e-007,-4.80754579257336e-007,-1,-0.195088878273964,-2.40379250726619e-007,-0.980785548686981,-0.195088878273964,0,-0.980785548686981,-0.195088878273964,0,-0.980785548686981,-0.195088878273964,-2.40379250726619e-007,-0.980785548686981,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,
- -0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.555563986301422,0,0.831473767757416,-0.555564045906067,0,0.831473767757416,-0.555564045906067,0,0.831473767757416,-0.555563986301422,0,0.831473767757416,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.195089757442474,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,-0.195089757442474,0,0.980785369873047,0,0,1,0,0,1,0,0,1,0,0,1,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,
- 0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.923888325691223,0,0.382662296295166,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662296295166,0.980779230594635,-1.52319088897457e-007,0.19512078166008,0.980779230594635,-7.61595444487284e-008,0.195120796561241,0.980779230594635,-7.61595444487284e-008,0.195120796561241,0.980779230594635,-1.52319088897457e-007,0.19512078166008,1,-1.5231991312703e-007,1.21212311299246e-008,1,-7.61599210363784e-008,-1.06060769056171e-008,1,-7.61599210363784e-008,-1.06060769056171e-008,1,-1.5231991312703e-007,1.21212311299246e-008,0.980779230594635,0,-0.195120722055435,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120722055435,0.923888444900513,0,-0.382661879062653,0.923888444900513,0,-0.38266184926033,0.923888444900513,0,-0.38266184926033,0.923888444900513,0,-0.382661879062653,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.382682293653488,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,
- 0.382682293653488,0,-0.923879981040955,0.195095598697662,0,-0.980784177780151,0.195095613598824,2.40386384575686e-007,-0.980784177780151,0.195095613598824,2.40386384575686e-007,-0.980784177780151,0.195095598697662,0,-0.980784177780151,9.12113080175914e-007,0,-1,9.12113080175914e-007,4.80903338484495e-007,-1,9.12113080175914e-007,4.80903338484495e-007,-1,9.12113080175914e-007,0,-1,-0.195088878273964,0,-0.980785548686981,-0.195088878273964,2.40528009953778e-007,-0.980785548686981,-0.195088878273964,2.40528009953778e-007,-0.980785548686981,-0.195088878273964,0,-0.980785548686981,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,
- -0.83146870136261,0,0.555571615695953,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.555564045906067,0,0.831473767757416,-0.555564045906067,0,0.831473767757416,-0.555564045906067,0,0.831473767757416,-0.555564045906067,0,0.831473767757416,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.195089772343636,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,0,0,1,0,0,1,0,0,1,0,0,1,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662266492844,0.980779230594635,-7.61595444487284e-008,0.195120796561241,0.98077917098999,0,0.195120766758919,0.98077917098999,0,0.195120766758919,0.980779230594635,-7.61595444487284e-008,0.195120796561241,1,-7.61599210363784e-008,-1.06060769056171e-008,1,0,0,1,0,0,1,-7.61599210363784e-008,-1.06060769056171e-008,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120736956596,0.923888444900513,0,-0.38266184926033,
- 0.923888444900513,0,-0.38266184926033,0.923888444900513,0,-0.38266184926033,0.923888444900513,0,-0.38266184926033,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.382682263851166,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,0.195095613598824,2.40386384575686e-007,-0.980784177780151,0.208874449133873,2.74699260671696e-007,-0.977942526340485,0.208874449133873,2.74699260671696e-007,-0.977942526340485,0.195095613598824,2.40386384575686e-007,-0.980784177780151,9.12113080175914e-007,4.80903338484495e-007,-1,9.12113080175914e-007,9.6180667696899e-007,-1,0.0980154052376747,7.65494178267545e-007,-0.99518495798111,9.12113080175914e-007,9.6180667696899e-007,-1,9.12113080175914e-007,4.80903338484495e-007,-1,-0.195088878273964,2.40528009953778e-007,-0.980785548686981,-0.208866536617279,2.74859928595106e-007,-0.977944135665894,-0.0980135947465897,7.6596796816375e-007,-0.995185077190399,-0.208866536617279,2.74859928595106e-007,-0.977944135665894,-0.195088878273964,2.40528009953778e-007,-0.980785548686981,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,
- -0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.555564045906067,0,0.831473767757416,-0.555564045906067,0,0.831473767757416,-0.555564045906067,0,0.831473767757416,-0.555564045906067,0,0.831473767757416,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.195089772343636,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,0,0,1,0,0,1,0,0,1,0,0,1,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,
- 0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662266492844,0.98077917098999,0,0.195120766758919,0.98077917098999,0,0.195120766758919,0.98077917098999,0,0.195120766758919,0.98077917098999,0,0.195120766758919,1,0,0,1,0,0,1,0,0,1,0,0,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120736956596,0.923888444900513,0,-0.38266184926033,0.923888444900513,0,-0.38266184926033,0.923888444900513,0,-0.38266184926033,0.923888444900513,0,-0.38266184926033,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.382682263851166,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,0.208874449133873,2.74699260671696e-007,-0.977942526340485,0.227171882987022,0,-0.973854660987854,0.227171882987022,0,-0.973854660987854,0.208874449133873,2.74699260671696e-007,-0.977942526340485,0.0980154052376747,7.65494178267545e-007,-0.99518495798111,0.0980106666684151,0,-0.995185315608978,-0.227162286639214,0,-0.973856866359711,-0.208866536617279,2.74859928595106e-007,-0.977944135665894,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,
- -0.382683038711548,0,-0.923879683017731,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.555564045906067,0,0.831473767757416,-0.555564045906067,0,0.831473767757416,-0.555564045906067,0,0.831473767757416,-0.555564045906067,0,0.831473767757416,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.195089772343636,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,0,0,1,0,0,1,0,0,1,
- 0,0,1,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662266492844,0.98077917098999,0,0.195120766758919,0.98077917098999,0,0.195120766758919,0.98077917098999,0,0.195120766758919,0.98077917098999,0,0.195120766758919,1,0,0,1,0,0,1,0,0,1,0,0,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120736956596,0.923888444900513,0,-0.38266184926033,0.923888444900513,0,-0.38266184926033,0.923888444900513,0,-0.38266184926033,0.923888444900513,0,-0.38266184926033,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.382682263851166,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,0.227171882987022,0,-0.973854660987854,0.208874449133873,-2.74699260671696e-007,-0.977942526340485,
- 0.208874449133873,-2.74699260671696e-007,-0.977942526340485,0.227171882987022,0,-0.973854660987854,0.0980106666684151,0,-0.995185315608978,0.0980154052376747,-7.65494178267545e-007,-0.99518495798111,-0.208866536617279,-2.74689938351003e-007,-0.977944135665894,-0.227162286639214,0,-0.973856866359711,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.923888444900513,0,0.38266184926033,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.707110106945038,0,0.707103371620178,-0.555564045906067,0,0.831473767757416,-0.555564045906067,0,0.831473767757416,
- -0.555564045906067,0,0.831473767757416,-0.555564045906067,0,0.831473767757416,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.382683038711548,0,0.923879683017731,-0.195089772343636,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,-0.195089772343636,0,0.980785369873047,0,0,1,0,0,1,0,0,1,0,0,1,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.195094719529152,0,0.98078441619873,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.382681459188461,0,0.923880279064178,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.707110106945038,0,0.707103431224823,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.831468760967255,0,0.555571556091309,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662266492844,0.923888325691223,0,0.382662266492844,0.98077917098999,0,0.195120766758919,0.980779230594635,7.61595444487284e-008,0.195120796561241,0.980779230594635,7.61595444487284e-008,0.195120796561241,0.98077917098999,0,0.195120766758919,1,0,0,1,7.61599210363784e-008,-1.06060769056171e-008,1,7.61599210363784e-008,-1.06060769056171e-008,1,0,0,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120736956596,0.980779230594635,0,-0.195120736956596,0.923888444900513,0,-0.38266184926033,0.923888444900513,0,-0.38266184926033,0.923888444900513,0,-0.38266184926033,0.923888444900513,0,-0.38266184926033,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,0.831468999385834,0,-0.55557119846344,
- 0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.707110643386841,0,-0.70710301399231,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.555563926696777,0,-0.831473767757416,0.382682263851166,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,0.382682263851166,0,-0.923879981040955,0.208874449133873,-2.74699260671696e-007,-0.977942526340485,0.195095613598824,-2.40386384575686e-007,-0.980784177780151,0.195095613598824,-2.40386384575686e-007,-0.980784177780151,0.208874449133873,-2.74699260671696e-007,-0.977942526340485,0.0980154052376747,-7.65494178267545e-007,-0.99518495798111,9.12113080175914e-007,-9.61509158514673e-007,-1,9.12113080175914e-007,-4.80754579257336e-007,-1,9.12113080175914e-007,-4.80754579257336e-007,-1,9.12113080175914e-007,-9.61509158514673e-007,-1,-0.0980135947465897,-7.65494291954383e-007,-0.995185077190399,-0.208866536617279,-2.74689938351003e-007,-0.977944135665894,-0.195088878273964,-2.40379250726619e-007,-0.980785548686981,-0.195088878273964,-2.40379250726619e-007,-0.980785548686981,-0.208866536617279,-2.74689938351003e-007,-0.977944135665894,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.382683038711548,0,-0.923879683017731,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.555563986301422,0,-0.831473767757416,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.707110106945038,0,-0.707103371620178,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,-0.923888623714447,0,-0.382661581039429,
- -0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-0.980785191059113,0,-0.195091187953949,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-1,0,-6.06063244035226e-009,-0.980785012245178,0,0.195091709494591,-0.980785012245178,0,0.195091709494591,-0.227169156074524,0,0.973855316638947,-0.0980163514614105,0,0.995184779167175,-0.0980167463421822,0,0.995184719562531,-0.208870649337769,0,0.977943181991577,-0.208870649337769,-5.72942027154966e-010,0.977943181991577,-0.0980167463421822,-1.59664870214016e-009,0.995184719562531,-0.0980163514614105,0,0.995184779167175,-0.227169156074524,0,0.973855316638947,-0.0980088710784912,0,-0.995185554027557,-0.0980135947465897,7.6596796816375e-007,-0.995185077190399,-0.208866536617279,2.74859928595106e-007,-0.977944135665894,-0.227162286639214,0,-0.973856866359711,-0.0980135947465897,-7.65494291954383e-007,-0.995185077190399,-0.0980088710784912,0,-0.995185554027557,-0.227162286639214,0,-0.973856866359711,-0.208866536617279,-2.74689938351003e-007,-0.977944135665894,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.938671886920929,-0.332178175449371,0.0924815386533737,0,-1,0,0,-1,0,-0.938667714595795,-0.332189947366714,0.0924811288714409,-0.938671886920929,-0.332178175449371,0.0924815386533737,-0.938667714595795,-0.332189947366714,0.0924811288714409,-0.995181560516357,0,0.0980490893125534,-0.995181560516357,0,0.0980490893125534,-0.995181560516357,0,0.0980490893125534,-0.995181560516357,0,0.0980490893125534,-0.995181560516357,0,0.0980490893125534,-0.995181560516357,0,0.0980490893125534,0.938671708106995,0.33217853307724,0.0924815535545349,0,1,0,0,1,0,0.938667774200439,0.332189649343491,0.0924811586737633,0.995181560516357,0,0.0980491191148758,0.938671708106995,0.33217853307724,0.0924815535545349,0.938667774200439,0.332189649343491,0.0924811586737633,0.995181560516357,0,0.0980491191148758,0.995181560516357,0,0.0980491191148758,0.995181560516357,0,0.0980491191148758,0.995181560516357,0,0.0980491191148758,
- 0.995181560516357,0,0.0980491191148758,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,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,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,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,0.999999940395355,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,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,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,0.999999940395355,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,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,0.999999940395355,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,-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,0,0,-1,0,0,-1,0,0,-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,-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,-0.999999940395355,0,0,-1,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,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-0.999999940395355,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,-0.999999940395355,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,-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,-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,-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,-0.999999940395355,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,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,-4.02485375161632e-006,-0.278486639261246,0.960440158843994,0.0841007605195045,-0.277446210384369,0.957053065299988,0.0875374302268028,0,0.996161162853241,-3.85692544568883e-009,0,1,0,1,0,0,1,0,0,0.999999940395355,-2.44456153097872e-008,0,1,-2.44587550213282e-008,0,0,-0.999999940395355,-0.087536595761776,0,-0.996161222457886,-0.0835350230336189,-0.298893660306931,-0.950623214244843,-3.97244411942665e-006,-0.299927979707718,-0.953961849212646,1.24896473607805e-006,-0.997514843940735,-0.0704575255513191,-0.00618926482275128,-0.997497320175171,-0.0704335272312164,0.00879707466810942,-0.994937539100647,0.100109323859215,1.62299579642422e-006,-0.994980692863464,0.100066632032394,0.984529495239258,8.44138980937714e-008,-0.175218552350998,0.984529495239258,8.44138980937714e-008,-0.175218552350998,0.984529733657837,0,-0.175217881798744,0.984529733657837,0,-0.175217881798744,-0.984529495239258,3.37655592375086e-008,-0.175218552350998,-0.984529495239258,3.37655592375086e-008,-0.175218552350998,-0.984529733657837,0,-0.175217881798744,-0.984529733657837,0,-0.175217881798744,1.62299579642422e-006,-0.994980692863464,0.100066632032394,0.00879707466810942,-0.994937539100647,0.100109323859215,0.0841007605195045,-0.277446210384369,0.957053065299988,-4.02485375161632e-006,-0.278486639261246,0.960440158843994,0.984528660774231,7.40066127491446e-007,-0.175223812460899,0.984528660774231,7.40066127491446e-007,-0.175223812460899,0.984529495239258,8.44138980937714e-008,-0.175218552350998,0.984529495239258,8.44138980937714e-008,-0.175218552350998,-3.97244411942665e-006,-0.299927979707718,-0.953961849212646,
- -0.0835350230336189,-0.298893660306931,-0.950623214244843,-0.00618926482275128,-0.997497320175171,-0.0704335272312164,1.24896473607805e-006,-0.997514843940735,-0.0704575255513191,-0.984528660774231,2.96026428259211e-007,-0.175223812460899,-0.984528660774231,2.96026428259211e-007,-0.175223812460899,-0.984529495239258,3.37655592375086e-008,-0.175218552350998,-0.984529495239258,3.37655592375086e-008,-0.175218552350998,-0.084898829460144,-0.277548313140869,0.956953108310699,-4.02485375161632e-006,-0.278486639261246,0.960440158843994,-3.85692544568883e-009,0,1,-0.0883707776665688,0,0.996087729930878,-0.00887277256697416,-0.994946718215942,0.10001128166914,1.62299579642422e-006,-0.994980692863464,0.100066632032394,-4.02485375161632e-006,-0.278486639261246,0.960440158843994,-0.084898829460144,-0.277548313140869,0.956953108310699,0.0062530217692256,-0.997493445873261,-0.0704829543828964,1.24896473607805e-006,-0.997514843940735,-0.0704575255513191,1.62299579642422e-006,-0.994980692863464,0.100066632032394,-0.00887277256697416,-0.994946718215942,0.10001128166914,0.0843316689133644,-0.298833727836609,-0.950571775436401,-3.97244411942665e-006,-0.299927979707718,-0.953961849212646,1.24896473607805e-006,-0.997514843940735,-0.0704575255513191,0.0062530217692256,-0.997493445873261,-0.0704829543828964,0.0883697494864464,0,-0.996087789535522,0,0,-0.999999940395355,-3.97244411942665e-006,-0.299927979707718,-0.953961849212646,0.0843316689133644,-0.298833727836609,-0.950571775436401,0,0.999999940395355,-2.44456153097872e-008,0,1,-4.91345595321491e-008,0,1,-4.91345595321491e-008,0,1,-2.44587550213282e-008,-0.122951380908489,0,0.992412745952606,-0.122951380908489,0,0.992412745952606,-0.122410424053669,-0.000320386578096077,0.992479503154755,-0.122420378029346,-0.0003144919173792,0.992478251457214,0.995829284191132,0,0.0912361741065979,0.995829284191132,0,0.0912361741065979,0.995792508125305,-0.0118115991353989,0.09087273478508,0.99579244852066,-0.0118114752694964,0.0908727422356606,-0.985606014728546,0,-0.169058844447136,-0.985535562038422,0.0198440700769424,-0.168302714824677,
- -0.985535621643066,0.0198446046561003,-0.168302699923515,-0.985606014728546,0,-0.169058844447136,-0.985605955123901,0,-0.16905876994133,-0.985605955123901,0,-0.169058740139008,-0.985605955123901,0,-0.169058740139008,-0.985605955123901,0,-0.16905876994133,-0.122952252626419,0,0.992412567138672,-0.122952252626419,0,0.992412567138672,-0.122951529920101,0,0.992412686347961,-0.122951529920101,0,0.992412686347961,0.995829284191132,0,0.0912361517548561,0.995829284191132,0,0.0912361517548561,0.995829224586487,0,0.0912361592054367,0.995829224586487,0,0.0912361592054367,-0.985605955123901,0,-0.169058740139008,-0.985605895519257,0,-0.169058844447136,-0.985605895519257,0,-0.169058844447136,-0.985605955123901,0,-0.169058740139008,-0.122951529920101,0,0.992412686347961,-0.122951529920101,0,0.992412686347961,-0.122951611876488,0,0.992412626743317,-0.122951611876488,0,0.992412626743317,0.995829224586487,0,0.0912361592054367,0.995829224586487,0,0.0912361592054367,0.995829343795776,0,0.0912361517548561,0.995829343795776,0,0.0912361517548561,-0.985605895519257,0,-0.169058844447136,-0.985605955123901,0,-0.169058755040169,-0.985605955123901,0,-0.169058755040169,-0.985605895519257,0,-0.169058844447136,-0.122951611876488,0,0.992412626743317,-0.122951611876488,0,0.992412626743317,-0.122951619327068,0,0.992412626743317,-0.122951619327068,0,0.992412626743317,0.995829343795776,0,0.0912361517548561,0.995829343795776,0,0.0912361517548561,0.995829343795776,0,0.0912361592054367,0.995829343795776,0,0.0912361592054367,-0.985605955123901,0,-0.169058755040169,-0.985605955123901,0,-0.169058695435524,-0.985605955123901,0,-0.169058695435524,-0.985605955123901,0,-0.169058755040169,-0.122951619327068,0,0.992412626743317,-0.122951619327068,0,0.992412626743317,-0.12295064330101,0,0.992412865161896,-0.12295064330101,0,0.992412865161896,0.995829343795776,0,0.0912361592054367,0.995829343795776,0,0.0912361592054367,0.995829343795776,0,0.0912362486124039,0.995829343795776,0,0.0912362486124039,-0.985605955123901,0,-0.169058695435524,-0.985606014728546,0,-0.169058844447136,
- -0.985606014728546,0,-0.169058844447136,-0.985605955123901,0,-0.169058695435524,-0.12295064330101,0,0.992412865161896,-0.12295064330101,0,0.992412865161896,-0.122951380908489,0,0.992412745952606,-0.122951380908489,0,0.992412745952606,0.995829343795776,0,0.0912362486124039,0.995829343795776,0,0.0912362486124039,0.995829284191132,0,0.0912361741065979,0.995829284191132,0,0.0912361741065979,0.0604603886604309,-0.00385362259112298,0.998163163661957,0.0556153245270252,-0.00301718665286899,0.998447716236115,0.0994944274425507,-0.00664413068443537,0.995015919208527,0.0999649912118912,-0.00660306494683027,0.994969069957733,-0.426737785339355,-0.904163897037506,0.0195581335574389,-0.425524741411209,-0.90473747253418,0.0194648467004299,-0.827333629131317,-0.558507144451141,0.0599077939987183,-0.8279869556427,-0.557528614997864,0.0599957890808582,0.420842498540878,0.906369209289551,-0.0372367538511753,0.84410685300827,0.52302759885788,-0.118006944656372,0.842998266220093,0.524876177310944,-0.117724396288395,0.417896777391434,0.907749056816101,-0.0367955639958382,-0.985535562038422,0.0198440700769424,-0.168302714824677,-0.967942416667938,0.195091113448143,-0.158199086785316,-0.96785444021225,0.195554345846176,-0.158165127038956,-0.985535621643066,0.0198446046561003,-0.168302699923515,-0.122420378029346,-0.0003144919173792,0.992478251457214,-0.122410424053669,-0.000320386578096077,0.992479503154755,-0.118102975189686,-0.00312349037267268,0.992996454238892,-0.118378192186356,-0.00294241844676435,0.992964208126068,0.99579244852066,-0.0118114752694964,0.0908727422356606,0.995792508125305,-0.0118115991353989,0.09087273478508,0.982424259185791,-0.165388703346252,0.0865397900342941,0.982477307319641,-0.165067166090012,0.0865508913993835,-0.967942416667938,0.195091113448143,-0.158199086785316,-0.796733796596527,0.594404399394989,-0.109080955386162,-0.794892907142639,0.59694766998291,-0.108621791005135,-0.96785444021225,0.195554345846176,-0.158165127038956,-0.118378192186356,-0.00294241844676435,0.992964208126068,-0.118102975189686,-0.00312349037267268,0.992996454238892,
- -0.0985999628901482,-0.00648687826469541,0.995106041431427,-0.0997127518057823,-0.00645992485806346,0.994995296001434,0.982477307319641,-0.165067166090012,0.0865508913993835,0.982424259185791,-0.165388703346252,0.0865397900342941,0.781080067157745,-0.621924221515656,0.0558954812586308,0.782069623470306,-0.620667219161987,0.056030385196209,-0.796733796596527,0.594404399394989,-0.109080955386162,-0.4262455701828,0.903721928596497,-0.0400197617709637,-0.423906773328781,0.904836237430573,-0.0396784879267216,-0.794892907142639,0.59694766998291,-0.108621791005135,-0.0997127518057823,-0.00645992485806346,0.994995296001434,-0.0985999628901482,-0.00648687826469541,0.995106041431427,-0.0587171465158463,-0.00337620405480266,0.998269021511078,-0.0627672970294952,-0.00386702595278621,0.998020708560944,0.782069623470306,-0.620667219161987,0.056030385196209,0.781080067157745,-0.621924221515656,0.0558954812586308,0.439625263214111,-0.897920489311218,0.0216416474431753,0.440584033727646,-0.897448599338531,0.0217156931757927,-0.4262455701828,0.903721928596497,-0.0400197617709637,0.0226196926087141,0.99969893693924,-0.00950564537197351,0.0227970983833075,0.999694883823395,-0.00950649566948414,-0.423906773328781,0.904836237430573,-0.0396784879267216,-0.0627672970294952,-0.00386702595278621,0.998020708560944,-0.0587171465158463,-0.00337620405480266,0.998269021511078,0.00203604181297123,2.18749919440597e-005,0.999997913837433,0.00154667906463146,1.73749212990515e-005,0.999998867511749,0.440584033727646,-0.897448599338531,0.0217156931757927,0.439625263214111,-0.897920489311218,0.0216416474431753,-0.0141560612246394,-0.99988853931427,0.0047436049208045,-0.0141524458304048,-0.99988865852356,0.00474359840154648,0.0226196926087141,0.99969893693924,-0.00950564537197351,0.420842498540878,0.906369209289551,-0.0372367538511753,0.417896777391434,0.907749056816101,-0.0367955639958382,0.0227970983833075,0.999694883823395,-0.00950649566948414,0.00154667906463146,1.73749212990515e-005,0.999998867511749,0.00203604181297123,2.18749919440597e-005,0.999997913837433,
- 0.0556153245270252,-0.00301718665286899,0.998447716236115,0.0604603886604309,-0.00385362259112298,0.998163163661957,-0.0141524458304048,-0.99988865852356,0.00474359840154648,-0.0141560612246394,-0.99988853931427,0.0047436049208045,-0.425524741411209,-0.90473747253418,0.0194648467004299,-0.426737785339355,-0.904163897037506,0.0195581335574389,0.121289305388927,0,0.992617249488831,0.121289305388927,0,0.992617249488831,0.121288798749447,0,0.992617249488831,0.121288798749447,0,0.992617249488831,-0.995978653430939,0,0.089590311050415,-0.995978653430939,0,0.089590311050415,-0.995978713035584,0,0.0895903557538986,-0.995978713035584,0,0.0895903557538986,0.985879421234131,0,-0.167456969618797,0.985879361629486,0,-0.167456835508347,0.985879361629486,0,-0.167456835508347,0.985879421234131,0,-0.167456969618797,0.84410685300827,0.52302759885788,-0.118006944656372,0.966393649578094,0.205491125583649,-0.154456302523613,0.966278970241547,0.206064805388451,-0.154409676790237,0.842998266220093,0.524876177310944,-0.117724396288395,0.0999649912118912,-0.00660306494683027,0.994969069957733,0.0994944274425507,-0.00664413068443537,0.995015919208527,0.115094803273678,-0.00326919229701161,0.993349075317383,0.116246953606606,-0.00265505257993937,0.993216872215271,-0.8279869556427,-0.557528614997864,0.0599957890808582,-0.827333629131317,-0.558507144451141,0.0599077939987183,-0.981828927993774,-0.17006504535675,0.0842002183198929,-0.981900453567505,-0.169644206762314,0.0842168033123016,0.966393649578094,0.205491125583649,-0.154456302523613,0.985886096954346,0.00130105810239911,-0.167412906885147,0.985885977745056,0.00130105868447572,-0.167412877082825,0.966278970241547,0.206064805388451,-0.154409676790237,0.116246953606606,-0.00265505257993937,0.993216872215271,0.115094803273678,-0.00326919229701161,0.993349075317383,0.121244557201862,-5.61790284336894e-006,0.99262261390686,0.12124465405941,-5.6086005315592e-006,0.992622673511505,-0.981900453567505,-0.169644206762314,0.0842168033123016,-0.981828927993774,-0.17006504535675,0.0842002183198929,
- -0.995981335639954,-0.00160630908794701,0.0895462036132813,-0.995981335639954,-0.00160630932077765,0.0895462110638618,0.985886096954346,0.00130105810239911,-0.167412906885147,0.985879421234131,0,-0.167457014322281,0.985879421234131,0,-0.167457014322281,0.985885977745056,0.00130105868447572,-0.167412877082825,0.12124465405941,-5.6086005315592e-006,0.992622673511505,0.121244557201862,-5.61790284336894e-006,0.99262261390686,0.12128934264183,0,0.992617249488831,0.12128934264183,0,0.992617249488831,-0.995981335639954,-0.00160630932077765,0.0895462110638618,-0.995981335639954,-0.00160630908794701,0.0895462036132813,-0.995978713035584,0,0.0895903035998344,-0.995978713035584,0,0.0895903035998344,0.985879421234131,0,-0.167457014322281,0.985879421234131,0,-0.16745699942112,0.985879421234131,0,-0.16745699942112,0.985879421234131,0,-0.167457014322281,0.12128934264183,0,0.992617249488831,0.12128934264183,0,0.992617249488831,0.121289387345314,0,0.992617130279541,0.121289387345314,0,0.992617130279541,-0.995978713035584,0,0.0895903035998344,-0.995978713035584,0,0.0895903035998344,-0.995978713035584,0,0.0895902886986732,-0.995978713035584,0,0.0895902886986732,0.985879421234131,0,-0.16745699942112,0.985879421234131,0,-0.167456969618797,0.985879421234131,0,-0.167456969618797,0.985879421234131,0,-0.16745699942112,0.121289387345314,0,0.992617130279541,0.121289387345314,0,0.992617130279541,0.121289305388927,0,0.992617249488831,0.121289305388927,0,0.992617249488831,-0.995978713035584,0,0.0895902886986732,-0.995978713035584,0,0.0895902886986732,-0.995978653430939,0,0.089590311050415,-0.995978653430939,0,0.089590311050415,0.985879361629486,0,-0.167456835508347,0.985879480838776,0,-0.167456805706024,0.985879480838776,0,-0.167456805706024,0.985879361629486,0,-0.167456835508347,0.121288798749447,0,0.992617249488831,0.121288798749447,0,0.992617249488831,0.121288821101189,0,0.992617249488831,0.121288821101189,0,0.992617249488831,-0.995978713035584,0,0.0895903557538986,-0.995978713035584,0,0.0895903557538986,-0.995978772640228,0,0.089590385556221,
- -0.995978772640228,0,0.089590385556221,0.985879480838776,0,-0.167456805706024,0.985879421234131,0,-0.16745688021183,0.985879421234131,0,-0.16745688021183,0.985879480838776,0,-0.167456805706024,0.121288821101189,0,0.992617249488831,0.121288821101189,0,0.992617249488831,0.121289029717445,0,0.992617249488831,0.121289029717445,0,0.992617249488831,-0.995978772640228,0,0.089590385556221,-0.995978772640228,0,0.089590385556221,-0.995978713035584,0,0.089590385556221,-0.995978713035584,0,0.089590385556221,0.130272075533867,0,-0.991478323936462,0.130272194743156,0,-0.991478323936462,0.130272194743156,0,-0.991478323936462,0.130272075533867,0,-0.991478323936462,0.130272373557091,0,-0.991478204727173,0.130272373557091,0,-0.991478204727173,0.130272701382637,0,-0.991478145122528,0.130272701382637,0,-0.991478145122528,0.130272701382637,0,-0.991478145122528,0.130272701382637,0,-0.991478145122528,0.130272224545479,0,-0.991478323936462,0.130272224545479,0,-0.991478323936462,0.130272224545479,0,-0.991478323936462,0.130272224545479,0,-0.991478323936462,0.130272477865219,0,-0.991478204727173,0.130272477865219,0,-0.991478204727173,0.130272477865219,0,-0.991478204727173,0.130272477865219,0,-0.991478204727173,0.129761829972267,0.000177116220584139,-0.9915452003479,0.129752978682518,0.000180182643816806,-0.991546332836151,0.129752978682518,0.000180182643816806,-0.991546332836151,0.129761829972267,0.000177116220584139,-0.9915452003479,0.125450760126114,0.00149144546594471,-0.992098748683929,0.12531541287899,0.00153200980275869,-0.99211573600769,0.12531541287899,0.00153200980275869,-0.99211573600769,0.125450760126114,0.00149144546594471,-0.992098748683929,0.104727156460285,0.00176481821108609,-0.994499504566193,0.104842402040958,0.00177386426366866,-0.994487226009369,0.104842402040958,0.00177386426366866,-0.994487226009369,0.104727156460285,0.00176481821108609,-0.994499504566193,0.064803846180439,-0.00295031676068902,-0.997893631458282,0.0627846196293831,-0.00322824367322028,-0.998021841049194,0.0627846196293831,-0.00322824367322028,-0.998021841049194,
- 0.064803846180439,-0.00295031676068902,-0.997893631458282,-0.00163698999676853,-0.00736286258324981,-0.999971568584442,-0.00221938127651811,-0.00736769707873464,-0.999970376491547,-0.00221938127651811,-0.00736769707873464,-0.999970376491547,-0.00163698999676853,-0.00736286258324981,-0.999971568584442,-0.0625641420483589,-0.00310137658379972,-0.99803614616394,-0.0595574527978897,-0.00366088887676597,-0.998218059539795,-0.0595574527978897,-0.00366088887676597,-0.998218059539795,-0.0625641420483589,-0.00310137658379972,-0.99803614616394,-0.105420783162117,0.00231051817536354,-0.994424998760223,-0.106178194284439,0.00233256118372083,-0.994344353675842,-0.106178194284439,0.00233256118372083,-0.994344353675842,-0.105420783162117,0.00231051817536354,-0.994424998760223,-0.123429708182812,0.00125474156811833,-0.992352545261383,-0.122361727058887,0.001519845565781,-0.992484390735626,-0.122361727058887,0.001519845565781,-0.992484390735626,-0.123429708182812,0.00125474156811833,-0.992352545261383,-0.128568097949028,-5.99499071540777e-006,-0.991700649261475,-0.128568023443222,-6.00422436036752e-006,-0.991700768470764,-0.128568023443222,-6.00422436036752e-006,-0.991700768470764,-0.128568097949028,-5.99499071540777e-006,-0.991700649261475,-0.128615185618401,0,-0.991694629192352,-0.128615185618401,0,-0.991694629192352,-0.128615185618401,0,-0.991694629192352,-0.128615185618401,0,-0.991694629192352,-0.128615170717239,0,-0.991694629192352,-0.128615170717239,0,-0.991694629192352,-0.128615170717239,0,-0.991694629192352,-0.128615170717239,0,-0.991694629192352,-0.128615230321884,0,-0.991694629192352,-0.128615230321884,0,-0.991694629192352,-0.128615230321884,0,-0.991694629192352,-0.128615230321884,0,-0.991694629192352,-0.128615617752075,0,-0.991694509983063,-0.128615617752075,0,-0.991694509983063,-0.128615617752075,0,-0.991694509983063,-0.128615617752075,0,-0.991694509983063,-0.12861579656601,0,-0.991694509983063,-0.12861579656601,0,-0.991694509983063,-0.12861579656601,0,-0.991694509983063,-0.12861579656601,0,-0.991694509983063,-0.12861567735672,0,-0.991694509983063,
- -0.12861567735672,0,-0.991694509983063,0.130272075533867,0,-0.991478323936462,0.130272075533867,0,-0.991478323936462,0.130272373557091,0,-0.991478204727173,0.130272373557091,0,-0.991478204727173,-0.137566208839417,0,-0.990492582321167,-0.137566208839417,0,-0.990492582321167,-0.137073174118996,3.7643712857971e-005,-0.990561008453369,-0.137080579996109,3.70768357242923e-005,-0.990559875965118,-0.995978713035584,0,0.0895901694893837,-0.995978713035584,0,0.0895901694893837,-0.995956063270569,-0.0104847606271505,0.089228093624115,-0.995956122875214,-0.0104848425835371,0.0892281010746956,0.985874354839325,0,-0.167486295104027,0.985845863819122,0.017678651958704,-0.166719719767571,0.985845804214478,0.0176782067865133,-0.166719734668732,0.985874354839325,0,-0.167486295104027,0.98587441444397,0,-0.167486444115639,0.98587441444397,0,-0.167486295104027,0.98587441444397,0,-0.167486295104027,0.98587441444397,0,-0.167486444115639,-0.1375662535429,0,-0.990492522716522,-0.1375662535429,0,-0.990492522716522,-0.1375662535429,0,-0.990492522716522,-0.1375662535429,0,-0.990492522716522,-0.995978772640228,0,0.0895902886986732,-0.995978772640228,0,0.0895902886986732,-0.995978713035584,0,0.0895901918411255,-0.995978713035584,0,0.0895901918411255,0.98587441444397,0,-0.167486295104027,0.98587441444397,0,-0.167486324906349,0.98587441444397,0,-0.167486324906349,0.98587441444397,0,-0.167486295104027,-0.1375662535429,0,-0.990492522716522,-0.1375662535429,0,-0.990492522716522,-0.1375662535429,0,-0.990492582321167,-0.1375662535429,0,-0.990492582321167,-0.995978713035584,0,0.0895901918411255,-0.995978713035584,0,0.0895901918411255,-0.995978653430939,0,0.0895900949835777,-0.995978653430939,0,0.0895900949835777,0.98587441444397,0,-0.167486324906349,0.98587429523468,0,-0.167486384510994,0.98587429523468,0,-0.167486384510994,0.98587441444397,0,-0.167486324906349,-0.1375662535429,0,-0.990492582321167,-0.1375662535429,0,-0.990492582321167,-0.137565940618515,0,-0.990492641925812,-0.137565940618515,0,-0.990492641925812,-0.995978653430939,0,0.0895900949835777,
- -0.995978653430939,0,0.0895900949835777,-0.995978713035584,0,0.0895901322364807,-0.995978713035584,0,0.0895901322364807,0.98587429523468,0,-0.167486384510994,0.985874474048615,0,-0.167486220598221,0.985874474048615,0,-0.167486220598221,0.98587429523468,0,-0.167486384510994,-0.137565940618515,0,-0.990492641925812,-0.137565940618515,0,-0.990492641925812,-0.137566030025482,0,-0.990492641925812,-0.137566030025482,0,-0.990492641925812,-0.995978713035584,0,0.0895901322364807,-0.995978713035584,0,0.0895901322364807,-0.995978653430939,0,0.0895901396870613,-0.995978653430939,0,0.0895901396870613,0.985874474048615,0,-0.167486220598221,0.985874354839325,0,-0.167486295104027,0.985874354839325,0,-0.167486295104027,0.985874474048615,0,-0.167486220598221,-0.137566030025482,0,-0.990492641925812,-0.137566030025482,0,-0.990492641925812,-0.137566208839417,0,-0.990492582321167,-0.137566208839417,0,-0.990492582321167,-0.995978653430939,0,0.0895901396870613,-0.995978653430939,0,0.0895901396870613,-0.995978713035584,0,0.0895901694893837,-0.995978713035584,0,0.0895901694893837,0.066203348338604,-0.0101560093462467,-0.997754454612732,0.0664765015244484,-0.01010403316468,-0.997736811637878,0.116313427686691,-0.00191148975864053,-0.993210792541504,0.113316006958485,-0.00228485208936036,-0.993556380271912,0.466712713241577,-0.884131968021393,0.022132420912385,0.468036830425262,-0.883429050445557,0.0222384538501501,0.855768322944641,-0.513454020023346,0.0634475350379944,0.855209589004517,-0.514394164085388,0.0633650869131088,-0.458825439214706,0.887572228908539,-0.0411695763468742,-0.867975354194641,0.481215268373489,-0.122680835425854,-0.868903517723084,0.479470998048782,-0.122939616441727,-0.462002605199814,0.885899662971497,-0.0416599996387959,0.985845863819122,0.017678651958704,-0.166719719767571,0.971975922584534,0.174792677164078,-0.157195240259171,0.97203916311264,0.174415290355682,-0.157223284244537,0.985845804214478,0.0176782067865133,-0.166719734668732,-0.137080579996109,3.70768357242923e-005,-0.990559875965118,-0.137073174118996,3.7643712857971e-005,-0.990561008453369,
- -0.132512882351875,-6.14844539086334e-005,-0.991181313991547,-0.132400348782539,-6.50886504445225e-005,-0.991196274757385,-0.995956122875214,-0.0104848425835371,0.0892281010746956,-0.995956063270569,-0.0104847606271505,0.089228093624115,-0.985393762588501,-0.147468283772469,0.085160993039608,-0.985355198383331,-0.14773066341877,0.0851518213748932,0.971975922584534,0.174792677164078,-0.157195240259171,0.826219856739044,0.552203714847565,-0.111498489975929,0.827789843082428,0.54976212978363,-0.111917689442635,0.97203916311264,0.174415290355682,-0.157223284244537,-0.132400348782539,-6.50886504445225e-005,-0.991196274757385,-0.132512882351875,-6.14844539086334e-005,-0.991181313991547,-0.111137390136719,-0.00284111127257347,-0.993801057338715,-0.108800753951073,-0.00322059006430209,-0.994058430194855,-0.985355198383331,-0.14773066341877,0.0851518213748932,-0.985393762588501,-0.147468283772469,0.085160993039608,-0.815193831920624,-0.576373696327209,0.0570300035178661,-0.814338147640228,-0.577594339847565,0.056905884295702,0.826219856739044,0.552203714847565,-0.111498489975929,0.465243756771088,0.884149312973022,-0.0427581183612347,0.467831969261169,0.882764041423798,-0.043137826025486,0.827789843082428,0.54976212978363,-0.111917689442635,-0.108800753951073,-0.00322059006430209,-0.994058430194855,-0.111137390136719,-0.00284111127257347,-0.993801057338715,-0.0665208697319031,-0.00963134318590164,-0.997738480567932,-0.0649703592061996,-0.0098584983497858,-0.997838497161865,-0.814338147640228,-0.577594339847565,0.056905884295702,-0.815193831920624,-0.576373696327209,0.0570300035178661,-0.482582420110703,-0.87554919719696,0.0229749549180269,-0.481507211923599,-0.876143097877502,0.0228922180831432,0.465243756771088,0.884149312973022,-0.0427581183612347,-0.0255798902362585,0.99961531162262,-0.0107200760394335,-0.0253926161676645,0.999620020389557,-0.0107188764959574,0.467831969261169,0.882764041423798,-0.043137826025486,-0.0649703592061996,-0.0098584983497858,-0.997838497161865,-0.0665208697319031,-0.00963134318590164,-0.997738480567932,
- 0.00412399508059025,-0.0144969848915935,-0.999886453151703,0.003389808582142,-0.0144917359575629,-0.999889194965363,-0.481507211923599,-0.876143097877502,0.0228922180831432,-0.482582420110703,-0.87554919719696,0.0229749549180269,0.0158750042319298,-0.999859690666199,0.00535153364762664,0.0158829782158136,-0.999859571456909,0.0053515606559813,-0.0255798902362585,0.99961531162262,-0.0107200760394335,-0.458825439214706,0.887572228908539,-0.0411695763468742,-0.462002605199814,0.885899662971497,-0.0416599996387959,-0.0253926161676645,0.999620020389557,-0.0107188764959574,0.003389808582142,-0.0144917359575629,-0.999889194965363,0.00412399508059025,-0.0144969848915935,-0.999886453151703,0.0664765015244484,-0.01010403316468,-0.997736811637878,0.066203348338604,-0.0101560093462467,-0.997754454612732,0.0158829782158136,-0.999859571456909,0.0053515606559813,0.0158750042319298,-0.999859690666199,0.00535153364762664,0.468036830425262,-0.883429050445557,0.0222384538501501,0.466712713241577,-0.884131968021393,0.022132420912385,0.139220491051674,0,-0.990261495113373,0.139220491051674,0,-0.990261495113373,0.139220491051674,0,-0.990261435508728,0.139220491051674,0,-0.990261435508728,0.995826244354248,0,0.0912686288356781,0.995826244354248,0,0.0912686288356781,0.995826303958893,0,0.0912686437368393,0.995826303958893,0,0.0912686437368393,-0.985606729984283,0,-0.16905452311039,-0.985606729984283,0,-0.169054642319679,-0.985606729984283,0,-0.169054642319679,-0.985606729984283,0,-0.16905452311039,-0.867975354194641,0.481215268373489,-0.122680835425854,-0.970312893390656,0.184234961867332,-0.156685218214989,-0.970394849777222,0.183770284056664,-0.156723916530609,-0.868903517723084,0.479470998048782,-0.122939616441727,0.113316006958485,-0.00228485208936036,-0.993556380271912,0.116313427686691,-0.00191148975864053,-0.993210792541504,0.132915005087852,-0.000259381718933582,-0.991127371788025,0.133852615952492,-0.000224380230065435,-0.99100124835968,0.855209589004517,-0.514394164085388,0.0633650869131088,0.855768322944641,-0.513454020023346,0.0634475350379944,
- 0.984682023525238,-0.151612803339958,0.0861101746559143,0.984630465507507,-0.151954606175423,0.0860961824655533,-0.970312893390656,0.184234961867332,-0.156685218214989,-0.985613644123077,0.0011509699979797,-0.169010236859322,-0.985613644123077,0.00115097069647163,-0.16901022195816,-0.970394849777222,0.183770284056664,-0.156723916530609,0.133852615952492,-0.000224380230065435,-0.99100124835968,0.132915005087852,-0.000259381718933582,-0.991127371788025,0.139174297451973,-1.45613621498342e-005,-0.990267813205719,0.13917438685894,-1.45418916872586e-005,-0.990267872810364,0.984630465507507,-0.151954606175423,0.0860961824655533,0.984682023525238,-0.151612803339958,0.0861101746559143,0.995830118656158,-0.00140175514388829,0.0912157893180847,0.995830118656158,-0.00140175374690443,0.0912157967686653,-0.985613644123077,0.0011509699979797,-0.169010236859322,-0.985606729984283,0,-0.169054552912712,-0.985606729984283,0,-0.169054552912712,-0.985613644123077,0.00115097069647163,-0.16901022195816,0.13917438685894,-1.45418916872586e-005,-0.990267872810364,0.139174297451973,-1.45613621498342e-005,-0.990267813205719,0.139220610260963,0,-0.990261375904083,0.139220610260963,0,-0.990261375904083,0.995830118656158,-0.00140175374690443,0.0912157967686653,0.995830118656158,-0.00140175514388829,0.0912157893180847,0.995826363563538,0,0.0912686511874199,0.995826363563538,0,0.0912686511874199,-0.985606729984283,0,-0.169054552912712,-0.985606670379639,0,-0.169054508209229,-0.985606670379639,0,-0.169054508209229,-0.985606729984283,0,-0.169054552912712,0.139220610260963,0,-0.990261375904083,0.139220610260963,0,-0.990261375904083,0.13922044634819,0,-0.990261435508728,0.13922044634819,0,-0.990261435508728,0.995826363563538,0,0.0912686511874199,0.995826363563538,0,0.0912686511874199,0.995826363563538,0,0.0912686362862587,0.995826363563538,0,0.0912686362862587,-0.985606670379639,0,-0.169054508209229,-0.985606729984283,0,-0.16905452311039,-0.985606729984283,0,-0.16905452311039,-0.985606670379639,0,-0.169054508209229,0.13922044634819,0,-0.990261435508728,
- 0.13922044634819,0,-0.990261435508728,0.139220491051674,0,-0.990261495113373,0.139220491051674,0,-0.990261495113373,0.995826363563538,0,0.0912686362862587,0.995826363563538,0,0.0912686362862587,0.995826244354248,0,0.0912686288356781,0.995826244354248,0,0.0912686288356781,-0.985606729984283,0,-0.169054642319679,-0.985606610774994,0,-0.169054612517357,-0.985606610774994,0,-0.169054612517357,-0.985606729984283,0,-0.169054642319679,0.139220491051674,0,-0.990261435508728,0.139220491051674,0,-0.990261435508728,0.139220297336578,0,-0.990261495113373,0.139220297336578,0,-0.990261495113373,0.995826303958893,0,0.0912686437368393,0.995826303958893,0,0.0912686437368393,0.995826303958893,0,0.0912686139345169,0.995826303958893,0,0.0912686139345169,-0.985606610774994,0,-0.169054612517357,-0.985606729984283,0,-0.169054567813873,-0.985606729984283,0,-0.169054567813873,-0.985606610774994,0,-0.169054612517357,0.139220297336578,0,-0.990261495113373,0.139220297336578,0,-0.990261495113373,0.139220222830772,0,-0.990261435508728,0.139220222830772,0,-0.990261435508728,0.995826303958893,0,0.0912686139345169,0.995826303958893,0,0.0912686139345169,0.995826303958893,0,0.0912685990333557,0.995826303958893,0,0.0912685990333557,0.128612607717514,0,0.991694927215576,0.128612890839577,0,0.991694867610931,0.128612890839577,0,0.991694867610931,0.128612607717514,0,0.991694927215576,0.128612786531448,0,0.991694927215576,0.128612786531448,0,0.991694927215576,0.128613010048866,0,0.991694927215576,0.128613010048866,0,0.991694927215576,0.128613010048866,0,0.991694927215576,0.128613010048866,0,0.991694927215576,0.128612712025642,0,0.991694867610931,0.128612712025642,0,0.991694867610931,0.128612712025642,0,0.991694867610931,0.128612712025642,0,0.991694867610931,0.128612890839577,0,0.991694867610931,0.128612890839577,0,0.991694867610931,0.128612890839577,0,0.991694867610931,0.128612890839577,0,0.991694867610931,0.128103241324425,-0.000173462569364347,0.991760849952698,0.128094702959061,-0.000176365894731134,0.991761982440948,0.128094702959061,-0.000176365894731134,0.991761982440948,
- 0.128103241324425,-0.000173462569364347,0.991760849952698,0.123756773769856,-0.00145422760397196,0.992311477661133,0.123686194419861,-0.00147463625762612,0.99232029914856,0.123686194419861,-0.00147463625762612,0.99232029914856,0.123756773769856,-0.00145422760397196,0.992311477661133,0.102750524878502,-0.00168222084175795,0.994705736637115,0.103413581848145,-0.00173251051455736,0.994636952877045,0.103413581848145,-0.00173251051455736,0.994636952877045,0.102750524878502,-0.00168222084175795,0.994705736637115,0.062595933675766,0.00292838108725846,0.998034596443176,0.0615168921649456,0.0030721272341907,0.998101353645325,0.0615168921649456,0.0030721272341907,0.998101353645325,0.062595933675766,0.00292838108725846,0.998034596443176,-0.0032884671818465,0.00712672015652061,0.999969124794006,-0.00389934261329472,0.00713162310421467,0.999966979026794,-0.00389934261329472,0.00713162310421467,0.999966979026794,-0.0032884671818465,0.00712672015652061,0.999969124794006,-0.0637233778834343,0.00309219537302852,0.997962713241577,-0.0615998171269894,0.00347484275698662,0.998094916343689,-0.0615998171269894,0.00347484275698662,0.998094916343689,-0.0637233778834343,0.00309219537302852,0.997962713241577,-0.106774061918259,-0.00222644116729498,0.994280815124512,-0.108060166239738,-0.00226235366426408,0.994141757488251,-0.108060166239738,-0.00226235366426408,0.994141757488251,-0.106774061918259,-0.00222644116729498,0.994280815124512,-0.125064551830292,-0.00121994817163795,0.992147862911224,-0.124037489295006,-0.00146593793760985,0.99227637052536,-0.124037489295006,-0.00146593793760985,0.99227637052536,-0.125064551830292,-0.00121994817163795,0.992147862911224,-0.130225896835327,3.9579235817655e-006,0.991484344005585,-0.130225852131844,3.96374070987804e-006,0.991484403610229,-0.130225852131844,3.96374070987804e-006,0.991484403610229,-0.130225896835327,3.9579235817655e-006,0.991484344005585,-0.130271330475807,0,0.991478443145752,-0.130271330475807,0,0.991478443145752,-0.130271330475807,0,0.991478443145752,-0.130271330475807,0,0.991478443145752,
- -0.130270928144455,0,0.991478383541107,-0.130270928144455,0,0.991478383541107,-0.130270928144455,0,0.991478383541107,-0.130270928144455,0,0.991478383541107,-0.130270913243294,0,0.991478443145752,-0.130270913243294,0,0.991478443145752,-0.130270913243294,0,0.991478443145752,-0.130270913243294,0,0.991478443145752,-0.130271524190903,0,0.991478443145752,-0.130271524190903,0,0.991478443145752,-0.130271524190903,0,0.991478443145752,-0.130271524190903,0,0.991478443145752,-0.130271315574646,0,0.991478383541107,-0.130271315574646,0,0.991478383541107,-0.130271315574646,0,0.991478383541107,-0.130271315574646,0,0.991478383541107,-0.130270779132843,0,0.991478383541107,-0.130270779132843,0,0.991478383541107,0.128612607717514,0,0.991694927215576,0.128612607717514,0,0.991694927215576,0.128612786531448,0,0.991694927215576,0.128612786531448,0,0.991694927215576
- }
- NormalsW: *2536 {
- 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
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *7608 {
- a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-3.8161704196682e-007,1,1.58071784994718e-007,0,1,0,0,1,0,-5.15171677761828e-007,1,3.44220126180517e-007,-1.03034562926041e-006,1,6.88441787133343e-007,-3.8161704196682e-007,1,1.58071784994718e-007,0,1,0,-5.84143663218128e-007,1,5.84138319936756e-007,-1.46034267345385e-007,1,1.46032945735897e-007,-1.37375718622934e-006,1,9.17897637009446e-007,-5.84143663218128e-007,1,5.84138319936756e-007,0,1,0,0,1,0,-1.46034267345385e-007,1,1.46032945735897e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,1.71719960917471e-007,1,1.14737567002976e-007,0,1,-0,0,1,-0,0,1,-0,0,1,-0,1.71719960917471e-007,1,1.14737567002976e-007,0,1,-0,0,1,-0,-1.73717566553933e-007,1,-3.40435413193063e-008,0,1,-0,0,1,-0,0,1,-0,1.05807662978408e-011,1,7.52050366426005e-010,-1.73717566553933e-007,1,-3.40435413193063e-008,0,1,-0,-0,1,0,4.89068126274805e-011,1,2.4586965796658e-010,1.05807662978408e-011,1,7.52050366426005e-010,-0,1,0,-0,1,0,-0,1,0,4.89068126274805e-011,1,2.4586965796658e-010,-0,1,0,1.35605873197164e-007,1,2.18120447925685e-007,7.13061893975464e-008,1,1.06719483028428e-007,-0,1,0,1.35605873197164e-007,1,2.18120447925685e-007,3.30407658566401e-007,1,3.52844921280848e-007,1.70812739952453e-007,1,1.70813592603736e-007,7.13061893975464e-008,1,1.06719483028428e-007,3.30407658566401e-007,1,3.52844921280848e-007,1.84144610670955e-007,1,1.31978566741964e-007,9.41372277907249e-008,1,6.28987777417933e-008,1.70812739952453e-007,1,1.70813592603736e-007,1.84144610670955e-007,1,1.31978566741964e-007,-0,1,0,-0,1,0,9.41372277907249e-008,1,6.28987777417933e-008,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,
- 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,5.7242704087912e-007,1,-2.37108281453402e-007,7.6323505027176e-007,1,-3.16143996315077e-007,0,1,0,5.7242704087912e-007,1,-2.37108281453402e-007,1.373795953441e-006,1,-9.17923557608447e-007,0,1,0,7.6323505027176e-007,1,-3.16143996315077e-007,-1.03031857179303e-006,1,6.88423710926145e-007,-5.84143947435223e-007,1,5.84138660997269e-007,0,1,0,-1.03031925391406e-006,1,6.88424165673496e-007,-5.84143947435223e-007,1,5.84138660997269e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,7.30179635866079e-007,1,7.30174690488639e-007,1.1682883496178e-006,1,1.16828050522599e-006,0,1,-0,7.30179635866079e-007,1,7.30174690488639e-007,1.20204379072675e-006,1,8.03165676188655e-007,1.03032857623475e-006,1,6.88431271100853e-007,1.1682883496178e-006,1,1.16828050522599e-006,1.20204379072675e-006,1,8.03165676188655e-007,-2.67833628539438e-012,1,-1.10941355928318e-012,-5.74179289183907e-012,1,-2.37835077153414e-012,1.03032857623475e-006,1,6.88431271100853e-007,-2.67833628539438e-012,1,-1.10941355928318e-012,-2.02564407913997e-007,1,-4.02927540221754e-008,-4.05128872671412e-007,1,-8.05855151497781e-008,-5.74179289183907e-012,1,-2.37835077153414e-012,-2.02564407913997e-007,1,-4.02927540221754e-008,0,1,-0,0,1,-0,-4.05128872671412e-007,1,-8.05855151497781e-008,0,1,-0,-0,1,0,-0,1,0,0,1,-0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-7.63234879741503e-007,1,3.16143939471658e-007,5.7242704087912e-007,1,-2.37108281453402e-007,
- 0,1,0,-7.63234879741503e-007,1,3.16143939471658e-007,9.76786360129545e-013,1,-6.52655338627406e-013,1.373795953441e-006,1,-9.17923557608447e-007,5.7242704087912e-007,1,-2.37108281453402e-007,2.40408803620085e-006,1,-1.60632964707474e-006,4.01945458253922e-013,1,-4.01941826176644e-013,-5.84143947435223e-007,1,5.84138660997269e-007,-1.03031857179303e-006,1,6.88423710926145e-007,4.01945458253922e-013,1,-4.01941826176644e-013,0,1,0,0,1,0,-5.84143947435223e-007,1,5.84138660997269e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,5.84143776904966e-007,1,5.84139854709065e-007,7.30179635866079e-007,1,7.30174690488639e-007,0,1,-0,5.84143776904966e-007,1,5.84139854709065e-007,1.03032743936637e-006,1,6.88430475292989e-007,1.20204379072675e-006,1,8.03165676188655e-007,7.30179635866079e-007,1,7.30174690488639e-007,1.03032743936637e-006,1,6.88430475292989e-007,-5.74179289183907e-012,1,-2.37835077153414e-012,-2.67833628539438e-012,1,-1.10941355928318e-012,1.20204379072675e-006,1,8.03165676188655e-007,-5.74179289183907e-012,1,-2.37835077153414e-012,-4.03435677753805e-007,1,-8.61664233298143e-008,-2.02564407913997e-007,1,-4.02927540221754e-008,-2.67833628539438e-012,1,-1.10941355928318e-012,-4.03435677753805e-007,1,-8.61664233298143e-008,0,1,-0,0,1,-0,0,1,-0,-2.02564407913997e-007,1,-4.02927540221754e-008,0,1,-0,0,1,-0,-0,1,0,-0,1,0,0,1,-0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-7.13061965029738e-008,1,-1.06719447501291e-007,-0,1,0,-0,1,0,-7.13061965029738e-008,1,-1.06719447501291e-007,-1.70812825217581e-007,1,-1.70813507338607e-007,-0,1,0,-0,1,0,-1.70812825217581e-007,1,-1.70813507338607e-007,-9.41372135798701e-008,1,-6.28988416906395e-008,-0,1,0,-0,1,0,-9.41372135798701e-008,1,-6.28988416906395e-008,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,
- 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-9.54042434386793e-007,1,3.95179398537948e-007,-7.63234879741503e-007,1,3.16143939471658e-007,0,1,0,-9.54042434386793e-007,1,3.95179398537948e-007,-1.71724241226912e-006,1,1.14740282697312e-006,9.76786360129545e-013,1,-6.52655338627406e-013,-7.63234879741503e-007,1,3.16143939471658e-007,4.46472813564469e-006,1,-2.9831787742296e-006,1.60640001922729e-006,1,-1.60638535362523e-006,4.01945458253922e-013,1,-4.01941826176644e-013,2.40408803620085e-006,1,-1.60632964707474e-006,1.60640001922729e-006,1,-1.60638535362523e-006,0,1,0,0,1,0,4.01945458253922e-013,1,-4.01941826176644e-013,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,7.30179806396336e-007,1,7.30174861018895e-007,5.84143776904966e-007,1,5.84139854709065e-007,0,1,-0,7.30179806396336e-007,1,7.30174861018895e-007,8.58599833009066e-007,1,5.73687827909453e-007,1.03032743936637e-006,1,6.88430475292989e-007,5.84143776904966e-007,1,5.84139854709065e-007,8.58599833009066e-007,1,5.73687827909453e-007,-2.67833628539438e-012,1,-1.10941355928318e-012,-5.74179289183907e-012,1,-2.37835077153414e-012,1.03032743936637e-006,1,6.88430475292989e-007,-2.67833628539438e-012,1,-1.10941355928318e-012,-2.00592921828502e-007,1,-4.67918823687796e-008,-4.03435677753805e-007,1,-8.61664233298143e-008,-5.74179289183907e-012,1,-2.37835077153414e-012,0,1,-0,0,1,-0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-7.1306160975837e-008,1,-1.06719497239283e-007,-7.13061965029738e-008,1,-1.06719447501291e-007,-0,1,0,-7.1306160975837e-008,1,-1.06719497239283e-007,-1.70812811006726e-007,1,-1.70813521549462e-007,-1.70812825217581e-007,1,-1.70813507338607e-007,-7.13061965029738e-008,1,-1.06719447501291e-007,-1.70812811006726e-007,1,-1.70813521549462e-007,-9.41372206852975e-008,1,-6.2898791952648e-008,-9.41372135798701e-008,1,-6.28988416906395e-008,-1.70812825217581e-007,1,-1.70813507338607e-007,-9.41372206852975e-008,1,-6.2898791952648e-008,
- -0,1,0,-0,1,0,-9.41372135798701e-008,1,-6.28988416906395e-008,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-5.72426074540999e-007,1,2.37107897760325e-007,-9.54042434386793e-007,1,3.95179398537948e-007,0,1,0,-5.72426074540999e-007,1,2.37107897760325e-007,-1.37379265652271e-006,1,9.17921340715111e-007,-1.71724241226912e-006,1,1.14740282697312e-006,-9.54042434386793e-007,1,3.95179398537948e-007,1.37376287057123e-006,1,-9.17901502361929e-007,1.60639729074319e-006,1,-1.60638262514112e-006,1.60640001922729e-006,1,-1.60638535362523e-006,4.46472813564469e-006,1,-2.9831787742296e-006,1.60639729074319e-006,1,-1.60638262514112e-006,0,1,0,0,1,0,1.60640001922729e-006,1,-1.60638535362523e-006,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,2.92072002139321e-007,1,2.92070012619661e-007,7.30179806396336e-007,1,7.30174861018895e-007,0,1,-0,2.92072002139321e-007,1,2.92070012619661e-007,6.86879957356723e-007,1,4.58950324855323e-007,8.58599833009066e-007,1,5.73687827909453e-007,7.30179806396336e-007,1,7.30174861018895e-007,6.86879957356723e-007,1,4.58950324855323e-007,-3.81622243139645e-007,1,-1.58074584533097e-007,-2.67833628539438e-012,1,-1.10941355928318e-012,8.58599833009066e-007,1,5.73687827909453e-007,-3.81622243139645e-007,1,-1.58074584533097e-007,-4.84245560983254e-007,1,-1.02840068905152e-007,-2.00592921828502e-007,1,-4.67918823687796e-008,-2.67833628539438e-012,1,-1.10941355928318e-012,0,1,-0,7.82478526417663e-011,1,7.9448048140307e-010,6.13751341416169e-011,1,2.7982355321754e-010,-0,1,0,6.13751341416169e-011,1,2.7982355321754e-010,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-7.1306160975837e-008,1,-1.06719497239283e-007,-0,1,0,-0,1,0,-0,1,0,-1.70812811006726e-007,1,-1.70813521549462e-007,-7.1306160975837e-008,1,-1.06719497239283e-007,
- -0,1,0,-0,1,0,-9.41372206852975e-008,1,-6.2898791952648e-008,-1.70812811006726e-007,1,-1.70813521549462e-007,-0,1,0,-0,1,0,-0,1,0,-9.41372206852975e-008,1,-6.2898791952648e-008,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-3.8161704196682e-007,1,1.58071784994718e-007,-5.72426074540999e-007,1,2.37107897760325e-007,0,1,0,-3.8161704196682e-007,1,1.58071784994718e-007,-1.03034562926041e-006,1,6.88441787133343e-007,-1.37379265652271e-006,1,9.17921340715111e-007,-5.72426074540999e-007,1,2.37107897760325e-007,-1.37375718622934e-006,1,9.17897637009446e-007,-1.46034267345385e-007,1,1.46032945735897e-007,1.60639729074319e-006,1,-1.60638262514112e-006,1.37376287057123e-006,1,-9.17901502361929e-007,-1.46034267345385e-007,1,1.46032945735897e-007,0,1,0,0,1,0,1.60639729074319e-006,1,-1.60638262514112e-006,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,2.92072002139321e-007,1,2.92070012619661e-007,0,1,-0,0,1,-0,1.71719960917471e-007,1,1.14737567002976e-007,6.86879957356723e-007,1,4.58950324855323e-007,2.92072002139321e-007,1,2.92070012619661e-007,1.71719960917471e-007,1,1.14737567002976e-007,0,1,-0,-3.81622243139645e-007,1,-1.58074584533097e-007,6.86879957356723e-007,1,4.58950324855323e-007,0,1,-0,-1.73717566553933e-007,1,-3.40435413193063e-008,-4.84245560983254e-007,1,-1.02840068905152e-007,-3.81622243139645e-007,1,-1.58074584533097e-007,-1.73717566553933e-007,1,-3.40435413193063e-008,1.05807662978408e-011,1,7.52050366426005e-010,-1.19382305893679e-015,1,1.50410073285201e-009,-1.56498203285338e-010,1,1.58896062973923e-009,-4.84245560983254e-007,1,-1.02840068905152e-007,1.05807662978408e-011,1,7.52050366426005e-010,4.89068126274805e-011,1,2.4586965796658e-010,6.13751341416169e-011,1,2.7982355321754e-010,
- 7.82478526417663e-011,1,7.9448048140307e-010,-1.19382305893679e-015,1,1.50410073285201e-009,4.89068126274805e-011,1,2.4586965796658e-010,-0,1,0,-0,1,0,6.13751341416169e-011,1,2.7982355321754e-010,-0,1,0,7.13061893975464e-008,1,1.06719483028428e-007,-0,1,0,-0,1,0,7.13061893975464e-008,1,1.06719483028428e-007,1.70812739952453e-007,1,1.70813592603736e-007,-0,1,0,-0,1,0,1.70812739952453e-007,1,1.70813592603736e-007,9.41372277907249e-008,1,6.28987777417933e-008,-0,1,0,-0,1,0,9.41372277907249e-008,1,6.28987777417933e-008,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-4.52852958687799e-007,1,1.87576716825788e-007,-0,1,0,-0,1,0,-4.52852958687799e-007,1,1.87576716825788e-007,-1.22268386348878e-006,1,8.16956287508219e-007,-6.11340794876014e-007,1,4.08477376367955e-007,-0,1,0,-1.63039362632844e-006,1,1.0893743365159e-006,-1.73312486140276e-007,1,1.73314120388568e-007,-6.93257902639743e-007,1,6.93264439632912e-007,-6.93257902639743e-007,1,6.93264439632912e-007,-1.73312486140276e-007,1,1.73314120388568e-007,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-7.46956843045155e-008,1,-1.4860376040815e-008,-1.48416205547619e-007,1,-3.46224666714079e-008,-1.48416205547619e-007,1,-3.46224666714079e-008,-7.46956843045155e-008,1,-1.4860376040815e-008,-7.61599210363784e-008,1,-6.72539395559586e-016,-1.5231991312703e-007,1,-5.00530950020561e-009,-1.5231991312703e-007,1,-5.00530950020561e-009,-7.61599210363784e-008,1,-6.72539395559586e-016,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,2.03799331188748e-007,1,1.36172133125001e-007,0,1,0,0,1,0,2.03799331188748e-007,1,1.36172133125001e-007,0,1,0,0,1,0,0,1,0,0,1,0,-1.62478997367543e-007,1,-2.77416120297858e-007,0,1,0,0,1,0,-1.62478997367543e-007,1,-2.77416120297858e-007,
- -6.76375977448629e-009,1,-4.80754579257336e-007,0,1,0,0,1,0,-6.76375977448629e-009,1,-4.80754579257336e-007,-4.68952876531148e-008,1,-2.35760495570503e-007,0,1,0,0,1,0,-4.68952876531148e-008,1,-2.35760495570503e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,9.05707281617651e-007,1,-3.75154002085765e-007,6.79281242810248e-007,1,-2.81365828413982e-007,6.79281242810248e-007,1,-2.81365828413982e-007,9.05707281617651e-007,1,-3.75154002085765e-007,0,1,-0,1.63024753874197e-006,1,-1.0892766795223e-006,-1.22279618608445e-006,1,8.17031320821116e-007,-1.22279686820548e-006,1,8.17031832411885e-007,-0,1,0,-6.93258300543675e-007,1,6.93264837536844e-007,-6.93258300543675e-007,1,6.93264837536844e-007,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,1.50366545881298e-007,1,2.48190410445659e-008,7.46956843045155e-008,1,1.48603751526366e-008,7.46956843045155e-008,1,1.48603751526366e-008,1.50366545881298e-007,1,2.48190410445659e-008,1.5231991312703e-007,1,-5.00530017433221e-009,7.61599210363784e-008,1,6.72539395559586e-016,7.61599210363784e-008,1,6.72539395559586e-016,1.5231991312703e-007,1,-5.00530017433221e-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,0,0,1,0,1.38651580527949e-006,1,1.38653081194207e-006,8.66571610913525e-007,1,8.66580933234218e-007,8.66571610913525e-007,1,8.66580933234218e-007,1.38651580527949e-006,1,1.38653081194207e-006,1.22275935154903e-006,1,8.17008356079896e-007,1.42657665946899e-006,1,9.53192454744567e-007,1.42657665946899e-006,1,9.53192454744567e-007,1.22275935154903e-006,1,8.17008356079896e-007,-5.71729642795393e-011,1,-2.36817353921337e-011,-2.83589089711267e-011,1,-1.17466028223823e-011,-2.83589089711267e-011,1,-1.17466028223823e-011,
- -5.71729642795393e-011,1,-2.36817353921337e-011,-4.80807614167134e-007,1,-9.56412833374998e-008,-2.8730281087519e-007,1,1.87946426422059e-007,-2.8730281087519e-007,1,1.87946426422059e-007,-4.80807614167134e-007,1,-9.56412833374998e-008,0,1,0,-6.76676181754488e-009,1,4.80903338484495e-007,-6.76676181754488e-009,1,4.80903338484495e-007,0,1,0,0,1,0,4.3605037802763e-008,1,2.36566677358496e-007,4.3605037802763e-008,1,2.36566677358496e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,6.79281242810248e-007,1,-2.81365828413982e-007,-9.05706940557138e-007,1,3.75153859977218e-007,-9.05706940557138e-007,1,3.75153859977218e-007,6.79281242810248e-007,1,-2.81365828413982e-007,1.63024753874197e-006,1,-1.0892766795223e-006,1.16584151187149e-012,1,-7.78976167424561e-013,2.85320425064128e-006,1,-1.90641537756164e-006,-1.22279618608445e-006,1,8.17031320821116e-007,-6.93258300543675e-007,1,6.93264837536844e-007,4.95728241442506e-013,1,-4.95732903511847e-013,4.95728241442506e-013,1,-4.95732903511847e-013,-6.93258300543675e-007,1,6.93264837536844e-007,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,7.46956843045155e-008,1,1.48603751526366e-008,-0,1,0,-0,1,0,7.46956843045155e-008,1,1.48603751526366e-008,7.61599210363784e-008,1,6.72539395559586e-016,-0,1,0,-0,1,0,7.61599210363784e-008,1,6.72539395559586e-016,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,8.66571610913525e-007,1,8.66580933234218e-007,6.93257447892393e-007,1,6.93264894380263e-007,6.93257447892393e-007,1,6.93264894380263e-007,8.66571610913525e-007,1,8.66580933234218e-007,1.42657665946899e-006,1,9.53192454744567e-007,1.22275787362014e-006,1,8.17007332898356e-007,1.22275787362014e-006,1,8.17007332898356e-007,
- 1.42657665946899e-006,1,9.53192454744567e-007,-2.83589089711267e-011,1,-1.17466028223823e-011,-5.71379471514533e-011,1,-2.36672296344276e-011,-5.71379471514533e-011,1,-2.36672296344276e-011,-2.83589089711267e-011,1,-1.17466028223823e-011,-2.8730281087519e-007,1,1.87946426422059e-007,-5.32359592853027e-007,1,1.67190719935206e-007,-5.32359592853027e-007,1,1.67190719935206e-007,-2.8730281087519e-007,1,1.87946426422059e-007,-6.76676181754488e-009,1,4.80903338484495e-007,-9.05698151025536e-013,1,9.6180667696899e-007,-7.50300372942547e-008,1,7.61808109928097e-007,-9.05698151025536e-013,1,9.6180667696899e-007,-6.76676181754488e-009,1,4.80903338484495e-007,4.3605037802763e-008,1,2.36566677358496e-007,5.88863251493876e-008,1,2.68482153842342e-007,7.50743680555388e-008,1,7.6228002399148e-007,5.88863251493876e-008,1,2.68482153842342e-007,4.3605037802763e-008,1,2.36566677358496e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-9.05706940557138e-007,1,3.75153859977218e-007,-1.13213229724352e-006,1,4.68941777853615e-007,-1.13213229724352e-006,1,4.68941777853615e-007,-9.05706940557138e-007,1,3.75153859977218e-007,1.16584151187149e-012,1,-7.78976167424561e-013,-2.03780655283481e-006,1,1.36159383146151e-006,5.29879980604164e-006,1,-3.54048029294063e-006,2.85320425064128e-006,1,-1.90641537756164e-006,4.95728241442506e-013,1,-4.95732903511847e-013,1.9064652860834e-006,1,-1.90648324860376e-006,1.9064652860834e-006,1,-1.90648324860376e-006,4.95728241442506e-013,1,-4.95732903511847e-013,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,6.93257447892393e-007,1,6.93264894380263e-007,
- 8.66571667756944e-007,1,8.66581046921056e-007,8.66571667756944e-007,1,8.66581046921056e-007,6.93257447892393e-007,1,6.93264894380263e-007,1.22275787362014e-006,1,8.17007332898356e-007,1.01899695437169e-006,1,6.80860807733552e-007,1.01899695437169e-006,1,6.80860807733552e-007,1.22275787362014e-006,1,8.17007332898356e-007,-5.71379471514533e-011,1,-2.36672296344276e-011,-2.83589089711267e-011,1,-1.17466028223823e-011,-2.83589089711267e-011,1,-1.17466028223823e-011,-5.71379471514533e-011,1,-2.36672296344276e-011,-5.32359592853027e-007,1,1.67190719935206e-007,-2.38064060908982e-007,1,-5.55334018770282e-008,-2.38064060908982e-007,1,-5.55334018770282e-008,-5.32359592853027e-007,1,1.67190719935206e-007,-7.50300372942547e-008,1,7.61808109928097e-007,-0,1,0,0,1,0,5.88863251493876e-008,1,2.68482153842342e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-1.13213229724352e-006,1,4.68941777853615e-007,-6.79279992255033e-007,1,2.81365316823212e-007,-6.79279992255033e-007,1,2.81365316823212e-007,-1.13213229724352e-006,1,4.68941777853615e-007,-2.03780655283481e-006,1,1.36159383146151e-006,-1.63024367338949e-006,1,1.08927406472503e-006,1.6304004475387e-006,1,-1.08937888398941e-006,5.29879980604164e-006,1,-3.54048029294063e-006,1.9064652860834e-006,1,-1.90648324860376e-006,1.90646198916511e-006,1,-1.90648006537231e-006,1.90646198916511e-006,1,-1.90648006537231e-006,1.9064652860834e-006,1,-1.90648324860376e-006,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,8.66571667756944e-007,1,8.66581046921056e-007,3.46628809211325e-007,1,3.4663253245526e-007,
- 3.46628809211325e-007,1,3.4663253245526e-007,8.66571667756944e-007,1,8.66581046921056e-007,1.01899695437169e-006,1,6.80860807733552e-007,8.15197438441828e-007,1,5.44688589343423e-007,8.15197438441828e-007,1,5.44688589343423e-007,1.01899695437169e-006,1,6.80860807733552e-007,-2.83589089711267e-011,1,-1.17466028223823e-011,-4.52909944215207e-007,1,-1.87600775802821e-007,-4.52909944215207e-007,1,-1.87600775802821e-007,-2.83589089711267e-011,1,-1.17466028223823e-011,-2.38064060908982e-007,1,-5.55334018770282e-008,-5.15702936354501e-007,1,-3.91041794500779e-007,-5.15702936354501e-007,1,-3.91041794500779e-007,-2.38064060908982e-007,1,-5.55334018770282e-008,-0,1,0,7.50293551732284e-008,1,-7.61808166771516e-007,-5.35570201520841e-008,1,-2.69446587708444e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-6.79279992255033e-007,1,2.81365316823212e-007,-4.52852958687799e-007,1,1.87576716825788e-007,-4.52852958687799e-007,1,1.87576716825788e-007,-6.79279992255033e-007,1,2.81365316823212e-007,-1.63024367338949e-006,1,1.08927406472503e-006,-1.22268386348878e-006,1,8.16956287508219e-007,-1.63039362632844e-006,1,1.0893743365159e-006,1.6304004475387e-006,1,-1.08937888398941e-006,1.90646198916511e-006,1,-1.90648006537231e-006,-1.73312486140276e-007,1,1.73314120388568e-007,-1.73312486140276e-007,1,1.73314120388568e-007,1.90646198916511e-006,1,-1.90648006537231e-006,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-7.46956843045155e-008,1,-1.4860376040815e-008,-7.46956843045155e-008,1,-1.4860376040815e-008,-0,1,0,-0,1,0,-7.61599210363784e-008,1,-6.72539395559586e-016,-7.61599210363784e-008,1,-6.72539395559586e-016,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,
- 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,3.46628809211325e-007,1,3.4663253245526e-007,0,1,0,0,1,0,3.46628809211325e-007,1,3.4663253245526e-007,8.15197438441828e-007,1,5.44688589343423e-007,2.03799331188748e-007,1,1.36172133125001e-007,2.03799331188748e-007,1,1.36172133125001e-007,8.15197438441828e-007,1,5.44688589343423e-007,-4.52909944215207e-007,1,-1.87600775802821e-007,0,1,0,0,1,0,-4.52909944215207e-007,1,-1.87600775802821e-007,-5.15702936354501e-007,1,-3.91041794500779e-007,-1.62478997367543e-007,1,-2.77416120297858e-007,-1.62478997367543e-007,1,-2.77416120297858e-007,-5.15702936354501e-007,1,-3.91041794500779e-007,7.50293551732284e-008,1,-7.61808166771516e-007,9.08979488900563e-013,1,-9.61509158514673e-007,-6.76375977448629e-009,1,-4.80754579257336e-007,-6.76375977448629e-009,1,-4.80754579257336e-007,9.08979488900563e-013,1,-9.61509158514673e-007,-7.50286233142106e-008,1,-7.61808507832029e-007,-5.35570201520841e-008,1,-2.69446587708444e-007,-4.68952876531148e-008,1,-2.35760495570503e-007,-4.68952876531148e-008,1,-2.35760495570503e-007,-5.35570201520841e-008,1,-2.69446587708444e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,-2.00592921828502e-007,1,-4.67918823687796e-008,0,1,0,0,1,-0,-4.03435677753805e-007,1,-8.61664233298143e-008,-4.84245560983254e-007,1,-1.02840068905152e-007,-1.56498203285338e-010,1,1.58896062973923e-009,0,1,0,-2.00592921828502e-007,1,-4.67918823687796e-008,0,1,0,7.50743680555388e-008,1,7.6228002399148e-007,5.88863251493876e-008,1,2.68482153842342e-007,0,1,0,-7.50286233142106e-008,1,-7.61808507832029e-007,0,1,0,0,1,0,-5.35570201520841e-008,1,-2.69446587708444e-007,-1,0,2.27373675443232e-013,-1,-0,0,-1,-0,-2.16115449802601e-006,-1,-0,-4.32230899605202e-006,-1,0,2.24322548092459e-006,-1,0,0,-1,0,2.24322548092459e-006,-1,0,4.48645096184919e-006,-0.333607852458954,0.942712008953094,7.2084367275238e-007,-1,-0,0,-1,0,2.27373675443232e-013,-0.333619564771652,0.942707777023315,1.44168734550476e-006,
- -0.330577582120895,0.943216681480408,0.032569769769907,-0.330589354038239,0.943212628364563,0.0325709283351898,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,-0.333608210086823,0.942711889743805,-7.46920704841614e-007,-1,0,-0,-1,0,-2.24322502617724e-006,-0.333619296550751,0.94270795583725,-1.4994295725046e-006,-0,1,0,-0.330577969551086,0.943216621875763,-0.03256980702281,-0.330589056015015,0.943212687969208,-0.0325708985328674,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0.980784833431244,-0,0.19509269297123,0.980784714221954,-0,0.195093333721161,0.995181739330292,-0,0.0980476513504982,0.995178818702698,-0,0.098076805472374,0.980779111385345,-0,0.195121675729752,0.98078179359436,-0,0.195107907056808,0.995181739330292,-0,0.0980476513504982,0.995178818702698,-0,0.0980767831206322,0.910832107067108,-0,0.412777006626129,0.98078179359436,-0,0.195107907056808,0.980779111385345,-0,0.195121675729752,0.935947000980377,-0,0.352140963077545,0.812792479991913,-0,0.582553386688232,0.910832107067108,-0,0.412777006626129,0.935947000980377,-0,0.352140963077545,0.849252998828888,-0,0.527986228466034,0.683529138565063,-0,0.72992330789566,0.812792479991913,-0,0.582553386688232,0.849252998828888,-0,0.527986228466034,0.729932725429535,-0,0.683519065380096,0.527973175048828,-0,0.849261105060577,0.683529138565063,-0,0.72992330789566,0.729932725429535,-0,0.683519065380096,0.582546651363373,-0,0.812797367572784,0.352168798446655,-0,0.935936510562897,0.527973175048828,-0,0.849261105060577,0.582546651363373,-0,0.812797367572784,0.412787705659866,-0,0.910827279090881,0.162803113460541,-0,0.986658573150635,0.352168798446655,-0,0.935936510562897,0.412787705659866,-0,0.910827279090881,0.2271738499403,-0,0.973854243755341,0.0980166718363762,-0,0.995184779167175,0.162803113460541,-0,0.986658573150635,0.2271738499403,-0,0.973854243755341,0.0980159640312195,-0,0.99518483877182,0.227169215679169,0,-0.973855316638947,0.0980166643857956,0,-0.995184779167175,0.0980166494846344,0,-0.995184779167175,0.162803053855896,0,-0.986658692359924,0.412793070077896,0,-0.910824835300446,
- 0.227169215679169,0,-0.973855316638947,0.162803053855896,0,-0.986658692359924,0.352163046598434,0,-0.935938775539398,0.582545399665833,0,-0.812798142433167,0.412793070077896,0,-0.910824835300446,0.352163046598434,0,-0.935938775539398,0.527984023094177,0,-0.849254310131073,0.72993278503418,0,-0.683518946170807,0.582545399665833,0,-0.812798142433167,0.527984023094177,0,-0.849254310131073,0.68352198600769,0,-0.729929983615875,0.849250197410584,0,-0.527990818023682,0.72993278503418,0,-0.683518946170807,0.68352198600769,0,-0.729929983615875,0.812793672084808,0,-0.582551717758179,0.935952425003052,0,-0.352126657962799,0.849250197410584,0,-0.527990818023682,0.812793672084808,0,-0.582551717758179,0.910833120346069,0,-0.41277477145195,0.98078465461731,0,-0.195093810558319,0.935952425003052,0,-0.352126657962799,0.910833120346069,0,-0.41277477145195,0.980784714221954,0,-0.195093467831612,0.995176076889038,0,-0.0981049463152885,0.995178878307343,0,-0.0980764552950859,0.98078465461731,0,-0.195093810558319,0.980784714221954,0,-0.195093467831612,0.910824954509735,-0,0.412792772054672,0.980784714221954,-0,0.195093333721161,0.980784833431244,-0,0.19509269297123,0.935947775840759,-0,0.352138936519623,0.812801837921143,-0,0.582540392875671,0.910824954509735,-0,0.412792772054672,0.935947775840759,-0,0.352138936519623,0.849251985549927,-0,0.527987778186798,0.683519661426544,-0,0.729932129383087,0.812801837921143,-0,0.582540392875671,0.849251985549927,-0,0.527987778186798,0.729934632778168,-0,0.683516979217529,0.527982175350189,-0,0.849255561828613,0.683519661426544,-0,0.729932129383087,0.729934632778168,-0,0.683516979217529,0.582544326782227,-0,0.812798976898193,0.352164328098297,-0,0.93593817949295,0.527982175350189,-0,0.849255561828613,0.582544326782227,-0,0.812798976898193,0.412792146205902,-0,0.910825252532959,0.162802934646606,-0,0.986658692359924,0.352164328098297,-0,0.93593817949295,0.412792146205902,-0,0.910825252532959,0.22716860473156,-0,0.973855495452881,0.098015084862709,-0,0.99518495798111,0.162802934646606,-0,0.986658692359924,
- 0.22716860473156,-0,0.973855495452881,0.0980149284005165,-0,0.99518495798111,-0.22717496752739,0,0.973854064941406,-0.0980166643857956,0,0.995184779167175,-0.0980166494846344,0,0.995184779167175,-0.162808805704117,0,0.986657679080963,-0.412783920764923,0,0.910829067230225,-0.22717496752739,0,0.973854064941406,-0.162808805704117,0,0.986657679080963,-0.352159202098846,0,0.935940206050873,-0.582556247711182,0,0.812790334224701,-0.412783920764923,0,0.910829067230225,-0.352159202098846,0,0.935940206050873,-0.527986764907837,0,0.849252700805664,-0.729922652244568,0,0.683529853820801,-0.582556247711182,0,0.812790334224701,-0.527986764907837,0,0.849252700805664,-0.683520615100861,0,0.729931175708771,-0.849259853363037,0,0.527975142002106,-0.729922652244568,0,0.683529853820801,-0.683520615100861,0,0.729931175708771,-0.812795281410217,0,0.582549512386322,-0.935945749282837,0,0.352144539356232,-0.849259853363037,0,0.527975142002106,-0.812795281410217,0,0.582549512386322,-0.910832762718201,0,0.412775605916977,-0.986653387546539,0,0.162835001945496,-0.935945749282837,0,0.352144539356232,-0.910832762718201,0,0.412775605916977,-0.973852694034576,0,0.227180749177933,-0.995181739330292,0,0.0980476513504982,-0.986653387546539,0,0.162835001945496,-0.973852694034576,0,0.227180749177933,-0.995178878307343,0,0.098076730966568,0.980784833431244,0,0.19509269297123,0.995178878307343,0,0.0980768129229546,0.995181798934937,0,0.0980476588010788,0.980784714221954,0,0.195093333721161,0.980779111385345,0,0.195121675729752,0.995178818702698,0,0.0980767831206322,0.995181739330292,0,0.0980476513504982,0.980781853199005,0,0.19510792195797,0.910832285881042,0,0.412776648998261,0.935947000980377,0,0.352140963077545,0.980779111385345,0,0.195121675729752,0.980781853199005,0,0.19510792195797,0.812792420387268,0,0.582553386688232,0.849253177642822,0,0.527985870838165,0.935947000980377,0,0.352140963077545,0.910832285881042,0,0.412776648998261,0.683528900146484,0,0.72992354631424,0.729932427406311,0,0.683519303798676,0.849253177642822,0,0.527985870838165,0.812792420387268,0,0.582553386688232,
- 0.527973175048828,0,0.849261105060577,0.582546651363373,0,0.812797367572784,0.729932427406311,0,0.683519303798676,0.683528900146484,0,0.72992354631424,0.352168321609497,0,0.935936689376831,0.412787318229675,0,0.910827457904816,0.582546651363373,0,0.812797367572784,0.527973175048828,0,0.849261105060577,0.162803575396538,0,0.98665851354599,0.227173864841461,0,0.973854243755341,0.412787318229675,0,0.910827457904816,0.352168321609497,0,0.935936689376831,0.0980166718363762,0,0.995184779167175,0.0980166643857956,0,0.995184779167175,0.227173864841461,0,0.973854243755341,0.162803575396538,0,0.98665851354599,0.227169215679169,0,-0.973855316638947,0.162803053855896,0,-0.986658692359924,0.0980166494846344,0,-0.995184779167175,0.0980166643857956,0,-0.995184779167175,0.412793070077896,0,-0.910824835300446,0.352163046598434,0,-0.935938775539398,0.162803053855896,0,-0.986658692359924,0.227169215679169,0,-0.973855316638947,0.582545459270477,0,-0.812798202037811,0.527984023094177,0,-0.849254369735718,0.352163046598434,0,-0.935938775539398,0.412793070077896,0,-0.910824835300446,0.729933142662048,0,-0.683518588542938,0.683522284030914,0,-0.729929685592651,0.527984023094177,0,-0.849254369735718,0.582545459270477,0,-0.812798202037811,0.84924989938736,0,-0.52799117565155,0.812793731689453,0,-0.582551658153534,0.683522284030914,0,-0.729929685592651,0.729933142662048,0,-0.683518588542938,0.935952544212341,0,-0.352126210927963,0.910833120346069,0,-0.412774831056595,0.812793731689453,0,-0.582551658153534,0.84924989938736,0,-0.52799117565155,0.98078465461731,0,-0.195093810558319,0.980784714221954,0,-0.195093467831612,0.910833120346069,0,-0.412774831056595,0.935952544212341,0,-0.352126210927963,0.995176017284393,0,-0.0981063395738602,0.980784714221954,0,-0.195093467831612,0.98078465461731,0,-0.195093810558319,0.995178878307343,0,-0.098077155649662,0.910824954509735,0,0.412792772054672,0.935947775840759,0,0.352138936519623,0.980784833431244,0,0.19509269297123,0.980784714221954,0,0.195093333721161,0.812801778316498,0,0.582540333271027,0.849252045154572,0,0.527987837791443,
- 0.935947775840759,0,0.352138936519623,0.910824954509735,0,0.412792772054672,0.683519661426544,0,0.729932129383087,0.729934632778168,0,0.683516979217529,0.849252045154572,0,0.527987837791443,0.812801778316498,0,0.582540333271027,0.527982175350189,0,0.849255561828613,0.582544326782227,0,0.812798976898193,0.729934632778168,0,0.683516979217529,0.683519661426544,0,0.729932129383087,0.352164328098297,0,0.93593817949295,0.412792176008224,0,0.910825312137604,0.582544326782227,0,0.812798976898193,0.527982175350189,0,0.849255561828613,0.162802919745445,0,0.98665863275528,0.22716860473156,0,0.973855495452881,0.412792176008224,0,0.910825312137604,0.352164328098297,0,0.93593817949295,0.098015084862709,0,0.99518495798111,0.0980149284005165,0,0.99518495798111,0.22716860473156,0,0.973855495452881,0.162802919745445,0,0.98665863275528,-0.22717496752739,0,0.973854064941406,-0.162808805704117,0,0.986657679080963,-0.0980166494846344,0,0.995184779167175,-0.0980166643857956,0,0.995184779167175,-0.412783920764923,0,0.910829067230225,-0.352159202098846,0,0.935940206050873,-0.162808805704117,0,0.986657679080963,-0.22717496752739,0,0.973854064941406,-0.582556247711182,0,0.812790334224701,-0.527986764907837,0,0.849252700805664,-0.352159202098846,0,0.935940206050873,-0.412783920764923,0,0.910829067230225,-0.729922652244568,0,0.683529853820801,-0.683520615100861,0,0.729931175708771,-0.527986764907837,0,0.849252700805664,-0.582556247711182,0,0.812790334224701,-0.849259734153748,0,0.52797532081604,-0.812795162200928,0,0.582549631595612,-0.683520615100861,0,0.729931175708771,-0.729922652244568,0,0.683529853820801,-0.935945749282837,0,0.352144300937653,-0.910832762718201,0,0.412775576114655,-0.812795162200928,0,0.582549631595612,-0.849259734153748,0,0.52797532081604,-0.986653327941895,0,0.162834987044334,-0.973852694034576,0,0.227180480957031,-0.910832762718201,0,0.412775576114655,-0.935945749282837,0,0.352144300937653,-0.995181739330292,0,0.0980476513504982,-0.995178878307343,0,0.098076730966568,-0.973852694034576,0,0.227180480957031,-0.986653327941895,0,0.162834987044334,
- 0.000116783317935187,-0.960440158843994,-0.278486639261246,-0.0242873672395945,-0.960741221904755,-0.2763811647892,-3.79096405822565e-007,-1,3.33130074636756e-008,-5.11808480041509e-007,-1,-1.97400710720259e-015,0.0875370651483536,-0,0.996161282062531,0.0875357687473297,-0,0.99616140127182,-0.00042030680924654,2.4445617086144e-008,1,-0.000419710297137499,2.44587550213282e-008,0.999999940395355,-7.93000253906939e-007,1,0,-4.70349760917088e-007,1,4.13314786840147e-008,-0.0261642765253782,0.954286456108093,-0.297746300697327,0.000126302227727138,0.953961849212646,-0.299927979707718,0.00041624391451478,0.0704575106501579,-0.997514665126801,-0.0873193889856339,0.0707049444317818,-0.993668079376221,-0.0870938822627068,-0.100495100021362,-0.991118252277374,-0.0288566760718822,-0.100025005638599,-0.994566380977631,0.175178647041321,0.0213491097092628,0.984305262565613,0.172118321061134,-0.187281548976898,0.967109620571136,0.174874931573868,-0.0625359714031219,0.982602715492249,0.174917101860046,-0.0585677064955235,0.982839703559875,-0.175161570310593,-0.0255080312490463,0.984209299087524,-0.173439681529999,0.142132371664047,0.974534332752228,-0.174877032637596,-0.062343668192625,0.982614576816559,-0.175209850072861,-0.00957146845757961,0.984484612941742,0.0296875163912773,-0.100022487342358,-0.994542181491852,-0.0870942994952202,-0.100495114922524,-0.991118311882019,-0.0242873672395945,-0.960741221904755,-0.2763811647892,0.000116783317935187,-0.960440158843994,-0.278486639261246,0.146549895405769,0.548179686069489,0.823421061038971,0.17485399544239,0.0649319291114807,0.982451021671295,0.172118321061134,-0.187281548976898,0.967109620571136,0.175178647041321,0.0213491097092628,0.984305262565613,0.000126302227727138,0.953961849212646,-0.299927979707718,-0.0261642765253782,0.954286456108093,-0.297746300697327,-0.0873193889856339,0.0707049444317818,-0.993668079376221,0.00041624391451478,0.0704575106501579,-0.997514665126801,-0.14654828608036,-0.548198640346527,0.823408722877502,-0.17485386133194,-0.0649481788277626,0.982449948787689,
- -0.173439681529999,0.142132371664047,0.974534332752228,-0.175161570310593,-0.0255080312490463,0.984209299087524,0.0245264787226915,-0.960711658000946,-0.276462495326996,0.000116783317935187,-0.960440158843994,-0.278486639261246,-5.11808480041509e-007,-1,-1.97400710720259e-015,-7.65353661336121e-007,-1,-6.79005509596209e-008,0.0879232659935951,-0.100404091179371,-0.991054236888886,0.0296875163912773,-0.100022487342358,-0.994542181491852,0.000116783317935187,-0.960440158843994,-0.278486639261246,0.0245264787226915,-0.960711658000946,-0.276462495326996,0.0881481245160103,0.0707597881555557,-0.993591010570526,0.00041624391451478,0.0704575106501579,-0.997514665126801,-0.0288566760718822,-0.100025005638599,-0.994566380977631,0.0879228264093399,-0.100404098629951,-0.99105429649353,0.0264077223837376,0.954305231571198,-0.297664612531662,0.000126302227727138,0.953961849212646,-0.299927979707718,0.00041624391451478,0.0704575106501579,-0.997514665126801,0.0881481245160103,0.0707597881555557,-0.993591010570526,-1.424370566383e-006,1,-1.26365634400827e-007,-7.93000253906939e-007,1,0,0.000126302227727138,0.953961849212646,-0.299927979707718,0.0264077223837376,0.954305231571198,-0.297664612531662,-0.00042030680924654,2.4445617086144e-008,1,-0.0883719325065613,4.89423221949892e-008,0.996087551116943,-0.0883720517158508,4.89423221949892e-008,0.996087551116943,-0.000419710297137499,2.44587550213282e-008,0.999999940395355,0.992412328720093,0.000867900089360774,0.122951328754425,0.992412745952606,0.000193942381883971,0.122951380908489,0.992479503154755,-0.000350483693182468,0.12241031229496,0.992478251457214,0.000505890813656151,0.12242054194212,0.0912358239293098,-0.00279398867860436,-0.995825409889221,0.0912351682782173,-0.00469078775495291,-0.995818376541138,0.0908049270510674,-0.00615662336349487,-0.99584972858429,0.0908401384949684,-0.00326917483471334,-0.99586009979248,-0.169058427214623,0.00220727827399969,0.985603630542755,-0.168293640017509,0.00213932804763317,0.985734581947327,-0.168278232216835,0.00290877954103053,0.985735297203064,
- -0.169058263301849,0.00261656637303531,0.985602676868439,-0.16905851662159,0.00178438960574567,0.985604465007782,-0.169058293104172,0.00234157545492053,0.985603332519531,-0.169058099389076,0.00277276150882244,0.985602200031281,-0.169058129191399,0.00278776185587049,0.985602200031281,0.992411017417908,0.00177345750853419,0.122952058911324,0.992412447929382,0.000658687204122543,0.122952237725258,0.992412686347961,0.00020468961156439,0.122951529920101,0.992412328720093,0.000919294659979641,0.122951485216618,0.0912361443042755,-0.000486717879539356,-0.995829164981842,0.0912353545427322,-0.00417936174198985,-0.995820581912994,0.0912350714206696,-0.00489443494006991,-0.995817363262177,0.0912357717752457,-0.00291861337609589,-0.995825052261353,-0.169058293104172,0.00234157545492053,0.985603332519531,-0.169058471918106,0.00215200125239789,0.985603749752045,-0.169058069586754,0.00303488317877054,0.985601425170898,-0.169058099389076,0.00277276150882244,0.985602200031281,0.992412328720093,0.000919294659979641,0.122951485216618,0.992412686347961,0.00020468961156439,0.122951529920101,0.992412686347961,0.000351321534253657,0.122951619327068,0.992412149906158,0.000995877082459629,0.122951552271843,0.0912357717752457,-0.00291861337609589,-0.995825052261353,0.0912350714206696,-0.00489443494006991,-0.995817363262177,0.0912349298596382,-0.00517343357205391,-0.995815992355347,0.091235876083374,-0.00244726915843785,-0.995826303958893,-0.169058471918106,0.00215200125239789,0.985603749752045,-0.169058173894882,0.00260430434718728,0.985602617263794,-0.169057875871658,0.00322607532143593,0.985600829124451,-0.169058069586754,0.00303488317877054,0.985601425170898,0.992412149906158,0.000995877082459629,0.122951552271843,0.992412686347961,0.000351321534253657,0.122951619327068,0.992412686347961,0.000275306985713542,0.122951626777649,0.992412090301514,0.00106673687696457,0.122951552271843,0.091235876083374,-0.00244726915843785,-0.995826303958893,0.0912349298596382,-0.00517343357205391,-0.995815992355347,0.0912346839904785,-0.00568015966564417,-0.995813250541687,
- 0.0912356898188591,-0.00319987675175071,-0.995824217796326,-0.169058173894882,0.00260430434718728,0.985602617263794,-0.169058233499527,0.00242043170146644,0.985603213310242,-0.169057950377464,0.00301537569612265,0.985601603984833,-0.169057875871658,0.00322607532143593,0.985600829124451,0.992412090301514,0.00106673687696457,0.122951552271843,0.992412686347961,0.000275306985713542,0.122951626777649,0.992412745952606,0.000261540990322828,0.122950628399849,0.992412269115448,0.000996822374872863,0.122950568795204,0.0912356898188591,-0.00319987675175071,-0.995824217796326,0.0912346839904785,-0.00568015966564417,-0.995813250541687,0.09123495221138,-0.0053238719701767,-0.995815217494965,0.091235838830471,-0.00297703803516924,-0.995824873447418,-0.169058233499527,0.00242043170146644,0.985603213310242,-0.169058427214623,0.00220727827399969,0.985603630542755,-0.169058263301849,0.00261656637303531,0.985602676868439,-0.169057950377464,0.00301537569612265,0.985601603984833,0.992412269115448,0.000996822374872863,0.122950568795204,0.992412745952606,0.000261540990322828,0.122950628399849,0.992412745952606,0.000193942381883971,0.122951380908489,0.992412328720093,0.000867900089360774,0.122951328754425,0.091235838830471,-0.00297703803516924,-0.995824873447418,0.09123495221138,-0.0053238719701767,-0.995815217494965,0.0912351682782173,-0.00469078775495291,-0.995818376541138,0.0912358239293098,-0.00279398867860436,-0.995825409889221,-0.501825749874115,-0.864545524120331,0.0270586535334587,-0.364474654197693,-0.931049108505249,0.0174883734434843,-0.620541274547577,-0.782112061977386,0.0568271726369858,-0.626390516757965,-0.777365505695343,0.0577747896313667,-0.0376123003661633,-0.00386385759338737,-0.999284982681274,-0.050484262406826,0.00225736596621573,-0.99872237443924,-0.0712246969342232,-0.0014843160752207,-0.997459292411804,-0.0682783797383308,-0.00595683418214321,-0.997648537158966,0.0682370960712433,0.00930225290358067,0.997625827789307,0.127659246325493,0.0177135933190584,0.991659879684448,0.128227293491364,0.0164631083607674,0.991608202457428,
- 0.0873722285032272,0.000156737878569402,0.996175765991211,-0.168304368853569,0.0015997322043404,0.985733866691589,-0.160744071006775,0.00282043404877186,0.986992120742798,-0.160462021827698,0.00414399849250913,0.987033367156982,-0.16828665137291,0.00248830299824476,0.98573499917984,0.992026209831238,-0.0302225090563297,0.122355043888092,0.99217563867569,-0.0247850343585014,0.122364945709705,0.97023218870163,-0.2132788002491,0.114724613726139,0.971927404403687,-0.205113962292671,0.115262441337109,0.0908728167414665,-0.000532043224666268,-0.995862364768982,0.0908251255750656,-0.00450715189799666,-0.995856642723084,0.0863711833953857,-0.00822491850703955,-0.99622905254364,0.0871056243777275,-0.00388908991590142,-0.996191561222076,-0.160744071006775,0.00282043404877186,0.986992120742798,-0.133330106735229,0.00315929995849729,0.991066694259644,-0.127655848860741,0.0104772569611669,0.991763234138489,-0.160462021827698,0.00414399849250913,0.987033367156982,0.971927404403687,-0.205113962292671,0.115262441337109,0.97023218870163,-0.2132788002491,0.114724613726139,0.734040379524231,-0.675659716129303,0.068327821791172,0.841198742389679,-0.534650802612305,0.080828957259655,0.0871056243777275,-0.00388908991590142,-0.996191561222076,0.0863711833953857,-0.00822491850703955,-0.99622905254364,0.0630769431591034,-0.0104722790420055,-0.997953772544861,0.0684355497360229,-0.00383015535771847,-0.997648239135742,-0.133330106735229,0.00315929995849729,0.991066694259644,-0.0840845108032227,0.00446707010269165,0.996448636054993,-0.0631652325391769,0.0141673106700182,0.997902572154999,-0.127655848860741,0.0104772569611669,0.991763234138489,0.841198742389679,-0.534650802612305,0.080828957259655,0.734040379524231,-0.675659716129303,0.068327821791172,0.347668558359146,-0.937458276748657,0.0172789636999369,0.491868168115616,-0.870233297348022,0.0275625754147768,0.0684355497360229,-0.00383015535771847,-0.997648239135742,0.0630769431591034,-0.0104722790420055,-0.997953772544861,0.0268274154514074,-0.0109570380300283,-0.999580025672913,0.040894590318203,-0.00410033483058214,-0.999155044555664,
- -0.0840845108032227,0.00446707010269165,0.996448636054993,-0.0114003196358681,0.00976538565009832,0.999887347221375,0.0183413047343493,0.0090891495347023,0.999790549278259,-0.0631652325391769,0.0141673106700182,0.997902572154999,0.491868168115616,-0.870233297348022,0.0275625754147768,0.347668558359146,-0.937458276748657,0.0172789636999369,-0.0126863168552518,-0.999919533729553,4.77032008348033e-005,-0.0142726516351104,-0.999898135662079,3.94484086427838e-005,0.040894590318203,-0.00410033483058214,-0.999155044555664,0.0268274154514074,-0.0109570380300283,-0.999580025672913,-0.0156846195459366,-0.00452144490554929,-0.999866843223572,0.00252841343171895,-0.00477984501048923,-0.999985456466675,-0.0114003196358681,0.00976538565009832,0.999887347221375,0.0682370960712433,0.00930225290358067,0.997625827789307,0.0873722285032272,0.000156737878569402,0.996175765991211,0.0183413047343493,0.0090891495347023,0.999790549278259,-0.0142726516351104,-0.999898135662079,3.94484086427838e-005,-0.0126863168552518,-0.999919533729553,4.77032008348033e-005,-0.364474654197693,-0.931049108505249,0.0174883734434843,-0.501825749874115,-0.864545524120331,0.0270586535334587,0.00252841343171895,-0.00477984501048923,-0.999985456466675,-0.0156846195459366,-0.00452144490554929,-0.999866843223572,-0.050484262406826,0.00225736596621573,-0.99872237443924,-0.0376123003661633,-0.00386385759338737,-0.999284982681274,-0.992616832256317,-0.000870870077051222,0.121289253234863,-0.992617249488831,-0.000198224035557359,0.121289305388927,-0.992617309093475,0.000354247342329472,0.121288806200027,-0.992617249488831,-0.000511323218233883,0.121288798749447,-0.0895899757742882,0.00278303073719144,-0.995974898338318,-0.0895893201231956,0.00470255361869931,-0.9959676861763,-0.0895886197686195,0.0062226396985352,-0.995959401130676,-0.0895898714661598,0.0033042305149138,-0.995973289012909,0.167456567287445,-0.00220409990288317,0.985877096652985,0.167456462979317,-0.00216228282079101,0.985877156257629,0.167456120252609,-0.00293999095447361,0.985875189304352,0.167456388473511,-0.00262637669220567,0.985876023769379,
- 0.141414791345596,-0.00487465783953667,0.98993843793869,0.157861158251762,-0.000177212044945918,0.987461268901825,0.158126667141914,-0.00159003585577011,0.987417578697205,0.141597613692284,-0.00539179891347885,0.989909648895264,-0.925742208957672,-0.367148250341415,0.0905731692910194,-0.918690979480743,-0.384751379489899,0.0892933383584023,-0.975616276264191,-0.188506558537483,0.112419798970222,-0.977128922939301,-0.179582014679909,0.113883957266808,-0.0743049159646034,0.00303812325000763,-0.997231006622314,-0.0769614949822426,0.00706207659095526,-0.997009038925171,-0.0863093063235283,0.00503350980579853,-0.996255695819855,-0.0858647227287292,0.00238774437457323,-0.996304035186768,0.157861158251762,-0.000177212044945918,0.987461268901825,0.167415395379066,-0.00212330301292241,0.985884189605713,0.167416155338287,-0.00303928181529045,0.985881686210632,0.158126667141914,-0.00159003585577011,0.987417578697205,-0.977128922939301,-0.179582014679909,0.113883957266808,-0.975616276264191,-0.188506558537483,0.112419798970222,-0.992621719837189,-0.00139544019475579,0.121244445443153,-0.992618560791016,-0.00286693754605949,0.121244132518768,-0.0858647227287292,0.00238774437457323,-0.996304035186768,-0.0863093063235283,0.00503350980579853,-0.996255695819855,-0.0895534455776215,0.00521507672965527,-0.995968341827393,-0.0895499736070633,0.00244648335501552,-0.995979368686676,0.167415395379066,-0.00212330301292241,0.985884189605713,0.167456418275833,-0.00263351341709495,0.985875964164734,0.167456120252609,-0.00324371457099915,0.985874176025391,0.167416155338287,-0.00303928181529045,0.985881686210632,-0.992618560791016,-0.00286693754605949,0.121244132518768,-0.992621719837189,-0.00139544019475579,0.121244445443153,-0.992617189884186,-0.000272173492703587,0.12128933519125,-0.992616713047028,-0.00107296020723879,0.121289275586605,-0.0895499736070633,0.00244648335501552,-0.995979368686676,-0.0895534455776215,0.00521507672965527,-0.995968341827393,-0.0895888432860374,0.00571866845712066,-0.995962500572205,-0.0895898267626762,0.00324510922655463,-0.995973467826843,
- 0.167456418275833,-0.00263351341709495,0.985875964164734,0.1674565076828,-0.00241500721313059,0.985876560211182,0.167456239461899,-0.00300536653958261,0.985874950885773,0.167456120252609,-0.00324371457099915,0.985874176025391,-0.992616713047028,-0.00107296020723879,0.121289275586605,-0.992617189884186,-0.000272173492703587,0.12128933519125,-0.992617130279541,-0.000259866093983874,0.121289387345314,-0.992616772651672,-0.000993588590063155,0.12128934264183,-0.0895898267626762,0.00324510922655463,-0.995973467826843,-0.0895888432860374,0.00571866845712066,-0.995962500572205,-0.0895890295505524,0.00530747650191188,-0.995964765548706,-0.0895898938179016,0.00297199469059706,-0.995974361896515,0.1674565076828,-0.00241500721313059,0.985876560211182,0.167456567287445,-0.00220409990288317,0.985877096652985,0.167456388473511,-0.00262637669220567,0.985876023769379,0.167456239461899,-0.00300536653958261,0.985874950885773,-0.992616772651672,-0.000993588590063155,0.12128934264183,-0.992617130279541,-0.000259866093983874,0.121289387345314,-0.992617249488831,-0.000198224035557359,0.121289305388927,-0.992616832256317,-0.000870870077051222,0.121289253234863,-0.0895898938179016,0.00297199469059706,-0.995974361896515,-0.0895890295505524,0.00530747650191188,-0.995964765548706,-0.0895893201231956,0.00470255361869931,-0.9959676861763,-0.0895899757742882,0.00278303073719144,-0.995974898338318,0.167456597089767,-0.00175117875915021,0.985877931118011,0.167456313967705,-0.00242240796796978,0.985876560211182,0.167455986142159,-0.00310980738140643,0.985874652862549,0.167456224560738,-0.0027358764782548,0.9858757853508,-0.992615759372711,-0.00174046435859054,0.121288619935513,-0.992617130279541,-0.000646433094516397,0.121288783848286,-0.992617309093475,-0.000292754673864692,0.121288828551769,-0.992616713047028,-0.00102586066350341,0.121288754045963,-0.089590348303318,0.000477655965369195,-0.995978593826294,-0.0895896032452583,0.00410155253484845,-0.99597030878067,-0.0895890817046165,0.00538803543895483,-0.995964348316193,-0.0895900055766106,0.00289836805313826,-0.995974481105804,
- 0.167456313967705,-0.00242240796796978,0.985876560211182,0.167456224560738,-0.00280442484654486,0.98587554693222,0.167455658316612,-0.00381337548606098,0.985872268676758,0.167455986142159,-0.00310980738140643,0.985874652862549,-0.992616713047028,-0.00102586066350341,0.121288754045963,-0.992617309093475,-0.000292754673864692,0.121288828551769,-0.992617130279541,0.000458852387964725,0.121289014816284,-0.992617011070251,-0.000662931823171675,0.121288999915123,-0.0895900055766106,0.00289836805313826,-0.995974481105804,-0.0895890817046165,0.00538803543895483,-0.995964348316193,-0.0895875543355942,0.00794660765677691,-0.995947241783142,-0.0895895883440971,0.00421933457255363,-0.995969831943512,-0.991478323936462,-0,-0.130272075533867,-0.991478323936462,-5.17751175266312e-007,-0.130272194743156,-0.991478323936462,-1.03550235053262e-006,-0.130272194743156,-0.991478323936462,-2.58875587633156e-007,-0.130272075533867,-0.991478323936462,3.99548468976718e-007,-0.130272388458252,-0.991478323936462,3.99548468976718e-007,-0.130272388458252,-0.991478264331818,0,-0.130272716283798,-0.991478264331818,3.99548497398428e-007,-0.130272716283798,-0.991478264331818,3.99548497398428e-007,-0.130272716283798,-0.991478264331818,0,-0.130272716283798,-0.991478323936462,3.68592480981533e-007,-0.130272224545479,-0.991478323936462,0,-0.130272224545479,-0.991478323936462,0,-0.130272224545479,-0.991478323936462,3.68592480981533e-007,-0.130272224545479,-0.991478323936462,3.68592509403243e-007,-0.13027249276638,-0.991478323936462,3.68592509403243e-007,-0.13027249276638,-0.991478323936462,3.68592509403243e-007,-0.13027249276638,-0.991478323936462,3.68592509403243e-007,-0.13027249276638,-0.991545259952545,-2.03852760023437e-005,-0.129761844873428,-0.991546392440796,-1.24921243696008e-005,-0.129752978682518,-0.991546392440796,-1.24921243696008e-005,-0.129752978682518,-0.991545259952545,-2.03852760023437e-005,-0.129761844873428,-0.99209988117218,-9.20954771572724e-005,-0.125451043248177,-0.992116987705231,-9.79885080596432e-005,-0.125315725803375,-0.992116987705231,-9.79885080596432e-005,-0.125315725803375,
- -0.99209988117218,-9.20954771572724e-005,-0.125451043248177,-0.994500935077667,-0.000134446381707676,-0.104727536439896,-0.994488894939423,-3.92282854591031e-005,-0.104842655360699,-0.994488894939423,-3.92282854591031e-005,-0.104842655360699,-0.994500935077667,-0.000134446381707676,-0.104727536439896,-0.997898101806641,-9.87060557235964e-005,-0.064803846180439,-0.998027145862579,-5.78349718125537e-005,-0.062784768640995,-0.998027145862579,-5.78349718125537e-005,-0.062784768640995,-0.997898101806641,-9.87060557235964e-005,-0.064803846180439,-0.99999874830246,1.71015926753171e-005,0.00163690850604326,-0.999997556209564,5.75346311961766e-005,0.00221901759505272,-0.999997556209564,5.75346311961766e-005,0.00221901759505272,-0.99999874830246,1.71015926753171e-005,0.00163690850604326,-0.998041033744812,8.78361606737599e-005,0.0625641718506813,-0.998224914073944,5.34336068085395e-005,0.0595576651394367,-0.998224914073944,5.34336068085395e-005,0.0595576651394367,-0.998041033744812,8.78361606737599e-005,0.0625641718506813,-0.994427740573883,8.06631433079019e-005,0.105421259999275,-0.994347155094147,3.36569828505162e-005,0.10617857426405,-0.994347155094147,3.36569828505162e-005,0.10617857426405,-0.994427740573883,8.06631433079019e-005,0.105421259999275,-0.992353320121765,3.58394609065726e-005,0.123429849743843,-0.992485582828522,7.12686305632815e-005,0.122361980378628,-0.992485582828522,7.12686305632815e-005,0.122361980378628,-0.992353320121765,3.58394609065726e-005,0.123429849743843,-0.991700768470764,-8.14450868347194e-006,0.128568112850189,-0.991700768470764,-1.3780817425868e-005,0.128568023443222,-0.991700768470764,-1.3780817425868e-005,0.128568023443222,-0.991700768470764,-8.14450868347194e-006,0.128568112850189,-0.991694629192352,-9.63808255427523e-010,0.128615185618401,-0.991694629192352,-4.0601318573863e-007,0.128615185618401,-0.991694629192352,-4.0601318573863e-007,0.128615185618401,-0.991694629192352,-9.63808255427523e-010,0.128615185618401,-0.991694629192352,3.76064491547368e-007,0.128615170717239,-0.991694629192352,3.85244192102618e-007,0.128615170717239,
- -0.991694629192352,3.85244192102618e-007,0.128615170717239,-0.991694629192352,3.76064491547368e-007,0.128615170717239,-0.991694629192352,-1.95359532995099e-007,0.128615230321884,-0.991694629192352,8.37764417838116e-008,0.128615230321884,-0.991694629192352,8.37764417838116e-008,0.128615230321884,-0.991694629192352,-1.95359532995099e-007,0.128615230321884,-0.991694629192352,-9.56935863882791e-008,0.128615632653236,-0.991694629192352,-2.8708075205941e-007,0.128615632653236,-0.991694629192352,-2.8708075205941e-007,0.128615632653236,-0.991694629192352,-9.56935863882791e-008,0.128615632653236,-0.991694509983063,-2.19997104977665e-007,0.12861579656601,-0.991694509983063,-1.09998552488833e-007,0.12861579656601,-0.991694509983063,-1.09998552488833e-007,0.12861579656601,-0.991694509983063,-2.19997104977665e-007,0.12861579656601,-0.991694509983063,-3.29995657466498e-007,0.12861567735672,-0.991694509983063,-3.29995657466498e-007,0.12861567735672,-0.991478323936462,-0,-0.130272075533867,-0.991478323936462,-2.58875587633156e-007,-0.130272075533867,-0.991478323936462,3.99548468976718e-007,-0.130272388458252,-0.991478323936462,3.99548468976718e-007,-0.130272388458252,-0.990492343902588,0.000710931199137121,0.137566179037094,-0.990492641925812,0.000158865906996652,0.137566208839417,-0.99056088924408,-0.000287094939267263,0.137073144316673,-0.990559875965118,0.000414395122788846,0.13708059489727,0.0895898193120956,-0.00279399962164462,0.995974838733673,0.0895891785621643,-0.00469080591574311,0.995967745780945,0.0892956033349037,-0.00615664757788181,0.99598616361618,0.0892666652798653,-0.00326918810606003,0.996002376079559,-0.167485907673836,0.00220733997412026,-0.985872089862823,-0.166782692074776,0.0021393874194473,-0.985991418361664,-0.166795805096626,0.00290886103175581,-0.98598724603653,-0.167485743761063,0.00261663971468806,-0.985871136188507,-0.167486175894737,0.00179444521199912,-0.985872805118561,-0.16748583316803,0.00235206261277199,-0.98587167263031,-0.167485639452934,0.0027799247764051,-0.985870599746704,-0.167485788464546,0.0028034714050591,-0.985870540142059,
- -0.990491569042206,0.00146085489541292,0.137566119432449,-0.990492403507233,0.000542582070920616,0.137566238641739,-0.990492582321167,0.00016697112005204,0.1375662535429,-0.990492284297943,0.000755047425627708,0.137566223740578,0.0895902812480927,-0.000489448953885585,0.995978653430939,0.08958949893713,-0.00420281151309609,0.995970010757446,0.0895891189575195,-0.00490916706621647,0.995966792106628,0.0895898044109344,-0.00293424725532532,0.99597442150116,-0.16748583316803,0.00235206261277199,-0.98587167263031,-0.167485937476158,0.00215206108987331,-0.985872149467468,-0.167485564947128,0.00303496862761676,-0.985869944095612,-0.167485639452934,0.0027799247764051,-0.985870599746704,-0.990492284297943,0.000755047425627708,0.137566223740578,-0.990492582321167,0.00016697112005204,0.1375662535429,-0.990492582321167,0.000287781498627737,0.1375662535429,-0.990492224693298,0.00081576214870438,0.137566208839417,0.0895898044109344,-0.00293424725532532,0.99597442150116,0.0895891189575195,-0.00490916706621647,0.995966792106628,0.0895889028906822,-0.00517345312982798,0.995965421199799,0.0895898267626762,-0.00244727847166359,0.995975732803345,-0.167485937476158,0.00215206108987331,-0.985872149467468,-0.16748583316803,0.00260437722317874,-0.985871076583862,-0.167485535144806,0.00322616589255631,-0.985869288444519,-0.167485564947128,0.00303496862761676,-0.985869944095612,-0.990492224693298,0.00081576214870438,0.137566208839417,-0.990492582321167,0.000287781498627737,0.1375662535429,-0.990492641925812,0.000225514930207282,0.137565940618515,-0.990492224693298,0.000873806420713663,0.13756588101387,0.0895898267626762,-0.00244727847166359,0.995975732803345,0.0895889028906822,-0.00517345312982798,0.995965421199799,0.0895886942744255,-0.00568018108606339,0.995962738990784,0.0895896777510643,-0.00319988955743611,0.995973706245422,-0.16748583316803,0.00260437722317874,-0.985871076583862,-0.167485728859901,0.00242049945518374,-0.985871613025665,-0.167485460639,0.00301545951515436,-0.985870003700256,-0.167485535144806,0.00322616589255631,-0.985869288444519,
- -0.990492224693298,0.000873806420713663,0.13756588101387,-0.990492641925812,0.000225514930207282,0.137565940618515,-0.990492641925812,0.000214238636544906,0.137566030025482,-0.990492284297943,0.000816536601632833,0.137565985321999,0.0895896777510643,-0.00319988955743611,0.995973706245422,0.0895886942744255,-0.00568018108606339,0.995962738990784,0.0895888730883598,-0.00532389245927334,0.995964646339417,0.0895897448062897,-0.00297704944387078,0.99597430229187,-0.167485728859901,0.00242049945518374,-0.985871613025665,-0.167485907673836,0.00220733997412026,-0.985872089862823,-0.167485743761063,0.00261663971468806,-0.985871136188507,-0.167485460639,0.00301545951515436,-0.985870003700256,-0.990492284297943,0.000816536601632833,0.137565985321999,-0.990492641925812,0.000214238636544906,0.137566030025482,-0.990492641925812,0.000158865906996652,0.137566208839417,-0.990492343902588,0.000710931199137121,0.137566179037094,0.0895897448062897,-0.00297704944387078,0.99597430229187,0.0895888730883598,-0.00532389245927334,0.995964646339417,0.0895891785621643,-0.00469080591574311,0.995967745780945,0.0895898193120956,-0.00279399962164462,0.995974838733673,0.427772879600525,-0.903104960918427,0.0375763177871704,0.569482743740082,-0.820700883865356,0.0462542921304703,0.687011957168579,-0.722022294998169,0.0818445086479187,0.692718088626862,-0.716684579849243,0.0806532576680183,-0.0316380895674229,0.0083185313269496,0.999464869499207,-0.0381842218339443,0.00492438254877925,0.999258577823639,-0.0617879889905453,0.0203269813209772,0.99788236618042,-0.0645820498466492,0.01554049924016,0.997791409492493,0.0668174996972084,-0.0117366891354322,-0.997696161270142,0.128585368394852,-0.0208360385149717,-0.991479635238647,0.12805138528347,-0.0221759919077158,-0.991519629955292,0.0844617411494255,-0.00281006097793579,-0.996422827243805,-0.166772827506065,0.00156266381964087,-0.985994160175323,-0.159908577799797,0.00145898945629597,-0.987130761146545,-0.159840852022171,0.000973593443632126,-0.987142324447632,-0.166787967085838,0.00244773365557194,-0.98598974943161,
- -0.990257203578949,-0.0247244518250227,0.137037768959999,-0.990358114242554,-0.0202384404838085,0.137044325470924,-0.982361912727356,-0.133095517754555,0.131342053413391,-0.964596748352051,-0.230103820562363,0.128862380981445,0.0892384052276611,-0.000519254594109952,0.996010184288025,0.0892790406942368,-0.00449405331164598,0.995996594429016,0.0869481042027473,-0.00570311769843102,0.996196568012238,0.0864947512745857,-0.00267821550369263,0.996248781681061,-0.159908577799797,0.00145898945629597,-0.987130761146545,-0.133836537599564,0.000150356441736221,-0.991003394126892,-0.129801690578461,-0.00640282779932022,-0.991519331932068,-0.159840852022171,0.000973593443632126,-0.987142324447632,-0.964596748352051,-0.230103820562363,0.128862380981445,-0.982361912727356,-0.133095517754555,0.131342053413391,-0.877428889274597,-0.469281762838364,0.0994650050997734,-0.797185778617859,-0.597110092639923,0.0891873762011528,0.0864947512745857,-0.00267821550369263,0.996248781681061,0.0869481042027473,-0.00570311769843102,0.996196568012238,0.0714146494865417,-0.00231194496154785,0.997444033622742,0.0720032528042793,-0.00324988318607211,0.997399091720581,-0.133836537599564,0.000150356441736221,-0.991003394126892,-0.0857957229018211,-0.00303607434034348,-0.996308147907257,-0.0664098560810089,-0.0135596487671137,-0.997700333595276,-0.129801690578461,-0.00640282779932022,-0.991519331932068,-0.797185778617859,-0.597110092639923,0.0891873762011528,-0.877428889274597,-0.469281762838364,0.0994650050997734,-0.560527443885803,-0.826892971992493,0.0453534312546253,-0.404809057712555,-0.913716375827789,0.0353849455714226,0.0720032528042793,-0.00324988318607211,0.997399091720581,0.0714146494865417,-0.00231194496154785,0.997444033622742,0.0395455099642277,0.00442327186465263,0.999208033084869,0.0468631908297539,0.000344809144735336,0.998901307582855,-0.0857957229018211,-0.00303607434034348,-0.996308147907257,-0.0134495459496975,-0.0110667450353503,-0.999848306179047,0.0157405957579613,-0.0103212045505643,-0.999822914600372,-0.0664098560810089,-0.0135596487671137,-0.997700333595276,
- -0.404809057712555,-0.913716375827789,0.0353849455714226,-0.560527443885803,-0.826892971992493,0.0453534312546253,0.0169893074780703,-0.999749600887299,0.014565072953701,0.0188966002315283,-0.999715626239777,0.014553283341229,0.0468631908297539,0.000344809144735336,0.998901307582855,0.0395455099642277,0.00442327186465263,0.999208033084869,-0.00156334962230176,0.00532738072797656,0.999984622001648,0.00952110812067986,0.00550323398783803,0.999939620494843,-0.0134495459496975,-0.0110667450353503,-0.999848306179047,0.0668174996972084,-0.0117366891354322,-0.997696161270142,0.0844617411494255,-0.00281006097793579,-0.996422827243805,0.0157405957579613,-0.0103212045505643,-0.999822914600372,0.0188966002315283,-0.999715626239777,0.014553283341229,0.0169893074780703,-0.999749600887299,0.014565072953701,0.569482743740082,-0.820700883865356,0.0462542921304703,0.427772879600525,-0.903104960918427,0.0375763177871704,0.00952110812067986,0.00550323398783803,0.999939620494843,-0.00156334962230176,0.00532738072797656,0.999984622001648,-0.0381842218339443,0.00492438254877925,0.999258577823639,-0.0316380895674229,0.0083185313269496,0.999464869499207,0.990261137485504,-0.000713379762601107,0.13922044634819,0.990261435508728,-0.000162376803928055,0.139220476150513,0.990261435508728,0.000290184339974076,0.139220491051674,0.990261316299438,-0.000418854237068444,0.139220476150513,-0.0912682861089706,0.00278303981758654,0.995822489261627,-0.0912676230072975,0.00470256898552179,0.995815277099609,-0.0912668853998184,0.00622266065329313,0.995807111263275,-0.0912681519985199,0.00330424122512341,0.995820879936218,0.169054120779037,-0.00220413669012487,-0.985604405403137,0.169054239988327,-0.00216231890954077,-0.985604405403137,0.169053912162781,-0.00294004008173943,-0.98560243844986,0.169053941965103,-0.00262642046436667,-0.985603332519531,0.141177639365196,0.00225873664021492,-0.989981710910797,0.158841997385025,-0.00308712245896459,-0.987299203872681,0.158880680799484,-0.00302262092009187,-0.987293183803558,0.141042247414589,0.0017553421203047,-0.99000209569931,
- 0.950124144554138,-0.292190998792648,0.109034471213818,0.944930553436279,-0.307781219482422,0.111251749098301,0.985022485256195,-0.110786654055119,0.132125303149223,0.96923154592514,-0.208422586321831,0.130959421396255,-0.0748688876628876,-0.00163576728664339,0.997192025184631,-0.0724514573812485,0.0024908350314945,0.997368812561035,-0.0861430242657661,0.00636393716558814,0.996262490749359,-0.0863337591290474,0.00504610454663634,0.996253609657288,0.158841997385025,-0.00308712245896459,-0.987299203872681,0.169007554650307,-0.00212319497950375,-0.985612571239471,0.169006109237671,-0.00303911278024316,-0.985610365867615,0.158880680799484,-0.00302262092009187,-0.987293183803558,0.96923154592514,-0.208422586321831,0.130959421396255,0.985022485256195,-0.110786654055119,0.132125303149223,0.990267336368561,-0.00112820137292147,0.139174237847328,0.990265250205994,-0.00232626311480999,0.139174044132233,-0.0863337591290474,0.00504610454663634,0.996253609657288,-0.0861430242657661,0.00636393716558814,0.996262490749359,-0.0912073627114296,0.00521487230435014,0.995818316936493,-0.0912122055888176,0.00244512571953237,0.99582850933075,0.169007554650307,-0.00212319497950375,-0.985612571239471,0.169053971767426,-0.00263355788774788,-0.985603392124176,0.16905365884304,-0.0032437692862004,-0.985601544380188,0.169006109237671,-0.00303911278024316,-0.985610365867615,0.990265250205994,-0.00232626311480999,0.139174044132233,0.990267336368561,-0.00112820137292147,0.139174237847328,0.990261375904083,-0.000222953109187074,0.139220610260963,0.990261077880859,-0.000878923630807549,0.13922056555748,-0.0912122055888176,0.00244512571953237,0.99582850933075,-0.0912073627114296,0.00521487230435014,0.995818316936493,-0.0912671536207199,0.00571868708357215,0.995810031890869,-0.0912681668996811,0.00324511993676424,0.995821118354797,0.169053971767426,-0.00263355788774788,-0.985603392124176,0.16905403137207,-0.0024150472600013,-0.985603928565979,0.169053763151169,-0.00300541729666293,-0.98560231924057,0.16905365884304,-0.0032437692862004,-0.985601544380188,
- 0.990261077880859,-0.000878923630807549,0.13922056555748,0.990261375904083,-0.000222953109187074,0.139220610260963,0.990261435508728,-0.000212871338590048,0.13922044634819,0.990261197090149,-0.000813905848190188,0.139220416545868,-0.0912681668996811,0.00324511993676424,0.995821118354797,-0.0912671536207199,0.00571868708357215,0.995810031890869,-0.0912673473358154,0.00530749326571822,0.995812296867371,-0.0912682265043259,0.0029720040038228,0.995821893215179,0.16905403137207,-0.0024150472600013,-0.985603928565979,0.169054120779037,-0.00220413669012487,-0.985604405403137,0.169053941965103,-0.00262642046436667,-0.985603332519531,0.169053763151169,-0.00300541729666293,-0.98560231924057,0.990261197090149,-0.000813905848190188,0.139220416545868,0.990261435508728,-0.000212871338590048,0.13922044634819,0.990261435508728,-0.000162376803928055,0.139220476150513,0.990261137485504,-0.000713379762601107,0.13922044634819,-0.0912682265043259,0.0029720040038228,0.995821893215179,-0.0912673473358154,0.00530749326571822,0.995812296867371,-0.0912676230072975,0.00470256898552179,0.995815277099609,-0.0912682861089706,0.00278303981758654,0.995822489261627,0.169054388999939,-0.00175120797939599,-0.985605180263519,0.169054120779037,-0.00242244848050177,-0.985603809356689,0.169053837656975,-0.00310985976830125,-0.985602021217346,0.169054001569748,-0.00273592234589159,-0.985603034496307,0.990260422229767,-0.00142571493051946,0.139220356941223,0.990261256694794,-0.000529530516359955,0.139220461249352,0.990261495113373,-0.000239812390645966,0.139220297336578,0.990261077880859,-0.000840341672301292,0.139220237731934,-0.0912686437368393,0.0004776575951837,0.995826303958893,-0.0912678837776184,0.00410156650468707,0.995818018913269,-0.0912672877311707,0.00538805220276117,0.995811879634857,-0.0912682339549065,0.00289837783202529,0.995822131633759,0.169054120779037,-0.00242244848050177,-0.985603809356689,0.16905389726162,-0.00280447164550424,-0.985602855682373,0.169053345918655,-0.00381343928165734,-0.98559957742691,0.169053837656975,-0.00310985976830125,-0.985602021217346,
- 0.990261077880859,-0.000840341672301292,0.139220237731934,0.990261495113373,-0.000239812390645966,0.139220297336578,0.990261495113373,0.00037587239057757,0.139220222830772,0.990261316299438,-0.000543045636732131,0.139220207929611,-0.0912682339549065,0.00289837783202529,0.995822131633759,-0.0912672877311707,0.00538805220276117,0.995811879634857,-0.0912657231092453,0.00794663373380899,0.995794951915741,-0.0912677943706512,0.00421934854239225,0.995817542076111,0.991694927215576,0,-0.128612607717514,0.991694867610931,-5.03954254327255e-007,-0.128612890839577,0.991694867610931,-1.00790850865451e-006,-0.128612890839577,0.991694927215576,-2.51977155585337e-007,-0.128612607717514,0.991694927215576,3.86732921242583e-007,-0.128612786531448,0.991694927215576,3.86732921242583e-007,-0.128612786531448,0.991694927215576,0,-0.128613010048866,0.991694927215576,3.86732921242583e-007,-0.128613010048866,0.991694927215576,3.86732921242583e-007,-0.128613010048866,0.991694927215576,0,-0.128613010048866,0.991694986820221,3.5676981724464e-007,-0.128612726926804,0.991694986820221,0,-0.128612726926804,0.991694986820221,0,-0.128612726926804,0.991694986820221,3.5676981724464e-007,-0.128612726926804,0.991694867610931,3.5676981724464e-007,-0.128612890839577,0.991694867610931,3.5676981724464e-007,-0.128612890839577,0.991694867610931,3.5676981724464e-007,-0.128612890839577,0.991694867610931,3.5676981724464e-007,-0.128612890839577,0.991760849952698,-3.39805374096613e-005,-0.128103256225586,0.991761922836304,-4.07860898121726e-005,-0.128094702959061,0.991761922836304,-4.07860898121726e-005,-0.128094702959061,0.991760849952698,-3.39805374096613e-005,-0.128103256225586,0.992312669754028,-3.08763592329342e-005,-0.123756967484951,0.992321372032166,-7.43737036827952e-005,-0.123686440289021,0.992321372032166,-7.43737036827952e-005,-0.123686440289021,0.992312669754028,-3.08763592329342e-005,-0.123756967484951,0.994707107543945,-0.000153742250404321,-0.102750927209854,0.994638442993164,-0.00017773057334125,-0.103414043784142,0.994638442993164,-0.00017773057334125,-0.103414043784142,
- 0.994707107543945,-0.000153742250404321,-0.102750927209854,0.99803900718689,-0.000360143632860854,-0.0625951513648033,0.998106062412262,3.37189703714103e-005,-0.0615172870457172,0.998106062412262,3.37189703714103e-005,-0.0615172870457172,0.99803900718689,-0.000360143632860854,-0.0625951513648033,0.999994695186615,2.67708983301418e-005,0.00328836054541171,0.999992370605469,7.27981678210199e-005,0.00389892258681357,0.999992370605469,7.27981678210199e-005,0.00389892258681357,0.999994695186615,2.67708983301418e-005,0.00328836054541171,0.997967600822449,0.000121934273920488,0.0637233108282089,0.998100936412811,8.35979881230742e-005,0.0615998990833759,0.998100936412811,8.35979881230742e-005,0.0615998990833759,0.997967600822449,0.000121934273920488,0.0637233108282089,0.994283318519592,0.00012651874567382,0.106774620711803,0.994144380092621,6.32865921943448e-005,0.108060598373413,0.994144380092621,6.32865921943448e-005,0.108060598373413,0.994283318519592,0.00012651874567382,0.106774620711803,0.992148578166962,8.59419960761443e-005,0.125064730644226,0.992277562618256,7.34430141164921e-005,0.124037742614746,0.992277562618256,7.34430141164921e-005,0.124037742614746,0.992148578166962,8.59419960761443e-005,0.125064730644226,0.991484344005585,1.00666393336724e-005,0.130225896835327,0.991484403610229,2.02823721338063e-005,0.130225852131844,0.991484403610229,2.02823721338063e-005,0.130225852131844,0.991484344005585,1.00666393336724e-005,0.130225896835327,0.991478443145752,-9.32848465140523e-010,0.130271330475807,0.991478443145752,-3.92968672713323e-007,0.130271330475807,0.991478443145752,-3.92968672713323e-007,0.130271330475807,0.991478443145752,-9.32848465140523e-010,0.130271330475807,0.991478502750397,3.63982280759956e-007,0.130270943045616,0.991478502750397,3.72867020814738e-007,0.130270943045616,0.991478502750397,3.72867020814738e-007,0.130270943045616,0.991478502750397,3.63982280759956e-007,0.130270943045616,0.991478443145752,-1.89082967949616e-007,0.130270913243294,0.991478443145752,8.10848632681882e-008,0.130270913243294,0.991478443145752,8.10848632681882e-008,0.130270913243294,
- 0.991478443145752,-1.89082967949616e-007,0.130270913243294,0.991478443145752,-9.26191177086366e-008,0.130271524190903,0.991478443145752,-2.77857395758474e-007,0.130271524190903,0.991478443145752,-2.77857395758474e-007,0.130271524190903,0.991478443145752,-9.26191177086366e-008,0.130271524190903,0.991478383541107,-2.12928995324546e-007,0.130271315574646,0.991478383541107,-1.06464497662273e-007,0.130271315574646,0.991478383541107,-1.06464497662273e-007,0.130271315574646,0.991478383541107,-2.12928995324546e-007,0.130271315574646,0.991478502750397,-3.19393478775964e-007,0.130270794034004,0.991478502750397,-3.19393478775964e-007,0.130270794034004,0.991694927215576,0,-0.128612607717514,0.991694927215576,-2.51977155585337e-007,-0.128612607717514,0.991694927215576,3.86732921242583e-007,-0.128612786531448,0.991694927215576,3.86732921242583e-007,-0.128612786531448
- }
- BinormalsW: *2536 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *7608 {
- a: -0.195094019174576,0,-0.98078453540802,-0.382668972015381,0,-0.923885524272919,-0.382668972015381,0,-0.923885524272919,-0.195094034075737,0,-0.980784595012665,-0.382668972015381,0,-0.923885524272919,-0.555559992790222,0,-0.831476449966431,-0.555559992790222,0,-0.83147656917572,-0.382668972015381,0,-0.923885524272919,-0.555559992790222,0,-0.831476449966431,-0.707109570503235,0,-0.707104086875916,-0.707109570503235,0,-0.707104086875916,-0.555559992790222,0,-0.83147656917572,-0.707109570503235,0,-0.707104086875916,-0.831474244594574,0,-0.555563449859619,-0.831474184989929,0,-0.555563390254974,-0.707109570503235,0,-0.707104086875916,-0.831474244594574,0,-0.555563449859619,-0.923878312110901,0,-0.382686465978622,-0.923878312110901,0,-0.382686465978622,-0.831474184989929,0,-0.555563390254974,-0.923878312110901,0,-0.382686465978622,-0.980785071849823,0,-0.195091173052788,-0.980785131454468,0,-0.195091173052788,-0.923878312110901,0,-0.382686465978622,-0.980785071849823,0,-0.195091173052788,-1,0,0,-1,0,0,-0.980785131454468,0,-0.195091173052788,-1,0,0,-0.980785310268402,0,0.195090502500534,-0.980785250663757,0,0.19509045779705,-1,0,0,-0.980785310268402,0,0.195090502500534,-0.923878848552704,0,0.382685154676437,-0.923878848552704,-4.13059638049162e-007,0.38268518447876,-0.980785250663757,0,0.19509045779705,-0.923878848552704,0,0.382685154676437,-0.831474602222443,-6.1958814967511e-007,0.555562973022461,-0.831474542617798,-1.23917891414749e-006,0.555562973022461,-0.923878848552704,-4.13059638049162e-007,0.38268518447876,-0.831474542617798,0,0.555562913417816,-0.707110047340393,-8.26100119866169e-007,0.707103610038757,-0.707110047340393,-2.06522713597224e-007,0.707103610038757,-0.831474542617798,-1.65219387326943e-006,0.555562913417816,-0.707110047340393,-8.26100119866169e-007,0.707103610038757,-0.555560410022736,0,0.831476211547852,-0.555560350418091,0,0.831476211547852,-0.707110047340393,-2.06522713597224e-007,0.707103610038757,-0.555560410022736,0,0.831476211547852,-0.382668972015381,0,0.923885643482208,
- -0.382668972015381,0,0.923885643482208,-0.555560350418091,0,0.831476211547852,-0.382668972015381,0,0.923885643482208,-0.195093721151352,0,0.980784595012665,-0.195093721151352,0,0.980784595012665,-0.382668972015381,0,0.923885643482208,-0.195093721151352,0,0.980784595012665,0,0,1,0,0,1,-0.195093721151352,0,0.980784595012665,0,0,1,0.195093721151352,0,0.980784595012665,0.195093721151352,0,0.980784595012665,0,0,1,0.195093721151352,0,0.980784595012665,0.382668972015381,0,0.923885643482208,0.382668972015381,0,0.923885643482208,0.195093721151352,0,0.980784595012665,0.382668972015381,0,0.923885643482208,0.555559635162354,0,0.831476807594299,0.555559635162354,0,0.83147668838501,0.382668972015381,0,0.923885643482208,0.555559635162354,0,0.831476807594299,0.707109153270721,0,0.707104384899139,0.707109153270721,0,0.707104384899139,0.555559635162354,0,0.83147668838501,0.707109153270721,0,0.707104384899139,0.831474244594574,0,0.555563449859619,0.831474184989929,-2.06524703116884e-007,0.555563390254974,0.707109153270721,0,0.707104384899139,0.831474244594574,0,0.555563449859619,0.923878312110901,0,0.382686465978622,0.923878312110901,0,0.382686465978622,0.831474184989929,-2.06524703116884e-007,0.555563390254974,0.923878312110901,0,0.382686465978622,0.980785071849823,0,0.195091173052788,0.980785071849823,1.7702117816043e-007,0.195091158151627,0.923878312110901,0,0.382686465978622,0.980785071849823,0,0.195091173052788,1,0,7.66032258070481e-007,1,-1.05813422260348e-011,7.660323149139e-007,0.980785071849823,1.7702117816043e-007,0.195091158151627,1,0,7.66032258070481e-007,0.980785310268402,0,-0.195090502500534,0.980785250663757,-2.46330707118927e-016,-0.195090487599373,1,-1.05813422260348e-011,7.660323149139e-007,0.980785310268402,0,-0.195090502500534,0.923878312110901,0,-0.382686465978622,0.923878312110901,0,-0.382686465978622,0.980785250663757,-2.46330707118927e-016,-0.195090487599373,0.923878312110901,0,-0.382686465978622,0.831474423408508,8.42685565771717e-009,-0.555563151836395,0.831474483013153,1.31894508877996e-013,-0.55556309223175,
- 0.923878312110901,0,-0.382686465978622,0.831474423408508,8.42685565771717e-009,-0.555563151836395,0.707109570503235,1.58636570546378e-008,-0.707104027271271,0.70710963010788,-3.67409824352655e-013,-0.707103967666626,0.831474483013153,1.31894508877996e-013,-0.55556309223175,0.707109570503235,1.58636570546378e-008,-0.707104027271271,0.555559873580933,7.43372741141002e-009,-0.83147656917572,0.555559754371643,8.88178419700125e-015,-0.831476628780365,0.70710963010788,-3.67409824352655e-013,-0.707103967666626,0.555559873580933,7.43372741141002e-009,-0.83147656917572,0.382668614387512,0,-0.923885703086853,0.382668614387512,0,-0.923885703086853,0.555559754371643,8.88178419700125e-015,-0.831476628780365,0.382668614387512,0,-0.923885703086853,0.195093557238579,0,-0.98078465461731,0.19509357213974,0,-0.980784714221954,0.382668614387512,0,-0.923885703086853,0.195093557238579,0,-0.98078465461731,-5.10693887179059e-009,0,-1,-5.10693887179059e-009,0,-1,0.19509357213974,0,-0.980784714221954,-5.10693887179059e-009,0,-1,-0.195094019174576,0,-0.98078453540802,-0.195094034075737,0,-0.980784595012665,-5.10693887179059e-009,0,-1,-0.195094034075737,0,-0.980784595012665,-0.382668972015381,0,-0.923885524272919,-0.382668972015381,0,-0.923885524272919,-0.195094004273415,0,-0.98078453540802,-0.382668972015381,0,-0.923885524272919,-0.555559933185577,0,-0.83147656917572,-0.555559992790222,0,-0.831476449966431,-0.382668972015381,0,-0.923885524272919,-0.555559933185577,0,-0.83147656917572,-0.707109570503235,0,-0.707104086875916,-0.707109570503235,0,-0.707104086875916,-0.555559992790222,0,-0.831476449966431,-0.707109570503235,0,-0.707104086875916,-0.831474184989929,0,-0.555563390254974,-0.831474244594574,0,-0.555563449859619,-0.707109570503235,0,-0.707104086875916,-0.831474184989929,0,-0.555563390254974,-0.923878312110901,0,-0.382686465978622,-0.923878312110901,0,-0.382686465978622,-0.831474244594574,0,-0.555563449859619,-0.923878312110901,0,-0.382686465978622,-0.980785131454468,0,-0.195091173052788,-0.980785071849823,0,-0.195091173052788,-0.923878312110901,0,-0.382686465978622,
- -0.980785131454468,0,-0.195091173052788,-1,0,0,-1,0,0,-0.980785071849823,0,-0.195091173052788,-1,0,0,-0.980785250663757,0,0.19509045779705,-0.980785310268402,0,0.195090502500534,-1,0,0,-0.980785250663757,0,0.19509045779705,-0.923878848552704,6.19591048689472e-007,0.38268518447876,-0.923878848552704,8.26120356123283e-007,0.382685124874115,-0.980785310268402,0,0.195090502500534,-0.923878848552704,6.19591048689472e-007,0.38268518447876,-0.831474542617798,1.65224071224657e-006,0.555562973022461,-0.831474602222443,-0,0.555562973022461,-0.923878848552704,8.26120356123283e-007,0.382685124874115,-0.831474542617798,-1.23914628602506e-006,0.555562913417816,-0.707110047340393,-8.2610057461352e-007,0.707103610038757,-0.707110047340393,0,0.707103610038757,-0.831474542617798,-1.23914708183293e-006,0.555562913417816,-0.707110047340393,-8.2610057461352e-007,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.555560350418091,0,0.831476211547852,-0.707110047340393,0,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.382668972015381,0,0.923885643482208,-0.382668972015381,0,0.923885643482208,-0.555560350418091,0,0.831476211547852,-0.382668972015381,0,0.923885643482208,-0.195093721151352,0,0.980784595012665,-0.195093721151352,0,0.980784595012665,-0.382668972015381,0,0.923885643482208,-0.195093721151352,0,0.980784595012665,0,0,1,0,0,1,-0.195093721151352,0,0.980784595012665,0,0,1,0.195093721151352,0,0.980784595012665,0.195093721151352,0,0.980784595012665,0,0,1,0.195093721151352,0,0.980784595012665,0.382668972015381,0,0.923885643482208,0.382668942213058,0,0.923885643482208,0.195093721151352,0,0.980784595012665,0.382668972015381,0,0.923885643482208,0.555559635162354,0,0.83147668838501,0.555559635162354,0,0.831476807594299,0.382668942213058,0,0.923885643482208,0.555559635162354,0,0.83147668838501,0.707109153270721,-1.03262630091194e-006,0.707104384899139,0.707109153270721,-1.65220353665063e-006,0.707104384899139,0.555559635162354,0,0.831476807594299,0.707109153270721,-1.03262630091194e-006,0.707104384899139,0.831474184989929,-1.44567786719563e-006,0.555563390254974,
- 0.831474244594574,-1.23915890526405e-006,0.555563449859619,0.707109153270721,-1.65220353665063e-006,0.707104384899139,0.831474184989929,-1.44567786719563e-006,0.555563390254974,0.923878312110901,2.89901436190121e-012,0.382686465978622,0.923878312110901,6.2148806066753e-012,0.382686465978622,0.831474244594574,-1.23915890526405e-006,0.555563449859619,0.923878312110901,2.89901436190121e-012,0.382686465978622,0.980785131454468,2.06532916990909e-007,0.195091173052788,0.980785071849823,4.13065833981818e-007,0.195091173052788,0.923878312110901,6.2148806066753e-012,0.382686465978622,0.980785131454468,2.06532916990909e-007,0.195091173052788,1,0,7.66032258070481e-007,1,0,7.660323149139e-007,0.980785071849823,4.13065833981818e-007,0.195091173052788,1,0,7.66032258070481e-007,0.980785250663757,0,-0.195090487599373,0.980785310268402,0,-0.195090502500534,1,0,7.660323149139e-007,0.980785250663757,0,-0.195090487599373,0.923878312110901,0,-0.382686465978622,0.923878312110901,0,-0.382686465978622,0.980785310268402,0,-0.195090502500534,0.923878312110901,0,-0.382686465978622,0.831474184989929,0,-0.555563390254974,0.831474244594574,0,-0.555563449859619,0.923878312110901,0,-0.382686465978622,0.831474184989929,0,-0.555563390254974,0.70710963010788,0,-0.707103967666626,0.70710963010788,0,-0.707103967666626,0.831474244594574,0,-0.555563449859619,0.70710963010788,0,-0.707103967666626,0.555560111999512,0,-0.831476449966431,0.555559992790222,0,-0.831476449966431,0.70710963010788,0,-0.707103967666626,0.555560111999512,0,-0.831476449966431,0.382668614387512,0,-0.923885703086853,0.382668614387512,0,-0.923885703086853,0.555559992790222,0,-0.831476449966431,0.382668614387512,0,-0.923885703086853,0.19509357213974,0,-0.980784714221954,0.195093557238579,0,-0.98078465461731,0.382668614387512,0,-0.923885703086853,0.19509357213974,0,-0.980784714221954,-5.10693887179059e-009,0,-1,-5.10693887179059e-009,0,-1,0.195093557238579,0,-0.98078465461731,-5.10693887179059e-009,0,-1,-0.195094034075737,0,-0.980784595012665,-0.195094004273415,0,-0.98078453540802,-5.10693887179059e-009,0,-1,
- -0.195094034075737,0,-0.980784595012665,-0.382668972015381,0,-0.923885524272919,-0.382668972015381,0,-0.923885524272919,-0.195094034075737,0,-0.980784595012665,-0.382668972015381,0,-0.923885524272919,-0.555559933185577,0,-0.83147656917572,-0.555559933185577,0,-0.83147656917572,-0.382668972015381,0,-0.923885524272919,-0.555559933185577,0,-0.83147656917572,-0.707109570503235,0,-0.707104086875916,-0.707109570503235,0,-0.707104086875916,-0.555559933185577,0,-0.83147656917572,-0.707109570503235,0,-0.707104086875916,-0.831474184989929,0,-0.555563390254974,-0.831474184989929,0,-0.555563390254974,-0.707109570503235,0,-0.707104086875916,-0.831474184989929,0,-0.555563390254974,-0.923878312110901,0,-0.382686465978622,-0.923878312110901,0,-0.382686465978622,-0.831474184989929,0,-0.555563390254974,-0.923878312110901,0,-0.382686465978622,-0.980785131454468,0,-0.195091173052788,-0.980785131454468,0,-0.195091173052788,-0.923878312110901,0,-0.382686465978622,-0.980785131454468,0,-0.195091173052788,-1,0,0,-1,0,0,-0.980785131454468,0,-0.195091173052788,-1,0,0,-0.980785250663757,0,0.19509045779705,-0.980785250663757,0,0.19509045779705,-1,0,0,-0.980785250663757,0,0.19509045779705,-0.923878848552704,-8.26120185593027e-007,0.38268518447876,-0.923878848552704,6.19591048689472e-007,0.38268518447876,-0.980785250663757,0,0.19509045779705,-0.923878848552704,-8.26120185593027e-007,0.38268518447876,-0.831474542617798,1.17476417049039e-012,0.555562973022461,-0.831474542617798,1.65224071224657e-006,0.555562973022461,-0.923878848552704,6.19591048689472e-007,0.38268518447876,-0.831474542617798,2.89135505227023e-006,0.555562913417816,-0.707110047340393,5.6843418860808e-013,0.707103610038757,-0.707110047340393,-8.2610057461352e-007,0.707103610038757,-0.831474542617798,-1.23914628602506e-006,0.555562913417816,-0.707110047340393,5.6843418860808e-013,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.555560350418091,0,0.831476211547852,-0.707110047340393,-8.2610057461352e-007,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.382668972015381,0,0.923885643482208,
- -0.382668972015381,0,0.923885643482208,-0.555560350418091,0,0.831476211547852,-0.382668972015381,0,0.923885643482208,-0.195093721151352,0,0.980784595012665,-0.195093721151352,0,0.980784595012665,-0.382668972015381,0,0.923885643482208,-0.195093721151352,0,0.980784595012665,0,0,1,0,0,1,-0.195093721151352,0,0.980784595012665,0,0,1,0.195093721151352,0,0.980784595012665,0.195093721151352,0,0.980784595012665,0,0,1,0.195093721151352,0,0.980784595012665,0.382668972015381,0,0.923885643482208,0.382668972015381,0,0.923885643482208,0.195093721151352,0,0.980784595012665,0.382668972015381,0,0.923885643482208,0.555559635162354,0,0.83147668838501,0.555559635162354,0,0.83147668838501,0.382668972015381,0,0.923885643482208,0.555559635162354,0,0.83147668838501,0.707109153270721,-8.26101199891127e-007,0.707104384899139,0.707109153270721,-1.03262630091194e-006,0.707104384899139,0.555559635162354,0,0.83147668838501,0.707109153270721,-8.26101199891127e-007,0.707104384899139,0.831474184989929,-1.23915742733516e-006,0.555563390254974,0.831474184989929,-1.44567786719563e-006,0.555563390254974,0.707109153270721,-1.03262630091194e-006,0.707104384899139,0.831474184989929,-1.23915742733516e-006,0.555563390254974,0.923878312110901,6.2148806066753e-012,0.382686465978622,0.923878312110901,2.89901436190121e-012,0.382686465978622,0.831474184989929,-1.44567786719563e-006,0.555563390254974,0.923878312110901,6.2148806066753e-012,0.382686465978622,0.977943301200867,4.1253483118453e-007,0.208870649337769,0.980785131454468,2.06532916990909e-007,0.195091173052788,0.923878312110901,2.89901436190121e-012,0.382686465978622,0.977943301200867,4.1253483118453e-007,0.208870649337769,0.995184779167175,0,0.0980167537927628,1,0,7.66032258070481e-007,1,0,7.66032258070481e-007,0.980785131454468,2.06532916990909e-007,0.195091173052788,1,0,7.66032258070481e-007,0.995184898376465,-0,-0.0980153530836105,0.977943420410156,0,-0.208870097994804,0.980785250663757,0,-0.195090487599373,1,0,7.66032258070481e-007,0.977943420410156,0,-0.208870097994804,0.923878312110901,0,-0.382686465978622,
- 0.923878312110901,0,-0.382686465978622,0.980785250663757,0,-0.195090487599373,0.923878312110901,0,-0.382686465978622,0.831474304199219,-1.45661274383348e-013,-0.55556333065033,0.831474184989929,0,-0.555563390254974,0.923878312110901,0,-0.382686465978622,0.831474304199219,-1.45661274383348e-013,-0.55556333065033,0.70710963010788,4.76359728572573e-013,-0.707103967666626,0.70710963010788,0,-0.707103967666626,0.831474184989929,0,-0.555563390254974,0.70710963010788,4.76359728572573e-013,-0.707103967666626,0.555559933185577,-4.61852778244065e-014,-0.83147656917572,0.555560111999512,0,-0.831476449966431,0.70710963010788,0,-0.707103967666626,0.555559933185577,-4.61852778244065e-014,-0.83147656917572,0.382668614387512,0,-0.923885703086853,0.382668614387512,0,-0.923885703086853,0.555560111999512,0,-0.831476449966431,0.382668614387512,0,-0.923885703086853,0.19509357213974,0,-0.980784714221954,0.19509357213974,0,-0.980784714221954,0.382668614387512,0,-0.923885703086853,0.19509357213974,0,-0.980784714221954,-5.10693887179059e-009,0,-1,-5.10693887179059e-009,0,-1,0.19509357213974,0,-0.980784714221954,-5.10693887179059e-009,0,-1,-0.195094034075737,0,-0.980784595012665,-0.195094034075737,0,-0.980784595012665,-5.10693887179059e-009,0,-1,-0.195094034075737,0,-0.980784595012665,-0.382668972015381,0,-0.923885524272919,-0.382668972015381,0,-0.923885524272919,-0.195094034075737,0,-0.980784595012665,-0.382668972015381,0,-0.923885524272919,-0.555559933185577,0,-0.83147656917572,-0.555559933185577,0,-0.83147656917572,-0.382668972015381,0,-0.923885524272919,-0.555559933185577,0,-0.83147656917572,-0.707109570503235,0,-0.707104086875916,-0.707109570503235,0,-0.707104086875916,-0.555559933185577,0,-0.83147656917572,-0.707109570503235,0,-0.707104086875916,-0.831474184989929,0,-0.555563390254974,-0.831474184989929,0,-0.555563390254974,-0.707109570503235,0,-0.707104086875916,-0.831474184989929,0,-0.555563390254974,-0.923878312110901,0,-0.382686465978622,-0.923878312110901,0,-0.382686465978622,-0.831474184989929,0,-0.555563390254974,-0.923878312110901,0,-0.382686465978622,
- -0.980785131454468,0,-0.195091173052788,-0.980785131454468,0,-0.195091173052788,-0.923878312110901,0,-0.382686465978622,-0.980785131454468,0,-0.195091173052788,-1,0,0,-1,0,0,-0.980785131454468,0,-0.195091173052788,-1,0,0,-0.980785250663757,0,0.19509045779705,-0.980785250663757,0,0.19509045779705,-1,0,0,-0.980785250663757,0,0.19509045779705,-0.923878848552704,-1.03264892459265e-006,0.38268518447876,-0.923878848552704,-8.26120185593027e-007,0.38268518447876,-0.980785250663757,0,0.19509045779705,-0.923878848552704,-1.03264892459265e-006,0.38268518447876,-0.831474542617798,-2.0652978491853e-006,0.555562973022461,-0.831474542617798,1.17476417049039e-012,0.555562973022461,-0.923878848552704,-8.26120185593027e-007,0.38268518447876,-0.831474542617798,5.36965080755181e-006,0.555562913417816,-0.707110047340393,2.27178247769189e-006,0.707103610038757,-0.707110047340393,5.6843418860808e-013,0.707103610038757,-0.831474542617798,2.89135505227023e-006,0.555562913417816,-0.707110047340393,2.27178247769189e-006,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.555560350418091,0,0.831476211547852,-0.707110047340393,5.6843418860808e-013,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.382668972015381,0,0.923885643482208,-0.382668972015381,0,0.923885643482208,-0.555560350418091,0,0.831476211547852,-0.382668972015381,0,0.923885643482208,-0.195093721151352,0,0.980784595012665,-0.195093721151352,0,0.980784595012665,-0.382668972015381,0,0.923885643482208,-0.195093721151352,0,0.980784595012665,0,0,1,0,0,1,-0.195093721151352,0,0.980784595012665,0,0,1,0.195093721151352,0,0.980784595012665,0.195093721151352,0,0.980784595012665,0,0,1,0.195093721151352,0,0.980784595012665,0.382668972015381,0,0.923885643482208,0.382668972015381,0,0.923885643482208,0.195093721151352,0,0.980784595012665,0.382668972015381,0,0.923885643482208,0.555559635162354,0,0.83147668838501,0.555559635162354,0,0.83147668838501,0.382668972015381,0,0.923885643482208,0.555559635162354,0,0.83147668838501,0.707109153270721,-1.03262652828562e-006,0.707104384899139,
- 0.707109153270721,-8.26101199891127e-007,0.707104384899139,0.555559635162354,0,0.83147668838501,0.707109153270721,-1.03262652828562e-006,0.707104384899139,0.831474184989929,-1.03262357242784e-006,0.555563390254974,0.831474184989929,-1.23915742733516e-006,0.555563390254974,0.707109153270721,-8.26101199891127e-007,0.707104384899139,0.831474184989929,-1.03262357242784e-006,0.555563390254974,0.923878312110901,2.89901436190121e-012,0.382686465978622,0.923878312110901,6.2148806066753e-012,0.382686465978622,0.831474184989929,-1.23915742733516e-006,0.555563390254974,0.923878312110901,2.89901436190121e-012,0.382686465978622,0.973855257034302,2.05978125222828e-007,0.227169141173363,0.977943301200867,4.1253483118453e-007,0.208870649337769,0.923878312110901,6.2148806066753e-012,0.382686465978622,0.995184898376465,-0,-0.0980153530836105,0.995184898376465,-0,-0.0980153530836105,0.973855435848236,0,-0.227168843150139,0.977943420410156,0,-0.208870097994804,0.973855435848236,0,-0.227168843150139,0.923878312110901,0,-0.382686465978622,0.923878312110901,0,-0.382686465978622,0.977943420410156,0,-0.208870097994804,0.923878312110901,0,-0.382686465978622,0.831474483013153,-1.58687895723125e-013,-0.55556309223175,0.831474304199219,-1.45661274383348e-013,-0.55556333065033,0.923878312110901,0,-0.382686465978622,0.831474483013153,-1.58687895723125e-013,-0.55556309223175,0.70710963010788,4.58300064565265e-013,-0.707103967666626,0.70710963010788,4.76359728572573e-013,-0.707103967666626,0.831474304199219,-1.45661274383348e-013,-0.55556333065033,0.70710963010788,4.58300064565265e-013,-0.707103967666626,0.555559754371643,-2.81256510865479e-014,-0.831476628780365,0.555559933185577,-4.61852778244065e-014,-0.83147656917572,0.70710963010788,4.76359728572573e-013,-0.707103967666626,0.555559754371643,-2.81256510865479e-014,-0.831476628780365,0.382668614387512,0,-0.923885703086853,0.382668614387512,0,-0.923885703086853,0.555559933185577,-4.61852778244065e-014,-0.83147656917572,0.382668614387512,0,-0.923885703086853,0.19509357213974,0,-0.980784714221954,
- 0.19509357213974,0,-0.980784714221954,0.382668614387512,0,-0.923885703086853,0.19509357213974,0,-0.980784714221954,-5.10693887179059e-009,0,-1,-5.10693887179059e-009,0,-1,0.19509357213974,0,-0.980784714221954,-5.10693887179059e-009,0,-1,-0.195094034075737,0,-0.980784595012665,-0.195094034075737,0,-0.980784595012665,-5.10693887179059e-009,0,-1,-0.195094034075737,0,-0.980784595012665,-0.382668972015381,0,-0.923885524272919,-0.382668972015381,0,-0.923885524272919,-0.195094034075737,0,-0.980784595012665,-0.382668972015381,0,-0.923885524272919,-0.555559992790222,0,-0.83147656917572,-0.555559933185577,0,-0.83147656917572,-0.382668972015381,0,-0.923885524272919,-0.555559992790222,0,-0.83147656917572,-0.707109570503235,0,-0.707104086875916,-0.707109570503235,0,-0.707104086875916,-0.555559933185577,0,-0.83147656917572,-0.707109570503235,0,-0.707104086875916,-0.831474184989929,0,-0.555563390254974,-0.831474184989929,0,-0.555563390254974,-0.707109570503235,0,-0.707104086875916,-0.831474184989929,0,-0.555563390254974,-0.923878312110901,0,-0.382686465978622,-0.923878312110901,0,-0.382686465978622,-0.831474184989929,0,-0.555563390254974,-0.923878312110901,0,-0.382686465978622,-0.980785131454468,0,-0.195091173052788,-0.980785131454468,0,-0.195091173052788,-0.923878312110901,0,-0.382686465978622,-0.980785131454468,0,-0.195091173052788,-1,0,0,-1,0,0,-0.980785131454468,0,-0.195091173052788,-1,0,0,-0.980785250663757,0,0.19509045779705,-0.980785250663757,0,0.19509045779705,-1,0,0,-0.980785250663757,0,0.19509045779705,-0.923878848552704,-6.19590025507932e-007,0.38268518447876,-0.923878848552704,-1.03264892459265e-006,0.38268518447876,-0.980785250663757,0,0.19509045779705,-0.923878848552704,-6.19590025507932e-007,0.38268518447876,-0.831474542617798,-1.65223673320725e-006,0.555562973022461,-0.831474542617798,-2.0652978491853e-006,0.555562973022461,-0.923878848552704,-1.03264892459265e-006,0.38268518447876,-0.831474542617798,1.65220080816653e-006,0.555562913417816,-0.707110047340393,2.2717786123394e-006,0.707103610038757,-0.707110047340393,2.27178247769189e-006,0.707103610038757,
- -0.831474542617798,5.36965080755181e-006,0.555562913417816,-0.707110047340393,2.2717786123394e-006,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.555560350418091,0,0.831476211547852,-0.707110047340393,2.27178247769189e-006,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.382668972015381,0,0.923885643482208,-0.382668972015381,0,0.923885643482208,-0.555560350418091,0,0.831476211547852,-0.382668972015381,0,0.923885643482208,-0.195093721151352,0,0.980784595012665,-0.195093721151352,0,0.980784595012665,-0.382668972015381,0,0.923885643482208,-0.195093721151352,0,0.980784595012665,0,0,1,0,0,1,-0.195093721151352,0,0.980784595012665,0,0,1,0.195093721151352,0,0.980784595012665,0.195093721151352,0,0.980784595012665,0,0,1,0.195093721151352,0,0.980784595012665,0.382668972015381,0,0.923885643482208,0.382668972015381,0,0.923885643482208,0.195093721151352,0,0.980784595012665,0.382668972015381,0,0.923885643482208,0.555559635162354,0,0.83147668838501,0.555559635162354,0,0.83147668838501,0.382668972015381,0,0.923885643482208,0.555559635162354,0,0.83147668838501,0.707109153270721,-4.13050742054111e-007,0.707104384899139,0.707109153270721,-1.03262652828562e-006,0.707104384899139,0.555559635162354,0,0.83147668838501,0.707109153270721,-4.13050742054111e-007,0.707104384899139,0.831474184989929,-8.26098926154373e-007,0.555563390254974,0.831474184989929,-1.03262357242784e-006,0.555563390254974,0.707109153270721,-1.03262652828562e-006,0.707104384899139,0.831474184989929,-8.26098926154373e-007,0.555563390254974,0.923878312110901,4.13065521343015e-007,0.382686465978622,0.923878312110901,2.89901436190121e-012,0.382686465978622,0.831474184989929,-1.03262357242784e-006,0.555563390254974,0.923878312110901,4.13065521343015e-007,0.382686465978622,0.977943241596222,4.95044957915525e-007,0.208870649337769,0.973855257034302,2.05978125222828e-007,0.227169141173363,0.923878312110901,2.89901436190121e-012,0.382686465978622,0.995184898376465,-0,-0.0980153530836105,0.995184898376465,2.11577064407091e-016,-0.0980153605341911,0.977943420410156,-1.57463213475151e-012,-0.208870097994804,
- 0.973855435848236,0,-0.227168843150139,0.977943420410156,-1.57463213475151e-012,-0.208870097994804,0.923878312110901,0,-0.382686465978622,0.923878312110901,0,-0.382686465978622,0.973855435848236,0,-0.227168843150139,0.923878312110901,0,-0.382686465978622,0.831474542617798,0,-0.555562973022461,0.831474483013153,-1.58687895723125e-013,-0.55556309223175,0.923878312110901,0,-0.382686465978622,0.831474542617798,0,-0.555562973022461,0.70710963010788,0,-0.707103908061981,0.70710963010788,4.58300064565265e-013,-0.707103967666626,0.831474483013153,-1.58687895723125e-013,-0.55556309223175,0.70710963010788,0,-0.707103908061981,0.555559694766998,0,-0.83147668838501,0.555559754371643,-2.81256510865479e-014,-0.831476628780365,0.70710963010788,4.58300064565265e-013,-0.707103967666626,0.555559694766998,0,-0.83147668838501,0.382668614387512,0,-0.923885703086853,0.382668614387512,0,-0.923885703086853,0.555559754371643,-2.81256510865479e-014,-0.831476628780365,0.382668614387512,0,-0.923885703086853,0.19509357213974,0,-0.980784714221954,0.19509357213974,0,-0.980784714221954,0.382668614387512,0,-0.923885703086853,0.19509357213974,0,-0.980784714221954,-5.10693887179059e-009,0,-1,-5.10693887179059e-009,0,-1,0.19509357213974,0,-0.980784714221954,-5.10693887179059e-009,0,-1,-0.195094034075737,0,-0.980784595012665,-0.195094034075737,0,-0.980784595012665,-5.10693887179059e-009,0,-1,-0.195094034075737,0,-0.980784595012665,-0.382668972015381,0,-0.923885524272919,-0.382668972015381,0,-0.923885524272919,-0.195094034075737,0,-0.980784595012665,-0.382668972015381,0,-0.923885524272919,-0.555559992790222,0,-0.83147656917572,-0.555559992790222,0,-0.83147656917572,-0.382668972015381,0,-0.923885524272919,-0.555559992790222,0,-0.83147656917572,-0.707109570503235,0,-0.707104086875916,-0.707109570503235,0,-0.707104086875916,-0.555559992790222,0,-0.83147656917572,-0.707109570503235,0,-0.707104086875916,-0.831474184989929,0,-0.555563390254974,-0.831474184989929,0,-0.555563390254974,-0.707109570503235,0,-0.707104086875916,-0.831474184989929,0,-0.555563390254974,
- -0.923878312110901,0,-0.382686465978622,-0.923878312110901,0,-0.382686465978622,-0.831474184989929,0,-0.555563390254974,-0.923878312110901,0,-0.382686465978622,-0.980785131454468,0,-0.195091173052788,-0.980785131454468,0,-0.195091173052788,-0.923878312110901,0,-0.382686465978622,-0.980785131454468,0,-0.195091173052788,-1,0,0,-1,0,0,-0.980785131454468,0,-0.195091173052788,-1,0,0,-0.980785250663757,0,0.19509045779705,-0.980785250663757,0,0.19509045779705,-1,0,0,-0.980785250663757,0,0.19509045779705,-0.923878848552704,-4.13059638049162e-007,0.38268518447876,-0.923878848552704,-6.19590025507932e-007,0.38268518447876,-0.980785250663757,0,0.19509045779705,-0.923878848552704,-4.13059638049162e-007,0.38268518447876,-0.831474542617798,-1.23917891414749e-006,0.555562973022461,-0.831474542617798,-1.65223673320725e-006,0.555562973022461,-0.923878848552704,-6.19590025507932e-007,0.38268518447876,-0.831474542617798,-1.65219387326943e-006,0.555562913417816,-0.707110047340393,-2.06522713597224e-007,0.707103610038757,-0.707110047340393,2.2717786123394e-006,0.707103610038757,-0.831474542617798,1.65220080816653e-006,0.555562913417816,-0.707110047340393,-2.06522713597224e-007,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.555560350418091,0,0.831476211547852,-0.707110047340393,2.2717786123394e-006,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.382668972015381,0,0.923885643482208,-0.382668972015381,0,0.923885643482208,-0.555560350418091,0,0.831476211547852,-0.382668972015381,0,0.923885643482208,-0.195093721151352,0,0.980784595012665,-0.195093721151352,0,0.980784595012665,-0.382668972015381,0,0.923885643482208,-0.195093721151352,0,0.980784595012665,0,0,1,0,0,1,-0.195093721151352,0,0.980784595012665,0,0,1,0.195093721151352,0,0.980784595012665,0.195093721151352,0,0.980784595012665,0,0,1,0.195093721151352,0,0.980784595012665,0.382668972015381,0,0.923885643482208,0.382668972015381,0,0.923885643482208,0.195093721151352,0,0.980784595012665,0.382668972015381,0,0.923885643482208,0.555559635162354,0,0.83147668838501,0.555559635162354,0,0.83147668838501,
- 0.382668972015381,0,0.923885643482208,0.555559635162354,0,0.83147668838501,0.707109153270721,0,0.707104384899139,0.707109153270721,-4.13050742054111e-007,0.707104384899139,0.555559635162354,0,0.83147668838501,0.707109153270721,0,0.707104384899139,0.831474184989929,-2.06524703116884e-007,0.555563390254974,0.831474184989929,-8.26098926154373e-007,0.555563390254974,0.707109153270721,-4.13050742054111e-007,0.707104384899139,0.831474184989929,-2.06524703116884e-007,0.555563390254974,0.923878312110901,0,0.382686465978622,0.923878312110901,4.13065521343015e-007,0.382686465978622,0.831474184989929,-8.26098926154373e-007,0.555563390254974,0.923878312110901,0,0.382686465978622,0.980785071849823,1.7702117816043e-007,0.195091158151627,0.977943241596222,4.95044957915525e-007,0.208870649337769,0.923878312110901,4.13065521343015e-007,0.382686465978622,0.980785071849823,1.7702117816043e-007,0.195091158151627,1,-1.05813422260348e-011,7.660323149139e-007,1,4.16333634234434e-017,7.66032258070481e-007,0.99518483877182,-1.30469636300993e-016,0.0980167537927628,0.977943241596222,4.95044957915525e-007,0.208870649337769,1,-1.05813422260348e-011,7.660323149139e-007,0.980785250663757,-2.46330707118927e-016,-0.195090487599373,0.977943420410156,-1.57463213475151e-012,-0.208870097994804,0.995184898376465,2.11577064407091e-016,-0.0980153605341911,1,4.16333634234434e-017,7.66032258070481e-007,0.980785250663757,-2.46330707118927e-016,-0.195090487599373,0.923878312110901,0,-0.382686465978622,0.923878312110901,0,-0.382686465978622,0.977943420410156,-1.57463213475151e-012,-0.208870097994804,0.923878312110901,0,-0.382686465978622,0.831474483013153,1.31894508877996e-013,-0.55556309223175,0.831474542617798,0,-0.555562973022461,0.923878312110901,0,-0.382686465978622,0.831474483013153,1.31894508877996e-013,-0.55556309223175,0.70710963010788,-3.67409824352655e-013,-0.707103967666626,0.70710963010788,0,-0.707103908061981,0.831474542617798,0,-0.555562973022461,0.70710963010788,-3.67409824352655e-013,-0.707103967666626,0.555559754371643,8.88178419700125e-015,-0.831476628780365,
- 0.555559694766998,0,-0.83147668838501,0.70710963010788,0,-0.707103908061981,0.555559754371643,8.88178419700125e-015,-0.831476628780365,0.382668614387512,0,-0.923885703086853,0.382668614387512,0,-0.923885703086853,0.555559694766998,0,-0.83147668838501,0.382668614387512,0,-0.923885703086853,0.19509357213974,0,-0.980784714221954,0.19509357213974,0,-0.980784714221954,0.382668614387512,0,-0.923885703086853,0.19509357213974,0,-0.980784714221954,-5.10693887179059e-009,0,-1,-5.10693887179059e-009,0,-1,0.19509357213974,0,-0.980784714221954,-5.10693887179059e-009,0,-1,-0.195094034075737,0,-0.980784595012665,-0.195094034075737,0,-0.980784595012665,-5.10693887179059e-009,0,-1,0.19509169459343,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.382661908864975,0,0.923888504505157,0.382661879062653,0,0.923888444900513,0.382661879062653,0,0.923888444900513,0.382661908864975,0,0.923888504505157,0.555571675300598,0,0.831468760967255,0.555571615695953,0,0.83146870136261,0.555571615695953,0,0.83146870136261,0.555571675300598,0,0.831468760967255,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.980785489082336,0,0.195089802145958,0.980785489082336,0,0.195089802145958,0.980785489082336,0,0.195089802145958,0.980785489082336,0,0.195089802145958,1,0,0,1,0,0,1,0,0,1,0,0,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.923880338668823,4.90164040911623e-007,-0.382681429386139,0.923880338668823,0,-0.382681459188461,0.923880338668823,0,-0.382681459188461,0.923880338668823,4.90164040911623e-007,-0.382681429386139,0.831474304199219,1.47050104715163e-006,-0.55556321144104,
- 0.831474304199219,7.35249159333762e-007,-0.55556321144104,0.831474304199219,0,-0.55556321144104,0.831474304199219,1.96084670278651e-006,-0.55556321144104,0.707103490829468,2.4510202933925e-007,-0.707110166549683,0.707103490829468,9.80419372353936e-007,-0.707110166549683,0.707103490829468,9.80419372353936e-007,-0.707110166549683,0.707103490829468,2.4510202933925e-007,-0.707110166549683,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.382662266492844,0,-0.923888325691223,0.382662296295166,0,-0.923888325691223,0.382662296295166,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.19512078166008,-6.57251962815457e-014,-0.98077917098999,0.195120766758919,-4.99790830943425e-009,-0.98077917098999,0.195120766758919,-4.99790830943425e-009,-0.98077917098999,0.19512078166008,-6.57251962815457e-014,-0.98077917098999,-1.06060777937955e-008,-1.48029743675295e-015,-1,1.2121232018103e-008,-5.00530772384877e-009,-1,1.2121232018103e-008,-5.00530772384877e-009,-1,-1.06060777937955e-008,-1.48029743675295e-015,-1,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888444900513,-0.382661908864975,0,-0.923888444900513,-0.382661908864975,0,-0.923888504505157,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.70710301399231,0,-0.707110643386841,-0.70710301399231,0,-0.707110643386841,-0.70710301399231,0,-0.707110643386841,-0.70710301399231,0,-0.707110643386841,-0.831473827362061,2.45106150487118e-007,-0.555563986301422,-0.831473827362061,0,-0.555563986301422,-0.831473827362061,0,-0.555563986301422,-0.831473827362061,2.45106150487118e-007,-0.555563986301422,-0.923880040645599,0,-0.382682293653488,-0.923880040645599,0,-0.382682323455811,-0.923880040645599,0,-0.382682323455811,
- -0.923880040645599,0,-0.382682293653488,-0.980784237384796,-2.13479509625358e-007,-0.195095613598824,-0.980784177780151,0,-0.195095613598824,-0.980784177780151,0,-0.195095613598824,-0.980784237384796,-2.13479509625358e-007,-0.195095613598824,-1,-6.76419809053641e-009,-9.12113137019333e-007,-1,0,-9.12113080175914e-007,-1,0,-9.12113080175914e-007,-1,-6.76419809053641e-009,-9.12113137019333e-007,-0.980785667896271,3.07901897337801e-014,0.195088908076286,-0.980785667896271,0,0.195088908076286,-0.980785667896271,0,0.195088908076286,-0.980785667896271,3.07901897337801e-014,0.195088908076286,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.831473827362061,0,0.555564045906067,-0.831473767757416,0,0.555564045906067,-0.831473767757416,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.555571675300598,0,0.831468760967255,-0.555571615695953,0,0.83146870136261,-0.555571615695953,0,0.83146870136261,-0.555571675300598,0,0.831468760967255,-0.382661581039429,0,0.923888623714447,-0.382661640644073,0,0.923888623714447,-0.382661640644073,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785071849823,-0.195091158151627,0,0.980785071849823,-0.195091158151627,0,0.980785131454468,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,0.195091709494591,0,0.980785012245178,0.19509169459343,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.19509169459343,0,0.980785012245178,0.382661879062653,0,0.923888444900513,0.382661908864975,0,0.923888504505157,0.382661908864975,0,0.923888504505157,0.382661879062653,0,0.923888444900513,0.555571615695953,0,0.83146870136261,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,
- 0.555571615695953,0,0.83146870136261,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.980785489082336,0,0.195089787244797,0.980785489082336,0,0.195089802145958,0.980785489082336,0,0.195089802145958,0.980785489082336,0,0.195089787244797,1,0,0,1,0,0,1,0,0,1,0,0,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.923880338668823,-9.80329559752136e-007,-0.382681488990784,0.923880338668823,-7.35248079308803e-007,-0.382681429386139,0.923880338668823,-7.35248079308803e-007,-0.382681429386139,0.923880338668823,-9.80329559752136e-007,-0.382681488990784,0.831474304199219,-0,-0.55556321144104,0.831474304199219,-1.96067094293539e-006,-0.55556321144104,0.831474304199219,1.47063610711484e-006,-0.55556321144104,0.831474304199219,1.47063701660954e-006,-0.55556321144104,0.707103490829468,0,-0.707110166549683,0.707103490829468,9.80419940788124e-007,-0.707110166549683,0.707103490829468,9.80419940788124e-007,-0.707110166549683,0.707103490829468,0,-0.707110166549683,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.382662296295166,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.382662296295166,0,-0.923888325691223,0.195120766758919,-4.99763697092703e-009,-0.98077917098999,0.19512078166008,6.51330795938335e-014,-0.98077917098999,0.19512078166008,6.51330795938335e-014,-0.98077917098999,0.195120766758919,-4.99763697092703e-009,-0.98077917098999,1.2121232018103e-008,-5.00530195068905e-009,-1,
- -1.06060777937955e-008,1.48029743675295e-015,-1,-1.06060777937955e-008,1.48029743675295e-015,-1,1.2121232018103e-008,-5.00530195068905e-009,-1,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.382661908864975,0,-0.923888444900513,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888444900513,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.70710301399231,1.96084010894992e-006,-0.707110643386841,-0.70710301399231,1.22552398806874e-006,-0.707110643386841,-0.70710301399231,1.22552398806874e-006,-0.707110643386841,-0.70710301399231,1.96084010894992e-006,-0.707110643386841,-0.831473827362061,1.47059267874283e-006,-0.555563926696777,-0.831473827362061,1.71572060025937e-006,-0.555563986301422,-0.831473827362061,1.71572060025937e-006,-0.555563986301422,-0.831473827362061,1.47059267874283e-006,-0.555563926696777,-0.923880040645599,-6.18835399590623e-011,-0.382682323455811,-0.923880040645599,-3.06954461848363e-011,-0.382682293653488,-0.923880040645599,-3.06954461848363e-011,-0.382682293653488,-0.923880040645599,-6.18835399590623e-011,-0.382682323455811,-0.980784177780151,-4.90227705540747e-007,-0.195095583796501,-0.980784177780151,-2.451145348914e-007,-0.195095613598824,-0.980784177780151,-2.451145348914e-007,-0.195095613598824,-0.980784177780151,-4.90227705540747e-007,-0.195095583796501,-1,0,-9.12113137019333e-007,-1,-6.76632305740554e-009,-9.12113137019333e-007,-1,-6.76632305740554e-009,-9.12113137019333e-007,-1,0,-9.12113137019333e-007,-0.980785667896271,0,0.195088908076286,-0.980785548686981,-3.38433459035059e-009,0.195088893175125,-0.980785548686981,-3.38433459035059e-009,0.195088893175125,-0.980785667896271,0,0.195088908076286,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,
- -0.831473767757416,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.831473767757416,0,0.555564045906067,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.555571615695953,0,0.83146870136261,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.555571615695953,0,0.83146870136261,-0.382661640644073,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,-0.382661640644073,0,0.923888623714447,-0.195091158151627,0,0.980785071849823,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785071849823,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,0.19509169459343,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.382661908864975,0,0.923888504505157,0.382661908864975,0,0.923888504505157,0.382661908864975,0,0.923888504505157,0.382661908864975,0,0.923888504505157,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.980785489082336,0,0.195089802145958,0.980785489082336,0,0.195089802145958,0.980785489082336,0,0.195089802145958,0.980785489082336,0,0.195089802145958,1,0,0,1,0,0,1,0,0,1,0,0,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,
- 0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.923880338668823,-7.35248079308803e-007,-0.382681429386139,0.923880338668823,9.80329218691622e-007,-0.382681429386139,0.923880338668823,9.80329218691622e-007,-0.382681429386139,0.923880338668823,-7.35248079308803e-007,-0.382681429386139,0.831474304199219,-1.96067094293539e-006,-0.55556321144104,0.831474304199219,-1.40213773751341e-012,-0.55556321144104,0.831474304199219,-3.43150031767436e-006,-0.55556321144104,0.831474304199219,1.47063610711484e-006,-0.55556321144104,0.707103490829468,9.80419940788124e-007,-0.707110166549683,0.707103490829468,-7.01068922966813e-013,-0.707110166549683,0.707103490829468,-7.01068922966813e-013,-0.707110166549683,0.707103490829468,9.80419940788124e-007,-0.707110166549683,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.382662266492844,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.19512078166008,6.51330795938335e-014,-0.98077917098999,0.195120766758919,0,-0.98077917098999,0.195120766758919,0,-0.98077917098999,0.19512078166008,6.51330795938335e-014,-0.98077917098999,-1.06060777937955e-008,1.48029743675295e-015,-1,0,0,-1,0,0,-1,-1.06060777937955e-008,1.48029743675295e-015,-1,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888504505157,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.70710301399231,1.22552398806874e-006,-0.707110643386841,-0.70710301399231,9.80419372353936e-007,-0.707110643386841,-0.70710301399231,9.80419372353936e-007,-0.707110643386841,
- -0.70710301399231,1.22552398806874e-006,-0.707110643386841,-0.831473827362061,1.71572060025937e-006,-0.555563986301422,-0.831473827362061,1.4705910871271e-006,-0.555563986301422,-0.831473827362061,1.4705910871271e-006,-0.555563986301422,-0.831473827362061,1.71572060025937e-006,-0.555563986301422,-0.923880040645599,-3.06954461848363e-011,-0.382682293653488,-0.923880040645599,-6.18456397205591e-011,-0.382682293653488,-0.923880040645599,-6.18456397205591e-011,-0.382682293653488,-0.923880040645599,-3.06954461848363e-011,-0.382682293653488,-0.980784177780151,-2.451145348914e-007,-0.195095613598824,-0.97794246673584,-4.85695238694461e-007,-0.208874434232712,-0.97794246673584,-4.85695238694461e-007,-0.208874434232712,-0.980784177780151,-2.451145348914e-007,-0.195095613598824,-1,-6.76632305740554e-009,-9.12113137019333e-007,-1,-2.8421709430404e-014,-9.12113080175914e-007,-0.995184898376465,1.74603062043366e-013,-0.0980153977870941,-1,-2.8421709430404e-014,-9.12113080175914e-007,-1,-6.76632305740554e-009,-9.12113137019333e-007,-0.980785548686981,-3.38433459035059e-009,0.195088893175125,-0.977944195270538,1.51059753594751e-009,0.20886655151844,-0.995185077190399,-9.1282591294789e-013,0.0980135947465897,-0.977944195270538,1.51059753594751e-009,0.20886655151844,-0.980785548686981,-3.38433459035059e-009,0.195088893175125,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.831473827362061,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.382661581039429,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,
- -0.382661581039429,0,0.923888623714447,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785131454468,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,0.195091709494591,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.382661908864975,0,0.923888504505157,0.382661908864975,0,0.923888504505157,0.382661908864975,0,0.923888504505157,0.382661908864975,0,0.923888504505157,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.980785489082336,0,0.195089802145958,0.980785369873047,0,0.195089802145958,0.980785369873047,0,0.195089802145958,0.980785489082336,0,0.195089802145958,1,0,0,1,0,0,1,0,0,1,0,0,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.923880338668823,9.80329218691622e-007,-0.382681429386139,0.923880338668823,1.22541007385735e-006,-0.382681459188461,0.923880338668823,1.22541007385735e-006,-0.382681459188461,0.923880338668823,9.80329218691622e-007,-0.382681429386139,0.831474304199219,-1.40213773751341e-012,-0.55556321144104,0.831474304199219,2.45083515437727e-006,-0.55556321144104,0.831474304199219,-6.37277662463021e-006,-0.55556321144104,0.831474304199219,-3.43150031767436e-006,-0.55556321144104,0.707103490829468,-7.01068922966813e-013,-0.707110166549683,
- 0.707103490829468,-2.69616180048615e-006,-0.707110166549683,0.707103490829468,-2.69616180048615e-006,-0.707110166549683,0.707103490829468,-7.01068922966813e-013,-0.707110166549683,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.382662266492844,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.195120766758919,0,-0.98077917098999,0.19512078166008,0,-0.98077917098999,0.19512078166008,0,-0.98077917098999,0.195120766758919,0,-0.98077917098999,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888504505157,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.70710301399231,9.80419372353936e-007,-0.707110643386841,-0.70710301399231,1.22552410175558e-006,-0.707110643386841,-0.70710301399231,1.22552410175558e-006,-0.707110643386841,-0.70710301399231,9.80419372353936e-007,-0.707110643386841,-0.831473827362061,1.4705910871271e-006,-0.555563986301422,-0.831473827362061,1.22553092296585e-006,-0.555563926696777,-0.831473827362061,1.22553092296585e-006,-0.555563926696777,-0.831473827362061,1.4705910871271e-006,-0.555563986301422,-0.923880040645599,-6.18456397205591e-011,-0.382682293653488,-0.923880040645599,-3.06954461848363e-011,-0.382682293653488,-0.923880040645599,-3.06954461848363e-011,-0.382682293653488,-0.923880040645599,-6.18456397205591e-011,-0.382682293653488,-0.97794246673584,-4.85695238694461e-007,-0.208874434232712,-0.973854720592499,-2.44455435449709e-007,-0.227171897888184,-0.973854720592499,-2.44455435449709e-007,-0.227171897888184,-0.97794246673584,-4.85695238694461e-007,-0.208874434232712,
- -0.995184898376465,1.74603062043366e-013,-0.0980153977870941,-0.995185375213623,-0,-0.0980106815695763,-0.973856925964355,0,0.227162286639214,-0.977944195270538,1.51059753594751e-009,0.20886655151844,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.831473827362061,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.382661581039429,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785131454468,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,0.195091709494591,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.382661908864975,0,0.923888504505157,0.382661908864975,0,0.923888504505157,0.382661908864975,0,0.923888504505157,0.382661908864975,0,0.923888504505157,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,
- 0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.980785369873047,0,0.195089802145958,0.980785489082336,0,0.195089802145958,0.980785489082336,0,0.195089802145958,0.980785369873047,0,0.195089802145958,1,0,0,1,0,0,1,0,0,1,0,0,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.923880338668823,1.22541007385735e-006,-0.382681459188461,0.923880338668823,7.35246715066751e-007,-0.382681429386139,0.923880338668823,7.35246715066751e-007,-0.382681429386139,0.923880338668823,1.22541007385735e-006,-0.382681459188461,0.831474304199219,2.45083515437727e-006,-0.55556321144104,0.831474304199219,1.96066639546189e-006,-0.55556321144104,0.831474304199219,-1.96085488823883e-006,-0.55556321144104,0.831474304199219,-6.37277662463021e-006,-0.55556321144104,0.707103490829468,-2.69616180048615e-006,-0.707110166549683,0.707103490829468,-2.69615725301264e-006,-0.707110166549683,0.707103490829468,-2.69615725301264e-006,-0.707110166549683,0.707103490829468,-2.69616180048615e-006,-0.707110166549683,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.382662266492844,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.19512078166008,0,-0.98077917098999,0.195120766758919,0,-0.98077917098999,0.195120766758919,0,-0.98077917098999,0.19512078166008,0,-0.98077917098999,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888504505157,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,
- -0.70710301399231,1.22552410175558e-006,-0.707110643386841,-0.70710301399231,4.90209799863806e-007,-0.707110643386841,-0.70710301399231,4.90209799863806e-007,-0.707110643386841,-0.70710301399231,1.22552410175558e-006,-0.707110643386841,-0.831473827362061,1.22553092296585e-006,-0.555563926696777,-0.831473827362061,9.80424715635309e-007,-0.555563986301422,-0.831473827362061,9.80424715635309e-007,-0.555563986301422,-0.831473827362061,1.22553092296585e-006,-0.555563926696777,-0.923880040645599,-3.06954461848363e-011,-0.382682293653488,-0.923880040645599,-4.90225943394762e-007,-0.382682293653488,-0.923880040645599,-4.90225943394762e-007,-0.382682293653488,-0.923880040645599,-3.06954461848363e-011,-0.382682293653488,-0.973854720592499,-2.44455435449709e-007,-0.227171897888184,-0.97794246673584,-5.86006422054197e-007,-0.208874419331551,-0.97794246673584,-5.86006422054197e-007,-0.208874419331551,-0.973854720592499,-2.44455435449709e-007,-0.227171897888184,-0.995185375213623,-0,-0.0980106815695763,-0.995184898376465,-8.57004842525627e-013,-0.0980153977870941,-0.977944135665894,3.90260002092191e-009,0.208866536617279,-0.973856925964355,0,0.227162286639214,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.831473827362061,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.382661581039429,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785131454468,
- -0.195091158151627,0,0.980785131454468,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,0.195091709494591,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.382661908864975,0,0.923888504505157,0.382661908864975,0,0.923888504505157,0.382661908864975,0,0.923888504505157,0.382661908864975,0,0.923888504505157,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.707103431224823,0,0.707110166549683,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.831473767757416,0,0.555564045906067,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.923879742622375,0,0.382683038711548,0.980785489082336,0,0.195089802145958,0.980785489082336,0,0.195089802145958,0.980785489082336,0,0.195089802145958,0.980785489082336,0,0.195089802145958,1,0,0,1,0,0,1,0,0,1,0,0,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.923880338668823,7.35246715066751e-007,-0.382681429386139,0.923880338668823,4.90164040911623e-007,-0.382681429386139,0.923880338668823,4.90164040911623e-007,-0.382681429386139,0.923880338668823,7.35246715066751e-007,-0.382681429386139,0.831474304199219,1.96066639546189e-006,-0.55556321144104,0.831474304199219,1.47050104715163e-006,-0.55556321144104,0.831474304199219,1.96084670278651e-006,-0.55556321144104,0.831474304199219,-1.96085488823883e-006,-0.55556321144104,0.707103490829468,-2.69615725301264e-006,-0.707110166549683,0.707103490829468,2.4510202933925e-007,-0.707110166549683,0.707103490829468,2.4510202933925e-007,-0.707110166549683,0.707103490829468,-2.69615725301264e-006,-0.707110166549683,
- 0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.382662266492844,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.382662266492844,0,-0.923888325691223,0.195120766758919,0,-0.98077917098999,0.19512078166008,-6.57251962815457e-014,-0.98077917098999,0.19512078166008,-6.57251962815457e-014,-0.98077917098999,0.195120766758919,0,-0.98077917098999,0,0,-1,-1.06060777937955e-008,-1.48029743675295e-015,-1,-1.06060777937955e-008,-1.48029743675295e-015,-1,0,0,-1,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.195120736956596,0,-0.98077929019928,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888504505157,-0.382661908864975,0,-0.923888504505157,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.55557119846344,0,-0.831468999385834,-0.70710301399231,4.90209799863806e-007,-0.707110643386841,-0.70710301399231,0,-0.707110643386841,-0.70710301399231,0,-0.707110643386841,-0.70710301399231,4.90209799863806e-007,-0.707110643386841,-0.831473827362061,9.80424715635309e-007,-0.555563986301422,-0.831473827362061,2.45106150487118e-007,-0.555563986301422,-0.831473827362061,2.45106150487118e-007,-0.555563986301422,-0.831473827362061,9.80424715635309e-007,-0.555563986301422,-0.923880040645599,-4.90225943394762e-007,-0.382682293653488,-0.923880040645599,0,-0.382682293653488,-0.923880040645599,0,-0.382682293653488,-0.923880040645599,-4.90225943394762e-007,-0.382682293653488,-0.97794246673584,-5.86006422054197e-007,-0.208874419331551,-0.980784237384796,-2.13479509625358e-007,-0.195095613598824,-0.980784237384796,-2.13479509625358e-007,-0.195095613598824,-0.97794246673584,-5.86006422054197e-007,-0.208874419331551,-0.995184898376465,-8.57004842525627e-013,-0.0980153977870941,-1,3.19744231092045e-014,-9.12113080175914e-007,
- -1,-6.76419809053641e-009,-9.12113137019333e-007,-1,-6.76419809053641e-009,-9.12113137019333e-007,-1,3.19744231092045e-014,-9.12113080175914e-007,-0.995185077190399,2.29872653030594e-013,0.0980135947465897,-0.977944135665894,3.90260002092191e-009,0.208866536617279,-0.980785667896271,3.07901897337801e-014,0.195088908076286,-0.980785667896271,3.07901897337801e-014,0.195088908076286,-0.977944135665894,3.90260002092191e-009,0.208866536617279,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.923879742622375,0,0.382683038711548,-0.831473827362061,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.831473827362061,0,0.555564045906067,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.707103431224823,0,0.707110166549683,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.382661581039429,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,-0.382661581039429,0,0.923888623714447,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785131454468,-0.195091158151627,0,0.980785131454468,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,-6.06063244035226e-009,0,1,0.195091709494591,0,0.980785012245178,0.195091709494591,0,0.980785012245178,0.973855257034302,2.05978125222828e-007,0.227169141173363,0.99518483877182,-0,0.0980163663625717,0.995184779167175,0,0.0980167537927628,0.977943301200867,4.1253483118453e-007,0.208870649337769,0.977943241596222,4.95044957915525e-007,0.208870649337769,0.99518483877182,-1.30469636300993e-016,0.0980167537927628,0.99518483877182,-0,0.0980163663625717,0.973855257034302,2.05978125222828e-007,0.227169141173363,-0.995185554027557,-0,0.0980088710784912,-0.995185077190399,-9.1282591294789e-013,0.0980135947465897,
- -0.977944195270538,1.51059753594751e-009,0.20886655151844,-0.973856925964355,0,0.227162286639214,-0.995185077190399,2.29872653030594e-013,0.0980135947465897,-0.995185554027557,-0,0.0980088710784912,-0.973856925964355,0,0.227162286639214,-0.977944135665894,3.90260002092191e-009,0.208866536617279,2.27373675443232e-013,0,1,-0,0,1,-2.16115449802601e-006,0,1,-4.32230899605202e-006,0,1,-2.24322548092459e-006,0,-1,0,0,-1,-2.24322548092459e-006,0,-1,-4.48645096184919e-006,0,-1,0.0871836990118027,0.0308518894016743,0.995714426040649,-0,0,1,2.27373675443232e-013,0,1,0.0871831625699997,0.0308521613478661,0.995714426040649,0.0980490893125534,-3.43510420108828e-009,0.995181560516357,0.0980490893125534,-3.008263860238e-009,0.995181560516357,0.0980490893125534,0,0.995181560516357,0.0980490893125534,0,0.995181560516357,0.0980490893125534,0,0.995181560516357,0.0980490893125534,0,0.995181560516357,0.0980490893125534,0,0.995181560516357,0.0980490893125534,0,0.995181560516357,0.0871836990118027,0.0308519005775452,-0.995714426040649,0,-0,-1,2.24322502617724e-006,-0,-1,0.0871832147240639,0.0308520905673504,-0.995714426040649,0.0980491191148758,0,-0.995181560516357,0.0980491191148758,7.31482252547266e-009,-0.995181560516357,0.0980491116642952,4.90268270425531e-009,-0.995181560516357,0.0980491191148758,0,-0.995181560516357,0.0980491191148758,0,-0.995181560516357,0.0980491191148758,0,-0.995181560516357,0.0980491191148758,0,-0.995181560516357,0.0980491191148758,0,-0.995181560516357,-0.19509269297123,-0,0.980784833431244,-0.195093303918839,-0,0.980784595012665,-0.0980476513504982,-0,0.995181739330292,-0.0980768203735352,-0,0.995178937911987,-0.195121645927429,0,0.980778992176056,-0.19510792195797,0,0.980781853199005,-0.0980476513504982,-0,0.995181739330292,-0.0980767980217934,0,0.995178937911987,-0.412777006626129,0,0.910832107067108,-0.19510792195797,0,0.980781853199005,-0.195121645927429,0,0.980778992176056,-0.352140963077545,0,0.935947000980377,-0.582553386688232,0,0.812792479991913,-0.412777006626129,0,0.910832107067108,-0.352140963077545,0,0.935947000980377,
- -0.527986228466034,0,0.849252998828888,-0.729923248291016,0,0.683529078960419,-0.582553386688232,0,0.812792479991913,-0.527986228466034,0,0.849252998828888,-0.683519005775452,0,0.72993266582489,-0.849261105060577,0,0.527973175048828,-0.729923248291016,0,0.683529078960419,-0.683519005775452,0,0.72993266582489,-0.81279730796814,0,0.582546651363373,-0.935936510562897,-0,0.352168798446655,-0.849261105060577,0,0.527973175048828,-0.81279730796814,0,0.582546651363373,-0.910827279090881,0,0.412787705659866,-0.986658573150635,0,0.162803113460541,-0.935936510562897,-0,0.352168798446655,-0.910827279090881,0,0.412787705659866,-0.973854243755341,0,0.2271738499403,-0.995184779167175,-0,0.0980166718363762,-0.986658573150635,0,0.162803113460541,-0.973854243755341,0,0.2271738499403,-0.99518483877182,0,0.0980159640312195,0.973855316638947,-0,0.227169215679169,0.995184779167175,-0,0.0980166643857956,0.995184779167175,-0,0.0980166494846344,0.98665863275528,-0,0.162803053855896,0.910824835300446,-0,0.412793070077896,0.973855316638947,-0,0.227169215679169,0.98665863275528,-0,0.162803053855896,0.935938656330109,-0,0.352163016796112,0.812798202037811,-0,0.582545459270477,0.910824835300446,-0,0.412793070077896,0.935938656330109,-0,0.352163016796112,0.849254310131073,-0,0.527984023094177,0.683518946170807,-0,0.72993278503418,0.812798202037811,-0,0.582545459270477,0.849254310131073,-0,0.527984023094177,0.72992992401123,-0,0.683521926403046,0.527990758419037,-0,0.849250078201294,0.683518946170807,-0,0.72993278503418,0.72992992401123,-0,0.683521926403046,0.582551777362823,-0,0.812793731689453,0.352126657962799,-0,0.935952425003052,0.527990758419037,-0,0.849250078201294,0.582551777362823,-0,0.812793731689453,0.412774741649628,-0,0.910833060741425,0.195093780755997,-0,0.98078453540802,0.352126657962799,-0,0.935952425003052,0.412774741649628,-0,0.910833060741425,0.195093467831612,-0,0.980784714221954,0.0981049463152885,-0,0.995176076889038,0.0980764552950859,-0,0.995178878307343,0.195093780755997,-0,0.98078453540802,0.195093467831612,-0,0.980784714221954,
- -0.412792801856995,-0,0.91082501411438,-0.195093303918839,-0,0.980784595012665,-0.19509269297123,-0,0.980784833431244,-0.352138936519623,-0,0.935947775840759,-0.582540333271027,-0,0.812801718711853,-0.412792801856995,-0,0.91082501411438,-0.352138936519623,-0,0.935947775840759,-0.527987778186798,-0,0.849251925945282,-0.729932129383087,-0,0.683519661426544,-0.582540333271027,-0,0.812801718711853,-0.527987778186798,-0,0.849251925945282,-0.683516979217529,-0,0.729934632778168,-0.849255442619324,-0,0.527982115745544,-0.729932129383087,-0,0.683519661426544,-0.683516979217529,-0,0.729934632778168,-0.812798976898193,-0,0.582544326782227,-0.93593817949295,-0,0.352164328098297,-0.849255442619324,-0,0.527982115745544,-0.812798976898193,-0,0.582544326782227,-0.910825312137604,-0,0.412792176008224,-0.986658573150635,-0,0.162802919745445,-0.93593817949295,-0,0.352164328098297,-0.910825312137604,-0,0.412792176008224,-0.973855376243591,-0,0.227168574929237,-0.99518495798111,-0,0.098015084862709,-0.986658573150635,-0,0.162802919745445,-0.973855376243591,-0,0.227168574929237,-0.99518495798111,-0,0.0980149284005165,-0.973853886127472,0,-0.227174922823906,-0.995184779167175,0,-0.0980166643857956,-0.995184779167175,0,-0.0980166494846344,-0.986657679080963,0,-0.162808805704117,-0.910828948020935,0,-0.412783861160278,-0.973853886127472,0,-0.227174922823906,-0.986657679080963,0,-0.162808805704117,-0.935940086841583,0,-0.352159172296524,-0.81279045343399,0,-0.582556307315826,-0.910828948020935,0,-0.412783861160278,-0.935940086841583,0,-0.352159172296524,-0.849252581596375,0,-0.527986705303192,-0.683529794216156,0,-0.729922592639923,-0.81279045343399,0,-0.582556307315826,-0.849252581596375,0,-0.527986705303192,-0.729931175708771,0,-0.683520615100861,-0.527975142002106,0,-0.849259853363037,-0.683529794216156,0,-0.729922592639923,-0.729931175708771,0,-0.683520615100861,-0.582549512386322,0,-0.812795281410217,-0.352144509553909,0,-0.935945630073547,-0.527975142002106,0,-0.849259853363037,-0.582549512386322,0,-0.812795281410217,-0.412775605916977,0,-0.910832762718201,
- -0.162834987044334,0,-0.98665326833725,-0.352144509553909,0,-0.935945630073547,-0.412775605916977,0,-0.910832762718201,-0.22718071937561,0,-0.973852574825287,-0.0980476513504982,0,-0.995181739330292,-0.162834987044334,0,-0.98665326833725,-0.22718071937561,0,-0.973852574825287,-0.098076730966568,0,-0.995178878307343,0.19509269297123,0,-0.980784833431244,0.0980768203735352,0,-0.995178937911987,0.0980476513504982,0,-0.995181739330292,0.195093303918839,0,-0.980784595012665,0.195121645927429,0,-0.980778992176056,0.0980767980217934,0,-0.995178937911987,0.0980476513504982,0,-0.995181739330292,0.19510792195797,0,-0.980781853199005,0.412776648998261,0,-0.910832285881042,0.352140963077545,0,-0.935947000980377,0.195121645927429,0,-0.980778992176056,0.19510792195797,0,-0.980781853199005,0.582553386688232,0,-0.812792420387268,0.527985870838165,0,-0.849253177642822,0.352140963077545,0,-0.935947000980377,0.412776648998261,0,-0.910832285881042,0.729923486709595,0,-0.68352884054184,0.683519244194031,0,-0.729932367801666,0.527985870838165,0,-0.849253177642822,0.582553386688232,0,-0.812792420387268,0.849261105060577,0,-0.527973175048828,0.81279730796814,0,-0.582546651363373,0.683519244194031,0,-0.729932367801666,0.729923486709595,0,-0.68352884054184,0.935936689376831,0,-0.352168321609497,0.910827457904816,0,-0.412787318229675,0.81279730796814,0,-0.582546651363373,0.849261105060577,0,-0.527973175048828,0.98665851354599,0,-0.162803575396538,0.973854243755341,0,-0.227173864841461,0.910827457904816,0,-0.412787318229675,0.935936689376831,0,-0.352168321609497,0.995184779167175,0,-0.0980166718363762,0.995184779167175,0,-0.0980166643857956,0.973854243755341,0,-0.227173864841461,0.98665851354599,0,-0.162803575396538,-0.973855316638947,0,-0.227169215679169,-0.98665863275528,0,-0.162803053855896,-0.995184779167175,0,-0.0980166494846344,-0.995184779167175,0,-0.0980166643857956,-0.910824835300446,0,-0.412793070077896,-0.935938656330109,0,-0.352163016796112,-0.98665863275528,0,-0.162803053855896,-0.973855316638947,0,-0.227169215679169,-0.812798202037811,0,-0.582545459270477,
- -0.849254310131073,0,-0.527984023094177,-0.935938656330109,0,-0.352163016796112,-0.910824835300446,0,-0.412793070077896,-0.683518588542938,0,-0.729933142662048,-0.729929625988007,0,-0.68352222442627,-0.849254310131073,0,-0.527984023094177,-0.812798202037811,0,-0.582545459270477,-0.527991116046906,0,-0.84924978017807,-0.582551658153534,0,-0.812793672084808,-0.729929625988007,0,-0.68352222442627,-0.683518588542938,0,-0.729933142662048,-0.352126210927963,0,-0.935952544212341,-0.412774831056595,0,-0.910833120346069,-0.582551658153534,0,-0.812793672084808,-0.527991116046906,0,-0.84924978017807,-0.195093780755997,0,-0.98078453540802,-0.195093438029289,0,-0.980784595012665,-0.412774831056595,0,-0.910833120346069,-0.352126210927963,0,-0.935952544212341,-0.0981063321232796,0,-0.995175957679749,-0.195093438029289,0,-0.980784595012665,-0.195093780755997,0,-0.98078453540802,-0.0980771481990814,0,-0.995178818702698,0.412792801856995,0,-0.91082501411438,0.352138936519623,0,-0.935947775840759,0.19509269297123,0,-0.980784833431244,0.195093303918839,0,-0.980784595012665,0.582540333271027,0,-0.812801718711853,0.527987778186798,0,-0.849251925945282,0.352138936519623,0,-0.935947775840759,0.412792801856995,0,-0.91082501411438,0.729932129383087,0,-0.683519661426544,0.683516979217529,0,-0.729934632778168,0.527987778186798,0,-0.849251925945282,0.582540333271027,0,-0.812801718711853,0.849255442619324,0,-0.527982115745544,0.812798976898193,0,-0.582544326782227,0.683516979217529,0,-0.729934632778168,0.729932129383087,0,-0.683519661426544,0.93593817949295,0,-0.352164328098297,0.910825312137604,0,-0.412792176008224,0.812798976898193,0,-0.582544326782227,0.849255442619324,0,-0.527982115745544,0.986658573150635,0,-0.162802919745445,0.973855376243591,0,-0.227168574929237,0.910825312137604,0,-0.412792176008224,0.93593817949295,0,-0.352164328098297,0.99518495798111,0,-0.098015084862709,0.99518495798111,0,-0.0980149284005165,0.973855376243591,0,-0.227168574929237,0.986658573150635,0,-0.162802919745445,0.973853886127472,0,0.227174922823906,0.986657679080963,0,0.162808805704117,
- 0.995184779167175,0,0.0980166494846344,0.995184779167175,0,0.0980166643857956,0.910828948020935,0,0.412783861160278,0.935940086841583,0,0.352159172296524,0.986657679080963,0,0.162808805704117,0.973853886127472,0,0.227174922823906,0.81279045343399,0,0.582556307315826,0.849252581596375,0,0.527986705303192,0.935940086841583,0,0.352159172296524,0.910828948020935,0,0.412783861160278,0.683529794216156,0,0.729922592639923,0.729931175708771,0,0.683520615100861,0.849252581596375,0,0.527986705303192,0.81279045343399,0,0.582556307315826,0.527975380420685,0,0.849259793758392,0.582549631595612,0,0.812795102596283,0.729931175708771,0,0.683520615100861,0.683529794216156,0,0.729922592639923,0.352144300937653,0,0.935945749282837,0.412775576114655,0,0.910832762718201,0.582549631595612,0,0.812795102596283,0.527975380420685,0,0.849259793758392,0.162834987044334,0,0.98665326833725,0.227180451154709,0,0.973852574825287,0.412775576114655,0,0.910832762718201,0.352144300937653,0,0.935945749282837,0.0980476513504982,0,0.995181739330292,0.098076730966568,0,0.995178878307343,0.227180451154709,0,0.973852574825287,0.162834987044334,0,0.98665326833725,-1,-0.000111042550997809,-3.63880681106821e-005,-0.996161222457886,4.31014854029854e-007,0.0875375121831894,-0.996161222457886,3.80557253265579e-007,0.0875374376773834,-1,5.11808480041509e-007,-3.85692544568883e-009,-0.996161282062531,0,0.0875370651483536,-0.99616140127182,0,0.0875357687473297,-0.999999821186066,-1.02745190827536e-011,-0.000420306751038879,-0.999999821186066,-1.0265602604087e-011,-0.000419710238929838,-1,-7.9300019706352e-007,-3.55878482238836e-009,-0.99616140127182,-4.72162298592593e-007,0.0875366106629372,-0.996161341667175,-1.24969730563862e-007,0.0875366777181625,-1,0.000121678960567806,-3.40919905283954e-005,-0.999999940395355,2.80818076134892e-005,-0.000415297487052158,-0.996161162853241,-1.38028468654738e-007,0.0875384658575058,-0.996161282062531,-3.20385353802521e-008,0.0875370353460312,-0.999583601951599,0.00288597610779107,0.0287120006978512,-0.0037408412899822,0.999772012233734,-0.02101881057024,
- 0.032815121114254,0.982306301593781,0.184384226799011,0.0109574198722839,0.998042821884155,0.0615685246884823,0.0102621093392372,0.998283505439758,0.0576616488397121,0.00446944683790207,-0.999674558639526,-0.0251134131103754,-0.0249042622745037,-0.989847660064697,0.1399335116148,0.0109237246215343,-0.99805474281311,-0.0613791905343533,0.00167709228117019,-0.999954164028168,-0.00942339468747377,-0.999559164047241,-0.00297234347090125,-0.0295383427292109,-0.996161222457886,9.83312631319677e-009,0.087537445127964,-0.996161222457886,4.31014854029854e-007,0.0875375121831894,-1,-0.000111042550997809,-3.63880681106821e-005,-0.0960547253489494,0.836360633373261,-0.539698421955109,-0.0113783460110426,0.997889697551727,-0.0639272108674049,0.032815121114254,0.982306301593781,0.184384226799011,-0.0037408412899822,0.999772012233734,-0.02101881057024,-1,0.000121678960567806,-3.40919905283954e-005,-0.996161341667175,-1.24969730563862e-007,0.0875366777181625,-0.996161162853241,-1.38028468654738e-007,0.0875384658575058,-0.999999940395355,2.80818076134892e-005,-0.000415297487052158,0.0960572063922882,-0.836348176002502,-0.539717257022858,0.0113801760599017,-0.997888624668121,-0.0639433860778809,-0.0249042622745037,-0.989847660064697,0.1399335116148,0.00446944683790207,-0.999674558639526,-0.0251134131103754,-0.996087729930878,6.52046480809076e-007,-0.0883705839514732,-1,-0.000111042550997809,-3.63880681106821e-005,-1,5.11808480041509e-007,-3.85692544568883e-009,-0.996087670326233,7.68359825542575e-007,-0.0883707702159882,-0.996087729930878,8.00775552534105e-008,-0.0883698314428329,-0.999559164047241,-0.00297234347090125,-0.0295383427292109,-1,-0.000111042550997809,-3.63880681106821e-005,-0.996087729930878,6.52046480809076e-007,-0.0883705839514732,-0.996087849140167,-5.35108624077907e-009,-0.0883696377277374,-0.999999940395355,2.80818076134892e-005,-0.000415297487052158,-0.999583601951599,0.00288597610779107,0.0287120006978512,-0.996087789535522,1.24644060406354e-007,-0.0883693993091583,-0.996087729930878,-1.16749859557785e-007,-0.0883696600794792,
- -1,0.000121678960567806,-3.40919905283954e-005,-0.999999940395355,2.80818076134892e-005,-0.000415297487052158,-0.996087849140167,-5.35108624077907e-009,-0.0883696377277374,-0.996087729930878,-1.42996486829361e-006,-0.0883697420358658,-1,-7.9300019706352e-007,-3.55878482238836e-009,-1,0.000121678960567806,-3.40919905283954e-005,-0.996087729930878,-1.16749859557785e-007,-0.0883696600794792,-0.999999821186066,-1.02745190827536e-011,-0.000420306751038879,-0.996087551116943,-4.34211600008894e-009,-0.0883719325065613,-0.996087551116943,-4.34212177324866e-009,-0.0883720517158508,-0.999999821186066,-1.0265602604087e-011,-0.000419710238929838,0.000861315056681633,-0.999999582767487,0.000106709507235792,0.000192470877664164,-1,2.38454813370481e-005,-0.000308629270875826,-0.99999988079071,-0.00036087995977141,0.00054058589739725,-0.999999821186066,-0.000250195007538423,-0.000254912883974612,-0.99999612569809,0.00278233573772013,-0.000427969469456002,-0.999988913536072,0.00467122346162796,-0.0123220467939973,-0.999911308288574,0.00505816750228405,-0.0120596559718251,-0.999924898147583,0.00218246364966035,-0.000373159855371341,-0.999997556209564,0.00217550667002797,-0.0199210420250893,-0.999800860881805,-0.00123124686069787,-0.0200510825961828,-0.999798834323883,-0.000472709245514125,-0.000442353601101786,-0.999996483325958,0.00257890298962593,-0.000301666674204171,-0.999998390674591,0.001758704893291,-0.00039586384082213,-0.999997317790985,0.0023078708909452,-0.00046875950647518,-0.999996185302734,0.00273285037837923,-0.00047129558515735,-0.999996185302734,0.00274763465858996,0.00176000152714551,-0.999998450279236,0.000218050598050468,0.000653689494356513,-0.99999988079071,8.0987076216843e-005,0.000203136572963558,-1,2.51669025601586e-005,0.00091231957776472,-0.999999523162842,0.000113028669147752,-4.44062679889612e-005,-0.99999988079071,0.000484687916468829,-0.000381308957003057,-0.999991357326508,0.00416193157434464,-0.000446549471234903,-0.999987959861755,0.00487402128055692,-0.000266283081145957,-0.999995708465576,0.00290644052438438,
- -0.00039586384082213,-0.999997317790985,0.0023078708909452,-0.000363814848242328,-0.999997675418854,0.0021210249979049,-0.000513073813635856,-0.999995350837708,0.00299119879491627,-0.00046875950647518,-0.999996185302734,0.00273285037837923,0.00091231957776472,-0.999999523162842,0.000113028669147752,0.000203136572963558,-1,2.51669025601586e-005,0.000348655943525955,-0.999999940395355,4.31955522799399e-005,0.00098832102958113,-0.999999523162842,0.00012244468962308,-0.000266283081145957,-0.999995708465576,0.00290644052438438,-0.000446549471234903,-0.999987959861755,0.00487402128055692,-0.000472004147013649,-0.999986708164215,0.00515185669064522,-0.000223279392230324,-0.999996960163116,0.00243706232868135,-0.000363814848242328,-0.999997675418854,0.0021210249979049,-0.000440280477050692,-0.999996602535248,0.00256681814789772,-0.000545396294910461,-0.999994814395905,0.00317963911220431,-0.000513073813635856,-0.999995350837708,0.00299119879491627,0.00098832102958113,-0.999999523162842,0.00012244468962308,0.000348655943525955,-0.999999940395355,4.31955522799399e-005,0.00027321811649017,-0.999999940395355,3.3849439205369e-005,0.00105864321812987,-0.999999463558197,0.00013115702313371,-0.000223279392230324,-0.999996960163116,0.00243706232868135,-0.000472004147013649,-0.999986708164215,0.00515185669064522,-0.000518235843628645,-0.999983847141266,0.00565646914765239,-0.000291944452328607,-0.999994874000549,0.00318653089925647,-0.000440280477050692,-0.999996602535248,0.00256681814789772,-0.00040919499588199,-0.999996960163116,0.00238559162244201,-0.000509775418322533,-0.999995470046997,0.00297197187319398,-0.000545396294910461,-0.999994814395905,0.00317963911220431,0.00105864321812987,-0.999999463558197,0.00013115702313371,0.00027321811649017,-0.999999940395355,3.3849439205369e-005,0.000259556603850797,-0.99999988079071,3.21566258207895e-005,0.000989259337075055,-0.999999523162842,0.000122559940791689,-0.000291944452328607,-0.999994874000549,0.00318653089925647,-0.000518235843628645,-0.999983847141266,0.00565646914765239,-0.000485730066429824,-0.999985814094543,0.00530166737735271,
- -0.000271613738732412,-0.999995529651642,0.00296462140977383,-0.00040919499588199,-0.999996960163116,0.00238559162244201,-0.000373159855371341,-0.999997556209564,0.00217550667002797,-0.000442353601101786,-0.999996483325958,0.00257890298962593,-0.000509775418322533,-0.999995470046997,0.00297197187319398,0.000989259337075055,-0.999999523162842,0.000122559940791689,0.000259556603850797,-0.99999988079071,3.21566258207895e-005,0.000192470877664164,-1,2.38454813370481e-005,0.000861315056681633,-0.999999582767487,0.000106709507235792,-0.000271613738732412,-0.999995529651642,0.00296462140977383,-0.000485730066429824,-0.999985814094543,0.00530166737735271,-0.000427969469456002,-0.999988913536072,0.00467122346162796,-0.000254912883974612,-0.99999612569809,0.00278233573772013,-0.862853109836578,0.502539932727814,0.0542046017944813,-0.929551064968109,0.364881485700607,0.0528802871704102,-0.777836441993713,0.623102426528931,0.0819387510418892,-0.773073077201843,0.629014611244202,0.0818454250693321,-0.903592884540558,0.427168250083923,0.0323588252067566,-0.903537452220917,0.425963640213013,0.0466355606913567,-0.557176947593689,0.829498410224915,0.0385514684021473,-0.556575000286102,0.830136358737946,0.0331349708139896,-0.904563546180725,0.422384232282639,0.0579332076013088,-0.520755887031555,0.852131724357605,0.0518171526491642,-0.522409558296204,0.851019382476807,0.0534250698983669,-0.904283285140991,0.419513553380966,0.0792465507984161,-0.0198302119970322,-0.999801814556122,-0.00176325091160834,-0.192999571561813,-0.980781078338623,-0.0286297220736742,-0.193674102425575,-0.980684101581573,-0.0273682586848736,-0.0199803058058023,-0.999799966812134,-0.000887270376551896,-0.029956704005599,-0.999543249607086,-0.00401183497160673,-0.0245594400912523,-0.999692857265472,-0.00335182691924274,-0.211426749825478,-0.976986408233643,-0.0282193720340729,-0.203331649303436,-0.978733599185944,-0.0271408334374428,-0.0118109546601772,-0.999930202960968,-0.000543537549674511,-0.0121722361072898,-0.999920129776001,0.00341539806686342,-0.165476843714714,-0.986194252967834,-0.00620446074754,
- -0.164775118231773,-0.986274659633636,-0.0105573367327452,-0.192999571561813,-0.980781078338623,-0.0286297220736742,-0.58943897485733,-0.804160058498383,-0.076734870672226,-0.593168795108795,-0.802211701869965,-0.0678755566477776,-0.193674102425575,-0.980684101581573,-0.0273682586848736,-0.203331649303436,-0.978733599185944,-0.0271408334374428,-0.211426749825478,-0.976986408233643,-0.0282193720340729,-0.671909809112549,-0.737185120582581,-0.0713816434144974,-0.531452834606171,-0.845048427581787,-0.0587455853819847,-0.164775118231773,-0.986274659633636,-0.0105573367327452,-0.165476843714714,-0.986194252967834,-0.00620446074754,-0.62123692035675,-0.783007383346558,-0.0310493875294924,-0.619422137737274,-0.784064710140228,-0.0394802540540695,-0.58943897485733,-0.804160058498383,-0.076734870672226,-0.900691092014313,-0.428096801042557,-0.0740849301218987,-0.903500616550446,-0.425523996353149,-0.0511485747992992,-0.593168795108795,-0.802211701869965,-0.0678755566477776,-0.531452834606171,-0.845048427581787,-0.0587455853819847,-0.671909809112549,-0.737185120582581,-0.0713816434144974,-0.935777187347412,-0.348081290721893,-0.0562186799943447,-0.868404269218445,-0.492624640464783,-0.0565242618322372,-0.619422137737274,-0.784064710140228,-0.0394802540540695,-0.62123692035675,-0.783007383346558,-0.0310493875294924,-0.89778059720993,-0.440021246671677,-0.0192718971520662,-0.896779417991638,-0.441099882125854,-0.0348942540585995,-0.900691092014313,-0.428096801042557,-0.0740849301218987,-0.999679148197174,0.0225087758153677,-0.0116177778691053,-0.999571859836578,0.0229666903614998,0.0181285031139851,-0.903500616550446,-0.425523996353149,-0.0511485747992992,-0.868404269218445,-0.492624640464783,-0.0565242618322372,-0.935777187347412,-0.348081290721893,-0.0562186799943447,-0.999917447566986,0.0126863876357675,0.00203560036607087,-0.999896883964539,0.0142726944759488,0.0015462733572349,-0.896779417991638,-0.441099882125854,-0.0348942540585995,-0.89778059720993,-0.440021246671677,-0.0192718971520662,-0.999776780605316,0.0142285777255893,0.0156188644468784,
- -0.999896705150604,0.014140254817903,-0.00259577808901668,-0.999679148197174,0.0225087758153677,-0.0116177778691053,-0.904563546180725,0.422384232282639,0.0579332076013088,-0.904283285140991,0.419513553380966,0.0792465507984161,-0.999571859836578,0.0229666903614998,0.0181285031139851,-0.999896883964539,0.0142726944759488,0.0015462733572349,-0.999917447566986,0.0126863876357675,0.00203560036607087,-0.929551064968109,0.364881485700607,0.0528802871704102,-0.862853109836578,0.502539932727814,0.0542046017944813,-0.999896705150604,0.014140254817903,-0.00259577808901668,-0.999776780605316,0.0142285777255893,0.0156188644468784,-0.903537452220917,0.425963640213013,0.0466355606913567,-0.903592884540558,0.427168250083923,0.0323588252067566,-0.000864440575242043,0.999999582767487,0.000105627215816639,-0.000196760578546673,1,2.40424542425899e-005,0.000351631984813139,0.999999940395355,-4.2966228647856e-005,-0.000507548218593001,0.99999988079071,6.20177743257955e-005,0.000249332573730499,0.9999960064888,0.00277183880098164,0.000421303266193718,0.999988973140717,0.00468364357948303,0.000557488587219268,0.999980747699738,0.00619761738926172,0.000296027195872739,0.999994575977325,0.00329094310291111,0.00036909178015776,0.999997496604919,0.00217297626659274,0.000362089078407735,0.999997735023499,0.00213175034150481,0.000492321676574647,0.999995768070221,0.00289847678504884,0.000439805036876351,0.999996542930603,0.0025892904959619,-0.517189919948578,0.852301895618439,0.0780785754323006,-0.202887177467346,0.978658974170685,0.0326103270053864,-0.20322647690773,0.978537023067474,0.0341207571327686,-0.518945217132568,0.851161539554596,0.0788664817810059,-0.364703088998795,0.930138945579529,0.0428147055208683,-0.382240474224091,0.922996342182159,0.0443845205008984,-0.186885327100754,0.982066571712494,0.0248856041580439,-0.178061470389366,0.983739376068115,0.0234701838344336,-0.555802524089813,0.830152153968811,0.043942641466856,-0.556413590908051,0.829469680786133,0.0488262362778187,-0.169004455208778,0.985420048236847,0.01962024345994,-0.168816074728966,0.985502541065216,0.0169109757989645,
- -0.202887177467346,0.978658974170685,0.0326103270053864,-0.000927224173210561,0.999996840953827,0.00231115170754492,-0.000773874926380813,0.999994516372681,0.00321420351974666,-0.20322647690773,0.978537023067474,0.0341207571327686,-0.178061470389366,0.983739376068115,0.0234701838344336,-0.186885327100754,0.982066571712494,0.0248856041580439,-0.00138446432538331,0.999998986721039,0.000174765969859436,-0.0028451073449105,0.999995946884155,0.000353168055880815,-0.168816074728966,0.985502541065216,0.0169109757989645,-0.169004455208778,0.985420048236847,0.01962024345994,-0.00113284273538738,0.999985098838806,0.00533797033131123,-0.00138077768497169,0.999995708465576,0.0025804964825511,-0.000927224173210561,0.999996840953827,0.00231115170754492,0.000441000302089378,0.999996483325958,0.00259632663801312,0.000543182715773582,0.999994695186615,0.00319791119545698,-0.000773874926380813,0.999994516372681,0.00321420351974666,-0.0028451073449105,0.999995946884155,0.000353168055880815,-0.00138446432538331,0.999998986721039,0.000174765969859436,-0.000270164076937363,0.999999940395355,3.3011740015354e-005,-0.00106503861024976,0.999999344348907,0.000130138621898368,-0.00138077768497169,0.999995708465576,0.0025804964825511,-0.00113284273538738,0.999985098838806,0.00533797033131123,0.000512337312102318,0.999983727931976,0.00569567224010825,0.000290730269625783,0.99999463558197,0.00323205930180848,0.000441000302089378,0.999996483325958,0.00259632663801312,0.000404409802285954,0.999997079372406,0.00238090567290783,0.000503269606269896,0.999995470046997,0.00296292873099446,0.000543182715773582,0.999994695186615,0.00319791119545698,-0.00106503861024976,0.999999344348907,0.000130138621898368,-0.000270164076937363,0.999999940395355,3.3011740015354e-005,-0.000257947511272505,0.99999988079071,3.15189936372917e-005,-0.000986253144219518,0.999999523162842,0.000120511751447339,0.000290730269625783,0.99999463558197,0.00323205930180848,0.000512337312102318,0.999983727931976,0.00569567224010825,0.000475498294690624,0.999985873699188,0.00528613291680813,
- 0.000266261835349724,0.999995529651642,0.00296004302799702,0.000404409802285954,0.999997079372406,0.00238090567290783,0.00036909178015776,0.999997496604919,0.00217297626659274,0.000439805036876351,0.999996542930603,0.0025892904959619,0.000503269606269896,0.999995470046997,0.00296292873099446,-0.000986253144219518,0.999999523162842,0.000120511751447339,-0.000257947511272505,0.99999988079071,3.15189936372917e-005,-0.000196760578546673,1,2.40424542425899e-005,-0.000864440575242043,0.999999582767487,0.000105627215816639,0.000266261835349724,0.999995529651642,0.00296004302799702,0.000475498294690624,0.999985873699188,0.00528613291680813,0.000421303266193718,0.999988973140717,0.00468364357948303,0.000249332573730499,0.9999960064888,0.00277183880098164,0.000293246877845377,0.999998569488525,0.00172645121347159,0.000405648635933176,0.999997019767761,0.00238820211961865,0.00052075827261433,0.999995112419128,0.00306589482352138,0.000458141206763685,0.999996244907379,0.00269724428653717,-0.0017276150174439,0.999998509883881,0.000211098842555657,-0.000641660648398101,0.99999988079071,7.84051007940434e-005,-0.000290593336103484,0.999999940395355,3.55078736902215e-005,-0.00101828703191131,0.999999463558197,0.000124425438116305,4.27933700848371e-005,0.99999988079071,0.000475735170766711,0.000367459550034255,0.999991655349731,0.0040850592777133,0.000482715957332402,0.99998539686203,0.00536636728793383,0.000259665917837992,0.999995827674866,0.00288671301677823,0.000405648635933176,0.999997019767761,0.00238820211961865,0.000469620164949447,0.999996066093445,0.00276482454501092,0.000638575933407992,0.999992728233337,0.00375952827744186,0.00052075827261433,0.999995112419128,0.00306589482352138,-0.00101828703191131,0.999999463558197,0.000124425438116305,-0.000290593336103484,0.999999940395355,3.55078736902215e-005,0.000455464818514884,1,-5.56537670490798e-005,-0.000658037606626749,0.99999988079071,8.04063602117822e-005,0.000259665917837992,0.999995827674866,0.00288671301677823,0.000482715957332402,0.99998539686203,0.00536636728793383,
- 0.000711939646862447,0.999968409538269,0.0079146521165967,0.000378011842258275,0.999991178512573,0.00420236773788929,0,-1,0,5.13338989094336e-007,-1,6.74485747254039e-008,1.02667797818867e-006,-1,1.34897149450808e-007,2.56669494547168e-007,-1,3.37242553882788e-008,-3.96143576608665e-007,-1,-5.20501259870798e-008,-3.96143576608665e-007,-1,-5.20501259870798e-008,-0,-1,0,-3.96143576608665e-007,-1,-5.20502538847722e-008,-3.96143576608665e-007,-1,-5.20502538847722e-008,-0,-1,0,-3.65451398920413e-007,-1,-4.80173554251451e-008,-0,-1,0,-0,-1,0,-3.65451398920413e-007,-1,-4.80173554251451e-008,-3.65451398920413e-007,-1,-4.80174513484144e-008,-3.65451398920413e-007,-1,-4.80174513484144e-008,-3.65451398920413e-007,-1,-4.80174513484144e-008,-3.65451398920413e-007,-1,-4.80174513484144e-008,4.31958469562232e-005,-1,-0.000172973494045436,3.5765755455941e-005,-1,-0.00017703854246065,3.5765755455941e-005,-1,-0.00017703854246065,4.31958469562232e-005,-1,-0.000172973494045436,0.000278471183264628,-0.999998927116394,-0.00146810931619257,0.00028920077602379,-0.999998807907104,-0.00150765292346478,0.00028920077602379,-0.999998807907104,-0.00150765292346478,0.000278471183264628,-0.999998927116394,-0.00146810931619257,0.0003185318200849,-0.999998450279236,-0.00174103211611509,0.000224988645641133,-0.999998450279236,-0.00175997533369809,0.000224988645641133,-0.999998450279236,-0.00175997533369809,0.0003185318200849,-0.999998450279236,-0.00174103211611509,-9.26937209442258e-005,-0.999995648860931,0.0029505118727684,-0.000144963967613876,-0.999994874000549,0.00322550628334284,-0.000144963967613876,-0.999994874000549,0.00322550628334284,-9.26937209442258e-005,-0.999995648860931,0.0029505118727684,-5.048772891314e-006,-0.999972939491272,0.00736288167536259,-4.11838773288764e-005,-0.999972879886627,0.00736780650913715,-4.11838773288764e-005,-0.999972879886627,0.00736780650913715,-5.048772891314e-006,-0.999972939491272,0.00736288167536259,0.000106371415313333,-0.999995172023773,0.00310079636983573,0.00016469563706778,-0.999993324279785,0.00365757336840034,
- 0.00016469563706778,-0.999993324279785,0.00365757336840034,0.000106371415313333,-0.999995172023773,0.00310079636983573,-0.000323791202390566,-0.999997437000275,-0.00228913989849389,-0.000281134591205046,-0.99999725818634,-0.00231580133549869,-0.000281134591205046,-0.99999725818634,-0.00231580133549869,-0.000323791202390566,-0.999997437000275,-0.00228913989849389,-0.0001904379168991,-0.999999225139618,-0.00124072306789458,-0.000256704341154546,-0.999998927116394,-0.00149970431812108,-0.000256704341154546,-0.999998927116394,-0.00149970431812108,-0.0001904379168991,-0.999999225139618,-0.00124072306789458,8.84767905517947e-006,-1,4.89811282022856e-006,1.44383957376704e-005,-1,4.18261288359645e-006,1.44383957376704e-005,-1,4.18261288359645e-006,8.84767905517947e-006,-1,4.89811282022856e-006,9.55803214353068e-010,-1,-1.23961285680707e-010,4.0264103517984e-007,-1,-5.22194483210114e-008,4.0264103517984e-007,-1,-5.22194483210114e-008,9.55803214353068e-010,-1,-1.23961285680707e-010,-3.72941116211223e-007,-1,4.83675961504559e-008,-3.82044561320072e-007,-1,4.95482410656223e-008,-3.82044561320072e-007,-1,4.95482410656223e-008,-3.72941116211223e-007,-1,4.83675961504559e-008,1.93736966025426e-007,-1,-2.5126208669235e-008,-8.30806357043912e-008,-1,1.0774925840451e-008,-8.30806357043912e-008,-1,1.0774925840451e-008,1.93736966025426e-007,-1,-2.5126208669235e-008,9.48987946003399e-008,-1,-1.23076873137506e-008,2.84696398011874e-007,-1,-3.69230690466793e-008,2.84696398011874e-007,-1,-3.69230690466793e-008,9.48987946003399e-008,-1,-1.23076873137506e-008,2.18169915910948e-007,-1,-2.82951031493894e-008,1.09084957955474e-007,-1,-1.41475515746947e-008,1.09084957955474e-007,-1,-1.41475515746947e-008,2.18169915910948e-007,-1,-2.82951031493894e-008,3.27254895182705e-007,-1,-4.24426147560553e-008,3.27254895182705e-007,-1,-4.24426147560553e-008,0,-1,0,2.56669494547168e-007,-1,3.37242553882788e-008,-3.96143576608665e-007,-1,-5.20501259870798e-008,-3.96143576608665e-007,-1,-5.20501259870798e-008,-0.000704172009136528,-0.999999642372131,9.78001044131815e-005,
- -0.000157355476403609,-0.999999940395355,2.18545701500261e-005,0.000279225088888779,-1,-7.66414086683653e-005,-0.000415565707953647,-1,2.00786998902913e-005,-0.000250314915319905,-0.99999612569809,-0.00278276414610446,-0.00042025011498481,-0.999988973140717,-0.00467194290831685,0.009893330745399,-0.999926090240479,-0.0070679928176105,0.0101512251421809,-0.999939680099487,-0.00419191457331181,-0.000369699235307053,-0.999997556209564,-0.00217615999281406,0.0170743223279715,-0.999841451644897,-0.00505759986117482,0.0169455204159021,-0.99983948469162,-0.00581633904948831,-0.000438251241575927,-0.999996483325958,-0.00257967761717737,-0.000300545216305181,-0.999998390674591,-0.00176909740548581,-0.000393938185879961,-0.999997198581696,-0.00231883814558387,-0.000465599267045036,-0.99999612569809,-0.00274065672419965,-0.000469543447252363,-0.999996066093445,-0.00276387063786387,-0.00144696584902704,-0.999998927116394,0.000200964335817844,-0.000537423533387482,-0.99999988079071,7.46409932617098e-005,-0.000165383637067862,-0.999999940395355,2.29695870075375e-005,-0.000747868907637894,-0.999999761581421,0.000103869053418748,-4.38498645962682e-005,-0.99999988079071,-0.000487480690935627,-0.000376531097572297,-0.999991178512573,-0.00418591080233455,-0.000439813156845048,-0.999987900257111,-0.00488942535594106,-0.000262879737420008,-0.999995589256287,-0.0029224471654743,-0.000393938185879961,-0.999997198581696,-0.00231883814558387,-0.000360440782969818,-0.999997675418854,-0.00212166202254593,-0.000508315570186824,-0.999995350837708,-0.00299209728837013,-0.000465599267045036,-0.99999612569809,-0.00274065672419965,-0.000747868907637894,-0.999999761581421,0.000103869053418748,-0.000165383637067862,-0.999999940395355,2.29695870075375e-005,-0.000285045389318839,-0.99999988079071,3.95890165236779e-005,-0.000808006327133626,-0.999999642372131,0.00011222133616684,-0.000262879737420008,-0.999995589256287,-0.0029224471654743,-0.000439813156845048,-0.999987900257111,-0.00488942535594106,-0.000463490170659497,-0.999986588954926,-0.00515264924615622,
- -0.000219251931412146,-0.999996960163116,-0.00243743718601763,-0.000360440782969818,-0.999997675418854,-0.00212166202254593,-0.000436197791714221,-0.999996602535248,-0.00256758881732821,-0.000540338922291994,-0.999994814395905,-0.00318059418350458,-0.000508315570186824,-0.999995350837708,-0.00299209728837013,-0.000808006327133626,-0.999999642372131,0.00011222133616684,-0.000285045389318839,-0.99999988079071,3.95890165236779e-005,-0.00022337086556945,-1,3.10231662297156e-005,-0.000865498732309788,-0.999999582767487,0.00012020598660456,-0.000219251931412146,-0.999996960163116,-0.00243743718601763,-0.000463490170659497,-0.999986588954926,-0.00515264924615622,-0.000508888158947229,-0.999983847141266,-0.00565733900293708,-0.000286678463453427,-0.999994874000549,-0.00318702147342265,-0.000436197791714221,-0.999996602535248,-0.00256758881732821,-0.000405400205636397,-0.999996960163116,-0.00238630804233253,-0.000505047850310802,-0.999995470046997,-0.0029728643130511,-0.000540338922291994,-0.999994814395905,-0.00318059418350458,-0.000865498732309788,-0.999999582767487,0.00012020598660456,-0.00022337086556945,-1,3.10231662297156e-005,-0.000212201775866561,-1,2.94719538942445e-005,-0.000808773387689143,-0.999999642372131,0.000112327696115244,-0.000286678463453427,-0.999994874000549,-0.00318702147342265,-0.000508888158947229,-0.999983847141266,-0.00565733900293708,-0.000476968270959333,-0.999985814094543,-0.00530248321592808,-0.000266714283498004,-0.999995529651642,-0.00296507752500474,-0.000405400205636397,-0.999996960163116,-0.00238630804233253,-0.000369699235307053,-0.999997556209564,-0.00217615999281406,-0.000438251241575927,-0.999996483325958,-0.00257967761717737,-0.000505047850310802,-0.999995470046997,-0.0029728643130511,-0.000808773387689143,-0.999999642372131,0.000112327696115244,-0.000212201775866561,-1,2.94719538942445e-005,-0.000157355476403609,-0.999999940395355,2.18545701500261e-005,-0.000704172009136528,-0.999999642372131,9.78001044131815e-005,-0.000266714283498004,-0.999995529651642,-0.00296507752500474,-0.000476968270959333,-0.999985814094543,-0.00530248321592808,
- -0.00042025011498481,-0.999988973140717,-0.00467194290831685,-0.000250314915319905,-0.99999612569809,-0.00278276414610446,0.901458561420441,0.429299920797348,0.0554441027343273,0.81931084394455,0.571268737316132,0.0488032512366772,0.717276692390442,0.691867172718048,0.0826676711440086,0.712250828742981,0.697393715381622,0.0796290785074234,0.883842885494232,0.467163175344467,0.0240898784250021,0.882883727550507,0.46853905916214,0.0314282663166523,0.513656318187714,0.857876360416412,0.0143301021307707,0.514242887496948,0.857412993907928,0.0199302528053522,0.886010527610779,0.460519194602966,0.0539202615618706,0.47967129945755,0.876354813575745,0.0437920726835728,0.478131234645844,0.877277433872223,0.0421281307935715,0.882847547531128,0.46386855840683,0.0735263600945473,0.0171705186367035,-0.999842524528503,-0.00448886398226023,0.172313868999481,-0.984604179859161,-0.0293689463287592,0.172019645571709,-0.984671711921692,-0.0288250595331192,0.0170224476605654,-0.99984085559845,-0.00536160124465823,0.0244859699159861,-0.999694347381592,-0.0034259578678757,0.02004224807024,-0.999795198440552,-0.00281142769381404,0.131929859519005,-0.991103231906891,-0.0175764709711075,0.228086397051811,-0.973165988922119,-0.0304030366241932,0.0103966752067208,-0.999944925308228,-0.00145280524156988,0.0100417891517282,-0.999935030937195,-0.00541194854304194,0.146421670913696,-0.989050328731537,-0.0184418987482786,0.146948426961899,-0.989024043083191,-0.0154169192537665,0.172313868999481,-0.984604179859161,-0.0293689463287592,0.547218918800354,-0.833709180355072,-0.0740292519330978,0.545816361904144,-0.835296750068665,-0.0660598576068878,0.172019645571709,-0.984671711921692,-0.0288250595331192,0.228086397051811,-0.973165988922119,-0.0304030366241932,0.131929859519005,-0.991103231906891,-0.0175764709711075,0.466655224561691,-0.883043885231018,-0.0496618747711182,0.59384948015213,-0.802152812480927,-0.0623986199498177,0.146948426961899,-0.989024043083191,-0.0154169192537665,0.146421670913696,-0.989050328731537,-0.0184418987482786,0.574768602848053,-0.817182958126068,-0.0430462062358856,
- 0.575907170772552,-0.816317558288574,-0.0442351773381233,0.547218918800354,-0.833709180355072,-0.0740292519330978,0.881015002727509,-0.467194616794586,-0.0744437128305435,0.881318926811218,-0.469620883464813,-0.0522805936634541,0.545816361904144,-0.835296750068665,-0.0660598576068878,0.59384948015213,-0.802152812480927,-0.0623986199498177,0.466655224561691,-0.883043885231018,-0.0496618747711182,0.825459897518158,-0.562276840209961,-0.0496070198714733,0.912090182304382,-0.406233012676239,-0.0553736761212349,0.575907170772552,-0.816317558288574,-0.0442351773381233,0.574768602848053,-0.817182958126068,-0.0430462062358856,0.874957382678986,-0.483108788728714,-0.0324894450604916,0.875188410282135,-0.482051014900208,-0.0408928357064724,0.881015002727509,-0.467194616794586,-0.0744437128305435,0.999582290649414,0.0254318322986364,-0.0137274581938982,0.999553620815277,0.0255568530410528,0.0154725331813097,0.881318926811218,-0.469620883464813,-0.0522805936634541,0.912090182304382,-0.406233012676239,-0.0553736761212349,0.825459897518158,-0.562276840209961,-0.0496070198714733,0.999847173690796,0.0170474424958229,0.00387666886672378,0.999815762042999,0.0189438387751579,0.00311500020325184,0.875188410282135,-0.482051014900208,-0.0408928357064724,0.874957382678986,-0.483108788728714,-0.0324894450604916,0.999872803688049,0.015883119776845,0.00147855805698782,0.999828577041626,0.0158310700207949,-0.00960717815905809,0.999582290649414,0.0254318322986364,-0.0137274581938982,0.886010527610779,0.460519194602966,0.0539202615618706,0.882847547531128,0.46386855840683,0.0735263600945473,0.999553620815277,0.0255568530410528,0.0154725331813097,0.999815762042999,0.0189438387751579,0.00311500020325184,0.999847173690796,0.0170474424958229,0.00387666886672378,0.81931084394455,0.571268737316132,0.0488032512366772,0.901458561420441,0.429299920797348,0.0554441027343273,0.999828577041626,0.0158310700207949,-0.00960717815905809,0.999872803688049,0.015883119776845,0.00147855805698782,0.882883727550507,0.46853905916214,0.0314282663166523,0.883842885494232,0.467163175344467,0.0240898784250021,
- 0.00070643238723278,0.999999642372131,9.93170760921203e-005,0.000160795461852103,0.999999940395355,2.26061729335925e-005,-0.000287358328932896,1,-4.03996018576436e-005,0.000414775247918442,1,5.83131040912122e-005,0.000254004233283922,0.99999612569809,-0.00277142412960529,0.000429197039920837,0.999988973140717,-0.00468294229358435,0.000567933777347207,0.999980747699738,-0.00619668932631612,0.00030157357105054,0.999994575977325,-0.0032904502004385,0.000372619193512946,0.999997496604919,-0.00217241141945124,0.000365550076821819,0.999997735023499,-0.00213119620457292,0.000497027474921197,0.999995768070221,-0.00289772334508598,0.000444008212070912,0.999996542930603,-0.00258861761540174,0.476117223501205,0.876599550247192,0.0698973685503006,0.182378739118576,0.982877373695374,0.0262687746435404,0.181908845901489,0.98296445608139,0.0262644067406654,0.474461436271667,0.877555966377258,0.0691508874297142,0.290557354688644,0.95635724067688,0.0309390239417553,0.305904269218445,0.951455295085907,0.0339928604662418,0.10983794927597,0.993844151496887,0.0144697111099958,0.20657642185688,0.978038847446442,0.0276804305613041,0.512846171855927,0.857552409172058,0.0399110466241837,0.512261092662811,0.858113527297974,0.0350689180195332,0.151594147086143,0.988419473171234,0.00679393019527197,0.15181976556778,0.988374590873718,0.00815026368945837,0.182378739118576,0.982877373695374,0.0262687746435404,0.0014932518824935,0.999997019767761,-0.00189812702592462,0.00164804945234209,0.99999463558197,-0.00280086952261627,0.181908845901489,0.98296445608139,0.0262644067406654,0.20657642185688,0.978038847446442,0.0276804305613041,0.10983794927597,0.993844151496887,0.0144697111099958,0.00111924821976572,0.999999403953552,0.000142597011290491,0.0023056473582983,0.99999725818634,0.00030935593531467,0.15181976556778,0.988374590873718,0.00815026368945837,0.151594147086143,0.988419473171234,0.00679393019527197,0.00187157210893929,0.99998539686203,-0.00506527628749609,0.0016189404996112,0.9999960064888,-0.00230707274749875,0.0014932518824935,0.999997019767761,-0.00189812702592462,
- 0.000445214885985479,0.999996483325958,-0.00259565212763846,0.000548373907804489,0.99999475479126,-0.00319708068855107,0.00164804945234209,0.99999463558197,-0.00280086952261627,0.0023056473582983,0.99999725818634,0.00030935593531467,0.00111924821976572,0.999999403953552,0.000142597011290491,0.000220781861571595,1,3.10396681015845e-005,0.000870364019647241,0.999999582767487,0.000122364275739528,0.0016189404996112,0.9999960064888,-0.00230707274749875,0.00187157210893929,0.99998539686203,-0.00506527628749609,0.000521936861332506,0.999983608722687,-0.00569481868296862,0.000296177691780031,0.99999463558197,-0.00323157524690032,0.000445214885985479,0.999996483325958,-0.00259565212763846,0.000408274616347626,0.999997079372406,-0.002380286809057,0.000508079247083515,0.999995470046997,-0.00296215899288654,0.000548373907804489,0.99999475479126,-0.00319708068855107,0.000870364019647241,0.999999582767487,0.000122364275739528,0.000220781861571595,1,3.10396681015845e-005,0.0002107982581947,1,2.96360467473278e-005,0.000805979419965297,0.999999642372131,0.000113312315079384,0.000296177691780031,0.99999463558197,-0.00323157524690032,0.000521936861332506,0.999983608722687,-0.00569481868296862,0.000484407646581531,0.999985873699188,-0.00528534129261971,0.000271250755758956,0.999995529651642,-0.0029595997184515,0.000408274616347626,0.999997079372406,-0.002380286809057,0.000372619193512946,0.999997496604919,-0.00217241141945124,0.000444008212070912,0.999996542930603,-0.00258861761540174,0.000508079247083515,0.999995470046997,-0.00296215899288654,0.000805979419965297,0.999999642372131,0.000113312315079384,0.0002107982581947,1,2.96360467473278e-005,0.000160795461852103,0.999999940395355,2.26061729335925e-005,0.00070643238723278,0.999999642372131,9.93170760921203e-005,0.000271250755758956,0.999995529651642,-0.0029595997184515,0.000484407646581531,0.999985873699188,-0.00528534129261971,0.000429197039920837,0.999988973140717,-0.00468294229358435,0.000254004233283922,0.99999612569809,-0.00277142412960529,0.000296049838652834,0.999998569488525,-0.00172600243240595,
- 0.000409526139264926,0.999997019767761,-0.00238758139312267,0.000525736075360328,0.999995112419128,-0.00306509807705879,0.000462520314613357,0.999996244907379,-0.00269654323346913,0.00141183042433113,0.999998986721039,0.000198488720343448,0.000524373725056648,0.999999940395355,7.37215159460902e-005,0.00023747691011522,0.99999988079071,3.33867465087678e-005,0.000832157908007503,0.999999582767487,0.000116992603580002,4.35951551480684e-005,0.99999988079071,-0.000475663953693584,0.00037434438127093,0.999991655349731,-0.00408444786444306,0.000491759972646832,0.99998539686203,-0.00536556355655193,0.00026453091413714,0.999995827674866,-0.00288628088310361,0.000409526139264926,0.999997019767761,-0.00238758139312267,0.000474108703201637,0.999996066093445,-0.00276410579681396,0.000644679297693074,0.999992728233337,-0.00375855108723044,0.000525736075360328,0.999995112419128,-0.00306509807705879,0.000832157908007503,0.999999582767487,0.000116992603580002,0.00023747691011522,0.99999988079071,3.33867465087678e-005,-0.000372211856301874,0.999999940395355,-5.23290254932363e-005,0.000537757179699838,0.99999988079071,7.5602947617881e-005,0.00026453091413714,0.999995827674866,-0.00288628088310361,0.000491759972646832,0.99998539686203,-0.00536556355655193,0.000725278106983751,0.999968409538269,-0.00791346654295921,0.000385094055673108,0.999991178512573,-0.00420173816382885,0,-1,0,-4.99768873396533e-007,-1,6.48150120241553e-008,-9.99537746793067e-007,-1,1.29630024048311e-007,-2.49884436698267e-007,-1,3.24074349578041e-008,3.83521040703272e-007,-1,-4.97387944164984e-008,3.83521040703272e-007,-1,-4.97387944164984e-008,0,-1,0,3.83521012281562e-007,-1,-4.97388796816267e-008,3.83521012281562e-007,-1,-4.97388796816267e-008,0,-1,0,3.53806797193101e-007,-1,-4.58851374673941e-008,0,-1,0,0,-1,0,3.53806797193101e-007,-1,-4.58851374673941e-008,3.53806797193101e-007,-1,-4.58851978635266e-008,3.53806797193101e-007,-1,-4.58851978635266e-008,3.53806797193101e-007,-1,-4.58851978635266e-008,3.53806797193101e-007,-1,-4.58851978635266e-008,-5.59216823603492e-005,-1,-0.000167680365848355,
- -6.30416325293481e-005,-1,-0.000169688544701785,-6.30416325293481e-005,-1,-0.000169688544701785,-5.59216823603492e-005,-1,-0.000167680365848355,-0.000210609752684832,-0.999998986721039,-0.00143922725692391,-0.000256195082329214,-0.999998927116394,-0.00145411433186382,-0.000256195082329214,-0.999998927116394,-0.00145411433186382,-0.000210609752684832,-0.999998986721039,-0.00143922725692391,-0.000325778033584356,-0.999998569488525,-0.00165751983877271,-0.000355943368049338,-0.999998509883881,-0.00170484220143408,-0.000355943368049338,-0.999998509883881,-0.00170484220143408,-0.000325778033584356,-0.999998569488525,-0.00165751983877271,-0.000176133427885361,-0.999995648860931,0.00294518121518195,0.000222643851884641,-0.999995291233063,0.00306423427537084,0.000222643851884641,-0.999995291233063,0.00306423427537084,-0.000176133427885361,-0.999995648860931,0.00294518121518195,3.33484831571695e-006,-0.99997466802597,0.00712676998227835,4.49901162937749e-005,-0.99997466802597,0.00713185407221317,4.49901162937749e-005,-0.99997466802597,0.00713185407221317,3.33484831571695e-006,-0.99997466802597,0.00712676998227835,-7.53590720705688e-005,-0.999995231628418,0.00309368106536567,-0.00013061122444924,-0.999993979930878,0.00347339315339923,-0.00013061122444924,-0.999993979930878,0.00347339315339923,-7.53590720705688e-005,-0.999995231628418,0.00309368106536567,0.000363522587576881,-0.999997615814209,-0.00220020464621484,0.000307387090288103,-0.999997437000275,-0.00224226713180542,0.000307387090288103,-0.999997437000275,-0.00224226713180542,0.000363522587576881,-0.999997615814209,-0.00220020464621484,0.000237839689361863,-0.999999225139618,-0.001199621707201,0.000254707294516265,-0.999998927116394,-0.00144550658296794,0.000254707294516265,-0.999998927116394,-0.00144550658296794,0.000237839689361863,-0.999999225139618,-0.001199621707201,9.46549153013621e-006,-1,5.23515655004303e-006,1.9593473552959e-005,-1,6.57127111480804e-006,1.9593473552959e-005,-1,6.57127111480804e-006,9.46549153013621e-006,-1,5.23515655004303e-006,-9.24899268284207e-010,-1,-1.21521764873123e-010,
- -3.89619913221395e-007,-1,-5.11925435375815e-008,-3.89619913221395e-007,-1,-5.11925435375815e-008,-9.24899268284207e-010,-1,-1.21521764873123e-010,3.60880534344687e-007,-1,4.74163037722519e-008,3.69689558965547e-007,-1,4.85737245980999e-008,3.69689558965547e-007,-1,4.85737245980999e-008,3.60880534344687e-007,-1,4.74163037722519e-008,-1.87471684398588e-007,-1,-2.4632013762016e-008,8.03938959847983e-008,-1,1.05629975877264e-008,8.03938959847983e-008,-1,1.05629975877264e-008,-1.87471684398588e-007,-1,-2.4632013762016e-008,-9.18298468377543e-008,-1,-1.20656320490298e-008,-2.75489583145827e-007,-1,-3.61969014761598e-008,-2.75489583145827e-007,-1,-3.61969014761598e-008,-9.18298468377543e-008,-1,-1.20656320490298e-008,-2.1111449655109e-007,-1,-2.77385403535391e-008,-1.05557248275545e-007,-1,-1.38692701767695e-008,-1.05557248275545e-007,-1,-1.38692701767695e-008,-2.1111449655109e-007,-1,-2.77385403535391e-008,-3.1667175903749e-007,-1,-4.16076417764089e-008,-3.1667175903749e-007,-1,-4.16076417764089e-008,0,-1,0,-2.49884436698267e-007,-1,3.24074349578041e-008,3.83521040703272e-007,-1,-4.97387944164984e-008,3.83521040703272e-007,-1,-4.97387944164984e-008
- }
- TangentsW: *2536 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *1898 {
- a: 4.81237649917603,-3.40223778039217e-007,5.03111696243286,-3.40223778039217e-007,5.03111696243286,0.252875000238419,4.81237649917603,0.252875000238419,5.24986171722412,-3.40223778039217e-007,5.24986219406128,0.252875000238419,5.4686074256897,-3.40223778039217e-007,5.4686074256897,0.252875000238419,5.68736171722412,-3.40223778039217e-007,5.68736171722412,0.252875000238419,5.90611553192139,-3.40223778039217e-007,5.90611553192139,0.252875000238419,6.12487077713013,-3.40223778039217e-007,6.12487077713013,0.252875000238419,6.34362506866455,-3.40223778039217e-007,6.34362506866455,0.252875000238419,6.56236934661865,-3.40223778039217e-007,6.56236934661865,0.252875000238419,6.78111267089844,-3.40223778039217e-007,6.78111267089844,0.252875000238419,6.99985551834106,-3.40223778039217e-007,6.99984931945801,0.252875238656998,0,-3.40223778039217e-007,0.218744769692421,-3.40223778039217e-007,0.218744769692421,0.252875000238419,1.39064965765101e-007,0.25287452340126,0.437487870454788,-3.40223778039217e-007,0.437487989664078,0.252875000238419,0.65623015165329,-3.40223778039217e-007,0.65623015165329,0.252875000238419,0.874972522258759,-3.40223778039217e-007,0.874972581863403,0.252875000238419,1.09371721744537,-3.40223778039217e-007,1.09371721744537,0.252875000238419,1.31245994567871,-3.40223778039217e-007,1.31245994567871,0.252875000238419,1.53120315074921,-3.40223778039217e-007,1.53120315074921,0.252875000238419,1.74994730949402,-3.40223778039217e-007,1.74994719028473,0.252875000238419,1.9686906337738,-3.40223778039217e-007,1.96869087219238,0.252875000238419,2.18743562698364,-3.40223778039217e-007,2.18743538856506,0.252875000238419,2.40618658065796,-3.40223778039217e-007,2.40618658065796,0.252875000238419,2.62493300437927,-3.40223778039217e-007,2.62493300437927,0.252875000238419,2.84368014335632,-3.40223778039217e-007,2.84368014335632,0.252875000238419,3.0624372959137,-3.40223778039217e-007,3.0624372959137,0.252875000238419,3.28118872642517,-3.40223778039217e-007,3.28118872642517,0.252875000238419,3.4999463558197,
- -3.40223778039217e-007,3.4999463558197,0.252875000238419,3.71869206428528,-3.40223778039217e-007,3.71869206428528,0.252875000238419,3.93743300437927,-3.40223778039217e-007,3.93743324279785,0.252875000238419,4.1561713218689,-3.40223778039217e-007,4.1561713218689,0.252875000238419,4.37490129470825,-3.40223778039217e-007,4.37490177154541,0.252875000238419,4.59364032745361,-3.40223778039217e-007,4.59364032745361,0.252875000238419,4.81237697601318,1.26437532901764,5.0311164855957,1.26437532901764,5.0311164855957,1.51725018024445,4.81237697601318,1.51725018024445,5.2498631477356,1.26437532901764,5.2498631477356,1.51725018024445,5.46860694885254,1.26437532901764,5.46860647201538,1.51725018024445,5.68736219406128,1.26437532901764,5.68736219406128,1.51725018024445,5.90611696243286,1.26437532901764,5.90611696243286,1.51725018024445,6.12487125396729,1.26437532901764,6.12487125396729,1.51725018024445,6.34362506866455,1.26437532901764,6.34362506866455,1.51725018024445,6.56236934661865,1.26437532901764,6.56236934661865,1.51725018024445,6.78111267089844,1.26437532901764,6.78111267089844,1.51725018024445,6.99984502792358,1.26437485218048,6.99985551834106,1.51725018024445,3.32234264988074e-007,1.26437437534332,0.218744844198227,1.26437485218048,0.218744859099388,1.51724970340729,4.1724371158125e-007,1.51724970340729,0.437488287687302,1.26437485218048,0.437488406896591,1.51724970340729,0.65623015165329,1.26437485218048,0.65623015165329,1.51724970340729,0.874972701072693,1.26437485218048,0.874972820281982,1.51724970340729,1.09371733665466,1.26437485218048,1.09371745586395,1.51724970340729,1.31245982646942,1.26437485218048,1.31245982646942,1.51724970340729,1.53120338916779,1.26437485218048,1.53120338916779,1.51724970340729,1.74994671344757,1.26437485218048,1.74994659423828,1.51724970340729,1.96869111061096,1.26437485218048,1.96869111061096,1.51724970340729,2.18743467330933,1.26437532901764,2.18743467330933,1.51725018024445,2.4061872959137,1.26437532901764,2.4061872959137,1.51725041866302,2.62493300437927,1.26437532901764,2.62493276596069,
- 1.51725018024445,2.84368014335632,1.26437532901764,2.84368014335632,1.51725018024445,3.06243753433228,1.26437532901764,3.06243777275085,1.51725018024445,3.28118944168091,1.26437532901764,3.28118968009949,1.51725018024445,3.4999463558197,1.26437532901764,3.4999463558197,1.51725018024445,3.71869206428528,1.26437532901764,3.71869206428528,1.51725018024445,3.93743491172791,1.26437532901764,3.93743491172791,1.51725018024445,4.15617275238037,1.26437532901764,4.15617275238037,1.51725018024445,4.37490320205688,1.26437532901764,4.37490320205688,1.51725018024445,4.59364032745361,1.26437532901764,4.59364032745361,1.51725018024445,4.81237697601318,1.01150000095367,5.0311164855957,1.01150000095367,5.2498631477356,1.01150000095367,5.46860694885254,1.01150000095367,5.68736219406128,1.01150000095367,5.90611696243286,1.01150000095367,6.12487125396729,1.01150000095367,6.34362506866455,1.01150000095367,6.56236934661865,1.01150000095367,6.78111267089844,1.01150000095367,6.99986028671265,1.01150023937225,4.13082290151578e-007,1.01150000095367,0.218744844198227,1.0114997625351,0.437488228082657,1.0114997625351,0.65623015165329,1.0114997625351,0.874972581863403,1.0114997625351,1.09371733665466,1.0114997625351,1.31245982646942,1.0114997625351,1.53120338916779,1.0114997625351,1.74994683265686,1.0114997625351,1.96869111061096,1.0114997625351,2.18743491172791,1.01150000095367,2.40618681907654,1.01150023937225,2.62493300437927,1.01150000095367,2.84368014335632,1.01150000095367,3.06243753433228,1.01150000095367,3.28118944168091,1.01150000095367,3.4999463558197,1.01150000095367,3.71869206428528,1.01150000095367,3.93743443489075,1.01150000095367,4.15617179870605,1.01150000095367,4.37490272521973,1.01150000095367,4.59364032745361,1.01150000095367,4.81237697601318,0.758625149726868,5.0311164855957,0.758625149726868,5.24986267089844,0.758625149726868,5.46860694885254,0.758625149726868,5.68736219406128,0.758625149726868,5.9061164855957,0.758625149726868,6.12487125396729,0.758625149726868,6.34362506866455,0.758625149726868,6.56236934661865,0.758625149726868,
- 6.78111267089844,0.758625149726868,6.99987125396729,0.758625626564026,2.75767831681151e-007,0.758625864982605,0.218744829297066,0.758624672889709,0.43748813867569,0.758624672889709,0.65623015165329,0.758624672889709,0.874972581863403,0.758624672889709,1.09371733665466,0.758624672889709,1.31245994567871,0.758624672889709,1.5312032699585,0.758624672889709,1.74994695186615,0.758624672889709,1.96869111061096,0.758624672889709,2.18743491172791,0.758625149726868,2.40618681907654,0.758625149726868,2.62493300437927,0.758625149726868,3.06243753433228,0.758625149726868,3.28118944168091,0.758625149726868,3.4999463558197,0.758625149726868,3.71869206428528,0.758625149726868,3.93743395805359,0.758625149726868,4.15617179870605,0.758625149726868,4.37490224838257,0.758625149726868,4.59364032745361,0.758625149726868,4.81237649917603,0.505749821662903,5.03111696243286,0.505749821662903,5.24986267089844,0.505749821662903,5.4686074256897,0.505749821662903,5.68736219406128,0.505749821662903,5.9061164855957,0.505749821662903,6.12487125396729,0.505749821662903,6.34362506866455,0.505749821662903,6.56236934661865,0.505749821662903,6.78111267089844,0.505749821662903,6.9998574256897,0.505750060081482,2.13233107615451e-007,0.50575053691864,0.218744814395905,0.505749821662903,0.437488049268723,0.505749821662903,0.65623015165329,0.505749821662903,0.874972581863403,0.505749821662903,1.09371733665466,0.505749821662903,1.31245994567871,0.505749821662903,1.5312032699585,0.505749821662903,1.74994719028473,0.505749821662903,1.96869111061096,0.505749821662903,2.18743515014648,0.505750060081482,2.40618658065796,0.505750060081482,2.62493300437927,0.505749821662903,2.84368014335632,0.505749821662903,3.06243753433228,0.505749821662903,3.28118920326233,0.505749821662903,3.4999463558197,0.505749821662903,3.71869206428528,0.505749821662903,3.93743371963501,0.505749821662903,4.1561713218689,0.505749821662903,4.37490177154541,0.505749821662903,4.59364032745361,0.505749821662903,1.87497711181641,-2.03255331143737e-006,1.87497711181641,0.252873301506042,1.68748712539673,
- 0.252873301506042,1.68748712539673,-2.03255331143737e-006,1.49999332427979,0.252873301506042,1.49999380111694,-2.03255331143737e-006,1.31249904632568,0.252873301506042,1.31249904632568,-2.03255331143737e-006,1.12499713897705,0.252873301506042,1.12499713897705,-2.03255331143737e-006,0.937496185302734,0.252873301506042,0.937496185302734,-2.03255331143737e-006,0.749993324279785,0.252873301506042,0.749993324279785,-2.03255331143737e-006,0.562491416931152,0.252873301506042,0.562491416931152,-2.03255331143737e-006,0.374998092651367,0.252873301506042,0.374998092651367,-2.03255331143737e-006,0.187505722045898,0.252873301506042,0.187505722045898,-2.03255331143737e-006,1.9073486328125e-005,0.252873539924622,1.38282775878906e-005,-2.03255331143737e-006,5.999831199646,-2.03255331143737e-006,5.999831199646,0.252872824668884,5.81233739852905,0.252873301506042,5.81233739852905,-2.03255331143737e-006,5.62484502792358,0.252873301506042,5.62484550476074,-2.03255331143737e-006,5.43735361099243,0.252873301506042,5.43735361099243,-2.03255331143737e-006,5.24986171722412,0.252873301506042,5.24986219406128,-2.03255331143737e-006,5.06236839294434,0.252873301506042,5.06236839294434,-2.03255331143737e-006,4.87487649917603,0.252873301506042,4.87487649917603,-2.03255331143737e-006,4.68738412857056,0.252873301506042,4.68738412857056,-2.03255331143737e-006,4.49989128112793,0.252873301506042,4.49989128112793,-2.03255331143737e-006,4.3123984336853,0.252873301506042,4.3123984336853,-2.03255331143737e-006,4.12490463256836,0.252873301506042,4.12490463256836,-2.03255331143737e-006,3.93740558624268,0.252873301506042,3.93740558624268,-2.03255331143737e-006,3.74991059303284,0.252873301506042,3.74991059303284,-2.03255331143737e-006,3.56241488456726,0.252873301506042,3.56241488456726,-2.03255331143737e-006,3.37491059303284,0.252873301506042,3.37491059303284,-2.03255331143737e-006,3.18741130828857,0.252873301506042,3.18741130828857,-2.03255331143737e-006,2.99990630149841,0.252873301506042,2.99990630149841,-2.03255331143737e-006,2.81241202354431,0.252873301506042,
- 2.81241202354431,-2.03255331143737e-006,2.6249213218689,0.252873301506042,2.62492156028748,-2.03255331143737e-006,2.43743324279785,0.252873301506042,2.43743324279785,-2.03255331143737e-006,2.24995183944702,0.252873301506042,2.24995231628418,-2.03255331143737e-006,2.0624635219574,0.252873301506042,2.0624635219574,-2.03255331143737e-006,1.87497663497925,1.26437366008759,1.87497663497925,1.51724851131439,1.68748760223389,1.51724851131439,1.68748760223389,1.26437366008759,1.49999237060547,1.51724851131439,1.49999237060547,1.26437366008759,1.3125,1.51724851131439,1.31249952316284,1.26437366008759,1.12499666213989,1.51724851131439,1.12499666213989,1.26437366008759,0.93749475479126,1.51724851131439,0.93749475479126,1.26437366008759,0.749992847442627,1.51724851131439,0.749992847442627,1.26437366008759,0.562491416931152,1.51724851131439,0.562491416931152,1.26437366008759,0.374998092651367,1.51724851131439,0.374998092651367,1.26437366008759,0.187505722045898,1.51724851131439,0.187505722045898,1.26437366008759,1.38282775878906e-005,1.51724851131439,2.288818359375e-005,1.26437318325043,5.999831199646,1.26437270641327,5.99983072280884,1.51724803447723,5.81233739852905,1.51724803447723,5.81233739852905,1.26437318325043,5.62484455108643,1.51724803447723,5.62484502792358,1.26437318325043,5.43735361099243,1.51724803447723,5.43735361099243,1.26437318325043,5.24986171722412,1.51724803447723,5.24986171722412,1.26437318325043,5.06236839294434,1.51724803447723,5.06236839294434,1.26437318325043,4.87487649917603,1.51724803447723,4.87487649917603,1.26437318325043,4.68738412857056,1.51724803447723,4.68738412857056,1.26437318325043,4.49989175796509,1.51724803447723,4.49989128112793,1.26437318325043,4.31239795684814,1.51724803447723,4.31239795684814,1.26437318325043,4.12490558624268,1.51724851131439,4.12490558624268,1.26437366008759,3.93740510940552,1.51724874973297,3.93740510940552,1.26437366008759,3.74991083145142,1.51724851131439,3.74991059303284,1.26437366008759,3.56241488456726,1.51724851131439,3.56241488456726,1.26437366008759,3.37491011619568,
- 1.51724851131439,3.37491035461426,1.26437366008759,3.18741035461426,1.51724851131439,3.18741059303284,1.26437366008759,2.99990630149841,1.51724851131439,2.99990630149841,1.26437366008759,2.81241202354431,1.51724851131439,2.81241202354431,1.26437366008759,2.62491989135742,1.51724851131439,2.62491989135742,1.26437366008759,2.43743205070496,1.51724851131439,2.43743205070496,1.26437366008759,2.24995064735413,1.51724851131439,2.24995064735413,1.26437366008759,2.0624635219574,1.51724851131439,2.0624635219574,1.26437366008759,1.87497663497925,1.01149833202362,1.68748760223389,1.01149833202362,1.49999237060547,1.01149833202362,1.31249952316284,1.01149833202362,1.12499666213989,1.01149833202362,0.93749475479126,1.01149833202362,0.749992847442627,1.01149833202362,0.562491416931152,1.01149833202362,0.374998092651367,1.01149833202362,0.187505722045898,1.01149833202362,9.5367431640625e-006,1.0114985704422,5.999831199646,1.01149833202362,5.81233739852905,1.01149809360504,5.62484502792358,1.01149809360504,5.43735361099243,1.01149809360504,5.24986171722412,1.01149809360504,5.06236839294434,1.01149809360504,4.87487649917603,1.01149809360504,4.68738412857056,1.01149809360504,4.49989128112793,1.01149809360504,4.31239795684814,1.01149809360504,4.12490510940552,1.01149833202362,3.9374053478241,1.0114985704422,3.74991059303284,1.01149833202362,3.56241488456726,1.01149833202362,3.37491035461426,1.01149833202362,3.18741059303284,1.01149833202362,2.99990630149841,1.01149833202362,2.81241202354431,1.01149833202362,2.62492036819458,1.01149833202362,2.43743300437927,1.01149833202362,2.24995112419128,1.01149833202362,2.0624635219574,1.01149833202362,1.87497663497925,0.758623480796814,1.68748760223389,0.758623480796814,1.49999284744263,0.758623480796814,1.31249952316284,0.758623480796814,1.12499666213989,0.758623480796814,0.937495231628418,0.758623480796814,0.749992847442627,0.758623480796814,0.562491416931152,0.758623480796814,0.374998092651367,0.758623480796814,0.187505722045898,0.758623480796814,0,0.758623957633972,5.999831199646,0.758624196052551,
- 5.81233739852905,0.758623003959656,5.62484502792358,0.758623003959656,5.43735361099243,0.758623003959656,5.24986171722412,0.758623003959656,5.06236839294434,0.758623003959656,4.87487649917603,0.758623003959656,4.68738412857056,0.758623003959656,4.49989128112793,0.758623003959656,4.31239795684814,0.758623003959656,4.12490510940552,0.758623480796814,3.9374053478241,0.758623480796814,3.74991059303284,0.758623480796814,3.37491035461426,0.758623480796814,3.18741059303284,0.758623480796814,2.99990630149841,0.758623480796814,2.81241202354431,0.758623480796814,2.62492084503174,0.758623480796814,2.43743300437927,0.758623480796814,2.24995160102844,0.758623480796814,2.0624635219574,0.758623480796814,1.87497711181641,0.505748152732849,1.68748712539673,0.505748152732849,1.49999284744263,0.505748152732849,1.31249904632568,0.505748152732849,1.12499666213989,0.505748152732849,0.937495231628418,0.505748152732849,0.749992847442627,0.505748152732849,0.562491416931152,0.505748152732849,0.374998092651367,0.505748152732849,0.187505722045898,0.505748152732849,1.19209289550781e-005,0.505748391151428,5.999831199646,0.505748867988586,5.81233739852905,0.505748152732849,5.62484502792358,0.505748152732849,5.43735361099243,0.505748152732849,5.24986171722412,0.505748152732849,5.06236839294434,0.505748152732849,4.87487649917603,0.505748152732849,4.68738412857056,0.505748152732849,4.49989128112793,0.505748152732849,4.31239795684814,0.505748152732849,4.12490510940552,0.505748391151428,3.93740558624268,0.505748391151428,3.74991059303284,0.505748152732849,3.56241488456726,0.505748152732849,3.37491035461426,0.505748152732849,3.18741083145142,0.505748152732849,2.99990630149841,0.505748152732849,2.81241202354431,0.505748152732849,2.62492084503174,0.505748152732849,2.43743324279785,0.505748152732849,2.24995183944702,0.505748152732849,2.0624635219574,0.505748152732849,2.7343065738678,1.01150000095367,2.7343065738678,0.758625149726868,2.7343065738678,0.505749821662903,2.95305871963501,1.01150000095367,2.95305871963501,0.758625149726868,2.95305871963501,0.505749821662903,
- 3.65616273880005,1.01149833202362,3.65616273880005,0.758623480796814,3.65616273880005,0.505748152732849,3.46866273880005,1.01149833202362,3.46866273880005,0.758623480796814,3.46866273880005,0.505748152732849,0.362262576818466,1.01057076454163,0.207980677485466,1.01057076454163,0.207980677485466,0.756734371185303,0.362262576818466,0.756734371185303,0.207980677485466,0.502897799015045,0.362262576818466,0.502897799015045,0.373207598924637,0.756734371185303,0.373207598924637,0.502897799015045,0.527489483356476,0.502897799015045,0.527489483356476,0.756734371185303,0.527489483356476,1.01057076454163,0.373207598924637,1.01057076454163,0.937394380569458,-3.44357824325562,0.937394380569458,-3.28104305267334,0.775774478912354,-3.28104305267334,0.775774478912354,-3.44357824325562,2.13562393188477,-2.59051489830017,2.13562393188477,-2.75304985046387,2.31334066390991,-2.75304985046387,2.31334066390991,-2.59051489830017,1.95303630828857,-2.75304985046387,1.95303630828857,-2.59051489830017,1.75361084938049,-2.75305008888245,1.75361084938049,-2.59051489830017,1.53891265392303,-2.75304985046387,1.53891265392303,-2.59051489830017,1.32405114173889,-2.75304985046387,1.32405114173889,-2.59051489830017,1.12010836601257,-2.75304985046387,1.12010836601257,-2.59051489830017,0.937394380569458,-2.75304985046387,0.937394380569458,-2.59051465988159,0.775774478912354,-2.75304985046387,0.775774478912354,-2.59051489830017,0.937394380569458,-2.51270890235901,0.775774478912354,-2.51270890235901,0.775774478912354,-2.67524385452271,0.937394380569458,-2.67524385452271,1.12010836601257,-2.51270890235901,1.12010836601257,-2.67524385452271,1.32405114173889,-2.51270890235901,1.32405114173889,-2.67524385452271,1.53891265392303,-2.51270890235901,1.53891265392303,-2.67524385452271,1.75361084938049,-2.51270890235901,1.75361084938049,-2.67524409294128,1.95303630828857,-2.51270914077759,1.95303630828857,-2.67524385452271,2.13562393188477,-2.51270890235901,2.13562393188477,-2.67524409294128,2.31334066390991,-2.67524385452271,2.31334066390991,-2.51270890235901,1.12010836601257,
- -3.28104305267334,1.12010836601257,-3.44357824325562,1.32405114173889,-3.28104305267334,1.32405114173889,-3.44357824325562,1.53891265392303,-3.28104305267334,1.53891265392303,-3.44357824325562,1.75361084938049,-3.28104305267334,1.75361084938049,-3.44357824325562,1.95303630828857,-3.28104305267334,1.95303630828857,-3.44357824325562,2.13562393188477,-3.28104305267334,2.13562393188477,-3.44357824325562,2.31334066390991,-3.28104305267334,2.31334066390991,-3.44357824325562,0.937394380569458,-4.03965187072754,0.775774478912354,-4.03965187072754,0.775774478912354,-4.20218658447266,0.937394380569458,-4.20218658447266,1.12010836601257,-4.03965187072754,1.12010836601257,-4.20218658447266,1.32405114173889,-4.03965187072754,1.32405114173889,-4.20218658447266,1.53891265392303,-4.03965187072754,1.53891265392303,-4.20218658447266,1.75361084938049,-4.03965187072754,1.75361084938049,-4.20218658447266,1.95303630828857,-4.03965187072754,1.95303630828857,-4.20218658447266,2.13562393188477,-4.03965187072754,2.13562393188477,-4.20218658447266,2.31334066390991,-4.03965187072754,2.31334066390991,-4.20218658447266,2.15172076225281,-4.52313661575317,2.31334066390991,-4.52313661575317,2.31334066390991,-4.3606014251709,2.15172076225281,-4.3606014251709,0.9534912109375,-3.63117027282715,0.775774478912354,-3.63117027282715,0.775774478912354,-3.79370546340942,0.9534912109375,-3.79370546340942,1.13607883453369,-3.79370546340942,1.13607883453369,-3.63117027282715,1.33550429344177,-3.79370546340942,1.33550429344177,-3.63117027282715,1.55020248889923,-3.79370546340942,1.55020248889923,-3.63117027282715,1.76506400108337,-3.79370546340942,1.76506400108337,-3.63117027282715,1.96900677680969,-3.79370546340942,1.96900677680969,-3.63117027282715,2.15172076225281,-3.79370546340942,2.15172076225281,-3.63117027282715,2.31334066390991,-3.79370546340942,2.31334066390991,-3.63117027282715,2.15172076225281,-2.1431303024292,2.15172076225281,-2.30566549301147,2.31334066390991,-2.30566549301147,2.31334066390991,-2.1431303024292,1.96900677680969,-2.1431303024292,1.96900677680969,
- -2.30566549301147,1.76506400108337,-2.1431303024292,1.76506400108337,-2.30566549301147,1.55020248889923,-2.1431303024292,1.55020248889923,-2.30566549301147,1.33550429344177,-2.1431303024292,1.33550429344177,-2.30566549301147,1.13607883453369,-2.14313054084778,1.13607883453369,-2.30566549301147,0.9534912109375,-2.1431303024292,0.9534912109375,-2.30566549301147,0.775774478912354,-2.30566549301147,0.775774478912354,-2.1431303024292,1.96900677680969,-4.3606014251709,1.96900677680969,-4.52313661575317,1.76506400108337,-4.3606014251709,1.76506400108337,-4.52313661575317,1.55020248889923,-4.3606014251709,1.55020248889923,-4.52313661575317,1.33550429344177,-4.3606014251709,1.33550429344177,-4.52313661575317,1.13607883453369,-4.3606014251709,1.13607883453369,-4.52313661575317,0.9534912109375,-4.3606014251709,0.9534912109375,-4.52313661575317,0.775774478912354,-4.3606014251709,0.775774478912354,-4.52313661575317,2.15172076225281,-1.79300332069397,2.15172076225281,-1.95553839206696,2.31334066390991,-1.95553839206696,2.31334066390991,-1.79300332069397,1.96900677680969,-1.79300332069397,1.96900677680969,-1.95553839206696,1.76506400108337,-1.79300332069397,1.76506400108337,-1.95553839206696,1.55020248889923,-1.79300332069397,1.55020248889923,-1.95553839206696,1.33550429344177,-1.79300332069397,1.33550429344177,-1.95553839206696,1.13607883453369,-1.79300332069397,1.13607883453369,-1.95553851127625,0.9534912109375,-1.79300332069397,0.9534912109375,-1.95553839206696,0.775774478912354,-1.79300332069397,0.775774478912354,-1.95553839206696,0.216861352324486,0.97518664598465,0.0690305233001709,0.975186586380005,0.0690306201577187,0.934759676456451,0.221614226698875,0.934759736061096,0.0690304785966873,0.818234860897064,0.221614047884941,0.818235039710999,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.0691818222403526,0.815117835998535,0.0689773708581924,0.934583783149719,0.722924470901489,0.816878259181976,0.72292423248291,0.936117112636566,0.681675136089325,0.934408724308014,0.68365865945816,0.818091332912445,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.382216155529022,0.934759855270386,0.382216066122055,0.991122364997864,0.38221600651741,0.761872470378876,0.382215827703476,0.672368824481964,0.382215946912766,0.777808248996735,0.382215976715088,0.818235218524933,0.144204825162888,0.459990352392197,0.144204825162888,0.633422613143921,0.013556569814682,0.633378028869629,0.013556569814682,0.460163861513138,0.144204825162888,0.785985350608826,0.013556569814682,0.785269379615784,0.013556569814682,0.293649077415466,0.144204825162888,0.293281078338623,0.980780780315399,0.458879381418228,0.79266768693924,0.459129214286804,0.79266768693924,0.291454434394836,0.980780780315399,0.290924519300461,0.980780780315399,0.633707880973816,0.79266768693924,0.633643746376038,0.980780780315399,0.790569961071014,0.79266768693924,0.789539039134979,0.644424796104431,0.459326088428497,0.644424796104431,0.291872024536133,0.644424796104431,0.633593201637268,0.644424796104431,0.788726627826691,0.469265580177307,0.459558695554733,0.469265580177307,0.292365431785584,0.469265580177307,0.633533477783203,0.469265580177307,0.787766754627228,0.30919224023819,0.459771275520325,0.30919224023819,0.292816340923309,0.30919224023819,0.633478879928589,0.30919224023819,0.786889553070068,0.144204825162888,0.459990352392197,0.144204825162888,0.633422613143921,0.0156271085143089,0.633378028869629,0.0156271085143089,0.460163861513138,0.144204825162888,0.785985350608826,0.0156271085143089,0.785269379615784,0.0156271085143089,0.293649077415466,0.144204825162888,0.293281078338623,0.980780780315399,0.458879381418228,0.79266768693924,0.459129214286804,0.79266768693924,
- 0.291454434394836,0.980780780315399,0.290924519300461,0.980780780315399,0.633707880973816,0.79266768693924,0.633643746376038,0.980780780315399,0.790569961071014,0.79266768693924,0.789539039134979,0.644424796104431,0.459326088428497,0.644424796104431,0.291872024536133,0.644424796104431,0.633593201637268,0.644424796104431,0.788726627826691,0.469265580177307,0.459558695554733,0.469265580177307,0.292365431785584,0.469265580177307,0.633533477783203,0.469265580177307,0.787766754627228,0.30919224023819,0.459771275520325,0.30919224023819,0.292816340923309,0.30919224023819,0.633478879928589,0.30919224023819,0.786889553070068,0.144204825162888,0.459990352392197,0.144204825162888,0.633422613143921,0.013556569814682,0.633378028869629,0.013556569814682,0.460163861513138,0.144204825162888,0.785985350608826,0.013556569814682,0.785269379615784,0.013556569814682,0.293649077415466,0.144204825162888,0.293281078338623,0.980780780315399,0.458879381418228,0.79266768693924,0.459129214286804,0.79266768693924,0.291454434394836,0.980780780315399,0.290924519300461,0.980780780315399,0.633707880973816,0.79266768693924,0.633643746376038,0.980780780315399,0.790569961071014,0.79266768693924,0.789539039134979,0.644424796104431,0.459326088428497,0.644424796104431,0.291872024536133,0.644424796104431,0.633593201637268,0.644424796104431,0.788726627826691,0.469265580177307,0.459558695554733,0.469265580177307,0.292365431785584,0.469265580177307,0.633533477783203,0.469265580177307,0.787766754627228,0.30919224023819,0.459771275520325,0.30919224023819,0.292816340923309,0.30919224023819,0.633478879928589,0.30919224023819,0.786889553070068,0.980780780315399,0.458879381418228,0.79266768693924,0.459129214286804,0.79266768693924,0.291454434394836,0.980780780315399,0.290924519300461,0.980780780315399,0.633707880973816,0.79266768693924,0.633643746376038,0.980780780315399,0.790569961071014,0.79266768693924,0.789539039134979,0.644424796104431,0.459326088428497,0.644424796104431,0.291872024536133,0.644424796104431,0.633593201637268,0.644424796104431,0.788726627826691,
- 0.873319864273071,0.669025063514709,0.988378286361694,0.669025063514709,0.988378286361694,0.801093697547913,0.873319625854492,0.801093578338623,0.759992957115173,0.669025063514709,0.759992957115173,0.801093578338623,0.659260511398315,0.801093578338623,0.659260511398315,0.669025182723999,0.559694409370422,0.801093578338623,0.559694647789001,0.669025182723999,0.450501948595047,0.801093697547913,0.450502008199692,0.669025182723999,0.344228982925415,0.801093697547913,0.34422904253006,0.669025182723999,0.212579369544983,0.796614527702332,0.235933214426041,0.666618049144745,0.0957360863685608,0.754166543483734,0.176784187555313,0.642415463924408,0.0063357949256897,0.651586651802063,0.126290947198868,0.584168076515198,-0.0239047408103943,0.513935446739197,0.110537052154541,0.514419496059418,0.0130734443664551,0.370850086212158,0.128381878137589,0.444109499454498,0.0866580009460449,0.288083851337433,0.169119298458099,0.396627396345139,0.25017112493515,0.232566565275192,0.252899944782257,0.36469304561615,0.366404980421066,0.23230192065239,0.366404980421066,0.364370226860046,0.465650409460068,0.232301980257034,0.465650409460068,0.364370316267014,0.565369606018066,0.232301950454712,0.565369606018066,0.364370286464691,0.675069212913513,0.23230192065239,0.675069212913513,0.364370226860046,0.780214726924896,0.232301950454712,0.780214667320251,0.364370286464691,0.899029731750488,0.232301950454712,0.899029731750488,0.364370286464691,0.990501523017883,0.232301980257034,0.990501523017883,0.364370316267014,0.144204825162888,0.459990352392197,0.144204825162888,0.633422613143921,0.013556569814682,0.633378028869629,0.013556569814682,0.460163861513138,0.144204825162888,0.785985350608826,0.013556569814682,0.785269379615784,0.013556569814682,0.293649077415466,0.144204825162888,0.293281078338623,0.980780780315399,0.458879381418228,0.79266768693924,0.459129214286804,0.79266768693924,0.291454434394836,0.980780780315399,0.290924519300461,0.980780780315399,0.633707880973816,0.79266768693924,0.633643746376038,0.980780780315399,0.790569961071014,
- 0.79266768693924,0.789539039134979,0.644424796104431,0.459326088428497,0.644424796104431,0.291872024536133,0.644424796104431,0.633593201637268,0.644424796104431,0.788726627826691,0.469265580177307,0.459558695554733,0.469265580177307,0.292365431785584,0.469265580177307,0.633533477783203,0.469265580177307,0.787766754627228,0.30919224023819,0.459771275520325,0.30919224023819,0.292816340923309,0.30919224023819,0.633478879928589,0.30919224023819,0.786889553070068,0.144204825162888,0.459990352392197,0.144204825162888,0.633422613143921,0.0156271085143089,0.633378028869629,0.0156271085143089,0.460163861513138,0.144204825162888,0.785985350608826,0.0156271085143089,0.785269379615784,0.0156271085143089,0.293649077415466,0.144204825162888,0.293281078338623,0.980780780315399,0.458879381418228,0.79266768693924,0.459129214286804,0.79266768693924,0.291454434394836,0.980780780315399,0.290924519300461,0.980780780315399,0.633707880973816,0.79266768693924,0.633643746376038,0.980780780315399,0.790569961071014,0.79266768693924,0.789539039134979,0.644424796104431,0.459326088428497,0.644424796104431,0.291872024536133,0.644424796104431,0.633593201637268,0.644424796104431,0.788726627826691,0.469265580177307,0.459558695554733,0.469265580177307,0.292365431785584,0.469265580177307,0.633533477783203,0.469265580177307,0.787766754627228,0.30919224023819,0.459771275520325,0.30919224023819,0.292816340923309,0.30919224023819,0.633478879928589,0.30919224023819,0.786889553070068,0.144204825162888,0.459990352392197,0.144204825162888,0.633422613143921,0.013556569814682,0.633378028869629,0.013556569814682,0.460163861513138,0.144204825162888,0.785985350608826,0.013556569814682,0.785269379615784,0.013556569814682,0.293649077415466,0.144204825162888,0.293281078338623,0.980780780315399,0.458879381418228,0.79266768693924,0.459129214286804,0.79266768693924,0.291454434394836,0.980780780315399,0.290924519300461,0.980780780315399,0.633707880973816,0.79266768693924,0.633643746376038,0.980780780315399,0.790569961071014,0.79266768693924,0.789539039134979,0.644424796104431,
- 0.459326088428497,0.644424796104431,0.291872024536133,0.644424796104431,0.633593201637268,0.644424796104431,0.788726627826691,0.469265580177307,0.459558695554733,0.469265580177307,0.292365431785584,0.469265580177307,0.633533477783203,0.469265580177307,0.787766754627228,0.30919224023819,0.459771275520325,0.30919224023819,0.292816340923309,0.30919224023819,0.633478879928589,0.30919224023819,0.786889553070068,0.980780780315399,0.458879381418228,0.79266768693924,0.459129214286804,0.79266768693924,0.291454434394836,0.980780780315399,0.290924519300461,0.980780780315399,0.633707880973816,0.79266768693924,0.633643746376038,0.980780780315399,0.790569961071014,0.79266768693924,0.789539039134979,0.644424796104431,0.459326088428497,0.644424796104431,0.291872024536133,0.644424796104431,0.633593201637268,0.644424796104431,0.788726627826691,0.873319864273071,0.669025063514709,0.988378286361694,0.669025063514709,0.988378286361694,0.801093697547913,0.873319625854492,0.801093578338623,0.759992957115173,0.669025063514709,0.759992957115173,0.801093578338623,0.659260511398315,0.801093578338623,0.659260511398315,0.669025182723999,0.559694409370422,0.801093578338623,0.559694647789001,0.669025182723999,0.450501948595047,0.801093697547913,0.450502008199692,0.669025182723999,0.344228982925415,0.801093697547913,0.34422904253006,0.669025182723999,0.212579369544983,0.796614527702332,0.235933214426041,0.666618049144745,0.0957360863685608,0.754166543483734,0.176784187555313,0.642415463924408,0.0063357949256897,0.651586651802063,0.126290947198868,0.584168076515198,-0.0239047408103943,0.513935446739197,0.110537052154541,0.514419496059418,0.0130734443664551,0.370850086212158,0.128381878137589,0.444109499454498,0.0866580009460449,0.288083851337433,0.169119298458099,0.396627396345139,0.25017112493515,0.232566565275192,0.252899944782257,0.36469304561615,0.366404980421066,0.23230192065239,0.366404980421066,0.364370226860046,0.465650409460068,0.232301980257034,0.465650409460068,0.364370316267014,0.565369606018066,0.232301950454712,0.565369606018066,0.364370286464691,
- 0.675069212913513,0.23230192065239,0.675069212913513,0.364370226860046,0.780214726924896,0.232301950454712,0.780214667320251,0.364370286464691,0.899029731750488,0.232301950454712,0.899029731750488,0.364370286464691,0.990501523017883,0.232301980257034,0.990501523017883,0.364370316267014,0.262058854103088,0.5,0.603578388690948,0.5,0.582726001739502,0.711707890033722,0.244489580392838,0.67838454246521,0.582726001739502,0.288292109966278,0.244489580392838,0.32161545753479,0.544700026512146,0.5,0.290279448032379,0.5,0.305813789367676,0.342284739017487,0.557788550853729,0.367109477519989,0.305813789367676,0.657715260982513,0.557788550853729,0.632890522480011
- }
- UVIndex: *2536 {
- a: 0,1,2,3,1,4,5,2,4,6,7,5,6,8,9,7,8,10,11,9,10,12,13,11,12,14,15,13,14,16,17,15,16,18,19,17,18,20,21,19,22,23,24,25,23,26,27,24,26,28,29,27,28,30,31,29,30,32,33,31,32,34,35,33,34,36,37,35,36,38,39,37,38,40,41,39,40,42,43,41,42,44,45,43,44,46,47,45,46,48,49,47,48,50,51,49,50,52,53,51,52,54,55,53,54,56,57,55,56,58,59,57,58,60,61,59,60,62,63,61,62,64,65,63,64,0,3,65,66,67,68,69,67,70,71,68,70,72,73,71,72,74,75,73,74,76,77,75,76,78,79,77,78,80,81,79,80,82,83,81,82,84,85,83,84,86,87,85,88,89,90,91,89,92,93,90,92,94,95,93,94,96,97,95,96,98,99,97,98,100,101,99,100,102,103,101,102,104,105,103,104,106,107,105,106,108,109,107,108,110,111,109,110,112,113,111,112,114,115,113,114,116,117,115,116,118,119,117,118,120,121,119,120,122,123,121,122,124,125,123,124,126,127,125,126,128,129,127,128,130,131,129,130,66,69,131,132,133,67,66,133,134,70,67,134,135,72,70,135,136,74,72,136,137,76,74,137,138,78,76,138,139,80,78,139,140,82,80,140,141,84,82,141,142,86,84,143,144,89,88,144,145,92,89,145,146,94,92,146,147,96,94,147,148,98,96,148,149,100,98,149,150,102,100,150,151,104,102,151,152,106,104,152,153,108,106,153,154,110,108,154,155,112,110,155,460,156,114,112,156,463,157,116,114,157,158,118,116,158,159,120,118,159,160,122,120,160,161,124,122,161,162,126,124,162,163,128,126,163,164,130,128,164,132,66,130,165,166,133,132,166,167,134,133,167,168,135,134,168,169,136,135,169,170,137,136,170,171,138,137,171,172,139,138,172,173,140,139,173,174,141,140,174,175,142,141,176,177,144,143,177,178,145,144,178,179,146,145,179,180,147,146,180,181,148,147,181,182,149,148,182,183,150,149,183,184,151,150,184,185,152,151,185,186,153,152,186,187,154,153,187,188,155,154,463,464,189,157,189,190,158,157,190,191,159,158,191,192,160,159,192,193,161,160,193,194,162,161,194,195,163,162,195,196,164,163,196,165,132,164,197,198,166,165,198,199,167,166,199,200,168,167,200,201,169,168,201,202,170,169,202,203,171,170,203,204,172,171,204,205,173,172,205,206,174,173,206,207,175,174,208,209,177,176,209,210,178,177,210,211,179,178,211,212,180,179,212,213,
- 181,180,213,214,182,181,214,215,183,182,215,216,184,183,216,217,185,184,217,218,186,185,218,219,187,186,219,220,188,187,464,465,222,189,222,223,190,189,223,224,191,190,224,225,192,191,225,226,193,192,226,227,194,193,227,228,195,194,228,229,196,195,229,197,165,196,3,2,198,197,2,5,199,198,5,7,200,199,7,9,201,200,9,11,202,201,11,13,203,202,13,15,204,203,15,17,205,204,17,19,206,205,19,21,207,206,25,24,209,208,24,27,210,209,27,29,211,210,29,31,212,211,31,33,213,212,33,35,214,213,35,37,215,214,37,39,216,215,39,41,217,216,41,43,218,217,43,45,219,218,45,47,220,219,47,49,221,462,220,49,51,222,465,221,51,53,223,222,53,55,224,223,55,57,225,224,57,59,226,225,59,61,227,226,61,63,228,227,63,65,229,228,65,3,197,229,230,231,232,233,233,232,234,235,235,234,236,237,237,236,238,239,239,238,240,241,241,240,242,243,243,242,244,245,245,244,246,247,247,246,248,249,249,248,250,251,252,253,254,255,255,254,256,257,257,256,258,259,259,258,260,261,261,260,262,263,263,262,264,265,265,264,266,267,267,266,268,269,269,268,270,271,271,270,272,273,273,272,274,275,275,274,276,277,277,276,278,279,279,278,280,281,281,280,282,283,283,282,284,285,285,284,286,287,287,286,288,289,289,288,290,291,291,290,292,293,293,292,294,295,295,294,231,230,296,297,298,299,299,298,300,301,301,300,302,303,303,302,304,305,305,304,306,307,307,306,308,309,309,308,310,311,311,310,312,313,313,312,314,315,315,314,316,317,318,319,320,321,321,320,322,323,323,322,324,325,325,324,326,327,327,326,328,329,329,328,330,331,331,330,332,333,333,332,334,335,335,334,336,337,337,336,338,339,339,338,340,341,341,340,342,343,343,342,344,345,345,344,346,347,347,346,348,349,349,348,350,351,351,350,352,353,353,352,354,355,355,354,356,357,357,356,358,359,359,358,360,361,361,360,297,296,362,296,299,363,363,299,301,364,364,301,303,365,365,303,305,366,366,305,307,367,367,307,309,368,368,309,311,369,369,311,313,370,370,313,315,371,371,315,317,372,373,318,321,374,374,321,323,375,375,323,325,376,376,325,327,377,377,327,329,378,378,329,331,379,379,331,333,380,380,333,335,381,381,335,337,382,382,337,339,
- 383,383,339,341,384,384,341,343,385,385,343,345,386,466,386,345,347,387,469,387,347,349,388,388,349,351,389,389,351,353,390,390,353,355,391,391,355,357,392,392,357,359,393,393,359,361,394,394,361,296,362,395,362,363,396,396,363,364,397,397,364,365,398,398,365,366,399,399,366,367,400,400,367,368,401,401,368,369,402,402,369,370,403,403,370,371,404,404,371,372,405,406,373,374,407,407,374,375,408,408,375,376,409,409,376,377,410,410,377,378,411,411,378,379,412,412,379,380,413,413,380,381,414,414,381,382,415,415,382,383,416,416,383,384,417,417,384,385,418,418,385,466,467,419,387,388,420,420,388,389,421,421,389,390,422,422,390,391,423,423,391,392,424,424,392,393,425,425,393,394,426,426,394,362,395,427,395,396,428,428,396,397,429,429,397,398,430,430,398,399,431,431,399,400,432,432,400,401,433,433,401,402,434,434,402,403,435,435,403,404,436,436,404,405,437,438,406,407,439,439,407,408,440,440,408,409,441,441,409,410,442,442,410,411,443,443,411,412,444,444,412,413,445,445,413,414,446,446,414,415,447,447,415,416,448,448,416,417,449,449,417,418,450,450,418,467,468,452,419,420,453,453,420,421,454,454,421,422,455,455,422,423,456,456,423,424,457,457,424,425,458,458,425,426,459,459,426,395,427,231,427,428,232,232,428,429,234,234,429,430,236,236,430,431,238,238,431,432,240,240,432,433,242,242,433,434,244,244,434,435,246,246,435,436,248,248,436,437,250,253,438,439,254,254,439,440,256,256,440,441,258,258,441,442,260,260,442,443,262,262,443,444,264,264,444,445,266,266,445,446,268,268,446,447,270,270,447,448,272,272,448,449,274,274,449,450,276,276,450,468,451,278,278,451,471,452,280,280,452,453,282,282,453,454,284,284,454,455,286,286,455,456,288,288,456,457,290,290,457,458,292,292,458,459,294,294,459,427,231,188,461,460,155,220,462,461,188,470,469,387,419,471,470,419,452,937,938,939,940,943,944,945,946,941,938,937,942,472,473,474,475,475,474,476,477,947,944,943,948,478,479,480,481,478,481,482,483,484,485,486,487,488,489,490,491,492,489,488,493,494,492,493,495,496,494,495,497,498,496,497,499,500,498,499,501,502,500,501,503,504,502,503,505,
- 506,507,508,509,510,506,509,511,512,510,511,513,514,512,513,515,516,514,515,517,518,516,517,519,520,518,519,521,522,523,520,521,524,485,484,525,526,524,525,527,528,526,527,529,530,528,529,531,532,530,531,533,534,532,533,535,536,534,535,537,538,539,540,541,542,538,541,543,544,542,543,545,546,544,545,547,548,546,547,549,550,548,549,551,552,550,551,553,554,552,553,555,556,557,558,559,560,561,562,563,564,565,560,563,566,567,565,564,568,569,567,566,570,571,569,568,572,573,571,570,574,575,573,572,576,577,575,574,578,579,580,581,582,583,579,578,584,585,583,582,586,587,585,584,588,589,587,586,590,591,589,588,592,593,591,590,594,593,592,595,596,597,556,559,598,599,597,596,600,601,599,598,602,603,601,600,604,605,603,602,606,607,605,604,608,609,607,606,610,611,612,613,614,615,611,610,616,617,615,614,618,619,617,616,620,621,619,618,622,623,621,620,624,625,623,622,626,627,625,624,628,629,630,631,630,632,633,631,633,632,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,629,628,650,651,641,640,635,634,637,636,652,653,645,644,654,628,631,655,656,648,628,654,657,636,639,658,659,635,636,657,660,633,635,659,633,660,655,631,661,662,663,664,662,665,666,663,661,664,667,668,669,670,671,672,669,673,674,670,673,675,676,674,670,677,678,671,670,674,679,677,674,676,680,679,677,681,682,678,677,679,683,681,679,680,684,683,681,685,686,682,681,683,687,685,683,684,688,687,685,661,668,686,685,687,662,661,687,688,665,662,689,690,691,692,690,693,694,691,689,692,695,696,697,698,699,700,697,701,702,698,701,703,704,702,698,705,706,699,698,702,707,705,702,704,708,707,705,709,710,706,705,707,711,709,707,708,712,711,709,713,714,710,709,711,715,713,711,712,716,715,713,689,696,714,713,715,690,689,715,716,693,690,717,718,719,720,718,721,722,719,717,720,723,724,725,726,727,728,725,729,730,726,729,731,732,730,726,733,734,727,726,730,735,733,730,732,736,735,733,737,738,734,733,735,739,737,735,736,740,739,737,741,742,738,737,739,743,741,739,740,744,743,741,717,724,742,741,743,718,717,743,744,721,718,745,746,747,748,745,749,750,746,749,751,752,750,746,
- 753,754,747,746,750,755,753,750,752,756,755,757,758,759,760,761,762,763,764,764,763,765,766,766,765,767,768,768,767,769,770,770,769,771,772,772,771,773,774,774,773,775,776,776,775,777,778,778,777,779,780,780,779,781,782,782,781,783,784,784,783,785,786,786,785,787,788,788,787,789,790,790,789,791,792,792,791,793,794,794,793,795,796,796,795,797,798,757,760,762,761,799,800,801,802,800,803,804,801,799,802,805,806,807,808,809,810,807,811,812,808,811,813,814,812,808,815,816,809,808,812,817,815,812,814,818,817,815,819,820,816,815,817,821,819,817,818,822,821,819,823,824,820,819,821,825,823,821,822,826,825,823,799,806,824,823,825,800,799,825,826,803,800,827,828,829,830,828,831,832,829,827,830,833,834,835,836,837,838,835,839,840,836,839,841,842,840,836,843,844,837,836,840,845,843,840,842,846,845,843,847,848,844,843,845,849,847,845,846,850,849,847,851,852,848,847,849,853,851,849,850,854,853,851,827,834,852,851,853,828,827,853,854,831,828,855,856,857,858,856,859,860,857,855,858,861,862,863,864,865,866,863,867,868,864,867,869,870,868,864,871,872,865,864,868,873,871,868,870,874,873,871,875,876,872,871,873,877,875,873,874,878,877,875,879,880,876,875,877,881,879,877,878,882,881,879,855,862,880,879,881,856,855,881,882,859,856,883,884,885,886,883,887,888,884,887,889,890,888,884,891,892,885,884,888,893,891,888,890,894,893,895,896,897,898,899,900,901,902,902,901,903,904,904,903,905,906,906,905,907,908,908,907,909,910,910,909,911,912,912,911,913,914,914,913,915,916,916,915,917,918,918,917,919,920,920,919,921,922,922,921,923,924,924,923,925,926,926,925,927,928,928,927,929,930,930,929,931,932,932,931,933,934,934,933,935,936,895,898,900,899
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *1276 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,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,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,0,0,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,1,0,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1,0,1,0,
- 1,0,0,1,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,1,0,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0,1,0,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,0,0,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,1,0,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,1,0,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0,1,0,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
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "ByPolygon"
- ReferenceInformationType: "IndexToDirect"
- Materials: *632 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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
- }
- }
- 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: 2399509538528, "Geometry::", "Mesh" {
- Vertices: *690 {
- a: 360.3125,0,-149.246337890625,275.7734375,0,-275.771362304688,149.24609375,0,-360.312744140625,0,0,-389.999755859375,-149.24609375,0,-360.312866210938,-275.7734375,0,-275.771606445313,-360.3125,0,-149.246704101563,-390,0,-0.000244140625,-360.3125,0,149.246215820313,-275.7734375,0,275.771362304688,-149.24609375,0,360.312744140625,0,0,389.999755859375,149.24609375,0,360.312866210938,275.7734375,0,275.771484375,360.3125,0,149.246459960938,390,0,-0.0001220703125,360.3125,600,-149.246337890625,275.7734375,600,-275.771362304688,149.24609375,600,-360.312744140625,0,600,-389.999755859375,-149.24609375,600,-360.312866210938,-275.7734375,600,-275.771606445313,-360.3125,600,-149.246704101563,-390,600,-0.000244140625,-360.3125,600,149.246215820313,-275.7734375,600,275.771362304688,-149.24609375,600,360.312744140625,0,600,389.999755859375,149.24609375,600,360.312866210938,275.7734375,600,275.771484375,360.3125,600,149.246459960938,390,600,-0.0001220703125,360.3125,400,-149.246337890625,275.7734375,400,-275.771362304688,149.24609375,400,-360.312744140625,0,400,-389.999755859375,-149.24609375,400,-360.312866210938,-275.7734375,400,-275.771606445313,-360.3125,400,-149.246704101563,-390,400,-0.000244140625,-360.3125,400,149.246215820313,-275.7734375,400,275.771362304688,-149.24609375,400,360.312744140625,0,400,389.999755859375,149.24609375,400,360.312866210938,275.7734375,400,275.771484375,360.3125,400,149.246459960938,390,400,-0.0001220703125,360.3125,200,-149.246337890625,275.7734375,200,-275.771362304688,149.24609375,200,-360.312744140625,0,200,-389.999755859375,-149.24609375,200,-360.312866210938,-275.7734375,200,-275.771606445313,-360.3125,200,-149.246704101563,-390,200,-0.000244140625,-360.3125,200,149.246215820313,-275.7734375,200,275.771362304688,-149.24609375,200,360.312744140625,0,200,389.999755859375,149.24609375,200,360.312866210938,275.7734375,200,275.771606445313,360.3125,200,149.246459960938,390,200,-0.0001220703125,303.6171875,0,-125.76123046875,232.37890625,0,-232.37646484375,125.76171875,0,-303.614624023438,
- 0,0,-328.630126953125,-125.7578125,0,-303.61474609375,-232.375,0,-232.376708984375,-303.61328125,0,-125.761474609375,-328.6328125,0,-0.000213623046875,-303.61328125,0,125.761108398438,-232.375,0,232.37646484375,-125.7578125,0,303.614624023438,0,0,328.630126953125,125.76171875,0,303.61474609375,232.37890625,0,232.376586914063,303.6171875,0,125.761352539063,328.6328125,0,-0.0001220703125,303.6171875,600,-125.76123046875,232.37890625,600,-232.37646484375,125.76171875,600,-303.614624023438,0,600,-328.630126953125,-125.7578125,600,-303.61474609375,-232.375,600,-232.376708984375,-303.61328125,600,-125.761474609375,-328.6328125,600,-0.000213623046875,-303.61328125,600,125.761108398438,-232.375,600,232.37646484375,-125.7578125,600,303.614624023438,0,600,328.630126953125,125.76171875,600,303.61474609375,232.37890625,600,232.376586914063,303.6171875,600,125.761352539063,328.6328125,600,-0.0001220703125,303.6171875,500,-125.76123046875,232.37890625,500,-232.37646484375,125.76171875,500,-303.614624023438,0,500,-328.630126953125,-125.7578125,500,-303.61474609375,-232.375,500,-232.376708984375,-303.61328125,500,-125.761474609375,-328.6328125,500,-0.00018310546875,-303.61328125,500,125.761108398438,-232.375,500,232.37646484375,-125.7578125,500,303.614624023438,0,500,328.630126953125,125.76171875,500,303.61474609375,232.37890625,500,232.376586914063,303.6171875,500,125.761352539063,328.6328125,500,-0.0001220703125,303.6171875,400,-125.76123046875,232.37890625,400,-232.37646484375,125.76171875,400,-303.614624023438,0,400,-328.630126953125,-125.7578125,400,-303.61474609375,-232.375,400,-232.376708984375,-303.61328125,400,-125.761474609375,-328.6328125,400,-0.00018310546875,-303.61328125,400,125.761108398438,-232.375,400,232.37646484375,-125.7578125,400,303.614624023438,0,400,328.630126953125,125.76171875,400,303.61474609375,232.37890625,400,232.376586914063,303.6171875,400,125.761352539063,328.6328125,400,-0.0001220703125,303.6171875,200,-125.76123046875,232.37890625,200,-232.37646484375,125.76171875,200,-303.614624023438,0,200,-328.630126953125,
- -125.7578125,200,-303.61474609375,-232.375,200,-232.376708984375,-303.61328125,200,-125.761474609375,-328.6328125,200,-0.00018310546875,-303.61328125,200,125.761108398438,-232.375,200,232.37646484375,-125.7578125,200,303.614624023438,0,200,328.630126953125,125.76171875,200,303.61474609375,232.37890625,200,232.376586914063,303.6171875,200,125.761352539063,328.6328125,200,-0.0001220703125,303.6171875,100,-125.76123046875,232.37890625,100,-232.37646484375,125.76171875,100,-303.614624023438,0,100,-328.630126953125,-125.7578125,100,-303.61474609375,-232.375,100,-232.376708984375,-303.61328125,100,-125.761474609375,-328.6328125,100,-0.00018310546875,-303.61328125,100,125.761108398438,-232.375,100,232.37646484375,-125.7578125,100,303.614624023438,0,100,328.630126953125,125.76171875,100,303.61474609375,232.37890625,100,232.376586914063,303.6171875,100,125.761352539063,328.6328125,100,-0.0001220703125,-38.04296875,400,386.252868652344,-38.04296875,200,386.252868652344,38.04296875,400,386.2529296875,38.04296875,200,386.2529296875,-32.0546875,400,325.472839355469,-32.0546875,200,325.472839355469,32.0546875,400,325.472900390625,32.0546875,200,325.472900390625,-67.9775390625,180.848999023438,384.029083251953,68.5791015625,180.848999023438,384.029083251953,-57.025390625,180.848999023438,322.494720458984,57.626953125,180.848999023438,322.494720458984,-69.248046875,186.760620117188,391.170166015625,69.849609375,186.760620117188,391.170166015625,56.3564453125,186.760620117188,315.353637695313,-55.7548828125,186.760620117188,315.353637695313,-69.248046875,204.867309570313,391.170166015625,69.849609375,204.867309570313,391.170166015625,-55.7548828125,204.867309570313,315.353637695313,56.3564453125,204.867309570313,315.353637695313,-0.03125,204.867309570313,397.310943603516,-0.03125,186.760620117188,397.310943603516,-0.025390625,180.848999023438,390.0576171875,0.02734375,180.848999023438,327.556304931641,0.033203125,186.760620117188,320.302978515625,0.033203125,204.867309570313,320.302978515625,-35.65234375,204.59326171875,392.714813232422,
- -66.349609375,204.59326171875,388.911682128906,-61.294921875,204.59326171875,359.443054199219,-32.9453125,204.59326171875,363.16796875,-35.65234375,342.613037109375,392.714813232422,-66.349609375,342.613037109375,388.911682128906,-61.294921875,342.613037109375,359.443054199219,-32.9453125,342.613037109375,363.16796875,28.068359375,380.04345703125,393.379028320313,53.380859375,397.669921875,390.997222900391,49.3544921875,397.669921875,361.370422363281,25.9775390625,380.04345703125,363.782165527344,-60.3388671875,370.753662109375,359.605712890625,-65.3154296875,370.753662109375,389.087707519531,-35.091796875,365.76171875,392.765777587891,-32.4267578125,365.76171875,363.215087890625,-51.255859375,395.7294921875,361.021484375,-55.4873046875,395.7294921875,390.619659423828,-29.443359375,378.405029296875,393.234405517578,-27.203125,378.405029296875,363.648406982422,-29.1826171875,414.839111328125,363.493103027344,-31.6025390625,414.839111328125,393.294128417969,-15.8251953125,389.1982421875,394.028656005859,-14.6103515625,389.1982421875,364.382843017578,0.5947265625,421.30322265625,364.688049316406,0.619140625,421.30322265625,394.587158203125,0.50390625,392.565673828125,394.358764648438,0.48828125,392.565673828125,364.688110351563,31.541015625,413.39892578125,363.346160888672,34.10546875,413.39892578125,393.135131835938,16.9658203125,388.751220703125,394.006225585938,15.7109375,388.751220703125,364.362091064453,61.23828125,362.71826171875,359.555206298828,66.240234375,362.71826171875,389.033050537109,35.5224609375,362.135009765625,392.781219482422,32.869140625,362.135009765625,363.229370117188,61.294921875,271.89453125,359.545593261719,66.3017578125,271.89453125,389.022644042969,35.59765625,271.89453125,392.7744140625,32.939453125,271.89453125,363.223083496094,61.294921875,204.469482421875,359.545593261719,66.3017578125,204.469482421875,389.022644042969,35.59765625,204.469482421875,392.7744140625,32.939453125,204.469482421875,363.223083496094
- }
- PolygonVertexIndex: *896 {
- a: 48,0,1,-50,49,1,2,-51,50,2,3,-52,51,3,4,-53,52,4,5,-54,53,5,6,-55,54,6,7,-56,55,7,8,-57,56,8,9,-58,57,9,10,-59,58,10,11,59,-162,163,59,11,12,-61,60,12,13,-62,61,13,14,-63,62,14,15,-64,48,63,15,-1,16,32,33,-18,17,33,34,-19,18,34,35,-20,19,35,36,-21,20,36,37,-22,21,37,38,-23,22,38,39,-24,23,39,40,-25,24,40,41,-26,25,41,42,-27,26,42,160,43,-28,27,43,162,44,-29,28,44,45,-30,29,45,46,-31,30,46,47,-32,31,47,32,-17,33,32,48,-50,34,33,49,-51,35,34,50,-52,36,35,51,-53,37,36,52,-54,38,37,53,-55,39,38,54,-56,40,39,55,-57,41,40,56,-58,42,41,57,-59,42,58,161,-161,44,162,163,-61,45,44,60,-62,46,45,61,-63,47,46,62,-64,32,47,63,-49,144,64,79,-160,144,145,65,-65,145,146,66,-66,146,147,67,-67,147,148,68,-68,148,149,69,-69,149,150,70,-70,150,151,71,-71,151,152,72,-72,152,153,73,-73,153,154,74,-74,154,155,75,-75,155,156,76,-76,156,157,77,-77,157,158,78,-78,158,159,79,-79,80,96,111,-96,81,97,96,-81,82,98,97,-82,83,99,98,-83,84,100,99,-84,85,101,100,-85,86,102,101,-86,87,103,102,-87,88,104,103,-88,89,105,104,-89,90,106,105,-90,91,107,106,-91,92,108,107,-92,93,109,108,-93,94,110,109,-94,95,111,110,-95,111,96,112,-128,96,97,113,-113,97,98,114,-114,98,99,115,-115,99,100,116,-116,100,101,117,-117,101,102,118,-118,102,103,119,-119,103,104,120,-120,104,105,121,-121,105,106,122,-122,106,107,123,164,-123,107,108,124,166,-124,108,109,125,-125,109,110,126,-126,110,111,127,-127,127,112,128,-144,112,113,129,-129,113,114,130,-130,114,115,131,-131,115,116,132,-132,116,117,133,-133,117,118,134,-134,118,119,135,-135,119,120,136,-136,120,121,137,-137,121,122,138,-138,122,164,165,-139,166,124,140,-168,124,125,141,-141,125,126,142,-142,126,127,143,-143,143,128,144,-160,128,129,145,-145,129,130,146,-146,130,131,147,-147,131,132,148,-148,132,133,149,-149,133,134,150,-150,134,135,151,-151,135,136,152,-152,136,137,153,-153,137,138,154,-154,138,165,139,155,-155,167,140,156,155,-140,140,141,157,-157,141,142,158,-158,142,143,159,-159,123,43,160,-165,139,59,163,-168,162,43,123,-167,163,162,166,-168,161,59,139,-166,165,164,160,-162,87,86,22,-24,
- 21,22,86,-86,20,21,85,-85,19,20,84,-84,18,19,83,-83,17,18,82,-82,16,17,81,-81,31,16,80,-96,95,94,30,-32,29,30,94,-94,28,29,93,-93,27,28,92,-92,26,27,91,-91,25,26,90,-90,24,25,89,-89,23,24,88,-88,78,79,15,-15,70,71,7,-7,6,5,69,-71,5,4,68,-70,4,3,67,-69,3,2,66,-68,2,1,65,-67,1,0,64,-66,0,15,79,-65,14,13,77,-79,13,12,76,-78,12,11,75,-77,11,10,74,-76,10,9,73,-75,9,8,72,-74,8,7,71,-73,181,173,177,-181,177,179,185,-181,185,179,174,-185,183,171,169,-183,173,174,179,-178,175,172,176,-179,182,169,173,-182,169,171,174,-174,184,174,171,-184,170,168,172,-176,172,181,180,-177,168,182,181,-173,170,183,182,-169,175,184,183,-171,178,185,184,-176,185,178,176,-181,190,191,187,-187,193,190,186,-190,191,192,188,-188,215,216,194,-196,216,217,197,-195,215,195,196,-215,191,199,198,-193,191,190,200,-200,190,193,201,-201,199,203,202,-199,199,200,204,-204,200,201,205,-205,203,207,206,-203,203,204,208,-208,204,205,209,-209,207,211,210,-207,207,208,212,-212,208,209,213,-213,211,215,214,-211,211,212,216,-216,212,213,217,-217,223,224,228,-228,195,219,218,-197,195,194,220,-220,194,197,221,-221,223,222,218,-220,220,224,223,-220,225,224,220,-222,223,227,226,-223,229,228,224,-226,193,189,188,-193,193,192,198,-202,201,198,202,-206,205,202,206,-210,209,206,210,-214,213,210,214,-218,217,214,196,-198,197,196,218,-222,225,221,218,-223,229,225,222,-227
- }
- Edges: *452 {
- a: 1,5,9,13,17,21,25,29,33,37,41,47,51,55,59,64,131,69,73,77,81,85,89,93,97,101,105,110,115,119,123,127,0,2,6,10,14,18,22,26,30,34,38,42,48,52,56,60,66,68,72,76,80,84,88,92,96,100,104,109,114,118,122,126,67,71,75,79,83,87,91,95,99,103,108,113,117,121,125,129,133,135,139,143,147,151,155,159,163,167,171,179,183,187,191,3,7,11,15,19,23,27,31,35,39,43,49,53,57,61,62,197,202,206,210,214,218,222,226,230,234,238,242,246,250,254,258,267,271,275,279,283,287,291,295,299,303,307,311,315,319,323,263,196,201,205,209,213,217,221,225,229,233,237,241,245,249,253,198,260,264,268,272,276,280,284,288,292,296,300,304,308,312,316,262,261,265,269,273,277,281,285,289,293,297,301,305,309,313,317,321,325,329,333,337,341,345,349,353,357,361,365,369,374,379,383,327,326,330,334,338,342,346,350,354,358,362,366,370,375,380,384,388,391,395,399,403,407,411,415,419,423,427,431,439,443,447,393,392,396,400,404,408,412,416,420,424,428,432,499,440,444,448,452,455,459,463,467,471,475,479,483,487,491,495,500,504,509,513,457,200,204,208,212,216,220,224,228,232,236,240,244,248,252,256,199,107,44,174,112,45,177,371,436,435,376,507,441,522,520,526,524,531,539,575,547,545,551,555,559,563,567,571,577,583,587,591,595,599,603,609,613,615,617,621,625,629,633,637,611,645,649,653,657,661,665,716,720,709,697,708,685,693,673,701,711,712,688,682,692,694,695,681,676,674,728,714,672,675,686,699,684,687,724,707,677,683,678,738,742,746,736,740,737,744,743,745,739,749,750,754,760,757,762,769,774,772,761,765,766,781,770,786,784,773,777,778,793,782,798,796,785,789,790,805,794,810,808,797,801,802,817,806,758,751,759,813,748,753,752,824,826,833,839,825,829,830,847,834,837,836,840,820,855,844,823,850,849,821,822,852,895,857,859,862,866,870,874,878,882,886,891
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *2688 {
- a: 0.923881471157074,0,-0.382678776979446,0.923881471157074,0,-0.382678776979446,0.70710676908493,0,-0.70710676908493,0.70710676908493,0,-0.70710676908493,0.70710676908493,0,-0.70710676908493,0.70710676908493,0,-0.70710676908493,0.382681429386139,0,-0.923880398273468,0.382681429386139,0,-0.923880398273468,0.382681429386139,0,-0.923880398273468,0.382681429386139,0,-0.923880398273468,3.9573166077389e-007,0,-1,3.9573166077389e-007,0,-1,3.9573166077389e-007,0,-1,3.9573166077389e-007,0,-1,-0.382680773735046,0,-0.923880696296692,-0.382680773735046,0,-0.923880696296692,-0.382680773735046,0,-0.923880696296692,-0.382680773735046,0,-0.923880696296692,-0.707106351852417,0,-0.707107186317444,-0.707106351852417,0,-0.707107186317444,-0.707106351852417,0,-0.707107186317444,-0.707106351852417,0,-0.707107186317444,-0.923881471157074,0,-0.382678657770157,-0.923881471157074,0,-0.382678657770157,-0.923881471157074,0,-0.382678657770157,-0.923881471157074,0,-0.382678657770157,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.923881649971008,0,0.382678329944611,-0.923881649971008,0,0.382678329944611,-0.923881649971008,0,0.382678329944611,-0.923881649971008,0,0.382678329944611,-0.70710700750351,0,0.707106590270996,-0.70710700750351,0,0.707106590270996,-0.70710700750351,0,0.707106590270996,-0.70710700750351,0,0.707106590270996,-0.38267707824707,-0.00477535463869572,0.923869788646698,-0.400895297527313,-0.00254305684939027,0.91612035036087,-0.400895297527313,-0.00254305684939027,0.91612035036087,-0.38267707824707,-0.00477535463869572,0.923869788646698,-4.06127156793445e-007,-0.00955050252377987,0.999954402446747,-4.06127156793445e-007,-0.00955050252377987,0.999954402446747,-0.204134404659271,-0.00673231249675155,0.978919744491577,0.20413376390934,-0.00673236511647701,0.978919863700867,-4.06127156793445e-007,-0.00955050252377987,0.999954402446747,-4.06127156793445e-007,-0.00955050252377987,0.999954402446747,0.38267657160759,-0.00477552320808172,0.923870027065277,0.400894910097122,-0.00254307268187404,0.916120588779449,0.400894910097122,-0.00254307268187404,0.916120588779449,
- 0.38267657160759,-0.00477552320808172,0.923870027065277,0.70710676908493,-1.96298572063824e-007,0.70710676908493,0.707106709480286,3.85792775503546e-009,0.70710688829422,0.707106709480286,3.85792775503546e-009,0.70710688829422,0.70710676908493,-1.96298572063824e-007,0.70710676908493,0.923881649971008,-6.54329923577279e-008,0.382678329944611,0.923881649971008,0,0.382678329944611,0.923881649971008,0,0.382678329944611,0.923881649971008,-6.54329923577279e-008,0.382678329944611,1,0,0,1,0,0,0.923881471157074,0,-0.382678776979446,1,0,0,1,0,0,0.923881471157074,0,-0.382678776979446,0.923881471157074,0,-0.382678776979446,0.923881471157074,0,-0.382678776979446,0.70710676908493,0,-0.70710676908493,0.70710676908493,0,-0.70710676908493,0.70710676908493,0,-0.70710676908493,0.70710676908493,0,-0.70710676908493,0.382681429386139,0,-0.923880398273468,0.382681429386139,0,-0.923880398273468,0.382681429386139,0,-0.923880398273468,0.382681429386139,0,-0.923880398273468,3.9573166077389e-007,0,-1,3.9573166077389e-007,0,-1,3.9573166077389e-007,0,-1,3.9573166077389e-007,0,-1,-0.382680773735046,0,-0.923880696296692,-0.382680773735046,0,-0.923880696296692,-0.382680773735046,0,-0.923880696296692,-0.382680773735046,0,-0.923880696296692,-0.707106351852417,0,-0.707107186317444,-0.707106351852417,0,-0.707107186317444,-0.707106351852417,0,-0.707107186317444,-0.707106351852417,0,-0.707107186317444,-0.923881471157074,0,-0.382678657770157,-0.923881471157074,0,-0.382678657770157,-0.923881471157074,0,-0.382678657770157,-0.923881471157074,0,-0.382678657770157,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.923881649971008,0,0.382678329944611,-0.923881649971008,0,0.382678329944611,-0.923881649971008,0,0.382678329944611,-0.923881649971008,0,0.382678329944611,-0.70710700750351,0,0.707106590270996,-0.70710700750351,0,0.707106590270996,-0.70710700750351,0,0.707106590270996,-0.70710700750351,0,0.707106590270996,-0.400895297527313,0.00254305684939027,0.91612035036087,-0.38267707824707,0.00477535463869572,0.923869788646698,-0.38267707824707,0.00477535463869572,0.923869788646698,
- -0.400895297527313,0.00254305684939027,0.91612035036087,-0.204134404659271,0.00673231249675155,0.978919744491577,-4.06127156793445e-007,0.00955050252377987,0.999954402446747,-4.06127156793445e-007,0.00955050252377987,0.999954402446747,-4.06127156793445e-007,0.00955050252377987,0.999954402446747,-4.06127156793445e-007,0.00955050252377987,0.999954402446747,0.20413376390934,0.00673236511647701,0.978919863700867,0.400894969701767,0.00254315068013966,0.916120529174805,0.382676720619202,0.0047753918915987,0.923869907855988,0.382676720619202,0.0047753918915987,0.923869907855988,0.400894969701767,0.00254315068013966,0.916120529174805,0.70710676908493,1.02007213342858e-007,0.70710676908493,0.70710676908493,0,0.70710676908493,0.70710676908493,0,0.70710676908493,0.70710676908493,1.02007213342858e-007,0.70710676908493,0.923881649971008,3.2716496178864e-008,0.382678329944611,0.923881709575653,0,0.382678389549255,0.923881709575653,0,0.382678389549255,0.923881649971008,3.2716496178864e-008,0.382678329944611,1,0,0,1,0,0,1,0,0,1,0,0,0.923881471157074,0,-0.382678776979446,0.923881471157074,0,-0.382678776979446,0.70710676908493,0,-0.70710676908493,0.923881471157074,0,-0.382678776979446,0.923881471157074,0,-0.382678776979446,0.70710676908493,0,-0.70710676908493,0.382681429386139,0,-0.923880398273468,0.70710676908493,0,-0.70710676908493,0.70710676908493,0,-0.70710676908493,0.382681429386139,0,-0.923880398273468,3.9573166077389e-007,0,-1,0.382681429386139,0,-0.923880398273468,0.382681429386139,0,-0.923880398273468,3.9573166077389e-007,0,-1,-0.382680773735046,0,-0.923880696296692,3.9573166077389e-007,0,-1,3.9573166077389e-007,0,-1,-0.382680773735046,0,-0.923880696296692,-0.707106351852417,0,-0.707107186317444,-0.382680773735046,0,-0.923880696296692,-0.382680773735046,0,-0.923880696296692,-0.707106351852417,0,-0.707107186317444,-0.923881471157074,0,-0.382678657770157,-0.707106351852417,0,-0.707107186317444,-0.707106351852417,0,-0.707107186317444,-0.923881471157074,0,-0.382678657770157,-1,0,0,-0.923881471157074,0,-0.382678657770157,-0.923881471157074,0,-0.382678657770157,
- -1,0,0,-0.923881649971008,0,0.382678329944611,-1,0,0,-1,0,0,-0.923881649971008,0,0.382678329944611,-0.70710700750351,0,0.707106590270996,-0.923881649971008,0,0.382678329944611,-0.923881649971008,0,0.382678329944611,-0.70710700750351,0,0.707106590270996,-0.400895297527313,0.00254305684939027,0.91612035036087,-0.70710700750351,0,0.707106590270996,-0.70710700750351,0,0.707106590270996,-0.400895297527313,-0.00254305684939027,0.91612035036087,-0.400895297527313,0.00254305684939027,0.91612035036087,-0.400895297527313,-0.00254305684939027,0.91612035036087,-0.204134404659271,-0.00673231249675155,0.978919744491577,-0.204134404659271,0.00673231249675155,0.978919744491577,0.400894969701767,0.00254315068013966,0.916120529174805,0.20413376390934,0.00673236511647701,0.978919863700867,0.20413376390934,-0.00673236511647701,0.978919863700867,0.400894910097122,-0.00254307268187404,0.916120588779449,0.70710676908493,1.02007213342858e-007,0.70710676908493,0.400894969701767,0.00254315068013966,0.916120529174805,0.400894910097122,-0.00254307268187404,0.916120588779449,0.707106709480286,3.85792775503546e-009,0.70710688829422,0.923881649971008,3.2716496178864e-008,0.382678329944611,0.70710676908493,1.02007213342858e-007,0.70710676908493,0.707106709480286,3.85792775503546e-009,0.70710688829422,0.923881649971008,0,0.382678329944611,1,0,0,0.923881649971008,3.2716496178864e-008,0.382678329944611,0.923881649971008,0,0.382678329944611,1,0,0,0.923881471157074,0,-0.382678776979446,1,0,0,1,0,0,0.923881471157074,0,-0.382678776979446,-0.923878848552704,0,0.382685035467148,-0.923878848552704,0,0.382685035467148,-1,0,-6.17935569380279e-009,-1,0,-6.17935569380279e-009,-0.923878848552704,0,0.382685035467148,-0.707102656364441,0,0.70711088180542,-0.707102656364441,0,0.70711088180542,-0.923878848552704,0,0.382685035467148,-0.707102656364441,0,0.70711088180542,-0.382680594921112,0,0.923880696296692,-0.382680594921112,0,0.923880696296692,-0.707102656364441,0,0.70711088180542,-0.382680594921112,0,0.923880696296692,-4.75816165135257e-007,0,1,-4.75816165135257e-007,0,1,
- -0.382680594921112,0,0.923880696296692,-4.75816165135257e-007,0,1,0.382685244083405,0,0.923878788948059,0.382685244083405,0,0.923878788948059,-4.75816165135257e-007,0,1,0.382685244083405,0,0.923878788948059,0.707102477550507,0,0.707111179828644,0.707102477550507,0,0.707111179828644,0.382685244083405,0,0.923878788948059,0.707102477550507,0,0.707111179828644,0.923873543739319,0,0.382698059082031,0.923873543739319,0,0.382698059082031,0.707102477550507,0,0.707111179828644,0.923873543739319,0,0.382698059082031,1,4.40631957587811e-008,-1.54483874581501e-008,1,8.81263559904255e-008,4.94348419977086e-008,0.923873543739319,0,0.382698059082031,1,4.40631957587811e-008,-1.54483874581501e-008,0.923873543739319,4.40628866726911e-008,-0.382697850465775,0.923873543739319,8.81257733453822e-008,-0.382697850465775,1,8.81263559904255e-008,4.94348419977086e-008,0.923873543739319,4.40628866726911e-008,-0.382697850465775,0.707102835178375,0,-0.707110643386841,0.70710289478302,0,-0.707110643386841,0.923873543739319,8.81257733453822e-008,-0.382697850465775,0.707102835178375,0,-0.707110643386841,0.382682949304581,0.0040235873311758,-0.923870980739594,0.382686018943787,0,-0.92387843132019,0.70710289478302,0,-0.707110643386841,0.382682949304581,0.0040235873311758,-0.923870980739594,4.72711121801694e-007,0.0080469511449337,-0.999967575073242,4.75816165135257e-007,0,-1,0.382686018943787,0,-0.92387843132019,4.72711121801694e-007,0.0080469511449337,-0.999967575073242,-0.38267707824707,0.00402344902977347,-0.923873424530029,-0.382680177688599,0,-0.923880875110626,4.75816165135257e-007,0,-1,-0.38267707824707,0.00402344902977347,-0.923873424530029,-0.707102656364441,0,-0.70711088180542,-0.707102656364441,0,-0.70711088180542,-0.382680177688599,0,-0.923880875110626,-0.707102656364441,0,-0.70711088180542,-0.923879027366638,0,-0.382684528827667,-0.923879027366638,0,-0.382684528827667,-0.707102656364441,0,-0.70711088180542,-0.923879027366638,0,-0.382684528827667,-1,0,-6.17935569380279e-009,-1,0,-6.17935569380279e-009,-0.923879027366638,0,-0.382684528827667,
- -0.923878848552704,0,0.382685035467148,-0.923878848552704,0,0.382685035467148,-1,0,-6.17935569380279e-009,-1,0,-6.17935569380279e-009,-0.707102656364441,0,0.70711088180542,-0.707102656364441,0,0.70711088180542,-0.923878848552704,0,0.382685035467148,-0.923878848552704,0,0.382685035467148,-0.382680594921112,0,0.923880696296692,-0.382680594921112,0,0.923880696296692,-0.707102656364441,0,0.70711088180542,-0.707102656364441,0,0.70711088180542,-4.75816165135257e-007,0,1,-4.75816165135257e-007,0,1,-0.382680594921112,0,0.923880696296692,-0.382680594921112,0,0.923880696296692,0.382685244083405,0,0.923878788948059,0.382685244083405,0,0.923878788948059,-4.75816165135257e-007,0,1,-4.75816165135257e-007,0,1,0.707102477550507,0,0.707111179828644,0.707102477550507,0,0.707111179828644,0.382685244083405,0,0.923878788948059,0.382685244083405,0,0.923878788948059,0.923873543739319,0,0.382698059082031,0.923873543739319,0,0.382698059082031,0.707102477550507,0,0.707111179828644,0.707102477550507,0,0.707111179828644,1,-1.55304107352094e-007,4.94348419977086e-008,1,-7.76520820977566e-008,-1.54483874581501e-008,0.923873543739319,0,0.382698059082031,0.923873543739319,0,0.382698059082031,0.923873543739319,-1.553030699597e-007,-0.382697850465775,0.923873543739319,-7.76515349798501e-008,-0.382697850465775,1,-7.76520820977566e-008,-1.54483874581501e-008,1,-1.55304107352094e-007,4.94348419977086e-008,0.70710289478302,0,-0.707110643386841,0.707102835178375,0,-0.707110643386841,0.923873543739319,-7.76515349798501e-008,-0.382697850465775,0.923873543739319,-1.553030699597e-007,-0.382697850465775,0.382686018943787,0,-0.92387843132019,0.382682949304581,-0.0040235873311758,-0.923870980739594,0.707102835178375,0,-0.707110643386841,0.70710289478302,0,-0.707110643386841,4.75816165135257e-007,0,-1,4.72711121801694e-007,-0.0080469511449337,-0.999967575073242,0.382682949304581,-0.0040235873311758,-0.923870980739594,0.382686018943787,0,-0.92387843132019,-0.382680177688599,0,-0.923880875110626,-0.38267707824707,-0.00402344902977347,-0.923873424530029,4.72711121801694e-007,-0.0080469511449337,-0.999967575073242,
- 4.75816165135257e-007,0,-1,-0.707102656364441,0,-0.70711088180542,-0.707102656364441,0,-0.70711088180542,-0.38267707824707,-0.00402344902977347,-0.923873424530029,-0.382680177688599,0,-0.923880875110626,-0.923879027366638,0,-0.382684528827667,-0.923879027366638,0,-0.382684528827667,-0.707102656364441,0,-0.70711088180542,-0.707102656364441,0,-0.70711088180542,-1,0,-6.17935569380279e-009,-1,0,-6.17935569380279e-009,-0.923879027366638,0,-0.382684528827667,-0.923879027366638,0,-0.382684528827667,-1,0,-6.17935569380279e-009,-0.923878848552704,0,0.382685035467148,-0.923878908157349,0,0.382685035467148,-0.999999940395355,0,-4.11957046253519e-009,-0.923878848552704,0,0.382685035467148,-0.707102656364441,0,0.70711088180542,-0.707102656364441,0,0.70711088180542,-0.923878908157349,0,0.382685035467148,-0.707102656364441,0,0.70711088180542,-0.382680594921112,0,0.923880696296692,-0.38268056511879,0,0.923880636692047,-0.707102656364441,0,0.70711088180542,-0.382680594921112,0,0.923880696296692,-4.75816165135257e-007,0,1,-4.77875971682806e-007,0,1,-0.38268056511879,0,0.923880636692047,-4.75816165135257e-007,0,1,0.382685244083405,0,0.923878788948059,0.382685244083405,0,0.923878788948059,-4.77875971682806e-007,0,1,0.382685244083405,0,0.923878788948059,0.707102477550507,0,0.707111179828644,0.707102417945862,0,0.707111120223999,0.382685244083405,0,0.923878788948059,0.707102477550507,0,0.707111179828644,0.923873543739319,0,0.382698059082031,0.923873424530029,0,0.382698029279709,0.707102417945862,0,0.707111120223999,0.923873543739319,0,0.382698059082031,1,-7.76520820977566e-008,-1.54483874581501e-008,1,0,0,0.923873424530029,0,0.382698029279709,1,-7.76520820977566e-008,-1.54483874581501e-008,0.923873543739319,-7.76515349798501e-008,-0.382697850465775,0.923873543739319,0,-0.382697880268097,1,0,0,0.923873543739319,-7.76515349798501e-008,-0.382697850465775,0.707102835178375,0,-0.707110643386841,0.70710289478302,0,-0.707110643386841,0.923873543739319,0,-0.382697880268097,0.707102835178375,0,-0.707110643386841,0.382682949304581,-0.0040235873311758,-0.923870980739594,
- 0.407468795776367,-0.00291998009197414,-0.913214445114136,0.70710289478302,0,-0.707110643386841,0.382682949304581,-0.0040235873311758,-0.923870980739594,4.72711121801694e-007,-0.0080469511449337,-0.999967575073242,4.69575894612717e-007,-0.016092337667942,-0.999870479106903,0.209201961755753,-0.00885390024632216,-0.97783237695694,0.407468795776367,-0.00291998009197414,-0.913214445114136,4.72711121801694e-007,-0.0080469511449337,-0.999967575073242,-0.38267707824707,-0.00402344902977347,-0.923873424530029,-0.407462269067764,-0.00291987601667643,-0.913217425346375,-0.20919406414032,-0.0088534289970994,-0.977834045886993,4.69575894612717e-007,-0.016092337667942,-0.999870479106903,-0.38267707824707,-0.00402344902977347,-0.923873424530029,-0.707102656364441,0,-0.70711088180542,-0.707102656364441,0,-0.70711088180542,-0.407462269067764,-0.00291987601667643,-0.913217425346375,-0.707102656364441,0,-0.70711088180542,-0.923879027366638,0,-0.382684528827667,-0.923879027366638,0,-0.38268455862999,-0.707102656364441,0,-0.70711088180542,-0.923879027366638,0,-0.382684528827667,-1,0,-6.17935569380279e-009,-0.999999940395355,0,-4.11957046253519e-009,-0.923879027366638,0,-0.38268455862999,-0.999999940395355,0,-4.11957046253519e-009,-0.923878908157349,0,0.382685035467148,-0.923878908157349,0,0.382685035467148,-0.999999940395355,0,-6.17935569380279e-009,-0.923878908157349,0,0.382685035467148,-0.707102656364441,0,0.70711088180542,-0.707102656364441,0,0.70711088180542,-0.923878908157349,0,0.382685035467148,-0.707102656364441,0,0.70711088180542,-0.38268056511879,0,0.923880636692047,-0.38268056511879,0,0.923880696296692,-0.707102656364441,0,0.70711088180542,-0.38268056511879,0,0.923880636692047,-4.77875971682806e-007,0,1,-4.75816136713547e-007,0,0.999999940395355,-0.38268056511879,0,0.923880696296692,-4.77875971682806e-007,0,1,0.382685244083405,0,0.923878788948059,0.382685244083405,0,0.923878788948059,-4.75816136713547e-007,0,0.999999940395355,0.382685244083405,0,0.923878788948059,0.707102417945862,0,0.707111120223999,0.707102417945862,0,0.707111120223999,
- 0.382685244083405,0,0.923878788948059,0.707102417945862,0,0.707111120223999,0.923873424530029,0,0.382698029279709,0.923873484134674,0,0.382697999477386,0.707102417945862,0,0.707111120223999,0.923873424530029,0,0.382698029279709,1,0,0,1,0,0,0.923873484134674,0,0.382697999477386,1,0,0,0.923873543739319,0,-0.382697880268097,0.923873543739319,0,-0.382697880268097,1,0,0,0.923873543739319,0,-0.382697880268097,0.70710289478302,0,-0.707110643386841,0.70710289478302,0,-0.707110643386841,0.923873543739319,0,-0.382697880268097,0.70710289478302,0,-0.707110643386841,0.407468795776367,-0.00291998009197414,-0.913214445114136,0.407468765974045,0.00291998009197414,-0.913214504718781,0.70710289478302,0,-0.707110643386841,0.407468795776367,-0.00291998009197414,-0.913214445114136,0.209201961755753,-0.00885390024632216,-0.97783237695694,0.209201961755753,0.00885390024632216,-0.97783237695694,0.407468765974045,0.00291998009197414,-0.913214504718781,-0.20919406414032,-0.0088534289970994,-0.977834045886993,-0.407462269067764,-0.00291987601667643,-0.913217425346375,-0.407462269067764,0.00291987601667643,-0.913217425346375,-0.20919406414032,0.0088534289970994,-0.977834045886993,-0.407462269067764,-0.00291987601667643,-0.913217425346375,-0.707102656364441,0,-0.70711088180542,-0.707102656364441,0,-0.70711088180542,-0.407462269067764,0.00291987601667643,-0.913217425346375,-0.707102656364441,0,-0.70711088180542,-0.923879027366638,0,-0.38268455862999,-0.923879027366638,0,-0.382684499025345,-0.707102656364441,0,-0.70711088180542,-0.923879027366638,0,-0.38268455862999,-0.999999940395355,0,-4.11957046253519e-009,-0.999999940395355,0,-6.17935569380279e-009,-0.923879027366638,0,-0.382684499025345,-0.999999940395355,0,-6.17935569380279e-009,-0.923878908157349,0,0.382685035467148,-0.923878848552704,0,0.382685035467148,-1,0,-6.17935569380279e-009,-0.923878908157349,0,0.382685035467148,-0.707102656364441,0,0.70711088180542,-0.707102656364441,0,0.70711088180542,-0.923878848552704,0,0.382685035467148,-0.707102656364441,0,0.70711088180542,-0.38268056511879,0,0.923880696296692,
- -0.382680594921112,0,0.923880696296692,-0.707102656364441,0,0.70711088180542,-0.38268056511879,0,0.923880696296692,-4.75816136713547e-007,0,0.999999940395355,-4.75816165135257e-007,0,1,-0.382680594921112,0,0.923880696296692,-4.75816136713547e-007,0,0.999999940395355,0.382685244083405,0,0.923878788948059,0.382685244083405,0,0.923878788948059,-4.75816165135257e-007,0,1,0.382685244083405,0,0.923878788948059,0.707102417945862,0,0.707111120223999,0.707102477550507,0,0.707111179828644,0.382685244083405,0,0.923878788948059,0.707102417945862,0,0.707111120223999,0.923873484134674,0,0.382697999477386,0.923873543739319,0,0.382698059082031,0.707102477550507,0,0.707111179828644,0.923873484134674,0,0.382697999477386,1,0,0,1,4.40631957587811e-008,-1.54483874581501e-008,0.923873543739319,0,0.382698059082031,1,0,0,0.923873543739319,0,-0.382697880268097,0.923873543739319,4.40628866726911e-008,-0.382697850465775,1,4.40631957587811e-008,-1.54483874581501e-008,0.923873543739319,0,-0.382697880268097,0.70710289478302,0,-0.707110643386841,0.707102835178375,0,-0.707110643386841,0.923873543739319,4.40628866726911e-008,-0.382697850465775,0.70710289478302,0,-0.707110643386841,0.407468765974045,0.00291998009197414,-0.913214504718781,0.382682949304581,0.0040235873311758,-0.923870980739594,0.707102835178375,0,-0.707110643386841,0.407468765974045,0.00291998009197414,-0.913214504718781,0.209201961755753,0.00885390024632216,-0.97783237695694,4.69575894612717e-007,0.016092337667942,-0.999870479106903,4.72711121801694e-007,0.0080469511449337,-0.999967575073242,0.382682949304581,0.0040235873311758,-0.923870980739594,-0.20919406414032,0.0088534289970994,-0.977834045886993,-0.407462269067764,0.00291987601667643,-0.913217425346375,-0.38267707824707,0.00402344902977347,-0.923873424530029,4.72711121801694e-007,0.0080469511449337,-0.999967575073242,4.69575894612717e-007,0.016092337667942,-0.999870479106903,-0.407462269067764,0.00291987601667643,-0.913217425346375,-0.707102656364441,0,-0.70711088180542,-0.707102656364441,0,-0.70711088180542,-0.38267707824707,0.00402344902977347,-0.923873424530029,
- -0.707102656364441,0,-0.70711088180542,-0.923879027366638,0,-0.382684499025345,-0.923879027366638,0,-0.382684528827667,-0.707102656364441,0,-0.70711088180542,-0.923879027366638,0,-0.382684499025345,-0.999999940395355,0,-6.17935569380279e-009,-1,0,-6.17935569380279e-009,-0.923879027366638,0,-0.382684528827667,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.980102598667145,-0.17341984808445,0.0965634509921074,0,-1,0,0,-1,0,-0.980101406574249,-0.173426568508148,0.0965633317828178,-0.995181560516357,0,0.0980490893125534,-0.980102598667145,-0.17341984808445,0.0965634509921074,-0.980101406574249,-0.173426568508148,0.0965633317828178,-0.995181560516357,0,0.0980490893125534,0.9801025390625,0.173420056700706,0.0965634658932686,0,1,0,0,1,0,0.980101406574249,0.173426404595375,0.0965633615851402,0.980101406574249,0.173426404595375,0.0965633615851402,0.995181560516357,0,0.0980491191148758,0.995181560516357,0,0.0980491191148758,0.9801025390625,0.173420056700706,0.0965634658932686,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,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,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,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,0.999999940395355,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,0.999999940395355,0,0,0.999999940395355,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,0.999999940395355,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,-0.999999940395355,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,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,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,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-0.999999940395355,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,-0.999999940395355,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,-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,-0.999999940395355,0,0,-1,0,-4.02485375161632e-006,-0.278486639261246,0.960440158843994,0.0841007605195045,-0.277446210384369,0.957053065299988,0.0875374302268028,0,0.996161162853241,-3.85692544568883e-009,0,1,0,1,0,0,1,0,0,0.999999940395355,-2.44456153097872e-008,0,1,-2.44587550213282e-008,0,0,-0.999999940395355,-0.087536595761776,0,-0.996161222457886,-0.0835350230336189,-0.298893660306931,-0.950623214244843,-3.97244411942665e-006,-0.299927979707718,-0.953961849212646,1.24896473607805e-006,-0.997514843940735,-0.0704575255513191,-0.00618926482275128,-0.997497320175171,-0.0704335272312164,0.00879707466810942,-0.994937539100647,0.100109323859215,1.62299579642422e-006,-0.994980692863464,0.100066632032394,0.984529495239258,8.44138980937714e-008,-0.175218552350998,0.984529495239258,8.44138980937714e-008,-0.175218552350998,0.984529733657837,0,-0.175217881798744,0.984529733657837,0,-0.175217881798744,-0.984529495239258,3.37655592375086e-008,-0.175218552350998,-0.984529495239258,3.37655592375086e-008,-0.175218552350998,-0.984529733657837,0,-0.175217881798744,-0.984529733657837,0,-0.175217881798744,1.62299579642422e-006,-0.994980692863464,0.100066632032394,0.00879707466810942,-0.994937539100647,0.100109323859215,0.0841007605195045,-0.277446210384369,0.957053065299988,-4.02485375161632e-006,-0.278486639261246,0.960440158843994,0.984528660774231,7.40066127491446e-007,-0.175223812460899,0.984528660774231,7.40066127491446e-007,-0.175223812460899,0.984529495239258,8.44138980937714e-008,-0.175218552350998,0.984529495239258,8.44138980937714e-008,-0.175218552350998,-3.97244411942665e-006,-0.299927979707718,-0.953961849212646,-0.0835350230336189,-0.298893660306931,-0.950623214244843,-0.00618926482275128,-0.997497320175171,-0.0704335272312164,
- 1.24896473607805e-006,-0.997514843940735,-0.0704575255513191,-0.984528660774231,2.96026428259211e-007,-0.175223812460899,-0.984528660774231,2.96026428259211e-007,-0.175223812460899,-0.984529495239258,3.37655592375086e-008,-0.175218552350998,-0.984529495239258,3.37655592375086e-008,-0.175218552350998,-0.084898829460144,-0.277548313140869,0.956953108310699,-4.02485375161632e-006,-0.278486639261246,0.960440158843994,-3.85692544568883e-009,0,1,-0.0883707776665688,0,0.996087729930878,-0.00887277256697416,-0.994946718215942,0.10001128166914,1.62299579642422e-006,-0.994980692863464,0.100066632032394,-4.02485375161632e-006,-0.278486639261246,0.960440158843994,-0.084898829460144,-0.277548313140869,0.956953108310699,0.0062530217692256,-0.997493445873261,-0.0704829543828964,1.24896473607805e-006,-0.997514843940735,-0.0704575255513191,1.62299579642422e-006,-0.994980692863464,0.100066632032394,-0.00887277256697416,-0.994946718215942,0.10001128166914,0.0843316689133644,-0.298833727836609,-0.950571775436401,-3.97244411942665e-006,-0.299927979707718,-0.953961849212646,1.24896473607805e-006,-0.997514843940735,-0.0704575255513191,0.0062530217692256,-0.997493445873261,-0.0704829543828964,0.0883697494864464,0,-0.996087789535522,0,0,-0.999999940395355,-3.97244411942665e-006,-0.299927979707718,-0.953961849212646,0.0843316689133644,-0.298833727836609,-0.950571775436401,0,0.999999940395355,-2.44456153097872e-008,0,1,-4.91345595321491e-008,0,1,-4.91345595321491e-008,0,1,-2.44587550213282e-008,-0.12279074639082,-9.50262619880959e-005,0.992432534694672,-0.12279599159956,-9.19214435270987e-005,0.992431938648224,-0.122951298952103,0,0.992412745952606,-0.122951298952103,0,0.992412745952606,0.995832979679108,-0.00336155062541366,0.0911340862512589,0.995832979679108,-0.00336148892529309,0.0911340788006783,0.995829224586487,0,0.0912362113595009,0.995829224586487,0,0.0912362113595009,-0.985625803470612,0.00607471168041229,-0.168834403157234,-0.985625684261322,0.00607501529157162,-0.168834388256073,-0.985606014728546,0,-0.16905876994133,-0.985606014728546,0,-0.16905876994133,
- 0.0604603886604309,-0.00385362259112298,0.998163163661957,0.0556153245270252,-0.00301718665286899,0.998447716236115,0.0994944274425507,-0.00664413068443537,0.995015919208527,0.0999649912118912,-0.00660306494683027,0.994969069957733,-0.426737785339355,-0.904163897037506,0.0195581335574389,-0.425524741411209,-0.90473747253418,0.0194648467004299,-0.827333629131317,-0.558507144451141,0.0599077939987183,-0.8279869556427,-0.557528614997864,0.0599957890808582,0.420842498540878,0.906369209289551,-0.0372367538511753,0.84410685300827,0.52302759885788,-0.118006944656372,0.842998266220093,0.524876177310944,-0.117724396288395,0.417896777391434,0.907749056816101,-0.0367955639958382,-0.985625803470612,0.00607471168041229,-0.168834403157234,-0.967942416667938,0.195091113448143,-0.158199086785316,-0.96785444021225,0.195554345846176,-0.158165127038956,-0.985625684261322,0.00607501529157162,-0.168834388256073,-0.12279599159956,-9.19214435270987e-005,0.992431938648224,-0.12279074639082,-9.50262619880959e-005,0.992432534694672,-0.118102975189686,-0.00312349037267268,0.992996454238892,-0.118378192186356,-0.00294241844676435,0.992964208126068,0.995832979679108,-0.00336148892529309,0.0911340788006783,0.995832979679108,-0.00336155062541366,0.0911340862512589,0.982424259185791,-0.165388703346252,0.0865397900342941,0.982477307319641,-0.165067166090012,0.0865508913993835,-0.967942416667938,0.195091113448143,-0.158199086785316,-0.796733796596527,0.594404399394989,-0.109080955386162,-0.794892907142639,0.59694766998291,-0.108621791005135,-0.96785444021225,0.195554345846176,-0.158165127038956,-0.118378192186356,-0.00294241844676435,0.992964208126068,-0.118102975189686,-0.00312349037267268,0.992996454238892,-0.0985999628901482,-0.00648687826469541,0.995106041431427,-0.0997127518057823,-0.00645992485806346,0.994995296001434,0.982477307319641,-0.165067166090012,0.0865508913993835,0.982424259185791,-0.165388703346252,0.0865397900342941,0.781080067157745,-0.621924221515656,0.0558954812586308,0.782069623470306,-0.620667219161987,0.056030385196209,-0.796733796596527,0.594404399394989,-0.109080955386162,
- -0.4262455701828,0.903721928596497,-0.0400197617709637,-0.423906773328781,0.904836237430573,-0.0396784879267216,-0.794892907142639,0.59694766998291,-0.108621791005135,-0.0997127518057823,-0.00645992485806346,0.994995296001434,-0.0985999628901482,-0.00648687826469541,0.995106041431427,-0.0587171465158463,-0.00337620405480266,0.998269021511078,-0.0627672970294952,-0.00386702595278621,0.998020708560944,0.782069623470306,-0.620667219161987,0.056030385196209,0.781080067157745,-0.621924221515656,0.0558954812586308,0.439625263214111,-0.897920489311218,0.0216416474431753,0.440584033727646,-0.897448599338531,0.0217156931757927,-0.4262455701828,0.903721928596497,-0.0400197617709637,0.0226196926087141,0.99969893693924,-0.00950564537197351,0.0227970983833075,0.999694883823395,-0.00950649566948414,-0.423906773328781,0.904836237430573,-0.0396784879267216,-0.0627672970294952,-0.00386702595278621,0.998020708560944,-0.0587171465158463,-0.00337620405480266,0.998269021511078,0.00203604181297123,2.18749919440597e-005,0.999997913837433,0.00154667906463146,1.73749212990515e-005,0.999998867511749,0.440584033727646,-0.897448599338531,0.0217156931757927,0.439625263214111,-0.897920489311218,0.0216416474431753,-0.0141560612246394,-0.99988853931427,0.0047436049208045,-0.0141524458304048,-0.99988865852356,0.00474359840154648,0.0226196926087141,0.99969893693924,-0.00950564537197351,0.420842498540878,0.906369209289551,-0.0372367538511753,0.417896777391434,0.907749056816101,-0.0367955639958382,0.0227970983833075,0.999694883823395,-0.00950649566948414,0.00154667906463146,1.73749212990515e-005,0.999998867511749,0.00203604181297123,2.18749919440597e-005,0.999997913837433,0.0556153245270252,-0.00301718665286899,0.998447716236115,0.0604603886604309,-0.00385362259112298,0.998163163661957,-0.0141524458304048,-0.99988865852356,0.00474359840154648,-0.0141560612246394,-0.99988853931427,0.0047436049208045,-0.425524741411209,-0.90473747253418,0.0194648467004299,-0.426737785339355,-0.904163897037506,0.0195581335574389,0.121242120862007,-1.62655271651602e-006,0.992622971534729,
- 0.121242105960846,-1.627225969969e-006,0.992622971534729,0.121288865804672,0,0.992617189884186,0.121288865804672,0,0.992617189884186,0.84410685300827,0.52302759885788,-0.118006944656372,0.98178368806839,0.0992175564169884,-0.162038579583168,0.981738209724426,0.0997182056307793,-0.162007287144661,0.842998266220093,0.524876177310944,-0.117724396288395,0.0999649912118912,-0.00660306494683027,0.994969069957733,0.0994944274425507,-0.00664413068443537,0.995015919208527,0.118357039988041,-0.00152498704846948,0.992969989776611,0.11916720867157,-0.00109239539597183,0.99287360906601,-0.8279869556427,-0.557528614997864,0.0599957890808582,-0.827333629131317,-0.558507144451141,0.0599077939987183,-0.993876993656158,-0.0671786591410637,0.0877242013812065,-0.993893086910248,-0.0669302642345428,0.087731622159481,0.985887348651886,0.000378673721570522,-0.167410299181938,0.985887289047241,0.000378673692466691,-0.167410269379616,0.981738209724426,0.0997182056307793,-0.162007287144661,0.98178368806839,0.0992175564169884,-0.162038579583168,0.118357039988041,-0.00152498704846948,0.992969989776611,0.121242105960846,-1.627225969969e-006,0.992622971534729,0.121242120862007,-1.62655271651602e-006,0.992622971534729,0.11916720867157,-0.00109239539597183,0.99287360906601,-0.995982825756073,-0.000463315431261435,0.0895430669188499,-0.995982825756073,-0.000463315431261435,0.0895430669188499,-0.993893086910248,-0.0669302642345428,0.087731622159481,-0.993876993656158,-0.0671786591410637,0.0877242013812065,0.985887348651886,0.000378673721570522,-0.167410299181938,0.985879361629486,0,-0.167456850409508,0.985879361629486,0,-0.167456850409508,0.985887289047241,0.000378673692466691,-0.167410269379616,-0.995978713035584,0,0.0895903408527374,-0.995978713035584,0,0.0895903408527374,-0.995982825756073,-0.000463315431261435,0.0895430669188499,-0.995982825756073,-0.000463315431261435,0.0895430669188499,0.130118608474731,5.34189784957562e-005,-0.991498351097107,0.130272760987282,0,-0.991478145122528,0.130272760987282,0,-0.991478145122528,0.130123272538185,5.18034357810393e-005,-0.991497814655304,
- 0.130118608474731,5.34189784957562e-005,-0.991498351097107,0.130123272538185,5.18034357810393e-005,-0.991497814655304,0.125450760126114,0.00149144546594471,-0.992098748683929,0.12531541287899,0.00153200980275869,-0.99211573600769,0.12531541287899,0.00153200980275869,-0.99211573600769,0.125450760126114,0.00149144546594471,-0.992098748683929,0.104727156460285,0.00176481821108609,-0.994499504566193,0.104842402040958,0.00177386426366866,-0.994487226009369,0.104842402040958,0.00177386426366866,-0.994487226009369,0.104727156460285,0.00176481821108609,-0.994499504566193,0.064803846180439,-0.00295031676068902,-0.997893631458282,0.0627846196293831,-0.00322824367322028,-0.998021841049194,0.0627846196293831,-0.00322824367322028,-0.998021841049194,0.064803846180439,-0.00295031676068902,-0.997893631458282,-0.00163698999676853,-0.00736286258324981,-0.999971568584442,-0.00221938127651811,-0.00736769707873464,-0.999970376491547,-0.00221938127651811,-0.00736769707873464,-0.999970376491547,-0.00163698999676853,-0.00736286258324981,-0.999971568584442,-0.0625641420483589,-0.00310137658379972,-0.99803614616394,-0.0595574527978897,-0.00366088887676597,-0.998218059539795,-0.0595574527978897,-0.00366088887676597,-0.998218059539795,-0.0625641420483589,-0.00310137658379972,-0.99803614616394,-0.105420783162117,0.00231051817536354,-0.994424998760223,-0.106178194284439,0.00233256118372083,-0.994344353675842,-0.106178194284439,0.00233256118372083,-0.994344353675842,-0.105420783162117,0.00231051817536354,-0.994424998760223,-0.126416131854057,0.000519407447427511,-0.991977095603943,-0.125664457678795,0.000705541577190161,-0.992072582244873,-0.128563866019249,-1.74005265307642e-006,-0.991701245307922,-0.125664457678795,0.000705541577190161,-0.992072582244873,-0.126416131854057,0.000519407447427511,-0.991977095603943,-0.12856388092041,-1.73938428815745e-006,-0.991701185703278,-0.128615364432335,0,-0.991694569587708,-0.128563866019249,-1.74005265307642e-006,-0.991701245307922,-0.12856388092041,-1.73938428815745e-006,-0.991701185703278,-0.128615364432335,0,-0.991694569587708
- }
- NormalsW: *896 {
- 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
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *2688 {
- a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,3.99164235886929e-007,1,-1.65337894486584e-007,2.4318046598637e-007,1,-1.00727824303704e-007,2.4318046598637e-007,1,-1.00727824303704e-007,3.99164235886929e-007,1,-1.65337894486584e-007,3.58155233470825e-007,1,-3.58154835566893e-007,6.47907086204214e-007,1,-6.4790629039635e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,1.48897981944174e-007,1,1.48898067209302e-007,1.48898010365883e-007,1,1.48898095631012e-007,1.48898010365883e-007,1,1.48898095631012e-007,1.48897981944174e-007,1,1.48898067209302e-007,-0.00158491113688797,0.999988555908203,0.00451231375336647,-0.00107172061689198,0.999996840953827,0.00230690324679017,-0.00107172061689198,0.999996840953827,0.00230690324679017,-0.00158491113688797,0.999988555908203,0.00451231375336647,-5.68341818052431e-009,0.999954402446747,0.00955050252377987,-7.6334618626106e-009,0.999954402446747,0.00955050252377987,-0.00125939538702369,0.999977290630341,0.00661450903862715,0.00125919736456126,0.999977290630341,0.00661460403352976,-7.6334618626106e-009,0.999954402446747,0.00955050252377987,-5.68341818052431e-009,0.999954402446747,0.00955050252377987,0.00186489662155509,0.999988675117493,0.00439652381464839,0.000926589069422334,0.999996781349182,0.00237042992375791,0.000926589069422334,0.999996781349182,0.00237042992375791,0.00186489662155509,0.999988675117493,0.00439652381464839,1.48008155065327e-007,1,1.29599953879733e-007,-2.54708720781593e-009,1,-2.90884627496268e-009,-2.54708720781593e-009,1,-2.90884627496268e-009,1.48008155065327e-007,1,1.29599953879733e-007,6.21124911504012e-008,1,2.10317754323341e-008,-0,1,0,-0,1,0,6.21124911504012e-008,1,2.10317754323341e-008,-0,1,0,-0,1,0,0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,9.48404249356827e-007,1,-3.92838671814388e-007,6.80905429817358e-007,1,-2.82037944998592e-007,6.80905429817358e-007,1,-2.82037944998592e-007,
- 9.48404249356827e-007,1,-3.92838671814388e-007,1.11673682567925e-006,1,-1.1167354614372e-006,1.34008382701722e-006,1,-1.3400822354015e-006,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,5.95592098306952e-007,1,5.95592439367465e-007,4.46694201627906e-007,1,4.46694457423291e-007,4.46694201627906e-007,1,4.46694457423291e-007,5.95592098306952e-007,1,5.95592439367465e-007,0.0010117277270183,0.999996781349182,-0.00233315606601536,0.001865393249318,0.999988675117493,-0.00439613638445735,0.001865393249318,0.999988675117493,-0.00439613638445735,0.0010117277270183,0.999996781349182,-0.00233315606601536,0.0013130116276443,0.999977350234985,-0.00660332897678018,7.6334618626106e-009,0.999954402446747,-0.00955050252377987,-7.33080725012769e-008,0.999954402446747,-0.00955050252377987,-7.33080725012769e-008,0.999954402446747,-0.00955050252377987,7.6334618626106e-009,0.999954402446747,-0.00955050252377987,-0.00131331966258585,0.99997740983963,-0.00660331919789314,-0.00115264975465834,0.999996840953827,-0.00227159098722041,-0.00158479274250567,0.999988615512848,-0.00451240362599492,-0.00158479274250567,0.999988615512848,-0.00451240362599492,-0.00115264975465834,0.999996840953827,-0.00227159098722041,-7.69129329114548e-008,1,-6.73470665901732e-008,-0,1,0,-0,1,0,-7.69129329114548e-008,1,-6.73470665901732e-008,-3.10562455752006e-008,1,-1.05158886043455e-008,-0,1,0,-0,1,0,-3.10562455752006e-008,1,-1.05158886043455e-008,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,9.48404249356827e-007,1,-3.92838671814388e-007,0,1,0,0,1,0,2.4318046598637e-007,1,-1.00727824303704e-007,1.11673682567925e-006,1,-1.1167354614372e-006,9.48404249356827e-007,1,-3.92838671814388e-007,2.4318046598637e-007,1,-1.00727824303704e-007,6.47907086204214e-007,1,-6.4790629039635e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,5.95592098306952e-007,1,5.95592439367465e-007,0,1,-0,0,1,-0,1.48898010365883e-007,1,1.48898095631012e-007,
- 0.0010117277270183,0.999996781349182,-0.00233315606601536,5.95592098306952e-007,1,5.95592439367465e-007,1.48898010365883e-007,1,1.48898095631012e-007,-0.00107172061689198,0.999996840953827,0.00230690324679017,0.0010117277270183,0.999996781349182,-0.00233315606601536,-0.00107172061689198,0.999996840953827,0.00230690324679017,-0.00125939538702369,0.999977290630341,0.00661450903862715,0.0013130116276443,0.999977350234985,-0.00660332897678018,-0.00115264975465834,0.999996840953827,-0.00227159098722041,-0.00131331966258585,0.99997740983963,-0.00660331919789314,0.00125919736456126,0.999977290630341,0.00661460403352976,0.000926589069422334,0.999996781349182,0.00237042992375791,-7.69129329114548e-008,1,-6.73470665901732e-008,-0.00115264975465834,0.999996840953827,-0.00227159098722041,0.000926589069422334,0.999996781349182,0.00237042992375791,-2.54708720781593e-009,1,-2.90884627496268e-009,-3.10562455752006e-008,1,-1.05158886043455e-008,-7.69129329114548e-008,1,-6.73470665901732e-008,-2.54708720781593e-009,1,-2.90884627496268e-009,-0,1,0,-0,1,0,-3.10562455752006e-008,1,-1.05158886043455e-008,-0,1,0,-0,1,0,0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,-8.08058246093424e-007,1,3.34710534843907e-007,-1.15436819214665e-006,1,4.78157573979843e-007,0,1,-0,-8.08058246093424e-007,1,3.34710534843907e-007,-1.32528566609835e-006,1,1.32526940888056e-006,-1.325285211351e-006,1,1.32526895413321e-006,-1.15436819214665e-006,1,4.78157573979843e-007,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-4.40631957587811e-008,1,-5.0353260565983e-016,-8.81263559904255e-008,1,5.84408521575597e-009,-0,1,0,-4.40631957587811e-008,1,-5.0353260565983e-016,-4.07085316567191e-008,1,1.68627938279542e-008,-7.91810919054114e-008,1,3.91234493690718e-008,-8.81263559904255e-008,1,5.84408521575597e-009,-4.07085316567191e-008,1,1.68627938279542e-008,8.83522943695425e-008,1,8.83513209259945e-008,8.8352244631551e-008,1,8.83512782934304e-008,-7.91810919054114e-008,1,3.91234493690718e-008,
- 8.83522943695425e-008,1,8.83513209259945e-008,-0.00156076287385076,0.999991893768311,0.00370861031115055,-1.15441402215311e-007,1,-4.78177746288111e-008,8.8352244631551e-008,1,8.83512782934304e-008,-0.00156076287385076,0.999991893768311,0.00370861031115055,-0.000228794728172943,0.999967634677887,0.0080469511449337,0,1,0,-1.15441402215311e-007,1,-4.78177746288111e-008,-0.000228794728172943,0.999967634677887,0.0080469511449337,0.00145206821616739,0.999991953372955,0.00375348306261003,0,1,0,0,1,0,0.00145206821616739,0.999991953372955,0.00375348306261003,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,-2.30873723694458e-007,1,9.56315560074472e-008,-2.30873780537877e-007,1,9.56315773237293e-008,0,1,-0,0,1,-0,0,1,-0,-3.97585722566873e-007,1,3.97580834032851e-007,-2.30873780537877e-007,1,9.56315773237293e-008,-2.30873723694458e-007,1,9.56315560074472e-008,-0,1,0,-0,1,0,-0,1,0,-0,1,0,1.55304107352094e-007,1,-1.02989679007237e-008,7.76520820977566e-008,1,5.14948794716474e-009,-0,1,0,-0,1,0,1.39539949373102e-007,1,-6.89468251380276e-008,7.3710396009119e-008,1,-2.49608156366321e-008,7.76520820977566e-008,1,5.14948794716474e-009,1.55304107352094e-007,1,-1.02989679007237e-008,8.83523171069101e-007,1,8.83513450844475e-007,5.30113766217255e-007,1,5.30107911345112e-007,7.3710396009119e-008,1,-2.49608156366321e-008,1.39539949373102e-007,1,-6.89468251380276e-008,2.30864287686927e-007,1,9.5627875396076e-008,0.0016641813563183,0.9999920129776,-0.00366577343083918,5.30113766217255e-007,1,5.30107911345112e-007,8.83523171069101e-007,1,8.83513450844475e-007,0,1,0,0.000228473349125125,0.999967634677887,-0.0080469511449337,0.0016641813563183,0.9999920129776,-0.00366577343083918,2.30864287686927e-007,1,9.5627875396076e-008,0,1,0,-0.00131423398852348,0.999991893768311,-0.00381057499907911,0.000228473349125125,0.999967634677887,-0.0080469511449337,0,1,0,0,1,0,0,1,0,-0.00131423398852348,0.999991893768311,-0.00381057499907911,
- 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,-2.30873780537877e-007,1,9.56315773237293e-008,-3.46310656595961e-007,1,1.43447365985594e-007,0,1,-0,-2.30873780537877e-007,1,9.56315773237293e-008,-3.97585722566873e-007,1,3.97580834032851e-007,-7.06819321294461e-007,1,7.06810624251375e-007,-3.46310656595961e-007,1,1.43447365985594e-007,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,7.76520820977566e-008,1,5.14948794716474e-009,-0,1,0,-0,1,0,7.76520820977566e-008,1,5.14948794716474e-009,7.3710396009119e-008,1,-2.49608156366321e-008,0,1,0,-0,1,0,7.3710396009119e-008,1,-2.49608156366321e-008,5.30113766217255e-007,1,5.30107911345112e-007,6.18466003743379e-007,1,6.18459239376534e-007,0,1,0,5.30113766217255e-007,1,5.30107911345112e-007,0.0016641813563183,0.9999920129776,-0.00366577343083918,0.00125823810230941,0.999995708465576,-0.00263604545034468,6.18466003743379e-007,1,6.18459239376534e-007,0.0016641813563183,0.9999920129776,-0.00366577343083918,0.000228473349125125,0.999967634677887,-0.0080469511449337,1.52419659116276e-008,0.999870598316193,-0.0160923395305872,0.00172706565354019,0.999960899353027,-0.00868476927280426,0.00125823810230941,0.999995708465576,-0.00263604545034468,0.000228473349125125,0.999967634677887,-0.0080469511449337,-0.00131423398852348,0.999991893768311,-0.00381057499907911,-0.00116061640437692,0.999995768070221,-0.00267948932014406,-0.00165593693964183,0.999960839748383,-0.00869950279593468,1.52419659116276e-008,0.999870598316193,-0.0160923395305872,-0.00131423398852348,0.999991893768311,-0.00381057499907911,0,1,0,0,1,0,-0.00116061640437692,0.999995768070221,-0.00267948932014406,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,-3.46310656595961e-007,1,1.43447365985594e-007,-5.77184550820675e-007,1,2.39078985941887e-007,0,1,-0,-3.46310656595961e-007,1,1.43447365985594e-007,-7.06819321294461e-007,1,7.06810624251375e-007,
- -1.14858153210662e-006,1,1.14856743493874e-006,-5.77184550820675e-007,1,2.39078985941887e-007,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,-0,1,0,0,1,0,6.18466003743379e-007,1,6.18459239376534e-007,1.76704745058487e-007,1,1.76702812382246e-007,0,1,0,6.18466003743379e-007,1,6.18459239376534e-007,0.00125823810230941,0.999995708465576,-0.00263604545034468,-0.00116061407607049,0.999995708465576,0.00267960433848202,1.76704745058487e-007,1,1.76702812382246e-007,0.00125823810230941,0.999995708465576,-0.00263604545034468,0.00172706565354019,0.999960899353027,-0.00868476927280426,-0.0016561767552048,0.999960780143738,0.0086999349296093,-0.00116061407607049,0.999995708465576,0.00267960433848202,-0.00165593693964183,0.999960839748383,-0.00869950279593468,-0.00116061640437692,0.999995768070221,-0.00267948932014406,0.00125763809774071,0.999995708465576,0.00263619958423078,0.00172705098520964,0.999960839748383,0.00868428871035576,-0.00116061640437692,0.999995768070221,-0.00267948932014406,0,1,0,0,1,0,0.00125763809774071,0.999995708465576,0.00263619958423078,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,-5.77184550820675e-007,1,2.39078985941887e-007,-8.08058246093424e-007,1,3.34710534843907e-007,0,1,-0,-5.77184550820675e-007,1,2.39078985941887e-007,-1.14858153210662e-006,1,1.14856743493874e-006,-1.32528566609835e-006,1,1.32526940888056e-006,-8.08058246093424e-007,1,3.34710534843907e-007,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-4.40631957587811e-008,1,-5.0353260565983e-016,-0,1,0,-0,1,0,0,1,0,-4.07085316567191e-008,1,1.68627938279542e-008,-4.40631957587811e-008,1,-5.0353260565983e-016,0,1,0,1.76704745058487e-007,1,1.76702812382246e-007,8.83522943695425e-008,1,8.83513209259945e-008,-4.07085316567191e-008,1,1.68627938279542e-008,1.76704745058487e-007,1,1.76702812382246e-007,-0.00116061407607049,0.999995708465576,0.00267960433848202,-0.00156076287385076,0.999991893768311,0.00370861031115055,
- 8.83522943695425e-008,1,8.83513209259945e-008,-0.00116061407607049,0.999995708465576,0.00267960433848202,-0.0016561767552048,0.999960780143738,0.0086999349296093,-1.52419659116276e-008,0.999870598316193,0.0160923395305872,-0.000228794728172943,0.999967634677887,0.0080469511449337,-0.00156076287385076,0.999991893768311,0.00370861031115055,0.00172705098520964,0.999960839748383,0.00868428871035576,0.00125763809774071,0.999995708465576,0.00263619958423078,0.00145206821616739,0.999991953372955,0.00375348306261003,-0.000228794728172943,0.999967634677887,0.0080469511449337,-1.52419659116276e-008,0.999870598316193,0.0160923395305872,0.00125763809774071,0.999995708465576,0.00263619958423078,0,1,0,0,1,0,0.00145206821616739,0.999991953372955,0.00375348306261003,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,7.40126715470524e-009,-1,-0,0,-1,0,1.29044650520882e-008,-1,0,2.58089301041764e-008,-1,0,4.95590484206332e-008,-1,0,0,-1,0,4.95590484206332e-008,-1,0,9.91180968412664e-008,-0.174234077334404,0.984704256057739,1.86264492718635e-009,-1,-0,0,-1,0,7.40126715470524e-009,-0.174240827560425,0.984703063964844,1.86264492718635e-009,0,1,-0,-0.172584235668182,0.984848022460938,0.0170036591589451,-0.172590926289558,0.984846830368042,0.0170043185353279,0,1,-0,-0.174234300851822,0.984704315662384,-7.45058059692383e-009,-1,0,-0,-1,0,-3.9726767653292e-008,-0.174240663647652,0.984703063964844,-1.49011594174908e-008,-0.172590762376785,0.984846830368042,-0.0170043017715216,-0,1,0,-0,1,0,-0.172584444284439,0.984847962856293,-0.0170036815106869,0.980779230594635,-0,0.19512078166008,0.947169423103333,-0,0.320733696222305,0.896538555622101,-0,0.442965716123581,0.98078191280365,-0,0.195107236504555,0.831476271152496,-0,0.555560350418091,0.896538555622101,-0,0.442965716123581,0.947169423103333,-0,0.320733696222305,0.831472456455231,-0,0.5555659532547,0.320720911026001,-0,0.947173774242401,0.555562973022461,-0,0.831474483013153,0.555562973022461,-0,0.831474423408508,0.44296395778656,-0,0.896539509296417,0.195090308785439,-0,0.980785369873047,
- 0.320720911026001,-0,0.947173774242401,0.44296395778656,-0,0.896539509296417,0.195092543959618,-0,0.980784893035889,0.442963242530823,0,-0.896539866924286,0.195090487599373,0,-0.980785310268402,0.195089891552925,0,-0.980785369873047,0.320719957351685,0,-0.94717413187027,0.752339541912079,0,-0.658775687217712,0.442963242530823,0,-0.896539866924286,0.320719957351685,0,-0.94717413187027,0.658771753311157,0,-0.752342879772186,0.947174072265625,0,-0.320719957351685,0.752339541912079,0,-0.658775687217712,0.658771753311157,0,-0.752342879772186,0.896538853645325,0,-0.442965120077133,0.980784714221954,0,-0.19509345293045,0.947174072265625,0,-0.320719957351685,0.896538853645325,0,-0.442965120077133,0.980784833431244,0,-0.19509257376194,0.980785191059113,-0,0.19509083032608,0.947172701358795,-0,0.320724040269852,0.896538615226746,-0,0.442965686321259,0.980784952640533,-0,0.19509220123291,0.658775269985199,-0,0.752339839935303,0.896538615226746,-0,0.442965686321259,0.947172701358795,-0,0.320724040269852,0.752339661121368,-0,0.658775508403778,0.320719242095947,-0,0.947174370288849,0.658775269985199,-0,0.752339839935303,0.752339661121368,-0,0.658775508403778,0.44296270608902,-0,0.896540105342865,0.195090308785439,-0,0.980785369873047,0.320719242095947,-0,0.947174370288849,0.44296270608902,-0,0.896540105342865,0.195089638233185,-0,0.980785429477692,-0.44296333193779,0,0.896539747714996,-0.195093408226967,0,0.980784714221954,-0.195095717906952,0,0.980784237384796,-0.320721864700317,0,0.947173476219177,-0.752339720726013,0,0.658775329589844,-0.44296333193779,0,0.896539747714996,-0.320721864700317,0,0.947173476219177,-0.658771872520447,0,0.752342820167542,-0.947170972824097,0,0.320729106664658,-0.752339720726013,0,0.658775329589844,-0.658771872520447,0,0.752342820167542,-0.896534740924835,0,0.442973405122757,-0.980784595012665,0,0.19509369134903,-0.947170972824097,0,0.320729106664658,-0.896534740924835,0,0.442973405122757,-0.980782032012939,0,0.19510705769062,0.896539032459259,0,0.442964881658554,0.980784893035889,0,0.195092186331749,
- 0.980784714221954,0,0.195093557238579,0.947174191474915,0,0.320719599723816,0.896534621715546,0,0.442973911762238,0.980781972408295,0,0.195107251405716,0.980784595012665,0,0.19509369134903,0.947170853614807,0,0.320729494094849,0.947170853614807,0,0.320729494094849,0.831472516059875,0,0.5555659532547,0.83146870136261,0,0.555571615695953,0.896534621715546,0,0.442973911762238,0.555562913417816,0,0.831474542617798,0.44296258687973,0,0.896540224552155,0.320720940828323,0,0.947173714637756,0.555562973022461,0,0.831474423408508,0.44296258687973,0,0.896540224552155,0.195092529058456,0,0.980784833431244,0.195094794034958,0,0.98078441619873,0.320720940828323,0,0.947173714637756,0.195091083645821,0,-0.980785191059113,0.320719689130783,0,-0.947174191474915,0.442962884902954,0,-0.89654004573822,0.195090472698212,0,-0.980785250663757,0.320719689130783,0,-0.947174191474915,0.658775150775909,0,-0.752339899539948,0.752339661121368,0,-0.658775508403778,0.442962884902954,0,-0.89654004573822,0.658775150775909,0,-0.752339899539948,0.896538615226746,0,-0.442965656518936,0.94717264175415,0,-0.320724159479141,0.752339661121368,0,-0.658775508403778,0.896538615226746,0,-0.442965656518936,0.980784893035889,0,-0.195092588663101,0.980785012245178,0,-0.195091709494591,0.94717264175415,0,-0.320724159479141,0.947174191474915,0,0.320719599723816,0.752339482307434,0,0.658775568008423,0.658771753311157,0,0.752342939376831,0.896539032459259,0,0.442964881658554,0.752339482307434,0,0.658775568008423,0.442963123321533,0,0.896539926528931,0.320719420909882,0,0.947174370288849,0.658771753311157,0,0.752342939376831,0.442963123321533,0,0.896539926528931,0.195089653134346,0,0.980785489082336,0.195088967680931,0,0.980785548686981,0.320719420909882,0,0.947174370288849,-0.195091083645821,0,0.980785191059113,-0.320721715688705,0,0.947173535823822,-0.442964732646942,0,0.896539032459259,-0.195093393325806,0,0.98078465461731,-0.320721715688705,0,0.947173535823822,-0.658775389194489,0,0.752339720726013,-0.752339899539948,0,0.658775269985199,-0.442964732646942,0,0.896539032459259,
- -0.658775389194489,0,0.752339720726013,-0.896538734436035,0,0.442965477705002,-0.947169482707977,0,0.320733517408371,-0.752339899539948,0,0.658775269985199,-0.896538734436035,0,0.442965477705002,-0.980782032012939,0,0.19510705769062,-0.980779349803925,0,0.195120379328728,-0.947169482707977,0,0.320733517408371,0.000116783317935187,-0.960440158843994,-0.278486639261246,-0.0242873672395945,-0.960741221904755,-0.2763811647892,-3.79096405822565e-007,-1,3.33130074636756e-008,-5.11808480041509e-007,-1,-1.97400710720259e-015,0.0875370651483536,-0,0.996161282062531,0.0875357687473297,-0,0.99616140127182,-0.00042030680924654,2.4445617086144e-008,1,-0.000419710297137499,2.44587550213282e-008,0.999999940395355,-7.93000253906939e-007,1,0,-4.70349760917088e-007,1,4.13314786840147e-008,-0.0261642765253782,0.954286456108093,-0.297746300697327,0.000126302227727138,0.953961849212646,-0.299927979707718,0.00041624391451478,0.0704575106501579,-0.997514665126801,-0.0873193889856339,0.0707049444317818,-0.993668079376221,-0.0870938822627068,-0.100495100021362,-0.991118252277374,-0.0288566760718822,-0.100025005638599,-0.994566380977631,0.175178647041321,0.0213491097092628,0.984305262565613,0.172118321061134,-0.187281548976898,0.967109620571136,0.174874931573868,-0.0625359714031219,0.982602715492249,0.174917101860046,-0.0585677064955235,0.982839703559875,-0.175161570310593,-0.0255080312490463,0.984209299087524,-0.173439681529999,0.142132371664047,0.974534332752228,-0.174877032637596,-0.062343668192625,0.982614576816559,-0.175209850072861,-0.00957146845757961,0.984484612941742,0.0296875163912773,-0.100022487342358,-0.994542181491852,-0.0870942994952202,-0.100495114922524,-0.991118311882019,-0.0242873672395945,-0.960741221904755,-0.2763811647892,0.000116783317935187,-0.960440158843994,-0.278486639261246,0.146549895405769,0.548179686069489,0.823421061038971,0.17485399544239,0.0649319291114807,0.982451021671295,0.172118321061134,-0.187281548976898,0.967109620571136,0.175178647041321,0.0213491097092628,0.984305262565613,0.000126302227727138,0.953961849212646,-0.299927979707718,
- -0.0261642765253782,0.954286456108093,-0.297746300697327,-0.0873193889856339,0.0707049444317818,-0.993668079376221,0.00041624391451478,0.0704575106501579,-0.997514665126801,-0.14654828608036,-0.548198640346527,0.823408722877502,-0.17485386133194,-0.0649481788277626,0.982449948787689,-0.173439681529999,0.142132371664047,0.974534332752228,-0.175161570310593,-0.0255080312490463,0.984209299087524,0.0245264787226915,-0.960711658000946,-0.276462495326996,0.000116783317935187,-0.960440158843994,-0.278486639261246,-5.11808480041509e-007,-1,-1.97400710720259e-015,-7.65353661336121e-007,-1,-6.79005509596209e-008,0.0879232659935951,-0.100404091179371,-0.991054236888886,0.0296875163912773,-0.100022487342358,-0.994542181491852,0.000116783317935187,-0.960440158843994,-0.278486639261246,0.0245264787226915,-0.960711658000946,-0.276462495326996,0.0881481245160103,0.0707597881555557,-0.993591010570526,0.00041624391451478,0.0704575106501579,-0.997514665126801,-0.0288566760718822,-0.100025005638599,-0.994566380977631,0.0879228264093399,-0.100404098629951,-0.99105429649353,0.0264077223837376,0.954305231571198,-0.297664612531662,0.000126302227727138,0.953961849212646,-0.299927979707718,0.00041624391451478,0.0704575106501579,-0.997514665126801,0.0881481245160103,0.0707597881555557,-0.993591010570526,-1.424370566383e-006,1,-1.26365634400827e-007,-7.93000253906939e-007,1,0,0.000126302227727138,0.953961849212646,-0.299927979707718,0.0264077223837376,0.954305231571198,-0.297664612531662,-0.00042030680924654,2.4445617086144e-008,1,-0.0883719325065613,4.89423221949892e-008,0.996087551116943,-0.0883720517158508,4.89423221949892e-008,0.996087551116943,-0.000419710297137499,2.44587550213282e-008,0.999999940395355,0.992432534694672,-0.000426777929533273,0.122790709137917,0.992431819438934,0.00060989725170657,0.122796036303043,0.992411375045776,0.00164657167624682,0.122951127588749,0.992412507534027,0.000609897135291249,0.12295126914978,0.0911069363355637,-0.00750176049768925,-0.995812952518463,0.0911205634474754,-0.00397692993283272,-0.995832026004791,
- 0.0912362113595009,-0.000452049687737599,-0.995829224586487,0.0912354961037636,-0.00397692993283272,-0.995821475982666,-0.168827250599861,0.00167104916181415,0.985644221305847,-0.168821424245834,0.00259258365258574,0.985643267631531,-0.169057726860046,0.00351411593146622,0.985599875450134,-0.169058203697205,0.00259258388541639,0.985602736473084,-0.501825749874115,-0.864545524120331,0.0270586535334587,-0.364474654197693,-0.931049108505249,0.0174883734434843,-0.620541274547577,-0.782112061977386,0.0568271726369858,-0.626390516757965,-0.777365505695343,0.0577747896313667,-0.0376123003661633,-0.00386385759338737,-0.999284982681274,-0.050484262406826,0.00225736596621573,-0.99872237443924,-0.0712246969342232,-0.0014843160752207,-0.997459292411804,-0.0682783797383308,-0.00595683418214321,-0.997648537158966,0.0682370960712433,0.00930225290358067,0.997625827789307,0.127659246325493,0.0177135933190584,0.991659879684448,0.128227293491364,0.0164631083607674,0.991608202457428,0.0873722285032272,0.000156737878569402,0.996175765991211,-0.168827593326569,0.00161952129565179,0.985644340515137,-0.160744071006775,0.00282043404877186,0.986992120742798,-0.160462021827698,0.00414399849250913,0.987033367156982,-0.168821960687637,0.00250776531174779,0.98564338684082,0.991978943347931,-0.0302226804196835,0.122737139463425,0.992128074169159,-0.0247847326099873,0.122750699520111,0.97023218870163,-0.2132788002491,0.114724613726139,0.971927404403687,-0.205113962292671,0.115262441337109,0.0911327749490738,-0.000538390537258238,-0.995838642120361,0.0911185666918755,-0.00451401574537158,-0.995829820632935,0.0863711833953857,-0.00822491850703955,-0.99622905254364,0.0871056243777275,-0.00388908991590142,-0.996191561222076,-0.160744071006775,0.00282043404877186,0.986992120742798,-0.133330106735229,0.00315929995849729,0.991066694259644,-0.127655848860741,0.0104772569611669,0.991763234138489,-0.160462021827698,0.00414399849250913,0.987033367156982,0.971927404403687,-0.205113962292671,0.115262441337109,0.97023218870163,-0.2132788002491,0.114724613726139,
- 0.734040379524231,-0.675659716129303,0.068327821791172,0.841198742389679,-0.534650802612305,0.080828957259655,0.0871056243777275,-0.00388908991590142,-0.996191561222076,0.0863711833953857,-0.00822491850703955,-0.99622905254364,0.0630769431591034,-0.0104722790420055,-0.997953772544861,0.0684355497360229,-0.00383015535771847,-0.997648239135742,-0.133330106735229,0.00315929995849729,0.991066694259644,-0.0840845108032227,0.00446707010269165,0.996448636054993,-0.0631652325391769,0.0141673106700182,0.997902572154999,-0.127655848860741,0.0104772569611669,0.991763234138489,0.841198742389679,-0.534650802612305,0.080828957259655,0.734040379524231,-0.675659716129303,0.068327821791172,0.347668558359146,-0.937458276748657,0.0172789636999369,0.491868168115616,-0.870233297348022,0.0275625754147768,0.0684355497360229,-0.00383015535771847,-0.997648239135742,0.0630769431591034,-0.0104722790420055,-0.997953772544861,0.0268274154514074,-0.0109570380300283,-0.999580025672913,0.040894590318203,-0.00410033483058214,-0.999155044555664,-0.0840845108032227,0.00446707010269165,0.996448636054993,-0.0114003196358681,0.00976538565009832,0.999887347221375,0.0183413047343493,0.0090891495347023,0.999790549278259,-0.0631652325391769,0.0141673106700182,0.997902572154999,0.491868168115616,-0.870233297348022,0.0275625754147768,0.347668558359146,-0.937458276748657,0.0172789636999369,-0.0126863168552518,-0.999919533729553,4.77032008348033e-005,-0.0142726516351104,-0.999898135662079,3.94484086427838e-005,0.040894590318203,-0.00410033483058214,-0.999155044555664,0.0268274154514074,-0.0109570380300283,-0.999580025672913,-0.0156846195459366,-0.00452144490554929,-0.999866843223572,0.00252841343171895,-0.00477984501048923,-0.999985456466675,-0.0114003196358681,0.00976538565009832,0.999887347221375,0.0682370960712433,0.00930225290358067,0.997625827789307,0.0873722285032272,0.000156737878569402,0.996175765991211,0.0183413047343493,0.0090891495347023,0.999790549278259,-0.0142726516351104,-0.999898135662079,3.94484086427838e-005,-0.0126863168552518,-0.999919533729553,4.77032008348033e-005,
- -0.364474654197693,-0.931049108505249,0.0174883734434843,-0.501825749874115,-0.864545524120331,0.0270586535334587,0.00252841343171895,-0.00477984501048923,-0.999985456466675,-0.0156846195459366,-0.00452144490554929,-0.999866843223572,-0.050484262406826,0.00225736596621573,-0.99872237443924,-0.0376123003661633,-0.00386385759338737,-0.999284982681274,-0.992621541023254,0.00175712839700282,0.121241949498653,-0.99262273311615,0.000654022500384599,0.121242076158524,-0.992617189884186,-0.000449084007414058,0.121288865804672,-0.992617070674896,0.00065402255859226,0.121288850903511,0.141414791345596,-0.00487465783953667,0.98993843793869,0.162862688302994,-0.000209352030651644,0.986648797988892,0.162928596138954,-0.00111105106770992,0.98663729429245,0.141597613692284,-0.00539179891347885,0.989909648895264,-0.925742208957672,-0.367148250341415,0.0905731692910194,-0.918690979480743,-0.384751379489899,0.0892933383584023,-0.975384593009949,-0.187550649046898,0.11597291380167,-0.976890385150909,-0.178841024637222,0.117052093148232,-0.0743049159646034,0.00303812325000763,-0.997231006622314,-0.0769614949822426,0.00706207659095526,-0.997009038925171,-0.088274784386158,0.00526581984013319,-0.996082246303558,-0.0880520418286324,0.00184669974260032,-0.996114253997803,0.167410686612129,-0.00170004577375948,0.985885798931122,0.167410671710968,-0.0026431349106133,0.985883712768555,0.162928596138954,-0.00111105106770992,0.98663729429245,0.162862688302994,-0.000209352030651644,0.986648797988892,-0.975384593009949,-0.187550649046898,0.11597291380167,-0.992622911930084,-0.000399216980440542,0.121242098510265,-0.992622017860413,-0.00138342916034162,0.121242001652718,-0.976890385150909,-0.178841024637222,0.117052093148232,-0.089543990790844,0.00765811465680599,-0.995953500270844,-0.0895442068576813,0.00406252592802048,-0.995974540710449,-0.0880520418286324,0.00184669974260032,-0.996114253997803,-0.088274784386158,0.00526581984013319,-0.996082246303558,0.167409375309944,0.00176692951936275,0.985885858535767,0.167456224560738,0.00274914922192693,0.985875725746155,
- 0.167455703020096,0.00373136624693871,0.985872626304626,0.167408630251884,0.00274914898909628,0.985883831977844,-0.0895876362919807,-0.0077757122926414,-0.995948612689972,-0.0895895734429359,-0.00413390714675188,-0.995970189571381,-0.089542843401432,-0.000492047343868762,-0.995982825756073,-0.0895404145121574,-0.00413390714675188,-0.995974659919739,-0.991498470306396,-1.88106459972914e-005,-0.130118623375893,-0.991478264331818,9.34982367084558e-008,-0.130272775888443,-0.991478264331818,-0,-0.130272775888443,-0.991497814655304,-1.51996409840649e-005,-0.130123272538185,-0.991498470306396,-1.88106459972914e-005,-0.130118623375893,-0.991497814655304,-1.51996409840649e-005,-0.130123272538185,-0.99209988117218,-9.20954771572724e-005,-0.125451043248177,-0.992116987705231,-9.79885080596432e-005,-0.125315725803375,-0.992116987705231,-9.79885080596432e-005,-0.125315725803375,-0.99209988117218,-9.20954771572724e-005,-0.125451043248177,-0.994500935077667,-0.000134446381707676,-0.104727536439896,-0.994488894939423,-3.92282854591031e-005,-0.104842655360699,-0.994488894939423,-3.92282854591031e-005,-0.104842655360699,-0.994500935077667,-0.000134446381707676,-0.104727536439896,-0.997898101806641,-9.87060557235964e-005,-0.064803846180439,-0.998027145862579,-5.78349718125537e-005,-0.062784768640995,-0.998027145862579,-5.78349718125537e-005,-0.062784768640995,-0.997898101806641,-9.87060557235964e-005,-0.064803846180439,-0.99999874830246,1.71015926753171e-005,0.00163690850604326,-0.999997556209564,5.75346311961766e-005,0.00221901759505272,-0.999997556209564,5.75346311961766e-005,0.00221901759505272,-0.99999874830246,1.71015926753171e-005,0.00163690850604326,-0.998041033744812,8.78361606737599e-005,0.0625641718506813,-0.998224914073944,5.34336068085395e-005,0.0595576651394367,-0.998224914073944,5.34336068085395e-005,0.0595576651394367,-0.998041033744812,8.78361606737599e-005,0.0625641718506813,-0.994427740573883,8.06631433079019e-005,0.105421259999275,-0.994347155094147,3.36569828505162e-005,0.10617857426405,-0.994347155094147,3.36569828505162e-005,0.10617857426405,
- -0.994427740573883,8.06631433079019e-005,0.105421259999275,-0.991977334022522,2.55241211561952e-005,0.126416176557541,-0.992072820663452,7.61675328249112e-005,0.125664547085762,-0.991701245307922,-2.54785049946804e-006,0.128563866019249,-0.992072820663452,7.61675328249112e-005,0.125664547085762,-0.991977334022522,2.55241211561952e-005,0.126416176557541,-0.991701304912567,-2.85409009848081e-006,0.128563895821571,-0.991694569587708,-2.87084844785568e-007,0.128615364432335,-0.991701245307922,-2.54785049946804e-006,0.128563866019249,-0.991701304912567,-2.85409009848081e-006,0.128563895821571,-0.991694569587708,-2.39237408550252e-007,0.128615364432335
- }
- BinormalsW: *896 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *2688 {
- a: -0.382678776979446,0,-0.923881471157074,-0.382678776979446,0,-0.923881471157074,-0.707106828689575,0,-0.707106828689575,-0.707106828689575,0,-0.707106828689575,-0.707106828689575,0,-0.707106828689575,-0.707106828689575,0,-0.707106828689575,-0.923880338668823,0,-0.382681459188461,-0.923880338668823,0,-0.382681399583817,-0.923880338668823,0,-0.382681399583817,-0.923880338668823,0,-0.382681459188461,-1,0,-3.957316891956e-007,-1,0,-3.9573166077389e-007,-1,0,-3.9573166077389e-007,-1,0,-3.957316891956e-007,-0.923880696296692,4.32051763255004e-007,0.382680773735046,-0.923880696296692,2.63216350049333e-007,0.382680773735046,-0.923880696296692,2.63216350049333e-007,0.382680773735046,-0.923880696296692,4.32051763255004e-007,0.382680773735046,-0.707107186317444,5.06507717545901e-007,0.707106351852417,-0.707107186317444,9.16278452223196e-007,0.707106351852417,-0.707107186317444,0,0.707106351852417,-0.707107186317444,0,0.707106351852417,-0.382678687572479,0,0.923881530761719,-0.382678717374802,0,0.923881530761719,-0.382678717374802,0,0.923881530761719,-0.382678687572479,0,0.923881530761719,0,0,1,0,0,1,0,0,1,0,0,1,0.382678329944611,0,0.923881649971008,0.382678359746933,0,0.923881709575653,0.382678359746933,0,0.923881709575653,0.382678329944611,0,0.923881649971008,0.707106590270996,-2.1057360299892e-007,0.70710700750351,0.707106590270996,-2.10573645631484e-007,0.70710700750351,0.707106590270996,-2.10573645631484e-007,0.70710700750351,0.707106590270996,-2.1057360299892e-007,0.70710700750351,0.923880755901337,-0.000262507790466771,0.382680296897888,0.916123330593109,5.69984949834179e-005,0.400896698236465,0.916123330593109,5.69984949834179e-005,0.400896698236465,0.923880755901337,-0.000262507790466771,0.382680296897888,1,1.80443937569663e-009,4.06163024990747e-007,1,3.75439590527549e-009,4.06181442258458e-007,0.978942096233368,-0.00011740193440346,0.20413826406002,0.978942275047302,0.000117610688903369,-0.204137623310089,1,3.75439590527549e-009,4.06181442258458e-007,1,1.80443937569663e-009,4.06163024990747e-007,
- 0.923880517482758,-4.04754136980046e-005,-0.382681131362915,0.916123569011688,0.000101426041510422,-0.400895953178406,0.916123569011688,0.000101426041510422,-0.400895953178406,0.923880517482758,-4.04754136980046e-005,-0.382681131362915,0.707106828689575,-1.30165620504386e-008,-0.707106828689575,0.707106947898865,-2.55801574366998e-010,-0.707106709480286,0.707106947898865,-2.55801574366998e-010,-0.707106709480286,0.707106828689575,-1.30165620504386e-008,-0.707106828689575,0.382678329944611,-4.33823199585959e-009,-0.923881649971008,0.382678359746933,0,-0.923881709575653,0.382678359746933,0,-0.923881709575653,0.382678329944611,-4.33823199585959e-009,-0.923881649971008,0,0,-1,0,0,-1,-0.382678776979446,0,-0.923881471157074,0,0,-1,0,0,-1,-0.382678776979446,0,-0.923881471157074,-0.382678806781769,0,-0.923881471157074,-0.382678806781769,0,-0.923881471157074,-0.707106828689575,0,-0.707106828689575,-0.707106828689575,0,-0.707106828689575,-0.707106828689575,0,-0.707106828689575,-0.707106828689575,0,-0.707106828689575,-0.923880338668823,0,-0.382681399583817,-0.923880338668823,0,-0.382681399583817,-0.923880338668823,0,-0.382681399583817,-0.923880338668823,0,-0.382681399583817,-1,0,-3.9573166077389e-007,-1,0,-3.9573166077389e-007,-1,0,-3.9573166077389e-007,-1,0,-3.9573166077389e-007,-0.923880696296692,1.02654416878067e-006,0.382680773735046,-0.923880696296692,7.37005848350236e-007,0.382680773735046,-0.923880696296692,7.37005848350236e-007,0.382680773735046,-0.923880696296692,1.02654416878067e-006,0.382680773735046,-0.707107186317444,1.57930344357737e-006,0.707106351852417,-0.707107186317444,1.89516356385866e-006,0.707106351852417,-0.707107186317444,0,0.707106351852417,-0.707107186317444,0,0.707106351852417,-0.382678687572479,0,0.923881530761719,-0.382678687572479,0,0.923881530761719,-0.382678687572479,0,0.923881530761719,-0.382678687572479,0,0.923881530761719,0,0,1,0,0,1,0,0,1,0,0,1,0.382678359746933,0,0.923881709575653,0.382678329944611,0,0.923881649971008,0.382678329944611,0,0.923881649971008,0.382678359746933,0,0.923881709575653,
- 0.707106590270996,-8.42294639369356e-007,0.70710700750351,0.707106590270996,-6.31721150057274e-007,0.70710700750351,0.707106590270996,-6.31721150057274e-007,0.70710700750351,0.707106590270996,-8.42294639369356e-007,0.70710700750351,0.916123330593109,8.48707077238942e-006,0.400896608829498,0.923880279064178,-4.10797256336082e-005,0.382681667804718,0.923880279064178,-4.10797256336082e-005,0.382681667804718,0.916123330593109,8.48707077238942e-006,0.400896608829498,0.978941977024078,6.26338951406069e-005,0.20413863658905,1,-3.75439590527549e-009,4.06181442258458e-007,1,7.71834436363861e-008,4.05408599135626e-007,1,7.71834436363861e-008,4.05408599135626e-007,1,-3.75439590527549e-009,4.06181442258458e-007,0.978942096233368,-6.23255618847907e-005,-0.204137966036797,0.916123330593109,0.000145296697155572,-0.400896608829498,0.923880934715271,-0.000262649613432586,-0.38267993927002,0.923880934715271,-0.000262649613432586,-0.38267993927002,0.916123330593109,0.000145296697155572,-0.400896608829498,0.707106828689575,6.76409150912605e-009,-0.707106828689575,0.707106828689575,0,-0.707106828689575,0.707106828689575,0,-0.707106828689575,0.707106828689575,6.76409150912605e-009,-0.707106828689575,0.382678359746933,2.169116442019e-009,-0.923881709575653,0.382678329944611,0,-0.923881649971008,0.382678329944611,0,-0.923881649971008,0.382678359746933,2.169116442019e-009,-0.923881709575653,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.382678806781769,0,-0.923881471157074,-0.382678806781769,0,-0.923881471157074,-0.707106828689575,0,-0.707106828689575,-0.382678806781769,0,-0.923881471157074,-0.382678776979446,0,-0.923881471157074,-0.707106828689575,0,-0.707106828689575,-0.923880338668823,0,-0.382681399583817,-0.707106828689575,0,-0.707106828689575,-0.707106828689575,0,-0.707106828689575,-0.923880338668823,0,-0.382681399583817,-1,0,-3.9573166077389e-007,-0.923880338668823,0,-0.382681399583817,-0.923880338668823,0,-0.382681399583817,-1,0,-3.9573166077389e-007,-0.923880696296692,1.02654416878067e-006,0.382680773735046,-1,0,-3.9573166077389e-007,-1,0,-3.9573166077389e-007,
- -0.923880696296692,2.63216350049333e-007,0.382680773735046,-0.707107186317444,1.57930344357737e-006,0.707106351852417,-0.923880696296692,1.02654416878067e-006,0.382680773735046,-0.923880696296692,2.63216350049333e-007,0.382680773735046,-0.707107186317444,9.16278452223196e-007,0.707106351852417,-0.382678687572479,0,0.923881530761719,-0.707107186317444,0,0.707106351852417,-0.707107186317444,0,0.707106351852417,-0.382678717374802,0,0.923881530761719,0,0,1,-0.382678687572479,0,0.923881530761719,-0.382678717374802,0,0.923881530761719,0,0,1,0.382678359746933,0,0.923881709575653,0,0,1,0,0,1,0.382678359746933,0,0.923881709575653,0.707106590270996,-8.42294639369356e-007,0.70710700750351,0.382678359746933,0,0.923881709575653,0.382678359746933,0,0.923881709575653,0.707106590270996,-2.10573645631484e-007,0.70710700750351,0.916123330593109,8.48707077238942e-006,0.400896608829498,0.707106590270996,-8.42294639369356e-007,0.70710700750351,0.707106590270996,-2.10573645631484e-007,0.70710700750351,0.916123330593109,5.69984949834179e-005,0.400896698236465,0.916123330593109,8.48707077238942e-006,0.400896608829498,0.916123330593109,5.69984949834179e-005,0.400896698236465,0.978942096233368,-0.00011740193440346,0.20413826406002,0.978941977024078,6.26338951406069e-005,0.20413863658905,0.916123330593109,0.000145296697155572,-0.400896608829498,0.978942096233368,-6.23255618847907e-005,-0.204137966036797,0.978942275047302,0.000117610688903369,-0.204137623310089,0.916123569011688,0.000101426041510422,-0.400895953178406,0.707106828689575,6.76409150912605e-009,-0.707106828689575,0.916123330593109,0.000145296697155572,-0.400896608829498,0.916123569011688,0.000101426041510422,-0.400895953178406,0.707106947898865,-2.55801574366998e-010,-0.707106709480286,0.382678359746933,2.169116442019e-009,-0.923881709575653,0.707106828689575,6.76409150912605e-009,-0.707106828689575,0.707106947898865,-2.55801574366998e-010,-0.707106709480286,0.382678359746933,0,-0.923881709575653,0,0,-1,0.382678359746933,2.169116442019e-009,-0.923881709575653,0.382678359746933,0,-0.923881709575653,
- 0,0,-1,-0.382678806781769,0,-0.923881471157074,0,0,-1,0,0,-1,-0.382678776979446,0,-0.923881471157074,0.382685035467148,0,0.923878848552704,0.382685095071793,0,0.923878967761993,-6.17935569380279e-009,0,1,-6.179356137892e-009,0,1,0.382685035467148,0,0.923878848552704,0.70711088180542,0,0.707102715969086,0.707110941410065,0,0.707102715969086,0.382685095071793,0,0.923878967761993,0.70711088180542,0,0.707102715969086,0.923880755901337,0,0.382680654525757,0.923880755901337,0,0.382680594921112,0.707110941410065,0,0.707102715969086,0.923880755901337,0,0.382680654525757,1,0,4.75816193556966e-007,1,0,4.75816193556966e-007,0.923880755901337,0,0.382680594921112,1,0,4.75816193556966e-007,0.923878848552704,8.74636668868334e-007,-0.382685273885727,0.923878788948059,1.24948007851344e-006,-0.382685244083405,1,0,4.75816193556966e-007,0.923878848552704,8.74636668868334e-007,-0.382685273885727,0.707111120223999,1.87422551789496e-006,-0.707102477550507,0.707111120223999,1.87422483577393e-006,-0.707102477550507,0.923878788948059,1.24948007851344e-006,-0.382685244083405,0.707111179828644,0,-0.707102417945862,0.382698029279709,0,-0.923873424530029,0.382698029279709,0,-0.923873424530029,0.707111179828644,0,-0.707102417945862,0.382698029279709,0,-0.923873424530029,-1.54483874581501e-008,-1.18423792822654e-015,-1,4.94348419977086e-008,5.84408965664807e-009,-1,0.382698029279709,0,-0.923873424530029,-1.54483874581501e-008,-1.18423792822654e-015,-1,-0.382697910070419,2.10202254230128e-014,-0.923873603343964,-0.382697880268097,5.84268766701257e-009,-0.923873603343964,4.94348419977086e-008,5.84408965664807e-009,-1,-0.382697910070419,2.10202254230128e-014,-0.923873603343964,-0.707110702991486,1.24948329016661e-007,-0.707102954387665,-0.707110643386841,1.24948257962387e-007,-0.707102954387665,-0.382697880268097,5.84268766701257e-009,-0.923873603343964,-0.707110702991486,1.24948329016661e-007,-0.707102954387665,-0.923878371715546,-2.27216169150779e-005,-0.382686108350754,-0.92387855052948,-1.24953018598717e-007,-0.382686078548431,-0.707110643386841,1.24948257962387e-007,-0.707102954387665,
- -0.923878371715546,-2.27216169150779e-005,-0.382686108350754,-0.999999940395355,-0.000228783479542471,-2.31650597015687e-006,-1,0,-4.75816193556966e-007,-0.92387855052948,-1.24953018598717e-007,-0.382686078548431,-0.999999940395355,-0.000228783479542471,-2.31650597015687e-006,-0.923881053924561,-9.48446177062579e-005,0.382679790258408,-0.923880934715271,0,0.382680177688599,-1,0,-4.75816193556966e-007,-0.923881053924561,-9.48446177062579e-005,0.382679790258408,-0.70711088180542,0,0.707102715969086,-0.707110941410065,0,0.707102715969086,-0.923880934715271,0,0.382680177688599,-0.70711088180542,0,0.707102715969086,-0.38268455862999,0,0.923879086971283,-0.38268455862999,0,0.923879086971283,-0.707110941410065,0,0.707102715969086,-0.38268455862999,0,0.923879086971283,-6.179356137892e-009,0,1,-6.17935569380279e-009,0,1,-0.38268455862999,0,0.923879086971283,0.38268506526947,0,0.923878967761993,0.38268506526947,0,0.923878967761993,-6.17935569380279e-009,0,1,-6.17935569380279e-009,0,1,0.707110941410065,0,0.707102715969086,0.70711088180542,0,0.707102715969086,0.38268506526947,0,0.923878967761993,0.38268506526947,0,0.923878967761993,0.923880755901337,0,0.382680594921112,0.923880755901337,0,0.382680654525757,0.70711088180542,0,0.707102715969086,0.707110941410065,0,0.707102715969086,1,0,4.75816193556966e-007,1,0,4.75816136713547e-007,0.923880755901337,0,0.382680654525757,0.923880755901337,0,0.382680594921112,0.923878788948059,2.49896118020843e-007,-0.382685244083405,0.923878848552704,2.49896174864261e-007,-0.382685273885727,1,0,4.75816136713547e-007,1,0,4.75816193556966e-007,0.707111120223999,-0,-0.707102477550507,0.707111120223999,5.62267700843222e-007,-0.707102477550507,0.923878848552704,2.49896174864261e-007,-0.382685273885727,0.923878788948059,2.49896118020843e-007,-0.382685244083405,0.382698029279709,0,-0.923873424530029,0.382698029279709,0,-0.923873543739319,0.707111179828644,0,-0.707102417945862,0.707111179828644,0,-0.707102417945862,4.94348419977086e-008,-1.02989758943295e-008,-1,-1.54483874581501e-008,5.14948927943237e-009,-1,
- 0.382698029279709,0,-0.923873543739319,0.382698029279709,0,-0.923873424530029,-0.382697880268097,-1.02965049819659e-008,-0.923873603343964,-0.382697910070419,5.14817743990648e-009,-0.923873603343964,-1.54483874581501e-008,5.14948927943237e-009,-1,4.94348419977086e-008,-1.02989758943295e-008,-1,-0.707110643386841,1.24948360280541e-006,-0.707102954387665,-0.707110702991486,7.49690002521675e-007,-0.707102954387665,-0.382697910070419,5.14817743990648e-009,-0.923873603343964,-0.382697880268097,-1.02965049819659e-008,-0.923873603343964,-0.92387855052948,2.49885999892285e-007,-0.382686078548431,-0.923878252506256,0.000134659770992585,-0.382686585187912,-0.707110702991486,7.49690002521675e-007,-0.707102954387665,-0.707110643386841,1.24948360280541e-006,-0.707102954387665,-1,0,-4.75816193556966e-007,-0.999999940395355,0.000228462100494653,-2.3139205040934e-006,-0.923878252506256,0.000134659770992585,-0.382686585187912,-0.92387855052948,2.49885999892285e-007,-0.382686078548431,-0.923880934715271,0,0.382680177688599,-0.923881232738495,0.000244033770286478,0.382679224014282,-0.999999940395355,0.000228462100494653,-2.3139205040934e-006,-1,0,-4.75816193556966e-007,-0.707110941410065,0,0.707102715969086,-0.70711088180542,0,0.707102715969086,-0.923881232738495,0.000244033770286478,0.382679224014282,-0.923880934715271,0,0.382680177688599,-0.38268455862999,0,0.923879086971283,-0.38268455862999,0,0.923879086971283,-0.70711088180542,0,0.707102715969086,-0.707110941410065,0,0.707102715969086,-6.17935569380279e-009,0,1,-6.17935569380279e-009,0,1,-0.38268455862999,0,0.923879086971283,-0.38268455862999,0,0.923879086971283,-6.17935569380279e-009,0,1,0.38268506526947,0,0.923878967761993,0.38268506526947,0,0.923878967761993,-4.11953493539841e-009,0,1,0.38268506526947,0,0.923878967761993,0.70711088180542,0,0.707102715969086,0.70711088180542,0,0.707102715969086,0.38268506526947,0,0.923878967761993,0.70711088180542,0,0.707102715969086,0.923880755901337,0,0.382680654525757,0.923880755901337,0,0.382680654525757,0.70711088180542,0,0.707102715969086,
- 0.923880755901337,0,0.382680654525757,1,0,4.75816136713547e-007,1,0,4.77876028526225e-007,0.923880755901337,0,0.382680654525757,1,0,4.75816136713547e-007,0.923878848552704,2.49896174864261e-007,-0.382685273885727,0.923878848552704,3.74844262296392e-007,-0.382685273885727,1,0,4.77876028526225e-007,0.923878848552704,2.49896174864261e-007,-0.382685273885727,0.707111120223999,5.62267700843222e-007,-0.707102477550507,0.707111120223999,9.99587314254313e-007,-0.707102477550507,0.923878848552704,3.74844262296392e-007,-0.382685273885727,0.707111179828644,0,-0.707102417945862,0.382698029279709,0,-0.923873543739319,0.382698029279709,0,-0.923873424530029,0.707111120223999,0,-0.707102477550507,0.382698029279709,0,-0.923873543739319,-1.54483874581501e-008,5.14948927943237e-009,-1,0,0,-1,0.382698029279709,0,-0.923873424530029,-1.54483874581501e-008,5.14948927943237e-009,-1,-0.382697910070419,5.14817743990648e-009,-0.923873603343964,-0.382697910070419,0,-0.923873603343964,0,0,-1,-0.382697910070419,5.14817743990648e-009,-0.923873603343964,-0.707110702991486,7.49690002521675e-007,-0.707102954387665,-0.707110702991486,8.74638260484062e-007,-0.707102954387665,-0.382697910070419,0,-0.923873603343964,-0.707110702991486,7.49690002521675e-007,-0.707102954387665,-0.923878252506256,0.000134659770992585,-0.382686585187912,-0.913218259811401,7.49348328099586e-005,-0.407470762729645,-0.707110702991486,8.74638260484062e-007,-0.707102954387665,-0.923878252506256,0.000134659770992585,-0.382686585187912,-0.999999940395355,0.000228462100494653,-2.3139205040934e-006,-1,7.68342101054031e-009,-4.69760095711536e-007,-0.977870941162109,-0.000128090163343586,-0.209209054708481,-0.913218259811401,7.49348328099586e-005,-0.407470762729645,-0.999999940395355,0.000228462100494653,-2.3139205040934e-006,-0.923881232738495,0.000244033770286478,0.382679224014282,-0.913221299648285,3.1895651773084e-005,0.407463908195496,-0.977872788906097,0.000200652779312804,0.209200531244278,-1,7.68342101054031e-009,-4.69760095711536e-007,-0.923881232738495,0.000244033770286478,0.382679224014282,
- -0.70711088180542,0,0.707102715969086,-0.70711088180542,0,0.707102715969086,-0.913221299648285,3.1895651773084e-005,0.407463908195496,-0.70711088180542,0,0.707102715969086,-0.38268455862999,0,0.923879086971283,-0.382684588432312,0,0.923879086971283,-0.70711088180542,0,0.707102715969086,-0.38268455862999,0,0.923879086971283,-6.17935569380279e-009,0,1,-4.11953493539841e-009,0,1,-0.382684588432312,0,0.923879086971283,-4.11953493539841e-009,0,1,0.38268506526947,0,0.923878967761993,0.38268506526947,0,0.923878967761993,-6.179320166666e-009,0,1,0.38268506526947,0,0.923878967761993,0.70711088180542,0,0.707102715969086,0.70711088180542,0,0.707102715969086,0.38268506526947,0,0.923878967761993,0.70711088180542,0,0.707102715969086,0.923880755901337,0,0.382680654525757,0.923880755901337,0,0.382680624723434,0.70711088180542,0,0.707102715969086,0.923880755901337,0,0.382680654525757,1,0,4.77876028526225e-007,1,0,4.75815795653034e-007,0.923880755901337,0,0.382680624723434,1,0,4.77876028526225e-007,0.923878848552704,3.74844262296392e-007,-0.382685273885727,0.923878848552704,6.24740550847491e-007,-0.382685273885727,1,0,4.75815795653034e-007,0.923878848552704,3.74844262296392e-007,-0.382685273885727,0.707111120223999,9.99587314254313e-007,-0.707102477550507,0.707111120223999,1.62432968409121e-006,-0.707102477550507,0.923878848552704,6.24740550847491e-007,-0.382685273885727,0.707111120223999,0,-0.707102477550507,0.382698029279709,0,-0.923873424530029,0.382698029279709,0,-0.923873543739319,0.707111120223999,0,-0.707102477550507,0.382698029279709,0,-0.923873424530029,0,0,-1,0,0,-1,0.382698029279709,0,-0.923873543739319,0,0,-1,-0.382697910070419,0,-0.923873603343964,-0.382697910070419,0,-0.923873603343964,0,0,-1,-0.382697910070419,0,-0.923873603343964,-0.707110702991486,8.74638260484062e-007,-0.707102954387665,-0.707110702991486,2.49896885406997e-007,-0.707102954387665,-0.382697910070419,0,-0.923873603343964,-0.707110702991486,8.74638260484062e-007,-0.707102954387665,-0.913218259811401,7.49348328099586e-005,-0.407470762729645,-0.913218438625336,3.19655264320318e-005,-0.407470434904099,
- -0.707110702991486,2.49896885406997e-007,-0.707102954387665,-0.913218259811401,7.49348328099586e-005,-0.407470762729645,-0.977870941162109,-0.000128090163343586,-0.209209054708481,-0.977871060371399,0.000200580194359645,-0.209208428859711,-0.913218438625336,3.19655264320318e-005,-0.407470434904099,-0.977872788906097,0.000200652779312804,0.209200531244278,-0.913221299648285,3.1895651773084e-005,0.407463908195496,-0.91322124004364,7.43451091693714e-005,0.407464176416397,-0.977872669696808,-0.000127932435134426,0.209201157093048,-0.913221299648285,3.1895651773084e-005,0.407463908195496,-0.70711088180542,0,0.707102715969086,-0.70711088180542,0,0.707102715969086,-0.91322124004364,7.43451091693714e-005,0.407464176416397,-0.70711088180542,0,0.707102715969086,-0.382684588432312,0,0.923879086971283,-0.382684528827667,0,0.923879086971283,-0.70711088180542,0,0.707102715969086,-0.382684588432312,0,0.923879086971283,-4.11953493539841e-009,0,1,-6.179320166666e-009,0,1,-0.382684528827667,0,0.923879086971283,-6.179320166666e-009,0,1,0.38268506526947,0,0.923878967761993,0.382685035467148,0,0.923878848552704,-6.179356137892e-009,0,1,0.38268506526947,0,0.923878967761993,0.70711088180542,0,0.707102715969086,0.70711088180542,0,0.707102715969086,0.382685035467148,0,0.923878848552704,0.70711088180542,0,0.707102715969086,0.923880755901337,0,0.382680624723434,0.923880755901337,0,0.382680654525757,0.70711088180542,0,0.707102715969086,0.923880755901337,0,0.382680624723434,1,0,4.75815795653034e-007,1,0,4.75816193556966e-007,0.923880755901337,0,0.382680654525757,1,0,4.75815795653034e-007,0.923878848552704,6.24740550847491e-007,-0.382685273885727,0.923878848552704,8.74636668868334e-007,-0.382685273885727,1,0,4.75816193556966e-007,0.923878848552704,6.24740550847491e-007,-0.382685273885727,0.707111120223999,1.62432968409121e-006,-0.707102477550507,0.707111120223999,1.87422551789496e-006,-0.707102477550507,0.923878848552704,8.74636668868334e-007,-0.382685273885727,0.707111120223999,0,-0.707102477550507,0.382698029279709,0,-0.923873543739319,0.382698029279709,0,-0.923873424530029,
- 0.707111179828644,0,-0.707102417945862,0.382698029279709,0,-0.923873543739319,0,0,-1,-1.54483874581501e-008,-1.18423792822654e-015,-1,0.382698029279709,0,-0.923873424530029,0,0,-1,-0.382697910070419,0,-0.923873603343964,-0.382697910070419,2.10202254230128e-014,-0.923873603343964,-1.54483874581501e-008,-1.18423792822654e-015,-1,-0.382697910070419,0,-0.923873603343964,-0.707110702991486,2.49896885406997e-007,-0.707102954387665,-0.707110702991486,1.24948329016661e-007,-0.707102954387665,-0.382697910070419,2.10202254230128e-014,-0.923873603343964,-0.707110702991486,2.49896885406997e-007,-0.707102954387665,-0.913218438625336,3.19655264320318e-005,-0.407470434904099,-0.923878371715546,-2.27216169150779e-005,-0.382686108350754,-0.707110702991486,1.24948329016661e-007,-0.707102954387665,-0.913218438625336,3.19655264320318e-005,-0.407470434904099,-0.977871060371399,0.000200580194359645,-0.209208428859711,-1,-7.68342101054031e-009,-4.69760095711536e-007,-0.999999940395355,-0.000228783479542471,-2.31650597015687e-006,-0.923878371715546,-2.27216169150779e-005,-0.382686108350754,-0.977872669696808,-0.000127932435134426,0.209201157093048,-0.91322124004364,7.43451091693714e-005,0.407464176416397,-0.923881053924561,-9.48446177062579e-005,0.382679790258408,-0.999999940395355,-0.000228783479542471,-2.31650597015687e-006,-1,-7.68342101054031e-009,-4.69760095711536e-007,-0.91322124004364,7.43451091693714e-005,0.407464176416397,-0.70711088180542,0,0.707102715969086,-0.70711088180542,0,0.707102715969086,-0.923881053924561,-9.48446177062579e-005,0.382679790258408,-0.70711088180542,0,0.707102715969086,-0.382684528827667,0,0.923879086971283,-0.38268455862999,0,0.923879086971283,-0.70711088180542,0,0.707102715969086,-0.382684528827667,0,0.923879086971283,-6.179320166666e-009,0,1,-6.179356137892e-009,0,1,-0.38268455862999,0,0.923879086971283,7.40126715470524e-009,0,1,-0,0,1,1.29044650520882e-008,0,1,2.58089301041764e-008,0,1,-4.95590484206332e-008,0,-1,0,0,-1,-4.95590484206332e-008,0,-1,-9.91180968412664e-008,0,-1,0.0950864627957344,0.0168246459215879,0.995326936244965,
- -0,0,1,7.40126715470524e-009,0,1,0.0950862243771553,0.0168252754956484,0.995326936244965,0.0980490893125534,0,0.995181560516357,0.0980490893125534,-1.80127857074552e-009,0.995181560516357,0.0980490893125534,-2.10506212461326e-009,0.995181560516357,0.0980490893125534,0,0.995181560516357,0.095086470246315,0.0168246608227491,-0.995326936244965,0,-0,-1,3.9726767653292e-008,-0,-1,0.0950862541794777,0.0168252512812614,-0.995326936244965,0.0980491191148758,3.03854541527926e-009,-0.995181560516357,0.0980491191148758,0,-0.995181560516357,0.0980491191148758,0,-0.995181560516357,0.0980491116642952,1.78392622895984e-009,-0.995181560516357,-0.19512078166008,-0,0.980779230594635,-0.320733696222305,0,0.947169423103333,-0.442965716123581,0,0.896538555622101,-0.195107236504555,-0,0.98078191280365,-0.555560350418091,-0,0.831476211547852,-0.442965716123581,0,0.896538555622101,-0.320733696222305,0,0.947169423103333,-0.5555659532547,0,0.831472456455231,-0.947173774242401,0,0.320720911026001,-0.831474423408508,0,0.555562973022461,-0.831474423408508,0,0.555562973022461,-0.896539449691772,0,0.442963927984238,-0.980785310268402,-0,0.195090293884277,-0.947173774242401,0,0.320720911026001,-0.896539449691772,0,0.442963927984238,-0.980784893035889,0,0.195092543959618,0.896539747714996,-0,0.442963182926178,0.980785250663757,-0,0.195090472698212,0.980785369873047,-0,0.195089891552925,0.94717401266098,-0,0.320719927549362,0.658775627613068,-0,0.752339422702789,0.896539747714996,-0,0.442963182926178,0.94717401266098,-0,0.320719927549362,0.752342879772186,-0,0.658771753311157,0.320719957351685,-0,0.947174072265625,0.658775627613068,-0,0.752339422702789,0.752342879772186,-0,0.658771753311157,0.442965090274811,-0,0.89653879404068,0.195093438029289,-0,0.98078465461731,0.320719957351685,-0,0.947174072265625,0.442965090274811,-0,0.89653879404068,0.19509257376194,-0,0.980784833431244,-0.19509083032608,0,0.980785191059113,-0.320724040269852,0,0.947172701358795,-0.442965686321259,0,0.896538615226746,-0.195092216134071,0,0.980785012245178,-0.752339839935303,-0,0.658775269985199,
- -0.442965686321259,0,0.896538615226746,-0.320724040269852,0,0.947172701358795,-0.658775448799133,-0,0.752339541912079,-0.947174251079559,-0,0.320719212293625,-0.752339839935303,-0,0.658775269985199,-0.658775448799133,-0,0.752339541912079,-0.89654004573822,-0,0.442962676286697,-0.980785310268402,-0,0.195090293884277,-0.947174251079559,-0,0.320719212293625,-0.89654004573822,-0,0.442962676286697,-0.980785429477692,-0,0.195089638233185,-0.896539747714996,0,-0.44296333193779,-0.98078465461731,0,-0.195093393325806,-0.980784237384796,0,-0.195095717906952,-0.947173476219177,0,-0.320721864700317,-0.658775329589844,0,-0.752339661121368,-0.896539747714996,0,-0.44296333193779,-0.947173476219177,0,-0.320721864700317,-0.752342700958252,0,-0.658771812915802,-0.320729106664658,0,-0.947170972824097,-0.658775329589844,0,-0.752339661121368,-0.752342700958252,0,-0.658771812915802,-0.442973405122757,0,-0.896534740924835,-0.19509369134903,0,-0.980784595012665,-0.320729106664658,0,-0.947170972824097,-0.442973405122757,0,-0.896534740924835,-0.19510705769062,0,-0.980782032012939,0.442964822053909,0,-0.896538913249969,0.195092216134071,0,-0.980785012245178,0.195093542337418,0,-0.98078465461731,0.320719599723816,0,-0.947174191474915,0.442973881959915,0,-0.896534562110901,0.195107236504555,0,-0.98078191280365,0.19509369134903,0,-0.980784595012665,0.320729494094849,0,-0.947170853614807,0.320729494094849,0,-0.947170853614807,0.5555659532547,0,-0.831472456455231,0.555571615695953,0,-0.83146870136261,0.442973881959915,0,-0.896534562110901,0.831474602222443,0,-0.555562973022461,0.896540105342865,0,-0.442962527275085,0.947173774242401,0,-0.320720970630646,0.831474423408508,0,-0.555562973022461,0.896540105342865,0,-0.442962527275085,0.980784893035889,0,-0.195092543959618,0.98078441619873,0,-0.195094794034958,0.947173774242401,0,-0.320720970630646,-0.980785131454468,0,-0.195091068744659,-0.947174191474915,0,-0.320719689130783,-0.896539926528931,0,-0.442962825298309,-0.980785250663757,0,-0.195090472698212,-0.947174191474915,0,-0.320719689130783,-0.752339899539948,0,-0.658775150775909,
- -0.658775448799133,0,-0.752339541912079,-0.896539926528931,0,-0.442962825298309,-0.752339899539948,0,-0.658775150775909,-0.442965656518936,0,-0.896538615226746,-0.320724189281464,0,-0.947172701358795,-0.658775448799133,0,-0.752339541912079,-0.442965656518936,0,-0.896538615226746,-0.19509257376194,0,-0.980784833431244,-0.195091709494591,0,-0.980785012245178,-0.320724189281464,0,-0.947172701358795,0.320719599723816,0,-0.947174191474915,0.658775568008423,0,-0.752339482307434,0.752342820167542,0,-0.658771693706512,0.442964822053909,0,-0.896538913249969,0.658775568008423,0,-0.752339482307434,0.896539807319641,0,-0.442963063716888,0.947174191474915,0,-0.320719361305237,0.752342820167542,0,-0.658771693706512,0.896539807319641,0,-0.442963063716888,0.980785429477692,0,-0.195089638233185,0.980785548686981,0,-0.195088967680931,0.947174191474915,0,-0.320719361305237,0.980785131454468,0,0.195091068744659,0.947173535823822,0,0.320721715688705,0.896539032459259,0,0.442964732646942,0.98078465461731,0,0.195093393325806,0.947173535823822,0,0.320721715688705,0.752339661121368,0,0.658775389194489,0.658775210380554,0,0.752339780330658,0.896539032459259,0,0.442964732646942,0.752339661121368,0,0.658775389194489,0.442965418100357,0,0.896538615226746,0.320733517408371,0,0.947169482707977,0.658775210380554,0,0.752339780330658,0.442965418100357,0,0.896538615226746,0.19510705769062,0,0.980782032012939,0.195120394229889,0,0.980779409408569,0.320733517408371,0,0.947169482707977,-1,-0.000111042550997809,-3.63880681106821e-005,-0.996161222457886,4.31014854029854e-007,0.0875375121831894,-0.996161222457886,3.80557253265579e-007,0.0875374376773834,-1,5.11808480041509e-007,-3.85692544568883e-009,-0.996161282062531,0,0.0875370651483536,-0.99616140127182,0,0.0875357687473297,-0.999999821186066,-1.02745190827536e-011,-0.000420306751038879,-0.999999821186066,-1.0265602604087e-011,-0.000419710238929838,-1,-7.9300019706352e-007,-3.55878482238836e-009,-0.99616140127182,-4.72162298592593e-007,0.0875366106629372,-0.996161341667175,-1.24969730563862e-007,0.0875366777181625,
- -1,0.000121678960567806,-3.40919905283954e-005,-0.999999940395355,2.80818076134892e-005,-0.000415297487052158,-0.996161162853241,-1.38028468654738e-007,0.0875384658575058,-0.996161282062531,-3.20385353802521e-008,0.0875370353460312,-0.999583601951599,0.00288597610779107,0.0287120006978512,-0.0037408412899822,0.999772012233734,-0.02101881057024,0.032815121114254,0.982306301593781,0.184384226799011,0.0109574198722839,0.998042821884155,0.0615685246884823,0.0102621093392372,0.998283505439758,0.0576616488397121,0.00446944683790207,-0.999674558639526,-0.0251134131103754,-0.0249042622745037,-0.989847660064697,0.1399335116148,0.0109237246215343,-0.99805474281311,-0.0613791905343533,0.00167709228117019,-0.999954164028168,-0.00942339468747377,-0.999559164047241,-0.00297234347090125,-0.0295383427292109,-0.996161222457886,9.83312631319677e-009,0.087537445127964,-0.996161222457886,4.31014854029854e-007,0.0875375121831894,-1,-0.000111042550997809,-3.63880681106821e-005,-0.0960547253489494,0.836360633373261,-0.539698421955109,-0.0113783460110426,0.997889697551727,-0.0639272108674049,0.032815121114254,0.982306301593781,0.184384226799011,-0.0037408412899822,0.999772012233734,-0.02101881057024,-1,0.000121678960567806,-3.40919905283954e-005,-0.996161341667175,-1.24969730563862e-007,0.0875366777181625,-0.996161162853241,-1.38028468654738e-007,0.0875384658575058,-0.999999940395355,2.80818076134892e-005,-0.000415297487052158,0.0960572063922882,-0.836348176002502,-0.539717257022858,0.0113801760599017,-0.997888624668121,-0.0639433860778809,-0.0249042622745037,-0.989847660064697,0.1399335116148,0.00446944683790207,-0.999674558639526,-0.0251134131103754,-0.996087729930878,6.52046480809076e-007,-0.0883705839514732,-1,-0.000111042550997809,-3.63880681106821e-005,-1,5.11808480041509e-007,-3.85692544568883e-009,-0.996087670326233,7.68359825542575e-007,-0.0883707702159882,-0.996087729930878,8.00775552534105e-008,-0.0883698314428329,-0.999559164047241,-0.00297234347090125,-0.0295383427292109,-1,-0.000111042550997809,-3.63880681106821e-005,-0.996087729930878,6.52046480809076e-007,-0.0883705839514732,
- -0.996087849140167,-5.35108624077907e-009,-0.0883696377277374,-0.999999940395355,2.80818076134892e-005,-0.000415297487052158,-0.999583601951599,0.00288597610779107,0.0287120006978512,-0.996087789535522,1.24644060406354e-007,-0.0883693993091583,-0.996087729930878,-1.16749859557785e-007,-0.0883696600794792,-1,0.000121678960567806,-3.40919905283954e-005,-0.999999940395355,2.80818076134892e-005,-0.000415297487052158,-0.996087849140167,-5.35108624077907e-009,-0.0883696377277374,-0.996087729930878,-1.42996486829361e-006,-0.0883697420358658,-1,-7.9300019706352e-007,-3.55878482238836e-009,-1,0.000121678960567806,-3.40919905283954e-005,-0.996087729930878,-1.16749859557785e-007,-0.0883696600794792,-0.999999821186066,-1.02745190827536e-011,-0.000420306751038879,-0.996087551116943,-4.34211600008894e-009,-0.0883719325065613,-0.996087551116943,-4.34212177324866e-009,-0.0883720517158508,-0.999999821186066,-1.0265602604087e-011,-0.000419710238929838,-0.000411879969760776,-1,-0.000146711536217481,0.000616569072008133,-0.99999988079071,-1.63328277267283e-005,0.00163407856598496,-0.99999862909317,0.000202448107302189,0.00060526974266395,-0.99999988079071,7.498764898628e-005,-0.00403114128857851,-0.999966204166412,0.00716423895210028,-0.00370991230010986,-0.999986529350281,0.00365405692718923,-4.12433037126902e-005,-1,0.000450164341600612,-0.00036284004454501,-0.999992191791534,0.00396034307777882,-0.00626963656395674,-0.999980270862579,0.000621452054474503,-0.00642551528289914,-0.999978244304657,0.00152972445357591,-0.000594092125538737,-0.999993920326233,0.00346353417262435,-0.000438299000961706,-0.999996662139893,0.00255526602268219,-0.862853109836578,0.502539932727814,0.0542046017944813,-0.929551064968109,0.364881485700607,0.0528802871704102,-0.777836441993713,0.623102426528931,0.0819387510418892,-0.773073077201843,0.629014611244202,0.0818454250693321,-0.903592884540558,0.427168250083923,0.0323588252067566,-0.903537452220917,0.425963640213013,0.0466355606913567,-0.557176947593689,0.829498410224915,0.0385514684021473,-0.556575000286102,0.830136358737946,0.0331349708139896,
- -0.904563546180725,0.422384232282639,0.0579332076013088,-0.520755887031555,0.852131724357605,0.0518171526491642,-0.522409558296204,0.851019382476807,0.0534250698983669,-0.904283285140991,0.419513553380966,0.0792465507984161,-0.00626093056052923,-0.999980330467224,0.000570663949474692,-0.192999571561813,-0.980781078338623,-0.0286297220736742,-0.193674102425575,-0.980684101581573,-0.0273682586848736,-0.00641119806095958,-0.999978482723236,0.00144612160511315,-0.0299826711416245,-0.999543190002441,-0.00380240823142231,-0.024585509672761,-0.999692797660828,-0.00313761387951672,-0.211426749825478,-0.976986408233643,-0.0282193720340729,-0.203331649303436,-0.978733599185944,-0.0271408334374428,-0.00339656509459019,-0.999994218349457,0.000229805285925977,-0.00375891244038939,-0.999984264373779,0.0041889064013958,-0.165476843714714,-0.986194252967834,-0.00620446074754,-0.164775118231773,-0.986274659633636,-0.0105573367327452,-0.192999571561813,-0.980781078338623,-0.0286297220736742,-0.58943897485733,-0.804160058498383,-0.076734870672226,-0.593168795108795,-0.802211701869965,-0.0678755566477776,-0.193674102425575,-0.980684101581573,-0.0273682586848736,-0.203331649303436,-0.978733599185944,-0.0271408334374428,-0.211426749825478,-0.976986408233643,-0.0282193720340729,-0.671909809112549,-0.737185120582581,-0.0713816434144974,-0.531452834606171,-0.845048427581787,-0.0587455853819847,-0.164775118231773,-0.986274659633636,-0.0105573367327452,-0.165476843714714,-0.986194252967834,-0.00620446074754,-0.62123692035675,-0.783007383346558,-0.0310493875294924,-0.619422137737274,-0.784064710140228,-0.0394802540540695,-0.58943897485733,-0.804160058498383,-0.076734870672226,-0.900691092014313,-0.428096801042557,-0.0740849301218987,-0.903500616550446,-0.425523996353149,-0.0511485747992992,-0.593168795108795,-0.802211701869965,-0.0678755566477776,-0.531452834606171,-0.845048427581787,-0.0587455853819847,-0.671909809112549,-0.737185120582581,-0.0713816434144974,-0.935777187347412,-0.348081290721893,-0.0562186799943447,-0.868404269218445,-0.492624640464783,-0.0565242618322372,
- -0.619422137737274,-0.784064710140228,-0.0394802540540695,-0.62123692035675,-0.783007383346558,-0.0310493875294924,-0.89778059720993,-0.440021246671677,-0.0192718971520662,-0.896779417991638,-0.441099882125854,-0.0348942540585995,-0.900691092014313,-0.428096801042557,-0.0740849301218987,-0.999679148197174,0.0225087758153677,-0.0116177778691053,-0.999571859836578,0.0229666903614998,0.0181285031139851,-0.903500616550446,-0.425523996353149,-0.0511485747992992,-0.868404269218445,-0.492624640464783,-0.0565242618322372,-0.935777187347412,-0.348081290721893,-0.0562186799943447,-0.999917447566986,0.0126863876357675,0.00203560036607087,-0.999896883964539,0.0142726944759488,0.0015462733572349,-0.896779417991638,-0.441099882125854,-0.0348942540585995,-0.89778059720993,-0.440021246671677,-0.0192718971520662,-0.999776780605316,0.0142285777255893,0.0156188644468784,-0.999896705150604,0.014140254817903,-0.00259577808901668,-0.999679148197174,0.0225087758153677,-0.0116177778691053,-0.904563546180725,0.422384232282639,0.0579332076013088,-0.904283285140991,0.419513553380966,0.0792465507984161,-0.999571859836578,0.0229666903614998,0.0181285031139851,-0.999896883964539,0.0142726944759488,0.0015462733572349,-0.999917447566986,0.0126863876357675,0.00203560036607087,-0.929551064968109,0.364881485700607,0.0528802871704102,-0.862853109836578,0.502539932727814,0.0542046017944813,-0.999896705150604,0.014140254817903,-0.00259577808901668,-0.999776780605316,0.0142285777255893,0.0156188644468784,-0.903537452220917,0.425963640213013,0.0466355606913567,-0.903592884540558,0.427168250083923,0.0323588252067566,-0.00174436299130321,-0.999998450279236,0.000211423393920995,-0.0006493951077573,-0.99999988079071,7.76798551669344e-005,0.000445768557256088,-1,-5.44688991794828e-005,-0.000649194116704166,-0.99999988079071,7.93256622273475e-005,-0.517189919948578,0.852301895618439,0.0780785754323006,-0.0978589728474617,0.995065808296204,0.0163643807172775,-0.0982056930661201,0.995015144348145,0.0173377078026533,-0.518945217132568,0.851161539554596,0.0788664817810059,
- -0.364703088998795,0.930138945579529,0.0428147055208683,-0.382240474224091,0.922996342182159,0.0443845205008984,-0.186055287718773,0.982253730297089,0.0236853864043951,-0.177438661456108,0.983877420425415,0.0223791357129812,-0.555802524089813,0.830152153968811,0.043942641466856,-0.556413590908051,0.829469680786133,0.0488262362778187,-0.0664535313844681,0.99772709608078,0.0111637581139803,-0.0665081813931465,0.997755944728851,0.00772876897826791,-8.87237692950293e-005,0.999998509883881,0.00173944758716971,6.91597742843442e-005,0.999996483325958,0.00266922730952501,-0.0982056930661201,0.995015144348145,0.0173377078026533,-0.0978589728474617,0.995065808296204,0.0163643807172775,-0.186055287718773,0.982253730297089,0.0236853864043951,-0.000396074639866129,0.999999940395355,5.00171299790964e-005,-0.00137302628718317,0.999999046325684,0.00016934443556238,-0.177438661456108,0.983877420425415,0.0223791357129812,0.000224290430196561,0.999970555305481,0.00766883743926883,-9.76793744484894e-005,0.999991714954376,0.00408769398927689,-0.0665081813931465,0.997755944728851,0.00772876897826791,-0.0664535313844681,0.99772709608078,0.0111637581139803,0.000669131288304925,-0.999998390674591,0.00167859974317253,0.000460363895399496,-0.999996304512024,0.00271032960154116,0.000624842825345695,-0.999993026256561,0.00367867667227983,0.000833564030472189,-0.999996185302734,0.00264695752412081,0.000696628645528108,-0.999969780445099,0.00774444360285997,0.000370358146028593,-0.999991536140442,0.00411728350445628,0.000505513686221093,-0.99999988079071,0.000448584236437455,0.000831613142509013,-0.999991416931152,0.00407581496983767,2.56015191553161e-005,-1,-5.05171410623007e-005,-9.27014554008565e-008,-1,-1.21802727903741e-008,0,-1,0,2.18112436414231e-005,-1,-4.93851694045588e-005,2.56015191553161e-005,-1,-5.05171410623007e-005,2.18112436414231e-005,-1,-4.93851694045588e-005,0.000278471183264628,-0.999998927116394,-0.00146810931619257,0.00028920077602379,-0.999998807907104,-0.00150765292346478,0.00028920077602379,-0.999998807907104,-0.00150765292346478,
- 0.000278471183264628,-0.999998927116394,-0.00146810931619257,0.0003185318200849,-0.999998450279236,-0.00174103211611509,0.000224988645641133,-0.999998450279236,-0.00175997533369809,0.000224988645641133,-0.999998450279236,-0.00175997533369809,0.0003185318200849,-0.999998450279236,-0.00174103211611509,-9.26937209442258e-005,-0.999995648860931,0.0029505118727684,-0.000144963967613876,-0.999994874000549,0.00322550628334284,-0.000144963967613876,-0.999994874000549,0.00322550628334284,-9.26937209442258e-005,-0.999995648860931,0.0029505118727684,-5.048772891314e-006,-0.999972939491272,0.00736288167536259,-4.11838773288764e-005,-0.999972879886627,0.00736780650913715,-4.11838773288764e-005,-0.999972879886627,0.00736780650913715,-5.048772891314e-006,-0.999972939491272,0.00736288167536259,0.000106371415313333,-0.999995172023773,0.00310079636983573,0.00016469563706778,-0.999993324279785,0.00365757336840034,0.00016469563706778,-0.999993324279785,0.00365757336840034,0.000106371415313333,-0.999995172023773,0.00310079636983573,-0.000323791202390566,-0.999997437000275,-0.00228913989849389,-0.000281134591205046,-0.99999725818634,-0.00231580133549869,-0.000281134591205046,-0.99999725818634,-0.00231580133549869,-0.000323791202390566,-0.999997437000275,-0.00228913989849389,-9.09809095901437e-005,-0.99999988079071,-0.000512014259584248,-0.000164225275511853,-0.999999761581421,-0.00069037702633068,2.75041429631528e-006,-1,1.3980506992084e-006,-0.000164225275511853,-0.999999761581421,-0.00069037702633068,-9.09809095901437e-005,-0.99999988079071,-0.000512014259584248,3.05402659250831e-006,-1,1.35801678879943e-006,2.84700490738032e-007,-1,-3.69235237940302e-008,2.75041429631528e-006,-1,1.3980506992084e-006,3.05402659250831e-006,-1,1.35801678879943e-006,2.37250432633118e-007,-1,-3.07696055301676e-008
- }
- TangentsW: *896 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *778 {
- a: 5.03111696243286,0,5.4686074256897,0,5.90611553192139,0,6.34362506866455,0,6.78111267089844,0,7.2186017036438,-1.91161660723083e-007,0.65623015165329,0,1.09371721744537,0,1.53120315074921,0,1.9686906337738,0,2.40618658065796,0,2.84368014335632,0,3.28118872642517,0,3.71869206428528,0,4.1561713218689,0,4.59364032745361,0,5.0311164855957,1.5172506570816,5.46860647201538,1.5172506570816,5.90611696243286,1.5172506570816,6.34362506866455,1.5172506570816,6.78111267089844,1.5172506570816,0.218744859099388,1.51725006103516,0.65623015165329,1.51725006103516,1.09371745586395,1.51725006103516,1.53120338916779,1.51725006103516,1.96869111061096,1.51725006103516,2.4061872959137,1.51725077629089,2.84368014335632,1.5172506570816,3.28118968009949,1.5172506570816,3.71869206428528,1.5172506570816,4.15617275238037,1.5172506570816,4.59364032745361,1.5172506570816,5.0311164855957,1.01150047779083,5.46860694885254,1.01150047779083,5.90611696243286,1.01150047779083,6.34362506866455,1.01150047779083,6.78111267089844,1.01150047779083,7.21860265731812,1.01149988174438,0.65623015165329,1.01150012016296,1.09371733665466,1.01150012016296,1.53120338916779,1.01150012016296,1.96869111061096,1.01150012016296,2.40618681907654,1.01150059700012,2.84368014335632,1.01150047779083,3.28118944168091,1.01150047779083,3.71869206428528,1.01150047779083,4.15617179870605,1.01150047779083,4.59364032745361,1.01150047779083,5.03111696243286,0.505750298500061,5.4686074256897,0.505750298500061,5.9061164855957,0.505750298500061,6.34362506866455,0.505750298500061,6.78111267089844,0.505750298500061,0.218744814395905,0.505750179290771,0.65623015165329,0.505750179290771,1.09371733665466,0.505750179290771,1.5312032699585,0.505750179290771,1.96869111061096,0.505750179290771,2.40618658065796,0.505750417709351,2.84368014335632,0.505750298500061,3.28118920326233,0.505750298500061,3.71869206428528,0.505750298500061,4.1561713218689,0.505750298500061,4.59364032745361,0.505750298500061,2.06246042251587,0.25201490521431,2.06246042251587,-0.000860303640365601,
- 1.68747234344482,0.25201490521431,1.68747234344482,-0.000860303640365601,1.31246948242188,0.25201490521431,1.31246948242188,-0.000860303640365601,0.937464714050293,0.25201490521431,0.937464714050293,-0.000860303640365601,0.562479019165039,0.25201490521431,0.562479019165039,-0.000860303640365601,6.18731069564819,0.25201490521431,6.18731069564819,-0.000860303640365601,5.81232690811157,0.25201490521431,5.81232690811157,-0.000860303640365601,5.43734169006348,0.25201490521431,5.43734169006348,-0.000860303640365601,5.0623574256897,0.25201490521431,5.0623574256897,-0.000860303640365601,4.68737173080444,0.25201490521431,4.68737173080444,-0.000860303640365601,4.31237888336182,0.252015024423599,4.31237888336182,-0.000860303640365601,3.9373881816864,0.25201490521431,3.9373881816864,-0.000860303640365601,3.56238460540771,0.25201490521431,3.56238460540771,-0.000860303640365601,3.18738532066345,0.25201490521431,3.18738532066345,-0.000860303640365601,2.81240653991699,0.25201490521431,2.81240653991699,-0.000860303640365601,2.43743681907654,0.25201490521431,2.43743681907654,-0.000860303640365601,2.06246089935303,1.51639032363892,2.06246089935303,1.26351523399353,1.68747329711914,1.51639032363892,1.68747282028198,1.26351523399353,1.3124680519104,1.51639032363892,1.3124680519104,1.26351523399353,0.937464714050293,1.51639032363892,0.937464714050293,1.26351523399353,0.562479019165039,1.51639032363892,0.562479019165039,1.26351523399353,0.187496662139893,1.51639032363892,6.18731069564819,1.26351475715637,5.81232690811157,1.51638984680176,5.81232690811157,1.26351475715637,5.43734169006348,1.51638984680176,5.43734169006348,1.26351475715637,5.0623574256897,1.51638984680176,5.0623574256897,1.26351475715637,4.68737125396729,1.51638984680176,4.68737125396729,1.26351475715637,4.31237840652466,1.51639032363892,4.31237840652466,1.26351547241211,3.9373881816864,1.51639032363892,3.9373881816864,1.26351523399353,3.5623836517334,1.51639032363892,3.56238389015198,1.26351523399353,3.18738532066345,1.51639032363892,3.18738532066345,1.26351523399353,2.8124053478241,
- 1.51639032363892,2.8124053478241,1.26351523399353,2.43743681907654,1.51639032363892,2.43743681907654,1.26351523399353,2.06246089935303,1.01064014434814,1.68747282028198,1.01064014434814,1.3124680519104,1.01064014434814,0.937464714050293,1.01064014434814,0.562479019165039,1.01064014434814,6.18731069564819,1.01063966751099,5.81232690811157,1.01063966751099,5.43734169006348,1.01063966751099,5.0623574256897,1.01063966751099,4.68737125396729,1.01063966751099,4.31237888336182,1.01064014434814,3.9373881816864,1.01064014434814,3.56238389015198,1.01064014434814,3.18738532066345,1.01064014434814,2.81240630149841,1.01064014434814,2.43743681907654,1.01064014434814,2.06246042251587,0.504889965057373,1.68747234344482,0.504889965057373,1.31246852874756,0.504889965057373,0.937464714050293,0.504889965057373,0.562479019165039,0.504889965057373,6.18731069564819,0.504889965057373,5.81232690811157,0.504889965057373,5.43734169006348,0.504889965057373,5.0623574256897,0.504889965057373,4.68737125396729,0.504889965057373,4.31237888336182,0.504889965057373,3.9373881816864,0.504889965057373,3.56238412857056,0.504889965057373,3.18738532066345,0.504889965057373,2.81240653991699,0.504889965057373,2.43743681907654,0.504889965057373,2.7343065738678,1.01150047779083,2.7343065738678,0.505750298500061,2.95305871963501,1.01150047779083,2.95305871963501,0.505750298500061,4.03113603591919,1.01064014434814,4.03113603591919,0.504889965057373,3.84363603591919,1.01064014434814,3.84363603591919,0.504889965057373,0.775774478912354,-1.62766551971436,0.775774478912354,-1.79020059108734,2.31334066390991,-1.79020059108734,2.31334066390991,-1.62766551971436,1.95303630828857,-1.79020059108734,1.95303630828857,-1.62766551971436,1.53891265392303,-1.79020059108734,1.53891265392303,-1.62766551971436,1.12010836601257,-1.79020059108734,1.12010836601257,-1.62766563892365,0.775774478912354,-1.79020059108734,0.775774478912354,-1.62766563892365,0.775774478912354,-1.62766551971436,0.775774478912354,-1.79020059108734,1.12010836601257,-1.62766551971436,1.12010836601257,-1.79020059108734,
- 1.53891265392303,-1.62766563892365,1.53891265392303,-1.79020059108734,1.95303630828857,-1.62766575813293,1.95303630828857,-1.79020059108734,2.31334066390991,-1.79020059108734,2.31334066390991,-1.62766551971436,1.12010836601257,-1.62766551971436,1.12010836601257,-1.79020071029663,1.53891265392303,-1.62766551971436,1.53891265392303,-1.79020059108734,1.95303630828857,-1.62766551971436,1.95303630828857,-1.79020059108734,2.31334066390991,-1.62766551971436,2.31334066390991,-1.79020059108734,0.775774478912354,-1.62766551971436,0.775774478912354,-1.79020059108734,1.12010836601257,-1.62766551971436,1.12010836601257,-1.79020059108734,1.53891265392303,-1.62766551971436,1.53891265392303,-1.79020059108734,1.95303630828857,-1.62766551971436,1.95303630828857,-1.79020071029663,2.31334066390991,-1.62766551971436,2.31334066390991,-1.79020059108734,2.31334066390991,-1.38896083831787,2.31334066390991,-1.22642576694489,0.775774478912354,-1.22642576694489,0.775774478912354,-1.38896083831787,1.13607883453369,-1.38896083831787,1.13607883453369,-1.22642576694489,1.55020248889923,-1.38896083831787,1.55020248889923,-1.22642576694489,1.96900677680969,-1.38896083831787,1.96900677680969,-1.22642588615417,2.31334066390991,-1.38896083831787,2.31334066390991,-1.22642588615417,2.31334066390991,-1.38896083831787,2.31334066390991,-1.22642576694489,1.96900677680969,-1.22642576694489,1.96900677680969,-1.38896083831787,1.55020248889923,-1.22642588615417,1.55020248889923,-1.38896083831787,1.13607883453369,-1.22642600536346,1.13607883453369,-1.38896083831787,0.775774478912354,-1.38896083831787,0.775774478912354,-1.22642576694489,1.96900677680969,-1.22642576694489,1.96900677680969,-1.38896095752716,1.55020248889923,-1.22642576694489,1.55020248889923,-1.38896083831787,1.13607883453369,-1.22642576694489,1.13607883453369,-1.38896083831787,0.775774478912354,-1.22642576694489,0.775774478912354,-1.38896083831787,2.31334066390991,-1.38896083831787,2.31334066390991,-1.22642576694489,1.96900677680969,-1.22642576694489,1.96900677680969,-1.38896083831787,1.55020248889923,
- -1.22642576694489,1.55020248889923,-1.38896083831787,1.13607883453369,-1.22642576694489,1.13607883453369,-1.38896095752716,0.775774478912354,-1.22642576694489,0.775774478912354,-1.38896083831787,0.216861352324486,0.97518664598465,0.0690305233001709,0.975186586380005,0.0690306201577187,0.934759676456451,0.221614226698875,0.934759736061096,0.0690304785966873,0.818234860897064,0.221614047884941,0.818235039710999,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.0691818222403526,0.815117835998535,0.0689773708581924,0.934583783149719,0.722924470901489,0.816878259181976,0.72292423248291,0.936117112636566,0.681675136089325,0.934408724308014,0.68365865945816,0.818091332912445,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.382216155529022,0.934759855270386,0.382216066122055,0.991122364997864,0.38221600651741,0.761872470378876,0.382215827703476,0.672368824481964,0.382215946912766,0.777808248996735,0.382215976715088,0.818235218524933,0.013556569814682,0.633378028869629,0.013556569814682,0.460163861513138,0.013556569814682,0.785269379615784,0.013556569814682,0.293649077415466,0.980780780315399,0.458879381418228,0.980780780315399,0.290924519300461,0.980780780315399,0.633707880973816,0.980780780315399,0.790569961071014,0.144204825162888,0.459990352392197,0.144204825162888,0.633422613143921,0.0156271085143089,0.633378028869629,0.0156271085143089,0.460163861513138,0.144204825162888,0.785985350608826,0.0156271085143089,0.785269379615784,0.0156271085143089,0.293649077415466,0.144204825162888,0.293281078338623,0.980780780315399,0.458879381418228,0.79266768693924,0.459129214286804,0.79266768693924,
- 0.291454434394836,0.980780780315399,0.290924519300461,0.980780780315399,0.633707880973816,0.79266768693924,0.633643746376038,0.980780780315399,0.790569961071014,0.79266768693924,0.789539039134979,0.644424796104431,0.459326088428497,0.644424796104431,0.291872024536133,0.644424796104431,0.633593201637268,0.644424796104431,0.788726627826691,0.469265580177307,0.459558695554733,0.469265580177307,0.292365431785584,0.469265580177307,0.633533477783203,0.469265580177307,0.787766754627228,0.30919224023819,0.459771275520325,0.30919224023819,0.292816340923309,0.30919224023819,0.633478879928589,0.30919224023819,0.786889553070068,0.144204825162888,0.459990352392197,0.144204825162888,0.633422613143921,0.144204825162888,0.785985350608826,0.144204825162888,0.293281078338623,0.980780780315399,0.458879381418228,0.79266768693924,0.459129214286804,0.79266768693924,0.291454434394836,0.980780780315399,0.290924519300461,0.980780780315399,0.633707880973816,0.79266768693924,0.633643746376038,0.980780780315399,0.790569961071014,0.79266768693924,0.789539039134979,0.644424796104431,0.459326088428497,0.644424796104431,0.291872024536133,0.644424796104431,0.633593201637268,0.644424796104431,0.788726627826691,0.988378286361694,0.669025063514709,0.988378286361694,0.801093697547913,0.344228982925415,0.801093697547913,0.34422904253006,0.669025182723999,0.212579369544983,0.796614527702332,0.235933214426041,0.666618049144745,0.0957360863685608,0.754166543483734,0.176784187555313,0.642415463924408,0.0063357949256897,0.651586651802063,0.126290947198868,0.584168076515198,-0.0239047408103943,0.513935446739197,0.110537052154541,0.514419496059418,0.0130734443664551,0.370850086212158,0.128381878137589,0.444109499454498,0.0866580009460449,0.288083851337433,0.169119298458099,0.396627396345139,0.25017112493515,0.232566565275192,0.252899944782257,0.36469304561615,0.675069212913513,0.23230192065239,0.675069212913513,0.364370226860046,0.990501523017883,0.232301980257034,0.990501523017883,0.364370316267014,0.187493801116943,-0.000859707593917847,1.55020248889923,-1.22642576694489,
- 0.218744769692421,0,1.55020248889923,-1.38896083831787,6.18731069564819,1.51638984680176,1.53891265392303,-1.62766551971436,7.21860313415527,1.51724982261658,1.53891265392303,-1.79020059108734,0.187494277954102,0.252015501260757,0.18749475479126,0.504890441894531,0.187495708465576,1.01064038276672,0.187496185302734,1.26351547241211,7.21860218048096,0.505750000476837,0.218744844198227,1.01150012016296,0.290206730365753,0.00922680739313364,0.290206730365753,0.931907534599304,0.00980390515178442,0.931907534599304,0.00980390515178442,0.00922680739313364,0.594544351100922,0.00922680739313364,0.594544351100922,0.931907534599304,0.314141571521759,0.931907534599304,0.314141571521759,0.00922680739313364,0.632850050926209,0.184734374284744,0.915972948074341,0.184734374284744,0.898687064647675,0.360241949558258,0.618284225463867,0.332615584135056,0.898687303066254,0.00922680739313364,0.618284523487091,0.036853164434433,0.975630283355713,0.555713832378387,0.692507386207581,0.555713832378387,0.709793031215668,0.380206257104874,0.99019581079483,0.407832592725754,0.709793329238892,0.731221377849579,0.990196108818054,0.703595042228699
- }
- UVIndex: *896 {
- a: 48,0,1,49,49,1,2,50,50,2,3,51,51,3,4,52,52,4,5,367,53,357,6,54,54,6,7,55,55,7,8,56,56,8,9,57,57,9,10,58,58,10,11,59,161,163,59,11,12,60,60,12,13,61,61,13,14,62,62,14,15,63,48,63,15,0,16,32,33,17,17,33,34,18,18,34,35,19,19,35,36,20,20,36,37,361,21,368,38,22,22,38,39,23,23,39,40,24,24,40,41,25,25,41,42,26,26,42,160,43,27,27,43,162,44,28,28,44,45,29,29,45,46,30,30,46,47,31,31,47,32,16,33,32,48,49,34,33,49,50,35,34,50,51,36,35,51,52,37,36,52,367,38,368,53,54,39,38,54,55,40,39,55,56,41,40,56,57,42,41,57,58,42,58,161,160,44,162,163,60,45,44,60,61,46,45,61,62,47,46,62,63,32,47,63,48,64,65,95,94,64,66,67,65,66,68,69,67,68,70,71,69,70,72,73,71,72,363,355,73,74,76,77,75,76,78,79,77,78,80,81,79,80,82,83,81,82,84,85,83,84,86,87,85,86,88,89,87,88,90,91,89,90,92,93,91,92,94,95,93,96,97,127,126,98,99,97,96,100,101,99,98,102,103,101,100,104,105,103,102,106,366,105,104,108,109,107,359,110,111,109,108,112,113,111,110,114,115,113,112,116,117,115,114,118,119,117,116,120,121,119,118,122,123,121,120,124,125,123,122,126,127,125,124,127,97,128,143,97,99,129,128,99,101,130,129,101,103,131,130,103,105,132,131,105,366,365,132,107,109,134,133,109,111,135,134,111,113,136,135,113,115,137,136,115,117,138,137,117,119,139,164,138,119,121,140,166,139,121,123,141,140,123,125,142,141,125,127,143,142,143,128,144,159,128,129,145,144,129,130,146,145,130,131,147,146,131,132,148,147,132,365,364,148,133,134,150,149,134,135,151,150,135,136,152,151,136,137,153,152,137,138,154,153,138,164,165,154,166,140,156,167,140,141,157,156,141,142,158,157,142,143,159,158,159,144,64,94,144,145,66,64,145,146,68,66,146,147,70,68,147,148,72,70,148,364,363,72,149,150,76,74,150,151,78,76,151,152,80,78,152,153,82,80,153,154,84,82,154,165,155,86,84,167,156,88,86,155,156,157,90,88,157,158,92,90,158,159,94,92,377,378,379,380,383,384,385,386,381,378,377,382,369,370,371,372,387,384,383,388,373,374,375,376,171,173,172,170,174,172,173,360,176,362,175,177,178,176,177,179,182,180,181,183,184,182,183,185,186,184,185,187,189,186,187,188,169,191,190,168,192,190,191,
- 193,194,192,193,195,196,194,195,197,200,198,199,201,202,200,201,203,204,202,203,205,206,204,205,207,231,208,209,230,213,210,211,212,212,358,215,213,214,216,217,356,216,218,219,217,221,222,223,220,222,224,225,223,224,226,227,225,226,229,228,227,230,232,233,231,232,234,235,233,234,236,237,235,239,240,241,238,240,242,243,241,242,244,245,243,244,246,247,245,248,249,250,251,250,252,253,251,253,252,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,249,248,270,271,261,260,255,254,257,256,272,273,265,264,274,248,251,275,276,268,248,274,277,256,259,278,279,255,256,277,280,253,255,279,253,280,275,251,281,282,285,287,283,281,287,288,282,284,286,285,289,290,291,292,290,293,294,291,289,292,295,296,297,298,299,300,297,301,302,298,301,303,304,302,298,305,306,299,298,302,307,305,302,304,308,307,305,309,310,306,305,307,311,309,307,308,312,311,309,313,314,310,309,311,315,313,311,312,316,315,313,289,296,314,313,315,290,289,315,316,293,290,317,318,331,329,321,322,323,324,321,325,326,322,325,327,328,326,317,320,323,322,326,318,317,322,319,318,326,328,317,329,330,320,332,331,318,319,336,333,334,335,336,335,337,338,338,337,339,340,340,339,341,342,342,341,343,344,344,343,345,346,346,345,347,348,348,347,349,350,352,350,349,351,354,352,351,353
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *452 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,0,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,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,0,0,0,1,1,0,0,0,0,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,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,0,0,0,1,1,0,1,0,0,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "ByPolygon"
- ReferenceInformationType: "IndexToDirect"
- Materials: *222 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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
- }
- }
- 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: 2399509530336, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 275.38671875,0,-276.158203125,359.921875,600,-150.1865234375,231.9921875,0,-232.76318359375,303.2890625,600,-126.553466796875,359.921875,0,-150.1865234375,275.38671875,600,-276.158203125,303.2890625,0,-126.553466796875,231.9921875,600,-232.76318359375
- }
- PolygonVertexIndex: *24 {
- a: 1,4,0,-6,7,2,6,-4,1,5,7,-4,0,4,6,-3,1,3,6,-5,7,5,0,-3
- }
- Edges: *12 {
- a: 1,3,0,7,4,11,15,13,2,9,6,5
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: 0.540559768676758,-0.0804727375507355,-0.837448060512543,0.979863047599792,0.0804373323917389,-0.182751446962357,-0.977816939353943,-0.103030502796173,0.182369828224182,-0.539430260658264,0.103071071207523,0.835698068141937,0.979863047599792,-0.0804373323917389,-0.182751446962357,0.540559768676758,0.0804727375507355,-0.837448060512543,-0.539430260658264,-0.103071071207523,0.835698068141937,-0.977816939353943,0.103030502796173,0.182369828224182
- }
- 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.0726789608597755,0.996162176132202,0.0487722903490067,0.0726789608597755,0.996162176132202,-0.0487722903490067,0.0727080404758453,0.996159076690674,-0.0487918071448803,-0.0727080404758453,0.996159076690674,0.0487918071448803,0.0930537804961205,0.993699729442596,-0.0624655112624168,-0.0930537804961205,0.993699729442596,0.0624655112624168,-0.0119464006274939,0.993316888809204,0.114799812436104,0.0119464006274939,0.993316888809204,-0.114799812436104,9.68575619708645e-008,-0.91526597738266,-0.402850240468979,-7.45058130746656e-008,-0.995414853096008,-0.0956522673368454,-8.34465026855469e-007,0.870659291744232,-0.491886645555496,-8.56816839700514e-008,0.992479979991913,-0.122407868504524,6.33299421792799e-008,-0.995414853096008,0.0956522598862648,-1.34110450744629e-007,-0.915266036987305,0.402850031852722,7.07805227762037e-008,0.992479979991913,0.122407868504524,8.04662704467773e-007,0.870659351348877,0.491886496543884,-0.138497576117516,0.933096647262573,-0.331887125968933,0.0119464006274939,0.993316888809204,-0.114799812436104,-0.0119464006274939,0.993316888809204,0.114799812436104,0.138497576117516,0.933096647262573,0.331887125968933,0.127405151724815,0.983634173870087,0.127403736114502,0.253103166818619,0.933744668960571,0.253100365400314,-0.253103166818619,0.933744668960571,-0.253100365400314,-0.127405151724815,0.983634173870087,-0.127403736114502
- }
- 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.185973271727562,0.0345079749822617,-0.981948673725128,-0.185973271727562,-0.0345079749822617,-0.981948673725128,-0.838157892227173,0.0345143228769302,-0.544334530830383,-0.838157892227173,-0.0345143228769302,-0.544334530830383,0.187656715512276,0.0441096276044846,0.981243848800659,0.187656715512276,-0.0441096276044846,0.981243848800659,0.84194552898407,-0.0519429035484791,0.537056446075439,0.84194552898407,0.0519429035484791,0.537056446075439,0.199671119451523,-0.394737988710403,0.896835207939148,0.841305613517761,-0.0517058186233044,0.538081169128418,0.209461286664009,0.480975240468979,0.851345300674438,0.84203028678894,0.0660305768251419,0.535373687744141,0.841305613517761,0.0517058074474335,0.538081169128418,0.199671149253845,0.394737839698792,0.896835386753082,0.84203028678894,-0.0660305619239807,0.535373687744141,0.209461286664009,-0.480975091457367,0.851345360279083,-0.143828019499779,-0.350514560937881,-0.925447583198547,0.84194552898407,0.0519429035484791,0.537056446075439,0.84194552898407,-0.0519429035484791,0.537056446075439,-0.143828019499779,0.350514560937881,-0.925447583198547,0.166258752346039,-0.147812396287918,0.974940896034241,-0.802330374717712,0.348776608705521,-0.484376788139343,-0.802330374717712,-0.348776608705521,-0.484376788139343,0.166258752346039,0.147812396287918,0.974940896034241
- }
- 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: *44 {
- a: 0.00959655176848173,0.990196049213409,0.00959655176848173,0.00980386231094599,0.215432330965996,0.00980386231094599,0.215432330965996,0.990196049213409,0.23879012465477,0.990196049213409,0.23879012465477,0.00980386231094599,0.355288296937943,0.00980386231094599,0.355288296937943,0.990196049213409,0.772254645824432,0.0484199374914169,0.634124636650085,0.254255712032318,0.563217580318451,0.183349058032036,0.679715752601624,0.00980386231094599,0.831113576889038,0.273798108100891,0.969243586063385,0.479633897542953,0.876704692840576,0.518249988555908,0.760206520557404,0.344704777002335,0.447827160358429,0.990196049213409,0.447827160358429,0.00980386231094599,0.54061359167099,0.990196049213409,0.469706922769547,0.990196049213409,0.469706922769547,0.00980386231094599,0.54061359167099,0.00980386231094599
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,7,6,17,18,19,20,21
- }
- }
- 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: 2399509523680, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 149.05078125,0,-360.506103515625,274.88671875,600,-276.65625,125.56640625,0,-303.80810546875,231.62890625,600,-233.1220703125,274.88671875,0,-276.65625,149.05078125,600,-360.506103515625,231.62890625,0,-233.1220703125,125.56640625,600,-303.80810546875
- }
- PolygonVertexIndex: *24 {
- a: 1,4,0,-6,7,2,6,-4,1,5,7,-4,0,4,6,-3,1,3,6,-5,7,5,0,-3
- }
- Edges: *12 {
- a: 1,3,0,7,4,11,15,13,2,9,6,5
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: 0.17832313477993,-0.0804258584976196,-0.980679631233215,0.836390256881714,0.080442950129509,-0.542199432849884,-0.834646821022034,-0.102998659014702,0.541069328784943,-0.177951544523239,0.102978460490704,0.978636145591736,0.836390256881714,-0.080442950129509,-0.542199432849884,0.17832313477993,0.0804258584976196,-0.980679631233215,-0.177951544523239,-0.102978460490704,0.978636145591736,-0.834646821022034,0.102998659014702,0.541069328784943
- }
- 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.153474673628807,0.98397558927536,-0.0907614901661873,0.153474673628807,0.983975529670715,0.0907614827156067,0.0485540255904198,0.996159136295319,-0.0728664547204971,-0.0485540255904198,0.996159136295319,0.0728664547204971,0.114592865109444,0.993336200714111,-0.0123232398182154,-0.114592865109444,0.993336200714111,0.0123232398182154,-0.0621547624468803,0.993699729442596,0.0932615548372269,0.0621547624468803,0.993699729442596,-0.0932615548372269,-0.0957367792725563,0.995406687259674,2.57045030593872e-007,-0.411134511232376,0.91157466173172,-6.33299350738525e-007,-0.122475296258926,-0.992471575737,-6.96629285812378e-007,-0.500871419906616,-0.865521728992462,-7.67409801483154e-007,-0.411146879196167,-0.911569118499756,-3.33040952682495e-006,-0.095736987888813,-0.995406746864319,-4.84287809854322e-008,-0.500853717327118,0.865531980991364,3.53157520294189e-006,-0.122474893927574,0.992471635341644,-6.33299279684252e-008,-0.153474673628807,0.98397558927536,-0.0907614901661873,-0.127507537603378,0.983712077140808,-0.126698076725006,0.127507537603378,0.983712077140808,0.126698076725006,0.153474673628807,0.983975529670715,0.0907614827156067,0.114592865109444,0.993336200714111,-0.0123232398182154,0.329699277877808,0.934157013893127,0.136561810970306,-0.329699277877808,0.934157013893127,-0.136561810970306,-0.114592865109444,0.993336200714111,0.0123232398182154
- }
- 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.526209771633148,-0.15912589430809,-0.835333585739136,-0.526209771633148,0.15912589430809,-0.835333645343781,-0.982773303985596,0.0346221700310707,-0.181543216109276,-0.982773303985596,-0.0346221700310707,-0.181543216109276,0.538732945919037,-0.0517171248793602,0.840887665748596,0.538732945919037,0.0517171248793602,0.840887665748596,0.982074379920959,0.0442308597266674,0.183230981230736,0.982074379920959,-0.0442308597266674,0.183230981230736,-0.539708971977234,-0.0519082136452198,-0.840249836444855,-0.893962681293488,-0.403191357851028,-0.195620715618134,-0.536995887756348,0.0662682130932808,-0.840977966785431,-0.847030758857727,0.490171015262604,-0.205599784851074,0.893957018852234,-0.403203964233398,0.195620715618134,0.539708912372589,-0.0519085749983788,0.840249836444855,0.847041249275208,0.490152925252914,0.205599784851074,0.536996006965637,0.0662674680352211,0.84097808599472,-0.526209771633148,-0.15912589430809,-0.835333585739136,0.975743472576141,0.147329613566399,0.161922588944435,0.975743472576141,-0.147329613566399,0.161922588944435,-0.526209771633148,0.15912589430809,-0.835333645343781,0.538732945919037,-0.0517171248793602,0.840887665748596,-0.927091836929321,0.347681492567062,-0.14006544649601,-0.927091836929321,-0.347681492567062,-0.14006544649601,0.538732945919037,0.0517171248793602,0.840887665748596
- }
- 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: *40 {
- a: 0.0800928771495819,0.990196049213409,0.0800928771495819,0.00980386231094599,0.217102289199829,0.00980386231094599,0.217102289199829,0.990196049213409,0.330960839986801,0.990196049213409,0.330960839986801,0.00980386231094599,0.446460396051407,0.00980386231094599,0.446460396051407,0.990196049213409,0.538629770278931,0.00980386231094599,0.675639569759369,0.215418145060539,0.582994878292084,0.253790348768234,0.467492431402206,0.0804868787527084,0.696673929691315,0.215418145060539,0.833683729171753,0.00980386231094599,0.9048210978508,0.0804868787527084,0.7893186211586,0.253790348768234,0.00895867496728897,0.990196049213409,0.00895867496728897,0.00980386231094599,0.238316774368286,0.990196049213409,0.238316774368286,0.00980386231094599
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,16,17,1,4,18,19,5
- }
- }
- 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: 2399509543136, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: -0.1953125,0,-389.999755859375,148.2265625,600,-360.7333984375,-0.1953125,0,-328.630126953125,124.90234375,600,-303.96923828125,148.2265625,0,-360.7333984375,-0.1953125,600,-389.999755859375,124.90234375,0,-303.96923828125,-0.1953125,600,-328.630126953125
- }
- PolygonVertexIndex: *24 {
- a: 1,4,0,-6,7,2,6,-4,1,5,7,-4,0,4,6,-3,1,3,6,-5,7,5,0,-3
- }
- Edges: *12 {
- a: 1,3,0,7,4,11,15,13,2,9,6,5
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.210723534226418,-0.0804328918457031,-0.974231004714966,0.564809203147888,0.0804198682308197,-0.821293532848358,-0.563631176948547,-0.102993614971638,0.819580435752869,0.21028396487236,0.103007793426514,0.972198605537415,0.564809203147888,-0.0804198682308197,-0.821293532848358,-0.210723534226418,0.0804328918457031,-0.974231004714966,0.21028396487236,-0.103007793426514,0.972198605537415,-0.563631176948547,0.102993614971638,0.819580435752869
- }
- 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.0169370491057634,-0.996160268783569,-0.085894837975502,-0.0169370491057634,-0.996160268783569,0.085894837975502,-0.0169395003467798,-0.996159195899963,0.0859072580933571,0.0169395003467798,-0.996159195899963,-0.0859072580933571,0.021678002551198,0.993698954582214,-0.109966322779655,-0.021678002551198,0.993698954582214,0.109966322779655,-0.0216797087341547,0.993697941303253,0.10997498780489,0.0216797087341547,0.993697941303253,-0.10997498780489,-0.140963211655617,0.990014910697937,-5.43892440418858e-007,-0.3566013276577,-0.934256732463837,-6.92904052357335e-007,-0.179755821824074,-0.983711302280426,7.45058148510225e-009,-0.439904123544693,0.898044764995575,-8.56816654959403e-007,-0.356604099273682,0.934255599975586,0,-0.140962883830071,-0.990014910697937,-3.20374965667725e-007,-0.439899921417236,-0.898046791553497,-1.98185421140806e-006,-0.17975640296936,0.983711183071136,-4.09781932830811e-007,-0.330401539802551,0.934025645256042,-0.135760977864265,-0.166183516383171,0.983727753162384,-0.0682843029499054,0.166183516383171,0.983727753162384,0.0682843029499054,0.330401539802551,0.934025645256042,0.135760977864265,0.179755821824074,0.983711302280426,-7.45058148510225e-009,0.356604099273682,0.934255599975586,0,-0.356604099273682,0.934255599975586,0,-0.179755821824074,0.983711302280426,7.45058148510225e-009
- }
- 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.825047731399536,-0.0346039012074471,0.564002513885498,0.825047731399536,0.0346039012074471,0.564002513885498,0.977398931980133,-0.0346056632697582,-0.208551645278931,0.977398931980133,0.0346056632697582,-0.208551645278931,0.825742065906525,0.0442135781049728,0.562312364578247,0.825742065906525,-0.0442135781049728,0.562312364578247,0.977399945259094,0.0442029573023319,-0.206725582480431,0.977399945259094,-0.0442029573023319,-0.206725582480431,-0.813092708587646,-0.11577246338129,-0.570505917072296,0.910181820392609,-0.347411900758743,-0.22555273771286,-0.806230485439301,0.147324338555336,-0.572964191436768,0.873078107833862,0.427674055099487,-0.234157666563988,-0.910180747509003,-0.347414761781693,0.22555273771286,0.813092827796936,-0.11577208340168,0.570505976676941,-0.873080193996429,0.427669733762741,0.234157666563988,0.806230425834656,0.147325053811073,0.572964251041412,-0.75619101524353,-0.348035663366318,-0.554117619991302,0.963412642478943,0.14720430970192,-0.223980277776718,0.963412642478943,-0.14720430970192,-0.223980277776718,-0.75619101524353,0.348035663366318,-0.554117619991302,0.806230485439301,-0.147324338555336,0.572964191436768,-0.910180747509003,0.347414761781693,0.22555273771286,-0.910180747509003,-0.347414761781693,0.22555273771286,0.806230485439301,0.147324338555336,0.572964191436768
- }
- 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.246304228901863,0.00956071261316538,0.246304228901863,0.965637862682343,0.00980119127780199,0.965637862682343,0.00980119127780199,0.00956071261316538,0.2692990899086,0.965637862682343,0.2692990899086,0.00956071261316538,0.468636512756348,0.00956071261316538,0.468636512756348,0.965637862682343,0.815962791442871,0.00956071261316538,0.862595856189728,0.246063753962517,0.764808475971222,0.246063753962517,0.725512683391571,0.0467263422906399,0.853104174137115,0.502531051635742,0.899743258953094,0.266027987003326,0.990193367004395,0.303193628787994,0.950897574424744,0.502531051635742,0.58200865983963,0.965637862682343,0.491557031869888,0.965637862682343,0.491557031869888,0.00956071261316538,0.58200865983963,0.00956071261316538,0.702426016330719,0.965637862682343,0.604635834693909,0.965637862682343,0.604635834693909,0.00956071261316538,0.702426016330719,0.00956071261316538
- }
- 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: 2399509540576, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: -149.24609375,0,-360.31298828125,-0.80859375,600,-389.9990234375,-125.7578125,0,-303.61474609375,-0.6796875,600,-328.62939453125,-0.80859375,0,-389.9990234375,-149.24609375,600,-360.31298828125,-0.6796875,0,-328.62939453125,-125.7578125,600,-303.61474609375
- }
- PolygonVertexIndex: *24 {
- a: 1,4,0,-6,7,2,6,-4,1,5,7,-4,0,4,6,-3,1,3,6,-5,7,5,0,-3
- }
- Edges: *12 {
- a: 1,3,0,7,4,11,15,13,2,9,6,5
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.56683886051178,-0.0804050713777542,-0.819895505905151,0.207896545529366,0.0804071575403214,-0.97484028339386,-0.207461982965469,-0.103026896715164,0.972802698612213,0.565654039382935,0.103025659918785,0.818181693553925,0.207896545529366,-0.0804071575403214,-0.97484028339386,-0.56683886051178,0.0804050713777542,-0.819895505905151,0.565654039382935,-0.103025659918785,0.818181693553925,-0.207461982965469,0.103026896715164,0.972802698612213
- }
- 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.0171644277870655,-0.996162295341492,-0.0858263671398163,0.0171644277870655,-0.996162295341492,0.0858263671398163,0.0171640794724226,-0.996162414550781,0.0858246386051178,-0.0171640794724226,-0.996162414550781,-0.0858246386051178,-0.0219847857952118,0.993696391582489,-0.109928213059902,0.0219847857952118,0.993696391582489,0.109928213059902,0.0219846144318581,0.993696451187134,0.109927356243134,-0.0219846144318581,0.993696451187134,-0.109927356243134,-0.360739171504974,0.932666778564453,-3.42726752933231e-006,-0.14043627679348,-0.990089774131775,-4.2691831367847e-006,-0.444865971803665,-0.895597219467163,-2.279132604599e-005,-0.179179981350899,0.983816385269165,-5.44637441635132e-006,-0.140433415770531,0.990090191364288,-6.28829093329841e-006,-0.360765039920807,-0.932656705379486,-9.77516174316406e-006,-0.179185226559639,-0.983815371990204,-1.69128179550171e-006,-0.44482558965683,0.895617246627808,-1.20550375868334e-005,-0.357658803462982,0.933852076530457,0.00075126439332962,-0.179716035723686,0.983718514442444,0.000377491058316082,0.179716035723686,0.983718514442444,-0.000377491058316082,0.357658803462982,0.933852076530457,-0.00075126439332962,0.166020974516869,0.98372083902359,-0.0687772259116173,0.330501288175583,0.933821737766266,-0.136916175484657,-0.330501288175583,0.933821737766266,0.136916175484657,-0.166020974516869,0.98372083902359,0.0687772259116173
- }
- 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.978000223636627,-0.0345755778253078,0.205718502402306,0.978000223636627,0.0345755778253078,0.205718502402306,0.823649883270264,-0.0345759876072407,-0.566043615341187,0.823649883270264,0.0345759876072407,-0.566043615341187,0.977995991706848,0.0441927835345268,0.203889220952988,0.977995991706848,-0.0441927835345268,0.203889220952988,0.824349522590637,0.0441934466362,-0.564353406429291,0.824349522590637,-0.0441934466362,-0.564353406429291,-0.90920078754425,-0.351663768291473,-0.222904801368713,0.811770439147949,-0.115140646696091,-0.572513222694397,-0.87123703956604,0.432771533727646,-0.231635078787804,0.804941177368164,0.14659871160984,-0.574959754943848,-0.811770915985107,-0.115137152373791,0.572513222694397,0.909190535545349,-0.351690322160721,0.222904801368713,-0.804939925670624,0.146605119109154,0.574959695339203,0.871257781982422,0.432730078697205,0.231635108590126,-0.910417020320892,-0.348504036664963,-0.222903564572334,0.804821670055389,0.147253915667534,-0.574959635734558,0.804821670055389,-0.147253915667534,-0.574959635734558,-0.910417020320892,0.348504036664963,-0.222903564572334,0.964052200317383,-0.147237002849579,0.221189141273499,-0.754627227783203,0.348585873842239,0.555900752544403,-0.754627227783203,-0.348585873842239,0.555900752544403,0.964052200317383,0.147237002849579,0.221189141273499
- }
- 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.246294885873795,0.00955893658101559,0.246294885873795,0.965458512306213,0.00980543810874224,0.965458512306213,0.00980543810874224,0.00955893658101559,0.269303679466248,0.965458512306213,0.269303679466248,0.00955893658101559,0.468573749065399,0.00955893658101559,0.468573749065399,0.965458512306213,0.863139450550079,0.00976523943245411,0.815847635269165,0.246254697442055,0.725517451763153,0.208828985691071,0.76537024974823,0.00955893658101559,0.899867415428162,0.502914786338806,0.852575540542603,0.266425311565399,0.950344741344452,0.266219019889832,0.990197539329529,0.465489059686661,0.589331269264221,0.965458512306213,0.491559028625488,0.965458512306213,0.491559028625488,0.00955893658101559,0.589331269264221,0.00955893658101559,0.702765822410584,0.965458512306213,0.612436354160309,0.965458512306213,0.612436354160309,0.00955893658101559,0.702765822410584,0.00955893658101559
- }
- 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: 2399509540064, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: -275.7734375,0,-275.771484375,-149.84375,600,-360.0146484375,-232.375,0,-232.376708984375,-126.35546875,600,-303.31640625,-149.84375,0,-360.0146484375,-275.7734375,600,-275.771484375,-126.35546875,0,-303.31640625,-232.375,600,-232.376708984375
- }
- PolygonVertexIndex: *24 {
- a: 1,4,0,-6,7,2,6,-4,1,5,7,-4,0,4,6,-3,1,3,6,-5,7,5,0,-3
- }
- Edges: *12 {
- a: 1,3,0,7,4,11,15,13,2,9,6,5
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.837028682231903,-0.080353856086731,-0.541226506233215,-0.180707439780235,0.0803273022174835,-0.980251133441925,0.180327907204628,-0.103063084185123,0.978192150592804,0.835269749164581,0.103092357516289,0.540089190006256,-0.180707439780235,-0.0803273022174835,-0.980251133441925,-0.837028682231903,0.080353856086731,-0.541226506233215,0.835269749164581,-0.103092357516289,0.540089190006256,0.180327907204628,0.103063084185123,0.978192150592804
- }
- 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.0486139953136444,0.99617063999176,0.0726699382066727,-0.0486139953136444,0.99617063999176,-0.0726699382066727,-0.154084593057632,0.983742296695709,0.0922455415129662,0.154084578156471,0.983742296695709,-0.092245526611805,-0.0623618513345718,0.993692517280579,-0.0931999236345291,0.0623618513345718,0.993692517280579,0.0931999236345291,0.114639341831207,0.993330955505371,0.0123128797858953,-0.114639341831207,0.993330955505371,-0.0123128797858953,-0.406102389097214,-0.91382759809494,-1.99750065803528e-005,-0.0955579578876495,-0.995423913002014,-2.58535169450624e-006,-0.496196180582047,0.868210434913635,-2.48104333877563e-006,-0.122492432594299,0.992469429969788,-3.31550791088375e-006,-0.0955585241317749,0.995423913002014,-1.70245789377077e-006,-0.406137615442276,0.913811922073364,-1.21966004371643e-005,-0.122491255402565,-0.992469668388367,-5.17070338901249e-006,-0.49614542722702,-0.868239462375641,-1.49011611938477e-005,-0.33252277970314,0.932980537414551,0.137753620743752,-0.114639341831207,0.993330955505371,-0.0123128797858953,0.114639341831207,0.993330955505371,0.0123128797858953,0.33252277970314,0.932980537414551,-0.137753620743752,0.127057924866676,0.983722448348999,-0.127068653702736,0.154084578156471,0.983742296695709,-0.092245526611805,-0.154084593057632,0.983742296695709,0.0922455415129662,-0.127057924866676,0.983722448348999,0.127068653702736
- }
- 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.982334733009338,0.0345219224691391,0.183920487761498,-0.982334733009338,-0.0345219224691391,0.183920487761498,-0.525014877319336,-0.160606816411018,0.835801959037781,-0.525014877319336,0.160606786608696,0.835801839828491,0.981627643108368,0.0441953279078007,-0.185617670416832,0.981627643108368,-0.0441953279078007,-0.185617670416832,0.537756621837616,-0.0516308881342411,-0.841517686843872,0.537756621837616,0.0516308881342411,-0.841517686843872,0.895782113075256,-0.398078739643097,-0.197756856679916,0.538749933242798,-0.0517163276672363,-0.840876877307892,0.849276900291443,0.485374748706818,-0.207701906561852,0.536022365093231,0.0661540701985359,-0.841607928276062,-0.538749873638153,-0.0517173744738102,0.840876877307892,-0.895766139030457,-0.398114651441574,0.197756856679916,-0.53602260351181,0.0661518797278404,0.841607809066772,-0.849306583404541,0.485322862863541,0.207701906561852,-0.92562061548233,-0.350848913192749,0.141885593533516,0.537756621837616,0.0516308881342411,-0.841517686843872,0.537756621837616,-0.0516308881342411,-0.841517686843872,-0.92562061548233,0.350848913192749,0.141885593533516,0.97536563873291,-0.147201091051102,-0.164297670125961,-0.525014877319336,0.160606786608696,0.835801839828491,-0.525014877319336,-0.160606816411018,0.835801959037781,0.97536563873291,0.147201091051102,-0.164297670125961
- }
- 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: *40 {
- a: 0.00896450877189636,0.990196049213409,0.00896450877189636,0.00980386231094599,0.146616280078888,0.00980386231094599,0.146616280078888,0.990196049213409,0.238385215401649,0.990196049213409,0.238385215401649,0.00980386231094599,0.354299753904343,0.00980386231094599,0.354299753904343,0.990196049213409,0.676180958747864,0.0481885112822056,0.538530170917511,0.253952145576477,0.467623144388199,0.183038875460625,0.58354252576828,0.00980386231094599,0.834517657756805,0.253952145576477,0.696866869926453,0.0481885112822056,0.789505302906036,0.00980386231094599,0.90542471408844,0.183038875460625,0.446943670511246,0.990196049213409,0.446943670511246,0.00980386231094599,0.217522948980331,0.990196049213409,0.217522948980331,0.00980386231094599
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,7,6,17,18,3,2,19
- }
- }
- 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: 2399509523168, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: -360.3125,0,-149.24658203125,-276.22265625,600,-275.32421875,-303.61328125,0,-125.761474609375,-232.82421875,600,-231.92919921875,-276.22265625,0,-275.32421875,-360.3125,600,-149.24658203125,-232.82421875,0,-231.92919921875,-303.61328125,600,-125.761474609375
- }
- PolygonVertexIndex: *24 {
- a: 1,4,0,-6,7,2,6,-4,1,5,7,-4,0,4,6,-3,1,3,6,-5,7,5,0,-3
- }
- Edges: *12 {
- a: 1,3,0,7,4,11,15,13,2,9,6,5
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.980458855628967,-0.0803666114807129,-0.179559275507927,-0.542375028133392,0.080323226749897,-0.83628785610199,0.5412358045578,-0.10305904597044,0.834531426429749,0.978398442268372,0.103103838860989,0.179181978106499,-0.542375028133392,-0.080323226749897,-0.83628785610199,-0.980458855628967,0.0803666114807129,-0.179559275507927,0.978398442268372,-0.103103838860989,0.179181978106499,0.5412358045578,0.10305904597044,0.834531426429749
- }
- 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.0727314203977585,0.996171236038208,0.0485095903277397,-0.0727314203977585,0.996171236038208,-0.0485095903277397,-0.0727660432457924,0.996167540550232,-0.0485326796770096,0.0727660432457924,0.996167540550232,0.0485326796770096,-0.0123055353760719,0.993325352668762,-0.114688269793987,0.0123055279254913,0.993325352668762,0.114688269793987,0.093319945037365,0.993690013885498,0.0622225925326347,-0.093319945037365,0.993690013885498,-0.0622225925326347,9.68575619708645e-008,-0.995419144630432,-0.0956074371933937,-7.45058130746656e-008,-0.912747502326965,-0.408524394035339,-1.7508864402771e-007,0.992460906505585,-0.122562170028687,-9.68575335491551e-008,0.866751372814178,-0.498740434646606,9.68575477600098e-008,-0.912747442722321,0.40852427482605,-8.94069813739407e-008,-0.995419144630432,0.0956074297428131,1.04308128356934e-007,0.866751492023468,0.498740434646606,1.67638063430786e-007,0.992460906505585,0.122562170028687,-0.254861950874329,0.932781100273132,0.254882037639618,-0.12691330909729,0.983759880065918,0.126923307776451,0.12691330909729,0.983759880065918,-0.126923307776451,0.254861950874329,0.932781100273132,-0.254882037639618,-0.0123055353760719,0.993325352668762,-0.114688269793987,0.137170493602753,0.933548986911774,-0.331165581941605,-0.137170493602753,0.933548986911774,0.331165581941605,0.0123055279254913,0.993325352668762,0.114688269793987
- }
- 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.836982309818268,0.0345140136778355,0.546140432357788,-0.836982309818268,-0.0345140136778355,0.546140432357788,-0.182771578431129,0.0345184728503227,0.982549250125885,-0.182771578431129,-0.0345184728503227,0.982549250125885,0.840780794620514,-0.0518040433526039,-0.538891434669495,0.840780794620514,0.0518040433526039,-0.53889137506485,0.184466674923897,0.0441572368144989,-0.981846332550049,0.184466674923897,-0.0441572368144989,-0.981846332550049,0.840136528015137,0.0518551543354988,-0.53989040851593,0.196724519133568,0.400541305541992,-0.894911229610443,0.84087085723877,-0.0663348883390427,-0.537155389785767,0.206727832555771,-0.487966895103455,-0.848028302192688,0.196724519133568,-0.400541245937347,-0.894911289215088,0.840136528015137,-0.0518551468849182,-0.53989040851593,0.206727832555771,0.48796683549881,-0.848028302192688,0.84087085723877,0.0663348957896233,-0.537155389785767,0.800546884536743,0.351379603147507,-0.485445439815521,-0.163185894489288,-0.146922171115875,0.975594401359558,-0.163185894489288,0.146922171115875,0.975594401359558,0.800546884536743,-0.351379603147507,-0.485445439815521,0.840780794620514,-0.0518040433526039,-0.538891434669495,-0.141012266278267,0.349324434995651,0.926330387592316,-0.141012266278267,-0.349324434995651,0.926330387592316,0.840780794620514,0.0518040433526039,-0.53889137506485
- }
- 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: *40 {
- a: 0.00893942173570395,0.990196049213409,0.00893942173570395,0.00980386231094599,0.214948296546936,0.00980386231094599,0.214948296546936,0.990196049213409,0.329051315784454,0.990196049213409,0.329051315784454,0.00980386231094599,0.444721788167953,0.00980386231094599,0.444721788167953,0.990196049213409,0.602890431880951,0.254187256097794,0.465488582849503,0.0481784008443356,0.558133244514465,0.00980386231094599,0.673803746700287,0.183280602097511,0.694570541381836,0.215812727808952,0.831972360610962,0.00980386231094599,0.902885675430298,0.0807105302810669,0.787215173244476,0.254187256097794,0.0798460841178894,0.990196049213409,0.0798460841178894,0.00980386231094599,0.23640663921833,0.990196049213409,0.23640663921833,0.00980386231094599
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,16,17,1,4,18,19,5
- }
- }
- 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: 2399509541600, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: -360.4609375,600,-148.64990234375,-390,600,-0.000244140625,-303.76171875,600,-125.164794921875,-328.6328125,600,-0.000244140625,-360.4609375,0,-148.64990234375,-390,0,-0.000244140625,-303.76171875,0,-125.164794921875,-328.6328125,0,-0.000244140625
- }
- PolygonVertexIndex: *24 {
- a: 0,4,5,-2,3,7,6,-3,3,2,0,-2,6,7,5,-5,0,2,6,-5,3,1,5,-8
- }
- Edges: *12 {
- a: 1,3,0,7,4,11,9,15,13,2,6,5
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.820803463459015,0.0803369283676147,-0.565532982349396,-0.974675238132477,0.0803471654653549,0.208692640066147,0.972627460956573,0.103083379566669,-0.208254158496857,0.819078922271729,0.103075444698334,0.564344823360443,-0.820803463459015,-0.0803369283676147,-0.565532982349396,-0.974675238132477,-0.0803471654653549,0.208692640066147,0.972627460956573,-0.103083379566669,-0.208254158496857,0.819078922271729,-0.103075444698334,0.564344823360443
- }
- 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.0857593640685081,0.996170163154602,0.0170417539775372,-0.0857593640685081,0.996170163154602,-0.0170417539775372,-0.0857683047652245,0.996169328689575,-0.0170435309410095,0.0857683047652245,0.996169328689575,0.0170435309410095,-0.109990626573563,0.993692338466644,-0.0218559261411428,0.109990626573563,0.993692338466644,0.0218559261411428,0.109995767474175,0.993691742420197,0.0218569505959749,-0.109995767474175,0.993691742420197,-0.0218569505959749,0,0.983726263046265,-0.179673880338669,-3.20374937246015e-007,-0.896216034889221,-0.44361799955368,-2.01165704538653e-007,-0.990060448646545,-0.140642985701561,-2.68220901489258e-007,0.933224201202393,-0.35929474234581,8.49366188049316e-007,-0.896215081214905,0.443619966506958,1.63912787343179e-007,0.983726322650909,0.17967364192009,0,0.933224618434906,0.359293669462204,1.34110464955484e-007,-0.990060448646545,0.140643075108528,0.137655690312386,-0.933061122894287,-0.332336992025375,0.0687315613031387,-0.983738362789154,-0.165936037898064,-0.0687315613031387,-0.983738362789154,0.165936037898064,-0.137655690312386,-0.933061122894287,0.332336992025375,0,0.983726263046265,-0.179673880338669,0,0.933224618434906,-0.359293669462204,0,0.933224618434906,0.359293669462204,0,0.983726263046265,0.179673880338669
- }
- 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.564736127853394,0.0345118120312691,0.824549615383148,-0.564736127853394,-0.0345118120312691,0.824549615383148,0.206523865461349,0.0345111265778542,0.977832853794098,0.206523865461349,-0.0345111265778542,0.977832853794098,0.563037931919098,0.0441709086298943,-0.825249791145325,0.563037931919098,-0.0441709086298943,-0.825249791145325,-0.204687386751175,0.0441657453775406,-0.977830469608307,-0.204687386751175,-0.0441657453775406,-0.977830469608307,0.573680937290192,-0.147167086601257,-0.805749475955963,0.232369720935822,-0.431475162506104,0.871684432029724,0.571210741996765,0.115440122783184,-0.812644958496094,0.223624870181084,0.3501957654953,0.909590482711792,0.232369691133499,0.431477129459381,0.871683299541473,0.573680877685547,0.147166788578033,-0.805749416351318,0.223624870181084,-0.350194662809372,0.909590899944305,0.571210741996765,-0.115440241992474,-0.812644958496094,0.554376184940338,0.350632190704346,-0.754800856113434,0.22197262942791,-0.147080332040787,0.963896036148071,0.22197262942791,0.147080332040787,0.963896036148071,0.554376184940338,-0.350632190704346,-0.754800856113434,0.573680937290192,-0.147167086601257,-0.805749475955963,0.223624870181084,0.350194662809372,0.909590899944305,0.223624870181084,-0.350194662809372,0.909590899944305,0.573680937290192,0.147167086601257,-0.805749475955963
- }
- 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.00980384275317192,0.965264081954956,0.00980384275317192,0.00955701246857643,0.246579900383949,0.00955701246857643,0.246579900383949,0.965264081954956,0.269299119710922,0.965264081954956,0.269299119710922,0.00955701246857643,0.468666881322861,0.00955701246857643,0.468666881322861,0.965264081954956,0.823260426521301,0.00955701246857643,0.862874627113342,0.208924755454063,0.772562682628632,0.246333062648773,0.725510895252228,0.00955701246857643,0.990198373794556,0.303705483675003,0.95058411359787,0.503073215484619,0.852834582328796,0.503073215484619,0.8998863697052,0.266297161579132,0.491556346416473,0.00955701246857643,0.581868350505829,0.00955701246857643,0.581868350505829,0.965264081954956,0.491556346416473,0.965264081954956,0.702385425567627,0.965264081954956,0.604635894298553,0.965264081954956,0.604635894298553,0.00955701246857643,0.702385425567627,0.00955701246857643
- }
- 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: 2399509521632, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: -390,0,0.447265625,-360.3125,0,149.24609375,-328.6328125,0,0.447265625,-303.61328125,0,125.76123046875,-390,600,0.447265625,-360.3125,600,149.24609375,-328.6328125,600,0.447265625,-303.61328125,600,125.76123046875
- }
- PolygonVertexIndex: *24 {
- a: 4,0,1,-6,7,3,2,-7,4,5,7,-7,1,0,2,-4,4,6,2,-1,7,5,1,-4
- }
- Edges: *12 {
- a: 1,0,5,7,4,13,15,2,11,3,9,6
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.974916934967041,-0.0803424343466759,-0.207562550902367,-0.820661842823029,-0.0803731605410576,0.565733373165131,0.81893652677536,-0.103117078542709,-0.564543962478638,0.9728684425354,-0.10308151692152,0.207126423716545,-0.974916934967041,0.0803424343466759,-0.207562550902367,-0.820661842823029,0.0803731605410576,0.565733373165131,0.81893652677536,0.103117078542709,-0.564543962478638,0.9728684425354,0.10308151692152,0.207126423716545
- }
- 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.0857357978820801,0.996171116828918,-0.0171055234968662,-0.0857357978820801,0.996171116828918,0.0171055234968662,-0.0857657343149185,0.996168494224548,0.0171114914119244,0.0857657343149185,0.996168494224548,-0.0171114914119244,-0.109962217509747,0.993693351745605,0.0219544805586338,0.109962217509747,0.993693351745605,-0.0219544805586338,0.109983846545219,0.993690848350525,-0.0219588056206703,-0.109983846545219,0.993690848350525,0.0219588056206703,0,-0.93257474899292,-0.360977113246918,2.75671510507891e-007,0.990058541297913,-0.14065620303154,1.76578737409727e-006,0.895255148410797,-0.445553809404373,3.57627868652344e-007,-0.9837247133255,-0.17968225479126,-4.91738262553554e-007,0.990058541297913,0.140655890107155,-6.25848713298183e-007,-0.932573735713959,0.360979676246643,7.45058148510225e-009,-0.9837247133255,0.179682776331902,-7.7486026839324e-007,0.895256996154785,0.445550084114075,0,-0.93257474899292,-0.360977113246918,-7.45058148510225e-009,-0.9837247133255,-0.179682776331902,7.45058148510225e-009,-0.9837247133255,0.179682776331902,0,-0.93257474899292,0.360977113246918,-0.0688421651721001,0.983685374259949,-0.166204825043678,-0.137568891048431,0.933147311210632,-0.332130938768387,0.137568891048431,0.933147311210632,0.332130938768387,0.0688421651721001,0.983685374259949,0.166204825043678
- }
- 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.205393552780151,0.0344720035791397,0.978072166442871,-0.205393552780151,-0.0344720035791397,0.978072166442871,0.564940989017487,0.0344777852296829,0.824410676956177,0.564940989017487,-0.0344777852296829,0.824410676956177,0.203557088971138,0.0441349036991596,-0.978067815303802,0.203557088971138,-0.0441349036991596,-0.978067815303802,-0.563246488571167,0.0441078506410122,-0.825110852718353,-0.563246488571167,-0.0441078506410122,-0.825110852718353,0.222568735480309,0.3519227206707,-0.909183025360107,0.571414172649384,0.115431010723114,0.812503218650818,0.23135869204998,-0.433465659618378,-0.870965361595154,0.573884069919586,-0.147148162126541,0.805608153343201,0.571414232254028,-0.115430660545826,0.812503397464752,0.222568735480309,-0.35192534327507,-0.909182012081146,0.573884069919586,0.14714877307415,0.805608034133911,0.23135869204998,0.433461844921112,-0.870967268943787,0.222568735480309,0.3519227206707,-0.909183025360107,0.573884069919586,-0.14714877307415,0.805608034133911,0.573884069919586,0.14714877307415,0.805608034133911,0.222568735480309,-0.3519227206707,-0.909183025360107,0.220879644155502,-0.147436395287514,-0.964092791080475,0.554607152938843,0.350394487380981,0.754741430282593,0.554607152938843,-0.350394487380981,0.754741430282593,0.220879644155502,0.147436395287514,-0.964092791080475
- }
- 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.00980395171791315,0.964938998222351,0.00980395171791315,0.00955379288643599,0.246737912297249,0.00955379288643599,0.246737912297249,0.964938998222351,0.269300520420074,0.964938998222351,0.269300520420074,0.00955379288643599,0.468838959932327,0.00955379288643599,0.468838959932327,0.964938998222351,0.725515186786652,0.246487751603127,0.772787630558014,0.00955379288643599,0.863069176673889,0.046949315816164,0.823231756687164,0.246487751603127,0.89991682767868,0.503385901451111,0.852644383907318,0.266451954841614,0.950361013412476,0.266451954841614,0.990198373794556,0.465990364551544,0.491560578346252,0.00955379288643599,0.58927720785141,0.00955379288643599,0.58927720785141,0.964938998222351,0.491560578346252,0.964938998222351,0.702718913555145,0.964938998222351,0.61243736743927,0.964938998222351,0.61243736743927,0.00955379288643599,0.702718913555145,0.00955379288643599
- }
- 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: 2399509544160, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: -275.7734375,0,275.771484375,-360.015625,600,149.54443359375,-232.375,0,232.37646484375,-303.31640625,600,126.0595703125,-360.015625,0,149.54443359375,-275.7734375,600,275.771484375,-303.31640625,0,126.0595703125,-232.375,600,232.37646484375
- }
- PolygonVertexIndex: *24 {
- a: 1,4,0,-6,7,2,6,-4,1,5,7,-4,0,4,6,-3,1,3,6,-5,7,5,0,-3
- }
- Edges: *12 {
- a: 1,3,0,7,4,11,15,13,2,9,6,5
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.542607247829437,-0.08034947514534,0.836134791374207,-0.980312645435333,0.0803774893283844,0.180351212620735,0.978251755237579,-0.103119559586048,-0.179972022771835,0.541466891765594,0.103091225028038,-0.834377467632294,-0.980312645435333,-0.0803774893283844,0.180351212620735,-0.542607247829437,0.08034947514534,0.836134791374207,0.541466891765594,-0.103091225028038,-0.834377467632294,0.978251755237579,0.103119559586048,-0.179972022771835
- }
- 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.0727457106113434,0.996168196201324,-0.0485494807362556,-0.0727457106113434,0.996168196201324,0.0485494807362556,-0.0727234706282616,0.996170520782471,0.048534631729126,0.0727234706282616,0.996170520782471,-0.048534631729126,0.0932943224906921,-0.993690550327301,-0.0622519105672836,-0.0932943224906921,-0.993690550327301,0.0622519105672836,-0.0122733358293772,-0.993317008018494,0.114764206111431,0.0122733358293772,-0.993317008018494,-0.114764206111431,1.55717157213076e-006,0.913398146629334,-0.407067537307739,6.33299350738525e-008,0.99541449546814,-0.0956556349992752,-1.27404928207397e-006,-0.867661416530609,-0.497155636548996,8.56816839700514e-008,-0.992453515529633,-0.122622206807137,7.82310891622728e-008,0.99541449546814,0.0956557169556618,-4.32133617778163e-007,0.913395762443542,0.407072603702545,-3.53902606775591e-007,-0.992453515529633,0.122622027993202,-5.21540641784668e-007,-0.867665648460388,0.497148305177689,-0.137638747692108,-0.933076977729797,-0.332299560308456,0.0122733358293772,-0.993317008018494,-0.114764206111431,-0.0122733358293772,-0.993317008018494,0.114764206111431,0.137638747692108,-0.933076977729797,0.332299560308456,-0.127076208591461,0.983717858791351,-0.127086207270622,-0.255225449800491,0.932582378387451,-0.255245566368103,0.255225449800491,0.932582378387451,0.255245566368103,0.127076208591461,0.983717858791351,0.127086207270622
- }
- 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.183562427759171,0.034473892301321,0.98240339756012,0.183562427759171,-0.034473892301321,0.98240339756012,0.836832642555237,0.0344713814556599,0.546372652053833,0.836832642555237,-0.0344713814556599,0.546372652053833,0.185255855321884,-0.0441076755523682,0.98169994354248,0.185255855321884,0.0441076755523682,0.98169994354248,0.840632498264313,0.0519004203379154,0.539113521575928,0.840632498264313,-0.0519004203379154,0.539113521575928,0.197451591491699,0.399053126573563,0.895415782928467,0.839986503124237,0.051903385668993,0.540119171142578,0.207420915365219,-0.486343592405319,0.848791182041168,0.84072208404541,-0.0663957893848419,0.537380695343018,0.839986622333527,-0.0519035570323467,0.540119171142578,0.197451621294022,-0.399058401584625,0.89541357755661,0.84072208404541,0.0663954690098763,0.537380695343018,0.207420915365219,0.4863361120224,0.848795473575592,-0.141572088003159,0.350580781698227,-0.925770223140717,0.840632498264313,-0.0519004203379154,0.539113521575928,0.840632498264313,0.0519004203379154,0.539113521575928,-0.141572088003159,-0.350580781698227,-0.925770223140717,0.163936704397202,0.14719246327877,0.975427687168121,-0.800273180007935,-0.351900935173035,-0.485518872737885,-0.800273180007935,0.351900935173035,-0.485518872737885,0.163936704397202,-0.14719246327877,0.975427687168121
- }
- 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: *40 {
- a: 0.00894331093877554,0.990196049213409,0.00894331093877554,0.00980386231094599,0.215196251869202,0.00980386231094599,0.215196251869202,0.990196049213409,0.445020496845245,0.00980386231094599,0.445020496845245,0.990196049213409,0.329101085662842,0.990196049213409,0.329101085662842,0.00980386231094599,0.465575695037842,0.216056793928146,0.603226482868195,0.00980386231094599,0.674139797687531,0.0807105302810669,0.558220386505127,0.254431128501892,0.832351982593536,0.254431128501892,0.694701194763184,0.04817820712924,0.787345886230469,0.00980386231094599,0.903265297412872,0.18352447450161,0.236456423997879,0.00980386231094599,0.236456423997879,0.990196049213409,0.144289582967758,0.990196049213409,0.144289582967758,0.00980386231094599
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,7,6,17,18,3,2,19
- }
- }
- 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: 2399509544672, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: -149.24609375,0,360.312744140625,-275.32421875,600,276.21875,-125.7578125,0,303.61474609375,-231.92578125,600,232.823974609375,-275.32421875,0,276.21875,-149.24609375,600,360.312744140625,-231.92578125,0,232.823974609375,-125.7578125,600,303.61474609375
- }
- PolygonVertexIndex: *24 {
- a: 1,4,0,-6,7,2,6,-4,1,5,7,-4,0,4,6,-3,1,3,6,-5,7,5,0,-3
- }
- Edges: *12 {
- a: 1,3,0,7,4,11,15,13,2,9,6,5
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.179589092731476,-0.0803670510649681,0.980453372001648,-0.836297750473022,0.0803211554884911,0.542360246181488,0.834541082382202,-0.103058286011219,-0.541221082210541,0.179211601614952,0.103105932474136,-0.978392720222473,-0.836297750473022,-0.0803211554884911,0.542360246181488,-0.179589092731476,0.0803670510649681,0.980453372001648,0.179211601614952,-0.103105932474136,-0.978392720222473,0.834541082382202,0.103058286011219,-0.541221082210541
- }
- 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.154723361134529,0.983579039573669,0.0929135158658028,-0.15472337603569,0.983579039573669,-0.092913530766964,-0.048534270375967,0.996167480945587,0.072765126824379,0.048534270375967,0.996167480945587,-0.072765126824379,-0.114690586924553,0.993325173854828,0.012298833578825,0.114690601825714,0.993325233459473,-0.0122988279908895,0.062224268913269,0.993689894676209,-0.093320406973362,-0.062224268913269,0.993689894676209,0.093320406973362,-0.0956027209758759,-0.99541962146759,1.67638063430786e-006,-0.408414840698242,-0.912796378135681,1.21369939733995e-005,-0.122556701302528,0.992461562156677,5.14090015713009e-006,-0.498625755310059,0.866817474365234,1.48192066262709e-005,-0.408414840698242,0.912796378135681,1.21369939733995e-005,-0.0956027209758759,0.99541962146759,1.67638063430786e-006,-0.498625755310059,-0.866817474365234,1.48192066262709e-005,-0.122556701302528,-0.992461562156677,5.14090015713009e-006,0.154723361134529,0.983579039573669,0.0929135158658028,0.126906394958496,0.983761668205261,0.126917093992233,-0.126906394958496,0.983761668205261,-0.126917093992233,-0.15472337603569,0.983579039573669,-0.092913530766964,-0.114690586924553,0.993325173854828,0.012298833578825,-0.331126034259796,0.933562278747559,-0.137175589799881,0.331126034259796,0.933562278747559,0.137175589799881,0.114690601825714,0.993325233459473,-0.0122988279908895
- }
- 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.525991380214691,-0.161619186401367,0.834992468357086,0.525991380214691,0.161619201302528,0.834992468357086,0.98254382610321,0.0345177724957466,0.182801425457001,0.98254382610321,-0.0345177724957466,0.182801425457001,-0.538876056671143,-0.051809087395668,-0.840790390968323,-0.538875997066498,0.051809087395668,-0.840790390968323,-0.981840789318085,0.044155664741993,-0.184496462345123,-0.981840789318085,-0.044155664741993,-0.184496462345123,-0.539876163005829,0.0518497191369534,-0.840146005153656,-0.894955396652222,0.400429576635361,-0.196751803159714,-0.537141680717468,-0.0663259848952293,-0.840880453586578,-0.848089337348938,-0.487849086523056,-0.206755250692368,0.894955396652222,0.400429576635361,0.196751803159714,0.539876163005829,0.0518497191369534,0.840146005153656,0.848089337348938,-0.487849086523056,0.206755250692368,0.537141680717468,-0.0663259848952293,0.840880453586578,0.525991380214691,-0.161619186401367,0.834992468357086,-0.975591123104095,0.146909281611443,-0.16321662068367,-0.975591123104095,-0.146909281611443,-0.16321662068367,0.525991380214691,0.161619201302528,0.834992468357086,-0.538876056671143,-0.051809087395668,-0.840790390968323,0.926338732242584,0.34928885102272,0.14104562997818,0.926338732242584,-0.34928885102272,0.14104562997818,-0.538875997066498,0.051809087395668,-0.840790390968323
- }
- 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: *40 {
- a: 0.0798680633306503,0.990196049213409,0.0798680633306503,0.00980386231094599,0.21727654337883,0.00980386231094599,0.21727654337883,0.990196049213409,0.330997616052628,0.990196049213409,0.330997616052628,0.00980386231094599,0.446668654680252,0.00980386231094599,0.446668654680252,0.990196049213409,0.60497522354126,0.254194855690002,0.46756711602211,0.0481885112822056,0.560211777687073,0.00980386231094599,0.675882279872894,0.183281570672989,0.905094921588898,0.0481885112822056,0.767686784267426,0.254194855690002,0.696779727935791,0.183281570672989,0.812450230121613,0.00980386231094599,0.00896139722317457,0.990196049213409,0.00896139722317457,0.00980386231094599,0.23835352063179,0.990196049213409,0.23835352063179,0.00980386231094599
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,16,17,1,4,18,19,5
- }
- }
- 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: 2399509542624, "Geometry::", "Mesh" {
- Vertices: *30 {
- a: 0.44921875,600,389.999755859375,0.44921875,600,328.630126953125,149.24609375,600,360.31298828125,125.76171875,600,303.61474609375,29.7666015625,371.411376953125,325.640625,0.44921875,393.2529296875,328.630126953125,0.44921875,393.2529296875,389.999755859375,34.974609375,371.411376953125,385.60498046875,125.76171875,371.411376953125,303.61474609375,149.24609375,371.411376953125,360.31298828125
- }
- PolygonVertexIndex: *32 {
- a: 7,9,2,0,-7,1,0,2,-4,0,1,5,-7,4,7,6,-6,9,8,3,-3,8,4,-6,7,4,8,-10,8,5,1,-4
- }
- Edges: *16 {
- a: 2,5,7,8,10,3,16,11,4,13,18,1,17,21,0,23
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *30 {
- a: -0.170088857412338,0.215627998113632,0.961547911167145,-0.531844437122345,0.277674645185471,-0.800023853778839,0.558480203151703,0.214028865098953,0.801431000232697,0.215909242630005,0.271765023469925,-0.937830984592438,-0.177654549479485,-0.969589233398438,-0.168332040309906,-0.55133455991745,-0.057400781661272,-0.832307159900665,-0.104001857340336,-0.033975537866354,0.993996620178223,0.171362280845642,-0.134674176573753,0.975959897041321,0.254626393318176,-0.226381912827492,-0.940168440341949,0.564411282539368,-0.159478351473808,0.809942245483398
- }
- NormalsW: *10 {
- a: 1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *96 {
- a: 0.114245012402534,0.98664653301239,0.116089321672916,-0.548079550266266,0.661301255226135,0.51214212179184,-0.111447431147099,0.976741075515747,-0.183184340596199,-0.0451270714402199,0.973037958145142,-0.226187229156494,0.285076826810837,0.956463515758514,0.0625202134251595,-0.462815701961517,-0.886454582214355,1.49011611938477e-008,-0.785126805305481,-0.619334995746613,4.82797577205929e-006,-0.357861012220383,0.933774828910828,4.39584209743771e-006,-0.782968282699585,0.622061669826508,4.82797622680664e-006,0.785137295722961,0.619321763515472,0,0.462815701961517,0.886454582214355,-1.49011611938477e-008,-0.103552728891373,0.994624018669128,-3.72529074255112e-009,-0.310531854629517,0.950563013553619,0,0.232618123292923,-0.207580298185349,0.950157523155212,0.114245012402534,0.98664653301239,0.116089321672916,0.540400385856628,0.837087869644165,0.0851543694734573,-0.130098327994347,-0.979510545730591,0.153732150793076,0.556219756603241,0.798462331295013,-0.230385854840279,0.521573960781097,0.850831389427185,-0.0636123716831207,-0.404326349496841,0.899151623249054,0.167471691966057,-0.660563409328461,0.699139893054962,0.273604899644852,0.595007121562958,0.803074181079865,-0.032225027680397,0.023739330470562,0.166780814528465,-0.985708236694336,0.521742284297943,0.754750967025757,-0.397663086652756,0.114245012402534,0.98664653301239,0.116089321672916,0.232618123292923,-0.207580298185349,0.950157523155212,0.521573960781097,0.850831389427185,-0.0636123716831207,-0.556219756603241,-0.798462331295013,0.230385854840279,0.601570785045624,-0.724121689796448,0.337284088134766,-0.130098327994347,-0.979510545730591,0.153732150793076,-0.0583847686648369,-0.954489648342133,-0.29247373342514,0.276081681251526,-0.938283026218414,-0.208335965871811
- }
- BinormalsW: *32 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *96 {
- a: 0.978561758995056,-0.0916052386164665,-0.184459775686264,0.617291450500488,0.732971668243408,-0.285839051008224,0.821997165679932,-0.0129874078556895,-0.569343507289886,0.984394907951355,0.0818637683987617,0.155772268772125,0.952845692634583,-0.289867609739304,0.0897883549332619,0.709184765815735,-0.370263606309891,-0.599968314170837,-0.59552139043808,0.754936337471008,-0.274637192487717,0.748355209827423,0.286803394556046,-0.598087191581726,-0.5833899974823,-0.734290838241577,-0.347092300653458,0.595507621765137,-0.754947245121002,0.274637192487717,-0.709184765815735,0.370263606309891,0.599968314170837,-0.827832579612732,-0.0861876606941223,0.554314792156219,0.944856405258179,0.308667600154877,0.109410762786865,0.956204831600189,-0.129642680287361,-0.262421578168869,0.978561758995056,-0.0916052386164665,-0.184459775686264,-0.834955811500549,0.546012401580811,-0.0686983093619347,0.82407808303833,-0.193039610981941,-0.53257018327713,0.609966576099396,-0.580538153648376,-0.539366483688354,-0.814325511455536,0.474169999361038,-0.334718883037567,-0.888765096664429,-0.343031048774719,-0.304016888141632,0.501753211021423,0.682198941707611,-0.53183501958847,0.762320101261139,-0.551201522350311,0.339182734489441,0.983806669712067,-0.179111585021019,-0.00661195861175656,0.651010870933533,-0.653495311737061,-0.386171877384186,0.978561758995056,-0.0916052386164665,-0.184459775686264,0.956204831600189,-0.129642680287361,-0.262421578168869,-0.814325511455536,0.474169999361038,-0.334718883037567,0.609966576099396,-0.580538153648376,-0.539366483688354,0.757151305675507,0.651459217071533,0.0481957569718361,0.82407808303833,-0.193039610981941,-0.53257018327713,0.844827055931091,0.108841300010681,-0.523851931095123,0.936569452285767,0.213936313986778,0.277613341808319
- }
- TangentsW: *32 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *44 {
- a: 0.128272354602814,0.72609269618988,0.246738478541374,0.48724639415741,0.246738478541374,0.964938998222351,0.00980622600764036,0.964938998222351,0.00980622600764036,0.72609269618988,0.823231756687164,0.24648605287075,0.725515186786652,0.24648605287075,0.772781550884247,0.00955379288643599,0.863063156604767,0.0469472333788872,0.589277565479279,0.964938998222351,0.491558313369751,0.964938998222351,0.491558313369751,0.72609269618988,0.589277565479279,0.72609269618988,0.369073748588562,0.248400092124939,0.26930433511734,0.248400092124939,0.612435519695282,0.48724639415741,0.702716529369354,0.48724639415741,0.702716529369354,0.964938998222351,0.612435519695282,0.964938998222351,0.468843132257462,0.48724639415741,0.26930433511734,0.00955379288643599,0.468843132257462,0.00955379288643599
- }
- UVIndex: *32 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,0,12,14,15,16,17,18,19,13,14,0,13,16,1,19,14,20,21
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *16 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509546208, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 149.24609375,0,360.31298828125,125.76171875,0,303.61474609375,0.44921875,0,389.999755859375,0.44921875,0,328.630126953125,0.44921875,204.764770507813,389.999755859375,0.44921875,204.764770507813,328.630126953125,125.76171875,204.764770507813,303.61474609375,149.24609375,204.764770507813,360.31298828125
- }
- PolygonVertexIndex: *24 {
- a: 1,3,5,-7,0,2,3,-2,4,5,3,-3,0,1,6,-8,7,4,2,-1,5,4,7,-7
- }
- Edges: *12 {
- a: 4,11,7,5,1,0,3,15,8,16,14,2
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: 0.552357733249664,-0.229944050312042,0.8012655377388,0.199272617697716,-0.290569961071014,-0.935873627662659,-0.202681824564934,-0.229859456419945,0.951884865760803,-0.543063163757324,-0.290655672550201,-0.787782788276672,-0.202681824564934,0.229859456419945,0.951884865760803,-0.543063163757324,0.290655672550201,-0.787782788276672,0.199272617697716,0.290569961071014,-0.935873627662659,0.552357733249664,0.229944050312042,0.8012655377388
- }
- 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.0614579729735851,-0.949441909790039,0.30786868929863,0.0614683032035828,-0.949424386024475,0.307920455932617,-0.0614683032035828,-0.949424386024475,-0.307920455932617,-0.0614579729735851,-0.949441909790039,-0.30786868929863,-0.384329259395599,-0.923196196556091,4.69386623080936e-006,-0.750047504901886,0.661383986473084,4.58955764770508e-006,-0.47187951207161,0.881663084030151,1.49011611938477e-008,-0.824688732624054,-0.565587043762207,5.05149409946171e-006,0.750056922435761,0.661373257637024,0,0.47187951207161,0.881663084030151,-1.49011611938477e-008,-0.47187951207161,0.881663084030151,1.49011611938477e-008,-0.750056922435761,0.661373257637024,0,0.691567361354828,0.663085877895355,-0.286446750164032,0.436377644538879,0.881422102451324,-0.180747330188751,-0.436377644538879,0.881422102451324,0.180747330188751,-0.525531947612762,0.842183947563171,0.120592311024666,-0.0487455800175667,0.968467712402344,-0.244323968887329,-0.0487297549843788,0.968488454818726,-0.2442447245121,0.0487297549843788,0.968488454818726,0.2442447245121,0.0487455800175667,0.968467712402344,0.244323968887329,0.47187951207161,0.881663084030151,-1.49011611938477e-008,0.391566812992096,0.909988641738892,-0.136367350816727,-0.525531947612762,0.842183947563171,0.120592311024666,0.442698419094086,-0.878711819648743,-0.178559988737106
- }
- 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.978015005588531,0.118866682052612,0.171339899301529,0.837439000606537,-0.118796572089195,-0.533463537693024,0.837439000606537,0.118796572089195,-0.533463537693024,0.978015005588531,-0.118866682052612,0.171339899301529,-0.739724099636078,0.307952344417572,0.59830904006958,0.629562497138977,0.713957965373993,0.306455731391907,-0.69455897808075,-0.37173855304718,0.615953147411346,0.529319405555725,-0.771803319454193,0.352335959672928,0.629551231861115,-0.713967859745026,0.306455731391907,-0.69455897808075,0.37173855304718,0.615953147411346,-0.69455897808075,-0.37173855304718,0.615953147411346,0.629551231861115,0.713967859745026,0.306455731391907,0.46544086933136,-0.712350070476532,-0.525282979011536,-0.877419471740723,0.372376322746277,-0.302441626787186,-0.877419471740723,-0.372376322746277,-0.302441626787186,0.647083282470703,0.487700700759888,-0.586030125617981,0.832180738449097,-0.0958960801362991,-0.546149373054504,0.97803145647049,0.0958890989422798,0.18509404361248,0.97803145647049,-0.0958890989422798,0.18509404361248,0.832180738449097,0.0958960801362991,-0.546149373054504,0.69455897808075,-0.37173855304718,-0.615953147411346,-0.897549688816071,0.345087319612503,-0.274443328380585,0.647083282470703,0.487700700759888,-0.586030125617981,-0.874247431755066,-0.378727644681931,-0.303738176822662
- }
- 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: *40 {
- a: 0.468843132257462,0.964938998222351,0.26930433511734,0.964938998222351,0.26930433511734,0.72609269618988,0.468843132257462,0.72609269618988,0.94293200969696,0.266450226306915,0.990198373794556,0.503382503986359,0.892481803894043,0.503382503986359,0.852650463581085,0.303843677043915,0.589277565479279,0.248400092124939,0.491558313369751,0.248400092124939,0.491558313369751,0.00955379288643599,0.589277565479279,0.00955379288643599,0.612435519695282,0.00955379288643599,0.702716529369354,0.00955379288643599,0.702716529369354,0.248400092124939,0.612435519695282,0.248400092124939,0.246738478541374,0.248400092124939,0.00980622600764036,0.248400092124939,0.00980622600764036,0.00955379288643599,0.246738478541374,0.00955379288643599
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,9,17,15,3
- }
- }
- 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: 2399509525216, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 275.7734375,0,275.771484375,149.54296875,600,360.0146484375,232.37890625,0,232.37646484375,126.05859375,600,303.31640625,149.54296875,0,360.0146484375,275.7734375,600,275.771484375,126.05859375,0,303.31640625,232.37890625,600,232.37646484375
- }
- PolygonVertexIndex: *24 {
- a: 1,4,0,-6,7,2,6,-4,1,5,7,-4,0,4,6,-3,1,3,6,-5,7,5,0,-3
- }
- Edges: *12 {
- a: 1,3,0,7,4,11,15,13,2,9,6,5
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: 0.836118459701538,-0.0803457871079445,0.542632818222046,0.180360123515129,0.0803748443722725,0.980311155319214,-0.179980978369713,-0.103119090199471,-0.978250026702881,-0.83436131477356,0.103088207542896,-0.541492402553558,0.180360123515129,-0.0803748443722725,0.980311155319214,0.836118459701538,0.0803457871079445,0.542632818222046,-0.83436131477356,-0.103088207542896,-0.541492402553558,-0.179980978369713,0.103119090199471,-0.978250026702881
- }
- 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.0485470369458199,0.996168494224548,-0.0727431699633598,0.0485470369458199,0.996168494224548,0.0727431699633598,0.154931902885437,0.983528614044189,-0.0930998548865318,-0.154931902885437,0.983528614044189,0.0930998623371124,0.0622484758496284,0.99369078874588,0.0932940915226936,-0.0622484758496284,0.99369078874588,-0.0932940915226936,-0.114763140678406,0.993317127227783,-0.0122722834348679,0.114763148128986,0.993317127227783,0.0122722834348679,-0.407050937414169,0.913405537605286,9.46223849496164e-007,-0.0956523865461349,0.995414793491364,-1.19581818580627e-006,-0.49707442522049,-0.867707908153534,-1.36122125695692e-005,-0.122620061039925,-0.992453694343567,-1.54227018356323e-006,-0.0956520065665245,-0.995414853096008,-1.79558992385864e-006,-0.407027155160904,-0.913416087627411,-4.29153487857548e-006,-0.12262088060379,0.992453694343567,-2.79396800806353e-007,-0.497108697891235,0.867688298225403,-5.2377586143848e-006,0.332304149866104,0.933075189590454,-0.137640163302422,0.114763148128986,0.993317127227783,0.0122722834348679,-0.114763140678406,0.993317127227783,-0.0122722834348679,-0.332304149866104,0.933075189590454,0.137640163302422,-0.127076983451843,0.983719110488892,0.127075552940369,-0.154931902885437,0.983528614044189,0.0930998623371124,0.154931902885437,0.983528614044189,-0.0930998548865318,0.127076983451843,0.983719110488892,-0.127075552940369
- }
- 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.982401847839355,0.0344712287187576,-0.183571100234985,0.982401847839355,-0.0344712287187576,-0.183571100234985,0.52621454000473,-0.161913633346558,-0.834794700145721,0.526214599609375,0.161913648247719,-0.834794700145721,-0.981698513031006,0.0441034063696861,0.18526454269886,-0.981698513031006,-0.0441034063696861,0.18526454269886,-0.539138734340668,-0.05190384760499,0.840616106987,-0.539138793945313,0.0519038513302803,0.840616106987,0.89542144536972,0.399036705493927,-0.197459310293198,0.540144801139832,0.0519031248986721,-0.839970052242279,0.848836600780487,-0.486260563135147,-0.20742966234684,0.537406325340271,-0.0663965493440628,-0.840705633163452,-0.540144860744476,0.0519024170935154,0.839970052242279,-0.895432233810425,0.399012446403503,0.197459310293198,-0.537406086921692,-0.0663980320096016,0.840705633163452,-0.848816573619843,-0.486295580863953,0.20742966234684,0.925766944885254,-0.350586235523224,-0.141580015420914,-0.539138793945313,0.0519038513302803,0.840616106987,-0.539138734340668,-0.05190384760499,0.840616106987,0.925766944885254,0.350586235523224,-0.141580015420914,-0.975427389144897,-0.147184237837791,0.163946434855461,0.526214599609375,0.161913648247719,-0.834794700145721,0.52621454000473,-0.161913633346558,-0.834794700145721,-0.975427389144897,0.147184237837791,0.163946434855461
- }
- 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: *40 {
- a: 0.00896489806473255,0.990196049213409,0.00896489806473255,0.00980386231094599,0.14661705493927,0.00980386231094599,0.14661705493927,0.990196049213409,0.238397285342216,0.990196049213409,0.238397285342216,0.00980386231094599,0.354312032461166,0.00980386231094599,0.354312032461166,0.990196049213409,0.467654258012772,0.216059133410454,0.605305016040802,0.00980386231094599,0.676212072372437,0.0807109177112579,0.560298919677734,0.254431337118149,0.767811238765717,0.00980386231094599,0.905462086200714,0.216059133410454,0.812817394733429,0.254431337118149,0.696904182434082,0.0807109177112579,0.446956098079681,0.990196049213409,0.446956098079681,0.00980386231094599,0.217523723840714,0.990196049213409,0.217523723840714,0.00980386231094599
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,7,6,17,18,3,2,19
- }
- }
- 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: 2399509545696, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 360.3125,0,149.24658203125,276.22265625,600,275.47314453125,303.6171875,0,125.76123046875,232.828125,600,232.078125,276.22265625,0,275.47314453125,360.3125,600,149.24658203125,232.828125,0,232.078125,303.6171875,600,125.76123046875
- }
- PolygonVertexIndex: *24 {
- a: 1,4,0,-6,7,2,6,-4,1,5,7,-4,0,4,6,-3,1,3,6,-5,7,5,0,-3
- }
- Edges: *12 {
- a: 1,3,0,7,4,11,15,13,2,9,6,5
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: 0.980484247207642,-0.0803891345858574,0.179410576820374,0.543074309825897,0.0803147107362747,0.835834860801697,-0.541933476924896,-0.103052914142609,-0.834079205989838,-0.97842276096344,0.10313007235527,-0.179033413529396,0.543074309825897,-0.0803147107362747,0.835834860801697,0.980484247207642,0.0803891345858574,0.179410576820374,-0.97842276096344,-0.10313007235527,-0.179033413529396,-0.541933476924896,0.103052914142609,-0.834079205989838
- }
- 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.0727410688996315,0.996172964572906,-0.048458781093359,0.0727410688996315,0.996172964572906,0.048458781093359,0.0728006064891815,0.996166706085205,0.0484984442591667,-0.0728006064891815,0.996166706085205,-0.0484984442591667,-0.0122769977897406,-0.993318557739258,-0.114750564098358,0.0122769977897406,-0.993318557739258,0.114750564098358,0.0933642387390137,-0.993689477443695,0.0621647834777832,-0.0933642387390137,-0.993689477443695,-0.0621647834777832,2.38418579101563e-007,0.995415151119232,-0.0956488102674484,1.22189510420867e-006,0.912575721740723,-0.408907651901245,4.20957803726196e-007,-0.992453694343567,-0.122620806097984,1.47521518556459e-006,-0.866513848304749,-0.499153107404709,-1.2069941703885e-006,0.912575840950012,0.40890771150589,-2.30967998504639e-007,0.995415151119232,0.0956488102674484,-1.49011611938477e-006,-0.866513848304749,0.499153137207031,-4.32133674621582e-007,-0.992453694343567,0.122620820999146,0.255769014358521,0.93229079246521,-0.255766123533249,0.126915708184242,0.983760833740234,-0.126914277672768,-0.126915708184242,0.983760833740234,0.126914277672768,-0.255769014358521,0.93229079246521,0.255766123533249,-0.0122769977897406,-0.993318557739258,-0.114750564098358,0.137113705277443,-0.933615267276764,-0.33100226521492,-0.137113705277443,-0.933615267276764,0.33100226521492,0.0122769977897406,-0.993318557739258,0.114750564098358
- }
- 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.83652800321579,0.034482803195715,-0.546838045120239,0.83652800321579,-0.034482803195715,-0.546838045120239,0.182621613144875,0.0344907566905022,-0.982578098773956,0.182621613144875,-0.0344907566905022,-0.982578098773956,0.840331733226776,0.0519471690058708,-0.539577662944794,0.840331733226776,-0.0519471690058708,-0.539577662944794,0.184314742684364,-0.0441081188619137,-0.981877148151398,0.184314742684364,0.0441081188619137,-0.981877148151398,0.83968460559845,-0.0519446134567261,-0.54058438539505,0.196597874164581,-0.400927811861038,-0.894766092300415,0.840421497821808,0.0664526745676994,-0.537843823432922,0.206613212823868,0.488382965326309,-0.847816646099091,0.196597844362259,0.400927752256393,-0.89476603269577,0.83968460559845,0.0519446022808552,-0.54058438539505,0.20661324262619,-0.488383054733276,-0.847816705703735,0.840421497821808,-0.0664526894688606,-0.537843823432922,0.799782633781433,-0.352680623531342,-0.485761374235153,-0.163037195801735,0.146897956728935,0.975622832775116,-0.163037195801735,-0.146897956728935,0.975622832775116,0.799782633781433,0.352680623531342,-0.485761374235153,0.840331733226776,0.0519471690058708,-0.539577662944794,-0.140891164541245,-0.349142134189606,0.926417648792267,-0.140891164541245,0.349142134189606,0.926417648792267,0.840331733226776,-0.0519471690058708,-0.539577662944794
- }
- 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: *44 {
- a: 0.00959460530430079,0.990196049213409,0.00959460530430079,0.00980405416339636,0.215847298502922,0.00980405416339636,0.215847298502922,0.990196049213409,0.354416966438293,0.00980385951697826,0.354416966438293,0.990195870399475,0.238746508955956,0.990195870399475,0.238746508955956,0.00980385951697826,0.63401871919632,0.00980405416339636,0.771420538425446,0.216056749224663,0.678782105445862,0.25443109869957,0.563111662864685,0.0807107016444206,0.969056665897369,0.312343508005142,0.831654787063599,0.518596231937408,0.760747790336609,0.447689563035965,0.876418232917786,0.273969173431396,0.540524184703827,0.990196049213409,0.469617545604706,0.990196049213409,0.469617545604706,0.00980405416339636,0.540524184703827,0.00980405416339636,0.447055369615555,0.00980385951697826,0.447055369615555,0.990195870399475
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,4,20,21,5
- }
- }
- 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: 2399509546720, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 360.3125,600,148.64990234375,390,600,0,303.6171875,600,125.16455078125,328.6328125,600,0,360.3125,0,148.64990234375,390,0,0,303.6171875,0,125.16455078125,328.6328125,0,0
- }
- PolygonVertexIndex: *24 {
- a: 0,4,5,-2,3,7,6,-3,3,2,0,-2,6,7,5,-5,0,2,6,-5,3,1,5,-8
- }
- Edges: *12 {
- a: 1,3,0,7,4,11,9,15,13,2,6,5
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: 0.82035905122757,0.0803618654608727,0.56617397069931,0.97487610578537,0.0803214237093925,-0.207761809229851,-0.972828388214111,0.103059284389019,0.207325413823128,-0.818634808063507,0.10310222953558,-0.564984083175659,0.82035905122757,-0.0803618654608727,0.56617397069931,0.97487610578537,-0.0803214237093925,-0.207761809229851,-0.972828388214111,-0.103059284389019,0.207325413823128,-0.818634808063507,-0.10310222953558,-0.564984083175659
- }
- 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.0857630148530006,0.996168434619904,-0.0171280931681395,0.0857630148530006,0.996168434619904,0.0171280931681395,0.0857246443629265,0.996171832084656,0.0171204302459955,-0.0857246443629265,0.996171832084656,-0.0171204302459955,0.109979435801506,0.99369078874588,0.0219806954264641,-0.109979435801506,0.99369078874588,-0.0219806954264641,-0.109953030943871,0.993693828582764,-0.0219754222780466,0.109953030943871,0.993693828582764,0.0219754222780466,4.39584255218506e-007,-0.983753800392151,-0.179522886872292,2.16811872633116e-006,0.895471274852753,-0.445119202136993,3.35276155283282e-007,0.990076422691345,-0.140530422329903,0,-0.932722985744476,-0.360593885183334,-2.31713056564331e-006,0.895471632480621,0.44511866569519,-4.69386577606201e-007,-0.983753800392151,0.179522931575775,0,-0.932722985744476,0.360593885183334,-3.65078506092686e-007,0.990076422691345,0.140530467033386,0.137280613183975,0.9334477186203,-0.331405192613602,0.0688100904226303,0.983703136444092,-0.166112467646599,-0.0688100904226303,0.983703136444092,0.166112467646599,-0.137280613183975,0.9334477186203,0.331405192613602,0,-0.983753979206085,-0.179522275924683,0,-0.932722985744476,-0.360593885183334,0,-0.932722985744476,0.360593885183334,0,-0.983753979206085,0.179522275924683
- }
- 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.565380990505219,0.0345055982470512,-0.824107825756073,0.565380990505219,-0.0345055982470512,-0.824107825756073,-0.205591320991516,0.0345006063580513,-0.978029727935791,-0.205591320991516,-0.0345006063580513,-0.978029727935791,-0.563685715198517,0.0441424660384655,0.824808955192566,-0.563685715198517,-0.0441424660384655,0.824808955192566,0.203753247857094,0.0441743768751621,0.978025197982788,0.203753247857094,-0.0441743768751621,0.978025197982788,0.574314415454865,0.14696392416954,-0.80533504486084,0.231527134776115,0.433024197816849,0.87114018201828,0.571848809719086,-0.115285590291023,-0.812218070030212,0.222747981548309,-0.351534366607666,0.909289360046387,0.231527134776115,-0.433023601770401,0.871140480041504,0.574314415454865,-0.146963983774185,-0.80533504486084,0.222747981548309,0.351534366607666,0.909289360046387,0.571848809719086,0.115285634994507,-0.812218070030212,0.555126249790192,-0.349595963954926,-0.754730105400085,0.221065938472748,0.147332862019539,0.964065909385681,0.221065938472748,-0.147332862019539,0.964065909385681,0.555126249790192,0.349595963954926,-0.754730105400085,0.574314415454865,0.146963179111481,-0.805335223674774,0.222747981548309,-0.351534366607666,0.909289360046387,0.222747981548309,0.351534366607666,0.909289360046387,0.574314415454865,-0.146963179111481,-0.805335223674774
- }
- 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.00980386137962341,0.96522855758667,0.00980386137962341,0.00955666042864323,0.246571391820908,0.00955666042864323,0.246571391820908,0.96522855758667,0.269300013780594,0.96522855758667,0.269300013780594,0.00955666042864323,0.468660801649094,0.00955666042864323,0.468660801649094,0.96522855758667,0.765363872051239,0.246324181556702,0.725520610809326,0.0469634048640728,0.815823197364807,0.00955666042864323,0.863109827041626,0.246324181556702,0.852609097957611,0.465649098157883,0.892452418804169,0.266288310289383,0.990198314189911,0.266288310289383,0.942911684513092,0.503055810928345,0.581865131855011,0.96522855758667,0.491562515497208,0.96522855758667,0.491562515497208,0.00955666042864323,0.581865131855011,0.00955666042864323,0.604644000530243,0.00955666042864323,0.702389895915985,0.00955666042864323,0.702389895915985,0.96522855758667,0.604644000530243,0.96522855758667
- }
- 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: 2399509543648, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 360.1171875,0,-149.439697265625,390,0,-0.44775390625,303.421875,0,-125.95458984375,328.6328125,0,-0.44775390625,360.1171875,600,-149.439697265625,390,600,-0.44775390625,303.421875,600,-125.95458984375,328.6328125,600,-0.44775390625
- }
- PolygonVertexIndex: *24 {
- a: 5,1,0,-5,6,2,3,-8,5,4,6,-8,0,1,3,-3,5,7,3,-2,6,4,0,-3
- }
- Edges: *12 {
- a: 1,0,5,7,4,13,15,2,9,3,11,6
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: 0.820480346679688,-0.0804171413183212,-0.565990269184113,0.975231647491455,-0.0803327932953835,0.206082001328468,-0.973182022571564,-0.103078313171864,-0.20564891397953,-0.818753898143768,-0.103167869150639,0.5647993683815,0.820480346679688,0.0804171413183212,-0.565990269184113,0.975231647491455,0.0803327932953835,0.206082001328468,-0.973182022571564,0.103078313171864,-0.20564891397953,-0.818753898143768,0.103167869150639,0.5647993683815
- }
- 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.0856896266341209,0.996173679828644,0.0171864777803421,0.0856896266341209,0.996173679828644,-0.0171864777803421,0.0857697352766991,0.996166467666626,-0.0172025505453348,-0.0857697352766991,0.996166467666626,0.0172025505453348,0.109916806221008,0.993695616722107,-0.0220793187618256,-0.109916806221008,0.993695616722107,0.0220793187618256,-0.109972156584263,0.993689179420471,0.0220904368907213,0.109972156584263,0.993689179420471,-0.0220904368907213,0,0.931714594364166,-0.363191515207291,-3.72529065373328e-008,-0.99005663394928,-0.140669479966164,-2.60770349314043e-007,-0.893985867500305,-0.448095262050629,-5.21540712838942e-008,0.983723402023315,-0.179689809679985,5.21540712838942e-008,-0.99005663394928,0.140669509768486,0,0.931714594364166,0.363191515207291,5.9604651880818e-008,0.983723402023315,0.179689809679985,3.35276155283282e-007,-0.893985986709595,0.448094993829727,0,0.931714594364166,-0.363191515207291,0,0.983723402023315,-0.179689735174179,0,0.983723402023315,0.179689735174179,0,0.931714594364166,0.363191515207291,-0.0689894780516624,-0.983617067337036,-0.166547253727913,-0.137483388185501,-0.933242678642273,-0.331898152828217,0.137483388185501,-0.933242678642273,0.331898152828217,0.0689894780516624,-0.983617067337036,0.166547253727913
- }
- 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.203912824392319,0.0344198904931545,-0.978383898735046,0.203912824392319,-0.0344198904931545,-0.978383898735046,-0.565203964710236,0.0344304852187634,-0.824232518672943,-0.565203964710236,-0.0344304852187634,-0.824232518672943,-0.202076464891434,0.0440914630889893,0.978376746177673,-0.202076464891434,-0.0440914630889893,0.978376746177673,0.563513994216919,0.0440255664288998,0.824932515621185,0.563513994216919,-0.0440255664288998,0.824932515621185,0.221186146140099,-0.354195833206177,-0.908637464046478,0.571674764156342,-0.115416556596756,0.812321960926056,0.230036690831184,0.436078131198883,-0.870010912418365,0.574144721031189,0.147121742367744,0.805427253246307,0.571674764156342,0.115416578948498,0.812321960926056,0.221186146140099,0.354195833206177,-0.908637464046478,0.574144721031189,-0.147121757268906,0.805427253246307,0.230036690831184,-0.436077862977982,-0.870011031627655,0.221186146140099,-0.354195833206177,-0.908637464046478,0.574144721031189,0.147121652960777,0.805427253246307,0.574144721031189,-0.147121652960777,0.805427253246307,0.221186146140099,0.354195833206177,-0.908637464046478,0.219447389245033,0.14789317548275,-0.964349746704102,0.554896950721741,-0.350130170583725,0.754651069641113,0.554896950721741,0.350130170583725,0.754651069641113,0.219447389245033,-0.14789317548275,-0.964349746704102
- }
- 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.00980398803949356,0.964513778686523,0.00980398803949356,0.00954958330839872,0.246940791606903,0.00954958330839872,0.246940791606903,0.964513778686523,0.269300252199173,0.964513778686523,0.269300252199173,0.00954958330839872,0.469058007001877,0.00954958330839872,0.469058007001877,0.964513778686523,0.8633131980896,0.00954958330839872,0.815752446651459,0.246686384081841,0.725516736507416,0.209307342767715,0.765639662742615,0.00954958330839872,0.942637741565704,0.266650497913361,0.990198493003845,0.503787279129028,0.89252495765686,0.503787279129028,0.852402031421661,0.304029524326324,0.589235723018646,0.964513778686523,0.491562187671661,0.964513778686523,0.491562187671661,0.00954958330839872,0.589235723018646,0.00954958330839872,0.612440228462219,0.00954996142536402,0.702675938606262,0.00954996142536402,0.702675938606262,0.964514136314392,0.612440228462219,0.964514136314392
- }
- 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: 2399509550816, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 29.7666015625,370.71826171875,325.640625,34.974609375,370.71826171875,385.60498046875,29.7666015625,205.457885742188,325.640625,34.974609375,205.457885742188,385.60498046875,125.76171875,370.71826171875,303.61474609375,149.24609375,370.71826171875,360.31298828125,125.76171875,205.457885742188,303.61474609375,149.24609375,205.457885742188,360.31298828125
- }
- PolygonVertexIndex: *24 {
- a: 2,3,1,-1,7,6,4,-6,3,7,5,-2,6,2,0,-5,1,5,4,-1,3,2,6,-8
- }
- Edges: *12 {
- a: 3,1,2,0,6,5,7,4,14,10,12,8
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.632914304733276,0.329043030738831,-0.700820982456207,-0.267776340246201,0.277192771434784,0.922745883464813,-0.632914423942566,-0.329043060541153,-0.700820982456207,-0.267776340246201,-0.277192771434784,0.922745943069458,0.263191431760788,0.328905493021011,-0.906946301460266,0.644655346870422,0.273638755083084,0.713821649551392,0.26319146156311,-0.328905522823334,-0.906946301460266,0.644655346870422,-0.273638755083084,0.713821709156036
- }
- 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.603609681129456,-0.776576459407806,-0.180511385202408,-0.925899982452393,0.338908672332764,-0.166883498430252,0.377270728349686,-0.851078867912292,0.365146100521088,0.590338468551636,-0.380556702613831,-0.711812555789948,0.597813844680786,0.762434244155884,-0.247614100575447,0.449727147817612,0.873525321483612,-0.186276689171791,-0.449727118015289,0.873525321483612,0.186276704072952,-0.597813785076141,0.762434184551239,0.247614055871964,-0.925899982452393,0.338908672332764,-0.166883498430252,-0.266889601945877,0.794432997703552,0.545569658279419,-0.711135149002075,0.55731600522995,0.428585767745972,-0.473845958709717,0.796003818511963,-0.376627266407013,0.0828088074922562,-0.928918957710266,0.360904663801193,0.603609681129456,-0.776576459407806,-0.180511385202408,0.590338468551636,-0.380556702613831,-0.711812555789948,0.301492184400558,-0.921046495437622,-0.246527373790741,0.377270728349686,-0.851078867912292,0.365146100521088,-0.597813785076141,0.762434184551239,0.247614055871964,-0.124716907739639,0.943801641464233,0.306078881025314,0.163812220096588,0.941613733768463,0.294158339500427,-0.322334945201874,-0.876760601997375,-0.356918811798096,-0.220536708831787,0.944314956665039,-0.244198471307755,-0.370049923658371,0.833765745162964,-0.409753173589706,-0,-0,-0
- }
- 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.484845042228699,0.537270545959473,-0.690119981765747,0.266467660665512,0.899057805538177,0.347404539585114,0.886545360088348,0.445902496576309,0.123322069644928,0.500919044017792,0.86423796415329,-0.0466130264103413,0.476485431194305,-0.586358249187469,-0.655092120170593,-0.853507995605469,0.358851969242096,-0.377821922302246,-0.853507995605469,-0.358851969242096,-0.377821922302246,0.476485341787338,0.586358189582825,-0.655092298984528,0.266467660665512,0.899057805538177,0.347404539585114,0.716372430324554,0.542215943336487,-0.439104110002518,0.280546545982361,0.783913731575012,-0.553870856761932,0.838907539844513,0.538091242313385,0.0818042978644371,0.961183190345764,0.170090213418007,0.217247366905212,0.484845042228699,0.537270545959473,-0.690119981765747,0.500919044017792,0.86423796415329,-0.0466130264103413,0.916423857212067,0.208553299307823,0.341574043035507,0.886545360088348,0.445902496576309,0.123322069644928,-0.476485341787338,-0.586358189582825,0.655092298984528,0.956648290157318,0.0325541943311691,0.289420515298843,0.756693482398987,0.0713739916682243,-0.649862110614777,0.907962560653687,-0.393007665872574,0.14542692899704,0.742147505283356,1.4995627850567e-008,-0.670236587524414,0.890950739383698,0.44345897436142,0.0977287963032722,-0,0,-0
- }
- 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: *24 {
- a: 0.369073748588562,0.72609269618988,0.128272354602814,0.248400092124939,0.128272354602814,0.72609269618988,0.369073748588562,0.248400092124939,0.612435519695282,0.248400092124939,0.702716529369354,0.248400092124939,0.702716529369354,0.48724639415741,0.612435519695282,0.48724639415741,0.246738478541374,0.248400092124939,0.246738478541374,0.48724639415741,0.468843132257462,0.72609269618988,0.468843132257462,0.48724639415741
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,1,8,9,2,10,0,3,11,2,7,11,3,1,0,5,8
- }
- }
- 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: 2399509542112, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 0,0,389.999755859375,0,0,328.630126953125,-148.6484375,0,360.312744140625,-125.16015625,0,303.61474609375,0,204.764770507813,328.630126953125,0,204.764770507813,389.999755859375,-148.6484375,204.764770507813,360.312744140625,-125.16015625,204.764770507813,303.61474609375
- }
- PolygonVertexIndex: *24 {
- a: 5,6,2,-1,0,2,3,-2,3,2,6,-8,4,5,0,-2,5,4,7,-7,1,3,7,-5
- }
- Edges: *12 {
- a: 2,15,7,5,3,6,1,11,12,10,17,0
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: 0.202876567840576,-0.229807898402214,0.951855778694153,0.543515384197235,-0.290630400180817,-0.787480115890503,-0.552817106246948,-0.229915663599968,0.800956964492798,-0.199464917182922,-0.290518254041672,-0.935848772525787,0.543515384197235,0.290630400180817,-0.787480115890503,0.202876567840576,0.229807898402214,0.951855778694153,-0.552817106246948,0.229915663599968,0.800956964492798,-0.199464917182922,0.290518254041672,-0.935848772525787
- }
- 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.0487739108502865,0.968492448329926,-0.244220077991486,0.226666957139969,0.966430723667145,-0.120970509946346,-0.0487942099571228,0.968465924263,0.244321763515472,-0.0487739108502865,0.968492448329926,0.244220077991486,-0.749668061733246,-0.661814033985138,1.49011611938477e-008,-0.384014636278152,0.923327088356018,-3.12924385070801e-006,-0.824374318122864,0.566045045852661,-1.35451555252075e-005,-0.471546709537506,-0.881841063499451,-3.87430191040039e-006,-0.436171591281891,0.881535291671753,-0.180692806839943,-0.690788626670837,0.664015233516693,-0.286173045635223,0.690788626670837,0.664015233516693,0.286173045635223,0.436171591281891,0.881535291671753,0.180692806839943,-0.471542298793793,0.881843447685242,0,-0.53260463476181,0.841600596904755,-0.0896705687046051,0.749668061733246,0.661814033985138,-1.49011611938477e-008,0.471542298793793,0.881843447685242,0,-0.53260463476181,0.841600596904755,-0.0896705687046051,0.262669950723648,-0.9499192237854,-0.169287130236626,0.436171591281891,0.881535291671753,0.180692806839943,0.226666957139969,0.966430723667145,-0.120970509946346,-0.0615429878234863,-0.949419856071472,0.307919770479202,-0.0615295395255089,-0.949442505836487,0.307852476835251,0.0615295395255089,-0.949442505836487,-0.307852476835251,0.262669950723648,-0.9499192237854,-0.169287130236626
- }
- 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.977988958358765,-0.0959722697734833,-0.185275807976723,0.801882386207581,-0.114675909280777,0.586373686790466,0.831872820854187,-0.0959831774234772,0.54660302400589,0.977988958358765,0.0959722697734833,-0.185275807976723,-0.629951477050781,0.713575899600983,0.306546211242676,0.73954451084137,0.307580947875977,0.598721921443939,-0.529736518859863,-0.77148699760437,0.352401822805405,0.694431185722351,-0.371335744857788,0.616340100765228,-0.877478241920471,-0.372148782014847,0.302551120519638,0.466051995754242,0.711493313312531,0.525902032852173,0.466051995754242,-0.711493313312531,0.525902032852173,-0.877478241920471,0.372148782014847,0.302551120519638,-0.69443416595459,-0.371330201625824,-0.616340100765228,0.821689307689667,0.488770723342896,-0.293137788772583,0.629951477050781,-0.713575899600983,-0.306546211242676,-0.69443416595459,0.371330201625824,-0.616340100765228,0.821689307689667,0.488770723342896,-0.293137788772583,0.797242403030396,0.114837169647217,0.592635571956635,0.877478241920471,-0.372148782014847,-0.302551120519638,0.801882386207581,-0.114675909280777,0.586373686790466,0.837140083312988,0.11889524012804,0.533910512924194,0.977971315383911,-0.118988111615181,-0.171505019068718,0.977971315383911,0.118988111615181,-0.171505019068718,0.797242403030396,0.114837169647217,0.592635571956635
- }
- 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: *40 {
- a: 0.246570646762848,0.248475417494774,0.00980313401669264,0.248475417494774,0.00980313401669264,0.00955669023096561,0.246570646762848,0.00955669023096561,0.990195333957672,0.266288369894028,0.942914664745331,0.50305587053299,0.852605700492859,0.465645045042038,0.892449140548706,0.266288369894028,0.491557061672211,0.00955669023096561,0.581865429878235,0.00955669023096561,0.581865429878235,0.248475417494774,0.491557061672211,0.248475417494774,0.702385067939758,0.248475417494774,0.604636192321777,0.248475417494774,0.604636192321777,0.00955669023096561,0.702385067939758,0.00955669023096561,0.468657732009888,0.726312875747681,0.468657732009888,0.965231597423553,0.269301056861877,0.965231597423553,0.269301056861877,0.726312875747681
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,13,16,11,1,17,18,19,16
- }
- }
- 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: 2399509547744, "Geometry::", "Mesh" {
- Vertices: *30 {
- a: -148.6484375,600,360.312744140625,-125.16015625,600,303.61474609375,0,600,389.999755859375,0,600,328.630126953125,-30.9921875,371.411376953125,326.01708984375,-35.1962890625,371.411376953125,386.060546875,0,393.2529296875,389.999755859375,0,393.2529296875,328.630126953125,-148.6484375,371.411376953125,360.312744140625,-125.16015625,371.411376953125,303.61474609375
- }
- PolygonVertexIndex: *32 {
- a: 7,9,1,-4,1,0,2,-4,3,2,6,-8,5,4,7,-7,9,8,0,-2,2,0,8,5,-7,5,8,9,-5,4,9,-8
- }
- Edges: *16 {
- a: 5,4,6,2,9,3,15,10,13,12,17,1,16,27,22,0
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *30 {
- a: -0.558985888957977,0.215221717953682,0.800758600234985,-0.216113641858101,0.271712243556976,-0.937799215316772,0.170104712247849,0.216843232512474,0.961271822452545,0.532296419143677,0.277655214071274,-0.799730002880096,0.175954207777977,-0.970492541790009,-0.164876982569695,-0.171811178326607,-0.131811633706093,0.97627180814743,0.105347670614719,-0.0346265323460102,0.993832409381866,0.551583409309387,-0.0593020170927048,-0.832008957862854,-0.565299510955811,-0.157021403312683,0.809802949428558,-0.255082011222839,-0.22316300868988,-0.940814256668091
- }
- NormalsW: *10 {
- a: 1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *96 {
- a: -0.286908119916916,-0.950095057487488,-0.122488118708134,-0.602213680744171,-0.724578499794006,0.335149049758911,-0.276369094848633,-0.938239514827728,-0.208151206374168,0.0584562122821808,-0.954484581947327,-0.292475670576096,-0.782609462738037,-0.622512996196747,-1.25914812088013e-005,-0.359313011169434,-0.933217167854309,-2.89082527160645e-006,-0.786797702312469,0.617210924625397,0,-0.462485730648041,0.886626720428467,-3.72529029846191e-006,-0.462481319904327,0.886629045009613,1.49011611938477e-008,-0.786797702312469,0.617210924625397,0,0.312253385782242,0.94999885559082,0,0.437516212463379,0.869810223579407,0.228056654334068,-0.141402244567871,0.98404598236084,0.107976295053959,0.840543866157532,0.0609413683414459,0.538304924964905,0.437516212463379,0.869810223579407,0.228056654334068,-0,-0,-0,-0.324086129665375,0.936452150344849,-0.134259164333344,-0.549329996109009,0.80401998758316,-0.227570950984955,0.661313474178314,0.698290169239044,0.273962378501892,0.40412163734436,0.899254083633423,0.167415499687195,0.0454278737306595,0.972725927829742,-0.227465867996216,0.11283951997757,0.976487517356873,-0.183682858943939,0.549403548240662,0.660610139369965,0.51161515712738,-0.141402244567871,0.98404598236084,0.107976295053959,-0.28051295876503,0.957773625850677,0.063104972243309,0.216013848781586,0.961849451065063,0.167880028486252,0.549329996109009,-0.80401998758316,0.227570950984955,-0.334827929735184,-0.892415702342987,0.302464336156845,-0.956234753131866,-0.128728523850441,-0.26276233792305,-0.956234753131866,-0.128728523850441,-0.26276233792305,-0.334827929735184,-0.892415702342987,0.302464336156845,-0.507836222648621,0.767418920993805,-0.391370266675949
- }
- BinormalsW: *32 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *96 {
- a: 0.783223748207092,-0.306272506713867,0.541070759296417,0.756486654281616,-0.652061700820923,-0.0504351183772087,0.936437368392944,-0.214194372296333,-0.277859210968018,0.844537377357483,-0.108934558928013,0.524299383163452,0.583795607089996,-0.733927845954895,-0.347178071737289,-0.747281014919281,0.287724614143372,-0.598987281322479,0.593307495117188,0.75632655620575,-0.275601834058762,-0.709060966968536,-0.369865715503693,-0.600359857082367,-0.709063827991486,-0.369860202074051,-0.600359857082367,0.593307495117188,0.75632655620575,-0.275601834058762,0.944139659404755,-0.310327529907227,-0.110892541706562,-0.710165500640869,0.489809632301331,-0.50571870803833,0.974928915500641,0.119495496153831,0.187708586454391,0.512373089790344,0.233303338289261,-0.826464414596558,-0.710165500640869,0.489809632301331,-0.50571870803833,-0,0,-0,-0.910989224910736,-0.270657747983933,0.311196088790894,0.615364372730255,0.573494791984558,0.540768384933472,0.50019907951355,-0.682693541049957,0.532663464546204,-0.88880854845047,0.342804193496704,0.304145842790604,0.984378337860107,-0.0823615491390228,-0.15561455488205,0.821463346481323,0.0123188951984048,0.570128202438354,0.615298509597778,-0.734124362468719,0.287174463272095,0.974928915500641,0.119495496153831,0.187708586454391,0.954051554203033,0.28543084859848,-0.0911860167980194,-0.961154997348785,0.239731892943382,-0.13678340613842,0.615364372730255,0.573494791984558,0.540768384933472,-0.907096147537231,0.392164051532745,0.152917921543121,0.233784541487694,0.203895151615143,-0.95066910982132,0.233784541487694,0.203895151615143,-0.95066910982132,-0.907096147537231,0.392164051532745,0.152917921543121,0.661708474159241,0.638397634029388,0.393179804086685
- }
- TangentsW: *32 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *44 {
- a: 0.468657732009888,0.248475417494774,0.269301056861877,0.487394154071808,0.269301056861877,0.00955669023096561,0.468657732009888,0.00955669023096561,0.863106489181519,0.20891335606575,0.772797524929047,0.246324211359024,0.725516796112061,0.00955669023096561,0.823263049125671,0.00955669023096561,0.702385067939758,0.965231597423553,0.604636192321777,0.965231597423553,0.604636192321777,0.726312875747681,0.702385067939758,0.726312875747681,0.128186896443367,0.726312875747681,0.368979394435883,0.248475417494774,0.246570646762848,0.726312875747681,0.491557061672211,0.487394154071808,0.581865429878235,0.487394154071808,0.581865429878235,0.965231597423553,0.491557061672211,0.965231597423553,0.246570646762848,0.965231597423553,0.00980313401669264,0.965231597423553,0.00980313401669264,0.487394154071808
- }
- UVIndex: *32 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,11,14,15,16,17,18,19,20,21,12,14,12,16,1,13,13,1,0
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *16 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509548256, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: -30.9921875,370.707092285156,326.01708984375,-35.1962890625,370.707092285156,386.060546875,-30.9921875,205.468994140625,326.01708984375,-35.1962890625,205.468994140625,386.060546875,-148.6484375,370.707092285156,360.312744140625,-125.16015625,370.707092285156,303.61474609375,-148.6484375,205.468994140625,360.312744140625,-125.16015625,205.468994140625,303.61474609375
- }
- PolygonVertexIndex: *24 {
- a: 2,0,1,-4,7,6,4,-6,6,3,1,-5,2,7,5,-1,1,0,5,-5,3,6,7,-3
- }
- Edges: *12 {
- a: 0,2,1,3,6,5,7,4,12,8,14,10
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: 0.637684226036072,0.330415844917297,-0.695833325386047,0.269135445356369,0.27398493885994,0.923308312892914,0.637684226036072,-0.330415844917297,-0.695833325386047,0.269135445356369,-0.27398493885994,0.923308312892914,-0.650130152702332,0.27214440703392,0.709414064884186,-0.264323562383652,0.328399002552032,-0.906800508499146,-0.650130152702332,-0.27214440703392,0.709414064884186,-0.264323562383652,-0.328399002552032,-0.906800508499146
- }
- 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.490274876356125,0.522640705108643,-0.697479248046875,-0.654746651649475,-0.243371367454529,-0.715595722198486,-0.758258581161499,0.651363730430603,0.0277376659214497,0.939049184322357,-0.138265430927277,-0.314752995967865,-0.448586612939835,0.874205410480499,-0.185835972428322,-0.747288823127747,0.39790090918541,-0.532197594642639,0.58873051404953,0.770657181739807,0.243893399834633,0.295025557279587,0.922700643539429,0.248160183429718,-0.0685298591852188,0.950853586196899,0.301962107419968,0.269077509641647,0.941896677017212,0.201067417860031,-0.758258581161499,0.651363730430603,0.0277376659214497,0.329811781644821,0.942189335823059,-0.0591910555958748,-0.0860901325941086,-0.928241491317749,0.361878842115402,-0.50964093208313,-0.750678181648254,0.420414507389069,-0.870683610439301,-0.48563152551651,0.0779237300157547,-0.590233147144318,-0.370847791433334,-0.717005550861359,-0.758258581161499,0.651363730430603,0.0277376659214497,-0.590233147144318,-0.370847791433334,-0.717005550861359,0.295025557279587,0.922700643539429,0.248160183429718,0.58873051404953,0.770657181739807,0.243893399834633,0.269077509641647,0.941896677017212,0.201067417860031,-0.747288823127747,0.39790090918541,-0.532197594642639,-0.50964093208313,-0.750678181648254,0.420414507389069,-0.490274876356125,0.522640705108643,-0.697479248046875
- }
- 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.594129145145416,0.785921156406403,0.171285077929497,-0.405790030956268,0.911918759346008,0.0611445084214211,0.59380978345871,0.707571566104889,-0.383056700229645,0.213899180293083,0.951743125915527,0.220073118805885,-0.853758215904236,-0.357657730579376,0.378388464450836,0.137442097067833,0.876134932041168,0.462057560682297,0.480340927839279,-0.576216161251068,0.661246955394745,-0.918200969696045,0.201934739947319,0.340777605772018,0.756726145744324,-0.147698625922203,0.636828601360321,0.924750506877899,-0.194327160716057,-0.327220916748047,0.59380978345871,0.707571566104889,-0.383056700229645,0.684510707855225,-0.195491194725037,0.702302038669586,0.765471994876862,0.170860022306442,0.620370447635651,0.818779051303864,-0.573268115520477,-0.0310563780367374,0.414780825376511,-0.810133397579193,-0.414295494556427,0.494958251714706,-0.867926955223084,0.0414613485336304,0.59380978345871,0.707571566104889,-0.383056700229645,0.494958251714706,-0.867926955223084,0.0414613485336304,-0.918200969696045,0.201934739947319,0.340777605772018,-0.480340927839279,0.576216161251068,-0.661246955394745,0.924750506877899,-0.194327160716057,-0.327220916748047,0.137442097067833,0.876134932041168,0.462057560682297,0.818779051303864,-0.573268115520477,-0.0310563780367374,0.594129145145416,0.785921156406403,0.171285077929497
- }
- 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: *24 {
- a: 0.368979394435883,0.726312875747681,0.368979394435883,0.248475417494774,0.128186896443367,0.726312875747681,0.128186896443367,0.248475417494774,0.491557061672211,0.248475417494774,0.581865429878235,0.248475417494774,0.581865429878235,0.487394154071808,0.491557061672211,0.487394154071808,0.00980313401669264,0.248475417494774,0.00980313401669264,0.487394154071808,0.269301056861877,0.726312875747681,0.269301056861877,0.487394154071808
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,3,2,9,0,10,11,1,2,1,7,9,3,5,10,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
- }
- }
- }
- Model: 2403285677136, "Model::SM_Round_Tower_Window_03", "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: 2403285688736, "Model::LOD_Group_SM_Round_Tower_Window_03", "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: 2403285658576, "Model::SM_Round_Tower_Window_03_LOD0", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",0,0,8.08008137112536e-025
- P: "ScalingPivot", "Vector3D", "Vector", "",0,0,8.08008137112536e-025
- 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: 2403285670176, "Model::SM_Round_Tower_Window_03_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: 2403285691056, "Model::SM_Round_Tower_Window_03_LOD2", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",0,0,6.31088724176809e-030
- P: "ScalingPivot", "Vector3D", "Vector", "",0,0,6.31088724176809e-030
- 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: 2403285674816, "Model::UCX_SM_Round_Tower_Window_03_LOD0_020", "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: 2403285660896, "Model::UCX_SM_Round_Tower_Window_03_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: 2403285693376, "Model::UCX_SM_Round_Tower_Window_03_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: 2403285663216, "Model::UCX_SM_Round_Tower_Window_03_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: 2403285695696, "Model::UCX_SM_Round_Tower_Window_03_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"
- }
- Model: 2403285665536, "Model::UCX_SM_Round_Tower_Window_03_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: 2403285718896, "Model::UCX_SM_Round_Tower_Window_03_LOD0_06", "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: 2403285698016, "Model::UCX_SM_Round_Tower_Window_03_LOD0_07", "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: 2403285711936, "Model::UCX_SM_Round_Tower_Window_03_LOD0_08", "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: 2403285716576, "Model::UCX_SM_Round_Tower_Window_03_LOD0_09", "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: 2403285714256, "Model::UCX_SM_Round_Tower_Window_03_LOD0_010", "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: 2403285721216, "Model::UCX_SM_Round_Tower_Window_03_LOD0_011", "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: 2403285702656, "Model::UCX_SM_Round_Tower_Window_03_LOD0_012", "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: 2403285700336, "Model::UCX_SM_Round_Tower_Window_03_LOD0_013", "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: 2403285704976, "Model::UCX_SM_Round_Tower_Window_03_LOD0_014", "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: 2403285707296, "Model::UCX_SM_Round_Tower_Window_03_LOD0_015", "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: 2403285709616, "Model::UCX_SM_Round_Tower_Window_03_LOD0_016", "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: 2403285547216, "Model::UCX_SM_Round_Tower_Window_03_LOD0_017", "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: 2403285533296, "Model::UCX_SM_Round_Tower_Window_03_LOD0_018", "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: 2403285563456, "Model::UCX_SM_Round_Tower_Window_03_LOD0_019", "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: 2399452372576, "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: 2399452380736, "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: 2400478221152, "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: 2398849767872, "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: 2399065035360, "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: 2399065043760, "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: 2399065034960, "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: 2399065033360, "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: 2399065042560, "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"
- }
- Video: 2399065035760, "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"
- }
- Texture: 2400478222112, "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: 2400478212032, "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: 2399039476032, "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: 2399039478912, "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: 2400180261984, "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
- }
- Texture: 2400180262464, "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
- }
- AnimationStack: 2403841450576, "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: 2403255003456, "AnimLayer::BaseLayer", "" {
- }
- }
- ; Object connections
- ;------------------------------------------------------------------
- Connections: {
-
- ;Model::SM_Round_Tower_Window_03, Model::RootNode
- C: "OO",2403285677136,0
-
- ;AnimLayer::BaseLayer, AnimStack::Take 001
- C: "OO",2403255003456,2403841450576
-
- ;NodeAttribute::, Model::SM_Round_Tower_Window_03
- C: "OO",2403878874880,2403285677136
-
- ;Model::LOD_Group_SM_Round_Tower_Window_03, Model::SM_Round_Tower_Window_03
- C: "OO",2403285688736,2403285677136
-
- ;Model::UCX_SM_Round_Tower_Window_03_LOD0_020, Model::SM_Round_Tower_Window_03
- C: "OO",2403285674816,2403285677136
-
- ;Model::UCX_SM_Round_Tower_Window_03_LOD0_01, Model::SM_Round_Tower_Window_03
- C: "OO",2403285660896,2403285677136
-
- ;Model::UCX_SM_Round_Tower_Window_03_LOD0_02, Model::SM_Round_Tower_Window_03
- C: "OO",2403285693376,2403285677136
-
- ;Model::UCX_SM_Round_Tower_Window_03_LOD0_03, Model::SM_Round_Tower_Window_03
- C: "OO",2403285663216,2403285677136
-
- ;Model::UCX_SM_Round_Tower_Window_03_LOD0_04, Model::SM_Round_Tower_Window_03
- C: "OO",2403285695696,2403285677136
-
- ;Model::UCX_SM_Round_Tower_Window_03_LOD0_05, Model::SM_Round_Tower_Window_03
- C: "OO",2403285665536,2403285677136
-
- ;Model::UCX_SM_Round_Tower_Window_03_LOD0_06, Model::SM_Round_Tower_Window_03
- C: "OO",2403285718896,2403285677136
-
- ;Model::UCX_SM_Round_Tower_Window_03_LOD0_07, Model::SM_Round_Tower_Window_03
- C: "OO",2403285698016,2403285677136
-
- ;Model::UCX_SM_Round_Tower_Window_03_LOD0_08, Model::SM_Round_Tower_Window_03
- C: "OO",2403285711936,2403285677136
-
- ;Model::UCX_SM_Round_Tower_Window_03_LOD0_09, Model::SM_Round_Tower_Window_03
- C: "OO",2403285716576,2403285677136
-
- ;Model::UCX_SM_Round_Tower_Window_03_LOD0_010, Model::SM_Round_Tower_Window_03
- C: "OO",2403285714256,2403285677136
-
- ;Model::UCX_SM_Round_Tower_Window_03_LOD0_011, Model::SM_Round_Tower_Window_03
- C: "OO",2403285721216,2403285677136
-
- ;Model::UCX_SM_Round_Tower_Window_03_LOD0_012, Model::SM_Round_Tower_Window_03
- C: "OO",2403285702656,2403285677136
-
- ;Model::UCX_SM_Round_Tower_Window_03_LOD0_013, Model::SM_Round_Tower_Window_03
- C: "OO",2403285700336,2403285677136
-
- ;Model::UCX_SM_Round_Tower_Window_03_LOD0_014, Model::SM_Round_Tower_Window_03
- C: "OO",2403285704976,2403285677136
-
- ;Model::UCX_SM_Round_Tower_Window_03_LOD0_015, Model::SM_Round_Tower_Window_03
- C: "OO",2403285707296,2403285677136
-
- ;Model::UCX_SM_Round_Tower_Window_03_LOD0_016, Model::SM_Round_Tower_Window_03
- C: "OO",2403285709616,2403285677136
-
- ;Model::UCX_SM_Round_Tower_Window_03_LOD0_017, Model::SM_Round_Tower_Window_03
- C: "OO",2403285547216,2403285677136
-
- ;Model::UCX_SM_Round_Tower_Window_03_LOD0_018, Model::SM_Round_Tower_Window_03
- C: "OO",2403285533296,2403285677136
-
- ;Model::UCX_SM_Round_Tower_Window_03_LOD0_019, Model::SM_Round_Tower_Window_03
- C: "OO",2403285563456,2403285677136
-
- ;NodeAttribute::, Model::LOD_Group_SM_Round_Tower_Window_03
- C: "OO",2403873697696,2403285688736
-
- ;Model::SM_Round_Tower_Window_03_LOD0, Model::LOD_Group_SM_Round_Tower_Window_03
- C: "OO",2403285658576,2403285688736
-
- ;Model::SM_Round_Tower_Window_03_LOD1, Model::LOD_Group_SM_Round_Tower_Window_03
- C: "OO",2403285670176,2403285688736
-
- ;Model::SM_Round_Tower_Window_03_LOD2, Model::LOD_Group_SM_Round_Tower_Window_03
- C: "OO",2403285691056,2403285688736
-
- ;Texture::file4, Material::MI_Wall_01
- C: "OP",2400478222112,2399452372576, "DiffuseColor"
-
- ;Texture::file24, Material::MI_Wall_01
- C: "OP",2399039478912,2399452372576, "NormalMap"
-
- ;Texture::file18, Material::MI_Arch_01
- C: "OP",2400478212032,2399452380736, "DiffuseColor"
-
- ;Texture::file33, Material::MI_Arch_01
- C: "OP",2400180261984,2399452380736, "NormalMap"
-
- ;Texture::file71, Material::MI_Trim_02
- C: "OP",2399039476032,2400478221152, "DiffuseColor"
-
- ;Texture::file31, Material::MI_Trim_02
- C: "OP",2400180262464,2400478221152, "NormalMap"
-
- ;Video::file4, Texture::file4
- C: "OO",2399065035360,2400478222112
-
- ;Video::file18, Texture::file18
- C: "OO",2399065043760,2400478212032
-
- ;Video::file71, Texture::file71
- C: "OO",2399065034960,2399039476032
-
- ;Video::file24, Texture::file24
- C: "OO",2399065033360,2399039478912
-
- ;Video::file33, Texture::file33
- C: "OO",2399065042560,2400180261984
-
- ;Video::file31, Texture::file31
- C: "OO",2399065035760,2400180262464
-
- ;Geometry::, Model::SM_Round_Tower_Window_03_LOD0
- C: "OO",2399509529824,2403285658576
-
- ;Material::MI_Wall_01, Model::SM_Round_Tower_Window_03_LOD0
- C: "OO",2399452372576,2403285658576
-
- ;Material::MI_Arch_01, Model::SM_Round_Tower_Window_03_LOD0
- C: "OO",2399452380736,2403285658576
-
- ;Material::MI_Trim_02, Model::SM_Round_Tower_Window_03_LOD0
- C: "OO",2400478221152,2403285658576
-
- ;Geometry::, Model::SM_Round_Tower_Window_03_LOD1
- C: "OO",2399509529312,2403285670176
-
- ;Material::MI_Wall_01, Model::SM_Round_Tower_Window_03_LOD1
- C: "OO",2399452372576,2403285670176
-
- ;Material::MI_Trim_02, Model::SM_Round_Tower_Window_03_LOD1
- C: "OO",2400478221152,2403285670176
-
- ;Material::MI_Arch_01, Model::SM_Round_Tower_Window_03_LOD1
- C: "OO",2399452380736,2403285670176
-
- ;Geometry::, Model::SM_Round_Tower_Window_03_LOD2
- C: "OO",2399509538528,2403285691056
-
- ;Material::MI_Wall_01, Model::SM_Round_Tower_Window_03_LOD2
- C: "OO",2399452372576,2403285691056
-
- ;Material::MI_Trim_02, Model::SM_Round_Tower_Window_03_LOD2
- C: "OO",2400478221152,2403285691056
-
- ;Material::MI_Arch_01, Model::SM_Round_Tower_Window_03_LOD2
- C: "OO",2399452380736,2403285691056
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Window_03_LOD0_020
- C: "OO",2399509530336,2403285674816
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Window_03_LOD0_020
- C: "OO",2398849767872,2403285674816
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Window_03_LOD0_01
- C: "OO",2399509523680,2403285660896
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Window_03_LOD0_01
- C: "OO",2398849767872,2403285660896
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Window_03_LOD0_02
- C: "OO",2399509543136,2403285693376
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Window_03_LOD0_02
- C: "OO",2398849767872,2403285693376
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Window_03_LOD0_03
- C: "OO",2399509540576,2403285663216
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Window_03_LOD0_03
- C: "OO",2398849767872,2403285663216
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Window_03_LOD0_04
- C: "OO",2399509540064,2403285695696
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Window_03_LOD0_04
- C: "OO",2398849767872,2403285695696
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Window_03_LOD0_05
- C: "OO",2399509523168,2403285665536
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Window_03_LOD0_05
- C: "OO",2398849767872,2403285665536
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Window_03_LOD0_06
- C: "OO",2399509541600,2403285718896
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Window_03_LOD0_06
- C: "OO",2398849767872,2403285718896
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Window_03_LOD0_07
- C: "OO",2399509521632,2403285698016
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Window_03_LOD0_07
- C: "OO",2398849767872,2403285698016
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Window_03_LOD0_08
- C: "OO",2399509544160,2403285711936
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Window_03_LOD0_08
- C: "OO",2398849767872,2403285711936
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Window_03_LOD0_09
- C: "OO",2399509544672,2403285716576
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Window_03_LOD0_09
- C: "OO",2398849767872,2403285716576
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Window_03_LOD0_010
- C: "OO",2399509542624,2403285714256
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Window_03_LOD0_010
- C: "OO",2398849767872,2403285714256
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Window_03_LOD0_011
- C: "OO",2399509546208,2403285721216
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Window_03_LOD0_011
- C: "OO",2398849767872,2403285721216
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Window_03_LOD0_012
- C: "OO",2399509525216,2403285702656
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Window_03_LOD0_012
- C: "OO",2398849767872,2403285702656
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Window_03_LOD0_013
- C: "OO",2399509545696,2403285700336
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Window_03_LOD0_013
- C: "OO",2398849767872,2403285700336
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Window_03_LOD0_014
- C: "OO",2399509546720,2403285704976
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Window_03_LOD0_014
- C: "OO",2398849767872,2403285704976
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Window_03_LOD0_015
- C: "OO",2399509543648,2403285707296
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Window_03_LOD0_015
- C: "OO",2398849767872,2403285707296
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Window_03_LOD0_016
- C: "OO",2399509550816,2403285709616
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Window_03_LOD0_016
- C: "OO",2398849767872,2403285709616
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Window_03_LOD0_017
- C: "OO",2399509542112,2403285547216
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Window_03_LOD0_017
- C: "OO",2398849767872,2403285547216
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Window_03_LOD0_018
- C: "OO",2399509547744,2403285533296
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Window_03_LOD0_018
- C: "OO",2398849767872,2403285533296
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Window_03_LOD0_019
- C: "OO",2399509548256,2403285563456
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Window_03_LOD0_019
- C: "OO",2398849767872,2403285563456
- }
- ;Takes section
- ;----------------------------------------------------
- Takes: {
- Current: "Take 001"
- Take: "Take 001" {
- FileName: "Take_001.tak"
- LocalTime: 1539538600,46186158000
- ReferenceTime: 1539538600,46186158000
- }
- }
|