diff --git a/src/lib/components/SearchResults.svelte b/src/lib/components/SearchResults.svelte index a5aef52..5496c81 100644 --- a/src/lib/components/SearchResults.svelte +++ b/src/lib/components/SearchResults.svelte @@ -1,6 +1,7 @@ {#if results.length > 0} @@ -26,8 +31,8 @@ {#each results as result}
  • - {slugToTitle(result.poem.id)} -

    (Relevance: {(result.similarity * 100).toFixed(3)})%

    + {slugToTitle(result.poem.id)} +

    (Relevance: {(result.similarity * 100).toFixed(3)}%)

  • {/each} diff --git a/src/lib/utils/PoetryLayout.svelte b/src/lib/utils/PoetryLayout.svelte index 25db87a..6a081d0 100644 --- a/src/lib/utils/PoetryLayout.svelte +++ b/src/lib/utils/PoetryLayout.svelte @@ -1,5 +1,4 @@ + + + +
    + +
    diff --git a/src/lib/utils/index.ts b/src/lib/utils/index.ts index 230d9cc..eafd47a 100644 --- a/src/lib/utils/index.ts +++ b/src/lib/utils/index.ts @@ -3,7 +3,7 @@ export interface Metadata { date: string; content: string; categories?: string[]; - section?: SectionKey; + draft?: boolean; } export interface Section { @@ -41,7 +41,7 @@ export const fetchMarkdownPosts = async ( section: SectionKey, limit: number, offset: number -): Promise<{posts: Post[], total: number}> => { +): Promise<{ posts: Post[]; total: number }> => { let posts: Record Promise>; switch (section) { case 'poetry': @@ -50,33 +50,51 @@ export const fetchMarkdownPosts = async ( case 'projects': posts = import.meta.glob('/src/routes/(app)/projects/posts/*.md'); break; - case 'thoughts': - posts = import.meta.glob('/src/routes/(app)/thoughts/posts/*.md'); + case 'thoughts': + posts = import.meta.glob('/src/posts/thoughts/*.md'); + console.log(posts); break; default: throw new Error('Could not find this section'); } const iterablePostFiles = Object.entries(posts); + const postsWithErrors: string[] = []; + const allPosts = await Promise.all( iterablePostFiles.map(async ([path, resolver]) => { - const data = await resolver(); - if (isData(data)) { - const { metadata } = data; - const postPath = path.slice(11, -3); - return { - meta: { ...metadata, section: section }, - path: postPath - }; - } else { - throw new Error('Could not properly parse this post'); + try { + const data = await resolver(); + if (isData(data)) { + if (data.metadata.draft) { + return undefined; + } + const { metadata } = data; + const postPath = path.slice(11, -3); + return { + meta: { ...metadata }, + path: postPath + }; + } else { + console.error('Could not properly parse this post'); + postsWithErrors.push(path); + } + } catch (error) { + console.error(`Error parsing post at ${path}: ${error}`); + postsWithErrors.push(path); } }) ); - const sortedPosts = allPosts.sort((a, b) => new Date(a.meta.date).getTime() - new Date(b.meta.date).getTime() ); + console.log('Files that could not be properly parsed:', postsWithErrors); + + const sortedPosts: Post[] = allPosts + .filter((post): post is Post => post !== undefined) + .sort( + (b, a) => new Date(a?.meta.date || '').getTime() - new Date(b?.meta.date || '').getTime() + ); const paginatedPosts = sortedPosts.slice(offset, offset + limit); - return {posts: paginatedPosts, total: allPosts.length}; + return { posts: paginatedPosts, total: allPosts.length }; }; diff --git a/src/lib/utils/poetry/embeddings.json b/src/lib/utils/poetry/embeddings.json index 86a2254..ff0c870 100644 --- a/src/lib/utils/poetry/embeddings.json +++ b/src/lib/utils/poetry/embeddings.json @@ -1 +1 @@ -[{"id":"autumn-synesthesia","vector":[-0.0009469242068007588,-0.025592448189854622,-0.02982250414788723,0.05529548227787018,-0.055311162024736404,0.01823318935930729,-0.04277241975069046,-0.07873193919658661,0.03572310879826546,0.023538503795862198,0.01781570538878441,-0.01580873504281044,0.010334138758480549,0.039292607456445694,-0.05772925168275833,-0.007223755586892366,-0.025257127359509468,-0.06212465092539787,-0.024421516805887222,0.035596612840890884,-0.0048319026827812195,-0.04063620790839195,0.01710357330739498,-0.026128990575671196,0.03066772222518921,-0.015815727412700653,0.006204413250088692,-0.04504794254899025,-0.06310969591140747,-0.04746004939079285,0.05447480455040932,-0.06801807135343552,-0.06687604635953903,-0.03642495721578598,0.038239460438489914,0.06336034834384918,-0.03838101029396057,0.010027249343693256,0.06039785221219063,-0.03966421261429787,-0.011599015444517136,0.024695279076695442,0.08129314333200455,-0.05095875635743141,-0.01069137454032898,0.023534316569566727,-0.043274927884340286,-0.027516966685652733,0.06698542088270187,0.06477110832929611,0.01827208139002323,-0.04369008168578148,0.030571462586522102,-0.03195515275001526,0.018940944224596024,-0.06303281337022781,0.06740789860486984,0.013534589670598507,0.0391840897500515,-0.07907924801111221,-0.07563062012195587,-0.0641959011554718,-0.04544571042060852,-0.03610275685787201,-0.06028696149587631,-0.005717538762837648,0.09148110449314117,0.04250574856996536,0.08576789498329163,-0.04043261706829071,-0.030061431229114532,-0.05384809151291847,-0.020761987194418907,-0.020287932828068733,-0.05542543902993202,-0.03305855765938759,-0.004404027014970779,-0.04245293140411377,0.02001292258501053,0.059097595512866974,0.0006538371671922505,0.04912940040230751,-0.016203738749027252,-0.022410640493035316,-0.05008560046553612,0.0459856316447258,0.04123934730887413,0.053359001874923706,-0.032698411494493484,0.022727085277438164,0.007879351265728474,0.009590741246938705,-0.06565110385417938,0.0470498688519001,-0.037244316190481186,0.034966833889484406,-0.08505042642354965,0.010376883670687675,-0.03296854346990585,-0.06537391245365143,-0.07506831735372543,0.05320054292678833,0.0019319336861371994,0.021584074944257736,-0.0063488115556538105,-0.007926756516098976,-0.061573319137096405,0.06702972203493118,0.05477234721183777,-0.00716707669198513,-0.01496932189911604,-0.05065407603979111,0.028869090601801872,-0.029608573764562607,-0.011387023143470287,0.05315873399376869,0.0617678128182888,0.058134179562330246,-0.023336995393037796,0.0614168755710125,-0.06612953543663025,-0.06704782694578171,0.046331800520420074,-0.0690346285700798,-0.0052311900071799755,-0.03175797313451767,0.02247357927262783,0.059517938643693924,0.04124736785888672,-0.03196452185511589,-0.051408395171165466,-0.0436924546957016,-0.04690060019493103,0.00348744192160666,-0.03321176767349243,-0.07091787457466125,0.030695408582687378,-0.06637079268693924,-0.009793947450816631,-0.028471287339925766,0.005057459231466055,-0.053719207644462585,0.0368182472884655,0.07090208679437637,-0.009972400031983852,0.017830006778240204,0.026543032377958298,-0.02569395676255226,-0.008618569932878017,0.031481869518756866,-0.052336860448122025,-0.004138092044740915,-0.06634997576475143,-0.004741272889077663,-0.029067011550068855,-0.018033014610409737,0.050503939390182495,-0.03558679297566414,0.0750475823879242,-0.06047510728240013,-0.035264745354652405,-0.04787785932421684,0.04051060229539871,0.01748606376349926,0.05569477379322052,0.051587510854005814,0.05437029153108597,-0.05704189091920853,0.020363248884677887,0.041842348873615265,-0.0421954020857811,-0.013576473109424114,0.007604870013892651,0.00014825027028564364,-0.030034031718969345,0.0504058338701725,-0.04214748740196228,0.07760623842477798,0.08155199885368347,0.06882321089506149,-0.060966432094573975,0.07536431401968002,0.00030030461493879557,0.022752560675144196,-0.007618179079145193,0.054839879274368286,0.013672759756445885,0.055075738579034805,0.04949701204895973,-0.01823158748447895,-0.04387378320097923,0.026790764182806015,0.008587735705077648,-0.029751919209957123,0.07577050477266312,-0.06854405254125595,-0.055436939001083374,-0.0251526590436697,-0.007374595385044813,0.07980275899171829,-0.027031200006604195,-0.015185434371232986,-0.0052292849868535995,0.003247903659939766,-0.05062175169587135,-0.05092160403728485,0.027963917702436447,-0.02113175019621849,0.029418453574180603,0.07469775527715683,-0.0007843029452487826,0.00742902047932148,0.06645277142524719,-0.004362809006124735,0.051830146461725235,-0.027185361832380295,-0.02875077724456787,0.013389583677053452,0.06787429004907608,-0.03501506522297859,0.048072826117277145,-0.0402514711022377,0.04463295638561249,-0.019168183207511902,0.010922292247414589,0.01842932030558586,-0.04558636248111725,0.011633053421974182,0.030676955357193947,0.028603162616491318,-0.019166026264429092,0.03236149251461029,0.043343547731637955,-0.008237296715378761,0.026839714497327805,0.0660908967256546,0.030960245057940483,0.017043299973011017,-0.0305530596524477,-0.07066799700260162,-0.035412661731243134,-0.016171423718333244,0.004558112937957048,-0.07075236737728119,-0.00343345501460135,-0.04550093784928322,-0.01949971728026867,0.019324330613017082,0.0058939396403729916,-0.06019230931997299,0.004561243578791618,-0.06931246817111969,0.056980542838573456,-0.07843891531229019,-0.002542541828006506,-0.018886512145400047,-0.030550360679626465,-0.05538896098732948,-0.03910443186759949,0.04536592215299606,-0.034258678555488586,0.023522943258285522,0.004313136916607618,-0.04546303302049637,-0.022905468940734863,0.0236723180860281,0.011981375515460968,0.01877153478562832,-0.0163376796990633,-0.002068466041237116,0.05483603850007057,-0.07421063631772995,0.05251976102590561,0.0029675657860934734,0.024360686540603638,0.08624565601348877,-0.03366507962346077,0.0723244696855545,0.0018387931631878018,-0.025606494396924973,0.07772809267044067,0.06639467924833298,-0.009307020343840122,-0.04103904217481613,-0.06181352958083153,-0.05593174695968628,-0.058455027639865875,0.05672789365053177,-0.03203811123967171,-0.055654678493738174,-0.009076589718461037,-0.0450446680188179,0.009563399478793144,-0.009066537022590637,-0.05002604052424431,-0.06284486502408981,0.07048731297254562,-0.00949764996767044,0.061239633709192276,0.049496717751026154,0.007564396597445011,0.030750567093491554,0.0009656377951614559,0.022396164014935493,0.021446453407406807,0.014389757066965103,0.03354128822684288,0.04947911202907562,-0.06533706933259964,-0.08135067671537399,0.013647371903061867,0.007981727831065655,0.010215130634605885,0.023480921983718872,-0.05282182991504669,-0.06827419996261597,0.03584539145231247,-0.018144754692912102,-0.04396155849099159,-0.04849999397993088,-0.07217024266719818,0.04636891931295395,-0.06236663833260536,0.01226801984012127,0.06386501342058182,0.004682477097958326,-0.01489341538399458,0.011035148054361343,0.008828185498714447,-0.03903481736779213,-0.014257978647947311,-0.042755987495183945,-0.042025260627269745,-0.007272185292094946,0.03166288882493973,-0.029443182051181793,0.08941849321126938,0.07063030451536179,0.013309535570442677,0.0123191699385643,-0.03619019687175751,0.005459335632622242,0.05612919107079506,0.03850078582763672,0.01073081512004137,0.009439963847398758,-0.05360041931271553,0.03455938398838043,0.0276844073086977,0.030298899859189987,-0.06296499073505402,0.07499904185533524,-0.008102170191705227,-0.012605078518390656,-0.02310192584991455,0.056161679327487946,-0.05533349886536598,-0.0635027065873146,0.05181999132037163,0.010605505667626858,0.02864079177379608,0.02268707938492298,0.03256412595510483,-0.032809946686029434,0.04596753045916557,0.03927559033036232,-0.03666003420948982,-0.05039643496274948,-0.0517033115029335,-0.036943405866622925,-0.06600306183099747,0.03336089849472046,0.010813622735440731,-0.07329097390174866,-0.07825476676225662,0.047358375042676926,-0.034048791974782944,0.05997853726148605,0.04150688648223877,0.052093181759119034,-0.005427379161119461,0.002805519150570035,-0.0533023364841938,0.027431227266788483,0.0674055814743042,-0.02470504678785801,0.06340828537940979,-0.03873373195528984,-0.033930353820323944,-0.08199609071016312,-0.07112206518650055,-0.03697874769568443,-0.04071809723973274,-0.0030242674984037876,0.06620465219020844,0.05517391487956047,0.023099448531866074,-0.06190209835767746,-0.04325541853904724,-0.06666087359189987,-0.031247993931174278,0.06443573534488678,0.014368037693202496,0.050414133816957474,-0.03779180720448494,-0.030604049563407898,0.012534781359136105,-0.0804833471775055,0.07471168041229248,-0.04154272750020027,0.06894052028656006,-0.01985577493906021,0.048877011984586716,-0.003461133223026991,-0.0016004386125132442,0.06558690965175629,0.03521222621202469,-0.011927795596420765,0.07196112722158432,0.06582685559988022,-0.061599958688020706,0.05341736972332001,0.03719647601246834,-0.0639033392071724,-0.07294385135173798,-0.0450095571577549,-0.03891938179731369,-0.0638817772269249,-0.04171599820256233,0.06035976856946945,-0.0036423946730792522,0.014163153246045113,-0.025890571996569633,-0.06147424504160881,0.050164710730314255,0.07696247100830078,-0.07197313755750656,0.03240498527884483,-0.01948879100382328,0.011363082565367222,0.01646103896200657,-0.031971678137779236,0.043046433478593826,0.03154616802930832,-0.03140054643154144,0.03366849943995476,0.08751168102025986,-0.058805856853723526,0.04233696311712265,0.019117051735520363,0.015235265716910362,-0.0540480874478817,-0.014271913096308708,0.047375258058309555,0.01600213162600994,-0.07660454511642456,-0.019721204414963722,0.001889432780444622,0.04922790452837944,-0.06501416862010956,0.027758372947573662,-0.04698238521814346,0.024266349151730537,0.042987946420907974,-0.05627603828907013,0.03550703823566437,0.01569693721830845,0.0233472790569067,-0.028609352186322212,-0.04918795824050903,0.0360228568315506,0.0556359738111496,0.03073214553296566,-0.004150213208049536,-0.03171173110604286,0.016776325181126595,0.06966499984264374,0.04661933332681656,0.03823121264576912,0.04420166462659836,-0.0241850595921278,-0.031202735379338264,-0.06890403479337692,0.00949123315513134,-0.028718894347548485,0.03212381526827812,0.020356547087430954,-0.05826079100370407,-0.05510418117046356,-0.015037254430353642,-0.0010702426079660654,-0.06126098334789276,-0.08990637958049774,0.028566423803567886,0.054348964244127274,0.0014996144454926252,0.07193058729171753,-0.05843852832913399,0.06814269721508026,0.010405405424535275,-0.017247043550014496,0.05384412780404091,-0.024070968851447105,-0.012923833914101124,-0.004461882635951042,-0.026915613561868668,0.028119806200265884,0.009978479705750942,-0.08167007565498352,-0.08153244107961655,0.037000276148319244,0.04565665125846863]},{"id":"breakfast-blue-pt.-2","vector":[0.02184704877436161,-0.010597093030810356,0.008626558817923069,0.02193661406636238,-0.045877475291490555,0.060230884701013565,-0.000032237108825938776,-0.04742572084069252,0.011139311827719212,-0.012835672125220299,0.02022165060043335,0.006778099108487368,-0.015952523797750473,0.0021288925781846046,-0.07406169176101685,0.00451224809512496,-0.050945572555065155,-0.060984980314970016,-0.03234310820698738,0.0010929710697382689,0.01309316884726286,-0.04425419121980667,0.024674315005540848,-0.04142221435904503,0.04663312807679176,-0.024877415969967842,-0.019235897809267044,0.012143761850893497,-0.03654662147164345,-0.06290216743946075,0.05644848942756653,-0.0575222410261631,-0.002923839958384633,-0.04580096900463104,0.04007129371166229,-0.025919344276189804,-0.06397542357444763,0.010201969183981419,0.07274303585290909,-0.06064942479133606,-0.04308997094631195,-0.003518784884363413,0.07063621282577515,-0.03811241313815117,-0.00822592992335558,-0.016190167516469955,-0.06489569693803787,0.01297268271446228,0.0405333936214447,0.038688041269779205,0.035885583609342575,-0.025820797309279442,0.013393950648605824,-0.015460650436580181,-0.0020238393917679787,-0.045782603323459625,0.02156832627952099,0.024950549006462097,0.04015297070145607,-0.06513222306966782,-0.07007694244384766,0.003968884237110615,-0.03101762756705284,0.006926521193236113,-0.019688095897436142,-0.016106368973851204,0.08580261468887329,0.028038617223501205,0.08908035606145859,-0.061889469623565674,-0.042020250111818314,-0.007425888907164335,0.011372559703886509,-0.016909578815102577,-0.06539402902126312,-0.062432944774627686,0.035026103258132935,-0.004413480404764414,0.007963006384670734,0.06701254099607468,0.027212070301175117,0.019998950883746147,0.009436303749680519,0.01106561440974474,-0.033566366881132126,0.05033828318119049,0.017205946147441864,0.07591938227415085,-0.07164831459522247,0.061301909387111664,-0.05526720732450485,-0.049950022250413895,-0.025981122627854347,0.02957804873585701,-0.028822874650359154,0.034320611506700516,-0.07055571675300598,-0.00026714400155469775,-0.019587500020861626,-0.06587906181812286,-0.08297379314899445,-0.0055857268162071705,-0.027677861973643303,0.04943307861685753,-0.02406352385878563,-0.0019461469491943717,-0.058910541236400604,0.061354074627161026,0.07938278466463089,0.009029235690832138,-0.023910827934741974,-0.07067310065031052,0.030579904094338417,-0.05397453531622887,0.0012126285582780838,0.056668784469366074,-0.0072992052882909775,0.028047695755958557,-0.07933484017848969,0.034451499581336975,-0.021086344495415688,-0.07581917196512222,0.0012905100593343377,-0.0596681647002697,-0.031846024096012115,0.01880352385342121,-0.027579832822084427,0.057877250015735626,0.044272758066654205,-0.05470418557524681,-0.01880519464612007,-0.03592825308442116,-0.022561747580766678,0.0546962134540081,-0.03073797933757305,-0.07600197941064835,0.018277892842888832,-0.06500405818223953,-0.001958870328962803,0.04395630955696106,0.024207502603530884,-0.06366339325904846,0.04504966363310814,0.07439650595188141,-0.05940355360507965,-0.03216206282377243,0.05775437876582146,0.029324650764465332,-0.014972317963838577,0.02977195382118225,-0.012733210809528828,0.02566542848944664,-0.07992357760667801,-0.04740375652909279,-0.022414078935980797,-0.012065161019563675,0.051464248448610306,-0.05955807864665985,0.06308147311210632,-0.07267051935195923,0.034197840839624405,-0.023330194875597954,0.04963720589876175,-0.04460161179304123,0.03987789899110794,0.01583273522555828,0.01930234208703041,-0.05119748041033745,0.005167416296899319,0.06166473403573036,-0.04599450156092644,0.009900679811835289,-0.0390017069876194,0.07397245615720749,-0.016917984932661057,0.013628242537379265,-0.07068023830652237,0.07845128327608109,0.0803598165512085,0.048287924379110336,-0.04188670963048935,0.08632366359233856,0.018106946721673012,0.01776675507426262,0.022533833980560303,0.04271131008863449,0.043250296264886856,0.04146179184317589,0.05092143639922142,-0.05078404024243355,-0.0045505124144256115,-0.005024928133934736,-0.05493323877453804,-0.003201028797775507,0.07805892080068588,-0.05479446053504944,-0.012806346639990807,-0.012667424976825714,0.021088317036628723,0.08519718050956726,-0.014159047044813633,0.0430021807551384,0.0804641842842102,0.028899269178509712,-0.003327359678223729,-0.041035108268260956,0.026540594175457954,0.00029384135268628597,0.034774113446474075,0.07463601976633072,0.00139569491147995,-0.04878230765461922,0.065337635576725,0.0037555412854999304,0.07779708504676819,-0.020981362089514732,-0.004966904409229755,0.006359878461807966,0.06485678255558014,-0.021770039573311806,0.02589801885187626,-0.02008013054728508,-0.00775069510564208,-0.06978671252727509,0.039532557129859924,-0.0344402939081192,-0.04108312726020813,0.03731082007288933,0.037004563957452774,0.04438042640686035,0.008990027941763401,0.045939765870571136,0.01581224985420704,0.01645960658788681,0.032768312841653824,0.03093397617340088,0.033780843019485474,0.06898479908704758,-0.01080303080379963,0.04760029911994934,-0.06447955965995789,-0.04063723236322403,0.03800775110721588,-0.02615293115377426,-0.01137159951031208,-0.040944986045360565,0.03767819330096245,0.03520967811346054,0.012710965238511562,-0.00218858546577394,0.051608841866254807,-0.067048080265522,0.028407098725438118,-0.06900279968976974,0.006855184677988291,-0.01845754124224186,-0.026888541877269745,-0.05152006819844246,-0.029945211485028267,0.07692059129476547,-0.025031642988324165,0.007372197695076466,-0.00767822889611125,-0.06885862350463867,0.014915432780981064,-0.01826043240725994,0.02746306173503399,-0.05812638998031616,-0.030454307794570923,-0.0396006777882576,0.06473050266504288,-0.06443528831005096,0.05648454651236534,0.0016831528628244996,-0.002470152685418725,0.08552271872758865,-0.028156418353319168,0.013845251873135567,-0.01894562505185604,-0.007136401254683733,0.07912984490394592,0.06114816293120384,0.030982665717601776,0.002816631691530347,-0.038524314761161804,-0.04653036966919899,-0.08169440925121307,-0.006081869825720787,-0.05540642514824867,-0.04406455159187317,-0.0467427633702755,-0.03188135474920273,0.04367506876587868,-0.0037693120539188385,0.007578896824270487,-0.028796812519431114,0.06622569262981415,-0.005849206354469061,0.0382792204618454,0.04424834996461868,0.006103272084146738,0.039344970136880875,-0.0016551654553040862,0.02045898698270321,0.025218484923243523,0.01345119345933199,0.06945177167654037,0.0193362794816494,-0.053495731204748154,-0.08317109197378159,-0.0208517424762249,0.007474835030734539,-0.012387906201183796,0.07757740467786789,-0.07718728482723236,-0.03179031237959862,0.06962112337350845,0.001871995977126062,-0.03690533712506294,-0.04837910830974579,-0.08746267110109329,0.0301786158233881,-0.03490570932626724,-0.02871944196522236,0.029928676784038544,0.036184199154376984,-0.027281049638986588,0.011828800663352013,0.03719670698046684,-0.05775347724556923,-0.021478354930877686,-0.03476456180214882,-0.06362061202526093,0.024748673662543297,0.050047922879457474,-0.03586467355489731,0.07782889157533646,0.08154014497995377,-0.002931385999545455,0.004611528944224119,0.000798085646238178,0.01719854213297367,0.06523203104734421,0.013098969124257565,0.04757000133395195,0.048799168318510056,-0.05436060577630997,0.046286873519420624,0.03304339945316315,0.043944165110588074,-0.0840642973780632,0.06312695890665054,0.005714123602956533,0.005683624651283026,-0.0013703989097848535,0.05519089475274086,-0.025403564795851707,-0.07388176769018173,-0.0014237979194149375,0.04279600828886032,0.03339753299951553,-0.02538374252617359,0.053957656025886536,-0.03305191546678543,0.018128380179405212,0.04204650968313217,-0.0379086397588253,-0.07362549751996994,-0.011038370430469513,-0.056761741638183594,-0.05936935916543007,0.014625921845436096,0.04313555732369423,-0.07365082949399948,-0.07687626779079437,-0.0018581693293526769,0.008361023850739002,0.04897214099764824,0.033525366336107254,0.0013603904517367482,0.005366493482142687,0.053152941167354584,-0.03110772743821144,0.036779601126909256,0.0400087796151638,-0.022949837148189545,0.0655774399638176,-0.026903698220849037,-0.04893392324447632,-0.061714887619018555,-0.06035315617918968,-0.023366905748844147,-0.0028529183473438025,-0.0075827706605196,0.07424155622720718,0.03517349064350128,0.03789011016488075,-0.08325113356113434,-0.05409695580601692,-0.05928557366132736,-0.036669034510850906,0.0691492110490799,0.017960038036108017,0.05521117523312569,0.012497971765697002,-0.04496818408370018,0.06626327335834503,-0.07462002336978912,0.08116668462753296,-0.031231753528118134,0.0748877078294754,0.03394347429275513,0.01049082912504673,-0.010591448284685612,0.015115909278392792,-0.006712491158396006,0.019958017393946648,-0.049630533903837204,0.07481584697961807,0.05101455748081207,-0.04740205407142639,0.032890684902668,0.008678101934492588,-0.05516102537512779,-0.06462378799915314,0.003967457916587591,-0.06303306668996811,-0.07167380303144455,-0.0685906782746315,0.07673730701208115,-0.010205020196735859,0.01655530370771885,0.007407764438539743,-0.006197961512953043,-0.0008636053535155952,0.08248388022184372,-0.05726560950279236,0.04005540907382965,-0.03936411812901497,0.014292786829173565,-0.07677318900823593,-0.007087985519319773,0.0601549856364727,0.024854488670825958,-0.07508499175310135,0.07636505365371704,0.0876045823097229,-0.07637277245521545,0.0675668716430664,-0.04425375908613205,0.0007345146732404828,-0.05821031704545021,0.007088890764862299,0.01037632580846548,0.05285011976957321,-0.07622616738080978,-0.006117837969213724,0.03599800914525986,0.053086988627910614,-0.06979436427354813,0.01576327718794346,-0.05412003770470619,-0.005885370075702667,0.007750765420496464,-0.02124234288930893,0.0338577963411808,-0.05801538750529289,0.03402458131313324,-0.039649322628974915,-0.06027338281273842,0.012360002845525742,0.06193309277296066,0.01602199859917164,-0.03357219323515892,0.02713429369032383,0.03452679514884949,0.003129109274595976,0.021956102922558784,0.03735822066664696,0.07768267393112183,-0.028470922261476517,-0.019005563110113144,-0.05644368752837181,-0.00047457418986596167,-0.00975197646766901,0.0523945651948452,0.000784661213401705,-0.04409852996468544,-0.06350196897983551,-0.014575349166989326,-0.000923532119486481,-0.030360834673047066,-0.04522736743092537,0.012784275226294994,0.06751444190740585,-0.028668738901615143,0.00004518682180787437,-0.057668182998895645,0.0695098489522934,-0.005781201645731926,0.018822092562913895,0.05233050137758255,-0.04045579209923744,0.014207597821950912,0.01936163194477558,-0.03162531182169914,0.04372682049870491,0.033562786877155304,-0.0642656460404396,-0.07502257078886032,0.03089834377169609,0.04245935007929802]},{"id":"breakfast-blues","vector":[0.038838114589452744,-0.029280489310622215,0.0009089073864743114,-0.020794469863176346,-0.029260115697979927,0.016038207337260246,0.0034716958180069923,-0.054801974445581436,0.027736974880099297,0.014811026863753796,0.01850958913564682,-0.0030886961612850428,-0.009408918209373951,-0.011709380894899368,-0.06686830520629883,-0.0037123553920537233,-0.057952772825956345,-0.04800098016858101,-0.04126720875501633,0.02427504025399685,0.0025193567853420973,-0.03184792771935463,0.016643784940242767,-0.03419271111488342,0.031936731189489365,0.015300502069294453,-0.026969291269779205,-0.03284867852926254,-0.04404531419277191,-0.04530315846204758,0.06658408790826797,-0.08509394526481628,-0.018164509907364845,-0.02206161431968212,0.034761518239974976,-0.009715856984257698,-0.04960153251886368,0.049842894077301025,0.07785190641880035,-0.044017281383275986,-0.03355160355567932,-0.02321573905646801,0.04968792200088501,-0.07641521096229553,0.0016099957283586264,0.003017518436536193,-0.05919169634580612,0.0039353324100375175,0.029165256768465042,0.06017566844820976,0.06095173582434654,-0.03255076706409454,0.03148149698972702,-0.04537614434957504,-0.02844628505408764,-0.028384273871779442,0.018235616385936737,0.00968253705650568,0.017055561766028404,-0.07335218042135239,-0.04803894832730293,0.014104492031037807,-0.04236787185072899,0.03677787259221077,0.004160699900239706,0.02025502547621727,0.08469943702220917,-0.019434697926044464,0.08668307960033417,-0.06509160250425339,-0.04499655216932297,-0.04387766495347023,0.005072878208011389,-0.006690738722681999,-0.08022188395261765,-0.05996079742908478,0.010920724831521511,-0.004517263732850552,-0.024064376950263977,0.07612497359514236,0.022195497527718544,0.03869150951504707,0.014643051661550999,0.02159593254327774,-0.046570438891649246,0.0556802898645401,-0.0029930646996945143,0.06098264083266258,-0.07711159437894821,0.07385037839412689,-0.05774911493062973,0.002000646200031042,-0.05667528882622719,0.05995958670973778,-0.010760259814560413,0.02470310404896736,-0.07108917832374573,-0.03651226684451103,-0.038536738604307175,-0.07881303876638412,-0.08203382790088654,-0.02714921347796917,-0.01810595951974392,0.034864701330661774,-0.026157837361097336,-0.007229387294501066,-0.061552610248327255,0.07150458544492722,0.050839610397815704,0.03368567302823067,-0.012070602737367153,-0.078331857919693,0.0037360619753599167,-0.06785926222801208,-0.054123103618621826,0.04772335663437843,-0.013496086932718754,0.037319134920835495,-0.07548945397138596,0.042770132422447205,0.00860122125595808,-0.06590169668197632,0.03752819448709488,-0.05461324006319046,-0.03589063137769699,0.03213179111480713,-0.03704351186752319,0.029898127540946007,0.004313160199671984,-0.060819171369075775,-0.06930810958147049,-0.02342970483005047,-0.02720283903181553,0.05488663539290428,-0.03162011131644249,-0.07399917393922806,0.010515665635466576,-0.08431772142648697,-0.030753575265407562,0.02783116139471531,0.014330330304801464,-0.04563625529408455,0.050189707428216934,0.0436762310564518,-0.0035357859451323748,-0.006153078284114599,0.04437696561217308,0.06579147279262543,-0.014270545914769173,0.03787149861454964,-0.013737107627093792,0.0014570283237844706,-0.06453831493854523,-0.03886142000555992,-0.04017147794365883,0.0027234572917222977,0.04245997965335846,-0.06164034828543663,0.029494132846593857,-0.06742382794618607,0.012340854853391647,-0.022429415956139565,0.035875871777534485,-0.008002136833965778,0.017817772924900055,0.04165394604206085,-0.004575779661536217,-0.028596168383955956,0.015529266558587551,0.057578958570957184,-0.039563145488500595,-0.0031278496608138084,0.009043796919286251,0.055027954280376434,-0.0033796075731515884,0.015281347557902336,-0.05525827407836914,0.08000925183296204,0.08056345582008362,0.07828597724437714,-0.041923850774765015,0.08633364737033844,0.05485082045197487,0.007173315156251192,0.04877933859825134,0.06219368800520897,0.028145572170615196,0.05500318109989166,0.041525088250637054,-0.06307236850261688,0.0009587461827322841,0.003823717823252082,-0.05402037128806114,-0.016838276758790016,0.0571589395403862,-0.06051263585686684,-0.039261218160390854,0.01602819189429283,0.014432310126721859,0.08808421343564987,-0.014837929047644138,0.02777950093150139,0.037980370223522186,0.018533647060394287,-0.030897192656993866,-0.04609518125653267,0.045964278280735016,-0.01600981131196022,0.02525879442691803,0.08687733113765717,0.01123063825070858,-0.015533068217337132,0.06121233105659485,0.006686934269964695,0.08186591416597366,0.016704417765140533,-0.018226543441414833,-0.0002501810959074646,0.05039057508111,-0.001857886090874672,0.045565374195575714,-0.027266371995210648,-0.005946756340563297,-0.061601098626852036,0.06468373537063599,-0.011062686331570148,-0.0072641693986952305,0.03123452700674534,0.019911568611860275,0.03298760950565338,0.0130470497533679,0.04645457863807678,0.0026219456922262907,0.01770145632326603,0.015456573106348515,0.06824030727148056,0.034816257655620575,0.07823316007852554,-0.020354177802801132,0.009482643567025661,-0.0681551918387413,-0.011296765878796577,0.011728586629033089,-0.02047053351998329,0.009537925943732262,-0.044210080057382584,0.055690422654151917,0.053997207432985306,0.04430854693055153,-0.004145846236497164,0.03939693793654442,-0.06527131050825119,0.026362312957644463,-0.06990773975849152,0.005081532057374716,-0.04566645994782448,-0.0235353522002697,-0.04364367201924324,-0.016518818214535713,0.08275020122528076,-0.02368108555674553,0.00424876157194376,-0.012298239395022392,-0.011438226327300072,-0.009236156940460205,-0.01912083849310875,0.0246986523270607,-0.026749515905976295,-0.015385942533612251,-0.06248011440038681,0.01259311381727457,-0.059722691774368286,0.042439818382263184,-0.020540276542305946,0.0018057948909699917,0.0692390725016594,-0.03414500504732132,0.015105519443750381,-0.024701779708266258,0.0040152426809072495,0.06532979011535645,0.06114432215690613,0.060430873185396194,0.0072111692279577255,-0.05010591447353363,-0.06268610805273056,-0.08994535356760025,0.006196913775056601,-0.05851209908723831,-0.05563042685389519,-0.030888469889760017,-0.02381592057645321,0.06347212940454483,0.019647518172860146,-0.03194190561771393,-0.027950279414653778,0.05766260251402855,0.010089993476867676,0.017691610381007195,0.03608027473092079,-0.012128829956054688,0.04916020855307579,-0.024370763450860977,0.0320856049656868,0.008763466030359268,0.05202436447143555,0.02441374771296978,-0.026017554104328156,-0.02670864574611187,-0.08491896837949753,0.004662523046135902,0.03015177696943283,0.015206079930067062,0.07718589156866074,-0.08029147237539291,-0.05780487507581711,0.060572654008865356,-0.00564377149567008,-0.02827865444123745,-0.043096449226140976,-0.08991875499486923,0.05451463162899017,-0.05216113105416298,-0.017870096489787102,0.06976437568664551,0.021953482180833817,-0.032956141978502274,-0.01837477646768093,0.05374237522482872,-0.04464132711291313,-0.03343403339385986,-0.025983629748225212,-0.06317323446273804,-0.011945921927690506,0.03907417133450508,0.006502630654722452,0.07890894263982773,0.09325876832008362,0.009832927957177162,0.013443169184029102,0.02772476151585579,-0.008539974689483643,0.057180438190698624,-0.010115867480635643,0.036363061517477036,0.0015878534177318215,-0.06642050296068192,0.052788276225328445,0.02223491109907627,0.04217779263854027,-0.09296970814466476,0.06221678480505943,-0.004540868569165468,-0.01679394021630287,0.010576214641332626,0.04685218632221222,-0.04112257435917854,-0.07200246304273605,0.010322303511202335,0.008008725941181183,0.034768037497997284,-0.02487337402999401,0.03147943690419197,0.0023786104284226894,0.0027508209459483624,0.029475772753357887,-0.022013990208506584,-0.06444858759641647,-0.01564980112016201,-0.051195088773965836,-0.06974615156650543,-0.006405538879334927,0.0559588260948658,-0.055749837309122086,-0.07798022031784058,-0.0058500152081251144,-0.006936667487025261,0.0256422720849514,-0.005703659728169441,0.014512560330331326,-0.014743095263838768,0.01827564649283886,-0.01497059129178524,0.038382455706596375,0.0505138598382473,-0.03534133732318878,0.07145091891288757,-0.0566275529563427,-0.05214320123195648,-0.041822053492069244,-0.0711996853351593,-0.038171153515577316,-0.0007263929001055658,0.03268152475357056,0.07361952215433121,0.03990937024354935,0.0013369248481467366,-0.0741795152425766,-0.031042128801345825,-0.0676620751619339,-0.015940450131893158,0.05017310753464699,0.00553664518520236,0.04941084235906601,0.04892081394791603,-0.04815045744180679,0.07137228548526764,-0.0695490762591362,0.08184932917356491,-0.049332231283187866,0.08116865903139114,0.06050236523151398,0.024331161752343178,0.0007404412026517093,0.016002321615815163,0.04029493406414986,0.044520970433950424,-0.009047441184520721,0.07677578181028366,0.052859507501125336,-0.05469962954521179,0.021306876093149185,0.01675645262002945,-0.06707042455673218,-0.0648428201675415,-0.05816946551203728,-0.03109847381711006,-0.05877126753330231,-0.05446372553706169,0.06359898298978806,-0.02266523241996765,0.03018336184322834,0.01580089144408703,-0.0502142496407032,0.03141375258564949,0.06983054429292679,-0.06452042609453201,0.05045377090573311,-0.04967367276549339,0.012178170494735241,-0.0667709931731224,-0.005416371859610081,0.052245043218135834,0.028563611209392548,-0.06841088831424713,0.044856294989585876,0.08721446245908737,-0.08614233881235123,0.06811192631721497,-0.03471122682094574,0.007695361506193876,-0.06875042617321014,0.0395473837852478,-0.00903500895947218,0.03595922887325287,-0.07534662634134293,-0.026852911338210106,0.03701074421405792,0.05605015531182289,-0.03166521340608597,0.025289323180913925,-0.05415814742445946,-0.04557251185178757,0.006391045171767473,-0.015952151268720627,0.047253768891096115,-0.06534925103187561,0.04053240641951561,-0.06257015466690063,-0.05956702679395676,0.008790424093604088,0.06151457875967026,0.012114496901631355,-0.03550928458571434,0.035778094083070755,0.03051329031586647,0.02559874951839447,0.051798127591609955,0.03265677019953728,0.06182529404759407,-0.02477271482348442,-0.04893957078456879,-0.05725710093975067,0.019091840833425522,-0.013772315345704556,0.0075783999636769295,0.012592222541570663,-0.047573816031217575,-0.07119591534137726,0.029957562685012817,0.00007462796929758042,-0.045349158346652985,-0.05379747971892357,-0.009883108548820019,0.08524415642023087,-0.04079395905137062,0.01897590048611164,-0.045804549008607864,0.06756093353033066,-0.013773113489151001,0.0005588466301560402,0.05188475176692009,-0.02496083825826645,-0.0041975416243076324,-0.0031302226707339287,-0.0012904141331091523,0.034149959683418274,0.04960126429796219,-0.0803077295422554,-0.06452314555644989,0.032817479223012924,0.030472146347165108]},{"id":"djinn","vector":[0.04951596260070801,-0.05826224014163017,-0.05663503706455231,0.004377034958451986,-0.006912075448781252,-0.0490487776696682,0.009454941377043724,-0.06690819561481476,0.007667426485568285,-0.032954052090644836,0.054015498608350754,-0.03829406946897507,0.010768132284283638,0.07009180635213852,-0.04387756064534187,-0.05824723094701767,-0.056889452040195465,-0.025027958676218987,-0.03905370458960533,0.04123857244849205,-0.023377113044261932,-0.020563187077641487,0.059929683804512024,-0.02934747003018856,-0.04226182773709297,-0.03334052860736847,-0.03373311087489128,-0.01265767216682434,-0.05322180688381195,-0.028208205476403236,0.037936341017484665,-0.04487674683332443,-0.06393769383430481,-0.028860853984951973,0.04891020804643631,0.013013538904488087,-0.04440965875983238,0.034614428877830505,0.031922597438097,-0.05355207249522209,-0.029752932488918304,0.0396917499601841,0.05405161902308464,0.013712970539927483,-0.040316108614206314,-0.017813878133893013,-0.07228472828865051,0.032984040677547455,0.05296829342842102,0.0488198883831501,0.06630302965641022,-0.0761086568236351,0.013466055504977703,-0.053279951214790344,-0.012772798538208008,0.00799323245882988,0.06937848031520844,0.030655337497591972,0.02855858951807022,-0.0648873969912529,-0.0332510769367218,-0.029760101810097694,-0.05107375979423523,0.0003124835202470422,-0.010365364141762257,-0.0048946840688586235,0.08152437210083008,-0.010519309900701046,0.08844099938869476,-0.030250459909439087,-0.026685697957873344,-0.021756114438176155,-0.0010270923376083374,0.06285480409860611,-0.03606567159295082,-0.05582038685679436,0.02006216160953045,0.018045827746391296,-0.010118445381522179,0.07357814908027649,0.030649036169052124,0.05597860366106033,-0.04121527820825577,-0.01573590561747551,-0.06056932732462883,0.044187020510435104,-0.022284377366304398,0.05763781815767288,-0.027748191729187965,0.07092305272817612,-0.05200273171067238,-0.0438024066388607,-0.0660618245601654,0.024223698303103447,-0.04810798168182373,0.03634878247976303,-0.07585693895816803,0.01371773425489664,-0.07025615125894547,-0.045723628252744675,-0.0704086646437645,-0.026075435802340508,-0.017708197236061096,0.020787253975868225,-0.04030236974358559,0.029008962213993073,-0.05203618109226227,0.006336048245429993,0.07412423193454742,0.04127271845936775,-0.05276491492986679,-0.05879149213433266,-0.016328636556863785,-0.06731222569942474,-0.04811510816216469,0.037726715207099915,-0.005068723112344742,-0.004549954552203417,-0.06783252954483032,0.056201014667749405,-0.046350035816431046,-0.07672633230686188,0.04772252216935158,-0.07262961566448212,-0.044898871332407,0.017254695296287537,-0.04842131957411766,0.050587598234415054,0.04649420455098152,-0.07853623479604721,-0.04031115397810936,-0.04647168144583702,-0.0024393375497311354,0.03859100118279457,-0.020169924944639206,-0.06894523650407791,-0.016390975564718246,-0.0380091518163681,0.01397677231580019,0.037486545741558075,0.0006807844620198011,-0.02451452426612377,0.0624186173081398,0.0719854012131691,-0.002739570802077651,0.028473293408751488,0.04099871963262558,0.00969200860708952,0.02551848441362381,0.07830628007650375,-0.04152935743331909,0.013501354493200779,-0.07162639498710632,0.02780209854245186,-0.015862498432397842,-0.00793044175952673,0.023454010486602783,-0.06638876348733902,-0.015700597316026688,-0.04115450382232666,0.0061936089769005775,0.0172122735530138,0.040857091546058655,0.010903284884989262,0.0036461050622165203,0.028437983244657516,0.00831118319183588,-0.07877526432275772,-0.018937723711133003,0.060447171330451965,-0.04654792323708534,-0.0117020383477211,-0.010358404368162155,0.021196477115154266,-0.043463919311761856,0.03804853931069374,-0.04715820029377937,0.056536123156547546,0.07198351621627808,0.06616446375846863,-0.04963010549545288,0.08367440104484558,0.04664604365825653,-0.024875761941075325,0.017378421500325203,0.033017661422491074,0.029902229085564613,0.055047694593667984,0.07835357636213303,-0.05357784405350685,-0.020731966942548752,-0.002043267944827676,-0.011525630950927734,-0.006203973200172186,0.07310100644826889,-0.07858846336603165,0.008735602721571922,0.03226962685585022,-0.011771634221076965,0.0798417255282402,0.03195168823003769,-0.011549838818609715,0.03542746230959892,0.011128338985145092,-0.04731875658035278,-0.06588191539049149,0.03850523754954338,-0.009865500032901764,0.0653800442814827,0.07538595795631409,0.009160813875496387,-0.041982997208833694,0.06655257195234299,0.019469138234853745,0.05811005085706711,-0.031818635761737823,-0.033720605075359344,0.030066967010498047,0.07034658640623093,0.0065787374041974545,0.0537705197930336,-0.04940945282578468,-0.021162448450922966,-0.05184830725193024,0.05915191397070885,-0.0380159430205822,-0.014418165199458599,-0.0140725988894701,0.024029860273003578,0.0652228519320488,0.0037605867255479097,0.008522991091012955,0.04646650701761246,0.01315462775528431,0.0380207821726799,0.0054231672547757626,0.03797122836112976,0.04282528907060623,0.06298164278268814,0.022982893511652946,-0.011060110293328762,-0.02874848246574402,0.02947978675365448,-0.03636883571743965,-0.01969209499657154,-0.010885016992688179,0.006755396258085966,-0.03302573412656784,0.04884893819689751,-0.0032095229253172874,0.06870900094509125,-0.020572280511260033,-0.041256844997406006,-0.07286123931407928,0.02896559052169323,-0.0010336224222555757,-0.03035592846572399,-0.053403567522764206,-0.03697165474295616,0.07270164787769318,-0.03871450573205948,0.02129756659269333,0.01201110240072012,-0.06814825534820557,-0.05924772843718529,0.006596848368644714,0.01696084253489971,0.008267471566796303,0.005502947606146336,-0.06490238010883331,0.045491889119148254,-0.07168492674827576,-0.02957398071885109,-0.02433520369231701,0.02543472684919834,0.07666891813278198,-0.033813413232564926,0.03650400787591934,-0.04218640923500061,0.0167408287525177,0.05634988844394684,0.0765576884150505,0.05226530134677887,0.012005474418401718,-0.00385918072424829,-0.06321743875741959,-0.08233465999364853,0.019306400790810585,-0.06828770041465759,-0.041405558586120605,-0.048683714121580124,0.016809828579425812,0.062148209661245346,0.01753428392112255,-0.0029879221692681313,-0.049914710223674774,0.04476218298077583,0.009664105251431465,0.06239001825451851,0.026854313910007477,0.0029202718287706375,0.04657759144902229,-0.019201161339879036,0.017179260030388832,0.014154049567878246,-0.015001518651843071,0.03841998055577278,0.009410444647073746,0.00950696412473917,-0.070113405585289,-0.03048972226679325,0.001405137125402689,0.0016440576873719692,0.056623853743076324,-0.07953483611345291,-0.041170891374349594,0.05290871858596802,-0.05448083579540253,-0.024899832904338837,-0.03469599410891533,-0.08075316250324249,0.05148350074887276,-0.05613444745540619,0.0005746818496845663,0.0659470185637474,-0.00905807688832283,-0.03499556705355644,-0.023505141958594322,0.06476233154535294,-0.018010450527071953,-0.02439890056848526,-0.03832628205418587,-0.08239979296922684,-0.05463109165430069,0.06242848560214043,-0.043158020824193954,0.07190922647714615,0.08428268134593964,-0.034659210592508316,0.028051499277353287,0.04566168412566185,0.03603443130850792,0.07349923253059387,0.04427630826830864,0.04135812819004059,0.06435378640890121,-0.034537527710199356,0.057958561927080154,0.00826832465827465,0.05511714890599251,-0.0805273950099945,0.028248218819499016,0.0034505075309425592,-0.0031696022488176823,0.028886178508400917,0.021357588469982147,-0.030544975772500038,-0.0766770988702774,0.021435340866446495,-0.007176918908953667,0.042874306440353394,0.06034836173057556,0.059625543653964996,-0.039452120661735535,0.007156067062169313,0.00408557616174221,-0.04334466904401779,-0.028903871774673462,-0.031380683183670044,-0.0383918471634388,-0.07562679052352905,0.03681563958525658,0.014185500331223011,-0.04770657792687416,-0.06191540136933327,0.013578997924923897,-0.016998032107949257,0.012789386324584484,-0.03454453498125076,0.014575058594346046,0.03195949271321297,0.036462634801864624,-0.061788160353899,0.03126043453812599,0.0430796854197979,0.0036879207473248243,0.05772760137915611,-0.04452831298112869,-0.035437747836112976,-0.021416407078504562,-0.055935025215148926,-0.025940606370568275,0.03513029217720032,-0.01377798244357109,0.06995391845703125,0.04047394543886185,0.04226366803050041,-0.05847153440117836,-0.050014931708574295,-0.06216452643275261,-0.029561487957835197,0.07329287379980087,0.0006400442798621953,0.06525139510631561,-0.02179620787501335,-0.024259552359580994,0.05143076553940773,-0.06641611456871033,0.08080822229385376,-0.030563201755285263,0.053743403404951096,0.03449150547385216,0.006753543857485056,0.029443979263305664,0.018532222136855125,0.05056249350309372,0.05902351438999176,-0.03351017087697983,0.07819060236215591,0.018530843779444695,-0.0016184898559004068,0.06998223811388016,-0.022345956414937973,-0.04318467155098915,-0.04139629006385803,-0.056808337569236755,-0.05429384484887123,-0.01918884366750717,-0.060327813029289246,0.057424865663051605,-0.06600470840930939,0.04235401749610901,0.0032946893479675055,-0.04814528301358223,0.044833313673734665,0.0473780483007431,-0.07789617031812668,0.04815928637981415,-0.034224025905132294,-0.015252611599862576,-0.04594755545258522,-0.034212302416563034,0.03380861133337021,0.03907305747270584,-0.07043793052434921,0.05396384000778198,0.07330290973186493,-0.07849736511707306,0.06309789419174194,-0.026897132396697998,0.04794199764728546,-0.0520608015358448,0.020294370129704475,0.0028377724811434746,-0.0050000823102891445,-0.07358428090810776,-0.0082617262378335,0.014638584107160568,0.04541141539812088,-0.062345828860998154,-0.0049093421548604965,-0.033282652497291565,-0.032654475420713425,0.03492879495024681,0.008462677709758282,0.04400651901960373,-0.04886654391884804,0.051030661910772324,-0.03377832472324371,-0.05059583857655525,0.007755521684885025,0.07251127809286118,-0.0011219796724617481,0.015640035271644592,0.013750690035521984,0.0403166301548481,0.04650925099849701,-0.029860982671380043,0.03389947488903999,0.0527268685400486,-0.031920868903398514,0.010547014884650707,-0.02203330211341381,0.022476524114608765,-0.043806757777929306,-0.0021867419127374887,0.04747164621949196,-0.058659061789512634,-0.054832521826028824,-0.018345825374126434,0.026411816477775574,-0.036141812801361084,-0.05972123518586159,0.003868614789098501,0.07963883876800537,-0.02633071132004261,0.07142551988363266,-0.04807773977518082,0.06988286972045898,-0.03563280403614044,0.03365581855177879,0.045469705015420914,-0.03124857321381569,0.03182443603873253,-0.018285874277353287,0.011772042140364647,0.049923431128263474,0.016236964613199234,-0.07895126193761826,-0.07882817834615707,0.027547718957066536,0.016813654452562332]},{"id":"i-ve-seen","vector":[0.049272336065769196,-0.04927657172083855,-0.018589841201901436,0.02575790323317051,0.0009917117422446609,-0.03314084932208061,0.0427938811480999,-0.06971323490142822,0.02210748754441738,0.017619997262954712,0.02294289320707321,0.025399241596460342,0.014200459234416485,0.03845871239900589,-0.06303362548351288,0.014202930964529514,-0.04309165105223656,-0.04807697609066963,-0.032187387347221375,0.045132894068956375,0.017814425751566887,-0.022088097408413887,0.02570859156548977,-0.05021272972226143,0.030519898980855942,-0.002017221413552761,-0.026286117732524872,-0.03346836194396019,-0.05836125463247299,-0.042974695563316345,0.06572180241346359,-0.008694617077708244,-0.03212349861860275,0.009720117785036564,0.029558517038822174,0.04070363566279411,-0.058511022478342056,0.027628639712929726,0.06260588765144348,-0.03891637548804283,-0.004424332641065121,0.024456819519400597,0.07055608928203583,-0.029084552079439163,-0.026961741968989372,0.046208787709474564,-0.06382516026496887,0.013463126495480537,0.03855171054601669,0.0471365787088871,0.027027331292629242,-0.055856239050626755,0.03339254483580589,-0.04128590598702431,0.014445271342992783,-0.008295457810163498,0.054501280188560486,0.00710015743970871,0.04040980339050293,-0.04999189078807831,-0.044244516640901566,-0.022987056523561478,-0.04431012645363808,0.014568565413355827,-0.04257701709866524,-0.015546939335763454,0.0912504643201828,0.03524455428123474,0.08991848677396774,-0.06150754913687706,-0.019970541819930077,0.004977136384695768,-0.02213383838534355,0.027527466416358948,-0.04276273399591446,-0.07080358266830444,0.04856659471988678,-0.07684668898582458,-0.024722469970583916,0.06212877109646797,0.006641908083111048,0.03185408562421799,0.03350149095058441,-0.03111470863223076,-0.06805622577667236,0.06112194061279297,-0.02376028336584568,0.05239365994930267,-0.0786404237151146,0.061290714889764786,-0.02529752627015114,-0.034219831228256226,-0.05549238249659538,0.06445145606994629,-0.036078982055187225,0.031125757843255997,-0.0610954724252224,-0.01779472641646862,-0.04426118731498718,-0.053608205169439316,-0.069215327501297,0.0034300328698009253,-0.01126824039965868,-0.01989477127790451,-0.0030143270269036293,0.021288318559527397,-0.06882406026124954,0.061676040291786194,0.07225208729505539,0.01596054807305336,0.01719881407916546,-0.05442717671394348,0.02175108715891838,-0.062569260597229,-0.0411032997071743,0.0444532111287117,0.039656832814216614,0.04066409543156624,-0.07661142945289612,0.03954952210187912,-0.005156565923243761,-0.08721533417701721,0.02773514948785305,-0.0631566047668457,-0.025989685207605362,-0.027525803074240685,-0.005891403183341026,0.0392465814948082,0.013275496661663055,-0.06090538203716278,-0.043699268251657486,-0.0567280575633049,0.018420247361063957,0.03272394835948944,-0.031177781522274017,-0.07610420882701874,-0.010215272195637226,-0.06211172789335251,-0.019284609705209732,-0.006242421921342611,0.0005274959257803857,-0.062103092670440674,0.047748077660799026,0.07293037325143814,-0.036740999668836594,0.023669932037591934,0.05973635986447334,0.010813364759087563,0.04920678585767746,0.03222960978746414,-0.0003287556755822152,-0.004576756618916988,-0.058701470494270325,-0.00840405747294426,-0.06587596982717514,-0.024224789813160896,0.0696871355175972,-0.06189776584506035,0.05255471169948578,-0.07670532912015915,-0.017321085557341576,-0.04710216447710991,0.053100112825632095,-0.0022042146883904934,-0.016577497124671936,0.015228408388793468,0.00472017377614975,-0.03502622991800308,0.007849643006920815,0.06517219543457031,-0.06726361066102982,-0.003957126755267382,-0.024519003927707672,0.04868932440876961,-0.01852492429316044,0.02392139844596386,-0.07375244796276093,0.08551735430955887,0.0708116739988327,0.07861723005771637,-0.04198552295565605,0.08081826567649841,0.032028865069150925,-0.02090311609208584,0.025152748450636864,0.05501340702176094,0.00772272190079093,0.0555887296795845,0.06444262713193893,-0.019036296755075455,-0.022505825385451317,-0.005151227116584778,-0.024880552664399147,0.008149976842105389,0.0676879957318306,-0.05880288407206535,-0.01125694252550602,0.006235575769096613,-0.014577732421457767,0.07529648393392563,-0.014523683115839958,0.0228294525295496,0.06427360326051712,0.04059447720646858,-0.04480311647057533,-0.015536781400442123,0.06534457206726074,-0.026083167642354965,0.06531894207000732,0.06750801205635071,-0.0017075876239687204,-0.0389900766313076,0.07943914085626602,-0.004812674131244421,0.049795962870121,-0.017186183482408524,-0.03198195621371269,-0.016479386016726494,0.07231233268976212,-0.05002640187740326,0.04771146923303604,-0.031839631497859955,0.005591209977865219,0.00285415374673903,0.057152606546878815,-0.013838471844792366,-0.024663986638188362,0.019633756950497627,0.018324900418519974,0.026404034346342087,-0.006706256419420242,0.056470371782779694,0.04750470444560051,0.00921228714287281,0.00005583932943409309,0.055046822875738144,0.05296557769179344,0.03122580423951149,-0.0344727598130703,-0.07394638657569885,-0.04793958738446236,0.03326619789004326,-0.009823757223784924,-0.034970972687006,0.008601658046245575,-0.019605856388807297,0.037285175174474716,0.033713385462760925,-0.002425818471238017,-0.029493672773241997,0.05341355875134468,-0.06310790777206421,0.009906470775604248,-0.07033899426460266,0.03272368013858795,-0.0463147908449173,-0.01756228692829609,-0.03819390758872032,-0.017590567469596863,0.0718180239200592,-0.014235686510801315,0.004616404417902231,-0.021844489499926567,-0.07659511268138885,-0.013792736455798149,0.008135845884680748,0.034778937697410583,-0.027217058464884758,-0.006296909414231777,-0.04148010164499283,0.04949285835027695,-0.0679721087217331,0.0184885673224926,-0.00860629789531231,-0.0014901298563927412,0.0851871520280838,-0.05267582833766937,0.01694330759346485,-0.05214901641011238,0.031378790736198425,0.05714252591133118,0.08596961200237274,0.018988734111189842,0.027959588915109634,-0.010929033160209656,-0.06683680415153503,-0.0588686466217041,0.037305839359760284,-0.030078722164034843,-0.04169231280684471,-0.043503470718860626,0.011704670265316963,0.053583577275276184,-0.007377034984529018,-0.023532692342996597,-0.057382263243198395,0.06421339511871338,-0.004924710839986801,0.05220263823866844,0.04639843851327896,-0.0430530421435833,0.047268420457839966,-0.03816409409046173,0.0011571693466976285,0.029608994722366333,-0.01571311242878437,0.06301119923591614,0.02566898614168167,-0.03844606503844261,-0.08770725876092911,-0.009578614495694637,-0.005832672119140625,0.01325175166130066,0.06371087580919266,-0.06855616718530655,-0.052577611058950424,0.01168892439454794,-0.04079454392194748,-0.05185193195939064,-0.045201584696769714,-0.07707750052213669,0.033792391419410706,-0.0482875257730484,-0.001991251716390252,0.05926087871193886,0.026789547875523567,-0.02240915782749653,-0.002646425971761346,0.018517788499593735,-0.036641620099544525,-0.028664398938417435,-0.06935852020978928,-0.07590506970882416,-0.00666873250156641,0.04715919867157936,-0.01031327061355114,0.08001653105020523,0.07726607471704483,0.007378987967967987,-0.015824085101485252,-0.010352111421525478,0.03043684922158718,0.07237198948860168,0.005014281254261732,0.03127110376954079,0.02149791084229946,-0.04860389605164528,0.04896388202905655,0.005514998454600573,0.05451340973377228,-0.08491876721382141,0.07476089894771576,0.03817876800894737,-0.04959588497877121,-0.012863531708717346,0.04405685141682625,-0.05418136343359947,-0.07197433710098267,0.004559594206511974,0.025964107364416122,0.050593163818120956,0.02992953360080719,0.07120381295681,-0.04808250069618225,0.004054990131407976,0.034268494695425034,-0.02266644313931465,-0.058163952082395554,-0.0010903573129326105,-0.035918936133384705,-0.049906183034181595,0.00800925400108099,0.0246885959059,-0.04755876958370209,-0.060148779302835464,-0.007164768408983946,0.003419451415538788,0.0005967200850136578,0.06262113898992538,0.026160771027207375,-0.0016639831010252237,0.04757308587431908,-0.056629445403814316,0.03489222005009651,0.05043843761086464,-0.01604738086462021,0.06620849668979645,-0.03209526464343071,-0.020595597103238106,-0.05062359198927879,-0.0426766537129879,-0.03488790616393089,-0.0006817859830334783,0.00816660188138485,0.08141368627548218,0.031218355521559715,0.036224979907274246,-0.08352683484554291,-0.060296691954135895,-0.02967349998652935,-0.04702217876911163,0.05976397171616554,0.043002814054489136,0.07569102197885513,-0.030881503596901894,-0.01141941174864769,0.04369925335049629,-0.08281563222408295,0.05845675617456436,-0.01023993082344532,0.08260530978441238,0.03784419968724251,0.01199581753462553,-0.0020130067132413387,-0.002015981823205948,0.04748234897851944,0.030755558982491493,0.015368591994047165,0.0762270987033844,0.06316744536161423,-0.019572686403989792,0.05028999596834183,0.02746950276196003,-0.07010984420776367,-0.07287491858005524,-0.02808523364365101,-0.03378650173544884,-0.052551038563251495,-0.06980422139167786,0.05282827466726303,-0.04141286015510559,-0.021417073905467987,-0.02110166661441326,-0.04506944119930267,0.02638462744653225,0.07404425740242004,-0.07315073162317276,-0.020413262769579887,0.019779963418841362,0.02819148264825344,-0.02527748979628086,-0.03840617835521698,0.030601074919104576,0.026848524808883667,-0.07024811208248138,0.045751072466373444,0.08729217946529388,-0.07592570781707764,0.05820897966623306,-0.04432903975248337,0.02537219598889351,-0.040210794657468796,0.04888259619474411,0.03599023446440697,-0.0017815011087805033,-0.07383238524198532,0.02711986005306244,0.014309689402580261,0.06515630334615707,-0.08008826524019241,0.03771834447979927,-0.05331118404865265,-0.018416086211800575,0.023667456582188606,-0.04789864271879196,0.013802927918732166,0.002565704518929124,0.02162174880504608,-0.04849717393517494,-0.055640269070863724,0.04552657529711723,0.04713480547070503,0.0031510076951235533,0.014644471928477287,0.003256443189457059,0.04890736564993858,0.04372314736247063,-0.03463299944996834,0.05090498551726341,0.07594425231218338,-0.06855496019124985,-0.05549726262688637,-0.0440569706261158,-0.012601728551089764,-0.02791527286171913,0.0198772381991148,0.03534605726599693,-0.05055838078260422,-0.06109147518873215,-0.010957094840705395,0.008134262636303902,-0.048599723726511,-0.05786474049091339,0.028380898758769035,0.08105331659317017,0.023523271083831787,-0.002785644493997097,-0.025514788925647736,0.0746421292424202,-0.016235293820500374,0.006858238484710455,0.0586889274418354,-0.06181512400507927,0.009306561201810837,-0.004272827412933111,-0.031126203015446663,0.04742331802845001,0.058540914207696915,-0.06732136011123657,-0.06291104853153229,0.02507050149142742,0.018991393968462944]},{"id":"infrared-homing","vector":[0.033665601164102554,-0.022358668968081474,0.023262549191713333,-0.03558112680912018,-0.0116578983142972,0.03661743924021721,0.048074133694171906,-0.08053552359342575,0.054977767169475555,0.028391094878315926,0.0348210334777832,-0.00982300192117691,0.019651224836707115,-0.0063990699127316475,-0.04684130474925041,0.013970582745969296,-0.05166191607713699,-0.053790248930454254,-0.054967258125543594,-0.06240516155958176,-0.006655323784798384,0.034136105328798294,0.018560238182544708,-0.020721890032291412,0.05877600610256195,-0.01642710529267788,0.007000998128205538,-0.0007658277172595263,-0.03445078805088997,-0.03341549634933472,0.07357326149940491,-0.027191754430532455,0.0017921560211107135,-0.04871256276965141,0.031089793890714645,0.029467163607478142,-0.0446208231151104,0.0605282187461853,0.04066930338740349,-0.016637487336993217,-0.0010012952843680978,0.03976002335548401,0.06489719450473785,-0.018486587330698967,0.016871364787220955,0.03625437617301941,-0.05400467291474342,-0.055029820650815964,0.02951113134622574,0.06078571081161499,0.03809703513979912,-0.028050033375620842,-0.029058044776320457,-0.015301457606256008,-0.03212208300828934,0.018857691437005997,0.02428678795695305,0.03989885002374649,0.050833940505981445,-0.07599809020757675,-0.04108397290110588,-0.02610642835497856,-0.04451710730791092,0.05163796246051788,-0.06635060161352158,-0.02801228128373623,0.07868734747171402,0.032161541283130646,0.07462559640407562,-0.04206954687833786,-0.031203188002109528,-0.05912540480494499,-0.018635664135217667,0.026937879621982574,-0.04310530796647072,-0.06428829580545425,0.024665769189596176,-0.03451159596443176,-0.03083309344947338,0.0653294250369072,-0.006063009612262249,0.05969474837183952,-0.00890484917908907,-0.020838594064116478,-0.03612947463989258,0.04855155572295189,0.07764794677495956,0.08386559039354324,-0.04212040826678276,0.028812594711780548,0.0074402084574103355,-0.01109151542186737,-0.06860920041799545,0.04853018745779991,-0.045742396265268326,0.059438616037368774,-0.06556360423564911,-0.008701350539922714,-0.015713710337877274,-0.07058461010456085,-0.060892559587955475,-0.018102198839187622,-0.01478465273976326,-0.00851314514875412,-0.019405249506235123,0.02539045363664627,-0.06702572852373123,0.058341432362794876,0.07945351302623749,0.012718177400529385,-0.020370852202177048,-0.04541504383087158,0.0028975708410143852,-0.05948786064982414,-0.040678512305021286,0.02450384944677353,0.02710866555571556,0.0022247200831770897,-0.051042139530181885,0.0459633432328701,0.03266104683279991,-0.05970095470547676,0.05736136808991432,-0.08127079159021378,-0.010484980419278145,0.002851825673133135,-0.06524919718503952,0.04248005896806717,0.04244912788271904,-0.050283096730709076,-0.05564619600772858,-0.05024860054254532,-0.0313681922852993,0.038016337901353836,-0.020488254725933075,-0.07303714007139206,0.00939489807933569,-0.06592005491256714,-0.0033862898126244545,0.0466473326086998,0.05828344076871872,-0.0621442012488842,0.058790624141693115,0.07113561034202576,-0.020045926794409752,-0.060063641518354416,0.04218488931655884,-0.042734671384096146,0.005176329053938389,0.012994672171771526,-0.050168611109256744,0.010297461412847042,-0.06669674813747406,-0.05291416123509407,-0.047883953899145126,-0.018110720440745354,0.047502774745225906,-0.034784309566020966,0.07224348932504654,-0.06222984567284584,0.060057371854782104,-0.03470121696591377,0.05069899931550026,-0.008647691458463669,-0.0035369102843105793,0.025779154151678085,-0.02465571090579033,-0.045450400561094284,0.009192973375320435,0.05978197231888771,-0.07310545444488525,0.05128874257206917,-0.008948375470936298,0.02364349737763405,0.025344286113977432,-0.009993692860007286,-0.060502924025058746,0.07270773500204086,0.07213470339775085,0.05754990130662918,-0.030301406979560852,0.08551179617643356,0.02909313142299652,0.055632803589105606,0.02060812897980213,0.06775584816932678,-0.024252498522400856,0.05194048210978508,0.03739864379167557,-0.03903979808092117,-0.04534916207194328,-0.0029917899519205093,0.010891472920775414,-0.022325828671455383,0.07828240841627121,-0.06580707430839539,-0.07217616587877274,-0.08169678598642349,-0.03371337428689003,0.0807252898812294,-0.05840721353888512,0.018659040331840515,0.05503908917307854,0.0319528803229332,-0.05412780120968819,-0.056253477931022644,0.025491861626505852,0.029684944078326225,0.031525563448667526,0.06394172459840775,0.027232622727751732,0.0461413748562336,0.06597889214754105,0.02081301249563694,0.07035404443740845,-0.023327453061938286,-0.003710575634613633,-0.005572676658630371,0.05885118991136551,0.015175643377006054,0.04352085664868355,0.021701177582144737,0.03432989865541458,-0.00473910802975297,0.05938246473670006,0.013017194345593452,-0.021650679409503937,0.04571635648608208,-0.027298659086227417,0.019133614376187325,-0.0261749979108572,0.03375444561243057,0.03889183700084686,-0.0010661559645086527,0.04618051275610924,0.03076796978712082,0.04508427903056145,0.06189178675413132,-0.01461187843233347,-0.019999396055936813,-0.04928688704967499,0.0406213104724884,-0.05795036256313324,-0.07405462861061096,0.02224774658679962,-0.036133937537670135,-0.0656229555606842,0.013339507393538952,0.00816189032047987,-0.06006421521306038,0.04624638333916664,-0.04030109941959381,-0.010135370306670666,-0.0657799243927002,-0.020652521401643753,0.021650588139891624,-0.04951844364404678,-0.015519109554588795,-0.03358205035328865,0.07488273084163666,0.06042008846998215,-0.025282811373472214,0.007570876739919186,0.027311623096466064,-0.03807615116238594,0.007391976658254862,0.026079263538122177,-0.010307718068361282,0.020390281453728676,-0.052878864109516144,0.05688980221748352,-0.070663683116436,0.06307047605514526,-0.05415353178977966,-0.012077389284968376,0.06887266784906387,-0.02047646977007389,0.04111291095614433,-0.05120276287198067,-0.011376055888831615,0.06496208906173706,0.07423622906208038,0.05317814648151398,-0.015773139894008636,-0.018095174804329872,-0.06571613252162933,-0.07195991277694702,0.026302224025130272,-0.04128332808613777,-0.053361039608716965,0.011210406199097633,-0.023805823177099228,0.03527553752064705,0.019531387835741043,-0.017703844234347343,-0.054024580866098404,0.04497906565666199,0.03382904455065727,0.03646424040198326,0.0341796949505806,0.010991430841386318,0.0212155282497406,0.010707446373999119,0.05628154054284096,0.0016244248254224658,0.02944270335137844,0.06285520642995834,-0.006132097449153662,-0.0066004907712340355,-0.08140075206756592,-0.007872657850384712,0.012119618244469166,0.00766258267685771,0.04199478402733803,-0.07405388355255127,-0.061558086425065994,0.052450500428676605,-0.03695623576641083,-0.03782002627849579,-0.013039989396929741,-0.0734088122844696,0.04446897655725479,-0.049075204879045486,-0.03315603360533714,0.07859355956315994,0.016185743734240532,-0.00937518198043108,0.007482477929443121,0.049103058874607086,-0.049029167741537094,-0.023890485987067223,0.02402656525373459,-0.05739304795861244,0.05379360169172287,0.03227261081337929,0.0037382112350314856,0.08279969543218613,0.07830056548118591,0.015852030366659164,0.039894383400678635,0.017749732360243797,0.04886898025870323,0.01988575980067253,0.023904291912913322,-0.013573600910604,0.025321803987026215,-0.04854436591267586,0.04908596724271774,-0.021315595135092735,0.03424301743507385,-0.08065356314182281,0.0645160973072052,0.001204144791699946,-0.006945805158466101,-0.008042925037443638,0.052497755736112595,-0.05966193228960037,-0.07110392302274704,-0.005945855285972357,0.008446949534118176,0.051795151084661484,0.03243764489889145,0.02609221450984478,-0.024925388395786285,0.021609513089060783,0.02131468616425991,-0.03436636924743652,-0.0490303598344326,0.0170111283659935,-0.022772466763854027,-0.048873353749513626,0.05028298869729042,-0.012852028012275696,-0.04844236746430397,-0.07256238907575607,-0.0031703421846032143,0.0542670339345932,0.07495590299367905,0.007524264510720968,0.05204913765192032,0.021644113585352898,0.005112409591674805,-0.03923262283205986,0.069024957716465,0.049745675176382065,0.018703559413552284,0.06451228260993958,-0.05700657516717911,-0.025935687124729156,-0.07397988438606262,-0.07039625197649002,0.012325740419328213,-0.040195148438215256,-0.032191988080739975,0.05197734758257866,0.031730785965919495,0.056226301938295364,-0.07764778286218643,-0.0615825429558754,-0.07469002902507782,-0.04668627306818962,0.06714111566543579,-0.008126718923449516,-0.023250091820955276,-0.04616515338420868,0.016081176698207855,0.06141955778002739,-0.07045210897922516,0.06102290004491806,-0.04875138774514198,0.06353313475847244,-0.01212946604937315,0.011147967539727688,0.02898476831614971,0.008937365375459194,0.051113925874233246,0.06441906839609146,-0.048566870391368866,0.07150954008102417,0.0475749596953392,-0.03763027489185333,0.01496396865695715,0.05235595256090164,-0.0755956768989563,-0.036273349076509476,-0.037120502442121506,-0.03136417269706726,0.01009372528642416,-0.03503722324967384,0.024610931053757668,-0.06489215791225433,0.026558605954051018,-0.05563787370920181,-0.032457828521728516,0.03759469464421272,0.06251255422830582,-0.04579589515924454,0.02868059277534485,0.009994225576519966,-0.005765955429524183,-0.018629422411322594,-0.024364089593291283,0.07670154422521591,0.029457559809088707,-0.015255509875714779,0.06679558008909225,0.07784537971019745,-0.07028122246265411,0.060891926288604736,-0.028716212138533592,0.029937032610177994,-0.03316938504576683,-0.020871896296739578,0.022078702226281166,0.0062821307219564915,-0.0677788108587265,0.012858899310231209,0.021147118881344795,0.06006760522723198,0.019945817068219185,0.03851065784692764,-0.06193847954273224,-0.02635829895734787,-0.010214242152869701,0.010250351391732693,0.034215740859508514,-0.03746910020709038,0.05808281898498535,-0.03392171859741211,-0.035518500953912735,0.05725950747728348,0.07333628833293915,-0.0020840999204665422,0.011607266962528229,-0.04257665574550629,0.043131809681653976,0.05768851190805435,0.059050969779491425,0.038763269782066345,0.07954028248786926,-0.016987329348921776,-0.005648801103234291,-0.036336589604616165,0.027661386877298355,-0.0035734064877033234,0.008403418585658073,0.03329502046108246,-0.03673373907804489,-0.04573360085487366,-0.03044860251247883,0.00766027020290494,-0.056676022708415985,-0.036157071590423584,0.02418987639248371,0.059768833220005035,0.007366409990936518,0.04579794034361839,-0.04364486038684845,0.07070648670196533,0.01550967339426279,-0.04509847238659859,0.03183762729167938,-0.01087367907166481,0.03448198735713959,-0.0354602113366127,-0.014079015702009201,0.05510229989886284,0.050947535783052444,-0.0794278010725975,-0.07130422443151474,0.018052490428090096,0.0634046345949173]},{"id":"judge-judy","vector":[0.0062997788190841675,-0.06074710935354233,-0.04275758937001228,0.026081791147589684,-0.019199952483177185,0.02500254474580288,0.030225984752178192,-0.06515343487262726,0.019187793135643005,0.0165458582341671,0.03414790704846382,0.006539841182529926,-0.03575843572616577,0.02027284912765026,-0.056546688079833984,0.03202249854803085,-0.06720416247844696,-0.06578119844198227,-0.045669201761484146,-0.006094737444072962,-0.0261321272701025,-0.02988339774310589,0.056049637496471405,-0.010022258386015892,-0.0001279259886359796,0.013435072265565395,-0.05201788991689682,-0.009660851210355759,-0.056465499103069305,0.026464322581887245,0.052132926881313324,-0.07559890300035477,-0.04208037629723549,0.00019237729429733008,0.05757858604192734,0.07206931710243225,-0.04621192812919617,0.03433150798082352,0.07648056000471115,0.0031626946292817593,0.018074804916977882,0.02175714820623398,0.0556354895234108,-0.06965752691030502,0.042444344609975815,0.018751878291368484,-0.04635709524154663,-0.0038632070645689964,0.0615643709897995,0.06108592450618744,0.023276183754205704,-0.019419226795434952,-0.010285676456987858,-0.024662606418132782,0.012029747478663921,0.010624395683407784,0.06484199315309525,0.02934420295059681,0.01379880215972662,-0.04572412744164467,-0.060450479388237,0.0033816415816545486,-0.03639289736747742,-0.03320356830954552,-0.0007104880060069263,0.0015434302622452378,0.08925647288560867,0.006581524852663279,0.08246403932571411,-0.07248710840940475,-0.040296245366334915,-0.016746867448091507,0.01647545024752617,0.06200462952256203,-0.06770069897174835,-0.06195685639977455,0.026408230885863304,-0.026845162734389305,-0.007839515805244446,0.06538886576890945,0.009734260849654675,0.009592556394636631,0.048458416014909744,-0.04864979535341263,-0.03112531453371048,0.04766816645860672,-0.025894539430737495,0.045705098658800125,-0.03587447479367256,0.0008493207860738039,-0.028599988669157028,0.003921448718756437,-0.0044791242107748985,0.061823680996894836,-0.032993461936712265,0.02181938849389553,-0.08546579629182816,-0.016969801858067513,-0.054368212819099426,-0.022954661399126053,-0.08375483751296997,0.016023587435483932,-0.03748942166566849,0.021850092336535454,-0.019216574728488922,0.01797732338309288,-0.03652230650186539,0.0689353197813034,0.07438980787992477,0.020881837233901024,0.046530209481716156,-0.06081906333565712,0.024271691218018532,-0.0739174410700798,-0.0713917538523674,0.005772508680820465,0.009661940857768059,0.03906488046050072,-0.03946010023355484,0.030665280297398567,-0.05281038582324982,-0.08035508543252945,0.046195339411497116,-0.04736728593707085,-0.05127793550491333,-0.022840701043605804,0.005566525273025036,0.041291456669569016,0.03168221563100815,-0.08246031403541565,-0.04912891238927841,-0.0390951968729496,-0.008487686514854431,0.01164961513131857,-0.03171674534678459,-0.06986180692911148,-0.051651835441589355,-0.06886916607618332,0.006679755635559559,-0.019009675830602646,-0.016190415248274803,-0.04986422881484032,0.054287269711494446,0.060478631407022476,0.03765084594488144,0.007421679794788361,0.03783328831195831,0.04639874026179314,-0.008602899499237537,0.0129608865827322,-0.004742772784084082,-0.0172196626663208,-0.007391463965177536,-0.02564597688615322,-0.040675289928913116,-0.05841641500592232,0.05780456215143204,-0.04599571228027344,0.05641404166817665,-0.041753821074962616,0.03398173302412033,-0.03999893739819527,0.04058600217103958,0.015442281030118465,0.022901855409145355,0.009652572683990002,0.0010806532809510827,-0.05218156799674034,-0.013254414312541485,0.07087893784046173,-0.050441376864910126,0.0031325595919042826,0.004705216269940138,-0.008859481662511826,-0.038934603333473206,0.06825444102287292,-0.06826601922512054,0.08753091096878052,0.08148860186338425,0.08364231139421463,-0.02449207380414009,0.06070924550294876,0.06720863282680511,-0.01667916029691696,0.05555862933397293,0.04969732090830803,0.030312057584524155,0.04342835769057274,0.048557378351688385,-0.027683548629283905,-0.030271265655755997,-0.013482342474162579,0.04508505389094353,-0.033708635717630386,0.08487025648355484,-0.07819879055023193,0.008673334494233131,-0.002368123270571232,0.03940649330615997,0.07744664698839188,0.019833924248814583,-0.059248678386211395,0.0003397437685634941,-0.03603844717144966,-0.023312192410230637,-0.06829240173101425,0.051887255162000656,-0.03884485363960266,0.020911473780870438,0.08060623705387115,0.0027034247759729624,0.001645273412577808,0.07358667999505997,0.019708383828401566,0.0768999457359314,0.045008204877376556,-0.05462903529405594,0.03139011934399605,0.054496120661497116,0.02014833316206932,0.042907003313302994,-0.06403956562280655,0.05383625999093056,-0.05270341783761978,0.06175742298364639,-0.02836478501558304,-0.047470737248659134,-0.03846420347690582,-0.009101547300815582,0.02960182912647724,-0.028498735278844833,0.041616715490818024,0.013908503577113152,-0.0023749233223497868,0.007661803625524044,0.05663096532225609,0.042860016226768494,0.056083180010318756,0.018405046314001083,-0.03763177990913391,-0.051269128918647766,-0.007960313931107521,-0.007184977643191814,-0.014161099679768085,0.005272313952445984,-0.013529742136597633,-0.0006376581732183695,0.004006738308817148,-0.01264247577637434,-0.05363979935646057,0.036931153386831284,-0.07096915692090988,0.026986313983798027,-0.07255882769823074,0.003003615653142333,-0.0159289613366127,0.003993634600192308,-0.05961840972304344,-0.007436968386173248,0.06095505878329277,-0.007166174240410328,-0.015976067632436752,-0.04466623812913895,-0.022182440385222435,0.028708288446068764,0.01648910902440548,-0.043478116393089294,-0.011717427521944046,-0.05978269502520561,-0.05542293190956116,0.04813573509454727,-0.053696561604738235,-0.027684923261404037,-0.02955058217048645,-0.008947012946009636,0.07893597334623337,-0.051162637770175934,0.040315043181180954,0.01052579190582037,-0.01472464855760336,0.06399424374103546,0.0840388834476471,0.002350584836676717,0.053722869604825974,-0.059624332934617996,-0.030700506642460823,-0.054029326885938644,0.05258006602525711,-0.01651923917233944,-0.04784291982650757,-0.01616721786558628,-0.048453427851200104,0.07640185952186584,0.03609815612435341,-0.03943527117371559,-0.06612295657396317,0.06733789294958115,0.014370674267411232,-0.0051667168736457825,0.04320147633552551,-0.037475332617759705,0.060484301298856735,-0.0357624851167202,-0.01130049116909504,0.019919171929359436,0.02629907988011837,-0.019663719460368156,0.03973926603794098,-0.009788130410015583,-0.08044721186161041,-0.06924008578062057,0.05492926388978958,-0.014934667386114597,0.05965110659599304,-0.07334022223949432,-0.049954384565353394,0.0454709492623806,-0.02320828102529049,-0.03303122892975807,-0.06507886201143265,-0.0755232572555542,0.05388309806585312,-0.05684100463986397,0.015071859583258629,0.06644775718450546,0.0517263263463974,-0.025789519771933556,0.007868137210607529,-0.032035231590270996,-0.04420603811740875,-0.06894441694021225,-0.02457951381802559,-0.07042866945266724,-0.03268423676490784,0.028328221291303635,0.01762498915195465,0.08316447585821152,0.08282948285341263,-0.0035315086133778095,0.051160119473934174,-0.03588826581835747,0.02491680532693863,0.031444575637578964,-0.037045370787382126,-0.03846843168139458,0.02975960075855255,-0.05780772864818573,0.04772747680544853,-0.03619074821472168,0.05505368113517761,-0.08742134273052216,0.0456961952149868,0.019104333594441414,-0.008940132334828377,-0.015412981621921062,0.06987487524747849,0.015342367812991142,-0.06944144517183304,-0.005991298705339432,-0.014035592786967754,0.032307494431734085,0.001232486218214035,-0.01194002851843834,-0.04587181285023689,-0.0006822318537160754,0.030010217800736427,-0.05178622528910637,-0.008573743514716625,-0.033305320888757706,-0.033817511051893234,-0.062115468084812164,-0.037247609347105026,0.05373730510473251,-0.04355867579579353,-0.0755695179104805,-0.04411496967077255,0.033285751938819885,0.02166046015918255,-0.014644751325249672,0.06158740445971489,0.009512006305158138,0.034743428230285645,-0.060841310769319534,0.04209766909480095,0.07566943764686584,0.007275642827153206,0.05302004888653755,-0.03659021109342575,-0.04845433309674263,-0.05089268833398819,-0.011736090295016766,-0.028659643605351448,-0.021697498857975006,-0.0024383142590522766,0.03781304880976677,0.04948610067367554,0.020635483786463737,-0.03860238566994667,-0.03177529573440552,-0.07394935190677643,-0.05033799633383751,0.0774184837937355,-0.026228059083223343,0.02712959237396717,0.024742815643548965,-0.011368769221007824,0.03756098076701164,-0.0690721794962883,0.07722967863082886,-0.040587153285741806,0.03987932950258255,0.0009371796040795743,0.0302269347012043,-0.027901312336325645,0.03547751531004906,0.0178868155926466,0.04561023414134979,-0.011589659377932549,0.07256234437227249,0.06206727772951126,-0.004599207546561956,0.03011970780789852,0.021474123001098633,-0.030853141099214554,-0.03422272950410843,-0.017861276865005493,0.000044169177272124216,-0.060495197772979736,-0.0793025866150856,0.019153786823153496,-0.03329133614897728,0.017043042927980423,0.043055083602666855,-0.05851936712861061,0.0796414390206337,0.07511253654956818,-0.08401090651750565,-0.028666943311691284,-0.024761060252785683,0.017044195905327797,-0.033179134130477905,-0.036948416382074356,-0.0027636352460831404,0.03918754309415817,-0.07347074896097183,0.04516809433698654,0.08611633628606796,-0.06145794689655304,0.07055474817752838,-0.0392475500702858,0.003696138272061944,-0.05350020155310631,0.048258163034915924,-0.03031868115067482,-0.0012600559275597334,-0.07540197670459747,0.0034604929387569427,0.02638161927461624,0.05092419683933258,-0.038354821503162384,-0.0009759601671248674,-0.012064512819051743,-0.0032053841277956963,0.001625126926228404,-0.008787726983428001,0.03678422048687935,-0.007287000771611929,0.06440998613834381,-0.06450130045413971,-0.058994926512241364,0.01621457189321518,0.039242327213287354,0.02465365268290043,0.015742864459753036,-0.001988281961530447,0.03508748114109039,0.08353115618228912,-0.05436822026968002,0.05405782163143158,0.029754793271422386,-0.014606589451432228,-0.0008801721269264817,0.01624070480465889,-0.019630935043096542,-0.046438366174697876,0.002004902809858322,0.021912572905421257,-0.05232568830251694,-0.06008876860141754,0.05570695549249649,-0.04534847289323807,-0.04459588602185249,-0.026194553822278976,0.008407189510762691,0.07789791375398636,0.020899875089526176,0.015107904560863972,-0.04429672658443451,0.07886120676994324,-0.03808743879199028,0.04316335916519165,0.06023317202925682,-0.06676841527223587,0.05246735364198685,-0.04850488901138306,0.025327734649181366,0.06877796351909637,0.029088377952575684,-0.07984388619661331,-0.06377063691616058,0.055021919310092926,0.03712014853954315]},{"id":"kings-pin","vector":[0.02032206952571869,-0.03987618163228035,-0.016906846314668655,0.006072325631976128,-0.05032807216048241,-0.0018392313504591584,0.02834610641002655,-0.07657203823328018,0.00867375172674656,0.04487639665603638,0.04275308921933174,-0.010146175511181355,0.020329393446445465,0.004642967600375414,-0.05926495045423508,0.03412938490509987,-0.05150322616100311,-0.07264843583106995,-0.030559154227375984,0.06273391842842102,0.02129051648080349,-0.022015338763594627,0.040450677275657654,-0.04615573212504387,0.019320987164974213,-0.043339118361473083,-0.034422893077135086,0.02288343757390976,-0.06790334731340408,-0.034795165061950684,0.0783168226480484,-0.01834052801132202,0.01019418053328991,-0.04430488869547844,0.04278462752699852,0.05093860626220703,-0.04238850250840187,0.02596396394073963,-0.000714454217813909,-0.027620060369372368,-0.04087449237704277,0.011936175636947155,0.07695191353559494,-0.04573221504688263,-0.03874342888593674,0.0237689558416605,-0.04401221126317978,-0.01644713245332241,0.06458023190498352,0.03555692732334137,0.04196430742740631,-0.02941613458096981,0.050453510135412216,-0.028396500274538994,0.05064282566308975,0.015232906676828861,0.018897108733654022,0.021350599825382233,0.03609731048345566,-0.06183173507452011,-0.061670299619436264,-0.028526797890663147,-0.05011947080492973,0.0444798581302166,-0.03437931463122368,0.028183676302433014,0.0922326073050499,0.01976439356803894,0.08729930967092514,-0.07717719674110413,0.029496414586901665,-0.06809068471193314,-0.01700281910598278,0.00837897602468729,-0.0674639642238617,-0.05448374152183533,0.06086041033267975,-0.052492398768663406,0.021831080317497253,0.07587913423776627,0.0006421675789169967,0.016337500885128975,0.0019381572492420673,-0.008625284768640995,-0.05069735646247864,0.04451743885874748,0.013570670038461685,0.055002644658088684,-0.006474223919212818,0.07077253609895706,0.0016491145361214876,-0.02348415181040764,-0.003608910134062171,0.06739236414432526,-0.024901606142520905,0.033448297530412674,-0.07000020891427994,-0.041554223746061325,-0.0651131197810173,-0.05113406851887703,-0.06176726520061493,0.04074690490961075,-0.013709161430597305,-0.019149817526340485,-0.057114362716674805,0.04532241448760033,-0.06067236140370369,0.06503073126077652,0.04386835917830467,0.03909388557076454,0.051364775747060776,-0.07027222216129303,0.006668095011264086,-0.05620800331234932,-0.013119474984705448,0.01537556853145361,0.019805770367383957,0.012997852638363838,-0.06002131104469299,0.030411774292588234,-0.028328636661171913,-0.057559359818696976,-0.019680840894579887,-0.053763024508953094,-0.042108502238988876,-0.010018867440521717,-0.026420895010232925,0.07250962406396866,0.02393275871872902,-0.053804293274879456,-0.07370659708976746,-0.05480961501598358,0.03654679283499718,0.04922054708003998,-0.02733524702489376,-0.06995674222707748,0.035015612840652466,-0.05266127362847328,-0.026157528162002563,0.02444661408662796,0.012846444733440876,-0.07871228456497192,0.030975548550486565,0.04226382449269295,-0.013724977150559425,0.030550140887498856,0.003442996647208929,0.045962054282426834,0.023687830194830894,0.023838618770241737,0.015859201550483704,-0.01626191847026348,-0.059346720576286316,-0.023191649466753006,-0.04829375073313713,-0.05324254557490349,0.0705317035317421,-0.06241346895694733,0.0625588670372963,-0.08147052675485611,0.020653778687119484,0.007683970965445042,0.01983628235757351,0.030211864039301872,-0.01306831743568182,-0.016987716779112816,-0.018801560625433922,-0.06438098102807999,-0.011459584347903728,0.056593600660562515,-0.06944239139556885,-0.0018085904885083437,-0.0026210544165223837,0.059876974672079086,-0.02309643290936947,0.04011525958776474,-0.07749812304973602,0.07578659057617188,0.07634562999010086,0.07755973190069199,0.005323370452970266,0.04239659011363983,0.013610081747174263,0.036969125270843506,0.05489223077893257,0.06044413149356842,0.015375168062746525,0.051200393587350845,0.018882175907492638,0.020483041182160378,-0.019611768424510956,0.021049661561846733,-0.040676411241292953,0.01595805026590824,0.07167091220617294,-0.062316861003637314,-0.001180097577162087,-0.0008916291408240795,0.021311219781637192,0.08688856661319733,-0.01678861863911152,-0.01736690290272236,0.07518453150987625,0.025999778881669044,-0.058517951518297195,-0.0076234969310462475,0.06344568729400635,-0.03771216794848442,0.02963065356016159,0.013286184519529343,0.011407649144530296,0.004987092223018408,0.08144400268793106,-0.0038851757999509573,0.07347342371940613,-0.010064288973808289,0.020643077790737152,0.0028285409789532423,0.0765392929315567,-0.0051583643071353436,0.057538293302059174,0.01377197541296482,-0.012792153283953667,-0.08056532591581345,0.040173083543777466,-0.04817740246653557,-0.049014776945114136,0.009951610118150711,-0.007460088934749365,0.027764447033405304,-0.05148639529943466,0.023328572511672974,0.036977507174015045,0.006629605777561665,0.0036417136434465647,0.03687480464577675,0.03529025986790657,0.07342404872179031,-0.03709254413843155,-0.06952574104070663,-0.03464067727327347,-0.009214676916599274,-0.03284362703561783,-0.03897695615887642,-0.02328868955373764,-0.04245695099234581,0.017615798860788345,0.03794938325881958,0.024437258020043373,-0.06296360492706299,0.06268565356731415,-0.049601420760154724,0.02284296788275242,-0.06888711452484131,0.011826146394014359,0.02990899607539177,-0.005800444632768631,-0.0684988796710968,-0.008810233324766159,0.08330421894788742,-0.00755755789577961,-0.013452024199068546,-0.05615546554327011,-0.008440401405096054,0.02196505293250084,0.035373520106077194,0.07326268404722214,-0.01866288110613823,-0.06259030848741531,-0.021794699132442474,0.061155397444963455,-0.032964643090963364,-0.024304065853357315,-0.041753895580768585,0.023864874616265297,0.08107754588127136,-0.039272964000701904,0.0013079085620120168,-0.02336217649281025,0.005799654871225357,0.07720459997653961,0.052014417946338654,0.019896600395441055,0.029718035832047462,-0.0031819818541407585,-0.027442242950201035,-0.07676434516906738,-0.028140613809227943,-0.02166363224387169,-0.011074732057750225,-0.028466826304793358,-0.019590992480516434,0.04494890570640564,0.036142490804195404,-0.021796392276883125,-0.04694107919931412,0.0757284164428711,0.001675558160059154,0.050028108060359955,0.050097960978746414,-0.05061124637722969,0.05360395833849907,-0.029375100508332253,0.037407174706459045,-0.00849084835499525,-0.0022327357437461615,0.02111942507326603,-0.010778485797345638,0.013918664306402206,-0.09168703109025955,-0.060727354139089584,0.013875582255423069,0.03413664922118187,0.021435989066958427,-0.07680299133062363,-0.044933024793863297,0.05104012414813042,0.054127536714076996,-0.02846420183777809,-0.06390088051557541,-0.09060300141572952,0.07445801049470901,-0.012108825147151947,-0.010153483599424362,0.03573242947459221,0.04769046977162361,-0.010052951984107494,-0.05498148500919342,0.01836477592587471,-0.03764863312244415,-0.028533853590488434,-0.026215290650725365,-0.07188170403242111,-0.036867838352918625,0.050766270607709885,-0.0038462358061224222,0.07970596849918365,0.08516757190227509,0.019777344539761543,-0.042430292814970016,0.001675667124800384,0.027236882597208023,0.07613198459148407,-0.03838276118040085,0.05627521872520447,0.022638855502009392,-0.04882201552391052,0.06129135936498642,-0.0025633135810494423,0.051397744566202164,-0.08742202818393707,0.01978105679154396,0.028313979506492615,-0.016643110662698746,0.015801090747117996,0.055752191692590714,-0.047431498765945435,-0.07995127886533737,-0.015905875712633133,-0.019576573744416237,0.03553476929664612,0.02434791624546051,0.03243677318096161,-0.03721679747104645,-0.0067526367492973804,0.04668532684445381,-0.024910543113946915,-0.06647960841655731,-0.05455006659030914,-0.04146253317594528,-0.04552336782217026,-0.023842351511120796,0.02163553237915039,-0.018574709072709084,-0.07323314994573593,0.006869232282042503,-0.020231712609529495,0.016694139689207077,-0.039006736129522324,0.0326133631169796,0.016861911863088608,0.04723291099071503,-0.05107106268405914,0.05707766115665436,0.02855600416660309,0.005593493580818176,0.07529276609420776,-0.042089540511369705,-0.0535564087331295,-0.05303439870476723,-0.06400880217552185,-0.002760739531368017,0.014321492984890938,0.06543197482824326,0.04946279153227806,0.04648999124765396,0.041162021458148956,-0.046773627400398254,-0.06468753516674042,-0.06066131964325905,-0.04023111239075661,0.07054834812879562,0.0010951753938570619,0.05325784534215927,-0.026600252836942673,-0.034161798655986786,0.07634338736534119,-0.08286621421575546,0.07674968242645264,-0.04279347136616707,0.08093903213739395,0.017194246873259544,-0.010197733528912067,-0.036816149950027466,-0.004189762286841869,0.061655741184949875,-0.006569840479642153,0.012757999822497368,0.07025577872991562,0.05400622636079788,-0.05554429441690445,0.03839796781539917,0.005155718419700861,-0.07202868908643723,-0.04500530660152435,-0.012542301788926125,-0.011587008833885193,-0.05181564390659332,-0.06583178788423538,0.044676169753074646,-0.053125496953725815,-0.008222730830311775,0.00806473009288311,-0.046329792588949203,0.07335444539785385,0.07882943004369736,-0.08447667211294174,-0.03137955442070961,-0.056314028799533844,0.015686362981796265,-0.022328676655888557,-0.03994720056653023,0.03868228942155838,0.03964066505432129,-0.05172853171825409,0.04480978846549988,0.08064358681440353,-0.05482231453061104,0.06648579239845276,-0.012885096482932568,0.04360678791999817,-0.022888273000717163,0.03703939914703369,0.025668250396847725,0.02970370277762413,-0.06777006387710571,0.0020760020706802607,-0.008111040107905865,0.04758954793214798,-0.052712030708789825,0.02357473224401474,-0.06295694410800934,0.020382298156619072,0.0001726145128486678,-0.014748815447092056,0.02415342628955841,-0.043344829231500626,0.04008663073182106,-0.031049322336912155,-0.03805609419941902,0.05624835193157196,0.020880289375782013,0.00886194221675396,0.06371169537305832,0.007820402272045612,0.03141041100025177,0.03879499435424805,-0.009587212465703487,0.045196786522865295,0.07515618950128555,-0.01659698598086834,-0.02592296525835991,-0.053911611437797546,0.011341108940541744,0.0057787299156188965,0.013249296694993973,0.03129678964614868,-0.05267789587378502,-0.03956928849220276,-0.005950747989118099,-0.003625249955803156,-0.06064073368906975,-0.04619203135371208,-0.021685035899281502,0.07799194008111954,0.03372778743505478,-0.011821247637271881,-0.06306564807891846,0.07925330102443695,0.0030066671315580606,0.04064163193106651,0.006278143730014563,-0.026241907849907875,0.05123164877295494,-0.020914370194077492,0.0029731409158557653,-0.016646545380353928,0.0427824929356575,-0.07068303972482681,-0.07275525480508804,0.014683479443192482,0.043966516852378845]},{"id":"klepto-couches","vector":[0.021402962505817413,-0.04886689409613609,-0.014094958081841469,0.016802731901407242,-0.0356919951736927,-0.00909876637160778,-0.03577614575624466,-0.08126318454742432,0.03160571679472923,0.010200396180152893,0.03683590516448021,0.03464973345398903,-0.004918025806546211,-0.016579706221818924,-0.06094510853290558,0.04032457247376442,-0.03815736249089241,-0.06896094977855682,-0.04754817858338356,-0.00020455171761568636,0.0249501820653677,0.03694719076156616,0.039488013833761215,-0.05545485019683838,0.03904092311859131,0.0075395130552351475,-0.006301868706941605,0.043232668191194534,-0.05232924222946167,-0.04631863534450531,0.032607611268758774,-0.07417462021112442,0.03385309502482414,-0.034692320972681046,0.051364291459321976,0.01031726598739624,-0.03621416538953781,-0.012271186336874962,-0.026940857991576195,-0.09035259485244751,-0.047851044684648514,0.02063046582043171,0.06476671993732452,-0.016017429530620575,0.013971864245831966,-0.020857227966189384,-0.06472578644752502,0.017833197489380836,0.039438191801309586,0.0019505287054926157,0.02170015685260296,-0.011024998500943184,0.00690405024215579,-0.04655592516064644,0.011363560333848,0.02488585375249386,-0.014941965229809284,0.026482468470931053,-0.004877464845776558,-0.055140137672424316,-0.0732259601354599,-0.023059312254190445,-0.02242310158908367,0.01699041575193405,-0.03737867251038551,0.005903352051973343,0.09121304005384445,-0.025127572938799858,0.06312994658946991,-0.05708790570497513,0.019641418009996414,-0.014177382923662663,-0.010674957185983658,-0.0057581705041229725,-0.05184086784720421,-0.05056172236800194,0.00016747668269090354,-0.039346594363451004,-0.015243539586663246,0.0802132859826088,-0.01610284112393856,0.04568445309996605,-0.005151593592017889,-0.009282434359192848,-0.06790919601917267,0.04627341032028198,-0.015039374120533466,0.045128606259822845,-0.035266682505607605,0.07438888400793076,-0.03650690242648125,0.04560234770178795,-0.046035341918468475,0.04414871335029602,-0.04597717896103859,0.046638283878564835,-0.07917234301567078,0.013192581944167614,-0.06629474461078644,-0.04751734435558319,-0.08841531723737717,-0.02461746521294117,0.0025380211882293224,0.0048458208329975605,-0.07180654257535934,0.06720708310604095,-0.02364668995141983,0.04441132768988609,0.05357404798269272,0.006634981371462345,0.01591629907488823,-0.0629216805100441,0.010011176578700542,-0.05862334370613098,-0.02414514869451523,0.019330820068717003,-0.023916080594062805,0.04384920746088028,-0.031415436416864395,0.02727416157722473,-0.017999952659010887,-0.059515342116355896,0.055383991450071335,-0.08647656440734863,-0.03241654857993126,-0.00583626190200448,-0.07117918878793716,0.05650851130485535,0.05599067732691765,-0.07551801204681396,-0.05356229469180107,-0.04375912621617317,-0.01936858519911766,0.06612490862607956,-0.031975340098142624,-0.07328382879495621,-0.0005925402510911226,-0.02001131884753704,-0.05699067935347557,0.04548901319503784,0.0008589422795921564,-0.08340846002101898,0.05127453804016113,0.0482102632522583,0.00763946957886219,0.03370875120162964,0.007509244605898857,0.011904790997505188,0.054984062910079956,0.01886778697371483,-0.024133184924721718,-0.010383842512965202,-0.0366782620549202,-0.049514420330524445,-0.0027788172010332346,-0.023851560428738594,-0.06968811899423599,-0.07825083285570145,0.06663068383932114,-0.05806155502796173,0.03316984698176384,-0.016498778015375137,0.036290206015110016,0.024171842262148857,-0.04812528192996979,0.016653673723340034,0.005350522696971893,-0.05522177368402481,-0.0095756184309721,0.0638541579246521,-0.028409326449036598,-0.001285712467506528,-0.03148239850997925,0.05236838757991791,0.02320353500545025,0.03970791772007942,-0.05536630377173424,0.08095353096723557,0.07681304216384888,0.06696614623069763,-0.025468435138463974,0.09120829403400421,0.02147853374481201,0.013043603859841824,0.025063171982765198,0.06310007721185684,0.0354754775762558,0.04902372136712074,-0.00389528158120811,-0.03662761300802231,-0.03444216772913933,-0.04661151021718979,-0.015306482091546059,0.002468491205945611,0.06276443600654602,-0.08231573551893234,0.02317352034151554,-0.03153237700462341,-0.008566148579120636,0.08586061000823975,-0.039204083383083344,0.03732309862971306,0.042275555431842804,0.003189334413036704,-0.07141239196062088,-0.034517426043748856,0.034608177840709686,0.0007689412450417876,0.03302008658647537,0.08150985091924667,-0.004792657680809498,-0.021189527586102486,0.06856860965490341,0.03105887770652771,0.07820026576519012,0.03990784287452698,-0.044882841408252716,0.01814853399991989,0.07263527810573578,0.04368351772427559,0.020347921177744865,-0.0038987582083791494,-0.021113773807883263,-0.03315850719809532,0.06295633316040039,0.023542413488030434,-0.06212049722671509,0.008056815713644028,0.0118714589625597,0.04655575379729271,-0.000317255558911711,0.018885282799601555,0.05934615805745125,0.02070622704923153,0.008549416437745094,0.07856044173240662,0.029309222474694252,0.03683587536215782,-0.017954502254724503,-0.05982585623860359,-0.055970750749111176,0.0071365381591022015,-0.02948167733848095,-0.025985995307564735,0.002086675725877285,0.012760641053318977,-0.05686386302113533,0.012172358110547066,0.03976139426231384,-0.023695554584264755,0.0697757825255394,-0.07017454504966736,-0.010722404345870018,-0.07159344851970673,-0.022150304168462753,0.0018397209933027625,-0.042068954557180405,0.00122765451669693,-0.005715485662221909,0.08305010199546814,0.018983423709869385,-0.026746192947030067,-0.04790429398417473,-0.026720747351646423,-0.06203239783644676,0.004582846537232399,0.02463771402835846,-0.022534698247909546,-0.012979880906641483,-0.05015246570110321,0.06332399696111679,-0.06053072214126587,-0.0004964038962498307,-0.05057195574045181,-0.02867637574672699,0.08625693619251251,-0.036399926990270615,0.02877448871731758,0.00015824077127035707,-0.0026619124691933393,0.08945766091346741,0.06749247759580612,0.06714468449354172,0.04113621637225151,-0.007234763819724321,-0.012382625602185726,-0.06400228291749954,0.0371912382543087,-0.03960566967725754,-0.0006752858753316104,-0.06265425682067871,-0.018228471279144287,0.02367313951253891,0.03474903851747513,-0.007929079234600067,-0.04184949770569801,0.061268310993909836,-0.02292671427130699,-0.005438390653580427,0.053376469761133194,-0.07362193614244461,0.050627753138542175,-0.02676042541861534,0.028126556426286697,-0.010660221800208092,0.024078628048300743,0.05055999010801315,-0.009084798395633698,-0.048080239444971085,-0.05094115808606148,0.023721614852547646,-0.012290755286812782,0.008650662377476692,-0.01895020343363285,-0.09204992651939392,-0.0629115104675293,0.05285812169313431,-0.03447088971734047,-0.023245694115757942,-0.0474708192050457,-0.05968137085437775,0.057272929698228836,-0.05131705105304718,-0.06743034720420837,0.06632894277572632,-0.02684890292584896,0.026757562533020973,-0.054336853325366974,0.01238654088228941,-0.007580317556858063,-0.07206841558218002,-0.05074312165379524,-0.07170793414115906,-0.028610073029994965,0.037776727229356766,-0.055723804980516434,0.09276939183473587,0.07613193243741989,0.014972678385674953,0.02739514596760273,-0.010555485263466835,0.026106299832463264,0.028954213485121727,-0.025368204340338707,0.023138631135225296,0.05622319504618645,-0.04251986742019653,0.02730986662209034,-0.0003999738546553999,0.0435926727950573,-0.09337174892425537,0.02218416891992092,0.016518358141183853,0.015864649787545204,0.06887388229370117,0.07141324132680893,-0.008512340486049652,-0.07787159830331802,-0.02029985748231411,-0.028618454933166504,0.04103295877575874,0.003336805384606123,0.034496549516916275,-0.05774683505296707,-0.04874558374285698,0.029865002259612083,-0.02877669967710972,-0.05632530525326729,-0.04940875619649887,-0.035956334322690964,-0.04657284915447235,-0.015837430953979492,0.03475700691342354,-0.05955535173416138,-0.06436365842819214,-0.02337036468088627,0.0062726400792598724,0.050507646054029465,-0.001096215914003551,-0.05420049652457237,0.047317251563072205,0.026324233040213585,-0.06046980246901512,0.07200901955366135,0.03500179573893547,-0.04831478372216225,0.05391353368759155,-0.03879181295633316,-0.034153785556554794,-0.06689188629388809,-0.08154629915952682,-0.009181556291878223,-0.03465209901332855,-0.021972643211483955,0.052159711718559265,0.03251165151596069,0.03799610212445259,-0.03900652751326561,-0.026525262743234634,-0.07192318886518478,-0.056732986122369766,0.08339361101388931,-0.0014823537785559893,0.014482093043625355,0.022614795714616776,0.035289403051137924,0.04879346862435341,-0.06063985452055931,0.06647618860006332,-0.04945594444870949,0.05489687994122505,0.02828550711274147,0.03496120870113373,-0.05799124017357826,0.004614921752363443,0.020540157333016396,0.04746245965361595,-0.06424565613269806,0.05616234242916107,-0.04940647631883621,-0.030230147764086723,0.07566862553358078,0.041773129254579544,-0.07546018064022064,-0.016036417335271835,-0.0045536053366959095,-0.023137418553233147,-0.009066582657396793,-0.056297946721315384,-0.010617219842970371,-0.01808001659810543,0.03755427896976471,-0.0604926235973835,-0.023307014256715775,0.060011476278305054,0.08489637821912766,-0.08802005648612976,-0.021999390795826912,-0.06304319947957993,0.005338119342923164,-0.009752747602760792,-0.0283682681620121,0.04444590583443642,0.0338597297668457,0.02291278727352619,0.03639905899763107,0.08642822504043579,-0.05328420549631119,0.05162283033132553,0.00018555892165750265,0.05526387318968773,-0.017374401912093163,0.04211513325572014,0.050652239471673965,0.01968468725681305,-0.07346156239509583,0.006067886017262936,0.02118445746600628,0.04575445502996445,-0.04970132187008858,0.00017186161130666733,-0.06496315449476242,0.03771959990262985,-0.004859496373683214,0.013525289483368397,0.029777824878692627,-0.057922035455703735,0.04660487547516823,-0.04389498010277748,-0.058370191603899,0.022891560569405556,0.02835358865559101,-0.013371328823268414,0.05720767751336098,-0.023806776851415634,0.00582742178812623,0.01564682275056839,0.049140043556690216,0.04495575278997421,0.07663729041814804,0.031246047466993332,-0.02777278795838356,-0.020128462463617325,0.022453123703598976,-0.021476658061146736,0.033774517476558685,0.049086738377809525,-0.030445458367466927,-0.07021114975214005,0.014239048585295677,0.00048198370495811105,-0.07729709148406982,-0.02320423722267151,-0.04814043268561363,0.07196744531393051,-0.05151018127799034,0.00007957483467180282,0.004110037814825773,0.06875618547201157,-0.001461536274291575,0.046788569539785385,0.041057195514440536,-0.01604728028178215,0.04265564680099487,-0.06418034434318542,0.0160061065107584,0.008781901560723782,0.033755261451005936,-0.06832940131425858,-0.07762204855680466,-0.039166342467069626,-0.013231698423624039]},{"id":"leafblower","vector":[0.012523140758275986,-0.025232402607798576,-0.05648089945316315,-0.004260870162397623,0.022998899221420288,0.052941784262657166,0.004324826877564192,-0.04244818538427353,0.02985564060509205,0.05964459106326103,0.03883764147758484,0.03621635213494301,-0.04794261232018471,0.005400095134973526,-0.07676377892494202,-0.01622757874429226,-0.04848096892237663,-0.06717041879892349,-0.0008806735277175903,-0.01291569136083126,0.022861676290631294,-0.03294682875275612,0.014961150474846363,-0.052361782640218735,0.0168311670422554,0.008542675524950027,0.02131662890315056,-0.007527116686105728,-0.06115869805216789,-0.06937462091445923,-0.030703406780958176,-0.06819579750299454,-0.03346575051546097,-0.010460670106112957,0.03738848492503166,0.00657995417714119,-0.051105864346027374,0.05453008413314819,0.033140428364276886,-0.06640519201755524,-0.04790796712040901,-0.030612729489803314,0.05372422933578491,-0.028935374692082405,-0.000347640598192811,-0.05061791092157364,-0.03363436087965965,0.006154685281217098,0.043578892946243286,0.04034876078367233,0.04444308578968048,-0.07094115018844604,-0.014125877059996128,0.020004652440547943,-0.02666614204645157,-0.04517268016934395,0.02502581849694252,0.05872902274131775,0.03619842231273651,-0.06061837449669838,-0.07429174333810806,0.024571120738983154,-0.04393189027905464,0.029440488666296005,-0.03368951752781868,0.035494573414325714,0.08096562325954437,0.040919139981269836,0.07035396248102188,-0.060320042073726654,-0.02932310290634632,0.03567872941493988,0.003268259344622493,0.06350977718830109,-0.07884455472230911,-0.0718444362282753,0.03798538073897362,0.01760846935212612,0.03958679363131523,0.062160130590200424,0.031371522694826126,0.032751474529504776,-0.002111602807417512,0.010778810828924179,0.003368302946910262,0.05291593447327614,0.03050617314875126,0.07419320940971375,-0.038131099194288254,0.049493201076984406,-0.010092692449688911,-0.036091700196266174,0.021816324442625046,0.03793034702539444,-0.04769917204976082,0.02058178372681141,-0.0735970214009285,-0.029553433880209923,-0.0059563168324530125,-0.024080194532871246,-0.095258429646492,0.03368204087018967,-0.01039927639067173,0.05056295916438103,-0.0029309820383787155,-0.007779804058372974,-0.07272174954414368,0.0710209533572197,0.07141180336475372,0.048793382942676544,-0.041958022862672806,-0.0552966445684433,-0.006264480762183666,-0.0601634755730629,-0.028604358434677124,0.014785122126340866,0.006276081316173077,-0.009503969922661781,-0.06759174168109894,0.0151060800999403,-0.023213259875774384,-0.07014936208724976,-0.03663104400038719,-0.06806550920009613,-0.03865561634302139,0.036240316927433014,-0.0438176691532135,0.07205720245838165,0.05010506510734558,-0.058793921023607254,-0.033756013959646225,-0.06433731317520142,-0.025475535541772842,0.009172973223030567,-0.05155036970973015,-0.07281974703073502,-0.003314018016681075,-0.053343597799539566,-0.024396417662501335,0.05329306423664093,0.042376257479190826,-0.04454833269119263,0.06284356117248535,0.06772807985544205,-0.01965811662375927,0.004623047076165676,0.05554717034101486,0.010805332101881504,0.020979519933462143,0.040566686540842056,-0.018658127635717392,0.029214439913630486,-0.03842081502079964,-0.04770328104496002,-0.0144460154697299,-0.01775261200964451,0.01122246216982603,-0.019175060093402863,0.06739331781864166,-0.05665230005979538,0.04304860159754753,-0.02480475604534149,0.026644529774785042,-0.012230494990944862,-0.021884623914957047,0.054477084428071976,0.0038777568843215704,-0.06934808939695358,-0.007241571322083473,0.07753810286521912,-0.03612861409783363,-0.010415708646178246,-0.009417041204869747,0.08623456954956055,-0.03518277034163475,0.0240876954048872,-0.06390926986932755,0.076955646276474,0.07407379895448685,0.04788648709654808,-0.012795040383934975,0.07596892863512039,0.041895538568496704,0.015511038713157177,0.007002935279160738,0.02328640967607498,0.04773750528693199,0.03782742843031883,0.040859155356884,-0.06039651110768318,-0.03227723762392998,-0.030534891411662102,-0.04208194836974144,0.00890396162867546,0.07923371344804764,-0.05232420936226845,-0.03827476128935814,-0.02122114598751068,0.05556834489107132,0.08674563467502594,-0.014971421100199223,0.017407195642590523,0.05775340646505356,-0.00961742177605629,-0.0606863796710968,-0.03399957716464996,0.0004901618231087923,-0.06431885808706284,0.039532892405986786,0.07077684998512268,-0.0026877671480178833,-0.05627130717039108,0.08453004062175751,-0.016286293044686317,0.07031852751970291,0.018286190927028656,-0.020417671650648117,0.041799262166023254,0.06132757291197777,-0.015274247154593468,0.0011865980923175812,-0.0332273431122303,-0.009015651419758797,-0.06587331742048264,0.040031395852565765,-0.00045949011109769344,0.02867169678211212,-0.019038574770092964,-0.006688493303954601,0.03643999248743057,0.007594549097120762,0.020385878160595894,-0.0011551615316420794,0.01610587351024151,0.022427642717957497,0.05317854881286621,0.021435100585222244,0.06617747247219086,0.06932873278856277,0.049072541296482086,-0.06087139993906021,-0.047809816896915436,0.03705904632806778,-0.045396775007247925,0.012620017863810062,-0.045308228582143784,-0.004191046115010977,0.011007691733539104,0.027703655883669853,-0.0414738655090332,0.026369338855147362,-0.08059020340442657,-0.005724078975617886,-0.07444335520267487,-0.011168083176016808,0.010561884380877018,-0.01475354004651308,-0.061929140239953995,0.006300712935626507,0.061514850705862045,0.043386030942201614,-0.0038202060386538506,-0.009462173096835613,-0.007997681386768818,-0.00426099356263876,-0.021558506414294243,-0.006502731703221798,-0.0553538054227829,-0.03376956284046173,-0.026898037642240524,0.04758352041244507,-0.010996202006936073,-0.012403232976794243,-0.031022004783153534,0.002330446382984519,0.0405285581946373,-0.016602221876382828,0.030299901962280273,0.002229297300800681,-0.04874909669160843,0.06830243766307831,0.07715926319360733,0.06644173711538315,0.032178353518247604,-0.02349669672548771,-0.05439844727516174,-0.08514373004436493,0.03136694058775902,-0.04719312861561775,-0.05704275891184807,0.009057613089680672,-0.04613325372338295,0.06881626695394516,0.021749479696154594,-0.011001909151673317,-0.04196307435631752,0.0544612854719162,0.0407753586769104,0.03854404017329216,0.04644467309117317,-0.002621492138132453,0.044809192419052124,0.003594782669097185,0.05871744826436043,0.049458060413599014,0.05131937563419342,-0.036941371858119965,-0.02326527051627636,-0.023074431344866753,-0.08174499124288559,-0.013912453316152096,-0.004341815132647753,0.026748500764369965,0.040761325508356094,-0.08180210739374161,-0.04007229581475258,0.06306546181440353,-0.014326910488307476,-0.035342518240213394,-0.03327549248933792,-0.07326387614011765,0.045968230813741684,-0.04376468062400818,-0.04415823891758919,0.0518760085105896,0.006660580635070801,-0.020283153280615807,-0.04478464648127556,0.014363943599164486,-0.05878174677491188,-0.0002359245263505727,-0.026460250839591026,-0.074013851583004,-0.0061232540756464005,0.03439408168196678,0.012232592329382896,0.08038044720888138,0.07821319997310638,0.03253705054521561,0.031628068536520004,-0.019808828830718994,0.020690126344561577,0.06310548633337021,-0.019792266190052032,0.018294263631105423,0.04402872174978256,-0.0192465391010046,0.05928261950612068,-0.047252751886844635,0.07195120304822922,-0.06936956197023392,0.056026704609394073,0.06214218959212303,0.043732788413763046,0.06301049888134003,0.06253848969936371,-0.020161865279078484,-0.07198042422533035,-0.005852059926837683,0.054549384862184525,0.044730957597494125,-0.03466064855456352,0.03383566066622734,-0.06714321672916412,0.02513514645397663,0.030473189428448677,-0.047353897243738174,-0.05804038792848587,-0.037294577807188034,-0.033713288605213165,-0.07720331102609634,-0.003536141011863947,0.022119544446468353,-0.07074985653162003,-0.08819115161895752,0.015347125940024853,0.03115791641175747,0.05480052903294563,-0.002582489512860775,0.0031032604165375233,-0.01540306955575943,0.06572005897760391,-0.03372925892472267,0.04553505778312683,0.01925896294414997,0.02066671848297119,0.0647946372628212,-0.05317724496126175,-0.04191580042243004,-0.012432198971509933,-0.0541347935795784,-0.056589897722005844,0.026779383420944214,-0.00621277978643775,0.06739815324544907,0.05646730214357376,0.033865828067064285,-0.07031949609518051,-0.026155807077884674,-0.07951010763645172,-0.03450838103890419,0.05285648629069328,0.03892950713634491,0.017114244401454926,-0.018835358321666718,-0.010268055833876133,0.06225794553756714,-0.0668862909078598,0.06872304528951645,-0.05427191033959389,0.0736820250749588,0.01756608672440052,-0.007547223940491676,-0.019906731322407722,0.004214126616716385,-0.02670404314994812,-0.007126187440007925,-0.08558997511863708,0.07265254855155945,-0.0011504169087857008,-0.043014246970415115,0.038167111575603485,0.0034788623452186584,-0.05783822014927864,-0.049675408750772476,-0.014394333586096764,-0.02725646086037159,-0.04273878410458565,-0.05953672528266907,0.03139377757906914,-0.0017379953060299158,0.051875192672014236,0.009801308624446392,-0.05386984720826149,0.0012672552838921547,0.07698758691549301,-0.014814571477472782,0.0163747388869524,-0.06114634871482849,-0.02429133467376232,-0.06110292300581932,-0.017557715997099876,0.04594065248966217,0.04585554823279381,-0.07292301207780838,0.014715614728629589,0.08049773424863815,-0.06432105600833893,0.0711800679564476,-0.0172122810035944,-0.007431201171129942,-0.015528256073594093,0.023249385878443718,0.023272445425391197,0.04140299931168556,-0.07684890180826187,0.0007398448651656508,0.04467202350497246,0.04980327934026718,-0.05076906457543373,0.01247402187436819,-0.07983347028493881,0.005267435684800148,-0.017313264310359955,-0.032457344233989716,0.02041766047477722,-0.07043607532978058,0.04207560792565346,-0.057502999901771545,-0.057475246489048004,0.0013455146690830588,0.007117983885109425,-0.044412609189748764,0.026834949851036072,-0.007247435860335827,-0.00889685470610857,0.02653263323009014,0.029719315469264984,0.006519028451293707,0.0750267282128334,0.06783073395490646,0.03339685872197151,-0.03455985337495804,0.019526293501257896,0.03435271233320236,0.0038862256333231926,0.035300519317388535,-0.03867191821336746,-0.07539688795804977,-0.017943043261766434,0.007769565097987652,-0.06981079280376434,-0.0741613581776619,-0.007606116589158773,0.07686974853277206,-0.004453382920473814,0.03169514611363411,-0.07296687364578247,0.08058415353298187,-0.021820196881890297,-0.014662920497357845,0.03704197332262993,-0.042165450751781464,0.025533407926559448,-0.03696853667497635,0.009542767889797688,0.03697657585144043,0.05489538982510567,-0.08343558013439178,-0.06501007825136185,0.02598375268280506,0.008081698790192604]},{"id":"molecules-and-men","vector":[-0.017335601150989532,-0.04772709310054779,-0.033496979624032974,-0.015926523134112358,-0.005461800377815962,0.0019102802034467459,0.023773541674017906,-0.08013726770877838,0.03598838299512863,0.026382779702544212,0.0456545352935791,0.020093141123652458,-0.04673515260219574,0.0493040457367897,-0.047433268278837204,0.03206861391663551,-0.0750926285982132,-0.07028960436582565,-0.06789328157901764,0.009633824229240417,-0.017213424667716026,0.019198276102542877,0.0424189455807209,-0.03961954638361931,0.04349474981427193,0.00982887763530016,-0.02150094322860241,0.021547511219978333,-0.0592159703373909,-0.054963819682598114,0.06104973703622818,-0.05858732387423515,-0.02073276787996292,-0.03676765412092209,0.032677359879016876,0.06040745601058006,-0.049316346645355225,0.0343923382461071,0.05362837761640549,-0.025669265538454056,-0.02183673344552517,0.024238159880042076,0.06649557501077652,-0.07781631499528885,-0.05474011227488518,0.048414196819067,-0.03599792346358299,0.02290264703333378,0.03643926978111267,0.05859168991446495,-0.04108528420329094,-0.011168891564011574,0.012346675619482994,-0.05230894684791565,0.042513445019721985,0.028936229646205902,0.04836108908057213,0.03628895804286003,0.053973712027072906,-0.065567746758461,-0.055447693914175034,-0.047861918807029724,-0.05560160055756569,0.02554752677679062,-0.06333141773939133,0.040423061698675156,0.08276990801095963,0.03113372251391411,0.07782438397407532,-0.07705114781856537,0.0324627049267292,-0.06665316224098206,0.037324510514736176,0.06180236488580704,-0.06993483006954193,-0.07117228209972382,0.05271437391638756,-0.015786433592438698,-0.028414996340870857,0.025621453300118446,-0.005661385599523783,0.029678385704755783,0.04623502865433693,-0.05930643528699875,-0.018377166241407394,0.049709662795066833,-0.013881209306418896,0.030814355239272118,-0.043320536613464355,0.06092942878603935,0.023285403847694397,0.03307851031422615,-0.010281509719789028,0.06667032837867737,-0.03001546300947666,0.04482299089431763,-0.04027935490012169,-0.0011991336941719055,-0.010493135079741478,-0.019460519775748253,-0.07965199649333954,-0.017353184521198273,-0.034586139023303986,-0.014611585065722466,-0.034747861325740814,0.037382420152425766,-0.03873113915324211,0.07919017225503922,0.0766008272767067,-0.01630096323788166,-0.012269949540495872,-0.05023614689707756,0.03183108940720558,-0.06732849031686783,-0.01841769553720951,0.033496808260679245,-0.005046061705797911,0.062081899493932724,-0.061200980097055435,0.040027983486652374,-0.043115973472595215,-0.07949420064687729,0.04655859246850014,-0.06943724304437637,-0.049875013530254364,-0.044725269079208374,-0.03215019404888153,0.06668581068515778,0.02111164480447769,-0.05138249695301056,-0.02927349880337715,-0.05445011332631111,0.00936055090278387,0.05137449502944946,-0.016970766708254814,-0.0635739266872406,-0.04336173087358475,-0.05944342911243439,-0.011449004523456097,-0.048974793404340744,0.01732456311583519,-0.05228840559720993,0.04094536975026131,0.07307901233434677,-0.015600754879415035,0.016467981040477753,0.01623818837106228,0.011344141326844692,0.022289235144853592,0.04615117609500885,-0.0404091402888298,-0.023141546174883842,-0.0723089799284935,-0.03331747651100159,-0.03532660752534866,-0.05089947581291199,0.06816664338111877,-0.06695939600467682,0.07806354761123657,-0.0700334832072258,-0.021028654649853706,0.010481717064976692,0.026896150782704353,0.018167804926633835,0.0044653755612671375,0.010468535125255585,0.019071323797106743,-0.05815603584051132,0.01976238377392292,0.06241082400083542,-0.049530819058418274,-0.02762252651154995,-0.05757077783346176,0.021109241992235184,-0.03614453598856926,0.05845404788851738,-0.07882581651210785,0.0791383758187294,0.07819996029138565,0.08152168989181519,-0.0010747804772108793,0.05319172143936157,0.039954040199518204,0.003369400277733803,0.03229038417339325,0.038592513650655746,0.03229252249002457,0.04456789046525955,0.02846165932714939,0.0018429468618705869,-0.04505058005452156,-0.021349191665649414,0.012038386426866055,-0.02839110605418682,0.08100637048482895,-0.07456434518098831,-0.0019858614541590214,0.013086440041661263,0.01835828647017479,0.07806558907032013,-0.02009258233010769,0.013357114046812057,0.02020632103085518,0.011735805310308933,-0.020854515954852104,-0.06122004985809326,0.029193231835961342,-0.00910832080990076,0.031852297484874725,0.0566590279340744,0.01903863437473774,-0.00934509839862585,0.06601107865571976,-0.0445597805082798,0.04701763018965721,0.034584708511829376,-0.012846539728343487,0.055284298956394196,0.0595206692814827,-0.012589388526976109,0.03442961350083351,-0.0015655107563361526,0.007240037899464369,-0.06703358888626099,0.028976742178201675,-0.028408268466591835,-0.015921859070658684,-0.003613606560975313,-0.03301394730806351,-0.02057529240846634,-0.009146551601588726,0.029681354761123657,0.041861794888973236,0.007646854035556316,0.017538707703351974,0.07093056291341782,0.056738778948783875,0.04153088852763176,0.007721639238297939,-0.060804303735494614,-0.06178932264447212,0.055327918380498886,0.012135758064687252,-0.0004550926969386637,0.03142702579498291,0.0027510446961969137,-0.027549436315894127,-0.010992506518959999,0.04606221988797188,-0.02320360206067562,0.06921778619289398,-0.07560592889785767,0.0525808148086071,-0.07249446958303452,0.0018432881915941834,0.0628935694694519,0.011422021314501762,-0.06815854460000992,0.00780170364305377,0.07543957978487015,0.028764842078089714,0.00770045118406415,-0.05866078659892082,-0.006347151938825846,-0.02409101091325283,0.058514874428510666,-0.00827079452574253,-0.039753127843141556,0.004673026967793703,-0.013588071800768375,0.06850181519985199,-0.06506304442882538,-0.015377048403024673,-0.03840019926428795,-0.013320008292794228,0.0754527747631073,-0.054067641496658325,0.022489219903945923,-0.04037359729409218,-0.003109964309260249,0.07172220200300217,0.07853793352842331,0.02873431146144867,0.01704471930861473,-0.016217702999711037,-0.04272029548883438,-0.05159725993871689,0.03571360930800438,-0.04748304933309555,-0.04869129881262779,-0.040537942200899124,-0.008441544137895107,0.07551737129688263,0.029365550726652145,-0.02286718226969242,-0.06991990655660629,0.0649404376745224,0.008300838060677052,0.006718214135617018,0.050237640738487244,0.040972426533699036,0.06242995709180832,-0.053718723356723785,0.04509792476892471,0.013466184958815575,0.007843159139156342,0.02797802723944187,0.006906118243932724,-0.011231289245188236,-0.08251083642244339,-0.03861965611577034,0.05435355380177498,0.034731507301330566,0.04944012686610222,-0.0782708004117012,-0.07151761651039124,0.016365565359592438,0.026908334344625473,-0.03123013861477375,-0.06771314144134521,-0.07810412347316742,0.039982229471206665,0.007116477470844984,-0.021948648616671562,0.03364413231611252,0.04150610417127609,-0.018337948247790337,-0.025443771854043007,-0.027351386845111847,-0.07622281461954117,-0.04907747730612755,-0.05910748243331909,-0.04717978835105896,-0.0030465186573565006,0.037027109414339066,-0.0028823362663388252,0.07956145703792572,0.08224084973335266,0.0236061904579401,0.014599437825381756,-0.015061525627970695,0.040121566504240036,0.008345737121999264,0.0013561167288571596,0.005845020059496164,0.03474894538521767,0.00010617981752147898,0.0394737645983696,-0.02307523973286152,0.052841465920209885,-0.0832468718290329,0.038281362503767014,0.03895805403590202,-0.023920265957713127,-0.007851976901292801,0.0755639523267746,-0.03979773819446564,-0.07320792227983475,0.041425399482250214,-0.0008350280113518238,0.05236374959349632,-0.013428187929093838,0.012157809920608997,-0.056068237870931625,-0.022485405206680298,0.03894885256886482,-0.010457219555974007,-0.032483331859111786,-0.03543918579816818,-0.04537992551922798,-0.044666655361652374,-0.02058519795536995,0.04900159314274788,-0.03631714731454849,-0.07667716592550278,-0.008820788003504276,0.006720544304698706,0.0207980889827013,0.028175709769129753,0.012876384891569614,0.005760174710303545,-0.03375082090497017,-0.05581049621105194,0.06511202454566956,0.03610049933195114,-0.024130959063768387,0.021948469802737236,-0.034474536776542664,-0.030281508341431618,-0.0738816112279892,-0.03852131590247154,0.012075118720531464,-0.0010030162520706654,0.042602941393852234,0.033511146903038025,0.04485861584544182,0.06688066571950912,-0.045277029275894165,-0.032151177525520325,-0.06778322160243988,-0.06160909682512283,0.062119707465171814,-0.0132140489295125,0.03443225845694542,-0.027246374636888504,-0.00012549986422527581,0.059001315385103226,-0.0701693519949913,0.05718844011425972,-0.025059230625629425,0.043158143758773804,0.03332431986927986,-0.0029572900384664536,0.0020238985307514668,-0.0023327728267759085,0.03682314604520798,0.02384622022509575,-0.012303842231631279,0.06176213175058365,0.054961271584033966,-0.059638284146785736,0.059243857860565186,0.028720147907733917,-0.05705615505576134,0.001084859250113368,0.004790229257196188,-0.02766086906194687,-0.05697854235768318,-0.06996849179267883,-0.016259104013442993,0.018212342634797096,0.01708451844751835,-0.008828201331198215,-0.006031241733580828,0.06019246578216553,0.0707712396979332,-0.08048155158758163,-0.02255542203783989,-0.044266339391469955,0.00204013311304152,-0.012588690035045147,-0.0448121577501297,0.04533359408378601,0.050903160125017166,-0.06248216703534126,0.046422217041254044,0.07963776588439941,-0.07537182420492172,0.07537233829498291,-0.043532878160476685,0.03220992535352707,0.011211623437702656,-0.02162468060851097,-0.05751006305217743,0.04615025967359543,-0.07102813571691513,0.003285807790234685,0.017904728651046753,0.061114393174648285,-0.055089980363845825,-0.02225733920931816,-0.04813157021999359,-0.016873927786946297,-0.02562134899199009,-0.03236119821667671,0.031036777421832085,-0.05665748938918114,0.055197007954120636,-0.07321982085704803,-0.042473215609788895,0.021159041672945023,0.0662461444735527,0.0222790390253067,0.04094087705016136,0.005526439752429724,0.0012549040839076042,0.0749489814043045,-0.021906103938817978,0.03801649436354637,0.06597402691841125,-0.02524598129093647,-0.029443982988595963,-0.0550483837723732,-0.009550318121910095,0.015729771926999092,0.010055546648800373,0.02390371821820736,-0.024806233122944832,-0.051352374255657196,0.04450030252337456,-0.03569986671209335,-0.05607246235013008,-0.05256250500679016,0.01568441651761532,0.06849296391010284,0.041562698781490326,0.02046646550297737,-0.041184816509485245,0.07531480491161346,0.03805151954293251,0.027879418805241585,0.03272343426942825,-0.05563271790742874,0.013882611878216267,-0.05614185333251953,0.03887833654880524,0.05383443832397461,0.042948175221681595,-0.07644621282815933,-0.06029976159334183,0.05396423861384392,0.05015966668725014]},{"id":"monday-morning-shift","vector":[0.013623276725411415,-0.026311084628105164,-0.053430717438459396,0.007123101968318224,-0.021255768835544586,-0.011409438215196133,-0.044254120439291,-0.08420164883136749,0.04669783264398575,-0.04346194118261337,0.020461618900299072,0.004249304533004761,0.002689848653972149,0.04092777520418167,-0.06831560283899307,0.026709353551268578,-0.036871910095214844,-0.08151691406965256,-0.017656251788139343,0.040453244000673294,-0.013565043918788433,-0.04350438341498375,0.021254276856780052,-0.04010576754808426,0.0394577793776989,0.01541056577116251,0.030529547482728958,-0.012726419605314732,-0.05509026348590851,-0.0444573238492012,0.06074439734220505,-0.06198165938258171,-0.07464362680912018,-0.048185791820287704,0.05566826090216637,0.02787533588707447,-0.044363945722579956,0.03080814518034458,0.05566127970814705,-0.07149156183004379,-0.05039362236857414,0.007505285553634167,0.07344762980937958,-0.05602743476629257,-0.03459082543849945,-0.02076023630797863,-0.06008363515138626,-0.028491588309407234,0.06581541150808334,0.05451938509941101,0.04348686710000038,-0.06697594374418259,-0.010786634869873524,-0.024237731471657753,0.017318017780780792,-0.0628761574625969,0.034051358699798584,0.019673500210046768,0.021839674562215805,-0.05190710350871086,-0.07696911692619324,-0.021143097430467606,-0.04507230594754219,0.03870983421802521,-0.04842314496636391,0.020655501633882523,0.09362275153398514,0.033454883843660355,0.07809415459632874,-0.06203743815422058,-0.030168572440743446,-0.054909687489271164,-0.03790890797972679,-0.024752682074904442,-0.046787478029727936,-0.057568032294511795,0.013304653577506542,-0.057403258979320526,0.021538646891713142,0.05743326246738434,0.016013359650969505,-0.005076283123344183,0.027638675644993782,0.02104761078953743,-0.04418681189417839,0.04236970841884613,0.03481425344944,0.046503033488988876,0.0009744695853441954,0.014226170256733894,0.0168758574873209,0.017999479547142982,-0.03390612453222275,0.05708184093236923,-0.04394841939210892,0.022611774504184723,-0.06871993839740753,-0.05359702557325363,-0.027680769562721252,-0.038766130805015564,-0.07966957241296768,0.03406061232089996,0.008822315372526646,0.04227711260318756,0.004392427392303944,-0.020717419683933258,-0.06986682116985321,0.060692861676216125,0.01741194538772106,0.07047923654317856,-0.027258269488811493,-0.044884562492370605,0.00947450753301382,-0.04345767945051193,-0.015295603312551975,0.055141858756542206,-0.0018037956906482577,0.05823744088411331,-0.0404324010014534,0.01784987561404705,-0.03302512317895889,-0.07128748297691345,0.038752250373363495,-0.0742960050702095,-0.0067460425198078156,-0.00019525460083968937,0.04314958304166794,0.08172035217285156,0.052233967930078506,-0.031910333782434464,-0.05744089558720589,-0.038254063576459885,-0.000312740943627432,-0.023306425660848618,-0.03697100654244423,-0.08188199251890182,-0.007028610445559025,-0.019808873534202576,0.006119897589087486,0.006096396129578352,0.03745473548769951,-0.010544691234827042,0.05977789685130119,0.07741457223892212,-0.0013483257498592138,0.02399578131735325,0.026333795860409737,0.03279291093349457,0.03033371828496456,0.05644982308149338,0.004436771851032972,0.02072221226990223,-0.04331783205270767,0.01975519396364689,-0.021317193284630775,0.017358755692839622,0.023360740393400192,-0.06530781835317612,0.04540588706731796,-0.059041235595941544,-0.0038553469348698854,-0.017308533191680908,0.05068354308605194,0.005289963446557522,0.011235786601901054,0.024139875546097755,0.05264821648597717,-0.05132630094885826,-0.012400621548295021,0.05843503400683403,-0.05294640734791756,-0.023639190942049026,0.0050246817991137505,0.03639426827430725,-0.04752521589398384,0.039665061980485916,-0.057074371725320816,0.08536417782306671,0.07585155218839645,0.045675717294216156,-0.0573413148522377,0.045068107545375824,0.0349973700940609,-0.013701483607292175,0.035373132675886154,0.04176214709877968,0.03264424204826355,0.051683858036994934,0.0407264418900013,-0.06289661675691605,-0.036603379994630814,0.011853205040097237,-0.04412159323692322,0.02393108420073986,0.0622258298099041,-0.048988766968250275,-0.02422158047556877,0.03899966552853584,0.013270133174955845,0.0904233455657959,-0.03489333391189575,0.0018198948819190264,0.035369906574487686,-0.04256686940789223,-0.08055922389030457,-0.03993125259876251,0.059479232877492905,-0.0783718079328537,0.03485153615474701,0.06561162322759628,0.03588908910751343,-0.016963236033916473,0.054894477128982544,0.013963617384433746,0.06697788834571838,0.022647425532341003,-0.03410955145955086,0.008758594281971455,0.07158743590116501,-0.01854075863957405,0.009007103741168976,-0.03962137550115585,0.009829557500779629,-0.016575252637267113,0.047308359295129776,-0.01512906514108181,-0.010681883431971073,0.06331431120634079,0.009555794298648834,0.030213717371225357,0.018328990787267685,0.00557404849678278,0.01042675320059061,0.009200061671435833,0.0012456834083423018,0.06901805102825165,0.04619629681110382,0.06874742358922958,-0.013917259871959686,-0.06556864082813263,-0.0588691346347332,0.020233815535902977,0.0031970178242772818,-0.037629637867212296,-0.020074307918548584,-0.040082670748233795,0.03710491582751274,0.027943087741732597,0.03344705328345299,-0.05791507288813591,0.05977651849389076,-0.07919219881296158,0.06442443281412125,-0.07434474676847458,0.015185913071036339,0.0018610561965033412,-0.046876728534698486,-0.04297139123082161,-0.01793690212070942,0.07055942714214325,-0.025973517447710037,-0.00986623764038086,-0.021681837737560272,-0.025949599221348763,-0.037250716239213943,-0.0016993654426187277,0.003256375202909112,-0.02844700589776039,-0.04761282727122307,-0.0149898212403059,0.0668128952383995,-0.0637546181678772,-0.0004084440879523754,-0.02335985004901886,0.02891712449491024,0.08424898982048035,-0.03602522611618042,0.05286215618252754,-0.04917245730757713,-0.016793249174952507,0.09053973853588104,0.06906769424676895,0.03568944334983826,0.058902107179164886,-0.021759560331702232,-0.05189156159758568,-0.054352037608623505,0.04257085546851158,-0.03849160671234131,-0.056387752294540405,0.023081012070178986,-0.05358140170574188,0.009899325668811798,0.003768111113458872,-0.05136530101299286,-0.06057637929916382,0.05870660021901131,0.004215655382722616,0.02835169807076454,0.05420447513461113,0.016712533310055733,0.03315512090921402,0.012989884242415428,0.040546972304582596,0.050608716905117035,0.028258314356207848,0.0019019576720893383,0.03323030844330788,-0.06611861288547516,-0.09006407111883163,0.0003873877285514027,0.0034265031572431326,0.04741835594177246,0.0036010921467095613,-0.06836570054292679,-0.04593220725655556,0.0403740331530571,-0.035977043211460114,-0.04815090820193291,-0.04008596017956734,-0.06562276929616928,0.07966922968626022,-0.05391406640410423,-0.005789389833807945,0.07002530246973038,0.036366306245326996,-0.054208509624004364,-0.04334498569369316,-0.006720405537635088,-0.048901062458753586,-0.003928324207663536,-0.01551761943846941,-0.05981706082820892,-0.018762944266200066,0.0390087328851223,-0.014346026815474033,0.08493263274431229,0.06616527587175369,-0.00867733545601368,0.00995076447725296,-0.009726157411932945,0.0027746837586164474,0.06914030015468597,-0.005580592900514603,-0.013895301148295403,0.02850443124771118,-0.06890922784805298,0.06437435001134872,-0.009747129864990711,0.04825053736567497,-0.08189249038696289,0.0711703896522522,-0.012200710363686085,-0.016864081844687462,0.013896146789193153,0.05501983314752579,-0.029414737597107887,-0.07059238106012344,0.03283608704805374,-0.015625733882188797,0.043179918080568314,-0.011117246933281422,0.05120544880628586,-0.01828385517001152,0.020216576755046844,0.04715999960899353,-0.044883422553539276,-0.06429502367973328,-0.05622134730219841,-0.024763042107224464,-0.05576959252357483,0.0024478640407323837,0.04982231184840202,-0.04636211320757866,-0.08280013501644135,0.06010574474930763,-0.058680854737758636,0.051784347742795944,-0.0076836394146084785,0.03160756826400757,-0.005429423879832029,0.03175540268421173,-0.04451659694314003,0.05915409326553345,-0.02097197063267231,0.02178749069571495,0.06294693797826767,-0.05288082733750343,-0.03298391029238701,-0.027220895513892174,-0.07651672512292862,-0.03856659680604935,-0.055506352335214615,0.028025146573781967,0.06291931122541428,0.04469757154583931,0.03152851387858391,-0.04311246797442436,-0.006540956441313028,-0.07903388887643814,-0.04415615648031235,0.06596273928880692,0.03306419774889946,0.07466650009155273,-0.005759530700743198,-0.028252802789211273,0.04030676931142807,-0.07690385729074478,0.07361968606710434,-0.05123680830001831,0.06736306846141815,-0.004020731896162033,0.05879180133342743,-0.0369688980281353,0.010566482320427895,0.05986417829990387,0.021214351058006287,-0.02643459476530552,0.041571762412786484,0.037023965269327164,-0.06181703135371208,0.08455505222082138,-0.008475074544548988,-0.062003426253795624,-0.06403730809688568,-0.05526003986597061,-0.009098650887608528,-0.07217926532030106,-0.03648202493786812,0.04608903452754021,0.01603461429476738,0.019217973574995995,-0.01972716860473156,-0.05786578729748726,0.02066681906580925,0.08221551030874252,-0.05933500826358795,0.025343865156173706,-0.03789420798420906,0.00415140762925148,-0.014801674522459507,-0.06333640962839127,-0.007734410930424929,0.03341009467840195,-0.004025555215775967,0.033580344170331955,0.08572462201118469,-0.03527140989899635,0.05579812452197075,0.030167941004037857,-0.004695742856711149,-0.027455464005470276,0.028283776715397835,0.029130375012755394,0.030432315543293953,-0.07302912324666977,-0.03332410752773285,0.01920354552567005,0.06372510641813278,-0.058550555258989334,0.022333839908242226,-0.03584368899464607,-0.021399518474936485,0.022067580372095108,-0.009178487583994865,0.015961119905114174,0.006655022501945496,0.0233820341527462,-0.0738670825958252,-0.04107275977730751,0.0434626005589962,-0.005041853524744511,-0.005117055028676987,-0.011661726981401443,-0.02875651605427265,0.027768883854150772,0.05878955125808716,-0.039029963314533234,0.04559570923447609,0.06382349878549576,0.03190692886710167,-0.016213828697800636,-0.07027493417263031,0.0312274731695652,-0.01212231069803238,0.021102476865053177,-0.005310016684234142,-0.05346350371837616,-0.06067914515733719,-0.010366104543209076,-0.014785118401050568,-0.07657472044229507,-0.07923247665166855,-0.012833980843424797,0.06975013017654419,0.004620048217475414,0.04933289811015129,-0.050055522471666336,0.07133977860212326,0.02163686975836754,-0.012380842119455338,0.026846004649996758,-0.02312859334051609,0.012012047693133354,-0.06037232652306557,0.0021058209240436554,0.004156213719397783,0.054837558418512344,-0.09042345732450485,-0.06680946052074432,0.00334614678286016,0.015167595818638802]},{"id":"morning-commute","vector":[0.0522800087928772,-0.016672560945153236,-0.02060861699283123,-0.015420276671648026,-0.011397402733564377,0.03325670212507248,0.01705143041908741,-0.02129759080708027,0.012705322355031967,-0.006768392864614725,0.004009725525975227,-0.004301378969103098,0.050383005291223526,0.0354597382247448,-0.06335756182670593,0.05313253030180931,-0.0482681579887867,-0.05905032157897949,-0.01843852363526821,-0.018936343491077423,-0.02690950781106949,-0.0341852568089962,-0.016385192051529884,-0.04922262579202652,0.013028200715780258,0.029736464843153954,0.003026366699486971,-0.050255611538887024,-0.04472002387046814,-0.07148122787475586,0.030165812000632286,-0.08308905363082886,-0.039996661245822906,-0.00012138495367253199,0.03332112357020378,0.03237520530819893,-0.04841465502977371,0.03365558758378029,0.038494840264320374,-0.022946476936340332,0.009739928878843784,-0.0024955535773187876,0.08183824270963669,-0.05209267511963844,-0.02173273079097271,0.013220706954598427,-0.0744866356253624,0.006635352037847042,0.05651037395000458,0.05341456085443497,0.07854854315519333,-0.008540524169802666,0.010205435566604137,-0.058977413922548294,-0.04928569495677948,-0.04421788081526756,0.0393611378967762,0.013200280256569386,0.004394421353936195,-0.076638363301754,-0.06348702311515808,-0.04523699730634689,-0.043005749583244324,-0.03077269345521927,-0.01733248680830002,0.007049398962408304,0.08825783431529999,0.036771345883607864,0.057724762707948685,-0.04205910488963127,-0.022523142397403717,-0.02412443794310093,0.017438435927033424,0.056383728981018066,-0.06710705906152725,-0.054084014147520065,-0.025404172018170357,-0.01811954565346241,-0.022546246647834778,0.06986012309789658,0.02823917753994465,0.029847102239727974,0.020327730104327202,-0.0416535921394825,-0.03406962379813194,0.04874904826283455,0.013201823458075523,0.05126103758811951,0.01735142432153225,0.0383395254611969,0.00309019279666245,0.028838161379098892,-0.024407995864748955,0.04652249813079834,-0.04024507850408554,-0.021783024072647095,-0.0777357667684555,-0.001482941908761859,-0.03598663583397865,-0.07840538769960403,-0.02313821390271187,-0.0400894470512867,-0.010809681378304958,-0.027806337922811508,-0.04312584549188614,0.014101090840995312,-0.05769985914230347,0.039524953812360764,0.02278118021786213,0.060209184885025024,-0.02331714890897274,-0.028855660930275917,-0.006149971857666969,-0.06460168957710266,0.013166720047593117,0.039403192698955536,-0.01648581586778164,0.031733062118291855,-0.003296478185802698,0.046426065266132355,-0.034439265727996826,-0.0705542266368866,0.057662490755319595,-0.07846818119287491,-0.02653135173022747,-0.009776095859706402,-0.01881830021739006,0.041880518198013306,0.03998076170682907,-0.06474637985229492,-0.03145232051610947,-0.059783704578876495,-0.0069362749345600605,0.018437495455145836,-0.01709410548210144,-0.06803466379642487,0.061849042773246765,-0.05989247187972069,0.001492184353992343,0.04842375963926315,0.05974975600838661,-0.011030267924070358,0.03504355996847153,0.07515256106853485,-0.002177925780415535,0.0005251456168480217,0.08009903132915497,0.016401855275034904,0.03903081268072128,0.03916318342089653,0.0010874784784391522,0.02500554360449314,-0.03985045850276947,-0.006784522905945778,0.023091105744242668,-0.03316099941730499,-0.009975128807127476,0.023527134209871292,0.051913391798734665,-0.03977462649345398,-0.03103584237396717,-0.03442547097802162,0.045591242611408234,-0.02045796997845173,-0.035534027963876724,0.015573831275105476,0.00459659518674016,-0.04325145110487938,-0.02364579401910305,0.06879716366529465,-0.015014887787401676,-0.01211742963641882,0.015779009088873863,0.049743808805942535,0.006628711242228746,0.018588604405522346,-0.05877796187996864,0.04345978796482086,0.037007082253694534,0.08635681122541428,-0.014187179505825043,0.08491561561822891,0.0080006904900074,-0.018679067492485046,0.03173522278666496,0.05552399531006813,0.07012059539556503,0.050132159143686295,0.018814533948898315,-0.07348200678825378,-0.004974934738129377,0.02776569128036499,-0.0020810968708246946,0.0005783183733001351,0.08407706022262573,-0.06175505369901657,-0.023666953667998314,0.01990944892168045,0.045107584446668625,0.0836104303598404,-0.059092890471220016,0.0016659583197906613,0.01233544573187828,-0.04973781481385231,-0.07403064519166946,-0.026214001700282097,0.05997814983129501,-0.014440645463764668,0.06991240382194519,0.09332311153411865,0.006279885768890381,-0.023849355056881905,0.04417302459478378,-0.0376083180308342,0.06700079143047333,-0.0013863251078873873,-0.05330536141991615,0.021878065541386604,0.04903672635555267,-0.0019099367782473564,0.014937156811356544,-0.015157097019255161,0.008852072060108185,-0.05526295304298401,0.05355842411518097,0.0294295996427536,0.021452585235238075,0.013489463366568089,0.015544836409389973,0.042587749660015106,0.020661596208810806,0.052174728363752365,-0.004435606766492128,0.01740858517587185,0.03456199914216995,0.05299889296293259,0.0295647531747818,0.05613553151488304,-0.011603431776165962,-0.021460026502609253,-0.04956946521997452,0.04914281889796257,0.022980086505413055,-0.002456029411405325,-0.006668807473033667,-0.0032527733128517866,-0.025140631943941116,-0.01712438277900219,0.026712549850344658,-0.019870413467288017,0.040273621678352356,-0.010524732060730457,0.025969011709094048,-0.07013477385044098,0.024856777861714363,-0.02385808527469635,-0.00012145273649366572,-0.0647546574473381,-0.02117377705872059,0.09162773191928864,-0.019943244755268097,-0.00007897707837400958,0.010665654204785824,-0.02606470137834549,0.008934740908443928,0.010876298882067204,-0.029259854927659035,-0.0263291597366333,-0.025201117619872093,-0.03303266316652298,0.03047328069806099,-0.04501178860664368,0.020140929147601128,0.04349067062139511,-0.02283795364201069,0.08102958649396896,-0.027286527678370476,0.08531154692173004,-0.04376029223203659,-0.03671371936798096,0.0492730513215065,0.058688051998615265,0.008865862153470516,-0.0023726944345980883,-0.04369101673364639,-0.08035153150558472,-0.08747485280036926,0.0736313983798027,-0.054871853440999985,-0.061418935656547546,-0.013629547320306301,-0.031863804906606674,0.049946725368499756,0.010147576220333576,-0.04663451388478279,-0.0659879520535469,0.05011828616261482,0.02009696513414383,0.00034535228041931987,0.06276977062225342,0.029372569173574448,-0.001753266784362495,-0.018701592460274696,0.021730396896600723,0.023694442585110664,-0.010061257518827915,0.015776239335536957,-0.005601156502962112,0.01636781170964241,-0.08037865906953812,-0.003195632016286254,0.05985737964510918,0.05723549425601959,0.03132618963718414,-0.06916569918394089,-0.0555020347237587,0.036041922867298126,-0.07121410965919495,-0.04341650381684303,-0.06102210283279419,-0.0692976713180542,0.04930989071726799,-0.050743963569402695,0.014187081716954708,0.07760612666606903,-0.028321485966444016,-0.003863257123157382,-0.05728109925985336,0.0120202312245965,-0.04255738481879234,-0.08377957344055176,-0.031021494418382645,-0.06214611977338791,-0.05638543516397476,0.04247705638408661,0.03589366748929024,0.08478105068206787,0.07874254882335663,-0.02544468268752098,0.055139124393463135,-0.007708631455898285,0.039475176483392715,0.021121634170413017,-0.012814334593713284,-0.06512748450040817,0.04074595496058464,-0.06351540237665176,0.04048684984445572,-0.019661232829093933,0.04920371621847153,-0.06712193787097931,0.07830708473920822,0.004013583995401859,-0.02242925763130188,0.05801135674118996,0.04126138985157013,-0.0424845814704895,-0.07359874993562698,0.07337905466556549,-0.01773872785270214,0.04165322706103325,-0.021549949422478676,-0.0195427555590868,-0.015575220808386803,0.04538032412528992,0.033758461475372314,-0.06057338789105415,-0.058426566421985626,-0.022912917658686638,-0.013367846608161926,-0.06430716067552567,0.057198841124773026,0.039634544402360916,-0.08301357179880142,-0.0844830647110939,-0.041139617562294006,-0.01859375648200512,0.03922494873404503,-0.03901312127709389,0.01579558104276657,-0.021101802587509155,0.0261900145560503,-0.057843949645757675,0.03379622846841812,0.07357921451330185,0.015703951939940453,0.02145526558160782,-0.06361240893602371,-0.0629391297698021,-0.06703385710716248,-0.06334809213876724,-0.08155079931020737,-0.011706826277077198,-0.004629319533705711,0.06143244728446007,0.04593214392662048,0.04714474454522133,-0.05386113375425339,-0.02756824903190136,-0.04693160951137543,-0.029928438365459442,0.068763367831707,0.03128522261977196,0.06196238845586777,-0.026672018691897392,0.025127777829766273,0.05130461975932121,-0.07919418066740036,0.08760585635900497,-0.03754028305411339,0.05349986255168915,0.060566361993551254,0.043595124036073685,-0.0366857573390007,-0.0046038138680160046,0.07587685436010361,0.04890510067343712,-0.0611562542617321,0.038757484406232834,-0.027969839051365852,-0.032315075397491455,0.05005402863025665,0.024489792063832283,-0.03550015389919281,-0.018076084554195404,-0.0358455590903759,-0.0371895469725132,-0.05873039737343788,-0.04421944171190262,0.07997771352529526,0.04304763302206993,0.035384342074394226,-0.012112739495933056,-0.06964675337076187,0.036111585795879364,0.06966210156679153,-0.07874562591314316,0.020733850076794624,-0.06490813195705414,0.031311795115470886,-0.017396898940205574,-0.03126078099012375,-0.0038222400471568108,0.017666010186076164,0.00014987989561632276,-0.009203054010868073,0.0828818827867508,-0.015429150313138962,0.053394559770822525,-0.00199162308126688,0.011854862794280052,-0.03758850693702698,0.05865781381726265,0.04203755408525467,0.04397861659526825,-0.08310943841934204,0.05210799351334572,0.00701686879619956,0.059662774205207825,-0.022022459656000137,0.006690092384815216,-0.04680543765425682,0.013061605393886566,0.035020358860492706,-0.061223335564136505,0.031683605164289474,-0.014072686433792114,0.05269104987382889,-0.07646593451499939,-0.03877447172999382,0.050030145794153214,0.03997329622507095,-0.02397598884999752,-0.01509127113968134,-0.01274051982909441,-0.0015160732436925173,0.07464085519313812,0.04711311310529709,0.025289442390203476,0.039724770933389664,0.06803595274686813,-0.03404664993286133,-0.04447276517748833,-0.005888199899345636,0.0164320208132267,-0.029678240418434143,0.006739434320479631,-0.04809024930000305,-0.04413983225822449,0.07078905403614044,0.01364431157708168,-0.05416760593652725,-0.08303424715995789,-0.02985229529440403,0.07878684997558594,-0.058115892112255096,-0.01907969079911709,-0.0069171227514743805,0.07733429223299026,-0.012107140384614468,0.026949986815452576,-0.0029179975390434265,-0.05859609693288803,0.019363651052117348,-0.07837004214525223,-0.05866529792547226,0.04669161140918732,0.043662019073963165,-0.0923365131020546,-0.07378602027893066,-0.030533887445926666,-0.0003624953969847411]},{"id":"perfect-situation","vector":[0.028956325724720955,-0.010698090307414532,0.015549915842711926,0.009970800951123238,-0.041202008724212646,0.04266781359910965,0.007535381708294153,-0.06382071226835251,0.03283927962183952,0.03293049708008766,0.02617584727704525,-0.004071469884365797,-0.0111775491386652,0.027215130627155304,-0.06210482493042946,0.015417994931340218,-0.04767695814371109,-0.07755695283412933,-0.045872367918491364,-0.014218185096979141,-0.008612260222434998,0.0166862141340971,0.013620339334011078,-0.02789294719696045,0.025714462623000145,-0.007343114819377661,-0.03898942098021507,0.021198436617851257,-0.07519657909870148,-0.03965732827782631,0.06955748796463013,-0.059409864246845245,-0.02640315517783165,-0.0019248947501182556,0.04696233943104744,0.020187418907880783,-0.047763641923666,0.025875922292470932,0.0635945200920105,-0.06274363398551941,-0.041364338248968124,0.03017820604145527,0.05730987340211868,-0.037278033792972565,-0.034020181745290756,-0.02328830398619175,-0.07260090857744217,-0.011953011155128479,0.05044322833418846,0.04729245603084564,0.020989513024687767,-0.048505838960409164,0.018676359206438065,-0.04431993141770363,-0.004831090569496155,0.0050271605141460896,0.017212718725204468,0.025991195812821388,0.03979933261871338,-0.0736820325255394,-0.06733476370573044,-0.004788081627339125,-0.04354998096823692,0.0049482607282698154,-0.038620952516794205,0.02301020920276642,0.08286469429731369,0.0312192402780056,0.08550949394702911,-0.06805487722158432,-0.023447992280125618,-0.03695479407906532,-0.005899973679333925,-0.014349369332194328,-0.06497499346733093,-0.06462090462446213,0.03292202576994896,-0.007468291092664003,0.002629854017868638,0.05751646310091019,-0.0023335465230047703,0.028482232242822647,0.009556465782225132,-0.02669760212302208,-0.04385484755039215,0.06420940160751343,0.005117697641253471,0.07384873181581497,-0.06287961453199387,0.05536071956157684,-0.0323442667722702,-0.027662506327033043,-0.013863649219274521,0.06525523215532303,-0.03456909954547882,0.056107811629772186,-0.06191420555114746,0.025030439719557762,0.004814717918634415,-0.041069287806749344,-0.08065590262413025,-0.026181267574429512,-0.008944994769990444,0.03493502363562584,0.007810345850884914,0.0076969643123447895,-0.061278101056814194,0.07452118396759033,0.07529821991920471,0.015247813425958157,-0.007882492616772652,-0.0676751360297203,0.01504985149949789,-0.06546668708324432,-0.04688611626625061,0.027241723611950874,-0.013633432798087597,0.04897565394639969,-0.07858777046203613,0.023138446733355522,0.0005302086938172579,-0.081943079829216,-0.014992543496191502,-0.05965406447649002,-0.03808939456939697,-0.005665816832333803,-0.04385349527001381,0.06838499009609222,0.030887993052601814,-0.056685831397771835,-0.05440445989370346,-0.0475708469748497,-0.031235190108418465,0.04743745177984238,-0.024270234629511833,-0.07120915502309799,-0.008018376305699348,-0.07596153765916824,0.026018617674708366,0.0010972670279443264,0.026670632883906364,-0.055692996829748154,0.05693688243627548,0.051135171204805374,-0.02455117739737034,-0.04616859555244446,0.05634009465575218,0.02230067178606987,0.0007301503792405128,0.028604179620742798,-0.032334811985492706,0.006266741547733545,-0.06234268844127655,-0.010526326484978199,-0.036928690969944,-0.017837131395936012,0.058341000229120255,-0.061102062463760376,0.056069377809762955,-0.08139324933290482,0.026550417765975,-0.018581273034214973,0.0448765866458416,0.014009577222168446,0.016474831849336624,0.023260273039340973,0.03653808683156967,-0.0646708682179451,-0.007369693834334612,0.07057163119316101,-0.05683986470103264,0.004443219862878323,-0.040438998490571976,0.08056766539812088,0.002363291336223483,0.03183593228459358,-0.07557287812232971,0.08451297879219055,0.07763701677322388,0.061344873160123825,-0.021043134853243828,0.08360274881124496,-0.010176044888794422,0.01323286909610033,0.002228131052106619,0.03849298506975174,0.03322099521756172,0.04549035802483559,0.03782874345779419,-0.04023447632789612,-0.04163980111479759,0.011214402504265308,-0.0310294758528471,0.035401128232479095,0.08000240474939346,-0.05492885783314705,-0.02741958387196064,-0.041791465133428574,0.009600978344678879,0.08692075312137604,0.001592886634171009,0.026835134252905846,0.06298410147428513,-0.002271427074447274,-0.05034216120839119,-0.04453285038471222,0.04068874940276146,-0.021412910893559456,0.02279016561806202,0.06936995685100555,0.022368699312210083,-0.003164202207699418,0.046353138983249664,0.03841233626008034,0.05978108197450638,-0.006684750784188509,0.024538731202483177,-0.010011730715632439,0.055713362991809845,-0.009227129630744457,0.013564211316406727,-0.006616593804210424,0.021509641781449318,-0.05656087398529053,0.027859242632985115,0.0009155148873105645,-0.006849950645118952,0.012695527635514736,-0.028522491455078125,0.02958562597632408,-0.026251325383782387,0.04262610524892807,0.036009494215250015,0.018403252586722374,0.02369293011724949,0.05381802096962929,0.0439123772084713,0.05456230416893959,0.016411704942584038,0.021377401426434517,-0.058095045387744904,-0.013380501419305801,0.03167734295129776,-0.027752455323934555,0.00492939492687583,-0.02449384145438671,0.016249867156147957,-0.004922986496239901,0.03383219614624977,-0.014606614597141743,0.04139941930770874,-0.07100565731525421,0.06877146661281586,-0.06913483142852783,0.012581170536577702,0.015343462117016315,0.0012320027453824878,-0.03830868750810623,-0.019091039896011353,0.05985749512910843,-0.01218443177640438,-0.03870915621519089,-0.017627058550715446,-0.0283438079059124,-0.023729803040623665,0.047560758888721466,-0.02767815813422203,-0.013430588878691196,-0.01441626064479351,-0.022621840238571167,0.06898722797632217,-0.05398382991552353,-0.023579737171530724,-0.014636745676398277,-0.03275367617607117,0.08375810831785202,-0.042013391852378845,0.013066128827631474,-0.06381972879171371,-0.019783519208431244,0.08283724635839462,0.0799061506986618,0.03575432673096657,0.02663910761475563,-0.04667685553431511,-0.06491656601428986,-0.08137622475624084,0.037732288241386414,-0.059843454509973526,-0.0165666863322258,-0.031593870371580124,-0.036512427031993866,0.06674664467573166,0.006786252837628126,-0.029713278636336327,-0.04061191901564598,0.06739911437034607,0.04236098378896713,-0.003879075637087226,0.04722826927900314,-0.018726639449596405,0.05948566272854805,-0.005484308116137981,0.03411327674984932,0.025869665667414665,-0.0013101601507514715,0.05243111401796341,0.014384345151484013,-0.013726129196584225,-0.08522338420152664,-0.027298297733068466,-0.0022720247507095337,0.021861249580979347,0.06485089659690857,-0.0839308500289917,-0.06741397082805634,0.051108215004205704,-0.04215061292052269,-0.05012586712837219,-0.03290576860308647,-0.08172018826007843,0.05366358160972595,-0.011212821118533611,-0.036012355238199234,0.06078014522790909,0.04656047746539116,-0.019060993567109108,0.006723048165440559,0.007283257786184549,-0.05995887890458107,-0.00030636670999228954,-0.05808945745229721,-0.07367081195116043,0.0423322468996048,0.038597673177719116,0.018732309341430664,0.08301945775747299,0.08558493852615356,0.03680427744984627,0.02280430868268013,-0.00851005595177412,0.025965223088860512,0.05400555580854416,-0.01621134765446186,0.02462599240243435,0.03410394862294197,-0.04881548136472702,0.046011168509721756,0.0009779050014913082,0.051123131066560745,-0.08048292994499207,0.07125863432884216,0.026291485875844955,-0.02983636036515236,-0.042008254677057266,0.04147947207093239,-0.0194008257240057,-0.07825285941362381,-0.02202138490974903,0.023082783445715904,0.05725614354014397,0.0009653082815930247,0.03714324161410332,-0.032194510102272034,-0.025027433410286903,0.02209976129233837,-0.041535455733537674,-0.0672314316034317,-0.03592107817530632,-0.014640097506344318,-0.04897879809141159,-0.009641717188060284,0.04503355175256729,-0.05655934289097786,-0.07938023656606674,0.015917785465717316,0.0007851560949347913,0.052303947508335114,0.02040303871035576,0.0014923788839951158,0.0024850417394191027,0.04499424993991852,-0.0519871711730957,0.05399332940578461,0.05363834276795387,-0.0205284021794796,0.07283990830183029,-0.042650770395994186,-0.02142415940761566,-0.052963726222515106,-0.046853069216012955,-0.01377115398645401,-0.03151808679103851,-0.029946664348244667,0.07703340798616409,0.04564036801457405,0.06011081114411354,-0.0789518654346466,-0.057978250086307526,-0.0753227025270462,-0.042459163814783096,0.07543956488370895,0.020076988264918327,0.04574498161673546,-0.010099241510033607,-0.04384510591626167,0.059881336987018585,-0.085176981985569,0.06812569499015808,-0.015945229679346085,0.07088468968868256,0.03662560135126114,-0.016942832618951797,-0.02591896988451481,0.01555915642529726,0.016604889184236526,0.027446569874882698,0.03155376389622688,0.07373585551977158,0.06131579726934433,-0.06464171409606934,0.057197123765945435,0.013851847499608994,-0.07130958884954453,-0.07566274702548981,0.007609958294779062,-0.04207348823547363,-0.060151807963848114,-0.05654117092490196,0.03848632797598839,-0.025836896151304245,0.008351195603609085,0.020102214068174362,-0.011468088254332542,0.0561896413564682,0.07331089675426483,-0.07552216947078705,-0.0029170908965170383,-0.0041010030545294285,0.0075387852266430855,-0.05468283221125603,-0.04983774200081825,0.0551600381731987,0.0397426001727581,-0.06988095492124557,0.047805655747652054,0.08665869385004044,-0.08458171784877777,0.06713003665208817,-0.052494607865810394,-0.023534776642918587,-0.030439790338277817,-0.0011782583314925432,-0.0039005049038678408,0.06042178347706795,-0.06000665947794914,-0.0025791185908019543,0.038823578506708145,0.056716784834861755,-0.07401953637599945,0.030819078907370567,-0.030577855184674263,-0.002363116480410099,0.01732163317501545,-0.008835414424538612,0.020500486716628075,-0.048263005912303925,0.047490887343883514,-0.04816408455371857,-0.06449475139379501,0.026308288797736168,0.05306311696767807,0.024132980033755302,-0.0012505411868914962,0.03538501635193825,0.03074338473379612,0.03037026710808277,0.0468406043946743,0.029853466898202896,0.07672790437936783,-0.020344285294413567,0.00870838388800621,-0.060823820531368256,0.018477344885468483,0.009730552323162556,0.013403475284576416,0.004787497688084841,-0.03393593803048134,-0.06753625720739365,-0.018803182989358902,0.007653836160898209,-0.05922212824225426,-0.06888274848461151,0.01991133578121662,0.0669359490275383,-0.008382679894566536,-0.02551235817372799,-0.05728583782911301,0.07376167923212051,-0.022012151777744293,-0.009239067323505878,0.07474388927221298,-0.042135607451200485,0.03897714987397194,-0.030983883887529373,0.006116949953138828,0.035863254219293594,0.03763804957270622,-0.07193515449762344,-0.02568751573562622,0.05791157856583595,0.047266360372304916]},{"id":"silent-silas","vector":[0.04638819769024849,-0.04753376916050911,-0.05145617574453354,-0.007461791858077049,-0.03817934915423393,0.007797937840223312,0.010314120911061764,-0.04876641929149628,0.025685634464025497,0.014601943083107471,-0.005279064178466797,-0.023003945127129555,-0.00419468991458416,0.028325408697128296,-0.06274998933076859,0.028127508237957954,-0.04256783053278923,-0.04690191149711609,-0.0438186340034008,0.006467929109930992,-0.04337337613105774,-0.030627788975834846,0.010127246379852295,-0.016210641711950302,-0.028646498918533325,-0.00010935696627711877,-0.023350387811660767,-0.0371934249997139,-0.03319475054740906,-0.05060845613479614,0.010187639854848385,-0.022538356482982635,-0.031081127002835274,-0.0037056496366858482,0.05205542966723442,0.03452027589082718,-0.047856200486421585,0.020503168925642967,0.05418163165450096,-0.0413333997130394,-0.023683225736021996,-0.006443529389798641,0.06517122685909271,-0.03388376161456108,0.045313511043787,-0.0013413811102509499,-0.0808476135134697,0.014224573969841003,0.040807295590639114,0.039005134254693985,-0.008497804403305054,-0.009954849258065224,0.006333539728075266,-0.05859112739562988,-0.02794899232685566,-0.009430150501430035,0.022090379148721695,0.022362973541021347,-0.013841696083545685,-0.063961461186409,-0.08201112598180771,-0.024638811126351357,-0.05982590839266777,-0.0074341436848044395,0.028917573392391205,-0.010171633213758469,0.08955143392086029,0.02350226230919361,0.07503314316272736,-0.06941620260477066,-0.04161720722913742,-0.01780644990503788,0.005124576855450869,0.03204253315925598,-0.04838176444172859,-0.049849383533000946,0.005809847265481949,-0.03519849479198456,0.039198603481054306,0.05825338512659073,0.006473510526120663,0.022138025611639023,-0.0028353382367640734,-0.021236548200249672,-0.021646445617079735,0.05288074165582657,0.01917898841202259,0.06865893304347992,-0.04794870316982269,0.054767049849033356,-0.03308593109250069,-0.01572030782699585,-0.041884567588567734,0.038596175611019135,-0.038884397596120834,0.018786590546369553,-0.08440408110618591,-0.0023965099826455116,-0.05977115035057068,-0.044879473745822906,-0.06988589465618134,0.0106717050075531,-0.022801358252763748,-0.0016880823532119393,-0.04517076164484024,0.021728169173002243,-0.05115031078457832,0.07559136301279068,0.06748242676258087,0.033047813922166824,-0.019436586648225784,-0.05247940868139267,0.00034487704397179186,-0.06444045156240463,-0.02648860402405262,0.029840264469385147,0.03957684710621834,0.022277774289250374,-0.051893431693315506,0.0354030579328537,-0.03616407886147499,-0.06943963468074799,0.055911749601364136,-0.06414683163166046,-0.02237219735980034,-0.034096747636795044,0.0024197285529226065,0.06655748188495636,0.059020936489105225,-0.06957230716943741,-0.034185077995061874,-0.04256168380379677,0.0014028976438567042,0.01792115345597267,-0.031935255974531174,-0.0694458857178688,-0.006673707161098719,-0.07720770686864853,0.02266966737806797,0.01739509031176567,0.018319183960556984,-0.07141906023025513,0.040817148983478546,0.052872829139232635,0.0070354631170630455,0.00038415187736973166,0.052769050002098083,0.020518166944384575,0.027452008798718452,0.033153191208839417,-0.039717916399240494,0.013508051633834839,-0.07408975809812546,-0.0066533200442790985,-0.0439554899930954,-0.059791941195726395,0.03329864889383316,-0.031429484486579895,0.05238219350576401,-0.07622126489877701,0.007627932354807854,-0.015120850875973701,0.04732104018330574,0.015345933847129345,-0.0015078829601407051,0.05082857608795166,-0.0009626884711906314,-0.0210120752453804,-0.013402012176811695,0.055348724126815796,-0.0577533058822155,0.052810247987508774,-0.00702089024707675,0.05046163871884346,-0.04935791715979576,0.008869331330060959,-0.05958286300301552,0.08776940405368805,0.07450052350759506,0.0734059065580368,0.0015604138607159257,0.09036122262477875,0.0132919792085886,0.030547235161066055,0.04341661557555199,0.041249509900808334,0.055152662098407745,0.05139569565653801,0.06800143420696259,-0.0372476726770401,-0.056798119097948074,-0.02725072018802166,-0.01825954206287861,0.00032334262505173683,0.08709058165550232,-0.041418738663196564,-0.007362427655607462,-0.017153404653072357,0.013062615878880024,0.07820934802293777,-0.03755483776330948,0.011377314105629921,0.05182139575481415,0.01316222082823515,-0.0674988403916359,-0.04397263750433922,0.029501598328351974,-0.002364574233070016,0.04248236119747162,0.07438289374113083,0.02235780470073223,-0.04563567042350769,0.063641756772995,-0.0005775881581939757,0.0732390433549881,0.001099181012250483,0.021606246009469032,0.014012706466019154,0.08208999782800674,0.029763568192720413,0.045224208384752274,-0.013519130647182465,0.02170664444565773,-0.06867337971925735,0.08130772411823273,-0.03394576534628868,-0.010635553859174252,-0.019576605409383774,0.04427512735128403,0.03320276737213135,-0.014424440450966358,0.027547325938940048,0.014961018227040768,-0.01110059954226017,0.01994198188185692,0.051952097564935684,0.03362580016255379,0.06509996950626373,0.038251254707574844,-0.022328337654471397,-0.06374842673540115,-0.01983865164220333,-0.012025875970721245,-0.029543446376919746,0.03394751250743866,-0.030109640210866928,-0.01043755654245615,0.033123426139354706,0.011741450056433678,-0.00956946425139904,0.012473401613533497,-0.06965022534132004,-0.04258187115192413,-0.07886234670877457,0.013832845725119114,-0.023935560137033463,-0.02393817901611328,-0.04862035810947418,-0.04687009006738663,0.08097181469202042,-0.012935386970639229,0.03784330561757088,-0.010621975176036358,-0.04839427396655083,-0.01713617518544197,-0.020586982369422913,0.00019692318164743483,-0.01320895366370678,-0.06425102055072784,-0.06119715794920921,0.058493103832006454,-0.056650206446647644,0.0048530190251767635,0.02153717167675495,-0.004710285924375057,0.07921560108661652,-0.029121505096554756,0.044983476400375366,-0.023330939933657646,-0.03617056831717491,0.0806056335568428,0.06987044960260391,0.04890173301100731,-0.0042114658281207085,-0.03443771228194237,-0.06114041805267334,-0.06295973062515259,0.03128510341048241,-0.0467391163110733,-0.06456313282251358,0.012578499503433704,-0.04490290582180023,0.06693273782730103,-0.002253755694255233,-0.02078237570822239,-0.051964666694402695,0.059951961040496826,-0.005491472315043211,0.036490630358457565,0.044054705649614334,-0.027938542887568474,0.03348226472735405,-0.0016342062735930085,0.04677123203873634,-0.015132979489862919,0.0007846039370633662,-0.01261267252266407,0.013569388538599014,-0.016543569043278694,-0.09072522073984146,-0.045489221811294556,-0.004344973713159561,0.04328002408146858,0.06399413198232651,-0.08651050180196762,-0.06001086160540581,0.03728979453444481,-0.058380335569381714,-0.018665678799152374,-0.06662975996732712,-0.08155446499586105,0.052497122436761856,-0.04363524541258812,-0.026267923414707184,0.07059968262910843,-0.024715151637792587,0.016756467521190643,-0.04848182946443558,-0.014549298211932182,-0.05401456356048584,-0.024880878627300262,-0.031234342604875565,-0.07799163460731506,-0.03483236953616142,0.03997108340263367,-0.006326632108539343,0.08835940062999725,0.08754043281078339,-0.012295177206397057,0.029046541079878807,-0.03894198685884476,0.05511411279439926,0.06869684904813766,0.00977539736777544,0.03661338612437248,0.04067927598953247,-0.04418857768177986,0.05612819269299507,0.00005042890552431345,0.0452670156955719,-0.08564489334821701,0.05529659613966942,0.011628500185906887,-0.012932168319821358,0.023306701332330704,0.03560955077409744,-0.03605476766824722,-0.07893451303243637,-0.00003893418761435896,0.004439698066562414,0.03369998559355736,0.0005028854939155281,0.03611033409833908,-0.036444928497076035,-0.001413632882758975,0.03870544955134392,-0.0381554439663887,-0.046837832778692245,-0.060927391052246094,-0.020085394382476807,-0.06840410828590393,0.009226858615875244,0.02388901822268963,-0.07159221917390823,-0.07841667532920837,-0.04453224688768387,-0.02424503117799759,0.023758195340633392,-0.03788366913795471,-0.016162678599357605,-0.030537918210029602,0.04784449189901352,-0.05322183296084404,0.05043265223503113,0.07355432957410812,0.022017544135451317,0.06484734266996384,-0.04764848202466965,-0.045326098799705505,-0.03301394730806351,-0.054158005863428116,-0.025476330891251564,-0.027994250878691673,-0.024432212114334106,0.0696331188082695,0.04950263351202011,0.05355030670762062,-0.07704218477010727,-0.07210251688957214,-0.06499036401510239,-0.022492757067084312,0.07587595283985138,0.008123556151986122,0.04654396325349808,-0.05022594332695007,-0.051556143909692764,0.06544042378664017,-0.07023569941520691,0.052160389721393585,-0.02718881517648697,0.07070299983024597,0.009858197532594204,-0.0029102731496095657,-0.009705296717584133,0.025594517588615417,-0.005782846361398697,0.04781712219119072,-0.06991099566221237,0.08205549418926239,0.02961118519306183,-0.05656272545456886,0.004925357177853584,0.020509976893663406,-0.07059600949287415,-0.07466243952512741,-0.03201456367969513,-0.040005046874284744,-0.040914151817560196,-0.050546251237392426,0.01962064765393734,-0.060992076992988586,0.03830821067094803,-0.01715352199971676,-0.05507180094718933,0.02468656189739704,0.08303561806678772,-0.08226709812879562,0.03297398239374161,-0.0685887336730957,0.02346673794090748,-0.03659173101186752,-0.003614788642153144,0.021299920976161957,0.04671349376440048,-0.0508711077272892,0.05097789317369461,0.08545688539743423,-0.07230798155069351,0.06485442817211151,-0.03962881863117218,0.04587947949767113,-0.04111860319972038,0.05577986314892769,0.0267461147159338,-0.038936153054237366,-0.0745326578617096,0.008988752029836178,0.03135642409324646,0.04654093086719513,-0.07484442740678787,0.019809149205684662,-0.068988136947155,-0.031468965113162994,0.01869940385222435,0.007189159281551838,0.0323370136320591,-0.042091235518455505,0.05484512820839882,0.0007728645578026772,-0.06968976557254791,0.025490054860711098,0.06610669940710068,0.0077519952319562435,0.013038506731390953,0.02451930195093155,0.0014483893755823374,0.052091334015131,0.005280101206153631,0.030203113332390785,0.05378304794430733,-0.013711189851164818,0.01864321529865265,-0.029532762244343758,0.030765008181333542,-0.019719446077942848,0.036675672978162766,0.030463753268122673,-0.013516316190361977,-0.06932712346315384,0.018109602853655815,0.007016175426542759,-0.07234419137239456,-0.06118983030319214,-0.01579606533050537,0.07840197533369064,-0.021626373752951622,0.04579725116491318,-0.029673157259821892,0.07469276338815689,-0.03916101157665253,0.036865510046482086,0.022091776132583618,-0.04612625762820244,0.05424632132053375,-0.040233638137578964,0.024457348510622978,0.045356083661317825,0.017845651134848595,-0.08084798604249954,-0.056578628718853,0.002313540782779455,0.0425804927945137]},{"id":"thought-experiment","vector":[0.021664205938577652,-0.030693497508764267,0.001557345618493855,0.011344343423843384,-0.01762235537171364,0.052933044731616974,0.015954701229929924,-0.06305330991744995,0.05462892726063728,0.02615245059132576,-0.017497209832072258,-0.0008797060581855476,-0.03285194933414459,-0.004869047086685896,-0.06773538887500763,-0.00108929886482656,-0.059655189514160156,-0.07415052503347397,-0.05558598414063454,0.012096223421394825,0.018154801800847054,0.007257412187755108,0.032617662101984024,-0.03505793586373329,0.03861991688609123,-0.02690891921520233,-0.04530133306980133,0.021347345784306526,-0.03784127160906792,-0.03479296341538429,0.05027075111865997,-0.04116128012537956,0.017212852835655212,0.0016008695820346475,0.057409077882766724,-0.014966917224228382,-0.05268726125359535,0.025525031611323357,0.07380706816911697,-0.03340966999530792,0.0013095797039568424,0.019320037215948105,0.058424461632966995,-0.025732699781656265,-0.01493028737604618,0.00604007113724947,-0.041852302849292755,-0.04510192573070526,0.020791443064808846,0.06751853227615356,-0.05007899925112724,-0.04560263827443123,-0.00017264302005060017,-0.03869433328509331,-0.008560731075704098,-0.015373513102531433,0.030313611030578613,0.04981117323040962,0.03524593636393547,-0.06412205845117569,-0.07145935297012329,-0.0029712372925132513,-0.05665995180606842,0.012032432481646538,0.029853111132979393,-0.001776308286935091,0.06122177839279175,0.02629694528877735,0.05798153951764107,-0.05732329934835434,-0.03324057534337044,-0.03071967139840126,0.034368179738521576,-0.012296533212065697,-0.05413796007633209,-0.06378065794706345,0.00009759773820405826,0.06355594098567963,-0.03336865454912186,0.04140515998005867,0.01985415257513523,0.008679375052452087,0.017401447519659996,-0.028218159452080727,0.011384331621229649,0.04552537575364113,-0.009600095450878143,0.07841461896896362,-0.03871811553835869,0.030017197132110596,-0.030838461592793465,0.003374371910467744,0.029103485867381096,0.008845274336636066,-0.035257063806056976,0.045562729239463806,-0.07681431621313095,-0.05304286256432533,-0.028022540733218193,-0.042357925325632095,-0.06896522641181946,-0.03162346035242081,-0.007521587889641523,0.03166843205690384,-0.05186567083001137,0.04557053744792938,-0.02756405621767044,0.0745566263794899,0.06395498663187027,0.0601641982793808,-0.043234679847955704,-0.07140839844942093,0.013802233152091503,-0.04412465915083885,-0.05601394921541214,-0.007826697081327438,0.001201922306790948,0.07442296296358109,-0.06707697361707687,0.051045071333646774,-0.01112126000225544,-0.0728083923459053,0.0054682353511452675,-0.04717721417546272,-0.026539713144302368,-0.0005226862267591059,-0.04659638926386833,0.05870157852768898,0.051567573100328445,-0.07102370262145996,-0.05504941567778587,-0.04344499111175537,-0.029298724606633186,-0.0018313218606635928,-0.02058170549571514,-0.06792847067117691,0.013669224455952644,-0.014965764246881008,-0.006753804162144661,0.04043686389923096,0.0402572900056839,-0.06516719609498978,0.044864434748888016,0.028949370607733727,0.014879949390888214,-0.02967461384832859,0.0701386034488678,0.032865848392248154,-0.02796027436852455,0.05477943271398544,-0.008260173723101616,0.013753540813922882,-0.0756220892071724,-0.02721257694065571,-0.004974544048309326,-0.014039682224392891,0.06053547188639641,-0.00363594526425004,0.062096524983644485,-0.05498757213354111,0.018427496775984764,-0.0043282052502036095,0.06387349218130112,0.009710858575999737,-0.006127608008682728,0.033229995518922806,0.014626050367951393,-0.05721074715256691,-0.011791574768722057,0.05361218377947807,-0.06426733732223511,0.02909557707607746,0.0019703186117112637,0.05489814281463623,-0.053417280316352844,-0.023072093725204468,-0.06899150460958481,0.07996834814548492,0.08100681006908417,0.03346427530050278,-0.006101428065448999,0.08617953956127167,0.02974233590066433,0.034133393317461014,0.03869655728340149,0.0747053250670433,0.0009783704299479723,0.04409316927194595,0.06151639670133591,-0.05869029089808464,-0.04811315983533859,-0.004756121896207333,-0.02530042827129364,0.03802085667848587,0.0792902335524559,-0.020341509953141212,-0.04228045046329498,-0.03483046591281891,-0.0034400117583572865,0.08980764448642731,-0.04001115262508392,0.060744620859622955,0.04602701589465141,-0.01842036284506321,-0.062348317354917526,-0.0017105386359617114,0.024681629613041878,-0.0015454823151230812,0.006688733585178852,0.07618703693151474,0.03844665735960007,-0.008065872825682163,0.05628455802798271,0.012995935045182705,0.07795394212007523,-0.015156902372837067,-0.023932406678795815,-0.014588219113647938,0.047685377299785614,0.004805014003068209,-0.030255373567342758,-0.008648949675261974,0.01835310459136963,-0.07009966671466827,0.05967447906732559,-0.04478742182254791,-0.03915192186832428,0.014027326367795467,-0.023647397756576538,0.02410365268588066,-0.022263888269662857,0.0012681930093094707,0.05965348333120346,0.012813850305974483,0.02827008068561554,0.05881466716527939,0.03035932593047619,0.07501735538244247,0.02870935946702957,0.07554303109645844,-0.07052198052406311,0.010115977376699448,-0.0413820780813694,-0.039150919765233994,0.008342631161212921,-0.043454959988594055,-0.005775993224233389,0.011914635077118874,-0.004221643786877394,-0.03291664272546768,0.03529077768325806,-0.08295305073261261,0.03655323386192322,-0.0661541298031807,0.02648993954062462,-0.015001826919615269,-0.014784755185246468,-0.03753865137696266,-0.021668029949069023,0.06669030338525772,0.007897828705608845,-0.006474391557276249,-0.010371829383075237,0.022791046649217606,-0.0006193695589900017,-0.0025287449825555086,0.008563184179365635,-0.031432099640369415,-0.028274424374103546,-0.05323773995041847,0.06693894416093826,-0.054185330867767334,-0.0006569558754563332,-0.015393344685435295,-0.046750880777835846,0.06307047605514526,-0.01379061583429575,0.06830274313688278,-0.034836526960134506,-0.05859384685754776,0.07154940813779831,0.05862346291542053,0.034251414239406586,0.014605100266635418,-0.055533792823553085,-0.06317645311355591,-0.08267112076282501,0.015256614424288273,-0.02620328962802887,-0.06118113175034523,0.0465424582362175,-0.018920637667179108,0.06165993586182594,-0.03585861623287201,-0.03954634442925453,-0.03738059848546982,0.045865003019571304,0.04582137241959572,-0.029212074354290962,0.03994804993271828,-0.04257968068122864,0.038165681064128876,0.014868495985865593,0.04240007326006889,0.03441059961915016,0.011449545621871948,0.009390230290591717,-0.004939266014844179,0.008487671613693237,-0.08628880977630615,0.020538730546832085,0.04471283778548241,-0.003933188505470753,0.07412507385015488,-0.07757965475320816,-0.061071209609508514,0.06668420135974884,-0.00574818579480052,-0.054847367107868195,-0.03828159719705582,-0.08500152081251144,0.06873134523630142,-0.03261980786919594,-0.030225487425923347,0.05726117640733719,0.016969339922070503,0.01860545389354229,-0.04385010525584221,-0.009115195833146572,-0.06566326320171356,0.011225112713873386,0.0035831560380756855,-0.06792690604925156,0.019925035536289215,0.03719473257660866,-0.006070369854569435,0.09107571095228195,0.08801550418138504,0.004650232382118702,0.04628004878759384,-0.0295275766402483,0.029817670583724976,0.01846105232834816,0.005137084051966667,0.03260987251996994,-0.02838626317679882,-0.040316518396139145,0.056691765785217285,-0.034862417727708817,0.05500983074307442,-0.08051897585391998,0.06360623240470886,-0.01851332001388073,0.04072178900241852,-0.0018154598074033856,0.049250468611717224,0.008065284229815006,-0.0597507581114769,-0.03062279149889946,0.012541133910417557,0.055384956300258636,0.03152525797486305,0.030416980385780334,-0.002316345926374197,0.03453576937317848,0.005739965476095676,-0.04560175538063049,-0.05973320081830025,-0.012670229189097881,-0.005314468871802092,-0.05717764049768448,0.01970583014190197,0.03534935414791107,-0.07404100149869919,-0.06696177273988724,-0.009556807577610016,0.026305459439754486,0.0505356565117836,-0.03329462185502052,0.009693950414657593,0.02295735478401184,0.040486693382263184,-0.058009568601846695,0.028138136491179466,0.07816493511199951,0.03128662705421448,0.06962665170431137,-0.057203419506549835,-0.06356003135442734,-0.06173040345311165,-0.039727404713630676,-0.00909488182514906,-0.06326611340045929,-0.025903061032295227,0.07221127301454544,0.04038938879966736,0.07265229523181915,-0.07352552562952042,-0.055141184478998184,-0.08595050871372223,-0.01907939277589321,0.07189337909221649,-0.013144075870513916,0.053706154227256775,-0.01805112324655056,0.003645851043984294,0.03898413106799126,-0.07618463039398193,0.07351676374673843,-0.059511538594961166,0.05271042883396149,-0.035130009055137634,0.0027900272980332375,-0.02156713791191578,0.02944447658956051,0.034330472350120544,0.049140773713588715,-0.03777273744344711,0.0730234906077385,0.05206707492470741,-0.06693916022777557,-0.0026381155475974083,0.03578116372227669,-0.06637826561927795,-0.05944999307394028,-0.04110771045088768,-0.04844636097550392,-0.05843539535999298,-0.02626170963048935,-0.0170028954744339,-0.04498223587870598,0.04477335512638092,0.008217444643378258,-0.03328901156783104,0.04301845282316208,0.0737580806016922,-0.06545624136924744,-0.006095753517001867,-0.04786459356546402,0.04577985405921936,-0.043013207614421844,-0.06128746643662453,0.08381873369216919,0.06031481921672821,-0.0766836479306221,0.056512996554374695,0.08571014553308487,-0.07292000204324722,0.056023869663476944,-0.040949929505586624,-0.008404585532844067,-0.021981962025165558,0.028209375217556953,-0.0030183352064341307,-0.012650322169065475,-0.07145616412162781,0.016973137855529785,0.034475699067115784,0.04186942055821419,-0.04001608490943909,0.017199929803609848,-0.015570499002933502,0.007469536270946264,-0.028907230123877525,0.03567556291818619,0.04624286666512489,-0.02602635696530342,0.03321884199976921,-0.06551224738359451,-0.058758512139320374,0.01826368272304535,0.06708482652902603,0.007333435583859682,-0.008631547912955284,0.02971556968986988,0.015291807241737843,0.06597190350294113,0.020894313231110573,-0.015399100258946419,0.08261632174253464,0.012751474976539612,-0.003758680308237672,-0.015708893537521362,0.023881079629063606,-0.0022599033545702696,0.020907185971736908,0.0020752616692334414,-0.03129466623067856,-0.0647938996553421,0.019168997183442116,0.014048437587916851,-0.040777791291475296,-0.025238879024982452,0.023117464035749435,0.06167556345462799,0.018968254327774048,-0.02752572111785412,-0.08678083121776581,0.08012208342552185,-0.07118549197912216,0.030617771670222282,0.060724906623363495,-0.04096239060163498,0.045250069350004196,-0.03411680459976196,0.044750090688467026,0.06498164683580399,0.02971302531659603,-0.06968540698289871,-0.07310004532337189,0.05410615727305412,0.04785124957561493]},{"id":"unintentional-internalization","vector":[0.032156601548194885,-0.02958301454782486,-0.03841324523091316,0.02676292136311531,-0.03138080984354019,0.018446043133735657,-0.0006388355395756662,-0.07352997362613678,0.052821483463048935,0.02008236013352871,0.005037981551140547,0.0142741110175848,-0.018467340618371964,0.04204677790403366,-0.07561531662940979,0.047862518578767776,-0.07309558987617493,-0.061044298112392426,-0.059006914496421814,0.03273985534906387,-0.03350174427032471,0.011144822463393211,0.012943500652909279,-0.03656536713242531,0.047646310180425644,-0.015932731330394745,0.00798722542822361,-0.03650834038853645,-0.0604645274579525,-0.04553698003292084,0.04410107433795929,-0.03422730043530464,-0.06550505757331848,0.012587207369506359,0.05237410217523575,0.03230822831392288,-0.04670010507106781,0.013909988105297089,0.06265851110219955,-0.05417399853467941,-0.015587744303047657,-0.004751930478960276,0.06775351613759995,-0.061616018414497375,-0.02134958654642105,0.0230771005153656,-0.029300041496753693,0.024536214768886566,0.026843177154660225,0.0664002001285553,0.025680774822831154,-0.012127947993576527,0.01502813957631588,-0.046643659472465515,0.032947540283203125,-0.0005179605213925242,0.03419545665383339,0.02838117629289627,0.05240423604846001,-0.0015876272227615118,-0.06764623522758484,-0.024885863065719604,-0.03956929221749306,0.04677624627947807,-0.05729471147060394,-0.04379838705062866,0.08674129098653793,0.016477597877383232,0.06341471523046494,-0.043635714799165726,-0.01632610708475113,-0.03792523592710495,0.04100437089800835,0.027052847668528557,-0.041833024471998215,-0.06285443902015686,0.03066432476043701,-0.021418962627649307,-0.021605486050248146,0.05640823021531105,0.0073037659749388695,0.07486528158187866,0.01342239324003458,-0.012345540337264538,-0.04889092221856117,0.05521390587091446,-0.018564794212579727,0.016749480739235878,-0.014864999800920486,0.06277083605527878,-0.005631116218864918,-0.004372467286884785,-0.03203499689698219,0.07299737632274628,-0.02432822436094284,0.03523332625627518,-0.07713126391172409,-0.01863938383758068,-0.0423150509595871,-0.04277915135025978,-0.08659321814775467,0.026572220027446747,0.0011177393607795238,0.010334302671253681,-0.0057199993170797825,0.0030942840967327356,-0.05543949455022812,0.05749473348259926,0.07510540634393692,0.022926045581698418,-0.007017334923148155,-0.0456833690404892,0.0317256897687912,-0.07780158519744873,-0.0727471187710762,0.044913195073604584,0.05126058682799339,0.07545553147792816,-0.04438183456659317,0.03417965769767761,-0.015031180344522,-0.07798737287521362,0.0214549507945776,-0.07036478072404861,-0.011587239801883698,-0.03818881884217262,-0.029787402600049973,0.02858111448585987,0.0348515510559082,-0.07196526974439621,-0.05751738324761391,-0.05403418466448784,-0.03752840682864189,0.017994027584791183,-0.015549074858427048,-0.06935828924179077,0.0054597328417003155,-0.055941663682460785,-0.03316755220293999,-0.012163596227765083,0.03792116418480873,-0.028236091136932373,0.06324969977140427,0.06731543689966202,0.02727716788649559,0.012871172279119492,0.07838035374879837,-0.014919286593794823,0.011887076310813427,0.04974038898944855,0.014282872900366783,0.0020121957641094923,-0.04847369343042374,-0.03501428663730621,-0.059725672006607056,-0.020269198343157768,0.05360674113035202,-0.06005788594484329,0.06748495250940323,-0.058625418692827225,0.0069150193594396114,-0.03068825975060463,0.048283033072948456,0.03500566631555557,0.010954635217785835,0.019944680854678154,-0.014291579835116863,-0.07204177230596542,0.02295423485338688,0.06614861637353897,-0.03900264576077461,0.008891225792467594,0.004760696552693844,0.03921922668814659,-0.03713002800941467,0.02629402093589306,-0.06317932158708572,0.08588722348213196,0.08212345838546753,0.08368145674467087,-0.02542451024055481,0.08040609955787659,-0.00156612868886441,0.011793478392064571,0.06668473035097122,0.012275349348783493,0.043743621557950974,0.053562231361866,0.038013678044080734,-0.011065245606005192,-0.0396232083439827,-0.017438745126128197,0.0020974522922188044,-0.005671495106071234,0.08067122846841812,-0.07368441671133041,0.0013168136356398463,0.005353410262614489,-0.01842481829226017,0.07141372561454773,-0.03422876074910164,0.03984601050615311,0.009275010786950588,-0.003021349897608161,-0.06602973490953445,-0.03293127566576004,0.05662475526332855,-0.048349685966968536,0.057560380548238754,0.05659736692905426,0.02050747722387314,-0.02702990733087063,0.07200102508068085,0.0036325682885944843,0.048208605498075485,0.046160660684108734,-0.036463670432567596,0.04040757194161415,0.05159240961074829,-0.031535327434539795,0.02674177847802639,0.035787928849458694,0.013357223942875862,-0.05796504393219948,0.07984571903944016,-0.044315699487924576,-0.026395194232463837,0.017543436959385872,0.014270421117544174,0.0010271170176565647,-0.0035447697155177593,0.016811246052384377,0.04157649725675583,0.02040978893637657,0.003978506661951542,0.056286003440618515,0.03929630666971207,0.051662150770425797,0.0071514262817800045,-0.017787914723157883,-0.06252703815698624,0.007184454705566168,-0.06045795977115631,0.016797062009572983,0.0244661383330822,-0.03168574720621109,-0.007904333993792534,0.0012106834910809994,0.025672396644949913,-0.05932966619729996,0.04064645618200302,-0.07957243919372559,0.0513603538274765,-0.07414194941520691,-0.03581506758928299,-0.05587214604020119,0.014447640627622604,-0.06370285898447037,-0.029378356412053108,0.06616167724132538,0.02751580812036991,-0.025188468396663666,-0.05779809504747391,-0.06949234008789062,-0.03943073749542236,0.02057887427508831,0.01607409678399563,-0.032378919422626495,-0.0437607541680336,-0.034372758120298386,0.05023132637143135,-0.06310924142599106,0.0053451815620064735,-0.018345482647418976,-0.010937131009995937,0.08492498099803925,-0.038348276168107986,0.0023646638728678226,-0.038158219307661057,-0.00332398503087461,0.07489805668592453,0.07101403921842575,-0.0025994288735091686,0.06816039979457855,-0.0324656218290329,-0.060728028416633606,-0.06238965317606926,0.02480815351009369,0.0029665736947208643,-0.032883867621421814,-0.015227190218865871,-0.007321601267904043,0.061667550355196,0.027361037209630013,-0.03989310935139656,-0.0584576353430748,0.07644818723201752,0.045930325984954834,0.007814466953277588,0.040471889078617096,-0.010929347947239876,0.06506014615297318,-0.013251157477498055,0.03342689201235771,-0.008841215632855892,0.04029442369937897,0.012530316598713398,0.01958327367901802,-0.03489404171705246,-0.08838418126106262,-0.007952352985739708,0.018125100061297417,-0.009386979974806309,0.058367036283016205,-0.06774652004241943,-0.055774178355932236,0.02883841097354889,-0.03408398479223251,-0.03813423961400986,-0.04671024903655052,-0.06611945480108261,0.05467964708805084,-0.04574563354253769,0.018175743520259857,0.06722165644168854,0.018419504165649414,-0.058196891099214554,-0.0453764870762825,0.007526455447077751,-0.035719629377126694,-0.05088150128722191,-0.05280989408493042,-0.06133706867694855,-0.02934190072119236,0.04491298645734787,-0.012059641070663929,0.08600300550460815,0.087195985019207,-0.010837317444384098,0.008523870259523392,-0.03439248725771904,0.049352943897247314,0.026186272501945496,-0.011907720938324928,0.023380372673273087,0.011026030406355858,-0.06011714041233063,0.04345902428030968,-0.011825951747596264,0.03985731676220894,-0.08656646311283112,0.06254350394010544,0.050138358026742935,-0.007652417756617069,0.01737419329583645,0.04426762834191322,-0.006667808163911104,-0.07290824502706528,0.04218905419111252,-0.00833743717521429,0.04975337162613869,0.017558131366968155,0.04691178724169731,-0.012014619074761868,0.028781617060303688,0.00353073887526989,-0.023165013641119003,-0.07156332582235336,-0.017998920753598213,-0.04211059957742691,-0.05169838294386864,-0.03662089258432388,0.03764251247048378,-0.037543557584285736,-0.07797544449567795,-0.012363259680569172,-0.01770717091858387,0.044476237148046494,0.03352127969264984,0.044080138206481934,-0.01705477572977543,0.005685833748430014,-0.060903336852788925,0.051972705870866776,0.07531461864709854,-0.02037641406059265,-0.004289987031370401,-0.04669129103422165,-0.061504993587732315,-0.057221803814172745,-0.064690500497818,-0.04708060994744301,-0.043700896203517914,-0.008386068046092987,0.057972513139247894,0.03761338070034981,0.04677072912454605,-0.06893398612737656,-0.0257283765822649,-0.06839114427566528,-0.036323320120573044,0.0797751396894455,0.013390611857175827,0.040690623223781586,-0.0035527748987078667,0.008590015582740307,0.051731519401073456,-0.08763173967599869,0.07075664401054382,0.004145842511206865,0.07046501338481903,0.039911579340696335,0.030678732320666313,0.010374568402767181,0.012462531216442585,0.015178375877439976,0.03355419635772705,0.007523514796048403,0.07311186194419861,0.06674209982156754,-0.0410432368516922,0.05840287730097771,0.02551986649632454,-0.04888303577899933,-0.054566383361816406,-0.015476475469768047,0.006133845541626215,-0.07425180822610855,-0.07732990384101868,-0.011144956573843956,0.000015728614016552456,0.005654845852404833,-0.031003091484308243,-0.067137710750103,0.05206016078591347,0.07683370262384415,-0.08949431777000427,0.021981114521622658,-0.014923387207090855,0.04646460339426994,-0.03100951574742794,-0.012713566422462463,0.016716131940484047,0.05101346969604492,-0.0625670775771141,0.0028448631055653095,0.08310182392597198,-0.07812128961086273,0.06850127130746841,-0.027829233556985855,0.03188512474298477,-0.050983622670173645,0.06354577094316483,0.030619876459240913,-0.008646233938634396,-0.0782165676355362,0.0005662120529450476,-0.0027389058377593756,0.04948049411177635,-0.056180957704782486,-0.038268160074949265,-0.04441649094223976,-0.009721188805997372,0.025156904011964798,-0.0207663681358099,0.04329260066151619,-0.012248163111507893,0.05433427542448044,-0.07683578133583069,-0.03473969176411629,0.014422735199332237,0.053305137902498245,0.028396805748343468,0.025755979120731354,-0.002833807375282049,0.01319215539842844,0.05996908247470856,-0.051666658371686935,0.027424361556768417,0.025076543912291527,-0.027793969959020615,-0.030513830482959747,-0.048131950199604034,-0.011018319055438042,-0.0056943283416330814,0.031165888532996178,0.04704884812235832,-0.041680194437503815,-0.06931594759225845,0.0287602748721838,-0.008531669154763222,-0.053941428661346436,-0.05323251336812973,0.0012499185977503657,0.08345520496368408,-0.006665070075541735,0.020092293620109558,-0.020673662424087524,0.07401206344366074,-0.005042421631515026,0.028914134949445724,0.0737461969256401,-0.06367770582437515,0.027381818741559982,-0.01982656680047512,0.0050989799201488495,0.04960595816373825,0.02508631721138954,-0.06537289917469025,-0.06930889934301376,0.04613707959651947,0.04388471320271492]},{"id":"who-am-i-","vector":[0.027143187820911407,-0.06373024731874466,-0.06301005929708481,-0.0574205182492733,-0.04785952344536781,0.027275532484054565,0.03329749032855034,0.018944542855024338,0.040717363357543945,-0.006607161369174719,0.016911854967474937,-0.011737748980522156,-0.029709555208683014,0.056952837854623795,-0.051334165036678314,-0.0780007392168045,-0.04742284491658211,-0.0807158350944519,-0.03451888635754585,0.03850889205932617,0.02947821281850338,-0.05472537875175476,0.02490975148975849,0.003500643651932478,0.04605488479137421,-0.0011165017494931817,-0.01823219284415245,-0.050469771027565,-0.04630207270383835,-0.04221887141466141,0.05331604555249214,-0.015156146138906479,-0.016614533960819244,-0.050840940326452255,0.020749807357788086,0.057447001338005066,-0.0415593720972538,0.058702800422906876,0.06949521601200104,-0.03620650991797447,0.0029359266627579927,-0.002871973207220435,0.06023653969168663,-0.07399953901767731,-0.014970153570175171,0.012751949951052666,-0.01753923110663891,-0.008718264289200306,0.07018814980983734,0.0757565125823021,-0.02650032751262188,0.014965066686272621,0.029378142207860947,-0.035829704254865646,-0.010314597748219967,-0.04604369401931763,0.03623095154762268,0.027308063581585884,0.06248774752020836,-0.06674610823392868,-0.062378570437431335,-0.016209563240408897,-0.04871692135930061,0.018611809238791466,-0.04689701646566391,0.013839811086654663,0.0704362541437149,-0.015571835450828075,0.07820307463407516,-0.01792946644127369,-0.039024244993925095,-0.03317360207438469,-0.022156286984682083,-0.0003487976500764489,-0.04829080402851105,-0.05104762688279152,0.035232022404670715,0.002708196407184005,-0.01685977913439274,0.021398764103651047,0.031645987182855606,0.057554420083761215,0.005781701300293207,-0.01999698579311371,0.0014312805142253637,0.0624430887401104,0.04055606201291084,0.07439523190259933,-0.06976566463708878,0.056755319237709045,-0.048440027981996536,0.020945955067873,-0.07449357956647873,0.014241088181734085,-0.03936031088232994,0.02761146053671837,-0.04254309460520744,-0.034070227295160294,-0.051847655326128006,-0.044399693608284,-0.03631990775465965,0.036897774785757065,-0.016009263694286346,0.04278288781642914,-0.030673189088702202,0.03225085884332657,-0.017654595896601677,0.08131640404462814,0.06875945627689362,0.057312581688165665,-0.03642158582806587,-0.07078154385089874,0.04883351922035217,-0.04874064028263092,-0.058078132569789886,0.0346280075609684,0.00015999283641576767,0.04105579853057861,-0.06160398945212364,0.04114279896020889,-0.045227907598018646,-0.07371935248374939,-0.006195476744323969,-0.05331556499004364,-0.018959715962409973,0.011443804949522018,-0.05849123001098633,0.005460153333842754,0.05490519851446152,-0.06348028033971786,-0.028387675061821938,-0.005479326471686363,-0.032230958342552185,0.033204976469278336,-0.04944097250699997,-0.02577192522585392,0.022111697122454643,-0.05622176080942154,-0.06144382804632187,0.008832590654492378,0.05425618588924408,-0.06906808167695999,-0.000520338595379144,0.02229361981153488,0.01052153017371893,0.02419804222881794,0.040061164647340775,0.029976576566696167,0.0004877580504398793,0.06106312945485115,-0.029554683715105057,0.009019332937896252,-0.021592024713754654,-0.02117357775568962,-0.029186053201556206,-0.04272821918129921,0.04994150996208191,-0.06183088943362236,0.06114353984594345,-0.048180487006902695,-0.039353467524051666,-0.012443462386727333,0.01791052147746086,0.005020261742174625,0.037709303200244904,0.05915408581495285,-0.044441889971494675,-0.0509984977543354,0.005578530021011829,0.05313510075211525,-0.04859467223286629,0.023520376533269882,0.00010401441977592185,0.055567268282175064,-0.019955746829509735,0.004994549322873354,-0.05583156645298004,0.06565248966217041,0.07990674674510956,0.06318901479244232,-0.05016603693366051,0.0839696004986763,0.004948996007442474,0.0488361120223999,-0.005839427933096886,0.01877213828265667,0.007831222377717495,0.03786752000451088,0.0801735445857048,-0.06375409662723541,-0.020559055730700493,0.0016198293305933475,-0.03711608797311783,0.02125229872763157,0.07010366767644882,-0.06312362849712372,-0.045130252838134766,-0.05696239322423935,-0.014746519736945629,0.07902295142412186,-0.03372284770011902,-0.020638974383473396,0.022303059697151184,-0.01878792978823185,-0.05463790148496628,-0.027246873825788498,-0.007938575930893421,-0.01775355450809002,0.033246591687202454,0.076686792075634,0.022554464638233185,0.0015403181314468384,0.07427613437175751,0.012615920044481754,0.05737024545669556,0.01134452410042286,0.02687026560306549,0.016949962824583054,0.044886767864227295,-0.032499875873327255,0.012878239154815674,-0.008912642486393452,-0.025178860872983932,-0.08246804028749466,0.06550321727991104,-0.052101340144872665,-0.011492160148918629,-0.0006107958615757525,0.04891500622034073,0.03077414073050022,-0.013467838056385517,0.053492218255996704,0.07043065875768661,0.01971118338406086,-0.0376971997320652,0.07323990762233734,0.04502734914422035,0.07854492217302322,0.009389293380081654,-0.05260836333036423,-0.0506223626434803,0.0028545570094138384,-0.03858320787549019,-0.045036789029836655,-0.016287848353385925,-0.06950034201145172,-0.031163066625595093,-0.015207501128315926,-0.01691073551774025,-0.03316206857562065,0.015568291768431664,-0.049171142280101776,-0.006274391431361437,-0.06604855507612228,-0.04468381404876709,-0.007228546310216188,-0.055274028331041336,-0.05775664374232292,-0.017947392538189888,0.08286911249160767,-0.020194610580801964,0.01887275092303753,-0.009114580228924751,0.04174109175801277,-0.0494546964764595,0.016661470755934715,0.005624063778668642,0.0062537165358662605,-0.05455462262034416,-0.049697548151016235,0.06814452260732651,-0.06969873607158661,0.05470414087176323,-0.0028901067562401295,-0.032186172902584076,0.07295157760381699,-0.03774324059486389,0.02495829574763775,-0.019147401675581932,-0.039951223880052567,0.06136281043291092,0.08028756082057953,0.01996399275958538,0.023932715877890587,-0.028071098029613495,-0.056117262691259384,-0.07304441928863525,0.029789941385388374,0.008523914963006973,-0.06672602146863937,-0.024447089061141014,-0.050586480647325516,0.0755477249622345,-0.0068404837511479855,-0.019147029146552086,-0.03269018232822418,0.05982055887579918,0.05994223803281784,0.055107954889535904,0.060582805424928665,0.0215091984719038,0.046223849058151245,-0.004214216955006123,0.03999687731266022,-0.0040656388737261295,-0.019671985879540443,0.011184037663042545,-0.008728341199457645,-0.01969156228005886,-0.06901027262210846,-0.001189815578982234,0.05139901861548424,0.03753814473748207,0.0583060160279274,-0.05284973978996277,-0.06579253077507019,0.05500457435846329,-0.048196613788604736,-0.027203673496842384,-0.052168186753988266,-0.06938938051462173,0.02901226095855236,-0.03710031509399414,-0.051654692739248276,0.03366994857788086,0.03376393020153046,0.004668855573982,-0.005965677089989185,-0.008745795115828514,-0.06150864437222481,-0.00390384579077363,-0.025955183431506157,-0.06673072278499603,-0.036868494004011154,0.044418491423130035,0.029132451862096786,0.0793461725115776,0.08076874166727066,0.043910086154937744,-0.01686743088066578,-0.05883412808179855,0.026462242007255554,0.07046156376600266,-0.0001502566010458395,-0.03129691630601883,-0.032983262091875076,-0.03983880206942558,0.062013573944568634,-0.008045920170843601,0.04291540011763573,-0.06217338517308235,0.0660046637058258,-0.018222248181700706,-0.06843327730894089,-0.009934215806424618,0.02449442259967327,-0.0350111648440361,-0.0639718696475029,-0.031962666660547256,0.04189717397093773,0.042793549597263336,0.014196881093084812,0.01962280087172985,-0.041818421334028244,0.05998386815190315,0.014037531800568104,0.011151932179927826,-0.05072441324591637,-0.022199058905243874,-0.06472492963075638,-0.06603849679231644,-0.055830128490924835,0.032096125185489655,-0.03158752992749214,-0.06544946879148483,-0.025044167414307594,0.019694596529006958,-0.006995151750743389,-0.06663964688777924,0.026892803609371185,-0.029012169688940048,0.05632823333144188,-0.05894046649336815,0.023130590096116066,0.024891002103686333,-0.0048324596136808395,0.07239636033773422,-0.0418914370238781,-0.03952101990580559,-0.04823305085301399,-0.06426263600587845,-0.047111041843891144,-0.04521356523036957,0.06774678826332092,0.06934966892004013,0.03979075700044632,0.014069860801100731,-0.06911395490169525,-0.032502468675374985,-0.04989347979426384,-0.04348943382501602,0.048622723668813705,0.010415523312985897,0.03825679421424866,-0.042835868895053864,-0.04621186852455139,0.06827941536903381,-0.07620600610971451,0.06516922265291214,-0.07428428530693054,0.08047889918088913,0.044003088027238846,0.002933567389845848,0.021419646218419075,-0.04003123939037323,0.04544410482048988,0.04014065861701965,-0.022843439131975174,0.08177834004163742,0.06433065980672836,-0.016353804618120193,0.00943093653768301,-0.0013313043164089322,-0.07340581715106964,-0.0503045916557312,-0.04530661553144455,-0.03037400171160698,-0.056678421795368195,-0.05759468302130699,0.0009748190641403198,-0.05330571532249451,0.007860342040657997,0.013634182512760162,-0.07582332193851471,0.03148669749498367,0.07139770686626434,-0.04045158252120018,0.032596468925476074,-0.04241940379142761,-0.017760999500751495,-0.015769854187965393,-0.045842740684747696,0.06961231678724289,0.058147359639406204,-0.0702199786901474,0.03161374479532242,0.06198252737522125,-0.07348484545946121,0.05900157243013382,-0.00043194176396355033,-0.006912425626069307,0.023019323125481606,0.03611943870782852,0.010686056688427925,-0.02722022496163845,-0.06376343220472336,-0.013547582551836967,0.04967349022626877,0.060509487986564636,-0.005290869157761335,-0.004634978249669075,-0.05257321149110794,-0.016499480232596397,0.03237101435661316,0.030033284798264503,0.027505626901984215,-0.0029797491151839495,0.041675686836242676,-0.04404758661985397,-0.06251686066389084,-0.000012871972103312146,0.06583219766616821,-0.06456085294485092,0.027883561328053474,-0.034721966832876205,0.026332959532737732,0.05686693638563156,0.025860829278826714,0.043742336332798004,0.018752802163362503,-0.059613101184368134,0.02138569764792919,-0.048429347574710846,0.020124027505517006,0.06408771872520447,0.008827478624880314,0.03330886736512184,-0.03777756541967392,-0.037418533116579056,0.006401902064681053,0.04860939085483551,-0.03040190599858761,-0.06803686916828156,0.030201975256204605,0.06487172096967697,-0.03584684059023857,0.04343712329864502,-0.04985492676496506,0.06982361525297165,-0.0034614517353475094,-0.02526686154305935,0.0492507629096508,-0.028569523245096207,-0.0060632373206317425,-0.054351966828107834,0.04296741262078285,0.06750085949897766,0.008946661837399006,-0.05589345097541809,-0.07052281498908997,0.01851903460919857,-0.018503542989492416]}] +[{"id":"afternoon","vector":[0.06651193648576736,-0.023326337337493896,0.014578191563487053,0.03351740539073944,-0.0451069176197052,0.0006314123165793717,-0.022666264325380325,-0.07861806452274323,0.04251052439212799,0.009988836944103241,-0.006410294212400913,-0.022585425525903702,-0.02433745563030243,-0.017261723056435585,-0.06499848514795303,0.009517828933894634,-0.05255042389035225,-0.05681157857179642,-0.053434450179338455,0.016976548358798027,-0.006142298690974712,-0.015302250161767006,0.0461893193423748,-0.04963025823235512,0.040796469897031784,0.012472669593989849,-0.02245548740029335,0.0285479836165905,-0.04860583320260048,-0.05746808648109436,0.07577789574861526,-0.07131844758987427,-0.005062528885900974,-0.016367603093385696,0.06013641878962517,0.04095587506890297,-0.046098578721284866,0.04173049330711365,0.017364418134093285,-0.041913747787475586,-0.0066892956383526325,0.021560415625572205,0.07380562275648117,-0.05151449143886566,-0.019518963992595673,0.02410176396369934,-0.05775536224246025,0.004853947088122368,0.04573170468211174,0.05603852868080139,0.04605894908308983,-0.020339053124189377,0.020237665623426437,-0.016491886228322983,0.006055484060198069,-0.0183775145560503,-0.02636895515024662,0.049049630761146545,0.0014810056891292334,-0.07407218217849731,-0.0749758780002594,-0.04447803646326065,-0.0371086448431015,0.02055790089070797,-0.016303779557347298,-0.014833688735961914,0.07465682923793793,-0.016466930508613586,0.07182484120130539,-0.05168294534087181,-0.0420774444937706,-0.02965567260980606,0.000952507893089205,-0.016778094694018364,-0.04375597462058067,-0.054291337728500366,0.032829899340867996,0.058670006692409515,0.005993284285068512,0.06468071788549423,0.004078920930624008,0.03184978663921356,-0.005136238876730204,-0.00039048949838615954,-0.05910418555140495,0.053634949028491974,-0.004192098509520292,0.07104908674955368,-0.05271409824490547,0.06587743014097214,-0.05135057121515274,-0.0027649193070828915,-0.04949638992547989,0.025129592046141624,-0.03666584566235542,0.04227045550942421,-0.07253380119800568,-0.04714910313487053,-0.061224423348903656,-0.058872852474451065,-0.07640733569860458,-0.0030745563562959433,-0.012324487790465355,0.035709839314222336,-0.03842635080218315,0.03005051240324974,-0.048292096704244614,0.052423860877752304,0.03876399248838425,0.01504753902554512,-0.01903516985476017,-0.07626697421073914,-0.019221782684326172,-0.06864741444587708,-0.03409033641219139,0.024175597354769707,-0.013444332405924797,0.05810203775763512,-0.06760074943304062,0.02827399969100952,-0.03481345623731613,-0.07072485983371735,0.03665604814887047,-0.049136314541101456,-0.06181652471423149,0.013149922713637352,-0.04763028025627136,0.03694950044155121,0.06199214607477188,-0.07522919028997421,-0.06639406085014343,-0.034740131348371506,-0.00946850050240755,0.05719670653343201,-0.03205437958240509,-0.06713274121284485,0.016963932663202286,-0.054859187453985214,-0.014020671136677265,0.03858565539121628,-0.0001869964471552521,-0.049112893640995026,0.05355256050825119,0.06869559735059738,-0.01027462538331747,-0.003599061630666256,0.0680675357580185,0.043658073991537094,0.011319882236421108,0.03541954606771469,-0.012790311127901077,-0.006270012818276882,-0.04723149165511131,-0.06229972839355469,-0.04790199175477028,-0.04091816768050194,0.035413917154073715,-0.06479576230049133,0.025656603276729584,-0.06161106377840042,-0.012899037450551987,-0.024810906499624252,0.056294362992048264,0.019411534070968628,0.017257768660783768,-0.011316013522446156,0.040513597428798676,-0.04461422935128212,0.017957346513867378,0.0345265232026577,-0.028658341616392136,0.009225420653820038,-0.010023882612586021,0.054265350103378296,0.034437693655490875,0.025166356936097145,-0.0682625100016594,0.07128444314002991,0.0778639167547226,0.06891525536775589,-0.039454877376556396,0.07377196103334427,0.01635940559208393,-0.022033173590898514,0.03259584680199623,0.06830216944217682,0.039555516093969345,0.047488339245319366,0.03406023234128952,-0.05449321120977402,0.00041991390753537416,-0.029544729739427567,-0.021239759400486946,-0.021923156455159187,0.06679494678974152,-0.05900650843977928,-0.014110451564192772,0.020801197737455368,0.012860018759965897,0.07976143807172775,-0.02623889409005642,0.00032053262111730874,0.057850055396556854,0.006106799468398094,-0.030736425891518593,-0.05070531740784645,0.06477775424718857,-0.004436120856553316,0.020894531160593033,0.07649122923612595,0.014609451405704021,0.05296475812792778,0.061045899987220764,0.010537510737776756,0.0664931908249855,-0.007720275316387415,-0.027869442477822304,-0.04161535203456879,0.0656747967004776,0.009303499013185501,0.06238085404038429,-0.02069813199341297,-0.01632317341864109,-0.043919727206230164,0.04947966709733009,0.02386096492409706,-0.06071963533759117,0.022004486992955208,-0.003595190355554223,0.004200949799269438,-0.060700420290231705,0.05010099336504936,0.05217769742012024,0.03562363237142563,0.005184595473110676,0.06262513250112534,0.043738994747400284,0.05698797106742859,-0.01526008453220129,0.03590022027492523,-0.06002432852983475,0.024575620889663696,0.02036507986485958,-0.042279623448848724,0.005675389897078276,-0.009078176692128181,-0.00826835073530674,0.018323317170143127,0.05297643318772316,-0.009995821863412857,0.037032678723335266,-0.06492144614458084,0.042616602033376694,-0.06800678372383118,-0.0026059166993945837,-0.04072635620832443,-0.024491077288985252,-0.048206981271505356,-0.00214749644510448,0.07549579441547394,-0.06832723319530487,-0.04527423530817032,-0.0326518677175045,0.021016117185354233,-0.014366243034601212,0.03671230375766754,0.023940954357385635,-0.007581248879432678,-0.03169341757893562,-0.06830032169818878,0.06259268522262573,-0.07585273683071136,0.060330066829919815,-0.009875324554741383,-0.009542979300022125,0.07900046557188034,-0.04124406352639198,0.030043506994843483,-0.013052218593657017,0.0463067851960659,0.07284018397331238,0.0681694895029068,0.017485909163951874,0.02891628071665764,-0.05699688196182251,-0.07091829180717468,-0.08115094155073166,0.018280835822224617,-0.04837745800614357,-0.019474081695079803,-0.05954600125551224,-0.028851326555013657,0.03582598641514778,0.042033761739730835,-0.05483943223953247,-0.048585474491119385,0.0745193287730217,0.031656816601753235,0.018161827698349953,0.05125368386507034,-0.007689743768423796,0.022347774356603622,-0.004722348414361477,0.02925313450396061,0.014295034110546112,0.025282887741923332,0.04884324595332146,-0.013502571731805801,-0.02529805526137352,-0.07989785820245743,-0.00399334030225873,0.002338337479159236,-0.012061325833201408,0.07335366308689117,-0.07647643983364105,-0.050589419901371,0.06723109632730484,0.006033607292920351,-0.030128972604870796,-0.03617989644408226,-0.08368557691574097,0.05326319485902786,-0.06069332733750343,-0.04003837704658508,0.06124517694115639,-0.011520753614604473,-0.04223392903804779,-0.024705667048692703,0.040227316319942474,-0.042154908180236816,-0.05223974585533142,-0.0409008264541626,-0.07477215677499771,-0.03939029946923256,0.057891108095645905,0.01742488518357277,0.08095208555459976,0.08214138448238373,0.015665365383028984,0.0009033887181431055,0.021188894286751747,-0.00822960864752531,0.016561338678002357,-0.008833121508359909,0.04168248921632767,-0.0009601698839105666,-0.0707281082868576,0.0577777698636055,0.038531407713890076,0.057166121900081635,-0.07743310183286667,0.06284625083208084,0.012490112334489822,-0.02524038776755333,-0.037047918885946274,0.055530060082674026,-0.011742773465812206,-0.05595579370856285,-0.012798674404621124,-0.018149441108107567,0.05497683584690094,0.032408807426691055,-0.00696807075291872,0.011166016571223736,0.03276961296796799,-0.02388693206012249,-0.012685297057032585,-0.05609048530459404,-0.040691670030355453,-0.028289852663874626,-0.05998360738158226,0.011995243839919567,0.0390019416809082,-0.04372188076376915,-0.07145043462514877,-0.006383758969604969,-0.03015284053981304,0.04115816205739975,0.012592615559697151,0.041535891592502594,0.006055301986634731,0.013432478532195091,-0.06843559443950653,0.05786535143852234,0.04022137448191643,-0.008916685357689857,0.05015787109732628,-0.04688218981027603,-0.06747419387102127,-0.046612098813056946,-0.07113271206617355,-0.04732011631131172,-0.0545644536614418,0.030459579080343246,0.06700053066015244,0.0402517206966877,0.05323610082268715,-0.05507177859544754,-0.032231561839580536,-0.07477063685655594,-0.03304261714220047,0.08125155419111252,0.02450760267674923,0.06127975881099701,0.04500672221183777,-0.04758116975426674,0.056943703442811966,-0.0730694979429245,0.07741612941026688,-0.014371189288794994,0.07463487982749939,0.06987663358449936,-0.011909261345863342,-0.04716631770133972,0.00641051447018981,0.05894959345459938,0.03903338685631752,0.005075962748378515,0.06979113817214966,0.059628430753946304,-0.058879148215055466,0.04758339002728462,-0.010722878389060497,-0.05432909354567528,-0.07021696865558624,-0.008129085414111614,-0.0439390204846859,-0.06805361062288284,-0.014358819462358952,0.03949401527643204,-0.007820905186235905,0.00529163284227252,-0.00649017421528697,-0.05388461425900459,0.05950412154197693,0.06026681512594223,-0.08007783442735672,0.010401482693850994,-0.059005867689847946,0.027921779081225395,-0.031329989433288574,-0.04386496916413307,0.004764408338814974,0.03488276153802872,-0.01952962391078472,0.03252789005637169,0.08326878398656845,-0.08099789172410965,0.059038642793893814,-0.016352633014321327,0.00291637796908617,-0.05606168881058693,0.026439063251018524,0.04027501493692398,0.06038207560777664,-0.06705652177333832,0.01203747745603323,0.04245308041572571,0.04542766138911247,-0.0622236467897892,0.03801320493221283,-0.04642176255583763,0.00298594799824059,-0.008377366699278355,-0.012606430798768997,0.0598793551325798,-0.045831356197595596,0.042823489755392075,-0.04217436537146568,-0.0370662659406662,0.00889702420681715,0.04092713072896004,0.03285938501358032,-0.024885397404432297,0.04962898790836334,0.031897250562906265,0.033466096967458725,0.06661470979452133,0.023769818246364594,0.03268149495124817,-0.028960099443793297,-0.06991010159254074,-0.058861251920461655,0.0029477232601493597,-0.02495426870882511,0.026574132964015007,0.02076142281293869,-0.03779583051800728,-0.05709582939743996,0.014751039445400238,-0.007668907754123211,-0.0412713885307312,-0.05140804871916771,-0.028510721400380135,0.07368166744709015,-0.037564974278211594,-0.013430699706077576,-0.03466539829969406,0.06501910090446472,-0.00593681400641799,0.003950182814151049,0.0609920509159565,-0.015792300924658775,-0.009327080100774765,-0.0019120158394798636,0.004897864535450935,-0.03148002177476883,0.018148144707083702,-0.0681050717830658,-0.07986702769994736,-0.011257873848080635,0.039521511644124985]},{"id":"asphyxiate","vector":[0.01950157806277275,0.003061900148168206,0.0033783218823373318,-0.01843259111046791,-0.021312206983566284,0.014210565015673637,0.04827720299363136,-0.031217247247695923,0.00016263051657006145,0.012228282168507576,0.06119001284241676,0.027004601433873177,-0.009373344480991364,0.054029881954193115,-0.05350302532315254,-0.018082965165376663,-0.05952775105834007,-0.05983821302652359,-0.020569028332829475,-0.035991307348012924,0.02716723084449768,-0.032303668558597565,0.047896306961774826,-0.0065127150155603886,0.024529527872800827,-0.01753452979028225,-0.04311287775635719,-0.051960136741399765,-0.0681726485490799,-0.04607892408967018,0.0678761750459671,-0.05908510088920593,-0.04545337334275246,-0.028130043298006058,0.04145876318216324,0.020446598529815674,-0.044172681868076324,0.032390233129262924,0.05789652466773987,-0.033611491322517395,-0.004512384999543428,-0.0009910232620313764,0.06852910667657852,-0.0546102412045002,-0.01854749210178852,0.00622856430709362,-0.07313086837530136,0.003833880415186286,0.05757727846503258,0.06756515055894852,0.01283190120011568,-0.038908232003450394,0.03887728974223137,-0.06253593415021896,-0.035377200692892075,-0.020503781735897064,0.06962759792804718,-0.006343984045088291,0.03336319327354431,-0.0816754698753357,-0.05603574588894844,-0.028376135975122452,-0.036613237112760544,0.01362237986177206,-0.04280360788106918,-0.016950761899352074,0.08752966672182083,0.02683063969016075,0.08209151029586792,-0.07064238935709,-0.028561776503920555,-0.04770861566066742,0.03143629804253578,-0.0038470423314720392,-0.05270591750741005,-0.052244916558265686,0.01560881920158863,-0.07474933564662933,-0.047800201922655106,0.05065513029694557,-0.006356386002153158,0.050981659442186356,0.03302570804953575,-0.022067110985517502,-0.0476367324590683,0.04566436633467674,-0.018803417682647705,0.0409272275865078,-0.05168138071894646,0.06275276839733124,-0.03618551418185234,0.0015808469615876675,-0.04295467585325241,0.04693425074219704,-0.03844057396054268,0.009388402104377747,-0.05365731567144394,-0.0044751251116395,-0.01392959151417017,-0.04127158224582672,-0.08047714829444885,-0.015689667314291,-0.020251205191016197,0.010145776905119419,-0.02695085108280182,0.030178716406226158,-0.04698912426829338,0.07186173647642136,0.07047411054372787,0.0069069103337824345,-0.03592172637581825,-0.05413616821169853,0.016052663326263428,-0.05445265397429466,-0.027425795793533325,0.0649089366197586,0.024322548881173134,0.0378011018037796,-0.0669410228729248,0.037174422293901443,-0.052096955478191376,-0.07675144821405411,0.004789125639945269,-0.055562447756528854,-0.031114032492041588,0.009587452746927738,-0.004596728831529617,-0.006227631587535143,0.0359763503074646,-0.04777027666568756,-0.027767939493060112,-0.046370331197977066,-0.026271972805261612,0.053573448210954666,-0.03519622981548309,-0.058353230357170105,-0.03010633960366249,-0.06741897016763687,-0.0048668766394257545,0.025343555957078934,0.024551209062337875,-0.06216485798358917,0.04840949550271034,0.05667005851864815,0.004210534505546093,-0.019490376114845276,0.0654401034116745,0.03862589970231056,0.013903575949370861,0.06542984396219254,0.015746520832180977,-0.0017217738786712289,-0.07269767671823502,-0.0072616999968886375,-0.03196053206920624,-0.04137223958969116,0.05473053455352783,-0.030619295313954353,0.06262894719839096,-0.06383171677589417,0.017613859847187996,-0.0024019796401262283,0.04119721055030823,-0.025975370779633522,-0.004674654919654131,0.03773928061127663,-0.03928736224770546,-0.06093471869826317,0.02194339968264103,0.057399995625019073,-0.051304224878549576,-0.018032008782029152,-0.0466061532497406,0.06136284023523331,-0.0184332262724638,0.014636450447142124,-0.07178489863872528,0.07964155077934265,0.08020588010549545,0.0735456719994545,-0.00816294550895691,0.07865641266107559,0.004908079281449318,0.03418755158782005,0.03446398675441742,0.04198547080159187,0.00047391155385412276,0.056832872331142426,0.03826439380645752,-0.039589446038007736,-0.022834986448287964,-0.008541574701666832,-0.0285659059882164,-0.020433848723769188,0.07549022138118744,-0.06963302940130234,-0.06141655892133713,-0.016678117215633392,0.012289044447243214,0.0746169313788414,-0.002451270818710327,0.009476860985159874,0.03142502158880234,-0.008545354939997196,-0.02916647680103779,-0.03575272858142853,0.04611041396856308,0.02506660483777523,0.05498732998967171,0.0788717120885849,0.004125654231756926,-0.015181862749159336,0.05721469596028328,-0.026742776855826378,0.027752893045544624,0.01584377884864807,-0.012477229349315166,0.0008219268056564033,0.06285930424928665,0.000615596363786608,0.02710706926882267,-0.025659771636128426,0.00767588010057807,-0.06090782955288887,0.02938719466328621,0.030600231140851974,-0.017730949446558952,-0.011029601097106934,0.029594609513878822,0.02584964968264103,0.0022576700430363417,0.05001512169837952,0.03912860527634621,0.02834777720272541,0.04691137745976448,0.06232784688472748,0.04760557785630226,0.06789468973875046,0.03352746739983559,-0.08104867488145828,-0.054660454392433167,0.029831761494278908,0.013138909824192524,-0.03119833394885063,-0.03504931926727295,-0.039126183837652206,0.003037975635379553,0.01919206790626049,0.0202840156853199,-0.02790042571723461,0.039358168840408325,-0.06916595995426178,0.019406896084547043,-0.07032407820224762,0.018130747601389885,0.008868018165230751,0.01407379936426878,-0.04569508135318756,0.00284061417914927,0.08135342597961426,-0.04538347199559212,-0.03190707415342331,0.006211650092154741,-0.05031631886959076,-0.0026017744094133377,0.012078676372766495,-0.006179149262607098,-0.049658503383398056,0.03423551842570305,-0.03564392402768135,0.055973976850509644,-0.055300336331129074,0.010849962942302227,-0.024271691218018532,-0.023942183703184128,0.08314801752567291,-0.061160724610090256,0.06314834207296371,-0.05311306193470955,0.0046982900239527225,0.05875241756439209,0.0643123984336853,0.010327372699975967,0.02746286243200302,-0.02048770897090435,-0.05511125922203064,-0.06767775863409042,0.05214553326368332,-0.05800717696547508,-0.043911345303058624,-0.033467572182416916,0.00237145833671093,0.06051095202565193,0.024578066542744637,0.0037644256372004747,-0.03200240433216095,0.06059974804520607,0.040281735360622406,0.0544787272810936,0.050162941217422485,-0.03211863338947296,0.053572289645671844,-0.028831742703914642,0.04223109036684036,0.0433482863008976,-0.009639596566557884,0.010371438227593899,-0.014294736087322235,-0.013813921250402927,-0.08380373567342758,-0.007471770513802767,0.006754729896783829,0.009922152385115623,0.06864330172538757,-0.07352729141712189,-0.05303549766540527,0.0364391915500164,-0.014604792930185795,-0.036358412355184555,-0.07010145485401154,-0.07388580590486526,0.0458158515393734,-0.034658774733543396,-0.006225851364433765,0.06235213950276375,0.012012402527034283,-0.03320607542991638,-0.034234654158353806,0.00638621998950839,-0.04077095910906792,-0.023229828104376793,-0.03965738043189049,-0.07135110348463058,-0.012047969736158848,0.041373975574970245,-0.022012872621417046,0.07578784972429276,0.07954441010951996,0.011342087760567665,0.05018354207277298,-0.0327489972114563,0.046429965645074844,0.05100218579173088,0.01908240094780922,-0.018567532300949097,0.04488946124911308,-0.04035544767975807,0.05109107121825218,-0.01101794745773077,0.03475087136030197,-0.08082148432731628,0.06065363809466362,0.05341346561908722,-0.03175825998187065,-0.02717842347919941,0.06994010508060455,-0.023952146992087364,-0.07484367489814758,0.04324353486299515,0.02753257192671299,0.03560934215784073,0.0042256563901901245,0.02130398526787758,-0.04322243854403496,-0.01255902647972107,0.03848326951265335,-0.010797991417348385,-0.0482441782951355,-0.017998699098825455,-0.0431734137237072,-0.053060367703437805,-0.014708983711898327,0.051334578543901443,-0.07975573092699051,-0.06898444890975952,-0.029981354251503944,0.01873643696308136,0.02555527351796627,-0.006609216798096895,0.01614225097000599,0.0035229544155299664,0.03450701758265495,-0.06747529655694962,0.05347687378525734,0.0771084800362587,-0.022056929767131805,0.05311385914683342,-0.029399562627077103,-0.04823659732937813,-0.07584033906459808,-0.0648188591003418,-0.00966017134487629,0.001892970409244299,0.004609184805303812,0.05662663280963898,0.04246017709374428,0.06615754216909409,-0.08163746446371078,-0.06956984847784042,-0.05392351746559143,-0.059777844697237015,0.06971469521522522,0.01965227909386158,0.03920969367027283,-0.04004961997270584,0.024351174011826515,0.05981997400522232,-0.08089419454336166,0.05203321948647499,-0.05574491620063782,0.07044333964586258,0.012262167409062386,-0.005593050271272659,-0.004880204331129789,0.009604403749108315,0.03375695273280144,0.035940270870923996,0.01546391099691391,0.0720292404294014,0.0453997477889061,-0.0422726608812809,0.044764623045921326,0.06497964262962341,-0.07013898342847824,-0.06904537230730057,-0.016040325164794922,-0.0324295274913311,-0.053413957357406616,-0.06745679676532745,0.03565182909369469,0.03794752433896065,0.004482981748878956,-0.024341905489563942,-0.030244925990700722,0.04510021582245827,0.07812803238630295,-0.07900360226631165,0.011217908002436161,0.03260742872953415,0.008238198235630989,-0.051342517137527466,-0.03258878365159035,0.06465450674295425,0.060048431158065796,-0.07399662584066391,0.03676886111497879,0.08382835984230042,-0.08034399151802063,0.06345993280410767,-0.04132235050201416,-0.031043650582432747,-0.001989679178223014,0.009064627811312675,0.012200392782688141,0.028249075636267662,-0.06865756213665009,0.007033500354737043,0.02753765694797039,0.05528115853667259,-0.07225477695465088,0.02104519121348858,-0.015650348737835884,-0.018975865095853806,0.011772687546908855,0.0021473171655088663,0.035152774304151535,-0.026907406747341156,0.03573460504412651,-0.03026750311255455,-0.0660896822810173,0.03410397097468376,0.07655911147594452,-0.014813074842095375,0.0330839529633522,0.02342257834970951,0.04415084421634674,0.07841665297746658,0.04526549205183983,0.025335006415843964,0.07579939812421799,-0.024914979934692383,-0.03711319714784622,-0.029660653322935104,0.0010004120413213968,-0.011683708056807518,0.03520581126213074,0.036398906260728836,-0.03705475851893425,-0.054230254143476486,0.004449017811566591,-0.001915062079206109,-0.023271311074495316,-0.07225250452756882,0.05083877965807915,0.07556553184986115,0.0055196997709572315,-0.03294560685753822,-0.04158809036016464,0.07447817176580429,-0.02011847496032715,0.014516553841531277,0.031660981476306915,-0.04862215369939804,0.05176745355129242,-0.03223316743969917,0.018389714881777763,0.07403970509767532,0.06060149148106575,-0.07404018938541412,-0.07489126920700073,0.0558554008603096,0.06856053322553635]},{"id":"atmospheres","vector":[0.0006151271518319845,-0.03742266818881035,-0.010816982947289944,0.005632899701595306,-0.031137187033891678,0.03090777061879635,0.005229815375059843,-0.06975402683019638,0.026546481996774673,-0.010477017611265182,0.060516972094774246,0.007117122411727905,-0.008938372135162354,0.04544704779982567,-0.05651654303073883,-0.01662181317806244,-0.04272889345884323,-0.062244996428489685,-0.02639572136104107,0.05183398351073265,0.04580812156200409,0.0012804080033674836,0.04302981495857239,-0.025911422446370125,0.013129783794283867,-0.013755343854427338,-0.016626277938485146,-0.0011438238434493542,-0.052022162824869156,-0.018054740503430367,0.06261845678091049,-0.07372699677944183,-0.034937359392642975,-0.02491619624197483,0.05520789697766304,0.024693014100193977,-0.051848821341991425,0.034009601920843124,0.054364897310733795,-0.026246845722198486,-0.011514385230839252,0.004459642339497805,0.07717163860797882,-0.024507546797394753,0.004553575534373522,-0.018199242651462555,-0.050755929201841354,-0.013216041959822178,0.0717221349477768,0.05644117295742035,0.04622459411621094,-0.05539232864975929,0.03450678288936615,-0.0342668853700161,0.04529163986444473,-0.030997801572084427,0.07151152193546295,-0.018470099195837975,0.01823851279914379,-0.08395928889513016,-0.06234438717365265,-0.05063410475850105,-0.05259895697236061,-0.027562443166971207,-0.031191589310765266,0.037479352205991745,0.08897166699171066,0.004896215163171291,0.0859067291021347,-0.03594857081770897,-0.04578844830393791,-0.06343924254179001,-0.014109581708908081,-0.011058451607823372,-0.06916756927967072,-0.05546444654464722,0.015092821791768074,-0.023696284741163254,-0.012158430181443691,0.050954245030879974,0.01988200470805168,0.02199563942849636,0.0013481295900419354,-0.019876325502991676,-0.045092906802892685,0.053110092878341675,-0.046720221638679504,0.033104170113801956,-0.06554121524095535,0.052830763161182404,-0.03970121592283249,0.004722682759165764,-0.024446841329336166,-0.004569558892399073,-0.02793152444064617,0.07496130466461182,-0.07051177322864532,0.008867419324815273,0.014051972888410091,-0.03920811042189598,-0.08571161329746246,-0.02582823485136032,-0.04084526002407074,-0.007214560639113188,-0.03833988681435585,0.026454918086528778,-0.013924614526331425,0.0543382465839386,0.05284461751580238,0.031866684556007385,-0.034976281225681305,-0.06916902959346771,0.0046707093715667725,-0.01653391681611538,-0.0570722371339798,0.011109831742942333,0.054846033453941345,0.014940346591174603,-0.05273725837469101,0.051774755120277405,-0.03140820562839508,-0.05733824148774147,-0.027444988489151,-0.06799256801605225,-0.025739094242453575,0.010625121183693409,-0.059801533818244934,0.03572601452469826,0.02869279496371746,-0.06126755103468895,-0.06034738942980766,-0.0472947396337986,-0.01411299780011177,0.03142819181084633,-0.04205912724137306,-0.06644909828901291,-0.009763320907950401,-0.05530959367752075,-0.05501915141940117,0.00974471215158701,0.0027440895792096853,-0.06339147686958313,0.04782894253730774,0.04672142118215561,-0.02982410416007042,0.0030965746846050024,-0.009152105078101158,0.024348417297005653,-0.0017056616488844156,0.04716130346059799,0.00026476828497834504,-0.00005922324999119155,-0.06798649579286575,-0.02036054991185665,0.0343623161315918,-0.03155539929866791,0.06122557818889618,-0.024302957579493523,0.062421344220638275,-0.052364517003297806,-0.050493985414505005,-0.0056563010439276695,0.050941068679094315,-0.0212885569781065,0.032615773379802704,0.051846444606781006,0.012134823016822338,-0.06511255353689194,0.006987714674323797,0.05849233269691467,-0.06941454857587814,-0.04013385623693466,-0.027628106996417046,0.03909309208393097,-0.020089535042643547,0.05413886532187462,-0.065586619079113,0.08619807660579681,0.0824493020772934,0.07786508649587631,-0.02756614238023758,0.07510175555944443,0.04390750452876091,0.012376390397548676,0.024211809039115906,0.06364081799983978,0.009675644338130951,0.0630597472190857,0.06012498959898949,-0.041865479201078415,-0.035069361329078674,0.025790730491280556,-0.021790171042084694,0.025263367220759392,0.07547050714492798,-0.06905145943164825,-0.050744447857141495,-0.0034222665708512068,-0.019759809598326683,0.06140001118183136,-0.0042784130200743675,0.005657997447997332,0.03036733902990818,0.0007743429741822183,-0.031010163947939873,-0.02431652322411537,0.0316520631313324,0.003813339862972498,0.013483619317412376,0.08105422556400299,-0.016952108591794968,0.009903314523398876,0.07034426927566528,-0.014873549342155457,0.060219500213861465,-0.023158743977546692,-0.008635149337351322,0.020532643422484398,0.06869728863239288,0.005190178751945496,0.0317242406308651,-0.03549516573548317,-0.0005622954340651631,-0.052675746381282806,0.030314413830637932,-0.0060733831487596035,-0.06047671288251877,-0.014784798957407475,0.012942940928041935,0.03563171625137329,0.007984528318047523,0.032188430428504944,0.0791345164179802,0.017445877194404602,0.024728532880544662,0.07408387213945389,0.04713992029428482,0.06423208862543106,0.03540325537323952,-0.06678515672683716,-0.05537750944495201,0.0163824874907732,-0.03747562691569328,0.008403388783335686,-0.026863491162657738,-0.04174835979938507,0.012095685116946697,0.004568920005112886,0.0011910565663129091,-0.0019097155891358852,0.01387049537152052,-0.055707499384880066,0.011566477827727795,-0.07797760516405106,0.035492461174726486,0.035752810537815094,-0.006589339580386877,-0.0674477145075798,-0.026344887912273407,0.06229286268353462,-0.06264761835336685,0.007679351139813662,0.02032669074833393,0.009654331021010876,0.012619340792298317,0.037838224321603775,0.038153275847435,-0.016073351725935936,0.005635157227516174,-0.015577403828501701,0.02873949520289898,-0.059768546372652054,0.0032951689790934324,-0.02967711165547371,0.010341135784983635,0.08598777651786804,-0.05038807913661003,0.058788809925317764,-0.05449235066771507,-0.011325685307383537,0.04613669589161873,0.0691535621881485,0.03331601619720459,-0.016069259494543076,-0.04853286221623421,-0.06212673336267471,-0.08015516400337219,0.04931297525763512,-0.03670743107795715,-0.04254753887653351,-0.04999184608459473,-0.029958389699459076,0.05208302289247513,-0.0012389729963615537,0.023979192599654198,-0.05324923247098923,0.05611739680171013,0.015612920746207237,0.0531354583799839,0.04331913962960243,-0.032526928931474686,0.06638281792402267,-0.02422451414167881,0.03169158846139908,0.024736126884818077,-0.020295515656471252,0.03388316184282303,0.05716521292924881,-0.028181955218315125,-0.07475117594003677,-0.006417104974389076,0.0388658307492733,-0.0073614870198071,0.053724806755781174,-0.06517154723405838,-0.06543555110692978,0.04623959958553314,0.014977770857512951,-0.05341188609600067,-0.05158533528447151,-0.07168523222208023,0.06951664388179779,-0.043322231620550156,-0.016543252393603325,0.04873481020331383,-0.04568445682525635,-0.008374029770493507,0.03183187171816826,0.017822857946157455,-0.04951520264148712,-0.028891773894429207,-0.054067835211753845,-0.04978853836655617,0.00013158167712390423,0.04767834022641182,0.0007495727040804923,0.07202678173780441,0.07715952396392822,0.03648793697357178,0.02417682483792305,-0.022817619144916534,0.027476895600557327,0.04697713255882263,0.027633726596832275,0.006551859900355339,0.04978752136230469,-0.01954779028892517,0.045397624373435974,-0.02492900937795639,0.0567314587533474,-0.07693005353212357,0.05125642567873001,0.04325685277581215,-0.012439793907105923,0.0353369265794754,0.0751272588968277,-0.010728146880865097,-0.07097780704498291,0.0005168214556761086,0.01632852479815483,0.027529990300536156,0.0161813385784626,0.01177859865128994,-0.04345959424972534,0.004492784384638071,0.02224617637693882,-0.029230879619717598,-0.058128129690885544,-0.027777239680290222,-0.05744846165180206,-0.07595241814851761,0.020017893984913826,0.014593965373933315,-0.06907425075769424,-0.062008630484342575,0.013541726395487785,-0.008600004948675632,0.04211384803056717,0.009066592901945114,0.04890149086713791,-0.012944751419126987,0.03864381089806557,-0.07045791298151016,0.023524923250079155,0.05763476714491844,-0.04375360906124115,0.0733722373843193,-0.016770942136645317,-0.03581059351563454,-0.061892665922641754,-0.0670819953083992,-0.029919926077127457,-0.004969135858118534,0.024568554013967514,0.06890237331390381,0.06046682223677635,0.062145356088876724,-0.07471728324890137,-0.0600137822329998,-0.0532660037279129,-0.05585126206278801,0.07476209849119186,-0.002898198552429676,0.05009716749191284,-0.01776389218866825,-0.0006996673764660954,0.06408453732728958,-0.07765356451272964,0.07406887412071228,-0.05048416927456856,0.0691664069890976,-0.022005245089530945,-0.014631180092692375,-0.030619792640209198,-0.0002827731368597597,0.019123500213027,0.05354183167219162,-0.027999695390462875,0.06668923050165176,0.03062801994383335,-0.04597612842917442,0.038128238171339035,0.012255111709237099,-0.07221795618534088,-0.06558139622211456,-0.048807065933942795,-0.00021931686205789447,-0.05599946528673172,-0.041057273745536804,0.022228047251701355,-0.003488104324787855,-0.008613746613264084,-0.004415867384523153,-0.06387852132320404,0.06493909657001495,0.07379920035600662,-0.06131080165505409,-0.0037628186400979757,-0.0013926606625318527,0.018222449347376823,-0.010226510465145111,-0.03968539088964462,0.04993397742509842,0.05762035399675369,-0.07714742422103882,0.04275692254304886,0.08817954361438751,-0.07109984010457993,0.06707873195409775,-0.02966173365712166,0.025992508977651596,-0.053209420293569565,0.011825710535049438,0.021330246701836586,0.014388966374099255,-0.07572977989912033,-0.004738235846161842,0.040998540818691254,0.061752352863550186,-0.05919274315237999,0.00999525748193264,-0.016177667304873466,-0.028165094554424286,0.03664315491914749,-0.0491611585021019,0.04195205867290497,-0.01404742430895567,0.030347760766744614,-0.04604273661971092,-0.06719096750020981,0.04436320811510086,0.07707424461841583,-0.01413925550878048,0.03952847048640251,-0.01769411377608776,0.05213233083486557,0.08049355447292328,0.06249682977795601,0.04142490029335022,0.06932678073644638,0.014476560056209564,-0.05465046316385269,-0.04240584373474121,0.024952908977866173,0.011735317297279835,0.03680398687720299,0.047263920307159424,-0.05460590124130249,-0.06298108398914337,-0.02718358486890793,0.0335027277469635,-0.042054228484630585,-0.06002023071050644,0.02008650451898575,0.0650290697813034,-0.02382989041507244,0.05328153818845749,-0.06830785423517227,0.07877695560455322,-0.02738432213664055,0.030355410650372505,0.06584107875823975,-0.012486336752772331,0.04946139082312584,-0.041993703693151474,-0.0012780128745362163,0.06362191587686539,0.02638566493988037,-0.058604009449481964,-0.08089473843574524,0.021812666207551956,0.03165367618203163]},{"id":"autumn-synesthesia","vector":[-0.0009469242068007588,-0.025592448189854622,-0.02982250414788723,0.05529548227787018,-0.055311162024736404,0.01823318935930729,-0.04277241975069046,-0.07873193919658661,0.03572310879826546,0.023538503795862198,0.01781570538878441,-0.01580873504281044,0.010334138758480549,0.039292607456445694,-0.05772925168275833,-0.007223755586892366,-0.025257127359509468,-0.06212465092539787,-0.024421516805887222,0.035596612840890884,-0.0048319026827812195,-0.04063620790839195,0.01710357330739498,-0.026128990575671196,0.03066772222518921,-0.015815727412700653,0.006204413250088692,-0.04504794254899025,-0.06310969591140747,-0.04746004939079285,0.05447480455040932,-0.06801807135343552,-0.06687604635953903,-0.03642495721578598,0.038239460438489914,0.06336034834384918,-0.03838101029396057,0.010027249343693256,0.06039785221219063,-0.03966421261429787,-0.011599015444517136,0.024695279076695442,0.08129314333200455,-0.05095875635743141,-0.01069137454032898,0.023534316569566727,-0.043274927884340286,-0.027516966685652733,0.06698542088270187,0.06477110832929611,0.01827208139002323,-0.04369008168578148,0.030571462586522102,-0.03195515275001526,0.018940944224596024,-0.06303281337022781,0.06740789860486984,0.013534589670598507,0.0391840897500515,-0.07907924801111221,-0.07563062012195587,-0.0641959011554718,-0.04544571042060852,-0.03610275685787201,-0.06028696149587631,-0.005717538762837648,0.09148110449314117,0.04250574856996536,0.08576789498329163,-0.04043261706829071,-0.030061431229114532,-0.05384809151291847,-0.020761987194418907,-0.020287932828068733,-0.05542543902993202,-0.03305855765938759,-0.004404027014970779,-0.04245293140411377,0.02001292258501053,0.059097595512866974,0.0006538371671922505,0.04912940040230751,-0.016203738749027252,-0.022410640493035316,-0.05008560046553612,0.0459856316447258,0.04123934730887413,0.053359001874923706,-0.032698411494493484,0.022727085277438164,0.007879351265728474,0.009590741246938705,-0.06565110385417938,0.0470498688519001,-0.037244316190481186,0.034966833889484406,-0.08505042642354965,0.010376883670687675,-0.03296854346990585,-0.06537391245365143,-0.07506831735372543,0.05320054292678833,0.0019319336861371994,0.021584074944257736,-0.0063488115556538105,-0.007926756516098976,-0.061573319137096405,0.06702972203493118,0.05477234721183777,-0.00716707669198513,-0.01496932189911604,-0.05065407603979111,0.028869090601801872,-0.029608573764562607,-0.011387023143470287,0.05315873399376869,0.0617678128182888,0.058134179562330246,-0.023336995393037796,0.0614168755710125,-0.06612953543663025,-0.06704782694578171,0.046331800520420074,-0.0690346285700798,-0.0052311900071799755,-0.03175797313451767,0.02247357927262783,0.059517938643693924,0.04124736785888672,-0.03196452185511589,-0.051408395171165466,-0.0436924546957016,-0.04690060019493103,0.00348744192160666,-0.03321176767349243,-0.07091787457466125,0.030695408582687378,-0.06637079268693924,-0.009793947450816631,-0.028471287339925766,0.005057459231466055,-0.053719207644462585,0.0368182472884655,0.07090208679437637,-0.009972400031983852,0.017830006778240204,0.026543032377958298,-0.02569395676255226,-0.008618569932878017,0.031481869518756866,-0.052336860448122025,-0.004138092044740915,-0.06634997576475143,-0.004741272889077663,-0.029067011550068855,-0.018033014610409737,0.050503939390182495,-0.03558679297566414,0.0750475823879242,-0.06047510728240013,-0.035264745354652405,-0.04787785932421684,0.04051060229539871,0.01748606376349926,0.05569477379322052,0.051587510854005814,0.05437029153108597,-0.05704189091920853,0.020363248884677887,0.041842348873615265,-0.0421954020857811,-0.013576473109424114,0.007604870013892651,0.00014825027028564364,-0.030034031718969345,0.0504058338701725,-0.04214748740196228,0.07760623842477798,0.08155199885368347,0.06882321089506149,-0.060966432094573975,0.07536431401968002,0.00030030461493879557,0.022752560675144196,-0.007618179079145193,0.054839879274368286,0.013672759756445885,0.055075738579034805,0.04949701204895973,-0.01823158748447895,-0.04387378320097923,0.026790764182806015,0.008587735705077648,-0.029751919209957123,0.07577050477266312,-0.06854405254125595,-0.055436939001083374,-0.0251526590436697,-0.007374595385044813,0.07980275899171829,-0.027031200006604195,-0.015185434371232986,-0.0052292849868535995,0.003247903659939766,-0.05062175169587135,-0.05092160403728485,0.027963917702436447,-0.02113175019621849,0.029418453574180603,0.07469775527715683,-0.0007843029452487826,0.00742902047932148,0.06645277142524719,-0.004362809006124735,0.051830146461725235,-0.027185361832380295,-0.02875077724456787,0.013389583677053452,0.06787429004907608,-0.03501506522297859,0.048072826117277145,-0.0402514711022377,0.04463295638561249,-0.019168183207511902,0.010922292247414589,0.01842932030558586,-0.04558636248111725,0.011633053421974182,0.030676955357193947,0.028603162616491318,-0.019166026264429092,0.03236149251461029,0.043343547731637955,-0.008237296715378761,0.026839714497327805,0.0660908967256546,0.030960245057940483,0.017043299973011017,-0.0305530596524477,-0.07066799700260162,-0.035412661731243134,-0.016171423718333244,0.004558112937957048,-0.07075236737728119,-0.00343345501460135,-0.04550093784928322,-0.01949971728026867,0.019324330613017082,0.0058939396403729916,-0.06019230931997299,0.004561243578791618,-0.06931246817111969,0.056980542838573456,-0.07843891531229019,-0.002542541828006506,-0.018886512145400047,-0.030550360679626465,-0.05538896098732948,-0.03910443186759949,0.04536592215299606,-0.034258678555488586,0.023522943258285522,0.004313136916607618,-0.04546303302049637,-0.022905468940734863,0.0236723180860281,0.011981375515460968,0.01877153478562832,-0.0163376796990633,-0.002068466041237116,0.05483603850007057,-0.07421063631772995,0.05251976102590561,0.0029675657860934734,0.024360686540603638,0.08624565601348877,-0.03366507962346077,0.0723244696855545,0.0018387931631878018,-0.025606494396924973,0.07772809267044067,0.06639467924833298,-0.009307020343840122,-0.04103904217481613,-0.06181352958083153,-0.05593174695968628,-0.058455027639865875,0.05672789365053177,-0.03203811123967171,-0.055654678493738174,-0.009076589718461037,-0.0450446680188179,0.009563399478793144,-0.009066537022590637,-0.05002604052424431,-0.06284486502408981,0.07048731297254562,-0.00949764996767044,0.061239633709192276,0.049496717751026154,0.007564396597445011,0.030750567093491554,0.0009656377951614559,0.022396164014935493,0.021446453407406807,0.014389757066965103,0.03354128822684288,0.04947911202907562,-0.06533706933259964,-0.08135067671537399,0.013647371903061867,0.007981727831065655,0.010215130634605885,0.023480921983718872,-0.05282182991504669,-0.06827419996261597,0.03584539145231247,-0.018144754692912102,-0.04396155849099159,-0.04849999397993088,-0.07217024266719818,0.04636891931295395,-0.06236663833260536,0.01226801984012127,0.06386501342058182,0.004682477097958326,-0.01489341538399458,0.011035148054361343,0.008828185498714447,-0.03903481736779213,-0.014257978647947311,-0.042755987495183945,-0.042025260627269745,-0.007272185292094946,0.03166288882493973,-0.029443182051181793,0.08941849321126938,0.07063030451536179,0.013309535570442677,0.0123191699385643,-0.03619019687175751,0.005459335632622242,0.05612919107079506,0.03850078582763672,0.01073081512004137,0.009439963847398758,-0.05360041931271553,0.03455938398838043,0.0276844073086977,0.030298899859189987,-0.06296499073505402,0.07499904185533524,-0.008102170191705227,-0.012605078518390656,-0.02310192584991455,0.056161679327487946,-0.05533349886536598,-0.0635027065873146,0.05181999132037163,0.010605505667626858,0.02864079177379608,0.02268707938492298,0.03256412595510483,-0.032809946686029434,0.04596753045916557,0.03927559033036232,-0.03666003420948982,-0.05039643496274948,-0.0517033115029335,-0.036943405866622925,-0.06600306183099747,0.03336089849472046,0.010813622735440731,-0.07329097390174866,-0.07825476676225662,0.047358375042676926,-0.034048791974782944,0.05997853726148605,0.04150688648223877,0.052093181759119034,-0.005427379161119461,0.002805519150570035,-0.0533023364841938,0.027431227266788483,0.0674055814743042,-0.02470504678785801,0.06340828537940979,-0.03873373195528984,-0.033930353820323944,-0.08199609071016312,-0.07112206518650055,-0.03697874769568443,-0.04071809723973274,-0.0030242674984037876,0.06620465219020844,0.05517391487956047,0.023099448531866074,-0.06190209835767746,-0.04325541853904724,-0.06666087359189987,-0.031247993931174278,0.06443573534488678,0.014368037693202496,0.050414133816957474,-0.03779180720448494,-0.030604049563407898,0.012534781359136105,-0.0804833471775055,0.07471168041229248,-0.04154272750020027,0.06894052028656006,-0.01985577493906021,0.048877011984586716,-0.003461133223026991,-0.0016004386125132442,0.06558690965175629,0.03521222621202469,-0.011927795596420765,0.07196112722158432,0.06582685559988022,-0.061599958688020706,0.05341736972332001,0.03719647601246834,-0.0639033392071724,-0.07294385135173798,-0.0450095571577549,-0.03891938179731369,-0.0638817772269249,-0.04171599820256233,0.06035976856946945,-0.0036423946730792522,0.014163153246045113,-0.025890571996569633,-0.06147424504160881,0.050164710730314255,0.07696247100830078,-0.07197313755750656,0.03240498527884483,-0.01948879100382328,0.011363082565367222,0.01646103896200657,-0.031971678137779236,0.043046433478593826,0.03154616802930832,-0.03140054643154144,0.03366849943995476,0.08751168102025986,-0.058805856853723526,0.04233696311712265,0.019117051735520363,0.015235265716910362,-0.0540480874478817,-0.014271913096308708,0.047375258058309555,0.01600213162600994,-0.07660454511642456,-0.019721204414963722,0.001889432780444622,0.04922790452837944,-0.06501416862010956,0.027758372947573662,-0.04698238521814346,0.024266349151730537,0.042987946420907974,-0.05627603828907013,0.03550703823566437,0.01569693721830845,0.0233472790569067,-0.028609352186322212,-0.04918795824050903,0.0360228568315506,0.0556359738111496,0.03073214553296566,-0.004150213208049536,-0.03171173110604286,0.016776325181126595,0.06966499984264374,0.04661933332681656,0.03823121264576912,0.04420166462659836,-0.0241850595921278,-0.031202735379338264,-0.06890403479337692,0.00949123315513134,-0.028718894347548485,0.03212381526827812,0.020356547087430954,-0.05826079100370407,-0.05510418117046356,-0.015037254430353642,-0.0010702426079660654,-0.06126098334789276,-0.08990637958049774,0.028566423803567886,0.054348964244127274,0.0014996144454926252,0.07193058729171753,-0.05843852832913399,0.06814269721508026,0.010405405424535275,-0.017247043550014496,0.05384412780404091,-0.024070968851447105,-0.012923833914101124,-0.004461882635951042,-0.026915613561868668,0.028119806200265884,0.009978479705750942,-0.08167007565498352,-0.08153244107961655,0.037000276148319244,0.04565665125846863]},{"id":"bad-behavior","vector":[0.03530813753604889,-0.030410850420594215,-0.030604742467403412,-0.025739531964063644,-0.0295056514441967,0.021065909415483475,0.02667914144694805,-0.048069607466459274,0.039251964539289474,0.027745962142944336,0.04160536825656891,0.03650463744997978,0.02135627344250679,0.02192527987062931,-0.057828061282634735,-0.026843300089240074,-0.060558121651411057,-0.07476737350225449,-0.014663700945675373,0.002938532968983054,0.008380751125514507,-0.03423786535859108,0.03539690747857094,-0.06368458271026611,0.015214097686111927,-0.03641792759299278,-0.04155445098876953,-0.02526462823152542,-0.05619647353887558,-0.06652587652206421,0.0660361498594284,-0.04992765560746193,-0.06656809896230698,-0.035914238542318344,0.01608327589929104,-0.0012774700298905373,-0.04937705770134926,0.04067402333021164,0.06828278303146362,-0.035261739045381546,0.024907812476158142,0.033041663467884064,0.07123132795095444,-0.03213464468717575,-0.019364304840564728,-0.011467128060758114,-0.07697852700948715,0.02986704558134079,0.03577147424221039,0.05703553929924965,0.022198380902409554,-0.04857615381479263,0.018865160644054413,-0.03662341460585594,-0.025698257610201836,-0.06162353232502937,0.006839477922767401,0.04858383163809776,0.054719407111406326,-0.07789906114339828,-0.04615775868296623,-0.027009131386876106,-0.042657963931560516,0.0035030003637075424,-0.065277099609375,-0.020348645746707916,0.08131873607635498,0.042693983763456345,0.07406941801309586,-0.05610901489853859,-0.0029768161475658417,-0.03653808310627937,0.006944088730961084,-0.005978839471936226,-0.056913308799266815,-0.07284080982208252,0.016948577016592026,-0.054038260132074356,-0.03983499854803085,0.053219184279441833,-0.0027243494987487793,0.05199236795306206,0.015341036021709442,-0.02728055603802204,-0.026270871981978416,0.05125367268919945,-0.025209195911884308,0.06960219144821167,-0.07492374628782272,0.05917428806424141,-0.03447974473237991,0.0355403907597065,-0.05984170362353325,0.040507856756448746,-0.030523333698511124,0.00967790000140667,-0.07226944714784622,-0.0034855979029089212,-0.054505717009305954,-0.07327942550182343,-0.06728548556566238,-0.02520640566945076,0.011284145526587963,0.02586345747113228,-0.018641838803887367,0.051866281777620316,-0.05970458686351776,0.06513316184282303,0.062119677662849426,0.042564891278743744,-0.05225440859794617,-0.06226399168372154,0.026598317548632622,-0.028518959879875183,-0.029327020049095154,0.023384254425764084,0.01081168744713068,0.04284100979566574,-0.07838768512010574,0.06977492570877075,-0.0006022673333063722,-0.07560008019208908,0.024075694382190704,-0.060577597469091415,-0.004809695761650801,0.02185957133769989,-0.0509360171854496,0.02698102965950966,0.022780640050768852,-0.05427975580096245,-0.04260905459523201,-0.04274114966392517,-0.044872935861349106,0.036432527005672455,-0.028776366263628006,-0.07019519805908203,0.02477503940463066,-0.06267392635345459,-0.0025089080445468426,0.030391108244657516,0.03643399477005005,-0.04687654227018356,0.06421174108982086,0.015720732510089874,-0.0414309985935688,0.04544123634696007,0.07153788954019547,0.04358406364917755,0.04672833904623985,0.04807256907224655,0.024534408003091812,0.017383722588419914,-0.045017510652542114,-0.027783190831542015,-0.05051756277680397,-0.032827235758304596,-0.008617625571787357,-0.022094031795859337,0.04303700476884842,-0.06254945695400238,-0.041371528059244156,-0.001489398186095059,0.06181178614497185,0.0035488258581608534,0.024564705789089203,0.006150647532194853,-0.04745937138795853,-0.031092043966054916,0.027864230796694756,0.06177687644958496,-0.03302617743611336,-0.013642417266964912,-0.017748985439538956,0.053435489535331726,0.007588671054691076,-0.005022995639592409,-0.04366083815693855,0.07899805158376694,0.07072076946496964,0.07513676583766937,-0.03235519304871559,0.08226336538791656,-0.007097689434885979,0.027515176683664322,0.042620908468961716,0.051804814487695694,0.012608588673174381,0.05436752364039421,0.0327666774392128,-0.0589413158595562,-0.010391632094979286,-0.012135103344917297,-0.05432342737913132,-0.012587291188538074,0.07876124978065491,-0.054498665034770966,-0.05821049213409424,0.015446453355252743,0.04566464200615883,0.08277682960033417,0.0016344579635187984,0.026247939094901085,0.008780071511864662,0.015788953751325607,-0.0475633442401886,-0.023572275415062904,0.008213271386921406,0.010132505558431149,0.05168471485376358,0.07873494923114777,0.018594961613416672,0.008399050682783127,0.06549734622240067,0.015940774232149124,0.04711303487420082,0.006606250535696745,-0.015026737935841084,-0.023952074348926544,0.0318489633500576,-0.03941019997000694,0.00871580932289362,-0.03720458596944809,-0.007346436381340027,-0.048939596861600876,0.06952716410160065,-0.01628953218460083,-0.0024233630392700434,0.026451855897903442,-0.012586676515638828,0.01968970149755478,0.0009438064298592508,0.046985458582639694,0.03341291844844818,0.025935471057891846,0.00890765618532896,0.06250198185443878,0.03916265815496445,0.04828659072518349,-0.004686621483415365,-0.01231077965348959,-0.07065212726593018,0.0067709628492593765,0.01994122751057148,-0.006981275975704193,0.007290892768651247,-0.045902784913778305,0.013004607520997524,0.056249070912599564,0.030020225793123245,0.006837356369942427,0.025725731626152992,-0.04588747397065163,0.028204340487718582,-0.06679240614175797,-0.026177652180194855,-0.02709236554801464,-0.022031038999557495,-0.06961648166179657,-0.014374124817550182,0.08411025255918503,-0.02854214608669281,-0.06173558160662651,-0.04220443591475487,-0.036536429077386856,-0.01185025554150343,0.025109564885497093,-0.003877366427332163,-0.06906406581401825,-0.011429994367063046,-0.03183054178953171,0.06778237968683243,-0.06818157434463501,0.02866964228451252,-0.008341428823769093,-0.006804077886044979,0.08605576306581497,-0.03347405046224594,0.06936845183372498,-0.007898475043475628,-0.015085243619978428,0.07855621725320816,0.05831080302596092,0.029143571853637695,0.04182101786136627,-0.03322847932577133,-0.07244179397821426,-0.07088931649923325,0.06413819640874863,-0.06287579238414764,-0.05211865156888962,-0.03466610610485077,-0.004890105687081814,0.0487295538187027,0.015274626202881336,-0.023104805499315262,-0.02829011157155037,0.047384217381477356,0.04689965397119522,0.01229066587984562,0.03888889029622078,0.0018422739813104272,0.04760729521512985,-0.02620440535247326,0.04659290611743927,0.024722803384065628,0.01118134893476963,0.00719326501712203,-0.028425024822354317,-0.0399346686899662,-0.07275183498859406,0.03873546048998833,-0.00650761928409338,0.03132113069295883,0.056930046528577805,-0.06854265183210373,-0.06265226751565933,0.04122393950819969,-0.02304800972342491,-0.06088158115744591,-0.05794283747673035,-0.07969629019498825,0.053609803318977356,-0.047192253172397614,-0.033433519303798676,0.05870173126459122,-0.0065858555026352406,-0.024103954434394836,-0.025494873523712158,0.029633700847625732,-0.04462910443544388,-0.012538059614598751,-0.03728834167122841,-0.0743652731180191,-0.05670692026615143,0.04532640427350998,-0.0046553052961826324,0.08408385515213013,0.07911043614149094,0.006621027830988169,0.029860563576221466,-0.007368779741227627,0.002946346066892147,0.0522003211081028,-0.04665820673108101,0.005119424778968096,0.04743572697043419,-0.07008438557386398,0.04415995255112648,0.03945319354534149,0.010661430656909943,-0.07460026443004608,0.07634008675813675,-0.025958597660064697,-0.038325756788253784,0.010251004248857498,0.05389415845274925,-0.0009881797013804317,-0.06522180885076523,0.02602113038301468,0.020014839246869087,0.05057959631085396,0.00296348356641829,0.026149772107601166,-0.04218113422393799,0.04410453885793686,0.021307598799467087,-0.055248625576496124,-0.05090384557843208,-0.01903405599296093,-0.0392085425555706,-0.044128503650426865,0.0019081613281741738,0.06075713410973549,-0.07667167484760284,-0.07138171046972275,-0.04671885818243027,-0.014604460448026657,-0.006124754901975393,-0.01943032257258892,0.0353178009390831,-0.018585361540317535,0.056832365691661835,-0.033425454050302505,0.05752558633685112,0.042985398322343826,-0.036974549293518066,0.07008033245801926,-0.062033213675022125,-0.03915959969162941,-0.07608181238174438,-0.06665656715631485,-0.03636584058403969,-0.03691402077674866,0.019441641867160797,0.07366818934679031,0.028279868885874748,0.031225070357322693,-0.07895783334970474,-0.0262506864964962,-0.05630982294678688,-0.05069689080119133,0.04962971433997154,0.03923146054148674,0.06364776939153671,-0.03751519322395325,0.0052254959009587765,0.05047154054045677,-0.08074471354484558,0.07920268177986145,-0.05316079407930374,0.07219541072845459,0.051025744527578354,0.06774655729532242,-0.014370233751833439,0.0002617173013277352,0.06638503819704056,0.03840366750955582,-0.0032209132332354784,0.07918515801429749,0.04104195907711983,-0.023661792278289795,0.03235283121466637,0.027982626110315323,-0.0805773213505745,-0.048953697085380554,-0.052338458597660065,-0.031158246099948883,-0.05377290025353432,-0.03208727389574051,0.06292299181222916,0.012141132727265358,0.02499915473163128,-0.03607407957315445,-0.042759545147418976,0.03142312169075012,0.06539653241634369,-0.0627543106675148,-0.013511985540390015,-0.020773401483893394,0.04668201878666878,-0.03189075365662575,-0.03463274985551834,0.05136360973119736,0.04435332491993904,-0.07106011360883713,0.01800486631691456,0.08491931110620499,-0.07226533442735672,0.07179789245128632,-0.01637675240635872,-0.029830321669578552,-0.02888898178935051,0.020682549104094505,-0.02104673907160759,0.059828829020261765,-0.07421684265136719,0.022245390340685844,0.03657838702201843,0.07307584583759308,-0.05467662960290909,0.00952670257538557,-0.030329156666994095,0.010453659109771252,0.00081697414861992,-0.038229525089263916,0.016228554770350456,0.005138736218214035,0.0504438541829586,-0.06353312730789185,-0.04628688097000122,-0.01657215692102909,0.06438721716403961,0.028995927423238754,-0.020602472126483917,0.020622899755835533,0.03876630961894989,0.046835869550704956,0.04872603714466095,0.01701148971915245,0.04977782443165779,0.003596155671402812,-0.020502876490354538,-0.02983880043029785,-0.009269935078918934,0.009297797456383705,-0.008295653387904167,0.02897840552031994,-0.01852276921272278,-0.06007765606045723,0.009235383942723274,-0.004331496078521013,-0.0460871122777462,-0.0781160369515419,0.004778482019901276,0.0628967136144638,-0.011989396996796131,-0.03292412310838699,-0.05526627600193024,0.06803771108388901,-0.028009092435240746,-0.026434071362018585,0.04234321415424347,-0.032391492277383804,0.017126653343439102,-0.04650889337062836,-0.026256272569298744,0.05120730400085449,0.04460351541638374,-0.08366070687770844,-0.0771360844373703,0.04426693171262741,0.032328709959983826]},{"id":"booming-voice","vector":[-0.004731141962110996,-0.06567434966564178,0.005300810560584068,0.008193207904696465,-0.025820273905992508,-0.021009083837270737,0.012663545086979866,-0.08582506328821182,0.03137004002928734,0.007682946976274252,-0.013019068166613579,-0.05701789632439613,-0.004740539006888866,0.057535555213689804,-0.03881767392158508,-0.0656878799200058,-0.05462685227394104,-0.045540377497673035,-0.030543427914381027,0.04678642377257347,0.0019446442602202296,-0.0026030291337519884,0.023203358054161072,-0.04654116556048393,0.0006716980133205652,-0.044801004230976105,-0.039089083671569824,0.0057440767996013165,-0.031077900901436806,0.0043590790592134,0.06690645217895508,-0.06460805237293243,-0.04180294647812843,-0.009196758270263672,0.05646965652704239,0.036656904965639114,-0.042414918541908264,-0.004945057909935713,0.06853041052818298,-0.05682598054409027,-0.00253818416967988,0.023557914420962334,0.06701431423425674,-0.044878847897052765,-0.042958516627550125,0.025220880284905434,-0.06935049593448639,-0.03764209896326065,0.06429379433393478,0.05724911019206047,0.004207210149616003,-0.0748576745390892,0.02565777860581875,-0.025320572778582573,-0.006614877842366695,0.022630933672189713,0.06312043219804764,0.014205058105289936,0.029495153576135635,-0.06362305581569672,-0.05825094133615494,-0.052939433604478836,-0.04848913103342056,0.0368325375020504,-0.06658118218183517,0.018379030749201775,0.09040246903896332,0.023843644186854362,0.09383875131607056,-0.06983496248722076,-0.016023876145482063,-0.06869376450777054,-0.030043892562389374,0.01711186207830906,-0.055335771292448044,-0.04902828484773636,0.03028487041592598,-0.014439603313803673,-0.003309580497443676,0.07336832582950592,-0.0009844128508120775,0.055375684052705765,-0.027402296662330627,-0.05493203550577164,-0.00946817547082901,0.05098417401313782,-0.011243388056755066,0.04842732474207878,-0.06193630397319794,0.057963915169239044,-0.041099272668361664,-0.03949442878365517,-0.08423559367656708,0.010990871116518974,-0.031358566135168076,0.046756092458963394,-0.06684524565935135,0.0007282369188033044,-0.05185914412140846,-0.031533803790807724,-0.07735755294561386,-0.00898735597729683,-0.009450485929846764,0.02350006438791752,0.011812513694167137,0.04080874100327492,-0.01384592242538929,0.03814472630620003,0.08270641416311264,0.009970506653189659,-0.010564854368567467,-0.08016901463270187,0.0246135201305151,-0.04968525469303131,-0.048431847244501114,0.021597174927592278,-0.025607630610466003,0.038567621260881424,-0.0576007217168808,0.07420707494020462,-0.052047982811927795,-0.07641192525625229,0.03317056968808174,-0.05647677183151245,-0.03499405086040497,-0.008307063952088356,-0.01399210561066866,0.05378904566168785,0.05847065523266792,-0.048784948885440826,-0.071799635887146,-0.042552582919597626,0.00037567183608189225,0.034988172352313995,-0.030316423624753952,-0.06356219947338104,0.02048666402697563,-0.04756312072277069,-0.00014117368846200407,-0.0427565798163414,0.023371607065200806,-0.04473087191581726,0.060491640120744705,0.04825859144330025,0.02345281094312668,0.014966335147619247,-0.02693280577659607,0.03509902209043503,-0.0045564682222902775,0.04378833994269371,-0.0022511212155222893,-0.012251767329871655,-0.072480708360672,0.012059584259986877,0.04604655131697655,-0.007643609773367643,0.06456340104341507,-0.061039913445711136,0.002837678650394082,-0.05195220559835434,-0.02152874320745468,0.05809096246957779,0.04389883205294609,0.02388223074376583,0.03923981264233589,0.02851206809282303,-0.010416129603981972,-0.06729456037282944,0.0007276672986336052,0.03992576152086258,-0.008118891157209873,-0.05212714895606041,-0.015836985781788826,0.05088140815496445,-0.02417377196252346,0.06858368963003159,-0.07510311156511307,0.07690802216529846,0.07314780354499817,0.0811523050069809,-0.028729019686579704,0.08387098461389542,0.06149621680378914,-0.001610119710676372,0.02690952830016613,0.044834576547145844,0.04748932644724846,0.057369884103536606,0.07663267850875854,-0.06711000949144363,-0.018844526261091232,0.004981431178748608,-0.02975209802389145,0.005975342355668545,0.0691271647810936,-0.07724162936210632,-0.05582110956311226,0.03440805524587631,-0.036622174084186554,0.07824628800153732,0.027206243947148323,0.026325318962335587,0.04275479540228844,-0.0022039171308279037,-0.016924964264035225,0.0010708365589380264,0.03824969381093979,-0.03658990189433098,0.018619319424033165,0.08775442838668823,0.026749959215521812,-0.029598917812108994,0.06450948864221573,0.019217979162931442,0.031072350218892097,0.0034246048890054226,-0.013602090999484062,0.029590101912617683,0.08524017781019211,0.04778863489627838,0.025698181241750717,-0.06038329377770424,0.004544445313513279,-0.03534555435180664,0.04525531455874443,-0.04869562387466431,-0.004885293077677488,0.012880905531346798,0.00505188200622797,0.033310554921627045,-0.029639864340424538,-0.015860656276345253,0.0645492747426033,-0.0032227071933448315,-0.00970862153917551,0.03795367106795311,0.029801977798342705,0.014315485954284668,0.04081644117832184,-0.053182441741228104,-0.05388963595032692,0.0241171196103096,-0.024395868182182312,-0.034406404942274094,0.021996883675456047,-0.053078316152095795,0.0353785865008831,0.0066568246111273766,0.018931951373815536,-0.03383104130625725,0.03607712686061859,-0.06591115891933441,0.04087548702955246,-0.06920606642961502,-0.008789305575191975,-0.007780746556818485,-0.02321101352572441,-0.04645196348428726,-0.035472121089696884,0.08545520156621933,-0.05752484127879143,-0.02790174074470997,0.009937431663274765,0.005421524867415428,-0.002257802989333868,0.053974494338035583,-0.014114491641521454,0.03129735589027405,-0.04605739191174507,-0.034052398055791855,0.06608302891254425,-0.07510841637849808,0.010930259712040424,-0.030719999223947525,-0.001188951195217669,0.07790197432041168,-0.03641057386994362,0.03935624659061432,-0.04913988709449768,-0.0030648706015199423,0.053617674857378006,0.08625924587249756,0.028422879055142403,-0.037394821643829346,-0.049908921122550964,-0.07983589172363281,-0.07384202629327774,0.04348937049508095,-0.044210270047187805,-0.01134837232530117,-0.032398417592048645,-0.006250771693885326,0.0509016253054142,0.05235980823636055,-0.06454029679298401,-0.06967432051897049,0.07033809274435043,0.0128952506929636,0.030396468937397003,0.057143744081258774,0.0035675563849508762,0.040634430944919586,-0.021456317976117134,0.027385056018829346,-0.022681863978505135,0.029852071776986122,0.02038004994392395,0.04666493088006973,0.005370576400309801,-0.07618054747581482,0.004966504406183958,0.024185940623283386,0.02559630572795868,0.06730388849973679,-0.08289069682359695,-0.06331466883420944,0.028302252292633057,-0.046336036175489426,-0.03208446130156517,-0.04232923686504364,-0.08496633172035217,0.04985339567065239,-0.0023955502547323704,0.019289568066596985,0.06095772609114647,0.02084342949092388,-0.013721737079322338,0.006085981614887714,0.06029576063156128,-0.0012889731442555785,-0.0437471866607666,-0.050490088760852814,-0.05358832702040672,-0.04660911485552788,0.03852727636694908,0.017035454511642456,0.053556736558675766,0.0751650333404541,-0.019621029496192932,0.0424698106944561,0.00757681904360652,-0.0038797229062765837,0.07726414501667023,0.02490008808672428,-0.006756574846804142,0.009089883416891098,-0.0364721305668354,0.035005804151296616,-0.0085588488727808,0.04098048806190491,-0.07917085289955139,0.012209609150886536,0.03131050616502762,-0.03912918642163277,-0.036294009536504745,0.07215762883424759,-0.01879320666193962,-0.060959622263908386,0.038547419011592865,0.017992831766605377,0.035470716655254364,0.04696391895413399,0.03617798537015915,-0.016243886202573776,-0.035842861980199814,0.015103098005056381,-0.0021493039093911648,-0.011130177415907383,-0.028300128877162933,-0.009148196317255497,-0.059393260627985,-0.00020740707986988127,-0.0051803383976221085,-0.04947409778833389,-0.06932393461465836,0.03502151370048523,-0.030663663521409035,-0.009204540401697159,0.039363425225019455,0.03641091287136078,0.06137288361787796,-0.017809895798563957,-0.0513911135494709,0.05986238270998001,0.05153670534491539,-0.03948046267032623,0.0863734632730484,-0.03566567227244377,-0.04116453975439072,-0.03850679099559784,-0.05677288770675659,0.0021297913044691086,-0.021301357075572014,0.0487326942384243,0.07609990984201431,0.05150596797466278,0.059760402888059616,-0.04398372396826744,0.021929068490862846,-0.07210040837526321,-0.04220394790172577,0.06065709888935089,0.001274380716495216,0.0586380697786808,-0.03768746927380562,-0.04055445268750191,0.026539994403719902,-0.05199693143367767,0.07682657241821289,-0.04865246266126633,0.06766350567340851,0.006574619561433792,-0.008422070182859898,-0.026342026889324188,0.010376944206655025,0.0597539097070694,0.016515212133526802,0.04243483021855354,0.07975552976131439,0.0386444628238678,-0.06842360645532608,0.054310597479343414,-0.033137764781713486,-0.051209524273872375,-0.015419530682265759,-0.055756792426109314,-0.023726176470518112,-0.06322231888771057,-0.06700121611356735,0.027680058032274246,-0.009956836700439453,0.015206919051706791,-0.03973625600337982,-0.07140269875526428,0.04414529725909233,0.05532687529921532,-0.07905406504869461,0.01124308630824089,0.006201040931046009,0.012386646121740341,-0.023499278351664543,-0.03448457270860672,0.0154384421184659,0.03899114578962326,-0.06626726686954498,0.049256712198257446,0.08655300736427307,-0.0763479620218277,0.05439840257167816,-0.03494582325220108,0.006404707673937082,-0.016683489084243774,0.013021900318562984,-0.020816221833229065,0.03538893163204193,-0.07507672905921936,-0.011654316447675228,-0.005706304218620062,0.05576571077108383,-0.055831678211688995,-0.007047554478049278,-0.01676282286643982,-0.05070042982697487,0.006561318878084421,-0.01639176532626152,0.038953207433223724,-0.010410414077341557,0.05185038223862648,-0.009076327085494995,-0.04003193601965904,-0.0008510453044436872,0.055431950837373734,0.034795667976140976,0.006695227697491646,-0.010782887227833271,0.025163684040308,0.0676029771566391,0.020706767216324806,0.014039475470781326,0.040371716022491455,-0.06087125092744827,-0.024058571085333824,-0.034035056829452515,0.012352753430604935,-0.0012194743612781167,-0.01961379125714302,-0.01377178356051445,-0.035932864993810654,-0.06837613880634308,0.04724367335438728,-0.036556269973516464,-0.05853103846311569,-0.0769791528582573,-0.014834698289632797,0.07211188971996307,0.02199726365506649,0.07682020962238312,-0.06415408849716187,0.06946079432964325,-0.008376089856028557,-0.006274390500038862,0.059685081243515015,-0.0065923091024160385,0.023623378947377205,-0.03196974843740463,0.0021379818208515644,0.042902201414108276,0.033219486474990845,-0.08109377324581146,-0.07325819879770279,0.04724610224366188,-0.01625877432525158]},{"id":"breakfast-blue-pt.-2","vector":[0.02184704877436161,-0.010597093030810356,0.008626558817923069,0.02193661406636238,-0.045877475291490555,0.060230884701013565,-0.000032237108825938776,-0.04742572084069252,0.011139311827719212,-0.012835672125220299,0.02022165060043335,0.006778099108487368,-0.015952523797750473,0.0021288925781846046,-0.07406169176101685,0.00451224809512496,-0.050945572555065155,-0.060984980314970016,-0.03234310820698738,0.0010929710697382689,0.01309316884726286,-0.04425419121980667,0.024674315005540848,-0.04142221435904503,0.04663312807679176,-0.024877415969967842,-0.019235897809267044,0.012143761850893497,-0.03654662147164345,-0.06290216743946075,0.05644848942756653,-0.0575222410261631,-0.002923839958384633,-0.04580096900463104,0.04007129371166229,-0.025919344276189804,-0.06397542357444763,0.010201969183981419,0.07274303585290909,-0.06064942479133606,-0.04308997094631195,-0.003518784884363413,0.07063621282577515,-0.03811241313815117,-0.00822592992335558,-0.016190167516469955,-0.06489569693803787,0.01297268271446228,0.0405333936214447,0.038688041269779205,0.035885583609342575,-0.025820797309279442,0.013393950648605824,-0.015460650436580181,-0.0020238393917679787,-0.045782603323459625,0.02156832627952099,0.024950549006462097,0.04015297070145607,-0.06513222306966782,-0.07007694244384766,0.003968884237110615,-0.03101762756705284,0.006926521193236113,-0.019688095897436142,-0.016106368973851204,0.08580261468887329,0.028038617223501205,0.08908035606145859,-0.061889469623565674,-0.042020250111818314,-0.007425888907164335,0.011372559703886509,-0.016909578815102577,-0.06539402902126312,-0.062432944774627686,0.035026103258132935,-0.004413480404764414,0.007963006384670734,0.06701254099607468,0.027212070301175117,0.019998950883746147,0.009436303749680519,0.01106561440974474,-0.033566366881132126,0.05033828318119049,0.017205946147441864,0.07591938227415085,-0.07164831459522247,0.061301909387111664,-0.05526720732450485,-0.049950022250413895,-0.025981122627854347,0.02957804873585701,-0.028822874650359154,0.034320611506700516,-0.07055571675300598,-0.00026714400155469775,-0.019587500020861626,-0.06587906181812286,-0.08297379314899445,-0.0055857268162071705,-0.027677861973643303,0.04943307861685753,-0.02406352385878563,-0.0019461469491943717,-0.058910541236400604,0.061354074627161026,0.07938278466463089,0.009029235690832138,-0.023910827934741974,-0.07067310065031052,0.030579904094338417,-0.05397453531622887,0.0012126285582780838,0.056668784469366074,-0.0072992052882909775,0.028047695755958557,-0.07933484017848969,0.034451499581336975,-0.021086344495415688,-0.07581917196512222,0.0012905100593343377,-0.0596681647002697,-0.031846024096012115,0.01880352385342121,-0.027579832822084427,0.057877250015735626,0.044272758066654205,-0.05470418557524681,-0.01880519464612007,-0.03592825308442116,-0.022561747580766678,0.0546962134540081,-0.03073797933757305,-0.07600197941064835,0.018277892842888832,-0.06500405818223953,-0.001958870328962803,0.04395630955696106,0.024207502603530884,-0.06366339325904846,0.04504966363310814,0.07439650595188141,-0.05940355360507965,-0.03216206282377243,0.05775437876582146,0.029324650764465332,-0.014972317963838577,0.02977195382118225,-0.012733210809528828,0.02566542848944664,-0.07992357760667801,-0.04740375652909279,-0.022414078935980797,-0.012065161019563675,0.051464248448610306,-0.05955807864665985,0.06308147311210632,-0.07267051935195923,0.034197840839624405,-0.023330194875597954,0.04963720589876175,-0.04460161179304123,0.03987789899110794,0.01583273522555828,0.01930234208703041,-0.05119748041033745,0.005167416296899319,0.06166473403573036,-0.04599450156092644,0.009900679811835289,-0.0390017069876194,0.07397245615720749,-0.016917984932661057,0.013628242537379265,-0.07068023830652237,0.07845128327608109,0.0803598165512085,0.048287924379110336,-0.04188670963048935,0.08632366359233856,0.018106946721673012,0.01776675507426262,0.022533833980560303,0.04271131008863449,0.043250296264886856,0.04146179184317589,0.05092143639922142,-0.05078404024243355,-0.0045505124144256115,-0.005024928133934736,-0.05493323877453804,-0.003201028797775507,0.07805892080068588,-0.05479446053504944,-0.012806346639990807,-0.012667424976825714,0.021088317036628723,0.08519718050956726,-0.014159047044813633,0.0430021807551384,0.0804641842842102,0.028899269178509712,-0.003327359678223729,-0.041035108268260956,0.026540594175457954,0.00029384135268628597,0.034774113446474075,0.07463601976633072,0.00139569491147995,-0.04878230765461922,0.065337635576725,0.0037555412854999304,0.07779708504676819,-0.020981362089514732,-0.004966904409229755,0.006359878461807966,0.06485678255558014,-0.021770039573311806,0.02589801885187626,-0.02008013054728508,-0.00775069510564208,-0.06978671252727509,0.039532557129859924,-0.0344402939081192,-0.04108312726020813,0.03731082007288933,0.037004563957452774,0.04438042640686035,0.008990027941763401,0.045939765870571136,0.01581224985420704,0.01645960658788681,0.032768312841653824,0.03093397617340088,0.033780843019485474,0.06898479908704758,-0.01080303080379963,0.04760029911994934,-0.06447955965995789,-0.04063723236322403,0.03800775110721588,-0.02615293115377426,-0.01137159951031208,-0.040944986045360565,0.03767819330096245,0.03520967811346054,0.012710965238511562,-0.00218858546577394,0.051608841866254807,-0.067048080265522,0.028407098725438118,-0.06900279968976974,0.006855184677988291,-0.01845754124224186,-0.026888541877269745,-0.05152006819844246,-0.029945211485028267,0.07692059129476547,-0.025031642988324165,0.007372197695076466,-0.00767822889611125,-0.06885862350463867,0.014915432780981064,-0.01826043240725994,0.02746306173503399,-0.05812638998031616,-0.030454307794570923,-0.0396006777882576,0.06473050266504288,-0.06443528831005096,0.05648454651236534,0.0016831528628244996,-0.002470152685418725,0.08552271872758865,-0.028156418353319168,0.013845251873135567,-0.01894562505185604,-0.007136401254683733,0.07912984490394592,0.06114816293120384,0.030982665717601776,0.002816631691530347,-0.038524314761161804,-0.04653036966919899,-0.08169440925121307,-0.006081869825720787,-0.05540642514824867,-0.04406455159187317,-0.0467427633702755,-0.03188135474920273,0.04367506876587868,-0.0037693120539188385,0.007578896824270487,-0.028796812519431114,0.06622569262981415,-0.005849206354469061,0.0382792204618454,0.04424834996461868,0.006103272084146738,0.039344970136880875,-0.0016551654553040862,0.02045898698270321,0.025218484923243523,0.01345119345933199,0.06945177167654037,0.0193362794816494,-0.053495731204748154,-0.08317109197378159,-0.0208517424762249,0.007474835030734539,-0.012387906201183796,0.07757740467786789,-0.07718728482723236,-0.03179031237959862,0.06962112337350845,0.001871995977126062,-0.03690533712506294,-0.04837910830974579,-0.08746267110109329,0.0301786158233881,-0.03490570932626724,-0.02871944196522236,0.029928676784038544,0.036184199154376984,-0.027281049638986588,0.011828800663352013,0.03719670698046684,-0.05775347724556923,-0.021478354930877686,-0.03476456180214882,-0.06362061202526093,0.024748673662543297,0.050047922879457474,-0.03586467355489731,0.07782889157533646,0.08154014497995377,-0.002931385999545455,0.004611528944224119,0.000798085646238178,0.01719854213297367,0.06523203104734421,0.013098969124257565,0.04757000133395195,0.048799168318510056,-0.05436060577630997,0.046286873519420624,0.03304339945316315,0.043944165110588074,-0.0840642973780632,0.06312695890665054,0.005714123602956533,0.005683624651283026,-0.0013703989097848535,0.05519089475274086,-0.025403564795851707,-0.07388176769018173,-0.0014237979194149375,0.04279600828886032,0.03339753299951553,-0.02538374252617359,0.053957656025886536,-0.03305191546678543,0.018128380179405212,0.04204650968313217,-0.0379086397588253,-0.07362549751996994,-0.011038370430469513,-0.056761741638183594,-0.05936935916543007,0.014625921845436096,0.04313555732369423,-0.07365082949399948,-0.07687626779079437,-0.0018581693293526769,0.008361023850739002,0.04897214099764824,0.033525366336107254,0.0013603904517367482,0.005366493482142687,0.053152941167354584,-0.03110772743821144,0.036779601126909256,0.0400087796151638,-0.022949837148189545,0.0655774399638176,-0.026903698220849037,-0.04893392324447632,-0.061714887619018555,-0.06035315617918968,-0.023366905748844147,-0.0028529183473438025,-0.0075827706605196,0.07424155622720718,0.03517349064350128,0.03789011016488075,-0.08325113356113434,-0.05409695580601692,-0.05928557366132736,-0.036669034510850906,0.0691492110490799,0.017960038036108017,0.05521117523312569,0.012497971765697002,-0.04496818408370018,0.06626327335834503,-0.07462002336978912,0.08116668462753296,-0.031231753528118134,0.0748877078294754,0.03394347429275513,0.01049082912504673,-0.010591448284685612,0.015115909278392792,-0.006712491158396006,0.019958017393946648,-0.049630533903837204,0.07481584697961807,0.05101455748081207,-0.04740205407142639,0.032890684902668,0.008678101934492588,-0.05516102537512779,-0.06462378799915314,0.003967457916587591,-0.06303306668996811,-0.07167380303144455,-0.0685906782746315,0.07673730701208115,-0.010205020196735859,0.01655530370771885,0.007407764438539743,-0.006197961512953043,-0.0008636053535155952,0.08248388022184372,-0.05726560950279236,0.04005540907382965,-0.03936411812901497,0.014292786829173565,-0.07677318900823593,-0.007087985519319773,0.0601549856364727,0.024854488670825958,-0.07508499175310135,0.07636505365371704,0.0876045823097229,-0.07637277245521545,0.0675668716430664,-0.04425375908613205,0.0007345146732404828,-0.05821031704545021,0.007088890764862299,0.01037632580846548,0.05285011976957321,-0.07622616738080978,-0.006117837969213724,0.03599800914525986,0.053086988627910614,-0.06979436427354813,0.01576327718794346,-0.05412003770470619,-0.005885370075702667,0.007750765420496464,-0.02124234288930893,0.0338577963411808,-0.05801538750529289,0.03402458131313324,-0.039649322628974915,-0.06027338281273842,0.012360002845525742,0.06193309277296066,0.01602199859917164,-0.03357219323515892,0.02713429369032383,0.03452679514884949,0.003129109274595976,0.021956102922558784,0.03735822066664696,0.07768267393112183,-0.028470922261476517,-0.019005563110113144,-0.05644368752837181,-0.00047457418986596167,-0.00975197646766901,0.0523945651948452,0.000784661213401705,-0.04409852996468544,-0.06350196897983551,-0.014575349166989326,-0.000923532119486481,-0.030360834673047066,-0.04522736743092537,0.012784275226294994,0.06751444190740585,-0.028668738901615143,0.00004518682180787437,-0.057668182998895645,0.0695098489522934,-0.005781201645731926,0.018822092562913895,0.05233050137758255,-0.04045579209923744,0.014207597821950912,0.01936163194477558,-0.03162531182169914,0.04372682049870491,0.033562786877155304,-0.0642656460404396,-0.07502257078886032,0.03089834377169609,0.04245935007929802]},{"id":"breakfast-blues","vector":[0.038838114589452744,-0.029280489310622215,0.0009089073864743114,-0.020794469863176346,-0.029260115697979927,0.016038207337260246,0.0034716958180069923,-0.054801974445581436,0.027736974880099297,0.014811026863753796,0.01850958913564682,-0.0030886961612850428,-0.009408918209373951,-0.011709380894899368,-0.06686830520629883,-0.0037123553920537233,-0.057952772825956345,-0.04800098016858101,-0.04126720875501633,0.02427504025399685,0.0025193567853420973,-0.03184792771935463,0.016643784940242767,-0.03419271111488342,0.031936731189489365,0.015300502069294453,-0.026969291269779205,-0.03284867852926254,-0.04404531419277191,-0.04530315846204758,0.06658408790826797,-0.08509394526481628,-0.018164509907364845,-0.02206161431968212,0.034761518239974976,-0.009715856984257698,-0.04960153251886368,0.049842894077301025,0.07785190641880035,-0.044017281383275986,-0.03355160355567932,-0.02321573905646801,0.04968792200088501,-0.07641521096229553,0.0016099957283586264,0.003017518436536193,-0.05919169634580612,0.0039353324100375175,0.029165256768465042,0.06017566844820976,0.06095173582434654,-0.03255076706409454,0.03148149698972702,-0.04537614434957504,-0.02844628505408764,-0.028384273871779442,0.018235616385936737,0.00968253705650568,0.017055561766028404,-0.07335218042135239,-0.04803894832730293,0.014104492031037807,-0.04236787185072899,0.03677787259221077,0.004160699900239706,0.02025502547621727,0.08469943702220917,-0.019434697926044464,0.08668307960033417,-0.06509160250425339,-0.04499655216932297,-0.04387766495347023,0.005072878208011389,-0.006690738722681999,-0.08022188395261765,-0.05996079742908478,0.010920724831521511,-0.004517263732850552,-0.024064376950263977,0.07612497359514236,0.022195497527718544,0.03869150951504707,0.014643051661550999,0.02159593254327774,-0.046570438891649246,0.0556802898645401,-0.0029930646996945143,0.06098264083266258,-0.07711159437894821,0.07385037839412689,-0.05774911493062973,0.002000646200031042,-0.05667528882622719,0.05995958670973778,-0.010760259814560413,0.02470310404896736,-0.07108917832374573,-0.03651226684451103,-0.038536738604307175,-0.07881303876638412,-0.08203382790088654,-0.02714921347796917,-0.01810595951974392,0.034864701330661774,-0.026157837361097336,-0.007229387294501066,-0.061552610248327255,0.07150458544492722,0.050839610397815704,0.03368567302823067,-0.012070602737367153,-0.078331857919693,0.0037360619753599167,-0.06785926222801208,-0.054123103618621826,0.04772335663437843,-0.013496086932718754,0.037319134920835495,-0.07548945397138596,0.042770132422447205,0.00860122125595808,-0.06590169668197632,0.03752819448709488,-0.05461324006319046,-0.03589063137769699,0.03213179111480713,-0.03704351186752319,0.029898127540946007,0.004313160199671984,-0.060819171369075775,-0.06930810958147049,-0.02342970483005047,-0.02720283903181553,0.05488663539290428,-0.03162011131644249,-0.07399917393922806,0.010515665635466576,-0.08431772142648697,-0.030753575265407562,0.02783116139471531,0.014330330304801464,-0.04563625529408455,0.050189707428216934,0.0436762310564518,-0.0035357859451323748,-0.006153078284114599,0.04437696561217308,0.06579147279262543,-0.014270545914769173,0.03787149861454964,-0.013737107627093792,0.0014570283237844706,-0.06453831493854523,-0.03886142000555992,-0.04017147794365883,0.0027234572917222977,0.04245997965335846,-0.06164034828543663,0.029494132846593857,-0.06742382794618607,0.012340854853391647,-0.022429415956139565,0.035875871777534485,-0.008002136833965778,0.017817772924900055,0.04165394604206085,-0.004575779661536217,-0.028596168383955956,0.015529266558587551,0.057578958570957184,-0.039563145488500595,-0.0031278496608138084,0.009043796919286251,0.055027954280376434,-0.0033796075731515884,0.015281347557902336,-0.05525827407836914,0.08000925183296204,0.08056345582008362,0.07828597724437714,-0.041923850774765015,0.08633364737033844,0.05485082045197487,0.007173315156251192,0.04877933859825134,0.06219368800520897,0.028145572170615196,0.05500318109989166,0.041525088250637054,-0.06307236850261688,0.0009587461827322841,0.003823717823252082,-0.05402037128806114,-0.016838276758790016,0.0571589395403862,-0.06051263585686684,-0.039261218160390854,0.01602819189429283,0.014432310126721859,0.08808421343564987,-0.014837929047644138,0.02777950093150139,0.037980370223522186,0.018533647060394287,-0.030897192656993866,-0.04609518125653267,0.045964278280735016,-0.01600981131196022,0.02525879442691803,0.08687733113765717,0.01123063825070858,-0.015533068217337132,0.06121233105659485,0.006686934269964695,0.08186591416597366,0.016704417765140533,-0.018226543441414833,-0.0002501810959074646,0.05039057508111,-0.001857886090874672,0.045565374195575714,-0.027266371995210648,-0.005946756340563297,-0.061601098626852036,0.06468373537063599,-0.011062686331570148,-0.0072641693986952305,0.03123452700674534,0.019911568611860275,0.03298760950565338,0.0130470497533679,0.04645457863807678,0.0026219456922262907,0.01770145632326603,0.015456573106348515,0.06824030727148056,0.034816257655620575,0.07823316007852554,-0.020354177802801132,0.009482643567025661,-0.0681551918387413,-0.011296765878796577,0.011728586629033089,-0.02047053351998329,0.009537925943732262,-0.044210080057382584,0.055690422654151917,0.053997207432985306,0.04430854693055153,-0.004145846236497164,0.03939693793654442,-0.06527131050825119,0.026362312957644463,-0.06990773975849152,0.005081532057374716,-0.04566645994782448,-0.0235353522002697,-0.04364367201924324,-0.016518818214535713,0.08275020122528076,-0.02368108555674553,0.00424876157194376,-0.012298239395022392,-0.011438226327300072,-0.009236156940460205,-0.01912083849310875,0.0246986523270607,-0.026749515905976295,-0.015385942533612251,-0.06248011440038681,0.01259311381727457,-0.059722691774368286,0.042439818382263184,-0.020540276542305946,0.0018057948909699917,0.0692390725016594,-0.03414500504732132,0.015105519443750381,-0.024701779708266258,0.0040152426809072495,0.06532979011535645,0.06114432215690613,0.060430873185396194,0.0072111692279577255,-0.05010591447353363,-0.06268610805273056,-0.08994535356760025,0.006196913775056601,-0.05851209908723831,-0.05563042685389519,-0.030888469889760017,-0.02381592057645321,0.06347212940454483,0.019647518172860146,-0.03194190561771393,-0.027950279414653778,0.05766260251402855,0.010089993476867676,0.017691610381007195,0.03608027473092079,-0.012128829956054688,0.04916020855307579,-0.024370763450860977,0.0320856049656868,0.008763466030359268,0.05202436447143555,0.02441374771296978,-0.026017554104328156,-0.02670864574611187,-0.08491896837949753,0.004662523046135902,0.03015177696943283,0.015206079930067062,0.07718589156866074,-0.08029147237539291,-0.05780487507581711,0.060572654008865356,-0.00564377149567008,-0.02827865444123745,-0.043096449226140976,-0.08991875499486923,0.05451463162899017,-0.05216113105416298,-0.017870096489787102,0.06976437568664551,0.021953482180833817,-0.032956141978502274,-0.01837477646768093,0.05374237522482872,-0.04464132711291313,-0.03343403339385986,-0.025983629748225212,-0.06317323446273804,-0.011945921927690506,0.03907417133450508,0.006502630654722452,0.07890894263982773,0.09325876832008362,0.009832927957177162,0.013443169184029102,0.02772476151585579,-0.008539974689483643,0.057180438190698624,-0.010115867480635643,0.036363061517477036,0.0015878534177318215,-0.06642050296068192,0.052788276225328445,0.02223491109907627,0.04217779263854027,-0.09296970814466476,0.06221678480505943,-0.004540868569165468,-0.01679394021630287,0.010576214641332626,0.04685218632221222,-0.04112257435917854,-0.07200246304273605,0.010322303511202335,0.008008725941181183,0.034768037497997284,-0.02487337402999401,0.03147943690419197,0.0023786104284226894,0.0027508209459483624,0.029475772753357887,-0.022013990208506584,-0.06444858759641647,-0.01564980112016201,-0.051195088773965836,-0.06974615156650543,-0.006405538879334927,0.0559588260948658,-0.055749837309122086,-0.07798022031784058,-0.0058500152081251144,-0.006936667487025261,0.0256422720849514,-0.005703659728169441,0.014512560330331326,-0.014743095263838768,0.01827564649283886,-0.01497059129178524,0.038382455706596375,0.0505138598382473,-0.03534133732318878,0.07145091891288757,-0.0566275529563427,-0.05214320123195648,-0.041822053492069244,-0.0711996853351593,-0.038171153515577316,-0.0007263929001055658,0.03268152475357056,0.07361952215433121,0.03990937024354935,0.0013369248481467366,-0.0741795152425766,-0.031042128801345825,-0.0676620751619339,-0.015940450131893158,0.05017310753464699,0.00553664518520236,0.04941084235906601,0.04892081394791603,-0.04815045744180679,0.07137228548526764,-0.0695490762591362,0.08184932917356491,-0.049332231283187866,0.08116865903139114,0.06050236523151398,0.024331161752343178,0.0007404412026517093,0.016002321615815163,0.04029493406414986,0.044520970433950424,-0.009047441184520721,0.07677578181028366,0.052859507501125336,-0.05469962954521179,0.021306876093149185,0.01675645262002945,-0.06707042455673218,-0.0648428201675415,-0.05816946551203728,-0.03109847381711006,-0.05877126753330231,-0.05446372553706169,0.06359898298978806,-0.02266523241996765,0.03018336184322834,0.01580089144408703,-0.0502142496407032,0.03141375258564949,0.06983054429292679,-0.06452042609453201,0.05045377090573311,-0.04967367276549339,0.012178170494735241,-0.0667709931731224,-0.005416371859610081,0.052245043218135834,0.028563611209392548,-0.06841088831424713,0.044856294989585876,0.08721446245908737,-0.08614233881235123,0.06811192631721497,-0.03471122682094574,0.007695361506193876,-0.06875042617321014,0.0395473837852478,-0.00903500895947218,0.03595922887325287,-0.07534662634134293,-0.026852911338210106,0.03701074421405792,0.05605015531182289,-0.03166521340608597,0.025289323180913925,-0.05415814742445946,-0.04557251185178757,0.006391045171767473,-0.015952151268720627,0.047253768891096115,-0.06534925103187561,0.04053240641951561,-0.06257015466690063,-0.05956702679395676,0.008790424093604088,0.06151457875967026,0.012114496901631355,-0.03550928458571434,0.035778094083070755,0.03051329031586647,0.02559874951839447,0.051798127591609955,0.03265677019953728,0.06182529404759407,-0.02477271482348442,-0.04893957078456879,-0.05725710093975067,0.019091840833425522,-0.013772315345704556,0.0075783999636769295,0.012592222541570663,-0.047573816031217575,-0.07119591534137726,0.029957562685012817,0.00007462796929758042,-0.045349158346652985,-0.05379747971892357,-0.009883108548820019,0.08524415642023087,-0.04079395905137062,0.01897590048611164,-0.045804549008607864,0.06756093353033066,-0.013773113489151001,0.0005588466301560402,0.05188475176692009,-0.02496083825826645,-0.0041975416243076324,-0.0031302226707339287,-0.0012904141331091523,0.034149959683418274,0.04960126429796219,-0.0803077295422554,-0.06452314555644989,0.032817479223012924,0.030472146347165108]},{"id":"catch-up","vector":[-0.040760207921266556,-0.06564182043075562,-0.000814995844848454,0.036610040813684464,-0.015315264463424683,0.04297048971056938,0.014977782964706421,-0.07179079949855804,-0.006601574830710888,0.02804650366306305,0.07150473445653915,0.020990872755646706,-0.02131004072725773,-0.01012442260980606,-0.06633813679218292,-0.003955136053264141,-0.05774244666099548,-0.04936368018388748,-0.010561361908912659,0.05086662247776985,0.0034110196866095066,0.00766406673938036,0.018353063613176346,-0.02301180548965931,0.0008872649050317705,-0.04856667295098305,-0.035279322415590286,0.009848910383880138,-0.07133159786462784,-0.04618983343243599,0.0680864080786705,-0.023042405024170876,-0.0404898039996624,-0.04751710221171379,0.04941680654883385,0.019284911453723907,-0.05475015938282013,0.05513010919094086,0.03517761081457138,-0.025704726576805115,-0.002465457422658801,0.010743857361376286,0.07087045907974243,-0.01859200745820999,-0.036181628704071045,-0.008637651801109314,-0.06922776252031326,0.005691710393875837,0.058010317385196686,0.057085733860731125,0.041847337037324905,-0.049681443721055984,0.03088899701833725,-0.018716704100370407,0.017607368528842926,-0.040152791887521744,0.037712447345256805,0.02384125627577305,0.04424193128943443,-0.07501372694969177,-0.044544875621795654,-0.03331970050930977,-0.04792184382677078,-0.0035249567590653896,-0.03736318275332451,0.01972462236881256,0.08227241784334183,0.02151014283299446,0.08706223219633102,-0.056532979011535645,-0.023822098970413208,-0.0513094887137413,0.01195471454411745,-0.008779631927609444,-0.0496777780354023,-0.0709574967622757,0.014527763240039349,-0.01460288930684328,-0.04015367105603218,0.06839115172624588,0.018110301345586777,0.04585443064570427,-0.023671427741646767,-0.009225721471011639,-0.047763239592313766,0.049488313496112823,-0.025793975219130516,0.07409048080444336,-0.049543943256139755,0.04875403642654419,-0.019261565059423447,-0.004457497037947178,0.002251445082947612,0.04249516874551773,-0.051496174186468124,0.0678403303027153,-0.07047247886657715,0.00306127592921257,-0.033235013484954834,-0.06385211646556854,-0.07305967807769775,0.009592031128704548,-0.028472566977143288,0.0032048544380813837,-0.01036113128066063,0.03855444863438606,-0.060992538928985596,0.06012986600399017,0.040909115225076675,0.0019438894232735038,-0.045798707753419876,-0.06890477240085602,0.005706345662474632,-0.03243536502122879,-0.03097938373684883,0.031594857573509216,0.023114120587706566,0.0006501756724901497,-0.07259228080511093,0.055860500782728195,-0.025957925245165825,-0.0710577517747879,0.024105077609419823,-0.050395816564559937,-0.037289056926965714,0.0040577431209385395,-0.04189068824052811,0.04466943070292473,0.018884142860770226,-0.06319795548915863,-0.049575842916965485,-0.04986304044723511,-0.014714880846440792,0.050226934254169464,-0.03401078283786774,-0.07265061885118484,-0.022664058953523636,-0.05229704827070236,-0.044753581285476685,0.05447663366794586,-0.01919756829738617,-0.07000046968460083,0.05420621857047081,0.0697389543056488,-0.05326765030622482,0.0030747565906494856,0.0498640350997448,0.027099551633000374,0.006054866127669811,0.053055208176374435,-0.004777848720550537,-0.0011492123594507575,-0.06373663991689682,-0.040970757603645325,-0.014106778427958488,-0.04542043060064316,0.05631237104535103,-0.0038129868917167187,0.05922270193696022,-0.07761827111244202,-0.027162332087755203,-0.012825929559767246,0.052659206092357635,-0.03807348012924194,0.012169879861176014,0.019795697182416916,-0.024473886936903,-0.07354646921157837,-0.022637633606791496,0.06481984257698059,-0.057732921093702316,-0.03822559863328934,-0.0018613757565617561,0.05547142028808594,-0.0212433822453022,0.05110185593366623,-0.07184971868991852,0.07759565114974976,0.07318859547376633,0.07562092691659927,-0.007001898251473904,0.06935174763202667,0.052017033100128174,-0.007361681666225195,0.02079051360487938,0.047657668590545654,0.04180767387151718,0.05508626252412796,0.025945274159312248,-0.03869108855724335,-0.028157252818346024,0.05213414505124092,-0.031175727024674416,0.02551870606839657,0.08310689777135849,-0.06720885634422302,-0.015394875779747963,0.03823980689048767,0.008352670818567276,0.07802138477563858,0.004222302697598934,0.027226166799664497,0.04088791832327843,0.021107245236635208,-0.011327065527439117,-0.027772080153226852,0.019545797258615494,-0.005612526088953018,0.025339044630527496,0.07993899285793304,0.015480594709515572,-0.016018936410546303,0.07344087213277817,-0.03847794979810715,0.07079712301492691,-0.016168780624866486,-0.03485940769314766,0.008754711598157883,0.061882372945547104,-0.005261121317744255,0.050255823880434036,-0.038123928010463715,-0.0013952216831967235,-0.07439864426851273,0.04942024499177933,-0.057251811027526855,-0.032983288168907166,0.00923185981810093,0.007422678172588348,0.010004250332713127,0.007398667745292187,0.033615175634622574,0.04834197834134102,0.00822727382183075,0.0429692268371582,0.05188728868961334,0.05229442939162254,0.07487710565328598,0.015674883499741554,0.033981360495090485,-0.02970612421631813,-0.025415297597646713,0.0011720898328348994,-0.02282315492630005,-0.004245046526193619,-0.04934263229370117,0.029253600165247917,0.04451560974121094,0.011419491842389107,-0.029850663617253304,0.05020628124475479,-0.06766944378614426,0.05512144789099693,-0.06757847219705582,-0.0014570059720426798,0.0515579991042614,-0.0011625986080616713,-0.0627041682600975,-0.02948824129998684,0.0764385238289833,-0.05650215595960617,-0.02538684755563736,0.008280162699520588,-0.031891051679849625,-0.009468589909374714,0.04392978176474571,0.0215388722717762,-0.02821812406182289,-0.012099521234631538,-0.019649669528007507,0.05929288640618324,-0.03480362892150879,0.013433948159217834,0.009328198619186878,-0.0397128127515316,0.07136692851781845,-0.0269175935536623,0.047410037368535995,-0.027105245739221573,0.028294628486037254,0.04858391731977463,0.07761845737695694,0.025071628391742706,0.005550564266741276,-0.0665474385023117,-0.07097698748111725,-0.08642763644456863,0.017508894205093384,-0.02175191417336464,-0.04475000128149986,-0.02139844186604023,-0.005045089405030012,0.05316058173775673,0.03395089879631996,0.03574654459953308,-0.0607026144862175,0.06499724090099335,0.04409485682845116,0.04052231088280678,0.034611620008945465,-0.03518682345747948,0.06482085585594177,0.007116787135601044,0.03760211169719696,0.0036901705898344517,-0.025278694927692413,0.06454672664403915,0.020902175456285477,0.004562038462609053,-0.07524148374795914,-0.0034099167678505182,0.049254946410655975,0.01652534492313862,0.05479229986667633,-0.0734526738524437,-0.043426264077425,0.07058922201395035,0.006838150788098574,-0.05437090992927551,-0.05101500824093819,-0.0781969204545021,0.06992503255605698,-0.028702063485980034,0.018336990848183632,0.023046085610985756,0.02195923402905464,-0.022666560485959053,-0.012439976446330547,0.03314867988228798,-0.054374855011701584,-0.03943217173218727,-0.04065871238708496,-0.07181675732135773,-0.04062812030315399,0.034249331802129745,0.005289265885949135,0.06658398360013962,0.07442459464073181,0.02468813955783844,0.016781937330961227,-0.02624513953924179,0.014909128658473492,0.0633297711610794,-0.0032792864367365837,0.05887053534388542,0.03686011582612991,-0.012732247821986675,0.05897248908877373,0.006220521405339241,0.04880835860967636,-0.08313380926847458,0.03816995769739151,0.016325755044817924,0.01543993130326271,-0.016097810119390488,0.043579019606113434,-0.029524678364396095,-0.07853226363658905,0.03674842417240143,0.01304758619517088,0.03725537657737732,0.006523757707327604,0.029851270839571953,-0.04670683294534683,0.03886130079627037,0.040387384593486786,-0.045423343777656555,-0.07075709849596024,-0.035404086112976074,-0.03351234272122383,-0.07256796956062317,0.005544211715459824,-0.016285965219140053,-0.07383157312870026,-0.07286830991506577,0.00361760426312685,-0.03239556401968002,0.03767210245132446,0.005518515594303608,0.055340476334095,-0.0235721617937088,0.04627801850438118,-0.05494391918182373,0.02328351140022278,0.0409303680062294,-0.025135912001132965,0.05293774977326393,-0.02718660980463028,-0.038629669696092606,-0.05289846286177635,-0.05806498974561691,-0.0499575100839138,-0.008471156470477581,0.0003031780943274498,0.06405684351921082,0.04426044225692749,0.040762048214673996,-0.04182170331478119,-0.04717179015278816,-0.03796329349279404,-0.029330642893910408,0.06431188434362411,-0.013084719888865948,0.08283138275146484,-0.018319666385650635,-0.010524095967411995,0.06547950208187103,-0.07638344913721085,0.07528136670589447,-0.026304343715310097,0.07260629534721375,0.009103581309318542,0.027707384899258614,-0.025702307000756264,0.004941087681800127,-0.007706733886152506,0.03674259036779404,-0.022352367639541626,0.06935381889343262,0.03232041746377945,-0.03804228827357292,0.028544455766677856,0.019327763468027115,-0.059926342219114304,-0.0382397286593914,-0.043903179466724396,-0.02077784202992916,-0.06232631951570511,-0.07028832286596298,0.06450372189283371,-0.04543851315975189,0.015434328466653824,-0.027888454496860504,-0.050090331584215164,0.0669933557510376,0.07516825199127197,-0.08654829114675522,-0.033567313104867935,-0.03931218013167381,0.05142263323068619,-0.05343654751777649,-0.0225883349776268,0.029285509139299393,0.04955029860138893,-0.051143813878297806,0.0410241074860096,0.08269201964139938,-0.05990730971097946,0.07254482805728912,-0.007920905947685242,0.01622319221496582,-0.04436340183019638,0.05120006576180458,0.005358779802918434,0.028301768004894257,-0.0747564509510994,0.01728590950369835,0.049264468252658844,0.059805113822221756,-0.055066511034965515,0.003785043489187956,-0.03719954937696457,0.022131746634840965,0.005449802614748478,-0.04394743591547012,0.03734735772013664,-0.021698525175452232,0.041253846138715744,-0.034832656383514404,-0.053294163197278976,0.025098858401179314,0.06209142133593559,0.0038331779651343822,-0.014695602469146252,0.015123208053410053,0.05358702316880226,0.08073491603136063,0.030432095751166344,0.027392635121941566,0.06890175491571426,-0.004412576090544462,-0.05186592414975166,-0.052216049283742905,-0.010263354517519474,-0.021213389933109283,-0.019495481625199318,0.04858408123254776,-0.06706639379262924,-0.06223466619849205,0.037058278918266296,0.014593963511288166,-0.05110599473118782,-0.0596235953271389,0.005439733155071735,0.07594479620456696,0.013998025096952915,0.01696845144033432,-0.05867979675531387,0.07394016534090042,-0.04489618167281151,0.057709675282239914,0.06959974020719528,-0.05224701762199402,0.016558337956666946,-0.04223933070898056,-0.023501018062233925,0.013206024654209614,0.04021032527089119,-0.06886707246303558,-0.07332532107830048,0.03777557611465454,-0.0007505668909288943]},{"id":"celestial-stare","vector":[0.014625784941017628,-0.0119618009775877,-0.033212143927812576,0.006066849455237389,-0.048376306891441345,-0.005065102130174637,0.03375618904829025,-0.056847356259822845,0.046406544744968414,-0.004033140372484922,0.026593124493956566,-0.05114329978823662,0.008945832028985023,0.0731557309627533,-0.06323646754026413,-0.06722620129585266,-0.010158272460103035,-0.05505876615643501,-0.016803758218884468,0.028293047100305557,0.0022684538271278143,-0.013395891524851322,-0.004538501612842083,-0.02840357832610607,-0.025359777733683586,-0.012974116951227188,0.010145437903702259,-0.017137300223112106,-0.06575724482536316,-0.03039717487990856,0.04410700127482414,-0.0084299361333251,-0.08008387684822083,-0.0013346293708309531,0.05136172100901604,0.03410343453288078,-0.05735033378005028,0.009590600617229939,0.08276491612195969,-0.052629027515649796,-0.005746681243181229,0.011374196968972683,0.06734301149845123,-0.008131441660225391,-0.034291643649339676,0.012356216087937355,-0.059023819863796234,-0.01492550503462553,0.03267626091837883,0.04030708596110344,0.023026268929243088,-0.08849646151065826,0.017091142013669014,-0.01711842603981495,0.01581345684826374,-0.0066340621560812,0.09316913783550262,0.011449899524450302,0.04291967302560806,-0.037350501865148544,-0.07852761447429657,-0.018813012167811394,-0.0553656630218029,0.024791603907942772,-0.03270917758345604,-0.01866426318883896,0.09029317647218704,0.0015046638436615467,0.09935873746871948,-0.028312496840953827,-0.012103959918022156,-0.02566480077803135,-0.03652616962790489,0.044083405286073685,-0.038317084312438965,-0.05208742618560791,0.025525065138936043,-0.011285519227385521,0.011757574044167995,0.08238432556390762,0.01944733038544655,0.060720887035131454,-0.0008832895546220243,-0.02910572849214077,-0.06635265797376633,0.06109875440597534,0.020781856030225754,0.05508699640631676,-0.057031869888305664,0.0625588521361351,-0.029200410470366478,-0.053275302052497864,-0.08542469143867493,0.043371837586164474,-0.03963629901409149,0.016823528334498405,-0.06605738401412964,-0.014566783793270588,-0.05630290135741234,-0.03990704566240311,-0.07331991195678711,0.025655440986156464,0.04093671217560768,0.029293371364474297,-0.016816213726997375,0.046556588262319565,-0.06290727853775024,0.039376311004161835,0.07902675122022629,0.03476676344871521,-0.02163282409310341,-0.05773070827126503,0.027928968891501427,-0.06264546513557434,-0.04808696359395981,0.02051229029893875,0.002254967810586095,0.052824899554252625,-0.056010641157627106,0.04558577761054039,-0.015329406596720219,-0.07899627834558487,0.039490971714258194,-0.06789780408143997,-0.02808399312198162,-0.020521098747849464,-0.04154662787914276,0.042168039828538895,0.05513563007116318,-0.06826366484165192,-0.06750988215208054,-0.03138371556997299,-0.040116336196660995,0.00711398059502244,-0.03379285708069801,-0.07436205446720123,0.03637012466788292,-0.04531310498714447,-0.030738117173314095,0.006308062467724085,-0.008972175419330597,-0.06860208511352539,0.056800033897161484,0.07699539512395859,0.03277605026960373,0.03127599507570267,0.004184823017567396,-0.01890411600470543,0.037201277911663055,0.05579281598329544,-0.01629512943327427,0.004513781517744064,-0.07341645658016205,0.023323694244027138,-0.03830048441886902,-0.007636364549398422,0.06266286224126816,-0.06424596160650253,-0.028181081637740135,-0.06249355524778366,-0.023901496082544327,0.00919429399073124,0.048087190836668015,0.013283674605190754,-0.0038250901270657778,0.03661685809493065,-0.03989216685295105,-0.0621844045817852,0.0005041852709837258,0.035489294677972794,-0.05064650624990463,-0.009780661202967167,0.03129138797521591,0.03559517487883568,-0.039608340710401535,0.003043541917577386,-0.04840565100312233,0.05677293613553047,0.07076612114906311,0.06731780618429184,-0.01382866594940424,0.08541760593652725,0.06419649720191956,0.003995717968791723,0.05276358500123024,0.06440017372369766,-0.006058353465050459,0.05422025918960571,0.07933194935321808,-0.05749707296490669,-0.028446177020668983,0.0047849914990365505,-0.016568699851632118,0.02518892101943493,0.07055424898862839,-0.07332607358694077,-0.014736827462911606,0.03561867028474808,-0.005850917659699917,0.08914324641227722,-0.018492460250854492,0.04423733055591583,0.05135854706168175,-0.022450653836131096,-0.03471165895462036,-0.026805536821484566,0.042639706283807755,-0.05543758347630501,0.025086306035518646,0.05800586938858032,0.013062349520623684,-0.020856516435742378,0.053286582231521606,0.034157294780015945,0.06586115062236786,-0.03576534986495972,-0.03480936586856842,0.0110453637316823,0.06399823725223541,-0.01175510510802269,0.033124517649412155,-0.017946206033229828,0.008121044375002384,-0.03623406961560249,0.050750162452459335,-0.05802376568317413,-0.03280048072338104,0.004339247941970825,0.02041046880185604,0.030576160177588463,-0.025040537118911743,-0.00047079790965653956,0.035451021045446396,0.013799354434013367,-0.01560963410884142,0.03398311138153076,0.03404708206653595,0.05884547159075737,0.052918508648872375,-0.01709630712866783,-0.043354738503694534,-0.014815707691013813,-0.041840508580207825,-0.05334067344665527,0.005808353424072266,-0.028869468718767166,0.03152352571487427,-0.017250288277864456,0.023581979796290398,-0.058327607810497284,0.06742549687623978,-0.0547521747648716,-0.013277042657136917,-0.06605969369411469,0.0040426719933748245,-0.017795199528336525,-0.030500968918204308,-0.017795639112591743,-0.022578781470656395,0.0686318501830101,-0.00639023631811142,-0.012685735709965229,0.01619601994752884,-0.020603826269507408,-0.01852995902299881,-0.011353528127074242,0.034069906920194626,0.015472501516342163,-0.0023841839283704758,-0.04645441100001335,0.05512244626879692,-0.0631905123591423,0.019034307450056076,-0.013730172999203205,0.013030720874667168,0.08640793710947037,-0.026582913473248482,0.02951069548726082,-0.0505535714328289,-0.01437524426728487,0.05518623813986778,0.0887586697936058,0.03159778192639351,0.0018821714911609888,-0.026088587939739227,-0.05887122079730034,-0.07885904610157013,0.030374882742762566,-0.03281471133232117,-0.0230423491448164,-0.03679850324988365,0.008998340927064419,0.06974902004003525,0.001841002027504146,-0.02787824347615242,-0.04806569591164589,0.06793908774852753,-0.0028746393509209156,0.07363394647836685,0.04572122544050217,0.043310221284627914,0.05790715664625168,-0.014472512528300285,0.044606324285268784,0.019743066281080246,0.016669822856783867,0.034478798508644104,0.04917140305042267,0.01737062819302082,-0.08188118040561676,-0.02565479837357998,0.018137451261281967,0.04454324394464493,0.061124224215745926,-0.0663846805691719,-0.049774982035160065,0.04882040247321129,-0.035757116973400116,-0.02575608342885971,-0.040142081677913666,-0.06478448957204819,0.03823496028780937,-0.05685555189847946,0.017914142459630966,0.04869284853339195,-0.004646967630833387,-0.04539324715733528,-0.003424394177272916,0.06356175243854523,-0.04424670338630676,-0.0076642585918307304,-0.040399741381406784,-0.08172821253538132,-0.04586024209856987,0.05405339226126671,-0.03020475059747696,0.0712718814611435,0.0875476747751236,0.000046825480239931494,0.02509794384241104,0.018474919721484184,-0.0012812375789508224,0.09184533357620239,-0.032879363745450974,-0.03452368453145027,0.026383670046925545,-0.04644076153635979,0.05993174389004707,-0.027276204898953438,0.052632372826337814,-0.07868041843175888,0.04638535529375076,0.005893531255424023,-0.0019914726726710796,0.021288082003593445,0.045531634241342545,-0.06720595061779022,-0.07189932465553284,-0.01710926555097103,0.01962745375931263,0.04105100780725479,0.03633402660489082,0.05634484440088272,-0.03272519260644913,0.010653125122189522,0.019957121461629868,-0.04033700004220009,-0.004864388145506382,-0.037771325558423996,-0.032335083931684494,-0.05467524752020836,-0.017675692215561867,0.021032124757766724,-0.03437591716647148,-0.06926057487726212,0.010667125694453716,0.0005466713919304311,0.015076261013746262,0.003922879230231047,0.05367417633533478,0.06370913237333298,0.04491910710930824,-0.05665978789329529,0.04390555992722511,0.04409502074122429,-0.009928546845912933,0.07231888175010681,-0.06441627442836761,-0.053258560597896576,0.0072888717986643314,-0.0672277957201004,-0.03654248267412186,-0.026176240295171738,-0.01054617203772068,0.06815602630376816,0.046772610396146774,0.05653787776827812,-0.05795783922076225,-0.06837809085845947,-0.07517808675765991,-0.030718253925442696,0.0723658949136734,0.013353628106415272,0.04942835122346878,-0.03830382600426674,-0.006519997026771307,0.038692474365234375,-0.04552657529711723,0.08298520743846893,-0.051849011331796646,0.07572785019874573,-0.04316399618983269,-0.019641242921352386,-0.00027118143043480814,-0.019223079085350037,0.043422311544418335,0.0414094515144825,-0.028074495494365692,0.07628506422042847,0.059771645814180374,0.00007388790982076898,0.038428544998168945,-0.0545889250934124,-0.06559612601995468,-0.0699664056301117,-0.0773576945066452,-0.014021011069417,-0.05940409377217293,-0.044949959963560104,0.00837653037160635,-0.044672898948192596,0.012686560861766338,0.008966128341853619,-0.0626627504825592,0.03485614061355591,0.07664381712675095,-0.06283292919397354,0.022025741636753082,0.010467863641679287,0.02416212297976017,-0.017910033464431763,-0.0439380519092083,0.024147985503077507,0.03406877443194389,-0.073112852871418,0.07049522548913956,0.08900601416826248,-0.04982480779290199,0.05488768219947815,-0.02803960256278515,0.06041988730430603,-0.045001909136772156,0.0032159853726625443,0.024312663823366165,-0.013478913344442844,-0.07613518089056015,-0.010682727210223675,0.020447470247745514,0.04572002962231636,-0.052022550255060196,0.01960541494190693,-0.03044242039322853,-0.058171141892671585,0.05240863934159279,0.014682596549391747,0.03220774605870247,-0.06306590139865875,0.049331437796354294,-0.022097842767834663,-0.04536107927560806,0.045876551419496536,0.04932559281587601,0.004124068189412355,0.008512024767696857,0.005414484068751335,0.038908958435058594,0.037887297570705414,-0.06984475255012512,0.012070026248693466,0.05530594289302826,-0.04804046452045441,-0.015608828514814377,-0.011201378889381886,0.0010979562066495419,-0.01470763236284256,0.02101282775402069,0.023946143686771393,-0.03507537767291069,-0.07668918371200562,0.004373793490231037,0.03784741088747978,-0.043057508766651154,-0.05162828415632248,0.020999252796173096,0.06911390274763107,-0.013469929806888103,0.08228112757205963,-0.06997928768396378,0.07350501418113708,0.021760158240795135,-0.014562798663973808,0.038482666015625,-0.024727029725909233,0.02394847199320793,-0.016218116506934166,-0.012297374196350574,0.072938933968544,0.03492381051182747,-0.06340744346380234,-0.06800441443920135,0.031212035566568375,0.016159391030669212]},{"id":"closets","vector":[0.03299196437001228,-0.04841167852282524,-0.029024753719568253,0.023074666038155556,-0.01830475777387619,0.006012119352817535,0.02246299386024475,-0.05589728429913521,0.00612541101872921,0.018521897494792938,0.0000899539008969441,0.0036547428462654352,-0.03090241178870201,0.008414354175329208,-0.06990832090377808,0.030274510383605957,0.027335328981280327,-0.07293255627155304,-0.04402574896812439,0.06111392006278038,-0.010633978992700577,-0.03549300879240036,0.018410926684737206,-0.03912004455924034,0.055633388459682465,-0.04553084075450897,0.017579859122633934,-0.02534417062997818,-0.02945101074874401,-0.028455672785639763,0.03404910862445831,-0.043857090175151825,-0.05835038051009178,-0.043989021331071854,0.03654533624649048,0.010381024330854416,-0.05129199102520943,0.024897398427128792,0.05883319303393364,-0.02468300610780716,-0.022216536104679108,0.008143357001245022,0.0734601765871048,-0.03221923112869263,-0.006952473893761635,0.02752532996237278,-0.03140502795577049,-0.015273493714630604,0.015278811566531658,0.0392717570066452,-0.04414111748337746,-0.03353162854909897,0.01947128027677536,-0.05599634349346161,0.006951022893190384,-0.06467319279909134,0.06368150562047958,0.014676910825073719,0.008541282266378403,-0.006992742419242859,-0.07570604234933853,-0.008607255294919014,-0.045155253261327744,0.043582987040281296,0.0019818092696368694,0.03502276912331581,0.0888337716460228,-0.0047335452400147915,0.086525097489357,-0.07346522808074951,-0.042529527097940445,-0.05526486784219742,-0.022146141156554222,0.00896411295980215,-0.03819580376148224,-0.05618635565042496,0.019170179963111877,-0.037982478737831116,0.0010698711266741157,0.06671182811260223,0.0023734853602945805,0.023852050304412842,0.03326539695262909,-0.0006638449849560857,-0.019837068393826485,0.044207002967596054,0.02318543940782547,0.05756668001413345,-0.07271924614906311,0.026917459443211555,-0.015062173828482628,0.022262388840317726,-0.0005573006346821785,0.03872334212064743,-0.010835554450750351,0.029259484261274338,-0.07424360513687134,-0.04380662739276886,-0.03540491312742233,-0.06547310948371887,-0.054992448538541794,0.01285651046782732,-0.009876921772956848,0.02452080510556698,-0.045418065041303635,0.026990780606865883,-0.06905069947242737,0.057477787137031555,0.03626643121242523,0.04544731229543686,-0.028622396290302277,-0.05821055918931961,0.012035766616463661,-0.06108995899558067,-0.03811930492520332,0.03467661514878273,0.042766571044921875,0.04488999396562576,-0.04669651389122009,0.047962676733732224,-0.04274408519268036,-0.05281984806060791,0.031935807317495346,-0.06722146272659302,-0.027836190536618233,0.014538642950356007,-0.007059162482619286,0.06764404475688934,0.024748295545578003,-0.06997673958539963,-0.06792213022708893,-0.028576526790857315,-0.020568687468767166,0.03921804577112198,-0.011129196733236313,-0.07309749722480774,0.041996099054813385,-0.06612837314605713,-0.033172931522130966,0.031519658863544464,0.03718675300478935,-0.0737590566277504,0.04877053573727608,0.07106342166662216,0.01139246765524149,0.006193036213517189,0.07512117922306061,0.002618898870423436,0.006548420526087284,0.03790220245718956,-0.035864632576704025,0.018709879368543625,-0.05804526433348656,0.014000545255839825,-0.04953931272029877,-0.013842221349477768,0.05053689703345299,-0.028201114386320114,0.03345981612801552,-0.060622651129961014,-0.031009556725621223,-0.042586442083120346,0.04474037513136864,-0.02185153216123581,-0.04411914199590683,0.035129040479660034,-0.0023896105121821165,-0.02867252007126808,-0.029767321422696114,0.05878423899412155,-0.04969887062907219,0.03181285411119461,0.03714785724878311,0.022227827459573746,-0.04437008500099182,0.00835197139531374,-0.055565666407346725,0.08469495922327042,0.08198966085910797,0.031436122953891754,0.0041611287742853165,0.08084983378648758,0.03483539819717407,0.02917521260678768,0.06142011284828186,0.05399306118488312,0.0259992778301239,0.03935479372739792,0.031943585723638535,-0.056721556931734085,-0.0253886915743351,0.04222185164690018,-0.029862167313694954,0.010035648941993713,0.09009156376123428,-0.027060311287641525,0.003331014420837164,-0.013043100945651531,0.03216458112001419,0.07533176988363266,-0.04506922513246536,0.057467710226774216,0.049519918859004974,0.0458243153989315,-0.06931522488594055,0.01268230751156807,0.019966349005699158,-0.009431538172066212,0.023159349337220192,0.06738407909870148,0.026403820142149925,-0.045319125056266785,0.05792200565338135,0.003113559912890196,0.09240707010030746,0.01212790235877037,0.00024077444686554372,0.04304588958621025,0.06428604573011398,0.015281926840543747,0.013798477128148079,-0.030008310452103615,0.01975036785006523,-0.06795190274715424,0.0502689927816391,-0.062391940504312515,-0.03888947144150734,0.05234941840171814,0.01848302222788334,0.01939166896045208,-0.00488560413941741,0.02022251859307289,0.040775567293167114,0.004925157409161329,-0.003341315547004342,0.060673777014017105,0.025043252855539322,0.08235497027635574,-0.02003483846783638,-0.012375840917229652,-0.04188328981399536,0.006101095583289862,-0.025788549333810806,-0.02604958973824978,-0.02963605709373951,-0.0642697811126709,0.034148138016462326,0.05028432980179787,-0.031058933585882187,-0.02226238325238228,0.03681940212845802,-0.07119761407375336,0.004675339441746473,-0.06520583480596542,0.04392882063984871,0.007255652919411659,-0.006206916179507971,-0.017460620030760765,-0.0413748100399971,0.07562772184610367,0.009378940798342228,0.03581522777676582,0.013900537975132465,-0.07512421905994415,0.013292989693582058,-0.017840676009655,0.03442290052771568,-0.026748988777399063,-0.0537760928273201,-0.06576797366142273,0.05771356448531151,-0.04318466782569885,-0.014673421159386635,-0.02048834040760994,-0.01006760261952877,0.0857783854007721,-0.019022472202777863,0.06988342106342316,-0.03790755942463875,-0.05132918059825897,0.0733296349644661,0.04440617933869362,0.06186698377132416,0.002015732228755951,-0.03943786770105362,-0.07580846548080444,-0.0641530305147171,0.008160571567714214,-0.057245321571826935,-0.0667351484298706,0.02610304020345211,-0.03879549354314804,0.03201809152960777,-0.049249861389398575,-0.060528673231601715,-0.04113144427537918,0.0547402985394001,0.0012993909185752273,0.026145370677113533,0.034157395362854004,-0.013277960941195488,0.06546904891729355,0.011681738309562206,0.05913490429520607,-0.00863092951476574,0.024731537327170372,0.029035726562142372,0.004583178088068962,-0.03240783512592316,-0.09371927380561829,-0.013568604364991188,0.04348330944776535,0.0407608225941658,0.05898473039269447,-0.08629433810710907,-0.044926099479198456,0.05492885038256645,-0.022496122866868973,-0.03691990301012993,-0.06396383792161942,-0.08440553396940231,0.03818682208657265,-0.06438228487968445,-0.0329662561416626,0.04366219788789749,0.016467440873384476,-0.011693590320646763,-0.024216994643211365,0.01540359016507864,-0.040850210934877396,-0.029008641839027405,0.008743277750909328,-0.04551329463720322,-0.03884048014879227,0.040388185530900955,-0.04349502548575401,0.09119562059640884,0.08622556179761887,-0.012446940876543522,0.019020114094018936,-0.01990501582622528,0.0343664214015007,0.06696940958499908,-0.03995881602168083,0.07208699733018875,-0.016758546233177185,-0.05924009159207344,0.034733500331640244,-0.041785113513469696,0.039306171238422394,-0.08856931328773499,0.049226973205804825,-0.0038277143612504005,0.04151015356183052,0.01983444020152092,0.061223775148391724,-0.026063434779644012,-0.06274232268333435,0.033565081655979156,0.0388084277510643,0.03572847321629524,0.010957298800349236,0.06830843538045883,-0.04772987589240074,0.026654254645109177,0.03450251370668411,-0.05005206912755966,-0.062467366456985474,-0.008996526710689068,-0.056585099548101425,-0.039975605905056,0.005155278369784355,0.04019743204116821,-0.05237870290875435,-0.0836024135351181,-0.008681116625666618,-0.02159504033625126,0.02586134895682335,-0.03366364166140556,0.025623109191656113,-0.03415994346141815,0.0468638651072979,-0.03154432401061058,0.04118894785642624,0.08344315737485886,0.029577476903796196,0.06969170272350311,-0.05346306413412094,-0.04645214229822159,-0.045373473316431046,-0.04824761673808098,-0.049827706068754196,-0.04195261374115944,-0.017317455261945724,0.061095211654901505,0.03231751546263695,0.04085830971598625,-0.05570017918944359,-0.06560171395540237,-0.05470811203122139,-0.03066996857523918,0.06169900670647621,0.02082972601056099,0.0594271719455719,-0.03447292000055313,-0.05596642196178436,0.062384579330682755,-0.05575982853770256,0.07614586502313614,-0.06966046243906021,0.06464730203151703,-0.03537536785006523,0.004224609583616257,0.010236852802336216,-0.011193769983947277,0.043005041778087616,0.036611054092645645,-0.06682564318180084,0.08375779539346695,0.014814067631959915,-0.06386987864971161,0.007878716103732586,0.03147665783762932,-0.07714743912220001,-0.0666450783610344,-0.029925508424639702,-0.05084637552499771,-0.06434285640716553,-0.0580122135579586,0.012963280081748962,-0.03794867545366287,0.02511848881840706,0.009555496275424957,-0.06346859037876129,0.024517768993973732,0.08441033214330673,-0.06967128813266754,0.005210799630731344,-0.0682322084903717,0.03728530555963516,-0.014984951354563236,-0.03936242312192917,0.012067226693034172,0.021681003272533417,-0.06142276152968407,0.03286341577768326,0.08108886331319809,-0.06980984658002853,0.05457408353686333,-0.021527402102947235,0.05718792602419853,-0.04769309237599373,0.06007231026887894,-0.0061764707788825035,-0.03485918417572975,-0.07122793048620224,-0.04195623844861984,0.01724877953529358,0.04999276250600815,-0.02666841819882393,0.007083063013851643,-0.039454128593206406,-0.03766192868351936,0.011896682903170586,0.0037763314321637154,0.02879534475505352,-0.022922420874238014,0.03175949677824974,-0.0214649960398674,-0.0482022762298584,0.030646895989775658,0.05171915143728256,0.020506352186203003,-0.033368535339832306,0.026529332622885704,0.003438544925302267,0.04277187958359718,-0.04784577712416649,0.03734375536441803,0.07758613675832748,-0.008067379705607891,-0.024992363527417183,-0.02408340945839882,0.01643582619726658,-0.03763657808303833,0.04975185543298721,0.03585751727223396,-0.05236656218767166,-0.06657744199037552,-0.00566697446629405,0.007353981491178274,-0.06564417481422424,-0.06919397413730621,-0.005994769744575024,0.07237539440393448,0.0012241365620866418,0.036591362208127975,-0.07214874774217606,0.07390356808900833,-0.017368054017424583,0.011009514331817627,0.027764296159148216,-0.05305099114775658,0.017267411574721336,-0.04305778816342354,0.0068880789913237095,0.012705500237643719,0.017911620438098907,-0.08505251258611679,-0.06950842589139938,0.0004764935583807528,0.046903952956199646]},{"id":"congenealogy","vector":[-0.030926154926419258,-0.016522839665412903,-0.010712590999901295,0.02525535598397255,-0.012480238452553749,0.04157833755016327,0.011503323912620544,-0.07399134337902069,0.014480575919151306,-0.001424521440640092,0.023056386038661003,0.010075354017317295,-0.024291014298796654,0.06281586736440659,-0.06423185765743256,-0.03156875818967819,-0.04091893881559372,-0.05874159559607506,-0.012315448373556137,0.03543743118643761,0.021704088896512985,-0.01717844046652317,-0.007171897683292627,-0.013568423688411713,0.02858906239271164,0.020961670204997063,-0.045126549899578094,0.028573699295520782,-0.05977277085185051,-0.06236744299530983,0.05413195863366127,-0.01597999595105648,-0.0635392889380455,0.01353826466947794,0.062008652836084366,-0.0031545518431812525,-0.05470139533281326,0.029750199988484383,0.07217948883771896,-0.07594528794288635,-0.04155530408024788,0.022646097466349602,0.06428618729114532,-0.023927876725792885,-0.021358672529459,-0.0060461596585810184,-0.07673713564872742,-0.01971942000091076,0.04990152642130852,0.06413811445236206,0.018740680068731308,-0.06477531790733337,0.018439846113324165,-0.0500994548201561,0.025276731699705124,-0.03667708486318588,0.06470049172639847,-0.018005410209298134,0.009691751562058926,-0.07220423221588135,-0.06840386986732483,-0.04124153405427933,-0.04836709052324295,-0.00023132922069635242,-0.034657929092645645,0.00021717650815844536,0.08509499579668045,0.020197290927171707,0.08708437532186508,-0.053567223250865936,-0.028090348467230797,-0.06151234731078148,-0.01362147182226181,-0.007472166325896978,-0.06293744593858719,-0.06437285244464874,0.02796764113008976,-0.015076582320034504,0.019123777747154236,0.0527007170021534,0.013672418892383575,0.026996470987796783,-0.006210816092789173,0.0006787254242226481,-0.0365297757089138,0.0612589530646801,-0.029184328392148018,0.053963322192430496,-0.060439758002758026,0.046864576637744904,-0.007775642443448305,-0.011372904293239117,-0.04785897955298424,0.038934480398893356,-0.04385771229863167,0.06056945025920868,-0.0735393837094307,-0.03913604095578194,-0.011232421733438969,-0.02644188702106476,-0.0839976891875267,0.014971052296459675,-0.01600765250623226,0.0213602427393198,-0.017383208498358727,0.016704458743333817,-0.06228455528616905,0.0618467852473259,0.05353023111820221,0.025153663009405136,-0.026516010984778404,-0.05834962800145149,-0.014069804921746254,-0.05710803344845772,-0.03363025188446045,0.02172195166349411,0.04358670487999916,0.025709522888064384,-0.06808236241340637,0.02703826129436493,-0.00682277325540781,-0.07807917147874832,0.013921907171607018,-0.049420978873968124,-0.03703320026397705,0.007386630866676569,-0.008678938262164593,0.066520556807518,0.037886008620262146,-0.06794578582048416,-0.06768237054347992,-0.044651567935943604,-0.020455701276659966,0.004090704955160618,-0.03731554001569748,-0.07220444828271866,-0.0024753690231591463,-0.051886506378650665,-0.025542879477143288,-0.0003036552807316184,0.024548634886741638,-0.048207756131887436,0.05004057288169861,0.05847223103046417,0.004327750764787197,-0.010192163288593292,0.027391908690333366,0.03174583241343498,0.022781457751989365,0.041867174208164215,0.00445404089987278,-0.016820155084133148,-0.0735405758023262,0.03468360751867294,-0.029865169897675514,-0.0007004873477853835,0.036580540239810944,-0.05855276435613632,0.019522210583090782,-0.07109335064888,-0.015330090187489986,0.026081185787916183,0.04876893013715744,0.015075613744556904,-0.0009671585285104811,0.026835937052965164,0.016435975208878517,-0.06997218728065491,0.010234581306576729,0.058993998914957047,-0.05647469684481621,-0.02598865143954754,-0.02240467257797718,0.05444488301873207,-0.01522543653845787,0.03912441432476044,-0.03686365857720375,0.08513414114713669,0.08054126799106598,0.06834517419338226,-0.006420579738914967,0.0732816606760025,0.05009528249502182,-0.022250857204198837,0.02901950664818287,0.03856123611330986,0.016470706090331078,0.06095096841454506,0.07782620191574097,-0.03541618585586548,-0.03896277770400047,0.009664425626397133,-0.03625931218266487,0.0351848229765892,0.06817799806594849,-0.0690087303519249,-0.012951581738889217,0.0015728523721918464,-0.010830214247107506,0.07718629390001297,0.0069019426591694355,0.018100876361131668,0.0556010827422142,0.009508035145699978,-0.0522167794406414,-0.018282031640410423,0.06025737151503563,-0.05112204700708389,0.00849924050271511,0.08160516619682312,0.009272733703255653,-0.039677444845438004,0.06951235234737396,0.007595491595566273,0.062288541346788406,-0.006395121105015278,-0.01965819112956524,0.0011913934722542763,0.056580059230327606,-0.02508300170302391,0.00816619023680687,-0.03220800310373306,-0.008426545187830925,-0.04234977439045906,0.061504099518060684,-0.032470572739839554,-0.06051089987158775,0.0022282167337834835,0.039060357958078384,0.025795063003897667,-0.0033706233371049166,-0.0224147941917181,0.0394829660654068,0.019156964495778084,0.02151544578373432,0.0703478753566742,0.04730302840471268,0.0661969855427742,0.03650844842195511,-0.03515603393316269,-0.042743176221847534,-0.013948243111371994,-0.01960913836956024,-0.029485341161489487,0.01703149825334549,-0.04516590014100075,0.05580306798219681,0.010425700806081295,-0.004663123283535242,-0.044541336596012115,0.045077092945575714,-0.07490366697311401,0.06360042840242386,-0.07411498576402664,0.010865031741559505,0.007037613540887833,-0.014970934018492699,-0.04283199459314346,-0.003435572376474738,0.07025901973247528,-0.044994570314884186,-0.014852719381451607,-0.01819448731839657,-0.04969046264886856,-0.017603658139705658,0.04372989758849144,0.007623191457241774,-0.003666079603135586,-0.022872434929013252,0.004190504085272551,0.05493610352277756,-0.05441759526729584,0.0019100665813311934,-0.027438180521130562,0.0190302561968565,0.08235467225313187,-0.04114954546093941,0.029209164902567863,-0.04215296730399132,-0.017748059704899788,0.06362374126911163,0.07304194569587708,0.036254823207855225,-0.004138074815273285,-0.02396339178085327,-0.06558988243341446,-0.07554001361131668,0.047974612563848495,-0.04735685512423515,-0.04002710059285164,-0.006278540473431349,-0.0004897901089861989,0.04386250302195549,0.017848828807473183,-0.046304091811180115,-0.042750805616378784,0.07250551879405975,-0.0007338920840993524,0.059036992490291595,0.049414049834012985,-0.01730962097644806,0.07297036051750183,-0.011836557649075985,0.05643407627940178,0.04502246901392937,0.01699667237699032,0.023103883489966393,0.027047423645853996,-0.04425055906176567,-0.08404802531003952,-0.02118663676083088,-0.006248671095818281,0.04529039189219475,0.05085508152842522,-0.07069426029920578,-0.050791092216968536,0.03389323130249977,-0.007215121295303106,-0.03463774174451828,-0.04526982456445694,-0.07415062934160233,0.05986211076378822,-0.033101558685302734,0.025896022096276283,0.05709538608789444,0.049267929047346115,-0.025012154132127762,-0.04802916944026947,0.025112615898251534,-0.024243861436843872,-0.007841543294489384,-0.05369316041469574,-0.058373283594846725,-0.008137274533510208,0.04106701537966728,0.00706124771386385,0.06935156881809235,0.08277712762355804,0.015339016914367676,-0.0046083880588412285,-0.011346457526087761,0.021822527050971985,0.0869637057185173,0.03443041071295738,-0.007165775168687105,-0.01443830132484436,-0.04868422448635101,0.052068330347537994,-0.003346906276419759,0.055206265300512314,-0.07563713937997818,0.06528419256210327,0.040791284292936325,-0.0005368447746150196,-0.015345203690230846,0.07701213657855988,-0.030855201184749603,-0.06918937712907791,0.021301617845892906,-0.002495788736268878,0.04418236389756203,-0.010332667268812656,0.05900973454117775,-0.03953786939382553,-0.007178980391472578,0.02011132426559925,-0.04261329397559166,-0.05456709861755371,-0.03744569048285484,-0.02743983082473278,-0.06559602916240692,0.007387297227978706,0.03927716985344887,-0.059342581778764725,-0.07055393606424332,0.013660184107720852,-0.0488920696079731,0.044473323971033096,0.00751236779615283,0.033091623336076736,0.025956900790333748,0.03386746719479561,-0.06431504338979721,0.03655875101685524,0.04656160995364189,-0.005971716251224279,0.06264536082744598,-0.04963564872741699,-0.04755455255508423,-0.007070882245898247,-0.0602780282497406,-0.044554032385349274,-0.0069282627664506435,0.010331917554140091,0.07257433235645294,0.05495353788137436,0.058051761239767075,-0.043656036257743835,-0.04235026240348816,-0.061728451400995255,-0.0572466216981411,0.07216411828994751,0.005462973844259977,0.07610862702131271,-0.015940027311444283,-0.04426967352628708,0.05747014656662941,-0.057882316410541534,0.07199550420045853,-0.02721940539777279,0.08072152733802795,-0.02696528099477291,0.04378923773765564,-0.004715478979051113,0.01812751591205597,0.02511398121714592,0.0404214933514595,-0.018290214240550995,0.07201983779668808,0.05384129658341408,-0.06571592390537262,0.059099506586790085,-0.023687729611992836,-0.07458425313234329,-0.06705441325902939,-0.07252237200737,-0.041742756962776184,-0.06629599630832672,-0.030140521004796028,0.007178184576332569,-0.002426279243081808,-0.005846494808793068,-0.03193109482526779,-0.05954995006322861,0.03649033606052399,0.07913877069950104,-0.07660092413425446,0.009647374041378498,0.007234714459627867,0.01377757266163826,-0.03279665485024452,-0.04200015962123871,0.033560603857040405,0.054353535175323486,-0.06577607989311218,0.054329123347997665,0.08380229771137238,-0.07424601167440414,0.05863811820745468,-0.03901490196585655,0.03590301796793938,-0.06304918229579926,0.04109199345111847,0.022005777806043625,0.005496038123965263,-0.0768437385559082,-0.03492222726345062,0.03522707521915436,0.05328885465860367,-0.07723463326692581,-0.0036803619004786015,-0.057977136224508286,-0.035497747361660004,0.06107917055487633,-0.0249839685857296,0.03581755980849266,-0.01613793894648552,0.03450138866901398,-0.03557272255420685,-0.04950212687253952,0.041069865226745605,0.051899123936891556,0.001330532249994576,0.013173511251807213,0.03369500860571861,0.02452118694782257,0.060990262776613235,-0.0342615582048893,0.022969206795096397,0.07374967634677887,-0.006731532048434019,-0.04662863165140152,-0.045844513922929764,0.009470151737332344,-0.025340409949421883,0.02455027401447296,0.024631191045045853,-0.04739780351519585,-0.07508939504623413,0.008514268323779106,-0.02370915561914444,-0.07597212493419647,-0.08014582842588425,0.027503974735736847,0.07200020551681519,0.0093338992446661,0.06071653962135315,-0.062051113694906235,0.07291430234909058,-0.03279576078057289,0.02494719624519348,0.07560151815414429,-0.014817634597420692,0.022828359156847,-0.021707171574234962,-0.021655647084116936,0.012264424003660679,0.04137304797768593,-0.07263938337564468,-0.06944678723812103,0.05362044647336006,0.014894713647663593]},{"id":"contingency","vector":[0.0119089987128973,-0.019778337329626083,-0.03989213705062866,0.021204479038715363,-0.027308136224746704,0.006949800066649914,0.03247416019439697,-0.06860841810703278,0.04529883340001106,0.021945448592305183,0.035521671175956726,0.028902696445584297,-0.02193138375878334,0.08160387724637985,-0.04435667023062706,-0.06647411733865738,-0.060401491820812225,-0.06632502377033234,-0.041747722774744034,0.027999982237815857,0.020698638632893562,-0.0023509373422712088,0.026798132807016373,-0.035526808351278305,0.033678676933050156,-0.007991052232682705,-0.04178134351968765,0.01604141667485237,-0.05213204398751259,-0.05013555288314819,0.060948871076107025,-0.05237888544797897,-0.049683865159749985,-0.003176280064508319,0.04085242375731468,0.026882342994213104,-0.044535983353853226,0.03246142715215683,0.06656961143016815,-0.05191122740507126,-0.006605480331927538,0.009683281183242798,0.052417539060115814,-0.06444022059440613,-0.0295859407633543,-0.011691379360854626,-0.06098320335149765,-0.013116967864334583,0.0524919293820858,0.04130781441926956,0.03545845299959183,-0.06357764452695847,0.04469460994005203,-0.04928330332040787,0.036336373537778854,0.008579863235354424,0.06740119308233261,0.058296088129282,0.03682420030236244,-0.07573140412569046,-0.06073768436908722,0.0002156048285542056,-0.05205945298075676,0.03273967653512955,-0.05804067477583885,0.00739701185375452,0.08084961771965027,-0.016817191615700722,0.07919898629188538,-0.07213375717401505,0.027154503390192986,-0.025591354817152023,-0.008653292432427406,0.029922420158982277,-0.04196217656135559,-0.05486103892326355,0.024589069187641144,-0.0038552857004106045,-0.010516832582652569,0.06619525700807571,0.007401468697935343,0.0442207045853138,-0.0069608138874173164,-0.04333024099469185,-0.03972624987363815,0.04257722198963165,-0.014872283674776554,0.06723367422819138,-0.07234972715377808,0.07048393040895462,-0.018270179629325867,0.0018808257300406694,-0.05333078280091286,0.03357526287436485,-0.023441292345523834,0.02338206022977829,-0.07102516293525696,-0.0012801081174984574,-0.04060835391283035,-0.03754062578082085,-0.07750264555215836,0.024760283529758453,-0.028809748589992523,0.043883781880140305,-0.01006711833178997,0.03540992736816406,-0.0655406266450882,0.0660572350025177,0.08057738095521927,0.04080083966255188,-0.024655353277921677,-0.06660943478345871,-0.021562982350587845,-0.06568238139152527,-0.05745110288262367,0.013896927237510681,-0.008032282814383507,0.019928958266973495,-0.06999137997627258,0.04504219815135002,-0.05182161554694176,-0.07962150126695633,0.03182413429021835,-0.06341332197189331,-0.04614057019352913,-0.0255221389234066,-0.053917162120342255,0.021221423521637917,0.02419760823249817,-0.04525173455476761,-0.07384393364191055,-0.04375438392162323,0.020255159586668015,0.03716816008090973,-0.03337816148996353,-0.06945551186800003,-0.02225347049534321,-0.06441886723041534,-0.039869971573352814,-0.006402932573109865,-0.011446882039308548,-0.0606825053691864,0.04037642106413841,0.06338614225387573,0.02505282312631607,0.03279315307736397,0.0182057972997427,0.0246762502938509,0.010891505517065525,0.046700071543455124,-0.025797493755817413,-0.024738743901252747,-0.07035086303949356,-0.013420633040368557,-0.05099370330572128,-0.04316749796271324,0.07006311416625977,-0.0610884390771389,0.008721938356757164,-0.04864330589771271,0.012395411729812622,0.0244126133620739,0.0412588007748127,0.00573558546602726,-0.0068888114765286446,0.0423249825835228,-0.04259108752012253,-0.06728445738554001,0.06952671706676483,0.06417614221572876,-0.02388346754014492,-0.006066344678401947,-0.020067237317562103,0.033450815826654434,-0.03651648014783859,0.036139342933893204,-0.05078265443444252,0.06980437785387039,0.0805036723613739,0.06852646172046661,-0.023308465257287025,0.07899514585733414,0.046596355736255646,-0.021510079503059387,0.0369405560195446,0.06717593967914581,-0.02854655496776104,0.044134512543678284,0.07486481964588165,-0.046562232077121735,-0.022384779527783394,-0.030204862356185913,-0.03220539912581444,0.012742612510919571,0.07918018102645874,-0.06689511239528656,-0.05686027184128761,-0.048954546451568604,-0.03160622715950012,0.07675226777791977,0.0145687535405159,0.023863840848207474,0.023616040125489235,-0.002106433268636465,-0.020619703456759453,-0.03854729235172272,0.02911941520869732,-0.04014366492629051,-0.012594051659107208,0.07803197205066681,-0.0007441560737788677,-0.021094879135489464,0.06471601128578186,0.01777808368206024,0.045337188988924026,0.02435382455587387,-0.052963096648454666,0.03671193867921829,0.044994574040174484,0.02908029593527317,0.05148231238126755,-0.05357438698410988,-0.018305322155356407,-0.057222623378038406,0.03488306328654289,-0.04059100151062012,-0.0014758645556867123,0.007607406470924616,-0.009095181711018085,0.04071768745779991,-0.04410426318645477,0.013308781199157238,0.06914375722408295,0.013719781301915646,0.058438628911972046,0.05695579946041107,0.04951026290655136,0.05324890837073326,0.06311087310314178,-0.006066241301596165,-0.044195447117090225,0.0004819774185307324,0.02275094948709011,0.024387286975979805,0.013166885823011398,-0.03513626009225845,0.00447719544172287,0.05106579512357712,0.03060179017484188,-0.044341977685689926,0.05236053839325905,-0.06436388939619064,0.0283405389636755,-0.06440486013889313,-0.016327697783708572,0.03049098514020443,-0.015108332969248295,-0.06663813441991806,-0.00295435031875968,0.08108023554086685,-0.04528071731328964,-0.03249538317322731,-0.014136116951704025,0.007700757123529911,-0.04466060921549797,0.04130235314369202,0.005393087863922119,-0.038755446672439575,-0.0026405882090330124,-0.020776571705937386,0.06426382064819336,-0.061148326843976974,-0.004255646374076605,-0.03368666395545006,0.03273552656173706,0.07485038787126541,-0.05052271485328674,0.0196976475417614,-0.0013211837504059076,-0.007368852850049734,0.06951750069856644,0.07830736041069031,0.03557319939136505,-0.01041958574205637,-0.06728428602218628,-0.06911663711071014,-0.07009274512529373,0.040564462542533875,-0.04301530867815018,-0.03066185675561428,-0.02001277171075344,-0.000993281020782888,0.06292962282896042,0.03614882752299309,-0.02850024588406086,-0.04362386092543602,0.06023059040307999,0.04315011575818062,0.04609999433159828,0.044220346957445145,-0.0022390177473425865,0.06778434664011002,-0.029803473502397537,0.035223014652729034,0.0217137411236763,0.015797194093465805,-0.03698800876736641,0.0051881601102650166,-0.01809721253812313,-0.06904999911785126,-0.0027190502732992172,-0.011915771290659904,0.03107883781194687,0.010712677612900734,-0.0756642147898674,-0.04851074889302254,0.05829908326268196,-0.0034677910152822733,-0.02205587550997734,-0.056089453399181366,-0.0779326781630516,0.06014850363135338,-0.06467897444963455,-0.03489886596798897,0.06985782086849213,-0.007575737778097391,-0.03179650753736496,-0.02842419035732746,0.041282299906015396,-0.05850827693939209,-0.026302726939320564,-0.039031971246004105,-0.0006840455462224782,-0.045089688152074814,0.04466709867119789,0.004660867620259523,0.06096367910504341,0.0817880928516388,0.04203318804502487,0.03676961362361908,-0.015227987430989742,0.03511691093444824,0.0748940259218216,-0.009832543320953846,-0.01579025574028492,0.02036214992403984,-0.03321288153529167,0.05692583695054054,-0.04933493211865425,0.04854182153940201,-0.08026701956987381,0.05209561064839363,0.02770513854920864,-0.015349705703556538,-0.020001806318759918,0.0637701079249382,-0.011936076916754246,-0.07150720059871674,0.02473817765712738,-0.03540924936532974,0.04024282470345497,0.011237225495278835,-0.011520784348249435,-0.06652999669313431,0.006413255352526903,-0.004685449413955212,-0.02629518322646618,-0.02701501175761223,-0.023064278066158295,-0.060384467244148254,-0.06920895725488663,0.00827338732779026,0.010941649787127972,-0.05457732453942299,-0.07166514545679092,-0.023176396265625954,-0.0006013922393321991,-0.002446173457428813,-0.00523832393810153,0.04047904536128044,0.02536187507212162,0.043762050569057465,-0.055805910378694534,0.052219048142433167,0.06890970468521118,-0.02100459113717079,0.0612194649875164,-0.02905178815126419,-0.04347631707787514,-0.058378517627716064,-0.028730599209666252,-0.03114149160683155,-0.014032547362148762,0.03409520909190178,0.03444620594382286,0.04149558022618294,0.038408584892749786,-0.05439632758498192,-0.01932576857507229,-0.0759807676076889,-0.03904721513390541,0.06834995001554489,-0.001364204566925764,0.03859785571694374,-0.025956211611628532,0.031223902478814125,0.045107901096343994,-0.056101299822330475,0.07121653109788895,-0.053718432784080505,0.07327606528997421,0.019178539514541626,0.03335419297218323,0.022816741839051247,0.017994675785303116,0.011670848354697227,0.018972426652908325,0.0007242832216434181,0.07885513454675674,0.056695714592933655,-0.06513936817646027,0.014274931512773037,0.03738931193947792,-0.052612461149692535,-0.054457057267427444,-0.051589082926511765,-0.013071546331048012,-0.035455863922834396,-0.03849894180893898,0.03312046453356743,-0.006148557178676128,0.0030453396029770374,-0.0010280206333845854,-0.05123136565089226,0.027403781190514565,0.07260908931493759,-0.07225349545478821,-0.0018107526702806354,-0.008667360059916973,-0.01369230542331934,-0.007632008753716946,-0.05796186253428459,0.043881017714738846,0.046751368790864944,-0.07808459550142288,0.03353375196456909,0.07733585685491562,-0.07485558092594147,0.0694628357887268,-0.05341823771595955,0.06217571347951889,-0.04147404432296753,-0.0192569587379694,-0.0351356565952301,-0.005574236623942852,-0.05923374369740486,-0.009402986615896225,0.0433809757232666,0.05766303464770317,-0.05080477520823479,0.009301905520260334,-0.05619356408715248,-0.04719853401184082,0.017208578065037727,-0.030221180990338326,0.032394129782915115,-0.06487333029508591,0.04251987859606743,-0.034948334097862244,-0.05499803647398949,-0.01241191104054451,0.06024346500635147,0.0009088829392567277,0.037524860352277756,0.05315617844462395,0.03702329471707344,0.05806492269039154,-0.014690220355987549,0.0587848536670208,0.0454212911427021,-0.05412902683019638,-0.003124500159174204,-0.04179069399833679,0.015834415331482887,-0.018979398533701897,-0.008072004653513432,0.06295694410800934,-0.05371422320604324,-0.05910786986351013,0.02203311398625374,-0.02494039200246334,-0.0512104369699955,-0.05564376339316368,-0.018591420724987984,0.06884142011404037,-0.021762609481811523,0.06196567043662071,-0.06227196007966995,0.07490433007478714,-0.03800501301884651,-0.005737219005823135,0.06218305230140686,-0.032412782311439514,0.012580085545778275,-0.046883296221494675,0.04055699333548546,0.06382498145103455,0.0211157388985157,-0.07797481119632721,-0.05167436599731445,0.046425845474004745,-0.007175845559686422]},{"id":"daydreaming-thomas","vector":[0.03384413197636604,-0.035337429493665695,0.001906595309264958,0.004673206713050604,-0.01143311895430088,0.06458579003810883,0.03812183812260628,-0.07280585914850235,0.03432898968458176,0.032936111092567444,0.017437754198908806,0.019153909757733345,0.004692716058343649,0.01992720551788807,-0.054691724479198456,-0.01031973585486412,-0.048354245722293854,-0.033832721412181854,-0.03077208437025547,-0.06456805020570755,0.0003797587414737791,0.020379604771733284,0.021807299926877022,-0.03378526493906975,0.024160342290997505,0.017534267157316208,-0.020199358463287354,-0.031127944588661194,-0.054621417075395584,0.008946366608142853,0.07468778640031815,-0.05865870788693428,-0.03921489790081978,-0.014128642156720161,0.04642660915851593,0.038437455892562866,-0.0497659295797348,0.05055670812726021,0.06718810647726059,-0.041728436946868896,0.007222892250865698,0.04501895606517792,0.07770614326000214,-0.05099756270647049,0.02662247233092785,0.05472039803862572,-0.07571437954902649,-0.05206744745373726,0.05071762576699257,0.06536865234375,0.009231205098330975,-0.043485064059495926,-0.00003323614873806946,-0.012062305584549904,-0.0449238047003746,0.007652931846678257,0.05630703642964363,0.023670967668294907,0.018473584204912186,-0.0642281249165535,-0.06431660056114197,-0.061881039291620255,-0.05015867203474045,0.026142138987779617,-0.04499586671590805,-0.02652379684150219,0.08990668505430222,0.009536328725516796,0.08308716863393784,-0.04224082827568054,-0.026174278929829597,-0.04250457137823105,-0.029250996187329292,0.013928364962339401,-0.03961597755551338,-0.060764577239751816,0.0012011051876470447,-0.0700569897890091,0.034996483474969864,0.062381207942962646,0.0012432362418621778,0.035310402512550354,0.03654932230710983,-0.043700505048036575,-0.029686272144317627,0.042290929704904556,0.03191427141427994,0.08482587337493896,-0.07105705887079239,0.025821246206760406,-0.03256799653172493,-0.06777588278055191,-0.05979369953274727,0.05531694367527962,-0.03465406224131584,0.025268813595175743,-0.05348065868020058,-0.026787566021084785,-0.004788391757756472,-0.049142368137836456,-0.061097852885723114,0.01583753153681755,0.0009769831085577607,-0.008783702738583088,-0.04057091102004051,0.023878049105405807,-0.053910449147224426,0.05871045961976051,0.0771399512887001,0.050605010241270065,0.010283696465194225,-0.07553575932979584,0.0032127415761351585,-0.04739551618695259,-0.05405879393219948,0.03617265075445175,0.01664179004728794,0.004020916298031807,-0.05531824380159378,0.05330108851194382,-0.026845555752515793,-0.07367123663425446,0.03859822824597359,-0.05484246090054512,-0.0344960056245327,0.03867350518703461,0.011931091547012329,0.032726794481277466,0.03859912231564522,-0.06472539901733398,-0.03841963782906532,-0.04782513156533241,-0.022104153409600258,0.0031279807444661856,-0.023863045498728752,-0.07287917286157608,0.01105736754834652,-0.04905257374048233,0.009902277030050755,0.015731994062662125,0.028766712173819542,-0.061158206313848495,0.03130894526839256,0.06782866269350052,0.00012617037282325327,-0.07589755207300186,0.06153577193617821,0.005468869116157293,-0.008877910673618317,0.016572995111346245,-0.03469879925251007,-0.02122955583035946,-0.041047465056180954,-0.016266776248812675,-0.06168588995933533,-0.012108469381928444,0.06294254958629608,-0.02391950786113739,0.06501737982034683,-0.06495172530412674,0.0673232227563858,-0.05287088081240654,0.05220092087984085,0.005352615844458342,-0.03384365513920784,0.04807488992810249,-0.03222327306866646,-0.03815970942378044,-0.011528868228197098,0.042408183217048645,-0.05347829312086105,0.031956158578395844,0.007138349115848541,0.01935739815235138,-0.0023178940173238516,-0.009200379252433777,-0.054413389414548874,0.07842473685741425,0.07115446776151657,0.07148421555757523,-0.02216527611017227,0.09021909534931183,0.013374275527894497,0.011878511868417263,0.061260830610990524,0.029571736231446266,-0.008460993878543377,0.04452710971236229,0.0556049607694149,-0.01531456969678402,-0.020551862195134163,0.03119667060673237,0.00922512449324131,0.007743348833173513,0.07731232047080994,-0.04914915934205055,-0.046794530004262924,-0.07491118460893631,0.0015696429181843996,0.08543697744607925,-0.03300289064645767,-0.04332219064235687,0.05184594914317131,-0.010108480229973793,-0.07339217513799667,-0.03191191703081131,0.04143686965107918,0.027359822764992714,0.04200533777475357,0.08071190863847733,0.011664589866995811,-0.008592252619564533,0.07204172015190125,0.010497640818357468,0.07335374504327774,0.006429711822420359,-0.02483244799077511,0.009858482517302036,0.05639674514532089,0.003094489686191082,0.04807956516742706,-0.03568784147500992,0.05505378916859627,-0.023822927847504616,0.042446620762348175,0.0011811756994575262,-0.03780371695756912,-0.03064727410674095,-0.023851672187447548,0.022824324667453766,-0.03402568772435188,0.035103172063827515,0.03899899125099182,0.0015253614401444793,0.008059141226112843,-0.01874779537320137,0.04231632873415947,0.05652232468128204,0.02541130967438221,-0.07688245922327042,-0.05199107155203819,0.009681005962193012,-0.020904986187815666,-0.07108305394649506,0.0018982291221618652,-0.05063369870185852,0.022906335070729256,-0.006137368269264698,-0.03586698696017265,-0.0307895727455616,0.029470721259713173,-0.05914415419101715,0.01791227050125599,-0.08028632402420044,0.027987224981188774,-0.0021272432059049606,-0.0010026656091213226,-0.01755348965525627,0.005868299398571253,0.07841937988996506,-0.009064155630767345,-0.026282435283064842,0.006659569218754768,-0.014315983280539513,-0.01786479726433754,0.030724411830306053,-0.00953623652458191,0.0311763733625412,0.00037130029522813857,-0.05791919678449631,0.046915099024772644,-0.07235831767320633,0.021619604900479317,-0.010920047760009766,-0.02042950689792633,0.08251994103193283,-0.04620202258229256,0.06030787527561188,-0.030252130702137947,-0.02765154466032982,0.0578814335167408,0.07909949123859406,-0.025359025225043297,-0.017722833901643753,0.018791329115629196,-0.0731087327003479,-0.0630609318614006,0.04498149827122688,-0.04632280394434929,-0.028474031016230583,0.0003412493970245123,-0.04345240443944931,0.04710037261247635,-0.0201133843511343,-0.04437766969203949,-0.06089067459106445,0.05747763067483902,0.034755632281303406,0.012751301750540733,0.04617929086089134,-0.0570841059088707,-0.005083853378891945,-0.02939738892018795,0.049104392528533936,0.02815227024257183,-0.02295149303972721,0.013143874704837799,-0.008225927129387856,-0.0019356475677341223,-0.08418401330709457,-0.017988720908761024,0.02423275262117386,0.038681164383888245,0.06038850173354149,-0.05655118077993393,-0.05953975394368172,0.03198042884469032,-0.0468640960752964,-0.035780541598796844,-0.0629115179181099,-0.08083035796880722,0.05014410987496376,-0.048804182559251785,-0.003998550586402416,0.07847903668880463,0.03899465873837471,-0.010580472648143768,-0.005089770536869764,-0.0005627684877254069,-0.02398628182709217,-0.03764602541923523,0.01680142991244793,-0.06127677857875824,-0.011346864514052868,0.030869172886013985,0.016433462500572205,0.08725427091121674,0.08428509533405304,-0.0266340933740139,0.05566762760281563,-0.03760376200079918,0.03653792291879654,0.04272513836622238,-0.00007620119140483439,-0.026707002893090248,0.0055215624161064625,-0.060486968606710434,0.0333162322640419,-0.009378766641020775,0.048403140157461166,-0.08468470722436905,0.07876207679510117,0.025072133168578148,-0.04627181962132454,-0.028374789282679558,0.05519252270460129,-0.029295699670910835,-0.05977974086999893,0.028484167531132698,0.020049985498189926,0.04494589567184448,0.030564995482563972,0.026515474542975426,-0.03155595064163208,-0.0033286900725215673,0.03191997855901718,-0.032514091581106186,-0.0484878271818161,-0.028189361095428467,-0.03284662961959839,-0.03555667772889137,0.03588210791349411,0.039254140108823776,-0.05580565333366394,-0.07753898203372955,-0.04622696712613106,-0.009405944496393204,0.07248975336551666,0.03641712665557861,0.027446884661912918,0.01337183266878128,0.013880757614970207,-0.0476192869246006,0.02483530342578888,0.0794053003191948,0.04326062276959419,0.06988508254289627,-0.058350708335638046,-0.026985453441739082,-0.04179435595870018,-0.043973978608846664,-0.04213482141494751,-0.03336985781788826,-0.03754649683833122,0.07418958097696304,0.02488119900226593,0.04229230061173439,-0.08007802814245224,-0.06750589609146118,-0.04883337765932083,-0.03151872009038925,0.06764829158782959,0.00598113052546978,0.007107627112418413,-0.0499081164598465,0.0018790282774716616,0.03846309334039688,-0.07368866354227066,0.06643407791852951,-0.06843314319849014,0.05678245797753334,-0.016789505258202553,0.03787840157747269,-0.015363333746790886,0.003908554557710886,0.061436910182237625,0.05102020874619484,-0.06704764813184738,0.0758948102593422,0.0562959760427475,-0.05096660926938057,0.041215233504772186,0.02495955117046833,-0.0755443274974823,-0.06950578093528748,-0.0313229076564312,-0.051794685423374176,-0.04026532545685768,-0.05967945605516434,0.026676831766963005,-0.04121159762144089,-0.010093476623296738,-0.015901250764727592,-0.0577625073492527,0.06517286598682404,0.07754684239625931,-0.0644913911819458,-0.04686623811721802,0.026745731011033058,-0.006847590208053589,-0.020187020301818848,-0.03228989616036415,0.02265152521431446,0.006511221174150705,-0.05850294232368469,0.012654611840844154,0.087885782122612,-0.0739266648888588,0.05246061831712723,-0.0182060357183218,-0.021810196340084076,-0.03066687099635601,0.029013294726610184,0.028942761942744255,-0.024232517927885056,-0.06927865743637085,0.009185418486595154,0.01682625710964203,0.07180863618850708,-0.04636998102068901,0.034497763961553574,-0.04531525447964668,-0.027726419270038605,0.021414512768387794,-0.010299062356352806,0.023762807250022888,0.008496430702507496,0.03598042204976082,-0.03812297061085701,-0.03594328463077545,0.044000912457704544,0.06918124109506607,-0.007806154899299145,0.027210963889956474,0.016149546951055527,0.022762345150113106,0.06129193678498268,0.05573225021362305,0.03367563337087631,0.07999907433986664,-0.06494691967964172,-0.02241922914981842,-0.00533277029171586,0.00867148395627737,0.0027827094309031963,-0.016683656722307205,0.01425649132579565,-0.04220792278647423,-0.06423110514879227,-0.0076088085770606995,0.036084938794374466,-0.056084323674440384,-0.06600159406661987,-0.0017414218746125698,0.07459130883216858,0.004776828922331333,0.00911489687860012,-0.05726272612810135,0.07654455304145813,-0.025753360241651535,-0.030681399628520012,0.041497040539979935,-0.04569525644183159,0.04923880845308304,-0.010326050221920013,-0.03182746097445488,0.06837006658315659,0.04779960960149765,-0.08053294569253922,-0.07978080213069916,0.02225523255765438,0.04833703860640526]},{"id":"despondent","vector":[0.015956813469529152,-0.014598514884710312,-0.0376591794192791,0.03307868540287018,-0.010111218318343163,0.0034550544805824757,-0.015745706856250763,-0.07403074949979782,0.05652536824345589,0.03287390246987343,-0.0043416391126811504,0.019243838265538216,-0.019380196928977966,0.013331246562302113,-0.06828922778367996,-0.04685873165726662,-0.06734007596969604,-0.06752458214759827,-0.027381785213947296,0.008665621280670166,0.020402053371071815,-0.022261034697294235,0.04208453372120857,-0.02012980356812477,0.03122665546834469,0.022968027740716934,-0.031101355329155922,0.012743739411234856,-0.06756693124771118,-0.061849940568208694,0.0705839991569519,-0.049072422087192535,-0.06134099140763283,0.015071100555360317,0.06306203454732895,0.051805198192596436,-0.04203082621097565,0.028316766023635864,0.0668296068906784,-0.0431521050632,0.005541873164474964,0.0016014390857890248,0.07744482159614563,-0.05879734084010124,-0.05281529203057289,-0.0038077090866863728,-0.0641835480928421,0.005162833724170923,0.05082128569483757,0.05845224857330322,0.026673385873436928,-0.07352958619594574,0.003821368096396327,-0.04932728782296181,0.021517671644687653,-0.02982102334499359,0.038495443761348724,0.026784639805555344,0.03958064690232277,-0.07711558789014816,-0.06933990120887756,-0.07037197053432465,-0.04946905001997948,0.008912825025618076,-0.02643253654241562,-0.012022645212709904,0.07199806720018387,0.004828877747058868,0.07851079851388931,-0.03942391648888588,-0.019659414887428284,-0.057816799730062485,0.030360016971826553,0.01853332668542862,-0.05102520063519478,-0.046202152967453,0.026518672704696655,0.06641262769699097,0.012888886965811253,0.06786772608757019,-0.0091930590569973,0.03743892163038254,0.011265495792031288,-0.05515750125050545,-0.05110080912709236,0.04449870437383652,-0.024936210364103317,0.055968258529901505,-0.025404004380106926,0.06149750202894211,-0.02519139274954796,-0.01673605851829052,-0.05205661430954933,0.029768219217658043,-0.039967842400074005,0.0321110300719738,-0.07968045771121979,-0.02928357571363449,-0.06162046268582344,-0.0167775247246027,-0.08287328481674194,0.00033695492311380804,0.012255978770554066,0.017325397580862045,-0.037352655082941055,0.05543677881360054,-0.04313838854432106,0.05488413944840431,0.039370883256196976,0.03298021852970123,-0.044266730546951294,-0.06894003599882126,-0.0018801986007019877,-0.04282434657216072,-0.0372517928481102,-0.009404327720403671,0.021937483921647072,0.06497400999069214,-0.049497127532958984,0.04134992137551308,-0.055820051580667496,-0.0740620568394661,0.030654503032565117,-0.04654267430305481,-0.054637614637613297,0.01850324310362339,-0.04068191722035408,0.00250225025229156,0.05367857590317726,-0.06460876762866974,-0.07066652178764343,-0.04488372430205345,-0.03521936014294624,-0.015255461446940899,-0.001688178745098412,-0.07829029858112335,0.01709887571632862,-0.03478272259235382,-0.019951676949858665,0.02409861981868744,-0.005461098160594702,-0.0661013126373291,0.05162012204527855,0.0669262558221817,0.027791587635874748,0.021800467744469643,0.05995432659983635,0.04315841570496559,0.013413522392511368,0.038952335715293884,0.06587100028991699,-0.02824551612138748,-0.06001826748251915,-0.00029646698385477066,-0.040007334202528,-0.043786291033029556,0.047846779227256775,-0.017664404585957527,0.03183238208293915,-0.04469027742743492,-0.027750754728913307,0.03419644385576248,0.05108043923974037,0.04004393145442009,0.009209781885147095,0.0046615912579,0.003419632790610194,-0.06318753957748413,-0.01392598357051611,0.03357729688286781,-0.042677853256464005,-0.045634783804416656,-0.020940139889717102,0.02375125326216221,-0.02141321823000908,0.028954459354281425,-0.0532667376101017,0.07645561546087265,0.07896438241004944,0.07711495459079742,-0.013465739786624908,0.04539361223578453,0.021133463829755783,0.016398539766669273,0.06376733630895615,0.06274670362472534,-0.013913222588598728,0.04600877687335014,0.03634974732995033,-0.0613553486764431,-0.005726667121052742,-0.03755297511816025,-0.020695891231298447,-0.03659309819340706,0.07541950792074203,-0.06961377710103989,-0.04225292429327965,0.05215756222605705,0.04719628766179085,0.07744286954402924,-0.009254628792405128,0.02631995640695095,0.03373949974775314,-0.001962298294529319,-0.0634978711605072,-0.019945604726672173,0.0754329040646553,-0.02879379317164421,0.022492043673992157,0.07516401261091232,0.023844288662075996,0.04737567901611328,0.07137759774923325,-0.004850289784371853,0.026478169485926628,0.003959762863814831,-0.03191674128174782,-0.00004853260179515928,0.03867803514003754,-0.02002912014722824,-0.039101745933294296,-0.013858678750693798,-0.018426407128572464,-0.04459316283464432,0.04970560967922211,0.010870794765651226,-0.06644735485315323,-0.010631962679326534,-0.0031887530349195004,0.0017677865689620376,-0.033639322966337204,-0.010474112816154957,0.04985601082444191,-0.005374210420995951,0.001740464591421187,0.05720090493559837,0.0427916944026947,0.056093353778123856,0.031248468905687332,0.059925828129053116,-0.06538379192352295,-0.018729837611317635,-0.02699534222483635,-0.028695793822407722,-0.017271660268306732,-0.012457769364118576,0.006567747797816992,0.0383511446416378,0.016058258712291718,-0.05260515213012695,0.045308202505111694,-0.07568709552288055,0.030444014817476273,-0.06570865213871002,0.009940829128026962,-0.03759680688381195,-0.03637728840112686,-0.06221684068441391,0.014430479146540165,0.07514340430498123,-0.04315710440278053,-0.05509231239557266,-0.04734395071864128,0.034757647663354874,0.019700895994901657,0.008917747996747494,-0.011540706269443035,-0.0547400526702404,-0.031123602762818336,-0.043208010494709015,0.05038183555006981,-0.06265372782945633,0.015616113319993019,-0.03228890150785446,-0.0005466865841299295,0.08038812130689621,-0.046291761100292206,0.0693979486823082,-0.011795570142567158,0.0005031496984884143,0.07064566016197205,0.05659579485654831,-0.003458901308476925,0.0017798402113839984,-0.0415031760931015,-0.061314914375543594,-0.07895497232675552,0.046182967722415924,-0.05636822432279587,-0.03559448570013046,-0.03452747315168381,-0.020808733999729156,0.05456547066569328,0.031973447650671005,-0.056407298892736435,-0.05861320346593857,0.07146701961755753,0.022853467613458633,0.058002740144729614,0.05125252902507782,0.01893203891813755,0.04107469320297241,0.007072283420711756,0.045443642884492874,0.061407580971717834,0.003212908050045371,-0.029504798352718353,-0.012653643265366554,-0.005074226763099432,-0.08188600838184357,-0.006149137392640114,0.033839162439107895,-0.015272868797183037,0.05592598766088486,-0.056114617735147476,-0.044558845460414886,0.03986693546175957,0.004243515431880951,-0.03975054994225502,-0.051331255584955215,-0.07897265255451202,0.05687320977449417,-0.060744162648916245,-0.012527847662568092,0.05617336556315422,-0.005456977523863316,-0.026380011811852455,-0.055495794862508774,0.0031145981047302485,-0.03221747651696205,-0.040079157799482346,-0.02242892049252987,-0.07811083644628525,-0.04332062229514122,0.05062251538038254,0.010363818146288395,0.08061981201171875,0.08094458281993866,-0.02298136055469513,0.01344225462526083,0.006937713362276554,0.019527090713381767,0.06775714457035065,-0.025909073650836945,-0.017035260796546936,0.01360209658741951,-0.06757255643606186,0.045544032007455826,0.031043728813529015,0.06450968235731125,-0.06839257478713989,0.05761144682765007,0.020021580159664154,0.024817056953907013,-0.013148493133485317,0.07873803377151489,0.0070251720026135445,-0.06118316575884819,-0.008237403817474842,-0.007111677899956703,0.05630064755678177,0.03838783875107765,-0.018545642495155334,-0.010604345239698887,0.04713677987456322,-0.0249814223498106,-0.0377095565199852,-0.03910449147224426,-0.05513428524136543,-0.01823919080197811,-0.049660224467515945,0.004923407454043627,0.06109558790922165,-0.0728750005364418,-0.07071191817522049,-0.007787302136421204,-0.00022821097809355706,0.014532705768942833,0.012705888599157333,0.05491757392883301,0.04571675509214401,0.006948897149413824,-0.0724940225481987,0.07168031483888626,0.032710280269384384,-0.0017963014543056488,0.06873836368322372,-0.05218738690018654,-0.07477500289678574,-0.04317101091146469,-0.0633140578866005,-0.04274670034646988,-0.0359472818672657,0.03753579780459404,0.04947199672460556,0.0482553206384182,0.021095089614391327,-0.051149796694517136,-0.011565074324607849,-0.07080915570259094,-0.035241223871707916,0.07486134767532349,0.049579549580812454,0.036381691694259644,-0.018222296610474586,0.014419643208384514,0.003961469046771526,-0.06182360276579857,0.0762682557106018,-0.06378418207168579,0.07534769922494888,0.015297836624085903,0.042582977563142776,-0.034707263112068176,0.024715717881917953,0.06146099045872688,0.031607624143362045,-0.04416392743587494,0.065857894718647,0.06137138232588768,-0.04145650193095207,0.05724224075675011,0.006297348067164421,-0.05325889214873314,-0.03015669248998165,-0.05248149484395981,-0.012473148293793201,-0.06840908527374268,-0.023443758487701416,0.01879875175654888,0.04484470561146736,0.02760533057153225,-0.026107044890522957,-0.04954153671860695,0.07282499969005585,0.07855689525604248,-0.07749426364898682,-0.021810704842209816,-0.012213294394314289,0.023325076326727867,-0.03428855910897255,-0.039741769433021545,0.035643063485622406,0.040091048926115036,-0.04168659448623657,0.03848545625805855,0.08672303706407547,-0.07015769928693771,0.056685976684093475,-0.02422550693154335,-0.010322719812393188,-0.032002042979002,0.001627385034225881,0.043494101613759995,0.06509024649858475,-0.07548168301582336,0.024783620610833168,0.039700694382190704,0.05785626545548439,-0.053304076194763184,0.015182795003056526,-0.04081600159406662,0.03537031635642052,-0.002180654788389802,-0.018523303791880608,0.05238848924636841,-0.043038565665483475,0.04759158566594124,-0.06294643878936768,0.008365643210709095,0.008427197113633156,0.06002604961395264,0.037518516182899475,0.0167260579764843,0.02303168550133705,0.03754624351859093,0.06926854699850082,0.02176308073103428,-0.024917470291256905,0.04822996258735657,0.02471092902123928,-0.048671845346689224,-0.0035512137692421675,-0.007505436893552542,-0.010771066881716251,0.024060500785708427,-0.007210263982415199,-0.039944376796483994,-0.0457785427570343,0.02031630463898182,-0.02801746129989624,-0.03777613490819931,-0.07175133377313614,0.011755176819860935,0.07096412777900696,0.006314850877970457,-0.02056245692074299,-0.06793711334466934,0.06678257137537003,-0.02454586699604988,0.0062461066991090775,0.04375964403152466,-0.00362918502651155,0.03816616162657738,-0.052331700921058655,-0.019665682688355446,0.033453427255153656,0.008404976688325405,-0.07549247145652771,-0.08439679443836212,0.04320552200078964,0.04057567939162254]},{"id":"djinn","vector":[0.04951596260070801,-0.05826224014163017,-0.05663503706455231,0.004377034958451986,-0.006912075448781252,-0.0490487776696682,0.009454941377043724,-0.06690819561481476,0.007667426485568285,-0.032954052090644836,0.054015498608350754,-0.03829406946897507,0.010768132284283638,0.07009180635213852,-0.04387756064534187,-0.05824723094701767,-0.056889452040195465,-0.025027958676218987,-0.03905370458960533,0.04123857244849205,-0.023377113044261932,-0.020563187077641487,0.059929683804512024,-0.02934747003018856,-0.04226182773709297,-0.03334052860736847,-0.03373311087489128,-0.01265767216682434,-0.05322180688381195,-0.028208205476403236,0.037936341017484665,-0.04487674683332443,-0.06393769383430481,-0.028860853984951973,0.04891020804643631,0.013013538904488087,-0.04440965875983238,0.034614428877830505,0.031922597438097,-0.05355207249522209,-0.029752932488918304,0.0396917499601841,0.05405161902308464,0.013712970539927483,-0.040316108614206314,-0.017813878133893013,-0.07228472828865051,0.032984040677547455,0.05296829342842102,0.0488198883831501,0.06630302965641022,-0.0761086568236351,0.013466055504977703,-0.053279951214790344,-0.012772798538208008,0.00799323245882988,0.06937848031520844,0.030655337497591972,0.02855858951807022,-0.0648873969912529,-0.0332510769367218,-0.029760101810097694,-0.05107375979423523,0.0003124835202470422,-0.010365364141762257,-0.0048946840688586235,0.08152437210083008,-0.010519309900701046,0.08844099938869476,-0.030250459909439087,-0.026685697957873344,-0.021756114438176155,-0.0010270923376083374,0.06285480409860611,-0.03606567159295082,-0.05582038685679436,0.02006216160953045,0.018045827746391296,-0.010118445381522179,0.07357814908027649,0.030649036169052124,0.05597860366106033,-0.04121527820825577,-0.01573590561747551,-0.06056932732462883,0.044187020510435104,-0.022284377366304398,0.05763781815767288,-0.027748191729187965,0.07092305272817612,-0.05200273171067238,-0.0438024066388607,-0.0660618245601654,0.024223698303103447,-0.04810798168182373,0.03634878247976303,-0.07585693895816803,0.01371773425489664,-0.07025615125894547,-0.045723628252744675,-0.0704086646437645,-0.026075435802340508,-0.017708197236061096,0.020787253975868225,-0.04030236974358559,0.029008962213993073,-0.05203618109226227,0.006336048245429993,0.07412423193454742,0.04127271845936775,-0.05276491492986679,-0.05879149213433266,-0.016328636556863785,-0.06731222569942474,-0.04811510816216469,0.037726715207099915,-0.005068723112344742,-0.004549954552203417,-0.06783252954483032,0.056201014667749405,-0.046350035816431046,-0.07672633230686188,0.04772252216935158,-0.07262961566448212,-0.044898871332407,0.017254695296287537,-0.04842131957411766,0.050587598234415054,0.04649420455098152,-0.07853623479604721,-0.04031115397810936,-0.04647168144583702,-0.0024393375497311354,0.03859100118279457,-0.020169924944639206,-0.06894523650407791,-0.016390975564718246,-0.0380091518163681,0.01397677231580019,0.037486545741558075,0.0006807844620198011,-0.02451452426612377,0.0624186173081398,0.0719854012131691,-0.002739570802077651,0.028473293408751488,0.04099871963262558,0.00969200860708952,0.02551848441362381,0.07830628007650375,-0.04152935743331909,0.013501354493200779,-0.07162639498710632,0.02780209854245186,-0.015862498432397842,-0.00793044175952673,0.023454010486602783,-0.06638876348733902,-0.015700597316026688,-0.04115450382232666,0.0061936089769005775,0.0172122735530138,0.040857091546058655,0.010903284884989262,0.0036461050622165203,0.028437983244657516,0.00831118319183588,-0.07877526432275772,-0.018937723711133003,0.060447171330451965,-0.04654792323708534,-0.0117020383477211,-0.010358404368162155,0.021196477115154266,-0.043463919311761856,0.03804853931069374,-0.04715820029377937,0.056536123156547546,0.07198351621627808,0.06616446375846863,-0.04963010549545288,0.08367440104484558,0.04664604365825653,-0.024875761941075325,0.017378421500325203,0.033017661422491074,0.029902229085564613,0.055047694593667984,0.07835357636213303,-0.05357784405350685,-0.020731966942548752,-0.002043267944827676,-0.011525630950927734,-0.006203973200172186,0.07310100644826889,-0.07858846336603165,0.008735602721571922,0.03226962685585022,-0.011771634221076965,0.0798417255282402,0.03195168823003769,-0.011549838818609715,0.03542746230959892,0.011128338985145092,-0.04731875658035278,-0.06588191539049149,0.03850523754954338,-0.009865500032901764,0.0653800442814827,0.07538595795631409,0.009160813875496387,-0.041982997208833694,0.06655257195234299,0.019469138234853745,0.05811005085706711,-0.031818635761737823,-0.033720605075359344,0.030066967010498047,0.07034658640623093,0.0065787374041974545,0.0537705197930336,-0.04940945282578468,-0.021162448450922966,-0.05184830725193024,0.05915191397070885,-0.0380159430205822,-0.014418165199458599,-0.0140725988894701,0.024029860273003578,0.0652228519320488,0.0037605867255479097,0.008522991091012955,0.04646650701761246,0.01315462775528431,0.0380207821726799,0.0054231672547757626,0.03797122836112976,0.04282528907060623,0.06298164278268814,0.022982893511652946,-0.011060110293328762,-0.02874848246574402,0.02947978675365448,-0.03636883571743965,-0.01969209499657154,-0.010885016992688179,0.006755396258085966,-0.03302573412656784,0.04884893819689751,-0.0032095229253172874,0.06870900094509125,-0.020572280511260033,-0.041256844997406006,-0.07286123931407928,0.02896559052169323,-0.0010336224222555757,-0.03035592846572399,-0.053403567522764206,-0.03697165474295616,0.07270164787769318,-0.03871450573205948,0.02129756659269333,0.01201110240072012,-0.06814825534820557,-0.05924772843718529,0.006596848368644714,0.01696084253489971,0.008267471566796303,0.005502947606146336,-0.06490238010883331,0.045491889119148254,-0.07168492674827576,-0.02957398071885109,-0.02433520369231701,0.02543472684919834,0.07666891813278198,-0.033813413232564926,0.03650400787591934,-0.04218640923500061,0.0167408287525177,0.05634988844394684,0.0765576884150505,0.05226530134677887,0.012005474418401718,-0.00385918072424829,-0.06321743875741959,-0.08233465999364853,0.019306400790810585,-0.06828770041465759,-0.041405558586120605,-0.048683714121580124,0.016809828579425812,0.062148209661245346,0.01753428392112255,-0.0029879221692681313,-0.049914710223674774,0.04476218298077583,0.009664105251431465,0.06239001825451851,0.026854313910007477,0.0029202718287706375,0.04657759144902229,-0.019201161339879036,0.017179260030388832,0.014154049567878246,-0.015001518651843071,0.03841998055577278,0.009410444647073746,0.00950696412473917,-0.070113405585289,-0.03048972226679325,0.001405137125402689,0.0016440576873719692,0.056623853743076324,-0.07953483611345291,-0.041170891374349594,0.05290871858596802,-0.05448083579540253,-0.024899832904338837,-0.03469599410891533,-0.08075316250324249,0.05148350074887276,-0.05613444745540619,0.0005746818496845663,0.0659470185637474,-0.00905807688832283,-0.03499556705355644,-0.023505141958594322,0.06476233154535294,-0.018010450527071953,-0.02439890056848526,-0.03832628205418587,-0.08239979296922684,-0.05463109165430069,0.06242848560214043,-0.043158020824193954,0.07190922647714615,0.08428268134593964,-0.034659210592508316,0.028051499277353287,0.04566168412566185,0.03603443130850792,0.07349923253059387,0.04427630826830864,0.04135812819004059,0.06435378640890121,-0.034537527710199356,0.057958561927080154,0.00826832465827465,0.05511714890599251,-0.0805273950099945,0.028248218819499016,0.0034505075309425592,-0.0031696022488176823,0.028886178508400917,0.021357588469982147,-0.030544975772500038,-0.0766770988702774,0.021435340866446495,-0.007176918908953667,0.042874306440353394,0.06034836173057556,0.059625543653964996,-0.039452120661735535,0.007156067062169313,0.00408557616174221,-0.04334466904401779,-0.028903871774673462,-0.031380683183670044,-0.0383918471634388,-0.07562679052352905,0.03681563958525658,0.014185500331223011,-0.04770657792687416,-0.06191540136933327,0.013578997924923897,-0.016998032107949257,0.012789386324584484,-0.03454453498125076,0.014575058594346046,0.03195949271321297,0.036462634801864624,-0.061788160353899,0.03126043453812599,0.0430796854197979,0.0036879207473248243,0.05772760137915611,-0.04452831298112869,-0.035437747836112976,-0.021416407078504562,-0.055935025215148926,-0.025940606370568275,0.03513029217720032,-0.01377798244357109,0.06995391845703125,0.04047394543886185,0.04226366803050041,-0.05847153440117836,-0.050014931708574295,-0.06216452643275261,-0.029561487957835197,0.07329287379980087,0.0006400442798621953,0.06525139510631561,-0.02179620787501335,-0.024259552359580994,0.05143076553940773,-0.06641611456871033,0.08080822229385376,-0.030563201755285263,0.053743403404951096,0.03449150547385216,0.006753543857485056,0.029443979263305664,0.018532222136855125,0.05056249350309372,0.05902351438999176,-0.03351017087697983,0.07819060236215591,0.018530843779444695,-0.0016184898559004068,0.06998223811388016,-0.022345956414937973,-0.04318467155098915,-0.04139629006385803,-0.056808337569236755,-0.05429384484887123,-0.01918884366750717,-0.060327813029289246,0.057424865663051605,-0.06600470840930939,0.04235401749610901,0.0032946893479675055,-0.04814528301358223,0.044833313673734665,0.0473780483007431,-0.07789617031812668,0.04815928637981415,-0.034224025905132294,-0.015252611599862576,-0.04594755545258522,-0.034212302416563034,0.03380861133337021,0.03907305747270584,-0.07043793052434921,0.05396384000778198,0.07330290973186493,-0.07849736511707306,0.06309789419174194,-0.026897132396697998,0.04794199764728546,-0.0520608015358448,0.020294370129704475,0.0028377724811434746,-0.0050000823102891445,-0.07358428090810776,-0.0082617262378335,0.014638584107160568,0.04541141539812088,-0.062345828860998154,-0.0049093421548604965,-0.033282652497291565,-0.032654475420713425,0.03492879495024681,0.008462677709758282,0.04400651901960373,-0.04886654391884804,0.051030661910772324,-0.03377832472324371,-0.05059583857655525,0.007755521684885025,0.07251127809286118,-0.0011219796724617481,0.015640035271644592,0.013750690035521984,0.0403166301548481,0.04650925099849701,-0.029860982671380043,0.03389947488903999,0.0527268685400486,-0.031920868903398514,0.010547014884650707,-0.02203330211341381,0.022476524114608765,-0.043806757777929306,-0.0021867419127374887,0.04747164621949196,-0.058659061789512634,-0.054832521826028824,-0.018345825374126434,0.026411816477775574,-0.036141812801361084,-0.05972123518586159,0.003868614789098501,0.07963883876800537,-0.02633071132004261,0.07142551988363266,-0.04807773977518082,0.06988286972045898,-0.03563280403614044,0.03365581855177879,0.045469705015420914,-0.03124857321381569,0.03182443603873253,-0.018285874277353287,0.011772042140364647,0.049923431128263474,0.016236964613199234,-0.07895126193761826,-0.07882817834615707,0.027547718957066536,0.016813654452562332]},{"id":"down-like-me","vector":[-0.015870463103055954,-0.009789584204554558,-0.022722212597727776,0.003165989415720105,-0.015238694846630096,-0.0021480100695043802,0.027209408581256866,-0.0750923901796341,0.012067937292158604,0.0011706470977514982,0.022561047226190567,0.006622804328799248,0.02355087734758854,0.047578681260347366,-0.05767667293548584,-0.041306935250759125,-0.03287002816796303,-0.06214933469891548,-0.03022405318915844,0.048514049500226974,-0.0034043050836771727,-0.021794019266963005,0.053956884890794754,-0.016014808788895607,0.01774338074028492,-0.025877682492136955,-0.020202262327075005,0.004602449014782906,-0.038569867610931396,-0.04991507902741432,0.04176490381360054,-0.04814363270998001,-0.06894592195749283,-0.027394898235797882,0.040217265486717224,0.02562238834798336,-0.05152401700615883,0.022053740918636322,0.04351085424423218,-0.05514640361070633,-0.010794495232403278,0.0029051355086266994,0.056934699416160583,-0.03720609098672867,-0.0036250450648367405,0.008918000385165215,-0.07197178155183792,-0.0035305318888276815,0.0646539106965065,0.05893078073859215,0.04007246717810631,-0.05805449187755585,0.02551807463169098,-0.03964844346046448,0.03497392684221268,-0.02399200014770031,0.04532075673341751,0.019798576831817627,0.023334108293056488,-0.07673797756433487,-0.06664464622735977,-0.034249257296323776,-0.05149499699473381,-0.0022417998407036066,-0.036769624799489975,0.03827228769659996,0.08773457258939743,0.00038589746691286564,0.08779014647006989,-0.06739402562379837,-0.03274312987923622,-0.034542132169008255,-0.008832202292978764,0.020603274926543236,-0.06589876860380173,-0.053228702396154404,0.04497595131397247,-0.0398845374584198,0.008952314965426922,0.06099022924900055,0.007398713380098343,0.051851049065589905,0.0065400563180446625,-0.03393223509192467,-0.02893262356519699,0.05281417816877365,-0.00046023327740840614,0.06463176757097244,-0.07579021900892258,0.0468742698431015,-0.03543682023882866,0.005052173510193825,-0.04684722423553467,0.02340957336127758,-0.028984740376472473,0.06908833235502243,-0.07707700878381729,-0.013877769000828266,-0.04755096882581711,-0.0329926572740078,-0.07980788499116898,-0.0024126332718878984,-0.028944075107574463,0.0403301864862442,-0.01610679365694523,-0.0033188979141414165,-0.04001459851861,0.07265037298202515,0.061911728233098984,-0.018024330958724022,-0.010048464871942997,-0.055788151919841766,0.012910657562315464,-0.060074470937252045,-0.025105996057391167,0.04219704121351242,0.042394787073135376,0.035600148141384125,-0.06538443267345428,0.04556094482541084,-0.04244611784815788,-0.07440095394849777,0.04041160270571709,-0.06888941675424576,-0.031364258378744125,0.0010852080304175615,-0.029872415587306023,0.06689048558473587,0.03687935322523117,-0.05830857530236244,-0.05956949293613434,-0.029772356152534485,0.014775460585951805,0.04380510374903679,-0.012859491631388664,-0.07194916158914566,-0.011786949820816517,-0.08030625432729721,-0.02836865372955799,-0.029722275212407112,0.021009618416428566,-0.06983628123998642,0.04988369718194008,0.05537794530391693,-0.01672481745481491,0.008906359784305096,0.03744020313024521,0.008889654651284218,0.018384423106908798,0.045068223029375076,-0.022674228996038437,0.02225564606487751,-0.07129450887441635,0.010533510707318783,-0.02552316151559353,-0.041372835636138916,0.05939791724085808,-0.05052470788359642,0.03441159054636955,-0.05356542393565178,-0.012724056839942932,-0.00779750058427453,0.03402470052242279,0.001588658895343542,0.019426414743065834,0.025431709364056587,0.017824269831180573,-0.06760622560977936,-0.03498154878616333,0.06557473540306091,-0.06598914414644241,-0.021901115775108337,-0.03158489242196083,0.04837671294808388,-0.023534979671239853,0.05075899511575699,-0.05199341103434563,0.08321414142847061,0.08123309165239334,0.06903880089521408,-0.02542329579591751,0.07839329540729523,0.04846109077334404,0.011320474557578564,0.01454958226531744,0.042396895587444305,0.005806332919746637,0.05664666369557381,0.07217088341712952,-0.05099363252520561,-0.01376788504421711,-0.011126411147415638,-0.03378633037209511,0.03520497307181358,0.08077148348093033,-0.06176011264324188,-0.024034542962908745,0.0054645356722176075,-0.020405642688274384,0.07962946593761444,0.011446827091276646,0.029111219570040703,0.06368580460548401,0.042376644909381866,-0.04658948630094528,-0.029133515432476997,0.046207327395677567,-0.02157517522573471,0.019864466041326523,0.07658039033412933,-0.0004115939955227077,-0.029324090108275414,0.06916167587041855,-0.009796885773539543,0.06733748316764832,-0.0289457980543375,-0.0072051752358675,0.026840321719646454,0.06948300451040268,-0.008015542291104794,0.007979320362210274,-0.036731891334056854,0.005729675758630037,-0.06507179886102676,0.046213895082473755,-0.02699321135878563,-0.052654579281806946,0.035212382674217224,0.04395994544029236,0.02582409791648388,0.02059430070221424,0.007202197797596455,0.04892357066273689,0.01515177357941866,0.0032020965591073036,0.0726490244269371,0.050635065883398056,0.07377756386995316,0.033753737807273865,-0.058499254286289215,-0.04666557535529137,-0.013591230846941471,-0.01474748831242323,0.001605832134373486,0.02953629195690155,-0.017774198204278946,0.019589802250266075,0.020683417096734047,-0.010091402567923069,-0.02273077331483364,0.025805344805121422,-0.06663043051958084,0.016258785501122475,-0.0691494271159172,0.01693521998822689,0.010434766300022602,-0.01913040317595005,-0.07366949319839478,-0.04275297001004219,0.06825897097587585,-0.04125101491808891,0.0158072542399168,-0.00443029310554266,-0.06378306448459625,-0.04121718555688858,0.037290219217538834,0.0008642926113680005,-0.044384174048900604,-0.024939071387052536,-0.031533315777778625,0.046553369611501694,-0.06022129952907562,0.027132730931043625,-0.025759244337677956,0.02173675410449505,0.0819186419248581,-0.038949742913246155,0.03817751631140709,-0.040471892803907394,0.02298721671104431,0.06409014761447906,0.07145869731903076,0.039567459374666214,0.006821393501013517,-0.046309735625982285,-0.07737124711275101,-0.07268251478672028,0.04685746505856514,-0.030488362535834312,-0.05316672474145889,-0.04272469878196716,-0.00884518027305603,0.046136524528265,-0.017998823896050453,-0.007172863930463791,-0.04978374019265175,0.06251021474599838,0.03234388306736946,0.04521200805902481,0.050528332591056824,0.024008357897400856,0.05364735797047615,-0.03390160948038101,0.0375252366065979,0.040497004985809326,0.004211489576846361,0.008625779300928116,0.019382111728191376,-0.026545504108071327,-0.084989033639431,0.0020389745477586985,-0.02119465358555317,0.017007820308208466,0.07105729728937149,-0.07147962599992752,-0.0636684000492096,0.04943079501390457,-0.021814294159412384,-0.04864072799682617,-0.05947474390268326,-0.07682088017463684,0.0618453286588192,-0.030983423814177513,-0.01882280595600605,0.04547132924199104,0.027851281687617302,-0.011803694069385529,0.005229433532804251,0.036662086844444275,-0.049956634640693665,-0.023845575749874115,-0.04359900951385498,-0.06734782457351685,-0.03018375113606453,0.04835982620716095,-0.004054837394505739,0.06748270243406296,0.08118877559900284,0.011375855654478073,0.01622997596859932,-0.016700314357876778,0.02529429830610752,0.07742686569690704,0.03383574262261391,0.040750809013843536,0.04976426810026169,-0.04483962059020996,0.05715344101190567,0.010162202641367912,0.05434173345565796,-0.07028217613697052,0.049787964671850204,0.0174030102789402,-0.015675824135541916,-0.009599483571946621,0.060526080429553986,-0.0027959737926721573,-0.06652425229549408,0.03802772983908653,0.04449110105633736,0.0303230881690979,0.017807653173804283,0.04854045435786247,-0.047207508236169815,0.01564457081258297,0.041489362716674805,-0.007571513298898935,-0.060211408883333206,-0.006218704394996166,-0.06139308586716652,-0.056731440126895905,-0.00897594541311264,0.04841887205839157,-0.05860840156674385,-0.0756964311003685,0.017860090360045433,-0.016917258501052856,0.03347213566303253,-0.015540185384452343,0.007356001529842615,0.009876958094537258,0.03568172827363014,-0.06455446779727936,0.053128454834222794,0.04308882728219032,-0.02050665393471718,0.07168250530958176,-0.021746428683400154,-0.06418271362781525,-0.03929824009537697,-0.05345483124256134,-0.04776826873421669,-0.02602393366396427,0.027417229488492012,0.06427700072526932,0.05784712731838226,0.06120884791016579,-0.07006970793008804,-0.05571603775024414,-0.05379617586731911,-0.04388829693198204,0.07716575264930725,0.027593176811933517,0.07102194428443909,-0.029526356607675552,-0.05117063969373703,0.06554699689149857,-0.06970798969268799,0.06598615646362305,-0.03731758892536163,0.07032506912946701,0.005422648508101702,0.019246142357587814,0.01691768318414688,-0.011653377674520016,0.03743506222963333,0.04409296065568924,-0.0177825428545475,0.07649074494838715,0.04948835074901581,-0.054303426295518875,0.03311149403452873,-0.0132909519597888,-0.061666276305913925,-0.05700337141752243,-0.05948154628276825,-0.03195791319012642,-0.05501198396086693,-0.05094703659415245,0.0057000648230314255,-0.004917383659631014,0.014774799346923828,-0.008715306408703327,-0.05532972142100334,0.057248327881097794,0.07172956317663193,-0.06407999992370605,0.015990637242794037,0.02333211898803711,0.014322756789624691,0.007292946334928274,-0.014510099776089191,0.015581876039505005,0.043223001062870026,-0.07035426050424576,0.0696464255452156,0.08442791551351547,-0.07873471081256866,0.06318505108356476,-0.015020858496427536,0.031997404992580414,-0.03383465111255646,0.03382667899131775,0.01554708369076252,0.03373077139258385,-0.07133292406797409,-0.02206968329846859,0.021644342690706253,0.06022569537162781,-0.07824866473674774,0.00006722958642058074,-0.05836423486471176,-0.03043387457728386,0.0374847911298275,-0.007912068627774715,0.03715104982256889,-0.03314996138215065,0.02690785937011242,-0.05415159463882446,-0.06840942800045013,0.033525120466947556,0.0711570531129837,0.0005151871591806412,0.008817628026008606,0.004102236591279507,0.04117019101977348,0.07328979671001434,-0.02560056559741497,0.04747806861996651,0.06616517156362534,-0.020683927461504936,-0.04166441038250923,-0.04600775986909866,0.018598780035972595,-0.032203804701566696,0.025881938636302948,0.0455327033996582,-0.060863565653562546,-0.05936629697680473,-0.01575324684381485,-0.01712688058614731,-0.03849506378173828,-0.07243772596120834,0.02954154461622238,0.07191817462444305,-0.016092520207166672,0.0593293160200119,-0.04899539053440094,0.07947837561368942,-0.020511725917458534,0.03113560564815998,0.07108306139707565,-0.026985280215740204,0.009325014427304268,-0.02076152339577675,0.010331177152693272,0.024869568645954132,0.03023541159927845,-0.07101447135210037,-0.0668487474322319,0.0374717153608799,0.014721267856657505]},{"id":"dreams-spill","vector":[0.0458487942814827,-0.027285726740956306,0.00270871352404356,0.04098493233323097,-0.03434407711029053,0.011304954066872597,-0.01713615655899048,-0.07635408639907837,0.056483540683984756,0.048528239130973816,0.017626771703362465,0.005822135601192713,-0.04402549937367439,-0.014950609765946865,-0.06794768571853638,-0.014510728418827057,-0.06401482969522476,-0.07594053447246552,-0.03844548016786575,-0.004642249085009098,0.028897074982523918,0.01634395308792591,0.03998642414808273,-0.04912613704800606,0.009130683727562428,0.02006261609494686,-0.012197722680866718,-0.024335794150829315,-0.06127789244055748,-0.027930304408073425,0.0606800876557827,-0.054504286497831345,-0.015133175067603588,-0.04506330192089081,0.0663488507270813,0.008494476787745953,-0.04404417425394058,0.06264741718769073,0.05047227069735527,-0.03228330984711647,-0.016036588698625565,0.008978270925581455,0.07768696546554565,-0.04154038429260254,-0.005820986349135637,0.023651346564292908,-0.03833102807402611,-0.050308723002672195,0.05850395932793617,0.0755167007446289,-0.008966724388301373,-0.041205622255802155,0.01695352792739868,-0.02159118466079235,0.0008344561792910099,-0.0626535564661026,0.048423465341329575,0.03983599692583084,0.007331921719014645,-0.07836949825286865,-0.07975883036851883,-0.04931112378835678,-0.04459035024046898,0.05410582572221756,-0.0002475889923516661,0.02390320785343647,0.07614054530858994,0.025066589936614037,0.0776154026389122,-0.017028382048010826,-0.04307776317000389,-0.05124446377158165,-0.006392218172550201,0.014862015843391418,-0.05629953369498253,-0.05430459603667259,-0.013582788407802582,0.06116931885480881,0.0003621396899688989,0.03836015239357948,0.009337681345641613,-0.006527886260300875,0.029863595962524414,-0.021240785717964172,-0.04231498762965202,0.039725687354803085,-0.007323329336941242,0.07649049907922745,-0.044904403388500214,0.04835062846541405,-0.03560690954327583,0.011030278168618679,-0.025732217356562614,0.028607670217752457,-0.02840837836265564,0.052672192454338074,-0.07435960322618484,-0.06243830919265747,-0.01714392378926277,-0.0636642798781395,-0.08333231508731842,0.017955129966139793,-0.016045473515987396,-0.003916759975254536,-0.03941208869218826,-0.003844232065603137,-0.042298655956983566,0.07800984382629395,0.0004667921457439661,0.06210611015558243,-0.03624740615487099,-0.08253028243780136,-0.0008283332572318614,-0.025520656257867813,-0.06609134376049042,0.007549786474555731,0.02397630736231804,0.06817837804555893,-0.06620853394269943,0.04159475117921829,-0.005993045400828123,-0.06586316972970963,-0.012984476052224636,-0.05819368734955788,-0.030416637659072876,0.0376441515982151,-0.018205301836133003,0.041813649237155914,-0.008358473889529705,-0.06670939177274704,-0.033965855836868286,-0.03060743398964405,-0.042568035423755646,-0.013519184663891792,-0.024299435317516327,-0.07071907073259354,0.022123564034700394,-0.05105546861886978,0.007261446677148342,0.0622057281434536,0.0029926232527941465,-0.0630708858370781,0.04317784681916237,0.06076814606785774,-0.046284910291433334,-0.026211388409137726,0.04734501615166664,0.045017827302217484,0.019439727067947388,0.04662172496318817,-0.023818474262952805,0.003945008385926485,-0.05685598775744438,-0.05074923485517502,-0.020251071080565453,-0.05893457680940628,0.0487932525575161,-0.01729164458811283,0.05829935893416405,-0.04211099073290825,-0.016390487551689148,-0.028506390750408173,0.06436686217784882,-0.016773618757724762,-0.01045518834143877,0.034113310277462006,-0.0009815278463065624,-0.03563836216926575,0.02642841450870037,0.04183516651391983,-0.052351418882608414,0.002809859113767743,0.016683870926499367,0.028621334582567215,-0.0007491621654480696,0.01265799906104803,-0.062858447432518,0.06636545062065125,0.08324150741100311,0.0423133485019207,-0.008047465234994888,0.0771133154630661,0.029084401205182076,0.01558731310069561,0.057452909648418427,0.08412478119134903,-0.030995836481451988,0.04947832599282265,0.0432683564722538,-0.03849589452147484,0.0029435011092573404,0.008059162646532059,-0.03986355662345886,-0.013668973930180073,0.0762830376625061,-0.023526154458522797,-0.04953142628073692,0.027299050241708755,0.03418206796050072,0.08749610930681229,-0.013846449553966522,0.0268788393586874,0.04222908988595009,-0.007269356399774551,-0.032034602016210556,-0.03028484433889389,0.045954104512929916,0.0151933953166008,-0.044627539813518524,0.07624304294586182,0.028386203572154045,0.04476029798388481,0.031330328434705734,-0.025942856445908546,0.08033134043216705,-0.006995657458901405,-0.012401225045323372,-0.029508110135793686,0.041871435940265656,0.01461467519402504,0.06500272452831268,0.003564884653314948,0.02368401177227497,-0.06033283844590187,0.04676602780818939,-0.019094770774245262,-0.06954462826251984,-0.005474810488522053,-0.03284398466348648,-0.03007078543305397,-0.010586045682430267,0.040867261588573456,0.04904099926352501,0.02121279016137123,0.020110806450247765,0.059643782675266266,0.04230690747499466,0.07554902881383896,0.005147517193108797,0.05529020354151726,-0.05667340010404587,0.01117986161261797,0.013640130870044231,-0.0201210118830204,-0.005007786676287651,-0.016157427802681923,0.02820984646677971,0.04131658747792244,-0.020092764869332314,-0.0055794124491512775,0.00802085641771555,-0.08185317367315292,0.024004468694329262,-0.06620525568723679,0.01918344385921955,-0.019901270046830177,0.03548077493906021,-0.061622604727745056,0.005775684956461191,0.06269024312496185,-0.05093112960457802,-0.022352932021021843,0.020288798958063126,0.03878362104296684,0.0010183894773945212,0.018797364085912704,0.052168529480695724,-0.02346689999103546,-0.03941114991903305,-0.0790385827422142,0.047584306448698044,-0.07077521085739136,0.034288883209228516,-0.010429549030959606,-0.034484345465898514,0.07405558228492737,-0.03971722722053528,0.05135375261306763,-0.03443880006670952,0.0012922678142786026,0.06881055980920792,0.051791541278362274,0.008676218800246716,0.004020420368760824,-0.04096994921565056,-0.07374934107065201,-0.07333771884441376,0.017507124692201614,-0.06279681622982025,-0.03704464063048363,-0.014278052374720573,-0.046425286680459976,0.044608715921640396,-0.017915155738592148,-0.048584241420030594,-0.04808126017451286,0.05287450551986694,0.016524460166692734,0.023316463455557823,0.045635122805833817,-0.014093823730945587,0.03948143869638443,0.02406025119125843,0.044666778296232224,0.047343406826257706,0.01884418912231922,0.037218209356069565,-0.015236669220030308,-0.010235324501991272,-0.0841125100851059,0.01102202944457531,0.03984827175736427,-0.034450046718120575,0.07533726841211319,-0.06711924821138382,-0.046919357031583786,0.06845366954803467,-0.01379143912345171,-0.04412274435162544,-0.05162670090794563,-0.07496673613786697,0.054371051490306854,-0.0673772320151329,-0.04990917071700096,0.04163813591003418,-0.01867593452334404,-0.027477988973259926,-0.004011163022369146,0.001488725421950221,-0.04326219484210014,0.02476806379854679,0.010501987300813198,-0.07182510942220688,-0.0411224365234375,0.05509355664253235,0.021890008822083473,0.08454318344593048,0.08179250359535217,-0.02082439884543419,0.03669470548629761,-0.012235252186655998,-0.016261715441942215,0.023915525525808334,-0.04593105986714363,0.029531637206673622,-0.01409427635371685,-0.047679603099823,0.048296499997377396,0.024988457560539246,0.05308378487825394,-0.08334675431251526,0.06919602304697037,0.015872523188591003,0.04669557511806488,0.023123467341065407,0.07770828902721405,-0.013945482671260834,-0.05369590222835541,0.0012147048255428672,0.0302621740847826,0.05133878439664841,0.026812242344021797,0.04130207374691963,-0.009856932796537876,0.032011307775974274,-0.02242521569132805,-0.058479245752096176,-0.03331182897090912,-0.05079542100429535,-0.024874554947018623,-0.07017222791910172,0.026112984865903854,0.06090673804283142,-0.07921432703733444,-0.07929743081331253,-0.0219748392701149,-0.03701241314411163,0.044943202286958694,-0.0065597775392234325,0.031871065497398376,0.02590695209801197,0.03565774857997894,-0.065489262342453,0.04595821723341942,0.05235586687922478,0.01636701077222824,0.07688581198453903,-0.06626223027706146,-0.059091534465551376,0.018119975924491882,-0.0601436048746109,-0.019395804032683372,-0.029275283217430115,0.014470539055764675,0.0662127137184143,0.027557140216231346,0.06090005114674568,-0.06600743532180786,-0.06532371044158936,-0.082039013504982,-0.03548853471875191,0.08249987661838531,0.008991437964141369,0.058245815336704254,-0.030285203829407692,0.004255934618413448,0.057687800377607346,-0.05472024902701378,0.08349116146564484,-0.06580742448568344,0.06300723552703857,0.01721746288239956,0.002837166655808687,-0.028168288990855217,-0.008268539793789387,0.057561974972486496,0.04339847341179848,-0.06398919969797134,0.056132685393095016,0.05369347706437111,-0.06540240347385406,0.009284976869821548,0.03124629519879818,-0.05772412195801735,-0.06048872321844101,-0.053257234394550323,-0.04361211508512497,-0.058967217803001404,-0.022653728723526,-0.0005818695644848049,-0.018937135115265846,0.0301209706813097,0.0006703255930915475,-0.050221726298332214,0.04065901041030884,0.06633497774600983,-0.06318588554859161,-0.00861833244562149,-0.060780808329582214,0.053897421807050705,-0.03595205768942833,-0.02591177262365818,0.046972960233688354,0.048134855926036835,-0.0358322374522686,0.05954843759536743,0.08790669590234756,-0.07839532196521759,0.0679377019405365,0.015168818645179272,0.02612687274813652,-0.06269955635070801,0.022887252271175385,-0.005075376480817795,-0.028640856966376305,-0.07537566125392914,0.01700848527252674,0.04734081029891968,0.03823845088481903,-0.024353623390197754,0.051124438643455505,-0.025037681683897972,0.016892321407794952,0.04427643120288849,-0.015867432579398155,0.059419188648462296,-0.04864608868956566,0.02990855649113655,-0.06624173372983932,-0.046840500086545944,0.014186916872859001,0.06355100870132446,0.028613504022359848,-0.0290867667645216,0.04938412457704544,0.0215140450745821,0.05608060210943222,0.06997383385896683,-0.0016524370294064283,0.06689850986003876,-0.0194412712007761,-0.0658651813864708,-0.04805077239871025,0.0010063264053314924,-0.012688727118074894,0.026915015652775764,0.005998777225613594,-0.007774033583700657,-0.06498101353645325,0.01375049352645874,0.036421846598386765,-0.02069748379290104,-0.05227659270167351,0.013071106746792793,0.07475928962230682,-0.008888492360711098,-0.03199377655982971,-0.053545404225587845,0.07332053035497665,-0.03932050243020058,-0.011125942692160606,0.025867950171232224,-0.028140855953097343,0.014722908847033978,-0.004527989309281111,-0.017099183052778244,0.01238180510699749,0.01176733709871769,-0.08132335543632507,-0.07651104032993317,-0.005358146037906408,0.027597961947321892]},{"id":"elephants","vector":[0.05254671722650528,-0.04235884174704552,-0.029620977118611336,0.01051563024520874,-0.004949723836034536,0.01993175782263279,0.03773218393325806,-0.06358171254396439,0.007573884911835194,0.02007880061864853,-0.014348601922392845,-0.005164763890206814,-0.03414425998926163,-0.0049241515807807446,-0.05708028003573418,-0.013940748758614063,-0.04912162199616432,-0.07069099694490433,-0.029555419459939003,0.006703195162117481,0.01072623860090971,-0.013933193869888783,0.05872179940342903,-0.023892957717180252,0.04379482939839363,-0.030908159911632538,-0.023974062874913216,-0.03930387645959854,0.005225888453423977,-0.030456334352493286,0.050856150686740875,-0.06365861743688583,-0.05246242508292198,-0.00841977633535862,0.03565952926874161,0.004564352333545685,-0.04461950436234474,0.032002389430999756,0.057250529527664185,-0.03465075418353081,-0.0048768590204417706,0.007424359675496817,0.06874886155128479,0.003056313144043088,-0.017543558031320572,0.027163498103618622,-0.03099038638174534,0.006277258973568678,0.030539708212018013,0.07339152693748474,-0.035566847771406174,-0.010545402765274048,0.04045819491147995,-0.05438847839832306,-0.008644520305097103,-0.021547561511397362,0.033164553344249725,0.04987254738807678,0.005590776447206736,-0.058473851531744,-0.06186508387327194,-0.021401457488536835,-0.042433418333530426,-0.021392397582530975,-0.015260023064911366,-0.015144679695367813,0.09262286871671677,0.001065480406396091,0.078920878469944,-0.08298296481370926,-0.04791330173611641,-0.04101419448852539,-0.0044210003688931465,0.03003031201660633,-0.06270923465490341,-0.061295464634895325,0.03221801295876503,-0.05615726485848427,-0.013885551132261753,0.052495259791612625,0.009944768622517586,0.02887682057917118,0.003329560626298189,-0.02808612771332264,-0.034923989325761795,0.035039130598306656,-0.036419548094272614,0.04691440239548683,-0.024612702429294586,0.045242875814437866,-0.044073790311813354,0.026418015360832214,-0.01885817013680935,0.03157263249158859,-0.027851156890392303,0.05281350389122963,-0.06939779222011566,-0.010825075209140778,-0.032954610884189606,-0.021173670887947083,-0.08373772352933884,0.0023491624742746353,-0.03693739324808121,0.03132011368870735,-0.027465026825666428,0.0538826547563076,-0.031129732728004456,0.05898328125476837,0.06731413304805756,0.04707501083612442,0.005138999782502651,-0.05759773775935173,0.03480986878275871,-0.0695992037653923,-0.04042651876807213,0.047486811876297,0.031115027144551277,0.056225840002298355,-0.06594154238700867,0.04431787133216858,-0.018204020336270332,-0.078486368060112,0.03800208494067192,-0.05865221098065376,-0.04597776010632515,0.0007336302660405636,-0.03155141323804855,0.06280556321144104,0.04046763852238655,-0.08350775390863419,-0.03859037905931473,-0.04413226991891861,-0.0034417416900396347,0.03394081071019173,-0.026796815916895866,-0.05904929339885712,-0.014093976467847824,-0.06213637441396713,0.010980414226651192,0.00725465128198266,0.04811852425336838,-0.04315247759222984,0.05109348148107529,0.049266085028648376,0.002713731722906232,0.01753212884068489,0.07764386385679245,0.06057729572057724,0.0157163105905056,0.06028914824128151,-0.004520423244684935,0.01233235839754343,-0.07225307077169418,-0.05532455071806908,-0.03481396287679672,-0.015490866266191006,0.0545419417321682,-0.014822075143456459,0.06801243126392365,-0.03933805972337723,-0.020106475800275803,-0.039685118943452835,0.0502890944480896,0.007132598198950291,0.014458163641393185,0.028828782960772514,0.03775878623127937,-0.06945276260375977,-0.02418929524719715,0.06153358891606331,-0.047649186104536057,-0.015321506187319756,-0.03839566186070442,0.03570812568068504,-0.022949770092964172,0.015355468727648258,-0.06149161234498024,0.07864580303430557,0.079440176486969,0.07543212175369263,-0.04687883332371712,0.08877139538526535,0.04151712730526924,0.019495118409395218,0.06020835414528847,-0.01221390999853611,0.04574548080563545,0.05325688049197197,0.05379995331168175,-0.030464353039860725,-0.03982994705438614,-0.01824912615120411,0.009069523774087429,-0.0018784803105518222,0.08911165595054626,-0.055866941809654236,-0.03259899467229843,0.023526126518845558,0.0006364055443555117,0.07981878519058228,-0.029289210215210915,0.030108796432614326,0.03398403525352478,0.005320366006344557,-0.065786212682724,-0.06901831179857254,0.05461787059903145,-0.011489401571452618,0.05205954611301422,0.07016560435295105,0.022344211116433144,-0.025330323725938797,0.06325804442167282,-0.004879141226410866,0.06646198779344559,0.02280961163341999,-0.013030178844928741,0.03861534222960472,0.06737422198057175,-0.029358120635151863,0.03296063095331192,-0.03055856190621853,-0.011136488988995552,-0.058775413781404495,0.07389362901449203,-0.03598516061902046,0.00537746399641037,-0.004356920253485441,-0.01800733432173729,-0.0020199252758175135,-0.015095842070877552,0.03383414447307587,0.05836520716547966,-0.008228538557887077,-0.002845197217538953,0.07275812327861786,0.04026977717876434,0.05932966247200966,0.036347128450870514,-0.05418475344777107,-0.06007299944758415,0.033894240856170654,-0.0063380831852555275,-0.06546619534492493,0.03647833690047264,-0.03996913135051727,0.036887381225824356,-0.006951120216399431,-0.009740760549902916,-0.02517213486135006,0.029051464051008224,-0.07862664014101028,0.03149067610502243,-0.07840421795845032,0.008931094780564308,-0.061019763350486755,0.008040659129619598,-0.06341248005628586,0.0035945528652518988,0.09002012014389038,-0.012386571615934372,0.008798066526651382,-0.04923033341765404,-0.04993032291531563,-0.01895816996693611,0.02865014225244522,0.016501426696777344,-0.03959864005446434,-0.023913608863949776,-0.062986359000206,0.0615977980196476,-0.06934124231338501,0.01722768321633339,0.0022737763356417418,-0.014031861908733845,0.07985500991344452,-0.02819404937326908,0.04678173363208771,-0.029680268839001656,-0.019543921574950218,0.04886706918478012,0.06711927056312561,0.05278283357620239,0.005616137757897377,-0.027314450591802597,-0.07247479259967804,-0.060255732387304306,0.03248417750000954,-0.05242319405078888,-0.07285481691360474,-0.015314391814172268,-0.012996329925954342,0.06512854248285294,0.0020567455794662237,-0.05709836632013321,-0.05666404962539673,0.05498123914003372,0.024480748921632767,0.013536350801587105,0.05781031772494316,-0.029504552483558655,0.052441321313381195,-0.019867608323693275,0.045924052596092224,-0.0026506702415645123,0.009463339112699032,0.03937499225139618,0.024043017998337746,-0.02397855743765831,-0.08568821102380753,-0.007533230818808079,0.020979152992367744,0.0271294005215168,0.06962720304727554,-0.08404406160116196,-0.059702735394239426,0.04049578681588173,0.0041323076002299786,-0.03476586937904358,-0.07387493550777435,-0.0848800465464592,0.04592214897274971,-0.04901548847556114,-0.032420311123132706,0.06485152244567871,0.034909214824438095,-0.007638941053301096,-0.04135644808411598,-0.005261033773422241,-0.03460022807121277,-0.009069766849279404,-0.03556644171476364,-0.05109132453799248,-0.00666820676997304,0.03839229792356491,0.021711915731430054,0.08648573607206345,0.08261384069919586,0.016383057460188866,0.03737081587314606,-0.00814148224890232,0.02641395293176174,0.07057785987854004,0.025893142446875572,0.01760558970272541,-0.013986344449222088,-0.05777471512556076,0.04513842612504959,-0.024752376601099968,0.05698562040925026,-0.09005670249462128,0.05822886899113655,0.03730420768260956,-0.02038266882300377,-0.012491516768932343,0.06174358353018761,-0.033013708889484406,-0.06250445544719696,0.03001038171350956,-0.008152617141604424,0.04418589547276497,0.02948002889752388,0.04868384450674057,-0.03781919926404953,0.025076739490032196,0.025072205811738968,-0.02496315911412239,-0.06914495676755905,-0.04499277472496033,-0.023930633440613747,-0.0511203333735466,-0.01090002991259098,0.026081757619976997,-0.039796482771635056,-0.08186639100313187,-0.0009456591214984655,0.009075220674276352,0.02712460421025753,-0.011730755679309368,0.026893433183431625,-0.034870926290750504,-0.006750152446329594,-0.045890893787145615,0.047519903630018234,0.07024236023426056,0.013492036610841751,0.06725471466779709,-0.046046849340200424,-0.04097558185458183,-0.06281295418739319,-0.06299618631601334,-0.0247816015034914,-0.04188133031129837,-0.011388028040528297,0.0674557238817215,0.04908565431833267,0.05543234944343567,-0.07292705774307251,-0.053585998713970184,-0.061371393501758575,-0.04676033928990364,0.06651455909013748,-0.02418871596455574,0.03528676927089691,-0.027207620441913605,-0.043409496545791626,0.044806499034166336,-0.08363910764455795,0.07643073052167892,-0.02947920747101307,0.051186416298151016,0.0421832799911499,-0.00446773786097765,0.013667101971805096,-0.012086886912584305,0.024109413847327232,0.06254525482654572,-0.021787721663713455,0.08922089636325836,0.03644915297627449,-0.023650890216231346,0.03355032950639725,0.015055960975587368,-0.06096220389008522,-0.056934505701065063,-0.041061900556087494,-0.050973981618881226,-0.053987741470336914,-0.0597425140440464,-0.015306934714317322,-0.03147147595882416,0.022216064855456352,-0.011131235398352146,-0.0514855831861496,0.04271135851740837,0.07300914078950882,-0.08044996112585068,0.036310113966464996,-0.05531730130314827,0.04919227212667465,-0.03503945469856262,-0.025874901562929153,0.034520473331213,0.04844624549150467,-0.07532884925603867,0.015128906816244125,0.08482496440410614,-0.07778530567884445,0.07725807279348373,-0.01621720753610134,-0.021524040028452873,-0.04724567383527756,0.05318277329206467,-0.009124279022216797,0.007381676230579615,-0.07728254050016403,0.01499057188630104,0.011255382560193539,0.06004165858030319,-0.043789058923721313,-0.007578921038657427,-0.028202412649989128,-0.00833644438534975,-0.006620047148317099,-0.008731385692954063,0.037774618715047836,-0.03251230716705322,0.0360211580991745,-0.05629149451851845,-0.057548485696315765,0.027875127270817757,0.06020677834749222,-0.00048051716294139624,0.008602333255112171,-0.007853705435991287,-0.006997524295002222,0.04051969572901726,0.0004283305024728179,0.0021383531857281923,0.06412559002637863,-0.0019023390486836433,-0.011883842758834362,-0.029368946328759193,0.013030663132667542,-0.02075839601457119,0.0034227583091706038,0.03183804079890251,-0.033955153077840805,-0.06329929828643799,0.01891801692545414,0.0054785218089818954,-0.07193922996520996,-0.06453908979892731,0.017204875126481056,0.08215735852718353,0.008663001470267773,0.03267352283000946,-0.06646154075860977,0.07539820671081543,-0.04595377296209335,-0.003376893000677228,0.05455830320715904,-0.029657676815986633,-0.010433555580675602,-0.01626945473253727,0.028164653107523918,0.039168186485767365,0.03838980942964554,-0.08531145006418228,-0.07892929017543793,0.04432719573378563,0.06694061309099197]},{"id":"enmity-amnesiac","vector":[0.03874272480607033,-0.046016301959753036,-0.026795299723744392,0.03688228875398636,0.0005666749784722924,0.010213317349553108,-0.0036028074100613594,-0.05891972780227661,0.048468977212905884,0.016235558316111565,0.038823291659355164,0.017038920894265175,-0.025084979832172394,0.046529900282621384,-0.07540519535541534,-0.012375673279166222,-0.062415171414613724,-0.05395587161183357,-0.03500516712665558,0.025600630789995193,0.034192007035017014,-0.02595379389822483,0.05433231219649315,-0.027795184403657913,0.030605584383010864,-0.02482966147363186,-0.02413291297852993,-0.017833679914474487,-0.060478899627923965,-0.04819663614034653,0.04536242038011551,-0.04626785218715668,-0.01926969364285469,-0.02996307611465454,0.044689614325761795,0.030724763870239258,-0.05796912685036659,0.043170176446437836,0.06274441629648209,-0.05393907427787781,-0.018944043666124344,0.011344270780682564,0.05501096695661545,-0.046575579792261124,-0.004627159796655178,0.008859684690833092,-0.05103987455368042,0.004960216116160154,0.0294596329331398,0.041494715958833694,0.02270461618900299,-0.04366270825266838,0.007954524829983711,-0.0444544218480587,-0.017685141414403915,-0.010930885560810566,0.055281419306993484,0.0505591481924057,0.05970077961683273,-0.07363137602806091,-0.0600394569337368,0.0004597680235747248,-0.04070117324590683,0.03045704774558544,-0.056577250361442566,0.008622512221336365,0.0888020396232605,0.01630340702831745,0.08454485982656479,-0.05701176077127457,-0.009062845259904861,-0.014747532084584236,0.01687619462609291,0.04269396513700485,-0.039345238357782364,-0.05847793072462082,0.027033915743231773,-0.04613034799695015,-0.018724605441093445,0.06930997967720032,-0.006639341823756695,0.06552467495203018,-0.019635235890746117,0.01063686516135931,-0.06054868921637535,0.053070202469825745,-0.009512143209576607,0.06676886230707169,-0.05558357015252113,0.06218128278851509,-0.02392301894724369,0.00950819905847311,-0.03354553133249283,0.05689007043838501,-0.03333112969994545,0.03940948098897934,-0.08020281046628952,-0.04468080401420593,-0.04386446252465248,-0.04822957143187523,-0.07461634278297424,0.008159283548593521,-0.013797510415315628,0.026528408750891685,-0.01822829246520996,0.04712560027837753,-0.08156225830316544,0.07384999096393585,0.07185210287570953,0.0032458463683724403,-0.04798242077231407,-0.05527926981449127,-0.015251236036419868,-0.05354124680161476,-0.06062671169638634,0.0330931693315506,0.02413487248122692,0.033226776868104935,-0.0750352218747139,0.05401962250471115,-0.017643898725509644,-0.08425819873809814,0.011130976490676403,-0.07143343240022659,-0.05198930576443672,-0.009262531995773315,-0.02851291373372078,0.035575222223997116,0.04322558641433716,-0.06299936026334763,-0.06074012070894241,-0.054819971323013306,0.01572718657553196,0.04088301956653595,-0.030158139765262604,-0.0734744518995285,-0.03916626051068306,-0.05338943004608154,-0.037006206810474396,0.05019485205411911,-0.002748622326180339,-0.06598051637411118,0.06427791714668274,0.05049683898687363,0.0009283067774958909,-0.002058439888060093,0.05133901908993721,0.016049835830926895,0.0014398592757061124,0.06243569031357765,-0.012177974916994572,-0.003647690173238516,-0.06320064514875412,-0.013678899966180325,-0.061090193688869476,-0.04236430302262306,0.0621950589120388,-0.013336780481040478,0.06834658980369568,-0.047539614140987396,0.0038783077616244555,-0.026169434189796448,0.03334995359182358,-0.008417060598731041,-0.022268537431955338,0.0324285514652729,-0.016974616795778275,-0.06162504106760025,0.03724189102649689,0.06992381811141968,-0.05548612028360367,-0.022538000717759132,0.0075774118304252625,0.023329712450504303,-0.04633799195289612,0.004122963175177574,-0.07108724117279053,0.0764332264661789,0.07367165386676788,0.07382699102163315,-0.0022249079775065184,0.0854516252875328,0.03527428209781647,0.026153884828090668,0.04918821528553963,0.058578599244356155,0.013326103799045086,0.04732326418161392,0.06528863310813904,-0.048997774720191956,-0.03925028070807457,-0.00021907727932557464,-0.013608221895992756,0.0057714334689080715,0.08693211525678635,-0.06819106638431549,-0.03184270113706589,-0.01646001823246479,0.0075074550695717335,0.0849437266588211,-0.036532990634441376,0.009034087881445885,0.04136231541633606,0.021946372464299202,-0.055664896965026855,-0.04167865216732025,0.03961104154586792,-0.005536585580557585,0.02238364890217781,0.062170982360839844,0.02109619602560997,-0.0251619890332222,0.07967521995306015,-0.013766752555966377,0.05693647637963295,0.006039000581949949,-0.010832165367901325,0.00997651182115078,0.07158047705888748,0.00923631526529789,0.03452293574810028,-0.033422499895095825,0.005385705269873142,-0.06464394181966782,0.06400106102228165,-0.02432246506214142,-0.01981474831700325,-0.009251110255718231,-0.005956413224339485,0.03418790549039841,-0.03441832587122917,0.025370804592967033,0.056762855499982834,-0.005766154266893864,0.04016365855932236,0.05158408731222153,0.041658420115709305,0.07438682019710541,0.029279204085469246,0.013279601000249386,-0.037958383560180664,-0.002759766997769475,0.005844715051352978,-0.008105443790555,-0.006443683058023453,-0.03445516899228096,-0.0012141356710344553,0.040479015558958054,0.031160740181803703,-0.055074773728847504,0.05448902025818825,-0.07867351174354553,0.01040630042552948,-0.07082496583461761,-0.008009448647499084,-0.006744462065398693,0.008550380356609821,-0.06852170825004578,-0.030215643346309662,0.08643875271081924,-0.00020243081962689757,-0.018987387418746948,-0.0011396878398954868,-0.044468361884355545,-0.02282421477138996,-0.007579744327813387,0.01814589463174343,-0.03993820771574974,-0.016694068908691406,-0.023743871599435806,0.06311552971601486,-0.05991046130657196,0.002108869841322303,-0.030132854357361794,0.012534701265394688,0.058829568326473236,-0.05152375251054764,0.024629883468151093,-0.020528020337224007,0.007510902360081673,0.07517803460359573,0.08381021022796631,0.036830835044384,0.025493979454040527,-0.053019292652606964,-0.06789141893386841,-0.08100438863039017,0.031275779008865356,-0.028100721538066864,-0.02710537426173687,-0.0023797997273504734,-0.004698508884757757,0.06031985580921173,-0.0076671177521348,-0.001228471752256155,-0.045555729418992996,0.04413534700870514,0.034467458724975586,0.045501358807086945,0.03162335604429245,-0.0026379860937595367,0.06074333190917969,0.006630108691751957,0.028415020555257797,0.0011418744688853621,-0.00511364359408617,0.008639690466225147,0.008837465196847916,-0.03250528499484062,-0.07815556228160858,-0.007973146624863148,0.023115789517760277,0.006984912324696779,0.04152583330869675,-0.08123249560594559,-0.02734106034040451,0.0676373839378357,-0.011468246579170227,-0.04913521185517311,-0.049556151032447815,-0.07929344475269318,0.05951553210616112,-0.05473091080784798,-0.01903202384710312,0.06811349838972092,-0.02101224660873413,-0.03611786663532257,-0.028611794114112854,0.02493160218000412,-0.04878098890185356,-0.03428466618061066,-0.00874441396445036,-0.046234212815761566,-0.03794088959693909,0.0468473881483078,0.004717875737696886,0.0833018347620964,0.08607402443885803,0.02166752517223358,0.04180298000574112,-0.00426354119554162,0.033280111849308014,0.04716657102108002,0.017819594591856003,0.04214866831898689,0.017139483243227005,-0.04081175476312637,0.056989118456840515,-0.03543150797486305,0.04916847124695778,-0.08104070276021957,0.006174179725348949,0.041281163692474365,0.03947584331035614,0.0011073964415118098,0.0086166150867939,-0.018691765144467354,-0.0823453739285469,0.014405562542378902,0.03269598260521889,0.04829840734601021,0.02107841707766056,0.033415716141462326,-0.06551354378461838,0.004162533674389124,0.03659707307815552,-0.022588271647691727,-0.06291835755109787,-0.021180786192417145,-0.026347873732447624,-0.051275432109832764,0.019712723791599274,0.011132045648992062,-0.059921976178884506,-0.07837580889463425,0.00047714042011648417,0.008821392431855202,0.027890538796782494,0.002270854776725173,0.04735099524259567,0.004012813325971365,0.043938130140304565,-0.047923218458890915,0.05092485249042511,0.07614945620298386,-0.01169744785875082,0.053205616772174835,-0.041080981492996216,-0.06618639081716537,-0.06898283213376999,-0.053646884858608246,-0.014294331893324852,0.005405460949987173,0.011783501133322716,0.06634338945150375,0.038419853895902634,0.04969717934727669,-0.061649613082408905,-0.058447808027267456,-0.06869654357433319,-0.04585215821862221,0.07542734593153,0.004341262858361006,0.04627017304301262,-0.022554129362106323,0.032168567180633545,0.056095968931913376,-0.08424735069274902,0.07391677051782608,-0.045895766466856,0.06963129341602325,0.004706640262156725,0.0015889516798779368,0.017245730385184288,0.023702291771769524,-0.0048613534308969975,0.0394134484231472,-0.024179385975003242,0.08144485950469971,0.046742647886276245,-0.05985552445054054,0.039293114095926285,0.044517289847135544,-0.05178883299231529,-0.05792735889554024,-0.01975163444876671,-0.025285424664616585,-0.0525754950940609,-0.06074412167072296,0.04193646088242531,-0.052469342947006226,0.027259906753897667,-0.03835119679570198,-0.04013849049806595,0.05128581449389458,0.06644994020462036,-0.07877890020608902,-0.00048165759653784335,-0.06280208379030228,0.0433320626616478,-0.02753251977264881,-0.05756974592804909,0.050905317068099976,0.03811631351709366,-0.0756499245762825,0.037048015743494034,0.07886508107185364,-0.06645797938108444,0.06761164218187332,-0.03726547583937645,0.030068708583712578,0.00038171809865161777,0.01552205067127943,-0.011066312901675701,0.009309446439146996,-0.0692216008901596,0.00948844850063324,0.03982699662446976,0.060326866805553436,-0.053956255316734314,0.0011742563219740987,-0.06086552515625954,-0.0049321334809064865,0.024163583293557167,0.006667016539722681,0.0431031696498394,-0.0421457402408123,0.04375097155570984,-0.042219627648591995,-0.051509808748960495,0.0189979150891304,0.0657438114285469,-0.012767761945724487,0.030385345220565796,0.017357926815748215,0.043773941695690155,0.07253918051719666,0.01957988366484642,0.04651463404297829,0.06824526935815811,-0.02109755016863346,-0.007812870666384697,-0.04422781616449356,0.02184401825070381,-0.012697267346084118,0.011205388233065605,0.03125010430812836,-0.06051694601774216,-0.06168925762176514,-0.0014635786646977067,0.0013115917099639773,-0.050247106701135635,-0.06125940755009651,-0.0006742768455296755,0.07571353763341904,0.0042356811463832855,0.002761914161965251,-0.05873723328113556,0.08572548627853394,-0.045063458383083344,0.012718001380562782,0.06761746108531952,-0.03620779886841774,0.019834281876683235,-0.040140166878700256,0.024338234215974808,0.06840849667787552,0.028128530830144882,-0.07353014498949051,-0.07154429703950882,0.05487632006406784,0.02491389401257038]},{"id":"fear-and-trembling","vector":[0.023915203288197517,-0.023522736504673958,-0.03087751753628254,-0.017094537615776062,-0.03953108936548233,0.014416778460144997,0.02546408399939537,-0.07671980559825897,0.030034305527806282,-0.007804281543940306,0.04432491585612297,-0.004432860761880875,0.00970503967255354,0.04035024344921112,-0.07473108172416687,-0.0385926328599453,-0.024301575496792793,-0.0780668780207634,-0.03154006227850914,0.05626697093248367,0.02951231598854065,-0.04336199536919594,-0.00810061115771532,-0.033129364252090454,0.01365959644317627,-0.024085622280836105,-0.03127402067184448,-0.006800381932407618,-0.03641684353351593,-0.0637306272983551,0.05478427931666374,-0.04364551976323128,-0.06945159286260605,-0.02376704290509224,0.042638469487428665,0.01434055995196104,-0.05043575167655945,0.04560387134552002,0.06619153916835785,-0.04634940251708031,-0.005585875827819109,0.010533222928643227,0.061255794018507004,-0.038335707038640976,-0.03545939177274704,-0.010618705302476883,-0.04722331464290619,-0.06091291829943657,0.06481211632490158,0.0664573386311531,0.05626511573791504,-0.07932896167039871,0.03829842060804367,-0.04835048317909241,-0.0077731129713356495,-0.032068509608507156,0.0745147094130516,0.02572724223136902,0.0398474782705307,-0.06922858208417892,-0.032963305711746216,0.012049149721860886,-0.02953425422310829,0.018391059711575508,-0.002157816430553794,0.031061789020895958,0.08497381955385208,0.013585993088781834,0.09260723739862442,-0.06300453841686249,-0.02567232772707939,-0.0342373363673687,-0.04008522629737854,0.008676933124661446,-0.038085512816905975,-0.047316983342170715,0.029949549585580826,-0.025974636897444725,-0.013553950004279613,0.08388802409172058,0.026626769453287125,0.027939457446336746,0.011390789411962032,-0.004625707399100065,-0.04192846640944481,0.03876146301627159,0.008252255618572235,0.05548412725329399,-0.060698263347148895,0.03474786877632141,-0.003568011336028576,0.011887529864907265,-0.029028046876192093,0.03528527915477753,-0.046328105032444,0.04142836853861809,-0.0612199567258358,-0.04300421476364136,-0.054158780723810196,-0.06682579219341278,-0.06228041648864746,-0.028253767639398575,-0.01564662717282772,0.026951132342219353,-0.045950330793857574,0.013559786602854729,-0.06740757822990417,0.06531886756420135,0.05834771320223808,0.044206131249666214,-0.030221382156014442,-0.06778422743082047,0.003362406278029084,-0.05126058682799339,-0.06184128671884537,0.031859125941991806,-0.017185751348733902,0.010758165270090103,-0.06905315071344376,0.04219084978103638,-0.016094321385025978,-0.08481305092573166,0.047687895596027374,-0.0658869743347168,-0.034631747752428055,0.011218160390853882,-0.011613044887781143,0.06417979300022125,0.03349628672003746,-0.07415036112070084,-0.07661725580692291,-0.026396431028842926,0.012004668824374676,0.014862583950161934,-0.022216543555259705,-0.06312918663024902,0.05112370476126671,-0.049724504351615906,-0.022010846063494682,0.016832007095217705,0.020227765664458275,-0.06930239498615265,0.05048924311995506,0.0657680481672287,-0.008521291427314281,0.004039723891764879,0.03868657350540161,0.01711597666144371,0.013052263297140598,0.047084126621484756,-0.03735334053635597,0.009265746921300888,-0.06553614884614944,0.02796543575823307,-0.03758900240063667,0.012370522134006023,0.0489569790661335,-0.05563850700855255,0.029921235516667366,-0.045116592198610306,-0.015181789174675941,0.042387720197439194,0.03452097624540329,-0.004098809789866209,-0.0036369161680340767,0.026227431371808052,-0.0053660380654037,-0.06139232963323593,-0.006951803807169199,0.06776280701160431,-0.05160999298095703,-0.03172709047794342,0.026504669338464737,0.048360634595155716,-0.03339492157101631,0.014257180504500866,-0.03656458854675293,0.08243348449468613,0.07913780212402344,0.06450425833463669,-0.01922713592648506,0.08071470260620117,0.05899610370397568,-0.011148598045110703,0.005559304263442755,0.04508967697620392,0.033475179225206375,0.05713719502091408,0.08579529076814651,-0.06462548673152924,-0.030329952016472816,0.015718016773462296,-0.03589123860001564,0.022077277302742004,0.07585979253053665,-0.0391569659113884,-0.029625801369547844,0.01848970167338848,-0.027760230004787445,0.08646649122238159,-0.04941737651824951,0.03549465909600258,0.03414993733167648,0.010079027153551579,-0.04066085070371628,0.0014380763750523329,0.042198702692985535,-0.058812424540519714,0.0603877492249012,0.07112187892198563,0.010951314121484756,-0.010269613936543465,0.06244560331106186,0.04078340530395508,0.07569760829210281,-0.005311721470206976,-0.02615850791335106,0.00007097809429978952,0.06567312031984329,-0.00984059926122427,0.008322020061314106,-0.015611032024025917,0.005720373243093491,-0.045088764280080795,0.06343428790569305,-0.02144964225590229,-0.045118626207113266,0.018404405564069748,0.02121923863887787,0.047341540455818176,-0.008582759648561478,0.010626054368913174,0.034689437597990036,0.019338376820087433,0.003296676790341735,0.07294803112745285,0.026155078783631325,0.0752088651061058,0.028126226738095284,-0.005895445588976145,-0.047789789736270905,-0.008421639911830425,-0.015311348251998425,-0.03431285172700882,-0.0028288799803704023,-0.06483196467161179,0.014276174828410149,0.03300437703728676,0.01060719508677721,-0.04080556333065033,0.07077620178461075,-0.054425545036792755,0.03913494572043419,-0.0716484785079956,0.026473451405763626,0.005779390223324299,-0.029295967891812325,-0.024333279579877853,-0.030477920547127724,0.07424253225326538,-0.011369828134775162,0.005699236411601305,0.0056142425164580345,-0.025320712476968765,-0.009508868679404259,-0.015307960100471973,0.03196366876363754,-0.019121132791042328,-0.017432861030101776,-0.021512439474463463,0.06652456521987915,-0.053572993725538254,-0.013035588897764683,-0.01660202257335186,0.02545246295630932,0.06664205342531204,-0.03464125469326973,0.04550618305802345,-0.04888680949807167,-0.027901215478777885,0.0653383731842041,0.0808362290263176,0.056272584944963455,0.006218899507075548,-0.04288807883858681,-0.0798969641327858,-0.09192340821027756,0.05382142961025238,-0.032298311591148376,-0.04928556829690933,0.04367106035351753,-0.02970537729561329,0.0460788831114769,-0.0297084990888834,-0.05554407835006714,-0.04717626795172691,0.056846052408218384,0.040631335228681564,0.05109615996479988,0.05248260125517845,0.017811574041843414,0.046521008014678955,-0.005451850593090057,0.045464735478162766,0.025734703987836838,0.027271321043372154,0.01875011809170246,0.027915261685848236,-0.0322209857404232,-0.08835326880216599,-0.010490122251212597,0.023130152374505997,0.041187770664691925,0.06285472214221954,-0.07713804394006729,-0.04952550679445267,0.051879700273275375,-0.026178600266575813,-0.0445404015481472,-0.06082304194569588,-0.08208901435136795,0.058222368359565735,-0.05816715955734253,-0.03676547110080719,0.06872140616178513,0.016326922923326492,-0.008205672726035118,-0.03138265013694763,0.05102410912513733,-0.03558643162250519,-0.0009128262754529715,0.012733197771012783,-0.057664789259433746,-0.011710910126566887,0.02964775450527668,0.015211149118840694,0.08045949786901474,0.08612027019262314,-0.0008415122865699232,0.00014996556274127215,0.0033557291608303785,-0.005183974280953407,0.07632872462272644,0.011378951370716095,0.014525334350764751,0.031254664063453674,-0.06702721118927002,0.0635196641087532,-0.051146626472473145,0.05275392904877663,-0.07866844534873962,0.054486531764268875,-0.01735604554414749,-0.006991217378526926,0.006419777870178223,0.03683769702911377,-0.040308237075805664,-0.044590409845113754,0.012920194305479527,0.007173456251621246,0.03089216537773609,0.006171942688524723,0.05360874906182289,-0.014666917733848095,0.018219279125332832,0.037142083048820496,-0.0639912411570549,-0.03875913843512535,-0.02927752397954464,-0.03111826442182064,-0.06090380623936653,0.022494375705718994,0.04302090406417847,-0.042158521711826324,-0.08245408535003662,0.02416052855551243,-0.0206710547208786,0.035334132611751556,-0.04499810189008713,0.04258543998003006,0.0500025749206543,0.05340372398495674,-0.04457912966609001,0.03569870442152023,0.04269569739699364,0.028327064588665962,0.07471860200166702,-0.05163966119289398,-0.05571572110056877,-0.029617033898830414,-0.009701952338218689,-0.03290743753314018,-0.04904111474752426,0.018887726590037346,0.05598919093608856,0.04415629431605339,0.042237792164087296,-0.04326307401061058,-0.04716752842068672,-0.07586251944303513,-0.02412479929625988,0.052386075258255005,0.0146867074072361,0.05727752298116684,-0.034382257610559464,-0.04929089918732643,0.04385759308934212,-0.07452979683876038,0.08179940283298492,-0.036053210496902466,0.08508946001529694,-0.017236823216080666,-0.009953704662621021,0.013446588069200516,-0.014923183247447014,0.05646953359246254,0.06909683346748352,-0.04223186895251274,0.07866494357585907,0.03591024503111839,-0.027559734880924225,0.0068119969218969345,-0.02654099091887474,-0.05692949518561363,-0.056006964296102524,-0.06791022419929504,-0.04067365452647209,-0.0733921080827713,-0.03639736399054527,0.076480433344841,-0.04105997085571289,0.04494364187121391,0.013849328272044659,-0.037866510450839996,0.024914903566241264,0.07746798545122147,-0.04201792553067207,0.00830336008220911,0.001610288512893021,0.006017370615154505,-0.009751912206411362,-0.04799451678991318,0.01777445152401924,0.018906254321336746,-0.07906840741634369,0.058469898998737335,0.07877146452665329,-0.06029785796999931,0.06537822633981705,-0.026294797658920288,0.030273007228970528,-0.016763810068368912,0.030531102791428566,0.007851698435842991,-0.008431232534348965,-0.07396562397480011,-0.03611595183610916,0.025541948154568672,0.056868646293878555,-0.051747892051935196,0.002983523765578866,-0.0551636777818203,-0.03307071700692177,0.021644355729222298,-0.001828524167649448,0.028803009539842606,-0.035234250128269196,0.013415016233921051,-0.05407333746552467,-0.06975438445806503,0.02174907922744751,0.0417281799018383,-0.01086155604571104,0.009255554527044296,0.025796853005886078,0.04594680294394493,0.03730248287320137,-0.03179796040058136,0.004161509219557047,0.07405725121498108,0.005181350279599428,-0.025160929188132286,-0.0403534434735775,0.0037980591878294945,-0.004209897480905056,0.0012853932566940784,0.03896109759807587,-0.05321845784783363,-0.05606738105416298,0.01657549850642681,0.03804035857319832,-0.068944551050663,-0.07200288027524948,0.017023570835590363,0.07010290771722794,-0.04177778214216232,0.0802718847990036,-0.08484803885221481,0.0772189050912857,-0.04008211940526962,-0.01876414194703102,0.032997310161590576,-0.032951053231954575,0.011223206296563148,-0.02392178773880005,-0.01646827906370163,0.04803449288010597,0.038477823138237,-0.07483790069818497,-0.06829714775085449,0.03672484681010246,0.0035397892352193594]},{"id":"fool-yourself","vector":[0.0332341305911541,-0.05647851526737213,-0.025668201968073845,0.03316981717944145,-0.024410661309957504,0.028321897611021996,-0.04317193105816841,-0.056872136890888214,0.04493235796689987,0.011158464476466179,0.0640922263264656,0.00784379430115223,-0.03438347950577736,0.0228834580630064,-0.062186628580093384,-0.021623283624649048,-0.03532472997903824,-0.07287416607141495,-0.005918243434280157,0.060760319232940674,0.01366833969950676,-0.023431168869137764,0.04445596784353256,-0.0008398547652177513,0.029567718505859375,0.019706308841705322,-0.035067759454250336,-0.009286917746067047,-0.06849069893360138,-0.05156984180212021,0.0006645528483204544,-0.06895887851715088,-0.04671093821525574,0.030859164893627167,0.05801379308104515,0.005942608695477247,-0.06594321876764297,0.027127301320433617,0.07093314826488495,-0.06536765396595001,-0.03350561112165451,-0.0008345653186552227,0.0404992550611496,-0.018932955339550972,0.015228737145662308,-0.01537406723946333,-0.07459419220685959,0.018155978992581367,0.04848797246813774,0.05722147598862648,0.048090267926454544,-0.06470967084169388,0.01527395285665989,-0.023452753201127052,0.0017921439139172435,-0.035419877618551254,0.05876215547323227,-0.015438449569046497,0.05512366071343422,-0.07455457746982574,-0.03348385915160179,0.019250687211751938,-0.04440946504473686,-0.0012780915712937713,-0.01582218147814274,-0.0037507556844502687,0.08264569193124771,0.01093167345970869,0.08842489123344421,-0.036187078803777695,-0.005628269165754318,0.034982673823833466,0.0012958779698237777,-0.013545063324272633,-0.05472737178206444,-0.07625224441289902,0.0014612143859267235,0.010281638242304325,0.001304906909354031,0.050381846725940704,0.02020106464624405,0.06274393945932388,0.0016368718352168798,-0.026770668104290962,-0.04699762165546417,0.06110948324203491,-0.02647244557738304,0.051608532667160034,-0.07433897256851196,0.05301900953054428,-0.028965165838599205,0.001715758116915822,-0.03234920650720596,0.0033057392574846745,-0.04621202126145363,0.07149472832679749,-0.08087371289730072,0.017442356795072556,-0.058070726692676544,-0.05722696706652641,-0.08672016859054565,0.007683202624320984,-0.026051299646496773,0.04332616552710533,-0.01926889456808567,0.04679960012435913,-0.06373310834169388,0.05613943561911583,0.07906479388475418,0.024072667583823204,-0.03375552222132683,-0.07528118789196014,0.028638873249292374,-0.05482367426156998,-0.0515931211411953,-0.004892030730843544,0.019134141504764557,0.030986031517386436,-0.05333271995186806,0.045031461864709854,-0.019424397498369217,-0.08622485399246216,0.031857680529356,-0.06733502447605133,-0.06373784691095352,0.02288862317800522,-0.053837042301893234,0.04224738851189613,0.02511553466320038,-0.06896236538887024,-0.03599287569522858,-0.017926188185811043,-0.02371944859623909,0.02390260621905327,-0.03207400441169739,-0.050253305584192276,-0.05110643059015274,-0.06635912507772446,-0.057001907378435135,-0.002953660674393177,-0.025116905570030212,-0.06302589923143387,0.06649905443191528,0.07724343985319138,-0.010423783212900162,0.02875649556517601,0.03149845078587532,0.01737827993929386,-0.0015437031397596002,0.0442214272916317,-0.0221624206751585,0.017750825732946396,-0.06995279341936111,0.01711295172572136,-0.03534405678510666,-0.03782119229435921,0.053337011486291885,-0.05316175892949104,-0.015853114426136017,-0.0655013844370842,-0.016965219751000404,-0.018773721531033516,0.04710853844881058,-0.014015966095030308,0.04831526800990105,0.06284718215465546,0.008125494234263897,-0.06698369979858398,-0.014728175476193428,0.07077542692422867,-0.05140581354498863,-0.04396391659975052,0.008551495149731636,0.03721611574292183,-0.009891887195408344,0.04081812500953674,-0.052448928356170654,0.08437900990247726,0.06884627044200897,0.08314325660467148,-0.02264464646577835,0.08348437398672104,0.017571724951267242,-0.05265144631266594,0.043867889791727066,0.040286049246788025,0.03265292942523956,0.06328687816858292,0.07943122833967209,-0.04075507074594498,-0.021563304588198662,0.009760832414031029,-0.011244098655879498,0.01569957472383976,0.07946588844060898,-0.05822334438562393,-0.041391946375370026,0.01478961855173111,-0.02426598034799099,0.058711592108011246,0.027660392224788666,0.020575013011693954,0.03040877915918827,0.0003223969251848757,-0.05349176377058029,-0.04993757605552673,0.03630439564585686,-0.029617808759212494,0.01863788440823555,0.08025003969669342,-0.0065114195458590984,-0.030996786430478096,0.06857196986675262,-0.010763131082057953,0.0746399536728859,-0.009371597319841385,-0.055431243032217026,-0.014820081181824207,0.054483380168676376,0.010145997628569603,0.004264079034328461,-0.0391959622502327,0.011191054247319698,-0.038208361715078354,0.06542764604091644,-0.021192071959376335,-0.009424465708434582,0.001986842602491379,0.03955754265189171,0.05912351980805397,-0.010557194240391254,0.007325563579797745,0.04447653517127037,0.021352004259824753,0.000518942077178508,0.06964751332998276,0.04340994358062744,0.05932701751589775,0.05204513669013977,0.034041110426187515,-0.03589334338903427,-0.03688971325755119,0.01178375817835331,0.0012001270661130548,-0.004202150274068117,-0.03684860095381737,0.019241932779550552,0.008160422556102276,0.03653483837842941,-0.021254459396004677,0.018895231187343597,-0.0616796612739563,0.019666623324155807,-0.06945212185382843,0.044097818434238434,-0.002891919808462262,-0.021250082179903984,-0.057750917971134186,-0.03853524476289749,0.05547870323061943,-0.04575012996792793,-0.04279540851712227,0.006015270482748747,0.007392517756670713,-0.014815079979598522,0.005998033098876476,0.007561843376606703,-0.01747412607073784,-0.011084447614848614,0.004787968937307596,0.05058281496167183,-0.053538382053375244,0.018785225227475166,-0.036216963082551956,0.008512015454471111,0.0757308155298233,-0.028044037520885468,0.01752675324678421,-0.017198212444782257,0.02557651698589325,0.07838190346956253,0.0868927389383316,0.03938782587647438,-0.0024080253206193447,-0.04708439111709595,-0.05976324528455734,-0.0863906741142273,0.035400111228227615,-0.03427119553089142,-0.0518852137029171,-0.03884558752179146,-0.04669645056128502,0.07805882394313812,0.03363809734582901,0.03361343592405319,-0.04903809353709221,0.06244315952062607,0.010980281047523022,0.054277453571558,0.03583405911922455,-0.02453320473432541,0.0675954595208168,-0.02001737616956234,0.04072283208370209,0.008529501967132092,0.029442226514220238,0.044675957411527634,0.038542330265045166,-0.022754160687327385,-0.07365623116493225,-0.01826082356274128,0.04920428246259689,-0.009516103193163872,0.06037299707531929,-0.06860577315092087,-0.04557482898235321,0.0573151558637619,-0.027532676234841347,-0.042973823845386505,-0.04402339830994606,-0.07529550045728683,0.06303143501281738,-0.05260626971721649,-0.009355989284813404,0.04925818368792534,-0.033738184720277786,-0.0181968342512846,-0.013108956627547741,0.02849290706217289,-0.06224822625517845,-0.041491735726594925,-0.06421826779842377,-0.06610032916069031,-0.007505848538130522,0.04142621159553528,0.0166424922645092,0.07378354668617249,0.08151548355817795,0.02247735671699047,-0.021080197766423225,-0.044380392879247665,0.014592349529266357,0.07505986839532852,0.030380655080080032,-0.0003888125065714121,0.04646851867437363,0.02172582410275936,0.05120830237865448,0.010551989078521729,0.0509205088019371,-0.0743112564086914,0.04644838348031044,0.04743185266852379,0.0021628011018037796,0.0026251745875924826,0.050217896699905396,-0.00661601172760129,-0.07505099475383759,-0.017635121941566467,-0.029764454811811447,0.04712554067373276,0.01982158049941063,0.0445847325026989,-0.039652422070503235,0.011018911376595497,0.02106790617108345,-0.048929326236248016,-0.05224896967411041,-0.054549843072891235,-0.02249280735850334,-0.07674288749694824,0.023188475519418716,0.00250978278927505,-0.07983095198869705,-0.06720481067895889,-0.01680786721408367,0.022029399871826172,0.020010892301797867,0.02566082775592804,0.0638837218284607,0.024042418226599693,0.03429587185382843,-0.061513833701610565,0.021606456488370895,0.05313706025481224,-0.02509724721312523,0.06044483929872513,-0.018572835251688957,-0.021754730492830276,-0.05384816601872444,-0.034687306731939316,-0.007301243953406811,0.0018911391962319613,0.002380379708483815,0.0745677649974823,0.05279989168047905,0.037426095455884933,-0.0737544521689415,-0.04933752492070198,-0.057890117168426514,-0.04452785849571228,0.06715589016675949,0.009763864800333977,0.07441191375255585,-0.02187735214829445,-0.0317947119474411,0.02488703653216362,-0.07534582167863846,0.057523149996995926,-0.05684613808989525,0.06414856016635895,0.030180927366018295,0.023144876584410667,-0.018504535779356956,0.03035813756287098,-0.04724704474210739,0.03301449865102768,-0.011239314451813698,0.07712985575199127,0.059003543108701706,-0.032457634806632996,0.053873833268880844,0.00443384051322937,-0.014099598862230778,-0.05284503102302551,-0.022280104458332062,-0.05012892186641693,-0.037455301731824875,-0.04346132278442383,0.028048105537891388,-0.05234386399388313,-0.007010944187641144,-0.02701479010283947,-0.07085902988910675,0.06898181885480881,0.06993310153484344,-0.05415888503193855,0.032224930822849274,-0.022723374888300896,0.04882925748825073,-0.026851316913962364,-0.04602808132767677,0.037592899054288864,0.057313285768032074,-0.07891346514225006,0.052738141268491745,0.0758921355009079,-0.0744977742433548,0.06641768664121628,-0.04250199347734451,0.03060227446258068,-0.0484861396253109,0.0016754523385316133,0.03638436272740364,0.036199603229761124,-0.07712244987487793,-0.011890236288309097,0.06592146307229996,0.0528988279402256,-0.05148789659142494,-0.01123677659779787,-0.032555725425481796,-0.02590000443160534,0.032004475593566895,-0.019992446526885033,0.03392491489648819,-0.022416764870285988,0.01999109797179699,-0.05917616933584213,-0.06345363706350327,0.002056113677099347,0.06213262677192688,-0.011356744915246964,-0.048003505915403366,0.031168844550848007,0.05153428018093109,0.054355598986148834,0.005693142302334309,0.015660714358091354,0.04097650200128555,-0.024049723520874977,-0.0026004579849541187,-0.06143662706017494,0.0024299134965986013,-0.01715635508298874,-0.025292405858635902,0.04284153878688812,-0.06324502825737,-0.07244662195444107,0.013369383290410042,0.010449554771184921,-0.018131284043192863,-0.033568840473890305,-0.028732329607009888,0.0755453035235405,-0.029825277626514435,0.033776652067899704,-0.04283671826124191,0.0769803375005722,-0.024505166336894035,0.03400442376732826,0.06942588090896606,-0.02152765356004238,0.04705829918384552,-0.02945064753293991,0.021825332194566727,0.048446398228406906,0.020208051428198814,-0.07113245129585266,-0.06439831852912903,0.0210663303732872,0.0009411178762093186]},{"id":"foolish-heart","vector":[0.04389538988471031,-0.0355583094060421,0.004364246968179941,0.030750472098588943,-0.0317249596118927,0.029321376234292984,-0.03104322776198387,-0.07562035322189331,0.061233509331941605,0.017365405336022377,0.0063769579865038395,-0.039979204535484314,-0.02547437883913517,-0.02291048876941204,-0.07007045298814774,0.030998731032013893,-0.062425147742033005,-0.06231025978922844,-0.042595379054546356,-0.0023884905967861414,-0.002376681426540017,0.03763382509350777,0.04256052523851395,-0.03881056234240532,0.04381768777966499,0.0030595161952078342,-0.04895590618252754,0.01845930889248848,-0.05727387219667435,-0.03790151700377464,0.0623929537832737,-0.053355369716882706,-0.014436920173466206,-0.007974660024046898,0.06491710245609283,0.03185848519206047,-0.04626215621829033,0.04028496518731117,0.06891883164644241,-0.06585535407066345,-0.012825658544898033,0.022953961044549942,0.06955767422914505,-0.020480841398239136,-0.007756218314170837,0.007413854822516441,-0.06641145050525665,-0.028293266892433167,0.0431414395570755,0.05304400250315666,0.00805431604385376,-0.05516783893108368,0.0016560025978833437,-0.033863428980112076,0.014259385876357555,-0.012393945828080177,0.021844619885087013,0.04276934266090393,0.05595001205801964,-0.07313423603773117,-0.07625827938318253,-0.04234706237912178,-0.045948319137096405,0.017881188541650772,-0.008312610909342766,-0.034877073019742966,0.06624339520931244,0.004741485696285963,0.07507173717021942,-0.04202719032764435,-0.04598293453454971,-0.008471669629216194,-0.00466217240318656,0.0020021460950374603,-0.04729078710079193,-0.06237157806754112,0.007390663493424654,0.07094395905733109,-0.0015849389601498842,0.04355014115571976,-0.008588901720941067,0.04127056524157524,-0.01567567139863968,-0.005010624416172504,-0.06347141414880753,0.049337439239025116,0.004723513498902321,0.0799059048295021,-0.046868517994880676,0.0627225860953331,-0.023672278970479965,-0.04781852662563324,-0.039344143122434616,0.03100571222603321,-0.04213390499353409,0.04777579754590988,-0.06925836205482483,-0.03541240096092224,-0.04200911149382591,-0.045901842415332794,-0.07974711805582047,-0.004267215728759766,-0.0111209936439991,0.015085513703525066,-0.04171723872423172,0.013591447845101357,-0.0496896393597126,0.042695578187704086,0.051169462502002716,0.03477901220321655,-0.019396675750613213,-0.063166543841362,0.0002002049150178209,-0.04767172038555145,-0.04364907741546631,0.012237395159900188,0.010725775733590126,0.06251552700996399,-0.0685296282172203,0.02791013941168785,-0.01938922330737114,-0.07523979991674423,0.02955649420619011,-0.05859848111867905,-0.05037522688508034,0.012433401308953762,-0.040560219436883926,0.04447835311293602,0.03661800175905228,-0.0750957727432251,-0.06266887485980988,-0.035674579441547394,-0.025168342515826225,0.01366819441318512,-0.030876684933900833,-0.07254257798194885,0.029155222699046135,-0.04795412719249725,-0.00010554870095802471,0.028319433331489563,-0.0023828616831451654,-0.06090441346168518,0.05273916944861412,0.07072655111551285,-0.02602303773164749,-0.027749061584472656,0.06655610352754593,0.026799125596880913,0.01830885373055935,0.024327615275979042,-0.013555278070271015,0.00990096665918827,-0.06306082755327225,-0.048775408416986465,-0.03709796816110611,-0.017282497137784958,0.05270100757479668,-0.03770340606570244,0.03604675084352493,-0.06296039372682571,0.015852229669690132,-0.012892250902950764,0.06440209597349167,0.01863071136176586,0.023970026522874832,0.013177450746297836,0.024545231834053993,-0.05392911657691002,-0.017393851652741432,0.04088618978857994,-0.04607590660452843,0.023398946970701218,-0.011265418492257595,0.05639791116118431,0.011105967685580254,-0.009370245039463043,-0.061439719051122665,0.07081988453865051,0.07643444836139679,0.06644125282764435,-0.034892257302999496,0.07950513809919357,-0.0007411153637804091,-0.016567623242735863,0.04253349453210831,0.07071748375892639,0.0034919350873678923,0.046167369931936264,0.04936306178569794,-0.052646540105342865,0.0038133468478918076,-0.017156194895505905,-0.04562590271234512,0.02023882232606411,0.07003515958786011,-0.043148189783096313,-0.024204770103096962,0.0010620643151924014,-0.00040910139796324074,0.07919864356517792,-0.003493298776447773,0.032179221510887146,0.05320367217063904,0.022880785167217255,-0.06149781122803688,-0.04850258678197861,0.06887912005186081,0.004352429881691933,0.012842283584177494,0.07632196694612503,0.015830136835575104,0.05253490060567856,0.06031795218586922,0.0037769104819744825,0.05500353127717972,-0.015446794219315052,-0.02710738219320774,-0.03803457319736481,0.05939357727766037,-0.028128735721111298,0.03352450206875801,-0.000705648330040276,0.025063835084438324,-0.0494980663061142,0.05707777291536331,-0.014001801609992981,-0.0638677179813385,0.011220939457416534,-0.027512410655617714,0.014095504768192768,-0.045554324984550476,0.037860944867134094,0.04519741237163544,0.021190600469708443,0.0359296090900898,0.03613146394491196,0.03055986575782299,0.056067537516355515,-0.0005224354099482298,0.07272080332040787,-0.0662258043885231,-0.019999902695417404,0.03326569125056267,-0.06003420799970627,-0.00042994742398150265,0.013184566982090473,0.018785690888762474,0.0072102658450603485,0.03485067933797836,-0.0026870754081755877,0.043457210063934326,-0.07674117386341095,0.03457340598106384,-0.0602434016764164,0.014536689966917038,-0.057150762528181076,-0.0008780499338172376,-0.05941922217607498,-0.020587950944900513,0.06516705453395844,-0.035928163677453995,-0.035876184701919556,-0.011963571421802044,0.026059087365865707,-0.013909495435655117,0.01856626383960247,0.026773547753691673,-0.01080858614295721,-0.027254026383161545,-0.06268187612295151,0.06934604048728943,-0.07091572880744934,0.04975714161992073,-0.03859347850084305,-0.024606699123978615,0.07648570090532303,-0.030648117884993553,0.01858401671051979,-0.03129085525870323,0.024653710424900055,0.073923259973526,0.07292915880680084,0.015155325643718243,0.0067834085784852505,-0.06504303961992264,-0.0680847316980362,-0.0759686753153801,0.038959018886089325,-0.050548046827316284,-0.04166688770055771,-0.045804381370544434,-0.037921398878097534,0.05211693048477173,0.029369013383984566,-0.044154662638902664,-0.040642235428094864,0.06965300440788269,0.0209233146160841,0.01655678264796734,0.046529680490493774,-0.02630864642560482,0.04448870196938515,0.01644875481724739,0.04612957686185837,0.024355081841349602,0.010470563545823097,0.05795992165803909,0.027046672999858856,-0.010839028283953667,-0.0746697261929512,-0.030519578605890274,0.02560192346572876,-0.03955443948507309,0.0682276040315628,-0.06214260682463646,-0.04871786758303642,0.06602930277585983,-0.03553114831447601,-0.05489024892449379,0.0024029973428696394,-0.07537475228309631,0.035652000457048416,-0.05451701581478119,-0.015989234670996666,0.04630632326006889,0.006574639119207859,-0.03203001990914345,-0.027115866541862488,0.02307097055017948,-0.05139070376753807,-0.005327140912413597,-0.022624971345067024,-0.07513979077339172,0.012001712806522846,0.05753115192055702,0.007718739099800587,0.07896004617214203,0.07922868430614471,-0.006847193464636803,0.02695787325501442,0.013485838659107685,0.004865491297096014,0.050007667392492294,0.0029769493266940117,0.016354471445083618,0.003968128934502602,-0.05246157571673393,0.05661408603191376,0.0239240862429142,0.05399450287222862,-0.0674435943365097,0.06692329049110413,-0.0022612502798438072,0.03816533833742142,-0.03253873437643051,0.07315945625305176,-0.024981917813420296,-0.05806274712085724,-0.01872071623802185,0.0055045983754098415,0.058389876037836075,0.05065944418311119,0.019680533558130264,0.018056603148579597,0.012787052430212498,-0.01391615066677332,-0.03411370888352394,-0.06601764261722565,-0.053110066801309586,-0.02204805798828602,-0.059122148901224136,0.042605843394994736,0.03955703228712082,-0.06872893869876862,-0.06628840416669846,0.008432640694081783,0.019542740657925606,0.06661468744277954,0.02753772959113121,0.049356114119291306,0.019557660445570946,0.03489574417471886,-0.06568256765604019,0.04125628620386124,0.03996109589934349,-0.011024359613656998,0.057461027055978775,-0.04877040535211563,-0.07201831787824631,-0.05352972820401192,-0.0631599873304367,-0.03413325920701027,-0.055218540132045746,0.01789459027349949,0.07598836719989777,0.035116150975227356,0.056972987949848175,-0.07275866717100143,-0.05738067254424095,-0.0760636106133461,-0.026125194504857063,0.08087722957134247,0.03251933678984642,0.053008098155260086,0.01659582182765007,-0.01011404488235712,0.046575501561164856,-0.07147993892431259,0.07749956846237183,-0.04636581242084503,0.07056345045566559,0.05573904141783714,0.008858179673552513,-0.03657816722989082,0.011651773005723953,0.05102046579122543,0.04774490371346474,-0.02682255208492279,0.0752541720867157,0.06381456553936005,-0.05383540689945221,0.03138492628931999,0.029098790138959885,-0.050873178988695145,-0.0568859726190567,-0.010258412919938564,-0.05276387929916382,-0.06371548771858215,-0.010522684082388878,0.009889691136777401,-0.03153209388256073,0.031245844438672066,-0.031241409480571747,-0.04623173549771309,0.05985790863633156,0.0602409802377224,-0.0727943629026413,0.013980142772197723,-0.05045376718044281,0.03644125536084175,-0.06536844372749329,-0.05002147704362869,0.04126670956611633,0.04195895418524742,-0.06778386980295181,0.0556250661611557,0.08127056807279587,-0.0728127509355545,0.047817714512348175,-0.03294994309544563,-0.0073965913616120815,-0.06517569720745087,0.008288110606372356,0.03762514889240265,0.05567936226725578,-0.06394324451684952,0.02583158388733864,0.049639731645584106,0.03942089155316353,-0.04073042795062065,0.018883630633354187,-0.04911872372031212,0.03593466430902481,0.018862318247556686,-0.011952984146773815,0.06116389110684395,-0.05876825377345085,0.03748416155576706,-0.04694019630551338,-0.033666595816612244,0.04842686653137207,0.06773202866315842,0.04169087111949921,-0.0422997921705246,0.033054303377866745,0.04427794739603996,0.0282722320407629,0.06024846434593201,-0.01754634454846382,0.05750037357211113,-0.049663398414850235,-0.0420742891728878,-0.06064457818865776,0.01162659376859665,-0.007807533722370863,0.0210579764097929,-0.018660422414541245,-0.032416172325611115,-0.06286823004484177,0.003252174239605665,-0.002722460078075528,-0.02889905497431755,-0.04715018346905708,-0.00039347674464806914,0.07209345698356628,-0.006850170902907848,-0.010526584461331367,-0.06255168467760086,0.06678329408168793,-0.040868062525987625,0.026506470516324043,0.06357508897781372,-0.017051445320248604,0.02364293485879898,-0.030101731419563293,0.018118955194950104,0.012471911497414112,-0.00048200474702753127,-0.07449565082788467,-0.07051599025726318,0.043666400015354156,0.023061437532305717]},{"id":"fraudulent-charges","vector":[0.009256723336875439,-0.02813839167356491,-0.0016987590352073312,0.053017955273389816,-0.03634215518832207,0.01593228429555893,0.01961599849164486,-0.08961617946624756,0.030019063502550125,0.008837505243718624,0.030440425500273705,-0.018798014149069786,-0.011249764822423458,0.02631218358874321,-0.06482081860303879,-0.007683489937335253,-0.026929857209324837,-0.02812713012099266,-0.03318442776799202,0.07085118442773819,-0.0045581418089568615,-0.022795554250478745,0.025291811674833298,0.0010705130407586694,-0.007885647006332874,-0.004775707609951496,-0.02236115001142025,-0.03168085962533951,-0.05910778418183327,-0.03390168771147728,0.04972301423549652,-0.027405407279729843,-0.027122266590595245,-0.007367858197540045,0.056801687926054,0.03012041375041008,-0.05573577061295509,0.008722446858882904,0.011622730642557144,-0.056546587496995926,-0.027968887239694595,0.02014443650841713,0.06988125294446945,-0.023085176944732666,-0.032143574208021164,0.03634947910904884,-0.05628514289855957,-0.030643854290246964,0.05337173864245415,0.06682156771421432,0.01939414069056511,-0.05542222410440445,0.019397500902414322,-0.05234917253255844,0.011447449214756489,0.0024389224126935005,0.0460909828543663,0.02927950769662857,0.007026390638202429,-0.05203454568982124,-0.08026966452598572,-0.02993251010775566,-0.05287866294384003,0.014049705117940903,-0.027843059971928596,0.02409103326499462,0.09038776904344559,-0.006558563094586134,0.09380139410495758,-0.030536554753780365,-0.02724055014550686,-0.0036352777387946844,-0.019964592531323433,0.026646539568901062,-0.04444993659853935,-0.06726308166980743,0.040572214871644974,0.019134191796183586,-0.03851998969912529,0.07464168965816498,0.026038940995931625,0.022039063274860382,-0.0051102833822369576,-0.03325707092881203,-0.07810644805431366,0.03767509013414383,-0.01168323215097189,0.062301553785800934,-0.05420643463730812,0.07817717641592026,0.0012399980332702398,-0.047074686735868454,-0.03795481100678444,0.03516631945967674,-0.0506657250225544,0.00121226254850626,-0.07535126060247421,-0.020092403516173363,-0.029245931655168533,-0.04583956301212311,-0.08504986763000488,-0.003159478772431612,-0.02621580846607685,0.01395082101225853,-0.027225494384765625,0.030447253957390785,-0.026843633502721786,0.04453281685709953,0.05168107524514198,0.010888737626373768,-0.0041244542226195335,-0.06289970129728317,-0.0012128601083531976,-0.07146359980106354,-0.011676153168082237,0.02998650074005127,0.00999241042882204,0.03435809165239334,-0.0654640942811966,0.04726027324795723,-0.033433470875024796,-0.08640436828136444,0.05377284809947014,-0.0880904421210289,-0.03284084424376488,-0.022882215678691864,-0.01574535109102726,0.050096265971660614,0.04324421286582947,-0.05820224806666374,-0.07528121024370193,-0.06055048108100891,-0.028245532885193825,-0.020076647400856018,-0.02092107944190502,-0.07778018712997437,0.023815812543034554,-0.04783482477068901,-0.015576906502246857,-0.008250510320067406,-0.004262275993824005,-0.05861330404877663,0.06046097353100777,0.06999646872282028,-0.024487506598234177,0.021382587030529976,0.018221771344542503,-0.016872255131602287,0.009541305713355541,0.04493805393576622,-0.02131466381251812,0.0019719384144991636,-0.02561553753912449,-0.035832419991493225,-0.018347997218370438,-0.03448338806629181,0.06860893964767456,-0.04571755230426788,0.021632378920912743,-0.025715820491313934,-0.02959706075489521,-0.011203479953110218,0.03309245407581329,0.003974913153797388,-0.03921722620725632,0.011558683589100838,-0.03291420266032219,-0.06729050725698471,-0.007740921340882778,0.05673576146364212,-0.0455075241625309,-0.003668001852929592,0.01267337892204523,0.03116690367460251,-0.010656800121068954,0.06506843864917755,-0.0625964105129242,0.0721418634057045,0.08277018368244171,0.08662065118551254,-0.032822828739881516,0.08387359231710434,0.030258622020483017,-0.013577655889093876,0.05781794339418411,0.07112152129411697,0.003108819480985403,0.04611639305949211,0.06658312678337097,-0.024433616548776627,-0.015216704457998276,0.014754615724086761,-0.039555493742227554,0.01230914331972599,0.09067751467227936,-0.06930237263441086,-0.03363342955708504,0.04046846181154251,0.006280063651502132,0.08753081411123276,-0.03643213212490082,0.022830963134765625,0.025874681770801544,0.016221340745687485,-0.055416397750377655,-0.01578344590961933,0.062185872346162796,-0.030349884182214737,0.030458660796284676,0.07583364844322205,0.029971860349178314,-0.0006727908039465547,0.0504862442612648,0.032673757523298264,0.066370390355587,-0.03722111135721207,-0.013198982924222946,0.024960214272141457,0.06268106400966644,-0.002917566802352667,0.03327377140522003,-0.028378088027238846,0.023485805839300156,-0.046622876077890396,0.017933331429958344,-0.016937976703047752,-0.03774251788854599,0.016176003962755203,0.029657265171408653,0.03754420951008797,-0.036987658590078354,0.045296117663383484,0.04777025431394577,-0.005114567466080189,0.011148247867822647,-0.027516769245266914,0.039473194628953934,0.05663864314556122,0.02613595500588417,-0.02004767395555973,-0.03635910525918007,0.0044625247828662395,0.008409995585680008,-0.04036368802189827,0.016951771453022957,-0.03621178865432739,-0.012196066789329052,-0.008643031120300293,-0.00476762093603611,-0.05787767469882965,0.017639344558119774,-0.07614105939865112,0.030723240226507187,-0.06995189934968948,0.010436720214784145,-0.013696507550776005,-0.025177214294672012,-0.01788320019841194,-0.021418051794171333,0.08504577726125717,-0.033425938338041306,-0.02337600290775299,-0.01827346719801426,-0.022897109389305115,-0.021759873256087303,0.028850024566054344,0.03926974534988403,0.002380799502134323,-0.0007146179559640586,-0.05140746384859085,0.06012352555990219,-0.07024744898080826,0.014761710539460182,-0.007413492072373629,-0.014758244156837463,0.07752083986997604,-0.03882583603262901,0.053125131875276566,-0.054793581366539,0.017954852432012558,0.03635513782501221,0.06906696408987045,0.03258376941084862,0.0249439999461174,-0.04697032645344734,-0.06844732165336609,-0.0822351947426796,0.041263092309236526,-0.050951022654771805,-0.04960864037275314,0.0114601356908679,0.02703142911195755,0.04368763417005539,0.011269466020166874,-0.05770101770758629,-0.0715358555316925,0.08073675632476807,0.04818727821111679,0.06060928851366043,0.04779696464538574,-0.001273027854040265,0.06565932929515839,-0.022398216649889946,0.02818431332707405,0.015763815492391586,0.0010643047280609608,0.055295180529356,0.012452015653252602,0.016931600868701935,-0.08677726984024048,-0.004928470589220524,0.04219430685043335,0.014440991915762424,0.04368254169821739,-0.06952288746833801,-0.05020746961236,0.06068681925535202,-0.04277797415852547,-0.04656575992703438,-0.05751941353082657,-0.08258017897605896,0.060056667774915695,-0.06489823013544083,-0.028373844921588898,0.06796060502529144,-0.006114925257861614,-0.012424767017364502,-0.02854280173778534,0.07567505538463593,-0.03455278277397156,-0.05095254257321358,-0.015264557674527168,-0.07276833057403564,-0.028335675597190857,0.052574772387742996,0.009319419972598553,0.07508496940135956,0.09115926921367645,0.018498685210943222,0.05346045270562172,0.07197549194097519,0.043212927877902985,0.0673457533121109,0.0020849332213401794,0.053116574883461,0.022868575528264046,-0.029833383858203888,0.04247143864631653,-0.008985362015664577,0.07121861726045609,-0.08658688515424728,0.05308813601732254,0.02327796071767807,0.021483231335878372,0.002258335705846548,0.059836190193891525,-0.04304075613617897,-0.08287114650011063,0.025897778570652008,-0.0002463652635924518,0.05605100095272064,0.04670903459191322,0.041250672191381454,0.0020872296299785376,0.03172057121992111,0.03351234644651413,-0.04531794786453247,-0.005583174992352724,-0.03849474713206291,0.004884128924459219,-0.07258728891611099,0.0102700749412179,0.03122158907353878,-0.03006518818438053,-0.07454829663038254,0.011951102875173092,0.021114610135555267,0.04630040377378464,0.022983266040682793,0.027513980865478516,0.025934457778930664,0.03455837070941925,-0.050530336797237396,0.05042344331741333,0.0689842700958252,0.008522454649209976,0.048032522201538086,-0.03138073906302452,-0.053773023188114166,-0.04786752909421921,-0.04389633610844612,-0.054144877940416336,0.022291941568255424,0.03303291276097298,0.05197254940867424,0.04500095173716545,0.042135730385780334,-0.0305105522274971,-0.07170634716749191,-0.07092472910881042,-0.02892204001545906,0.08156934380531311,0.012938151136040688,0.07712272554636002,-0.0439983494579792,-0.03008444607257843,0.05301997810602188,-0.07449623942375183,0.08790326863527298,-0.05240095034241676,0.08271796256303787,-0.009137330576777458,-0.0028054872527718544,-0.01801724173128605,0.009193059988319874,0.05043883994221687,0.06862558424472809,-0.0197550468146801,0.08194324374198914,0.030012432485818863,-0.0474795363843441,0.052502285689115524,-0.009872925467789173,-0.03854354843497276,-0.05159137398004532,-0.0638560876250267,-0.025127898901700974,-0.05286572128534317,-0.04038142040371895,0.036689095199108124,-0.06022515520453453,0.025413677096366882,0.001000742893666029,-0.06541261076927185,0.07590122520923615,0.06891629099845886,-0.08464577049016953,0.00004564010669128038,0.008518045768141747,0.039756376296281815,-0.015494321472942829,-0.024952571839094162,0.0023853208404034376,0.04005046561360359,-0.029577942565083504,0.04076008498668671,0.09028535336256027,-0.07037964463233948,0.05993833392858505,0.0056818099692463875,0.03869694098830223,-0.05749703198671341,0.012455045245587826,0.008756444789469242,-0.001972539583221078,-0.07279808819293976,0.0001725181209621951,-0.011854068376123905,0.036436036229133606,-0.04376684129238129,0.06296233087778091,-0.03364232927560806,-0.03510258346796036,0.04033825546503067,0.003571802284568548,0.054223302751779556,-0.07863742113113403,0.03482265770435333,-0.046078771352767944,-0.02365785650908947,0.04298720136284828,-0.00453728623688221,0.015558254905045033,-0.024828387424349785,0.04981086030602455,0.018891718238592148,0.06620810180902481,-0.04416393116116524,0.010428373701870441,0.056846778839826584,-0.03569316118955612,-0.035436104983091354,-0.046565692871809006,-0.0016087485710158944,0.018666302785277367,0.0013416388537734747,0.022125130519270897,-0.06431297957897186,-0.06560633331537247,0.03650890663266182,0.01824868470430374,-0.05792178958654404,-0.04522715508937836,-0.0038951581809669733,0.06621488183736801,0.001629816135391593,0.06626178324222565,-0.08356069028377533,0.07685159146785736,-0.02812383510172367,-0.023105788975954056,0.0644068494439125,-0.022064819931983948,0.01583757996559143,-0.02655503712594509,-0.007925916463136673,-0.013056851923465729,0.021644193679094315,-0.07679997384548187,-0.079770028591156,-0.003985490649938583,0.025200549513101578]},{"id":"get-a-grip","vector":[0.002783738076686859,-0.06128401681780815,0.001029866747558117,-0.0021949217189103365,-0.027011828497052193,0.0042274161241948605,0.0065843816846609116,-0.07008717209100723,0.03133596107363701,0.0060593015514314175,0.03934652358293533,-0.01786944828927517,-0.029139311984181404,0.01070692203938961,-0.05744263529777527,0.011153023689985275,-0.032088764011859894,-0.0646701380610466,-0.027305489405989647,0.05159034579992294,0.005010572727769613,-0.03304732218384743,0.02604261040687561,-0.06113654375076294,0.029859069734811783,-0.015224731527268887,-0.03292442113161087,-0.01061303075402975,-0.053935080766677856,-0.04091455787420273,0.07041673362255096,-0.030134111642837524,-0.03491562604904175,-0.030135422945022583,0.049053922295570374,0.008392177522182465,-0.06470583379268646,0.0340193472802639,0.07061705738306046,-0.0477900505065918,-0.013709722086787224,-0.014268583618104458,0.06585155427455902,-0.020014943554997444,-0.03395380824804306,-0.00677695544436574,-0.07313676178455353,-0.028393764048814774,0.04337461665272713,0.06633797287940979,-0.006197263486683369,-0.05461250618100166,0.03394113853573799,-0.03431997448205948,-0.003848433494567871,-0.03344057500362396,0.04447106644511223,0.05832117050886154,0.06813403218984604,-0.0824972465634346,-0.05854296684265137,-0.027011074125766754,-0.048347651958465576,0.018223317340016365,-0.035408928990364075,-0.0015490647638216615,0.08255232870578766,0.03727575019001961,0.08612806349992752,-0.04617685079574585,-0.03159073740243912,-0.047532014548778534,0.03089713118970394,0.0026164825540035963,-0.05244145914912224,-0.07071659713983536,0.03423118218779564,0.02004554681479931,-0.04539891332387924,0.0492795966565609,0.015829358249902725,0.012269149534404278,0.04486950859427452,-0.043476421386003494,-0.033480577170848846,0.04753701016306877,-0.006071476731449366,0.07327517867088318,-0.07405799627304077,0.059689123183488846,-0.005131921265274286,-0.0018441181164234877,-0.023712357506155968,0.03434183821082115,-0.03451329842209816,0.012643693014979362,-0.0720236673951149,-0.00017700294847600162,-0.027043841779232025,-0.042243100702762604,-0.08064621686935425,0.010721162892878056,-0.02018710970878601,0.0018050293438136578,-0.007044919766485691,0.021326132118701935,-0.06590258330106735,0.05398956686258316,0.05659938603639603,0.06026938930153847,-0.022440174594521523,-0.07497020810842514,-0.0012307267170399427,-0.028375763446092606,-0.0584317147731781,0.018658291548490524,0.018070898950099945,0.036158546805381775,-0.07534963637590408,0.040304996073246,-0.04658280313014984,-0.07477382570505142,0.024808138608932495,-0.06867144256830215,-0.020871777087450027,0.014103050343692303,-0.04208587482571602,0.04728560149669647,0.026814404875040054,-0.058959778398275375,-0.05025740712881088,-0.06635509431362152,-0.012318447232246399,0.019917970523238182,-0.03257010877132416,-0.07774092257022858,0.004486562218517065,-0.06951455026865005,-0.03681856021285057,0.009386505000293255,-0.006031479686498642,-0.07077794522047043,0.06363020092248917,0.057441595941782,-0.053840357810258865,0.04120209440588951,0.056549862027168274,0.04003916680812836,0.0019314214587211609,0.06469998508691788,-0.026162201538681984,-0.0026787405367940664,-0.07123301923274994,-0.03856854513287544,-0.02707398682832718,-0.01998044177889824,0.0583198182284832,-0.021449342370033264,0.06373825669288635,-0.0674356147646904,-0.027339380234479904,-0.032849445939064026,0.053367312997579575,-0.01755223609507084,0.044996995478868484,0.02265009470283985,-0.027488164603710175,-0.057295121252536774,0.008545485325157642,0.06489360332489014,-0.069945327937603,-0.004367331974208355,-0.023287227377295494,0.039774347096681595,-0.044206999242305756,0.032165031880140305,-0.07562969624996185,0.07395650446414948,0.0734797939658165,0.0592387430369854,-0.025613196194171906,0.08044956624507904,0.004016689024865627,0.0011665448546409607,0.0253912303596735,0.06816821545362473,0.017004478722810745,0.05938278138637543,0.05714045464992523,-0.06253296136856079,-0.054668769240379333,-0.0026821098290383816,-0.04722036421298981,0.015167685225605965,0.07602661103010178,-0.05994036793708801,-0.05214180424809456,-0.011587507091462612,0.008152134716510773,0.08048322051763535,0.01458344142884016,0.03552175313234329,0.04801776632666588,0.04447834938764572,-0.04277477785944939,-0.02890469878911972,0.01785310171544552,0.01637526974081993,0.015641238540410995,0.06934995204210281,-0.010383856482803822,-0.0012734027113765478,0.07506365329027176,-0.01480049081146717,0.06539420038461685,-0.011711559258401394,0.004188083577901125,0.02588135004043579,0.06523287296295166,-0.0290752612054348,0.02870597504079342,-0.025680098682641983,-0.017023619264364243,-0.05732085183262825,0.02807960845530033,-0.032414134591817856,-0.0026723986957222223,0.03729454427957535,0.024425197392702103,0.023701874539256096,0.0030943823512643576,0.04532260820269585,0.05290837958455086,0.020395901054143906,0.02659717947244644,0.06275748461484909,0.044865310192108154,0.061616845428943634,0.004704762250185013,0.023534351959824562,-0.07115886360406876,0.003812211798503995,-0.014716166071593761,-0.014388839714229107,0.03101005032658577,-0.037396665662527084,0.01497816201299429,0.03737371042370796,0.015549486503005028,-0.022229181602597237,0.044343627989292145,-0.07333832234144211,0.03346726670861244,-0.06322300434112549,0.028498835861682892,0.005433998070657253,-0.02609081007540226,-0.06466847658157349,-0.02887151949107647,0.0778232291340828,-0.027252092957496643,-0.01658392697572708,0.004671464674174786,-0.0136204669252038,0.009358366951346397,0.033054981380701065,0.03268605098128319,-0.051231250166893005,-0.000918234814889729,-0.027989452704787254,0.06699635833501816,-0.06585387140512466,-0.005460720509290695,-0.03152649849653244,-0.010686815716326237,0.06912603974342346,-0.02980600669980049,0.06479440629482269,-0.020966915413737297,-0.023835906758904457,0.04837922751903534,0.07032720744609833,0.029881667345762253,0.011801712214946747,-0.027769898995757103,-0.07354310154914856,-0.06847187876701355,0.036634255200624466,-0.03648713231086731,-0.04365121200680733,0.0003671791637316346,-0.036189064383506775,0.06138119846582413,-0.0015322850085794926,-0.017177201807498932,-0.059659626334905624,0.06666316837072372,0.03972719982266426,0.03884926810860634,0.04143666848540306,-0.030771195888519287,0.052406493574380875,-0.013117638416588306,0.043699879199266434,0.01598702184855938,0.009227548725903034,0.04304330796003342,0.02278950996696949,-0.019534680992364883,-0.08410931378602982,-0.01425440888851881,0.0235915370285511,0.0146725382655859,0.06898070871829987,-0.07929438352584839,-0.05322466790676117,0.03748217225074768,-0.021142160519957542,-0.05294899269938469,-0.06411236524581909,-0.08196497708559036,0.06433694064617157,-0.04960745945572853,-0.015033075585961342,0.03963281959295273,-0.017549797892570496,0.013700654730200768,-0.021217387169599533,0.03509117290377617,-0.06512356549501419,-0.018141644075512886,-0.04200870171189308,-0.06743115931749344,-0.020358270034193993,0.05205291882157326,-0.002914822893217206,0.07753368467092514,0.07846960425376892,0.033895835280418396,0.02481967769563198,-0.03009391576051712,0.039194412529468536,0.06238073483109474,0.019288944080471992,0.045149389654397964,0.06652579456567764,-0.0005595845286734402,0.05748420208692551,-0.02569456398487091,0.041479285806417465,-0.08150272816419601,0.05765732005238533,0.02369542419910431,0.06509189307689667,-0.008654153905808926,0.07989766448736191,-0.02854922227561474,-0.07477790862321854,0.028454283252358437,0.046645306050777435,0.03788997232913971,0.025327449664473534,0.021105626598000526,-0.032596323639154434,0.03161180764436722,0.023094814270734787,-0.0362280011177063,-0.07102955132722855,-0.02317788638174534,0.003648326499387622,-0.042574942111968994,0.03293799236416817,0.03961258381605148,-0.0789136216044426,-0.06542906910181046,-0.0070463973097503185,-0.010531006380915642,0.01241511944681406,0.0030441146809607744,0.03817238658666611,-0.002305805217474699,0.030090078711509705,-0.04689887911081314,0.05759807303547859,0.046629924327135086,-0.03644160181283951,0.07337002456188202,-0.04116041958332062,-0.0359438955783844,-0.06763031333684921,-0.03543950989842415,-0.027690013870596886,-0.016555894166231155,0.02696986123919487,0.07627943158149719,0.04519595578312874,0.04698909446597099,-0.0736369863152504,-0.04252273589372635,-0.06412451714277267,-0.028194690123200417,0.051875315606594086,-0.0033412303309887648,0.0730845183134079,-0.028507040813565254,-0.019386854022741318,0.06859856843948364,-0.07964956015348434,0.06471773236989975,-0.059549275785684586,0.08460253477096558,0.00991559773683548,0.013331007212400436,0.00006972553819650784,0.010311909951269627,0.007589740678668022,0.04226170480251312,-0.013212749734520912,0.07430525124073029,0.05970184877514839,-0.030387012287974358,0.026694733649492264,0.03658837452530861,-0.06965208053588867,-0.06409991532564163,-0.0382150262594223,-0.04018932580947876,-0.06785653531551361,-0.029427092522382736,0.029727786779403687,-0.05430052429437637,0.03291850537061691,-0.022370442748069763,-0.04744308441877365,0.043214961886405945,0.07029689103364944,-0.060650456696748734,-0.0028624406550079584,-0.03105689212679863,0.012826493009924889,-0.05712289735674858,-0.053925372660160065,0.05312661454081535,0.04830087721347809,-0.07170657068490982,0.03276146948337555,0.08313244581222534,-0.07618949562311172,0.0670933648943901,-0.026864068582654,0.011375336907804012,-0.03446169197559357,0.0032574718352407217,0.008981640450656414,0.03814532607793808,-0.06336246430873871,-0.01488106045871973,0.009394148364663124,0.06761983782052994,-0.06488066911697388,0.01791548728942871,-0.052581507712602615,-0.00986966211348772,-0.008234242908656597,-0.026035627350211143,0.028150392696261406,-0.011899181641638279,0.02774972654879093,-0.05695139244198799,-0.04261522740125656,0.011818143539130688,0.0764792338013649,-0.006672483868896961,-0.00494519853964448,0.026461446657776833,0.024747155606746674,0.0659942701458931,0.06032321974635124,0.026685038581490517,0.07366598397493362,-0.02693846821784973,-0.004690971691161394,-0.05097561702132225,-0.0015199960907921195,-0.006697411648929119,0.03927060589194298,0.02217983640730381,-0.042973022907972336,-0.06292054802179337,0.012598874047398567,0.012467223219573498,-0.051456764340400696,-0.047926127910614014,-0.005537094548344612,0.07328120619058609,0.021514562889933586,-0.0045189703814685345,-0.06286734342575073,0.07856171578168869,-0.04289514571428299,0.03255098685622215,0.012540226802229881,-0.014328435063362122,-0.005838618613779545,-0.04328092932701111,0.007803712971508503,0.020032716915011406,0.03090704418718815,-0.07059643417596817,-0.07443824410438538,0.05993495509028435,0.01729711703956127]},{"id":"good-lord-good-friday","vector":[0.015478970482945442,-0.03886924311518669,-0.02101702056825161,0.04572863504290581,-0.03947283700108528,-0.012627381831407547,-0.004173601977527142,-0.07593820989131927,0.038245148956775665,0.007730436511337757,0.022817673161625862,-0.047356411814689636,0.011278107762336731,0.0743100643157959,-0.03837788850069046,-0.07313638925552368,-0.054088044911623,-0.05453302338719368,0.03239266201853752,0.04288775473833084,-0.02270931750535965,-0.029333805665373802,0.024472342804074287,-0.025079675018787384,-0.04103122651576996,0.01646391861140728,-0.02881646528840065,-0.02151370607316494,-0.06343523412942886,-0.06356173753738403,0.04461340978741646,-0.027809446677565575,-0.04895711690187454,-0.009659205563366413,0.053645938634872437,0.020903173834085464,-0.04653993248939514,0.025226105004549026,0.07057001441717148,-0.06847569346427917,-0.03990320488810539,0.026909779757261276,0.06977890431880951,-0.019155770540237427,-0.03833896666765213,-0.005014611408114433,-0.07596294581890106,-0.011644313111901283,0.06095998361706734,0.05976372957229614,0.05925247073173523,-0.07954283803701401,0.018813131377100945,-0.029842836782336235,0.022455468773841858,0.01068385224789381,0.06402096897363663,0.03212863951921463,0.02740868739783764,-0.07094339281320572,-0.05924968793988228,-0.05598996952176094,-0.04833012446761131,0.02133335918188095,-0.026204055175185204,0.008755439892411232,0.0774562805891037,0.009523019194602966,0.08655739575624466,0.018982386216521263,-0.023096244782209396,-0.014935602433979511,-0.008142375387251377,0.04593069106340408,-0.049852486699819565,-0.056734275072813034,0.04447418823838234,0.0688316598534584,0.023085257038474083,0.0677185133099556,0.02914774976670742,0.03848190978169441,-0.025552166625857353,-0.007069299463182688,-0.06891772150993347,0.0527041032910347,0.018448879942297935,0.05613240599632263,-0.061660248786211014,0.06828264147043228,-0.05305390805006027,-0.05082258582115173,-0.0794978141784668,0.04952367767691612,-0.02751021645963192,0.045137323439121246,-0.0728611871600151,0.04724707081913948,-0.05844918265938759,-0.013475192710757256,-0.08018729090690613,-0.00829249992966652,-0.00994293112307787,0.0229145847260952,-0.016983462497591972,0.027078744024038315,-0.05323784425854683,0.0560549721121788,0.07299244403839111,0.03865642473101616,-0.0017505540745332837,-0.05480987951159477,-0.02485468052327633,-0.06788403540849686,-0.06178973987698555,0.04079122096300125,-0.025125795975327492,0.004239635542035103,-0.07243285328149796,0.010140718892216682,-0.006828216835856438,-0.07723990827798843,0.05876690149307251,-0.06600930541753769,-0.021597107872366905,-0.02213178388774395,-0.016985315829515457,0.022776998579502106,0.05259634554386139,-0.07605484127998352,-0.07677500694990158,-0.04714830219745636,0.00991580355912447,0.008346828632056713,-0.01843339204788208,-0.07615728676319122,0.01424198504537344,-0.04238520562648773,0.005646576173603535,0.007096557412296534,-0.014448894187808037,-0.06743574142456055,0.06463610380887985,0.07420694828033447,0.01252538152039051,0.04441853240132332,0.008508923463523388,0.03850788623094559,0.004235430620610714,0.012463071383535862,-0.012651337310671806,0.027674561366438866,-0.05955557897686958,0.027291161939501762,-0.03498945012688637,0.00459571648389101,0.040112487971782684,-0.06916210055351257,-0.015386190265417099,-0.04390398785471916,0.0018082046881318092,0.050187088549137115,0.04107452929019928,0.017803896218538284,0.049450572580099106,-0.0007150526507757604,0.025134742259979248,-0.06969648599624634,0.01821012981235981,0.06061205267906189,-0.038484636694192886,-0.024689672514796257,-0.02033304236829281,0.03936406970024109,-0.012899443507194519,0.046336669474840164,0.010522197000682354,0.06908095628023148,0.058792728930711746,0.07566379755735397,-0.02796083316206932,0.0758269652724266,0.06041673943400383,-0.036986514925956726,0.03131136670708656,0.06268204748630524,-0.008854186162352562,0.05290396139025688,0.08349328488111496,-0.048029810190200806,-0.010530081577599049,-0.0027977856807410717,-0.021313831210136414,-0.015952998772263527,0.06595136970281601,-0.06867573410272598,-0.01881541684269905,0.027361314743757248,-0.013906474225223064,0.08220873028039932,0.01727142557501793,0.0118329506367445,0.04407833144068718,-0.0021741418167948723,-0.024137087166309357,-0.06932699680328369,0.06532154977321625,-0.0537276566028595,0.038016945123672485,0.08088158816099167,-0.012016396969556808,0.02928883209824562,0.07588908076286316,0.030856870114803314,0.03985079377889633,-0.037959661334753036,-0.05866260826587677,0.034799568355083466,0.05463908240199089,-0.006422235164791346,0.04805709794163704,-0.037014611065387726,0.00027198652969673276,-0.009936364367604256,0.03194035589694977,-0.02044779062271118,-0.009659086354076862,-0.010306176729500294,0.023268412798643112,0.03380083665251732,-0.03647112101316452,0.025884203612804413,0.014685689471662045,0.009674599394202232,0.041085969656705856,0.021662915125489235,0.04698999598622322,0.022726966068148613,0.06216751039028168,0.0548861064016819,-0.029896235093474388,-0.053231798112392426,0.00025792288943193853,-0.010529655031859875,0.012151505798101425,-0.0189925916492939,0.033011775463819504,-0.01663208194077015,0.06724902987480164,-0.0564056858420372,0.07292621582746506,-0.06240159645676613,-0.03444299101829529,-0.06573984026908875,-0.019343826919794083,-0.010150818154215813,-0.045072637498378754,-0.045133888721466064,-0.03873889520764351,0.07481623440980911,-0.03520277887582779,-0.022967534139752388,-0.00983615592122078,-0.012285362929105759,-0.023501066491007805,0.0010361216263845563,0.03676643595099449,0.03682057932019234,-0.03856474533677101,-0.04987988620996475,0.0550701878964901,-0.06463415920734406,0.005432915408164263,-0.0056931511498987675,0.05070333927869797,0.06845101714134216,-0.02184331603348255,-0.001328029902651906,0.007672446314245462,0.037422992289066315,0.06781622767448425,0.08163970708847046,0.03731047734618187,0.006280029658228159,-0.04115470126271248,-0.07519280165433884,-0.07141486555337906,0.05483337491750717,-0.038861941546201706,-0.04469118267297745,-0.005973841995000839,-0.01944117061793804,0.06729815155267715,0.03244674950838089,-0.01263607107102871,-0.05890262499451637,0.06955649703741074,-0.01904655061662197,0.07486575096845627,0.03133852034807205,0.03441907465457916,0.05229790881276131,-0.02178223617374897,0.045803580433130264,0.03863523155450821,0.002313013654202223,0.026012755930423737,0.018897587433457375,-0.01726490445435047,-0.06712562590837479,-0.04819919541478157,0.0010931483702734113,0.027707351371645927,0.05306047201156616,-0.06659302860498428,-0.045130982995033264,0.04703138768672943,-0.043735992163419724,-0.053599193692207336,-0.01645638234913349,-0.07954974472522736,0.04766622558236122,-0.06774048507213593,-0.009454216808080673,0.07148044556379318,0.01246950589120388,-0.039027102291584015,-0.02755836397409439,0.07113144546747208,-0.051710378378629684,-0.013828410767018795,-0.003450059797614813,-0.07965371757745743,-0.031585659831762314,0.05549679696559906,0.0004559113294817507,0.05214295536279678,0.08192107081413269,0.002112519694492221,0.008894276805222034,0.029880180954933167,0.010518341325223446,0.08616267144680023,0.020938076078891754,-0.03624628484249115,0.05077211558818817,-0.03814386576414108,0.0500316247344017,-0.011318794451653957,0.0582612007856369,-0.06634731590747833,0.04883470758795738,0.00237048021517694,0.010118775069713593,0.02443963848054409,0.04296618700027466,-0.03809833899140358,-0.06654555350542068,-0.004423273261636496,-0.009486518800258636,0.039407145231962204,0.03633856400847435,0.03071844018995762,-0.0280619990080595,0.010234106332063675,0.03448885306715965,-0.052699849009513855,0.004166714381426573,-0.0521182119846344,-0.03373676910996437,-0.07179058343172073,0.027492379769682884,0.018494633957743645,-0.018576079979538918,-0.07804494351148605,-0.013547476381063461,0.006190712563693523,-0.011454053223133087,0.024176206439733505,0.07387309521436691,0.043423041701316833,0.05238017439842224,-0.0530572310090065,0.07256636768579483,0.004441153258085251,-0.0019898528698831797,0.07130403816699982,-0.03462887555360794,-0.029652372002601624,0.011276706121861935,-0.057131439447402954,-0.03354780375957489,0.02388109266757965,0.0385519340634346,0.0746118500828743,0.04379427805542946,0.04093433916568756,-0.05329405143857002,-0.023267686367034912,-0.0698094442486763,-0.0183486957103014,0.06287786364555359,0.025230327621102333,0.06853865832090378,0.0016315713291987777,-0.04887562617659569,0.03261902928352356,-0.032818879932165146,0.07921577244997025,-0.03551241755485535,0.06913469731807709,0.03789156675338745,0.022674422711133957,-0.010299711488187313,-0.017507174983620644,0.03251325339078903,0.04852180927991867,0.0027868696488440037,0.08068182319402695,0.060767821967601776,-0.029566729441285133,0.041765663772821426,-0.04392455890774727,-0.03987788408994675,-0.06337497383356094,-0.060057926923036575,-0.039832379668951035,-0.05586010590195656,-0.03226269409060478,0.03526800125837326,-0.06348051130771637,0.029209665954113007,0.0089517030864954,-0.067275270819664,0.035323355346918106,0.05183086544275284,-0.0635424479842186,0.025921355932950974,0.028856774792075157,-0.009666885249316692,-0.030047575011849403,-0.035836994647979736,0.0285327285528183,0.02219625934958458,-0.07092750817537308,0.07307998090982437,0.07942753285169601,-0.058692943304777145,0.06075489521026611,-0.008076907135546207,0.060905613005161285,-0.06856929510831833,0.012294517830014229,0.0036367634311318398,0.034100111573934555,-0.0775156244635582,-0.008672711439430714,0.025122996419668198,0.06641171872615814,-0.06262387335300446,0.018920836970210075,-0.06568855792284012,-0.004226472694426775,0.03213744983077049,-0.03462249040603638,0.04290606081485748,-0.057895321398973465,0.02291366271674633,-0.06402265280485153,-0.010614817962050438,0.023402666673064232,0.05516388639807701,0.023027462884783745,0.030783455818891525,0.0192167516797781,0.034307610243558884,0.03219117596745491,-0.028304994106292725,0.034744177013635635,0.049626681953668594,-0.03989444300532341,-0.008106758818030357,-0.03743116557598114,0.03576225787401199,-0.026198113337159157,-0.006586730945855379,0.015464204363524914,-0.042511552572250366,-0.06795943528413773,-0.01669556088745594,0.011196555569767952,-0.013678357005119324,-0.04770486429333687,-0.0006183922523632646,0.08077871054410934,-0.004750971682369709,0.07229899615049362,-0.052391938865184784,0.06355314701795578,-0.024165557697415352,-0.010830418206751347,0.05728432908654213,-0.009394694119691849,0.04088550806045532,-0.023347722366452217,-0.02031007967889309,0.043076466768980026,0.021897975355386734,-0.07739605009555817,-0.05380261689424515,0.024180540814995766,-0.012111828662455082]},{"id":"haiku--12","vector":[0.0607491098344326,-0.01276755053550005,0.007320900447666645,0.03915604203939438,-0.01791001670062542,0.020953331142663956,-0.005703973583877087,-0.0785224512219429,0.03155466541647911,-0.024009836837649345,0.003766993060708046,-0.008539115078747272,-0.03977082669734955,-0.013445590622723103,-0.06972035765647888,0.010175867937505245,-0.05587063729763031,-0.06237955763936043,-0.03956832364201546,0.061487093567848206,0.029471656307578087,-0.008275911211967468,0.06172965466976166,-0.04283478111028671,0.02670278400182724,-0.03607971593737602,-0.0207014512270689,0.014601567760109901,-0.03824811056256294,-0.04142243415117264,0.04527425765991211,-0.029471183195710182,-0.03086867183446884,-0.026388846337795258,0.058283064514398575,0.001528432359918952,-0.0437193438410759,0.02977862022817135,0.06629441678524017,-0.040443774312734604,0.027333645150065422,0.01670767366886139,0.07056939601898193,-0.009371519088745117,-0.028531888499855995,0.005838525015860796,-0.05079435557126999,0.018308060243725777,0.03387158364057541,0.05936257168650627,0.022654298692941666,-0.05232756957411766,0.0018718121573328972,-0.051754552870988846,0.017278127372264862,-0.03823686018586159,0.030134746804833412,0.04412588104605675,0.026915796101093292,-0.07172610610723495,-0.07676178961992264,-0.045042723417282104,-0.05321405082941055,-0.004661372862756252,-0.025913240388035774,-0.008810113184154034,0.07211726903915405,-0.0058387089520692825,0.08103814721107483,-0.04731232300400734,-0.041930731385946274,-0.0210056584328413,0.0008524083532392979,-0.001927838777191937,-0.03664747625589371,-0.047480884939432144,0.05181147903203964,0.06991079449653625,0.004423456732183695,0.06648478657007217,0.0027055791579186916,0.020659349858760834,-0.021020907908678055,-0.03316617012023926,-0.06000050529837608,0.055412083864212036,-0.0252629853785038,0.06347928196191788,-0.06270039826631546,0.07309569418430328,-0.025263654068112373,-0.005473785568028688,-0.020696204155683517,-0.00691695511341095,-0.050595637410879135,0.06664417684078217,-0.0799606442451477,-0.02106267213821411,-0.0467054508626461,-0.05183197185397148,-0.08187102526426315,0.0037901801988482475,-0.0020263881888240576,0.015743166208267212,-0.03435070067644119,0.008145758882164955,-0.03901277109980583,0.040982507169246674,0.017888354137539864,0.005987963639199734,-0.028957754373550415,-0.04158874973654747,-0.00929763913154602,-0.06603090465068817,-0.029491111636161804,0.006059878971427679,0.04428325593471527,0.054854895919561386,-0.050987061113119125,0.05182309448719025,-0.03934166580438614,-0.0756135880947113,0.04479162022471428,-0.06640836596488953,-0.060138702392578125,0.05346401780843735,-0.058558642864227295,0.041875191032886505,0.03550972416996956,-0.06980401277542114,-0.05901751667261124,-0.04781275615096092,-0.01649089902639389,0.0005542469443753362,-0.0282147154211998,-0.07327164709568024,0.014488662593066692,-0.04748356342315674,-0.002405669307336211,-0.025319505482912064,-0.02502446621656418,-0.04554681479930878,0.050787102431058884,0.07660891115665436,-0.030021531507372856,0.003978557884693146,0.07500097155570984,0.0013613373739644885,0.02459382824599743,0.07123643904924393,-0.02012653835117817,0.009222112596035004,-0.0727934017777443,-0.02939329855144024,0.002432256704196334,-0.018336063250899315,0.05217289924621582,-0.024630984291434288,0.03900150954723358,-0.06586997956037521,-0.0367366299033165,-0.027661718428134918,0.0651838406920433,0.017060421407222748,0.03021811693906784,-0.006686769891530275,0.047949403524398804,-0.0627601146697998,-0.011091168969869614,0.030310045927762985,-0.05280546471476555,-0.012741316109895706,0.008629271760582924,0.03307656943798065,-0.044518232345581055,0.02364528737962246,-0.07486505061388016,0.0633908361196518,0.08136866986751556,0.06179661676287651,-0.042800720781087875,0.07653650641441345,0.03561381623148918,-0.020436611026525497,0.04253407195210457,0.058466702699661255,0.047885775566101074,0.03617823123931885,0.04521527513861656,-0.06305357813835144,-0.017248408868908882,0.002154632704332471,-0.04366361349821091,0.005704616196453571,0.08349841088056564,-0.05044417828321457,0.0002968812477774918,0.0550183467566967,-0.006447016727179289,0.08055266737937927,0.006364814471453428,0.013149595819413662,0.05467762053012848,0.0406758114695549,-0.06804195791482925,-0.04293893650174141,0.049436796456575394,-0.048689134418964386,0.04010261222720146,0.06808734685182571,-0.00046367853065021336,0.016905242577195168,0.060123320668935776,0.02966385707259178,0.06467052549123764,-0.017700569704174995,-0.03065447509288788,-0.007699638605117798,0.0664319396018982,0.007412259466946125,0.04122599959373474,-0.01031199749559164,0.01132986880838871,-0.03126386180520058,0.055330533534288406,-0.060847651213407516,-0.05701602250337601,0.045180391520261765,-0.004077594727277756,0.011312919668853283,-0.0018295262707397342,0.019489217549562454,0.05197310447692871,-0.0037708745803683996,0.036820586770772934,0.06052890792489052,0.03872928395867348,0.043897032737731934,0.02694285288453102,0.06972701847553253,-0.03974224254488945,-0.004849941469728947,-0.00289626931771636,-0.03158314898610115,0.008297047577798367,-0.019402198493480682,0.027065180242061615,0.034509897232055664,0.025993917137384415,-0.0317765511572361,0.06556370109319687,-0.06782166659832001,0.026205619797110558,-0.0625976100564003,0.01531963050365448,-0.04311307892203331,-0.01438130997121334,-0.048948127776384354,-0.011272885836660862,0.06705741584300995,-0.06236138194799423,-0.017645815387368202,-0.0136671531945467,-0.04808011278510094,-0.017384273931384087,0.05604180693626404,0.037674758583307266,-0.013944140635430813,-0.029465608298778534,-0.044277697801589966,0.0577281154692173,-0.06681114435195923,0.039940450340509415,0.008373916149139404,-0.02813934162259102,0.08411405980587006,-0.039968084543943405,0.048259589821100235,-0.06498394161462784,0.013814270496368408,0.07265215367078781,0.0815923735499382,0.04661361128091812,0.04723344370722771,-0.006585775408893824,-0.07109840214252472,-0.08491302281618118,0.037950169295072556,-0.02082667499780655,-0.03568977117538452,-0.025921383872628212,-0.014215773902833462,0.045278243720531464,0.0011147644836455584,-0.04944542795419693,-0.040892306715250015,0.07088731974363327,0.01188664697110653,0.013371486216783524,0.045278046280145645,-0.01157351303845644,0.06155415624380112,-0.006056858226656914,0.02892923168838024,0.024631468579173088,0.04479087144136429,0.022233298048377037,0.052671920508146286,-0.025462837889790535,-0.07925146073102951,0.01880563609302044,0.022089771926403046,-0.0019051829585805535,0.07227351516485214,-0.0775383710861206,-0.04200834408402443,0.06634128093719482,-0.02866968885064125,-0.04138478636741638,-0.033566974103450775,-0.07802920043468475,0.03942231461405754,-0.051106005907058716,-0.016145244240760803,0.05351443588733673,0.010537905618548393,-0.049254678189754486,-0.03936457633972168,0.02029596082866192,-0.047890275716781616,0.0146022355183959,-0.04966472089290619,-0.06907626241445541,0.0017390622524544597,0.0543404296040535,-0.0338415764272213,0.0829998180270195,0.08543990552425385,-0.0032001500949263573,0.023316876962780952,-0.0012971330434083939,0.00126048328820616,0.04255680367350578,0.027042383328080177,0.03250430151820183,0.0077295005321502686,-0.03243972733616829,0.05440422520041466,0.01735767349600792,0.059871457517147064,-0.07424812763929367,0.06196204572916031,0.022044852375984192,0.011655699461698532,-0.033098477870225906,0.06106097251176834,-0.05173826217651367,-0.05403875187039375,0.025156596675515175,-0.014926321804523468,0.051505785435438156,0.035679709166288376,0.051546063274145126,-0.01907370612025261,0.052111100405454636,-0.004181594122201204,-0.03847531974315643,-0.07246554642915726,-0.018697265535593033,-0.012800123542547226,-0.0516272597014904,0.03154550865292549,0.0472104474902153,-0.05390704423189163,-0.07160878926515579,0.025626372545957565,0.0256637092679739,0.05920515954494476,0.03888394311070442,0.02877979166805744,-0.010277442634105682,0.024415116757154465,-0.06071561574935913,0.0205656997859478,0.055115483701229095,0.004690241068601608,0.04208563640713692,-0.05842679738998413,-0.06558338552713394,-0.060333020985126495,-0.05154742673039436,-0.029676401987671852,-0.04266130551695824,-0.01897924207150936,0.05944180488586426,0.0369001142680645,0.052566755563020706,-0.0519494004547596,-0.06326626986265182,-0.08159636706113815,-0.019279720261693,0.07599545270204544,-0.010191433131694794,0.075042724609375,0.00924232229590416,-0.04405178502202034,0.016737936064600945,-0.07817951589822769,0.08126383274793625,-0.03922106698155403,0.07264802604913712,-0.026030458509922028,-0.01768251322209835,0.0007762029417790473,-0.01589772291481495,0.03693731129169464,0.041118744760751724,-0.01619206741452217,0.0752810388803482,0.0690237507224083,-0.05584639310836792,0.0533488504588604,0.0053518605418503284,-0.055936019867658615,-0.0658203661441803,-0.05334172397851944,-0.017448538914322853,-0.07446721196174622,-0.03879661113023758,0.031590357422828674,-0.02872200682759285,0.02674950286746025,-0.023996738716959953,-0.06260937452316284,0.05659422650933266,0.07384796440601349,-0.07055601477622986,0.026526501402258873,-0.04764464497566223,0.020167898386716843,-0.01990940421819687,-0.03279755264520645,0.013921022415161133,0.04574989899992943,-0.062259647995233536,0.03569063916802406,0.08690398186445236,-0.07983846962451935,0.051088616251945496,-0.005854415241628885,0.007218472193926573,-0.06567304581403732,0.03470743075013161,0.01624359004199505,0.0006299648084677756,-0.06719264388084412,-0.017782220616936684,0.03619425371289253,0.0344984270632267,-0.06963378936052322,0.04362558200955391,-0.04948224872350693,0.02780221588909626,0.011399035342037678,-0.012640689499676228,0.0485713891685009,-0.043053001165390015,0.031705014407634735,-0.03673809394240379,-0.03438316285610199,0.03383048251271248,0.036040738224983215,0.02854405902326107,0.0017785935197025537,0.02026086114346981,0.04180037975311279,0.05555648356676102,-0.03216300159692764,0.013472439721226692,0.06808251142501831,-0.022969968616962433,-0.055760595947504044,-0.06565335392951965,0.019739117473363876,-0.02122414857149124,0.02898854948580265,0.03781304508447647,-0.022743992507457733,-0.06683441996574402,0.0026966179721057415,0.04005254805088043,-0.04634268209338188,-0.06206448748707771,-0.0025385739281773567,0.06354367733001709,0.019909678027033806,0.035623110830783844,-0.07926902174949646,0.06642074882984161,-0.035185106098651886,0.01654745265841484,0.06306535005569458,-0.02766977809369564,-0.0028143145609647036,-0.022404653951525688,-0.003451970871537924,-0.014138506725430489,0.006171690300107002,-0.06965351104736328,-0.08077457547187805,0.030471930280327797,0.027074815705418587]},{"id":"haiku--13","vector":[0.06778081506490707,-0.05336407572031021,-0.00721180671826005,0.038794927299022675,-0.04383910074830055,0.05047960951924324,-0.011872643604874611,-0.05935950204730034,0.05272793397307396,0.003878029529005289,0.053172606974840164,-0.007005435414612293,-0.03438008576631546,-0.0003149848198518157,-0.06177668273448944,0.026419276371598244,-0.028611263260245323,-0.07382272183895111,-0.023136449977755547,0.03353282809257507,0.04644815996289253,-0.006891204044222832,0.04677675664424896,-0.02438480220735073,0.027709709480404854,-0.01293735671788454,-0.02584742195904255,-0.010062853805720806,-0.060824960470199585,0.0056758844293653965,0.04776334390044212,-0.0030115838162600994,-0.034124959260225296,-0.006183183752000332,0.06381604820489883,0.03680642321705818,-0.050156041979789734,0.05850869417190552,0.0638243556022644,-0.03642088547348976,-0.004630087409168482,0.00856641586869955,0.07406144589185715,-0.03352554515004158,-0.023772284388542175,0.009728134609758854,-0.03707418590784073,0.008292792364954948,0.054300956428050995,0.05694597214460373,-0.017880693078041077,-0.051847413182258606,0.035495687276124954,-0.04604993388056755,0.02165824919939041,-0.0320819690823555,0.029908115044236183,0.03374738246202469,0.055455610156059265,-0.06981949508190155,-0.0753742903470993,-0.009232616983354092,-0.04652100056409836,0.03930559381842613,-0.023845244199037552,0.010365333408117294,0.06612532585859299,0.015612674877047539,0.07851668447256088,-0.029787177219986916,-0.007436184678226709,-0.0032197567634284496,0.024100305512547493,0.008129986934363842,-0.03759453445672989,-0.05402849614620209,0.029271958395838737,0.06763872504234314,0.011464492417871952,0.055820122361183167,0.0075271897949278355,0.04715510830283165,-0.020183468237519264,-0.03833543136715889,-0.0520794540643692,0.055538758635520935,-0.014958882704377174,0.06932306289672852,-0.05875302478671074,0.0760059803724289,-0.028673561289906502,-0.04396671801805496,-0.04414372146129608,-0.005216487683355808,-0.04828837886452675,0.04170534387230873,-0.08115100860595703,-0.038463931530714035,-0.06631302833557129,-0.050821464508771896,-0.08038520067930222,0.006143765989691019,-0.006072407588362694,0.0446663461625576,-0.04750509932637215,0.023104768246412277,-0.04596995934844017,0.05769800767302513,0.07022692263126373,0.007174296770244837,-0.03998702019453049,-0.07019820809364319,-0.016905933618545532,-0.04568568617105484,-0.031415436416864395,-0.008606956340372562,0.004388286732137203,0.06497427821159363,-0.051644280552864075,0.06059304252266884,-0.04633227735757828,-0.07941781729459763,0.031382691115140915,-0.058980681002140045,-0.05600696802139282,0.05421702191233635,-0.0491216741502285,0.0422271229326725,0.018302595242857933,-0.06217501685023308,-0.023683762177824974,-0.03744480386376381,-0.025487199425697327,0.022609909996390343,-0.032290346920490265,-0.07159058749675751,0.02224043756723404,-0.03803098946809769,-0.012220843695104122,-0.0044900206848979,-0.013727208599448204,-0.07073505967855453,0.0162934809923172,0.06978973001241684,-0.025518249720335007,-0.019622724503278732,0.06462699174880981,0.019133787602186203,0.033477697521448135,0.06433179974555969,-0.022271839901804924,0.010175995528697968,-0.05888091400265694,-0.04071813076734543,-0.04391917958855629,-0.04090597480535507,0.06570371240377426,-0.036832790821790695,0.0385461300611496,-0.061761438846588135,-0.028391608968377113,-0.016357315704226494,0.05608387663960457,-0.03768036141991615,0.04751533269882202,0.058787278831005096,-0.013924975879490376,-0.05764907971024513,0.002122958190739155,0.04559725150465965,-0.07208215445280075,-0.005050678737461567,0.02030746452510357,0.024703841656446457,-0.034014422446489334,0.006641380488872528,-0.07380455732345581,0.07361751794815063,0.0809025838971138,0.07470361888408661,0.016605796292424202,0.07891780883073807,0.012491937726736069,0.02820078283548355,0.0669751763343811,0.045279573649168015,0.034349534660577774,0.04388405382633209,0.058263372629880905,-0.054006170481443405,0.019593946635723114,0.0014257262228056788,-0.039643194526433945,-0.011234061792492867,0.0804160088300705,-0.03539058193564415,-0.023322653025388718,0.008201075717806816,-0.021063879132270813,0.08340775966644287,0.024821972474455833,0.0030821915715932846,0.02817491628229618,0.03193521872162819,-0.06394761800765991,-0.028138112276792526,0.04312582314014435,-0.0031940345652401447,0.04477393254637718,0.06869359314441681,-0.010623122565448284,0.018331419676542282,0.060886163264513016,-0.0031782242003828287,0.06905806064605713,0.0239351037889719,0.027049347758293152,-0.05081360787153244,0.06884634494781494,0.021794287487864494,0.038350120186805725,0.0062843551859259605,0.015673767775297165,-0.07714324444532394,0.06486766040325165,-0.054371945559978485,-0.06919892877340317,0.01589888520538807,0.008058440871536732,0.01852014660835266,-0.04093826189637184,0.017643731087446213,0.02864008955657482,0.020708920434117317,0.01044472400099039,0.0489673875272274,0.03743405640125275,0.07364910840988159,0.008510040119290352,0.06942115724086761,-0.05142305791378021,-0.0025383676402270794,0.0005514724180102348,-0.011152680963277817,0.02223225124180317,-0.028596527874469757,-0.005976417567580938,0.014232836663722992,-0.010267219506204128,-0.048462945967912674,0.0528096966445446,-0.07154926657676697,0.04256460815668106,-0.0621146522462368,-0.020545659586787224,-0.011202548630535603,0.002363430568948388,-0.06766647845506668,-0.025758059695363045,0.06733131408691406,-0.047714751213788986,-0.047208208590745926,-0.0032259412109851837,0.010126709006726742,0.008390368893742561,0.02313450537621975,0.04428510740399361,-0.022153988480567932,-0.037136681377887726,-0.0347057580947876,0.07295780628919601,-0.061922963708639145,0.038372937589883804,-0.025474809110164642,0.011239586398005486,0.08266785740852356,-0.04146992787718773,0.01717727817595005,-0.03340538218617439,-0.008990950882434845,0.07226169854402542,0.0792880430817604,0.01005614921450615,0.04642162472009659,-0.01994503103196621,-0.0686551183462143,-0.08362029492855072,0.022252222523093224,0.008362127467989922,-0.042983997613191605,-0.04210146889090538,-0.03150922805070877,0.0734419971704483,0.013096525333821774,-0.007947699166834354,-0.03769293799996376,0.06565364450216293,0.05594192445278168,0.03304459527134895,0.05035770311951637,-0.023623935878276825,0.07674627006053925,0.005548554472625256,0.03157751262187958,0.017672449350357056,0.021086057648062706,0.0473027378320694,0.025486815720796585,0.0010271129431203008,-0.07799426466226578,-0.02137107588350773,0.026789307594299316,0.0032770661637187004,0.07440361380577087,-0.07197670638561249,-0.046361107379198074,0.06653614342212677,-0.024677811190485954,-0.057318225502967834,-0.03959787264466286,-0.0786343440413475,0.02889353223145008,-0.0540020726621151,-0.019595270976424217,0.03462646156549454,-0.011982203461229801,-0.03812362253665924,-0.019535185769200325,0.029384419322013855,-0.07597716897726059,-0.013388742692768574,-0.028793439269065857,-0.07787375152111053,-0.012261103838682175,0.05511748418211937,0.030842380598187447,0.08089233189821243,0.0814414694905281,0.030582956969738007,0.02410714514553547,-0.01638336293399334,-0.00198658206500113,0.060746222734451294,-0.017138658091425896,0.021741965785622597,-0.0028953091241419315,0.012586571276187897,0.06243486329913139,-0.006504524033516645,0.05287224054336548,-0.06082233414053917,0.07352142035961151,0.0018759422237053514,0.01759357750415802,-0.02582789957523346,0.043035224080085754,-0.0071107312105596066,-0.06787434220314026,-0.004623249173164368,0.022766217589378357,0.05402820184826851,0.035634662955999374,0.045022010803222656,-0.025416724383831024,0.005873359274119139,0.008781393989920616,-0.045889951288700104,-0.06037404388189316,-0.04044327139854431,-0.04829518496990204,-0.05889056995511055,0.015407430939376354,0.0525486059486866,-0.06438294053077698,-0.0773644670844078,0.011510101146996021,0.01867058500647545,0.05057775601744652,-0.017734305933117867,0.05451219528913498,0.0019311878131702542,0.0450589619576931,-0.057849857956171036,-0.008472523652017117,0.0562041774392128,0.018015284091234207,0.06812182813882828,-0.018355034291744232,-0.06350624561309814,-0.06516797840595245,-0.04123125225305557,-0.02131287008523941,-0.04295222461223602,0.022964943200349808,0.06657153367996216,0.03485676646232605,0.04332968220114708,-0.060585394501686096,-0.055023692548274994,-0.06382140517234802,-0.028392501175403595,0.08124638348817825,0.019694125279784203,0.0636148452758789,-0.0007723033777438104,-0.0328066423535347,0.04154364392161369,-0.07037767022848129,0.07918938994407654,-0.06609530001878738,0.06820148229598999,-0.0003909143269993365,-0.02813136763870716,-0.030852114781737328,-0.00937644112855196,0.03649307042360306,0.025234151631593704,-0.026821449398994446,0.07982856035232544,0.07329488545656204,-0.038164570927619934,0.04080207645893097,-0.020514288917183876,-0.05612511187791824,-0.0699499174952507,-0.018956193700432777,-0.059620194137096405,-0.06620709598064423,-0.04203253984451294,0.005953467451035976,-0.04285635054111481,0.02053086832165718,-0.0028452135156840086,-0.05949331074953079,0.07180380076169968,0.07779090851545334,-0.0678420290350914,-0.001937636872753501,-0.04958829656243324,0.03454330563545227,-0.015127978287637234,-0.041889116168022156,0.025428635999560356,0.06088649854063988,-0.06923781335353851,0.05156954377889633,0.08155415952205658,-0.07614041119813919,0.05640692263841629,0.004781271331012249,0.005692063365131617,-0.04584837704896927,0.02852482907474041,0.023554489016532898,0.05896966904401779,-0.07069363445043564,-0.0017831046134233475,0.05168621987104416,0.01216280460357666,-0.06707841902971268,0.015047640539705753,-0.0496336929500103,0.020020905882120132,0.0358562171459198,0.001047662808559835,0.05494198203086853,-0.044738393276929855,0.020808303728699684,-0.04852079600095749,-0.041054945439100266,0.013836425729095936,0.07315216213464737,0.014017821289598942,-0.017789699137210846,0.020445989444851875,0.02821742743253708,0.043463341891765594,0.023999392986297607,0.006517501547932625,0.05999493598937988,-0.012482579797506332,-0.015102452598512173,-0.0626288652420044,0.010844663716852665,0.007097956258803606,-0.002250123070552945,0.02799038030207157,-0.029216432943940163,-0.06675387918949127,-0.012857143767178059,0.022571804001927376,-0.02493187040090561,-0.0436631478369236,0.022076642140746117,0.06150437146425247,-0.011251401156187057,0.008285952731966972,-0.055734530091285706,0.06546349823474884,-0.01987951435148716,0.01119436975568533,0.0660041868686676,-0.01794058457016945,-0.007635672576725483,-0.029548073187470436,0.03560357913374901,0.026796801015734673,-0.014743235893547535,-0.07594621181488037,-0.07240816205739975,0.023289762437343597,0.042012106627225876]},{"id":"haiku--14","vector":[0.04883628711104393,-0.023237016052007675,-0.006123766303062439,0.019577959552407265,-0.02375447191298008,0.052352484315633774,-0.010959451086819172,-0.07816215604543686,0.04581346735358238,0.03296560049057007,0.00920136272907257,-0.010577498935163021,-0.03187212347984314,-0.016022445634007454,-0.06664706021547318,0.02775786817073822,-0.06345181912183762,-0.06196645647287369,-0.02068123035132885,0.06033549830317497,0.03182823956012726,-0.019435402005910873,0.006450801156461239,-0.06166667491197586,0.03188061714172363,0.00684000551700592,-0.021961502730846405,0.023762060329318047,-0.04970729723572731,-0.05424325168132782,0.06283318251371384,-0.023652561008930206,0.004401216749101877,-0.012427247129380703,0.05702543631196022,0.024395441636443138,-0.04336114972829819,0.03860873728990555,0.07051047682762146,-0.05845548212528229,0.009830289520323277,0.011844979599118233,0.06384097784757614,-0.0376572422683239,-0.03252863883972168,-0.00900365598499775,-0.05670788139104843,-0.007713089697062969,0.024933699518442154,0.06286030262708664,0.031063690781593323,-0.04101657494902611,0.002015704056248069,-0.01742154359817505,0.02063480019569397,-0.0456964373588562,0.0007509695715270936,0.061214011162519455,0.030754851177334785,-0.06951360404491425,-0.07534527778625488,-0.021272897720336914,-0.051205020397901535,0.007444695103913546,0.008845522999763489,-0.02511986531317234,0.07668594270944595,0.049744460731744766,0.07423989474773407,-0.04261869937181473,-0.03300302103161812,-0.014487862586975098,0.036731697618961334,-0.00356195867061615,-0.05795321241021156,-0.05212016403675079,0.057899110019207,0.06321006268262863,0.016085036098957062,0.06082328408956528,0.0022632265463471413,0.023460788652300835,-0.0054227146320044994,-0.030662158504128456,-0.05571705847978592,0.05691927298903465,-0.016588661819696426,0.06786301732063293,-0.057933684438467026,0.08128499984741211,-0.03262607380747795,-0.05459222570061684,-0.004296913743019104,0.00923555251210928,-0.04850735515356064,0.04076516628265381,-0.07304086536169052,-0.032430943101644516,-0.05418762192130089,-0.05398137867450714,-0.08244755864143372,0.01244398020207882,-0.00029520640964619815,0.020968377590179443,-0.01202116534113884,0.032870691269636154,-0.07106467336416245,0.02445985935628414,0.04315140098333359,0.03799540549516678,-0.02902761660516262,-0.06138233095407486,0.007072017528116703,-0.05235296115279198,-0.04366292059421539,0.006321083754301071,-0.014875981025397778,0.04647884890437126,-0.06442348659038544,0.040650300681591034,-0.03018685057759285,-0.07133430242538452,0.040711451321840286,-0.0665748119354248,-0.05781564116477966,0.022744985297322273,-0.06518915295600891,0.05155386030673981,0.04777979478240013,-0.0792742595076561,-0.06798909604549408,-0.051995839923620224,-0.0031620925292372704,0.009064468555152416,-0.03843500465154648,-0.06718723475933075,-0.006179927382618189,-0.03852942958474159,-0.016180383041501045,-0.012547526508569717,-0.027401890605688095,-0.05716487020254135,0.05219461768865585,0.07222267985343933,-0.037679094821214676,0.015289414674043655,0.07283025234937668,0.01521337404847145,0.029094088822603226,0.0685565173625946,-0.013604194857180119,0.007879754528403282,-0.06447699666023254,-0.05491802096366882,-0.02313655987381935,-0.034543123096227646,0.05271589756011963,-0.03299465402960777,0.06240466609597206,-0.05848684534430504,-0.03134544566273689,0.0002750712155830115,0.05627031624317169,0.005815725773572922,0.03449341282248497,0.009249325841665268,0.01533850934356451,-0.06095191463828087,-0.010472363792359829,0.03360447287559509,-0.05740734934806824,0.009173627942800522,-0.004667948465794325,0.06390222162008286,-0.007805226370692253,0.03121478110551834,-0.07737769931554794,0.06434540450572968,0.07680308818817139,0.06222362443804741,-0.033288680016994476,0.07500338554382324,0.024968719109892845,0.0003118281892966479,0.040960002690553665,0.060401953756809235,0.03614740073680878,0.04308701679110527,0.027604561299085617,-0.0671485885977745,-0.020726507529616356,-0.017463568598031998,-0.03422980755567551,0.0036594062112271786,0.07986888289451599,-0.041175179183483124,-0.0006019592983648181,0.044706884771585464,-0.005358750931918621,0.07922599464654922,-0.015379085205495358,0.014939207583665848,0.0461110845208168,0.03541136160492897,-0.04654008895158768,-0.04535572603344917,0.03186074644327164,-0.04422662407159805,0.03151288628578186,0.06797365099191666,-0.002861185697838664,0.04746437817811966,0.06514527648687363,0.01163539756089449,0.055450957268476486,-0.0015265316469594836,-0.01890232227742672,-0.016251424327492714,0.056947026401758194,-0.012327037751674652,0.05930403247475624,0.018077651038765907,-0.024985091760754585,-0.0591529943048954,0.05506480485200882,-0.06589967757463455,-0.045552145689725876,0.0217242781072855,-0.017567509785294533,0.02750875987112522,-0.008747074753046036,0.023814568296074867,0.048978354781866074,0.011313199996948242,0.027710799127817154,0.02030160278081894,0.030784865841269493,0.030306357890367508,-0.0007778769941069186,0.07542280107736588,-0.054787371307611465,0.023203754797577858,0.003608757397159934,-0.01010827999562025,0.024587027728557587,0.001085989293642342,0.0029117343947291374,0.036580897867679596,0.04227960854768753,-0.05040416121482849,0.0694071501493454,-0.05842871963977814,0.042472563683986664,-0.05807167664170265,-0.012333676218986511,-0.017925232648849487,-0.03300800919532776,-0.05783207714557648,-0.02424018271267414,0.07131103426218033,-0.04924239218235016,-0.007030498702079058,-0.010001060552895069,0.02278037928044796,0.04424801841378212,0.034424617886543274,0.042120303958654404,-0.010854105465114117,-0.030103903263807297,-0.05165145546197891,0.06740136444568634,-0.06657411903142929,0.01745465025305748,-0.020632969215512276,-0.01435373816639185,0.07491602003574371,-0.02755143865942955,0.04532959684729576,-0.03628428652882576,-0.03290785476565361,0.06500615179538727,0.0742579773068428,0.026106253266334534,0.03514167293906212,-0.020657839253544807,-0.06563446670770645,-0.08029752969741821,0.0010773304384201765,-0.027972815558314323,-0.019261011853814125,-0.02091408707201481,-0.018715308979153633,0.06506678462028503,0.04150024428963661,-0.03132049739360809,-0.052613094449043274,0.06084061041474342,0.03369469940662384,0.039021123200654984,0.0403468981385231,-0.012103086337447166,0.060178980231285095,0.0021442712750285864,0.008333420380949974,0.029494497925043106,0.02076210081577301,0.03665098175406456,0.02505585178732872,0.009910300374031067,-0.08161475509405136,-0.01978042535483837,0.02455933950841427,-0.009594598785042763,0.07347838580608368,-0.08134590834379196,-0.05013703182339668,0.06361476331949234,-0.01177299302071333,-0.04551342502236366,-0.04125718027353287,-0.08071624487638474,0.05092316120862961,-0.055788736790418625,-0.017373887822031975,0.040882658213377,-0.005147839896380901,-0.03347371146082878,-0.034437283873558044,0.051369063556194305,-0.050737787038087845,-0.01168268546462059,-0.04652463272213936,-0.0724271610379219,-0.03556052967905998,0.056900180876255035,0.009170789271593094,0.0816594809293747,0.08182207494974136,0.019357632845640182,0.008912025019526482,0.03674117475748062,0.009894625283777714,0.052712295204401016,0.020176995545625687,0.04217475280165672,0.02558187209069729,-0.03981795534491539,0.060427773743867874,-0.0326986126601696,0.05377497896552086,-0.076443612575531,0.07403591275215149,0.019795680418610573,0.003817294491454959,0.02256627567112446,0.05173403024673462,-0.03171179071068764,-0.059754081070423126,-0.016721494495868683,-0.02189389429986477,0.061125777661800385,0.024501604959368706,0.01489999145269394,-0.001743219792842865,0.02460726536810398,-0.00524638406932354,-0.036069583147764206,-0.06510798633098602,-0.02700773999094963,-0.01716403290629387,-0.04800022765994072,0.03310459479689598,0.038479726761579514,-0.047822482883930206,-0.07672500610351562,0.008798392489552498,0.011774662882089615,0.046632394194602966,0.007694744039326906,0.056862302124500275,-0.00989458616822958,0.04293416440486908,-0.058805614709854126,0.05095140263438225,0.03329538553953171,0.007805559318512678,0.05520906671881676,-0.062325846403837204,-0.05570173263549805,-0.06677332520484924,-0.05937260761857033,-0.04750970005989075,-0.027146989479660988,0.034324582666158676,0.06526903063058853,0.030082855373620987,0.053985025733709335,-0.05087381228804588,-0.05222238972783089,-0.08245204389095306,-0.026725109666585922,0.07984916120767593,0.01825748011469841,0.05606410652399063,0.013679472729563713,-0.014802615158259869,0.04441039636731148,-0.0748663917183876,0.07688061892986298,-0.043798238039016724,0.07757255434989929,0.027498947456479073,-0.024004971608519554,-0.013470537960529327,-0.007251904346048832,0.030215321108698845,0.04744686186313629,-0.02265126444399357,0.07418743520975113,0.06840138137340546,-0.04868865758180618,0.06673809140920639,0.015648135915398598,-0.05468332767486572,-0.06164717674255371,-0.026670245453715324,-0.043666861951351166,-0.0785980299115181,-0.030908646062016487,0.041544411331415176,-0.055771756917238235,0.038596320897340775,-0.02085763029754162,-0.06800555437803268,0.03665488585829735,0.0688377320766449,-0.07457248866558075,-0.011762535199522972,-0.06627398729324341,0.013501790352165699,-0.03241026774048805,-0.05401301383972168,0.055836573243141174,0.03874560818076134,-0.07193953543901443,0.04197242856025696,0.0855443999171257,-0.06992042809724808,0.064954474568367,0.002618103986606002,-0.011843068525195122,-0.04433402419090271,0.026993732899427414,0.009664261713624,0.040008991956710815,-0.06134519353508949,0.020782694220542908,0.027399882674217224,0.04775979369878769,-0.04917159304022789,0.027055904269218445,-0.03818283602595329,0.027518372982740402,0.035872865468263626,-0.0027736108750104904,0.05508764833211899,-0.06551430374383926,0.034788038581609726,-0.03985568508505821,-0.03998181223869324,0.03509765490889549,0.04971032589673996,0.029559416696429253,-0.021967094391584396,0.009939710609614849,0.03565087169408798,0.05031586065888405,0.04305706545710564,-0.02229119837284088,0.0709148645401001,0.0024248750414699316,-0.019352052360773087,-0.03939637541770935,0.01633439026772976,0.01776961423456669,0.027305176481604576,0.030149629339575768,-0.05090513452887535,-0.05837486311793327,0.010376231744885445,-0.010191419161856174,-0.06597679853439331,-0.05338044464588165,-0.0010914203012362123,0.06959075480699539,0.011824301443994045,-0.007170565892010927,-0.07050769776105881,0.06478292495012283,-0.01880030706524849,0.04980107769370079,0.05519706383347511,-0.0034758553374558687,0.015416271053254604,-0.051392849534749985,0.027634676545858383,0.00973595678806305,0.0033977502025663853,-0.07805665582418442,-0.07915953546762466,0.05215245112776756,0.03031870163977146]},{"id":"haiku--3","vector":[0.04166676104068756,-0.048831820487976074,-0.016873328015208244,0.03978704661130905,-0.015127740800380707,0.042193856090307236,-0.010822765529155731,-0.07220472395420074,0.04849366098642349,0.011174911633133888,0.024103371426463127,-0.04872734472155571,-0.04730704054236412,-0.011696573346853256,-0.0680207684636116,0.015169371850788593,-0.04201774299144745,-0.06475701183080673,-0.013798332773149014,0.05807478353381157,-0.003987596835941076,-0.01421918161213398,0.04236852377653122,-0.04888789728283882,0.016874687746167183,-0.036161068826913834,-0.0297909714281559,-0.03652264177799225,-0.046034909784793854,-0.009830575436353683,0.04673570767045021,-0.05813739076256752,0.00662747398018837,-0.01199452392756939,0.06234728544950485,0.0284474678337574,-0.043863486498594284,0.017806977033615112,0.06879299879074097,-0.030528875067830086,0.0003598220937419683,0.007948820479214191,0.06552734971046448,-0.027256309986114502,-0.012493734247982502,-0.010326315648853779,-0.04104040190577507,-0.00740831857547164,0.03140310198068619,0.06638180464506149,0.006869157776236534,-0.06077256798744202,0.02663862705230713,-0.05503522977232933,0.009203236550092697,-0.0044452534057199955,0.0053977882489562035,0.04482929781079292,0.01777409203350544,-0.07400601357221603,-0.06864352524280548,-0.03523620590567589,-0.041759975254535675,-0.028141440823674202,-0.02651294320821762,0.020940063521265984,0.07200319319963455,0.019594263285398483,0.07401642948389053,-0.05227245017886162,-0.045700907707214355,-0.039166707545518875,0.03331667184829712,0.013777789659798145,-0.019562268629670143,-0.05949300527572632,0.024302678182721138,0.0761919841170311,-0.029658038169145584,0.05827545002102852,0.016154920682311058,0.010859566740691662,-0.0315297469496727,-0.042497165501117706,-0.050613366067409515,0.05720658227801323,0.021859290078282356,0.07516524195671082,-0.05849700793623924,0.06236622482538223,-0.038267817348241806,-0.011743640527129173,-0.039151906967163086,0.026725947856903076,-0.03982389345765114,0.05153534561395645,-0.07577027380466461,-0.027805717661976814,-0.03925425186753273,-0.04542488604784012,-0.07945212721824646,0.0030901958234608173,0.003041420131921768,0.01769057847559452,-0.03071143664419651,0.026169374585151672,0.0015454146778210998,0.05519299954175949,0.024639785289764404,-0.0059503973461687565,0.009230205789208412,-0.05962173640727997,-0.004287088289856911,-0.06504254788160324,-0.029200797900557518,-0.0030796390492469072,0.022934196516871452,0.05721324309706688,-0.045318543910980225,0.05121186375617981,-0.020665930584073067,-0.07120776176452637,0.049669839441776276,-0.07462110370397568,-0.055569592863321304,0.020860709249973297,-0.03671492636203766,0.055985771119594574,0.020014140754938126,-0.06945047527551651,-0.06251798570156097,-0.054560981690883636,-0.04381982609629631,0.01607576198875904,-0.040151435881853104,-0.06783205270767212,-0.015060114674270153,-0.06302045285701752,0.012234740890562534,0.008109384216368198,-0.03366940841078758,-0.06546123325824738,0.05801387503743172,0.06941043585538864,-0.04057566449046135,0.00938652828335762,0.05768382549285889,0.023021889850497246,0.051551684737205505,0.05720182880759239,-0.028224565088748932,0.01257280446588993,-0.06905879825353622,-0.06239823251962662,0.06235421076416969,-0.0035489522852003574,0.049279481172561646,-0.02488761395215988,0.044500526040792465,-0.059159282594919205,-0.03214837238192558,-0.008943522348999977,0.05787071958184242,0.0027875248342752457,0.04164011776447296,0.05543604865670204,0.0476309098303318,-0.04759390279650688,-0.013736862689256668,0.04468895494937897,-0.05949307978153229,-0.015657413750886917,-0.0019686922896653414,0.03945143148303032,-0.0639721155166626,0.005627157632261515,-0.07598646730184555,0.06844893842935562,0.07818590849637985,0.05731946602463722,-0.022779742255806923,0.07853823155164719,0.04424262046813965,0.01377785112708807,0.013177569955587387,0.07517533749341965,0.033128753304481506,0.041147541254758835,0.030931048095226288,-0.05943409353494644,-0.026125673204660416,-0.03226989880204201,-0.031338710337877274,-0.027762532234191895,0.08034972846508026,-0.05460238456726074,-0.04170162230730057,0.04694389924407005,-0.030986692756414413,0.08079204708337784,0.011013488285243511,0.00298900343477726,0.028043268248438835,0.002908836817368865,-0.05963911488652229,-0.05299992114305496,0.051249053329229355,-0.03768669813871384,0.04492556303739548,0.07567751407623291,0.001016645459458232,0.03977031260728836,0.06399539858102798,0.029805637896060944,0.0533711202442646,-0.00950480904430151,-0.017188221216201782,-0.023271160200238228,0.06616685539484024,0.05056440085172653,0.05381106212735176,-0.03858831897377968,0.0335078239440918,-0.0304966252297163,0.059415869414806366,-0.041215572506189346,-0.04409593716263771,0.0227751974016428,0.009468214586377144,0.009947125799953938,0.002239950466901064,0.017583951354026794,0.024813884869217873,0.011872188188135624,0.017770657315850258,0.06526920199394226,0.04576138034462929,0.05536802113056183,0.02964816614985466,0.07399585098028183,-0.05794784054160118,-0.0007366167847067118,0.0057827201671898365,-0.03167181462049484,0.023907916620373726,0.0021012090146541595,-0.006594717502593994,0.03920351713895798,0.04531479999423027,-0.05268704146146774,0.052929263561964035,-0.07046043127775192,0.040995530784130096,-0.060769617557525635,-0.0016940764617174864,-0.024572934955358505,0.004964439198374748,-0.05673301964998245,-0.013005342334508896,0.05984586849808693,-0.06872180849313736,0.0012085523921996355,-0.004364602733403444,0.010630445554852486,0.022035226225852966,0.03070499189198017,0.02789393998682499,0.014629506506025791,0.009942222386598587,-0.05439472943544388,0.0658721774816513,-0.0717112272977829,0.03034703992307186,-0.012277007102966309,-0.02686312608420849,0.07561416178941727,-0.03936802223324776,0.05823594704270363,-0.04320306330919266,-0.012353045865893364,0.06640423834323883,0.07968341559171677,0.051431648433208466,0.01684758812189102,-0.03186512738466263,-0.0654759556055069,-0.08281667530536652,0.04003950580954552,-0.01879063807427883,-0.04981634020805359,-0.014874299988150597,0.010958673432469368,0.050509218126535416,0.0308805201202631,-0.05307683348655701,-0.042085200548172,0.06808009743690491,0.05348844453692436,0.03037595935165882,0.040592536330223083,-0.0291866697371006,0.0617891401052475,0.012453632429242134,0.026948606595396996,0.01649508625268936,0.0471196323633194,0.028148062527179718,0.020017176866531372,-0.026987511664628983,-0.07719512283802032,-0.0019167100545018911,-0.008027765899896622,0.0002897552913054824,0.07192646712064743,-0.07610344886779785,-0.05057254433631897,0.052327852696180344,-0.016220951452851295,-0.052397362887859344,-0.022608615458011627,-0.07584409415721893,0.037806350737810135,-0.05656569078564644,-0.011223098263144493,0.054714467376470566,-0.006912091746926308,-0.022326653823256493,-0.037894830107688904,0.008904535323381424,-0.06099352613091469,0.016251536086201668,-0.04670695215463638,-0.07295972853899002,-0.010873880237340927,0.05377691984176636,-0.0010348295327275991,0.08471950888633728,0.08109593391418457,0.03823694586753845,0.04715404659509659,-0.020239802077412605,0.008474779315292835,0.031116921454668045,0.036770742386579514,0.009689467027783394,-0.001451299642212689,-0.025374846532940865,0.06237555295228958,-0.017972087487578392,0.05715300515294075,-0.07949928939342499,0.06884927302598953,0.008447599597275257,0.02142595499753952,0.006667067296802998,0.04662160202860832,-0.04695860669016838,-0.05892029404640198,0.0221245177090168,-0.012455478310585022,0.051979292184114456,0.03523464500904083,0.009775017388164997,-0.02696017175912857,0.05109730362892151,-0.006885639391839504,-0.036843422800302505,-0.06250587850809097,-0.03565823286771774,-0.009558646008372307,-0.058118198066949844,0.02174965664744377,0.04333806410431862,-0.07181160897016525,-0.07500632852315903,0.029107149690389633,0.054240912199020386,0.06399764865636826,0.018487071618437767,0.0510832741856575,0.007983002811670303,0.004075384233146906,-0.06674466282129288,0.05348052829504013,0.02435673028230667,0.008436204865574837,0.06263244897127151,-0.05435926094651222,-0.05731798708438873,-0.0669904500246048,-0.05148130655288696,-0.04532438516616821,-0.03293438255786896,0.005834353622049093,0.06400088220834732,0.039438579231500626,0.04843289405107498,-0.06083264201879501,-0.05338849499821663,-0.07961519807577133,-0.036216653883457184,0.077603779733181,-0.010545426048338413,0.07089213281869888,-0.006548622623085976,-0.028514839708805084,0.03292452171444893,-0.06890401244163513,0.07429464161396027,-0.05734691768884659,0.06707338988780975,0.0002557276748120785,-0.032481856644153595,-0.01828848570585251,-0.002894338686019182,0.022566918283700943,0.03026849403977394,0.0029291859827935696,0.07176829129457474,0.06012852489948273,-0.057484496384859085,0.04186907038092613,0.04629690945148468,-0.058154962956905365,-0.06874831020832062,-0.028581377118825912,-0.01563713699579239,-0.048630211502313614,-0.020351702347397804,0.01767953298985958,-0.046873271465301514,0.008329464122653008,-0.013494709506630898,-0.06838767975568771,0.04462555795907974,0.07217948883771896,-0.06490425765514374,0.010912426747381687,-0.05293021723628044,0.017218008637428284,-0.017466485500335693,-0.037486813962459564,0.04601342976093292,0.058306559920310974,-0.0682014673948288,0.05209467187523842,0.080930195748806,-0.07184188067913055,0.06491785496473312,0.0011099057737737894,0.040927428752183914,-0.0671284943819046,0.018782563507556915,0.0104106105864048,0.040318749845027924,-0.06588856130838394,-0.02316897176206112,0.04822910949587822,0.02737833559513092,-0.0450865663588047,0.019587159156799316,-0.048080477863550186,0.0431082658469677,0.00029035392799414694,-0.01369635108858347,0.04989585652947426,-0.037710271775722504,0.029965287074446678,-0.04003645107150078,-0.040764205157756805,0.03251514211297035,0.0522015206515789,0.005740559194236994,0.0106377387419343,-0.016056876629590988,0.030087796971201897,0.06587085872888565,0.05519532039761543,-0.017464568838477135,0.06191408634185791,-0.018785996362566948,-0.03131512552499771,-0.07885424047708511,0.018172012642025948,-0.005118723027408123,0.01754227839410305,0.022095821797847748,-0.03540033474564552,-0.062371402978897095,-0.004036418162286282,0.04002140834927559,-0.042668573558330536,-0.06161254644393921,-0.0037840213626623154,0.07479462027549744,-0.0017134330701082945,0.047918759286403656,-0.052714359015226364,0.06631800532341003,-0.03926124423742294,0.017368154600262642,0.06120718643069267,-0.010119413025677204,0.019747504964470863,-0.036736272275447845,0.011500764638185501,-0.005011014640331268,0.010914526879787445,-0.0814201757311821,-0.07529834657907486,0.0394747294485569,0.016678184270858765]},{"id":"haiku--4","vector":[0.07088940590620041,-0.03238079324364662,-0.032205790281295776,0.013134265318512917,-0.01910005882382393,0.013256125152111053,-0.02493232488632202,-0.07544009387493134,0.06620384007692337,0.021494731307029724,-0.009592926129698753,-0.012601830996572971,-0.030514242127537727,0.008442253805696964,-0.06814240664243698,-0.03832751139998436,-0.06894055753946304,-0.06942335516214371,-0.022306574508547783,0.031301699578762054,0.032174281775951385,-0.0020994178485125303,0.05459405854344368,-0.04664679616689682,0.0259197149425745,-0.035487037152051926,-0.02600565180182457,0.002967632608488202,-0.053803324699401855,-0.011450608260929585,0.06288307160139084,-0.038858912885189056,0.0021057184785604477,-0.020667675882577896,0.056048035621643066,0.06345237791538239,-0.041849881410598755,0.046925149857997894,0.06529441475868225,-0.0516505129635334,-0.009493966586887836,0.0023827876430004835,0.05807610601186752,-0.04946063458919525,-0.034994058310985565,-0.002601316897198558,-0.05759169161319733,0.0019081111531704664,0.04315083846449852,0.057211413979530334,0.016970768570899963,-0.05750872194766998,0.003241326892748475,0.005154397338628769,0.0012531591346487403,-0.014640401117503643,0.0006378943216986954,0.06122751161456108,0.058314401656389236,-0.06813061237335205,-0.07218294590711594,-0.033683571964502335,-0.04564497619867325,0.02651107683777809,-0.05307137966156006,-0.02166716754436493,0.07079087197780609,0.007918627932667732,0.08001410961151123,-0.05246348679065704,-0.023625696077942848,-0.003810436464846134,0.012440510094165802,0.026938678696751595,-0.049055445939302444,-0.049039047211408615,0.03991924971342087,0.06655916571617126,-0.008951575495302677,0.06069494038820267,0.002181571675464511,0.07019085437059402,-0.021436167880892754,-0.03499823808670044,-0.055745501071214676,0.056522294878959656,0.01266985759139061,0.07294933497905731,-0.06139007583260536,0.07409389317035675,-0.04785216227173805,-0.021124785766005516,-0.0565924234688282,0.015220969915390015,-0.038743484765291214,0.05180540308356285,-0.0756458267569542,-0.03922004997730255,-0.06176166608929634,-0.04386090487241745,-0.08024787157773972,0.027191752567887306,0.024445507675409317,0.027310915291309357,-0.019332924857735634,0.031531836837530136,-0.0536050871014595,0.04705096781253815,0.04805745929479599,0.0073044500313699245,-0.04287083074450493,-0.07543756812810898,-0.015687350183725357,-0.06605596095323563,-0.045998990535736084,0.014787490479648113,0.0032281572930514812,0.0514882430434227,-0.0655234232544899,0.03910192474722862,-0.050441935658454895,-0.07459487020969391,0.013828495517373085,-0.049528829753398895,-0.06108573451638222,0.02690865471959114,-0.05846487358212471,0.019816504791378975,0.05923233926296234,-0.07652756571769714,-0.05546282231807709,-0.04007375240325928,-0.01726667955517769,0.01524051558226347,-0.036707691848278046,-0.07207440584897995,-0.006329432595521212,-0.05825095251202583,-0.019393136724829674,0.01178872212767601,-0.013372820802032948,-0.057253964245319366,0.0567004531621933,0.06876807659864426,0.0022853754926472902,0.007325619459152222,0.07195059955120087,0.013400683179497719,0.03698977455496788,0.07123184204101562,-0.010602027177810669,0.013148169964551926,-0.05646490678191185,-0.06521942466497421,-0.03996410593390465,-0.0399651825428009,0.05807049572467804,-0.05156848579645157,0.0474521666765213,-0.04960028454661369,-0.025120967999100685,-0.0001262592413695529,0.049210719764232635,0.030152369290590286,0.018615229055285454,0.014619545079767704,0.03554932400584221,-0.06767313182353973,0.024548973888158798,0.04202692583203316,-0.046252306550741196,-0.014778814278542995,0.00022440114116761833,0.045758120715618134,-0.018758703023195267,0.03296833485364914,-0.07531853765249252,0.06048642843961716,0.07290080934762955,0.059359826147556305,-0.04552294686436653,0.07978479564189911,-0.006492007989436388,0.012299438007175922,0.029654139652848244,0.05278980731964111,-0.0017587622860446572,0.035881731659173965,0.047194432467222214,-0.06155331805348396,-0.009449247270822525,-0.048334479331970215,-0.015759438276290894,0.003148165298625827,0.07450558245182037,-0.05703089386224747,-0.049955252557992935,0.029866250231862068,0.005479145795106888,0.08393984287977219,0.017671898007392883,0.0037477740552276373,0.06517370790243149,0.02653122879564762,-0.05361934378743172,-0.04773176461458206,0.03003760799765587,-0.0018296977505087852,0.019924167543649673,0.07767773419618607,0.002748766914010048,0.04883887246251106,0.07105102390050888,0.017893251031637192,0.043486908078193665,0.018096808344125748,-0.010145132429897785,-0.002630189061164856,0.0677139163017273,0.0036263507790863514,0.03378807380795479,-0.0385451577603817,-0.02906152233481407,-0.0615505687892437,0.04655230790376663,-0.049469802528619766,-0.0462816096842289,-0.014165987260639668,-0.015936709940433502,0.01230243407189846,-0.041618894785642624,0.010157313197851181,0.06762061268091202,0.006555019877851009,0.01771470345556736,0.07103663682937622,0.03659946843981743,0.05025238171219826,0.02820625714957714,0.06751341372728348,-0.05057968571782112,-0.011276189237833023,-0.010311370715498924,-0.02736825682222843,0.027436787262558937,-0.025034409016370773,-0.00921438168734312,0.01651284471154213,0.03587378188967705,-0.022964518517255783,0.04102820158004761,-0.06411982327699661,0.040807873010635376,-0.057919543236494064,-0.007179880980402231,-0.03610767424106598,0.0008685498614795506,-0.0579073540866375,-0.016905495896935463,0.06652238219976425,-0.051392558962106705,-0.03384862095117569,0.001682816306129098,0.025547420606017113,0.005024598445743322,0.024436267092823982,0.02157924324274063,-0.016230406239628792,-0.029653631150722504,-0.0616750530898571,0.07577329128980637,-0.07930774241685867,0.05113409832119942,-0.03421799838542938,-0.030649669468402863,0.06895273178815842,-0.04084712639451027,0.017524469643831253,-0.02984859049320221,0.011497828178107738,0.07237712293863297,0.08194758743047714,0.00776189099997282,0.0475105345249176,-0.020998848602175713,-0.0705689787864685,-0.07858066260814667,0.041957344859838486,-0.030474938452243805,-0.02438543550670147,-0.040545616298913956,-0.04191984608769417,0.06556526571512222,0.030429435893893242,-0.03557703271508217,-0.035758744925260544,0.0663548931479454,0.059758275747299194,0.033074751496315,0.036023400723934174,-0.006293225567787886,0.053968802094459534,0.009145071730017662,0.024842694401741028,0.03128473833203316,0.014971107244491577,0.006465008947998285,0.0013355276314541698,-0.01119186356663704,-0.07723714411258698,0.0006419994751922786,-0.01408441923558712,-0.03590736910700798,0.07084653526544571,-0.07504300773143768,-0.0491425059735775,0.06647618114948273,-0.030744235962629318,-0.05215264856815338,-0.029095958918333054,-0.078140988945961,0.014229943975806236,-0.06051913648843765,-0.034556277096271515,0.047436829656362534,-0.006970422342419624,-0.035068362951278687,-0.011163471266627312,0.02255517616868019,-0.049260664731264114,-0.016667524352669716,-0.03041432797908783,-0.07312852144241333,-0.0550001822412014,0.05859069153666496,-0.00044174102367833257,0.08067619800567627,0.08177712559700012,0.02666909620165825,0.031687796115875244,-0.024870779365301132,0.01641909033060074,0.036740705370903015,-0.0009208695264533162,0.02134748175740242,0.02881600335240364,-0.04029110446572304,0.06241020932793617,0.041565537452697754,0.056446224451065063,-0.07041127234697342,0.06175713613629341,-0.010273492895066738,0.0166606605052948,-0.030355574563145638,0.045481689274311066,-0.017004583030939102,-0.05579255893826485,-0.020665228366851807,0.013468670658767223,0.05653347820043564,0.0509624257683754,0.012879674322903156,-0.019378671422600746,0.02498256042599678,-0.012926201336085796,0.00007754367834422737,-0.06417295336723328,-0.03442465513944626,-0.004040257073938847,-0.04946887120604515,0.00304773123934865,0.03596704825758934,-0.06225648522377014,-0.07981961220502853,-0.011236945167183876,0.05075819417834282,0.02266523987054825,0.016540652140975,0.036917202174663544,0.0289160143584013,0.032545242458581924,-0.04876295104622841,0.05283036082983017,0.03029775805771351,0.015911169350147247,0.0669468343257904,-0.03258959576487541,-0.05532334744930267,-0.052825167775154114,-0.06689174473285675,-0.037888333201408386,-0.05222442001104355,0.027515538036823273,0.07104919105768204,0.03532574698328972,0.05736927688121796,-0.07316701859235764,-0.05219508334994316,-0.07785288244485855,-0.022149985656142235,0.07765506953001022,0.03706828132271767,0.06523513048887253,0.000009486853741691448,-0.018291965126991272,0.061885006725788116,-0.07268334180116653,0.07946296036243439,-0.043031349778175354,0.07908517122268677,0.04297739267349243,-0.03068762831389904,0.001378062297590077,-0.024307262152433395,0.038318317383527756,0.009996127337217331,0.00445049861446023,0.07905150949954987,0.06998670101165771,-0.05954845994710922,0.053788889199495316,0.0270849596709013,-0.0595276914536953,-0.054163672029972076,0.00039992923848330975,-0.023623639717698097,-0.06812828034162521,-0.039630815386772156,0.017282461747527122,-0.026428744196891785,0.03556884080171585,-0.04125016927719116,-0.0637001320719719,0.060063686221838,0.06976690888404846,-0.06616588681936264,-0.007623724639415741,-0.05090615525841713,0.020241810008883476,-0.04371286928653717,-0.05628100410103798,0.01606280729174614,0.04466424509882927,-0.061199843883514404,0.04576823487877846,0.0793766900897026,-0.08048424869775772,0.048528287559747696,-0.012882147915661335,-0.013912409543991089,-0.032268986105918884,0.005562720354646444,0.041382644325494766,0.055378351360559464,-0.05109358951449394,-0.012776765041053295,0.017306024208664894,0.038882579654455185,-0.06470954418182373,0.042453035712242126,-0.03273944556713104,0.0510932058095932,0.014444720931351185,0.017803100869059563,0.05768754705786705,-0.04781648516654968,0.029958730563521385,-0.04217740148305893,-0.03079232946038246,0.015734151005744934,0.0661233514547348,0.0015636419411748648,0.031250037252902985,-0.0017301717307418585,0.026265379041433334,0.0323641374707222,0.06564110517501831,0.006995889823883772,0.025355568155646324,-0.035918477922677994,-0.020342662930488586,-0.05490662157535553,0.026162439957261086,0.00026985412114299834,0.03373517468571663,0.03679915517568588,-0.02778613567352295,-0.06039942428469658,-0.0315721295773983,0.030790941789746284,-0.01840050332248211,-0.05433931201696396,-0.018085097894072533,0.07516273111104965,0.008632422424852848,-0.024679845198988914,-0.05123463273048401,0.06086926907300949,-0.0057915193028748035,-0.0011076360242441297,0.06606494635343552,0.01639740541577339,-0.014890079386532307,-0.036241285502910614,0.031178047880530357,0.023954104632139206,-0.005681167356669903,-0.07103285938501358,-0.07378484308719635,0.0405205637216568,0.031111810356378555]},{"id":"haiku--7","vector":[0.060547731816768646,-0.02738732472062111,-0.00197847792878747,0.03249067813158035,0.010574993677437305,0.02239524945616722,-0.016590315848588943,-0.07368282973766327,0.06887843459844589,-0.003348399419337511,0.008739707991480827,-0.013944550417363644,-0.04749384522438049,0.012977449223399162,-0.07069116085767746,0.021520094946026802,-0.07221509516239166,-0.06954222172498703,-0.02282099984586239,0.0249084010720253,0.021688716486096382,0.010308079421520233,0.05066259950399399,-0.03726428374648094,0.02074063941836357,-0.03992437943816185,-0.02924979478120804,0.0164782851934433,-0.04478570446372032,-0.01215263269841671,0.05771232396364212,-0.016163865104317665,-0.02783539518713951,-0.053138695657253265,0.06312201917171478,0.03251684084534645,-0.0432773195207119,0.020648708567023277,0.06621013581752777,-0.039434611797332764,0.010002907365560532,0.003644008422270417,0.06355941295623779,-0.05664866790175438,-0.012472124770283699,-0.011945536360144615,-0.06126698479056358,-0.013684075325727463,0.046436525881290436,0.05507226660847664,0.00004640184124582447,-0.04622360318899155,0.00022774006356485188,-0.05020175501704216,0.017293689772486687,-0.031752441078424454,-0.011170080862939358,0.05487102270126343,0.05661199241876602,-0.07004594057798386,-0.07494347542524338,-0.04733484983444214,-0.054453689604997635,0.026256997138261795,-0.04265475645661354,-0.011096350848674774,0.07033561170101166,0.030645569786429405,0.07685356587171555,-0.042942069470882416,-0.01088227890431881,-0.04456597939133644,0.007813074626028538,0.00772913359105587,-0.018748408183455467,-0.05225219950079918,0.021914338693022728,0.0649893656373024,0.012179356999695301,0.06363759189844131,-0.009350433945655823,0.057663243263959885,-0.02922043576836586,-0.00996411219239235,-0.0575161837041378,0.04684730991721153,-0.0034212677273899317,0.07270252704620361,-0.057615190744400024,0.06997905671596527,-0.03403973951935768,-0.021446051076054573,-0.05956771597266197,0.03105759434401989,-0.04879050329327583,0.04223528131842613,-0.07478310167789459,-0.05203324556350708,-0.06766621023416519,-0.05429607257246971,-0.07935164123773575,0.013394102454185486,-0.020755331963300705,0.01055370643734932,-0.04907675087451935,0.011330097913742065,-0.05555426701903343,0.0573989562690258,0.04328837990760803,0.01133244950324297,-0.02712428569793701,-0.07036038488149643,-0.019370760768651962,-0.048011891543865204,-0.038794394582509995,0.025918368250131607,0.029917214065790176,0.028741374611854553,-0.06283194571733475,0.04125161096453667,-0.05202650651335716,-0.07402025908231735,0.011463559232652187,-0.057255152612924576,-0.05751156061887741,0.05208628997206688,-0.055027443915605545,0.04808589816093445,0.049203768372535706,-0.0698360726237297,-0.05571284517645836,-0.049076180905103683,-0.01051822304725647,0.01766224019229412,-0.04377446696162224,-0.07317783683538437,-0.010818001814186573,-0.05313458666205406,0.007734229788184166,0.03332167863845825,-0.018554192036390305,-0.06124315410852432,0.051467958837747574,0.07053164392709732,-0.013497795909643173,0.004338061902672052,0.0642542615532875,0.030468448996543884,0.048258982598781586,0.06576894223690033,0.00693341763690114,-0.0036002027336508036,-0.05982566997408867,-0.05594846233725548,-0.034460052847862244,-0.04222303628921509,0.06108827516436577,-0.009389795362949371,0.0522097647190094,-0.056726694107055664,-0.021015938371419907,0.02752572111785412,0.05950494855642319,0.0028633305337280035,0.015598546713590622,0.008587039075791836,-0.00309314439073205,-0.04265981912612915,0.026974529027938843,0.03802163898944855,-0.053369179368019104,0.008045576512813568,0.004351018462330103,0.027280187234282494,-0.05102906748652458,0.02664153091609478,-0.07117771357297897,0.07375717908143997,0.0771411582827568,0.07463640719652176,-0.00450167478993535,0.07768324017524719,0.03199189901351929,0.00859603751450777,0.06019941344857216,0.06120964139699936,0.006789855659008026,0.03556298092007637,0.026530753821134567,-0.052981745451688766,0.005757853388786316,-0.02515489049255848,-0.06409841030836105,0.007395503111183643,0.075986847281456,-0.052225299179553986,-0.05348552018404007,0.02133018895983696,0.0022396983113139868,0.07915268838405609,0.008240091614425182,0.005412240978330374,0.05942007154226303,0.03613586351275444,-0.04481615498661995,-0.021062461659312248,0.03745100647211075,0.004511629231274128,0.024609282612800598,0.07258765399456024,-0.0026606079190969467,0.043509941548109055,0.056091733276844025,-0.017314082011580467,0.048884324729442596,0.010371837764978409,0.004560312256217003,0.01063274685293436,0.06113411486148834,0.013206791132688522,0.04349278286099434,-0.01402287371456623,0.000772292900364846,-0.061954546719789505,0.055225521326065063,-0.06568805128335953,-0.060644373297691345,0.004719979129731655,-0.003940287046134472,-0.01570148393511772,-0.04303508251905441,0.008262868970632553,0.041934479027986526,-0.0023561345878988504,0.024743931367993355,0.04533899575471878,0.039800796657800674,0.06495015323162079,0.021045511588454247,0.06811926513910294,-0.049433350563049316,-0.006849961820989847,-0.008859239518642426,-0.02221769653260708,0.008730930276215076,-0.02705472707748413,0.01570933312177658,0.0669468492269516,-0.0068227555602788925,-0.02918403409421444,0.054904449731111526,-0.07066215574741364,0.05118390545248985,-0.06432752311229706,-0.047883011400699615,-0.003509141970425844,0.003806019900366664,-0.06295882165431976,-0.024990016594529152,0.07780046761035919,-0.05270810425281525,-0.03894936293363571,-0.001777191529981792,0.009972748346626759,0.0077231707982718945,0.02408086694777012,0.047161269932985306,-0.013539666309952736,-0.05667063593864441,-0.03647346422076225,0.06826162338256836,-0.07653510570526123,0.02606107108294964,-0.03744390606880188,-0.032751064747571945,0.07282615453004837,-0.035947222262620926,0.02765904925763607,-0.029938511550426483,-0.035622596740722656,0.06636166572570801,0.07701244950294495,0.011718080379068851,0.04756440594792366,-0.030999647453427315,-0.06917174905538559,-0.0807545855641365,0.020546652376651764,-0.027256296947598457,-0.03807169198989868,-0.02632210962474346,-0.026122428476810455,0.0508008673787117,0.021801505237817764,-0.04220626503229141,-0.041545797139406204,0.06343837827444077,0.04014639928936958,0.013883634470403194,0.04488511011004448,-0.03597169369459152,0.05886363983154297,0.03750164434313774,0.05294405668973923,0.004316400736570358,0.026440320536494255,0.011083554476499557,0.006659618578851223,-0.004977413918823004,-0.07801434397697449,-0.008787060156464577,0.01296947244554758,-0.026574362069368362,0.06894382834434509,-0.07704334706068039,-0.03581538051366806,0.06659024953842163,-0.037418849766254425,-0.05718065798282623,-0.027752580121159554,-0.07439032196998596,0.03864196315407753,-0.038476716727018356,-0.02510252222418785,0.04613686725497246,-0.030858635902404785,-0.0370112881064415,-0.040549494326114655,0.016410402953624725,-0.05425632372498512,-0.0007864219951443374,-0.02401818335056305,-0.06454440951347351,-0.05418296903371811,0.05152933672070503,-0.02298121154308319,0.07503964006900787,0.08033543080091476,0.01815493032336235,0.03737611323595047,0.0017797017935663462,0.0016626593424007297,0.04788316786289215,-0.010030586272478104,0.03466615825891495,-0.004554086830466986,-0.032927270978689194,0.06769157946109772,-0.00044760134187527,0.053316567093133926,-0.07216128706932068,0.060276128351688385,0.009592629037797451,0.051901817321777344,-0.039830293506383896,0.05712173879146576,-0.035676226019859314,-0.059734128415584564,-0.0009643970988690853,-0.009190880693495274,0.058651529252529144,0.01086497027426958,0.028692729771137238,-0.014879900962114334,0.026451019570231438,0.011963942088186741,-0.03523862361907959,-0.02998221293091774,-0.050895702093839645,-0.026589220389723778,-0.043127384036779404,0.019956793636083603,0.05150287225842476,-0.07109703123569489,-0.07123710215091705,-0.008836893364787102,0.001459346734918654,0.04239495471119881,-0.0002469135797582567,0.04529545083642006,-0.014591842889785767,0.0496620237827301,-0.058379948139190674,0.06000286340713501,0.05873848497867584,0.002390940673649311,0.06483837962150574,-0.0585593655705452,-0.07448311150074005,-0.06620986014604568,-0.07046063244342804,-0.03360336273908615,-0.03736276924610138,0.021354835480451584,0.06865008175373077,0.028293434530496597,0.044347140938043594,-0.0676032230257988,-0.060232795774936676,-0.07804182171821594,-0.04799644649028778,0.07892913371324539,0.025001639500260353,0.058267638087272644,-0.011679171584546566,-0.030994350090622902,0.050794027745723724,-0.06731393933296204,0.07859528809785843,-0.05807428061962128,0.06259416788816452,0.01084363367408514,0.010563397780060768,-0.03134563937783241,-0.004166555590927601,0.033034585416316986,0.04032251611351967,-0.028637684881687164,0.07738488912582397,0.06846276670694351,-0.06254100799560547,0.036410506814718246,0.0287796501070261,-0.0688699334859848,-0.023778334259986877,-0.028511276468634605,-0.036690905690193176,-0.05364257097244263,-0.05850627273321152,0.009191740304231644,-0.029386203736066818,0.026538871228694916,-0.039702385663986206,-0.03934372961521149,0.037496939301490784,0.07402323186397552,-0.07371684163808823,-0.02359764464199543,-0.0660792738199234,0.036694224923849106,-0.040957868099212646,-0.04547577351331711,0.0304308719933033,0.04949724301695824,-0.07007212191820145,0.033334847539663315,0.08030853420495987,-0.07192091643810272,0.061737339943647385,-0.012485397979617119,0.002297697588801384,-0.03507816419005394,0.00645875371992588,0.00519890571013093,0.037006258964538574,-0.06790019571781158,-0.01082233339548111,0.0480148009955883,0.05244823545217514,-0.04834466055035591,0.02948027290403843,-0.03279230371117592,0.01857941411435604,0.01677744835615158,-0.017235875129699707,0.0599164254963398,-0.053178995847702026,0.044997893273830414,-0.03723685443401337,-0.03817243129014969,0.03044027090072632,0.058806996792554855,0.0368279367685318,0.015291353687644005,0.023020019754767418,0.05340639501810074,0.045614443719387054,0.04594596475362778,0.0007185488357208669,0.0353078693151474,-0.0434882715344429,-0.024997569620609283,-0.05587141960859299,0.02368326112627983,0.013269314542412758,0.03675101324915886,0.02255762368440628,-0.03160952031612396,-0.06786610186100006,-0.005817484576255083,0.02104252576828003,-0.037921056151390076,-0.05486433207988739,0.021640146151185036,0.07557077705860138,0.0164511539041996,-0.0043014045804739,-0.06650390475988388,0.06639980524778366,-0.008609339594841003,-0.0016184031264856458,0.042188700288534164,-0.027752568945288658,0.020381366834044456,-0.040082819759845734,0.027034694328904152,0.02322189323604107,0.0005492420168593526,-0.07785597443580627,-0.07482142746448517,0.04426819831132889,0.02387947402894497]},{"id":"haiku--8","vector":[0.0395522303879261,-0.005444635637104511,-0.04959449917078018,0.04311717674136162,-0.028124947100877762,0.0218492578715086,-0.03172928839921951,-0.07568424940109253,0.05544259771704674,-0.0013727389741688967,0.020572921261191368,0.03344189003109932,-0.040297847241163254,0.023733174428343773,-0.0672474205493927,-0.039176736027002335,-0.03827223926782608,-0.07510855793952942,-0.028432771563529968,0.019190380349755287,0.022453485056757927,-0.027309326454997063,0.048192739486694336,-0.05059429258108139,0.03831154853105545,0.0011062867706641555,-0.024689417332410812,0.010507906787097454,-0.06900617480278015,-0.05172448232769966,0.06093623489141464,-0.0683465227484703,-0.055681824684143066,-0.026282601058483124,0.05586616322398186,0.023984504863619804,-0.03954524174332619,0.0357951894402504,0.06380832940340042,-0.05474110320210457,0.001995010068640113,0.010000252164900303,0.06445258855819702,-0.031945668160915375,-0.03217151015996933,-0.03170167654752731,-0.04622204601764679,-0.01929423399269581,0.06353101879358292,0.05269616097211838,-0.0010359215084463358,-0.07823352515697479,0.00960081722587347,-0.019573556259274483,-0.008892455138266087,-0.06518977880477905,0.04802561178803444,0.04432825744152069,0.045836105942726135,-0.07434675842523575,-0.07131852954626083,-0.04784943163394928,-0.04586353152990341,-0.009347950108349323,-0.03615942597389221,-0.006009741686284542,0.060244567692279816,0.02735520713031292,0.0790332779288292,-0.06594415754079819,-0.012249674648046494,-0.034942757338285446,0.0032143278513103724,-0.02525755949318409,-0.02220568247139454,-0.0607665479183197,0.016693316400051117,0.0740060955286026,0.027875743806362152,0.049746207892894745,0.005127658136188984,0.02520379237830639,-0.01567324809730053,-0.042800791561603546,-0.05093902722001076,0.0505681186914444,-0.010819142684340477,0.06309764087200165,-0.05295216292142868,0.06204987317323685,-0.011724845506250858,-0.013879158534109592,-0.04006517305970192,0.01778225228190422,-0.05180523544549942,0.04115570709109306,-0.07648716866970062,-0.008815031498670578,-0.05924178287386894,-0.04284290596842766,-0.07812777161598206,0.04448923468589783,0.020691750571131706,0.059102218598127365,-0.039018407464027405,0.02534591592848301,-0.05685954540967941,0.047645047307014465,0.04250210151076317,0.04494127631187439,-0.06212633475661278,-0.06983335316181183,0.011690137907862663,-0.032497767359018326,0.013628609478473663,0.008815585635602474,-0.0006869414355605841,0.05597524344921112,-0.06263972818851471,0.037561919540166855,-0.051456741988658905,-0.07617227733135223,0.00025154295144602656,-0.058599747717380524,-0.05474766343832016,0.011397412046790123,-0.026752304285764694,0.059780411422252655,0.041315242648124695,-0.05297268554568291,-0.06366607546806335,-0.05623894929885864,-0.03310563042759895,0.017187904566526413,-0.030204934999346733,-0.07155163586139679,0.011407721787691116,-0.03638315573334694,-0.00565033033490181,-0.013167845085263252,0.0104231471195817,-0.03960024565458298,0.05975061282515526,0.06387775391340256,-0.014724807813763618,0.025751527398824692,0.06676287204027176,0.03272473067045212,0.0008780917269177735,0.04927004128694534,0.005932642612606287,0.008651097305119038,-0.06639325618743896,-0.027115998789668083,-0.0388561375439167,-0.0033189747482538223,0.047051507979631424,-0.0364270955324173,0.020000305026769638,-0.0559457428753376,-0.03469366952776909,-0.006009555421769619,0.05533086881041527,0.015028306283056736,0.030479002743959427,0.033990662544965744,0.05561201646924019,-0.06182778626680374,0.006085860542953014,0.05299336463212967,-0.06420695036649704,-0.026272203773260117,-0.008459804579615593,0.044548504054546356,-0.04798494279384613,0.038292210549116135,-0.0655607059597969,0.06950761377811432,0.07426770031452179,0.059447597712278366,-0.026187870651483536,0.06485562026500702,-0.004103559534996748,0.025892559438943863,0.04112440347671509,0.050193026661872864,0.0034784364979714155,0.03943193703889847,0.062570720911026,-0.06276079267263412,-0.03731074929237366,0.006185630802065134,-0.04436425492167473,-0.006377904675900936,0.07378396391868591,-0.06407739222049713,-0.05193997547030449,0.04543651267886162,0.04695260152220726,0.0792107880115509,0.0029502168763428926,0.01963011734187603,0.016749879345297813,0.035477735102176666,-0.06641228497028351,-0.05045870691537857,0.04383029416203499,-0.04175689071416855,0.023160116747021675,0.05463072657585144,-0.0031064380891621113,0.047316551208496094,0.06034722551703453,-0.009307247586548328,0.05130820721387863,0.024492492899298668,0.009303843602538109,0.011875361204147339,0.06674281507730484,-0.013412859290838242,-0.020115448161959648,-0.04573071375489235,-0.015814274549484253,-0.04275592416524887,0.048759352415800095,-0.018601927906274796,-0.03056257590651512,0.014463313855230808,0.019820410758256912,0.025751955807209015,-0.022539613768458366,0.018015669658780098,0.03377727046608925,0.009269237518310547,0.039925508201122284,0.06617435067892075,0.03899239003658295,0.04694691672921181,0.052505090832710266,0.0738547295331955,-0.04798375442624092,0.005053860601037741,0.046159643679857254,-0.06295423209667206,0.019917692989110947,-0.022996680811047554,0.027068663388490677,0.025209730491042137,0.029719162732362747,-0.04569387435913086,0.03238818794488907,-0.07481180131435394,0.06856251507997513,-0.061367060989141464,0.04401509091258049,-0.03343701735138893,-0.014167503453791142,-0.06505036354064941,-0.007400417700409889,0.06430840492248535,-0.05579109489917755,-0.03726377338171005,-0.013005944900214672,0.020301179960370064,-0.03889704868197441,0.013789821416139603,-0.007184646558016539,-0.0461810939013958,-0.00667199119925499,-0.026688776910305023,0.07163058966398239,-0.0678027868270874,0.039156194776296616,-0.027654316276311874,0.03965676948428154,0.07181788980960846,-0.024807468056678772,0.06292357295751572,-0.012852923013269901,0.0004909829003736377,0.0719653069972992,0.07045669853687286,0.039392221719026566,0.013031919486820698,-0.05305534973740578,-0.067604660987854,-0.07694347202777863,0.04074837267398834,-0.044491901993751526,-0.041147638112306595,-0.022282404825091362,-0.03896378353238106,0.03403470665216446,0.010348998010158539,-0.043601278215646744,-0.04500160738825798,0.06422650068998337,0.044390372931957245,0.039232928305864334,0.049033183604478836,0.028613882139325142,0.05395517498254776,0.014801607467234135,0.04163578525185585,0.0526401586830616,0.040517859160900116,0.02282005362212658,0.04937500134110451,-0.032213304191827774,-0.08149964362382889,0.013281615450978279,-0.017075153067708015,0.022350383922457695,0.060341205447912216,-0.06212582066655159,-0.04752965271472931,0.06126805767416954,-0.02768135443329811,-0.05099702998995781,-0.03522955998778343,-0.08018410950899124,0.05718553066253662,-0.04111568629741669,-0.01451313216239214,0.05451301112771034,0.00004214001091895625,-0.032347068190574646,-0.044513553380966187,0.011634415946900845,-0.055621229112148285,-0.023395324125885963,-0.037141069769859314,-0.04687577486038208,0.002506266115233302,0.050654858350753784,0.04189245402812958,0.07375387102365494,0.07482215017080307,0.0034845417831093073,0.011404208838939667,0.0015262993983924389,0.004910763818770647,0.05977695807814598,-0.02009875513613224,0.044334497302770615,0.01141322497278452,-0.05002438277006149,0.06137244775891304,0.030027369037270546,0.06377249956130981,-0.048550188541412354,0.06993617862462997,0.007377170491963625,0.0325930193066597,-0.03877629339694977,0.06171245127916336,-0.03689062222838402,-0.060146283358335495,0.02225680835545063,0.027987351641058922,0.054494459182024,0.046096254140138626,-0.0020838133059442043,-0.02349647879600525,0.023804878816008568,-0.0006317863008007407,-0.034409765154123306,-0.06081449240446091,-0.036296430975198746,-0.012103626504540443,-0.04523853212594986,0.026129301637411118,0.043345436453819275,-0.07782107591629028,-0.06854718923568726,0.05524582415819168,0.004940335173159838,0.0489928238093853,0.02429307997226715,0.05909495800733566,0.005909920670092106,0.03837703913450241,-0.06733830273151398,0.04669370502233505,0.01917259395122528,0.0066426414996385574,0.06593282520771027,-0.03514590486884117,-0.03624056652188301,-0.0715339258313179,-0.062225621193647385,-0.04923521727323532,-0.03711269050836563,0.010176168754696846,0.07584742456674576,0.04308616369962692,0.04939538985490799,-0.06368895620107651,-0.045651476830244064,-0.07542219012975693,-0.03885267674922943,0.07384535670280457,0.050772905349731445,0.06391890347003937,-0.01933823898434639,-0.004040045663714409,0.03584563359618187,-0.06288260221481323,0.07914876937866211,-0.04163501784205437,0.06440886855125427,0.00928468070924282,0.012925692833960056,-0.03343146666884422,-0.0008053890778683126,0.020734937861561775,0.02378615364432335,-0.038774676620960236,0.07673313468694687,0.06508660316467285,-0.05248279497027397,0.05569622293114662,-0.010854224674403667,-0.050967391580343246,-0.05703502148389816,-0.02995704673230648,-0.019882142543792725,-0.05818308889865875,-0.02381972037255764,0.030801651999354362,0.021857308223843575,0.003858815412968397,-0.05023924261331558,-0.06856148689985275,0.054304301738739014,0.07399167865514755,-0.056159600615501404,0.006735379341989756,-0.041177090257406235,0.03270688280463219,-0.032808929681777954,-0.0395011380314827,0.00720226252451539,0.05483861267566681,-0.06560348719358444,0.039550598710775375,0.07970268279314041,-0.07047612965106964,0.03946381434798241,-0.0013350771041586995,-0.004874031059443951,-0.02851381152868271,0.017221003770828247,0.055726390331983566,0.061960618942976,-0.06292755901813507,-0.006762154400348663,0.046732041984796524,-0.0013839174062013626,-0.05329211428761482,0.024579646065831184,-0.04576774314045906,0.02046654000878334,-0.017137357965111732,-0.0222527626901865,0.041207145899534225,-0.0415254570543766,0.047333791851997375,-0.060077741742134094,-0.032191067934036255,0.03927187994122505,0.060668885707855225,0.013769207522273064,-0.013966220431029797,0.009981443174183369,0.048071976751089096,0.04533609375357628,0.04339170828461647,-0.02864236757159233,0.04499834030866623,0.019948899745941162,-0.039863716810941696,-0.05382545664906502,0.01830083318054676,-0.0012307435972616076,0.03042212873697281,0.019450871273875237,-0.04884091764688492,-0.05591736361384392,-0.004838721826672554,0.014417246915400028,-0.05970112234354019,-0.06802430748939514,-0.011596734635531902,0.06813791394233704,-0.00038199833943508565,0.034005213528871536,-0.06687561422586441,0.06267572194337845,-0.017175324261188507,-0.0180280189961195,0.0634019523859024,0.011705046519637108,-0.011010919697582722,-0.05239413306117058,-0.003258075099438429,0.028483565896749496,0.01846790872514248,-0.07536942511796951,-0.0767679214477539,0.04564256966114044,0.04031500220298767]},{"id":"homie","vector":[0.06204273924231529,-0.013393837958574295,-0.019056124612689018,0.011431765742599964,-0.00880812481045723,0.03284766525030136,0.02983257919549942,-0.07204733788967133,0.05081962049007416,-0.005830198060721159,0.03462815284729004,0.06559792906045914,-0.004739472642540932,0.07625660300254822,-0.0645378902554512,-0.06520610302686691,-0.047782476991415024,-0.07822845131158829,-0.04347233101725578,-0.001312140142545104,-0.0075785317458212376,-0.01987251453101635,0.017109563574194908,-0.038494862616062164,0.05202100798487663,-0.026551377028226852,-0.014049927704036236,0.017136897891759872,-0.054432228207588196,-0.0540495440363884,0.07845354080200195,-0.04073649272322655,-0.018709950149059296,-0.0027152763213962317,0.04116204008460045,0.035281259566545486,-0.03356904163956642,0.034742891788482666,0.0739922896027565,-0.05003764480352402,-0.039947282522916794,0.041465673595666885,0.06648443639278412,-0.06319690495729446,-0.03725501522421837,0.03594496473670006,-0.04341725632548332,-0.037273913621902466,0.0549578033387661,0.03278662636876106,0.03428893908858299,-0.036215174943208694,-0.014491191133856773,-0.03734215721487999,-0.030307795852422714,-0.006709314417093992,0.013967444188892841,0.04553449526429176,0.06879793107509613,-0.06241639703512192,-0.06683872640132904,-0.012818713672459126,-0.04617125168442726,0.015724627301096916,-0.046176377683877945,-0.029801754280924797,0.08141519874334335,0.025275781750679016,0.08443804830312729,-0.05588492378592491,0.009775035083293915,-0.009747020900249481,-0.03067084401845932,0.02205868810415268,-0.051454972475767136,-0.0609472431242466,0.022404538467526436,-0.04148969054222107,0.006821667775511742,0.06745322048664093,-0.000517103006131947,0.0474831722676754,0.011903488077223301,-0.001113536418415606,-0.043640170246362686,0.034697890281677246,-0.004090738482773304,0.07914544641971588,-0.04093783721327782,0.04697702080011368,-0.0030972743406891823,-0.013013851828873158,-0.058654215186834335,0.050760120153427124,-0.04199841991066933,0.002875298960134387,-0.07448522001504898,-0.008278296329081059,-0.030782148241996765,-0.0701020136475563,-0.0701865628361702,0.0237991102039814,-0.04969212785363197,0.04806717857718468,-0.020432883873581886,0.03176707401871681,-0.07008776813745499,0.058233242481946945,0.08314965665340424,0.01650267094373703,-0.003549921326339245,-0.058047983795404434,0.023352762684226036,-0.05595390126109123,-0.04335739091038704,0.014863892458379269,-0.0073026628233492374,0.029863879084587097,-0.07492361217737198,0.043914102017879486,-0.0291226115077734,-0.08540520071983337,-0.025385554879903793,-0.06613175570964813,-0.028212612494826317,-0.00941774994134903,-0.023298347368836403,0.04772364720702171,0.022520503029227257,-0.026869777590036392,-0.04959268495440483,-0.04613019526004791,-0.033492498099803925,0.013711580075323582,-0.01935461163520813,-0.07528740167617798,0.031089847907423973,-0.06300948560237885,0.030488435178995132,0.028753913938999176,0.057748548686504364,-0.040439773350954056,0.0496039055287838,0.06645769625902176,-0.0000025181482214975404,-0.02081829495728016,0.05834769085049629,0.013513999059796333,0.028712183237075806,0.025606989860534668,-0.05791037902235985,0.020542647689580917,-0.042184554040431976,0.017814939841628075,-0.05456520617008209,-0.03524162992835045,0.06477316468954086,-0.06436961144208908,0.07690085470676422,-0.05708998814225197,0.010451429523527622,0.011474371887743473,0.04393458366394043,0.03445306792855263,0.012386535294353962,0.005613276734948158,0.01744729094207287,-0.04790133982896805,0.07629592716693878,0.06463279575109482,-0.04891775920987129,0.044096753001213074,-0.031053725630044937,0.07690824568271637,-0.035999368876218796,0.002188239013776183,-0.06885182112455368,0.07615707814693451,0.08035959303379059,0.07926373928785324,-0.051249273121356964,0.08244065195322037,-0.008466850966215134,0.033646970987319946,0.016864940524101257,0.0599079430103302,0.04018305614590645,0.04496423527598381,0.08016243577003479,-0.06412647664546967,-0.01004625204950571,0.0035716351121664047,-0.03624401241540909,-0.035184938460588455,0.0857081189751625,-0.055057935416698456,-0.04923097416758537,-0.0860099047422409,-0.005458748433738947,0.08860646933317184,-0.032721925526857376,-0.05772244930267334,0.06920507550239563,0.04242611676454544,-0.041758112609386444,-0.003225490916520357,0.016073893755674362,-0.0065253665670752525,0.03212054446339607,0.049639444798231125,0.010694224387407303,-0.017398498952388763,0.07751760631799698,0.013225737027823925,0.03582552447915077,0.009646381251513958,0.029969461262226105,0.02442348003387451,0.05722207576036453,-0.00544226448982954,0.023636655882000923,-0.03568064048886299,-0.005698205437511206,-0.04509148746728897,0.04722730815410614,-0.05510655418038368,-0.003633087733760476,0.033153992146253586,-0.0017508830642327666,0.030801260843873024,-0.047035619616508484,0.04541049525141716,0.05477960407733917,-0.0036990658845752478,0.026574376970529556,0.024998396635055542,0.02652641385793686,0.04282810166478157,0.0014763138024136424,-0.01819003000855446,-0.03940571844577789,0.0035779853351414204,0.05210123583674431,-0.02739224024116993,0.000613885058555752,-0.06375115364789963,0.017461629584431648,0.004787223879247904,-0.03266354277729988,-0.056408222764730453,0.04598648101091385,-0.0489279106259346,0.05746673420071602,-0.07097878307104111,0.004376295022666454,-0.027913428843021393,-0.016352593898773193,-0.056763820350170135,-0.0011066595325246453,0.07537849247455597,0.02519974671304226,-0.03792916238307953,-0.0009585631778463721,-0.009892677888274193,-0.030781153589487076,0.029518770053982735,0.023108169436454773,-0.017917996272444725,-0.04489215463399887,-0.057574424892663956,0.06819722056388855,-0.059575967490673065,-0.009516526944935322,-0.019605522975325584,0.021439246833324432,0.0776679739356041,-0.03417626768350601,0.01744254119694233,-0.037088844925165176,-0.0007658364484086633,0.07765895128250122,0.07149896770715714,0.04500691220164299,0.013032869435846806,-0.015615067444741726,-0.06700199842453003,-0.08309579640626907,0.02752165123820305,-0.041340187191963196,-0.031115364283323288,0.0024936222471296787,-0.027688374742865562,0.03837131708860397,-0.017595235258340836,-0.044262200593948364,-0.05248120054602623,0.032001301646232605,0.0088879419490695,0.056146036833524704,0.04714784771203995,-0.007118699140846729,0.02303006686270237,0.0021672958973795176,0.022865330800414085,0.010013556107878685,0.011991357430815697,0.05619991198182106,0.00007978801295394078,-0.035770803689956665,-0.08441390097141266,-0.0020981444977223873,0.03571033850312233,0.04323060065507889,0.021077081561088562,-0.05012691393494606,-0.05731792002916336,0.061843931674957275,-0.05930178984999657,-0.03321722149848938,-0.04853533208370209,-0.07513706386089325,0.0383310467004776,-0.046456608921289444,-0.01746481843292713,0.07412544637918472,0.028557976707816124,-0.002758386544883251,-0.043584007769823074,0.0476921983063221,-0.03426232933998108,-0.028755610808730125,-0.0194843877106905,0.00944831594824791,-0.009199782274663448,0.02901470847427845,0.008580208756029606,0.08168310672044754,0.07880064100027084,0.016834227368235588,0.010402997955679893,0.00754610076546669,0.05198562145233154,0.0621468722820282,-0.011550080962479115,0.009329830296337605,0.03001992590725422,-0.07500158250331879,0.04082663729786873,0.009246048517525196,0.04725510999560356,-0.06647045165300369,0.06333236396312714,0.006277662701904774,-0.020083116367459297,-0.048531677573919296,0.04138093441724777,-0.033747874200344086,-0.06202320754528046,-0.01761714741587639,0.002396342111751437,0.05252699553966522,0.024261534214019775,0.015222831629216671,-0.015199102461338043,0.025304598733782768,0.02014712616801262,-0.05788528174161911,-0.022740652784705162,0.030467389151453972,-0.02498321793973446,-0.05017010495066643,0.023968255147337914,0.022497719153761864,-0.056522056460380554,-0.07546798139810562,0.023323005065321922,0.0336613766849041,0.033636368811130524,0.02501293644309044,0.046168792992830276,0.027737116441130638,0.06067342311143875,-0.03241478279232979,0.06287842243909836,0.055616021156311035,0.011731674894690514,0.07854742556810379,-0.0434216745197773,-0.017941517755389214,-0.05678826570510864,-0.04013288393616676,-0.026362143456935883,-0.05937967821955681,0.011690165847539902,0.07015864551067352,0.033253591507673264,0.03982466831803322,-0.07267668843269348,-0.06286422908306122,-0.07707424461841583,-0.02732010930776596,0.07215587794780731,0.010218680836260319,0.03604096546769142,-0.03513766825199127,-0.004379101097583771,0.03264150395989418,-0.07344430685043335,0.08422315120697021,-0.014674179255962372,0.07907529175281525,0.03470544517040253,-0.004931390285491943,0.014692317694425583,-0.00039317613118328154,0.06360281258821487,0.0238399188965559,0.007007511332631111,0.0739370584487915,0.06532102078199387,-0.07273238897323608,0.04509107768535614,0.024697378277778625,-0.06298256665468216,-0.03924136608839035,0.005575397051870823,-0.0531158410012722,-0.05587553605437279,-0.051017630845308304,0.07302317768335342,-0.040599651634693146,0.023324592038989067,0.00864392425864935,-0.04225059226155281,0.015533103607594967,0.07085302472114563,-0.048208560794591904,0.02552056685090065,-0.011735981330275536,0.02763448655605316,-0.04984152689576149,-0.06045623868703842,0.052561093121767044,0.03645472973585129,-0.07200142741203308,0.028756244108080864,0.08431268483400345,-0.08218368887901306,0.05595587566494942,-0.054861683398485184,0.030174311250448227,-0.011704439297318459,-0.010351292788982391,-0.01971183717250824,0.04980221018195152,-0.0653877854347229,0.014590312726795673,0.01932857185602188,0.04733533784747124,-0.05604400113224983,0.020227471366524696,-0.04962232708930969,0.024231165647506714,0.010262622497975826,-0.02801486663520336,0.03548482432961464,-0.04315752536058426,0.04481805860996246,-0.033991869539022446,-0.041607461869716644,0.043219514191150665,0.06936806440353394,0.035143230110406876,0.03171231597661972,0.041287895292043686,0.02907446399331093,0.025296831503510475,0.026558727025985718,0.056233812123537064,0.04868818074464798,-0.044582899659872055,-0.0006975163123570383,-0.0543697364628315,-0.0048926956951618195,0.014246777631342411,-0.00849317666143179,0.01422890741378069,-0.04109886288642883,-0.06329084932804108,-0.012977746315300465,-0.0022083541844040155,-0.03902453929185867,-0.056650031358003616,-0.0020030837040394545,0.04429434612393379,-0.009615699760615826,0.02328179031610489,-0.06292901933193207,0.06694848835468292,-0.007993355393409729,-0.032237112522125244,0.05363021045923233,-0.006472863722592592,-0.017707103863358498,-0.025637060403823853,-0.013107161968946457,0.04201174154877663,0.05392187088727951,-0.08664344251155853,-0.08022288233041763,0.04986179247498512,0.06082165986299515]},{"id":"how-to-learn","vector":[0.023351259529590607,-0.05818162485957146,-0.03401879221200943,0.04559152573347092,-0.04052889719605446,0.018962766975164413,0.007790908683091402,-0.06251966208219528,0.025978926569223404,0.051903508603572845,0.051578085869550705,0.02040194161236286,-0.037534646689891815,0.018858682364225388,-0.06107255443930626,-0.022102732211351395,-0.04818842560052872,-0.061203669756650925,-0.04341289401054382,0.04442938044667244,0.009235229343175888,-0.002051697112619877,0.030543552711606026,-0.024196477606892586,0.04823560267686844,0.01156728994101286,-0.025338733568787575,-0.03611958399415016,-0.051031000912189484,-0.0334702730178833,0.06641601026058197,-0.034414660185575485,-0.05055609717965126,0.02178066596388817,0.05111904814839363,0.05071910843253136,-0.04530720412731171,0.05713467299938202,0.06243806332349777,-0.04839692264795303,-0.012198556214571,-0.00033672383869998157,0.06576711684465408,-0.0531587079167366,-0.01625302992761135,0.04960529878735542,-0.040077805519104004,0.0046590277925133705,0.0662381500005722,0.06427627801895142,0.017489545047283173,-0.03534124419093132,0.054431814700365067,-0.021602965891361237,-0.0005791194271296263,-0.027976538985967636,0.048677559942007065,-0.003607736900448799,0.03338539972901344,-0.07959751784801483,-0.06667008996009827,-0.05099453404545784,-0.03790237754583359,0.01608615182340145,-0.006659218575805426,-0.0039499616250395775,0.08567173033952713,0.012080572545528412,0.08856052905321121,-0.05644155293703079,-0.042497485876083374,-0.052891626954078674,0.026857560500502586,-0.013093608431518078,-0.06271985173225403,-0.049164142459630966,0.03362636640667915,-0.020807720720767975,-0.02579365111887455,0.053232453763484955,0.008995197713375092,0.07106533646583557,0.00901809986680746,-0.03506230190396309,-0.031326793134212494,0.055526766926050186,0.011437546461820602,0.06759847700595856,-0.06915752589702606,0.0630955845117569,-0.015203526243567467,0.006568362005054951,-0.05386710539460182,0.034619297832250595,-0.03440244868397713,0.02127024531364441,-0.07410996407270432,-0.008717956021428108,-0.06495796889066696,-0.06499762088060379,-0.08154740929603577,0.06590958684682846,0.0016920695779845119,0.006951672490686178,-0.014765487983822823,0.025801848620176315,-0.04570905491709709,0.06674128770828247,0.05706888064742088,0.028682824224233627,-0.006945824716240168,-0.07410770654678345,0.003124738112092018,-0.0530952513217926,-0.026100678369402885,0.007278521545231342,0.051965173333883286,0.04932067170739174,-0.04807961732149124,0.05885906517505646,-0.04242084175348282,-0.07635088264942169,-0.005783708766102791,-0.05537781864404678,-0.015061154961585999,-0.006193276960402727,-0.0240556001663208,0.02630019560456276,0.031279243528842926,-0.053246550261974335,-0.04543977603316307,-0.052677836269140244,-0.03104623593389988,0.024662408977746964,-0.03909968584775925,-0.05286981910467148,-0.006734196562319994,-0.07010862231254578,-0.05012613907456398,0.02744738571345806,-0.024000149220228195,-0.07206080108880997,0.04513376206159592,0.03427627682685852,-0.039194364100694656,0.04674094542860985,0.05802791938185692,0.026414819061756134,-0.002187552861869335,0.06494054943323135,-0.032249219715595245,-0.024145448580384254,-0.06773962080478668,0.015949560329318047,-0.05765294283628464,-0.061359528452157974,0.06415785104036331,-0.04580478370189667,0.05074804276227951,-0.06711562722921371,-0.013488372787833214,-0.05620044097304344,0.04065096005797386,0.03448208048939705,0.010352660901844501,0.06719528138637543,-0.005496233236044645,-0.050911031663417816,0.03814680129289627,0.07022429257631302,-0.05759957432746887,0.002944494131952524,0.03203226998448372,-0.010209692642092705,-0.023428315296769142,0.026887381449341774,-0.05266880244016647,0.07942166179418564,0.06724537909030914,0.06456558406352997,0.011799445375800133,0.07696143537759781,0.0032422798685729504,0.023094158619642258,0.04275950416922569,0.06347562372684479,-0.026433896273374557,0.05880673602223396,0.06979183107614517,-0.009392758831381798,-0.0498347245156765,0.012620746158063412,-0.005727897863835096,-0.031102679669857025,0.07892093062400818,-0.06998532265424728,-0.04234420880675316,-0.027626318857073784,-0.0012365946313366294,0.08372274041175842,0.01405708771198988,-0.0011436670320108533,0.022528182715177536,0.02018708549439907,-0.04979507252573967,0.013846549205482006,0.0451468899846077,-0.002119347220286727,0.012002505362033844,0.08167844265699387,0.008400913327932358,-0.026260606944561005,0.0804017186164856,-0.026368359103798866,0.059978995472192764,-0.00876578874886036,-0.030446846038103104,-0.036531101912260056,0.05892333388328552,-0.020824337378144264,0.022960174828767776,-0.02950875088572502,0.014299158938229084,-0.06151993200182915,0.07246144860982895,-0.04418446868658066,-0.03337443247437477,0.023305868729948997,0.03236224874854088,0.03694519028067589,-0.027352802455425262,0.00475957989692688,0.04215148463845253,0.02586628869175911,-0.03653974458575249,0.06469616293907166,0.02349427342414856,0.06547030806541443,-0.011853646486997604,-0.03590239956974983,-0.05383645370602608,-0.004140481818467379,-0.06702248007059097,-0.02857430838048458,-0.004108077380806208,-0.036996956914663315,0.006700830068439245,0.04900973662734032,-0.013377312570810318,-0.0377822071313858,-0.010060922242701054,-0.07354891300201416,0.0292052049189806,-0.06736625730991364,0.032186124473810196,-0.03225726634263992,-0.022331619635224342,-0.05737703666090965,0.0004875814192928374,0.07037480920553207,-0.034643638879060745,0.004550634417682886,-0.021688811480998993,0.0249163880944252,0.016794363036751747,0.029157044366002083,0.024063093587756157,-0.018058523535728455,-0.03316071629524231,-0.033073779195547104,0.045215606689453125,-0.06965311616659164,0.02539891004562378,-0.03723336383700371,0.0009790731128305197,0.07393152266740799,-0.03967326134443283,0.057912688702344894,0.005369971040636301,-0.015825355425477028,0.06489744037389755,0.06605657190084457,-0.0068484023213386536,-0.035078998655080795,-0.02372456155717373,-0.0689363032579422,-0.0707564502954483,0.025046277791261673,-0.019934609532356262,-0.03356083855032921,-0.035223718732595444,-0.04165629670023918,0.06937174499034882,0.015451195649802685,-0.014585879631340504,-0.0494757816195488,0.06486046314239502,-0.0241414625197649,0.05921620875597,0.046346746385097504,-0.026754863560199738,0.055695898830890656,-0.024489765986800194,0.03976862132549286,0.025681348517537117,0.04463788494467735,0.01672476716339588,-0.006522984243929386,-0.013932417146861553,-0.08467036485671997,-0.00638494361191988,0.023112164810299873,0.03204892948269844,0.07721918821334839,-0.05903264135122299,-0.03742751479148865,0.04751685634255409,0.011161401867866516,-0.024542029947042465,-0.06755825132131577,-0.08043263852596283,0.05644949898123741,-0.02996685542166233,0.016230370849370956,0.03752288967370987,0.025339005514979362,0.00895855575799942,-0.03249253332614899,0.03871099650859833,-0.05056540295481682,-0.04925241693854332,-0.04783463850617409,-0.06715111434459686,-0.038644954562187195,0.04103309288620949,0.034359678626060486,0.08035214245319366,0.08339617401361465,0.017515048384666443,-0.017768636345863342,-0.04394101724028587,0.029628098011016846,0.06864536553621292,0.006789351347833872,0.02211538702249527,-0.02020307257771492,-0.020738961175084114,0.03363894671201706,-0.0037022698670625687,0.045593418180942535,-0.08441723883152008,0.0597258135676384,0.058003928512334824,-0.007619562093168497,-0.04620111733675003,0.06212007626891136,-0.01965293660759926,-0.07449322193861008,-0.003186742775142193,0.030177291482686996,0.02569917030632496,0.03662683442234993,0.036130309104919434,-0.03296898305416107,0.04183446988463402,-0.000031572268198942766,-0.0022170094307512045,-0.06548620015382767,-0.047057896852493286,-0.020670128986239433,-0.057891786098480225,0.02295934408903122,0.018833013251423836,-0.06816429644823074,-0.07052139937877655,-0.014057167805731297,-0.021479425951838493,0.005993699189275503,0.011661803349852562,0.042482975870370865,0.037051670253276825,0.008693130686879158,-0.06396245956420898,0.030617712065577507,0.07561522722244263,0.011070026084780693,0.0712500810623169,-0.022874170914292336,-0.03635266795754433,-0.060063254088163376,-0.06661254167556763,-0.005900469142943621,-0.002135026967152953,0.04449916258454323,0.05163108929991722,0.04074563831090927,0.011165223084390163,-0.06552495807409286,-0.04007089138031006,-0.04298419505357742,-0.03894951567053795,0.07621192932128906,0.001076453016139567,0.06608770787715912,-0.03862779214978218,-0.000985639519058168,0.046499572694301605,-0.07873714715242386,0.06513331830501556,-0.06372913718223572,0.0886586531996727,-0.009939266368746758,0.033114634454250336,0.002527928911149502,0.010510826483368874,0.007020930293947458,0.044478751718997955,-0.01409281324595213,0.057264480739831924,0.06205018237233162,-0.05194875970482826,0.03454842418432236,0.035618819296360016,-0.037457000464200974,-0.06687229126691818,-0.048624616116285324,-0.04898848757147789,-0.0713045746088028,-0.050094228237867355,0.01495759654790163,-0.017535530030727386,-0.00003706300776684657,-0.013739587739109993,-0.07443614304065704,0.07328163087368011,0.07344706356525421,-0.08140380680561066,-0.0034494211431592703,-0.019609807059168816,0.03367180377244949,-0.0371357724070549,-0.030678318813443184,0.030273472890257835,0.053156692534685135,-0.030613241717219353,0.030905742198228836,0.083051398396492,-0.08214542269706726,0.054149869829416275,-0.018195953220129013,0.023772280663251877,-0.0414571650326252,0.034201446920633316,0.061719153076410294,0.01970157027244568,-0.06363610923290253,-0.007958089001476765,0.035221684724092484,0.060398075729608536,-0.0699760690331459,0.012845932506024837,-0.04528063163161278,0.010076943784952164,0.039311498403549194,-0.01796550303697586,0.025420811027288437,-0.020166827365756035,0.04887045547366142,-0.043483804911375046,-0.03485563024878502,-0.0024056993424892426,0.0766543596982956,0.010888587683439255,0.016591990366578102,0.0030600843019783497,-0.000769623729865998,0.0653802901506424,0.06831175088882446,0.03703204169869423,0.053811751306056976,-0.012394276447594166,-0.03406592458486557,-0.05702274665236473,-0.01481726672500372,-0.024392234161496162,-0.00045630618114955723,0.049846503883600235,-0.051242049783468246,-0.05985787883400917,0.036439359188079834,0.028699448332190514,-0.04430897906422615,-0.06471585482358932,-0.019803475588560104,0.07688174396753311,-0.04060131683945656,0.006835877895355225,-0.022660981863737106,0.06624729931354523,-0.022554507479071617,0.06187670677900314,0.052626729011535645,0.01790454611182213,-0.02280144765973091,-0.019406501203775406,0.012417123652994633,0.02218608744442463,0.01929960772395134,-0.06269608438014984,-0.0800640657544136,0.048032499849796295,0.02555500529706478]},{"id":"how-to-tell-a-good-joke","vector":[0.045910436660051346,-0.01808510720729828,-0.03861621394753456,0.03940490633249283,-0.0573558434844017,-0.0051034255884587765,-0.0026094079948961735,-0.044722795486450195,0.03389403596520424,0.000299265724606812,0.05829068273305893,0.0014125991147011518,0.009281928651034832,0.018252814188599586,-0.05970662459731102,0.010870112106204033,-0.04025168716907501,-0.0836355984210968,-0.004904440604150295,0.02750689908862114,0.0071001010946929455,0.022773779928684235,0.050863370299339294,-0.04049557074904442,-0.0004175819631200284,-0.018900301307439804,-0.00035687501076608896,-0.04891730472445488,-0.07156263291835785,-0.02730276994407177,0.008010282181203365,-0.062449418008327484,-0.0445983000099659,-0.05068492889404297,0.03582937270402908,0.04441036656498909,-0.04816065728664398,0.06379005312919617,0.0575096420943737,-0.06290173530578613,-0.04295370727777481,-0.021309489384293556,0.06929943710565567,0.006586267147213221,0.019777989014983177,-0.002046390203759074,-0.07003743946552277,0.03270474448800087,0.04061969369649887,0.044494107365608215,-0.015288918279111385,-0.055523280054330826,0.06094406545162201,-0.0314657986164093,-0.0025554532185196877,-0.03626912832260132,0.043402448296546936,0.019722923636436462,0.06189926341176033,-0.08365140855312347,-0.0848524421453476,-0.05062206834554672,-0.050561465322971344,0.02026452124118805,-0.004403768572956324,-0.02759123407304287,0.08724727481603622,-0.0013982614036649466,0.08805357664823532,0.011402039788663387,-0.01295715756714344,0.015739718452095985,0.018015166744589806,-0.02844974771142006,-0.040631771087646484,-0.04156900569796562,0.021160347387194633,-0.06754278391599655,-0.013219756074249744,0.06129349395632744,0.024957219138741493,0.06380823999643326,-0.030048416927456856,0.0013521716464310884,-0.08008334785699844,0.02669951505959034,-0.01246461272239685,0.06445615738630295,-0.04666934907436371,0.08820091187953949,-0.04606889560818672,-0.026086360216140747,-0.06924756616353989,0.04481916502118111,-0.026863347738981247,0.027123956009745598,-0.07373444736003876,0.010182829573750496,-0.037429071962833405,-0.053645890206098557,-0.06174134835600853,-0.0000716298891347833,-0.04310176521539688,0.029618678614497185,-0.029061179608106613,0.03227599710226059,-0.051209427416324615,0.050563160330057144,0.07209396362304688,0.016899017617106438,-0.057581719011068344,-0.07032939791679382,0.04621073603630066,-0.03407152742147446,-0.019133228808641434,0.04675540700554848,-0.010915023274719715,0.06956260651350021,-0.03262782469391823,0.028350647538900375,-0.03297637030482292,-0.08670233935117722,-0.0006371187046170235,-0.07556990534067154,-0.025840159505605698,0.008408360183238983,-0.06373431533575058,0.0565909706056118,0.005364530254155397,-0.050613485276699066,-0.03263918682932854,-0.0431789867579937,-0.005640413146466017,0.05508406460285187,-0.022902602329850197,-0.06757217645645142,0.01385666336864233,-0.050544872879981995,-0.00837200041860342,0.02836807258427143,-0.015545175410807133,-0.07499134540557861,0.015923528000712395,0.07354503870010376,-0.04753381758928299,0.017240669578313828,0.03952636569738388,0.030323144048452377,0.016908470541238785,0.035584382712841034,-0.018913663923740387,0.019282717257738113,-0.058275073766708374,0.0070352391339838505,-0.04972530156373978,0.0162741057574749,0.04727157950401306,-0.03284531459212303,0.0242465753108263,-0.07735154777765274,-0.019567159935832024,-0.051517173647880554,0.03800101950764656,-0.03563005104660988,0.03239085525274277,0.054810330271720886,-0.018301691859960556,-0.03215319663286209,-0.015044894069433212,0.04798636585474014,-0.05434297397732735,-0.02565441094338894,0.006890485063195229,0.056111108511686325,0.010183673352003098,0.0044881501235067844,-0.06133158877491951,0.0742219090461731,0.055509135127067566,0.07555294781923294,-0.03772049397230148,0.08797041326761246,-0.045404765754938126,-0.0006611722055822611,0.02488645352423191,0.021568531170487404,0.050752393901348114,0.04771234840154648,0.044475797563791275,-0.043183282017707825,0.012449730187654495,0.03958611935377121,-0.04915185272693634,-0.012698414735496044,0.07636982202529907,-0.07116646319627762,-0.05375812575221062,-0.009202451445162296,-0.0017728909151628613,0.0735820084810257,-0.03460964933037758,0.014360492117702961,0.017972316592931747,-0.002285871421918273,-0.06143845617771149,-0.051780685782432556,0.0231204554438591,-0.003469345159828663,0.06789477914571762,0.08086464554071426,-0.00009781221888260916,0.016951987519860268,0.07600337266921997,-0.029698560014367104,0.06150854751467705,-0.01161256991326809,-0.031117010861635208,-0.03144271671772003,0.07331974059343338,-0.018478499725461006,0.04564687982201576,0.006713694892823696,0.012376686558127403,-0.06550335139036179,0.037859462201595306,-0.018386229872703552,-0.05102607607841492,0.01798802800476551,0.026545468717813492,0.04660830274224281,-0.03257353976368904,0.055594488978385925,0.07559031993150711,0.04022340849041939,-0.020784981548786163,0.06201121583580971,0.009874753654003143,0.06267621368169785,-0.016402941197156906,-0.052056606858968735,-0.04614691436290741,-0.026909876614809036,0.017900783568620682,-0.021842891350388527,-0.0038673195522278547,-0.044052448123693466,-0.01510240975767374,-0.008736548013985157,0.0331110805273056,-0.02863171137869358,0.017192155122756958,-0.06968957185745239,0.03916582465171814,-0.06721322983503342,0.0416308231651783,-0.030568784102797508,-0.012361590750515461,-0.06507105380296707,-0.040529441088438034,0.07146015763282776,-0.041715044528245926,0.005827642977237701,0.015894129872322083,0.011127626523375511,-0.03219790384173393,0.039610788226127625,0.015495236963033676,-0.01582181826233864,-0.018498504534363747,-0.016922343522310257,0.06791090220212936,-0.05814478173851967,0.03513055667281151,-0.016394449397921562,0.022340433672070503,0.08331379294395447,-0.0490395687520504,-0.005346606019884348,0.003376804990693927,0.007625050377100706,0.06087733060121536,0.08536358922719955,-0.0010080115171149373,-0.008323985151946545,-0.01356345135718584,-0.05766106769442558,-0.07524119317531586,0.045204050838947296,-0.019850874319672585,-0.01269507221877575,-0.07167427986860275,-0.025026651099324226,0.036107245832681656,-0.03657909110188484,0.007470468524843454,-0.026535294950008392,0.04938236624002457,0.03649380803108215,0.03769716992974281,0.031004523858428,-0.042529329657554626,0.06658519804477692,-0.015408557839691639,0.05009584128856659,0.03829658031463623,-0.0257486030459404,0.0781690776348114,-0.0020777182653546333,-0.03179512172937393,-0.07400137186050415,-0.01182699203491211,0.04925625026226044,-0.028106024488806725,0.06068693846464157,-0.07053770869970322,-0.016143377870321274,0.0499848946928978,-0.02237708866596222,-0.04073292016983032,-0.07559970766305923,-0.06798287481069565,0.06939356029033661,-0.04671254754066467,-0.02961042895913124,-0.02036716416478157,-0.01698104664683342,0.006628235336393118,-0.009248310700058937,0.03722149133682251,-0.056417420506477356,0.006874117534607649,-0.03505437821149826,-0.07195878773927689,0.001203735824674368,0.05340879037976265,0.014881887473165989,0.06864438205957413,0.08348941057920456,0.04591163992881775,-0.054709646850824356,-0.053405001759529114,0.01718524843454361,0.06663494557142258,0.0136009082198143,-0.02518138661980629,0.058201055973768234,-0.01650669053196907,0.05172353237867355,0.03769959881901741,0.025286870077252388,-0.02940882183611393,0.06925424933433533,0.03554026037454605,0.02805289253592491,0.009652000851929188,0.056261178106069565,-0.005209528375416994,-0.07960736751556396,-0.022695915773510933,0.036411214619874954,0.03370830789208412,0.0529044046998024,0.04453912377357483,-0.029508424922823906,0.014744581654667854,0.03729431331157684,-0.05772334337234497,-0.043497491627931595,-0.007683672476559877,-0.030970025807619095,-0.06425657123327255,-0.00719982385635376,0.052454132586717606,-0.08655793964862823,-0.06735454499721527,0.019540634006261826,0.004070931114256382,0.016330987215042114,-0.002563089830800891,0.0515606589615345,0.02344210259616375,0.023902222514152527,-0.027560312300920486,0.010847540572285652,0.04924580454826355,-0.06184440851211548,0.06123185157775879,0.011990364640951157,-0.07181502133607864,-0.047717832028865814,-0.06837237626314163,-0.0414791963994503,0.01733221858739853,0.021791061386466026,0.08227849751710892,0.034955646842718124,0.044451117515563965,-0.07660957425832748,-0.030697684735059738,-0.04322173818945885,-0.02457558922469616,0.07642299681901932,0.010102047584950924,0.05034823343157768,-0.016280217096209526,-0.01591232791543007,0.05513574928045273,-0.08029650151729584,0.08028420805931091,-0.02693593129515648,0.07014936208724976,0.042508408427238464,0.01552771870046854,-0.02248646877706051,-0.024701228365302086,0.038761552423238754,-0.009460918605327606,-0.009127032943069935,0.0855150818824768,0.06941323727369308,0.0022299981210380793,0.03728344663977623,0.04028403386473656,-0.043290190398693085,-0.06525899469852448,-0.010829522274434566,-0.07677198201417923,-0.05082077533006668,-0.041972815990448,-0.01838809996843338,-0.04246605560183525,0.012706272304058075,-0.00006430067878682166,-0.07379084080457687,0.05507940798997879,0.08021771907806396,-0.07486660778522491,0.03890234977006912,-0.02744928002357483,0.057595495134592056,-0.006716215517371893,-0.022712204605340958,0.03909587115049362,0.060326434671878815,-0.05720281973481178,0.03854086995124817,0.07954245060682297,-0.06417680531740189,0.0419248603284359,-0.024360118433833122,0.04695696011185646,-0.0391886867582798,0.006598330568522215,0.04014285281300545,0.0546175017952919,-0.07735643535852432,-0.009408678859472275,-0.01872309111058712,0.05516253039240837,-0.07069235295057297,0.02394711598753929,-0.036461055278778076,-0.006089474074542522,0.0461142435669899,-0.012010152451694012,0.039993174374103546,0.028987102210521698,0.006726023741066456,-0.05996349826455116,-0.05611925199627876,0.010984120890498161,0.06954438239336014,-0.01418748963624239,-0.029203593730926514,0.00831846334040165,0.032499831169843674,0.007584034465253353,0.07097970694303513,0.0071022119373083115,0.040293287485837936,-0.010753129608929157,-0.01595766842365265,-0.06268327683210373,0.005999863147735596,-0.020383108407258987,0.03936435282230377,0.05556020885705948,-0.05487148091197014,-0.06737630069255829,-0.02021302655339241,0.04672025144100189,-0.022065645083785057,-0.03937565162777901,0.0056127943098545074,0.077067069709301,-0.02779964916408062,0.02738082781434059,-0.03716956079006195,0.06764140725135803,-0.008083181455731392,0.04156344383955002,0.07812082767486572,-0.030293259769678116,0.023760564625263214,-0.01666572131216526,-0.0055270204320549965,0.05765211582183838,-0.01125755812972784,-0.02124594897031784,-0.07126498222351074,-0.019529564306139946,-0.0002021289838012308]},{"id":"i-ve-seen","vector":[0.049272336065769196,-0.04927657172083855,-0.018589841201901436,0.02575790323317051,0.0009917117422446609,-0.03314084932208061,0.0427938811480999,-0.06971323490142822,0.02210748754441738,0.017619997262954712,0.02294289320707321,0.025399241596460342,0.014200459234416485,0.03845871239900589,-0.06303362548351288,0.014202930964529514,-0.04309165105223656,-0.04807697609066963,-0.032187387347221375,0.045132894068956375,0.017814425751566887,-0.022088097408413887,0.02570859156548977,-0.05021272972226143,0.030519898980855942,-0.002017221413552761,-0.026286117732524872,-0.03346836194396019,-0.05836125463247299,-0.042974695563316345,0.06572180241346359,-0.008694617077708244,-0.03212349861860275,0.009720117785036564,0.029558517038822174,0.04070363566279411,-0.058511022478342056,0.027628639712929726,0.06260588765144348,-0.03891637548804283,-0.004424332641065121,0.024456819519400597,0.07055608928203583,-0.029084552079439163,-0.026961741968989372,0.046208787709474564,-0.06382516026496887,0.013463126495480537,0.03855171054601669,0.0471365787088871,0.027027331292629242,-0.055856239050626755,0.03339254483580589,-0.04128590598702431,0.014445271342992783,-0.008295457810163498,0.054501280188560486,0.00710015743970871,0.04040980339050293,-0.04999189078807831,-0.044244516640901566,-0.022987056523561478,-0.04431012645363808,0.014568565413355827,-0.04257701709866524,-0.015546939335763454,0.0912504643201828,0.03524455428123474,0.08991848677396774,-0.06150754913687706,-0.019970541819930077,0.004977136384695768,-0.02213383838534355,0.027527466416358948,-0.04276273399591446,-0.07080358266830444,0.04856659471988678,-0.07684668898582458,-0.024722469970583916,0.06212877109646797,0.006641908083111048,0.03185408562421799,0.03350149095058441,-0.03111470863223076,-0.06805622577667236,0.06112194061279297,-0.02376028336584568,0.05239365994930267,-0.0786404237151146,0.061290714889764786,-0.02529752627015114,-0.034219831228256226,-0.05549238249659538,0.06445145606994629,-0.036078982055187225,0.031125757843255997,-0.0610954724252224,-0.01779472641646862,-0.04426118731498718,-0.053608205169439316,-0.069215327501297,0.0034300328698009253,-0.01126824039965868,-0.01989477127790451,-0.0030143270269036293,0.021288318559527397,-0.06882406026124954,0.061676040291786194,0.07225208729505539,0.01596054807305336,0.01719881407916546,-0.05442717671394348,0.02175108715891838,-0.062569260597229,-0.0411032997071743,0.0444532111287117,0.039656832814216614,0.04066409543156624,-0.07661142945289612,0.03954952210187912,-0.005156565923243761,-0.08721533417701721,0.02773514948785305,-0.0631566047668457,-0.025989685207605362,-0.027525803074240685,-0.005891403183341026,0.0392465814948082,0.013275496661663055,-0.06090538203716278,-0.043699268251657486,-0.0567280575633049,0.018420247361063957,0.03272394835948944,-0.031177781522274017,-0.07610420882701874,-0.010215272195637226,-0.06211172789335251,-0.019284609705209732,-0.006242421921342611,0.0005274959257803857,-0.062103092670440674,0.047748077660799026,0.07293037325143814,-0.036740999668836594,0.023669932037591934,0.05973635986447334,0.010813364759087563,0.04920678585767746,0.03222960978746414,-0.0003287556755822152,-0.004576756618916988,-0.058701470494270325,-0.00840405747294426,-0.06587596982717514,-0.024224789813160896,0.0696871355175972,-0.06189776584506035,0.05255471169948578,-0.07670532912015915,-0.017321085557341576,-0.04710216447710991,0.053100112825632095,-0.0022042146883904934,-0.016577497124671936,0.015228408388793468,0.00472017377614975,-0.03502622991800308,0.007849643006920815,0.06517219543457031,-0.06726361066102982,-0.003957126755267382,-0.024519003927707672,0.04868932440876961,-0.01852492429316044,0.02392139844596386,-0.07375244796276093,0.08551735430955887,0.0708116739988327,0.07861723005771637,-0.04198552295565605,0.08081826567649841,0.032028865069150925,-0.02090311609208584,0.025152748450636864,0.05501340702176094,0.00772272190079093,0.0555887296795845,0.06444262713193893,-0.019036296755075455,-0.022505825385451317,-0.005151227116584778,-0.024880552664399147,0.008149976842105389,0.0676879957318306,-0.05880288407206535,-0.01125694252550602,0.006235575769096613,-0.014577732421457767,0.07529648393392563,-0.014523683115839958,0.0228294525295496,0.06427360326051712,0.04059447720646858,-0.04480311647057533,-0.015536781400442123,0.06534457206726074,-0.026083167642354965,0.06531894207000732,0.06750801205635071,-0.0017075876239687204,-0.0389900766313076,0.07943914085626602,-0.004812674131244421,0.049795962870121,-0.017186183482408524,-0.03198195621371269,-0.016479386016726494,0.07231233268976212,-0.05002640187740326,0.04771146923303604,-0.031839631497859955,0.005591209977865219,0.00285415374673903,0.057152606546878815,-0.013838471844792366,-0.024663986638188362,0.019633756950497627,0.018324900418519974,0.026404034346342087,-0.006706256419420242,0.056470371782779694,0.04750470444560051,0.00921228714287281,0.00005583932943409309,0.055046822875738144,0.05296557769179344,0.03122580423951149,-0.0344727598130703,-0.07394638657569885,-0.04793958738446236,0.03326619789004326,-0.009823757223784924,-0.034970972687006,0.008601658046245575,-0.019605856388807297,0.037285175174474716,0.033713385462760925,-0.002425818471238017,-0.029493672773241997,0.05341355875134468,-0.06310790777206421,0.009906470775604248,-0.07033899426460266,0.03272368013858795,-0.0463147908449173,-0.01756228692829609,-0.03819390758872032,-0.017590567469596863,0.0718180239200592,-0.014235686510801315,0.004616404417902231,-0.021844489499926567,-0.07659511268138885,-0.013792736455798149,0.008135845884680748,0.034778937697410583,-0.027217058464884758,-0.006296909414231777,-0.04148010164499283,0.04949285835027695,-0.0679721087217331,0.0184885673224926,-0.00860629789531231,-0.0014901298563927412,0.0851871520280838,-0.05267582833766937,0.01694330759346485,-0.05214901641011238,0.031378790736198425,0.05714252591133118,0.08596961200237274,0.018988734111189842,0.027959588915109634,-0.010929033160209656,-0.06683680415153503,-0.0588686466217041,0.037305839359760284,-0.030078722164034843,-0.04169231280684471,-0.043503470718860626,0.011704670265316963,0.053583577275276184,-0.007377034984529018,-0.023532692342996597,-0.057382263243198395,0.06421339511871338,-0.004924710839986801,0.05220263823866844,0.04639843851327896,-0.0430530421435833,0.047268420457839966,-0.03816409409046173,0.0011571693466976285,0.029608994722366333,-0.01571311242878437,0.06301119923591614,0.02566898614168167,-0.03844606503844261,-0.08770725876092911,-0.009578614495694637,-0.005832672119140625,0.01325175166130066,0.06371087580919266,-0.06855616718530655,-0.052577611058950424,0.01168892439454794,-0.04079454392194748,-0.05185193195939064,-0.045201584696769714,-0.07707750052213669,0.033792391419410706,-0.0482875257730484,-0.001991251716390252,0.05926087871193886,0.026789547875523567,-0.02240915782749653,-0.002646425971761346,0.018517788499593735,-0.036641620099544525,-0.028664398938417435,-0.06935852020978928,-0.07590506970882416,-0.00666873250156641,0.04715919867157936,-0.01031327061355114,0.08001653105020523,0.07726607471704483,0.007378987967967987,-0.015824085101485252,-0.010352111421525478,0.03043684922158718,0.07237198948860168,0.005014281254261732,0.03127110376954079,0.02149791084229946,-0.04860389605164528,0.04896388202905655,0.005514998454600573,0.05451340973377228,-0.08491876721382141,0.07476089894771576,0.03817876800894737,-0.04959588497877121,-0.012863531708717346,0.04405685141682625,-0.05418136343359947,-0.07197433710098267,0.004559594206511974,0.025964107364416122,0.050593163818120956,0.02992953360080719,0.07120381295681,-0.04808250069618225,0.004054990131407976,0.034268494695425034,-0.02266644313931465,-0.058163952082395554,-0.0010903573129326105,-0.035918936133384705,-0.049906183034181595,0.00800925400108099,0.0246885959059,-0.04755876958370209,-0.060148779302835464,-0.007164768408983946,0.003419451415538788,0.0005967200850136578,0.06262113898992538,0.026160771027207375,-0.0016639831010252237,0.04757308587431908,-0.056629445403814316,0.03489222005009651,0.05043843761086464,-0.01604738086462021,0.06620849668979645,-0.03209526464343071,-0.020595597103238106,-0.05062359198927879,-0.0426766537129879,-0.03488790616393089,-0.0006817859830334783,0.00816660188138485,0.08141368627548218,0.031218355521559715,0.036224979907274246,-0.08352683484554291,-0.060296691954135895,-0.02967349998652935,-0.04702217876911163,0.05976397171616554,0.043002814054489136,0.07569102197885513,-0.030881503596901894,-0.01141941174864769,0.04369925335049629,-0.08281563222408295,0.05845675617456436,-0.01023993082344532,0.08260530978441238,0.03784419968724251,0.01199581753462553,-0.0020130067132413387,-0.002015981823205948,0.04748234897851944,0.030755558982491493,0.015368591994047165,0.0762270987033844,0.06316744536161423,-0.019572686403989792,0.05028999596834183,0.02746950276196003,-0.07010984420776367,-0.07287491858005524,-0.02808523364365101,-0.03378650173544884,-0.052551038563251495,-0.06980422139167786,0.05282827466726303,-0.04141286015510559,-0.021417073905467987,-0.02110166661441326,-0.04506944119930267,0.02638462744653225,0.07404425740242004,-0.07315073162317276,-0.020413262769579887,0.019779963418841362,0.02819148264825344,-0.02527748979628086,-0.03840617835521698,0.030601074919104576,0.026848524808883667,-0.07024811208248138,0.045751072466373444,0.08729217946529388,-0.07592570781707764,0.05820897966623306,-0.04432903975248337,0.02537219598889351,-0.040210794657468796,0.04888259619474411,0.03599023446440697,-0.0017815011087805033,-0.07383238524198532,0.02711986005306244,0.014309689402580261,0.06515630334615707,-0.08008826524019241,0.03771834447979927,-0.05331118404865265,-0.018416086211800575,0.023667456582188606,-0.04789864271879196,0.013802927918732166,0.002565704518929124,0.02162174880504608,-0.04849717393517494,-0.055640269070863724,0.04552657529711723,0.04713480547070503,0.0031510076951235533,0.014644471928477287,0.003256443189457059,0.04890736564993858,0.04372314736247063,-0.03463299944996834,0.05090498551726341,0.07594425231218338,-0.06855496019124985,-0.05549726262688637,-0.0440569706261158,-0.012601728551089764,-0.02791527286171913,0.0198772381991148,0.03534605726599693,-0.05055838078260422,-0.06109147518873215,-0.010957094840705395,0.008134262636303902,-0.048599723726511,-0.05786474049091339,0.028380898758769035,0.08105331659317017,0.023523271083831787,-0.002785644493997097,-0.025514788925647736,0.0746421292424202,-0.016235293820500374,0.006858238484710455,0.0586889274418354,-0.06181512400507927,0.009306561201810837,-0.004272827412933111,-0.031126203015446663,0.04742331802845001,0.058540914207696915,-0.06732136011123657,-0.06291104853153229,0.02507050149142742,0.018991393968462944]},{"id":"ill-with-want","vector":[-0.0002886460570152849,-0.007035246584564447,-0.008291259407997131,-0.021471137180924416,-0.005154227837920189,0.000071722584834788,0.04940513148903847,-0.05991841107606888,0.048788487911224365,0.013309688307344913,0.02213185653090477,-0.0019742371514439583,-0.029012368991971016,0.05230531096458435,-0.06477663666009903,-0.03229436278343201,-0.07454105466604233,-0.05411475524306297,-0.03717432916164398,0.027944045141339302,0.019597778096795082,-0.020585771650075912,0.008743565529584885,-0.04201193526387215,-0.0013135409681126475,-0.007226027548313141,-0.030525410547852516,-0.001555069349706173,-0.05215456709265709,-0.0744815245270729,0.06973601877689362,-0.047461267560720444,-0.043318867683410645,0.03018775023519993,0.030166860669851303,0.015371178276836872,-0.0556769035756588,0.05512259528040886,0.0667930617928505,-0.06794752180576324,-0.01037814375013113,-0.01779746823012829,0.055244579911231995,-0.011671961285173893,-0.05865584686398506,0.011568747460842133,-0.07205849140882492,-0.02990790084004402,-0.005479499697685242,0.0516662634909153,0.003539843251928687,-0.08495965600013733,0.023955924436450005,-0.05950384959578514,-0.03539392724633217,-0.02900787815451622,0.0790979191660881,0.05876912921667099,0.04294469207525253,-0.06349893659353256,-0.04216001182794571,-0.01254881452769041,-0.04578673094511032,0.00005734298247261904,-0.043650973588228226,0.020868537947535515,0.08805187046527863,0.060115791857242584,0.09519254416227341,-0.07652974873781204,-0.03439116105437279,-0.03157714009284973,-0.020015867426991463,0.03848743811249733,-0.04784682020545006,-0.060751110315322876,0.010502933524549007,-0.040400635451078415,-0.01969488523900509,0.05946580693125725,0.013265918008983135,0.06762690097093582,0.025923943147063255,-0.06404153257608414,-0.03248830884695053,0.038157109171152115,-0.02484954707324505,0.05721098929643631,-0.061596717685461044,0.05418297275900841,-0.017530011013150215,-0.004877920262515545,-0.05966819077730179,0.059336308389902115,-0.059118226170539856,-0.00742418272420764,-0.060192376375198364,-0.014501127414405346,-0.04375840350985527,-0.0584881417453289,-0.07495106011629105,-0.00567285530269146,-0.000107519757875707,0.0024429240729659796,-0.048961278051137924,0.038582693785429,-0.06464053690433502,0.04958701878786087,0.08610668033361435,0.016614528372883797,-0.030592918395996094,-0.07146905362606049,0.03179054334759712,-0.03909772261977196,-0.05064211040735245,0.03965899348258972,0.006395370699465275,0.02413971722126007,-0.08354503661394119,0.04584840312600136,-0.04111074283719063,-0.09098292887210846,0.02866300567984581,-0.06353620439767838,-0.04726462438702583,0.018363015726208687,-0.02950017899274826,0.07056006789207458,0.013880710117518902,-0.04938434436917305,-0.055391184985637665,-0.044807590544223785,-0.009101961739361286,0.0071529969573020935,-0.030873503535985947,-0.05549677833914757,0.02229873649775982,-0.051567744463682175,0.013293336145579815,0.0034725945442914963,0.024649914354085922,-0.05905504897236824,0.03939049318432808,0.05702018737792969,-0.03325876221060753,-0.010756758973002434,0.027776291593909264,-0.019036531448364258,0.014727462083101273,0.06554459035396576,-0.05054309964179993,-0.011402413249015808,-0.07816672325134277,0.018342113122344017,-0.005571463145315647,0.0069045983254909515,0.05350447818636894,-0.05568212270736694,0.03925970569252968,-0.05507126823067665,0.004048516508191824,0.018553676083683968,0.04169604554772377,-0.02447517402470112,-0.02714657038450241,0.03438926860690117,0.007817517966032028,-0.061678994446992874,0.02589535154402256,0.06786298751831055,-0.045928213745355606,-0.05096562206745148,-0.004501170013099909,0.0547015517950058,-0.03457685559988022,-0.0003700500528793782,-0.07198368012905121,0.0608430914580822,0.07188373059034348,0.060494277626276016,0.0016449043760076165,0.08597898483276367,0.02337680384516716,0.012555013410747051,0.03607385605573654,0.055463891476392746,0.00390416057780385,0.05259010195732117,0.08437094837427139,-0.045062046498060226,-0.053631123155355453,-0.03638897091150284,-0.01417477149516344,0.021211029961705208,0.06122072786092758,-0.06237107887864113,-0.057186324149370193,-0.005620066542178392,-0.015994522720575333,0.08980824053287506,-0.05026642605662346,0.019926998764276505,0.05462994426488876,0.026868291199207306,-0.02077537216246128,-0.010505885817110538,0.032370369881391525,-0.06847541779279709,0.04829973727464676,0.0787452757358551,0.014185086823999882,-0.06121017038822174,0.046487193554639816,-0.028730062767863274,0.04319204390048981,-0.0021380004473030567,-0.020452948287129402,-0.006831091828644276,0.06454147398471832,-0.01132319588214159,0.01261194795370102,-0.040799304842948914,-0.013273322954773903,-0.040951989591121674,0.06354237347841263,-0.015971269458532333,0.030064325779676437,0.005191840697079897,0.011361979879438877,0.04752624034881592,-0.013281213119626045,-0.0059470790438354015,0.0590667724609375,0.031155209988355637,0.006108230911195278,0.060171183198690414,0.044225893914699554,0.0517394095659256,0.018814127892255783,-0.02332901395857334,-0.05885380506515503,0.008334070444107056,0.02136305533349514,-0.027650125324726105,0.038483068346977234,-0.05152906849980354,-0.006143529433757067,0.020316051319241524,-0.00677241338416934,-0.047070231288671494,0.07657929509878159,-0.06454257667064667,0.06288577616214752,-0.07498303800821304,0.0018746793502941728,0.008020853623747826,-0.017200911417603493,-0.021057531237602234,0.001711730845272541,0.08150367438793182,-0.0010646034497767687,0.020005540922284126,-0.010812817141413689,-0.030741149559617043,0.0007836438016965985,-0.026817120611667633,0.0063836160115897655,-0.0008186545455828309,0.020608611404895782,-0.031209127977490425,0.05290394648909569,-0.060595590621232986,0.030756546184420586,-0.021158989518880844,0.02654174342751503,0.06633982807397842,-0.04397188127040863,0.0494689904153347,-0.05237400904297829,-0.06184042990207672,0.05077825486660004,0.08256980776786804,0.05211111158132553,-0.03268670663237572,-0.008256686851382256,-0.07136066257953644,-0.07909581810235977,0.04065854102373123,-0.04604149982333183,-0.03766448050737381,0.006081707309931517,-0.02018381841480732,0.0627974197268486,0.007189041003584862,-0.0342550091445446,-0.05133094638586044,0.04695352166891098,0.02878454327583313,0.05719578638672829,0.049428995698690414,0.021392473950982094,0.02552643232047558,-0.01731931045651436,0.059224359691143036,0.008621457032859325,0.03244524076581001,0.02287302538752556,0.024867713451385498,-0.01695173606276512,-0.0843019187450409,0.006867814809083939,-0.006713246926665306,0.01703718677163124,0.05193521827459335,-0.08259031921625137,-0.053856562823057175,0.04636337608098984,-0.021080559119582176,-0.018199961632490158,-0.056115008890628815,-0.08437877148389816,0.030301695689558983,0.004674952942878008,-0.012897131964564323,0.03984212502837181,-0.010039396584033966,-0.011211945675313473,-0.013480876572430134,0.038411229848861694,-0.054549168795347214,-0.032350897789001465,-0.050484172999858856,-0.0641954317688942,0.016113296151161194,0.02623341605067253,0.004314265679568052,0.0733819380402565,0.08115742355585098,0.005209256894886494,0.020953942090272903,-0.005556490272283554,0.038430355489254,0.08259416371583939,0.04049983248114586,0.012843570671975613,0.003915243316441774,-0.04408407211303711,0.06120629236102104,-0.0437854640185833,0.057373058050870895,-0.07311121374368668,0.07504328340291977,0.018885763362050056,-0.022583182901144028,-0.009983071126043797,0.05419021472334862,-0.032467421144247055,-0.06696698814630508,0.004830608144402504,0.04803323745727539,0.04357973486185074,0.03112606331706047,0.037924397736787796,-0.018839862197637558,0.01836225762963295,0.018461033701896667,-0.04270078241825104,-0.029390178620815277,0.009077566675841808,0.014645293354988098,-0.04286766052246094,0.01857299543917179,0.029067344963550568,-0.07350371778011322,-0.06361369043588638,0.03029915690422058,-0.0034740802366286516,0.054297301918268204,-0.01265398133546114,0.01977113075554371,0.04057773947715759,0.04803314059972763,-0.041335828602313995,0.05096669867634773,0.05274470895528793,0.009000815451145172,0.06672313809394836,-0.06931713968515396,-0.05101458355784416,-0.07513276487588882,-0.02668430656194687,-0.04101009666919708,-0.023108258843421936,0.01377434004098177,0.0648374855518341,0.036901578307151794,0.03858937695622444,-0.07148247212171555,-0.03209081292152405,-0.0622427798807621,-0.04009224846959114,0.03568132966756821,-0.003487688722088933,0.07260274887084961,-0.04462534561753273,-0.017563501372933388,0.033607494086027145,-0.06719914078712463,0.05486086383461952,-0.05820992961525917,0.07837864011526108,-0.004371763672679663,-0.017191141843795776,0.004535923711955547,0.005772646050900221,0.044875647872686386,0.04849151149392128,-0.014072096906602383,0.06551051139831543,0.030188987031579018,-0.03631436824798584,0.018904784694314003,0.015538869425654411,-0.0587136335670948,-0.06303247064352036,-0.07158482074737549,-0.028198067098855972,-0.05777376890182495,-0.06104019656777382,0.004151305183768272,-0.03687671571969986,0.02572387456893921,-0.01369949709624052,-0.05720154941082001,0.035061728209257126,0.0837034210562706,-0.04610569402575493,-0.006805711891502142,0.02625119872391224,0.02563532069325447,-0.04706656187772751,-0.05998753756284714,0.05714912340044975,0.03956609591841698,-0.08297228068113327,0.07154078781604767,0.07886216789484024,-0.06815903633832932,0.06111527979373932,-0.03199748694896698,0.02248607948422432,-0.003257501171901822,0.0032868406269699335,-0.04083132743835449,0.02994590625166893,-0.07031872123479843,0.010183783248066902,0.019017810001969337,0.03666193038225174,-0.06898500770330429,0.019288621842861176,-0.013417845591902733,-0.020993724465370178,0.015145456418395042,0.01229809783399105,0.026463087648153305,-0.017275068908929825,0.024626722559332848,-0.06295514106750488,-0.050042059272527695,0.01771569810807705,0.06410904228687286,-0.004326831549406052,0.018379731103777885,0.012231454253196716,0.0015262943925336003,0.05295971408486366,0.02735544927418232,0.0004989848821423948,0.07290741801261902,0.0071188886649906635,-0.008643300272524357,-0.037407711148262024,-0.0007283514714799821,-0.019436759874224663,0.008478183299303055,0.029917176812887192,-0.06422704458236694,-0.0694640651345253,0.010002247989177704,0.02249772474169731,-0.06814253330230713,-0.086217500269413,0.03410062938928604,0.06486424803733826,-0.01626656949520111,0.06172584369778633,-0.0740782618522644,0.07620220631361008,-0.014396056532859802,0.014919927343726158,0.03613370656967163,-0.020125648006796837,-0.014704455621540546,-0.040915679186582565,0.018190838396549225,0.06626535207033157,0.04058079048991203,-0.07832245528697968,-0.07019387930631638,0.07440925389528275,0.019809173420071602]},{"id":"in-retrospect","vector":[0.01346637960523367,-0.07349836826324463,-0.013321000151336193,0.04301037639379501,-0.05433448776602745,0.0445394404232502,0.020356187596917152,-0.07165264338254929,-0.015999404713511467,0.027780143544077873,0.04623265191912651,0.005827703047543764,-0.030312543734908104,0.012182840146124363,-0.06640627235174179,0.021976027637720108,-0.05979887768626213,-0.0400032103061676,-0.039773378521203995,0.019963111728429794,0.002970488741993904,-0.0056565552949905396,0.03803195431828499,-0.020093709230422974,0.027884719893336296,-0.02370629832148552,-0.005006126593798399,-0.02418464422225952,-0.06483470648527145,-0.034673888236284256,0.07576682418584824,-0.024746593087911606,-0.04944762960076332,-0.02948012761771679,0.047132112085819244,0.05663924291729927,-0.053667861968278885,0.04765577241778374,0.0472235232591629,-0.01735937036573887,0.025934893637895584,0.030391396954655647,0.07048740983009338,-0.042031604796648026,-0.04659756273031235,0.017253940925002098,-0.055400051176548004,0.01133981067687273,0.05690363422036171,0.06875627487897873,0.023047247901558876,-0.03751052916049957,0.04854890704154968,-0.033468931913375854,0.016800282523036003,-0.005090254824608564,0.04520515725016594,0.0516820065677166,0.04502122849225998,-0.06767836213111877,-0.06249106675386429,-0.01159206498414278,-0.032866816967725754,0.01934223808348179,-0.0400947667658329,-0.023011472076177597,0.08956138044595718,-0.0038585083093494177,0.08848583698272705,-0.076420359313488,-0.021921180188655853,-0.03491155058145523,-0.017996329814195633,0.0051021152175962925,-0.050948627293109894,-0.0547361858189106,0.018156537786126137,-0.034997403621673584,-0.03302494436502457,0.05844467878341675,0.015382839366793633,0.06268049776554108,0.001863964251242578,-0.01714543253183365,-0.053396910429000854,0.0641176700592041,0.0026974661741405725,0.08067645877599716,-0.024838844314217567,0.03832564875483513,-0.013978018425405025,-0.007292349822819233,-0.015034872107207775,0.050018079578876495,-0.048852384090423584,0.02557504177093506,-0.0679846704006195,0.0038124879356473684,-0.0611511692404747,-0.06279493868350983,-0.0837307944893837,0.04524967446923256,0.00729623157531023,0.012738377787172794,-0.0017135837115347385,0.024794554337859154,-0.06880359351634979,0.07123367488384247,0.07384805381298065,0.02822994254529476,-0.03834947943687439,-0.074164979159832,0.008166953921318054,-0.03750113397836685,-0.04649277403950691,0.02631138637661934,-0.0003892687673214823,0.044507790356874466,-0.07061789184808731,0.049294743686914444,-0.03164042532444,-0.08358705043792725,0.0445132851600647,-0.04732128977775574,-0.03305104747414589,0.03612210229039192,-0.035710010677576065,0.04467437043786049,0.005352002568542957,-0.06534048914909363,-0.060302235186100006,-0.052986834198236465,-0.005761251784861088,0.0340198278427124,-0.0309864841401577,-0.06791390478610992,0.015103723853826523,-0.06738691031932831,-0.01665160246193409,0.008653081953525543,-0.028904328122735023,-0.049612194299697876,0.041846998035907745,0.07694892585277557,-0.021532775834202766,0.0018729828298091888,0.054512638598680496,0.008096559904515743,-0.007438986096531153,0.06544029712677002,-0.026121478527784348,-0.014994148164987564,-0.05394934490323067,-0.026990540325641632,-0.05393706262111664,-0.044871505349874496,0.06346644461154938,-0.04747495427727699,0.06663039326667786,-0.06315366923809052,0.028611546382308006,-0.038464609533548355,0.03631250187754631,-0.015714647248387337,-0.012053306214511395,0.012074134312570095,-0.028505126014351845,-0.07711546123027802,0.004357128869742155,0.06443355977535248,-0.04524136707186699,-0.01750274747610092,0.032611921429634094,0.016797440126538277,-0.02456558495759964,0.05833377316594124,-0.07509474456310272,0.07665206491947174,0.07751332968473434,0.06767489016056061,-0.016125012189149857,0.08133167028427124,0.044770315289497375,-0.013138856738805771,0.03937602415680885,0.03602275624871254,0.031184213235974312,0.04999314993619919,0.03709137439727783,-0.034605395048856735,-0.02842392772436142,0.01235067006200552,-0.004389564041048288,0.017816495150327682,0.08521623909473419,-0.06359049677848816,-0.02233501709997654,-0.014318295754492283,0.011435404419898987,0.08456374704837799,-0.025258244946599007,0.002466337289661169,0.02497749589383602,0.014246687293052673,-0.03549366071820259,-0.03694295138120651,0.06311190873384476,-0.027773084118962288,0.021803637966513634,0.08563071489334106,0.009609589353203773,-0.035625483840703964,0.06675529479980469,0.0010965086985379457,0.065139539539814,0.01143480185419321,-0.04038074612617493,0.002611494855955243,0.06453492492437363,-0.021211963146924973,0.04166405647993088,-0.03618711605668068,0.00638823676854372,-0.0694761648774147,0.044653937220573425,-0.04154140129685402,-0.016435399651527405,0.02312704175710678,0.009436622262001038,0.03672855347394943,-0.031616613268852234,0.03760010749101639,0.034226395189762115,-0.010882144793868065,0.01019984483718872,0.050560787320137024,0.05752753093838692,0.059362564235925674,0.006829566787928343,-0.047371357679367065,-0.02069883607327938,-0.01719955913722515,-0.01471666432917118,-0.04944923520088196,-0.019849862903356552,-0.05117379501461983,-0.014926516450941563,0.0429476760327816,0.0015602257335558534,-0.055439602583646774,0.04924549534916878,-0.06932482123374939,0.05110325291752815,-0.06669047474861145,-0.022055819630622864,0.028555644676089287,-0.006158723961561918,-0.026545874774456024,-0.015394170768558979,0.08244968205690384,-0.01037587970495224,-0.027814069762825966,-0.024461379274725914,-0.04170697554945946,-0.005385189782828093,0.020657110959291458,0.018482254818081856,-0.02652704529464245,-0.0086815869435668,-0.02860366553068161,0.058915186673402786,-0.06214718520641327,-0.012290013954043388,0.009440047666430473,-0.012066910043358803,0.08025442063808441,-0.049024831503629684,0.03276588022708893,-0.008393933065235615,-0.008197722025215626,0.06657659262418747,0.08213500678539276,0.03678107634186745,0.04108695313334465,-0.02302425354719162,-0.0739930272102356,-0.06886060535907745,0.02381039969623089,-0.024260319769382477,-0.04851825162768364,-0.01502049807459116,-0.004846350755542517,0.06453460454940796,0.04797286167740822,-0.019378209486603737,-0.06110891327261925,0.07813265919685364,0.03318408876657486,0.05003785714507103,0.03560507670044899,-0.00844223890453577,0.0498492568731308,-0.02811293490231037,0.01781162992119789,-0.009583823382854462,-0.01190511416643858,0.051908574998378754,0.0025338076520711184,-0.019521908834576607,-0.07767241448163986,-0.01893896795809269,0.03701727092266083,0.003226770553737879,0.05312072113156319,-0.08120769262313843,-0.0353948138654232,0.05615299940109253,-0.0013099442003294826,-0.04694430157542229,-0.05981307476758957,-0.07886611670255661,0.03777037933468819,-0.06339503824710846,-0.008643873035907745,0.060213033109903336,0.04041294753551483,-0.03978797793388367,-0.02383887581527233,0.018113944679498672,-0.038174647837877274,-0.0229522455483675,-0.051445335149765015,-0.070405013859272,-0.013773336075246334,0.03514711931347847,0.010369556024670601,0.0734519511461258,0.07501816004514694,0.025655142962932587,0.026408430188894272,-0.03726345673203468,0.02490008808672428,0.06902224570512772,-0.024494819343090057,0.05056263878941536,0.027100294828414917,-0.02173292078077793,0.039382390677928925,-0.02585880272090435,0.039423633366823196,-0.08776573091745377,0.06503704190254211,0.004849059972912073,-0.032517217099666595,-0.03743714466691017,0.048440489917993546,-0.04499082267284393,-0.07347369194030762,0.04646829143166542,0.009797818027436733,0.040801987051963806,0.01229734718799591,0.048852112144231796,-0.04948846995830536,0.022766966372728348,0.03857845067977905,-0.04359075427055359,-0.07327045500278473,-0.02804546244442463,-0.04416355863213539,-0.052726343274116516,0.006054865196347237,0.0324392095208168,-0.05459751933813095,-0.08055721968412399,0.006693367846310139,-0.005027198698371649,0.04857175052165985,0.006883711088448763,0.04133586958050728,-0.008727774024009705,0.04303085058927536,-0.034151192754507065,0.019719555974006653,0.06338087469339371,0.023024871945381165,0.042365774512290955,-0.025963133201003075,-0.034918852150440216,-0.0633404552936554,-0.04694460332393646,-0.018519168719649315,-0.00806471798568964,0.02483315020799637,0.06072673946619034,0.033822935074567795,0.039971478283405304,-0.045432839542627335,-0.041229214519262314,-0.06977570056915283,-0.0348135381937027,0.06545250117778778,-0.004762093536555767,0.07407231628894806,-0.03484874218702316,-0.02793777734041214,0.04597315937280655,-0.08111037313938141,0.06695140153169632,-0.041568491607904434,0.08000706136226654,0.00756795285269618,0.011070814915001392,-0.006361055187880993,0.015873616561293602,0.0523165762424469,0.05796417221426964,-0.009023378603160381,0.07433407008647919,0.042854081839323044,-0.03641173616051674,0.033699337393045425,0.047261130064725876,-0.05419125407934189,-0.05804727226495743,-0.030628390610218048,-0.044613663107156754,-0.055881500244140625,-0.07878433167934418,0.05468456447124481,-0.054647162556648254,0.018884021788835526,-0.014886361546814442,-0.0342327319085598,0.07023048400878906,0.08093569427728653,-0.08515536040067673,0.016018357127904892,-0.03313840925693512,0.040248919278383255,-0.023254921659827232,-0.04850324988365173,0.050178639590740204,0.027680138126015663,-0.05080622062087059,0.03848952800035477,0.08255866914987564,-0.07631322741508484,0.07177384942770004,-0.03583443909883499,0.023345626890659332,-0.05597149580717087,0.05085185170173645,0.0025064144283533096,0.04352835938334465,-0.06946198642253876,0.0039913235232234,0.023523325100541115,0.053388942033052444,-0.07332690805196762,0.009146342054009438,-0.056912172585725784,0.012249035760760307,0.015009412541985512,-0.031180327758193016,0.02477969601750374,-0.03824051097035408,0.03733571246266365,-0.04891567304730415,-0.0258753951638937,0.031779732555150986,0.057539716362953186,0.03255215287208557,0.00136106600984931,0.013631812296807766,0.019213799387216568,0.0466107502579689,0.0027058166451752186,0.06353762000799179,0.04914027079939842,-0.03773953393101692,-0.030386460945010185,-0.06217613443732262,-0.005643544718623161,-0.041171442717313766,-0.012252249754965305,0.02133532054722309,-0.06865143030881882,-0.05927734076976776,0.03148837387561798,0.020154088735580444,-0.06025388836860657,-0.06586655974388123,0.019034434109926224,0.071381114423275,-0.004101857077330351,0.02534545585513115,-0.05130161717534065,0.07107033580541611,-0.004506750497967005,0.02903873659670353,0.04267293959856033,-0.05496963486075401,-0.01979970745742321,-0.04148142412304878,-0.009914667345583439,0.03283670172095299,0.02206439897418022,-0.07737598568201065,-0.06000465899705887,0.052335191518068314,0.0038913749158382416]},{"id":"inept","vector":[0.007832244038581848,-0.053609345108270645,-0.0361485555768013,0.05870579555630684,0.020444456487894058,0.021928120404481888,0.019364450126886368,-0.06654516607522964,0.04797704517841339,0.027392951771616936,0.04537041485309601,0.05121611803770065,-0.059327270835638046,0.004382150247693062,-0.07604379206895828,0.015169300138950348,-0.04949386417865753,-0.030908823013305664,-0.021346962079405785,0.03817449137568474,0.025755012407898903,-0.020045485347509384,0.04830742999911308,-0.0339868888258934,0.043552935123443604,0.006477531976997852,-0.046683475375175476,-0.025205260142683983,-0.05975712090730667,-0.05163807421922684,0.0227662306278944,-0.04407681152224541,-0.015634458512067795,0.03276834636926651,0.024597544223070145,0.03625963628292084,-0.071385458111763,0.03756998851895332,0.04987286776304245,-0.059376440942287445,-0.0029357995372265577,-0.05566910654306412,-0.0026937476359307766,-0.041312843561172485,0.004644257947802544,-0.01102579478174448,-0.052577558904886246,-0.007707545533776283,0.011905242688953876,0.047004759311676025,0.032161813229322433,-0.07018221914768219,-0.03324870392680168,-0.018608707934617996,0.013322696089744568,-0.04536275938153267,0.01887233555316925,0.04965042695403099,0.04640631750226021,-0.07363838702440262,-0.021553494036197662,0.03214345499873161,-0.03898774832487106,0.02169322781264782,-0.026675641536712646,-0.013074982911348343,0.09583752602338791,0.04207950085401535,0.085541270673275,-0.05919186398386955,-0.039406418800354004,0.04754514992237091,0.004136484581977129,-0.00016553244495298713,-0.053849563002586365,-0.052916452288627625,0.050632279366254807,-0.022225219756364822,-0.03309819847345352,0.05977301672101021,0.04115983471274376,0.05145958438515663,0.003341429401189089,-0.027618372812867165,-0.05721048265695572,0.05601910129189491,-0.000271557888481766,0.08279620110988617,-0.0671038031578064,0.04340445622801781,0.008533875457942486,-0.022266898304224014,-0.030884021893143654,0.03221636638045311,-0.029329054057598114,0.03343314677476883,-0.07785288989543915,-0.0027167033404111862,-0.03998217359185219,-0.04871964082121849,-0.0939822643995285,0.05111704766750336,-0.023679332807660103,0.019428003579378128,-0.006580442655831575,-0.010005894117057323,-0.07012578845024109,0.07452317327260971,0.06734640896320343,0.022061333060264587,0.00047730046208016574,-0.07958763092756271,0.032819319516420364,-0.0675378292798996,-0.05658264830708504,0.03121548518538475,0.041269831359386444,0.038534726947546005,-0.0724165216088295,0.020575184375047684,0.025150781497359276,-0.09381029009819031,-0.015148335136473179,-0.055944811552762985,-0.06530791521072388,-0.005243936087936163,-0.0028700106777250767,0.0642004907131195,-0.004072184674441814,-0.03368201106786728,-0.04118877276778221,-0.060084160417318344,0.011510101146996021,-0.017855288460850716,-0.04459857568144798,-0.05976869910955429,-0.058586977422237396,-0.05255517363548279,-0.019299093633890152,0.027939360588788986,-0.03149006888270378,-0.05583922192454338,0.0641067698597908,0.06151521950960159,-0.05691909044981003,0.003916062880307436,0.04895172640681267,0.049471475183963776,0.023542888462543488,0.04060857370495796,0.018044227734208107,-0.004672423005104065,-0.029787816107273102,-0.019095422700047493,-0.02011195570230484,-0.045443594455718994,0.06728770583868027,-0.018882183358073235,0.04687174782156944,-0.07333903759717941,0.05484228953719139,-0.02045893669128418,0.02166844718158245,-0.027710648253560066,-0.007265737280249596,0.06818658858537674,-0.006220148876309395,-0.06201126426458359,0.029418546706438065,0.0738448053598404,-0.04382892698049545,-0.02863125130534172,0.0004440699121914804,0.045425914227962494,-0.05102618783712387,0.02073870226740837,-0.06699668616056442,0.08465499430894852,0.07053423672914505,0.07666041702032089,-0.022625233978033066,0.0826672911643982,0.029443660750985146,-0.011502551846206188,0.03305847942829132,0.05418454483151436,0.01432631816715002,0.05876532196998596,0.07065342366695404,-0.03140139579772949,-0.024432452395558357,-0.03565171733498573,-0.020773014053702354,0.0024015053641051054,0.07607648521661758,-0.053292497992515564,-0.05772888660430908,-0.003772054798901081,-0.02486308105289936,0.08297904580831528,0.0008187665953300893,-0.02025865577161312,0.03793742135167122,0.023311764001846313,-0.04450370743870735,-0.007737899199128151,0.046971455216407776,-0.05243460834026337,0.010829474776983261,0.07560184597969055,-0.010770969092845917,-0.05459384247660637,0.0894169807434082,-0.0038273839745670557,0.04717439040541649,0.021747808903455734,-0.026127077639102936,0.013157478533685207,0.058399349451065063,-0.012509889900684357,-0.011976417154073715,-0.045620255172252655,0.008932222612202168,-0.05552634596824646,0.02706652507185936,-0.045315586030483246,0.023196116089820862,-0.007809944450855255,-0.036108143627643585,0.056597765535116196,-0.034708600491285324,0.022010328248143196,0.0001660431153140962,-0.009068488143384457,-0.017240701243281364,0.05221131816506386,0.04885100573301315,0.03898317739367485,0.025662027299404144,0.004596706945449114,-0.051849521696567535,-0.03422541171312332,0.02495863102376461,0.016729634255170822,0.02178202010691166,-0.03635534271597862,-0.00717567466199398,0.03584160655736923,0.008548323065042496,-0.06263396888971329,0.021460160613059998,-0.07767017185688019,0.04069683700799942,-0.07549703121185303,0.000998518313281238,-0.015836190432310104,-0.020371532067656517,-0.07308503240346909,-0.013328811153769493,0.05536896735429764,-0.0226178839802742,-0.004335602279752493,-0.022139450535178185,-0.01689629815518856,0.011050687171518803,-0.05008793622255325,-0.0050774915143847466,-0.00033159612212330103,-0.030739136040210724,-0.03869668021798134,0.04418236389756203,-0.03581733629107475,0.010667928494513035,0.0007910225540399551,0.02206910215318203,0.029894791543483734,-0.031457528471946716,-0.002357396762818098,-0.006324665620923042,0.018435675650835037,0.056667767465114594,0.08819558471441269,0.016474606469273567,0.03955107554793358,-0.024263907223939896,-0.056278977543115616,-0.0853203535079956,0.037622127681970596,0.019027741625905037,-0.04752124473452568,0.006894515361636877,0.009101556614041328,0.07233303785324097,0.034289099276065826,0.00757790869101882,-0.059050556272268295,0.07121019810438156,0.059302546083927155,0.04767351225018501,0.0063856239430606365,-0.02507883310317993,0.06320728361606598,0.001532302820123732,0.011182443238794804,-0.0013834453420713544,0.04741683974862099,-0.011958293616771698,-0.029176855459809303,-0.03626595810055733,-0.08714701235294342,-0.05632093921303749,-0.022853810340166092,-0.030956080183386803,0.050395894795656204,-0.08149012923240662,0.013957616873085499,0.06588070094585419,-0.03953292593359947,-0.027691232040524483,-0.03869088739156723,-0.08209767937660217,0.06338593363761902,-0.03126799315214157,-0.022713346406817436,0.01748926378786564,0.01914101280272007,-0.014335349202156067,0.017559893429279327,0.026450010016560555,-0.05231944099068642,-0.023692060261964798,-0.06221231073141098,-0.06842023134231567,0.016325470060110092,0.029073506593704224,0.047243114560842514,0.061766013503074646,0.07524626702070236,0.049997810274362564,0.005649809259921312,-0.039137810468673706,0.05462709069252014,0.06760452687740326,0.03401477634906769,0.036069437861442566,0.02440703846514225,-0.009265013970434666,0.060581423342227936,-0.012310232035815716,0.06257256120443344,-0.0779900997877121,0.07407518476247787,0.05747266858816147,0.0508103147149086,-0.008196513168513775,0.026323825120925903,-0.0033324137330055237,-0.07894179970026016,-0.007596790790557861,0.020970795303583145,0.02011934481561184,0.02587585709989071,0.020838523283600807,-0.044062498956918716,0.02777523174881935,0.021197481080889702,-0.06093967705965042,-0.043869487941265106,0.021979525685310364,-0.00015861667634453624,-0.06577423959970474,0.007603015284985304,0.020277777686715126,-0.07212379574775696,-0.08305248618125916,-0.0014126584865152836,0.02610907144844532,0.017939776182174683,0.035271938890218735,0.05407433584332466,0.026025980710983276,0.05956307798624039,-0.05773302912712097,0.06374423950910568,0.028365066275000572,0.020587412640452385,0.06695177406072617,-0.003754864213988185,-0.053189922124147415,-0.044403400272130966,-0.01020673755556345,-0.044157352298498154,0.01978338696062565,0.020212322473526,0.06667356193065643,0.037065062671899796,0.028833812102675438,-0.06432897597551346,-0.04888797923922539,-0.07668638974428177,-0.04124648869037628,0.07146226614713669,0.02355307713150978,0.07456505298614502,-0.007130682934075594,-0.012821893207728863,0.03204844519495964,-0.07215438038110733,0.04400273412466049,-0.04171212390065193,0.08321376144886017,0.013191992416977882,0.011982269585132599,-0.004818173591047525,0.037272561341524124,-0.06551268696784973,0.021407680585980415,-0.033552855253219604,0.07785943150520325,0.05538487806916237,-0.04176076501607895,0.025519361719489098,0.05468820780515671,0.0075360797345638275,-0.06651958078145981,-0.025896450504660606,-0.05344323813915253,-0.019273122772574425,-0.0342995785176754,0.04291487857699394,-0.062216587364673615,0.03885288164019585,-0.012217610143125057,-0.058381449431180954,0.030093908309936523,0.06891830265522003,-0.05604112148284912,-0.013462373986840248,-0.0062730563804507256,0.048431046307086945,-0.06399708986282349,-0.040926314890384674,0.05626795440912247,0.04393494501709938,-0.0672081708908081,0.06680824607610703,0.07642701268196106,-0.05880651995539665,0.07950778305530548,-0.020599760115146637,0.0258009135723114,-0.058654025197029114,0.0077280099503695965,-0.016066649928689003,0.05606967210769653,-0.07541947811841965,0.002037186874076724,0.06322487443685532,0.0612906739115715,-0.07224161177873611,0.013976129703223705,-0.038812343031167984,-0.00926623959094286,0.03319002315402031,-0.01525149866938591,0.032277386635541916,-0.027022698894143105,0.024302463978528976,-0.0770772248506546,-0.05862923711538315,0.0030613646376878023,0.06167125329375267,-0.004748137202113867,0.008724507875740528,0.030260417610406876,0.0179287102073431,0.045084696263074875,0.0271267332136631,0.05385887995362282,0.019409850239753723,0.005928405094891787,0.029633449390530586,-0.06896460056304932,0.0078732930123806,-0.04195281118154526,0.016344036906957626,0.027218634262681007,-0.07171707600355148,-0.06243095174431801,0.008929192088544369,0.002233728999271989,-0.03785806894302368,-0.018582556396722794,-0.0005986599717289209,0.07812967896461487,0.012735720723867416,0.0076383668929338455,-0.06193189695477486,0.08786647021770477,-0.05401846393942833,0.04767404496669769,0.08164805173873901,-0.029871158301830292,0.008000532165169716,-0.023941973224282265,-0.002797845983877778,0.005543961189687252,0.018299758434295654,-0.0775652751326561,-0.07631198316812515,0.026363670825958252,0.019444823265075684]},{"id":"infrared-homing","vector":[0.033665601164102554,-0.022358668968081474,0.023262549191713333,-0.03558112680912018,-0.0116578983142972,0.03661743924021721,0.048074133694171906,-0.08053552359342575,0.054977767169475555,0.028391094878315926,0.0348210334777832,-0.00982300192117691,0.019651224836707115,-0.0063990699127316475,-0.04684130474925041,0.013970582745969296,-0.05166191607713699,-0.053790248930454254,-0.054967258125543594,-0.06240516155958176,-0.006655323784798384,0.034136105328798294,0.018560238182544708,-0.020721890032291412,0.05877600610256195,-0.01642710529267788,0.007000998128205538,-0.0007658277172595263,-0.03445078805088997,-0.03341549634933472,0.07357326149940491,-0.027191754430532455,0.0017921560211107135,-0.04871256276965141,0.031089793890714645,0.029467163607478142,-0.0446208231151104,0.0605282187461853,0.04066930338740349,-0.016637487336993217,-0.0010012952843680978,0.03976002335548401,0.06489719450473785,-0.018486587330698967,0.016871364787220955,0.03625437617301941,-0.05400467291474342,-0.055029820650815964,0.02951113134622574,0.06078571081161499,0.03809703513979912,-0.028050033375620842,-0.029058044776320457,-0.015301457606256008,-0.03212208300828934,0.018857691437005997,0.02428678795695305,0.03989885002374649,0.050833940505981445,-0.07599809020757675,-0.04108397290110588,-0.02610642835497856,-0.04451710730791092,0.05163796246051788,-0.06635060161352158,-0.02801228128373623,0.07868734747171402,0.032161541283130646,0.07462559640407562,-0.04206954687833786,-0.031203188002109528,-0.05912540480494499,-0.018635664135217667,0.026937879621982574,-0.04310530796647072,-0.06428829580545425,0.024665769189596176,-0.03451159596443176,-0.03083309344947338,0.0653294250369072,-0.006063009612262249,0.05969474837183952,-0.00890484917908907,-0.020838594064116478,-0.03612947463989258,0.04855155572295189,0.07764794677495956,0.08386559039354324,-0.04212040826678276,0.028812594711780548,0.0074402084574103355,-0.01109151542186737,-0.06860920041799545,0.04853018745779991,-0.045742396265268326,0.059438616037368774,-0.06556360423564911,-0.008701350539922714,-0.015713710337877274,-0.07058461010456085,-0.060892559587955475,-0.018102198839187622,-0.01478465273976326,-0.00851314514875412,-0.019405249506235123,0.02539045363664627,-0.06702572852373123,0.058341432362794876,0.07945351302623749,0.012718177400529385,-0.020370852202177048,-0.04541504383087158,0.0028975708410143852,-0.05948786064982414,-0.040678512305021286,0.02450384944677353,0.02710866555571556,0.0022247200831770897,-0.051042139530181885,0.0459633432328701,0.03266104683279991,-0.05970095470547676,0.05736136808991432,-0.08127079159021378,-0.010484980419278145,0.002851825673133135,-0.06524919718503952,0.04248005896806717,0.04244912788271904,-0.050283096730709076,-0.05564619600772858,-0.05024860054254532,-0.0313681922852993,0.038016337901353836,-0.020488254725933075,-0.07303714007139206,0.00939489807933569,-0.06592005491256714,-0.0033862898126244545,0.0466473326086998,0.05828344076871872,-0.0621442012488842,0.058790624141693115,0.07113561034202576,-0.020045926794409752,-0.060063641518354416,0.04218488931655884,-0.042734671384096146,0.005176329053938389,0.012994672171771526,-0.050168611109256744,0.010297461412847042,-0.06669674813747406,-0.05291416123509407,-0.047883953899145126,-0.018110720440745354,0.047502774745225906,-0.034784309566020966,0.07224348932504654,-0.06222984567284584,0.060057371854782104,-0.03470121696591377,0.05069899931550026,-0.008647691458463669,-0.0035369102843105793,0.025779154151678085,-0.02465571090579033,-0.045450400561094284,0.009192973375320435,0.05978197231888771,-0.07310545444488525,0.05128874257206917,-0.008948375470936298,0.02364349737763405,0.025344286113977432,-0.009993692860007286,-0.060502924025058746,0.07270773500204086,0.07213470339775085,0.05754990130662918,-0.030301406979560852,0.08551179617643356,0.02909313142299652,0.055632803589105606,0.02060812897980213,0.06775584816932678,-0.024252498522400856,0.05194048210978508,0.03739864379167557,-0.03903979808092117,-0.04534916207194328,-0.0029917899519205093,0.010891472920775414,-0.022325828671455383,0.07828240841627121,-0.06580707430839539,-0.07217616587877274,-0.08169678598642349,-0.03371337428689003,0.0807252898812294,-0.05840721353888512,0.018659040331840515,0.05503908917307854,0.0319528803229332,-0.05412780120968819,-0.056253477931022644,0.025491861626505852,0.029684944078326225,0.031525563448667526,0.06394172459840775,0.027232622727751732,0.0461413748562336,0.06597889214754105,0.02081301249563694,0.07035404443740845,-0.023327453061938286,-0.003710575634613633,-0.005572676658630371,0.05885118991136551,0.015175643377006054,0.04352085664868355,0.021701177582144737,0.03432989865541458,-0.00473910802975297,0.05938246473670006,0.013017194345593452,-0.021650679409503937,0.04571635648608208,-0.027298659086227417,0.019133614376187325,-0.0261749979108572,0.03375444561243057,0.03889183700084686,-0.0010661559645086527,0.04618051275610924,0.03076796978712082,0.04508427903056145,0.06189178675413132,-0.01461187843233347,-0.019999396055936813,-0.04928688704967499,0.0406213104724884,-0.05795036256313324,-0.07405462861061096,0.02224774658679962,-0.036133937537670135,-0.0656229555606842,0.013339507393538952,0.00816189032047987,-0.06006421521306038,0.04624638333916664,-0.04030109941959381,-0.010135370306670666,-0.0657799243927002,-0.020652521401643753,0.021650588139891624,-0.04951844364404678,-0.015519109554588795,-0.03358205035328865,0.07488273084163666,0.06042008846998215,-0.025282811373472214,0.007570876739919186,0.027311623096466064,-0.03807615116238594,0.007391976658254862,0.026079263538122177,-0.010307718068361282,0.020390281453728676,-0.052878864109516144,0.05688980221748352,-0.070663683116436,0.06307047605514526,-0.05415353178977966,-0.012077389284968376,0.06887266784906387,-0.02047646977007389,0.04111291095614433,-0.05120276287198067,-0.011376055888831615,0.06496208906173706,0.07423622906208038,0.05317814648151398,-0.015773139894008636,-0.018095174804329872,-0.06571613252162933,-0.07195991277694702,0.026302224025130272,-0.04128332808613777,-0.053361039608716965,0.011210406199097633,-0.023805823177099228,0.03527553752064705,0.019531387835741043,-0.017703844234347343,-0.054024580866098404,0.04497906565666199,0.03382904455065727,0.03646424040198326,0.0341796949505806,0.010991430841386318,0.0212155282497406,0.010707446373999119,0.05628154054284096,0.0016244248254224658,0.02944270335137844,0.06285520642995834,-0.006132097449153662,-0.0066004907712340355,-0.08140075206756592,-0.007872657850384712,0.012119618244469166,0.00766258267685771,0.04199478402733803,-0.07405388355255127,-0.061558086425065994,0.052450500428676605,-0.03695623576641083,-0.03782002627849579,-0.013039989396929741,-0.0734088122844696,0.04446897655725479,-0.049075204879045486,-0.03315603360533714,0.07859355956315994,0.016185743734240532,-0.00937518198043108,0.007482477929443121,0.049103058874607086,-0.049029167741537094,-0.023890485987067223,0.02402656525373459,-0.05739304795861244,0.05379360169172287,0.03227261081337929,0.0037382112350314856,0.08279969543218613,0.07830056548118591,0.015852030366659164,0.039894383400678635,0.017749732360243797,0.04886898025870323,0.01988575980067253,0.023904291912913322,-0.013573600910604,0.025321803987026215,-0.04854436591267586,0.04908596724271774,-0.021315595135092735,0.03424301743507385,-0.08065356314182281,0.0645160973072052,0.001204144791699946,-0.006945805158466101,-0.008042925037443638,0.052497755736112595,-0.05966193228960037,-0.07110392302274704,-0.005945855285972357,0.008446949534118176,0.051795151084661484,0.03243764489889145,0.02609221450984478,-0.024925388395786285,0.021609513089060783,0.02131468616425991,-0.03436636924743652,-0.0490303598344326,0.0170111283659935,-0.022772466763854027,-0.048873353749513626,0.05028298869729042,-0.012852028012275696,-0.04844236746430397,-0.07256238907575607,-0.0031703421846032143,0.0542670339345932,0.07495590299367905,0.007524264510720968,0.05204913765192032,0.021644113585352898,0.005112409591674805,-0.03923262283205986,0.069024957716465,0.049745675176382065,0.018703559413552284,0.06451228260993958,-0.05700657516717911,-0.025935687124729156,-0.07397988438606262,-0.07039625197649002,0.012325740419328213,-0.040195148438215256,-0.032191988080739975,0.05197734758257866,0.031730785965919495,0.056226301938295364,-0.07764778286218643,-0.0615825429558754,-0.07469002902507782,-0.04668627306818962,0.06714111566543579,-0.008126718923449516,-0.023250091820955276,-0.04616515338420868,0.016081176698207855,0.06141955778002739,-0.07045210897922516,0.06102290004491806,-0.04875138774514198,0.06353313475847244,-0.01212946604937315,0.011147967539727688,0.02898476831614971,0.008937365375459194,0.051113925874233246,0.06441906839609146,-0.048566870391368866,0.07150954008102417,0.0475749596953392,-0.03763027489185333,0.01496396865695715,0.05235595256090164,-0.0755956768989563,-0.036273349076509476,-0.037120502442121506,-0.03136417269706726,0.01009372528642416,-0.03503722324967384,0.024610931053757668,-0.06489215791225433,0.026558605954051018,-0.05563787370920181,-0.032457828521728516,0.03759469464421272,0.06251255422830582,-0.04579589515924454,0.02868059277534485,0.009994225576519966,-0.005765955429524183,-0.018629422411322594,-0.024364089593291283,0.07670154422521591,0.029457559809088707,-0.015255509875714779,0.06679558008909225,0.07784537971019745,-0.07028122246265411,0.060891926288604736,-0.028716212138533592,0.029937032610177994,-0.03316938504576683,-0.020871896296739578,0.022078702226281166,0.0062821307219564915,-0.0677788108587265,0.012858899310231209,0.021147118881344795,0.06006760522723198,0.019945817068219185,0.03851065784692764,-0.06193847954273224,-0.02635829895734787,-0.010214242152869701,0.010250351391732693,0.034215740859508514,-0.03746910020709038,0.05808281898498535,-0.03392171859741211,-0.035518500953912735,0.05725950747728348,0.07333628833293915,-0.0020840999204665422,0.011607266962528229,-0.04257665574550629,0.043131809681653976,0.05768851190805435,0.059050969779491425,0.038763269782066345,0.07954028248786926,-0.016987329348921776,-0.005648801103234291,-0.036336589604616165,0.027661386877298355,-0.0035734064877033234,0.008403418585658073,0.03329502046108246,-0.03673373907804489,-0.04573360085487366,-0.03044860251247883,0.00766027020290494,-0.056676022708415985,-0.036157071590423584,0.02418987639248371,0.059768833220005035,0.007366409990936518,0.04579794034361839,-0.04364486038684845,0.07070648670196533,0.01550967339426279,-0.04509847238659859,0.03183762729167938,-0.01087367907166481,0.03448198735713959,-0.0354602113366127,-0.014079015702009201,0.05510229989886284,0.050947535783052444,-0.0794278010725975,-0.07130422443151474,0.018052490428090096,0.0634046345949173]},{"id":"inner-peace","vector":[0.03998047485947609,-0.05623575672507286,-0.007471452467143536,0.028028983622789383,-0.04166223853826523,0.00297987530939281,0.05043010786175728,-0.05517465993762016,0.024341288954019547,0.011351249180734158,0.019138837233185768,0.009032808244228363,-0.026859652251005173,0.01516297273337841,-0.06886838376522064,-0.030341673642396927,-0.05731930583715439,-0.0627439096570015,0.012691862881183624,0.0574197955429554,0.03163163736462593,-0.029634812846779823,0.051830846816301346,-0.04136988893151283,0.02471284009516239,-0.019743526354432106,0.008710524067282677,-0.051539454609155655,-0.04403600096702576,-0.041120320558547974,0.0333133302628994,-0.053704820573329926,-0.04655946046113968,-0.03541111573576927,0.050002068281173706,0.030089514330029488,-0.050076019018888474,0.03823660686612129,0.06804947555065155,-0.04898196831345558,0.010819128714501858,0.021283932030200958,0.06162165105342865,0.0073835598304867744,-0.03609798103570938,0.007701691705733538,-0.06388922035694122,-0.026097670197486877,0.031997375190258026,0.06312889605760574,-0.018077103421092033,-0.06188104301691055,0.012840631417930126,-0.02238900400698185,-0.023772606626152992,-0.0431920662522316,0.04648645594716072,0.03366723284125328,0.062227390706539154,-0.08038894087076187,-0.06535740941762924,-0.01548854261636734,-0.05687706917524338,0.01636093482375145,-0.01610494963824749,0.014749226160347462,0.08594034612178802,0.03933081030845642,0.08695627748966217,-0.05055282637476921,-0.01790686696767807,-0.03941730409860611,0.005729620344936848,0.007018811535090208,-0.05437411367893219,-0.05023626983165741,0.028977038338780403,-0.03155079483985901,-0.05603693798184395,0.043935682624578476,0.019229626283049583,0.008458245545625687,0.008768140338361263,-0.00605544401332736,-0.05637235939502716,0.05588538572192192,-0.002350623020902276,0.04709912836551666,-0.06555130332708359,0.043543387204408646,-0.04993387311697006,0.010117819532752037,-0.020851025357842445,0.02609761245548725,-0.019815945997834206,0.03113843873143196,-0.0722421184182167,0.02859768643975258,-0.0014272095868363976,-0.026759576052427292,-0.08486328274011612,0.030901113525032997,-0.0005840340163558722,-0.00022929547412786633,-0.030921069905161858,0.02558552846312523,-0.063836470246315,0.0751558318734169,0.05660853534936905,0.0549946054816246,-0.04895191267132759,-0.041728101670742035,0.024510908871889114,-0.037188779562711716,-0.03501783683896065,0.015756161883473396,0.04795357957482338,0.061268601566553116,-0.06993774324655533,0.05501117557287216,-0.03684552386403084,-0.07729066163301468,0.04242662712931633,-0.05926933512091637,-0.02465762384235859,0.046213191002607346,-0.007549798581749201,0.04904288426041603,0.03652540594339371,-0.06723683327436447,-0.03970540687441826,-0.05725337937474251,-0.015244582667946815,0.018594225868582726,-0.016055729240179062,-0.06497166305780411,-0.039059828966856,-0.053598519414663315,-0.02292872592806816,0.008343234658241272,-0.016451310366392136,-0.0720963105559349,0.051022645086050034,0.0789991244673729,-0.04027304798364639,0.007337944116443396,0.05701644718647003,0.037509817630052567,0.00737215019762516,0.05648191273212433,-0.04405799135565758,0.011724509298801422,-0.07578907161951065,-0.022316977381706238,-0.03426399454474449,-0.008703828789293766,0.04988379031419754,-0.0247305016964674,0.05417989194393158,-0.0560649149119854,-0.034217897802591324,-0.029888972640037537,0.03392840549349785,-0.0012300473172217607,0.03982510417699814,0.04975040256977081,0.004994864109903574,-0.07332689315080643,0.0028381524607539177,0.06102817505598068,-0.07425201684236526,-0.06005780026316643,0.011858264915645123,0.04859410971403122,-0.034899502992630005,0.02781020849943161,-0.06543175876140594,0.08169808983802795,0.08424470573663712,0.060345932841300964,-0.02312096580862999,0.07401825487613678,0.030810993164777756,-0.027247102931141853,0.027714742347598076,0.04605099558830261,-0.010114076547324657,0.05644474923610687,0.054268885403871536,-0.02799275889992714,-0.021647408604621887,0.0007060747593641281,-0.03222950920462608,0.038884442299604416,0.08323989063501358,-0.06309627741575241,-0.0540449284017086,-0.0009714444749988616,0.007074510212987661,0.08047128468751907,-0.04162145406007767,0.04093373939394951,0.01659330166876316,-0.02147352322936058,-0.05512522906064987,-0.04214688390493393,0.05499644577503204,-0.0004295006219763309,0.017399456351995468,0.07783766090869904,-0.011621076613664627,-0.013452074490487576,0.07910528779029846,-0.017661694437265396,0.06766023486852646,-0.003052086103707552,-0.03369280695915222,0.021824588999152184,0.06747440248727798,0.007088191341608763,0.0006444017635658383,-0.051124054938554764,-0.009668233804404736,-0.053805161267519,0.01366257295012474,-0.02059171162545681,-0.0201850738376379,0.022681422531604767,-0.022213123738765717,0.044646602123975754,0.013613750226795673,0.03897662088274956,0.046955741941928864,0.021793853491544724,0.03106020949780941,0.07460130006074905,0.04292245954275131,0.05927414074540138,0.02614087052643299,-0.03775740787386894,-0.05235092714428902,-0.01725510135293007,-0.012233459390699863,-0.036522191017866135,-0.01189441978931427,-0.044189825654029846,0.008414003066718578,-0.008957073092460632,0.025636838749051094,-0.04547742009162903,0.05144215747714043,-0.0766921266913414,0.019349591806530952,-0.07301163673400879,0.020982105284929276,0.021233495324850082,-0.030195243656635284,-0.033344827592372894,-0.028974488377571106,0.07235804945230484,-0.04178189858794212,-0.029961615800857544,0.015013618394732475,-0.02382815070450306,-0.0031324028968811035,-0.015540553256869316,0.005864039063453674,-0.04821644723415375,0.006671263836324215,-0.031804922968149185,0.05282127112150192,-0.049415383487939835,0.01970389299094677,-0.012848432175815105,-0.014202889986336231,0.07903828471899033,-0.042522575706243515,0.06681565195322037,-0.04532233253121376,-0.0008729764958843589,0.05724705383181572,0.08037807047367096,0.013362863101065159,0.04171185940504074,-0.028935452923178673,-0.0713791698217392,-0.061329010874032974,0.042764339596033096,-0.038852617144584656,-0.07315821200609207,-0.0045117600820958614,-0.006175493821501732,0.06814684718847275,-0.012282146140933037,0.032322440296411514,-0.04802766814827919,0.059413086622953415,0.03810812160372734,0.043219778686761856,0.03034931980073452,-0.03237398341298103,0.06822937726974487,0.0012723831459879875,0.06398829072713852,0.04945911467075348,0.01285681314766407,0.0474587008357048,0.028842007741332054,-0.025102531537413597,-0.0726810172200203,0.015070140361785889,0.015242942608892918,-0.0023341604974120855,0.05406923219561577,-0.06860028952360153,-0.05146034434437752,0.042031001299619675,0.008389566093683243,-0.023771271109580994,-0.06969664990901947,-0.07153231650590897,0.05339452624320984,-0.03811861574649811,-0.007568392436951399,0.0404093898832798,0.035897694528102875,-0.015398049727082253,-0.00958007201552391,0.02623886615037918,-0.06307680904865265,0.030801760032773018,-0.020597247406840324,-0.06269007921218872,0.04514089971780777,0.03693697974085808,0.018165942281484604,0.0683063194155693,0.07992023974657059,0.057344622910022736,0.0045561473816633224,-0.047722410410642624,0.014260929077863693,0.06915416568517685,0.037668801844120026,-0.015940098091959953,0.02458173967897892,-0.00448942556977272,0.05444115400314331,0.002697441726922989,0.04276895523071289,-0.06736139208078384,0.061032652854919434,0.013293190859258175,0.008251131512224674,-0.01308493036776781,0.06832192838191986,-0.031922534108161926,-0.07446583360433578,0.028374869376420975,0.016399120911955833,0.02844589576125145,0.004940941464155912,0.04784777760505676,-0.049878768622875214,0.0038463470991700888,0.043135497719049454,-0.05322282388806343,-0.06666530668735504,0.0021674493327736855,-0.03563530743122101,-0.06007002666592598,0.01889379508793354,0.005130431614816189,-0.06857088208198547,-0.07151072472333908,-0.017885347828269005,0.014517146162688732,0.022899270057678223,0.01463952288031578,0.05419935658574104,-0.02671368233859539,0.03590064123272896,-0.04406696930527687,0.040697235614061356,0.03588417172431946,-0.0007009015535004437,0.07263346016407013,-0.026871858164668083,-0.025172343477606773,-0.06366827338933945,-0.04931740462779999,-0.0017544991569593549,0.0006093503907322884,0.004060945473611355,0.08124487847089767,0.04678988456726074,0.055646661669015884,-0.08162308484315872,-0.05683942884206772,-0.060051169246435165,-0.0618281364440918,0.05433748662471771,0.0047196378000080585,0.0773768350481987,-0.025374818593263626,-0.0071316855028271675,0.050601743161678314,-0.07425445318222046,0.0656697154045105,-0.05357411876320839,0.0684654489159584,-0.04029442369937897,0.020987149327993393,0.006029464770108461,0.014386903494596481,-0.0006431714864447713,0.06302735209465027,-0.006114684510976076,0.08066807687282562,0.05470210686326027,-0.04727936163544655,0.04544509947299957,0.0431157685816288,-0.07223652303218842,-0.07455768436193466,-0.03804830461740494,-0.05505869537591934,-0.04962490126490593,-0.03703342750668526,-0.01638501137495041,-0.02989319898188114,0.029155941680073738,-0.030537042766809464,-0.05230528116226196,0.04413868114352226,0.07711300253868103,-0.05527101457118988,-0.013574949465692043,0.03356332331895828,0.03717860206961632,-0.036223214119672775,-0.06085862219333649,0.0602903813123703,0.0481899194419384,-0.06364184617996216,0.050518300384283066,0.08403962105512619,-0.06932426989078522,0.06295520812273026,-0.030840544030070305,0.00198840512894094,-0.06557804346084595,-0.011307149194180965,0.026950467377901077,-0.00715293874964118,-0.07441063225269318,-0.02063569240272045,0.029153821989893913,0.06320749968290329,-0.05524454265832901,0.01588510163128376,-0.052150532603263855,0.005872666370123625,-0.013582156039774418,-0.034826815128326416,0.014019734226167202,-0.018070193007588387,0.042749740183353424,-0.04840417578816414,-0.06966984272003174,0.03708084300160408,0.0695403665304184,-0.0016201675171032548,0.007821040228009224,-0.001528003835119307,0.05374789237976074,0.07455714046955109,0.037207964807748795,0.03513729199767113,0.0820506289601326,-0.025941265746951103,-0.02289053425192833,-0.05372648686170578,0.008526048623025417,-0.031065991148352623,0.036861032247543335,0.01846637949347496,-0.05273599922657013,-0.07143702358007431,0.0007420976762659848,0.03428516164422035,-0.021028032526373863,-0.05803350731730461,0.04494335874915123,0.06888983398675919,-0.008615963160991669,-0.02217889577150345,-0.049100760370492935,0.0725424513220787,-0.02783197909593582,0.033540159463882446,0.04453890398144722,-0.022435102611780167,-0.005720075219869614,-0.02795984596014023,0.01487601175904274,0.044595953077077866,0.042835984379053116,-0.05735523998737335,-0.07381418347358704,0.047731027007102966,0.02828732691705227]},{"id":"inside-insight","vector":[0.003256030846387148,-0.0469571016728878,-0.05661024898290634,0.00932248029857874,0.018638771027326584,0.0005673131672665477,0.010098774917423725,-0.08399592339992523,0.03683147951960564,0.035342760384082794,0.02381270006299019,0.02497447468340397,-0.03709201514720917,0.01157060544937849,-0.06765701621770859,-0.008626510389149189,-0.06975961476564407,-0.06891598552465439,-0.01353443879634142,0.037958335131406784,-0.037147242575883865,-0.013697342947125435,0.04522301256656647,-0.012626039795577526,0.0470321923494339,-0.006801991257816553,-0.004033660516142845,-0.029206324368715286,-0.04269871860742569,-0.032264307141304016,0.07063354551792145,-0.059199776500463486,-0.04502333700656891,-0.01603688672184944,0.04884832352399826,0.031257446855306625,-0.04902127757668495,0.03757736086845398,0.026180777698755264,-0.05278141051530838,-0.005684713367372751,0.009210312739014626,0.06614752113819122,-0.05858941003680229,-0.03508518636226654,-0.019696474075317383,-0.04614902287721634,-0.048408713191747665,0.038566235452890396,0.06491265445947647,0.029594631865620613,-0.0665399432182312,0.012666510418057442,-0.04634769633412361,-0.03987627848982811,-0.034784384071826935,0.030013758689165115,0.04725955054163933,0.012435562908649445,-0.07124287635087967,-0.041348930448293686,-0.03611338138580322,-0.05183205008506775,0.0040654526092112064,-0.0426015667617321,0.009128598496317863,0.08905801177024841,0.020054038614034653,0.06402871012687683,-0.07476191967725754,-0.05146244540810585,-0.05548790469765663,-0.022263702005147934,0.033877380192279816,-0.052989665418863297,-0.05335443839430809,0.011593429371714592,-0.04865138605237007,-0.03651024401187897,0.059996347874403,-0.018899133428931236,0.060121770948171616,0.01779846101999283,0.004490615334361792,-0.06352724134922028,0.038115184754133224,-0.01637628674507141,0.07078855484724045,-0.008119769394397736,0.04868597164750099,0.006400724407285452,0.03337589278817177,-0.019215434789657593,0.06584600359201431,-0.03590364754199982,-0.009984052740037441,-0.07714523375034332,-0.050068750977516174,-0.04854439198970795,-0.045583225786685944,-0.07954344898462296,0.014744297601282597,-0.030611470341682434,0.021709337830543518,-0.03004137985408306,0.02554475888609886,-0.05098644271492958,0.058042269200086594,0.029785435646772385,0.051056958734989166,-0.0403885655105114,-0.07419145107269287,0.012231124565005302,-0.04630441963672638,-0.037265632301568985,0.022668732330203056,0.024983996525406837,0.017240429297089577,-0.06743288040161133,0.030763359740376472,-0.015134776011109352,-0.06574548035860062,0.008385189808905125,-0.0587141327559948,-0.05290492624044418,0.02847961336374283,0.02505013719201088,0.06032932177186012,0.03227594867348671,-0.07386144250631332,-0.06985345482826233,-0.052397023886442184,-0.005403968505561352,0.03510978817939758,-0.03721613064408302,-0.07405763119459152,-0.006379192695021629,-0.031184541061520576,-0.025137128308415413,0.03564075753092766,0.04229917377233505,-0.05255770683288574,0.0686177909374237,0.06367061287164688,-0.036996446549892426,0.02964571677148342,0.04856519773602486,0.0038062979001551867,0.00972609780728817,0.04235740005970001,-0.0070542762987315655,0.00599139928817749,-0.054990027099847794,-0.007999344728887081,-0.03234375640749931,-0.039857711642980576,0.06711384654045105,-0.012053857557475567,0.04569360986351967,-0.04163701832294464,-0.008351702243089676,-0.023778073489665985,0.05346521735191345,0.013941606506705284,-0.03301499783992767,0.013320988044142723,-0.024742603302001953,-0.05753497779369354,0.003908470738679171,0.069624163210392,-0.06557638943195343,0.0030538339633494616,-0.002114910865202546,0.03599276393651962,-0.03748896345496178,0.004543091636151075,-0.05519556626677513,0.0769628956913948,0.07068704068660736,0.06760792434215546,0.00010385383211541921,0.05994708463549614,0.059013351798057556,-0.007271326147019863,0.06046943739056587,0.062081363052129745,-0.03492026776075363,0.06621026247739792,0.04253402724862099,-0.040483538061380386,0.0050636399537324905,-0.017400924116373062,-0.01722295768558979,-0.012601570226252079,0.08363530039787292,-0.05338612198829651,-0.0583031065762043,0.005307149142026901,0.0013806023634970188,0.07891975343227386,-0.037515781819820404,-0.010927841067314148,0.022206861525774002,0.015014692209661007,-0.053860679268836975,-0.05270788446068764,0.07241982221603394,-0.012761923484504223,0.029569176957011223,0.08316415548324585,0.03286173194646835,0.01884646899998188,0.0730467289686203,-0.017322180792689323,0.05742267519235611,0.024194344878196716,-0.020039021968841553,0.005609666928648949,0.07047589868307114,-0.019456440582871437,0.016094418242573738,-0.030336543917655945,-0.010776447132229805,-0.036447688937187195,0.06040937826037407,-0.023888742551207542,-0.020130593329668045,0.008289075456559658,-0.0007726666517555714,0.01714235544204712,-0.02623179741203785,0.010773726738989353,0.019858144223690033,-0.010651159100234509,-0.00281917629763484,0.04781561344861984,0.04962320625782013,0.0699193999171257,0.012685183435678482,-0.060507576912641525,-0.04243794456124306,0.02303026244044304,-0.030247919261455536,-0.027815241366624832,-0.0013340575387701392,-0.024491243064403534,-0.014351597055792809,0.04575956612825394,0.02342606708407402,-0.05532335862517357,0.053718745708465576,-0.07564973086118698,0.04695120081305504,-0.07170476764440536,0.007891636341810226,0.01759527064859867,-0.012932425364851952,-0.05115652456879616,-0.0343891978263855,0.08646596223115921,-0.038675691932439804,0.010453975759446621,-0.002627918031066656,0.0047959680669009686,-0.04844316095113754,-0.0017948694294318557,0.018785079941153526,-0.029783161357045174,-0.030801618471741676,-0.03518174961209297,0.04853389784693718,-0.05806660279631615,-0.03230733796954155,-0.034851592034101486,0.0016937690088525414,0.07132947444915771,-0.043722543865442276,0.06039220839738846,-0.02929529920220375,-0.04143289849162102,0.06692502647638321,0.0524621419608593,0.07133123278617859,0.0034020589664578438,-0.045227088034152985,-0.07041914761066437,-0.0634472668170929,0.025870811194181442,-0.05932039022445679,-0.05612683668732643,0.020626593381166458,-0.006679079495370388,0.028910739347338676,0.03651118651032448,-0.030757777392864227,-0.05707952380180359,0.03945036977529526,0.03600113093852997,0.03576255589723587,0.04516628757119179,-0.033929016441106796,0.037047527730464935,-0.0035020518116652966,0.05116104707121849,0.00018211768474429846,0.013720795512199402,0.006058800499886274,-0.031206650659441948,-0.023969383910298347,-0.08594872802495956,-0.03953874483704567,0.0040601566433906555,-0.0049695540219545364,0.04155544191598892,-0.06314191967248917,-0.040921714156866074,0.0646599605679512,-0.017228245735168457,-0.06412927806377411,-0.04229896515607834,-0.07612308114767075,0.06891494244337082,-0.030933629721403122,0.006718706805258989,0.0723404735326767,-0.007795099634677172,-0.05053938552737236,-0.047374363988637924,0.035456109791994095,-0.04416627064347267,-0.018408289179205894,0.017247365787625313,-0.05224939435720444,-0.0246569961309433,0.026783544570207596,0.04174858704209328,0.07426078617572784,0.06967763602733612,0.000568500894587487,0.035838812589645386,0.013357289135456085,0.016730133444070816,0.051880743354558945,0.02857077866792679,0.04225458204746246,-0.001994784688577056,-0.06544739007949829,0.042684756219387054,-0.037643708288669586,0.04440104961395264,-0.08724695444107056,0.05457184091210365,-0.00493490369990468,0.009837327525019646,-0.004975491669028997,0.04866017401218414,-0.03693416342139244,-0.07044621556997299,0.032684989273548126,0.004010073374956846,0.05462561547756195,0.03863910585641861,-0.030219903215765953,-0.02373766154050827,0.04483872652053833,0.04098294675350189,-0.018172845244407654,-0.06220053508877754,-0.0146432314068079,-0.024071982130408287,-0.04703997075557709,0.026037689298391342,0.02836206927895546,-0.06434514373540878,-0.07528006285429001,0.021167008206248283,-0.005395782180130482,0.0396270714700222,-0.0300301406532526,0.05919990316033363,-0.014610293321311474,0.04873364418745041,-0.04490111395716667,0.06877218931913376,0.03160744905471802,0.03156758472323418,0.06232680007815361,-0.05048719048500061,-0.06959737837314606,-0.06017031520605087,-0.06655018031597137,-0.03155279532074928,-0.0281389057636261,0.04719153046607971,0.05637745559215546,0.04805478826165199,0.042622730135917664,-0.0506039634346962,-0.04282401502132416,-0.07307711243629456,-0.047645438462495804,0.07144217193126678,0.03508276492357254,0.07401812821626663,-0.026476211845874786,-0.0002392237220192328,0.0325317308306694,-0.08000041544437408,0.07871339470148087,-0.054154809564352036,0.07252179086208344,0.051882948726415634,0.03893270716071129,0.000514988845679909,0.00587988318875432,0.05839697644114494,0.0588495209813118,-0.05931106582283974,0.07598577439785004,0.023601913824677467,-0.06274206936359406,0.0635751336812973,0.05293642356991768,-0.05120006203651428,-0.035881564021110535,-0.033432476222515106,-0.017264770343899727,-0.05351705476641655,-0.057382870465517044,0.04161888360977173,-0.026746490970253944,0.026634281501173973,-0.02273372747004032,-0.07371906191110611,0.061668120324611664,0.06131000816822052,-0.07936001569032669,0.004830747842788696,-0.025660356506705284,0.032870255410671234,-0.04908274486660957,-0.06594296544790268,0.03223303332924843,0.010766907595098019,-0.0405883826315403,0.012323359958827496,0.08504879474639893,-0.060736555606126785,0.07400096952915192,-0.011781008914113045,0.007420876529067755,-0.01606767624616623,0.020689330995082855,-0.012480408884584904,0.0385005921125412,-0.06578782945871353,0.01652141660451889,0.0358220674097538,0.06651359051465988,-0.028001956641674042,0.00556377274915576,-0.05606457218527794,0.020151976495981216,0.011292949318885803,-0.007387537509202957,0.03077804669737816,-0.022125504910945892,0.036289289593696594,-0.06127581372857094,-0.028714559972286224,0.04950909689068794,0.06281526386737823,0.015096725896000862,-0.009978976100683212,0.0010019746841862798,0.04865550249814987,0.06457962095737457,0.06203948333859444,0.0324571393430233,0.05927841365337372,0.031663402915000916,-0.023315606638789177,-0.053452081978321075,-0.005828378722071648,-0.04334792494773865,0.022390305995941162,0.01705867610871792,-0.061985693871974945,-0.05567365884780884,0.009155217558145523,-0.013306751847267151,-0.07052193582057953,-0.054940566420555115,-0.0045616417191922665,0.07737334072589874,-0.0010537694906815886,0.010373251512646675,-0.05804979428648949,0.08316335827112198,-0.03462083265185356,0.05556195601820946,0.04630827531218529,-0.006169688887894154,0.008985440246760845,-0.05820731446146965,0.02251380681991577,-0.0031073419377207756,0.048041317611932755,-0.08761816471815109,-0.07803604006767273,0.06874414533376694,0.022613663226366043]},{"id":"judge-judy","vector":[0.0062997788190841675,-0.06074710935354233,-0.04275758937001228,0.026081791147589684,-0.019199952483177185,0.02500254474580288,0.030225984752178192,-0.06515343487262726,0.019187793135643005,0.0165458582341671,0.03414790704846382,0.006539841182529926,-0.03575843572616577,0.02027284912765026,-0.056546688079833984,0.03202249854803085,-0.06720416247844696,-0.06578119844198227,-0.045669201761484146,-0.006094737444072962,-0.0261321272701025,-0.02988339774310589,0.056049637496471405,-0.010022258386015892,-0.0001279259886359796,0.013435072265565395,-0.05201788991689682,-0.009660851210355759,-0.056465499103069305,0.026464322581887245,0.052132926881313324,-0.07559890300035477,-0.04208037629723549,0.00019237729429733008,0.05757858604192734,0.07206931710243225,-0.04621192812919617,0.03433150798082352,0.07648056000471115,0.0031626946292817593,0.018074804916977882,0.02175714820623398,0.0556354895234108,-0.06965752691030502,0.042444344609975815,0.018751878291368484,-0.04635709524154663,-0.0038632070645689964,0.0615643709897995,0.06108592450618744,0.023276183754205704,-0.019419226795434952,-0.010285676456987858,-0.024662606418132782,0.012029747478663921,0.010624395683407784,0.06484199315309525,0.02934420295059681,0.01379880215972662,-0.04572412744164467,-0.060450479388237,0.0033816415816545486,-0.03639289736747742,-0.03320356830954552,-0.0007104880060069263,0.0015434302622452378,0.08925647288560867,0.006581524852663279,0.08246403932571411,-0.07248710840940475,-0.040296245366334915,-0.016746867448091507,0.01647545024752617,0.06200462952256203,-0.06770069897174835,-0.06195685639977455,0.026408230885863304,-0.026845162734389305,-0.007839515805244446,0.06538886576890945,0.009734260849654675,0.009592556394636631,0.048458416014909744,-0.04864979535341263,-0.03112531453371048,0.04766816645860672,-0.025894539430737495,0.045705098658800125,-0.03587447479367256,0.0008493207860738039,-0.028599988669157028,0.003921448718756437,-0.0044791242107748985,0.061823680996894836,-0.032993461936712265,0.02181938849389553,-0.08546579629182816,-0.016969801858067513,-0.054368212819099426,-0.022954661399126053,-0.08375483751296997,0.016023587435483932,-0.03748942166566849,0.021850092336535454,-0.019216574728488922,0.01797732338309288,-0.03652230650186539,0.0689353197813034,0.07438980787992477,0.020881837233901024,0.046530209481716156,-0.06081906333565712,0.024271691218018532,-0.0739174410700798,-0.0713917538523674,0.005772508680820465,0.009661940857768059,0.03906488046050072,-0.03946010023355484,0.030665280297398567,-0.05281038582324982,-0.08035508543252945,0.046195339411497116,-0.04736728593707085,-0.05127793550491333,-0.022840701043605804,0.005566525273025036,0.041291456669569016,0.03168221563100815,-0.08246031403541565,-0.04912891238927841,-0.0390951968729496,-0.008487686514854431,0.01164961513131857,-0.03171674534678459,-0.06986180692911148,-0.051651835441589355,-0.06886916607618332,0.006679755635559559,-0.019009675830602646,-0.016190415248274803,-0.04986422881484032,0.054287269711494446,0.060478631407022476,0.03765084594488144,0.007421679794788361,0.03783328831195831,0.04639874026179314,-0.008602899499237537,0.0129608865827322,-0.004742772784084082,-0.0172196626663208,-0.007391463965177536,-0.02564597688615322,-0.040675289928913116,-0.05841641500592232,0.05780456215143204,-0.04599571228027344,0.05641404166817665,-0.041753821074962616,0.03398173302412033,-0.03999893739819527,0.04058600217103958,0.015442281030118465,0.022901855409145355,0.009652572683990002,0.0010806532809510827,-0.05218156799674034,-0.013254414312541485,0.07087893784046173,-0.050441376864910126,0.0031325595919042826,0.004705216269940138,-0.008859481662511826,-0.038934603333473206,0.06825444102287292,-0.06826601922512054,0.08753091096878052,0.08148860186338425,0.08364231139421463,-0.02449207380414009,0.06070924550294876,0.06720863282680511,-0.01667916029691696,0.05555862933397293,0.04969732090830803,0.030312057584524155,0.04342835769057274,0.048557378351688385,-0.027683548629283905,-0.030271265655755997,-0.013482342474162579,0.04508505389094353,-0.033708635717630386,0.08487025648355484,-0.07819879055023193,0.008673334494233131,-0.002368123270571232,0.03940649330615997,0.07744664698839188,0.019833924248814583,-0.059248678386211395,0.0003397437685634941,-0.03603844717144966,-0.023312192410230637,-0.06829240173101425,0.051887255162000656,-0.03884485363960266,0.020911473780870438,0.08060623705387115,0.0027034247759729624,0.001645273412577808,0.07358667999505997,0.019708383828401566,0.0768999457359314,0.045008204877376556,-0.05462903529405594,0.03139011934399605,0.054496120661497116,0.02014833316206932,0.042907003313302994,-0.06403956562280655,0.05383625999093056,-0.05270341783761978,0.06175742298364639,-0.02836478501558304,-0.047470737248659134,-0.03846420347690582,-0.009101547300815582,0.02960182912647724,-0.028498735278844833,0.041616715490818024,0.013908503577113152,-0.0023749233223497868,0.007661803625524044,0.05663096532225609,0.042860016226768494,0.056083180010318756,0.018405046314001083,-0.03763177990913391,-0.051269128918647766,-0.007960313931107521,-0.007184977643191814,-0.014161099679768085,0.005272313952445984,-0.013529742136597633,-0.0006376581732183695,0.004006738308817148,-0.01264247577637434,-0.05363979935646057,0.036931153386831284,-0.07096915692090988,0.026986313983798027,-0.07255882769823074,0.003003615653142333,-0.0159289613366127,0.003993634600192308,-0.05961840972304344,-0.007436968386173248,0.06095505878329277,-0.007166174240410328,-0.015976067632436752,-0.04466623812913895,-0.022182440385222435,0.028708288446068764,0.01648910902440548,-0.043478116393089294,-0.011717427521944046,-0.05978269502520561,-0.05542293190956116,0.04813573509454727,-0.053696561604738235,-0.027684923261404037,-0.02955058217048645,-0.008947012946009636,0.07893597334623337,-0.051162637770175934,0.040315043181180954,0.01052579190582037,-0.01472464855760336,0.06399424374103546,0.0840388834476471,0.002350584836676717,0.053722869604825974,-0.059624332934617996,-0.030700506642460823,-0.054029326885938644,0.05258006602525711,-0.01651923917233944,-0.04784291982650757,-0.01616721786558628,-0.048453427851200104,0.07640185952186584,0.03609815612435341,-0.03943527117371559,-0.06612295657396317,0.06733789294958115,0.014370674267411232,-0.0051667168736457825,0.04320147633552551,-0.037475332617759705,0.060484301298856735,-0.0357624851167202,-0.01130049116909504,0.019919171929359436,0.02629907988011837,-0.019663719460368156,0.03973926603794098,-0.009788130410015583,-0.08044721186161041,-0.06924008578062057,0.05492926388978958,-0.014934667386114597,0.05965110659599304,-0.07334022223949432,-0.049954384565353394,0.0454709492623806,-0.02320828102529049,-0.03303122892975807,-0.06507886201143265,-0.0755232572555542,0.05388309806585312,-0.05684100463986397,0.015071859583258629,0.06644775718450546,0.0517263263463974,-0.025789519771933556,0.007868137210607529,-0.032035231590270996,-0.04420603811740875,-0.06894441694021225,-0.02457951381802559,-0.07042866945266724,-0.03268423676490784,0.028328221291303635,0.01762498915195465,0.08316447585821152,0.08282948285341263,-0.0035315086133778095,0.051160119473934174,-0.03588826581835747,0.02491680532693863,0.031444575637578964,-0.037045370787382126,-0.03846843168139458,0.02975960075855255,-0.05780772864818573,0.04772747680544853,-0.03619074821472168,0.05505368113517761,-0.08742134273052216,0.0456961952149868,0.019104333594441414,-0.008940132334828377,-0.015412981621921062,0.06987487524747849,0.015342367812991142,-0.06944144517183304,-0.005991298705339432,-0.014035592786967754,0.032307494431734085,0.001232486218214035,-0.01194002851843834,-0.04587181285023689,-0.0006822318537160754,0.030010217800736427,-0.05178622528910637,-0.008573743514716625,-0.033305320888757706,-0.033817511051893234,-0.062115468084812164,-0.037247609347105026,0.05373730510473251,-0.04355867579579353,-0.0755695179104805,-0.04411496967077255,0.033285751938819885,0.02166046015918255,-0.014644751325249672,0.06158740445971489,0.009512006305158138,0.034743428230285645,-0.060841310769319534,0.04209766909480095,0.07566943764686584,0.007275642827153206,0.05302004888653755,-0.03659021109342575,-0.04845433309674263,-0.05089268833398819,-0.011736090295016766,-0.028659643605351448,-0.021697498857975006,-0.0024383142590522766,0.03781304880976677,0.04948610067367554,0.020635483786463737,-0.03860238566994667,-0.03177529573440552,-0.07394935190677643,-0.05033799633383751,0.0774184837937355,-0.026228059083223343,0.02712959237396717,0.024742815643548965,-0.011368769221007824,0.03756098076701164,-0.0690721794962883,0.07722967863082886,-0.040587153285741806,0.03987932950258255,0.0009371796040795743,0.0302269347012043,-0.027901312336325645,0.03547751531004906,0.0178868155926466,0.04561023414134979,-0.011589659377932549,0.07256234437227249,0.06206727772951126,-0.004599207546561956,0.03011970780789852,0.021474123001098633,-0.030853141099214554,-0.03422272950410843,-0.017861276865005493,0.000044169177272124216,-0.060495197772979736,-0.0793025866150856,0.019153786823153496,-0.03329133614897728,0.017043042927980423,0.043055083602666855,-0.05851936712861061,0.0796414390206337,0.07511253654956818,-0.08401090651750565,-0.028666943311691284,-0.024761060252785683,0.017044195905327797,-0.033179134130477905,-0.036948416382074356,-0.0027636352460831404,0.03918754309415817,-0.07347074896097183,0.04516809433698654,0.08611633628606796,-0.06145794689655304,0.07055474817752838,-0.0392475500702858,0.003696138272061944,-0.05350020155310631,0.048258163034915924,-0.03031868115067482,-0.0012600559275597334,-0.07540197670459747,0.0034604929387569427,0.02638161927461624,0.05092419683933258,-0.038354821503162384,-0.0009759601671248674,-0.012064512819051743,-0.0032053841277956963,0.001625126926228404,-0.008787726983428001,0.03678422048687935,-0.007287000771611929,0.06440998613834381,-0.06450130045413971,-0.058994926512241364,0.01621457189321518,0.039242327213287354,0.02465365268290043,0.015742864459753036,-0.001988281961530447,0.03508748114109039,0.08353115618228912,-0.05436822026968002,0.05405782163143158,0.029754793271422386,-0.014606589451432228,-0.0008801721269264817,0.01624070480465889,-0.019630935043096542,-0.046438366174697876,0.002004902809858322,0.021912572905421257,-0.05232568830251694,-0.06008876860141754,0.05570695549249649,-0.04534847289323807,-0.04459588602185249,-0.026194553822278976,0.008407189510762691,0.07789791375398636,0.020899875089526176,0.015107904560863972,-0.04429672658443451,0.07886120676994324,-0.03808743879199028,0.04316335916519165,0.06023317202925682,-0.06676841527223587,0.05246735364198685,-0.04850488901138306,0.025327734649181366,0.06877796351909637,0.029088377952575684,-0.07984388619661331,-0.06377063691616058,0.055021919310092926,0.03712014853954315]},{"id":"jungle-ghosts","vector":[0.04361940175294876,-0.008819918148219585,-0.02633948251605034,0.002873980440199375,-0.03680477291345596,0.03610454872250557,0.016706783324480057,-0.07355056703090668,0.045401643961668015,-0.023722318932414055,0.0510307215154171,0.0017075882060453296,0.026376057416200638,0.05441262573003769,-0.05632101371884346,0.04889973625540733,-0.023314807564020157,-0.07432907819747925,-0.03145274519920349,-0.0034529666882008314,-0.011267703026533127,-0.03226928040385246,0.05738792568445206,-0.03567756339907646,0.031958527863025665,-0.056418027728796005,-0.010558545589447021,-0.02541806921362877,-0.06743630766868591,-0.017247062176465988,0.04349150136113167,-0.03528093919157982,-0.06034655496478081,-0.05585707724094391,0.04195287823677063,-0.0001778777368599549,-0.06228739023208618,0.032573066651821136,0.048697035759687424,-0.03706371784210205,0.020398516207933426,0.022705134004354477,0.07666873931884766,-0.009874490089714527,-0.029249805957078934,-0.03956476226449013,-0.008603738620877266,-0.008070568554103374,0.03891051933169365,0.05978628620505333,0.04146313667297363,-0.052554864436388016,0.03297193720936775,-0.026293836534023285,0.008389958180487156,-0.052985191345214844,0.0651850625872612,0.003753623692318797,0.060558296740055084,-0.07244143635034561,-0.07258112728595734,-0.001254651346243918,-0.03584149479866028,0.002730978187173605,-0.04699597507715225,0.01814928650856018,0.08754082769155502,0.019561685621738434,0.08202885091304779,-0.0446210652589798,-0.014531662687659264,-0.06613348424434662,0.002005356829613447,-0.004741940181702375,-0.053139712661504745,-0.058283742517232895,0.03210439905524254,-0.026597879827022552,-0.04154682159423828,0.06296400725841522,0.002554785693064332,0.03600425273180008,0.0255734845995903,-0.014715936034917831,-0.04982298985123634,0.030997399240732193,-0.0083951810374856,0.0729583278298378,-0.05463579297065735,0.027843063697218895,0.02388221211731434,-0.003953722305595875,-0.007296185474842787,0.029474381357431412,-0.021630622446537018,0.05349162966012955,-0.07865434885025024,-0.03135643154382706,-0.020148439332842827,-0.06588917225599289,-0.08184945583343506,-0.00539536215364933,-0.006819578353315592,0.029412472620606422,-0.054373327642679214,-0.008466089144349098,-0.055878374725580215,0.059099435806274414,0.05706080049276352,0.027089182287454605,-0.05763961374759674,-0.05407099053263664,-0.004534338600933552,-0.05855021998286247,-0.014594052918255329,0.02366313897073269,0.04122147709131241,0.007578201591968536,-0.06052013114094734,0.010965011082589626,-0.0031814472749829292,-0.0677945539355278,0.03968212381005287,-0.06318241357803345,-0.030808744952082634,0.005847190506756306,-0.028338244184851646,0.040644802153110504,0.010754530318081379,-0.056182801723480225,-0.05032780393958092,-0.047540657222270966,-0.04011928290128708,0.05428963899612427,-0.02309180237352848,-0.07045012712478638,0.026464637368917465,-0.054123178124427795,0.0071441312320530415,0.015671735629439354,0.016280313953757286,-0.053967397660017014,0.0346422977745533,0.06482915580272675,-0.02566968835890293,-0.013561001047492027,0.045071639120578766,-0.016455721110105515,0.026089461520314217,0.053044069558382034,-0.026078421622514725,0.04788794741034508,-0.07539448142051697,-0.031301651149988174,-0.017749622464179993,-0.016651075333356857,0.03370954468846321,-0.02550969086587429,0.07400088757276535,-0.06612563878297806,0.0012511492241173983,-0.007474418263882399,0.053679242730140686,0.000045803757529938594,0.021671704947948456,0.020291995257139206,-0.01602579839527607,-0.05972445011138916,0.023960068821907043,0.06146062910556793,-0.07543709874153137,0.014116174541413784,0.030231252312660217,0.04534473642706871,-0.03933935984969139,0.008764809928834438,-0.035330742597579956,0.08318562805652618,0.08892945200204849,0.0643141120672226,-0.028618168085813522,0.07909920066595078,0.014857242815196514,0.007612867746502161,0.0286257341504097,0.05319637060165405,-0.011137241497635841,0.07023303210735321,0.019185665994882584,-0.021503861993551254,-0.009086941368877888,0.01728810742497444,-0.03515414521098137,-0.028600910678505898,0.08440502732992172,-0.030061792582273483,-0.04131851717829704,-0.016806647181510925,-0.009816682897508144,0.08724091202020645,-0.03504928573966026,0.0037909885868430138,0.04556898772716522,0.009108899161219597,-0.03744761645793915,-0.03046925738453865,0.04954717680811882,0.005898075178265572,0.021641386672854424,0.0766381025314331,0.030620725825428963,-0.04379931464791298,0.04579297453165054,0.022267233580350876,0.06110488250851631,0.02854812704026699,-0.009889287874102592,0.031599365174770355,0.06287261098623276,-0.010290054604411125,0.029379403218626976,-0.012803015299141407,0.027643581852316856,-0.03978431597352028,0.05615806207060814,-0.006807590369135141,-0.05297933146357536,0.0058234697207808495,0.017111627385020256,0.011382442899048328,-0.022638943046331406,0.03880652040243149,0.04327063262462616,0.017228158190846443,0.03880884498357773,0.05391767993569374,0.04484231770038605,0.07869899272918701,-0.02031346596777439,-0.05096897855401039,-0.04017787426710129,-0.04125111177563667,-0.007320868782699108,-0.07119445502758026,-0.0066763777285814285,-0.040974538773298264,0.021797535941004753,0.036573149263858795,0.007736493833363056,-0.009439797140657902,0.06614001095294952,-0.05950159206986427,0.052603598684072495,-0.06621793657541275,-0.004302607383579016,0.015655266121029854,0.0018774535274133086,-0.05204607918858528,-0.034325797110795975,0.0694081038236618,-0.01339708361774683,-0.02882440574467182,-0.015559102408587933,-0.07578456401824951,-0.02530028484761715,0.015175416134297848,0.05707415193319321,-0.03946101665496826,-0.0012679693754762411,-0.020513277500867844,0.059202890843153,-0.05273446813225746,-0.0026538593228906393,-0.03753272816538811,0.0042016273364424706,0.08475013822317123,-0.03213774040341377,0.04409823566675186,-0.024330632761120796,-0.0014649172080680728,0.07137300819158554,0.06725143641233444,0.07037094980478287,0.024583734571933746,-0.025335172191262245,-0.05983881652355194,-0.08307696133852005,0.06698042899370193,-0.0542110949754715,-0.0682464987039566,-0.0131800202652812,-0.004123714752495289,0.02886950969696045,-0.026128696277737617,-0.008656945079565048,-0.04492480680346489,0.055227894335985184,0.04455088824033737,0.028430508449673653,0.041936032474040985,0.003588645253330469,0.0742860808968544,-0.017216818407177925,0.034179020673036575,0.018779300153255463,0.009626847691833973,0.05367231369018555,0.019283387809991837,-0.04221469908952713,-0.08381187170743942,-0.0119040347635746,0.019082147628068924,0.0006408589542843401,0.029858244583010674,-0.07120277732610703,-0.05890451744198799,0.049021173268556595,0.013921374455094337,-0.04335525259375572,-0.03132472187280655,-0.07135850191116333,0.05490143224596977,-0.055825669318437576,-0.002740932162851095,0.056303732097148895,-0.01862901821732521,-0.037022173404693604,-0.014374307356774807,0.024607595056295395,-0.0516851469874382,0.017192935571074486,-0.01855260320007801,-0.0608261302113533,0.036444008350372314,0.045405320823192596,-0.03394343703985214,0.0763782486319542,0.0836285948753357,0.03951335325837135,0.05943701043725014,-0.020714597776532173,0.023001089692115784,0.03306570649147034,-0.005755697842687368,-0.003721429267898202,0.05670816823840141,-0.01736159808933735,0.051649339497089386,0.0009089750819839537,0.05412566289305687,-0.0789560005068779,0.048845261335372925,0.012230824679136276,0.039118845015764236,0.003664253046736121,0.07143168896436691,-0.02423500269651413,-0.07025071233510971,0.03073906898498535,0.020060809329152107,0.013552895747125149,0.004395054653286934,0.07050278037786484,-0.038446903228759766,0.025887757539749146,0.05319298431277275,-0.06189580261707306,-0.07633217424154282,-0.012206233106553555,-0.04714590683579445,-0.05585185065865517,0.02069811336696148,0.02113550715148449,-0.06400201469659805,-0.08326328545808792,0.023144813254475594,0.005157195497304201,0.05513233691453934,-0.015852103009819984,0.05828407406806946,-0.016638096421957016,0.05219322070479393,-0.0452938936650753,0.000010266114259138703,0.0437372550368309,-0.00627852650359273,0.06067097559571266,-0.026262225583195686,-0.04380267485976219,-0.07069173455238342,-0.06777306646108627,-0.014906571246683598,-0.01725800521671772,-0.033065155148506165,0.06521782279014587,0.0408078096807003,0.06459420174360275,-0.0829327180981636,-0.06265150010585785,-0.05369406193494797,-0.04590447619557381,0.07293299585580826,0.004015821032226086,0.04183017835021019,-0.011029171757400036,-0.016944820061326027,0.06326838582754135,-0.08667506277561188,0.07607255131006241,-0.0342036709189415,0.07054777443408966,-0.024609535932540894,0.011731700971722603,-0.012850983999669552,-0.003159807063639164,0.053169503808021545,0.06099415570497513,-0.024918755516409874,0.08175180107355118,0.028486216440796852,-0.054989609867334366,0.0322849340736866,0.03747672960162163,-0.08249321579933167,-0.0632353276014328,-0.05144236609339714,-0.030865952372550964,-0.006362241692841053,-0.062472034245729446,0.034692879766225815,0.004478957504034042,0.0234551839530468,-0.027310149744153023,-0.004996491130441427,0.06658081710338593,0.08066335320472717,-0.056120701134204865,-0.006715720985084772,-0.008918159641325474,0.009269933216273785,0.0050143105909228325,-0.040449146181344986,0.040585633367300034,0.05701465159654617,-0.05361203849315643,0.04250001907348633,0.08479051291942596,-0.06878528743982315,0.06797517836093903,-0.0009684899123385549,0.0026921157259494066,-0.05319435894489288,0.008653523400425911,-0.00881148874759674,0.021436365321278572,-0.06811439990997314,-0.03154821693897247,0.027216821908950806,0.0509045384824276,-0.07129371911287308,0.03096681274473667,-0.022613907232880592,0.011687896214425564,0.037595633417367935,0.014622592367231846,0.021556373685598373,-0.05768608674407005,0.04303201660513878,-0.047366831451654434,-0.0663653165102005,0.03381975367665291,0.06444727629423141,0.018968429416418076,0.019274434074759483,-0.03551946207880974,0.05391214042901993,0.07329494506120682,-0.023959243670105934,0.06130195036530495,0.07857958227396011,-0.007711792830377817,-0.04365256428718567,-0.05350762605667114,0.016413819044828415,-0.03726085647940636,0.023269904777407646,0.04288389906287193,-0.04405878484249115,-0.05093210190534592,-0.04914198815822601,0.052452921867370605,-0.06865130364894867,-0.06598542630672455,0.03235087916254997,0.053052883595228195,0.02794564701616764,0.039404600858688354,-0.05325697362422943,0.0745081901550293,-0.009286918677389622,0.0034735563676804304,0.017066631466150284,-0.043450821191072464,0.001076113316230476,-0.03462357446551323,0.0031178435310721397,0.04523215815424919,0.050557781010866165,-0.0762331411242485,-0.07947636395692825,0.0485287606716156,0.06237560138106346]},{"id":"kings-pin","vector":[0.02032206952571869,-0.03987618163228035,-0.016906846314668655,0.006072325631976128,-0.05032807216048241,-0.0018392313504591584,0.02834610641002655,-0.07657203823328018,0.00867375172674656,0.04487639665603638,0.04275308921933174,-0.010146175511181355,0.020329393446445465,0.004642967600375414,-0.05926495045423508,0.03412938490509987,-0.05150322616100311,-0.07264843583106995,-0.030559154227375984,0.06273391842842102,0.02129051648080349,-0.022015338763594627,0.040450677275657654,-0.04615573212504387,0.019320987164974213,-0.043339118361473083,-0.034422893077135086,0.02288343757390976,-0.06790334731340408,-0.034795165061950684,0.0783168226480484,-0.01834052801132202,0.01019418053328991,-0.04430488869547844,0.04278462752699852,0.05093860626220703,-0.04238850250840187,0.02596396394073963,-0.000714454217813909,-0.027620060369372368,-0.04087449237704277,0.011936175636947155,0.07695191353559494,-0.04573221504688263,-0.03874342888593674,0.0237689558416605,-0.04401221126317978,-0.01644713245332241,0.06458023190498352,0.03555692732334137,0.04196430742740631,-0.02941613458096981,0.050453510135412216,-0.028396500274538994,0.05064282566308975,0.015232906676828861,0.018897108733654022,0.021350599825382233,0.03609731048345566,-0.06183173507452011,-0.061670299619436264,-0.028526797890663147,-0.05011947080492973,0.0444798581302166,-0.03437931463122368,0.028183676302433014,0.0922326073050499,0.01976439356803894,0.08729930967092514,-0.07717719674110413,0.029496414586901665,-0.06809068471193314,-0.01700281910598278,0.00837897602468729,-0.0674639642238617,-0.05448374152183533,0.06086041033267975,-0.052492398768663406,0.021831080317497253,0.07587913423776627,0.0006421675789169967,0.016337500885128975,0.0019381572492420673,-0.008625284768640995,-0.05069735646247864,0.04451743885874748,0.013570670038461685,0.055002644658088684,-0.006474223919212818,0.07077253609895706,0.0016491145361214876,-0.02348415181040764,-0.003608910134062171,0.06739236414432526,-0.024901606142520905,0.033448297530412674,-0.07000020891427994,-0.041554223746061325,-0.0651131197810173,-0.05113406851887703,-0.06176726520061493,0.04074690490961075,-0.013709161430597305,-0.019149817526340485,-0.057114362716674805,0.04532241448760033,-0.06067236140370369,0.06503073126077652,0.04386835917830467,0.03909388557076454,0.051364775747060776,-0.07027222216129303,0.006668095011264086,-0.05620800331234932,-0.013119474984705448,0.01537556853145361,0.019805770367383957,0.012997852638363838,-0.06002131104469299,0.030411774292588234,-0.028328636661171913,-0.057559359818696976,-0.019680840894579887,-0.053763024508953094,-0.042108502238988876,-0.010018867440521717,-0.026420895010232925,0.07250962406396866,0.02393275871872902,-0.053804293274879456,-0.07370659708976746,-0.05480961501598358,0.03654679283499718,0.04922054708003998,-0.02733524702489376,-0.06995674222707748,0.035015612840652466,-0.05266127362847328,-0.026157528162002563,0.02444661408662796,0.012846444733440876,-0.07871228456497192,0.030975548550486565,0.04226382449269295,-0.013724977150559425,0.030550140887498856,0.003442996647208929,0.045962054282426834,0.023687830194830894,0.023838618770241737,0.015859201550483704,-0.01626191847026348,-0.059346720576286316,-0.023191649466753006,-0.04829375073313713,-0.05324254557490349,0.0705317035317421,-0.06241346895694733,0.0625588670372963,-0.08147052675485611,0.020653778687119484,0.007683970965445042,0.01983628235757351,0.030211864039301872,-0.01306831743568182,-0.016987716779112816,-0.018801560625433922,-0.06438098102807999,-0.011459584347903728,0.056593600660562515,-0.06944239139556885,-0.0018085904885083437,-0.0026210544165223837,0.059876974672079086,-0.02309643290936947,0.04011525958776474,-0.07749812304973602,0.07578659057617188,0.07634562999010086,0.07755973190069199,0.005323370452970266,0.04239659011363983,0.013610081747174263,0.036969125270843506,0.05489223077893257,0.06044413149356842,0.015375168062746525,0.051200393587350845,0.018882175907492638,0.020483041182160378,-0.019611768424510956,0.021049661561846733,-0.040676411241292953,0.01595805026590824,0.07167091220617294,-0.062316861003637314,-0.001180097577162087,-0.0008916291408240795,0.021311219781637192,0.08688856661319733,-0.01678861863911152,-0.01736690290272236,0.07518453150987625,0.025999778881669044,-0.058517951518297195,-0.0076234969310462475,0.06344568729400635,-0.03771216794848442,0.02963065356016159,0.013286184519529343,0.011407649144530296,0.004987092223018408,0.08144400268793106,-0.0038851757999509573,0.07347342371940613,-0.010064288973808289,0.020643077790737152,0.0028285409789532423,0.0765392929315567,-0.0051583643071353436,0.057538293302059174,0.01377197541296482,-0.012792153283953667,-0.08056532591581345,0.040173083543777466,-0.04817740246653557,-0.049014776945114136,0.009951610118150711,-0.007460088934749365,0.027764447033405304,-0.05148639529943466,0.023328572511672974,0.036977507174015045,0.006629605777561665,0.0036417136434465647,0.03687480464577675,0.03529025986790657,0.07342404872179031,-0.03709254413843155,-0.06952574104070663,-0.03464067727327347,-0.009214676916599274,-0.03284362703561783,-0.03897695615887642,-0.02328868955373764,-0.04245695099234581,0.017615798860788345,0.03794938325881958,0.024437258020043373,-0.06296360492706299,0.06268565356731415,-0.049601420760154724,0.02284296788275242,-0.06888711452484131,0.011826146394014359,0.02990899607539177,-0.005800444632768631,-0.0684988796710968,-0.008810233324766159,0.08330421894788742,-0.00755755789577961,-0.013452024199068546,-0.05615546554327011,-0.008440401405096054,0.02196505293250084,0.035373520106077194,0.07326268404722214,-0.01866288110613823,-0.06259030848741531,-0.021794699132442474,0.061155397444963455,-0.032964643090963364,-0.024304065853357315,-0.041753895580768585,0.023864874616265297,0.08107754588127136,-0.039272964000701904,0.0013079085620120168,-0.02336217649281025,0.005799654871225357,0.07720459997653961,0.052014417946338654,0.019896600395441055,0.029718035832047462,-0.0031819818541407585,-0.027442242950201035,-0.07676434516906738,-0.028140613809227943,-0.02166363224387169,-0.011074732057750225,-0.028466826304793358,-0.019590992480516434,0.04494890570640564,0.036142490804195404,-0.021796392276883125,-0.04694107919931412,0.0757284164428711,0.001675558160059154,0.050028108060359955,0.050097960978746414,-0.05061124637722969,0.05360395833849907,-0.029375100508332253,0.037407174706459045,-0.00849084835499525,-0.0022327357437461615,0.02111942507326603,-0.010778485797345638,0.013918664306402206,-0.09168703109025955,-0.060727354139089584,0.013875582255423069,0.03413664922118187,0.021435989066958427,-0.07680299133062363,-0.044933024793863297,0.05104012414813042,0.054127536714076996,-0.02846420183777809,-0.06390088051557541,-0.09060300141572952,0.07445801049470901,-0.012108825147151947,-0.010153483599424362,0.03573242947459221,0.04769046977162361,-0.010052951984107494,-0.05498148500919342,0.01836477592587471,-0.03764863312244415,-0.028533853590488434,-0.026215290650725365,-0.07188170403242111,-0.036867838352918625,0.050766270607709885,-0.0038462358061224222,0.07970596849918365,0.08516757190227509,0.019777344539761543,-0.042430292814970016,0.001675667124800384,0.027236882597208023,0.07613198459148407,-0.03838276118040085,0.05627521872520447,0.022638855502009392,-0.04882201552391052,0.06129135936498642,-0.0025633135810494423,0.051397744566202164,-0.08742202818393707,0.01978105679154396,0.028313979506492615,-0.016643110662698746,0.015801090747117996,0.055752191692590714,-0.047431498765945435,-0.07995127886533737,-0.015905875712633133,-0.019576573744416237,0.03553476929664612,0.02434791624546051,0.03243677318096161,-0.03721679747104645,-0.0067526367492973804,0.04668532684445381,-0.024910543113946915,-0.06647960841655731,-0.05455006659030914,-0.04146253317594528,-0.04552336782217026,-0.023842351511120796,0.02163553237915039,-0.018574709072709084,-0.07323314994573593,0.006869232282042503,-0.020231712609529495,0.016694139689207077,-0.039006736129522324,0.0326133631169796,0.016861911863088608,0.04723291099071503,-0.05107106268405914,0.05707766115665436,0.02855600416660309,0.005593493580818176,0.07529276609420776,-0.042089540511369705,-0.0535564087331295,-0.05303439870476723,-0.06400880217552185,-0.002760739531368017,0.014321492984890938,0.06543197482824326,0.04946279153227806,0.04648999124765396,0.041162021458148956,-0.046773627400398254,-0.06468753516674042,-0.06066131964325905,-0.04023111239075661,0.07054834812879562,0.0010951753938570619,0.05325784534215927,-0.026600252836942673,-0.034161798655986786,0.07634338736534119,-0.08286621421575546,0.07674968242645264,-0.04279347136616707,0.08093903213739395,0.017194246873259544,-0.010197733528912067,-0.036816149950027466,-0.004189762286841869,0.061655741184949875,-0.006569840479642153,0.012757999822497368,0.07025577872991562,0.05400622636079788,-0.05554429441690445,0.03839796781539917,0.005155718419700861,-0.07202868908643723,-0.04500530660152435,-0.012542301788926125,-0.011587008833885193,-0.05181564390659332,-0.06583178788423538,0.044676169753074646,-0.053125496953725815,-0.008222730830311775,0.00806473009288311,-0.046329792588949203,0.07335444539785385,0.07882943004369736,-0.08447667211294174,-0.03137955442070961,-0.056314028799533844,0.015686362981796265,-0.022328676655888557,-0.03994720056653023,0.03868228942155838,0.03964066505432129,-0.05172853171825409,0.04480978846549988,0.08064358681440353,-0.05482231453061104,0.06648579239845276,-0.012885096482932568,0.04360678791999817,-0.022888273000717163,0.03703939914703369,0.025668250396847725,0.02970370277762413,-0.06777006387710571,0.0020760020706802607,-0.008111040107905865,0.04758954793214798,-0.052712030708789825,0.02357473224401474,-0.06295694410800934,0.020382298156619072,0.0001726145128486678,-0.014748815447092056,0.02415342628955841,-0.043344829231500626,0.04008663073182106,-0.031049322336912155,-0.03805609419941902,0.05624835193157196,0.020880289375782013,0.00886194221675396,0.06371169537305832,0.007820402272045612,0.03141041100025177,0.03879499435424805,-0.009587212465703487,0.045196786522865295,0.07515618950128555,-0.01659698598086834,-0.02592296525835991,-0.053911611437797546,0.011341108940541744,0.0057787299156188965,0.013249296694993973,0.03129678964614868,-0.05267789587378502,-0.03956928849220276,-0.005950747989118099,-0.003625249955803156,-0.06064073368906975,-0.04619203135371208,-0.021685035899281502,0.07799194008111954,0.03372778743505478,-0.011821247637271881,-0.06306564807891846,0.07925330102443695,0.0030066671315580606,0.04064163193106651,0.006278143730014563,-0.026241907849907875,0.05123164877295494,-0.020914370194077492,0.0029731409158557653,-0.016646545380353928,0.0427824929356575,-0.07068303972482681,-0.07275525480508804,0.014683479443192482,0.043966516852378845]},{"id":"klepto-couches","vector":[0.021402962505817413,-0.04886689409613609,-0.014094958081841469,0.016802731901407242,-0.0356919951736927,-0.00909876637160778,-0.03577614575624466,-0.08126318454742432,0.03160571679472923,0.010200396180152893,0.03683590516448021,0.03464973345398903,-0.004918025806546211,-0.016579706221818924,-0.06094510853290558,0.04032457247376442,-0.03815736249089241,-0.06896094977855682,-0.04754817858338356,-0.00020455171761568636,0.0249501820653677,0.03694719076156616,0.039488013833761215,-0.05545485019683838,0.03904092311859131,0.0075395130552351475,-0.006301868706941605,0.043232668191194534,-0.05232924222946167,-0.04631863534450531,0.032607611268758774,-0.07417462021112442,0.03385309502482414,-0.034692320972681046,0.051364291459321976,0.01031726598739624,-0.03621416538953781,-0.012271186336874962,-0.026940857991576195,-0.09035259485244751,-0.047851044684648514,0.02063046582043171,0.06476671993732452,-0.016017429530620575,0.013971864245831966,-0.020857227966189384,-0.06472578644752502,0.017833197489380836,0.039438191801309586,0.0019505287054926157,0.02170015685260296,-0.011024998500943184,0.00690405024215579,-0.04655592516064644,0.011363560333848,0.02488585375249386,-0.014941965229809284,0.026482468470931053,-0.004877464845776558,-0.055140137672424316,-0.0732259601354599,-0.023059312254190445,-0.02242310158908367,0.01699041575193405,-0.03737867251038551,0.005903352051973343,0.09121304005384445,-0.025127572938799858,0.06312994658946991,-0.05708790570497513,0.019641418009996414,-0.014177382923662663,-0.010674957185983658,-0.0057581705041229725,-0.05184086784720421,-0.05056172236800194,0.00016747668269090354,-0.039346594363451004,-0.015243539586663246,0.0802132859826088,-0.01610284112393856,0.04568445309996605,-0.005151593592017889,-0.009282434359192848,-0.06790919601917267,0.04627341032028198,-0.015039374120533466,0.045128606259822845,-0.035266682505607605,0.07438888400793076,-0.03650690242648125,0.04560234770178795,-0.046035341918468475,0.04414871335029602,-0.04597717896103859,0.046638283878564835,-0.07917234301567078,0.013192581944167614,-0.06629474461078644,-0.04751734435558319,-0.08841531723737717,-0.02461746521294117,0.0025380211882293224,0.0048458208329975605,-0.07180654257535934,0.06720708310604095,-0.02364668995141983,0.04441132768988609,0.05357404798269272,0.006634981371462345,0.01591629907488823,-0.0629216805100441,0.010011176578700542,-0.05862334370613098,-0.02414514869451523,0.019330820068717003,-0.023916080594062805,0.04384920746088028,-0.031415436416864395,0.02727416157722473,-0.017999952659010887,-0.059515342116355896,0.055383991450071335,-0.08647656440734863,-0.03241654857993126,-0.00583626190200448,-0.07117918878793716,0.05650851130485535,0.05599067732691765,-0.07551801204681396,-0.05356229469180107,-0.04375912621617317,-0.01936858519911766,0.06612490862607956,-0.031975340098142624,-0.07328382879495621,-0.0005925402510911226,-0.02001131884753704,-0.05699067935347557,0.04548901319503784,0.0008589422795921564,-0.08340846002101898,0.05127453804016113,0.0482102632522583,0.00763946957886219,0.03370875120162964,0.007509244605898857,0.011904790997505188,0.054984062910079956,0.01886778697371483,-0.024133184924721718,-0.010383842512965202,-0.0366782620549202,-0.049514420330524445,-0.0027788172010332346,-0.023851560428738594,-0.06968811899423599,-0.07825083285570145,0.06663068383932114,-0.05806155502796173,0.03316984698176384,-0.016498778015375137,0.036290206015110016,0.024171842262148857,-0.04812528192996979,0.016653673723340034,0.005350522696971893,-0.05522177368402481,-0.0095756184309721,0.0638541579246521,-0.028409326449036598,-0.001285712467506528,-0.03148239850997925,0.05236838757991791,0.02320353500545025,0.03970791772007942,-0.05536630377173424,0.08095353096723557,0.07681304216384888,0.06696614623069763,-0.025468435138463974,0.09120829403400421,0.02147853374481201,0.013043603859841824,0.025063171982765198,0.06310007721185684,0.0354754775762558,0.04902372136712074,-0.00389528158120811,-0.03662761300802231,-0.03444216772913933,-0.04661151021718979,-0.015306482091546059,0.002468491205945611,0.06276443600654602,-0.08231573551893234,0.02317352034151554,-0.03153237700462341,-0.008566148579120636,0.08586061000823975,-0.039204083383083344,0.03732309862971306,0.042275555431842804,0.003189334413036704,-0.07141239196062088,-0.034517426043748856,0.034608177840709686,0.0007689412450417876,0.03302008658647537,0.08150985091924667,-0.004792657680809498,-0.021189527586102486,0.06856860965490341,0.03105887770652771,0.07820026576519012,0.03990784287452698,-0.044882841408252716,0.01814853399991989,0.07263527810573578,0.04368351772427559,0.020347921177744865,-0.0038987582083791494,-0.021113773807883263,-0.03315850719809532,0.06295633316040039,0.023542413488030434,-0.06212049722671509,0.008056815713644028,0.0118714589625597,0.04655575379729271,-0.000317255558911711,0.018885282799601555,0.05934615805745125,0.02070622704923153,0.008549416437745094,0.07856044173240662,0.029309222474694252,0.03683587536215782,-0.017954502254724503,-0.05982585623860359,-0.055970750749111176,0.0071365381591022015,-0.02948167733848095,-0.025985995307564735,0.002086675725877285,0.012760641053318977,-0.05686386302113533,0.012172358110547066,0.03976139426231384,-0.023695554584264755,0.0697757825255394,-0.07017454504966736,-0.010722404345870018,-0.07159344851970673,-0.022150304168462753,0.0018397209933027625,-0.042068954557180405,0.00122765451669693,-0.005715485662221909,0.08305010199546814,0.018983423709869385,-0.026746192947030067,-0.04790429398417473,-0.026720747351646423,-0.06203239783644676,0.004582846537232399,0.02463771402835846,-0.022534698247909546,-0.012979880906641483,-0.05015246570110321,0.06332399696111679,-0.06053072214126587,-0.0004964038962498307,-0.05057195574045181,-0.02867637574672699,0.08625693619251251,-0.036399926990270615,0.02877448871731758,0.00015824077127035707,-0.0026619124691933393,0.08945766091346741,0.06749247759580612,0.06714468449354172,0.04113621637225151,-0.007234763819724321,-0.012382625602185726,-0.06400228291749954,0.0371912382543087,-0.03960566967725754,-0.0006752858753316104,-0.06265425682067871,-0.018228471279144287,0.02367313951253891,0.03474903851747513,-0.007929079234600067,-0.04184949770569801,0.061268310993909836,-0.02292671427130699,-0.005438390653580427,0.053376469761133194,-0.07362193614244461,0.050627753138542175,-0.02676042541861534,0.028126556426286697,-0.010660221800208092,0.024078628048300743,0.05055999010801315,-0.009084798395633698,-0.048080239444971085,-0.05094115808606148,0.023721614852547646,-0.012290755286812782,0.008650662377476692,-0.01895020343363285,-0.09204992651939392,-0.0629115104675293,0.05285812169313431,-0.03447088971734047,-0.023245694115757942,-0.0474708192050457,-0.05968137085437775,0.057272929698228836,-0.05131705105304718,-0.06743034720420837,0.06632894277572632,-0.02684890292584896,0.026757562533020973,-0.054336853325366974,0.01238654088228941,-0.007580317556858063,-0.07206841558218002,-0.05074312165379524,-0.07170793414115906,-0.028610073029994965,0.037776727229356766,-0.055723804980516434,0.09276939183473587,0.07613193243741989,0.014972678385674953,0.02739514596760273,-0.010555485263466835,0.026106299832463264,0.028954213485121727,-0.025368204340338707,0.023138631135225296,0.05622319504618645,-0.04251986742019653,0.02730986662209034,-0.0003999738546553999,0.0435926727950573,-0.09337174892425537,0.02218416891992092,0.016518358141183853,0.015864649787545204,0.06887388229370117,0.07141324132680893,-0.008512340486049652,-0.07787159830331802,-0.02029985748231411,-0.028618454933166504,0.04103295877575874,0.003336805384606123,0.034496549516916275,-0.05774683505296707,-0.04874558374285698,0.029865002259612083,-0.02877669967710972,-0.05632530525326729,-0.04940875619649887,-0.035956334322690964,-0.04657284915447235,-0.015837430953979492,0.03475700691342354,-0.05955535173416138,-0.06436365842819214,-0.02337036468088627,0.0062726400792598724,0.050507646054029465,-0.001096215914003551,-0.05420049652457237,0.047317251563072205,0.026324233040213585,-0.06046980246901512,0.07200901955366135,0.03500179573893547,-0.04831478372216225,0.05391353368759155,-0.03879181295633316,-0.034153785556554794,-0.06689188629388809,-0.08154629915952682,-0.009181556291878223,-0.03465209901332855,-0.021972643211483955,0.052159711718559265,0.03251165151596069,0.03799610212445259,-0.03900652751326561,-0.026525262743234634,-0.07192318886518478,-0.056732986122369766,0.08339361101388931,-0.0014823537785559893,0.014482093043625355,0.022614795714616776,0.035289403051137924,0.04879346862435341,-0.06063985452055931,0.06647618860006332,-0.04945594444870949,0.05489687994122505,0.02828550711274147,0.03496120870113373,-0.05799124017357826,0.004614921752363443,0.020540157333016396,0.04746245965361595,-0.06424565613269806,0.05616234242916107,-0.04940647631883621,-0.030230147764086723,0.07566862553358078,0.041773129254579544,-0.07546018064022064,-0.016036417335271835,-0.0045536053366959095,-0.023137418553233147,-0.009066582657396793,-0.056297946721315384,-0.010617219842970371,-0.01808001659810543,0.03755427896976471,-0.0604926235973835,-0.023307014256715775,0.060011476278305054,0.08489637821912766,-0.08802005648612976,-0.021999390795826912,-0.06304319947957993,0.005338119342923164,-0.009752747602760792,-0.0283682681620121,0.04444590583443642,0.0338597297668457,0.02291278727352619,0.03639905899763107,0.08642822504043579,-0.05328420549631119,0.05162283033132553,0.00018555892165750265,0.05526387318968773,-0.017374401912093163,0.04211513325572014,0.050652239471673965,0.01968468725681305,-0.07346156239509583,0.006067886017262936,0.02118445746600628,0.04575445502996445,-0.04970132187008858,0.00017186161130666733,-0.06496315449476242,0.03771959990262985,-0.004859496373683214,0.013525289483368397,0.029777824878692627,-0.057922035455703735,0.04660487547516823,-0.04389498010277748,-0.058370191603899,0.022891560569405556,0.02835358865559101,-0.013371328823268414,0.05720767751336098,-0.023806776851415634,0.00582742178812623,0.01564682275056839,0.049140043556690216,0.04495575278997421,0.07663729041814804,0.031246047466993332,-0.02777278795838356,-0.020128462463617325,0.022453123703598976,-0.021476658061146736,0.033774517476558685,0.049086738377809525,-0.030445458367466927,-0.07021114975214005,0.014239048585295677,0.00048198370495811105,-0.07729709148406982,-0.02320423722267151,-0.04814043268561363,0.07196744531393051,-0.05151018127799034,0.00007957483467180282,0.004110037814825773,0.06875618547201157,-0.001461536274291575,0.046788569539785385,0.041057195514440536,-0.01604728028178215,0.04265564680099487,-0.06418034434318542,0.0160061065107584,0.008781901560723782,0.033755261451005936,-0.06832940131425858,-0.07762204855680466,-0.039166342467069626,-0.013231698423624039]},{"id":"lawncare","vector":[0.0231810063123703,-0.015224417671561241,-0.05881558731198311,-0.013950351625680923,0.0018543391488492489,0.026352455839514732,0.007872638292610645,-0.07744266092777252,0.036314286291599274,0.017874713987112045,0.04805613309144974,0.03704763576388359,0.011878917925059795,0.011047926731407642,-0.05622590705752373,0.00800787378102541,-0.037583112716674805,-0.07069205492734909,-0.04467303305864334,0.03700358793139458,-0.03055032156407833,-0.04327600821852684,0.03765195980668068,-0.048901818692684174,0.011185599491000175,-0.006906968541443348,-0.015822608023881912,0.021338557824492455,-0.07353563606739044,-0.06306349486112595,0.04875599220395088,-0.06691304594278336,-0.021576041355729103,-0.005562697071582079,0.03957834467291832,0.0181878749281168,-0.05628373101353645,0.029627954587340355,0.0640094205737114,-0.05425775796175003,-0.04636940360069275,0.031787991523742676,0.06317418813705444,-0.034000154584646225,-0.00785350613296032,-0.026022527366876602,-0.04773140698671341,0.0442771315574646,0.03430820256471634,0.0342896431684494,0.0650060623884201,-0.05729281157255173,0.03147439658641815,-0.035696160048246384,0.017158057540655136,-0.05784512311220169,0.026715578511357307,0.018917828798294067,0.02395210787653923,-0.07175890356302261,-0.04894179850816727,-0.033118464052677155,-0.037574511021375656,-0.03974456340074539,-0.03799398988485336,0.022640394046902657,0.08270170539617538,0.021186375990509987,0.07877904921770096,-0.07689372450113297,0.01379870530217886,0.020796287804841995,0.006195630878210068,-0.0016551079461351037,-0.0681677758693695,-0.07192135602235794,0.026008017361164093,0.007215778809040785,0.0032185055315494537,0.060618359595537186,0.0029239722061902285,0.05428393930196762,-0.0008842253591865301,-0.016006605699658394,-0.04997881501913071,0.0516638457775116,-0.03141334652900696,0.0718565508723259,-0.07825755327939987,0.06051531434059143,-0.017813052982091904,-0.018648093566298485,-0.034245654940605164,0.047781020402908325,-0.04112783819437027,0.05242583528161049,-0.06883538514375687,-0.00987899862229824,-0.05887803062796593,-0.05058600381016731,-0.08014888316392899,0.0018096644198521972,-0.01424419041723013,0.0361337773501873,-0.05875331535935402,0.029239557683467865,-0.052928660064935684,0.06384696811437607,0.06700516492128372,0.001317541697062552,-0.03299188241362572,-0.0725383311510086,-0.016309628263115883,-0.076008640229702,0.006876511033624411,0.036123063415288925,0.024277234449982643,0.014669106341898441,-0.07210604101419449,0.010858931578695774,-0.016931504011154175,-0.08272197842597961,0.014722684398293495,-0.06616906076669693,-0.04696197062730789,-0.01056723389774561,-0.024216268211603165,0.06613056361675262,0.0383763425052166,-0.07075940072536469,-0.06225092336535454,-0.031154483556747437,-0.03862443193793297,0.05383962765336037,-0.010309678502380848,-0.07441789656877518,-0.022959060966968536,-0.06543540209531784,0.008966856636106968,-0.007432280573993921,0.011265041306614876,-0.041949741542339325,0.06550750881433487,0.06040147319436073,-0.03043721243739128,0.01963106542825699,0.06356579065322876,0.0006395841483026743,0.005980960559099913,0.026347162202000618,-0.020237112417817116,0.004645780194550753,-0.06375864893198013,-0.0008531936327926815,-0.047953829169273376,-0.025625310838222504,0.0373980738222599,-0.03586302697658539,0.05731549859046936,-0.0659521222114563,-0.009500045329332352,-0.021880393847823143,0.04471869394183159,0.036416225135326385,0.017180155962705612,0.04684164747595787,0.05096542090177536,-0.0711166262626648,-0.004134765360504389,0.06192672625184059,-0.05442935600876808,-0.0021921407897025347,-0.028233468532562256,0.04015378654003143,-0.03290281072258949,0.012991698458790779,-0.02207607962191105,0.07806841284036636,0.0708785429596901,0.07882759720087051,-0.023900222033262253,0.08158665150403976,-0.0045638736337423325,0.005081757437437773,0.024296773597598076,0.027484770864248276,0.01893910951912403,0.06067894399166107,0.04587564617395401,-0.018289053812623024,-0.03833082318305969,-0.00808378029614687,0.005082809831947088,-0.01714690402150154,0.08537116646766663,-0.06676419079303741,-0.022483017295598984,0.011843662708997726,0.03381691500544548,0.08471902459859848,-0.002638729754835367,0.015157671645283699,0.03187553212046623,0.009724043309688568,-0.06314628571271896,-0.06193432956933975,0.030641356483101845,-0.033448584377765656,0.0607500895857811,0.0699196606874466,0.00977097637951374,-0.011769737116992474,0.061747997999191284,0.013962959870696068,0.06950733810663223,0.005573949310928583,-0.011933192610740662,0.019405758008360863,0.05789164826273918,-0.01256977766752243,0.033986896276474,-0.05581006035208702,0.010456068441271782,-0.03253456577658653,0.06279782205820084,-0.001258430304005742,-0.011248107068240643,-0.01018836721777916,0.026052504777908325,0.016534850001335144,-0.0161784328520298,0.017363546416163445,0.046444546431303024,0.016840610653162003,0.013334501534700394,0.05586101487278938,0.04879267141222954,0.04685425013303757,0.0267614908516407,-0.0012753442861139774,-0.047700222581624985,-0.02580195479094982,0.00712655670940876,-0.04195034131407738,0.015404630452394485,-0.008117902092635632,0.016649361699819565,0.009144567884504795,0.041364844888448715,-0.018606392666697502,0.05060369893908501,-0.04231586307287216,0.06084074452519417,-0.06570155173540115,0.030226899310946465,-0.0124197443947196,-0.020769404247403145,-0.06001713126897812,-0.007202467881143093,0.07114773243665695,-0.019554365426301956,0.0026708045043051243,-0.04333392158150673,-0.03514351323246956,-0.047607991844415665,0.03635220229625702,-0.0070220245979726315,0.01860203593969345,0.001834520953707397,-0.027221165597438812,0.06888946145772934,-0.07702886313199997,-0.005823669023811817,-0.015226706862449646,0.030034437775611877,0.07750269770622253,-0.041798315942287445,0.05313658341765404,0.011524626985192299,-0.001893873093649745,0.08317763358354568,0.08125827461481094,0.06729461252689362,0.014399844221770763,-0.048160381615161896,-0.06953304260969162,-0.07921935617923737,0.05947645753622055,-0.05613096430897713,-0.022472498938441277,-0.05322740972042084,-0.027900859713554382,0.05440565571188927,0.013595668599009514,-0.008297543041408062,-0.050781723111867905,0.05906963720917702,0.035241469740867615,0.031022366136312485,0.02756052277982235,0.013277036137878895,0.03988850116729736,-0.023469580337405205,0.032255128026008606,0.03300449997186661,0.0321396067738533,0.033103711903095245,0.00674149114638567,-0.030148329213261604,-0.08746972680091858,-0.014389026910066605,0.005421142093837261,0.040051791816949844,0.03884492069482803,-0.07208944857120514,-0.06127166375517845,0.04540296271443367,-0.02721978910267353,-0.04539276659488678,-0.04216005653142929,-0.08215373754501343,0.06399012356996536,-0.023802537471055984,-0.017651265487074852,0.06622891128063202,-0.0016275285743176937,-0.01755884289741516,-0.028950782492756844,0.0013658107491210103,-0.05825767666101456,-0.05286027118563652,-0.06581664085388184,-0.0584891214966774,-0.022299418225884438,0.039850685745477676,0.0004761783638969064,0.08449938148260117,0.08418739587068558,0.014901632443070412,0.016312796622514725,-0.006242768373340368,0.025087088346481323,0.032353028655052185,-0.012074701488018036,0.02328597381711006,0.061904385685920715,-0.0553121343255043,0.05208311602473259,0.04224628582596779,0.052949611097574234,-0.07910844683647156,0.07804716378450394,0.03633716329932213,-0.011737463064491749,-0.003937535919249058,0.04150722175836563,-0.02798696793615818,-0.07029134035110474,-0.030482184141874313,-0.0002168151258956641,0.04803280532360077,0.023457033559679985,0.01895194500684738,-0.050453945994377136,0.016995154321193695,0.023842828348279,-0.03859643265604973,-0.05895395949482918,-0.028528012335300446,-0.04834376275539398,-0.053913310170173645,-0.007310902699828148,0.030698731541633606,-0.07102850079536438,-0.08001549541950226,-0.005043971352279186,0.018062423914670944,0.03512413427233696,0.0310323815792799,0.019403349608182907,0.00970461219549179,0.04172937572002411,-0.06766198575496674,0.04368958622217178,0.029217906296253204,-0.01454098243266344,0.052434276789426804,-0.03491055220365524,-0.024720093235373497,-0.07291305065155029,-0.07244224101305008,-0.040251702070236206,-0.020096782594919205,-0.027812616899609566,0.06707711517810822,0.04387415573000908,0.04615151509642601,-0.07274292409420013,-0.057330477982759476,-0.0687628909945488,-0.03976631909608841,0.06786210834980011,0.04856444150209427,0.06393904983997345,-0.01770184561610222,-0.00538941053673625,0.050159815698862076,-0.08488639444112778,0.07644584774971008,-0.010407417081296444,0.06679090857505798,0.05920952558517456,0.02069788984954357,-0.0015623033978044987,0.0006631889846175909,0.010312367230653763,0.04439503699541092,-0.03659255430102348,0.07927661389112473,0.04354693740606308,-0.05681372433900833,0.056603722274303436,0.018158359453082085,-0.06260652095079422,-0.05161656439304352,-0.029098862782120705,-0.023618081584572792,-0.031917642802000046,-0.05543145909905434,0.04516506567597389,-0.02463691681623459,0.0036043934524059296,-0.015305379405617714,-0.06950374692678452,0.06859602779150009,0.07554268836975098,-0.062289271503686905,-0.010125081986188889,-0.03033091314136982,0.007330387830734253,-0.0044508324936032295,-0.040769465267658234,0.012139080092310905,0.052565593272447586,-0.06705062836408615,0.05135731399059296,0.08119387924671173,-0.0782630667090416,0.07315828651189804,0.0049047754146158695,0.022202782332897186,-0.013310958631336689,0.022893741726875305,0.01749902404844761,0.051288943737745285,-0.06973361223936081,0.016118116676807404,0.029536686837673187,0.0463927797973156,-0.0737559124827385,0.021524252369999886,-0.037346187978982925,0.028853965923190117,0.03744771331548691,-0.0088330814614892,0.03564959019422531,-0.059118274599313736,0.03484040126204491,-0.07471411675214767,-0.0434030182659626,0.021549075841903687,0.06178596243262291,0.01088199857622385,0.025466758757829666,-0.031478408724069595,0.03317980840802193,0.05709695443511009,0.03913850709795952,0.031687330454587936,0.059368859976530075,0.015505831688642502,-0.023181727156043053,-0.021180376410484314,0.01033716555684805,-0.0022264060098677874,-0.0024395775981247425,0.052402038127183914,-0.04562726616859436,-0.05149126052856445,-0.01942545175552368,0.02370973862707615,-0.07433339208364487,-0.06650835275650024,-0.01744813844561577,0.0816735252737999,-0.012041945941746235,0.006169938948005438,-0.05769193917512894,0.07276368141174316,-0.03701260685920715,0.003068302059546113,0.0631403997540474,-0.03187471628189087,0.006829006597399712,-0.037772923707962036,-0.0069034770131111145,0.0438729003071785,0.04634656384587288,-0.07878119498491287,-0.07372209429740906,0.04448312520980835,0.033611372113227844]},{"id":"leafblower","vector":[0.012523140758275986,-0.025232402607798576,-0.05648089945316315,-0.004260870162397623,0.022998899221420288,0.052941784262657166,0.004324826877564192,-0.04244818538427353,0.02985564060509205,0.05964459106326103,0.03883764147758484,0.03621635213494301,-0.04794261232018471,0.005400095134973526,-0.07676377892494202,-0.01622757874429226,-0.04848096892237663,-0.06717041879892349,-0.0008806735277175903,-0.01291569136083126,0.022861676290631294,-0.03294682875275612,0.014961150474846363,-0.052361782640218735,0.0168311670422554,0.008542675524950027,0.02131662890315056,-0.007527116686105728,-0.06115869805216789,-0.06937462091445923,-0.030703406780958176,-0.06819579750299454,-0.03346575051546097,-0.010460670106112957,0.03738848492503166,0.00657995417714119,-0.051105864346027374,0.05453008413314819,0.033140428364276886,-0.06640519201755524,-0.04790796712040901,-0.030612729489803314,0.05372422933578491,-0.028935374692082405,-0.000347640598192811,-0.05061791092157364,-0.03363436087965965,0.006154685281217098,0.043578892946243286,0.04034876078367233,0.04444308578968048,-0.07094115018844604,-0.014125877059996128,0.020004652440547943,-0.02666614204645157,-0.04517268016934395,0.02502581849694252,0.05872902274131775,0.03619842231273651,-0.06061837449669838,-0.07429174333810806,0.024571120738983154,-0.04393189027905464,0.029440488666296005,-0.03368951752781868,0.035494573414325714,0.08096562325954437,0.040919139981269836,0.07035396248102188,-0.060320042073726654,-0.02932310290634632,0.03567872941493988,0.003268259344622493,0.06350977718830109,-0.07884455472230911,-0.0718444362282753,0.03798538073897362,0.01760846935212612,0.03958679363131523,0.062160130590200424,0.031371522694826126,0.032751474529504776,-0.002111602807417512,0.010778810828924179,0.003368302946910262,0.05291593447327614,0.03050617314875126,0.07419320940971375,-0.038131099194288254,0.049493201076984406,-0.010092692449688911,-0.036091700196266174,0.021816324442625046,0.03793034702539444,-0.04769917204976082,0.02058178372681141,-0.0735970214009285,-0.029553433880209923,-0.0059563168324530125,-0.024080194532871246,-0.095258429646492,0.03368204087018967,-0.01039927639067173,0.05056295916438103,-0.0029309820383787155,-0.007779804058372974,-0.07272174954414368,0.0710209533572197,0.07141180336475372,0.048793382942676544,-0.041958022862672806,-0.0552966445684433,-0.006264480762183666,-0.0601634755730629,-0.028604358434677124,0.014785122126340866,0.006276081316173077,-0.009503969922661781,-0.06759174168109894,0.0151060800999403,-0.023213259875774384,-0.07014936208724976,-0.03663104400038719,-0.06806550920009613,-0.03865561634302139,0.036240316927433014,-0.0438176691532135,0.07205720245838165,0.05010506510734558,-0.058793921023607254,-0.033756013959646225,-0.06433731317520142,-0.025475535541772842,0.009172973223030567,-0.05155036970973015,-0.07281974703073502,-0.003314018016681075,-0.053343597799539566,-0.024396417662501335,0.05329306423664093,0.042376257479190826,-0.04454833269119263,0.06284356117248535,0.06772807985544205,-0.01965811662375927,0.004623047076165676,0.05554717034101486,0.010805332101881504,0.020979519933462143,0.040566686540842056,-0.018658127635717392,0.029214439913630486,-0.03842081502079964,-0.04770328104496002,-0.0144460154697299,-0.01775261200964451,0.01122246216982603,-0.019175060093402863,0.06739331781864166,-0.05665230005979538,0.04304860159754753,-0.02480475604534149,0.026644529774785042,-0.012230494990944862,-0.021884623914957047,0.054477084428071976,0.0038777568843215704,-0.06934808939695358,-0.007241571322083473,0.07753810286521912,-0.03612861409783363,-0.010415708646178246,-0.009417041204869747,0.08623456954956055,-0.03518277034163475,0.0240876954048872,-0.06390926986932755,0.076955646276474,0.07407379895448685,0.04788648709654808,-0.012795040383934975,0.07596892863512039,0.041895538568496704,0.015511038713157177,0.007002935279160738,0.02328640967607498,0.04773750528693199,0.03782742843031883,0.040859155356884,-0.06039651110768318,-0.03227723762392998,-0.030534891411662102,-0.04208194836974144,0.00890396162867546,0.07923371344804764,-0.05232420936226845,-0.03827476128935814,-0.02122114598751068,0.05556834489107132,0.08674563467502594,-0.014971421100199223,0.017407195642590523,0.05775340646505356,-0.00961742177605629,-0.0606863796710968,-0.03399957716464996,0.0004901618231087923,-0.06431885808706284,0.039532892405986786,0.07077684998512268,-0.0026877671480178833,-0.05627130717039108,0.08453004062175751,-0.016286293044686317,0.07031852751970291,0.018286190927028656,-0.020417671650648117,0.041799262166023254,0.06132757291197777,-0.015274247154593468,0.0011865980923175812,-0.0332273431122303,-0.009015651419758797,-0.06587331742048264,0.040031395852565765,-0.00045949011109769344,0.02867169678211212,-0.019038574770092964,-0.006688493303954601,0.03643999248743057,0.007594549097120762,0.020385878160595894,-0.0011551615316420794,0.01610587351024151,0.022427642717957497,0.05317854881286621,0.021435100585222244,0.06617747247219086,0.06932873278856277,0.049072541296482086,-0.06087139993906021,-0.047809816896915436,0.03705904632806778,-0.045396775007247925,0.012620017863810062,-0.045308228582143784,-0.004191046115010977,0.011007691733539104,0.027703655883669853,-0.0414738655090332,0.026369338855147362,-0.08059020340442657,-0.005724078975617886,-0.07444335520267487,-0.011168083176016808,0.010561884380877018,-0.01475354004651308,-0.061929140239953995,0.006300712935626507,0.061514850705862045,0.043386030942201614,-0.0038202060386538506,-0.009462173096835613,-0.007997681386768818,-0.00426099356263876,-0.021558506414294243,-0.006502731703221798,-0.0553538054227829,-0.03376956284046173,-0.026898037642240524,0.04758352041244507,-0.010996202006936073,-0.012403232976794243,-0.031022004783153534,0.002330446382984519,0.0405285581946373,-0.016602221876382828,0.030299901962280273,0.002229297300800681,-0.04874909669160843,0.06830243766307831,0.07715926319360733,0.06644173711538315,0.032178353518247604,-0.02349669672548771,-0.05439844727516174,-0.08514373004436493,0.03136694058775902,-0.04719312861561775,-0.05704275891184807,0.009057613089680672,-0.04613325372338295,0.06881626695394516,0.021749479696154594,-0.011001909151673317,-0.04196307435631752,0.0544612854719162,0.0407753586769104,0.03854404017329216,0.04644467309117317,-0.002621492138132453,0.044809192419052124,0.003594782669097185,0.05871744826436043,0.049458060413599014,0.05131937563419342,-0.036941371858119965,-0.02326527051627636,-0.023074431344866753,-0.08174499124288559,-0.013912453316152096,-0.004341815132647753,0.026748500764369965,0.040761325508356094,-0.08180210739374161,-0.04007229581475258,0.06306546181440353,-0.014326910488307476,-0.035342518240213394,-0.03327549248933792,-0.07326387614011765,0.045968230813741684,-0.04376468062400818,-0.04415823891758919,0.0518760085105896,0.006660580635070801,-0.020283153280615807,-0.04478464648127556,0.014363943599164486,-0.05878174677491188,-0.0002359245263505727,-0.026460250839591026,-0.074013851583004,-0.0061232540756464005,0.03439408168196678,0.012232592329382896,0.08038044720888138,0.07821319997310638,0.03253705054521561,0.031628068536520004,-0.019808828830718994,0.020690126344561577,0.06310548633337021,-0.019792266190052032,0.018294263631105423,0.04402872174978256,-0.0192465391010046,0.05928261950612068,-0.047252751886844635,0.07195120304822922,-0.06936956197023392,0.056026704609394073,0.06214218959212303,0.043732788413763046,0.06301049888134003,0.06253848969936371,-0.020161865279078484,-0.07198042422533035,-0.005852059926837683,0.054549384862184525,0.044730957597494125,-0.03466064855456352,0.03383566066622734,-0.06714321672916412,0.02513514645397663,0.030473189428448677,-0.047353897243738174,-0.05804038792848587,-0.037294577807188034,-0.033713288605213165,-0.07720331102609634,-0.003536141011863947,0.022119544446468353,-0.07074985653162003,-0.08819115161895752,0.015347125940024853,0.03115791641175747,0.05480052903294563,-0.002582489512860775,0.0031032604165375233,-0.01540306955575943,0.06572005897760391,-0.03372925892472267,0.04553505778312683,0.01925896294414997,0.02066671848297119,0.0647946372628212,-0.05317724496126175,-0.04191580042243004,-0.012432198971509933,-0.0541347935795784,-0.056589897722005844,0.026779383420944214,-0.00621277978643775,0.06739815324544907,0.05646730214357376,0.033865828067064285,-0.07031949609518051,-0.026155807077884674,-0.07951010763645172,-0.03450838103890419,0.05285648629069328,0.03892950713634491,0.017114244401454926,-0.018835358321666718,-0.010268055833876133,0.06225794553756714,-0.0668862909078598,0.06872304528951645,-0.05427191033959389,0.0736820250749588,0.01756608672440052,-0.007547223940491676,-0.019906731322407722,0.004214126616716385,-0.02670404314994812,-0.007126187440007925,-0.08558997511863708,0.07265254855155945,-0.0011504169087857008,-0.043014246970415115,0.038167111575603485,0.0034788623452186584,-0.05783822014927864,-0.049675408750772476,-0.014394333586096764,-0.02725646086037159,-0.04273878410458565,-0.05953672528266907,0.03139377757906914,-0.0017379953060299158,0.051875192672014236,0.009801308624446392,-0.05386984720826149,0.0012672552838921547,0.07698758691549301,-0.014814571477472782,0.0163747388869524,-0.06114634871482849,-0.02429133467376232,-0.06110292300581932,-0.017557715997099876,0.04594065248966217,0.04585554823279381,-0.07292301207780838,0.014715614728629589,0.08049773424863815,-0.06432105600833893,0.0711800679564476,-0.0172122810035944,-0.007431201171129942,-0.015528256073594093,0.023249385878443718,0.023272445425391197,0.04140299931168556,-0.07684890180826187,0.0007398448651656508,0.04467202350497246,0.04980327934026718,-0.05076906457543373,0.01247402187436819,-0.07983347028493881,0.005267435684800148,-0.017313264310359955,-0.032457344233989716,0.02041766047477722,-0.07043607532978058,0.04207560792565346,-0.057502999901771545,-0.057475246489048004,0.0013455146690830588,0.007117983885109425,-0.044412609189748764,0.026834949851036072,-0.007247435860335827,-0.00889685470610857,0.02653263323009014,0.029719315469264984,0.006519028451293707,0.0750267282128334,0.06783073395490646,0.03339685872197151,-0.03455985337495804,0.019526293501257896,0.03435271233320236,0.0038862256333231926,0.035300519317388535,-0.03867191821336746,-0.07539688795804977,-0.017943043261766434,0.007769565097987652,-0.06981079280376434,-0.0741613581776619,-0.007606116589158773,0.07686974853277206,-0.004453382920473814,0.03169514611363411,-0.07296687364578247,0.08058415353298187,-0.021820196881890297,-0.014662920497357845,0.03704197332262993,-0.042165450751781464,0.025533407926559448,-0.03696853667497635,0.009542767889797688,0.03697657585144043,0.05489538982510567,-0.08343558013439178,-0.06501007825136185,0.02598375268280506,0.008081698790192604]},{"id":"looking-good","vector":[0.028614135459065437,-0.0420081652700901,-0.027120206505060196,0.0312642864882946,-0.03817509859800339,0.039752520620822906,-0.004607369191944599,-0.0762551873922348,0.05917554721236229,0.030486783012747765,0.05706985667347908,-0.010543817654252052,-0.03924676775932312,0.011368644423782825,-0.06461070477962494,0.027376893907785416,-0.04912329465150833,-0.07273402810096741,-0.02082759328186512,0.043385591357946396,-0.014975334517657757,0.009597641415894032,0.041923560202121735,-0.03863167762756348,0.004234921652823687,-0.00023113771749194711,-0.022051330655813217,-0.01580956019461155,-0.05112454667687416,-0.023363331332802773,0.05589558929204941,0.01905994303524494,-0.036365799605846405,0.005758862942457199,0.057214926928281784,0.04721491038799286,-0.055680613964796066,0.05466967076063156,0.06455894559621811,-0.05929381400346756,-0.005716090090572834,0.01995091512799263,0.0675121396780014,-0.028880564495921135,-0.022965364158153534,-0.004554453771561384,-0.056202009320259094,-0.02219560369849205,0.044771384447813034,0.07002206891775131,-0.0030602843035012484,-0.04217193275690079,0.020282119512557983,-0.0034479352179914713,0.02120739035308361,-0.026939619332551956,0.02632587030529976,0.02989826537668705,0.0537886917591095,-0.06780719012022018,-0.07374151051044464,-0.01651204749941826,-0.050639186054468155,0.018520412966609,-0.02208002842962742,-0.008187666535377502,0.07387675344944,0.02947993576526642,0.0698992908000946,-0.019636256620287895,-0.03422653302550316,-0.02549629472196102,0.03901997208595276,0.010782068595290184,-0.05095416307449341,-0.06726306676864624,-0.0033601385075598955,0.05837668105959892,-0.027891980484128,0.05684913322329521,-0.004963482730090618,0.06279139965772629,0.0008902937988750637,-0.016817187890410423,-0.053170252591371536,0.050586018711328506,0.03215238079428673,0.06934274733066559,-0.05872570723295212,0.06849686801433563,0.0003160132619086653,-0.008357690647244453,-0.035165853798389435,0.032260045409202576,-0.038196735084056854,0.031186414882540703,-0.07423246651887894,-0.05585338547825813,-0.055750247091054916,-0.034799929708242416,-0.08106125891208649,0.020513353869318962,0.0024210219271481037,0.025757702067494392,-0.022630048915743828,-0.003046485362574458,-0.04981865733861923,0.06928110122680664,0.05892622470855713,0.028232306241989136,-0.044237226247787476,-0.07310117781162262,-0.023348025977611542,-0.047879673540592194,-0.04815378412604332,0.011033986695110798,0.007332568056881428,0.06154030188918114,-0.057975463569164276,0.041696541011333466,-0.028345974162220955,-0.07145141065120697,0.04850337654352188,-0.06138390675187111,-0.05069727078080177,0.014243010431528091,-0.023921066895127296,0.05654653534293175,0.04695655778050423,-0.06956739723682404,-0.055402208119630814,-0.05148271098732948,-0.04427928850054741,0.007543798070400953,-0.031571757048368454,-0.07150065153837204,-0.0011366097023710608,-0.057449065148830414,-0.02273872122168541,0.013534792698919773,-0.013027426786720753,-0.07315027713775635,0.04320843890309334,0.07339678704738617,-0.04037384316325188,0.003724276088178158,0.05950969457626343,-0.00819496437907219,0.012518635019659996,0.05431782454252243,-0.016270557418465614,0.011978670954704285,-0.06977793574333191,-0.052911192178726196,-0.033244382590055466,-0.03195669502019882,0.04598545655608177,-0.0171259343624115,0.05405808240175247,-0.06081777438521385,-0.002433483023196459,0.002725905040279031,0.05317958816885948,0.00723340455442667,0.021835291758179665,0.047609034925699234,-0.026722246780991554,-0.06175098195672035,0.015009415335953236,0.060591328889131546,-0.07631512731313705,0.006253319792449474,0.0242838803678751,0.04028075933456421,-0.03723552078008652,-0.003290181513875723,-0.059660982340574265,0.07754147052764893,0.08144953846931458,0.0631331205368042,0.0038235837128013372,0.07657535374164581,0.003695522900670767,0.007977786473929882,0.05935714766383171,0.07236484438180923,-0.03421899303793907,0.050422076135873795,0.038027629256248474,-0.0355854257941246,0.004121672362089157,-0.0051438775844872,-0.02907608635723591,0.012462161481380463,0.07970000803470612,-0.02878117933869362,-0.04359778016805649,0.007746015675365925,-0.00313256261870265,0.08209382742643356,-0.009507772512733936,0.018566051498055458,0.02747594192624092,0.010838370770215988,-0.05911032482981682,-0.015309707261621952,0.060247424989938736,0.014013925567269325,0.00434767035767436,0.07715947180986404,0.025434480980038643,0.010079343803226948,0.0648668110370636,-0.01997082680463791,0.06357675045728683,0.019131632521748543,-0.026985224336385727,-0.03219760209321976,0.05819299444556236,-0.005795301403850317,0.041115596890449524,0.03354249149560928,0.013855674304068089,-0.06853773444890976,0.06598465144634247,-0.04920216277241707,-0.05274486914277077,-0.009855013340711594,0.013854403980076313,-0.020030604675412178,-0.038186222314834595,0.01061167661100626,0.04829273000359535,0.02482936903834343,0.004877608269453049,0.05846773833036423,0.05450732633471489,0.06654909253120422,0.0040118093602359295,0.061175115406513214,-0.05506639555096626,-0.0065165855921804905,-0.05149000510573387,-0.017970789223909378,0.01645977422595024,-0.02427239716053009,-0.014126655645668507,0.022341972216963768,0.0036261784844100475,-0.02523498609662056,0.053407203406095505,-0.0774017721414566,0.049448516219854355,-0.06793202459812164,-0.016416288912296295,0.00986594706773758,0.012585288845002651,-0.056231964379549026,-0.007927129976451397,0.06343169510364532,-0.018626894801855087,-0.03408294543623924,-0.005529837682843208,0.009382521733641624,-0.0009954534471035004,-0.0004442695644684136,0.04920193925499916,-0.024669427424669266,-0.01998491957783699,-0.038451116532087326,0.06374459713697433,-0.06361330300569534,0.030755139887332916,-0.024691663682460785,-0.02630060538649559,0.07285323739051819,-0.04353258013725281,0.024177497252821922,-0.014380927197635174,-0.04685473069548607,0.0724121481180191,0.07273287326097488,0.03099294938147068,0.01573934406042099,-0.045344121754169464,-0.0654391273856163,-0.080470509827137,0.041407760232686996,-0.02629828080534935,-0.05934993177652359,-0.017367234453558922,-0.008243195712566376,0.06690550595521927,0.021183287724852562,0.0026571904309093952,-0.046414200216531754,0.06608449667692184,0.054392676800489426,0.030695125460624695,0.04570697247982025,-0.016422048211097717,0.06903600692749023,0.02192801795899868,0.045320652425289154,0.019444461911916733,0.028972553089261055,0.00865807943046093,-0.00878523662686348,-0.019842887297272682,-0.0792975127696991,-0.007391666062176228,-0.014047322794795036,0.008110218681395054,0.0711686834692955,-0.06654050946235657,-0.05501726269721985,0.06870591640472412,0.006630656309425831,-0.05598512291908264,-0.024760857224464417,-0.07469500601291656,0.05467350780963898,-0.0314515046775341,-0.02987147681415081,0.056115515530109406,-0.008425679989159107,-0.023484736680984497,-0.01805926486849785,0.005236473400145769,-0.07609919458627701,0.01600327342748642,-0.016921836882829666,-0.07557753473520279,-0.010553539730608463,0.051203593611717224,0.019851649180054665,0.07895310968160629,0.08011967688798904,0.025853900238871574,0.032329995185136795,-0.002241035457700491,0.03557530790567398,0.04500338062644005,-0.015628395602107048,0.009000612422823906,0.009498572908341885,-0.021629180759191513,0.07055698335170746,-0.01980484463274479,0.05538424104452133,-0.07410144060850143,0.07068052142858505,0.019822580739855766,0.04168159142136574,-0.001703337300568819,0.06614670902490616,-0.023456284776329994,-0.06244286522269249,-0.023977074772119522,0.013642430305480957,0.055594123899936676,0.018757810816168785,-0.009478023275732994,-0.004814837593585253,0.012650162912905216,0.009831809438765049,-0.04194745048880577,-0.05774000659584999,-0.056703146547079086,-0.02606770768761635,-0.0630183219909668,0.02371271513402462,0.04630814120173454,-0.06391291320323944,-0.07419983297586441,-0.02663656696677208,-0.02670474350452423,0.05411793291568756,0.006644304376095533,0.043558597564697266,-0.005514933727681637,0.050913579761981964,-0.06481139361858368,0.04268508777022362,0.018823940306901932,0.019114218652248383,0.043344646692276,-0.04293478652834892,-0.06013662740588188,-0.05364857241511345,-0.06781116127967834,-0.04537029564380646,-0.02961856499314308,0.041283976286649704,0.062179408967494965,0.03286777436733246,0.052843328565359116,-0.06357443332672119,-0.05678224563598633,-0.07335606962442398,-0.029622623696923256,0.07744688540697098,0.023751674219965935,0.0701245591044426,0.001589882536791265,0.00865840446203947,0.05042083561420441,-0.07009946554899216,0.07183045148849487,-0.06381995975971222,0.07062648981809616,-0.014750168658792973,0.011690653860569,-0.0452989861369133,0.0007329165819101036,0.019761333242058754,0.04331391304731369,-0.03720923885703087,0.0746665671467781,0.06986764818429947,-0.050842154771089554,0.02165384404361248,0.017517168074846268,-0.06511972844600677,-0.07408197224140167,-0.011082319542765617,-0.01668712869286537,-0.06489411741495132,-0.04754102975130081,-0.02318946272134781,-0.045139946043491364,0.004719891119748354,-0.0029664908070117235,-0.059384338557720184,0.062064144760370255,0.0770506039261818,-0.0769617035984993,-0.004359912127256393,-0.06213082745671272,0.025246430188417435,-0.044297803193330765,-0.034491103142499924,0.0532340370118618,0.0595509298145771,-0.0599929578602314,0.06364792585372925,0.08051339536905289,-0.06547390669584274,0.06345922499895096,-0.017198285087943077,0.030295586213469505,-0.04902989789843559,0.006726193241775036,0.036199022084474564,0.03298696130514145,-0.0707780122756958,0.011746831238269806,0.05524098500609398,0.05497031286358833,-0.06061235070228577,0.009533263742923737,-0.0514591820538044,0.027095599099993706,0.01658022031188011,0.015136335976421833,0.04925915226340294,-0.06391345709562302,0.02971757762134075,-0.060829080641269684,-0.04612567648291588,0.009705530479550362,0.06910931318998337,0.029688799753785133,-0.012061803601682186,0.003250028472393751,0.016695845872163773,0.0707339495420456,0.05350640416145325,0.0014350834535434842,0.06747210770845413,-0.004176202695816755,-0.030883658677339554,-0.05602225288748741,0.01160866767168045,-0.003631236031651497,0.026818059384822845,0.019222645089030266,-0.035881347954273224,-0.06287206709384918,-0.0008458678494207561,-0.014878327958285809,-0.047517869621515274,-0.061983998864889145,0.031700052320957184,0.07394640147686005,-0.003495659213513136,0.0046766046434640884,-0.05634189769625664,0.07218795269727707,0.0233352892100811,0.04432135820388794,0.05820981785655022,-0.01768345572054386,0.03395330533385277,-0.0213265772908926,0.014114312827587128,0.022132745012640953,0.017884602770209312,-0.07373543083667755,-0.07176719605922699,0.05307448282837868,0.006402537692338228]},{"id":"loose-change","vector":[0.003564143320545554,-0.04404580965638161,-0.0082846749573946,0.019675785675644875,0.002331275027245283,-0.005554615519940853,0.019810685887932777,-0.08106393367052078,0.04207722470164299,0.0284601878374815,0.06495411694049835,0.019321978092193604,-0.02975444681942463,0.036146070808172226,-0.06265207380056381,0.03466300293803215,-0.07923361659049988,-0.061064206063747406,-0.0410698838531971,0.05940772220492363,-0.01532292552292347,0.006118686404079199,0.057456303387880325,-0.04214699566364288,0.029009371995925903,-0.03907991573214531,-0.01405630074441433,-0.008176594041287899,-0.07822369039058685,-0.06515542417764664,0.06633859872817993,-0.031773898750543594,-0.03526662290096283,-0.036007627844810486,0.03757202625274658,0.03892624005675316,-0.055304743349552155,0.03172885999083519,0.0076812333427369595,-0.05428203567862511,-0.014404967427253723,-0.013075031340122223,0.05244579166173935,-0.054986778646707535,-0.029935630038380623,0.00744334701448679,-0.06812265515327454,0.013790382072329521,0.005684853531420231,0.0593767985701561,0.004322913475334644,-0.0368005745112896,-0.02459152787923813,-0.036604974418878555,-0.0014010907616466284,0.0023241022136062384,0.008185187354683876,0.05384257435798645,0.05671931803226471,-0.06851820647716522,-0.049858786165714264,-0.007848969660699368,-0.042883921414613724,0.044055160135030746,-0.07606159895658493,-0.006866976618766785,0.08243710547685623,0.03594585880637169,0.0815763920545578,-0.055821020156145096,0.02296626754105091,-0.048616837710142136,0.028333790600299835,0.05786219984292984,-0.05100121349096298,-0.06845158338546753,0.030181249603629112,-0.03330261632800102,-0.030499840155243874,0.044233620166778564,-0.011846116743981838,0.07259361445903778,0.008943801745772362,-0.030048752203583717,-0.05975785851478577,0.048492830246686935,-0.006197261158376932,0.06110497936606407,-0.049975618720054626,0.07394470274448395,-0.009872833266854286,0.042368847876787186,-0.05819256603717804,0.07089561223983765,-0.04947621747851372,0.045371443033218384,-0.06837870925664902,-0.011023513041436672,-0.04567117616534233,-0.047719623893499374,-0.08100999891757965,0.02407883293926716,-0.021646464243531227,-0.03436209261417389,-0.01258665882050991,0.012890050187706947,-0.06873975694179535,0.057821013033390045,0.05126866698265076,0.005475978367030621,-0.032049451023340225,-0.06666584312915802,0.018182044848799706,-0.05451114475727081,-0.012869925238192081,0.03171643987298012,0.00479151913896203,0.05098540335893631,-0.0712953731417656,0.03752761334180832,-0.04307961091399193,-0.07825740426778793,0.017515914514660835,-0.07045675069093704,-0.05526299029588699,-0.019371449947357178,-0.049850206822156906,0.0523311011493206,0.03738715127110481,-0.06836529821157455,-0.03383942320942879,-0.072870634496212,0.01247410662472248,0.06605266034603119,-0.03542458266019821,-0.06667186319828033,-0.05902654677629471,-0.06313152611255646,-0.019684825092554092,0.03228362649679184,-0.016162052750587463,-0.06641493737697601,0.05419722944498062,0.07304854691028595,-0.03498612344264984,0.03516877442598343,0.06243958696722984,0.008194495923817158,-0.0063153100199997425,0.059111468493938446,-0.01353460643440485,0.012743240222334862,-0.07013954967260361,-0.03338102251291275,-0.05803167447447777,-0.049308329820632935,0.0594647079706192,-0.02963094413280487,0.07453973591327667,-0.0771736204624176,-0.008777420036494732,-0.028129544109106064,0.043326716870069504,-0.0003599610354285687,0.013445836491882801,0.015610731206834316,-0.018917612731456757,-0.06699737161397934,0.01651431992650032,0.06309545040130615,-0.055271394550800323,-0.024314034730196,-0.0460379458963871,0.061131011694669724,0.006505734287202358,0.045760419219732285,-0.07471152395009995,0.07518702745437622,0.07568404823541641,0.07592808455228806,0.004187657032161951,0.07130751013755798,0.02340596728026867,-0.0025251235347241163,0.05420384556055069,0.061057694256305695,0.027468154206871986,0.05499471351504326,0.010584104806184769,-0.0016351217636838555,-0.03129624202847481,-0.03375444561243057,-0.03641189634799957,-0.02150450088083744,0.0796767920255661,-0.07378905266523361,-0.05156221613287926,0.01710241474211216,0.015588031150400639,0.07770634442567825,-0.03148072212934494,0.03736487776041031,0.03119732439517975,0.03844679519534111,-0.022035935893654823,-0.0441242940723896,0.018091697245836258,-0.014151097275316715,0.04579905420541763,0.07279541343450546,0.028146417811512947,-0.012971657328307629,0.06191244348883629,-0.06090135872364044,0.05790812894701958,-0.007114039734005928,-0.029627446085214615,0.014660472981631756,0.06998509913682938,0.005591833498328924,0.0598258450627327,-0.0016103661619126797,0.00791770126670599,-0.06575686484575272,0.02614501304924488,0.004321727901697159,0.0018941110465675592,0.018399687483906746,-0.0011582978768274188,0.015235590748488903,-0.033239737153053284,0.05291886255145073,0.051306482404470444,0.019745104014873505,0.023036440834403038,0.06816333532333374,0.055243365466594696,0.0522940568625927,-0.0037923739291727543,-0.004200374241918325,-0.04116510599851608,-0.000963329803198576,0.004421839956194162,-0.029608655720949173,0.012824932113289833,-0.028297821059823036,-0.046923790127038956,0.02953936718404293,0.03541082143783569,-0.02981550246477127,0.04957977309823036,-0.07664314657449722,0.03584558516740799,-0.06455488502979279,-0.03375079482793808,0.04118594527244568,0.018344473093748093,-0.051080599427223206,-0.018885934725403786,0.08219316601753235,-0.04455551877617836,-0.055120378732681274,-0.04832006245851517,-0.018508974462747574,-0.040532320737838745,0.03571093827486038,0.04230309650301933,-0.0356297641992569,-0.016241734847426414,-0.02472926862537861,0.02578161470592022,-0.06722727417945862,0.014806758612394333,-0.03151978924870491,-0.024822818115353584,0.06792353093624115,-0.05169796198606491,0.02058744616806507,-0.02125600166618824,0.01973751001060009,0.07062605023384094,0.07558317482471466,0.02968042716383934,0.0022628118749707937,-0.03607301414012909,-0.05255638435482979,-0.07510998100042343,0.010530771687626839,-0.0411805734038353,-0.03652878850698471,-0.03385497257113457,0.006778718437999487,0.05284380912780762,0.030001889914274216,0.02209959365427494,-0.050587043166160583,0.05664709210395813,0.04314383119344711,0.04537153244018555,0.03958592563867569,-0.0030771640595048666,0.05030712112784386,-0.0067056696861982346,0.05652952566742897,0.004822553135454655,0.022511396557092667,0.02657116949558258,-0.027991432696580887,-0.021878056228160858,-0.08253088593482971,-0.006308026146143675,0.02280607633292675,-0.04210832342505455,0.047967974096536636,-0.07901075482368469,-0.037140656262636185,0.0658063068985939,-0.006634492427110672,-0.03821028396487236,-0.04575290158390999,-0.07600011676549911,0.05580224469304085,0.009003818035125732,-0.02999197319149971,0.04199402406811714,-0.02199280820786953,-0.058176714926958084,-0.0008704051142558455,0.01455366238951683,-0.0627528727054596,-0.050945945084095,-0.05167507380247116,-0.06664156913757324,-0.010459553450345993,0.039754971861839294,-0.0006806667079217732,0.06971340626478195,0.08061543107032776,0.017675183713436127,0.005136063788086176,-0.015185821801424026,0.0250229574739933,0.06050148978829384,0.011670377105474472,0.05139419808983803,0.045335087925195694,-0.007516044192016125,0.046902600675821304,0.006667633540928364,0.04362206161022186,-0.08019806444644928,0.04192747920751572,0.06552914530038834,0.030699914321303368,-0.011080882512032986,0.04846544563770294,-0.03658999875187874,-0.07581746578216553,0.01719890907406807,0.03145553544163704,0.03884352743625641,0.03074759989976883,0.012037798762321472,-0.04888056963682175,-0.004012450575828552,0.03481907770037651,-0.03343832120299339,-0.046602293848991394,-0.05120720714330673,-0.008312703110277653,-0.04035382345318794,-0.0074099330231547356,0.02037878707051277,-0.06834648549556732,-0.053189072757959366,-0.006380211561918259,-0.00975765660405159,0.04007260128855705,0.012272046878933907,0.041992295533418655,-0.02092004381120205,0.022149819880723953,-0.059330206364393234,0.07100921869277954,0.051852911710739136,-0.017893558368086815,0.023318743333220482,-0.04393625259399414,-0.047686539590358734,-0.06712838262319565,-0.07574537396430969,-0.031729940325021744,0.011894150637090206,0.0059713032096624374,0.06733578443527222,0.03820706903934479,0.04792475327849388,-0.055377136915922165,-0.03177866339683533,-0.06890168786048889,-0.05046780779957771,0.07231346517801285,0.025840507820248604,0.07328902930021286,-0.018199484795331955,0.016208430752158165,0.05580458417534828,-0.07339920103549957,0.04033113270998001,-0.02405516989529133,0.06954679638147354,0.04774947464466095,0.014604701660573483,-0.025172341614961624,0.009930718690156937,-0.013241485692560673,0.04219686612486839,0.010091468691825867,0.07242359966039658,0.03061705082654953,-0.044830337166786194,0.03786862641572952,0.025355391204357147,-0.05957736819982529,-0.02936076745390892,-0.02559550292789936,0.01046804804354906,-0.040422797203063965,-0.06830857694149017,-0.003924083895981312,-0.04682226851582527,0.026941824704408646,-0.06668208539485931,-0.041060835123062134,0.058844584971666336,0.0662999302148819,-0.0836438462138176,0.0016985232941806316,-0.048973411321640015,0.04636187478899956,-0.028502119705080986,-0.02224959433078766,0.0498189702630043,0.04627574235200882,-0.010071303695440292,0.02160072885453701,0.07947587221860886,-0.07270924746990204,0.06322188675403595,-0.010817581787705421,0.03720303624868393,0.0030735409818589687,-0.008564536459743977,0.011371113359928131,0.04202960804104805,-0.06887739151716232,0.028266871348023415,0.020508553832769394,0.06588711589574814,-0.06981027871370316,0.03510219603776932,-0.04507898911833763,0.0008543243166059256,0.003092627739533782,-0.008834845386445522,0.02533540315926075,-0.012233026325702667,0.04995201900601387,-0.04778747633099556,-0.05372309312224388,0.013797840103507042,0.042503368109464645,0.011057710275053978,0.011602978222072124,0.03892076015472412,0.047613129019737244,0.0759945958852768,0.04401461035013199,0.04377934709191322,0.05467937886714935,-0.034740690141916275,-0.042904287576675415,-0.048473697155714035,-0.0030556779820472,-0.021950462833046913,0.033161189407110214,0.05668073147535324,-0.03453643247485161,-0.05067053064703941,0.02041059173643589,0.0030070864595472813,-0.046551741659641266,-0.06694657355546951,0.028398117050528526,0.06334017962217331,0.039902541786432266,-0.026041021570563316,-0.02671661786735058,0.0743427723646164,0.01818224973976612,0.046476271003484726,0.04431266337633133,-0.017848998308181763,0.015392654575407505,-0.04617299139499664,0.029199449345469475,0.02012670785188675,0.054187364876270294,-0.06421182304620743,-0.0668642446398735,0.035769619047641754,-0.009886943735182285]},{"id":"lost-connection","vector":[0.0061493548564612865,-0.04676853492856026,-0.020173711702227592,0.012005055323243141,-0.02575790137052536,0.0539163313806057,0.03375707194209099,-0.0788109302520752,0.008456071838736534,0.020885026082396507,0.04404829815030098,-0.03189387917518616,-0.01322439406067133,0.04099312052130699,-0.05473858490586281,0.01529032364487648,-0.04614847153425217,-0.057029690593481064,-0.035419296473264694,0.031168360263109207,-0.03031339682638645,0.003222991479560733,0.0423114188015461,-0.038262806832790375,0.04290902614593506,-0.055793121457099915,-0.009049448184669018,-0.02891555242240429,-0.05748362839221954,-0.01316156331449747,0.056528184562921524,-0.07389752566814423,-0.04677687585353851,-0.043057218194007874,0.05165502429008484,0.04313420131802559,-0.04698123037815094,-0.0056685651652514935,0.04051118344068527,-0.03394196182489395,0.00930306687951088,0.023637928068637848,0.06591420620679855,-0.05669453740119934,-0.041269659996032715,-0.02325274981558323,-0.03383638709783554,0.0031973044387996197,0.055329661816358566,0.06324901431798935,-0.019359009340405464,-0.02878948301076889,0.02984115108847618,-0.05725984647870064,-0.005120242014527321,0.014546852558851242,0.048943448811769485,0.05214149132370949,0.024127047508955002,-0.05784407630562782,-0.061514031141996384,-0.016092190518975258,-0.04711578041315079,-0.019743910059332848,-0.04396089166402817,0.03683026134967804,0.08531661331653595,0.02881585620343685,0.0757569819688797,-0.06556878983974457,-0.01376606710255146,-0.07661799341440201,0.035438891500234604,0.05823073163628578,-0.059196971356868744,-0.046757880598306656,0.016519596800208092,-0.03876855596899986,-0.05995878577232361,0.06242791935801506,-0.014895420521497726,0.053458355367183685,0.018625881522893906,-0.0504600927233696,-0.026088392361998558,0.051083244383335114,-0.03658730909228325,0.04606081545352936,0.0033288816921412945,0.05627414584159851,-0.015666889026761055,0.038779366761446,-0.02789517492055893,0.05361775681376457,-0.03593600168824196,0.025537028908729553,-0.06980963796377182,-0.010449663735926151,-0.024956952780485153,-0.02588738687336445,-0.07503494620323181,-0.017900319769978523,-0.002372551942244172,0.007084139157086611,-0.031709153205156326,0.027306674048304558,0.012578816153109074,0.06594900041818619,0.05166606605052948,0.01648716814815998,-0.03938337042927742,-0.03020736388862133,0.019146353006362915,-0.05678454414010048,-0.010986206121742725,0.02760058455169201,-0.018499553203582764,0.06481204181909561,0.0006591203273274004,0.07255519181489944,-0.03759753704071045,-0.06389587372541428,0.06390262395143509,-0.06108633801341057,-0.043044187128543854,-0.028673209249973297,-0.030815133824944496,0.057423509657382965,0.02727559022605419,-0.06673891842365265,-0.050104934722185135,-0.04229894280433655,-0.005130625795572996,0.05096476525068283,-0.026628563180565834,-0.06262330710887909,-0.016898280009627342,-0.06241491064429283,-0.01931089721620083,-0.028135472908616066,0.015605471096932888,-0.05731528624892235,0.043907757848501205,0.06345784664154053,-0.010620493441820145,0.004282661713659763,0.040454328060150146,0.013179452158510685,-0.00921066664159298,0.05318751558661461,0.0008650952368043363,-0.013931890949606895,-0.07108348608016968,-0.04636615887284279,0.06610554456710815,-0.041721247136592865,0.04897523671388626,-0.04255586490035057,0.06991450488567352,-0.040062546730041504,-0.04482455179095268,-0.026742327958345413,0.03223475068807602,0.02874702401459217,0.0026360778138041496,0.013602890074253082,0.005718189757317305,-0.07407574355602264,0.02054370939731598,0.054372791200876236,-0.06779291480779648,-0.03235599026083946,-0.0291031114757061,0.046461306512355804,-0.03245178982615471,0.05954529717564583,-0.07587087899446487,0.07667797058820724,0.08417078107595444,0.07287546247243881,-0.015824362635612488,0.0452394112944603,0.05780930444598198,0.040056563913822174,0.02849971130490303,0.055786989629268646,0.02552085742354393,0.04684187099337578,0.014044864103198051,-0.05658630281686783,-0.030649753287434578,-0.00953602883964777,0.02182714454829693,-0.035544395446777344,0.08364585787057877,-0.07182880491018295,-0.02740224078297615,0.02224675379693508,-0.0024319752119481564,0.07868330180644989,-0.02039746381342411,0.008920127525925636,0.022680968046188354,-0.029262172058224678,-0.016466869041323662,-0.013378670439124107,0.00281267031095922,0.010649758391082287,0.034117940813302994,0.07852764427661896,0.037971366196870804,-0.021997757256031036,0.05365397781133652,0.021835481747984886,0.037275295704603195,0.0545329824090004,-0.043666690587997437,0.0301210917532444,0.07855551689863205,0.06422841548919678,0.04898357763886452,-0.034526802599430084,0.012421229854226112,-0.04293970763683319,0.04553915932774544,-0.010336000472307205,-0.03253147378563881,0.03431309014558792,-0.0012240055948495865,0.018064850941300392,0.014252190478146076,0.04050711169838905,0.04952976852655411,-0.014523838646709919,0.03892989084124565,0.06665697693824768,0.05523349717259407,0.05202125385403633,0.025180168449878693,-0.057149358093738556,-0.0360068716108799,0.03336948901414871,-0.04432263225317001,-0.007704980205744505,0.0252589900046587,-0.03935583308339119,-0.0461137630045414,-0.01836218871176243,0.04200468957424164,-0.044356584548950195,0.05168962478637695,-0.06440731883049011,0.04211864247918129,-0.06639008969068527,0.01714836247265339,0.03836428001523018,-0.007824307307600975,-0.061876535415649414,-0.03041106089949608,0.07804705947637558,-0.027590159326791763,0.00694878539070487,-0.027264054864645004,-0.037309326231479645,0.018559221178293228,0.04844345152378082,-0.05149237811565399,-0.044934846460819244,0.021898696199059486,-0.0339195542037487,0.05531420558691025,-0.06287273019552231,-0.03152405470609665,-0.01861610636115074,-0.04389466717839241,0.07480615377426147,-0.05419638380408287,0.07324438542127609,-0.05047450214624405,-0.03206614404916763,0.062124740332365036,0.07852619886398315,0.03851374611258507,-0.03645997866988182,-0.04768506437540054,-0.07525299489498138,-0.06720978021621704,0.07038263231515884,-0.055444348603487015,-0.04886971041560173,-0.024715328589081764,0.051458220928907394,0.06869577616453171,0.0076708197593688965,-0.006715207826346159,-0.05439447611570358,0.032774996012449265,0.049678925424814224,-0.0018633761210367084,0.038389015942811966,0.013237886130809784,0.05838937684893608,-0.027024656534194946,0.00763177964836359,0.024596944451332092,0.0176552701741457,0.032366394996643066,0.04313209652900696,-0.026564788073301315,-0.07825616002082825,0.007816952653229237,0.05001218989491463,0.0031822582241147757,0.06103409081697464,-0.07952231913805008,-0.06318465620279312,0.03404207155108452,-0.03106892667710781,-0.05118882656097412,-0.0720755010843277,-0.07928752899169922,0.07385251671075821,-0.02715710923075676,0.03492879495024681,0.05936770513653755,0.003848237218335271,-0.04058084636926651,-0.034943968057632446,-0.01032627560198307,-0.05911877006292343,-0.05332551896572113,-0.0444466732442379,-0.07004040479660034,-0.029949618503451347,0.029230695217847824,-0.04115588590502739,0.08012863248586655,0.08056948333978653,0.017012177035212517,0.07305089384317398,-0.02617640420794487,0.04066745564341545,-0.004631947726011276,0.05132084712386131,-0.04457351937890053,0.053608376532793045,-0.014134477823972702,0.046181075274944305,-0.021385589614510536,0.020973410457372665,-0.08401881158351898,0.026215914636850357,0.031216681003570557,0.012634373269975185,-0.0014501760015264153,0.06379932910203934,-0.0160040482878685,-0.0765669122338295,0.06269853562116623,0.0007526766858063638,0.0443301759660244,-0.0012060070876032114,0.0014170034555718303,-0.052824005484580994,0.009770194999873638,0.04050811007618904,-0.015305192209780216,-0.05974261090159416,-0.03701955825090408,-0.036696165800094604,-0.04966995120048523,0.004944304935634136,0.03143986314535141,-0.06026690825819969,-0.07277742773294449,0.022004656493663788,0.005384149961173534,0.03906958922743797,0.002745665144175291,0.022847533226013184,0.010162226855754852,-0.006455375347286463,-0.050847604870796204,0.0634743720293045,0.06899777054786682,-0.001974250888451934,0.06872937083244324,-0.028166837990283966,-0.03921491652727127,-0.07550539821386337,-0.06711685657501221,-0.02254451811313629,-0.03429495915770531,-0.0005867622094228864,0.044014204293489456,0.042800579220056534,0.04565251246094704,-0.03627363219857216,-0.02613210305571556,-0.07333135604858398,-0.05270849168300629,0.07722089439630508,-0.011567504145205021,0.06849545240402222,-0.037857118993997574,0.010404855012893677,0.04725148156285286,-0.07932224869728088,0.06724805384874344,-0.03877772018313408,0.04768136888742447,-0.012026319280266762,-0.022708361968398094,0.011986574158072472,0.01723935827612877,0.054617203772068024,0.0541023425757885,0.007120998576283455,0.06211080029606819,-0.00212212186306715,-0.061012376099824905,0.05515292286872864,0.0027044822927564383,-0.06391169875860214,-0.027466164901852608,-0.01774241030216217,-0.013788687996566296,-0.050097543746232986,-0.062106188386678696,0.004323306027799845,0.018138781189918518,0.03016231581568718,-0.002515774220228195,-0.04944298788905144,0.07033375650644302,0.06840832531452179,-0.08336055278778076,0.018504034727811813,-0.026056643575429916,0.012472700327634811,0.008634367026388645,-0.024242660030722618,0.03373328968882561,0.05471961200237274,-0.0395006500184536,0.03085126355290413,0.07810773700475693,-0.04849422350525856,0.0732349306344986,-0.021851923316717148,0.035994965583086014,0.029787283390760422,0.01699930801987648,-0.02859824150800705,0.016362300142645836,-0.057873088866472244,-0.00537152448669076,0.013626635074615479,0.05086875334382057,-0.03945467248558998,-0.02276306040585041,-0.019739022478461266,0.021206079050898552,-0.007096408866345882,0.02981814555823803,0.025328734889626503,-0.02214040793478489,0.054121263325214386,-0.058500777930021286,-0.042559586465358734,0.0390549935400486,0.07540164887905121,0.023375708609819412,0.01715376041829586,-0.058692917227745056,0.034228913486003876,0.08551420271396637,0.02640998177230358,0.019475335255265236,0.07703964412212372,0.04646019637584686,-0.03461555764079094,-0.0417262502014637,0.00992092676460743,-0.015478115528821945,0.012731331400573254,0.03637422248721123,-0.039400309324264526,-0.04620959237217903,0.0317176952958107,0.009439898654818535,-0.051093656569719315,-0.05884110555052757,0.015708165243268013,0.06838470697402954,0.036650318652391434,0.036168839782476425,-0.03920970484614372,0.07480504363775253,-0.022511372342705727,0.0599868968129158,0.013578689657151699,-0.033330950886011124,0.04817313328385353,-0.06613936275243759,0.03970436751842499,0.03505552560091019,0.022809550166130066,-0.0726340189576149,-0.06847967207431793,0.06336532533168793,0.01851266622543335]},{"id":"make-your-move","vector":[-0.02374081127345562,-0.012059390544891357,0.006531551480293274,0.013250742107629776,-0.015091503039002419,0.029579661786556244,0.01444092858582735,-0.07163829356431961,0.014542024582624435,0.017683343961834908,0.03378730267286301,0.014362584799528122,-0.024388501420617104,-0.020368460565805435,-0.06849107891321182,0.020526858046650887,-0.0742131844162941,-0.05470125004649162,-0.015204932540655136,0.05025371164083481,0.030400937423110008,0.015074348077178001,0.06820167601108551,-0.03270590305328369,0.02206719107925892,-0.01727660745382309,0.01797216758131981,-0.02320459671318531,-0.048242099583148956,-0.04829299822449684,0.051767654716968536,-0.06408539414405823,-0.01640162616968155,-0.04205074906349182,0.03182002529501915,0.004679542966187,-0.04563970863819122,0.03190820291638374,0.03495466709136963,-0.051403287798166275,-0.008961734361946583,-0.031332168728113174,0.06951200217008591,0.014494845643639565,-0.030618466436862946,-0.017409292981028557,-0.04869413375854492,-0.01936948671936989,0.03411754220724106,0.07929697632789612,0.009358127601444721,-0.06685802340507507,0.02992996573448181,-0.03842771425843239,0.02233760990202427,-0.03532959148287773,0.02761409617960453,0.04736355319619179,0.0236333217471838,-0.0835973471403122,-0.05987684056162834,-0.03662196919322014,-0.04329310357570648,-0.0002686075458768755,-0.02361520193517208,0.0378146655857563,0.0949120968580246,0.006212999578565359,0.0865272730588913,-0.04627200961112976,-0.06573733687400818,-0.037621576339006424,-0.022085245698690414,0.003579887328669429,-0.06909412145614624,-0.05451526120305061,0.01029075589030981,-0.06782390922307968,0.006268830969929695,0.04944320768117905,0.022749964147806168,0.027216119691729546,0.00863743107765913,-0.026351487264037132,-0.055189348757267,0.05645596981048584,-0.02508825622498989,0.05257798731327057,-0.06180581450462341,0.06611785292625427,-0.03254404664039612,0.01169922761619091,-0.012617744505405426,0.023630226030945778,-0.03928428143262863,0.0471695214509964,-0.08154639601707458,-0.011128121055662632,-0.014728701673448086,-0.04955574497580528,-0.08289547264575958,-0.004727545659989119,-0.03801014646887779,-0.0026143828872591257,-0.009020434692502022,0.023360969498753548,-0.0018972251564264297,0.06772041320800781,0.0403280183672905,0.015849720686674118,-0.04084073379635811,-0.08089005202054977,0.02420845627784729,-0.04821544513106346,-0.04458174481987953,0.01936807855963707,0.041426919400691986,0.05832128971815109,-0.060000769793987274,0.020595138892531395,-0.005340397823601961,-0.05831998586654663,0.020690741017460823,-0.05862480774521828,-0.026484638452529907,0.00524958735331893,-0.04567994549870491,0.07338955253362656,0.017276696860790253,-0.06187541037797928,-0.04920189827680588,-0.05143827199935913,-0.027797430753707886,0.04822665452957153,-0.03166427090764046,-0.0634147897362709,-0.0050957403145730495,-0.049467846751213074,0.014868440106511116,0.0054483236744999886,0.010299796238541603,-0.060382045805454254,0.06055080518126488,0.07271526753902435,-0.06834722310304642,0.0036366796121001244,0.020804883912205696,0.006895157974213362,-0.009399049915373325,0.048236746340990067,0.007249253336340189,-0.007689903024584055,-0.07645772397518158,-0.0007908614934422076,0.06444001197814941,-0.0304229985922575,0.06145776808261871,0.000941251520998776,0.06635603308677673,-0.07193290442228317,-0.008514165878295898,-0.03292003646492958,0.03589090332388878,-0.0198996402323246,-0.016097640618681908,0.040396712720394135,0.009942859411239624,-0.060987673699855804,-0.01974554732441902,0.06567215174436569,-0.07194336503744125,-0.02331404760479927,-0.00539159681648016,0.04370149224996567,-0.04546339437365532,0.052514590322971344,-0.0486765056848526,0.09012513607740402,0.07906492054462433,0.06832174211740494,-0.010257636196911335,0.08467960357666016,0.0347946360707283,0.004604155197739601,0.040276020765304565,0.06005674973130226,0.01357285026460886,0.0665726438164711,0.04241887107491493,-0.05926186591386795,-0.026812372729182243,-0.012464876286685467,-0.049915753304958344,0.02322174422442913,0.0722627341747284,-0.06520085036754608,-0.04509212449193001,0.0009418897680006921,-0.012483911588788033,0.06362946331501007,-0.017174717038869858,0.018139058724045753,0.03936898335814476,0.020213361829519272,-0.018737994134426117,-0.005773189477622509,0.026360100135207176,-0.03664568066596985,-0.001484716311097145,0.08641783148050308,0.008172836154699326,-0.0169041957706213,0.0709242895245552,-0.02728821337223053,0.06269832700490952,0.03036033734679222,-0.0019838139414787292,0.015005575492978096,0.0706554725766182,-0.01683979481458664,-0.0008210167870856822,-0.012804706580936909,0.00401062797755003,-0.06883955746889114,0.03867515176534653,-0.037647049874067307,-0.02022371254861355,0.020218707621097565,0.013797893188893795,0.032392073422670364,0.01762758195400238,0.033217351883649826,0.06953456997871399,0.02706916257739067,-0.01883060298860073,0.05472167953848839,0.045125365257263184,0.049887679517269135,0.052310675382614136,-0.06813120096921921,-0.06832630187273026,-0.025150571018457413,-0.010633118450641632,0.015167279168963432,0.016848662868142128,-0.045693621039390564,0.001977167557924986,0.03216809034347534,-0.0008472984191030264,-0.030462374910712242,0.034324560314416885,-0.07703506201505661,0.025661883875727654,-0.07543839514255524,0.029155442491173744,0.021234529092907906,-0.039813995361328125,-0.012429619207978249,-0.018874047324061394,0.07221811264753342,-0.013824126683175564,0.02952948957681656,0.013857733458280563,-0.018306944519281387,-0.017468873411417007,0.016281545162200928,0.03405021131038666,-0.019402742385864258,-0.019836442545056343,-0.025762217119336128,0.014807131141424179,-0.03388267755508423,0.01949893683195114,-0.017219875007867813,-0.012603302486240864,0.0665939599275589,-0.045771557837724686,0.05135278031229973,-0.06970653682947159,-0.05526590347290039,0.062348026782274246,0.07214511185884476,0.07287529855966568,0.014504547230899334,-0.053615521639585495,-0.06804008781909943,-0.07061673700809479,0.04357830807566643,-0.049387283623218536,-0.05056609958410263,0.0002910837938543409,-0.030496232211589813,0.0581938698887825,0.02172030881047249,-0.02990289404988289,-0.04413992166519165,0.06918211281299591,0.041354358196258545,0.05795646831393242,0.03632614016532898,-0.03632248193025589,0.047604646533727646,-0.0206522848457098,0.07153529673814774,-0.022135749459266663,0.004206990357488394,0.034362178295850754,0.012986711226403713,-0.025968043133616447,-0.08521999418735504,-0.014692221768200397,0.016841333359479904,-0.041694607585668564,0.05401826277375221,-0.08779724687337875,-0.048694856464862823,0.059662725776433945,-0.013133455999195576,-0.05068507418036461,-0.05718075856566429,-0.0764511302113533,0.06624370068311691,-0.015063331462442875,-0.04639697074890137,0.005046876147389412,-0.010174747556447983,-0.04202217236161232,-0.017367111518979073,0.021660085767507553,-0.04707813262939453,0.02730940468609333,-0.03877249360084534,-0.057540133595466614,0.051792580634355545,0.03649438917636871,0.022663578391075134,0.07084039598703384,0.08071041852235794,-0.002811030251905322,0.0025306828320026398,-0.023488681763410568,0.017718514427542686,0.05413282290101051,0.03185317665338516,0.02652369625866413,0.031182853505015373,-0.03194766491651535,0.05607128515839577,0.004523175302892923,0.05025783181190491,-0.0750998854637146,0.04433697834610939,0.04905210807919502,0.018166275694966316,0.0084260618314147,0.06675950437784195,-0.032421696931123734,-0.0766577199101448,0.008323801681399345,0.028156615793704987,0.020411884412169456,0.04049709439277649,0.007353700697422028,-0.03839779645204544,0.022444449365139008,0.027965223416686058,-0.02342483215034008,-0.046867627650499344,-0.010940834879875183,-0.027575818821787834,-0.05807995796203613,-0.01235500629991293,0.029239151626825333,-0.07126414030790329,-0.058631133288145065,0.04244529828429222,-0.011663139797747135,0.07216162979602814,-0.014375661499798298,0.021203521639108658,-0.020538464188575745,0.057824596762657166,-0.06450502574443817,0.05031007528305054,0.04028969258069992,-0.02087930031120777,0.07255129516124725,-0.03850201889872551,-0.053691234439611435,-0.03000776097178459,-0.06633281707763672,-0.0449507012963295,0.014388897456228733,-0.010676311329007149,0.06872402131557465,0.04944300279021263,0.033188849687576294,-0.05024678632616997,-0.06303609907627106,-0.06018676236271858,-0.051662757992744446,0.06981419771909714,-0.003541609738022089,0.07335412502288818,-0.04000386223196983,-0.03528311103582382,0.06111708655953407,-0.07250998169183731,0.06861142069101334,-0.03778000921010971,0.07303840667009354,-0.01960194669663906,0.012877363711595535,-0.01233277190476656,0.013287174515426159,0.015537852421402931,0.055533379316329956,-0.03338926285505295,0.08489297330379486,0.02944033592939377,-0.05369184911251068,0.024597784504294395,0.04141351580619812,-0.03962057828903198,-0.057390570640563965,-0.04074143245816231,-0.028175512328743935,-0.047186076641082764,-0.058984484523534775,-0.015752239152789116,0.0004611801414284855,0.04526868835091591,0.00034774249070324004,-0.05883270874619484,0.04337317496538162,0.07536721974611282,-0.08344081044197083,0.019166385754942894,-0.02526545338332653,0.04517581686377525,-0.04678686335682869,0.010507489554584026,0.062248777598142624,0.056885577738285065,-0.07055797427892685,0.03697248548269272,0.08493318408727646,-0.06496313959360123,0.07476693391799927,-0.05429266020655632,-0.005245791748166084,-0.03670833259820938,0.02945156954228878,0.021293791010975838,-0.0016693039797246456,-0.07518411427736282,0.01780146360397339,0.036915991455316544,0.05744549632072449,-0.0679277554154396,0.00516565190628171,-0.06410419940948486,-0.008277980610728264,0.038785263895988464,-0.02298746444284916,0.031236909329891205,0.0021560576278716326,0.044975344091653824,-0.056083403527736664,-0.05886176601052284,0.02356558106839657,0.04722090810537338,-0.00155556364916265,0.029208211228251457,0.010872754268348217,0.005220046266913414,0.06483597308397293,0.0665026605129242,0.0048497687093913555,0.06858432292938232,0.03965829685330391,-0.01272630039602518,-0.042876292020082474,-0.008885778486728668,-0.04076293483376503,0.03766779974102974,0.03840753436088562,-0.0647478848695755,-0.07023562490940094,0.022249436005949974,0.03377308323979378,-0.05723963677883148,-0.06663230061531067,0.01371289324015379,0.07222206890583038,-0.019002949818968773,0.04530451074242592,-0.08295426517724991,0.07802563905715942,-0.030749831348657608,0.04158724099397659,0.0632239580154419,-0.021327782422304153,0.005087992176413536,-0.04888290539383888,0.007913871668279171,-0.0022687597665935755,0.01778223365545273,-0.07155468314886093,-0.07951425760984421,0.03630463406443596,0.014107919298112392]},{"id":"makeup","vector":[0.02686048299074173,0.025240369141101837,-0.06173345819115639,0.016951849684119225,-0.03427354246377945,0.030953198671340942,0.012641509994864464,-0.07180076092481613,0.038008227944374084,0.022426815703511238,0.04274377226829529,0.03485528379678726,-0.021578794345259666,-0.00851503573358059,-0.06984037160873413,-0.0014785707462579012,-0.0317496657371521,-0.07552552223205566,-0.03806537389755249,-0.04942062497138977,0.014677313156425953,-0.021006867289543152,0.041852645576000214,-0.02766847237944603,0.03470712900161743,-0.03549710661172867,0.03150397911667824,-0.0688331201672554,-0.05292300507426262,0.01945117488503456,0.06478989869356155,-0.01968199387192726,-0.07482007890939713,-0.03196132555603981,0.03451121225953102,0.062451962381601334,-0.055101677775382996,0.0015444793971255422,0.043779514729976654,-0.05062578618526459,-0.027469268068671227,-0.015125188045203686,0.04146159440279007,-0.07292348891496658,-0.005454379133880138,-0.00011142707080580294,-0.041611310094594955,-0.040345922112464905,0.05825714394450188,0.07905325293540955,0.008242878131568432,-0.01534985937178135,0.029891498386859894,-0.017027944326400757,-0.011650961823761463,-0.027131518349051476,0.00822688639163971,0.05513850972056389,0.03476890176534653,-0.05053703486919403,-0.056276239454746246,0.009657278656959534,-0.05210822448134422,0.04903446510434151,-0.0713733360171318,0.011441254056990147,0.08335912972688675,0.034368567168712616,0.06385520845651627,-0.03371531516313553,-0.04348098859190941,-0.04745360463857651,-0.014996495097875595,0.04286585748195648,-0.036498673260211945,-0.0629265159368515,0.022803569212555885,-0.016975119709968567,-0.023192720487713814,0.06832844763994217,0.004987173248082399,0.08403757959604263,0.009666429832577705,0.014678103849291801,-0.03831198439002037,0.052758123725652695,0.06939724832773209,0.07769878953695297,-0.03705372288823128,0.01297498494386673,0.030679747462272644,0.03119060955941677,-0.0778517872095108,0.061647333204746246,-0.014274603687226772,0.026955081149935722,-0.0701708272099495,-0.014903970994055271,-0.03877248242497444,-0.028023289516568184,-0.08383689820766449,0.029741590842604637,0.031102387234568596,0.02801588550209999,0.022441158071160316,-0.006669045891612768,-0.05470368266105652,0.07852901518344879,0.06623723357915878,0.01181886438280344,-0.008543375879526138,-0.05662799999117851,0.036978576332330704,-0.05107531324028969,-0.029010841622948647,-0.012864167802035809,0.05428124964237213,0.0592850036919117,-0.04118647426366806,0.024517305195331573,-0.00940043106675148,-0.0507064014673233,0.05515996739268303,-0.06396488100290298,-0.045680027455091476,0.005454576574265957,-0.04554089158773422,0.042732782661914825,0.029663873836398125,-0.0560925230383873,-0.03670439124107361,-0.059793293476104736,-0.048202503472566605,0.013769635930657387,-0.02969738282263279,-0.07604517042636871,-0.013436331413686275,-0.06283439695835114,-0.042578354477882385,0.03501516953110695,0.04523478075861931,-0.07464958727359772,0.06656277179718018,0.05645616725087166,-0.004654454067349434,-0.0266603734344244,0.03733249753713608,0.009384026750922203,0.006700137630105019,0.04168105125427246,0.004808090161532164,0.01871720515191555,-0.032114427536726,-0.04763729125261307,-0.07050516456365585,-0.022144740447402,0.050147540867328644,-0.05216740816831589,0.03876198083162308,-0.06356073170900345,0.04084727168083191,-0.011312995105981827,0.025800267234444618,0.019257616251707077,0.005280845332890749,0.04048800840973854,-0.03330473229289055,-0.0395822748541832,0.006024977657943964,0.07310684025287628,-0.04733247309923172,0.033410150557756424,0.019450103864073753,0.03667541965842247,-0.008765934035182,0.028869880363345146,-0.04567165672779083,0.0820007473230362,0.07997479289770126,0.028796130791306496,-0.028284236788749695,0.0942610576748848,0.011321182362735271,0.04522645100951195,0.06973250210285187,0.056384939700365067,-0.01920510269701481,0.038262926042079926,0.006423708517104387,-0.03546030819416046,-0.031656790524721146,0.012592623941600323,-0.0403410904109478,-0.009211518801748753,0.08671946078538895,-0.06454136967658997,-0.062319401651620865,-0.05966620519757271,0.008168688975274563,0.08544901013374329,-0.014312339946627617,0.00813067052513361,0.004830889869481325,-0.006905260030180216,-0.07776975631713867,-0.011197048239409924,0.003909564111381769,0.0020744071807712317,0.049156781286001205,0.07563500851392746,0.032534778118133545,-0.004940148908644915,0.022686516866087914,0.052180949598550797,0.04090617224574089,0.0419587716460228,-0.011331174522638321,-0.021164651960134506,0.056201569736003876,-0.04521329328417778,-0.02336554042994976,0.0602228082716465,-0.005932195577770472,-0.06691405177116394,0.05942191183567047,-0.018963538110256195,-0.0010474976152181625,0.03925700485706329,-0.008099029771983624,0.04349775239825249,0.01022147387266159,0.01449992973357439,0.010272663086652756,0.012265324592590332,-0.016605006530880928,0.06907566636800766,0.03763272985816002,0.0643121525645256,0.015379972755908966,0.021070614457130432,-0.05788728594779968,0.008180147968232632,-0.08153486251831055,-0.029365822672843933,0.008769756183028221,-0.03984113782644272,-0.037219464778900146,0.012462441809475422,0.022847525775432587,-0.0530572384595871,-0.01806384138762951,-0.0801243782043457,-0.00289247022010386,-0.0801260769367218,-0.036097921431064606,-0.019580349326133728,-0.01928318478167057,-0.0509411059319973,-0.022889666259288788,0.06381314247846603,0.05383174866437912,-0.020642414689064026,-0.03927428275346756,-0.03861775994300842,-0.022733910009264946,-0.0075416299514472485,0.031913138926029205,-0.05690515413880348,-0.0438966378569603,-0.03282950818538666,0.056962110102176666,-0.0479591079056263,0.014709065668284893,-0.043109942227602005,-0.04131510108709335,0.059414342045784,-0.03320002928376198,0.02128692716360092,-0.04479155316948891,-0.026143694296479225,0.07581677287817001,0.06400497257709503,0.0421559102833271,0.028034046292304993,-0.04498136043548584,-0.07118575274944305,-0.08495589345693588,0.06922969967126846,-0.03548518195748329,-0.0467035286128521,0.011404220014810562,0.0005769201670773327,0.047260645776987076,0.003357437439262867,-0.023758625611662865,-0.041920773684978485,0.04906275123357773,0.06529802829027176,0.03508836030960083,0.04446394741535187,0.03213163837790489,0.061041221022605896,0.026616066694259644,0.0030500702559947968,0.010108119808137417,0.03131042420864105,-0.01143298763781786,-0.030498342588543892,-0.050215814262628555,-0.0943404957652092,-0.03547309339046478,-0.022999964654445648,-0.00844554789364338,0.06269767880439758,-0.061952900141477585,-0.045209139585494995,0.06776940077543259,-0.05451542139053345,-0.059065885841846466,-0.03916671499609947,-0.05201505497097969,0.03677336871623993,-0.05114194005727768,-0.0004770662053488195,0.05466042086482048,0.027629487216472626,-0.051100488752126694,0.010629954747855663,-0.01555259246379137,-0.07217598706483841,0.005986730568110943,0.008276405744254589,-0.07665261626243591,-0.015293894335627556,0.02584589272737503,0.019512105733156204,0.08660747855901718,0.07012464106082916,0.017040040343999863,0.01872381940484047,-0.015253418125212193,0.03398509696125984,0.04268217459321022,-0.009564594365656376,-0.0012534259585663676,0.02158559486269951,-0.061330556869506836,0.06917448341846466,-0.012070679105818272,0.03978143259882927,-0.08184199780225754,0.08303964883089066,0.018979353830218315,0.023016642779111862,-0.014142455533146858,0.03054146282374859,-0.04715890809893608,-0.07401812821626663,0.01861645095050335,0.013531043194234371,0.04545444995164871,0.02987828478217125,0.01486964337527752,-0.035368598997592926,0.013029037974774837,0.024610763415694237,-0.045230116695165634,-0.07062587141990662,-0.03282546252012253,-0.042422205209732056,-0.061263568699359894,-0.03388341888785362,0.018251163884997368,-0.037104666233062744,-0.08016777038574219,-0.02225169725716114,-0.009590024128556252,0.06317237764596939,-0.0026459924411028624,0.027923261746764183,-0.024102596566081047,0.03732909634709358,-0.054354600608348846,0.0765935480594635,0.06933403760194778,0.0338837131857872,0.07181333750486374,-0.03370717912912369,-0.058722518384456635,-0.062445297837257385,-0.07018981873989105,-0.053618527948856354,-0.029520461335778236,0.03219076246023178,0.017444219440221786,0.040665578097105026,0.0355600006878376,-0.038450583815574646,-0.06257857382297516,-0.09024157375097275,-0.05122692883014679,0.08489055931568146,0.06276506185531616,-0.0036008614115417004,-0.022582868114113808,-0.014329001307487488,0.045244768261909485,-0.08963794261217117,0.07744874805212021,-0.033558037132024765,0.07422154396772385,-0.02244318090379238,0.04181116446852684,-0.007867176085710526,0.020335089415311813,-0.006540739443153143,0.06399627774953842,0.007609050255268812,0.07158207893371582,0.07725604623556137,-0.01855885237455368,0.030638713389635086,0.05134765803813934,-0.053798384964466095,-0.0831722766160965,0.01088602002710104,-0.012069182470440865,-0.04656653106212616,-0.04181896895170212,0.0010895414743572474,0.003871253924444318,0.034898921847343445,0.03224727138876915,-0.04817834496498108,0.03829813748598099,0.0750105232000351,-0.0694093257188797,0.0011583713348954916,0.007778271567076445,0.035027969628572464,-0.04190204665064812,-0.005744948983192444,0.0429043248295784,0.03267240896821022,-0.052580442279577255,0.019749285653233528,0.07609687000513077,-0.08427593111991882,0.07341962307691574,0.02301645092666149,-0.0276498943567276,-0.011068401858210564,-0.02585962414741516,0.005321490112692118,-0.006715158931910992,-0.07197245955467224,-0.0023712399415671825,0.026953106746077538,0.039880335330963135,-0.02962043322622776,-0.0032924297265708447,-0.044308021664619446,-0.023859623819589615,0.027173884212970734,-0.0026205971371382475,0.02988623082637787,-0.025176750496029854,0.036343738436698914,-0.01800476759672165,-0.0644921138882637,0.04084431752562523,0.04692830145359039,-0.01367766410112381,0.020959092304110527,-0.04845988377928734,0.017277855426073074,0.062237974256277084,-0.007252235431224108,0.026403598487377167,0.023349899798631668,-0.04053560271859169,-0.006459265947341919,-0.04810480773448944,0.027844469994306564,0.04808590188622475,0.04292610287666321,0.01902502030134201,-0.068801648914814,-0.062041934579610825,0.00959638599306345,0.0042654238641262054,-0.033507395535707474,-0.07683853805065155,0.03937399387359619,0.054142266511917114,-0.014961878769099712,-0.0036119669675827026,-0.03254532068967819,0.07877670228481293,0.04530690610408783,-0.012381607666611671,0.059407949447631836,-0.02062879502773285,0.026334580034017563,0.011850138194859028,0.024860430508852005,0.008117319084703922,0.024640347808599472,-0.0823778361082077,-0.07624642550945282,0.043470703065395355,0.05460403487086296]},{"id":"mental","vector":[-0.00407845713198185,-0.00029759673634544015,0.01140646357089281,0.026667393743991852,-0.004521177150309086,-0.0009760090033523738,0.022671448066830635,-0.08316780626773834,0.04118233174085617,-0.006215523462742567,0.020397672429680824,-0.013912229798734188,-0.028388669714331627,0.0678783729672432,-0.06358429789543152,-0.04464788734912872,-0.0512835867702961,-0.05875111743807793,-0.0466991551220417,0.03490529581904411,0.004804696422070265,-0.021579883992671967,0.025534648448228836,-0.01924097165465355,0.017250671982765198,0.022828998044133186,-0.032626986503601074,0.006685249507427216,-0.059076935052871704,-0.054391928017139435,0.05542948469519615,-0.060494814068078995,-0.06518620997667313,0.018972329795360565,0.0687846690416336,0.00256363651715219,-0.05240686982870102,0.03893555328249931,0.06164080649614334,-0.0521114245057106,-0.002864222275093198,0.024097882211208344,0.06338666379451752,-0.057708606123924255,-0.023623697459697723,0.022259214892983437,-0.07202959060668945,-0.0022029655519872904,0.031458258628845215,0.06520118564367294,0.05131937190890312,-0.058260057121515274,0.0022847128566354513,-0.06224698945879936,0.010612946934998035,-0.01645963080227375,0.07859364151954651,0.023772185668349266,0.018907595425844193,-0.08110453933477402,-0.07096508145332336,-0.052536480128765106,-0.043142858892679214,0.003463506465777755,-0.0055224476382136345,0.030430501326918602,0.08676876127719879,-0.001561456243507564,0.08567952364683151,-0.04887187480926514,-0.008622607216238976,-0.040553852915763855,0.007218590937554836,0.025756819173693657,-0.05883944779634476,-0.067632757127285,0.0008695593569427729,0.050392523407936096,0.004747077822685242,0.048498060554265976,-0.0008553159423172474,0.02466081827878952,0.011507444083690643,-0.0628831759095192,-0.061303187161684036,0.06340467929840088,-0.040881454944610596,0.04983525350689888,-0.052195098251104355,0.05417174845933914,-0.03495287150144577,-0.01927425153553486,-0.06433691829442978,0.04701049253344536,-0.05467018857598305,0.0591576062142849,-0.05896115303039551,-0.008551160804927349,-0.0417773500084877,-0.059842050075531006,-0.08065161108970642,-0.006772269960492849,-0.019888954237103462,0.026516292244195938,-0.05459287762641907,-0.0009053600952029228,-0.040689434856176376,0.04524679109454155,0.06902642548084259,-0.005992637015879154,-0.0064886524342000484,-0.06576938927173615,-0.002092307433485985,-0.06520756334066391,-0.058445584028959274,0.05031302198767662,-0.004805631469935179,0.03148258477449417,-0.05785961076617241,0.04094085842370987,-0.050617292523384094,-0.08563882857561111,0.04213142395019531,-0.059830185025930405,-0.05995847284793854,-0.005525599699467421,-0.00795556977391243,0.025558417662978172,0.04573478549718857,-0.05733346566557884,-0.06702254712581635,-0.05387361720204353,0.004623827990144491,0.013480392284691334,-0.026264837011694908,-0.0656338483095169,-0.008112849667668343,-0.06275469809770584,0.01347784698009491,-0.02308441326022148,-0.015140890143811703,-0.06303224712610245,0.0500725656747818,0.06597813218832016,0.006661116145551205,0.01800193265080452,0.033030614256858826,0.007511867675930262,0.014763458631932735,0.04152529314160347,-0.04252073913812637,0.004618838429450989,-0.07979001104831696,-0.013415137305855751,-0.014389794319868088,-0.0411854013800621,0.04397428780794144,-0.066145159304142,0.034083303064107895,-0.05141009762883186,-0.018750522285699844,0.04266240447759628,0.05359787493944168,0.02661852538585663,0.00725406501442194,0.03595009446144104,0.01160910353064537,-0.06580150872468948,0.010447490029036999,0.05876053124666214,-0.04131967946887016,-0.00850784219801426,-0.02286170795559883,0.02115902677178383,-0.023120108991861343,0.02440507896244526,-0.06069419905543327,0.061591822654008865,0.08786136656999588,0.08150054514408112,-0.025324072688817978,0.0772283524274826,0.043516505509614944,-0.004396384581923485,0.02220950275659561,0.07651838660240173,-0.02168870158493519,0.04883439838886261,0.07019157707691193,-0.05188041180372238,-0.005572157446295023,-0.03197484090924263,-0.034457795321941376,0.0010833792621269822,0.08794447779655457,-0.05653677508234978,-0.01702261157333851,0.022090069949626923,-0.015378792770206928,0.08782705664634705,0.01643775776028633,0.014202277176082134,0.04009654372930527,0.0006945651257410645,-0.0312625877559185,-0.04996608942747116,0.060205504298210144,-0.02215651609003544,0.015828458592295647,0.07870526611804962,0.031612593680620193,0.000179158931132406,0.053506333380937576,-0.024602431803941727,0.05573820695281029,-0.028707917779684067,-0.030859844759106636,-0.003915032371878624,0.05121208727359772,0.018622945994138718,0.04635273292660713,-0.020312760025262833,-0.0030510195065289736,-0.039173927158117294,0.039566487073898315,-0.011990083381533623,-0.05989113077521324,-0.0034933160059154034,0.02047824300825596,0.008330879732966423,-0.0010455525480210781,0.03734518587589264,0.055708397179841995,0.02124827541410923,0.053396809846162796,0.06189175322651863,0.05629026144742966,0.047686606645584106,0.031392380595207214,0.010321819223463535,-0.04185786843299866,0.010361711494624615,0.013303698040544987,-0.014954610727727413,-0.009041964076459408,0.007393051404505968,0.03446470573544502,-0.010447711683809757,0.014497841708362103,-0.015967439860105515,0.06373212486505508,-0.06391638517379761,0.02551056630909443,-0.06865279376506805,0.01852099969983101,-0.003995688632130623,0.005803835578262806,-0.06470304727554321,0.0009802252752706409,0.06062950938940048,-0.06425032019615173,-0.02653847262263298,0.03565486893057823,-0.040827006101608276,-0.03385690599679947,0.04214612767100334,0.018849428743124008,-0.013273700140416622,-0.011609752662479877,-0.06470363587141037,0.06153375282883644,-0.06754327565431595,0.006218643393367529,-0.009442953392863274,-0.0034463282208889723,0.07657575607299805,-0.05117429420351982,0.05750184878706932,-0.007016643416136503,0.040217168629169464,0.06826089322566986,0.06847362965345383,0.026889992877840996,-0.017825346440076828,-0.04710687696933746,-0.059796661138534546,-0.08526309579610825,0.04729366675019264,-0.03632373735308647,-0.025516381487250328,-0.03980057314038277,-0.018361451104283333,0.06592773646116257,0.009096894413232803,-0.024670623242855072,-0.058311741799116135,0.06743098795413971,0.005472536664456129,0.03456607833504677,0.03960764780640602,0.006047253031283617,0.048157766461372375,-0.03438863530755043,0.031340137124061584,0.03361305966973305,0.022209225222468376,-0.00034395084367133677,0.019721776247024536,0.007829884067177773,-0.08424381911754608,-0.01891300268471241,0.03207201883196831,0.007535962853580713,0.06696228682994843,-0.0679948702454567,-0.045564886182546616,0.05817302316427231,-0.031140459701418877,-0.02775551751255989,-0.051130764186382294,-0.0716499388217926,0.06475607305765152,-0.041243765503168106,-0.0025916872546076775,0.04650559648871422,0.0035630441270768642,-0.019494248554110527,-0.030594099313020706,0.0220545195043087,-0.04823203757405281,-0.041164934635162354,-0.059981267899274826,-0.07407838106155396,-0.053258124738931656,0.05383617803454399,-0.0410030372440815,0.07483384013175964,0.08864351361989975,0.0010434433352202177,0.06084300950169563,0.000589072413276881,0.024315055459737778,0.05953322350978851,0.015097390860319138,0.00012389519542921335,0.026482481509447098,-0.02788546308875084,0.05605700612068176,0.013972297310829163,0.0653020441532135,-0.08487511426210403,0.03906626999378204,0.030105920508503914,-0.016582481563091278,-0.012243098579347134,0.05804443359375,-0.01793474517762661,-0.06205686181783676,0.030265172943472862,0.01027316227555275,0.05247797444462776,0.04690852761268616,0.01114853098988533,-0.026843836531043053,-0.008460293523967266,0.004629072733223438,-0.03998234122991562,-0.043477270752191544,-0.036619845777750015,0.012801285833120346,-0.059198759496212006,0.029886867851018906,0.03952064737677574,-0.06742432713508606,-0.07062283158302307,-0.011132488958537579,0.0018823524005711079,0.030030574649572372,0.0328487791121006,0.018214408308267593,0.04150295630097389,0.003832718590274453,-0.07857073098421097,0.06757991015911102,0.06085387244820595,-0.007968151941895485,0.06407500058412552,-0.06195627897977829,-0.05162936821579933,-0.020467931404709816,-0.04059113189578056,-0.01961939036846161,-0.03925379738211632,0.020387493073940277,0.05737604573369026,0.03429481387138367,0.06166612729430199,-0.06602630019187927,-0.05506683886051178,-0.0705234557390213,-0.037186235189437866,0.08139263838529587,0.002630404895171523,0.04230951517820358,-0.005846914369612932,-0.005032193847000599,0.02627258561551571,-0.06823279708623886,0.06597554683685303,-0.04677779600024223,0.07017604261636734,0.01670626923441887,0.003322313539683819,-0.01413747388869524,0.01708211749792099,0.03628172352910042,0.055024974048137665,-0.015446276403963566,0.031112149357795715,0.04709477350115776,-0.06964632123708725,0.0350736640393734,0.022939691320061684,-0.04957275092601776,-0.06089088320732117,-0.06810162961483002,-0.022785937413573265,-0.06942636519670486,-0.033334821462631226,0.030064981430768967,-0.012891842052340508,0.008713120594620705,-0.008573335595428944,-0.041994210332632065,0.06645581871271133,0.06751926243305206,-0.08032204955816269,0.002709629014134407,0.0025372738018631935,0.01289775874465704,-0.021930111572146416,-0.04854856804013252,0.029817037284374237,0.05289695784449577,-0.062413331121206284,0.0747372955083847,0.08798146992921829,-0.08451929688453674,0.05930553004145622,-0.018580501899123192,0.057551220059394836,-0.046241678297519684,0.0005736253806389868,0.000010591701538942289,0.010596047155559063,-0.06565764546394348,0.022887568920850754,0.05307364836335182,0.05894306302070618,-0.06828422099351883,0.0051552592776715755,-0.014718472957611084,-0.03331395983695984,0.026034792885184288,-0.007459944114089012,0.04272449016571045,-0.056430015712976456,0.05257846415042877,-0.059122029691934586,-0.03223397582769394,0.010829967446625233,0.07376005500555038,0.029684705659747124,-0.019871778786182404,0.04694504663348198,0.035803623497486115,0.08360609412193298,-0.0020009619183838367,0.024493975564837456,0.07123176008462906,-0.02628018893301487,-0.06334754079580307,-0.04700075462460518,-0.015577273443341255,-0.03991527855396271,0.01858351193368435,0.021927110850811005,-0.04618126526474953,-0.04195350781083107,0.02665780298411846,0.0025706542655825615,-0.019438685849308968,-0.06381375342607498,0.0007728355121798813,0.07511992007493973,0.007864108309149742,0.052061066031455994,-0.06300274282693863,0.07428045570850372,-0.02088804543018341,0.02451772429049015,0.049986209720373154,-0.025989985093474388,0.009391083382070065,-0.03453962504863739,-0.016976358368992805,0.062055982649326324,0.018674233928322792,-0.07666859775781631,-0.0694369301199913,0.020415136590600014,0.027397645637392998]},{"id":"molecules-and-men","vector":[-0.017335601150989532,-0.04772709310054779,-0.033496979624032974,-0.015926523134112358,-0.005461800377815962,0.0019102802034467459,0.023773541674017906,-0.08013726770877838,0.03598838299512863,0.026382779702544212,0.0456545352935791,0.020093141123652458,-0.04673515260219574,0.0493040457367897,-0.047433268278837204,0.03206861391663551,-0.0750926285982132,-0.07028960436582565,-0.06789328157901764,0.009633824229240417,-0.017213424667716026,0.019198276102542877,0.0424189455807209,-0.03961954638361931,0.04349474981427193,0.00982887763530016,-0.02150094322860241,0.021547511219978333,-0.0592159703373909,-0.054963819682598114,0.06104973703622818,-0.05858732387423515,-0.02073276787996292,-0.03676765412092209,0.032677359879016876,0.06040745601058006,-0.049316346645355225,0.0343923382461071,0.05362837761640549,-0.025669265538454056,-0.02183673344552517,0.024238159880042076,0.06649557501077652,-0.07781631499528885,-0.05474011227488518,0.048414196819067,-0.03599792346358299,0.02290264703333378,0.03643926978111267,0.05859168991446495,-0.04108528420329094,-0.011168891564011574,0.012346675619482994,-0.05230894684791565,0.042513445019721985,0.028936229646205902,0.04836108908057213,0.03628895804286003,0.053973712027072906,-0.065567746758461,-0.055447693914175034,-0.047861918807029724,-0.05560160055756569,0.02554752677679062,-0.06333141773939133,0.040423061698675156,0.08276990801095963,0.03113372251391411,0.07782438397407532,-0.07705114781856537,0.0324627049267292,-0.06665316224098206,0.037324510514736176,0.06180236488580704,-0.06993483006954193,-0.07117228209972382,0.05271437391638756,-0.015786433592438698,-0.028414996340870857,0.025621453300118446,-0.005661385599523783,0.029678385704755783,0.04623502865433693,-0.05930643528699875,-0.018377166241407394,0.049709662795066833,-0.013881209306418896,0.030814355239272118,-0.043320536613464355,0.06092942878603935,0.023285403847694397,0.03307851031422615,-0.010281509719789028,0.06667032837867737,-0.03001546300947666,0.04482299089431763,-0.04027935490012169,-0.0011991336941719055,-0.010493135079741478,-0.019460519775748253,-0.07965199649333954,-0.017353184521198273,-0.034586139023303986,-0.014611585065722466,-0.034747861325740814,0.037382420152425766,-0.03873113915324211,0.07919017225503922,0.0766008272767067,-0.01630096323788166,-0.012269949540495872,-0.05023614689707756,0.03183108940720558,-0.06732849031686783,-0.01841769553720951,0.033496808260679245,-0.005046061705797911,0.062081899493932724,-0.061200980097055435,0.040027983486652374,-0.043115973472595215,-0.07949420064687729,0.04655859246850014,-0.06943724304437637,-0.049875013530254364,-0.044725269079208374,-0.03215019404888153,0.06668581068515778,0.02111164480447769,-0.05138249695301056,-0.02927349880337715,-0.05445011332631111,0.00936055090278387,0.05137449502944946,-0.016970766708254814,-0.0635739266872406,-0.04336173087358475,-0.05944342911243439,-0.011449004523456097,-0.048974793404340744,0.01732456311583519,-0.05228840559720993,0.04094536975026131,0.07307901233434677,-0.015600754879415035,0.016467981040477753,0.01623818837106228,0.011344141326844692,0.022289235144853592,0.04615117609500885,-0.0404091402888298,-0.023141546174883842,-0.0723089799284935,-0.03331747651100159,-0.03532660752534866,-0.05089947581291199,0.06816664338111877,-0.06695939600467682,0.07806354761123657,-0.0700334832072258,-0.021028654649853706,0.010481717064976692,0.026896150782704353,0.018167804926633835,0.0044653755612671375,0.010468535125255585,0.019071323797106743,-0.05815603584051132,0.01976238377392292,0.06241082400083542,-0.049530819058418274,-0.02762252651154995,-0.05757077783346176,0.021109241992235184,-0.03614453598856926,0.05845404788851738,-0.07882581651210785,0.0791383758187294,0.07819996029138565,0.08152168989181519,-0.0010747804772108793,0.05319172143936157,0.039954040199518204,0.003369400277733803,0.03229038417339325,0.038592513650655746,0.03229252249002457,0.04456789046525955,0.02846165932714939,0.0018429468618705869,-0.04505058005452156,-0.021349191665649414,0.012038386426866055,-0.02839110605418682,0.08100637048482895,-0.07456434518098831,-0.0019858614541590214,0.013086440041661263,0.01835828647017479,0.07806558907032013,-0.02009258233010769,0.013357114046812057,0.02020632103085518,0.011735805310308933,-0.020854515954852104,-0.06122004985809326,0.029193231835961342,-0.00910832080990076,0.031852297484874725,0.0566590279340744,0.01903863437473774,-0.00934509839862585,0.06601107865571976,-0.0445597805082798,0.04701763018965721,0.034584708511829376,-0.012846539728343487,0.055284298956394196,0.0595206692814827,-0.012589388526976109,0.03442961350083351,-0.0015655107563361526,0.007240037899464369,-0.06703358888626099,0.028976742178201675,-0.028408268466591835,-0.015921859070658684,-0.003613606560975313,-0.03301394730806351,-0.02057529240846634,-0.009146551601588726,0.029681354761123657,0.041861794888973236,0.007646854035556316,0.017538707703351974,0.07093056291341782,0.056738778948783875,0.04153088852763176,0.007721639238297939,-0.060804303735494614,-0.06178932264447212,0.055327918380498886,0.012135758064687252,-0.0004550926969386637,0.03142702579498291,0.0027510446961969137,-0.027549436315894127,-0.010992506518959999,0.04606221988797188,-0.02320360206067562,0.06921778619289398,-0.07560592889785767,0.0525808148086071,-0.07249446958303452,0.0018432881915941834,0.0628935694694519,0.011422021314501762,-0.06815854460000992,0.00780170364305377,0.07543957978487015,0.028764842078089714,0.00770045118406415,-0.05866078659892082,-0.006347151938825846,-0.02409101091325283,0.058514874428510666,-0.00827079452574253,-0.039753127843141556,0.004673026967793703,-0.013588071800768375,0.06850181519985199,-0.06506304442882538,-0.015377048403024673,-0.03840019926428795,-0.013320008292794228,0.0754527747631073,-0.054067641496658325,0.022489219903945923,-0.04037359729409218,-0.003109964309260249,0.07172220200300217,0.07853793352842331,0.02873431146144867,0.01704471930861473,-0.016217702999711037,-0.04272029548883438,-0.05159725993871689,0.03571360930800438,-0.04748304933309555,-0.04869129881262779,-0.040537942200899124,-0.008441544137895107,0.07551737129688263,0.029365550726652145,-0.02286718226969242,-0.06991990655660629,0.0649404376745224,0.008300838060677052,0.006718214135617018,0.050237640738487244,0.040972426533699036,0.06242995709180832,-0.053718723356723785,0.04509792476892471,0.013466184958815575,0.007843159139156342,0.02797802723944187,0.006906118243932724,-0.011231289245188236,-0.08251083642244339,-0.03861965611577034,0.05435355380177498,0.034731507301330566,0.04944012686610222,-0.0782708004117012,-0.07151761651039124,0.016365565359592438,0.026908334344625473,-0.03123013861477375,-0.06771314144134521,-0.07810412347316742,0.039982229471206665,0.007116477470844984,-0.021948648616671562,0.03364413231611252,0.04150610417127609,-0.018337948247790337,-0.025443771854043007,-0.027351386845111847,-0.07622281461954117,-0.04907747730612755,-0.05910748243331909,-0.04717978835105896,-0.0030465186573565006,0.037027109414339066,-0.0028823362663388252,0.07956145703792572,0.08224084973335266,0.0236061904579401,0.014599437825381756,-0.015061525627970695,0.040121566504240036,0.008345737121999264,0.0013561167288571596,0.005845020059496164,0.03474894538521767,0.00010617981752147898,0.0394737645983696,-0.02307523973286152,0.052841465920209885,-0.0832468718290329,0.038281362503767014,0.03895805403590202,-0.023920265957713127,-0.007851976901292801,0.0755639523267746,-0.03979773819446564,-0.07320792227983475,0.041425399482250214,-0.0008350280113518238,0.05236374959349632,-0.013428187929093838,0.012157809920608997,-0.056068237870931625,-0.022485405206680298,0.03894885256886482,-0.010457219555974007,-0.032483331859111786,-0.03543918579816818,-0.04537992551922798,-0.044666655361652374,-0.02058519795536995,0.04900159314274788,-0.03631714731454849,-0.07667716592550278,-0.008820788003504276,0.006720544304698706,0.0207980889827013,0.028175709769129753,0.012876384891569614,0.005760174710303545,-0.03375082090497017,-0.05581049621105194,0.06511202454566956,0.03610049933195114,-0.024130959063768387,0.021948469802737236,-0.034474536776542664,-0.030281508341431618,-0.0738816112279892,-0.03852131590247154,0.012075118720531464,-0.0010030162520706654,0.042602941393852234,0.033511146903038025,0.04485861584544182,0.06688066571950912,-0.045277029275894165,-0.032151177525520325,-0.06778322160243988,-0.06160909682512283,0.062119707465171814,-0.0132140489295125,0.03443225845694542,-0.027246374636888504,-0.00012549986422527581,0.059001315385103226,-0.0701693519949913,0.05718844011425972,-0.025059230625629425,0.043158143758773804,0.03332431986927986,-0.0029572900384664536,0.0020238985307514668,-0.0023327728267759085,0.03682314604520798,0.02384622022509575,-0.012303842231631279,0.06176213175058365,0.054961271584033966,-0.059638284146785736,0.059243857860565186,0.028720147907733917,-0.05705615505576134,0.001084859250113368,0.004790229257196188,-0.02766086906194687,-0.05697854235768318,-0.06996849179267883,-0.016259104013442993,0.018212342634797096,0.01708451844751835,-0.008828201331198215,-0.006031241733580828,0.06019246578216553,0.0707712396979332,-0.08048155158758163,-0.02255542203783989,-0.044266339391469955,0.00204013311304152,-0.012588690035045147,-0.0448121577501297,0.04533359408378601,0.050903160125017166,-0.06248216703534126,0.046422217041254044,0.07963776588439941,-0.07537182420492172,0.07537233829498291,-0.043532878160476685,0.03220992535352707,0.011211623437702656,-0.02162468060851097,-0.05751006305217743,0.04615025967359543,-0.07102813571691513,0.003285807790234685,0.017904728651046753,0.061114393174648285,-0.055089980363845825,-0.02225733920931816,-0.04813157021999359,-0.016873927786946297,-0.02562134899199009,-0.03236119821667671,0.031036777421832085,-0.05665748938918114,0.055197007954120636,-0.07321982085704803,-0.042473215609788895,0.021159041672945023,0.0662461444735527,0.0222790390253067,0.04094087705016136,0.005526439752429724,0.0012549040839076042,0.0749489814043045,-0.021906103938817978,0.03801649436354637,0.06597402691841125,-0.02524598129093647,-0.029443982988595963,-0.0550483837723732,-0.009550318121910095,0.015729771926999092,0.010055546648800373,0.02390371821820736,-0.024806233122944832,-0.051352374255657196,0.04450030252337456,-0.03569986671209335,-0.05607246235013008,-0.05256250500679016,0.01568441651761532,0.06849296391010284,0.041562698781490326,0.02046646550297737,-0.041184816509485245,0.07531480491161346,0.03805151954293251,0.027879418805241585,0.03272343426942825,-0.05563271790742874,0.013882611878216267,-0.05614185333251953,0.03887833654880524,0.05383443832397461,0.042948175221681595,-0.07644621282815933,-0.06029976159334183,0.05396423861384392,0.05015966668725014]},{"id":"monday-morning-shift","vector":[0.013623276725411415,-0.026311084628105164,-0.053430717438459396,0.007123101968318224,-0.021255768835544586,-0.011409438215196133,-0.044254120439291,-0.08420164883136749,0.04669783264398575,-0.04346194118261337,0.020461618900299072,0.004249304533004761,0.002689848653972149,0.04092777520418167,-0.06831560283899307,0.026709353551268578,-0.036871910095214844,-0.08151691406965256,-0.017656251788139343,0.040453244000673294,-0.013565043918788433,-0.04350438341498375,0.021254276856780052,-0.04010576754808426,0.0394577793776989,0.01541056577116251,0.030529547482728958,-0.012726419605314732,-0.05509026348590851,-0.0444573238492012,0.06074439734220505,-0.06198165938258171,-0.07464362680912018,-0.048185791820287704,0.05566826090216637,0.02787533588707447,-0.044363945722579956,0.03080814518034458,0.05566127970814705,-0.07149156183004379,-0.05039362236857414,0.007505285553634167,0.07344762980937958,-0.05602743476629257,-0.03459082543849945,-0.02076023630797863,-0.06008363515138626,-0.028491588309407234,0.06581541150808334,0.05451938509941101,0.04348686710000038,-0.06697594374418259,-0.010786634869873524,-0.024237731471657753,0.017318017780780792,-0.0628761574625969,0.034051358699798584,0.019673500210046768,0.021839674562215805,-0.05190710350871086,-0.07696911692619324,-0.021143097430467606,-0.04507230594754219,0.03870983421802521,-0.04842314496636391,0.020655501633882523,0.09362275153398514,0.033454883843660355,0.07809415459632874,-0.06203743815422058,-0.030168572440743446,-0.054909687489271164,-0.03790890797972679,-0.024752682074904442,-0.046787478029727936,-0.057568032294511795,0.013304653577506542,-0.057403258979320526,0.021538646891713142,0.05743326246738434,0.016013359650969505,-0.005076283123344183,0.027638675644993782,0.02104761078953743,-0.04418681189417839,0.04236970841884613,0.03481425344944,0.046503033488988876,0.0009744695853441954,0.014226170256733894,0.0168758574873209,0.017999479547142982,-0.03390612453222275,0.05708184093236923,-0.04394841939210892,0.022611774504184723,-0.06871993839740753,-0.05359702557325363,-0.027680769562721252,-0.038766130805015564,-0.07966957241296768,0.03406061232089996,0.008822315372526646,0.04227711260318756,0.004392427392303944,-0.020717419683933258,-0.06986682116985321,0.060692861676216125,0.01741194538772106,0.07047923654317856,-0.027258269488811493,-0.044884562492370605,0.00947450753301382,-0.04345767945051193,-0.015295603312551975,0.055141858756542206,-0.0018037956906482577,0.05823744088411331,-0.0404324010014534,0.01784987561404705,-0.03302512317895889,-0.07128748297691345,0.038752250373363495,-0.0742960050702095,-0.0067460425198078156,-0.00019525460083968937,0.04314958304166794,0.08172035217285156,0.052233967930078506,-0.031910333782434464,-0.05744089558720589,-0.038254063576459885,-0.000312740943627432,-0.023306425660848618,-0.03697100654244423,-0.08188199251890182,-0.007028610445559025,-0.019808873534202576,0.006119897589087486,0.006096396129578352,0.03745473548769951,-0.010544691234827042,0.05977789685130119,0.07741457223892212,-0.0013483257498592138,0.02399578131735325,0.026333795860409737,0.03279291093349457,0.03033371828496456,0.05644982308149338,0.004436771851032972,0.02072221226990223,-0.04331783205270767,0.01975519396364689,-0.021317193284630775,0.017358755692839622,0.023360740393400192,-0.06530781835317612,0.04540588706731796,-0.059041235595941544,-0.0038553469348698854,-0.017308533191680908,0.05068354308605194,0.005289963446557522,0.011235786601901054,0.024139875546097755,0.05264821648597717,-0.05132630094885826,-0.012400621548295021,0.05843503400683403,-0.05294640734791756,-0.023639190942049026,0.0050246817991137505,0.03639426827430725,-0.04752521589398384,0.039665061980485916,-0.057074371725320816,0.08536417782306671,0.07585155218839645,0.045675717294216156,-0.0573413148522377,0.045068107545375824,0.0349973700940609,-0.013701483607292175,0.035373132675886154,0.04176214709877968,0.03264424204826355,0.051683858036994934,0.0407264418900013,-0.06289661675691605,-0.036603379994630814,0.011853205040097237,-0.04412159323692322,0.02393108420073986,0.0622258298099041,-0.048988766968250275,-0.02422158047556877,0.03899966552853584,0.013270133174955845,0.0904233455657959,-0.03489333391189575,0.0018198948819190264,0.035369906574487686,-0.04256686940789223,-0.08055922389030457,-0.03993125259876251,0.059479232877492905,-0.0783718079328537,0.03485153615474701,0.06561162322759628,0.03588908910751343,-0.016963236033916473,0.054894477128982544,0.013963617384433746,0.06697788834571838,0.022647425532341003,-0.03410955145955086,0.008758594281971455,0.07158743590116501,-0.01854075863957405,0.009007103741168976,-0.03962137550115585,0.009829557500779629,-0.016575252637267113,0.047308359295129776,-0.01512906514108181,-0.010681883431971073,0.06331431120634079,0.009555794298648834,0.030213717371225357,0.018328990787267685,0.00557404849678278,0.01042675320059061,0.009200061671435833,0.0012456834083423018,0.06901805102825165,0.04619629681110382,0.06874742358922958,-0.013917259871959686,-0.06556864082813263,-0.0588691346347332,0.020233815535902977,0.0031970178242772818,-0.037629637867212296,-0.020074307918548584,-0.040082670748233795,0.03710491582751274,0.027943087741732597,0.03344705328345299,-0.05791507288813591,0.05977651849389076,-0.07919219881296158,0.06442443281412125,-0.07434474676847458,0.015185913071036339,0.0018610561965033412,-0.046876728534698486,-0.04297139123082161,-0.01793690212070942,0.07055942714214325,-0.025973517447710037,-0.00986623764038086,-0.021681837737560272,-0.025949599221348763,-0.037250716239213943,-0.0016993654426187277,0.003256375202909112,-0.02844700589776039,-0.04761282727122307,-0.0149898212403059,0.0668128952383995,-0.0637546181678772,-0.0004084440879523754,-0.02335985004901886,0.02891712449491024,0.08424898982048035,-0.03602522611618042,0.05286215618252754,-0.04917245730757713,-0.016793249174952507,0.09053973853588104,0.06906769424676895,0.03568944334983826,0.058902107179164886,-0.021759560331702232,-0.05189156159758568,-0.054352037608623505,0.04257085546851158,-0.03849160671234131,-0.056387752294540405,0.023081012070178986,-0.05358140170574188,0.009899325668811798,0.003768111113458872,-0.05136530101299286,-0.06057637929916382,0.05870660021901131,0.004215655382722616,0.02835169807076454,0.05420447513461113,0.016712533310055733,0.03315512090921402,0.012989884242415428,0.040546972304582596,0.050608716905117035,0.028258314356207848,0.0019019576720893383,0.03323030844330788,-0.06611861288547516,-0.09006407111883163,0.0003873877285514027,0.0034265031572431326,0.04741835594177246,0.0036010921467095613,-0.06836570054292679,-0.04593220725655556,0.0403740331530571,-0.035977043211460114,-0.04815090820193291,-0.04008596017956734,-0.06562276929616928,0.07966922968626022,-0.05391406640410423,-0.005789389833807945,0.07002530246973038,0.036366306245326996,-0.054208509624004364,-0.04334498569369316,-0.006720405537635088,-0.048901062458753586,-0.003928324207663536,-0.01551761943846941,-0.05981706082820892,-0.018762944266200066,0.0390087328851223,-0.014346026815474033,0.08493263274431229,0.06616527587175369,-0.00867733545601368,0.00995076447725296,-0.009726157411932945,0.0027746837586164474,0.06914030015468597,-0.005580592900514603,-0.013895301148295403,0.02850443124771118,-0.06890922784805298,0.06437435001134872,-0.009747129864990711,0.04825053736567497,-0.08189249038696289,0.0711703896522522,-0.012200710363686085,-0.016864081844687462,0.013896146789193153,0.05501983314752579,-0.029414737597107887,-0.07059238106012344,0.03283608704805374,-0.015625733882188797,0.043179918080568314,-0.011117246933281422,0.05120544880628586,-0.01828385517001152,0.020216576755046844,0.04715999960899353,-0.044883422553539276,-0.06429502367973328,-0.05622134730219841,-0.024763042107224464,-0.05576959252357483,0.0024478640407323837,0.04982231184840202,-0.04636211320757866,-0.08280013501644135,0.06010574474930763,-0.058680854737758636,0.051784347742795944,-0.0076836394146084785,0.03160756826400757,-0.005429423879832029,0.03175540268421173,-0.04451659694314003,0.05915409326553345,-0.02097197063267231,0.02178749069571495,0.06294693797826767,-0.05288082733750343,-0.03298391029238701,-0.027220895513892174,-0.07651672512292862,-0.03856659680604935,-0.055506352335214615,0.028025146573781967,0.06291931122541428,0.04469757154583931,0.03152851387858391,-0.04311246797442436,-0.006540956441313028,-0.07903388887643814,-0.04415615648031235,0.06596273928880692,0.03306419774889946,0.07466650009155273,-0.005759530700743198,-0.028252802789211273,0.04030676931142807,-0.07690385729074478,0.07361968606710434,-0.05123680830001831,0.06736306846141815,-0.004020731896162033,0.05879180133342743,-0.0369688980281353,0.010566482320427895,0.05986417829990387,0.021214351058006287,-0.02643459476530552,0.041571762412786484,0.037023965269327164,-0.06181703135371208,0.08455505222082138,-0.008475074544548988,-0.062003426253795624,-0.06403730809688568,-0.05526003986597061,-0.009098650887608528,-0.07217926532030106,-0.03648202493786812,0.04608903452754021,0.01603461429476738,0.019217973574995995,-0.01972716860473156,-0.05786578729748726,0.02066681906580925,0.08221551030874252,-0.05933500826358795,0.025343865156173706,-0.03789420798420906,0.00415140762925148,-0.014801674522459507,-0.06333640962839127,-0.007734410930424929,0.03341009467840195,-0.004025555215775967,0.033580344170331955,0.08572462201118469,-0.03527140989899635,0.05579812452197075,0.030167941004037857,-0.004695742856711149,-0.027455464005470276,0.028283776715397835,0.029130375012755394,0.030432315543293953,-0.07302912324666977,-0.03332410752773285,0.01920354552567005,0.06372510641813278,-0.058550555258989334,0.022333839908242226,-0.03584368899464607,-0.021399518474936485,0.022067580372095108,-0.009178487583994865,0.015961119905114174,0.006655022501945496,0.0233820341527462,-0.0738670825958252,-0.04107275977730751,0.0434626005589962,-0.005041853524744511,-0.005117055028676987,-0.011661726981401443,-0.02875651605427265,0.027768883854150772,0.05878955125808716,-0.039029963314533234,0.04559570923447609,0.06382349878549576,0.03190692886710167,-0.016213828697800636,-0.07027493417263031,0.0312274731695652,-0.01212231069803238,0.021102476865053177,-0.005310016684234142,-0.05346350371837616,-0.06067914515733719,-0.010366104543209076,-0.014785118401050568,-0.07657472044229507,-0.07923247665166855,-0.012833980843424797,0.06975013017654419,0.004620048217475414,0.04933289811015129,-0.050055522471666336,0.07133977860212326,0.02163686975836754,-0.012380842119455338,0.026846004649996758,-0.02312859334051609,0.012012047693133354,-0.06037232652306557,0.0021058209240436554,0.004156213719397783,0.054837558418512344,-0.09042345732450485,-0.06680946052074432,0.00334614678286016,0.015167595818638802]},{"id":"morning-commute","vector":[0.0522800087928772,-0.016672560945153236,-0.02060861699283123,-0.015420276671648026,-0.011397402733564377,0.03325670212507248,0.01705143041908741,-0.02129759080708027,0.012705322355031967,-0.006768392864614725,0.004009725525975227,-0.004301378969103098,0.050383005291223526,0.0354597382247448,-0.06335756182670593,0.05313253030180931,-0.0482681579887867,-0.05905032157897949,-0.01843852363526821,-0.018936343491077423,-0.02690950781106949,-0.0341852568089962,-0.016385192051529884,-0.04922262579202652,0.013028200715780258,0.029736464843153954,0.003026366699486971,-0.050255611538887024,-0.04472002387046814,-0.07148122787475586,0.030165812000632286,-0.08308905363082886,-0.039996661245822906,-0.00012138495367253199,0.03332112357020378,0.03237520530819893,-0.04841465502977371,0.03365558758378029,0.038494840264320374,-0.022946476936340332,0.009739928878843784,-0.0024955535773187876,0.08183824270963669,-0.05209267511963844,-0.02173273079097271,0.013220706954598427,-0.0744866356253624,0.006635352037847042,0.05651037395000458,0.05341456085443497,0.07854854315519333,-0.008540524169802666,0.010205435566604137,-0.058977413922548294,-0.04928569495677948,-0.04421788081526756,0.0393611378967762,0.013200280256569386,0.004394421353936195,-0.076638363301754,-0.06348702311515808,-0.04523699730634689,-0.043005749583244324,-0.03077269345521927,-0.01733248680830002,0.007049398962408304,0.08825783431529999,0.036771345883607864,0.057724762707948685,-0.04205910488963127,-0.022523142397403717,-0.02412443794310093,0.017438435927033424,0.056383728981018066,-0.06710705906152725,-0.054084014147520065,-0.025404172018170357,-0.01811954565346241,-0.022546246647834778,0.06986012309789658,0.02823917753994465,0.029847102239727974,0.020327730104327202,-0.0416535921394825,-0.03406962379813194,0.04874904826283455,0.013201823458075523,0.05126103758811951,0.01735142432153225,0.0383395254611969,0.00309019279666245,0.028838161379098892,-0.024407995864748955,0.04652249813079834,-0.04024507850408554,-0.021783024072647095,-0.0777357667684555,-0.001482941908761859,-0.03598663583397865,-0.07840538769960403,-0.02313821390271187,-0.0400894470512867,-0.010809681378304958,-0.027806337922811508,-0.04312584549188614,0.014101090840995312,-0.05769985914230347,0.039524953812360764,0.02278118021786213,0.060209184885025024,-0.02331714890897274,-0.028855660930275917,-0.006149971857666969,-0.06460168957710266,0.013166720047593117,0.039403192698955536,-0.01648581586778164,0.031733062118291855,-0.003296478185802698,0.046426065266132355,-0.034439265727996826,-0.0705542266368866,0.057662490755319595,-0.07846818119287491,-0.02653135173022747,-0.009776095859706402,-0.01881830021739006,0.041880518198013306,0.03998076170682907,-0.06474637985229492,-0.03145232051610947,-0.059783704578876495,-0.0069362749345600605,0.018437495455145836,-0.01709410548210144,-0.06803466379642487,0.061849042773246765,-0.05989247187972069,0.001492184353992343,0.04842375963926315,0.05974975600838661,-0.011030267924070358,0.03504355996847153,0.07515256106853485,-0.002177925780415535,0.0005251456168480217,0.08009903132915497,0.016401855275034904,0.03903081268072128,0.03916318342089653,0.0010874784784391522,0.02500554360449314,-0.03985045850276947,-0.006784522905945778,0.023091105744242668,-0.03316099941730499,-0.009975128807127476,0.023527134209871292,0.051913391798734665,-0.03977462649345398,-0.03103584237396717,-0.03442547097802162,0.045591242611408234,-0.02045796997845173,-0.035534027963876724,0.015573831275105476,0.00459659518674016,-0.04325145110487938,-0.02364579401910305,0.06879716366529465,-0.015014887787401676,-0.01211742963641882,0.015779009088873863,0.049743808805942535,0.006628711242228746,0.018588604405522346,-0.05877796187996864,0.04345978796482086,0.037007082253694534,0.08635681122541428,-0.014187179505825043,0.08491561561822891,0.0080006904900074,-0.018679067492485046,0.03173522278666496,0.05552399531006813,0.07012059539556503,0.050132159143686295,0.018814533948898315,-0.07348200678825378,-0.004974934738129377,0.02776569128036499,-0.0020810968708246946,0.0005783183733001351,0.08407706022262573,-0.06175505369901657,-0.023666953667998314,0.01990944892168045,0.045107584446668625,0.0836104303598404,-0.059092890471220016,0.0016659583197906613,0.01233544573187828,-0.04973781481385231,-0.07403064519166946,-0.026214001700282097,0.05997814983129501,-0.014440645463764668,0.06991240382194519,0.09332311153411865,0.006279885768890381,-0.023849355056881905,0.04417302459478378,-0.0376083180308342,0.06700079143047333,-0.0013863251078873873,-0.05330536141991615,0.021878065541386604,0.04903672635555267,-0.0019099367782473564,0.014937156811356544,-0.015157097019255161,0.008852072060108185,-0.05526295304298401,0.05355842411518097,0.0294295996427536,0.021452585235238075,0.013489463366568089,0.015544836409389973,0.042587749660015106,0.020661596208810806,0.052174728363752365,-0.004435606766492128,0.01740858517587185,0.03456199914216995,0.05299889296293259,0.0295647531747818,0.05613553151488304,-0.011603431776165962,-0.021460026502609253,-0.04956946521997452,0.04914281889796257,0.022980086505413055,-0.002456029411405325,-0.006668807473033667,-0.0032527733128517866,-0.025140631943941116,-0.01712438277900219,0.026712549850344658,-0.019870413467288017,0.040273621678352356,-0.010524732060730457,0.025969011709094048,-0.07013477385044098,0.024856777861714363,-0.02385808527469635,-0.00012145273649366572,-0.0647546574473381,-0.02117377705872059,0.09162773191928864,-0.019943244755268097,-0.00007897707837400958,0.010665654204785824,-0.02606470137834549,0.008934740908443928,0.010876298882067204,-0.029259854927659035,-0.0263291597366333,-0.025201117619872093,-0.03303266316652298,0.03047328069806099,-0.04501178860664368,0.020140929147601128,0.04349067062139511,-0.02283795364201069,0.08102958649396896,-0.027286527678370476,0.08531154692173004,-0.04376029223203659,-0.03671371936798096,0.0492730513215065,0.058688051998615265,0.008865862153470516,-0.0023726944345980883,-0.04369101673364639,-0.08035153150558472,-0.08747485280036926,0.0736313983798027,-0.054871853440999985,-0.061418935656547546,-0.013629547320306301,-0.031863804906606674,0.049946725368499756,0.010147576220333576,-0.04663451388478279,-0.0659879520535469,0.05011828616261482,0.02009696513414383,0.00034535228041931987,0.06276977062225342,0.029372569173574448,-0.001753266784362495,-0.018701592460274696,0.021730396896600723,0.023694442585110664,-0.010061257518827915,0.015776239335536957,-0.005601156502962112,0.01636781170964241,-0.08037865906953812,-0.003195632016286254,0.05985737964510918,0.05723549425601959,0.03132618963718414,-0.06916569918394089,-0.0555020347237587,0.036041922867298126,-0.07121410965919495,-0.04341650381684303,-0.06102210283279419,-0.0692976713180542,0.04930989071726799,-0.050743963569402695,0.014187081716954708,0.07760612666606903,-0.028321485966444016,-0.003863257123157382,-0.05728109925985336,0.0120202312245965,-0.04255738481879234,-0.08377957344055176,-0.031021494418382645,-0.06214611977338791,-0.05638543516397476,0.04247705638408661,0.03589366748929024,0.08478105068206787,0.07874254882335663,-0.02544468268752098,0.055139124393463135,-0.007708631455898285,0.039475176483392715,0.021121634170413017,-0.012814334593713284,-0.06512748450040817,0.04074595496058464,-0.06351540237665176,0.04048684984445572,-0.019661232829093933,0.04920371621847153,-0.06712193787097931,0.07830708473920822,0.004013583995401859,-0.02242925763130188,0.05801135674118996,0.04126138985157013,-0.0424845814704895,-0.07359874993562698,0.07337905466556549,-0.01773872785270214,0.04165322706103325,-0.021549949422478676,-0.0195427555590868,-0.015575220808386803,0.04538032412528992,0.033758461475372314,-0.06057338789105415,-0.058426566421985626,-0.022912917658686638,-0.013367846608161926,-0.06430716067552567,0.057198841124773026,0.039634544402360916,-0.08301357179880142,-0.0844830647110939,-0.041139617562294006,-0.01859375648200512,0.03922494873404503,-0.03901312127709389,0.01579558104276657,-0.021101802587509155,0.0261900145560503,-0.057843949645757675,0.03379622846841812,0.07357921451330185,0.015703951939940453,0.02145526558160782,-0.06361240893602371,-0.0629391297698021,-0.06703385710716248,-0.06334809213876724,-0.08155079931020737,-0.011706826277077198,-0.004629319533705711,0.06143244728446007,0.04593214392662048,0.04714474454522133,-0.05386113375425339,-0.02756824903190136,-0.04693160951137543,-0.029928438365459442,0.068763367831707,0.03128522261977196,0.06196238845586777,-0.026672018691897392,0.025127777829766273,0.05130461975932121,-0.07919418066740036,0.08760585635900497,-0.03754028305411339,0.05349986255168915,0.060566361993551254,0.043595124036073685,-0.0366857573390007,-0.0046038138680160046,0.07587685436010361,0.04890510067343712,-0.0611562542617321,0.038757484406232834,-0.027969839051365852,-0.032315075397491455,0.05005402863025665,0.024489792063832283,-0.03550015389919281,-0.018076084554195404,-0.0358455590903759,-0.0371895469725132,-0.05873039737343788,-0.04421944171190262,0.07997771352529526,0.04304763302206993,0.035384342074394226,-0.012112739495933056,-0.06964675337076187,0.036111585795879364,0.06966210156679153,-0.07874562591314316,0.020733850076794624,-0.06490813195705414,0.031311795115470886,-0.017396898940205574,-0.03126078099012375,-0.0038222400471568108,0.017666010186076164,0.00014987989561632276,-0.009203054010868073,0.0828818827867508,-0.015429150313138962,0.053394559770822525,-0.00199162308126688,0.011854862794280052,-0.03758850693702698,0.05865781381726265,0.04203755408525467,0.04397861659526825,-0.08310943841934204,0.05210799351334572,0.00701686879619956,0.059662774205207825,-0.022022459656000137,0.006690092384815216,-0.04680543765425682,0.013061605393886566,0.035020358860492706,-0.061223335564136505,0.031683605164289474,-0.014072686433792114,0.05269104987382889,-0.07646593451499939,-0.03877447172999382,0.050030145794153214,0.03997329622507095,-0.02397598884999752,-0.01509127113968134,-0.01274051982909441,-0.0015160732436925173,0.07464085519313812,0.04711311310529709,0.025289442390203476,0.039724770933389664,0.06803595274686813,-0.03404664993286133,-0.04447276517748833,-0.005888199899345636,0.0164320208132267,-0.029678240418434143,0.006739434320479631,-0.04809024930000305,-0.04413983225822449,0.07078905403614044,0.01364431157708168,-0.05416760593652725,-0.08303424715995789,-0.02985229529440403,0.07878684997558594,-0.058115892112255096,-0.01907969079911709,-0.0069171227514743805,0.07733429223299026,-0.012107140384614468,0.026949986815452576,-0.0029179975390434265,-0.05859609693288803,0.019363651052117348,-0.07837004214525223,-0.05866529792547226,0.04669161140918732,0.043662019073963165,-0.0923365131020546,-0.07378602027893066,-0.030533887445926666,-0.0003624953969847411]},{"id":"mother-mary","vector":[-0.008711203001439571,-0.010453098453581333,-0.0016070997808128595,0.02250828966498375,-0.026972146704792976,0.007983721792697906,0.046849772334098816,-0.07421176880598068,0.06603220850229263,-0.0071976096369326115,0.06544104963541031,-0.02249172143638134,-0.011115004308521748,0.08774196356534958,-0.05684013292193413,-0.07612741738557816,0.004305703565478325,-0.02172042801976204,0.0016029085963964462,-0.05012429878115654,0.008268429897725582,-0.0011216453276574612,0.01309286430478096,-0.05662528797984123,-0.01622803695499897,0.016028480604290962,-0.04068669304251671,-0.0013700241688638926,-0.06148990988731384,-0.07316853106021881,0.05929293856024742,-0.01791309379041195,-0.0742022693157196,-0.041455041617155075,0.05019065737724304,0.03387629613280296,-0.06148897483944893,0.04311743378639221,0.06083350256085396,-0.07272116094827652,-0.037867575883865356,-0.00375470332801342,0.06990201026201248,-0.011385234072804451,-0.014956987462937832,-0.006409899331629276,-0.07477018237113953,-0.03187266364693642,0.044887080788612366,0.04207902029156685,-0.034187234938144684,-0.08401995152235031,0.022104328498244286,-0.015583214350044727,0.002543496200814843,-0.03743986040353775,0.07121485471725464,0.04348413273692131,0.06479407846927643,-0.07698840647935867,-0.0640433132648468,-0.03415573760867119,-0.04719345271587372,0.03135195001959801,-0.029393784701824188,-0.03340349718928337,0.08297856897115707,0.05184280127286911,0.09044458717107773,-0.01143353059887886,0.003925495781004429,-0.03162586688995361,0.016249142587184906,0.003083548741415143,-0.03186213597655296,-0.0680357813835144,0.03493185341358185,0.012829868122935295,0.005575000774115324,0.0381784588098526,0.04303399473428726,0.022368185222148895,0.01110508106648922,-0.011383078061044216,-0.052471525967121124,0.04375097528100014,0.02403232268989086,0.0738995149731636,-0.06497631222009659,0.06329160928726196,-0.01147493626922369,-0.06971469521522522,-0.07857925444841385,0.049638889729976654,-0.031043995171785355,0.01532356534153223,-0.06069371476769447,-0.0010000348556786776,-0.052082035690546036,-0.023864425718784332,-0.08576126396656036,0.01836520805954933,-0.027043011039495468,0.022131772711873055,-0.033367276191711426,0.01350894384086132,-0.07130936533212662,0.05530130863189697,0.07923780381679535,0.0524018220603466,-0.024119602516293526,-0.07306581735610962,0.00036458956310525537,-0.03317759186029434,-0.061031002551317215,0.0024361342657357454,-0.008315234445035458,-0.0049155093729496,-0.06732279062271118,0.005640658084303141,-0.013952192850410938,-0.08004459738731384,0.015739111229777336,-0.06892477720975876,-0.03229844197630882,-0.03775613754987717,-0.02403348498046398,0.05149441212415695,0.01610085926949978,-0.05297720059752464,-0.07143773883581161,-0.048029884696006775,0.023694809526205063,0.007732081227004528,-0.02281033992767334,-0.07580044120550156,-0.01345892809331417,-0.04816526174545288,0.014350742101669312,0.03575167432427406,0.02535727247595787,-0.06622914224863052,0.06694015115499496,0.06496123969554901,-0.012491932138800621,0.009150083176791668,0.01058234367519617,0.029461929574608803,0.020244354382157326,0.009264030493795872,-0.01752365380525589,0.01573053188621998,-0.07346778362989426,0.017830239608883858,-0.03570766746997833,0.026260575279593468,0.04333163797855377,-0.07337909191846848,-0.03227663040161133,-0.0694330632686615,0.037235382944345474,0.02160046622157097,0.048529207706451416,-0.003434089245274663,0.007860980927944183,0.027806654572486877,0.0028777485713362694,-0.062275514006614685,0.06184878945350647,0.06639204174280167,-0.05265171080827713,-0.026839975267648697,-0.04268428683280945,0.03853333741426468,0.0005181229207664728,0.03813936933875084,-0.029475905001163483,0.07587612420320511,0.06859767436981201,0.0737113505601883,-0.03984292969107628,0.08063024282455444,0.027213098481297493,-0.035024143755435944,0.04298859089612961,0.06969621032476425,-0.01937488280236721,0.06675596535205841,0.07911787182092667,-0.0456915944814682,-0.042304012924432755,-0.004690931644290686,-0.05252528935670853,-0.003413941478356719,0.07006048411130905,-0.061530910432338715,-0.054689180105924606,-0.03999729081988335,-0.02624749206006527,0.07933974266052246,-0.007738136686384678,-0.0034687563311308622,0.03304770216345787,0.006753344088792801,-0.026609303429722786,-0.051780782639980316,0.001589581137523055,-0.021755779162049294,0.018677590414881706,0.07247448712587357,0.002477142494171858,0.0051361615769565105,0.041755400598049164,-0.024465959519147873,0.011304214596748352,-0.01213118713349104,-0.030362851917743683,0.028542887419462204,0.059270408004522324,-0.045155223459005356,0.02903531678020954,-0.04462416097521782,0.03955273702740669,-0.009485766291618347,0.022566748782992363,-0.005973854102194309,-0.031880829483270645,0.006360918283462524,-0.009212424978613853,0.04149199277162552,-0.04109467566013336,0.03335314616560936,0.02439473383128643,0.012171708978712559,0.05327710881829262,-0.020816683769226074,0.02415645308792591,0.0692804828286171,0.03482189029455185,0.01881459355354309,-0.05428871512413025,-0.021351050585508347,0.04142889380455017,-0.014678724110126495,0.01962396129965782,-0.015513681806623936,0.029781917110085487,0.0023617728147655725,0.04042531177401543,-0.0585007406771183,0.05684491991996765,-0.07886520028114319,-0.0022428007796406746,-0.06195039302110672,-0.004602977540344,0.010357997380197048,-0.014661163091659546,-0.06829816848039627,-0.02757471799850464,0.054963115602731705,-0.03265446424484253,-0.03959091007709503,0.024894483387470245,0.0021553828846663237,-0.03780834376811981,-0.000817233812995255,0.017937960103154182,-0.00042666521039791405,0.01303878240287304,-0.03323838487267494,0.03974753990769386,-0.061599038541316986,0.036786679178476334,-0.05258119851350784,0.028421204537153244,0.07504663616418839,-0.024905171245336533,0.01177485566586256,-0.02045292593538761,0.02997400239109993,0.04980660229921341,0.08156850188970566,0.004883968736976385,-0.017919069156050682,-0.020487811416387558,-0.06857498735189438,-0.0672193169593811,0.048518020659685135,-0.04474847763776779,-0.047106292098760605,-0.0117958914488554,-0.02176804468035698,0.04789133369922638,-0.00651626568287611,0.01377504225820303,-0.051679156720638275,0.05944276228547096,0.0018010672647505999,0.06076947599649429,0.041531674563884735,0.024706412106752396,0.06874687969684601,-0.001445869798772037,0.05428289994597435,0.04569203034043312,0.000004126271051063668,0.03951441869139671,0.019248198717832565,-0.018177708610892296,-0.07811268419027328,-0.039057254791259766,-0.016733305528759956,-0.01175145898014307,0.02677595615386963,-0.07390135526657104,-0.04047926515340805,0.031652264297008514,-0.04350622370839119,-0.055626094341278076,-0.025967342779040337,-0.07650914043188095,0.042256273329257965,-0.07121485471725464,0.0058847167529165745,0.050062865018844604,-0.024712450802326202,-0.016254348680377007,0.033610112965106964,0.07996304333209991,-0.058211199939250946,-0.023521944880485535,-0.01931685581803322,-0.06284366548061371,-0.005111150909215212,0.05358576029539108,-0.010112296789884567,0.05873000994324684,0.07767067849636078,0.02258620783686638,0.012017537839710712,0.045756641775369644,0.03873362019658089,0.08390187472105026,0.013446646742522717,0.01381075382232666,0.04526901617646217,-0.02518610469996929,0.05831345170736313,-0.006638097111135721,0.07173306494951248,-0.05836654081940651,0.054167430847883224,0.03842642530798912,0.058409035205841064,0.0034229846205562353,0.05197467282414436,-0.05465477332472801,-0.07720433920621872,-0.0006777352537028491,0.03753693401813507,0.03244467079639435,0.016835197806358337,0.06064603850245476,-0.052639491856098175,0.011215036734938622,0.028041237965226173,-0.04468579590320587,-0.00802280567586422,-0.018417727202177048,-0.048300500959157944,-0.04795951396226883,0.06323684751987457,0.019639790058135986,-0.053916048258543015,-0.06679624319076538,-0.007993360981345177,-0.04038775712251663,0.011137784458696842,0.04096653312444687,0.08050749450922012,0.042039599269628525,0.06967028975486755,-0.05994873866438866,0.04052041098475456,0.030333975329995155,-0.02848801389336586,0.07550406455993652,-0.017482610419392586,-0.0455215759575367,-0.009329109452664852,-0.03841841220855713,-0.014267132617533207,0.055228885263204575,-0.005156524479389191,0.0804096907377243,0.05529050529003143,0.06870848685503006,-0.08074042201042175,-0.018279142677783966,-0.06790675222873688,-0.040952153503894806,0.07211045175790787,0.020550906658172607,0.06685616821050644,-0.03519338741898537,-0.037039779126644135,0.04172976687550545,-0.020995737984776497,0.06943853944540024,-0.03192861005663872,0.07371066510677338,0.0005307804676704109,0.020783429965376854,0.016760138794779778,-0.004615953657776117,0.009236766956746578,0.040766969323158264,-0.0066413236781954765,0.08338600397109985,0.06282388418912888,-0.03389928117394447,0.04578769952058792,-0.032584141939878464,-0.048761479556560516,-0.06279979646205902,-0.04505656659603119,-0.06107055023312569,-0.00727385887876153,-0.011896752752363682,0.011907998472452164,-0.04244636371731758,0.018481748178601265,-0.0000952899208641611,-0.02790709212422371,0.025818264111876488,0.055412471294403076,-0.04140516743063927,-0.01950043998658657,0.05553409829735756,0.019703172147274017,-0.04275442659854889,-0.047931816428899765,0.0445217490196228,0.03373882547020912,-0.06835413724184036,0.06583455204963684,0.08341939747333527,-0.05338417366147041,0.03699013218283653,-0.03120989166200161,0.05487827584147453,-0.04975825920701027,-0.04209109768271446,-0.025852752849459648,0.011388121172785759,-0.07159874588251114,0.0006487602950073779,0.05028775334358215,0.05463892221450806,-0.06922130286693573,-0.0195911955088377,-0.034991007298231125,-0.038234833627939224,0.03327300027012825,-0.03027568757534027,0.04200039058923721,-0.06070246919989586,0.024952996522188187,-0.06240244209766388,-0.05658457800745964,0.03082047775387764,0.07619979977607727,-0.006668910384178162,0.04037399962544441,0.05010633543133736,0.05419747531414032,0.025566117838025093,0.006244591437280178,0.05432754382491112,0.054859258234500885,-0.03914725035429001,-0.026644909754395485,-0.0427081324160099,0.02415318973362446,-0.04613065719604492,0.03960437700152397,0.00722739240154624,-0.049750883132219315,-0.06340966373682022,-0.030811311677098274,-0.006206227466464043,-0.02027428150177002,-0.05174681544303894,0.02296481467783451,0.06245477497577667,-0.004828462842851877,0.07050583511590958,-0.033839158713817596,0.07847697287797928,-0.004548634868115187,-0.0015517253195866942,0.07289203256368637,-0.016840528696775436,0.021764948964118958,-0.0006650618743151426,0.005812435876578093,0.06339946389198303,0.0410085991024971,-0.08008477836847305,-0.05895837023854256,0.02068551629781723,-0.010933819226920605]},{"id":"nervous-city","vector":[0.030639566481113434,-0.017218273133039474,-0.03227188438177109,-0.002364220330491662,-0.010374056175351143,0.020826945081353188,0.022829102352261543,-0.06665925681591034,0.023447532206773758,0.013292606920003891,0.03709818050265312,0.01944258064031601,-0.015129447914659977,0.008228546008467674,-0.07160240411758423,-0.01082802377641201,-0.04512465000152588,-0.0763014554977417,-0.008379514329135418,0.05089900642633438,0.030524514615535736,-0.049674443900585175,0.018169157207012177,-0.019197797402739525,-0.0020672979298979044,0.008601992391049862,-0.004636658821254969,-0.017141830176115036,-0.029088301584124565,-0.043279118835926056,0.048175979405641556,-0.030560052022337914,-0.029837025329470634,-0.04957527667284012,0.045112159103155136,0.03769383206963539,-0.05894126743078232,0.03551068902015686,0.06355155259370804,-0.02213624119758606,0.006448180880397558,-0.016076654195785522,0.05865263566374779,-0.03452619910240173,-0.010847912169992924,0.016473451629281044,-0.05476755648851395,-0.01781124249100685,0.050216592848300934,0.07383518666028976,0.007364390883594751,-0.06933368742465973,0.010200193151831627,-0.06309378147125244,-0.006137480027973652,-0.038663845509290695,0.035499200224876404,0.04800237715244293,0.025023499503731728,-0.05607948452234268,-0.06274400651454926,0.0027326075360178947,-0.04977740719914436,0.017824068665504456,-0.006423220969736576,0.03932756930589676,0.0929132029414177,0.03702215477824211,0.08225539326667786,-0.054789088666439056,-0.0451933816075325,-0.02290366031229496,-0.005311285145580769,0.0038856780156493187,-0.03440553694963455,-0.057716600596904755,0.03491330146789551,-0.01793728955090046,-0.02565094642341137,0.07480357587337494,0.015621349215507507,0.020659003406763077,0.011754978448152542,-0.03040279448032379,-0.049576517194509506,0.0468619205057621,0.01869056560099125,0.03314492851495743,-0.05376427620649338,0.022273322567343712,-0.03016999177634716,0.012704879976809025,-0.04769333824515343,0.05537247285246849,-0.037223439663648605,0.043637171387672424,-0.07255635410547256,-0.015755444765090942,-0.05239669978618622,-0.04873067885637283,-0.08323976397514343,0.009250846691429615,-0.020308179780840874,0.016383860260248184,-0.04536305367946625,0.05689060315489769,-0.04332676902413368,0.08091229945421219,0.051133282482624054,0.0249530840665102,-0.006974601186811924,-0.062716044485569,0.035374175757169724,-0.013617823831737041,-0.06698506325483322,0.03355706110596657,-0.012988986447453499,0.042843014001846313,-0.06989918649196625,0.03071369230747223,-0.027998626232147217,-0.07708096504211426,0.04414879158139229,-0.07727646827697754,-0.04559088870882988,0.0021257614716887474,-0.027083221822977066,0.06334559619426727,0.02558428980410099,-0.06652399897575378,-0.07346203923225403,-0.03980013728141785,-0.013386810198426247,0.022544240579009056,-0.00904375035315752,-0.07701709121465683,-0.02319474332034588,-0.05975352227687836,-0.029828757047653198,0.014252867549657822,0.0004406996304169297,-0.07781687378883362,0.055241476744413376,0.0657164603471756,-0.011433199979364872,0.013374545611441135,0.04322926700115204,0.04120226576924324,0.03476836159825325,0.05628810077905655,0.0041991667822003365,0.005803168751299381,-0.04126829281449318,-0.04452842101454735,-0.017836138606071472,-0.02727881446480751,0.020469561219215393,-0.030408546328544617,0.06169905513525009,-0.023308681324124336,-0.004753713961690664,-0.017970070242881775,0.038455113768577576,-0.033963195979595184,-0.0320819616317749,0.03278286010026932,-0.038519859313964844,-0.054785486310720444,-0.021140791475772858,0.07323891669511795,-0.07384750992059708,-0.006368739064782858,0.0077331215143203735,0.043123263865709305,-0.026658862829208374,0.051614683121442795,-0.0628611370921135,0.07958372682332993,0.08393999934196472,0.07198448479175568,-0.018985606729984283,0.07568632811307907,0.04108916223049164,0.02200198732316494,0.043030790984630585,0.06472665071487427,-0.02324322983622551,0.039760518819093704,0.06105973944067955,-0.05574467405676842,-0.03342718258500099,-0.006307701114565134,-0.0039018108509480953,0.009694425389170647,0.08433271199464798,-0.051745593547821045,-0.037182584404945374,0.02147820219397545,0.01738586835563183,0.07158708572387695,-0.04716556891798973,-0.0016478170873597264,0.032467905431985855,-0.00007015015580691397,-0.03806827589869499,-0.02924649603664875,0.023083822801709175,-0.04622121527791023,0.0022669592872262,0.07225525379180908,0.008101250045001507,-0.0017549386247992516,0.08262251317501068,0.006078928243368864,0.07541846483945847,0.024168366566300392,-0.007070304360240698,0.0334874764084816,0.07052859663963318,-0.008891595527529716,0.0058366102166473866,-0.01540953479707241,-0.010680937208235264,-0.0720936506986618,0.061495374888181686,-0.03375630080699921,-0.04172191768884659,-0.014065882191061974,0.025160567834973335,0.019644705578684807,0.01888817362487316,0.009965868666768074,0.03838386759161949,0.009078795090317726,-0.012695607729256153,0.08076898753643036,0.043361131101846695,0.08545080572366714,0.01719781756401062,-0.032449398189783096,-0.06551782041788101,0.019844481721520424,-0.03316633775830269,-0.02127801440656185,0.01711323857307434,-0.03947126865386963,-0.03606215864419937,0.013663266785442829,-0.02314896136522293,-0.06817427277565002,0.03784351050853729,-0.07392162084579468,0.021781085059046745,-0.07459156215190887,-0.018981441855430603,-0.008167937397956848,-0.025180451571941376,-0.05673601105809212,-0.03197793290019035,0.07754691690206528,-0.010494249872863293,-0.0010829182574525476,-0.009438806213438511,-0.023986810818314552,0.005080605857074261,-0.020708099007606506,0.006661040708422661,-0.022230686619877815,-0.055651649832725525,-0.05290132761001587,0.03651236742734909,-0.045166853815317154,0.005746228154748678,-0.007163794245570898,0.0017192879458889365,0.07242633402347565,-0.04191843792796135,0.058849211782217026,-0.033978693187236786,-0.0176837258040905,0.04519042745232582,0.07996360212564468,0.0499703474342823,0.06371185183525085,-0.0317302905023098,-0.06337332725524902,-0.07787910103797913,0.05985698848962784,-0.03191850334405899,-0.030341675505042076,0.0011119951959699392,-0.02891470491886139,0.058683887124061584,0.009660597890615463,-0.0451982207596302,-0.06033945456147194,0.059821274131536484,0.06192120164632797,0.057702720165252686,0.030155176296830177,0.01870151236653328,0.06417160481214523,0.008144650608301163,0.05654207244515419,0.028967060148715973,0.005056499969214201,0.021231185644865036,0.013856702484190464,-0.0239353496581316,-0.08804815262556076,-0.013264765031635761,0.026770003139972687,0.022445520386099815,0.057982828468084335,-0.07490085065364838,-0.033058036118745804,0.05402040481567383,-0.02102576568722725,-0.04943373054265976,-0.05897597223520279,-0.08461625874042511,0.06713483482599258,-0.06480046361684799,-0.05339721217751503,0.04284648969769478,-0.030559947714209557,-0.02390984632074833,-0.01897367835044861,0.020322583615779877,-0.054986752569675446,-0.007383121643215418,-0.030990462750196457,-0.07677940279245377,-0.024026116356253624,0.04501137137413025,0.03703481703996658,0.08015842735767365,0.08256429433822632,0.01721225306391716,0.01620408147573471,-0.015071500092744827,0.031584203243255615,0.03585585951805115,-0.03605300560593605,0.009863084182143211,0.03654848784208298,-0.028546715155243874,0.0700855404138565,-0.002966690808534622,0.05524863675236702,-0.06963253766298294,0.04916971176862717,0.02289346233010292,0.013799464330077171,0.03292976692318916,0.05866590142250061,-0.02959558367729187,-0.07596410810947418,-0.003839378245174885,0.020898429676890373,0.040007494390010834,-0.014130847528576851,0.04878801852464676,-0.03228702396154404,0.03608637675642967,0.03030480071902275,-0.03925527632236481,-0.025787943974137306,0.0076961759477853775,-0.05194028094410896,-0.05353765934705734,-0.04526878893375397,0.058469440788030624,-0.06346343457698822,-0.07863643020391464,0.0014487524749711156,0.0020816000178456306,0.016062313690781593,-0.034753210842609406,0.05994300916790962,-0.0017613949021324515,0.07175751030445099,-0.05343739688396454,0.06667720526456833,0.03516034036874771,0.02233707159757614,0.07474401593208313,-0.04573274403810501,-0.0496344268321991,-0.05383286625146866,-0.06334538012742996,-0.04150949418544769,-0.020205041393637657,0.01861809752881527,0.0706910490989685,0.034135397523641586,0.06042945384979248,-0.0571126788854599,-0.06952767074108124,-0.0777117982506752,-0.033303603529930115,0.07036679983139038,-0.008607321418821812,0.0611637681722641,-0.043757859617471695,-0.02169099450111389,0.06424237042665482,-0.07963438332080841,0.06396763771772385,-0.052222032099962234,0.06990233808755875,-0.027837468311190605,-0.013375268317759037,-0.0035629591438919306,-0.0027903150767087936,0.009518460370600224,0.0666843131184578,-0.031833816319704056,0.08486925065517426,0.030797159299254417,-0.019102761521935463,0.029050277546048164,0.026168743148446083,-0.05402430146932602,-0.034425999969244,-0.048487331718206406,0.0006446897168643773,-0.05908152461051941,-0.06458908319473267,0.0003866159822791815,-0.06049954518675804,0.03911887854337692,-0.015295819379389286,-0.06773834675550461,0.046598177403211594,0.08283016830682755,-0.051949307322502136,-0.02418757602572441,-0.024082962423563004,0.024052763357758522,-0.01692904904484749,-0.020177176222205162,0.04844404757022858,0.033153239637613297,-0.07920654118061066,0.06385098397731781,0.08439264446496964,-0.05885068699717522,0.07898855209350586,0.009463764727115631,0.015924924984574318,-0.02807365544140339,0.053378425538539886,0.015652785077691078,0.0021126491483300924,-0.07700353860855103,-0.00022554010502062738,0.031745292246341705,0.060453180223703384,-0.03824330493807793,0.028756489977240562,-0.041050419211387634,-0.028045978397130966,-0.007502466440200806,-0.008972744457423687,0.032536353915929794,-0.040189679712057114,0.009151351638138294,-0.06367766857147217,-0.06419537216424942,0.03277961164712906,0.026931462809443474,-0.028125649318099022,0.028317654505372047,-0.013384482823312283,0.02683052234351635,0.055274657905101776,-0.03010813519358635,0.0010873033897951245,0.07102146744728088,0.02814704366028309,-0.029476609081029892,-0.03368759900331497,-0.00423645693808794,-0.02266865037381649,0.015895605087280273,0.009870337322354317,-0.06262599676847458,-0.06006479263305664,-0.0009179196204058826,0.012397260405123234,-0.060612570494413376,-0.06605153530836105,0.028508439660072327,0.07617999613285065,0.0033075623214244843,0.06015337258577347,-0.06809697300195694,0.08058445900678635,0.00013820943422615528,-0.0030141761526465416,0.04730736091732979,-0.06244621425867081,0.022981224581599236,-0.04214523360133171,0.010880213230848312,0.053953345865011215,0.009934864938259125,-0.08030598610639572,-0.07800686359405518,0.010581988841295242,0.026714103296399117]},{"id":"new-student","vector":[0.039011236280202866,-0.056246690452098846,-0.07511495798826218,0.04834742099046707,-0.026638424023985863,0.01308369729667902,0.022277100011706352,-0.03193768113851547,0.03239703178405762,-0.006033191457390785,0.04454758018255234,0.05215033143758774,-0.047047872096300125,0.07157096266746521,-0.057519618421792984,-0.07848063111305237,-0.04744334518909454,-0.08174209296703339,-0.01423878874629736,0.04442334920167923,-0.0056401025503873825,-0.03791480511426926,0.06236244738101959,-0.022852500900626183,0.0613127164542675,-0.014102190732955933,0.01377753634005785,-0.022538751363754272,-0.05805095285177231,-0.04834640026092529,0.06360392272472382,-0.027997761964797974,-0.0242628026753664,-0.02960176393389702,0.04034038260579109,0.04942132532596588,-0.05057564377784729,0.06397588551044464,0.05393460392951965,-0.04362461715936661,-0.016746588051319122,0.005946015473455191,0.06552151590585709,-0.08135247975587845,-0.023223338648676872,0.008960820734500885,-0.04308396577835083,-0.028259309008717537,0.06083231046795845,0.036679092794656754,0.012130684219300747,-0.06757514178752899,0.024483975023031235,-0.005417264997959137,-0.03709888830780983,-0.032471317797899246,0.032447412610054016,0.03034634329378605,0.05105920508503914,-0.0685630664229393,-0.06131456419825554,-0.007502576801925898,-0.051759421825408936,-0.049633100628852844,-0.02150026150047779,0.041329238563776016,0.09017065167427063,0.019653916358947754,0.08434275537729263,-0.049252115190029144,-0.05951400846242905,-0.05334048718214035,-0.014749432913959026,0.025486940518021584,-0.017509132623672485,-0.05715044215321541,0.01591712050139904,-0.056405968964099884,-0.039100274443626404,0.06517316401004791,0.03174595162272453,0.04833853617310524,-0.00832799356430769,-0.0001138592924689874,-0.0217005405575037,0.042697723954916,-0.002992425113916397,0.07674320787191391,-0.04775870218873024,0.03451220318675041,-0.04756868630647659,0.03378655016422272,-0.05388491600751877,0.055007454007864,-0.03440982848405838,-0.01896176114678383,-0.05994117259979248,-0.01634061150252819,-0.0661325752735138,-0.05704702436923981,-0.08539514243602753,0.049671076238155365,-0.024355566129088402,0.03201761469244957,-0.044673800468444824,0.0000531808655068744,-0.03915485739707947,0.06245531141757965,0.04599182307720184,0.03257766738533974,-0.038393545895814896,-0.07922324538230896,0.018176795914769173,-0.023951401934027672,-0.047680314630270004,0.0246194526553154,0.028598837554454803,0.028081020340323448,-0.059996604919433594,-0.015508518554270267,-0.013202237896621227,-0.07805834710597992,-0.06488549709320068,-0.05710297077894211,-0.0407312773168087,0.02624686248600483,-0.03264211118221283,0.025495443493127823,0.029468519613146782,-0.046699415892362595,-0.033161383122205734,-0.042807694524526596,-0.0233993548899889,0.03262452408671379,-0.0428919717669487,-0.056424494832754135,-0.0429559201002121,-0.047113798558712006,-0.020530706271529198,0.057264942675828934,0.03359297290444374,-0.050671376287937164,0.03802541643381119,0.055507488548755646,-0.024449173361063004,0.025335164740681648,0.04758910834789276,0.022869005799293518,0.037022702395915985,0.04423302039504051,-0.05047707259654999,0.006245208904147148,-0.016481071710586548,-0.002831835299730301,-0.051890432834625244,-0.06334047764539719,0.041126150637865067,-0.04873321205377579,0.05664493143558502,-0.05046743527054787,-0.03846733272075653,-0.008500410243868828,0.02477831207215786,-0.031690992414951324,-0.027871713042259216,0.025605125352740288,-0.012186577543616295,-0.04569881409406662,0.05625651404261589,0.06129160523414612,-0.027792738750576973,0.011320863850414753,0.01611691154539585,0.05663728341460228,-0.03252597153186798,0.047312404960393906,-0.06633486598730087,0.0783282145857811,0.0774022564291954,0.0621236152946949,-0.04692910611629486,0.07675672322511673,0.024573175236582756,0.0450621023774147,0.01772398315370083,0.06163986399769783,-0.002169184386730194,0.05467665567994118,0.0838489979505539,-0.040617436170578,-0.026774872094392776,0.01075198594480753,-0.03548234701156616,-0.045316919684410095,0.08274955302476883,-0.05160648003220558,-0.05346813425421715,-0.07686319202184677,-0.007816554978489876,0.07991743087768555,-0.02513284422457218,-0.06649643927812576,0.041653212159872055,-0.021906543523073196,-0.03629167750477791,0.0056483992375433445,0.005331398919224739,-0.03447767347097397,0.0016081781359389424,0.08376459032297134,0.02291814796626568,-0.04197051003575325,0.08625758439302444,-0.023103902116417885,0.02376445196568966,0.013433476909995079,-0.026505880057811737,-0.0007222348940558732,0.03797198832035065,-0.050125833600759506,0.01563345082104206,-0.05304597318172455,-0.004558637272566557,-0.06331366300582886,0.046164125204086304,-0.04494939744472504,0.003221469698473811,-0.01359639409929514,0.0179172120988369,0.030675500631332397,-0.01782010681927204,0.0586555153131485,0.073553666472435,0.012609375640749931,-0.037190940231084824,0.07107874751091003,0.041606537997722626,0.06318351626396179,-0.010955074802041054,-0.059671591967344284,-0.05241301283240318,0.01332075335085392,0.021356554701924324,-0.019895225763320923,-0.01670772396028042,-0.06782814115285873,0.005726580508053303,0.02125702239573002,-0.04581079259514809,-0.0200135987251997,0.04434157907962799,-0.07468830049037933,0.02779262699186802,-0.07274866849184036,-0.004728060215711594,-0.009012912400066853,-0.06463000178337097,-0.06292419880628586,-0.00003492586256470531,0.07414623349905014,-0.012701386585831642,-0.00586781045421958,-0.0015269534196704626,0.03454907611012459,-0.04251139983534813,0.028814783319830894,0.0043730237521231174,-0.028993938118219376,-0.04479227960109711,-0.05958911031484604,0.05217712000012398,-0.05709826573729515,-0.01824718527495861,-0.037931326776742935,-0.019797280430793762,0.07310016453266144,-0.049306564033031464,0.03947633132338524,0.0074315862730145454,-0.02752225659787655,0.04279002919793129,0.07613621652126312,0.053624819964170456,0.009014501236379147,-0.014080550521612167,-0.0403645820915699,-0.07193587720394135,0.030221926048398018,-0.043114081025123596,-0.05379852280020714,-0.006577781401574612,-0.050359729677438736,0.05552928149700165,0.013303344137966633,-0.03201482445001602,-0.03717335686087608,0.022096900269389153,0.004336981568485498,0.06496687978506088,0.04316989332437515,-0.009127547964453697,0.060053110122680664,-0.001444921363145113,0.04983818903565407,0.027234258130192757,-0.017111886292696,0.03755156695842743,-0.04843849316239357,-0.047976791858673096,-0.07959029823541641,-0.0031760437414050102,0.06076865643262863,0.01759949140250683,-0.0027066669426858425,-0.05880224332213402,-0.024627791717648506,0.055877529084682465,-0.04876470938324928,-0.028151802718639374,-0.06541711837053299,-0.07494409382343292,0.057070739567279816,-0.053351953625679016,-0.039390504360198975,0.025955496355891228,0.029397420585155487,-0.01477145031094551,-0.01570296660065651,0.001199077465571463,-0.06519077718257904,0.004732395522296429,-0.027020061388611794,-0.05980111286044121,-0.037344884127378464,0.02058333158493042,0.02594801038503647,0.07778258621692657,0.062213558703660965,0.033802445977926254,-0.02360745519399643,-0.0417390912771225,0.0361090824007988,0.05322134867310524,-0.006051770411431789,-0.015296287834644318,-0.019671102985739708,-0.0333789587020874,0.05863196775317192,-0.02972891740500927,0.05927204340696335,-0.08114825934171677,0.06252391636371613,0.03895225003361702,-0.020652184262871742,-0.04107942059636116,0.050480809062719345,0.0069574578665196896,-0.07628745585680008,-0.02536141872406006,-0.004145890939980745,0.026477990671992302,0.015071580186486244,0.0034988808911293745,-0.03799762204289436,0.07306314259767532,0.014399969950318336,-0.039435356855392456,-0.03895295038819313,-0.0002590340154711157,-0.016691047698259354,-0.060426559299230576,-0.0013379360316321254,0.03102201037108898,-0.039145272225141525,-0.06930695474147797,0.0006660091457888484,0.03453614562749863,-0.0063859750516712666,-0.016585009172558784,0.05704081431031227,-0.007213651202619076,0.06417034566402435,-0.03664553537964821,0.04928600788116455,0.045981019735336304,0.002425708808004856,0.06823409348726273,-0.026699528098106384,-0.008147508837282658,-0.033809974789619446,-0.06482066214084625,-0.019386444240808487,0.002199627226218581,0.06305954605340958,0.042660102248191833,0.048446230590343475,0.03331119939684868,-0.06368689239025116,-0.026087289676070213,-0.06523789465427399,-0.05561043694615364,0.07350397855043411,0.028843825682997704,0.06331318616867065,-0.04279940947890282,-0.020119212567806244,0.0556580126285553,-0.0750734880566597,0.07257014513015747,-0.06687420606613159,0.09015905112028122,0.051617611199617386,0.027270153164863586,-0.032425206154584885,0.0008091009221971035,0.0060191284865140915,0.03967822715640068,-0.042748596519231796,0.06702525913715363,0.03655388206243515,-0.05128258466720581,0.0252840593457222,0.043312955647706985,-0.06041773408651352,-0.03613968938589096,-0.03235987573862076,-0.03298307955265045,-0.046575043350458145,-0.03836125507950783,-0.008456666022539139,-0.016250377520918846,0.039843883365392685,0.014934888109564781,-0.06959609687328339,0.03487616777420044,0.07937973737716675,-0.046785835176706314,-0.0016069980338215828,-0.04852096363902092,0.05176275596022606,-0.05974053964018822,-0.052610062062740326,0.057903580367565155,0.03999027609825134,-0.055416010320186615,0.042259201407432556,0.08422871679067612,-0.07782799005508423,0.06521989405155182,-0.028674546629190445,0.0025970712304115295,-0.00020113617938477546,-0.008108165115118027,-0.019317850470542908,0.024245860055088997,-0.057212378829717636,0.0016385192284360528,0.047202274203300476,0.06711477786302567,-0.02527170442044735,0.0060477834194898605,-0.008260182105004787,0.00190558226313442,0.01249185111373663,0.0009392875945195556,0.043797433376312256,-0.01797419600188732,0.04696226865053177,-0.05002631992101669,-0.06204648315906525,0.0076485262252390385,0.04432791844010353,0.027055971324443817,0.015834545716643333,0.0159195177257061,0.011585738509893417,0.06372624635696411,0.05948974937200546,0.03771396726369858,0.019817765802145004,-0.019078994169831276,-0.025739721953868866,-0.05857215076684952,-0.0006565945222973824,0.010516639798879623,-0.016332734376192093,0.019800955429673195,-0.057874515652656555,-0.06709177792072296,-0.02067641168832779,0.05917263403534889,-0.04661150649189949,-0.07130736857652664,-0.006629440002143383,0.06360618770122528,-0.0073321787640452385,0.015080287121236324,-0.05134271830320358,0.06486351042985916,-0.010915620252490044,0.019392171874642372,0.054188504815101624,-0.0036827416624873877,-0.017495499923825264,-0.030969122424721718,0.033769916743040085,0.02776232920587063,0.0454951748251915,-0.08070866763591766,-0.08422058820724487,0.013925840146839619,0.039936382323503494]},{"id":"new-year-s-retribution","vector":[-0.0019722357392311096,-0.049770794808864594,-0.039120350033044815,0.03832216188311577,-0.029287680983543396,0.0607602559030056,0.04810631275177002,-0.07220106571912766,-0.033607929944992065,0.05694115534424782,0.046239711344242096,0.031180327758193016,-0.02361511066555977,0.010382015258073807,-0.04622873663902283,-0.031130027025938034,-0.04513120651245117,-0.06485702842473984,-0.018725285306572914,0.024770760908722878,0.030609464272856712,0.001438578125089407,0.03737635165452957,-0.061563942581415176,0.05629030242562294,-0.045310575515031815,0.011368107050657272,-0.02097376063466072,-0.07065502554178238,-0.03650963678956032,0.05449347198009491,-0.04042535275220871,-0.011020893231034279,-0.017704647034406662,0.045722246170043945,0.04521191120147705,-0.04406481981277466,0.03873920440673828,0.07715938240289688,-0.05192343518137932,-0.014994672499597073,0.014636942185461521,0.07032360881567001,-0.05867208167910576,-0.05954426899552345,0.029633335769176483,-0.06648027151823044,-0.03605467453598976,0.050211019814014435,0.05617117881774902,-0.0009647267288528383,-0.057415302842855453,0.05006500333547592,-0.03051755391061306,-0.009906560182571411,-0.027121257036924362,0.04451119154691696,0.050487861037254333,0.05795309692621231,-0.07036988437175751,-0.06471619755029678,-0.03524531424045563,-0.041343461722135544,0.02409529872238636,-0.055981580168008804,0.0025984025560319424,0.0856609120965004,0.033507414162158966,0.08244191110134125,-0.03813457116484642,0.007987654767930508,-0.03941861167550087,0.025173243135213852,0.018317071720957756,-0.06510961800813675,-0.04897492006421089,0.04012683779001236,-0.029275376349687576,-0.04282842576503754,0.06034200266003609,-0.0044495598413050175,0.042316604405641556,-0.004817869048565626,-0.02076258324086666,-0.05900874361395836,0.0479113794863224,-0.005245834123343229,0.06673697382211685,-0.0631331354379654,0.05498397350311279,0.007471413351595402,0.027713226154446602,-0.030710769817233086,0.06812143325805664,-0.03385772556066513,0.03275182843208313,-0.07155833393335342,-0.014385604299604893,-0.028967296704649925,-0.05892838165163994,-0.08128729462623596,0.03903828561306,0.029612137004733086,0.028806107118725777,-0.006988304667174816,0.03647937253117561,-0.06400977075099945,0.0679439976811409,0.04861442744731903,0.033134691417217255,-0.023098483681678772,-0.061524610966444016,-0.023657724261283875,-0.07867910712957382,-0.04398768022656441,-0.0010972936870530248,0.005745405796915293,0.06302081048488617,-0.060115523636341095,0.05195793882012367,-0.01417031604796648,-0.07905799150466919,0.05488864332437515,-0.04498320445418358,-0.012749881483614445,0.0169005636125803,-0.03789500147104263,0.023513179272413254,0.007022550329566002,-0.03254557400941849,-0.05476196110248566,-0.06390400975942612,-0.01625460386276245,0.033115871250629425,-0.028414761647582054,-0.06970619410276413,0.037335194647312164,-0.05110561102628708,-0.06053318828344345,0.024365635588765144,0.004019978456199169,-0.053450919687747955,0.04221423342823982,0.07105864584445953,-0.048773013055324554,0.025807008147239685,0.0384436659514904,0.004098974168300629,-0.008229171857237816,0.04731667786836624,-0.02415277250111103,0.015319845639169216,-0.06261634081602097,-0.05407857522368431,-0.04256870597600937,-0.023350270465016365,0.0444524809718132,-0.04907805100083351,0.04750139266252518,-0.07429130375385284,-0.019277527928352356,-0.03600773960351944,0.04058047756552696,0.02798948995769024,0.012770695611834526,0.015652183443307877,-0.014147440902888775,-0.052590448409318924,0.052375465631484985,0.05978980287909508,-0.03553576022386551,0.002793966792523861,0.03745020553469658,0.05043443292379379,-0.0054426840506494045,0.03108312375843525,-0.05422079935669899,0.07509000599384308,0.0771610364317894,0.07180266082286835,-0.0334465429186821,0.07071486115455627,-0.00908050499856472,0.012626384384930134,0.03265279531478882,0.07583871483802795,0.015536078251898289,0.05075792223215103,0.008605380542576313,-0.05072864890098572,-0.006980071309953928,0.02731694094836712,0.002805726369842887,-0.006581601221114397,0.0853693038225174,-0.05319561809301376,-0.020974600687623024,-0.006322385277599096,-0.0004081092483829707,0.08585285395383835,0.027950435876846313,0.009554039686918259,-0.001411368022672832,-0.018069062381982803,-0.05033579468727112,-0.008460858836770058,0.050417859107255936,-0.00982593558728695,0.01956481859087944,0.08109506964683533,0.023370841518044472,-0.020719453692436218,0.07088062912225723,0.030117060989141464,0.05579245090484619,0.02212427742779255,-0.04255758970975876,-0.009589404799044132,0.03926790878176689,0.010407531633973122,0.020795462653040886,0.00627174973487854,-0.005332846660166979,-0.03727886453270912,0.01826956681907177,-0.04433351755142212,-0.0004360774764791131,0.043133772909641266,-0.02135780267417431,-0.006327872630208731,0.011995291337370872,0.05819786339998245,0.043459318578243256,0.007469038479030132,0.05742356926202774,0.06626038253307343,0.03134920820593834,0.04911934956908226,0.006272914819419384,-0.013440934009850025,-0.051899299025535583,0.0115556875243783,-0.007009933702647686,-0.0327431820333004,0.024402102455496788,-0.015645135194063187,0.04210454598069191,-0.012934337370097637,0.06399471312761307,-0.044176630675792694,0.06373363733291626,-0.07239610701799393,0.05658585950732231,-0.07093211263418198,-0.007496627047657967,-0.0048740943893790245,-0.030955547466874123,-0.07202708721160889,-0.03927519544959068,0.059701982885599136,-0.03857087716460228,-0.055743999779224396,0.0008534378139302135,-0.049165137112140656,0.008733655326068401,0.04999791458249092,0.048802971839904785,-0.06376159936189651,-0.012676701880991459,-0.03708507493138313,0.07726968824863434,-0.05236043035984039,-0.005085891578346491,0.020348690450191498,-0.036083467304706573,0.07842514663934708,-0.035318754613399506,0.035430703312158585,0.0017260288586840034,0.0283721424639225,0.062017638236284256,0.06733504682779312,0.021999768912792206,0.012523956596851349,-0.020587937906384468,-0.06769318133592606,-0.07776947319507599,0.06140723451972008,-0.016408344730734825,-0.03437461704015732,-0.030378317460417747,-0.0029691699892282486,0.05632312595844269,-0.006651447154581547,-0.034969400614500046,-0.05095769092440605,0.06818561255931854,0.027616536244750023,0.04370446875691414,0.043309688568115234,0.0075735123828053474,0.06195943057537079,-0.017856113612651825,0.03604264184832573,0.02607879228889942,0.04596857354044914,0.04666964337229729,-0.018982062116265297,-0.04871491715312004,-0.08268854767084122,0.0018963570473715663,0.05407470092177391,0.033487576991319656,0.03187762573361397,-0.07395399361848831,-0.04635642096400261,0.06063145771622658,0.015610167756676674,-0.04356062039732933,-0.05732809752225876,-0.07395949214696884,0.03546905890107155,-0.04928963631391525,0.02813178114593029,0.0423816479742527,0.05068158358335495,-0.012513155117630959,-0.02578149363398552,0.023459361866116524,-0.054113395512104034,-0.03676031902432442,-0.014798210002481937,-0.07269617915153503,-0.05037476494908333,0.0424029678106308,-0.007671271450817585,0.07776989787817001,0.08405184745788574,0.046025991439819336,0.030822861939668655,-0.01762426272034645,0.017756102606654167,0.05438930168747902,0.013768719509243965,-0.04183042049407959,0.014832890592515469,-0.04062836244702339,0.03944052755832672,0.005884717684239149,0.02747923880815506,-0.08224300295114517,0.057675234973430634,0.018271978944540024,0.030566059052944183,-0.008041171357035637,0.06708402186632156,0.006688784342259169,-0.07522951066493988,0.053825125098228455,0.005775907076895237,0.03242185339331627,0.026477854698896408,0.02584270015358925,-0.038816899061203,0.036704786121845245,0.016777485609054565,-0.04286859929561615,-0.08024346828460693,-0.0021219663321971893,-0.0012648104457184672,-0.048299554735422134,0.0031462511979043484,0.00995735265314579,-0.04243002459406853,-0.08263016492128372,-0.01792394369840622,0.012914422899484634,0.04066663980484009,0.028496218845248222,0.03596589341759682,0.005004372447729111,0.01182947214692831,-0.03148574382066727,0.06823784112930298,0.05132274329662323,-0.03135257959365845,0.07097729295492172,-0.02671496756374836,-0.05584053695201874,-0.0716179683804512,-0.024592749774456024,-0.025892337784171104,-0.02855345793068409,0.03614525496959686,0.05117101967334747,0.03138519078493118,0.02667994610965252,-0.055685367435216904,-0.018687397241592407,-0.06927470117807388,-0.024277416989207268,0.07346219569444656,0.010270385071635246,0.05601029843091965,0.027970537543296814,0.006294949911534786,0.05619702488183975,-0.08002796769142151,0.07704033702611923,-0.02191751077771187,0.08594425767660141,0.013654406182467937,0.029172072187066078,-0.011078995652496815,0.014644917100667953,0.04361351951956749,0.009852465242147446,0.015992317348718643,0.037674758583307266,0.06683863699436188,-0.043828919529914856,0.06456698477268219,0.049740005284547806,-0.06561079621315002,-0.06873484700918198,-0.038179848343133926,-0.008881993591785431,-0.0769963189959526,-0.03851517662405968,0.05574484542012215,-0.004479545634239912,0.013556623831391335,0.011710279621183872,-0.06038864329457283,0.07272472977638245,0.0760948583483696,-0.07610765844583511,0.0021809302270412445,0.009552104398608208,0.034999266266822815,-0.040135256946086884,-0.052858345210552216,0.06287592649459839,0.060385506600141525,-0.06854774802923203,0.027892425656318665,0.08378864824771881,-0.07503437250852585,0.0630773976445198,0.0016940489877015352,0.006367835681885481,-0.07329501211643219,-0.011647330597043037,-0.028327904641628265,0.03883958235383034,-0.06881406903266907,-0.021113432943820953,-0.007500151172280312,0.07329162210226059,-0.06888823956251144,0.030231459066271782,-0.043174535036087036,0.034706972539424896,-0.013375852257013321,-0.03429555892944336,0.02832587994635105,-0.02790486067533493,0.03787017986178398,-0.0631958469748497,-0.004871767945587635,-0.002600371837615967,0.04678325727581978,0.03453870490193367,-0.015553188510239124,0.01364932768046856,-0.02919882722198963,0.07394853234291077,0.0346342958509922,0.04551335796713829,0.06856676936149597,-0.0019108912674710155,-0.04895726963877678,-0.06107684597373009,0.00727292662486434,0.007719422224909067,0.007647087797522545,0.0034653646871447563,-0.03722202032804489,-0.05034812167286873,0.025477269664406776,-0.002864863956347108,0.002855503698810935,-0.060081612318754196,-0.028168698772788048,0.07147518545389175,0.03140612691640854,-0.029418690130114555,-0.03741069138050079,0.07043733447790146,0.007746141403913498,0.02035353146493435,0.059656184166669846,-0.027086051180958748,-0.001310633379034698,-0.005141803529113531,-0.00977999810129404,-0.007978731766343117,0.015165010467171669,-0.06300397962331772,-0.08163698762655258,0.07185914367437363,0.03979451581835747]},{"id":"nonsilent-violence","vector":[0.024184908717870712,-0.05539287254214287,-0.014664444141089916,0.0051733506843447685,-0.03656543046236038,0.012330610305070877,0.010964826680719852,-0.0758785605430603,0.03456856310367584,-0.01357460580766201,0.039259761571884155,0.0021977785509079695,0.006487800739705563,-0.01468054298311472,-0.05415751412510872,0.011284144595265388,-0.05539664998650551,-0.07544221729040146,-0.035420168191194534,0.04199887439608574,0.01840507797896862,-0.022555841132998466,0.0529484786093235,-0.025988668203353882,0.008808017708361149,-0.0070580472238361835,-0.025251619517803192,-0.04142451286315918,-0.003584335558116436,-0.04366985335946083,0.06450863182544708,-0.021549977362155914,-0.043120626360177994,-0.04558037966489792,0.04304875060915947,0.004749193787574768,-0.061173297464847565,0.05503501370549202,0.04603809118270874,-0.03843614086508751,-0.02655487135052681,0.013972724787890911,0.07661992311477661,-0.034033067524433136,-0.00874209962785244,-0.00041015606257133186,-0.04372502863407135,-0.016883129253983498,0.05600355193018913,0.07214591652154922,0.011115485802292824,-0.034041840583086014,0.044566620141267776,-0.05004807934165001,0.031141091138124466,-0.05024660378694534,0.02859337441623211,0.040786389261484146,0.02161012776196003,-0.07469210773706436,-0.06665361672639847,-0.02270607091486454,-0.04839755967259407,0.013540217652916908,-0.036487773060798645,0.026037735864520073,0.09181574732065201,-0.009234204888343811,0.06660619378089905,-0.0627218559384346,-0.03861762583255768,-0.06433180719614029,-0.010688460431993008,0.021734388545155525,-0.0713464766740799,-0.06524966657161713,0.03817841038107872,-0.05973872169852257,-0.02610618993639946,0.07595193386077881,0.005287532694637775,0.04909278452396393,0.00048141650040633976,0.002868995536118746,-0.055234145373106,0.04731172323226929,-0.026376020163297653,0.04657576605677605,-0.06183651089668274,0.05520697683095932,-0.026401760056614876,0.032559171319007874,-0.026987086981534958,0.04401852935552597,-0.02490239590406418,0.03433653712272644,-0.07444100081920624,-0.04057236388325691,-0.030538611114025116,-0.0292188860476017,-0.08239182084798813,-0.021106287837028503,-0.02046283148229122,0.006239152047783136,-0.04251309856772423,0.042276885360479355,-0.014505687169730663,0.07533437758684158,0.041079964488744736,0.014831696636974812,0.003188467351719737,-0.048060327768325806,0.006570270285010338,-0.04752463102340698,-0.04999593645334244,0.03643739968538284,0.04597202688455582,0.014199700206518173,-0.07651735842227936,0.04651651903986931,-0.009059161879122257,-0.059080567210912704,0.030343368649482727,-0.06023840233683586,-0.03557801619172096,-0.017058556899428368,0.02173355221748352,0.04963333532214165,0.03923574090003967,-0.08241492509841919,-0.057340107858181,-0.04580477625131607,0.01557973027229309,0.04124414920806885,-0.023625202476978302,-0.07730745524168015,0.007645757868885994,-0.06592625379562378,-0.024848807603120804,0.025318514555692673,0.039676979184150696,-0.07829398661851883,0.04292955994606018,0.024464121088385582,-0.007424184586852789,0.023582270368933678,0.049094460904598236,0.06540212780237198,0.04790803790092468,0.025633571669459343,0.007386309560388327,0.015375589020550251,-0.060624148696660995,-0.03459470346570015,-0.007579522673040628,-0.03526858985424042,0.03538107872009277,0.01867283508181572,0.06479902565479279,-0.031661808490753174,-0.013908347114920616,-0.03386904299259186,0.04814736172556877,-0.025278039276599884,0.029911451041698456,0.01500332448631525,-0.034906208515167236,-0.03749411180615425,-0.025382723659276962,0.06939604133367538,-0.05858302116394043,0.01032221969217062,-0.021526673808693886,0.02130044251680374,-0.041319988667964935,0.03974291309714317,-0.06023990362882614,0.08512628078460693,0.07725745439529419,0.07058791071176529,-0.018016180023550987,0.08646172285079956,0.03491857275366783,0.003845289582386613,0.05139918625354767,0.05094744265079498,0.018175501376390457,0.05686438828706741,0.06766742467880249,-0.04693227261304855,-0.006599828135222197,0.029535971581935883,-0.017429186031222343,0.016057122498750687,0.08434494584798813,-0.04076506197452545,-0.03926582634449005,0.022043414413928986,0.0011918877717107534,0.08128435164690018,-0.03558189794421196,0.02375883236527443,0.03294588252902031,0.024126645177602768,-0.050845276564359665,-0.041491154581308365,0.060474347323179245,-0.006246594712138176,0.03842959553003311,0.066900834441185,0.011457515880465508,0.026255689561367035,0.06925398856401443,-0.008127165958285332,0.07348121702671051,0.0074713220819830894,0.008198007941246033,-0.010108225047588348,0.054977137595415115,-0.0038093740586191416,0.05756668373942375,-0.02377726323902607,0.0056625413708388805,-0.053989116102457047,0.06818138062953949,-0.023319466039538383,-0.05739925056695938,0.004458894021809101,0.009002949111163616,-0.007600212935358286,0.0009260510560125113,0.016785545274615288,0.057162169367074966,0.016861747950315475,-0.016024235635995865,0.07501649856567383,0.04712392017245293,0.08027033507823944,0.003311044769361615,-0.07200470566749573,-0.04014132544398308,0.00431196391582489,-0.04548533260822296,-0.007239247672259808,0.024787604808807373,-0.04070046544075012,-0.007195586804300547,0.02528034709393978,0.013096758164465427,-0.02329886704683304,0.04554878547787666,-0.06994452327489853,0.010735951364040375,-0.07498808950185776,-0.005243405699729919,-0.014638093300163746,-0.001049433252774179,-0.06614483147859573,-0.022136854007840157,0.08979911357164383,-0.025157958269119263,-0.005957188084721565,-0.02244066819548607,-0.017115028575062752,-0.022610047832131386,0.022530734539031982,0.028970347717404366,-0.032871220260858536,-0.030858995392918587,-0.02164311893284321,0.06462055444717407,-0.0646294578909874,-0.004627786111086607,-0.03464144468307495,-0.01071210764348507,0.07872900366783142,-0.0373176671564579,0.036061204969882965,-0.03731604665517807,-0.0036394502967596054,0.06914044171571732,0.06077350676059723,0.03762439638376236,0.04304137080907822,-0.05700041726231575,-0.07432425767183304,-0.07706203311681747,0.06149270758032799,-0.022750278934836388,-0.05230116844177246,0.007914776913821697,-0.027343353256583214,0.04089323803782463,0.0010279848938807845,-0.039812181144952774,-0.04541155323386192,0.04430471360683441,0.030780509114265442,0.016403067857027054,0.044441983103752136,-0.038537245243787766,0.07734101265668869,-0.016713840886950493,0.04774217680096626,0.0002611259405966848,-0.0006929002702236176,0.012701708823442459,0.00866557378321886,-0.027707424014806747,-0.0871191918849945,-0.01792450249195099,-0.0021655717864632607,0.011655056849122047,0.05879812315106392,-0.07552677392959595,-0.06606385856866837,0.0561182014644146,-0.010992304421961308,-0.0441301204264164,-0.06265947222709656,-0.08045341819524765,0.07660027593374252,-0.04305034130811691,-0.04036380350589752,0.0727287232875824,0.0032458887435495853,-0.04389147087931633,-0.012291504070162773,-0.0009939668234437704,-0.06217357516288757,0.005013609305024147,0.011726380325853825,-0.07334154844284058,-0.02728075161576271,0.028904395177960396,0.004548244643956423,0.07930799573659897,0.08618199825286865,0.03247202932834625,0.026214169338345528,-0.0053069801069796085,0.006365148816257715,0.06475947052240372,0.007450983393937349,0.0274453517049551,0.028908755630254745,-0.03683088347315788,0.04774962365627289,-0.03278025612235069,0.04342750832438469,-0.088974229991436,0.049472033977508545,-0.01454397477209568,0.024977074936032295,-0.002416724106296897,0.07756105810403824,-0.011299249716103077,-0.06904633343219757,-0.006177668925374746,-0.006094521842896938,0.030886003747582436,-0.009261040948331356,0.02568770758807659,-0.0348818339407444,0.02886832319200039,0.04368264973163605,-0.056476857513189316,-0.05795964226126671,-0.021596664562821388,-0.04760182276368141,-0.0634218156337738,0.001189325819723308,0.046537768095731735,-0.06462973356246948,-0.08283146470785141,-0.021730780601501465,-0.0028511243872344494,0.019818661734461784,-0.033100634813308716,0.04657962545752525,-0.0017421970842406154,0.02413039468228817,-0.04868564009666443,0.05414348095655441,0.054117683321237564,-0.01552549283951521,0.05501347780227661,-0.030417943373322487,-0.037756726145744324,-0.04689817503094673,-0.07118557393550873,-0.013306518085300922,-0.010494653135538101,0.014858094044029713,0.060076754540205,0.04639483243227005,0.05572953447699547,-0.05019967630505562,-0.054462138563394547,-0.07104957848787308,-0.03753020614385605,0.060635969042778015,-0.012889010831713676,0.06466598808765411,-0.02093823067843914,-0.04013356193900108,0.06493138521909714,-0.08174578845500946,0.07840024679899216,-0.05314158648252487,0.0672973170876503,0.010252377949655056,0.022044997662305832,-0.01817954331636429,0.008255509659647942,0.04383949935436249,0.07013661414384842,0.0013645460130646825,0.08709710836410522,0.025753358379006386,-0.04073815047740936,0.024193203076720238,0.039253443479537964,-0.07097110152244568,-0.07321573048830032,-0.05165352672338486,-0.01940586231648922,-0.06019895151257515,-0.047676678746938705,-0.0011709271930158138,-0.0328984372317791,0.035993725061416626,-0.008667848072946072,-0.05421196296811104,0.04855489730834961,0.07216593623161316,-0.07651819288730621,-0.001535750925540924,-0.05002155527472496,0.01834375411272049,-0.02876424789428711,-0.05310386046767235,0.05504791811108589,0.02820315584540367,-0.07673870027065277,0.045712150633335114,0.08767993003129959,-0.06466168165206909,0.0708746463060379,-0.0057951780036091805,0.024197345599532127,-0.030986813828349113,0.026117762550711632,-0.011053219437599182,-0.019634291529655457,-0.08046424388885498,-0.021218447014689445,0.03188707306981087,0.06245056167244911,-0.053666580468416214,-0.005313120316714048,-0.060262616723775864,-0.014876190572977066,0.004530444275587797,0.0034748995676636696,0.03045528195798397,-0.025735586881637573,0.016793781891465187,-0.05022266134619713,-0.054226022213697433,0.035330746322870255,0.03870771825313568,-0.005889164283871651,0.015781885012984276,-0.010978438891470432,0.02209640108048916,0.07160644978284836,0.024700378999114037,0.042116887867450714,0.06901926547288895,-0.014783408492803574,-0.019211068749427795,-0.018868114799261093,0.02154742367565632,-0.014860979281365871,0.00692448066547513,0.03454582020640373,-0.045500822365283966,-0.05656721442937851,0.0027658643666654825,-0.020447134971618652,-0.06856726855039597,-0.05997372418642044,0.03260369971394539,0.07842987775802612,-0.008593369275331497,0.012120915576815605,-0.07274774461984634,0.08902626484632492,-0.061804771423339844,0.02520703338086605,0.05677125230431557,-0.03445552662014961,0.024026766419410706,-0.03620567172765732,0.013352307491004467,0.027625201269984245,0.030545132234692574,-0.08439668267965317,-0.06812858581542969,0.04948790371417999,0.057563383132219315]},{"id":"note-to-self","vector":[0.016478372737765312,-0.01042405515909195,-0.04106856510043144,0.04490821808576584,-0.03846288472414017,0.040175385773181915,0.04091561213135719,-0.071456678211689,-0.008388970047235489,0.02573719248175621,0.04356807470321655,0.01926051825284958,-0.037228744477033615,0.006430173292756081,-0.059007979929447174,0.028608903288841248,-0.053631484508514404,-0.07361958175897598,-0.04514468461275101,0.06569363176822662,0.002808371325954795,-0.014926670119166374,0.046711817383766174,-0.049205031245946884,0.030540600419044495,-0.022700129076838493,-0.0015984312631189823,0.01237486395984888,-0.05225450173020363,-0.04386201500892639,0.04140672832727432,-0.046795301139354706,-0.040474869310855865,-0.04126589745283127,0.04187173768877983,0.014808022417128086,-0.052529461681842804,0.04541213810443878,0.04029034450650215,-0.04924368858337402,0.019808506593108177,-0.0004424095095600933,0.06137897074222565,-0.06084243580698967,-0.003977680113166571,0.015985792502760887,-0.03886278718709946,0.022755928337574005,0.013228806667029858,0.06068798899650574,-0.010718111880123615,-0.026593374088406563,0.037931472063064575,-0.02402438595890999,0.018689263612031937,-0.05101830139756203,0.021717889234423637,0.04379471391439438,0.011467398144304752,-0.06716205179691315,-0.0614478625357151,-0.022592678666114807,-0.04954901337623596,0.00695843854919076,-0.002761928364634514,0.04782913625240326,0.08982574194669724,0.013933662325143814,0.08183872699737549,-0.07335523515939713,-0.034646086394786835,-0.05405856668949127,0.029389725998044014,-0.006656664423644543,-0.07120923697948456,-0.04792843386530876,0.06375205516815186,-0.01796986535191536,-0.02857944741845131,0.04072625935077667,-0.001984111964702606,0.038481004536151886,0.017180513590574265,-0.04495922848582268,-0.052306801080703735,0.059059496968984604,-0.00047184270806610584,0.05749845132231712,-0.07427919656038284,0.051477860659360886,-0.042430244386196136,0.0535801462829113,-0.0061722202226519585,0.027560820803046227,-0.017885468900203705,0.05863901600241661,-0.06415613740682602,0.011381332762539387,-0.04073640704154968,-0.06413643807172775,-0.08475194871425629,0.044027797877788544,-0.011989949271082878,0.01727519929409027,-0.029064299538731575,0.00947571825236082,-0.04430023208260536,0.055725835263729095,0.038428232073783875,0.01841820776462555,-0.02501554973423481,-0.04898595064878464,0.025965694338083267,-0.07906895130872726,-0.038747530430555344,0.007768310606479645,-0.0031516903545707464,0.058882299810647964,-0.07398466765880585,0.04090471193194389,-0.01654428243637085,-0.07691504806280136,0.030948473140597343,-0.06800339370965958,-0.026373129338026047,-0.0087764086201787,-0.0374065563082695,0.05383565276861191,0.024793047457933426,-0.05985831841826439,-0.06568752974271774,-0.06003320962190628,-0.041431974619627,0.038294628262519836,-0.022572528570890427,-0.07023102790117264,-0.00991512555629015,-0.057822659611701965,-0.03465854376554489,0.018210651353001595,0.011750798672437668,-0.0545571893453598,0.044455595314502716,0.05146325007081032,-0.038347188383340836,0.037325214594602585,0.06744702905416489,0.005553799215704203,0.010937302373349667,0.0683814287185669,-0.03678366541862488,-0.0019773459061980247,-0.06652969866991043,-0.026726875454187393,-0.02958512492477894,-0.030720019713044167,0.05156400799751282,-0.054569490253925323,0.05532817170023918,-0.07085874676704407,-0.017856162041425705,-0.04346261918544769,0.04169965907931328,0.017671357840299606,-0.012697311118245125,0.05537121742963791,0.013197717256844044,-0.0660582184791565,-0.01661548763513565,0.07202580571174622,-0.06231718882918358,0.012708894908428192,0.02231067419052124,0.0477132685482502,-0.019291605800390244,0.03349074721336365,-0.06800202280282974,0.07860541343688965,0.08071551471948624,0.0485939085483551,-0.014709753915667534,0.07542172819375992,0.04258469492197037,0.014485407620668411,0.018610941246151924,0.06879620999097824,-0.0085336584597826,0.028900517150759697,0.05279242992401123,-0.021244682371616364,-0.035676851868629456,0.014946158044040203,-0.03320934996008873,-0.004707346670329571,0.08887472748756409,-0.059701915830373764,-0.009405665099620819,0.011268747970461845,-0.024851012974977493,0.08180724829435349,-0.04190194979310036,0.04001994431018829,0.026102302595973015,0.012805630452930927,-0.04667459800839424,-0.0030895874369889498,0.0035544871352612972,-0.0018517221324145794,0.02805880270898342,0.07857081294059753,0.023035705089569092,0.017467454075813293,0.07549412548542023,0.019904447719454765,0.08068899810314178,0.004050817806273699,-0.042400144040584564,0.012876815162599087,0.05799378082156181,-0.013529696501791477,0.05514853075146675,0.010534120723605156,0.020058589056134224,-0.07318136096000671,0.03997492045164108,-0.060185689479112625,-0.04600819572806358,0.05656309425830841,-0.021802587434649467,0.01960308477282524,-0.0016846091020852327,0.04105164855718613,0.04654476419091225,-0.0001739136059768498,0.028385275974869728,0.07947145402431488,0.036891188472509384,0.05115530639886856,0.003965935204178095,0.004379266873002052,-0.044552307575941086,0.017313562333583832,-0.04073373228311539,-0.011486675590276718,0.020047646015882492,-0.04160846769809723,-0.0004549244185909629,-0.007227926515042782,0.013397686183452606,-0.03511623293161392,0.03730760142207146,-0.067916639149189,0.03832108527421951,-0.06625844538211823,0.01133912056684494,0.02280883863568306,-0.04879530891776085,-0.03348565101623535,-0.0050865523517131805,0.06551972031593323,-0.004010129254311323,0.026723621413111687,-0.00019844542839564383,-0.04666386917233467,-0.013025525957345963,0.03921150788664818,0.03820811212062836,-0.02127128839492798,-0.020870499312877655,-0.0370117649435997,0.06205862760543823,-0.0349150188267231,0.006533795967698097,0.0032749322708696127,-0.02395542524755001,0.08402011543512344,-0.045901212841272354,0.047478269785642624,-0.020055606961250305,-0.014227714389562607,0.07166695594787598,0.06353388726711273,0.041159193962812424,0.04468570277094841,-0.03073592483997345,-0.06043379008769989,-0.06271006911993027,0.021331926807761192,-0.01853627897799015,-0.03530345484614372,-0.017881114035844803,-0.0023537869565188885,0.06374692171812057,-0.029628146439790726,-0.005434743594378233,-0.0490083247423172,0.06803419440984726,0.0490090548992157,0.01597163826227188,0.04048125073313713,0.007341298740357161,0.07149678468704224,-0.021453775465488434,0.025647154077887535,0.03784896433353424,0.016320127993822098,0.02127876877784729,-0.005949017591774464,-0.039180219173431396,-0.08365100622177124,-0.014695437625050545,0.009484216570854187,0.0022703807335346937,0.0703311637043953,-0.08573848754167557,-0.028599465265870094,0.07292721420526505,0.034625813364982605,-0.02798105590045452,-0.06852825731039047,-0.08469602465629578,0.06489679962396622,-0.032466620206832886,-0.041090790182352066,0.025870658457279205,0.0669831931591034,-0.040612492710351944,0.005215464625507593,-0.012687805108726025,-0.058452051132917404,-0.016241831704974174,-0.04216890037059784,-0.06634440273046494,-0.012178505770862103,0.050024181604385376,-0.005908304359763861,0.08300447463989258,0.085783950984478,0.039152007550001144,-0.0014861742965877056,-0.03746334835886955,0.011787735857069492,0.03461103141307831,0.010563035495579243,0.05993564799427986,0.046291615813970566,-0.02150104194879532,0.03700527176260948,0.007770282216370106,0.04849698767066002,-0.08585494011640549,0.07275792211294174,0.035027001053094864,0.035868383944034576,-0.018166547641158104,0.0597786121070385,-0.03478928282856941,-0.0745123103260994,-0.030656879767775536,0.008898967877030373,0.033434342592954636,0.013232490979135036,0.031912870705127716,-0.05177082121372223,0.024499155580997467,0.020383648574352264,-0.04852293059229851,-0.058147892355918884,-0.025293389335274696,-0.02508694864809513,-0.05304049327969551,-0.015261207707226276,0.04033274203538895,-0.03776036202907562,-0.0798824355006218,-0.00357942096889019,-0.01671537198126316,0.024237623438239098,0.02150687202811241,0.02528250589966774,0.005972935352474451,0.04898245632648468,-0.04735938087105751,0.05761155113577843,0.06321720778942108,-0.009405553340911865,0.06489044427871704,-0.06173747405409813,-0.015349628403782845,-0.06328826397657394,-0.038828495889902115,-0.01836680993437767,-0.006235725246369839,0.04340733215212822,0.038902271538972855,0.04536495357751846,0.04667500779032707,-0.0640680119395256,-0.05763568729162216,-0.07887334376573563,-0.02428450994193554,0.06929482519626617,0.0009319734526798129,0.07146047800779343,0.011065817438066006,-0.017438936978578568,0.06265940517187119,-0.07480151206254959,0.07008793950080872,-0.04478089511394501,0.08716610074043274,-0.030344754457473755,0.011094346642494202,0.03384838625788689,-0.00942413043230772,-0.007213976234197617,0.05402456223964691,-0.025681259110569954,0.07125234603881836,0.05464763566851616,-0.04124179109930992,0.016727296635508537,0.04513609781861305,-0.06450420618057251,-0.067095085978508,-0.03793224319815636,-0.021653950214385986,-0.07621029019355774,-0.06704813241958618,-0.001008583465591073,-0.048270925879478455,0.06209420785307884,0.014961392618715763,-0.05450287088751793,0.04585541412234306,0.08066601306200027,-0.07405629009008408,0.025301910936832428,-0.04398805648088455,0.03396211937069893,-0.03943020850419998,-0.023609966039657593,0.059073880314826965,0.056948065757751465,-0.05768518149852753,0.03915594145655632,0.08598189800977707,-0.07863302528858185,0.06719261407852173,0.004172410350292921,0.005317308008670807,-0.05583984777331352,0.026099689304828644,-0.010721353814005852,-0.03917400538921356,-0.06851184368133545,-0.0027407279703766108,-0.020504646003246307,0.05687582492828369,-0.057148367166519165,0.03351373225450516,-0.024771401658654213,-0.006756577640771866,0.028658226132392883,-0.0048533775843679905,0.027504833415150642,-0.050827424973249435,0.03955948352813721,-0.06646653264760971,-0.050355181097984314,0.009629689157009125,0.04052048549056053,0.022680729627609253,-0.003805933054536581,0.029839811846613884,0.007908391766250134,0.07158919423818588,0.01780114695429802,0.005652515217661858,0.06476984918117523,0.022831901907920837,-0.011209308169782162,-0.06612582504749298,0.009809788316488266,-0.027255872264504433,0.051384590566158295,0.05462230369448662,-0.054273393005132675,-0.054967839270830154,-0.02215193398296833,0.034851234406232834,-0.05450671166181564,-0.0621875561773777,0.010169743560254574,0.07659848034381866,0.01859695091843605,0.024916986003518105,-0.06246301904320717,0.07584606856107712,-0.027892539277672768,0.04199087992310524,0.0664127841591835,-0.03446260094642639,0.023838121443986893,-0.029197240248322487,0.003929595462977886,-0.0029530904721468687,0.008858765475451946,-0.0711248517036438,-0.07106930762529373,0.022228633984923363,0.019966302439570427]},{"id":"nothing-to-lose","vector":[0.012187699787318707,-0.049250077456235886,0.0008765466627664864,0.019328778609633446,0.009072527289390564,0.027049317955970764,0.04214400425553322,-0.05414561182260513,0.020079828798770905,-0.022571712732315063,0.06581778079271317,-0.017048632726073265,-0.024935543537139893,0.07036928087472916,-0.06261440366506577,-0.06092768907546997,-0.009810992516577244,-0.06666833907365799,-0.01269691251218319,0.002157904440537095,0.05010394752025604,-0.025851598009467125,0.05406320467591286,-0.04699007794260979,-0.0021355445496737957,-0.014803380705416203,-0.03570951893925667,0.019188690930604935,-0.06594965606927872,-0.052373047918081284,0.031409457325935364,-0.03003939613699913,-0.06427078694105148,0.007090714294463396,0.044021718204021454,0.0006025846814736724,-0.05136946588754654,0.005735144484788179,0.0702679455280304,-0.07360311597585678,-0.01201942004263401,-0.02258739061653614,0.06447990983724594,0.012664011679589748,-0.0032769101671874523,-0.005359895061701536,-0.06749657541513443,-0.012086765840649605,0.05043740198016167,0.05540156364440918,0.014564624056220055,-0.07908199727535248,0.024767281487584114,-0.03210804611444473,-0.004853833466768265,-0.009703326039016247,0.07846459001302719,-0.002820458495989442,0.058129046112298965,-0.07800470292568207,-0.06651179492473602,-0.00835092831403017,-0.05103331431746483,-0.019235912710428238,-0.048491884022951126,0.004749236162751913,0.07667151093482971,0.03979707136750221,0.0918198898434639,-0.03610129654407501,-0.0108498465269804,-0.017966844141483307,-0.008769826032221317,0.013285418041050434,-0.027664273977279663,-0.0640825405716896,-0.0025293584913015366,0.008030727505683899,-0.01958855241537094,0.04373469576239586,0.018603481352329254,0.037890028208494186,-0.0037712056655436754,-0.04274260252714157,-0.03361731022596359,0.05354652553796768,-0.005723993759602308,0.0707717314362526,-0.07343443483114243,0.02358326129615307,-0.03087613359093666,-0.02156883105635643,-0.06574482470750809,0.00910256989300251,-0.03827092424035072,0.054218146950006485,-0.0763523057103157,0.005671215709298849,-0.025990765541791916,-0.048550546169281006,-0.08694547414779663,-0.013573662377893925,-0.0449901707470417,0.04953896626830101,-0.018086666241288185,0.02447996288537979,-0.06380981206893921,0.06537503004074097,0.08810673654079437,0.011536655016243458,-0.03822708502411842,-0.07429619133472443,0.007095078006386757,-0.04892586171627045,-0.04913559928536415,0.00023540151596534997,0.0045733763836324215,0.047171249985694885,-0.07531794905662537,0.03594166040420532,-0.019976621493697166,-0.08467841148376465,0.014212550595402718,-0.07495544105768204,-0.03200829029083252,0.01905226707458496,-0.040536049753427505,0.03183173015713692,0.04358924552798271,-0.04517887532711029,-0.03851078823208809,-0.062216177582740784,-0.029935145750641823,0.01942301355302334,-0.03177471458911896,-0.07469908148050308,-0.010432538576424122,-0.04025685787200928,-0.013131054118275642,0.03089822828769684,0.0018671901198104024,-0.061001233756542206,0.049718473106622696,0.048943985253572464,-0.022825149819254875,-0.008737701922655106,0.015507225878536701,0.016705388203263283,0.0036479979753494263,0.050150930881500244,-0.017779691144824028,0.0012694633333012462,-0.07601594179868698,0.013766285963356495,-0.04965034872293472,-0.0017243659822270274,0.04878983274102211,-0.07095234841108322,0.005968916695564985,-0.06267919391393661,-0.007628619205206633,0.050873517990112305,0.05061957240104675,-0.03349406272172928,0.02929696813225746,0.03934711962938309,0.0045631215907633305,-0.07491932064294815,0.01050708070397377,0.06335566937923431,-0.05921550840139389,-0.03560595586895943,-0.017822491005063057,0.06450903415679932,-0.008778984658420086,0.0378706157207489,-0.05361928045749664,0.0803467184305191,0.08309976756572723,0.07437966018915176,-0.0017598574049770832,0.08900361508131027,0.03327328339219093,-0.005282362923026085,0.027552425861358643,0.05870882049202919,0.011052941903471947,0.05124164745211601,0.0855771154165268,-0.03287519887089729,-0.028137560933828354,0.0021758070215582848,-0.03672444075345993,0.010099519044160843,0.07894119620323181,-0.0689978152513504,-0.04111199826002121,-0.02604718692600727,-0.03599747270345688,0.08476080745458603,0.03614256531000137,0.0255740899592638,0.04987002909183502,0.0005978467524982989,-0.015646858140826225,-0.017321428284049034,0.007308868691325188,-0.008457140065729618,0.03136081248521805,0.08122044056653976,-0.006592730060219765,-0.06253897398710251,0.059880319982767105,0.0004869505937676877,0.03916758671402931,-0.03819943964481354,-0.02005402371287346,-0.007499596569687128,0.05393411964178085,-0.05234399810433388,0.0010250897612422705,-0.040666963905096054,0.032391034066677094,-0.06127060949802399,0.027624405920505524,-0.01166235376149416,-0.029359377920627594,-0.013838853687047958,0.043185289949178696,0.04814864322543144,-0.022315509617328644,0.03576267138123512,0.05234110727906227,0.015877632424235344,0.033027440309524536,0.06873125582933426,0.03112577646970749,0.06074763834476471,0.04410146549344063,0.0556621253490448,-0.06632667779922485,-0.020071974024176598,0.03243713825941086,-0.03356475755572319,0.006820328999310732,-0.03336774557828903,0.017081543803215027,-0.000014751733033335768,-0.026576168835163116,-0.025853659957647324,0.03162020072340965,-0.07075531780719757,0.02709352597594261,-0.0700179859995842,0.00617311941459775,-0.010309227742254734,-0.039996277540922165,-0.040176570415496826,-0.02607482112944126,0.039993878453969955,-0.01364967506378889,-0.044175855815410614,0.013807049952447414,-0.04284019395709038,-0.013321925885975361,0.009728300385177135,0.03038116730749607,-0.025218529626727104,0.0055947438813745975,-0.014158644713461399,0.06139262020587921,-0.04819611832499504,0.00776818348094821,-0.02301812544465065,0.011480417102575302,0.08264113962650299,-0.03135422244668007,0.032060038298368454,-0.020452527329325676,-0.009418180212378502,0.057400450110435486,0.08481746166944504,0.041065264493227005,0.003530432004481554,-0.015951480716466904,-0.046208228915929794,-0.08277437090873718,0.03875679522752762,-0.04350718855857849,-0.0243985615670681,-0.015953760594129562,-0.008649139665067196,0.06335031986236572,-0.011035365052521229,0.014256488531827927,-0.037917930632829666,0.07085588574409485,0.01982835680246353,0.0638890191912651,0.0500703863799572,0.0005029159365221858,0.06903955340385437,0.00224148016422987,0.04636896774172783,0.03024078719317913,-0.011821107938885689,0.056059326976537704,0.025128059089183807,-0.0443158820271492,-0.06659767031669617,-0.00792993325740099,-0.0008838793728500605,0.0074705686420202255,0.06705816090106964,-0.07334043085575104,-0.047689247876405716,0.05167397856712341,-0.02485007420182228,-0.048190854489803314,-0.0340905636548996,-0.07141506671905518,0.019657324999570847,-0.040875501930713654,-0.02723260596394539,0.03410515561699867,0.024906625971198082,0.022404324263334274,0.003096208907663822,0.039794016629457474,-0.0597488135099411,-0.011511889286339283,-0.04562448710203171,-0.07325323671102524,0.009289137087762356,0.049702536314725876,-0.008512210100889206,0.06892731040716171,0.08416422456502914,0.005845547188073397,0.007757115643471479,-0.04102754965424538,0.020874066278338432,0.08348014205694199,0.020873920992016792,-0.01888081058859825,0.038229893893003464,-0.014877581037580967,0.0589287206530571,0.005301794968545437,0.03603425621986389,-0.07213877886533737,0.07800407707691193,0.058894071727991104,0.03742906078696251,-0.01254268828779459,0.07032203674316406,-0.02796042524278164,-0.07651916891336441,-0.01500720251351595,0.03310023993253708,0.042698949575424194,0.03215616196393967,0.045612115412950516,-0.04952600598335266,-0.047041088342666626,0.0011320608900859952,-0.05191994458436966,-0.011560053564608097,-0.03300671651959419,-0.008616202510893345,-0.07368704676628113,0.020585497841238976,0.03784806281328201,-0.07876688987016678,-0.07013875991106033,-0.014489044435322285,0.009895644150674343,0.028664464130997658,0.01817035861313343,0.03693888336420059,0.04321318492293358,0.06178862228989601,-0.06051786616444588,0.02415371499955654,0.053883183747529984,-0.03903103247284889,0.07722820341587067,-0.016902310773730278,-0.048748549073934555,-0.054099783301353455,-0.015829458832740784,0.004282072186470032,0.005739226471632719,-0.01198379322886467,0.07085292041301727,0.045404866337776184,0.06747748702764511,-0.07905271649360657,-0.04903886839747429,-0.05278609320521355,-0.04641116410493851,0.07555337995290756,0.028597835451364517,0.0629156157374382,-0.02303953841328621,-0.015412015840411186,0.04135004058480263,-0.05947622284293175,0.07708007097244263,-0.04974508658051491,0.08169268816709518,-0.025067994371056557,0.0011583660962060094,-0.02306768111884594,0.02634557895362377,-0.01795278489589691,0.035637062042951584,0.0014628390781581402,0.07809187471866608,0.04965514689683914,-0.014817052520811558,0.008193762972950935,-0.04501980543136597,-0.05549496039748192,-0.0530775785446167,-0.06688826531171799,-0.05541612207889557,-0.038588158786296844,-0.04889403656125069,0.018423983827233315,-0.04429560899734497,-0.0001310052612097934,-0.0011573054362088442,-0.013202894479036331,0.034931160509586334,0.07789541780948639,-0.05454612895846367,0.0329115055501461,0.050768449902534485,0.027375804260373116,-0.037997759878635406,-0.03009253740310669,0.07182294875383377,0.06904400140047073,-0.07500289380550385,0.07819975167512894,0.0832023099064827,-0.08280210196971893,0.04752176254987717,-0.05425918102264404,0.016488688066601753,-0.057566720992326736,-0.0017991814529523253,-0.002007385017350316,0.041031140834093094,-0.07772762328386307,-0.005505830515176058,0.031470753252506256,0.04245898500084877,-0.08128925412893295,0.014176959171891212,-0.01969320699572563,-0.033713653683662415,0.03960903361439705,-0.03129856288433075,0.039054546505212784,-0.0074155074544250965,0.04724191129207611,-0.057020001113414764,-0.0573391392827034,0.023874616250395775,0.07754634320735931,-0.008968532085418701,0.005434694234281778,0.04040610045194626,0.03804023936390877,0.04188725724816322,-0.009207786060869694,0.027067655697464943,0.06770457327365875,-0.0361831896007061,-0.01259909849613905,-0.030107485130429268,0.0038856512401252985,-0.027058221399784088,0.025155730545520782,0.02400515414774418,-0.03427603095769882,-0.06931713968515396,-0.0012744131963700056,0.023731505498290062,-0.03251061215996742,-0.06832912564277649,0.036712948232889175,0.0627346783876419,0.01453706156462431,0.06426640599966049,-0.057413309812545776,0.07487178593873978,-0.03713716194033623,-0.012950334697961807,0.07553476840257645,-0.03153892233967781,0.021637143567204475,-0.0069723594933748245,-0.002866900060325861,0.07308275252580643,0.035905301570892334,-0.06347191333770752,-0.068655826151371,0.03395095467567444,0.009199411608278751]},{"id":"one-of-six","vector":[0.023319192230701447,-0.044465456157922745,-0.005226947367191315,0.019777914509177208,-0.04162012040615082,-0.011773409321904182,0.014188716188073158,-0.055287789553403854,0.024000167846679688,0.011747115291655064,0.04057053104043007,-0.020297478884458542,-0.00008406171400565654,0.05787436664104462,-0.06158065050840378,-0.026442131027579308,-0.0419037863612175,-0.07271798700094223,-0.02717209793627262,0.03367539495229721,0.028939098119735718,-0.02245895378291607,0.05004892498254776,-0.05732610821723938,0.0002441129181534052,-0.05445244908332825,-0.033063001930713654,-0.03013010323047638,-0.04839647561311722,-0.039451051503419876,0.07682906091213226,-0.014132064767181873,-0.025921612977981567,-0.047018565237522125,0.04167097434401512,0.018172360956668854,-0.04814867675304413,0.02872932143509388,0.05964573845267296,-0.03398248553276062,-0.03486208990216255,0.02682541310787201,0.07191741466522217,-0.038826096802949905,-0.04921867698431015,-0.005044959019869566,-0.04793708398938179,0.009273829869925976,0.06645897030830383,0.06281184405088425,-0.03699886053800583,-0.018285278230905533,0.05459704250097275,-0.025090424343943596,0.04456855356693268,-0.043680526316165924,0.06730324029922485,0.03806357458233833,0.0634908452630043,-0.07730207592248917,-0.0657222643494606,-0.04011921212077141,-0.05079665407538414,0.0071881175972521305,-0.03299323096871376,-0.013429605402052402,0.08525398373603821,0.018639443442225456,0.07816668599843979,-0.042821258306503296,-0.004236757755279541,-0.023303218185901642,0.020888786762952805,0.01399902068078518,-0.06207606568932533,-0.05980023369193077,0.04778623953461647,-0.04889081045985222,-0.025075113400816917,0.05732411891222,-0.002179404953494668,0.05319702997803688,-0.01284598745405674,0.015996715053915977,-0.033071938902139664,0.054133716970682144,-0.030707813799381256,0.052264951169490814,-0.05249157175421715,0.0871296301484108,-0.04437550529837608,-0.038611870259046555,-0.05016646906733513,0.03847317770123482,-0.038096219301223755,0.009961364790797234,-0.07555514574050903,0.0050435555167496204,-0.04241672903299332,-0.026455853134393692,-0.06766845285892487,0.02381412498652935,-0.004245786461979151,0.02052532136440277,-0.02203701250255108,0.05287963151931763,-0.05063839629292488,0.04679958149790764,0.0755886361002922,0.03284520283341408,-0.04283276945352554,-0.07666479051113129,0.00008956885722000152,-0.0018507495988160372,-0.03989769145846367,0.03444062918424606,0.028801660984754562,0.023045014590024948,-0.06802292913198471,0.06919252872467041,-0.07087434083223343,-0.0699857845902443,0.00817152764648199,-0.024128908291459084,-0.0353386253118515,-0.03296266868710518,-0.041090499609708786,0.008608333766460419,0.06763368844985962,-0.07816160470247269,-0.05000634491443634,-0.036483194679021835,0.010524866171181202,0.05460316315293312,-0.026975270360708237,-0.0705338567495346,0.004545832984149456,-0.058848947286605835,-0.014484749175608158,0.03056112304329872,0.011906290426850319,-0.05633791536092758,0.0399046428501606,0.06401662528514862,-0.0008206794736906886,0.06965645402669907,0.0373365581035614,0.041538506746292114,0.008698435500264168,0.06237266957759857,0.0021809672471135855,-0.0034229420125484467,-0.06719492375850677,-0.044890884310007095,-0.04058941826224327,-0.03544970974326134,0.04950399324297905,-0.03800463303923607,0.06594417244195938,-0.07031340152025223,-0.04430697113275528,-0.020208699628710747,0.05361436679959297,0.008851953782141209,0.0351087786257267,0.012618745677173138,-0.054760854691267014,-0.04985545575618744,0.042538948357105255,0.060447655618190765,-0.021429499611258507,0.0071689533069729805,-0.035611361265182495,0.024968741461634636,-0.02740720845758915,0.032891225069761276,-0.06482969969511032,0.07031481713056564,0.07032906264066696,0.07181315869092941,-0.022151701152324677,0.08636348694562912,-0.012584947980940342,0.018456926569342613,0.0312686488032341,0.048291947692632675,0.018122714012861252,0.05465969443321228,0.03885493054986,-0.058024678379297256,-0.023111693561077118,0.004884978756308556,-0.02930372953414917,0.01331925205886364,0.0724356397986412,-0.05818159133195877,-0.03571051359176636,-0.0045982529409229755,0.02928340435028076,0.0810420885682106,-0.0031532803550362587,0.035751551389694214,0.014430530369281769,0.003932644613087177,-0.03610338643193245,-0.03321158513426781,0.01406160183250904,0.011095686815679073,0.034969307482242584,0.07032211124897003,-0.010980971157550812,0.023382073268294334,0.06319478899240494,-0.025986947119235992,0.04756467044353485,0.00443575344979763,-0.0251981969922781,0.00759491603821516,0.06753307580947876,0.0024564950726926327,0.05668067932128906,-0.02521929144859314,-0.060319408774375916,-0.06781167536973953,0.03603323549032211,-0.039683785289525986,-0.04042079299688339,-0.004460074007511139,0.04172516241669655,0.043284520506858826,-0.014046533033251762,0.04413524642586708,0.06707820296287537,-0.0010734538082033396,0.038952600210905075,0.021055789664387703,0.05644002929329872,0.04706759750843048,-0.004862750414758921,-0.05317075550556183,-0.02403431572020054,-0.004420074634253979,-0.02083750069141388,0.002863931003957987,-0.011685041710734367,-0.05151525139808655,0.006126778665930033,0.03836734965443611,0.05273019149899483,-0.025878088548779488,0.03617868945002556,-0.0694812536239624,0.01429064106196165,-0.05492483079433441,0.023090621456503868,0.01388991717249155,0.00786132737994194,-0.07341206818819046,-0.020315734669566154,0.08792731165885925,-0.026575973257422447,-0.011777665466070175,-0.010029726661741734,-0.01859058067202568,-0.016171196475625038,0.02515639178454876,0.023330941796302795,-0.03783224895596504,-0.02345862053334713,-0.02995956316590309,0.07099389284849167,-0.06596264988183975,0.0028362562879920006,-0.020263247191905975,-0.0023639313876628876,0.0833996906876564,-0.04543332755565643,0.04094966873526573,-0.015596597455441952,-0.02821648120880127,0.07320215553045273,0.07479411363601685,-0.003460640087723732,-0.00860540196299553,-0.06274765729904175,-0.06302691251039505,-0.040337543934583664,0.03858164697885513,-0.03362167254090309,-0.03259506821632385,-0.03654848411679268,-0.02953576110303402,0.06107505410909653,-0.007225092966109514,-0.02289569564163685,-0.048170607537031174,0.05884680896997452,0.03181235119700432,0.04207685589790344,0.046670764684677124,-0.02294154092669487,0.06476110965013504,-0.02323395386338234,0.03027014248073101,-0.00823899544775486,-0.038183826953172684,0.0399504117667675,0.0045813643373548985,0.030656008049845695,-0.08201269805431366,-0.006738306954503059,0.013131257146596909,-0.00038538413355126977,0.037692438811063766,-0.06464322656393051,-0.05690598487854004,0.05608655884861946,-0.022925151512026787,-0.03926955163478851,-0.06541702151298523,-0.08702605962753296,0.06439998745918274,-0.05154762417078018,-0.026569565758109093,0.06087150052189827,-0.04641935974359512,-0.03841505944728851,-0.02019173838198185,0.046385325491428375,-0.03652747720479965,-0.025804288685321808,-0.04595567658543587,-0.06794236600399017,-0.05321773514151573,0.05822350084781647,-0.04110085964202881,0.07273261994123459,0.07943616062402725,0.05445857718586922,0.01670985482633114,0.024293599650263786,0.03367774188518524,0.06364993005990982,-0.004674449097365141,0.028128212317824364,0.028286263346672058,-0.048271987587213516,0.04085705056786537,-0.011943532153964043,0.010640439577400684,-0.07822570949792862,0.034754689782857895,-0.027023863047361374,-0.038222115486860275,0.004630346782505512,0.04428105801343918,0.002811099635437131,-0.07538963109254837,0.04280635342001915,0.011552700772881508,0.039043910801410675,0.05182395130395889,-0.0047687687911093235,-0.043023914098739624,0.016715236008167267,0.03520265966653824,-0.023487476631999016,-0.06098406761884689,-0.03859074041247368,-0.05810705944895744,-0.05606858804821968,-0.0010284262243658304,0.0023298102896660566,-0.06336390972137451,-0.07434156537055969,-0.014697504229843616,0.0011440989328548312,-0.02680978551506996,-0.027749573811888695,0.033335525542497635,0.0024901372380554676,0.06234569102525711,-0.05112907290458679,0.06143816187977791,0.04708408936858177,-0.024079710245132446,0.05104808509349823,-0.04159567877650261,-0.021454542875289917,-0.07226094603538513,-0.06402357667684555,-0.04470701888203621,0.01062664296478033,0.04329288750886917,0.06937958300113678,0.04168056696653366,0.025933869183063507,-0.07242534309625626,-0.040535442531108856,-0.05963653698563576,-0.014051972888410091,0.07459278404712677,0.008689073845744133,0.04471955820918083,-0.05403121933341026,0.023757221177220345,0.06659802794456482,-0.07698755711317062,0.08534357696771622,-0.05458788201212883,0.059929344803094864,0.04938698559999466,0.03469749167561531,-0.00298218778334558,-0.00030929327476769686,0.05435061454772949,0.024339694529771805,0.009281821548938751,0.08665112406015396,0.05683528259396553,-0.019795594736933708,0.04943319037556648,0.03964255750179291,-0.06879180669784546,-0.06268945336341858,-0.010990751907229424,-0.009065216407179832,-0.05217289552092552,-0.06285103410482407,0.02664085105061531,-0.02764800377190113,0.028076881542801857,-0.0015000689309090376,-0.03720928728580475,0.040501657873392105,0.07232460379600525,-0.07694374024868011,-0.008897214196622372,-0.0495782271027565,0.037911105901002884,-0.03940538689494133,-0.05228717625141144,0.06448856741189957,0.03196955472230911,-0.0763067752122879,0.02692563086748123,0.08466298878192902,-0.0663023367524147,0.058820940554142,-0.03936653211712837,0.04650057852268219,0.011805735528469086,0.01399958599358797,0.005035740323364735,0.02566400356590748,-0.07278329133987427,0.009969690814614296,0.048967063426971436,0.06740191578865051,-0.06378095597028732,-0.0034589546266943216,-0.04807532578706741,0.01804068125784397,-0.004686009604483843,-0.03511643782258034,0.025741659104824066,-0.05055226385593414,0.012540120631456375,-0.017174558714032173,-0.060703326016664505,0.020980941131711006,0.06740013509988785,0.008816086687147617,0.0229446142911911,0.027847401797771454,0.0395730584859848,0.0591990165412426,0.052263662219047546,0.029258476570248604,0.06253378838300705,-0.03832373768091202,0.015435404144227505,0.0009217438055202365,0.007745086681097746,0.012873990461230278,0.02657189778983593,0.05459612235426903,-0.0424639917910099,-0.05612652748823166,-0.0034178912173956633,-0.03142046928405762,-0.031429365277290344,-0.06776199489831924,0.03383757174015045,0.07366593182086945,-0.0063861822709441185,0.002267661038786173,-0.057731322944164276,0.08005131036043167,-0.026652421802282333,0.0011509520700201392,0.044147711247205734,-0.03524468466639519,0.002433378715068102,-0.03379853069782257,0.02623308263719082,0.07133015245199203,0.04596059024333954,-0.07138267904520035,-0.07517651468515396,0.03827505558729172,0.03271075338125229]},{"id":"original-intent","vector":[0.016293171793222427,-0.05235952138900757,0.027250509709119797,0.0066617378033697605,-0.024943193420767784,0.05767850950360298,0.003457872197031975,-0.07750463485717773,0.060742925852537155,0.028389208018779755,0.040250442922115326,0.019512098282575607,0.021101385354995728,-0.012895585037767887,-0.06222764030098915,0.008802538737654686,-0.07633436471223831,-0.03688298165798187,-0.059179700911045074,-0.010687500238418579,-0.026131831109523773,0.006947589106857777,0.03637474402785301,-0.02447301335632801,0.044213250279426575,-0.02710665389895439,0.006093005649745464,-0.015025502070784569,-0.05199245736002922,-0.03212769329547882,0.07605091482400894,-0.01967126503586769,-0.023357169702649117,-0.01822078414261341,0.059933632612228394,0.04523095488548279,-0.0443149209022522,0.051822513341903687,0.04718049243092537,-0.044582679867744446,0.00330505077727139,0.06125244125723839,0.07836715877056122,-0.04069126024842262,-0.030972126871347427,0.034692469984292984,-0.04352858290076256,0.02563163824379444,0.05564573407173157,0.05047419294714928,0.05397278815507889,-0.036629192531108856,0.020393209531903267,-0.03615517169237137,-0.017291348427534103,0.004891239106655121,0.004562065005302429,0.040309205651283264,0.05466373637318611,-0.06214432045817375,-0.05444779619574547,-0.057228270918130875,-0.04967397823929787,0.024146119132637978,-0.029351243749260902,-0.0291554257273674,0.08180920779705048,0.03552788496017456,0.08135724812746048,-0.06540481001138687,-0.0026500339154154062,-0.040391262620687485,0.01319053117185831,0.038290347903966904,-0.059147514402866364,-0.06858202069997787,0.024571020156145096,0.0039416649378836155,0.033804990351200104,0.056121136993169785,-0.005051359999924898,0.06139567866921425,-0.008756469935178757,-0.021901121363043785,-0.05795976519584656,0.05220732465386391,-0.005987322889268398,0.08120269328355789,-0.03803465515375137,0.06676224619150162,-0.05045299977064133,-0.05064699053764343,-0.05455082654953003,0.051141273230314255,-0.031291086226701736,0.018761608749628067,-0.07125506550073624,-0.042834751307964325,-0.06722714006900787,-0.05581597611308098,-0.06122337654232979,0.0326506644487381,-0.01464330404996872,0.0013030503178015351,-0.03114403411746025,0.03390083834528923,-0.054361410439014435,0.037778452038764954,0.07534799724817276,-0.005116457585245371,-0.019913729280233383,-0.06884407997131348,-0.02770969830453396,-0.071119524538517,-0.03426770120859146,0.025250006467103958,-0.005204417277127504,0.005254132207483053,-0.07619337737560272,0.06152515485882759,-0.04346342384815216,-0.07824631035327911,0.0416664257645607,-0.041892144829034805,-0.04824328422546387,0.01781720295548439,-0.010678531602025032,0.048004161566495895,0.0247317124158144,-0.07078337669372559,-0.059818826615810394,-0.045503802597522736,0.004666439723223448,0.031934477388858795,-0.011340927332639694,-0.07045190781354904,0.012320341542363167,-0.05891214683651924,0.030360454693436623,0.028097029775381088,-0.01116015762090683,-0.06181739270687103,0.030805811285972595,0.07162386924028397,-0.0401960164308548,-0.02543748915195465,0.07959068566560745,0.00355499517172575,-0.011782023124396801,0.05632947385311127,-0.022647259756922722,0.0034859224688261747,-0.05606474354863167,-0.0061224172823131084,-0.04026390612125397,-0.04861248657107353,0.05939486622810364,-0.013156131841242313,0.06859181076288223,-0.05517242103815079,0.03305796906352043,-0.0242364089936018,0.04657456651329994,-0.004423029255121946,-0.03102308325469494,0.030556626617908478,-0.005091846454888582,-0.059425197541713715,-0.03164895996451378,0.04632166028022766,-0.03479529544711113,0.009287559427320957,-0.015018097124993801,0.0382065586745739,-0.007202479522675276,0.028264369815587997,-0.07373345643281937,0.07375621795654297,0.06938512623310089,0.08122033625841141,0.001292580389417708,0.08052840083837509,0.0036594406701624393,0.014780213125050068,0.033949192613363266,0.041082244366407394,0.040066417306661606,0.048077601939439774,0.052632786333560944,-0.041546571999788284,-0.023057404905557632,0.005127427168190479,0.011426562443375587,-0.04721812531352043,0.07515501976013184,-0.06001773476600647,-0.028186054900288582,-0.0258511733263731,-0.008651141077280045,0.07989823818206787,0.0029805477242916822,-0.011559776030480862,0.04698116332292557,0.03481809049844742,-0.046080466359853745,-0.025406986474990845,0.05895477533340454,0.01168424729257822,0.0672513023018837,0.07060042023658752,0.034791070967912674,0.033092956990003586,0.06615931540727615,-0.016432106494903564,0.056097760796546936,0.016939915716648102,-0.03422073274850845,-0.009722847491502762,0.04835536330938339,-0.003555680625140667,0.0627388060092926,-0.037770986557006836,0.02757139317691326,-0.054023828357458115,0.07099878787994385,-0.036926791071891785,-0.057892102748155594,-0.003237442346289754,0.01630285009741783,-0.02473796345293522,-0.0373561829328537,0.005247235298156738,0.04903772845864296,0.008637593127787113,0.009497391991317272,-0.03759554401040077,0.04863553121685982,0.04790022224187851,0.011384016834199429,-0.04808986186981201,-0.0254149679094553,0.017200319096446037,0.012007015757262707,-0.053960174322128296,-0.000715406786184758,-0.022000590339303017,0.028962930664420128,0.03375969082117081,0.0021808387245982885,-0.017197605222463608,0.05658982694149017,-0.03188978135585785,0.05005469173192978,-0.06998782604932785,0.010816022753715515,-0.015390127897262573,0.00728001119568944,-0.050691552460193634,0.0025577328633517027,0.08437435328960419,-0.023444293066859245,-0.0037561908829957247,-0.012579643167555332,0.029702989384531975,-0.027155570685863495,0.03759715333580971,0.04072117432951927,-0.009871328249573708,-0.004094784613698721,-0.041845377534627914,0.0743478536605835,-0.08238749951124191,0.03156566619873047,-0.03183078393340111,-0.030397236347198486,0.0758848711848259,-0.03844216838479042,0.034006018191576004,-0.02501070313155651,-0.030790720134973526,0.055446214973926544,0.07611387968063354,0.046095672994852066,-0.012241111136972904,-0.028461825102567673,-0.07468295097351074,-0.08413723111152649,0.002127640647813678,-0.018326865509152412,-0.03630802407860756,-0.031716976314783096,-0.028699275106191635,0.046930212527513504,0.003079656045883894,-0.046727485954761505,-0.06226091459393501,0.054394133388996124,0.03000614047050476,0.03837180882692337,0.04190557822585106,-0.024436093866825104,0.008948251605033875,-0.00273056305013597,0.018561016768217087,-0.013999960385262966,-0.02103172242641449,0.06428041309118271,-0.015277454629540443,-0.01344954315572977,-0.08344532549381256,-0.0026370577979832888,0.02508663386106491,0.013299300335347652,0.07202375680208206,-0.0747840479016304,-0.04393381252884865,0.056924838572740555,-0.022648395970463753,-0.03962542489171028,-0.033892709761857986,-0.07707612961530685,0.05081857368350029,-0.03693052753806114,-0.042323607951402664,0.07134407013654709,0.03533405810594559,-0.03207956254482269,-0.05759052559733391,0.022265931591391563,-0.04546365514397621,-0.0487075001001358,-0.0015804797876626253,-0.07215021550655365,-0.024562450125813484,0.03677436336874962,0.03044547326862812,0.07830512523651123,0.08279618620872498,-0.015172001905739307,-0.007901852019131184,0.02633950300514698,0.011740700341761112,0.05911869928240776,0.023795414716005325,0.04676533117890358,0.020265566185116768,-0.042658623307943344,0.052313145250082016,-0.022720227017998695,0.052906960248947144,-0.08502476662397385,0.050851233303546906,0.004022234585136175,-0.031142862513661385,-0.0265036690980196,0.05503639578819275,-0.021373270079493523,-0.054291658103466034,-0.012289158999919891,-0.0062735057435929775,0.05959921330213547,0.03176364302635193,0.010951412841677666,-0.01748703047633171,0.026690252125263214,0.014316270127892494,-0.019054794684052467,-0.04895877465605736,-0.04355539008975029,-0.021837152540683746,-0.06037744879722595,0.017515527084469795,0.01886046677827835,-0.06587471812963486,-0.07883639633655548,-0.005066846963018179,-0.030134813860058784,0.07458681613206863,0.02278805524110794,0.04527107998728752,0.017757099121809006,-0.012921777553856373,-0.06585779786109924,0.03708659112453461,0.06120298430323601,0.005990240722894669,0.04058483615517616,-0.02580389939248562,-0.03478581830859184,-0.06097818538546562,-0.059669576585292816,-0.04188397899270058,-0.019480686634778976,0.03391958028078079,0.06578229367733002,0.022740637883543968,0.04529551416635513,-0.071073018014431,-0.03281785547733307,-0.0712357833981514,-0.04347370192408562,0.07988554984331131,0.0067200795747339725,0.05875731259584427,-0.04234248772263527,-0.031259048730134964,0.031622372567653656,-0.07417112588882446,0.07838605344295502,-0.05062774941325188,0.07288111001253128,0.05921893194317818,0.004663999658077955,-0.014702877961099148,0.003889797953888774,0.06677846610546112,0.044180601835250854,-0.0400293804705143,0.07636605203151703,0.04515298083424568,-0.0639854446053505,0.05483100935816765,0.03051779977977276,-0.0612030103802681,-0.03924055024981499,-0.008782953023910522,-0.058937571942806244,-0.07523677498102188,-0.062071025371551514,0.04245343059301376,-0.03925009444355965,0.004013951867818832,-0.03820137679576874,-0.04043029621243477,0.05794927850365639,0.07558521628379822,-0.07632414251565933,0.006065841764211655,-0.06465739756822586,-0.0022969988640397787,-0.055603861808776855,-0.03883010149002075,0.025685302913188934,0.04086735472083092,-0.05042561888694763,0.019892502576112747,0.08061280101537704,-0.07882602512836456,0.06027088686823845,-0.03221380338072777,0.014436667785048485,0.004639691673219204,0.014569493941962719,0.02456733211874962,0.05022890493273735,-0.07349137961864471,0.016732817515730858,0.0212375670671463,0.05442475900053978,-0.052740275859832764,-0.013517161831259727,-0.06933663040399551,0.04664436727762222,0.01714400202035904,0.0004531951271928847,0.043720830231904984,-0.0501859188079834,0.051157962530851364,-0.05072998255491257,-0.003386090975254774,0.023313017562031746,0.0546293742954731,0.034991271793842316,-0.00038219158886931837,0.011556485667824745,0.033399879932403564,0.05946633219718933,0.06583978980779648,-0.00440087728202343,0.05748539790511131,-0.04325781390070915,-0.033333562314510345,-0.04001808539032936,-0.00384340388700366,0.02012028731405735,-0.003360124072059989,0.01977790705859661,-0.051636241376399994,-0.03979479894042015,0.018370412290096283,-0.01811227574944496,-0.07073718309402466,-0.06481306254863739,0.00901185441762209,0.08086597174406052,-0.02001040428876877,-0.02816692925989628,-0.06774070113897324,0.06356559693813324,-0.020526133477687836,0.003236963879317045,0.03450410068035126,-0.04560262709856033,0.0011547215981408954,-0.020680611953139305,-0.025252308696508408,0.03767641261219978,0.01937062107026577,-0.07941459119319916,-0.07561532407999039,0.054717980325222015,0.02331274189054966]},{"id":"out-of-sync","vector":[0.028709817677736282,-0.04617767035961151,0.022075533866882324,-0.02074994333088398,-0.049676313996315,0.03504744544625282,0.04231975972652435,-0.06739277392625809,0.03242308273911476,0.0008229590603150427,0.014480727724730968,-0.003657934255897999,-0.014852476306259632,-0.008637671358883381,-0.0691591203212738,-0.019681699573993683,-0.052567724138498306,-0.05204552039504051,-0.06364081054925919,-0.0013359161093831062,0.023421887308359146,-0.026894448325037956,0.03428039699792862,-0.019786754623055458,0.017218949273228645,-0.009086297824978828,-0.04982328414916992,-0.02876765839755535,-0.057576630264520645,-0.05764676630496979,0.05483895540237427,0.002210307167842984,-0.007388444151729345,-0.01665838621556759,0.055492013692855835,0.037392351776361465,-0.04741857200860977,0.04169975221157074,0.02766602672636509,-0.03642250970005989,0.022372905164957047,0.023863427340984344,0.07236739993095398,-0.04815458506345749,-0.022347666323184967,0.026913650333881378,-0.04538087174296379,-0.03653401508927345,0.04702657461166382,0.07264619320631027,0.019373098388314247,-0.023403998464345932,0.017937930300831795,-0.04254358261823654,-0.00005933884676778689,-0.06086653098464012,0.023354578763246536,0.03776248171925545,0.025401050224900246,-0.08377823978662491,-0.06499148160219193,-0.032266564667224884,-0.044258490204811096,0.037177830934524536,-0.015070752240717411,0.013053543865680695,0.08056661486625671,0.038033854216337204,0.06326368451118469,-0.06017798185348511,-0.02105683833360672,-0.06508215516805649,0.030994055792689323,0.014275274239480495,-0.041253022849559784,-0.054514747112989426,0.03507101163268089,0.002807054203003645,-0.028461696580052376,0.05519384890794754,-0.0006181276403367519,0.015500267967581749,0.011428836733102798,-0.02240913175046444,-0.042311277240514755,0.05840347707271576,-0.0021621654741466045,0.07748410105705261,-0.05186871439218521,0.04313281551003456,-0.04062361642718315,-0.010621940717101097,-0.05375038832426071,0.04838463291525841,-0.02963673323392868,0.0518476627767086,-0.06995806843042374,-0.031641241163015366,-0.05264798551797867,-0.06897005438804626,-0.07946635782718658,0.02909880131483078,-0.02082836627960205,0.004148710053414106,-0.06680087745189667,0.003120031440630555,-0.014593696221709251,0.07085776329040527,0.05003959685564041,0.025988448411226273,-0.01845293492078781,-0.07051791995763779,0.003348256926983595,-0.051626887172460556,-0.057877879589796066,0.02588907815515995,0.003405592404305935,0.0227607861161232,-0.07509222626686096,0.05142928659915924,-0.03378075733780861,-0.0623408742249012,0.018517442047595978,-0.026598749682307243,-0.046308524906635284,-0.013104399666190147,-0.019426871091127396,0.03984560817480087,0.03584183752536774,-0.07430712878704071,-0.06772571802139282,-0.04645223543047905,-0.006155757699161768,0.02557893469929695,-0.024377062916755676,-0.06662973016500473,0.03496120870113373,-0.051192108541727066,0.013398382812738419,0.0241843368858099,0.061167892068624496,-0.0640992596745491,0.03492855653166771,-0.01491871289908886,-0.024117687717080116,-0.012663431465625763,0.06323795020580292,0.07085234671831131,0.012470654211938381,0.04465843364596367,0.018453087657690048,0.005922106094658375,-0.07693153619766235,-0.0534604974091053,0.010024363175034523,-0.05057641863822937,0.028532491996884346,-0.03714466840028763,0.06719427555799484,-0.06982887536287308,0.029440192505717278,-0.01214260421693325,0.05263203755021095,0.01279563456773758,0.02320888079702854,0.01793646812438965,-0.020433425903320312,-0.03744838759303093,0.004644191823899746,0.05832669511437416,-0.05854322388768196,0.04075528681278229,-0.027564533054828644,0.005581405945122242,-0.03820038586854935,0.011748789809644222,-0.08293592184782028,0.07090111821889877,0.08361175656318665,0.07467678934335709,-0.0009494880796410143,0.08608033508062363,0.02611936815083027,0.051601115614175797,0.03289075940847397,0.06635583937168121,-0.009476419538259506,0.05203227326273918,0.05588909983634949,-0.0354941263794899,-0.011166863143444061,-0.011751938611268997,-0.027523063123226166,0.004185439087450504,0.08252470940351486,-0.044825486838817596,-0.027625350281596184,-0.012231413275003433,0.007385281380265951,0.0839020311832428,-0.028453059494495392,0.007722749840468168,0.03532886505126953,0.02537933550775051,-0.024205505847930908,-0.0031925300136208534,0.0462079718708992,0.03864847496151924,0.040769871324300766,0.0646476075053215,0.014695258811116219,0.036648619920015335,0.04473042115569115,-0.014541348442435265,0.055624451488256454,0.018088487908244133,0.023703524842858315,-0.010163594037294388,0.056745920330286026,-0.009401096031069756,0.03926932066679001,-0.013297367841005325,0.03288118541240692,-0.07265711575746536,0.05624962970614433,-0.02905709110200405,-0.0592399500310421,-0.022534269839525223,-0.020276114344596863,0.004288227763026953,-0.04005787894129753,0.03435005992650986,0.03967408463358879,0.030422743409872055,0.03718913719058037,0.05100817233324051,0.049941033124923706,0.07720395177602768,-0.015142125077545643,-0.008197041228413582,-0.058215510100126266,0.025799058377742767,-0.014654932543635368,-0.04447225108742714,0.0013773145619779825,-0.037161268293857574,0.007215980906039476,0.031382396817207336,-0.011038178578019142,-0.04627712443470955,0.037529006600379944,-0.04831140860915184,0.044426701962947845,-0.06127207353711128,0.0031517918687313795,-0.0020326334051787853,-0.017885752022266388,-0.060833562165498734,0.0008927071467041969,0.0834592953324318,-0.026142721995711327,-0.03252280876040459,-0.0344320610165596,0.016892876476049423,0.0024169161915779114,0.01780826412141323,0.02714621089398861,-0.030881987884640694,-0.02432573027908802,-0.06195002421736717,0.06633365899324417,-0.0703997015953064,0.042928460985422134,-0.012430972419679165,-0.04849902540445328,0.08014693856239319,-0.039291586726903915,0.05379517748951912,-0.03160576894879341,0.02658289670944214,0.055768705904483795,0.049389056861400604,-0.014697880484163761,0.029656970873475075,-0.027036696672439575,-0.06375138461589813,-0.08051566034555435,0.001963658956810832,-0.02777724340558052,-0.031808339059352875,0.004818812478333712,0.008069572038948536,0.05594867467880249,0.003047650447115302,-0.027960283681750298,-0.057035986334085464,0.06980277597904205,0.051646627485752106,0.03537572920322418,0.04896775633096695,-0.005804982502013445,0.06851975619792938,0.007695967797189951,0.029159288853406906,0.020467296242713928,0.007910051383078098,0.0409700870513916,-0.03676999732851982,0.004889669828116894,-0.08331645280122757,-0.011643200181424618,-0.008705224841833115,0.01166845578700304,0.07475800067186356,-0.07781713455915451,-0.061129454523324966,0.04936391860246658,-0.014971498399972916,-0.03252197057008743,-0.04560816287994385,-0.07767780125141144,0.06747130304574966,-0.021768372505903244,0.00021836084488313645,0.05778475105762482,0.055392295122146606,-0.012942526489496231,-0.02822856605052948,0.005937787238508463,-0.06580155342817307,-0.03404971957206726,-0.014013046398758888,-0.08032941073179245,-0.027389483526349068,0.0526648610830307,0.010528146289288998,0.08239125460386276,0.08407782018184662,0.02152268961071968,0.009951123036444187,-0.00813238974660635,0.024837195873260498,0.018115822225809097,-0.027792837470769882,0.0615217462182045,0.018966227769851685,-0.047610022127628326,0.05997366085648537,0.04202690348029137,0.04155843332409859,-0.08386176824569702,0.05759160593152046,-0.015250727534294128,-0.007540877442806959,-0.02819228172302246,0.054176270961761475,-0.015362530015408993,-0.06478060781955719,-0.000149631014210172,-0.002146035898476839,0.05366560071706772,0.023362882435321808,0.03489625081419945,-0.008125259540975094,0.002346235793083906,-0.004650273825973272,-0.046134427189826965,-0.06378112733364105,-0.024226883426308632,-0.037009235471487045,-0.061077989637851715,-0.010826612822711468,0.02360106073319912,-0.06232228875160217,-0.08061958849430084,-0.03895173966884613,-0.040164075791835785,0.0614960752427578,-0.022442873567342758,0.04169059172272682,0.01953982748091221,0.002877406543120742,-0.056242093443870544,0.050987690687179565,0.06749647110700607,0.0019023631466552615,0.06897928565740585,-0.05159960687160492,-0.04020656645298004,-0.05373981595039368,-0.06501516699790955,-0.0047322893515229225,-0.04880665987730026,0.014535356312990189,0.0569540373980999,0.043604061007499695,0.06818769872188568,-0.07004561275243759,-0.06084633991122246,-0.08020638674497604,-0.043939463794231415,0.08039315789937973,0.008971842005848885,0.05345572158694267,-0.022632231935858727,-0.020730994641780853,0.06175519526004791,-0.07526802271604538,0.07556229084730148,-0.038049641996622086,0.06608579307794571,-0.014842133037745953,0.02116762101650238,-0.010356740094721317,0.004354669246822596,0.062187183648347855,0.0453559011220932,0.0032150198239833117,0.07408828288316727,0.06960178911685944,-0.049368590116500854,0.016247518360614777,0.02893093042075634,-0.07103003561496735,-0.06392574310302734,-0.04657946154475212,-0.04797167330980301,-0.04594891145825386,-0.04499119892716408,0.033990006893873215,-0.023526785895228386,0.033065780997276306,-0.016554316505789757,-0.04516133293509483,0.05483121797442436,0.075288325548172,-0.06868291646242142,-0.018374845385551453,-0.03755949065089226,0.0024753103498369455,-0.04595648869872093,-0.046477917581796646,0.08039425313472748,0.05243147909641266,-0.052601397037506104,0.061218954622745514,0.08516223728656769,-0.08117492496967316,0.0695749893784523,-0.003643468488007784,-0.018043428659439087,-0.03722536563873291,0.039585769176483154,-0.012457768432796001,-0.022685572504997253,-0.0725429430603981,-0.002887355862185359,0.0216817706823349,0.03423938900232315,-0.04939838871359825,0.016368646174669266,-0.02534503862261772,0.0012291411403566599,0.031689126044511795,0.003921215888112783,0.045682329684495926,-0.07162977755069733,0.04774041473865509,-0.06251798570156097,-0.059621285647153854,0.04498562216758728,0.07191261649131775,0.00534710893407464,0.012006551958620548,0.03355579823255539,0.043333642184734344,0.06488123536109924,0.05176350846886635,0.019123291596770287,0.0624496266245842,-0.06512489914894104,-0.048115964978933334,-0.033727340400218964,-0.0029842094518244267,-0.012891926802694798,0.04467320442199707,0.013965186662971973,-0.05408076196908951,-0.058201711624860764,0.0057317172177135944,-0.01269596815109253,-0.03583983704447746,-0.07047659903764725,0.042152270674705505,0.06732378154993057,-0.008862474001944065,-0.02136201597750187,-0.06526150554418564,0.07563784718513489,-0.05453730747103691,0.016417453065514565,0.024081682786345482,-0.03500241041183472,0.03414778783917427,-0.003821660066023469,0.012911642901599407,0.030050041154026985,0.01406770944595337,-0.0723838359117508,-0.0800677165389061,0.04566868022084236,0.02532198652625084]},{"id":"pda","vector":[0.012838081456720829,-0.032082393765449524,0.029176970943808556,0.01623138040304184,-0.03823864832520485,0.03757424280047417,0.025981100276112556,-0.07623059302568436,0.04579566419124603,0.015193590894341469,0.02181214466691017,0.018448175862431526,-0.012275995686650276,0.023508502170443535,-0.0635581687092781,0.013388832099735737,-0.056923944503068924,-0.05606364458799362,-0.03598330169916153,-0.04274527728557587,0.002154156332835555,0.03695650398731232,0.044444117695093155,-0.01039729081094265,0.025751352310180664,0.0009075093548744917,0.03059885837137699,0.0026087183505296707,-0.04055556282401085,-0.03539557009935379,0.04334690794348717,-0.01910063810646534,-0.01938552036881447,-0.04886069521307945,0.04463333263993263,0.006058076396584511,-0.057024601846933365,0.01485612615942955,0.06608082354068756,-0.046566471457481384,0.004575408063828945,0.009112886153161526,0.06607247143983841,0.0005116612301208079,-0.007871529087424278,0.0023634247481822968,-0.06895242631435394,0.0009839745471253991,0.050357647240161896,0.032962530851364136,0.0028451846446841955,-0.07453437894582748,0.04137028753757477,-0.0211180429905653,-0.0012023820308968425,-0.04953377693891525,0.05078474059700966,0.046306222677230835,0.05150163918733597,-0.08016674220561981,-0.06455456465482712,-0.03515757992863655,-0.05256934091448784,0.015110282227396965,-0.024600526317954063,0.018861258402466774,0.09294183552265167,0.017493607476353645,0.0910595953464508,-0.04781089350581169,-0.026923900470137596,-0.04357551410794258,0.021720871329307556,-0.00915912352502346,-0.032405197620391846,-0.05506788566708565,0.025720003992319107,-0.03319336473941803,0.011051001027226448,0.04296109825372696,0.02348654717206955,0.03979024291038513,-0.005202050786465406,-0.02513616718351841,-0.048383135348558426,0.050029631704092026,0.028152499347925186,0.08333919197320938,-0.060302577912807465,0.027110397815704346,-0.03892624005675316,-0.0034342885483056307,-0.05697867274284363,0.014487465843558311,-0.021628377959132195,0.07781367748975754,-0.06791916489601135,-0.002068007830530405,-0.04095761477947235,-0.02366061322391033,-0.08782543241977692,0.023135248571634293,-0.0057676094584167,0.01543417852371931,-0.04430396482348442,0.03594949468970299,-0.03302815183997154,0.06256749480962753,0.07012251019477844,0.019768495112657547,-0.04821797460317612,-0.07227019965648651,0.021935848519206047,-0.019666343927383423,-0.03391430154442787,0.03659218177199364,0.00243463390506804,0.003072048770263791,-0.07800716906785965,0.02262837253510952,0.007913390174508095,-0.06736639142036438,0.04941287264227867,-0.06680750101804733,-0.038682326674461365,0.01373000256717205,-0.06407906860113144,0.06462175399065018,0.042856015264987946,-0.0586673803627491,-0.039044786244630814,-0.05589638650417328,-0.005463999230414629,0.0477466881275177,-0.02248423732817173,-0.07327955216169357,0.007853662595152855,-0.022585270926356316,0.023953069001436234,0.013485977426171303,-0.01799733377993107,-0.06400622427463531,0.06160641089081764,0.06640922278165817,-0.04609915241599083,-0.023798523470759392,0.059267591685056686,0.030782977119088173,0.0018558858428150415,0.038862355053424835,0.0027103701140731573,-0.0016074653249233961,-0.07740164548158646,-0.03354991227388382,-0.009768583811819553,-0.01409459114074707,0.025137852877378464,-0.06155496835708618,0.04293827340006828,-0.07335368543863297,0.055887188762426376,-0.02658403106033802,0.04480079188942909,-0.014077815227210522,0.0008710065740160644,0.032693929970264435,0.02269337698817253,-0.06610720604658127,-0.0021532613318413496,0.06569714844226837,-0.06348875910043716,0.008744101040065289,-0.002132217399775982,0.03356228768825531,-0.0549188069999218,0.043355587869882584,-0.04908723011612892,0.07804059982299805,0.08338156342506409,0.05699651315808296,0.02480042539536953,0.09282936155796051,0.02279461733996868,-0.004549530800431967,0.04876029118895531,0.0625520646572113,-0.058826055377721786,0.06398934125900269,0.06444120407104492,-0.03232051804661751,-0.019566135480999947,-0.007582461461424828,-0.03140159696340561,-0.01575038582086563,0.07386838644742966,-0.06797255575656891,-0.053925156593322754,-0.051566798239946365,-0.015570776537060738,0.08172958344221115,-0.02220204286277294,0.029625659808516502,0.0649600401520729,0.0021046705078333616,-0.018885096535086632,-0.03876020759344101,0.044250134378671646,-0.015305601991713047,0.009389538317918777,0.08589860051870346,0.010533212684094906,-0.024139180779457092,0.06152915582060814,-0.02006605640053749,0.02755190245807171,-0.0018089015502482653,-0.0295257568359375,0.03028140589594841,0.0733666941523552,0.004769016057252884,0.008181402459740639,-0.046742286533117294,0.01586962305009365,-0.04768633097410202,0.05054493620991707,-0.01341532077640295,-0.055184852331876755,0.022001517936587334,0.01556019950658083,0.025005662813782692,-0.0007679543923586607,0.01359203364700079,0.05674761161208153,0.029064079746603966,0.022224752232432365,0.06820453703403473,0.042304374277591705,0.06538097560405731,0.06042197346687317,-0.036940474063158035,-0.049131639301776886,0.006708350498229265,-0.03443169221282005,-0.0570840984582901,0.012940827757120132,-0.023782741278409958,0.0015426694881170988,0.04145869240164757,-0.00457194447517395,-0.05138641968369484,0.0512954518198967,-0.08184777200222015,0.017496315762400627,-0.07082026451826096,0.011766207404434681,0.009607367217540741,-0.054507333785295486,-0.049127206206321716,-0.025774739682674408,0.0806775614619255,0.0008773701847530901,-0.025913666933774948,-0.00918076653033495,-0.02693733014166355,-0.03086911514401436,-0.024059096351265907,0.014855670742690563,-0.02181544527411461,-0.004095337353646755,-0.037838444113731384,0.0621500238776207,-0.06960916519165039,0.037109822034835815,-0.034332551062107086,-0.009350494481623173,0.07880660146474838,-0.03698084503412247,0.043108198791742325,-0.02383190393447876,0.01255812682211399,0.05406464263796806,0.08261106163263321,0.033942416310310364,0.004614082630723715,-0.02094230055809021,-0.06925223022699356,-0.060186199843883514,0.05457789823412895,-0.028491731733083725,-0.013734335079789162,-0.036720242351293564,-0.01123877801001072,0.04129437729716301,-0.0019915825687348843,0.003868615720421076,-0.05345670506358147,0.07407409697771072,0.02703361213207245,0.039728835225105286,0.028106868267059326,-0.0013343169121071696,0.06786636263132095,-0.024371035397052765,0.07748548686504364,0.03317003324627876,0.003456078004091978,0.016902906820178032,-0.008353103883564472,0.007575598079711199,-0.07472116500139236,-0.010541263036429882,-0.0009709108271636069,0.018111232668161392,0.05550432950258255,-0.07978591322898865,-0.0439797043800354,0.049461282789707184,-0.0138170775026083,-0.037988804280757904,-0.048301588743925095,-0.08761429786682129,0.051282305270433426,-0.044995471835136414,-0.037832342088222504,0.03616347536444664,0.002360760001465678,-0.022585036233067513,-0.0031144204549491405,0.041102778166532516,-0.06083587184548378,-0.01167366374284029,-0.038029756397008896,-0.07264033704996109,0.02576390840113163,0.042564135044813156,-0.013932456262409687,0.06098615378141403,0.08619090914726257,0.004431774374097586,0.011221467517316341,-0.03648420423269272,0.023062394931912422,0.06090504303574562,-0.0036485495511442423,-0.010769668966531754,0.016451217234134674,-0.0016178516671061516,0.060903821140527725,0.02690858207643032,0.05577155202627182,-0.0881834626197815,0.06545989215373993,0.043713122606277466,0.0026828942354768515,-0.018006958067417145,0.06621050089597702,-0.017143579199910164,-0.0807265117764473,-0.00014496555377263576,0.017297830432653427,0.0302575696259737,0.00719464011490345,0.06992626935243607,-0.05211678519845009,0.006448738742619753,0.03933737054467201,-0.00026824549422599375,-0.05222552642226219,-0.004268776159733534,-0.06288672983646393,-0.053526345640420914,-0.007350522559136152,0.03482005000114441,-0.07127057015895844,-0.054793063551187515,0.005845202133059502,-0.024730803444981575,0.04931342601776123,-0.015467066317796707,0.05600970238447189,0.024694494903087616,0.047549761831760406,-0.05080770328640938,0.0506243035197258,0.027183201164007187,-0.02211425080895424,0.07054045051336288,-0.005921950098127127,-0.058611441403627396,-0.058402687311172485,-0.0741809830069542,-0.011291486211121082,0.002140824217349291,-0.03833170607686043,0.06152072548866272,0.04601220414042473,0.06427649408578873,-0.08593274652957916,-0.038660816848278046,-0.049241721630096436,-0.041248489171266556,0.08423563092947006,-0.014987122267484665,0.06306178867816925,-0.02113376185297966,-0.022683899849653244,0.05213070288300514,-0.07744967192411423,0.06774260848760605,-0.061953868716955185,0.06567411124706268,-0.03133907914161682,0.027356384322047234,0.012206151150166988,0.004585037939250469,-0.011376484297215939,0.0558331124484539,-0.022102564573287964,0.07820004969835281,0.04469207674264908,-0.05109504610300064,0.019525131210684776,0.04555148631334305,-0.0555475614964962,-0.05494588240981102,-0.07206396758556366,-0.053531013429164886,0.008878679014742374,-0.045598048716783524,-0.03555804863572121,-0.015845907852053642,0.0225581843405962,-0.0314653106033802,-0.035997603088617325,0.05045664310455322,0.06833064556121826,-0.06387561559677124,-0.012478134594857693,0.03476409241557121,0.02219245582818985,-0.030706679448485374,-0.048526305705308914,0.06447242200374603,0.057506319135427475,-0.055733829736709595,0.06873870640993118,0.08277231454849243,-0.07732339203357697,0.06298849731683731,-0.044708918780088425,0.019119594246149063,-0.04568658396601677,0.0375831164419651,0.0214247927069664,0.0017027697758749127,-0.07537958770990372,-0.028059624135494232,0.03067692555487156,0.05092743784189224,-0.07220371067523956,0.01820465922355652,-0.046407271176576614,-0.022872375324368477,0.040151339024305344,0.0008784453384578228,0.03575364127755165,-0.05191844329237938,0.027558937668800354,-0.07028882205486298,-0.06309107691049576,0.021204950287938118,0.07423286885023117,-0.001649948419071734,0.036066364496946335,-0.0068270121701061726,0.048236183822155,0.04162067547440529,0.04658206179738045,0.035286083817481995,0.06842628121376038,0.02710377611219883,-0.04262309893965721,-0.04497772082686424,0.010319996625185013,-0.041093673557043076,0.047836169600486755,0.0421341210603714,-0.045272860676050186,-0.0647362619638443,-0.018125979229807854,0.04532584175467491,-0.05180668085813522,-0.05212707817554474,0.0266631618142128,0.07839580625295639,0.005265393760055304,0.0006669151480309665,-0.05152501165866852,0.08188914507627487,-0.02283366210758686,0.030389439314603806,0.05269753932952881,-0.024424346163868904,-0.001344210933893919,-0.01708267815411091,0.013067805208265781,0.05937817692756653,-0.00929332710802555,-0.041597846895456314,-0.08622385561466217,0.011741423048079014,0.024544959887862206]},{"id":"perfect-situation","vector":[0.028956325724720955,-0.010698090307414532,0.015549915842711926,0.009970800951123238,-0.041202008724212646,0.04266781359910965,0.007535381708294153,-0.06382071226835251,0.03283927962183952,0.03293049708008766,0.02617584727704525,-0.004071469884365797,-0.0111775491386652,0.027215130627155304,-0.06210482493042946,0.015417994931340218,-0.04767695814371109,-0.07755695283412933,-0.045872367918491364,-0.014218185096979141,-0.008612260222434998,0.0166862141340971,0.013620339334011078,-0.02789294719696045,0.025714462623000145,-0.007343114819377661,-0.03898942098021507,0.021198436617851257,-0.07519657909870148,-0.03965732827782631,0.06955748796463013,-0.059409864246845245,-0.02640315517783165,-0.0019248947501182556,0.04696233943104744,0.020187418907880783,-0.047763641923666,0.025875922292470932,0.0635945200920105,-0.06274363398551941,-0.041364338248968124,0.03017820604145527,0.05730987340211868,-0.037278033792972565,-0.034020181745290756,-0.02328830398619175,-0.07260090857744217,-0.011953011155128479,0.05044322833418846,0.04729245603084564,0.020989513024687767,-0.048505838960409164,0.018676359206438065,-0.04431993141770363,-0.004831090569496155,0.0050271605141460896,0.017212718725204468,0.025991195812821388,0.03979933261871338,-0.0736820325255394,-0.06733476370573044,-0.004788081627339125,-0.04354998096823692,0.0049482607282698154,-0.038620952516794205,0.02301020920276642,0.08286469429731369,0.0312192402780056,0.08550949394702911,-0.06805487722158432,-0.023447992280125618,-0.03695479407906532,-0.005899973679333925,-0.014349369332194328,-0.06497499346733093,-0.06462090462446213,0.03292202576994896,-0.007468291092664003,0.002629854017868638,0.05751646310091019,-0.0023335465230047703,0.028482232242822647,0.009556465782225132,-0.02669760212302208,-0.04385484755039215,0.06420940160751343,0.005117697641253471,0.07384873181581497,-0.06287961453199387,0.05536071956157684,-0.0323442667722702,-0.027662506327033043,-0.013863649219274521,0.06525523215532303,-0.03456909954547882,0.056107811629772186,-0.06191420555114746,0.025030439719557762,0.004814717918634415,-0.041069287806749344,-0.08065590262413025,-0.026181267574429512,-0.008944994769990444,0.03493502363562584,0.007810345850884914,0.0076969643123447895,-0.061278101056814194,0.07452118396759033,0.07529821991920471,0.015247813425958157,-0.007882492616772652,-0.0676751360297203,0.01504985149949789,-0.06546668708324432,-0.04688611626625061,0.027241723611950874,-0.013633432798087597,0.04897565394639969,-0.07858777046203613,0.023138446733355522,0.0005302086938172579,-0.081943079829216,-0.014992543496191502,-0.05965406447649002,-0.03808939456939697,-0.005665816832333803,-0.04385349527001381,0.06838499009609222,0.030887993052601814,-0.056685831397771835,-0.05440445989370346,-0.0475708469748497,-0.031235190108418465,0.04743745177984238,-0.024270234629511833,-0.07120915502309799,-0.008018376305699348,-0.07596153765916824,0.026018617674708366,0.0010972670279443264,0.026670632883906364,-0.055692996829748154,0.05693688243627548,0.051135171204805374,-0.02455117739737034,-0.04616859555244446,0.05634009465575218,0.02230067178606987,0.0007301503792405128,0.028604179620742798,-0.032334811985492706,0.006266741547733545,-0.06234268844127655,-0.010526326484978199,-0.036928690969944,-0.017837131395936012,0.058341000229120255,-0.061102062463760376,0.056069377809762955,-0.08139324933290482,0.026550417765975,-0.018581273034214973,0.0448765866458416,0.014009577222168446,0.016474831849336624,0.023260273039340973,0.03653808683156967,-0.0646708682179451,-0.007369693834334612,0.07057163119316101,-0.05683986470103264,0.004443219862878323,-0.040438998490571976,0.08056766539812088,0.002363291336223483,0.03183593228459358,-0.07557287812232971,0.08451297879219055,0.07763701677322388,0.061344873160123825,-0.021043134853243828,0.08360274881124496,-0.010176044888794422,0.01323286909610033,0.002228131052106619,0.03849298506975174,0.03322099521756172,0.04549035802483559,0.03782874345779419,-0.04023447632789612,-0.04163980111479759,0.011214402504265308,-0.0310294758528471,0.035401128232479095,0.08000240474939346,-0.05492885783314705,-0.02741958387196064,-0.041791465133428574,0.009600978344678879,0.08692075312137604,0.001592886634171009,0.026835134252905846,0.06298410147428513,-0.002271427074447274,-0.05034216120839119,-0.04453285038471222,0.04068874940276146,-0.021412910893559456,0.02279016561806202,0.06936995685100555,0.022368699312210083,-0.003164202207699418,0.046353138983249664,0.03841233626008034,0.05978108197450638,-0.006684750784188509,0.024538731202483177,-0.010011730715632439,0.055713362991809845,-0.009227129630744457,0.013564211316406727,-0.006616593804210424,0.021509641781449318,-0.05656087398529053,0.027859242632985115,0.0009155148873105645,-0.006849950645118952,0.012695527635514736,-0.028522491455078125,0.02958562597632408,-0.026251325383782387,0.04262610524892807,0.036009494215250015,0.018403252586722374,0.02369293011724949,0.05381802096962929,0.0439123772084713,0.05456230416893959,0.016411704942584038,0.021377401426434517,-0.058095045387744904,-0.013380501419305801,0.03167734295129776,-0.027752455323934555,0.00492939492687583,-0.02449384145438671,0.016249867156147957,-0.004922986496239901,0.03383219614624977,-0.014606614597141743,0.04139941930770874,-0.07100565731525421,0.06877146661281586,-0.06913483142852783,0.012581170536577702,0.015343462117016315,0.0012320027453824878,-0.03830868750810623,-0.019091039896011353,0.05985749512910843,-0.01218443177640438,-0.03870915621519089,-0.017627058550715446,-0.0283438079059124,-0.023729803040623665,0.047560758888721466,-0.02767815813422203,-0.013430588878691196,-0.01441626064479351,-0.022621840238571167,0.06898722797632217,-0.05398382991552353,-0.023579737171530724,-0.014636745676398277,-0.03275367617607117,0.08375810831785202,-0.042013391852378845,0.013066128827631474,-0.06381972879171371,-0.019783519208431244,0.08283724635839462,0.0799061506986618,0.03575432673096657,0.02663910761475563,-0.04667685553431511,-0.06491656601428986,-0.08137622475624084,0.037732288241386414,-0.059843454509973526,-0.0165666863322258,-0.031593870371580124,-0.036512427031993866,0.06674664467573166,0.006786252837628126,-0.029713278636336327,-0.04061191901564598,0.06739911437034607,0.04236098378896713,-0.003879075637087226,0.04722826927900314,-0.018726639449596405,0.05948566272854805,-0.005484308116137981,0.03411327674984932,0.025869665667414665,-0.0013101601507514715,0.05243111401796341,0.014384345151484013,-0.013726129196584225,-0.08522338420152664,-0.027298297733068466,-0.0022720247507095337,0.021861249580979347,0.06485089659690857,-0.0839308500289917,-0.06741397082805634,0.051108215004205704,-0.04215061292052269,-0.05012586712837219,-0.03290576860308647,-0.08172018826007843,0.05366358160972595,-0.011212821118533611,-0.036012355238199234,0.06078014522790909,0.04656047746539116,-0.019060993567109108,0.006723048165440559,0.007283257786184549,-0.05995887890458107,-0.00030636670999228954,-0.05808945745229721,-0.07367081195116043,0.0423322468996048,0.038597673177719116,0.018732309341430664,0.08301945775747299,0.08558493852615356,0.03680427744984627,0.02280430868268013,-0.00851005595177412,0.025965223088860512,0.05400555580854416,-0.01621134765446186,0.02462599240243435,0.03410394862294197,-0.04881548136472702,0.046011168509721756,0.0009779050014913082,0.051123131066560745,-0.08048292994499207,0.07125863432884216,0.026291485875844955,-0.02983636036515236,-0.042008254677057266,0.04147947207093239,-0.0194008257240057,-0.07825285941362381,-0.02202138490974903,0.023082783445715904,0.05725614354014397,0.0009653082815930247,0.03714324161410332,-0.032194510102272034,-0.025027433410286903,0.02209976129233837,-0.041535455733537674,-0.0672314316034317,-0.03592107817530632,-0.014640097506344318,-0.04897879809141159,-0.009641717188060284,0.04503355175256729,-0.05655934289097786,-0.07938023656606674,0.015917785465717316,0.0007851560949347913,0.052303947508335114,0.02040303871035576,0.0014923788839951158,0.0024850417394191027,0.04499424993991852,-0.0519871711730957,0.05399332940578461,0.05363834276795387,-0.0205284021794796,0.07283990830183029,-0.042650770395994186,-0.02142415940761566,-0.052963726222515106,-0.046853069216012955,-0.01377115398645401,-0.03151808679103851,-0.029946664348244667,0.07703340798616409,0.04564036801457405,0.06011081114411354,-0.0789518654346466,-0.057978250086307526,-0.0753227025270462,-0.042459163814783096,0.07543956488370895,0.020076988264918327,0.04574498161673546,-0.010099241510033607,-0.04384510591626167,0.059881336987018585,-0.085176981985569,0.06812569499015808,-0.015945229679346085,0.07088468968868256,0.03662560135126114,-0.016942832618951797,-0.02591896988451481,0.01555915642529726,0.016604889184236526,0.027446569874882698,0.03155376389622688,0.07373585551977158,0.06131579726934433,-0.06464171409606934,0.057197123765945435,0.013851847499608994,-0.07130958884954453,-0.07566274702548981,0.007609958294779062,-0.04207348823547363,-0.060151807963848114,-0.05654117092490196,0.03848632797598839,-0.025836896151304245,0.008351195603609085,0.020102214068174362,-0.011468088254332542,0.0561896413564682,0.07331089675426483,-0.07552216947078705,-0.0029170908965170383,-0.0041010030545294285,0.0075387852266430855,-0.05468283221125603,-0.04983774200081825,0.0551600381731987,0.0397426001727581,-0.06988095492124557,0.047805655747652054,0.08665869385004044,-0.08458171784877777,0.06713003665208817,-0.052494607865810394,-0.023534776642918587,-0.030439790338277817,-0.0011782583314925432,-0.0039005049038678408,0.06042178347706795,-0.06000665947794914,-0.0025791185908019543,0.038823578506708145,0.056716784834861755,-0.07401953637599945,0.030819078907370567,-0.030577855184674263,-0.002363116480410099,0.01732163317501545,-0.008835414424538612,0.020500486716628075,-0.048263005912303925,0.047490887343883514,-0.04816408455371857,-0.06449475139379501,0.026308288797736168,0.05306311696767807,0.024132980033755302,-0.0012505411868914962,0.03538501635193825,0.03074338473379612,0.03037026710808277,0.0468406043946743,0.029853466898202896,0.07672790437936783,-0.020344285294413567,0.00870838388800621,-0.060823820531368256,0.018477344885468483,0.009730552323162556,0.013403475284576416,0.004787497688084841,-0.03393593803048134,-0.06753625720739365,-0.018803182989358902,0.007653836160898209,-0.05922212824225426,-0.06888274848461151,0.01991133578121662,0.0669359490275383,-0.008382679894566536,-0.02551235817372799,-0.05728583782911301,0.07376167923212051,-0.022012151777744293,-0.009239067323505878,0.07474388927221298,-0.042135607451200485,0.03897714987397194,-0.030983883887529373,0.006116949953138828,0.035863254219293594,0.03763804957270622,-0.07193515449762344,-0.02568751573562622,0.05791157856583595,0.047266360372304916]},{"id":"personify","vector":[-0.019928492605686188,-0.07474551349878311,-0.04089909419417381,0.012213600799441338,-0.01427882444113493,-0.009448116645216942,0.057763561606407166,-0.08236004412174225,0.029820334166288376,0.024761952459812164,0.05738184601068497,0.0049180020578205585,0.02361154556274414,0.05881018936634064,-0.0568380244076252,-0.03351343423128128,-0.06735410541296005,-0.04602252319455147,-0.05127522349357605,0.05946405231952667,-0.0547926239669323,-0.015836264938116074,0.047070086002349854,-0.05374995246529579,0.010409217327833176,-0.03531646728515625,-0.004914527293294668,0.01772335171699524,-0.0666540190577507,-0.04375077411532402,0.058428213000297546,-0.038997285068035126,-0.04728405922651291,-0.011044067330658436,0.03190945088863373,0.04992439225316048,-0.04407326132059097,0.0677914097905159,0.012707484886050224,-0.004572792910039425,0.007592295296490192,0.050221752375364304,0.05579390376806259,-0.07449102401733398,-0.022739440202713013,0.037784431129693985,-0.054202571511268616,0.01002612616866827,0.05319425091147423,0.06215793266892433,0.04528617858886719,-0.05804092809557915,-0.0012929883087053895,-0.027335315942764282,0.005655602086335421,-0.008940797299146652,0.04436885938048363,0.012527724727988243,0.06448382139205933,-0.0730404332280159,-0.017931845039129257,-0.02784070372581482,-0.04966992512345314,0.03239632770419121,-0.04004058241844177,0.0339510403573513,0.08473823964595795,0.03376968577504158,0.08455993235111237,-0.06136554479598999,-0.015033453702926636,-0.06463947147130966,-0.008706165477633476,0.027549482882022858,-0.06687798351049423,-0.061637405306100845,0.02164974994957447,-0.06610323488712311,-0.031012797728180885,0.04152872785925865,-0.0017774311127141118,0.06578845530748367,0.00065381865715608,-0.05987171083688736,-0.00732824532315135,0.05043087154626846,-0.017992902547121048,0.051052339375019073,-0.0422891229391098,0.04625646770000458,0.019640933722257614,0.027793942019343376,-0.06657445430755615,0.0549093596637249,-0.040220726281404495,0.0624208077788353,-0.057255785912275314,0.024073515087366104,-0.03494947776198387,-0.07608897984027863,-0.07399211078882217,0.014408682473003864,-0.010875153355300426,-0.008843865245580673,-0.010577278211712837,-0.00046000839211046696,-0.05535408854484558,0.06517522037029266,0.05995956063270569,0.011415278539061546,-0.04788052663207054,-0.06646561622619629,0.021380340680480003,-0.03694825619459152,-0.03827933222055435,0.054129987955093384,0.0002666344807948917,0.02983516827225685,-0.06406086683273315,0.060320205986499786,-0.035532958805561066,-0.08116926997900009,0.019946925342082977,-0.06938706338405609,-0.03897078335285187,0.006908394396305084,-0.02828674204647541,0.07157538086175919,0.040377773344516754,-0.06480985879898071,-0.04852411523461342,-0.06302358210086823,0.00481635145843029,0.04348078370094299,-0.027779249474406242,-0.05175299942493439,-0.013455823063850403,-0.05808047205209732,-0.04603620618581772,-0.013717287220060825,0.02602040022611618,-0.024587532505393028,0.05355536937713623,0.07190733402967453,-0.034956302493810654,-0.0016355592524632812,0.03298976644873619,0.005680136848241091,-0.026543311774730682,0.04759092256426811,-0.056449051946401596,-0.026934057474136353,-0.05259412154555321,0.012039216235280037,-0.05644617974758148,-0.04175485670566559,0.05966087058186531,-0.06412339210510254,0.06844964623451233,-0.06617141515016556,-0.02437441609799862,0.015045396983623505,0.03161567449569702,-0.0167537909001112,0.006688983645290136,0.04189371317625046,0.020419452339410782,-0.07296881824731827,-0.007390232291072607,0.06459540873765945,-0.04583697393536568,-0.03937152773141861,-0.023462168872356415,0.03385269641876221,-0.008070152252912521,0.06221713125705719,-0.07591734826564789,0.0773971825838089,0.07580585032701492,0.08054176717996597,-0.023761287331581116,0.06632714718580246,0.05267678201198578,-0.009764906950294971,0.016898056492209435,0.0065158759243786335,0.034604497253894806,0.05904115363955498,0.05671356990933418,-0.029481766745448112,-0.025265919044613838,0.041389498859643936,0.005793699994683266,-0.014799377880990505,0.08085248619318008,-0.07560216635465622,-0.03122747130692005,0.008640207350254059,-0.004868527874350548,0.07356481999158859,-0.007960944436490536,-0.00466997129842639,0.030519278720021248,0.015939580276608467,-0.029809432104229927,-0.050433799624443054,0.016071496531367302,-0.020732365548610687,0.040276579558849335,0.08023257553577423,0.0052902656607329845,-0.02499203197658062,0.07767293602228165,-0.03776823356747627,0.07560638338327408,-0.0066699860617518425,-0.05239623412489891,0.033145565539598465,0.07398867607116699,0.02049698494374752,0.0387626588344574,-0.04958405718207359,-0.015057315118610859,-0.074045829474926,0.038811393082141876,-0.059994760900735855,-0.0013608234003186226,0.02433890290558338,-0.002205246826633811,0.026711072772741318,-0.001215026481077075,0.05130709335207939,0.05940669775009155,0.021797144785523415,-0.000804844603408128,0.05322492867708206,0.051850058138370514,0.025516623631119728,-0.004943777807056904,-0.0733145996928215,-0.009897741489112377,0.029167041182518005,0.008799017407000065,-0.00787160824984312,-0.016644617542624474,-0.045429375022649765,-0.007710501551628113,0.00040874729165807366,-0.006866570562124252,-0.017873138189315796,0.06041409820318222,-0.04473796486854553,0.01409835647791624,-0.07242632657289505,-0.002723266603425145,0.06310424953699112,-0.021360771730542183,-0.07388249039649963,-0.013647464103996754,0.07903046905994415,-0.03150666505098343,0.00896778330206871,-0.011201726272702217,-0.0038989949971437454,-0.03468293324112892,0.05374107509851456,-0.0028928862884640694,-0.015093483030796051,-0.019172871485352516,-0.03862007334828377,0.05416218191385269,-0.07310102134943008,0.0012125395005568862,-0.02939288131892681,-0.00837797299027443,0.07441332936286926,-0.04740867391228676,0.04547975957393646,-0.035330500453710556,0.00037160879583097994,0.03989500179886818,0.08070346713066101,0.016225378960371017,-0.014961977489292622,-0.011686471290886402,-0.0737234577536583,-0.07939233630895615,0.01901947520673275,-0.02739044278860092,-0.04501144587993622,-0.04021918773651123,-0.017715755850076675,0.06904967129230499,0.025547180324792862,0.018108613789081573,-0.059721097350120544,0.039936088025569916,0.03509991988539696,0.043177131563425064,0.037872303277254105,-0.007985437288880348,0.037578485906124115,-0.03399735316634178,0.038652803748846054,0.0034709651954472065,0.0037873145192861557,0.024581260979175568,0.0020623139571398497,0.004200615920126438,-0.07778998464345932,-0.03262889385223389,0.04005114734172821,0.020406708121299744,0.05372878536581993,-0.07600078731775284,-0.06348485499620438,0.03354855254292488,-0.023412229493260384,-0.04509064182639122,-0.06087634339928627,-0.07719221711158752,0.049857672303915024,0.0077983541414141655,0.008784596808254719,0.06119094043970108,0.05518340691924095,-0.027829576283693314,-0.017343228682875633,0.041509076952934265,-0.04918123781681061,-0.039958395063877106,-0.05497349426150322,-0.05720064416527748,-0.062100861221551895,0.04646800085902214,0.014074592851102352,0.06118115782737732,0.07789985090494156,-0.01055997610092163,-0.018079616129398346,-0.013329222798347473,0.035197027027606964,0.06309892237186432,0.04045805335044861,0.03586208447813988,0.05556901916861534,-0.017460932955145836,0.04977194964885712,0.019197672605514526,0.04166517034173012,-0.08168036490678787,0.04357544332742691,0.04235079139471054,-0.062190067023038864,0.014351759105920792,0.03903651610016823,-0.027049148455262184,-0.07544293999671936,0.03862198442220688,0.02191108651459217,0.034955184906721115,0.04362344369292259,0.05670921131968498,-0.024476168677210808,0.01152527891099453,0.03154805675148964,-0.027940822765231133,-0.0616537481546402,-0.017898382619023323,-0.03915524110198021,-0.05638444796204567,0.00919924583286047,0.01381001714617014,-0.02673325315117836,-0.06523487716913223,-0.027317054569721222,-0.027604451403021812,-0.0010051786666736007,0.013791246339678764,0.044865384697914124,0.015358500182628632,0.052996255457401276,-0.05275195837020874,0.05414339527487755,0.034077730029821396,0.002400580793619156,0.0692659467458725,-0.03455726057291031,0.0020042189862579107,-0.03476181998848915,-0.05783382058143616,-0.01606988161802292,-0.016564175486564636,0.061244502663612366,0.06747746467590332,0.05061008408665657,0.038480740040540695,-0.05850173532962799,-0.025691021233797073,-0.04056328907608986,-0.06117434427142143,0.07183557748794556,-0.00012475276889745146,0.07490329444408417,-0.031531382352113724,-0.030729636549949646,0.04731866717338562,-0.06917385011911392,0.056002724915742874,-0.025054587051272392,0.06607062369585037,0.03551911190152168,0.012693064287304878,-0.017819752916693687,-0.008076735772192478,0.03566727787256241,0.04855168238282204,-0.044875726103782654,0.07103639096021652,0.03270993009209633,-0.05183926224708557,0.02335105463862419,0.014640516601502895,-0.03897007554769516,-0.03911595419049263,-0.04588900879025459,-0.04289109632372856,-0.059142738580703735,-0.06805599480867386,0.06333170086145401,-0.05330042168498039,-0.016490083187818527,-0.03238825500011444,-0.05916939303278923,0.05861235409975052,0.06097663566470146,-0.07891359180212021,0.03367520123720169,-0.01615690067410469,0.029472965747117996,-0.018554484471678734,-0.046730365604162216,0.03017805516719818,0.0529320165514946,-0.025165066123008728,0.0548042468726635,0.07413315773010254,-0.07768184691667557,0.06824208796024323,0.008647299371659756,0.04180362820625305,-0.027531804516911507,0.003719350788742304,-0.027911875396966934,0.019268373027443886,-0.06210419908165932,0.01211004238575697,0.030261576175689697,0.06932944804430008,-0.05671113729476929,-0.004392506089061499,-0.041225798428058624,0.0011725783115252852,0.0005411464371718466,-0.027279188856482506,0.024434976279735565,-0.006683768704533577,0.059834763407707214,-0.05789487436413765,-0.06563879549503326,0.003399048000574112,0.0711459293961525,0.01854930818080902,-0.006036845967173576,0.010631185956299305,0.04352547600865364,0.07491341978311539,0.024542713537812233,0.04592425748705864,0.04562301188707352,-0.03657110780477524,-0.05357901379466057,-0.026187537238001823,-0.005096391774713993,-0.005090609192848206,-0.01680106855928898,0.05281338468194008,-0.05284877121448517,-0.03686666861176491,0.01568465866148472,0.0029699180740863085,-0.0619509220123291,-0.07159821689128876,0.01630190573632717,0.059408288449048996,0.028398191556334496,0.05686679482460022,-0.03939227759838104,0.07235249876976013,0.009491763077676296,0.06063597649335861,0.028744148090481758,-0.006618205923587084,0.021733079105615616,-0.025862380862236023,-0.005373911466449499,0.03478679060935974,0.03410964459180832,-0.0710340365767479,-0.07869170606136322,0.042751021683216095,-0.0013764387695118785]},{"id":"perspective","vector":[0.05451171472668648,-0.03807230666279793,0.0006004801252856851,0.03239556401968002,-0.026626551523804665,-0.0008066015434451401,-0.004900682717561722,-0.06213349476456642,0.05607117339968681,0.024732526391744614,-0.010963237844407558,0.038872137665748596,-0.0010031292913481593,-0.008026480674743652,-0.07015625387430191,0.026826204732060432,-0.0643102154135704,-0.04752548411488533,-0.06522639095783234,0.050645746290683746,0.010110752657055855,-0.002445077057927847,0.0185843575745821,-0.02877144329249859,0.020699666813015938,0.03859679028391838,-0.012919236905872822,-0.015675164759159088,-0.05237201601266861,-0.05446140468120575,0.06808089464902878,-0.01915179006755352,-0.014328991994261742,0.053184688091278076,0.05522191524505615,0.03202948346734047,-0.05110761523246765,0.057027775794267654,0.0663013607263565,-0.04114370420575142,0.017178187146782875,0.02667389065027237,0.07333729416131973,-0.044111963361501694,-0.057621538639068604,0.036281898617744446,-0.06014378368854523,0.00028653701883740723,0.011516368016600609,0.06901678442955017,0.06472107023000717,-0.05270630121231079,0.03391945734620094,-0.032708145678043365,0.021398013457655907,-0.01938752830028534,0.03193504735827446,0.03954065963625908,0.05116277188062668,-0.06738977879285812,-0.06576698273420334,-0.05411793664097786,-0.04473394155502319,0.03569762781262398,0.005339680705219507,-0.015092398039996624,0.07695280015468597,0.018336346372961998,0.07765716314315796,-0.0632774829864502,-0.027541134506464005,0.007953672669827938,0.021292880177497864,0.04572313278913498,-0.04974249005317688,-0.055340442806482315,0.027046287432312965,0.05858217924833298,-0.003797877114266157,0.06618361175060272,0.012710291892290115,0.05362506955862045,-0.004824519623070955,-0.03484455496072769,-0.06312553584575653,0.052526459097862244,0.0009006582549773157,0.07326450198888779,-0.06488420814275742,0.07142125815153122,0.0069850776344537735,-0.038070790469646454,-0.0318702757358551,0.0450037457048893,-0.02039453759789467,0.005999659653753042,-0.07509630173444748,-0.0472586527466774,-0.05448175594210625,-0.06343666464090347,-0.07124581187963486,0.024942684918642044,0.022996045649051666,0.038703665137290955,-0.03707624971866608,-0.0033480306155979633,-0.054340314120054245,0.050376035273075104,0.06561066210269928,0.03940584138035774,-0.03363390639424324,-0.07354240119457245,-0.019057950004935265,-0.05231887102127075,-0.04974427819252014,0.01564086601138115,-0.011504818685352802,0.03877345845103264,-0.07382535934448242,0.051682282239198685,-0.03218134492635727,-0.0842023715376854,0.034883685410022736,-0.042124420404434204,-0.04756753891706467,0.0004811008693650365,-0.03532790765166283,0.05662430077791214,0.02397896721959114,-0.049687162041664124,-0.06550758332014084,-0.053216155618429184,-0.02114054560661316,-0.018920928239822388,-0.01730974204838276,-0.07535963505506516,0.02323879487812519,-0.048612818121910095,0.006201851647347212,0.03702187165617943,0.004664059728384018,-0.03830314055085182,0.02623353898525238,0.07932673394680023,-0.05065350979566574,0.002951794769614935,0.07193148136138916,-0.015183253213763237,0.02098282426595688,0.05170048028230667,-0.026918036863207817,-0.019926194101572037,-0.06740941107273102,-0.014917638152837753,-0.042082395404577255,-0.034575205296278,0.05713111534714699,-0.029968012124300003,0.047742053866386414,-0.0689232125878334,-0.011210916563868523,-0.019934454932808876,0.056387852877378464,-0.002003768691793084,0.013232267461717129,0.018012333661317825,-0.02121877484023571,-0.017396844923496246,0.023969242349267006,0.04415011405944824,-0.04774479568004608,0.03294067829847336,0.046800125390291214,0.02858498878777027,-0.037528760731220245,-0.00220819772221148,-0.08068326115608215,0.06927508860826492,0.07774095982313156,0.07019294053316116,0.004633740056306124,0.07926395535469055,-0.0033502934966236353,-0.010395276360213757,0.04501860588788986,0.07441265136003494,-0.017483457922935486,0.05302811414003372,0.04553019627928734,-0.05322995036840439,0.00984267983585596,0.011164277791976929,-0.0348258800804615,0.01797986961901188,0.07674466818571091,-0.028305431827902794,-0.03287236765027046,0.012280789203941822,-0.0002797201741486788,0.08062402904033661,-0.03294956684112549,0.011630981229245663,0.03847437724471092,0.04120318591594696,-0.05806921795010567,0.0056113810278475285,0.0758286789059639,0.008629962801933289,0.03491729125380516,0.07274926453828812,0.019438214600086212,0.02138286456465721,0.06745569407939911,-0.01703704334795475,0.06875887513160706,0.008890506811439991,-0.013130336999893188,-0.033663734793663025,0.04628046602010727,-0.025887086987495422,0.025739340111613274,-0.0007495175232179463,-0.007688853889703751,-0.06176122650504112,0.06346063315868378,-0.03918619453907013,-0.03563065454363823,0.02034645341336727,0.007876948453485966,0.004067322239279747,-0.041931167244911194,0.01986406370997429,0.028853055089712143,0.025060873478651047,0.017076119780540466,0.0322091169655323,0.044791411608457565,0.055694278329610825,-0.00865890271961689,0.06352431327104568,-0.04130670055747032,0.03013797104358673,-0.022396480664610863,0.004082507453858852,0.01292996946722269,0.009435607120394707,-0.007697663269937038,0.01887773908674717,0.010741024278104305,-0.038122694939374924,0.05765004828572273,-0.06065237894654274,0.06470517069101334,-0.06943274289369583,0.018221048638224602,-0.0249753650277853,-0.018264485523104668,-0.03661809861660004,-0.0036975049879401922,0.05980617552995682,-0.003299014875665307,-0.03176731616258621,0.01953519508242607,-0.0028597586788237095,0.02256033383309841,0.010865386575460434,0.050569839775562286,-0.014411114156246185,-0.025911370292305946,-0.04655469208955765,0.0586005374789238,-0.0715956911444664,0.011005397886037827,0.0029327066149562597,-0.002841067500412464,0.07525967806577682,-0.03927609324455261,0.027465099468827248,-0.0366678312420845,-0.026103133335709572,0.06443021446466446,0.06612805277109146,0.01314513385295868,0.007303137797862291,-0.036129504442214966,-0.0770815908908844,-0.08665455132722855,0.013770805671811104,-0.01863015629351139,-0.024030093103647232,-0.03366099298000336,-0.03841539844870567,0.06466434895992279,0.010302196256816387,-0.05467485636472702,-0.0631779134273529,0.07489676773548126,0.03557378426194191,0.0420767217874527,0.043971143662929535,0.010752800852060318,0.03495310619473457,-0.0035786060616374016,0.02271331660449505,0.031018514186143875,-0.007075169589370489,0.04229799658060074,-0.01738743670284748,0.0021465488243848085,-0.08513174951076508,-0.009388753212988377,0.017547665163874626,0.025257335975766182,0.07580853253602982,-0.06739114224910736,-0.038697946816682816,0.05661189183592796,-0.03988759219646454,-0.027336955070495605,-0.027977507561445236,-0.08342015743255615,0.054478444159030914,-0.04262353479862213,-0.03475132957100868,0.05709246173501015,-0.008632178418338299,-0.017999866977334023,-0.03921389952301979,0.003493569791316986,-0.06013008579611778,-0.03364526107907295,-0.0399307981133461,-0.06938012689352036,-0.029497161507606506,0.05658829212188721,0.03584640100598335,0.07940950989723206,0.08404400944709778,-0.0030078301206231117,0.016848407685756683,0.010210877284407616,0.04105871915817261,0.04754104092717171,0.006728673353791237,0.05984389781951904,-0.004257697146385908,-0.05329039692878723,0.062320366501808167,-0.013376004993915558,0.06735307723283768,-0.07790965586900711,0.06411010026931763,0.023610342293977737,-0.0015439350390806794,-0.035876642912626266,0.060727301985025406,0.002995905466377735,-0.055571381002664566,-0.013998657464981079,0.004262033849954605,0.05779600515961647,0.042204659432172775,0.0034560728818178177,0.01887182518839836,0.016145342960953712,-0.012626415118575096,-0.04457410052418709,-0.04983019083738327,-0.009708999656140804,-0.02330474555492401,-0.060563743114471436,0.03895283490419388,0.04604720324277878,-0.061374835669994354,-0.06047295033931732,-0.015072150155901909,0.00272142025642097,0.052990470081567764,0.018077820539474487,0.03580489754676819,0.022479480132460594,0.03064638376235962,-0.07317161560058594,0.027369260787963867,0.055080775171518326,0.026217874139547348,0.06374025344848633,-0.07054000347852707,-0.07175897806882858,-0.0437171570956707,-0.034772299230098724,-0.03803331404924393,-0.026191579177975655,0.039466116577386856,0.052855659276247025,0.03720923513174057,0.05099784582853317,-0.07787834107875824,-0.060039348900318146,-0.058532923460006714,-0.01904449798166752,0.0825018584728241,0.02254430018365383,0.0694754421710968,-0.008248823694884777,0.012930194847285748,0.045092567801475525,-0.07447222620248795,0.07201571017503738,-0.036315519362688065,0.076511912047863,0.012668431736528873,0.01623236946761608,-0.022036340087652206,0.019547834992408752,0.04565384238958359,0.03886129707098007,-0.007927952334284782,0.0634966492652893,0.06392192095518112,-0.05728700011968613,0.03616723418235779,0.029079392552375793,-0.04307347908616066,-0.07627405226230621,-0.013929042965173721,-0.03644050285220146,-0.07352997362613678,-0.023056156933307648,0.055011600255966187,-0.03960852324962616,-0.015308796428143978,0.008574516512453556,-0.051757752895355225,0.05212065204977989,0.07744953036308289,-0.07138927280902863,0.00006271139864111319,-0.03789721801877022,0.03310517221689224,-0.020236879587173462,-0.05857576057314873,0.039933040738105774,0.03675375133752823,-0.05502138286828995,0.06213771179318428,0.08491697162389755,-0.08114330470561981,0.05752634257078171,-0.04993870481848717,0.03340143337845802,-0.06539846211671829,0.011446680873632431,0.03799699991941452,0.030828120186924934,-0.07318971306085587,0.023506877943873405,0.045447442680597305,0.06242114678025246,-0.07383154332637787,0.030628837645053864,-0.06247527897357941,0.0013911278219893575,0.0018967698561027646,-0.04889202490448952,0.04795558378100395,-0.05616365373134613,0.03114776872098446,-0.067655548453331,-0.02046758495271206,-0.001563146710395813,0.06128973141312599,0.031248819082975388,-0.021126804873347282,0.04830477014183998,0.02631056122481823,0.048004403710365295,0.06271892040967941,0.00225317501462996,0.059240762144327164,-0.04177308827638626,-0.053060419857501984,-0.06430385261774063,-0.019022315740585327,0.0034871355164796114,0.021767187863588333,0.0022966908290982246,-0.037056975066661835,-0.06097066402435303,0.02529645338654518,0.015160329639911652,-0.018012581393122673,-0.06416898220777512,0.00786652136594057,0.07341734319925308,-0.032109688967466354,0.01397149357944727,-0.06410247832536697,0.06236225366592407,-0.0020667011849582195,-0.003583972342312336,0.03803486004471779,-0.030309028923511505,0.022521451115608215,-0.0035144537687301636,-0.044182512909173965,0.019549747928977013,0.008023283444344997,-0.0786828100681305,-0.07687213271856308,0.040689658373594284,0.02571220137178898]},{"id":"pixel-pusher","vector":[0.006282098591327667,-0.0761554166674614,-0.0326070673763752,0.03553643822669983,-0.0019834686536341906,0.045663416385650635,-0.025721395388245583,-0.08738081902265549,0.041002243757247925,0.028188159689307213,0.0468459352850914,0.020420778542757034,-0.035584960132837296,-0.010424821637570858,-0.05333765223622322,0.0076955510303378105,-0.06700441986322403,-0.053848154842853546,-0.07009919732809067,0.000011098180948465597,-0.010657519102096558,-0.002982959384098649,0.053731538355350494,-0.033855240792036057,0.02521936036646366,0.018008217215538025,0.021789133548736572,0.005688980687409639,-0.05821656435728073,-0.017754195258021355,0.03992483392357826,-0.030116243287920952,-0.027897443622350693,-0.0036344032268971205,0.04762302339076996,0.0482192225754261,-0.05341487377882004,0.006896297913044691,0.02252582274377346,-0.07374681532382965,-0.022981848567724228,-0.005572134163230658,0.03921439126133919,-0.0387088879942894,-0.010226424783468246,-0.014784309081733227,-0.06527020037174225,-0.027691353112459183,0.05369332432746887,0.043609391897916794,0.05590802803635597,-0.03141875937581062,0.008274989202618599,0.03038163296878338,-0.014608477242290974,-0.021334869787096977,0.004848399665206671,0.044318344444036484,0.056084826588630676,-0.07126080244779587,-0.036804042756557465,0.0005995665560476482,-0.03548334538936615,-0.0017363030929118395,-0.06168225407600403,0.020659705623984337,0.08924225717782974,0.03393906354904175,0.0858151912689209,-0.07559309899806976,-0.021115828305482864,0.01013510674238205,0.011106294579803944,0.02311597764492035,-0.05391016602516174,-0.060041286051273346,0.0055101290345191956,0.022257285192608833,0.005390283651649952,0.05238590016961098,0.012977958656847477,0.06544212996959686,-0.015541489236056805,-0.02217251993715763,-0.044065579771995544,0.06461494415998459,0.06289243698120117,0.08807110786437988,-0.05808351933956146,0.011376154609024525,0.005563144572079182,0.008550859987735748,-0.010919940657913685,0.03679141402244568,-0.030232269316911697,0.06475266814231873,-0.07675160467624664,0.002886060392484069,-0.06892367452383041,-0.04502780735492706,-0.0896720141172409,0.0634230300784111,0.038414664566516876,0.027802079916000366,-0.0013257494429126382,0.007527200970798731,-0.06668559461832047,0.05116244778037071,0.07272771000862122,0.03417477011680603,-0.022965116426348686,-0.07353880256414413,-0.008788886480033398,-0.06122590973973274,-0.03424294292926788,0.007956171408295631,0.02282572165131569,-0.00003105962241534144,-0.07811098545789719,0.04179292172193527,-0.01652229204773903,-0.07277239859104156,0.039983559399843216,-0.05620148777961731,-0.049520015716552734,0.0007319078431464732,-0.028020041063427925,0.04261088743805885,0.05281747132539749,-0.06473276764154434,-0.04890594258904457,-0.0526508204638958,-0.05584043264389038,0.014434814453125,-0.03253939375281334,-0.07482080906629562,-0.03590750694274902,-0.054036885499954224,-0.008775200694799423,-0.0019663493148982525,0.001466470886953175,-0.057510856539011,0.0663447231054306,0.07028099149465561,-0.041632845997810364,0.008387391455471516,0.06451988965272903,-0.0036995811387896538,0.004752289969474077,0.04561677575111389,-0.052124861627817154,0.015879495069384575,-0.06804477423429489,-0.06595639884471893,-0.04477398097515106,-0.031883206218481064,0.04630056396126747,-0.045593615621328354,0.047438886016607285,-0.06994946300983429,0.05630966275930405,-0.007403688970953226,0.043643735349178314,0.03365744277834892,0.0066099087707698345,0.035581495612859726,0.005903735291212797,-0.07056079059839249,0.02977612242102623,0.07101238518953323,-0.045547228306531906,-0.0010649634059518576,0.026775896549224854,0.031792283058166504,-0.012825269252061844,0.041539307683706284,-0.07112783938646317,0.07907918840646744,0.07764196395874023,0.06646141409873962,-0.03540271148085594,0.08854774385690689,0.006530561950057745,0.007403521798551083,0.055020060390233994,0.0641859769821167,-0.06424065679311752,0.04934270307421684,0.0448160246014595,0.00912977010011673,-0.04045075923204422,-0.017608381807804108,0.012458589859306812,0.03747052699327469,0.0854247435927391,-0.06820721179246902,-0.05693213641643524,0.0016361931338906288,0.015464110299944878,0.0882568359375,0.0383477509021759,0.017601434141397476,0.027221985161304474,0.028835337609052658,-0.05408138781785965,-0.04800046235322952,0.03691030666232109,-0.008983740583062172,-0.029122915118932724,0.06810224056243896,0.013214018195867538,-0.015859954059123993,0.0671391710639,-0.00813649594783783,0.051040876656770706,0.010556505993008614,0.003543536877259612,-0.004809042438864708,0.06371506303548813,-0.014796881005167961,0.02574474923312664,-0.030028264969587326,0.005551392678171396,-0.04359898716211319,0.031545400619506836,-0.03470234572887421,0.020834999158978462,0.02442825585603714,-0.033418506383895874,0.04220252111554146,-0.04897196590900421,-0.012735756114125252,0.02468806318938732,0.0006987593369558454,0.021754756569862366,0.050065185874700546,0.03473279997706413,0.038352444767951965,0.04172227904200554,0.042531806975603104,-0.05742086097598076,-0.022669902071356773,-0.03564399480819702,-0.05523180961608887,0.032686226069927216,-0.011410562321543694,-0.005958547815680504,0.04490090534090996,0.030873088166117668,-0.02885385975241661,0.016166837885975838,-0.0730956643819809,0.010701337829232216,-0.06968163698911667,-0.02429196424782276,0.008277333341538906,-0.029668837785720825,-0.0463002547621727,-0.04376108944416046,0.05801587179303169,-0.01261997688561678,-0.06401558965444565,-0.01870143599808216,0.01169433631002903,-0.011724445968866348,-0.0037908577360212803,0.031053239479660988,-0.015012877061963081,-0.02619212120771408,-0.04891311377286911,0.06371515244245529,-0.07742171734571457,0.022569194436073303,-0.04120297357439995,-0.04195944964885712,0.04930601269006729,-0.030989399179816246,0.009238778613507748,-0.0102515434846282,-0.00083592114970088,0.08544283360242844,0.07019010186195374,0.037663232535123825,0.02018377184867859,-0.03125828132033348,-0.055194880813360214,-0.08229789137840271,0.009660176932811737,-0.03518121317028999,-0.046646397560834885,0.006967190653085709,-0.033794574439525604,0.06055507808923721,0.06694301962852478,-0.02148703671991825,-0.0654248595237732,0.08450854569673538,0.026636043563485146,0.02918710559606552,0.03463812172412872,0.0047891451977193356,0.058805592358112335,-0.0020057535730302334,0.04243899881839752,-0.0008716749725863338,0.05106440559029579,-0.018125437200069427,-0.00663677928969264,-0.022040069103240967,-0.08082925528287888,-0.017709974199533463,-0.029448553919792175,0.03398186340928078,0.045736782252788544,-0.08129080384969711,-0.04138979688286781,0.06944052875041962,-0.03144964575767517,-0.04753541201353073,-0.00856458954513073,-0.08222036808729172,0.04205239191651344,-0.04161391034722328,-0.03795626387000084,0.06979304552078247,0.011382346041500568,-0.023951342329382896,0.02183355577290058,0.021745825186371803,-0.07339592278003693,-0.03084915317595005,-0.045444030314683914,-0.06755641847848892,-0.02406897209584713,0.030353453010320663,0.01988920010626316,0.07872258126735687,0.08477363735437393,0.022396579384803772,0.03745926916599274,-0.022883841767907143,0.022884998470544815,0.019361961632966995,-0.007517421152442694,0.06908679753541946,0.03664407879114151,-0.015994234010577202,0.05560249835252762,0.022851379588246346,0.05883480980992317,-0.08966482430696487,0.05786557123064995,0.04169366508722305,0.035430945456027985,-0.020295390859246254,0.058052726089954376,-0.03452439233660698,-0.07367896288633347,0.009563702158629894,0.009237897582352161,0.0466756708920002,0.036244746297597885,-0.010296937078237534,-0.028046222403645515,0.017327124252915382,0.008499096147716045,-0.02166127599775791,-0.07595715671777725,-0.05881932005286217,0.01435758825391531,-0.0665796622633934,0.03281741216778755,-0.0017925987485796213,-0.0540795773267746,-0.08174864947795868,-0.03245618939399719,-0.023609735071659088,0.041831664741039276,0.03679174929857254,0.03416174277663231,-0.000014212650057743303,0.01872078701853752,-0.06441011279821396,0.0636676475405693,0.029263891279697418,0.014424488879740238,0.06138267368078232,-0.03771257400512695,-0.018345000222325325,-0.06784245371818542,-0.044856078922748566,-0.003419657004997134,-0.01737961173057556,0.026088887825608253,0.030170733109116554,0.038994982838630676,0.06585923582315445,-0.06871866434812546,-0.0587751530110836,-0.08661165833473206,-0.02885553240776062,0.06336984783411026,0.018766164779663086,0.06601494550704956,-0.0023398168850690126,-0.016121074557304382,0.04111907631158829,-0.0817256048321724,0.05997372791171074,-0.060229405760765076,0.07958763092756271,0.0021647296380251646,0.02087559923529625,-0.0243538785725832,0.03877891227602959,-0.045146919786930084,0.054979439824819565,-0.01642821915447712,0.060930751264095306,0.03492056578397751,-0.05266109108924866,0.04254185035824776,0.03633600473403931,-0.05534061789512634,-0.059933774173259735,-0.007451019715517759,-0.022174229845404625,-0.02698666974902153,-0.029529618099331856,0.02516273222863674,-0.04530557617545128,0.02454153634607792,-0.04115903750061989,-0.04621047154068947,0.06931696832180023,0.07783672213554382,-0.07509861886501312,-0.008839039131999016,-0.03293316438794136,0.00672184256836772,-0.061364173889160156,-0.038267433643341064,0.035002268850803375,0.021793659776449203,-0.042796045541763306,0.052065588533878326,0.08089400082826614,-0.06953268498182297,0.07206554710865021,-0.018774166703224182,-0.015548959374427795,-0.06110134348273277,-0.02166903205215931,0.0315924733877182,0.039755742996931076,-0.07427184283733368,-0.012784394435584545,0.04690708965063095,0.04033737629652023,-0.040644168853759766,0.026563771069049835,-0.05202148109674454,0.004685012623667717,0.022083710879087448,-0.0004839210014324635,0.04229666665196419,-0.06507697701454163,0.04274485260248184,-0.05130623281002045,-0.02347908355295658,0.006498734466731548,0.04914950951933861,-0.009462337009608746,0.010966258123517036,-0.00037069281097501516,0.02354252152144909,0.040002066642045975,0.05505119264125824,0.040162552148103714,0.04190504178404808,-0.03802933916449547,0.02419019304215908,-0.06265140324831009,0.0026628500781953335,-0.023384124040603638,0.009369350038468838,0.021074047312140465,-0.07187050580978394,-0.05474710464477539,0.029650045558810234,0.0026353108696639538,-0.03388148546218872,-0.05519378185272217,-0.032569676637649536,0.07292670011520386,0.0031282929703593254,-0.02468673512339592,-0.062399741262197495,0.07924288511276245,0.017218690365552902,0.01810320094227791,0.054565463215112686,0.008989726193249226,0.016906490549445152,-0.032878633588552475,0.0202072411775589,-0.00875880941748619,0.00891104619950056,-0.08560699224472046,-0.08215104043483734,0.043985430151224136,0.04078690707683563]},{"id":"placate","vector":[0.009319821372628212,-0.022434260696172714,-0.030842456966638565,0.02457093447446823,-0.04616932198405266,0.020562592893838882,-0.001474773627705872,-0.08113156259059906,0.047063637524843216,0.031001117080450058,0.02559438906610012,0.0027800670359283686,-0.026330744847655296,-0.031465303152799606,-0.07027255743741989,0.02981971949338913,-0.055633753538131714,-0.06315547972917557,-0.031845372170209885,0.04529151692986488,-0.0010495588649064302,0.003138855332508683,0.045284852385520935,-0.04006952792406082,0.03752214461565018,-0.002420741133391857,-0.001393187791109085,0.03226293995976448,-0.03369002789258957,-0.0520627498626709,0.07069318741559982,-0.019026411697268486,-0.002654450247064233,-0.04878871515393257,0.06509962677955627,0.03977327048778534,-0.04655858874320984,0.04051769897341728,0.06409589946269989,-0.046316176652908325,-0.014825952239334583,0.006724349223077297,0.06254544854164124,-0.05029049143195152,-0.031579334288835526,0.003290750551968813,-0.037196774035692215,-0.016396427527070045,0.03748531639575958,0.03059162013232708,-0.01722017675638199,-0.06448734551668167,0.005429379176348448,-0.0557241290807724,0.03376617655158043,-0.03005426935851574,0.013371913693845272,0.0599062442779541,0.016602210700511932,-0.06914064288139343,-0.07470755279064178,-0.016477210447192192,-0.0525277778506279,0.023688532412052155,-0.009312537498772144,0.02548595704138279,0.07710637152194977,0.010218926705420017,0.07391403615474701,-0.0659845843911171,-0.020338624715805054,-0.05113358423113823,0.00474202586337924,0.03771716728806496,-0.03866584226489067,-0.059901412576436996,-0.00263043912127614,0.0698385089635849,-0.004794073291122913,0.057694725692272186,0.00489151431247592,0.02394404634833336,-0.012411119416356087,-0.006901515182107687,-0.04818034544587135,0.050500378012657166,0.011304636485874653,0.07672446966171265,-0.05834439396858215,0.053867440670728683,-0.022631917148828506,-0.00939994677901268,-0.011190274730324745,0.05888502299785614,-0.03631800040602684,0.029425600543618202,-0.0672585591673851,-0.05045335367321968,-0.051092687994241714,-0.051927629858255386,-0.08051370829343796,0.014382250607013702,0.01623239740729332,0.021531207486987114,-0.06170494109392166,0.005722086876630783,-0.05471830442547798,0.06287780404090881,0.007768548093736172,0.03661629557609558,-0.03967026621103287,-0.06935140490531921,-0.01392765436321497,-0.060154788196086884,-0.03253372386097908,0.027514396235346794,-0.003595825517550111,0.05530862510204315,-0.07320190221071243,0.011922160163521767,-0.022471752017736435,-0.07508537918329239,0.04924200847744942,-0.06809940189123154,-0.05710255727171898,0.006533955689519644,-0.01891905441880226,0.06626928597688675,0.03963086009025574,-0.07110147178173065,-0.06446193158626556,-0.04242124781012535,-0.015303838066756725,0.01823992282152176,-0.031545910984277725,-0.07270351052284241,0.02251368574798107,-0.0347965732216835,0.0030989579390734434,0.013942955993115902,-0.03548101708292961,-0.07241057604551315,0.047900449484586716,0.07514959573745728,-0.042983923107385635,0.010851103812456131,0.0692523717880249,0.008547812700271606,0.017653919756412506,0.04142959043383598,-0.009130576625466347,0.01851952075958252,-0.059883344918489456,-0.041361115872859955,-0.039915964007377625,-0.04417073354125023,0.04218379408121109,-0.022627485916018486,0.06405394524335861,-0.06817889213562012,0.004715355113148689,-0.0033407900482416153,0.054716918617486954,-0.02483193203806877,-0.02503829635679722,0.01508122868835926,0.04166930168867111,-0.05547681823372841,-0.0012395242229104042,0.0412658266723156,-0.05067548528313637,0.029706474393606186,-0.015016425400972366,0.0363733135163784,-0.04355088621377945,0.026462668552994728,-0.0634971633553505,0.06795879453420639,0.07853937894105911,0.05129438266158104,-0.016275163739919662,0.0735618844628334,0.02914455346763134,-0.008196879178285599,0.05428057536482811,0.06485584378242493,0.011867329478263855,0.04141159728169441,0.033218175172805786,-0.04481158033013344,-0.02477102354168892,-0.02545996382832527,-0.023059790953993797,-0.008390919305384159,0.0799536481499672,-0.009876103140413761,0.006778188981115818,0.03887702524662018,-0.01067123468965292,0.08223327249288559,-0.02817612700164318,0.04379758611321449,0.06334947049617767,0.04151833802461624,-0.058367371559143066,-0.02181117981672287,0.04813040792942047,-0.028349701315164566,0.022530730813741684,0.07297342270612717,0.03555549681186676,0.022746456786990166,0.05909740552306175,0.00463842274621129,0.07335320860147476,0.0013938294723629951,-0.03616424649953842,-0.020070429891347885,0.058986879885196686,-0.004227920435369015,0.038559503853321075,-0.012897671200335026,0.012852211482822895,-0.05294562876224518,0.05103683844208717,-0.04642844572663307,-0.06385310739278793,0.02732439897954464,-0.011771167628467083,-0.034085940569639206,0.005460159853100777,-0.0005400627851486206,0.02673952840268612,0.004912188742309809,0.026295991614460945,0.0604957714676857,0.053854748606681824,0.06530431658029556,0.007515421137213707,0.07339955866336823,-0.06463772058486938,-0.004153804387897253,-0.010359670966863632,-0.02948640286922455,0.009287986904382706,-0.008740575984120369,0.010087535716593266,0.042122676968574524,0.008424867875874043,-0.030484125018119812,0.06933559477329254,-0.07344681024551392,0.05371568724513054,-0.06479117274284363,-0.01867213472723961,0.010942509397864342,0.0034785945899784565,-0.05456089228391647,-0.022687964141368866,0.06846283376216888,-0.024370010942220688,0.01134596299380064,-0.01954737678170204,-0.013474701903760433,0.008707341738045216,0.019702734425663948,0.03391318395733833,-0.034081947058439255,-0.03705228120088577,-0.05856246501207352,0.07098820805549622,-0.06702622026205063,-0.002968178130686283,-0.014983287081122398,-0.011404549703001976,0.07560458779335022,-0.03549889475107193,0.04076193645596504,-0.023698097094893456,-0.01267404854297638,0.06421395391225815,0.07120969146490097,0.04935672506690025,0.021196577697992325,-0.0486183725297451,-0.06596247106790543,-0.08009835332632065,0.047772619873285294,-0.05355573818087578,-0.04083601385354996,0.007605003193020821,-0.03261307254433632,0.03812341392040253,0.009400221519172192,-0.0690658763051033,-0.05630935728549957,0.07673300057649612,0.039787523448467255,0.004915220662951469,0.04739314317703247,0.038703545928001404,0.055330295115709305,0.005208093672990799,0.05154271423816681,0.03905251994729042,0.019414765760302544,0.04052528738975525,-0.009988278150558472,-0.017115572467446327,-0.08209387958049774,-0.048730794340372086,-0.0012205420061945915,-0.016259239986538887,0.061198461800813675,-0.07772593945264816,-0.042329948395490646,0.07130756229162216,-0.0025334281381219625,-0.03999900817871094,-0.04064046964049339,-0.07484813034534454,0.04601118341088295,-0.04667993634939194,-0.0391119010746479,0.046676862984895706,0.02647789567708969,-0.039346013218164444,-0.05222649127244949,0.011471414938569069,-0.06110072135925293,-0.001621156930923462,-0.014468438923358917,-0.07471827417612076,-0.014445208013057709,0.05905081331729889,0.0035893800668418407,0.08144865930080414,0.08229552954435349,-0.01543028000742197,0.01109843235462904,0.0009596362942829728,0.008294212631881237,0.04644541069865227,-0.020150773227214813,0.039716847240924835,0.012917314656078815,-0.03894584998488426,0.06734877079725266,-0.01419137790799141,0.06288167089223862,-0.0790398046374321,0.06485952436923981,0.00012644771777559072,0.03751356527209282,-0.01406031008809805,0.06836901605129242,-0.015078517608344555,-0.058665335178375244,0.01709640957415104,-0.03154779598116875,0.06260991096496582,0.04712347313761711,0.02854819782078266,0.0030909946653991938,0.026426251977682114,0.012603831477463245,-0.036327384412288666,-0.062259797006845474,-0.04038291051983833,-0.0071768141351640224,-0.041199587285518646,0.007563453167676926,0.05382299795746803,-0.05198635533452034,-0.07799367606639862,-0.0008059323881752789,-0.009630003944039345,0.06618350744247437,-0.0008969056652858853,0.029059406369924545,0.004707343876361847,0.04413885250687599,-0.06506280601024628,0.049057915806770325,0.01448767352849245,0.041633240878582,0.04507548734545708,-0.05752173066139221,-0.07345985621213913,-0.04540221393108368,-0.06921202689409256,-0.03619106858968735,-0.0610516220331192,0.02615642547607422,0.045383088290691376,0.03247469291090965,0.04279695451259613,-0.04069218412041664,-0.051510151475667953,-0.08119844645261765,-0.021962592378258705,0.08210127800703049,0.018776988610625267,0.07614448666572571,-0.014490990899503231,-0.03167111799120903,0.05714911222457886,-0.06891383975744247,0.07557439059019089,-0.055287960916757584,0.07135173678398132,0.010903891175985336,0.005478199105709791,-0.023974085226655006,-0.011911963112652302,0.041782230138778687,0.05007348582148552,-0.061923038214445114,0.07446717470884323,0.054216060787439346,-0.06352602690458298,0.007903596386313438,0.04273317754268646,-0.05762765556573868,-0.055200785398483276,-0.018459049984812737,-0.023577773943543434,-0.07780416309833527,-0.03250771388411522,0.021252058446407318,-0.04113219305872917,0.03722495958209038,-0.014612214639782906,-0.04067576676607132,0.026753371581435204,0.07543947547674179,-0.0760955885052681,-0.013545630499720573,-0.07228752225637436,0.021290957927703857,-0.05547843873500824,-0.03403128683567047,0.036279041320085526,0.052480537444353104,-0.056490473449230194,0.068010114133358,0.08117685467004776,-0.06976210325956345,0.06728427112102509,-0.012065771035850048,0.045027654618024826,-0.03917698934674263,0.03190303221344948,0.01931675523519516,0.03263223543763161,-0.07110407948493958,0.004865392576903105,0.04404063522815704,0.06287921220064163,-0.055558834224939346,0.02794635109603405,-0.057425130158662796,0.046193402260541916,0.0009907791391015053,0.02141709439456463,0.057079289108514786,-0.058734145015478134,0.011034968309104443,-0.05454269051551819,-0.03583093360066414,0.030542565509676933,0.034899886697530746,0.0291623342782259,-0.008820277638733387,0.01769307814538479,0.015531272627413273,0.04481794685125351,0.0260434839874506,-0.0005077252862975001,0.06103489175438881,-0.010259279981255531,-0.06128677353262901,-0.05467124655842781,0.022503741085529327,-0.021317698061466217,0.04974604770541191,0.004071879666298628,-0.032418858259916306,-0.058141544461250305,0.008581741712987423,0.025641007348895073,-0.059881992638111115,-0.06347862631082535,0.01501998957246542,0.07416968792676926,0.026179499924182892,-0.01319124735891819,-0.06164242699742317,0.07233099639415741,-0.020166119560599327,0.009057293646037579,0.04569714143872261,-0.04330237954854965,0.012974903918802738,-0.039542704820632935,0.012964120134711266,-0.02827346697449684,-0.001107835560105741,-0.07379273325204849,-0.06383618712425232,0.030304105952382088,0.01955450512468815]},{"id":"pointed-question","vector":[0.006840074900537729,-0.06796050816774368,-0.0011149994097650051,-0.001426955102942884,-0.03180631250143051,0.032625049352645874,0.006343984045088291,-0.07675423473119736,0.05367203801870346,0.03302547335624695,0.050239551812410355,-0.02209675870835781,-0.024511709809303284,0.05376483500003815,-0.05050535872578621,-0.031281840056180954,-0.06987842917442322,-0.05931205302476883,-0.061655912548303604,0.0625992864370346,-0.00018606048251967877,0.008505753241479397,0.02660880982875824,-0.03726769983768463,0.00818608421832323,-0.01896088570356369,-0.053705278784036636,0.02669520117342472,-0.05775510147213936,-0.059298399835824966,0.05980546027421951,-0.016844838857650757,-0.05235349386930466,-0.03861471638083458,0.05095871165394783,0.03870562091469765,-0.05908733606338501,0.05552249029278755,0.05310017615556717,-0.06306421011686325,-0.028406623750925064,0.011298424564301968,0.03068481758236885,-0.053982213139534,-0.048581112176179886,-0.01219251099973917,-0.06748035550117493,-0.0014095434453338385,0.03836187720298767,0.05355238914489746,-0.004803844727575779,-0.04485500603914261,-0.001868078950792551,-0.024465195834636688,0.034792348742485046,0.0017356007592752576,0.02701909840106964,0.031021712347865105,0.0473206527531147,-0.07132991403341293,-0.05988134443759918,-0.007543250452727079,-0.04382091388106346,0.02583141252398491,-0.051188211888074875,0.014216270297765732,0.07502344995737076,0.03864838182926178,0.07831746339797974,-0.05652831494808197,0.0032410710118710995,-0.037840262055397034,0.013150067068636417,0.04238421097397804,-0.06408878415822983,-0.06914561986923218,0.033761754631996155,0.027251485735177994,0.0122395483776927,0.04869316145777702,0.013454563915729523,0.05158967897295952,0.000013628571650770027,-0.04295649006962776,-0.03377566486597061,0.05738529935479164,0.006765149533748627,0.07107383757829666,-0.06591477245092392,0.06449828296899796,-0.01748880185186863,0.02337334118783474,-0.040582120418548584,0.047350794076919556,-0.037156663835048676,0.05549341440200806,-0.06567597389221191,-0.010065772570669651,-0.05907053500413895,-0.047956183552742004,-0.07293320447206497,0.03728752210736275,-0.013306142762303352,0.017595060169696808,-0.02779421955347061,0.012462363578379154,-0.06540478020906448,0.05605773627758026,0.05650545284152031,0.03203675523400307,-0.0417100191116333,-0.07099493592977524,-0.003712568199262023,-0.0689852312207222,-0.04590087756514549,0.03690798580646515,0.004325139336287975,0.009213393554091454,-0.07410339266061783,0.04340003803372383,-0.01815786212682724,-0.07765122503042221,0.04096270352602005,-0.053291309624910355,-0.05113312229514122,-0.024744173511862755,-0.06185282766819,0.05795307457447052,0.04793050140142441,-0.07381543517112732,-0.06315585970878601,-0.04378018528223038,0.0051593175157904625,0.0447944700717926,-0.023878930136561394,-0.06648306548595428,-0.017535977065563202,-0.06072608008980751,-0.03729184716939926,0.002874077530577779,0.0030125114135444164,-0.06703907251358032,0.053664207458496094,0.06968650221824646,-0.004482074175029993,0.0407218262553215,0.049288880079984665,0.018569504842162132,0.007367329206317663,0.06208339333534241,-0.03582299128174782,0.014091242104768753,-0.06345304846763611,-0.02988896705210209,-0.020230207592248917,-0.05611304193735123,0.04809538647532463,-0.06309743970632553,0.027137938886880875,-0.0707387924194336,-0.015904884785413742,0.032834988087415695,0.03502054885029793,0.004250673111528158,0.01969679445028305,0.03614409267902374,-0.025433475151658058,-0.06398921459913254,0.03279998153448105,0.05551725998520851,-0.038309525698423386,-0.03087703324854374,-0.03943806514143944,0.051183659583330154,-0.039818912744522095,0.04813739284873009,-0.07072857022285461,0.07493118196725845,0.07140574604272842,0.07233380526304245,-0.015573911368846893,0.07214497774839401,0.047374676913022995,-0.033011049032211304,0.04627394303679466,0.06398046016693115,0.015105919912457466,0.04646255448460579,0.06718621402978897,-0.03590315580368042,-0.031114205718040466,-0.02857370674610138,-0.015895970165729523,0.008632628247141838,0.07711450755596161,-0.0680704191327095,-0.01972992531955242,0.03571623936295509,-0.0006003980524837971,0.07820219546556473,0.013305924832820892,0.04016057029366493,0.03420010954141617,0.05453354865312576,-0.029985547065734863,-0.058275140821933746,0.0008092656498774886,-0.043592099100351334,0.004828236997127533,0.07377663254737854,0.005463225767016411,0.0032831202261149883,0.06863833963871002,-0.0323999859392643,0.053340844810009,-0.0007873433642089367,-0.04077133908867836,0.01400179136544466,0.05940397456288338,0.02252207323908806,0.04367430880665779,-0.038174085319042206,-0.015532955527305603,-0.05924156680703163,0.0625966414809227,-0.054965727031230927,-0.03021707944571972,0.018304945901036263,-0.012870745733380318,0.03974965959787369,-0.03596462681889534,0.029795527458190918,0.038228075951337814,-0.000949810550082475,0.015696687623858452,0.06803526729345322,0.04664427042007446,0.03797183930873871,0.04004913568496704,0.021596716716885567,-0.04824833571910858,-0.02424883097410202,-0.0021719494834542274,-0.00843903049826622,0.03304552286863327,-0.04547414928674698,0.018353929743170738,0.045548636466264725,0.04119766503572464,-0.03531128913164139,0.05847010388970375,-0.053351838141679764,0.015427783131599426,-0.05894084274768829,-0.03565692901611328,0.055119942873716354,-0.015145347453653812,-0.055379174649715424,-0.045464590191841125,0.07495938241481781,-0.035448022186756134,-0.03277689218521118,-0.005198187194764614,0.025296639651060104,-0.02658931352198124,0.017818540334701538,0.02228538505733013,-0.005302589852362871,-0.027813823893666267,-0.028698991984128952,0.06604856252670288,-0.06714434176683426,0.026596972718834877,-0.034352123737335205,-0.01575501263141632,0.0632258951663971,-0.027087416499853134,0.001337285153567791,-0.03511928394436836,-0.0006954674609005451,0.07181990891695023,0.07472138106822968,0.03320348262786865,0.026284396648406982,-0.03696836531162262,-0.057489823549985886,-0.07586447149515152,0.017017735168337822,-0.018117887899279594,-0.06513865292072296,0.016290096566081047,-0.020684948191046715,0.07165354490280151,0.0610198974609375,0.0009609101107344031,-0.05761217325925827,0.06518436223268509,0.02666667476296425,0.038970157504081726,0.019443832337856293,0.001418178784660995,0.06627190858125687,-0.0006149602704681456,0.05932822823524475,-0.031538788229227066,0.03512405604124069,-0.0016250773333013058,0.00595826143398881,-0.031943805515766144,-0.07722799479961395,-0.028669139370322227,0.008248005993664265,0.011808664537966251,0.05528947710990906,-0.07788024842739105,-0.051569413393735886,0.053819406777620316,-0.026922551915049553,-0.04642299935221672,-0.03494153544306755,-0.07340693473815918,0.06123334541916847,-0.043401770293712616,-0.03147892281413078,0.054316163063049316,0.012655784375965595,-0.041215840727090836,-0.025846974924206734,0.019794544205069542,-0.06815843284130096,-0.051170602440834045,-0.03762036934494972,-0.06836171448230743,-0.022477632388472557,0.032245833426713943,0.02314157225191593,0.07457542419433594,0.07724206149578094,0.0361800454556942,0.013517742976546288,-0.015907878056168556,0.045541562139987946,0.07263584434986115,0.0025269044563174248,0.05311821401119232,0.0350031852722168,-0.014957493171095848,0.058329690247774124,-0.009093228727579117,0.0427064523100853,-0.07703036814928055,0.04606957361102104,-0.005664630327373743,0.02981664054095745,0.007914588786661625,0.06169246882200241,-0.03682537376880646,-0.07263419777154922,0.018978187814354897,-0.008234774693846703,0.05195207893848419,0.004443504847586155,0.013477351516485214,-0.02010391652584076,-0.005495019257068634,0.03504657372832298,-0.04294992610812187,-0.04415382072329521,-0.05625975877046585,-0.0002333739394089207,-0.062415629625320435,0.009082736447453499,-0.0028423492331057787,-0.04786856472492218,-0.0771467462182045,-0.01880168542265892,-0.02272631973028183,0.012359872460365295,-0.00005989468263578601,0.04765549302101135,0.011903439648449421,0.0450127013027668,-0.04540836438536644,0.06327883154153824,0.04097674787044525,0.026956796646118164,0.045839931815862656,-0.04863804951310158,-0.033566806465387344,-0.04683675989508629,-0.04994902014732361,-0.01594403386116028,-0.03251941129565239,0.02570577710866928,0.06003735959529877,0.033505793660879135,0.049675725400447845,-0.018024545162916183,-0.03175905719399452,-0.072923444211483,-0.04379083588719368,0.06802424788475037,-0.01369850430637598,0.07546373456716537,-0.02522987686097622,-0.052970029413700104,0.06364449858665466,-0.05527959391474724,0.061057817190885544,-0.059635940939188004,0.07031265646219254,0.03244546800851822,0.03766502067446709,-0.019002839922904968,0.003208136186003685,0.01486505102366209,0.02163448929786682,-0.019190335646271706,0.0737355574965477,0.0574968159198761,-0.04423859342932701,0.0430748388171196,0.010618598200380802,-0.06547053903341293,-0.041063982993364334,-0.047206368297338486,-0.015557690523564816,-0.05557647719979286,-0.04266419634222984,0.002946089254692197,-0.046684324741363525,0.034575801342725754,-0.04161660745739937,-0.05189841613173485,0.04336477816104889,0.06739301979541779,-0.0756194069981575,-0.020423103123903275,-0.05472464859485626,0.009935884736478329,-0.04911379516124725,-0.03414684906601906,0.03726886585354805,0.03615381941199303,-0.0612107515335083,0.05787687748670578,0.0707448422908783,-0.07259702682495117,0.050155993551015854,-0.02671944350004196,0.04989549145102501,-0.02791326679289341,0.005793414544314146,-0.010100913234055042,0.042327653616666794,-0.0647532045841217,-0.008382572792470455,0.06391400843858719,0.0646405816078186,-0.05006982013583183,0.0058005377650260925,-0.05479423329234123,-0.03450268134474754,0.017704684287309647,0.02590460702776909,0.03270292654633522,-0.05315675586462021,0.05594532564282417,-0.04530475661158562,-0.03189422935247421,0.01613299362361431,0.05576026067137718,0.0017355699092149734,0.023645589128136635,0.05286599323153496,0.03755303844809532,0.06415148079395294,0.0020172069780528545,0.04110223799943924,0.049363456666469574,-0.031526099890470505,-0.0011114488588646054,-0.06677280366420746,0.020202092826366425,-0.027495458722114563,0.01734350249171257,0.05080358311533928,-0.04559251293540001,-0.060665957629680634,0.049116283655166626,0.014071139506995678,-0.05368363484740257,-0.053581200540065765,0.014364189468324184,0.06633584201335907,0.012155529111623764,0.033771708607673645,-0.05676262453198433,0.07363425940275192,-0.009718169458210468,0.03886932134628296,0.06801220029592514,-0.02304421365261078,0.01915605738759041,-0.040761761367321014,0.044276442378759384,0.014939147979021072,0.026279626414179802,-0.07304329425096512,-0.06873758882284164,0.047576677054166794,-0.011358239687979221]},{"id":"post-civil-chattanooga","vector":[0.027234574779868126,0.04337143898010254,-0.023563889786601067,0.04221582040190697,-0.04245336353778839,0.025639159604907036,-0.010182459838688374,-0.07741402834653854,0.061605025082826614,0.011742234230041504,0.03418853133916855,0.005001032259315252,-0.01264110766351223,-0.0020327894017100334,-0.0353580005466938,0.043003637343645096,-0.04270749166607857,-0.0706716775894165,-0.022539256140589714,0.05208240821957588,-0.003886900143697858,0.0011655989801511168,0.06268394738435745,-0.05175987631082535,0.054973289370536804,-0.040657367557287216,0.012758501805365086,-0.0012369102332741022,-0.02312565967440605,-0.0343710221350193,0.06537620723247528,-0.028744176030158997,-0.06740754842758179,-0.027262764051556587,0.05016322061419487,0.03849096968770027,-0.04624277353286743,0.04995907470583916,0.0783194825053215,-0.05992959067225456,-0.057874344289302826,0.025717714801430702,0.0609954334795475,-0.04391852766275406,-0.029869994148612022,-0.028833303600549698,-0.031003300100564957,-0.014869625680148602,0.029891731217503548,0.011795544996857643,-0.005940771661698818,-0.07085876166820526,0.01918627880513668,-0.015925263985991478,0.059200916439294815,-0.07111024856567383,0.023572877049446106,0.028962740674614906,0.05361457169055939,-0.03707050159573555,-0.07301802933216095,-0.02956557646393776,-0.05102526769042015,-0.04193766415119171,-0.015561423264443874,0.0552549809217453,0.08016113936901093,0.03381708636879921,0.0747162252664566,-0.06182507798075676,-0.03242848068475723,-0.018874233588576317,-0.04542423412203789,0.04425762593746185,-0.04122907668352127,-0.05949472635984421,0.03746895492076874,0.03643149882555008,0.05397510528564453,0.06804158538579941,0.009183496236801147,0.05000360682606697,0.010820970870554447,0.016735712066292763,-0.05928734317421913,0.03975382074713707,0.01466871052980423,0.057756468653678894,-0.0616842545568943,0.042630404233932495,-0.034202490001916885,0.04174581170082092,-0.027361195534467697,0.06457503885030746,-0.0355302058160305,0.030957097187638283,-0.06997151672840118,-0.004489598795771599,-0.03949451074004173,-0.04985455796122551,-0.08143015205860138,0.039701297879219055,-0.032107993960380554,0.03411809727549553,0.04212396964430809,-0.021850746124982834,-0.06931713968515396,0.031393978744745255,0.049630921334028244,0.03388126939535141,-0.03534358739852905,-0.02393271028995514,-0.019095974043011665,-0.05080591142177582,-0.005769796669483185,0.047759395092725754,0.0011118754046037793,0.005141565576195717,-0.07154983282089233,0.01571652851998806,-0.04172482341527939,-0.07210511714220047,0.04649859294295311,-0.05287542939186096,-0.05022145062685013,0.002733964007347822,-0.0015291350428014994,0.07365232706069946,0.022399209439754486,-0.05331898108124733,-0.06373301893472672,-0.03389642760157585,0.034904494881629944,0.02530720643699169,-0.03448472544550896,-0.07835520058870316,-0.008751248009502888,-0.06621503829956055,0.052596379071474075,-0.028942270204424858,-0.018012093380093575,-0.024364246055483818,0.04248211160302162,0.07151813805103302,-0.04164158180356026,0.0645771324634552,0.06832487881183624,-0.010287513956427574,0.012116660363972187,0.04967069253325462,-0.03521915525197983,0.04751966893672943,-0.028867634013295174,-0.04880679398775101,-0.060552362352609634,-0.008474800735712051,0.030612528324127197,-0.029963437467813492,0.07448209822177887,-0.05296118184924126,-0.052913911640644073,-0.0312185175716877,0.04989238455891609,0.013398994691669941,-0.003949612844735384,0.012164002284407616,0.06897566467523575,-0.036584410816431046,0.002295093145221472,0.048199448734521866,-0.02101946249604225,0.008184697479009628,-0.008131694048643112,0.05463342368602753,-0.026541268453001976,0.06104382500052452,-0.05170257389545441,0.07983799278736115,0.07383588701486588,0.046780601143836975,-0.05954163521528244,0.06305091083049774,-0.005721490364521742,0.02720869518816471,-0.005126759875565767,0.009221493266522884,0.043561942875385284,0.04295014962553978,0.049714889377355576,-0.049865804612636566,-0.03604400157928467,0.002150735817849636,-0.010409760288894176,-0.06917358934879303,0.080650694668293,-0.05860242620110512,0.008267526514828205,-0.01651337556540966,0.03099904954433441,0.07515128701925278,0.018837247043848038,0.01715289056301117,0.050695184618234634,0.025056755170226097,-0.05989422649145126,-0.0014847571728751063,0.026493532583117485,-0.08099843561649323,0.05692845210433006,0.022416777908802032,0.02376091107726097,0.030054839327931404,0.06713837385177612,0.028051497414708138,0.04947417229413986,0.04521746560931206,0.018284687772393227,0.0009038355201482773,0.038943737745285034,-0.03310985490679741,0.06517684459686279,-0.043476417660713196,-0.01739676296710968,0.004905208013951778,0.04286262020468712,-0.006949252914637327,-0.044557295739650726,0.051214300096035004,-0.021130766719579697,0.028705837205052376,0.02020769566297531,0.007144135423004627,0.04457861930131912,-0.007845688611268997,-0.04908129572868347,0.07380054146051407,0.047373827546834946,0.037006594240665436,-0.05113190412521362,0.042901020497083664,-0.04888371378183365,-0.011868314817547798,0.01773761212825775,-0.02546199969947338,0.02725941129028797,-0.0404227189719677,0.05031204596161842,0.03171711415052414,-0.021457523107528687,-0.036748483777046204,0.032356541603803635,-0.060814522206783295,0.055035438388586044,-0.06495558470487595,0.0001730500953271985,-0.01586093381047249,-0.0648299977183342,-0.046317026019096375,-0.03923424705862999,0.04299858585000038,0.02530084364116192,0.032200805842876434,-0.05223175883293152,-0.05309643968939781,-0.0036763532552868128,0.04445790499448776,-0.006660936400294304,-0.047984324395656586,-0.022130707278847694,-0.0021274324972182512,0.0676041767001152,-0.0703272670507431,-0.015540258958935738,-0.05065356567502022,0.037418968975543976,0.07893924415111542,-0.021429138258099556,0.03190844506025314,-0.01997215859591961,-0.05775673687458038,0.06623627990484238,0.08291400223970413,0.07306276261806488,0.04409477859735489,-0.04656558483839035,-0.07757595181465149,-0.057839956134557724,0.05304224416613579,-0.0508524551987648,-0.03485363349318504,0.005791753996163607,-0.06408677995204926,0.029308993369340897,-0.020118415355682373,-0.07666650414466858,-0.052530862390995026,0.027857288718223572,-0.020599855110049248,0.046106308698654175,0.05555605888366699,0.017099009826779366,0.0680890679359436,-0.002750379964709282,0.04812129586935043,0.02788783423602581,0.07266092300415039,0.02530086226761341,0.05588088557124138,-0.06236867234110832,-0.0788019597530365,0.015781499445438385,-0.017627904191613197,-0.010567172430455685,-0.00048257308662869036,-0.07628888636827469,-0.04431432858109474,0.06289996206760406,-0.05534546822309494,-0.026746250689029694,-0.038102779537439346,-0.06620849668979645,0.03606189414858818,-0.045085277408361435,-0.042448703199625015,0.06257286667823792,0.037434130907058716,-0.0709756538271904,-0.015589212998747826,0.006641120184212923,-0.04965455085039139,0.013240167871117592,-0.030268432572484016,-0.07381241768598557,-0.05520562827587128,0.038818106055259705,-0.033453319221735,0.06363782286643982,0.07640083134174347,-0.02161862701177597,-0.03828972205519676,0.030248433351516724,0.0022686573211103678,0.04438338801264763,-0.001422015717253089,-0.04826734587550163,0.007873078808188438,-0.05260494723916054,0.04405746981501579,0.02619779482483864,0.04232001677155495,-0.0632784366607666,0.04243439808487892,-0.009939813055098057,0.03793938457965851,-0.00814373791217804,0.06208214908838272,0.0328032560646534,-0.06393491476774216,0.02673022821545601,-0.011601680889725685,0.044739022850990295,-0.03006283938884735,0.051055658608675,-0.02642093598842621,0.011971568688750267,0.02935953624546528,-0.0473489984869957,-0.06001758202910423,-0.04280238598585129,0.005734890699386597,-0.057836610823869705,-0.015820780768990517,0.03003714419901371,-0.022680332884192467,-0.07317183911800385,0.05439136177301407,-0.008120485581457615,0.05440137907862663,0.00112632242962718,0.024046463891863823,-0.006102230399847031,0.019290665164589882,-0.04160120338201523,0.0640798807144165,0.0333297960460186,-0.0014947823947295547,0.06909451633691788,-0.04363877326250076,-0.02176344208419323,-0.05539122223854065,-0.04236740991473198,-0.04251689836382866,-0.03362547978758812,-0.0023672813549637794,0.02923945151269436,0.021717717871069908,-0.050602465867996216,-0.05719370394945145,-0.010465332306921482,-0.07986629754304886,-0.034068845212459564,0.0769687220454216,0.01949934847652912,0.05914553627371788,-0.034133430570364,-0.05964469909667969,0.049693748354911804,-0.05720703303813934,0.07668641954660416,0.005888313986361027,0.07722887396812439,0.025196624919772148,0.0323200561106205,-0.02629719115793705,0.006812268868088722,0.013026258908212185,0.05077315866947174,-0.00965010467916727,0.06891224533319473,0.044200241565704346,-0.047359660267829895,0.05726128816604614,0.012326890602707863,-0.06801887601613998,-0.05583301931619644,-0.06181470677256584,-0.043677374720573425,-0.08139526844024658,-0.022329319268465042,0.0012782607227563858,-0.037073101848363876,0.006496958434581757,0.010817442089319229,-0.028066439554095268,0.04063528776168823,0.06871648132801056,-0.0488753616809845,0.014677595347166061,-0.06953197717666626,0.04480466619133949,-0.004242102615535259,-0.051975496113300323,0.000255993043538183,0.032876044511795044,-0.042667292058467865,0.026258615776896477,0.08315978199243546,-0.07303627580404282,0.05956387519836426,-0.04809898883104324,-0.003972544800490141,-0.043347518891096115,-0.012029520235955715,-0.0031259229872375727,0.041912537068128586,-0.07487807422876358,-0.06305763870477676,0.030984705314040184,0.07687798887491226,-0.0552046038210392,0.045858096331357956,-0.009396613575518131,-0.001056820503436029,0.012820199131965637,0.0039482624270021915,0.028150442987680435,-0.03656952083110809,0.03857244923710823,-0.02859816700220108,-0.019149916246533394,-0.018416691571474075,-0.03844702988862991,0.042684271931648254,-0.037732310593128204,-0.00493320869281888,0.005774523597210646,0.02945397049188614,-0.032057203352451324,-0.008529573678970337,0.0674348995089531,0.037720244377851486,-0.016116734594106674,-0.03875249996781349,0.0339151993393898,0.021196449175477028,0.04054868593811989,0.05211414396762848,-0.05299155041575432,-0.06871110200881958,-0.011891285888850689,0.010275663807988167,-0.07821537554264069,-0.08166059851646423,-0.015513919293880463,0.06290082633495331,0.007873116992413998,0.04539966583251953,-0.07231424003839493,0.06150892376899719,0.042448386549949646,-0.040098391473293304,0.01987660862505436,0.020611900836229324,-0.051286730915308,-0.014440987259149551,0.0055212099105119705,-0.046145591884851456,0.03466344252228737,-0.06574733555316925,-0.047823820263147354,0.035428546369075775,0.03565318509936333]},{"id":"pure","vector":[0.022537443786859512,-0.021043943241238594,-0.02410239726305008,0.033677633851766586,-0.025722859427332878,-0.004189035855233669,0.017088117077946663,-0.07411319017410278,0.057926882058382034,0.013907091692090034,0.004069584421813488,-0.0358501635491848,-0.03230030834674835,0.051314808428287506,-0.06683222204446793,-0.05983702465891838,-0.042964302003383636,-0.04385951906442642,-0.044181112200021744,0.056633543223142624,0.00761575810611248,-0.00980429444462061,0.00042258010944351554,-0.0666794702410698,0.015197611413896084,-0.02060597762465477,-0.03553265333175659,0.03450474515557289,-0.04533407464623451,-0.05459190160036087,0.055035606026649475,-0.02135089412331581,-0.052534814924001694,0.02680961601436138,0.059373416006565094,0.03431236371397972,-0.05225761607289314,0.0450463742017746,0.07023260742425919,-0.05436296761035919,0.0031372997909784317,0.013889091089367867,0.05257749184966087,-0.03179236873984337,-0.03313429281115532,0.02533036097884178,-0.06628206372261047,-0.016761787235736847,0.010878411121666431,0.0735199823975563,0.0004346732166595757,-0.0748014897108078,-0.02351420558989048,-0.004467770457267761,0.033025968819856644,-0.010414429940283298,0.05156765505671501,0.048571474850177765,0.06273646652698517,-0.06420999020338058,-0.06401165574789047,-0.01426091231405735,-0.05449707806110382,0.04860958829522133,-0.0025087350513786077,0.00015903585881460458,0.0694563016295433,0.01408953033387661,0.08937494456768036,-0.04579431191086769,-0.03080674819648266,-0.011724230833351612,0.006481196731328964,0.033070169389247894,-0.05191323161125183,-0.057269301265478134,0.043948739767074585,0.06761839985847473,-0.023839695379137993,0.05004951357841492,0.020118242129683495,0.035757191479206085,-0.02646903693675995,-0.03919467702507973,-0.030284594744443893,0.053200025111436844,0.022345541045069695,0.04964284971356392,-0.05844784528017044,0.07341961562633514,-0.019545208662748337,-0.043550748378038406,-0.061424750834703445,0.030227266252040863,-0.03543820604681969,0.04082135111093521,-0.07073395699262619,-0.04558685049414635,-0.06017160788178444,-0.02572309970855713,-0.08035870641469955,0.01598876528441906,-0.0004575277853291482,0.03231845796108246,-0.010551516897976398,0.003781681414693594,-0.06897120922803879,0.04588259011507034,0.07566597312688828,0.010708698071539402,-0.020542312413454056,-0.06895611435174942,-0.01159875001758337,-0.0647541731595993,-0.048345740884542465,-0.008132701739668846,-0.006032594945281744,0.03966587409377098,-0.06903768330812454,0.04988858103752136,-0.04340874403715134,-0.08573052287101746,0.04100245237350464,-0.06742579489946365,-0.058060284703969955,-0.033564042299985886,-0.03809286653995514,0.052113715559244156,0.05454346165060997,-0.06752748787403107,-0.06688255071640015,-0.04179960861802101,-0.019249871373176575,-0.0029665755573660135,-0.025902878493070602,-0.0764075517654419,-0.04308592155575752,-0.04437663033604622,-0.02537822164595127,0.014578379690647125,-0.004293140955269337,-0.05976692587137222,0.05258975550532341,0.07590671628713608,-0.0007589482702314854,0.02072596736252308,0.03830190747976303,0.0037131740245968103,0.035051096230745316,0.061293069273233414,-0.017044859007000923,-0.0013786593917757273,-0.06958746910095215,-0.005085438024252653,-0.04019380360841751,-0.009112906642258167,0.051172833889722824,-0.06960184872150421,0.01245212648063898,-0.05815979838371277,-0.03533485531806946,0.045779839158058167,0.057385388761758804,0.02260678820312023,0.01578482985496521,0.024510197341442108,0.012297941371798515,-0.06879077851772308,0.018357301130890846,0.040968362241983414,-0.06111225113272667,-0.04154128208756447,-0.016078226268291473,0.05283603444695473,0.0005086705205030739,0.02138310670852661,-0.06790841370820999,0.07741165906190872,0.07947151362895966,0.06298383325338364,0.0033906258177012205,0.07551369816064835,0.06743555516004562,-0.005150423850864172,0.04558834806084633,0.07294156402349472,-0.011114961467683315,0.05030794441699982,0.07803856581449509,-0.056072961539030075,-0.030649660155177116,-0.01781184785068035,-0.03605068102478981,0.03353504836559296,0.07383882254362106,-0.053839411586523056,-0.019759507849812508,0.046933677047491074,-0.029421359300613403,0.08386000245809555,-0.0018274043686687946,0.03953064978122711,0.041114404797554016,0.0006091552204452455,-0.03676939383149147,-0.03293679282069206,0.011066769249737263,-0.05381127819418907,0.0036544580943882465,0.07469139993190765,0.01690637692809105,0.007719205692410469,0.06288454681634903,0.009907449595630169,0.06431252509355545,-0.02990463376045227,-0.06208222731947899,-0.00016989670984912664,0.06385218352079391,-0.013799515552818775,0.040289219468832016,-0.02513735741376877,-0.01592724397778511,-0.055715274065732956,0.0425909049808979,-0.060048121958971024,-0.05573614314198494,0.014801327139139175,-0.010730215348303318,0.01031467691063881,-0.04900139942765236,0.012133153155446053,0.04698427766561508,0.00524767255410552,0.03473910689353943,0.008251418359577656,0.032737378031015396,0.060519009828567505,0.04765399545431137,0.0789533331990242,-0.05173656716942787,0.014340974390506744,0.011229750700294971,0.0005000545643270016,0.03573599085211754,-0.02012936770915985,0.024919038638472557,0.004213801585137844,0.021339567378163338,-0.05926916375756264,0.04684268683195114,-0.07323729991912842,0.004786411300301552,-0.03967966511845589,-0.007300499826669693,-0.017206242308020592,-0.02482178620994091,-0.0637461468577385,-0.007792198099195957,0.05862770974636078,-0.024014253169298172,-0.02225746028125286,-0.00030908745247870684,0.0015238557243719697,0.013829552568495274,0.024997998028993607,0.0197199285030365,-0.00027140125166624784,-0.02744119241833687,-0.06151372566819191,0.06212448701262474,-0.06481797248125076,0.03553934767842293,-0.018896058201789856,0.0032848974224179983,0.07671936601400375,-0.04268888384103775,0.017394723370671272,-0.05199146643280983,-0.013115772046148777,0.05943950265645981,0.08261676132678986,0.02577236108481884,0.007745674811303616,-0.040627703070640564,-0.06178669631481171,-0.07720953226089478,0.03350956737995148,-0.032611697912216187,-0.04584034904837608,-0.012427280656993389,-0.004925120156258345,0.07490561157464981,0.001005880767479539,-0.03373194858431816,-0.03742571175098419,0.06760755181312561,0.022210480645298958,0.06407278776168823,0.028789522126317024,0.042070142924785614,0.0746997818350792,0.01156077440828085,0.03836432099342346,0.04592062160372734,0.031163150444626808,0.01050469372421503,0.02997623011469841,0.01793699711561203,-0.08479195088148117,-0.032903317362070084,0.00876741111278534,0.02889697067439556,0.06348711252212524,-0.08394371718168259,-0.036239929497241974,0.05476650968194008,-0.036730460822582245,-0.038955360651016235,-0.03855038434267044,-0.0776950791478157,0.02912764996290207,-0.05059391260147095,-0.02170850709080696,0.03038836270570755,0.020192299038171768,-0.0265815369784832,-0.027272647246718407,0.07563009858131409,-0.0414017029106617,-0.018233472481369972,-0.03845100477337837,-0.06832248717546463,-0.050055358558893204,0.0548587366938591,0.03126593306660652,0.07671385258436203,0.0830133929848671,0.01268776785582304,0.024441584944725037,0.05972631648182869,0.007023776415735483,0.08176517486572266,0.007261605933308601,0.010478661395609379,0.015349010936915874,-0.026838243007659912,0.06564249098300934,-0.017206527292728424,0.06264086067676544,-0.0736122876405716,0.05803243815898895,0.0283092949539423,0.049150146543979645,-0.015422272495925426,0.05131450295448303,-0.04733949154615402,-0.053521398454904556,-0.03028162382543087,-0.014825364574790001,0.048894915729761124,0.03786512836813927,0.0380341075360775,-0.022624783217906952,0.011096238158643246,-0.0057053170166909695,-0.021992389112710953,-0.012180077843368053,-0.036292411386966705,-0.03404569998383522,-0.06615141034126282,0.013389408588409424,0.03944500535726547,-0.019224047660827637,-0.0644114688038826,-0.017730476334691048,0.02617514505982399,0.0034973255824297667,0.026233769953250885,0.05398170277476311,0.05177871137857437,0.05288983881473541,-0.06922147423028946,0.05456721782684326,0.01843680813908577,0.0186357032507658,0.06862809509038925,-0.05065062642097473,-0.05959364026784897,-0.002916126511991024,-0.03838937729597092,-0.021048972383141518,0.024509934708476067,0.051859062165021896,0.05795656517148018,0.04045611992478371,0.06590697914361954,-0.05418180674314499,-0.04339011386036873,-0.08542502671480179,-0.033270351588726044,0.08048447221517563,0.011166684329509735,0.07522035390138626,0.004378350451588631,-0.028538409620523453,0.0462772436439991,-0.030036695301532745,0.07198099046945572,-0.046808935701847076,0.08373358845710754,-0.030130013823509216,-0.019494516775012016,0.013380279764533043,0.0014196611009538174,-0.014164969325065613,0.03297720104455948,-0.015978887677192688,0.0792682096362114,0.07141512632369995,-0.04753510653972626,0.0225299671292305,-0.039722006767988205,-0.03756781294941902,-0.053011491894721985,-0.05050913989543915,-0.021431565284729004,-0.0707273930311203,-0.02181342989206314,-0.011055252514779568,-0.06467042863368988,0.04241972416639328,-0.0024228189140558243,-0.05565241724252701,0.03595077246427536,0.06692807376384735,-0.06790998578071594,0.009370760060846806,-0.016978461295366287,0.0281236432492733,-0.041081223636865616,-0.030413486063480377,0.03565976023674011,0.051138557493686676,-0.06621399521827698,0.07567736506462097,0.08544272184371948,-0.07642916589975357,0.05052760988473892,-0.03973501920700073,0.03871162608265877,-0.04772050306200981,-0.022607063874602318,0.0008298284374177456,0.019115755334496498,-0.06285360455513,-0.007393996696919203,0.03193702921271324,0.03855856880545616,-0.054101843386888504,0.0188294630497694,-0.029763100668787956,-0.02075977995991707,0.0152595741674304,-0.007345851510763168,0.05458800122141838,-0.07633604854345322,0.033266983926296234,-0.034660227596759796,-0.04323152080178261,0.015316052362322807,0.051026850938797,0.015228752046823502,-0.0037926698569208384,0.038392405956983566,0.031139984726905823,0.05945639684796333,-0.028477707877755165,-0.0252777561545372,0.03964458405971527,-0.03412244841456413,-0.0038550894241780043,-0.0312621183693409,0.0203088391572237,0.005310694221407175,0.030792109668254852,0.013668568804860115,-0.026170114055275917,-0.06841875612735748,0.006597844883799553,-0.02714172750711441,-0.05118456855416298,-0.06432449072599411,0.01097717322409153,0.06799309700727463,0.017604948952794075,0.06714078783988953,-0.06727196276187897,0.06803743541240692,-0.003989445976912975,-0.006481178104877472,0.07267151027917862,-0.001387760159559548,0.006046512629836798,-0.03452060744166374,0.01876787841320038,0.027834180742502213,0.016871217638254166,-0.07732979953289032,-0.07122146338224411,0.004795343615114689,-0.0008217671420425177]},{"id":"quarter-life-crisis","vector":[0.02413276582956314,-0.014799864031374454,-0.006375056691467762,0.0049401530995965,-0.029243914410471916,0.01986727863550186,0.026678888127207756,-0.0732874795794487,0.018734999001026154,0.024377381429076195,0.04510590434074402,-0.0014453275362029672,-0.014624258503317833,0.04590855538845062,-0.056719906628131866,0.03742581233382225,-0.044164977967739105,-0.07933885604143143,-0.037318840622901917,0.0341775082051754,0.02844065986573696,-0.027920179069042206,0.0509069450199604,-0.06188114359974861,0.004973197355866432,-0.04454681649804115,0.006185597274452448,0.0018530237721279263,-0.05332358926534653,-0.052265364676713943,0.06493929028511047,-0.04559660702943802,-0.04702676460146904,-0.01779664121568203,0.04884915426373482,0.04865746945142746,-0.04128657281398773,0.03792732581496239,0.014815006405115128,-0.06216428801417351,-0.033319272100925446,0.029521269723773003,0.07191354036331177,-0.02741784229874611,-0.020471293479204178,-0.018397459760308266,-0.07306233793497086,-0.008572210557758808,0.04291209205985069,0.04037509113550186,-0.01770247332751751,-0.0436699278652668,0.028248680755496025,-0.055358611047267914,0.02545168437063694,-0.03318895027041435,0.05294132977724075,0.018946044147014618,0.003381810849532485,-0.07565918564796448,-0.08067648857831955,-0.023201944306492805,-0.05633570998907089,0.00313039543107152,-0.062352459877729416,0.06185926869511604,0.08834251016378403,0.0421130433678627,0.07954484969377518,-0.05350646749138832,-0.015440323390066624,-0.03447965532541275,-0.016761114820837975,0.01626848801970482,-0.05474172160029411,-0.06496287137269974,0.01432495005428791,-0.04282758757472038,-0.01709866151213646,0.04699229076504707,-0.010179825127124786,0.0353187620639801,-0.0019217915832996368,-0.004609651863574982,-0.057165540754795074,0.04870898276567459,-0.012033967301249504,0.05062160640954971,-0.05110190808773041,0.050749510526657104,-0.014661039225757122,0.030091213062405586,-0.01735861413180828,0.06675262749195099,-0.037399772554636,0.028011616319417953,-0.06661625951528549,-0.005787254776805639,0.02075640670955181,-0.03277536481618881,-0.0756065845489502,-0.001894378918223083,-0.01000937633216381,0.016637952998280525,-0.01859593391418457,0.017207738012075424,-0.06465353071689606,0.06735404580831528,0.049629028886556625,0.004066982306540012,-0.0457284078001976,-0.06255665421485901,0.005222291219979525,-0.046734634786844254,-0.019082702696323395,0.04476696997880936,0.0028850678354501724,0.04915642365813255,-0.0810646042227745,0.04546957090497017,-0.021481754258275032,-0.07821574807167053,0.052225030958652496,-0.07831045985221863,-0.021545667201280594,0.00019128213170915842,-0.03943217918276787,0.032088905572891235,0.04295286536216736,-0.05746031180024147,-0.03558720648288727,-0.05799359083175659,-0.006368282251060009,0.038937896490097046,-0.015108651481568813,-0.08059189468622208,-0.0036139024887233973,-0.05762752890586853,-0.0244209673255682,0.03488408774137497,0.035542767494916916,-0.07523802667856216,0.049441851675510406,0.05619537830352783,-0.043697234243154526,0.03172583132982254,0.045677777379751205,-0.015056692063808441,0.024830801412463188,0.04910152405500412,-0.04350551590323448,0.022031553089618683,-0.03825375437736511,-0.062349215149879456,-0.04697193577885628,-0.04688739404082298,0.006756504066288471,-0.03309224918484688,0.0780714675784111,-0.0695246011018753,-0.040804632008075714,-0.048574790358543396,0.053957853466272354,-0.02563602849841118,-0.002848257776349783,0.014932108111679554,-0.004564961418509483,-0.024089276790618896,0.016304079443216324,0.06563505530357361,-0.04095183685421944,0.02580544538795948,-0.044177617877721786,0.059107616543769836,0.02851581759750843,0.008421672508120537,-0.07168573141098022,0.08205081522464752,0.08317700028419495,0.05093763396143913,-0.01980968564748764,0.08087578415870667,-0.015066100284457207,0.020964618772268295,0.028336096554994583,0.059134989976882935,0.021264873445034027,0.04159623384475708,0.006690893322229385,0.004583605565130711,-0.02218489535152912,-0.014113912358880043,-0.052946582436561584,-0.017577948048710823,0.08385377377271652,-0.04160454869270325,-0.04258885234594345,-0.0050924234092235565,0.038887590169906616,0.0877053439617157,-0.02339412458240986,0.0512332059442997,0.0338076576590538,0.007587558124214411,-0.05870365351438522,-0.04510437324643135,0.016573617234826088,-0.015496172942221165,0.05777246132493019,0.07430228590965271,0.020820701494812965,0.004946619737893343,0.04362586885690689,0.014383320696651936,0.07153313606977463,0.006610948592424393,-0.005810577422380447,-0.012025607749819756,0.04575775936245918,0.0003167972026858479,0.054320383816957474,0.0009189771371893585,-0.005940367933362722,-0.04536230117082596,0.01210317574441433,0.048177655786275864,-0.033890195190906525,0.03744971752166748,0.013289659284055233,0.014881218783557415,-0.006261385045945644,0.061031777411699295,0.06774014234542847,0.00013355193368624896,0.030342983081936836,0.07475382089614868,0.04506079852581024,0.06856070458889008,0.0009518310544081032,-0.03214310482144356,-0.05041676014661789,0.0037818236742168665,0.003430740674957633,-0.044864583760499954,0.002825330477207899,-0.023839406669139862,-0.006202947348356247,0.0191566850990057,0.03768029063940048,-0.022637059912085533,0.06006306782364845,-0.07325474172830582,0.03105130046606064,-0.06947460025548935,-0.02685435116291046,0.011748092249035835,-0.014615845866501331,-0.04118216410279274,-0.02644413150846958,0.07518400251865387,-0.040029894560575485,-0.0359177328646183,-0.02186107635498047,-0.05955760180950165,-0.024511829018592834,0.0336531363427639,0.039502356201410294,-0.03684317320585251,-0.012900001369416714,-0.04228213429450989,0.07033804059028625,-0.051019445061683655,-0.03012930229306221,-0.018502498045563698,0.007132384926080704,0.08749066293239594,-0.037382710725069046,0.05546341836452484,-0.023218434303998947,-0.029114199802279472,0.07398965209722519,0.06417706608772278,0.044468510895967484,0.012436509132385254,-0.04452426731586456,-0.0676993802189827,-0.05242083594202995,0.050043508410453796,-0.04311824589967728,-0.034739769995212555,-0.015205584466457367,-0.015969455242156982,0.014480248093605042,-0.028160694986581802,-0.049630630761384964,-0.04207810387015343,0.054523736238479614,0.022326109930872917,0.010211661458015442,0.05134044960141182,0.04062250256538391,0.06543776392936707,-0.0027804188430309296,0.057040780782699585,0.05533137917518616,0.01877407915890217,0.02896958775818348,-0.0018162797205150127,-0.05595434084534645,-0.08295917510986328,-0.008406881242990494,0.006525304634124041,0.021577220410108566,0.007674478925764561,-0.08568301796913147,-0.0580061636865139,0.058693550527095795,-0.032565321773290634,-0.046467799693346024,-0.04482089355587959,-0.07775416225194931,0.013958851806819439,-0.05855106934905052,-0.04962055757641792,0.07257147878408432,0.00330264656804502,-0.04815454035997391,0.024006955325603485,0.015332687646150589,-0.06491034477949142,-0.028233833611011505,-0.055367086082696915,-0.07564468681812286,-0.028954649344086647,0.03172175586223602,-0.029146073386073112,0.0819125548005104,0.08217478543519974,0.04003113880753517,0.05630457028746605,-0.014443822205066681,0.03372121602296829,0.025797301903367043,0.005974107887595892,0.03173280879855156,0.0239226333796978,-0.05433831363916397,0.049136366695165634,-0.019812405109405518,0.025922682136297226,-0.08025424182415009,0.058576539158821106,0.02454558201134205,-0.008792760781943798,0.021809546276926994,0.06834087520837784,-0.01555039081722498,-0.07575717568397522,0.04203972965478897,0.03238131105899811,0.04370923712849617,0.0004722684097941965,0.031076941639184952,-0.05849194899201393,0.006891175638884306,0.01603991538286209,-0.05354619771242142,-0.047243382781744,-0.03497592359781265,-0.03323795273900032,-0.04715863987803459,0.009032567031681538,0.049163658171892166,-0.03542796149849892,-0.08185970783233643,0.004371925722807646,-0.0024701550137251616,0.05019175261259079,-0.01986238919198513,-0.00791728775948286,-0.021106908097863197,0.06387999653816223,-0.04557579755783081,0.065928153693676,0.06259215623140335,-0.005408540368080139,0.07016748934984207,-0.036085523664951324,-0.028961103409528732,-0.08109334111213684,-0.055765774101018906,-0.0007392994011752307,-0.05543036386370659,0.0011263360502198339,0.05835416913032532,0.041165709495544434,0.04126836359500885,-0.06995511054992676,-0.03395020216703415,-0.07044647634029388,-0.0451350137591362,0.07633420825004578,0.025195056572556496,0.057863831520080566,-0.006532208528369665,-0.0024022189900279045,0.06276378780603409,-0.08548794686794281,0.0769970566034317,-0.06043049320578575,0.06773660331964493,0.007088284939527512,0.008594119921326637,-0.041297078132629395,-0.0018300050869584084,0.029752476140856743,0.05421537160873413,-0.03112933039665222,0.05335906893014908,0.01196023914963007,-0.048120155930519104,0.03680615499615669,0.007413704879581928,-0.07824495434761047,-0.0802365243434906,-0.020639386028051376,-0.009546002373099327,-0.07332037389278412,-0.019191505387425423,0.02161438949406147,-0.006027026567608118,0.019809255376458168,-0.013868612237274647,-0.034645065665245056,0.05668158829212189,0.08244085311889648,-0.06542450189590454,-0.006312687881290913,-0.026719054207205772,0.020312475040555,0.0031059440225362778,-0.06330559402704239,0.04469494894146919,0.040096234530210495,-0.03839992731809616,0.049897465854883194,0.0898851826786995,-0.0790385976433754,0.05294489860534668,0.0024811469484120607,0.004334995057433844,-0.037667833268642426,-0.0202618520706892,-0.010407880879938602,0.030537324026226997,-0.0778142660856247,-0.010917313396930695,0.026182273402810097,0.07537437230348587,-0.07762812077999115,0.05741232633590698,-0.045993492007255554,0.024020446464419365,0.0073881796561181545,-0.01560804434120655,0.004476459696888924,-0.01900707185268402,0.029152223840355873,-0.04338948056101799,-0.05204463005065918,0.00967799685895443,0.0032865689136087894,0.00009159078763332218,0.048052333295345306,0.008023739792406559,0.03372402861714363,0.05899617075920105,0.0404454804956913,0.04676393046975136,0.08539456129074097,-0.0007745962357148528,-0.04851970076560974,-0.03293275088071823,0.03234991803765297,0.02611764706671238,0.027824176475405693,0.06476518511772156,-0.0334281362593174,-0.06439531594514847,-0.01346286665648222,0.009961148723959923,-0.07004532217979431,-0.07194052636623383,0.03180591017007828,0.05492490157485008,0.019056959077715874,-0.0072023626416921616,-0.06465639919042587,0.07309888303279877,-0.01171663124114275,-0.02051965519785881,0.05102717503905296,-0.014683347195386887,0.03128894791007042,-0.033671483397483826,0.022887056693434715,0.019914695993065834,0.05051794275641441,-0.06882990896701813,-0.0760127604007721,0.036355577409267426,0.044399939477443695]},{"id":"quenchless","vector":[0.01798613928258419,-0.054586876183748245,-0.02682981826364994,0.002219378249719739,-0.0038892689626663923,0.020963041111826897,0.016227787360548973,-0.07863020896911621,0.027582015842199326,0.04931408539414406,0.0609634630382061,0.028681118041276932,-0.0070083593018352985,0.07212894409894943,-0.060111381113529205,-0.050385937094688416,-0.05554060637950897,-0.05243930593132973,-0.01771804876625538,-0.0008330843411386013,0.028303727507591248,-0.02153977006673813,0.028349552303552628,0.02202407456934452,0.05361001938581467,-0.005449819378554821,-0.03612857684493065,-0.01600721664726734,-0.0655926764011383,-0.06137264147400856,0.0671849176287651,-0.05012822896242142,-0.04469193518161774,-0.04975549504160881,0.035093042999506,0.06532254070043564,-0.05425858497619629,0.07749400287866592,0.005853781010955572,-0.031938571482896805,-0.049301326274871826,-0.007212106604129076,0.06962958723306656,-0.0849047526717186,-0.029683686792850494,0.03248652443289757,-0.04848680645227432,-0.021284377202391624,0.0581141822040081,0.06220083683729172,0.04657776281237602,-0.0436820387840271,0.03984035924077034,-0.031454745680093765,-0.011490895412862301,-0.01939483918249607,0.037944551557302475,0.03998400643467903,0.01350407674908638,-0.0776725560426712,-0.06403922289609909,-0.013758020475506783,-0.025678463280200958,-0.00853426568210125,-0.06225491315126419,0.02604234404861927,0.0940651223063469,0.0012664997484534979,0.07364644855260849,-0.05554978922009468,-0.03977939486503601,-0.04170694202184677,0.0027202328201383352,0.03410690650343895,-0.05229633301496506,-0.07103262096643448,0.014823127537965775,-0.07304859161376953,-0.027541544288396835,0.0487351156771183,-0.0034794986713677645,0.04057561233639717,0.009609364904463291,-0.04847289249300957,-0.07044442743062973,0.03925566375255585,0.011346663348376751,0.06486034393310547,-0.03182467445731163,0.03455125913023949,-0.001234162482433021,0.02199356071650982,-0.02134075202047825,0.07477791607379913,-0.048633456230163574,0.024874482303857803,-0.058386266231536865,-0.025555215775966644,-0.02481800690293312,-0.05874894931912422,-0.0839219018816948,0.02544468455016613,-0.039770957082509995,0.025281768292188644,-0.042796675115823746,0.008934780023992062,-0.06361116468906403,0.0787944495677948,0.046804994344711304,-0.019216571003198624,-0.012861767783761024,-0.0788813903927803,0.002368954010307789,-0.047760363668203354,-0.050744518637657166,0.06360947340726852,-0.0049350811168551445,-0.010325750336050987,-0.06552759557962418,0.009902404621243477,-0.01780247874557972,-0.08182726800441742,-0.02169215679168701,-0.06586793065071106,-0.05183057114481926,-0.019522158429026604,-0.006661571096628904,0.053183432668447495,0.0190286822617054,-0.05447286367416382,-0.06199314072728157,-0.059297826141119,0.0292417723685503,0.026985904201865196,-0.05067955702543259,-0.06857985258102417,-0.016576215624809265,-0.06913234293460846,-0.006635885685682297,0.017648253589868546,0.02382846362888813,-0.06555477529764175,0.044931165874004364,0.07162825018167496,-0.03814747557044029,0.03185758367180824,0.0011816706974059343,0.03726625815033913,0.039360977709293365,0.0256576556712389,-0.020353615283966064,0.004086695611476898,0.01440067496150732,-0.041434090584516525,-0.05226415768265724,-0.05995258688926697,0.05064724385738373,-0.0650670975446701,0.06563596427440643,-0.030538232997059822,-0.017052529379725456,-0.02208760380744934,0.04472478851675987,-0.047610748559236526,-0.022866781800985336,0.008234386332333088,-0.008357678540050983,-0.04316403344273567,0.05484443157911301,0.06291323900222778,-0.025603756308555603,-0.010085251182317734,-0.02494683861732483,0.047149915248155594,0.013903990387916565,0.05719035118818283,-0.05808575451374054,0.07502324879169464,0.07477620244026184,0.07558650523424149,-0.04117828980088234,0.030532358214259148,0.05028767138719559,-0.00035773904528468847,-0.011891515925526619,0.0234213974326849,0.01083051785826683,0.06588296592235565,0.06624069064855576,-0.031163157895207405,-0.027462175115942955,-0.022762790322303772,-0.03517353907227516,-0.0246037058532238,0.07896080613136292,-0.055670831352472305,-0.04450541362166405,-0.040480341762304306,0.016019301488995552,0.08642584830522537,-0.019129250198602676,-0.0691390112042427,0.02545204944908619,-0.012666371650993824,-0.010597921907901764,-0.042011529207229614,0.04189256206154823,-0.035010308027267456,0.03566934913396835,0.08061578869819641,0.025637516751885414,-0.03766178712248802,0.084499791264534,-0.013571812771260738,0.020923595875501633,0.005553423892706633,-0.04539551958441734,0.03485444188117981,0.05970447510480881,-0.03048005886375904,0.04675809666514397,-0.03260476887226105,0.021417586132884026,-0.04324786365032196,0.03736749663949013,0.041706573218107224,-0.025142570957541466,-0.03368552029132843,0.0035890955477952957,0.03834742307662964,-0.04586886987090111,0.06755373626947403,0.03938692808151245,-0.00666510546579957,-0.014981534332036972,0.07107311487197876,0.05000246316194534,0.05151931568980217,0.00582214305177331,-0.08746977895498276,-0.054695721715688705,0.0010304684983566403,0.03428983688354492,-0.018738651648163795,0.016743920743465424,-0.053810372948646545,-0.035468872636556625,0.02319851703941822,0.023814845830202103,-0.04309071600437164,0.05332465097308159,-0.07167140394449234,0.028338350355625153,-0.0798792615532875,-0.021614840254187584,0.02731393836438656,0.010819929651916027,-0.05633598566055298,-0.005424431525170803,0.0833543911576271,-0.05529457703232765,-0.030817819759249687,-0.010827268473803997,-0.0016310598002746701,-0.053980354219675064,0.060566917061805725,-0.0020135045051574707,-0.01533399149775505,-0.041894011199474335,-0.03169289231300354,0.053600408136844635,-0.04502943903207779,0.013490133918821812,-0.02625051699578762,-0.019339939579367638,0.06041638180613518,-0.056449323892593384,0.021412283182144165,-0.023606684058904648,0.016627516597509384,0.061750758439302444,0.07504191249608994,0.011474795639514923,0.01691642962396145,-0.02663080394268036,-0.044047486037015915,-0.08054577559232712,0.04711790010333061,-0.019131183624267578,-0.016892341896891594,-0.0018426197348162532,-0.044874291867017746,0.02200227417051792,0.05306112766265869,-0.04443620517849922,-0.06336233019828796,0.056395046412944794,0.03433821350336075,0.051905855536460876,0.05208496004343033,0.0026058778166770935,0.030472643673419952,-0.0308225080370903,0.041762541979551315,0.0067808120511472225,-0.04050169885158539,0.006861446425318718,-0.035187218338251114,-0.04194130375981331,-0.0857527107000351,-0.01818673685193062,0.05949963629245758,0.019790807738900185,0.0209500789642334,-0.04743693768978119,-0.04570360481739044,0.041562702506780624,0.0020880557131022215,-0.056731823831796646,-0.043459683656692505,-0.07408639043569565,0.0731365904211998,-0.06518378108739853,-0.03801082447171211,0.0639423131942749,0.00589930173009634,-0.024870626628398895,-0.001582120661623776,0.03323160111904144,-0.06817800551652908,-0.02963506430387497,-0.044698648154735565,-0.06514491885900497,-0.052971865981817245,0.04155243933200836,0.014144684188067913,0.07432439923286438,0.07964281737804413,0.017056308686733246,0.028259405866265297,0.0021525556221604347,0.014629464596509933,0.03160638362169266,0.01819545589387417,0.011442285031080246,0.03791821748018265,-0.01146809384226799,0.054610878229141235,-0.03982343524694443,0.04298616573214531,-0.08570262044668198,0.03655818849802017,0.010001756250858307,-0.03890096768736839,-0.027810068801045418,0.06340546160936356,-0.016116002574563026,-0.08169300854206085,0.042534030973911285,0.010459823533892632,0.03574705123901367,0.041600026190280914,0.005957122426480055,-0.05516904965043068,0.04885740950703621,0.04696182906627655,-0.012077105231583118,-0.040308188647031784,-0.03217316418886185,0.012526330538094044,-0.046627722680568695,-0.0010415551951155066,0.03733710199594498,-0.03610497713088989,-0.08696693181991577,0.018391340970993042,-0.01445238571614027,-0.004999343305826187,0.01523981336504221,0.05435175821185112,-0.018506202846765518,0.05316442623734474,-0.055121518671512604,0.055227089673280716,0.05133901536464691,0.021073386073112488,0.05114937573671341,-0.025419076904654503,-0.0533926747739315,-0.03881257399916649,-0.05599271506071091,-0.008748677559196949,-0.040050532668828964,0.05109604075551033,0.00231049582362175,0.050978027284145355,0.02854938805103302,-0.02549533173441887,-0.042824361473321915,-0.056567516177892685,-0.04783979058265686,0.061557572335004807,0.015475902706384659,0.06632291525602341,-0.021378951147198677,-0.0304794330149889,0.04841598495841026,-0.08427701890468597,0.0484304241836071,-0.0458306185901165,0.08219785243272781,0.06051662564277649,0.021150609478354454,-0.03161493316292763,0.006922683212906122,0.04694143310189247,0.030404238030314445,-0.0036368253640830517,0.06156596168875694,0.03409973904490471,-0.0455535463988781,0.03311540186405182,0.03093273751437664,-0.049092669039964676,-0.05373037979006767,-0.02680817060172558,-0.019938364624977112,-0.05999703332781792,-0.055558498948812485,0.03796316310763359,0.013210180215537548,0.026529747992753983,0.01459591742604971,-0.0465921014547348,0.06626484543085098,0.07246509939432144,-0.07712475210428238,-0.03359420225024223,-0.03880193084478378,-0.019741758704185486,-0.031887151300907135,-0.03791319206357002,0.03181999921798706,0.031187929213047028,0.0033039310947060585,0.012324359267950058,0.0778016597032547,-0.061361901462078094,0.06334453821182251,0.013564813882112503,0.027370046824216843,0.014155280776321888,0.018220964819192886,-0.021502027288079262,0.06278451532125473,-0.06383819878101349,0.005421843845397234,0.009571854956448078,0.08544772863388062,-0.07025989145040512,0.03629723936319351,-0.0298849418759346,0.004379998426884413,0.02635270357131958,-0.028858229517936707,0.022234030067920685,-0.008389596827328205,0.034599419683218,-0.06952869147062302,-0.05396697297692299,0.029029488563537598,0.026705002412199974,-0.02738434448838234,0.02633661963045597,0.02768225036561489,-0.004794927779585123,0.08226631581783295,0.04766025394201279,0.0620364286005497,0.04994700103998184,0.018249386921525,-0.038386713713407516,-0.06843192875385284,-0.00964457169175148,-0.0008774285088293254,-0.02384239248931408,0.03512456640601158,-0.05447477102279663,-0.04882313683629036,0.019197694957256317,0.013270558789372444,-0.044951360672712326,-0.07501962035894394,0.008034461177885532,0.056009888648986816,0.039001449942588806,0.017329975962638855,-0.051399633288383484,0.08536245673894882,-0.018499139696359634,0.008752838708460331,0.06115111708641052,-0.0404106043279171,-0.017874067649245262,-0.02275906316936016,0.0016177735524252057,0.001123450929298997,0.06273999065160751,-0.0889321118593216,-0.07561779767274857,-0.00587920518592,0.021799515932798386]},{"id":"recollect","vector":[0.02433709055185318,-0.06876432150602341,-0.03265530616044998,-0.0010658211540430784,-0.047491542994976044,0.010256912559270859,0.039083946496248245,-0.06315220892429352,0.01231275126338005,-0.02012646570801735,0.04330679774284363,-0.019901683554053307,0.011758629232645035,0.01045770663768053,-0.0723094642162323,-0.03556448966264725,-0.020437557250261307,-0.05635412782430649,-0.018063362687826157,0.008170638233423233,0.004375404212623835,-0.027438685297966003,0.05771460384130478,-0.040226049721241,-0.019495889544487,-0.014704986475408077,-0.03946537896990776,-0.05330703407526016,0.0005341949290595949,-0.03091300092637539,0.05837900936603546,-0.07330024242401123,-0.05263395980000496,-0.051853928714990616,0.04604807123541832,0.03648282587528229,-0.05127839744091034,0.05477297678589821,0.058995895087718964,-0.02172040566802025,-0.029193619266152382,0.025803538039326668,0.07338092476129532,-0.03512732312083244,0.012946498580276966,0.026248015463352203,-0.04600926488637924,-0.0033029699698090553,0.055548228323459625,0.060108732432127,0.031199242919683456,-0.0174897201359272,0.019969703629612923,-0.044059399515390396,-0.015838198363780975,-0.06188325956463814,0.06449662148952484,0.05090704932808876,-0.04204558953642845,-0.07978323847055435,-0.0555843822658062,-0.02979579009115696,-0.04307058826088905,-0.002111624227836728,-0.03957061097025871,0.05149153620004654,0.08870811760425568,-0.008155971765518188,0.07494337111711502,-0.04051849618554115,-0.026079900562763214,-0.06391062587499619,-0.005903343204408884,0.016564171761274338,-0.05643057823181152,-0.06937479227781296,-0.011610539630055428,-0.05807368829846382,-0.040211137384176254,0.06892798095941544,0.023353714495897293,0.010835821740329266,0.003255606396123767,-0.028968343511223793,-0.03123282827436924,0.04752152040600777,-0.0021012776996940374,0.04766956344246864,-0.057190317660570145,0.03238464519381523,-0.06246880814433098,0.017984453588724136,-0.0750458687543869,0.024535546079277992,-0.04233584925532341,0.0499906949698925,-0.07015223801136017,-0.019602876156568527,-0.04126521199941635,-0.04758751764893532,-0.08424373716115952,-0.010604803450405598,-0.020253820344805717,-0.023907030001282692,-0.06287743151187897,0.051653243601322174,0.04025007039308548,0.08254877477884293,0.04537418857216835,0.027551744133234024,-0.007876872085034847,-0.06845740973949432,-0.018126318231225014,-0.034723155200481415,-0.018617291003465652,0.050252802670001984,0.026894662529230118,0.0010093902237713337,-0.050058554857969284,0.04737316817045212,-0.009259688667953014,-0.047018151730298996,0.05398322269320488,-0.0706581324338913,-0.0327891930937767,0.033869609236717224,-0.005553422030061483,0.04384177550673485,0.023888299241662025,-0.08414341509342194,-0.017245540395379066,-0.02967885509133339,-0.013252627104520798,0.03999357298016548,-0.019731974229216576,-0.0633024200797081,0.013656544499099255,-0.0730065256357193,0.012940078973770142,0.016564875841140747,0.010630585253238678,-0.07885053008794785,0.02469644509255886,-0.02656390704214573,-0.03260958939790726,-0.014684127643704414,0.03943488001823425,0.07164044678211212,0.030614348128437996,0.05211091786623001,-0.013149506412446499,-0.01982392929494381,-0.06648948043584824,-0.059003230184316635,0.015266303904354572,-0.04798850789666176,0.006583279464393854,-0.02316085807979107,0.06554219871759415,-0.04116272181272507,-0.045226797461509705,-0.02222413755953312,0.04186037927865982,-0.04785533994436264,-0.0003579103504307568,0.05088344216346741,0.003081580623984337,-0.05455267056822777,-0.03024771623313427,0.06259535998106003,-0.06596438586711884,-0.03781753405928612,-0.02578982710838318,-0.0061944471672177315,-0.02428506501019001,0.051685843616724014,-0.02564292773604393,0.07311803102493286,0.08461876213550568,0.07693019509315491,-0.021271727979183197,0.08515579253435135,0.0425821915268898,0.03926734998822212,0.038462378084659576,0.05506705865263939,0.011393495835363865,0.0521884523332119,0.06531968712806702,-0.037343427538871765,-0.002517349785193801,-0.013354104943573475,-0.01614752598106861,0.0008809485007077456,0.08480191230773926,-0.04842178896069527,-0.04322816804051399,0.009216607548296452,0.02504151687026024,0.08531614392995834,-0.03920106217265129,0.014211815781891346,0.0371750183403492,-0.0010841398034244776,-0.04938003048300743,-0.06572037190198898,0.014955706894397736,0.025721242651343346,0.016988001763820648,0.07884914427995682,0.0011565624736249447,-0.01816139928996563,0.04417341202497482,-0.03393203765153885,0.07769627869129181,-0.01181788183748722,0.007554757874459028,0.03085535205900669,0.06642609089612961,0.04493889585137367,0.054242976009845734,-0.04903549328446388,0.025766560807824135,-0.04726627841591835,0.05805543065071106,0.0014769431436434388,-0.04461419954895973,0.017518965527415276,0.03417474031448364,0.016021324321627617,0.01859334483742714,0.016204403713345528,0.0649169385433197,0.03129163384437561,-0.005834734532982111,0.07610853761434555,0.06095942482352257,0.07368417084217072,0.021170707419514656,-0.06715068221092224,-0.04632492735981941,0.029134996235370636,-0.02301306650042534,-0.025327185168862343,-0.03564489632844925,-0.04965149983763695,-0.005253371316939592,-0.016023030504584312,-0.018475443124771118,0.0007655728841200471,0.017557663843035698,-0.04301639273762703,-0.020512470975518227,-0.07144597172737122,0.009044446982443333,-0.012669567950069904,0.024198852479457855,-0.0766010507941246,0.009062045253813267,0.08487644791603088,-0.06264817714691162,0.04067185893654823,-0.00984923355281353,-0.005218006204813719,-0.03757389262318611,-0.01167876087129116,-0.015530322678387165,-0.029363729059696198,-0.015096724033355713,-0.07251153886318207,0.06781941652297974,-0.07277969270944595,0.027718449011445045,-0.0076074786484241486,0.006998771335929632,0.08571961522102356,-0.03567405045032501,0.07236496359109879,-0.01711779087781906,0.012159270234405994,0.050519105046987534,0.06697247177362442,0.03698883205652237,-0.012161058373749256,-0.04872678220272064,-0.06259841471910477,-0.0784139484167099,0.07324403524398804,-0.0633382648229599,-0.057040803134441376,-0.01633971557021141,0.010535815730690956,0.054532166570425034,0.00030314293690025806,0.019923951476812363,-0.04457329958677292,0.05097861960530281,0.03289575129747391,-0.0020423016976565123,0.043238285928964615,-0.0003883503086399287,0.054942965507507324,-0.022730596363544464,-0.0024253353476524353,0.026660120114684105,0.010313194245100021,0.04076290875673294,0.00770603958517313,0.0012845067540183663,-0.07431180030107498,-0.022223491221666336,0.014875231310725212,0.010448820888996124,0.05349796265363693,-0.07060844451189041,-0.06745848804712296,0.02996528148651123,-0.028942354023456573,-0.036634184420108795,-0.07275266945362091,-0.07382651418447495,0.05651487782597542,-0.04944673180580139,0.0005887330626137555,0.04921986535191536,0.0033197326119989157,-0.010558473877608776,0.005885143298655748,0.0015641975915059447,-0.06174102798104286,0.004591096192598343,-0.04286344721913338,-0.0685051828622818,-0.025046389549970627,0.0441393218934536,-0.00003400486093596555,0.07797543704509735,0.06583782285451889,0.040121618658304214,0.04232198745012283,-0.020620686933398247,0.009044519625604153,0.05764646828174591,-0.016615333035588264,-0.045240242034196854,0.054600730538368225,-0.024288460612297058,0.05710574612021446,0.0003658277855720371,0.048521820455789566,-0.08437259495258331,0.06529540568590164,-0.005170547869056463,-0.015206579118967056,0.015618633478879929,0.05916647985577583,-0.04116932302713394,-0.06429607421159744,0.037943046540021896,0.016294507309794426,0.04069821164011955,-0.026492778211832047,0.04343440383672714,-0.05924595892429352,0.026808196678757668,0.02337115816771984,-0.05440400540828705,-0.05571458861231804,-0.047888293862342834,-0.07495252788066864,-0.060992371290922165,-0.006784022320061922,0.03775560110807419,-0.06456777453422546,-0.08310575783252716,-0.01679685339331627,-0.015132574364542961,0.01647120714187622,-0.005495044868439436,0.0031572359148412943,-0.015371919609606266,0.016036758199334145,-0.05188324674963951,0.04479845613241196,0.02594127133488655,0.008990914560854435,0.0699465200304985,-0.04673376679420471,-0.03307029977440834,-0.050442419946193695,-0.07185184210538864,-0.016477543860673904,0.01573541946709156,0.009049063548445702,0.07743576914072037,0.0520985871553421,0.045637499541044235,-0.06183042749762535,-0.05645066872239113,-0.05841779336333275,-0.050536174327135086,0.05944829434156418,0.0006858122069388628,0.05414837598800659,-0.04175153374671936,-0.03306638449430466,0.051327191293239594,-0.06067937612533569,0.0720214992761612,-0.06555158644914627,0.018244385719299316,-0.00014752676361240447,0.012859361246228218,-0.017700763419270515,-0.006337686907500029,0.02167922630906105,0.07557220757007599,-0.04810956493020058,0.07824869453907013,0.0282816793769598,-0.030478954315185547,-0.0007766300695948303,0.009787868708372116,-0.07012783735990524,-0.04760703071951866,-0.031909648329019547,-0.048311736434698105,-0.02906336635351181,-0.03799963369965553,0.02081490308046341,0.002828909084200859,0.016505274921655655,-0.004688246175646782,-0.05682877078652382,0.056891076266765594,0.08088666945695877,-0.07182088494300842,-0.008520044386386871,-0.0495491623878479,0.00848724041134119,-0.009624055586755276,-0.04784362390637398,0.05160066857933998,0.02141600288450718,-0.08133311569690704,0.0614803321659565,0.07757633179426193,-0.03824809938669205,0.07294382154941559,0.023729784414172173,0.04882305860519409,-0.029480071738362312,0.04490919038653374,-0.014085126109421253,-0.008593008853495121,-0.0772189125418663,0.027277613058686256,0.04278040677309036,0.040723882615566254,-0.03015967458486557,-0.03187962993979454,-0.04030941054224968,-0.006023447960615158,0.02569831907749176,-0.010829712264239788,0.03664878383278847,-0.058159612119197845,0.03899550810456276,-0.05251393839716911,-0.06068043038249016,0.0509626604616642,0.07727029174566269,-0.008772901259362698,0.020390350371599197,-0.02966589853167534,0.03229735791683197,0.07649032026529312,0.03439256176352501,0.027213890105485916,0.06200209632515907,-0.019974417984485626,-0.030321508646011353,-0.022901562973856926,0.012770012021064758,-0.019539818167686462,0.005850106477737427,0.016639798879623413,-0.05324699357151985,-0.048041243106126785,-0.013085585087537766,0.008084900677204132,-0.04156210646033287,-0.06753356754779816,0.031587693840265274,0.06940608471632004,-0.05073382705450058,0.0106382817029953,-0.0223374180495739,0.07982520014047623,-0.056623317301273346,0.00990232266485691,0.05118539556860924,-0.04234251007437706,0.011683718301355839,-0.0406532809138298,-0.019126219674944878,0.06896393746137619,0.02473151870071888,-0.0847967118024826,-0.05952412262558937,0.02550087682902813,0.03655824437737465]},{"id":"rose","vector":[0.014904700219631195,0.02250642329454422,0.04157315194606781,-0.02061605639755726,-0.03028864786028862,0.031184913590550423,0.010184794664382935,-0.07876235991716385,0.06885377317667007,-0.020944124087691307,0.008843837305903435,-0.032955288887023926,0.005476777907460928,0.049789804965257645,-0.07344823330640793,-0.028692737221717834,-0.030671585351228714,-0.06027867645025253,-0.039250344038009644,-0.029057178646326065,-0.0009834093507379293,-0.005160113330930471,0.007182475179433823,-0.012868923135101795,0.018167071044445038,-0.015282118692994118,-0.025752361863851547,0.0041985283605754375,-0.04593377187848091,-0.0708833560347557,0.05795964598655701,0.015305230394005775,-0.06042354553937912,-0.02978631481528282,0.053125202655792236,0.014777845703065395,-0.052589282393455505,0.009800286032259464,0.05923600122332573,-0.06008460372686386,-0.003919420298188925,0.014820252545177937,0.07003996521234512,0.00207866495475173,-0.019440343603491783,-0.0013852703850716352,-0.056096747517585754,-0.04190825670957565,0.04110207036137581,0.07151210308074951,0.018748436123132706,-0.06528569757938385,0.02670695260167122,-0.042955659329891205,0.005267288535833359,-0.04080939665436745,0.06312711536884308,0.030614623799920082,0.055555298924446106,-0.06480632722377777,-0.08013588190078735,-0.03970577195286751,-0.04388958960771561,0.029486773535609245,-0.032406654208898544,-0.033138543367385864,0.0716903880238533,0.03735033795237541,0.08596675843000412,-0.024515440687537193,-0.002836894476786256,-0.033837441354990005,-0.005877690389752388,-0.0160477627068758,-0.030391180887818336,-0.061251722276210785,0.013179237954318523,0.01995045505464077,0.038116455078125,0.0751587525010109,0.013992449268698692,0.02157597243785858,0.003039565635845065,-0.009528626687824726,-0.05431075021624565,0.0508926622569561,0.009836611337959766,0.0766250267624855,-0.03489821404218674,0.02047048695385456,-0.04061431065201759,-0.05095277354121208,-0.08178885281085968,0.04170801490545273,-0.03401636704802513,0.0456964410841465,-0.07370737940073013,-0.019866006448864937,-0.048071861267089844,-0.06592690944671631,-0.07140179723501205,0.00247304979711771,-0.030350394546985626,0.00806293822824955,-0.060370706021785736,0.005608255509287119,-0.020555689930915833,0.04493188485503197,0.06388311088085175,0.03141732141375542,-0.03834805637598038,-0.07757145166397095,0.035581834614276886,-0.056690942496061325,-0.05306828394532204,0.0631084069609642,0.010417030192911625,0.03288014233112335,-0.07694794982671738,0.05419338122010231,-0.037260737270116806,-0.058974605053663254,0.04984385892748833,-0.040911465883255005,-0.051820047199726105,-0.020411189645528793,-0.017588157206773758,0.04436446353793144,0.056271955370903015,-0.06146157532930374,-0.05468415096402168,-0.028394153341650963,-0.020238900557160378,-0.0037195896729826927,-0.025403933599591255,-0.0711078867316246,0.02941843681037426,-0.04175594076514244,0.056801725178956985,0.010980704799294472,0.03568500652909279,-0.05571049079298973,0.06208860129117966,0.06393502652645111,0.0047419266775250435,-0.028743349015712738,0.06619283556938171,0.028380012139678,0.008474273607134819,0.022202985361218452,-0.007000636775046587,0.018752671778202057,-0.08131237328052521,-0.04289046302437782,-0.016360212117433548,0.010626518167555332,0.051981374621391296,-0.056584250181913376,0.0568552203476429,-0.05229583755135536,0.041839826852083206,0.007368532940745354,0.06523755937814713,0.006522925570607185,0.045066408812999725,0.008516581729054451,0.00999721884727478,-0.04375750571489334,0.02105296030640602,0.03770923987030983,-0.05890721082687378,0.027849115431308746,-0.04141249880194664,0.04483291506767273,-0.034922968596220016,0.01721891388297081,-0.057413313537836075,0.055381469428539276,0.07968958467245102,0.0790020301938057,-0.015516585670411587,0.09194108098745346,0.029783332720398903,0.015690384432673454,0.04549957811832428,0.055498793721199036,-0.001961529953405261,0.05897277221083641,0.06617014855146408,-0.05961592495441437,-0.019887367263436317,0.005122397094964981,-0.056257229298353195,0.0023894156329333782,0.07371927052736282,-0.03767463192343712,-0.04288280010223389,-0.02777295932173729,-0.023571889847517014,0.09213480353355408,-0.03907332569360733,0.03970497101545334,0.06359859555959702,0.03271343186497688,-0.011177724227309227,-0.017888637259602547,0.046246469020843506,-0.01933424361050129,0.04971954971551895,0.07558810710906982,0.024412132799625397,-0.0041457596234977245,0.02752743475139141,-0.0267118401825428,0.02292894572019577,-0.023779109120368958,-0.0011084445286542177,-0.020344505086541176,0.03308544307947159,-0.04152897372841835,0.022078754380345345,-0.009615892544388771,0.029684804379940033,-0.03354924917221069,0.050148747861385345,-0.030492693185806274,-0.05183430016040802,-0.005550074856728315,0.017207976430654526,0.01569187082350254,-0.02595541998744011,0.045012690126895905,0.027209321036934853,0.02259833924472332,0.055266208946704865,0.03517013043165207,0.0384528674185276,0.06090429052710533,0.011406395584344864,0.041533712297677994,-0.06983043253421783,-0.0017576119862496853,0.015160518698394299,-0.0453885942697525,0.019770577549934387,-0.027189144864678383,0.03682379424571991,0.010710935108363628,-0.002728799358010292,-0.039277542382478714,0.04973414167761803,-0.06176721677184105,0.022698694840073586,-0.06963811069726944,0.008639229461550713,-0.05237778276205063,-0.024426382035017014,-0.02713262476027012,-0.002795820590108633,0.08156594634056091,-0.047903385013341904,-0.05510764196515083,-0.006720073986798525,-0.02651003748178482,-0.018783852458000183,0.00019113844609819353,0.04303860664367676,-0.019673394039273262,-0.035972945392131805,-0.05143137648701668,0.04129341244697571,-0.06292314827442169,0.05715353786945343,-0.0032752228435128927,0.0012624436058104038,0.07586400955915451,-0.011066884733736515,0.05557654798030853,-0.03653658926486969,0.008754394948482513,0.0680357813835144,0.06310272216796875,0.008736737072467804,-0.014192279428243637,-0.023735832422971725,-0.06863833218812943,-0.08378279954195023,0.04335641860961914,-0.025706330314278603,-0.04010734334588051,0.012454947456717491,-0.0023950410541146994,0.02311071753501892,-0.014395775273442268,-0.04706856980919838,-0.05786994844675064,0.06461933255195618,0.0227680504322052,0.040794916450977325,0.044453948736190796,0.0319790355861187,0.020449811592698097,0.01429365947842598,0.045068152248859406,0.029285326600074768,0.01164470985531807,0.03706534206867218,0.010279848240315914,-0.005599054973572493,-0.08819110691547394,0.008546249009668827,-0.006700475234538317,0.019037792459130287,0.06803441047668457,-0.06780337542295456,-0.06424971669912338,0.04748136177659035,-0.054849252104759216,-0.03580579161643982,-0.05845620855689049,-0.07416073232889175,0.045764077454805374,-0.05436490848660469,-0.02158498577773571,0.0711728185415268,0.005676292814314365,0.0018988997908309102,-0.03327928110957146,0.03597569838166237,-0.030940381810069084,-0.02703554555773735,-0.019298264756798744,-0.06335781514644623,0.003459806786850095,0.05121007189154625,-0.03758646920323372,0.08019902557134628,0.08812201768159866,-0.02704494819045067,0.03917757794260979,-0.007578403223305941,0.028148559853434563,0.07522813975811005,-0.0028662243857979774,0.01695958338677883,0.028407661244273186,-0.06796558201313019,0.05110827460885048,0.027247942984104156,0.045954976230859756,-0.06959189474582672,0.07282792031764984,0.0011930016335099936,0.010069982148706913,-0.007936526089906693,0.05315760523080826,-0.05555456131696701,-0.058508746325969696,0.02480085752904415,0.006831306032836437,0.05111696198582649,0.027492575347423553,0.062095191329717636,0.03543327748775482,0.03434840217232704,0.018242213875055313,-0.04201637580990791,-0.016608498990535736,-0.018669508397579193,-0.0156693235039711,-0.057976868003606796,0.013998390175402164,0.030573371797800064,-0.08115962147712708,-0.0781862735748291,-0.009493434801697731,-0.014867264777421951,0.06476713716983795,0.014777058735489845,0.04341689497232437,0.017478102818131447,0.03183441981673241,-0.06515828520059586,0.029339035972952843,0.055934563279151917,0.023571927100419998,0.06555287539958954,-0.05914973095059395,-0.04636130854487419,-0.038535844534635544,-0.06400532275438309,-0.026477554813027382,-0.06631863117218018,-0.0529416985809803,0.06298710405826569,0.03813304752111435,0.0604688823223114,-0.07360095530748367,-0.04605625569820404,-0.08247804641723633,-0.008816628716886044,0.08003196865320206,0.02475098706781864,0.04411549121141434,-0.04067227989435196,-0.028994698077440262,0.019483890384435654,-0.07143774628639221,0.08485806733369827,-0.047033604234457016,0.068811796605587,-0.010594560764729977,-0.0021147325169295073,-0.0023551974445581436,-0.00549751752987504,0.05813423916697502,0.04472178965806961,-0.0338837206363678,0.07279128581285477,0.0689592957496643,-0.03944791480898857,0.038843415677547455,-0.019503824412822723,-0.06378722190856934,-0.05614371597766876,-0.07428847253322601,-0.04965348541736603,-0.03488464280962944,-0.04573461785912514,0.05148608237504959,-0.024904530495405197,0.029179206117987633,-0.03086996264755726,-0.011863191612064838,0.037883080542087555,0.058597832918167114,-0.05548793449997902,0.037199292331933975,0.038229577243328094,0.025894857943058014,-0.021875206381082535,-0.020897123962640762,0.06980573385953903,0.04125012084841728,-0.055201463401317596,0.07113496959209442,0.08862527459859848,-0.0633430927991867,0.06383945047855377,-0.01457998063415289,0.013843520544469357,-0.03230993077158928,0.036523256450891495,0.010224471800029278,-0.012675073929131031,-0.0759115070104599,-0.012890300713479519,0.028861749917268753,0.04491981491446495,-0.06533735990524292,0.02291659452021122,-0.011341775767505169,-0.01602615974843502,0.06168805807828903,0.021830329671502113,0.04891732335090637,-0.053818926215171814,0.038947612047195435,-0.06359934061765671,-0.048897501081228256,0.05327664688229561,0.059013690799474716,0.02188854105770588,0.028904682025313377,0.026601821184158325,0.054068587720394135,0.030006106942892075,0.01015505101531744,0.022728662937879562,0.07345594465732574,-0.02555597946047783,-0.06164785102009773,-0.023188265040516853,0.006961681880056858,-0.025687022134661674,0.02663918025791645,-0.0014316797023639083,-0.04597065597772598,-0.054692428559064865,-0.00035673269303515553,0.013015295378863811,-0.04233397915959358,-0.0629725232720375,0.04691588878631592,0.05745331943035126,-0.020467031747102737,0.03999891132116318,-0.08162466436624527,0.07179786264896393,-0.04005327820777893,-0.03494579717516899,0.026428326964378357,-0.020257486030459404,0.03191386163234711,0.026004396378993988,-0.03946777805685997,0.05070212855935097,0.030956033617258072,-0.06798626482486725,-0.08303002268075943,0.029156701639294624,0.04202864319086075]},{"id":"search-party","vector":[0.03180084377527237,-0.033832747489213943,-0.0034712450578808784,0.0034145088866353035,-0.01784989796578884,0.018020031973719597,-0.01185267698019743,-0.07516326755285263,0.03323649615049362,0.0062009356915950775,0.056253958493471146,0.03650995343923569,0.00527301337569952,0.005803776904940605,-0.05887262895703316,0.015723468735814095,-0.05645254999399185,-0.07339710742235184,-0.04111533612012863,-0.020303448662161827,0.004866082686930895,-0.021736368536949158,0.04370890557765961,-0.024887690320611,0.023220056667923927,0.017125466838479042,-0.03165069594979286,-0.00342175317928195,-0.05190188065171242,-0.02491413988173008,0.051553670316934586,-0.07557305693626404,-0.056872591376304626,-0.027773167937994003,0.05092330649495125,0.04096395522356033,-0.04505934193730354,0.03857267647981644,0.06375233829021454,-0.05975335091352463,-0.007066233549267054,0.0020312387496232986,0.0487753227353096,-0.030881883576512337,0.0326862595975399,0.007462461479008198,-0.04282866045832634,0.006264969706535339,0.058091212064027786,0.05690240114927292,0.05756446719169617,-0.04457104578614235,0.02744396962225437,-0.021052150055766106,-0.02876802533864975,-0.05286861211061478,0.05442996695637703,0.02431093156337738,0.036412645131349564,-0.08013639599084854,-0.0629747286438942,-0.017898419871926308,-0.05680390074849129,-0.01431395672261715,-0.03254331648349762,-0.0019927367102354765,0.08923212438821793,0.00710217235609889,0.07633264362812042,-0.05292712152004242,-0.0164798554033041,-0.04906772822141647,0.004199326038360596,-0.015455775894224644,-0.057501811534166336,-0.07449570298194885,0.02276429533958435,-0.02206839993596077,0.010176426731050014,0.06738341599702835,0.024414511397480965,0.05288732796907425,0.011145669966936111,-0.014777435921132565,-0.033615369349718094,0.058164555579423904,-0.005765723530203104,0.0776628777384758,-0.06806410104036331,0.020857367664575577,-0.05674228072166443,0.014751061797142029,-0.04437284544110298,0.05032794177532196,-0.03191138431429863,0.05815153196454048,-0.07759273052215576,0.021770190447568893,-0.05421283096075058,-0.06936509162187576,-0.08688797801733017,0.029782045632600784,-0.013013741001486778,0.010661636479198933,-0.014310256578028202,0.018557392060756683,-0.051501382142305374,0.07109525054693222,0.05670854076743126,0.04468167945742607,-0.03928710147738457,-0.06919785588979721,0.015523995272815228,-0.04852476716041565,-0.061765849590301514,0.031558822840452194,-0.0028823211323469877,0.017283890396356583,-0.06136159226298332,0.02599436044692993,-0.0027168530505150557,-0.06255092471837997,0.03811437264084816,-0.06574263423681259,-0.032963670790195465,-0.008792458102107048,-0.03353697434067726,0.009690982289612293,0.04596250504255295,-0.08184558153152466,-0.05115487799048424,-0.06555446982383728,-0.013347223401069641,0.04690813645720482,-0.018439756706357002,-0.07234049588441849,-0.040923748165369034,-0.062420498579740524,-0.025159573182463646,-0.005894394125789404,-0.008448454551398754,-0.0704638734459877,0.06265538185834885,0.03133818507194519,-0.013659218326210976,0.011934550479054451,0.07226230204105377,0.052281223237514496,-0.02755638025701046,0.0309413131326437,-0.03356682509183884,0.016215696930885315,-0.06892243027687073,-0.028532113879919052,-0.06178455799818039,-0.04156813770532608,0.047797802835702896,-0.05170445889234543,0.04359803721308708,-0.06296175718307495,0.03739413246512413,-0.030376967042684555,0.030264779925346375,0.009778942912817001,0.02616110071539879,0.02136116474866867,0.019109025597572327,-0.06146154925227165,0.013817454688251019,0.06683678179979324,-0.06488342583179474,0.004055736120790243,-0.010363249108195305,0.004018126521259546,-0.03654839098453522,0.05322165787220001,-0.05367063730955124,0.0758856013417244,0.08184486627578735,0.07032295316457748,-0.02246589958667755,0.08326958119869232,0.01646193489432335,0.00734229851514101,0.021956469863653183,0.06015355512499809,-0.01161683164536953,0.050791241228580475,0.05852881819009781,-0.04565562680363655,-0.04525637999176979,0.007609531749039888,-0.022525275126099586,-0.0034407952334731817,0.08052768558263779,-0.06847532093524933,-0.0007336290436796844,-0.04648585245013237,0.005148783326148987,0.08583782613277435,-0.013741714879870415,-0.016039233654737473,0.03847908228635788,0.00248316815122962,-0.05951116979122162,-0.04222846403717995,0.010257928632199764,-0.004757462069392204,0.026187704876065254,0.0758713036775589,0.010702521540224552,-0.020955784246325493,0.06187399849295616,-0.02045508474111557,0.06127455458045006,0.009898647665977478,-0.008620810694992542,0.003346899524331093,0.05627550929784775,-0.013657590374350548,0.04515708610415459,-0.0195546206086874,0.009358623996376991,-0.04086817055940628,0.051121924072504044,-0.014431913383305073,-0.02879505790770054,0.02672073245048523,0.003984484355896711,0.04923639073967934,-0.00017892751202452928,0.03309856355190277,0.04074517637491226,0.016682399436831474,0.023617971688508987,0.08059769868850708,0.043564170598983765,0.04616555944085121,0.0037271834444254637,-0.03295354172587395,-0.055792540311813354,-0.015667062252759933,-0.02695578895509243,-0.04085714370012283,-0.008197709918022156,-0.013703589327633381,0.010981079190969467,0.02747751586139202,0.0343889445066452,-0.010086189024150372,0.03170992061495781,-0.04886505752801895,0.04549436271190643,-0.07877489924430847,0.0291071068495512,-0.02293625846505165,-0.022015536203980446,-0.05466141179203987,-0.0030014505609869957,0.07638532668352127,-0.022308502346277237,-0.01774171181023121,-0.026567887514829636,-0.016818299889564514,-0.04225238412618637,0.014895337633788586,-0.013775015249848366,-0.031832944601774216,-0.0057876077480614185,-0.03908316045999527,0.04401978477835655,-0.06848091632127762,0.0015971347456797957,-0.031168019399046898,-0.005637284368276596,0.07075918465852737,-0.036469414830207825,0.04706446826457977,-0.0010278975823894143,0.0269000343978405,0.06746160238981247,0.08469057083129883,0.03282368183135986,0.03211133927106857,-0.029386235401034355,-0.06181152164936066,-0.08536121249198914,0.05639578774571419,-0.037245914340019226,-0.017213592305779457,-0.023064544424414635,-0.034055374562740326,0.054782211780548096,0.009113208390772343,0.01159600168466568,-0.05594277381896973,0.0551115907728672,0.015715090557932854,-0.01473282091319561,0.050869572907686234,-0.008045844733715057,0.06518571823835373,-0.030955709517002106,0.0080201281234622,0.03907773271203041,0.006150219589471817,0.028734425082802773,0.034902021288871765,-0.03930910304188728,-0.08208607137203217,-0.003337504342198372,0.011421139352023602,0.007056938949972391,0.07638096064329147,-0.06712063401937485,-0.05727538466453552,0.052636731415987015,0.00444949883967638,-0.030590148642659187,-0.04516421630978584,-0.08331298828125,0.08333320170640945,-0.06287617981433868,-0.005757688544690609,0.06809179484844208,0.024810614064335823,0.010232044383883476,0.018721209838986397,-0.017105085775256157,-0.05296725779771805,-0.018201416358351707,-0.03843154013156891,-0.06664658337831497,-0.014962258748710155,0.05007315054535866,0.009760517627000809,0.08025968074798584,0.08398954570293427,0.01581205427646637,0.014879978261888027,-0.04597650095820427,0.027936825528740883,0.026505133137106895,-0.0217722337692976,-0.006078364793211222,0.06989496201276779,-0.024274790659546852,0.06129360944032669,0.001607295824214816,0.05735713616013527,-0.08474190533161163,0.06036091223359108,0.04097882658243179,-0.01496147271245718,-0.040579281747341156,0.06624004244804382,-0.023505836725234985,-0.07775489240884781,0.00001992555735341739,-0.0016928896075114608,0.033559493720531464,-0.004561639856547117,0.024092089384794235,-0.0411725789308548,0.013877072371542454,0.03697494789958,-0.029879357665777206,-0.06274296343326569,-0.023739544674754143,-0.03677363321185112,-0.07215303927659988,0.005301141645759344,0.04693616181612015,-0.07827028632164001,-0.0747799426317215,-0.014422919601202011,-0.018030541017651558,0.04138582572340965,0.004022252280265093,0.04341953620314598,0.01255948655307293,0.018272196874022484,-0.07033097743988037,0.041061222553253174,0.05551442503929138,-0.020148590207099915,0.07430040091276169,-0.04074520245194435,-0.03114672750234604,-0.0674910619854927,-0.07199090719223022,-0.011861265636980534,-0.012940232641994953,-0.024964438751339912,0.07276124507188797,0.04699275270104408,0.04448352009057999,-0.0640229657292366,-0.042120497673749924,-0.07246674597263336,-0.04122527688741684,0.07380098849534988,-0.027142321690917015,0.02468925155699253,0.014197603799402714,-0.02449776604771614,0.05332710221409798,-0.08087597042322159,0.06891899555921555,-0.03647824749350548,0.068083256483078,0.01339302770793438,0.03289218246936798,-0.020957695320248604,0.004150462336838245,0.006549190729856491,0.0722617506980896,0.013633932918310165,0.0655665397644043,0.07153798639774323,-0.048304419964551926,0.013430416584014893,0.03301679715514183,-0.048144347965717316,-0.06250838190317154,-0.016790784895420074,-0.03380098193883896,-0.04237014427781105,-0.04158199578523636,0.05133761838078499,-0.02633710578083992,0.027425436303019524,-0.041055791079998016,-0.03779720887541771,0.06043841689825058,0.06684407591819763,-0.07129617035388947,0.019139276817440987,-0.03921843692660332,0.03609000891447067,-0.044905371963977814,-0.049154944717884064,0.03621809929609299,0.04617517068982124,-0.07816992700099945,0.038792066276073456,0.087772436439991,-0.07681117206811905,0.06813749670982361,0.007367407903075218,-0.008307655341923237,-0.0446426086127758,0.025406373664736748,0.004786258097738028,0.013994294218719006,-0.07353086769580841,0.009020685218274593,0.04514800012111664,0.04338621348142624,-0.06543266773223877,0.006766499485820532,-0.05504785105586052,-0.0007029440021142364,0.005593917798250914,-0.019247129559516907,0.027077749371528625,-0.03264927119016647,0.02377401478588581,-0.07057065516710281,-0.07969626784324646,0.030391022562980652,0.07282177358865738,0.001519037177786231,0.016316324472427368,0.010296759195625782,0.05611860752105713,0.07438371330499649,0.02150498889386654,0.04794144630432129,0.058523621410131454,-0.011710393242537975,-0.05540294572710991,-0.03305991739034653,0.012401810847222805,-0.031084684655070305,0.01621159352362156,0.03341080620884895,-0.061358630657196045,-0.05822925642132759,-0.01377240289002657,0.021165162324905396,-0.02875177375972271,-0.0559738352894783,-0.014914009720087051,0.0766264945268631,-0.0034243736881762743,-0.010777532123029232,-0.049975328147411346,0.07845038920640945,-0.01982562616467476,0.01855170540511608,0.041783981025218964,-0.037109870463609695,0.03209589794278145,-0.02826106734573841,-0.014689458534121513,0.060890424996614456,0.059694841504096985,-0.07612350583076477,-0.07686610519886017,0.04152391105890274,0.051453303545713425]},{"id":"secularization-theory","vector":[0.01703815907239914,-0.06356365978717804,-0.030525054782629013,0.02734433300793171,-0.022056706249713898,0.019403809681534767,0.026932792738080025,-0.08684986084699631,0.03271530196070671,-0.0055236187763512135,0.005299067590385675,0.01698971353471279,-0.03844507783651352,0.018894217908382416,-0.06573711335659027,-0.05442225560545921,-0.029024561867117882,-0.04675951227545738,-0.05285504087805748,0.05139812454581261,-0.0005320989293977618,0.018970930948853493,0.024261392652988434,-0.00830161850899458,0.01971001736819744,-0.008877319283783436,-0.023395197466015816,0.0269473809748888,-0.05603931099176407,-0.03357778862118721,0.06708911806344986,-0.043623849749565125,-0.05865243822336197,0.019791215658187866,0.04701269790530205,0.04882815480232239,-0.04839335381984711,0.03747081384062767,0.050778355449438095,-0.0430290661752224,0.009050500579178333,0.009259743615984917,0.07441974431276321,-0.033776041120290756,-0.033322740346193314,0.023634571582078934,-0.07169045507907867,-0.045449480414390564,0.0461328960955143,0.0650523453950882,-0.03915288671851158,-0.07180210947990417,-0.01635916531085968,-0.04313739016652107,-0.0026524511631578207,-0.013592393137514591,0.05248647555708885,0.020257754251360893,0.004641414619982243,-0.0673130676150322,-0.05654754862189293,-0.05972321331501007,-0.04713008552789688,-0.028108984231948853,-0.04464048892259598,0.009258159436285496,0.09043744951486588,0.014998072758316994,0.08848211914300919,-0.06465795636177063,-0.015562432818114758,-0.03318335860967636,-0.02115585282444954,0.04573170468211174,-0.03623160347342491,-0.04642437398433685,0.011572935618460178,-0.03603556007146835,-0.02960050478577614,0.06052779406309128,-0.001696874271146953,0.06072796508669853,0.02858095057308674,-0.06193900108337402,-0.051606327295303345,0.04338223114609718,-0.001345078693702817,0.05191982164978981,-0.05898715928196907,0.03517289087176323,0.010393618606030941,0.02536158449947834,-0.05359311401844025,0.05920310318470001,-0.03897717967629433,0.05492289736866951,-0.060010287910699844,-0.027570268139243126,-0.06370972096920013,-0.0292240958660841,-0.08015525341033936,0.01727641373872757,0.0077104526571929455,-0.017477378249168396,-0.00839127879589796,0.06431081891059875,-0.05699300765991211,0.06771151721477509,0.06208901107311249,0.01962198130786419,-0.0073436289094388485,-0.06477256119251251,0.01677866280078888,-0.05188354477286339,-0.041424792259931564,0.014130078256130219,0.024069607257843018,0.054851461201906204,-0.06320416927337646,0.043224036693573,-0.033853400498628616,-0.08569972217082977,0.013852505944669247,-0.0627153217792511,-0.05348965898156166,0.022948557510972023,-0.030489174649119377,0.0697280541062355,0.030594956129789352,-0.07511332631111145,-0.06481210142374039,-0.05341508612036705,-0.007034128066152334,0.013090376742184162,-0.041910845786333084,-0.07564537972211838,0.015061113983392715,-0.06186848133802414,-0.02232959121465683,-0.046205002814531326,0.03505575656890869,-0.06962548196315765,0.04815690591931343,0.06576476246118546,-0.007082798983901739,-0.009060628712177277,0.05276039242744446,0.005467294715344906,0.028269462287425995,0.06745337694883347,-0.03620034083724022,0.017405319958925247,-0.07230764627456665,-0.008187416940927505,-0.04892876744270325,-0.03509294241666794,0.053687531501054764,-0.04214146360754967,0.005612121894955635,-0.06479815393686295,-0.03527010232210159,0.0024423738941550255,0.03768795356154442,0.026287831366062164,-0.0014955189544707537,0.02978968806564808,0.035276155918836594,-0.04507258161902428,0.006342798005789518,0.056560199707746506,-0.041941847652196884,-0.028586789965629578,-0.020257161930203438,0.017677726224064827,0.0005357054760679603,0.03605028986930847,-0.08069045841693878,0.07995884120464325,0.07605744153261185,0.0792844146490097,-0.0239085853099823,0.06635615974664688,0.0716821551322937,0.00681690638884902,0.03673800081014633,0.036236051470041275,-0.004214225336909294,0.05532611161470413,0.07767481356859207,-0.03549550473690033,-0.04162851348519325,-0.02245057374238968,0.01874431036412716,0.029702970758080482,0.08330585062503815,-0.0639459565281868,-0.04912848025560379,0.028525058180093765,0.00019109112326987088,0.08116081357002258,-0.008961363695561886,0.00264993729069829,0.03680335357785225,0.02407892979681492,-0.05399781093001366,-0.023816989734768867,0.03499981388449669,-0.019123312085866928,-0.010210604406893253,0.06475326418876648,0.00896812416613102,0.027598416432738304,0.07204306125640869,-0.0010802022879943252,0.05478932708501816,0.0068214149214327335,-0.0429777093231678,0.01910366304218769,0.06294131278991699,-0.011145219206809998,0.026435913518071175,-0.049716655164957047,0.01232662983238697,-0.024983234703540802,0.058461230248212814,-0.028683766722679138,-0.023242808878421783,0.01906965859234333,-0.01320670172572136,0.023150037974119186,-0.022525092586874962,-0.014444008469581604,0.02587096579372883,-0.006928821559995413,-0.024684663861989975,0.07715656608343124,0.04890785738825798,0.03725656867027283,0.04965149983763695,-0.05572155490517616,-0.04903867468237877,0.020381031557917595,-0.011665732599794865,-0.037685707211494446,0.03778596594929695,-0.04467382654547691,-0.014919907785952091,-0.03161134570837021,-0.004780058283358812,-0.055018100887537,0.06233987957239151,-0.07603766769170761,0.05469782277941704,-0.07317482680082321,0.011490465141832829,0.006708814762532711,-0.0033668673131614923,-0.04618321731686592,-0.013995097018778324,0.07086069136857986,-0.025527969002723694,-0.019770078361034393,-0.019515756517648697,0.028561878949403763,-0.049942631274461746,0.0228442195802927,-0.022756166756153107,-0.014915212988853455,-0.000747319427318871,-0.05668608844280243,0.061698272824287415,-0.07398402690887451,0.006064896006137133,-0.01981332153081894,-0.01909424364566803,0.08503839373588562,-0.044640738517045975,0.029262758791446686,-0.04274354502558708,-0.012715636752545834,0.06802599877119064,0.0734233632683754,0.01881822943687439,-0.011160338297486305,-0.03735259175300598,-0.06495124846696854,-0.06651698052883148,0.027452556416392326,-0.025373710319399834,-0.0588560588657856,-0.016132943332195282,-0.013144693337380886,0.0674886703491211,0.0014374952297657728,-0.04366506263613701,-0.059959739446640015,0.06823018938302994,0.007446593139320612,0.04020965099334717,0.041540633887052536,0.020358378067612648,0.04743838682770729,-0.01616847887635231,0.04350697621703148,0.05070994049310684,0.04491913691163063,0.012198426760733128,0.000500067020766437,-0.033928994089365005,-0.08629010617733002,0.01343302708119154,0.030798207968473434,0.04823584482073784,0.06097440794110298,-0.08246239274740219,-0.0593402236700058,0.04052295535802841,-0.03701796755194664,-0.04450618103146553,-0.06159001588821411,-0.07580804824829102,0.06357358396053314,-0.015133222565054893,0.006524335592985153,0.06880111992359161,0.03834822401404381,-0.017743738368153572,0.000912247400265187,0.003971186000853777,-0.049686238169670105,-0.04071485996246338,-0.0377945676445961,-0.062071334570646286,-0.04137759655714035,0.03390774503350258,0.02334917150437832,0.07787507772445679,0.08120676130056381,0.013628385029733181,0.016349859535694122,0.024254823103547096,0.02789217419922352,0.07021968811750412,0.014644520357251167,0.05093623697757721,-0.008725889958441257,-0.05471457540988922,0.04800644889473915,0.0033531300723552704,0.05065883323550224,-0.08044762909412384,0.050326284021139145,0.027144338935613632,0.012453465722501278,-0.04142596945166588,0.06381134688854218,-0.04183149337768555,-0.061604902148246765,0.01684090681374073,-0.01755598373711109,0.041545454412698746,0.024792112410068512,-0.030219893902540207,-0.037606410682201385,0.046088412404060364,0.02417946234345436,-0.035606950521469116,-0.03494599834084511,-0.06198033317923546,-0.015185534954071045,-0.037642888724803925,0.01782374270260334,0.04183933138847351,-0.028647197410464287,-0.06617359817028046,-0.021062375977635384,-0.027413656935095787,0.01788538321852684,0.03590976446866989,0.024477655068039894,0.051315709948539734,0.00119514181278646,-0.0576888844370842,0.06557059288024902,0.04686706140637398,0.017661631107330322,0.052190110087394714,-0.06691160053014755,-0.05279123783111572,-0.05798368901014328,-0.034516919404268265,-0.002283210400491953,-0.011196116916835308,0.011682625859975815,0.06302469223737717,0.0492132306098938,0.06508161872625351,-0.03692302480340004,-0.06889713555574417,-0.07733168452978134,-0.04011080041527748,0.0683216005563736,-0.013001696206629276,0.08031117171049118,-0.039964884519577026,-0.03065018728375435,0.03256221115589142,-0.04298572242259979,0.06468908488750458,-0.046596113592386246,0.07285969704389572,-0.002244370523840189,0.00612452020868659,-0.01284879632294178,0.005581535864621401,0.04526739940047264,0.06686053425073624,-0.002864148234948516,0.06799980252981186,0.05940911918878555,-0.053146060556173325,0.0582590326666832,-0.04575613513588905,-0.0536361001431942,-0.05259126424789429,-0.06559235602617264,-0.03766346722841263,-0.06737633049488068,-0.02823927067220211,-0.01947488822042942,-0.051602378487586975,0.00009677310299593955,-0.015019175596535206,-0.057913560420274734,0.07131262123584747,0.08124479651451111,-0.07879213988780975,-0.006167261861264706,0.021519415080547333,0.04065569490194321,0.017112519592046738,-0.05542226508259773,0.026116210967302322,0.026263779029250145,-0.049121156334877014,0.050132013857364655,0.08554323017597198,-0.05790603160858154,0.054927125573158264,-0.04741247370839119,0.01021361444145441,-0.03491246700286865,-0.014942996203899384,0.002363923704251647,0.00569238793104887,-0.07793180644512177,-0.004151936154812574,0.035506121814250946,0.05807171389460564,-0.04748113080859184,-0.005398476030677557,-0.010655059479176998,-0.020592931658029556,0.0013985916739329696,-0.023388735949993134,0.02995937131345272,-0.02751128003001213,0.03905602917075157,-0.07007524371147156,-0.019284645095467567,0.05557742342352867,0.05074833333492279,0.012258851900696754,0.020352914929389954,0.048412006348371506,0.02743772603571415,0.06730840355157852,0.0034509410616010427,-0.016250135377049446,0.05103806033730507,-0.03666854649782181,-0.03291936218738556,-0.02239469811320305,0.0007062891963869333,-0.02030768245458603,0.03172142058610916,0.0005065074656158686,-0.03383868560194969,-0.06546362489461899,0.04671391472220421,0.008288020268082619,-0.05533966049551964,-0.05746840685606003,0.01164420135319233,0.05947389826178551,0.028318043798208237,0.06312120705842972,-0.04737192764878273,0.07530916482210159,-0.013146350160241127,0.0009420749265700579,0.05686699599027634,0.00939712394028902,0.01388203538954258,-0.0464470311999321,-0.023528745397925377,-0.014189510606229305,0.026059351861476898,-0.0805610716342926,-0.07222141325473785,0.06537402421236038,0.0033933590166270733]},{"id":"signal-lost","vector":[0.007482220884412527,-0.03925871476531029,-0.008309982717037201,0.020924029871821404,-0.03779365494847298,0.056277550756931305,0.03491177037358284,-0.06353501975536346,0.004046497400850058,0.029531145468354225,0.032163068652153015,-0.027454139664769173,-0.010309744626283646,0.011871817521750927,-0.07353705167770386,-0.0005194460391066968,-0.05007440224289894,-0.04288733750581741,-0.03376976400613785,0.0067776828072965145,-0.025212999433279037,0.02863285504281521,0.04946814849972725,-0.04182936251163483,0.049263130873441696,-0.03872034326195717,-0.006094837095588446,-0.02331743948161602,-0.03846460580825806,-0.03500688821077347,0.047829095274209976,-0.039857666939496994,-0.03302003815770149,-0.034241724759340286,0.051076460629701614,0.020042961463332176,-0.05218013375997543,0.02341526746749878,0.06819187849760056,-0.04660341888666153,-0.013938605785369873,-0.0012257503112778068,0.07612933218479156,-0.021245187148451805,-0.052656788378953934,0.0028821690939366817,-0.05717165023088455,-0.023681025952100754,0.055095285177230835,0.0774368867278099,-0.01481601782143116,-0.05989093706011772,0.05274270102381706,-0.0491819866001606,0.0034354948438704014,-0.02894708514213562,0.041474245488643646,0.03153795748949051,0.0387432724237442,-0.07566867023706436,-0.07266664505004883,-0.04523226246237755,-0.05413103103637695,0.004316665232181549,-0.010515227913856506,0.023605847731232643,0.09127211570739746,0.03694073110818863,0.09163369983434677,-0.04540930315852165,-0.03707604855298996,-0.05082431808114052,0.006373484618961811,-0.00949546042829752,-0.0494660884141922,-0.051182474941015244,0.026002055034041405,-0.04620054364204407,-0.013174447230994701,0.05091168358922005,0.02143101952970028,0.04457283765077591,-0.02382897585630417,-0.02582835778594017,-0.04751867800951004,0.05435919761657715,0.016351087018847466,0.07788705080747604,-0.05143405497074127,0.053120117634534836,0.0012830834602937102,-0.010154561139643192,-0.005435806233435869,0.03900987654924393,-0.01614563912153244,0.05944938212633133,-0.06946679949760437,-0.027220778167247772,-0.02573130466043949,-0.05361289530992508,-0.08467419445514679,0.01178556028753519,0.013671984896063805,0.00814069714397192,-0.013016613200306892,0.026582147926092148,0.000110520952148363,0.07468961179256439,0.06449511647224426,0.030722208321094513,-0.015667179599404335,-0.06523077934980392,0.013538033701479435,-0.04796932637691498,-0.02273496985435486,0.032462768256664276,0.0026997081004083157,0.060249846428632736,-0.05937137082219124,0.039888668805360794,-0.019564418122172356,-0.07652471214532852,0.03188062459230423,-0.04133807495236397,-0.02680933102965355,0.012019227258861065,-0.054278675466775894,0.07223547250032425,0.006653155665844679,-0.06604669988155365,-0.05267520621418953,-0.03925389051437378,0.0073842741549015045,0.03317189961671829,-0.018751926720142365,-0.0688139870762825,0.045741695910692215,-0.04836266487836838,0.028508709743618965,0.0011711146216839552,0.023092657327651978,-0.06592746824026108,0.04254304990172386,0.06787019222974777,-0.07014871388673782,-0.01628846488893032,0.06068689748644829,0.03337056562304497,-0.016654154285788536,0.06487394124269485,-0.009751645848155022,0.012359699234366417,-0.07293229550123215,-0.03648381680250168,0.02522978186607361,-0.01471216231584549,0.04468099772930145,-0.0424455963075161,0.07525093853473663,-0.08274495601654053,0.0018717671046033502,-0.043137747794389725,0.04500003904104233,-0.026943519711494446,0.002679685363546014,0.05133195221424103,0.02751900628209114,-0.06444596499204636,-0.007811406627297401,0.06759016960859299,-0.05578400194644928,0.011496053077280521,0.00355965131893754,0.03794355317950249,-0.010602579452097416,0.01689523458480835,-0.039381541311740875,0.08334770798683167,0.08248317986726761,0.07021112740039825,-0.0007963874377310276,0.08618974685668945,0.003170788288116455,0.02465922199189663,0.032519396394491196,0.02426835522055626,0.012636671774089336,0.05746506154537201,0.02454306185245514,-0.029523933306336403,0.006788169499486685,0.008886590600013733,-0.029637424275279045,0.012813465669751167,0.08434417098760605,-0.04908142611384392,-0.04132484644651413,-0.019791094586253166,-0.024285871535539627,0.08870284259319305,0.004005285911262035,0.02532179094851017,0.05959318205714226,0.008119394071400166,-0.04798049479722977,-0.025198403745889664,0.020883949473500252,-0.02741539664566517,0.03567347675561905,0.07944931089878082,0.019884493201971054,-0.02735271118581295,0.060254089534282684,0.008604965172708035,0.05787091329693794,0.02405896969139576,-0.039677660912275314,0.01351869571954012,0.05495038256049156,-0.0006560335750691593,0.02472168393433094,-0.0021368120796978474,0.026566164568066597,-0.06733349710702896,0.05886061117053032,-0.05256860330700874,-0.020031340420246124,0.016414789482951164,0.003616639878600836,0.018294736742973328,0.0005938047543168068,0.024542856961488724,0.038647182285785675,0.005076700821518898,0.008072435855865479,0.04960864037275314,0.04356779903173447,0.07419650256633759,0.050307855010032654,-0.036982882767915726,-0.06130259111523628,0.008248211815953255,-0.033817313611507416,-0.03788110241293907,0.008689320646226406,-0.057294994592666626,0.012189562432467937,0.005884827114641666,-0.0025079946499317884,-0.04351396858692169,0.04105382412672043,-0.07818816602230072,0.03613104671239853,-0.06982533633708954,0.014536816626787186,0.00967315025627613,-0.008659961633384228,-0.053932078182697296,-0.03170233964920044,0.06970596313476562,-0.0246693454682827,0.009423702955245972,0.004327450413256884,-0.01702232100069523,0.00020740332547575235,0.023080380633473396,0.015050038695335388,-0.014708894304931164,-0.009270775131881237,-0.043015576899051666,0.07313405722379684,-0.05738046020269394,-0.014316238462924957,-0.011770975776016712,-0.0355011411011219,0.0854257121682167,-0.029340162873268127,0.037233687937259674,-0.05813120678067207,-0.035348210483789444,0.06176559999585152,0.05988018587231636,0.0391540452837944,-0.018805144354701042,-0.040723592042922974,-0.07039082795381546,-0.06795746088027954,0.04823940619826317,-0.03644639998674393,-0.060390595346689224,-0.013004742562770844,-0.0031134316232055426,0.07260483503341675,-0.014110191725194454,-0.03879838436841965,-0.05260100215673447,0.07863275706768036,0.04572518542408943,0.037166450172662735,0.04638317599892616,0.005258355755358934,0.0499236136674881,-0.016711639240384102,0.05022744461894035,0.02719557285308838,0.004387827590107918,0.06132594868540764,-0.028808623552322388,-0.0018667281838133931,-0.08595478534698486,-0.027799395844340324,0.01432883832603693,0.01464354619383812,0.06254857778549194,-0.08304932713508606,-0.06010199710726738,0.055371515452861786,-0.0019226910080760717,-0.06422670185565948,-0.05479441583156586,-0.08015269041061401,0.030495449900627136,-0.039007946848869324,-0.016502786427736282,0.03906462714076042,0.04452918842434883,-0.011322778649628162,-0.018025407567620277,0.02567530795931816,-0.06457149982452393,0.03147336095571518,-0.047545935958623886,-0.0752510353922844,0.0403205081820488,0.03256438300013542,0.0029617506079375744,0.07680864632129669,0.08684104681015015,0.022628216072916985,0.012461947277188301,-0.007685416378080845,0.01909380964934826,0.05572465434670448,0.03844495862722397,0.004207153804600239,0.008177290670573711,-0.03267403692007065,0.056109603494405746,-0.0186932235956192,0.04065021872520447,-0.0850345715880394,0.06120803579688072,0.010955985635519028,-0.0018351036123931408,-0.013102520257234573,0.06066823750734329,-0.01927250623703003,-0.07293353229761124,0.03692328929901123,0.01690378040075302,0.031140772625803947,-0.0005376095650717616,0.05530987307429314,-0.028594665229320526,0.044441789388656616,0.02713274583220482,-0.02854045294225216,-0.07349782437086105,-0.03142865002155304,-0.057197995483875275,-0.059216320514678955,-0.011592700146138668,0.03566886484622955,-0.04437908157706261,-0.08727145940065384,0.03941712528467178,-0.0034082799684256315,0.06592586636543274,-0.006425843574106693,0.029125960543751717,-0.00861026905477047,0.01499156467616558,-0.051021069288253784,0.02663201093673706,0.03101308085024357,0.024727683514356613,0.05212915688753128,-0.02922723814845085,-0.060338109731674194,-0.07365169376134872,-0.05097318813204765,-0.03352027013897896,-0.0080834049731493,-0.008557156659662724,0.06710196286439896,0.04635551571846008,0.05200689658522606,-0.07999809831380844,-0.0577707514166832,-0.057989347726106644,-0.04011286422610283,0.08026092499494553,0.015616495162248611,0.06722421944141388,-0.05573754757642746,-0.05381761118769646,0.032192863523960114,-0.08187860995531082,0.07893641293048859,-0.03502070531249046,0.06779911369085312,-0.002760764677077532,0.019000597298145294,-0.005280932877212763,-0.0014930234756320715,0.050568338483572006,0.0508781298995018,-0.0232849158346653,0.08038037270307541,0.049587834626436234,-0.048609450459480286,0.03322029113769531,0.04146801307797432,-0.06222795322537422,-0.05860947072505951,-0.01815957762300968,-0.06524329632520676,-0.06224203482270241,-0.040791500359773636,0.024062341079115868,0.0010055206948891282,0.016574684530496597,0.01858169212937355,-0.04233721271157265,0.04821661859750748,0.07830407470464706,-0.06571824103593826,0.014381013810634613,-0.008454549126327038,0.03588924929499626,-0.031456202268600464,-0.02884749136865139,0.06713203340768814,0.05764579400420189,-0.0742223933339119,0.040498826652765274,0.08199828863143921,-0.07180158793926239,0.07504301518201828,-0.05362587794661522,0.00463339826092124,-0.04434339329600334,0.020005743950605392,0.010363646782934666,0.02189520373940468,-0.07381115853786469,-0.028325187042355537,0.05123872682452202,0.06773483753204346,-0.06949622929096222,0.005078449845314026,-0.035359978675842285,0.01528137642890215,0.040260862559080124,-0.02116706222295761,0.024606473743915558,-0.04804740101099014,0.035336777567863464,-0.06456997990608215,-0.0424971878528595,0.03499598801136017,0.05114469304680824,0.009541184641420841,0.00227870955131948,-0.019674597308039665,0.0044386000372469425,0.04774840176105499,0.046573471277952194,-0.011523513123393059,0.07917460799217224,0.01993715390563011,-0.0203557051718235,-0.06275010854005814,0.007823929190635681,0.0165946613997221,0.014551089145243168,-0.001687704585492611,-0.05550660938024521,-0.06181759014725685,-0.0024858179967850447,0.03704308718442917,-0.04315456002950668,-0.06822454929351807,0.0095728300511837,0.07448199391365051,-0.027020130306482315,0.029378389939665794,-0.06728068739175797,0.08230012655258179,-0.009099352173507214,0.03847268223762512,0.05650736391544342,-0.022594045847654343,0.019261041656136513,-0.02266899310052395,0.024310829117894173,0.004015095066279173,0.010683511383831501,-0.08092258125543594,-0.0681513175368309,0.05033377557992935,0.02086024545133114]},{"id":"silent-silas","vector":[0.04638819769024849,-0.04753376916050911,-0.05145617574453354,-0.007461791858077049,-0.03817934915423393,0.007797937840223312,0.010314120911061764,-0.04876641929149628,0.025685634464025497,0.014601943083107471,-0.005279064178466797,-0.023003945127129555,-0.00419468991458416,0.028325408697128296,-0.06274998933076859,0.028127508237957954,-0.04256783053278923,-0.04690191149711609,-0.0438186340034008,0.006467929109930992,-0.04337337613105774,-0.030627788975834846,0.010127246379852295,-0.016210641711950302,-0.028646498918533325,-0.00010935696627711877,-0.023350387811660767,-0.0371934249997139,-0.03319475054740906,-0.05060845613479614,0.010187639854848385,-0.022538356482982635,-0.031081127002835274,-0.0037056496366858482,0.05205542966723442,0.03452027589082718,-0.047856200486421585,0.020503168925642967,0.05418163165450096,-0.0413333997130394,-0.023683225736021996,-0.006443529389798641,0.06517122685909271,-0.03388376161456108,0.045313511043787,-0.0013413811102509499,-0.0808476135134697,0.014224573969841003,0.040807295590639114,0.039005134254693985,-0.008497804403305054,-0.009954849258065224,0.006333539728075266,-0.05859112739562988,-0.02794899232685566,-0.009430150501430035,0.022090379148721695,0.022362973541021347,-0.013841696083545685,-0.063961461186409,-0.08201112598180771,-0.024638811126351357,-0.05982590839266777,-0.0074341436848044395,0.028917573392391205,-0.010171633213758469,0.08955143392086029,0.02350226230919361,0.07503314316272736,-0.06941620260477066,-0.04161720722913742,-0.01780644990503788,0.005124576855450869,0.03204253315925598,-0.04838176444172859,-0.049849383533000946,0.005809847265481949,-0.03519849479198456,0.039198603481054306,0.05825338512659073,0.006473510526120663,0.022138025611639023,-0.0028353382367640734,-0.021236548200249672,-0.021646445617079735,0.05288074165582657,0.01917898841202259,0.06865893304347992,-0.04794870316982269,0.054767049849033356,-0.03308593109250069,-0.01572030782699585,-0.041884567588567734,0.038596175611019135,-0.038884397596120834,0.018786590546369553,-0.08440408110618591,-0.0023965099826455116,-0.05977115035057068,-0.044879473745822906,-0.06988589465618134,0.0106717050075531,-0.022801358252763748,-0.0016880823532119393,-0.04517076164484024,0.021728169173002243,-0.05115031078457832,0.07559136301279068,0.06748242676258087,0.033047813922166824,-0.019436586648225784,-0.05247940868139267,0.00034487704397179186,-0.06444045156240463,-0.02648860402405262,0.029840264469385147,0.03957684710621834,0.022277774289250374,-0.051893431693315506,0.0354030579328537,-0.03616407886147499,-0.06943963468074799,0.055911749601364136,-0.06414683163166046,-0.02237219735980034,-0.034096747636795044,0.0024197285529226065,0.06655748188495636,0.059020936489105225,-0.06957230716943741,-0.034185077995061874,-0.04256168380379677,0.0014028976438567042,0.01792115345597267,-0.031935255974531174,-0.0694458857178688,-0.006673707161098719,-0.07720770686864853,0.02266966737806797,0.01739509031176567,0.018319183960556984,-0.07141906023025513,0.040817148983478546,0.052872829139232635,0.0070354631170630455,0.00038415187736973166,0.052769050002098083,0.020518166944384575,0.027452008798718452,0.033153191208839417,-0.039717916399240494,0.013508051633834839,-0.07408975809812546,-0.0066533200442790985,-0.0439554899930954,-0.059791941195726395,0.03329864889383316,-0.031429484486579895,0.05238219350576401,-0.07622126489877701,0.007627932354807854,-0.015120850875973701,0.04732104018330574,0.015345933847129345,-0.0015078829601407051,0.05082857608795166,-0.0009626884711906314,-0.0210120752453804,-0.013402012176811695,0.055348724126815796,-0.0577533058822155,0.052810247987508774,-0.00702089024707675,0.05046163871884346,-0.04935791715979576,0.008869331330060959,-0.05958286300301552,0.08776940405368805,0.07450052350759506,0.0734059065580368,0.0015604138607159257,0.09036122262477875,0.0132919792085886,0.030547235161066055,0.04341661557555199,0.041249509900808334,0.055152662098407745,0.05139569565653801,0.06800143420696259,-0.0372476726770401,-0.056798119097948074,-0.02725072018802166,-0.01825954206287861,0.00032334262505173683,0.08709058165550232,-0.041418738663196564,-0.007362427655607462,-0.017153404653072357,0.013062615878880024,0.07820934802293777,-0.03755483776330948,0.011377314105629921,0.05182139575481415,0.01316222082823515,-0.0674988403916359,-0.04397263750433922,0.029501598328351974,-0.002364574233070016,0.04248236119747162,0.07438289374113083,0.02235780470073223,-0.04563567042350769,0.063641756772995,-0.0005775881581939757,0.0732390433549881,0.001099181012250483,0.021606246009469032,0.014012706466019154,0.08208999782800674,0.029763568192720413,0.045224208384752274,-0.013519130647182465,0.02170664444565773,-0.06867337971925735,0.08130772411823273,-0.03394576534628868,-0.010635553859174252,-0.019576605409383774,0.04427512735128403,0.03320276737213135,-0.014424440450966358,0.027547325938940048,0.014961018227040768,-0.01110059954226017,0.01994198188185692,0.051952097564935684,0.03362580016255379,0.06509996950626373,0.038251254707574844,-0.022328337654471397,-0.06374842673540115,-0.01983865164220333,-0.012025875970721245,-0.029543446376919746,0.03394751250743866,-0.030109640210866928,-0.01043755654245615,0.033123426139354706,0.011741450056433678,-0.00956946425139904,0.012473401613533497,-0.06965022534132004,-0.04258187115192413,-0.07886234670877457,0.013832845725119114,-0.023935560137033463,-0.02393817901611328,-0.04862035810947418,-0.04687009006738663,0.08097181469202042,-0.012935386970639229,0.03784330561757088,-0.010621975176036358,-0.04839427396655083,-0.01713617518544197,-0.020586982369422913,0.00019692318164743483,-0.01320895366370678,-0.06425102055072784,-0.06119715794920921,0.058493103832006454,-0.056650206446647644,0.0048530190251767635,0.02153717167675495,-0.004710285924375057,0.07921560108661652,-0.029121505096554756,0.044983476400375366,-0.023330939933657646,-0.03617056831717491,0.0806056335568428,0.06987044960260391,0.04890173301100731,-0.0042114658281207085,-0.03443771228194237,-0.06114041805267334,-0.06295973062515259,0.03128510341048241,-0.0467391163110733,-0.06456313282251358,0.012578499503433704,-0.04490290582180023,0.06693273782730103,-0.002253755694255233,-0.02078237570822239,-0.051964666694402695,0.059951961040496826,-0.005491472315043211,0.036490630358457565,0.044054705649614334,-0.027938542887568474,0.03348226472735405,-0.0016342062735930085,0.04677123203873634,-0.015132979489862919,0.0007846039370633662,-0.01261267252266407,0.013569388538599014,-0.016543569043278694,-0.09072522073984146,-0.045489221811294556,-0.004344973713159561,0.04328002408146858,0.06399413198232651,-0.08651050180196762,-0.06001086160540581,0.03728979453444481,-0.058380335569381714,-0.018665678799152374,-0.06662975996732712,-0.08155446499586105,0.052497122436761856,-0.04363524541258812,-0.026267923414707184,0.07059968262910843,-0.024715151637792587,0.016756467521190643,-0.04848182946443558,-0.014549298211932182,-0.05401456356048584,-0.024880878627300262,-0.031234342604875565,-0.07799163460731506,-0.03483236953616142,0.03997108340263367,-0.006326632108539343,0.08835940062999725,0.08754043281078339,-0.012295177206397057,0.029046541079878807,-0.03894198685884476,0.05511411279439926,0.06869684904813766,0.00977539736777544,0.03661338612437248,0.04067927598953247,-0.04418857768177986,0.05612819269299507,0.00005042890552431345,0.0452670156955719,-0.08564489334821701,0.05529659613966942,0.011628500185906887,-0.012932168319821358,0.023306701332330704,0.03560955077409744,-0.03605476766824722,-0.07893451303243637,-0.00003893418761435896,0.004439698066562414,0.03369998559355736,0.0005028854939155281,0.03611033409833908,-0.036444928497076035,-0.001413632882758975,0.03870544955134392,-0.0381554439663887,-0.046837832778692245,-0.060927391052246094,-0.020085394382476807,-0.06840410828590393,0.009226858615875244,0.02388901822268963,-0.07159221917390823,-0.07841667532920837,-0.04453224688768387,-0.02424503117799759,0.023758195340633392,-0.03788366913795471,-0.016162678599357605,-0.030537918210029602,0.04784449189901352,-0.05322183296084404,0.05043265223503113,0.07355432957410812,0.022017544135451317,0.06484734266996384,-0.04764848202466965,-0.045326098799705505,-0.03301394730806351,-0.054158005863428116,-0.025476330891251564,-0.027994250878691673,-0.024432212114334106,0.0696331188082695,0.04950263351202011,0.05355030670762062,-0.07704218477010727,-0.07210251688957214,-0.06499036401510239,-0.022492757067084312,0.07587595283985138,0.008123556151986122,0.04654396325349808,-0.05022594332695007,-0.051556143909692764,0.06544042378664017,-0.07023569941520691,0.052160389721393585,-0.02718881517648697,0.07070299983024597,0.009858197532594204,-0.0029102731496095657,-0.009705296717584133,0.025594517588615417,-0.005782846361398697,0.04781712219119072,-0.06991099566221237,0.08205549418926239,0.02961118519306183,-0.05656272545456886,0.004925357177853584,0.020509976893663406,-0.07059600949287415,-0.07466243952512741,-0.03201456367969513,-0.040005046874284744,-0.040914151817560196,-0.050546251237392426,0.01962064765393734,-0.060992076992988586,0.03830821067094803,-0.01715352199971676,-0.05507180094718933,0.02468656189739704,0.08303561806678772,-0.08226709812879562,0.03297398239374161,-0.0685887336730957,0.02346673794090748,-0.03659173101186752,-0.003614788642153144,0.021299920976161957,0.04671349376440048,-0.0508711077272892,0.05097789317369461,0.08545688539743423,-0.07230798155069351,0.06485442817211151,-0.03962881863117218,0.04587947949767113,-0.04111860319972038,0.05577986314892769,0.0267461147159338,-0.038936153054237366,-0.0745326578617096,0.008988752029836178,0.03135642409324646,0.04654093086719513,-0.07484442740678787,0.019809149205684662,-0.068988136947155,-0.031468965113162994,0.01869940385222435,0.007189159281551838,0.0323370136320591,-0.042091235518455505,0.05484512820839882,0.0007728645578026772,-0.06968976557254791,0.025490054860711098,0.06610669940710068,0.0077519952319562435,0.013038506731390953,0.02451930195093155,0.0014483893755823374,0.052091334015131,0.005280101206153631,0.030203113332390785,0.05378304794430733,-0.013711189851164818,0.01864321529865265,-0.029532762244343758,0.030765008181333542,-0.019719446077942848,0.036675672978162766,0.030463753268122673,-0.013516316190361977,-0.06932712346315384,0.018109602853655815,0.007016175426542759,-0.07234419137239456,-0.06118983030319214,-0.01579606533050537,0.07840197533369064,-0.021626373752951622,0.04579725116491318,-0.029673157259821892,0.07469276338815689,-0.03916101157665253,0.036865510046482086,0.022091776132583618,-0.04612625762820244,0.05424632132053375,-0.040233638137578964,0.024457348510622978,0.045356083661317825,0.017845651134848595,-0.08084798604249954,-0.056578628718853,0.002313540782779455,0.0425804927945137]},{"id":"silent-sound","vector":[0.05630219355225563,-0.05454506725072861,-0.002816147170960903,0.03239738196134567,-0.023258604109287262,0.037369899451732635,0.03271538019180298,-0.08250593394041061,0.026053965091705322,-0.02168646827340126,0.01751723699271679,-0.0008627810748293996,0.001610630308277905,0.05744543671607971,-0.052201319485902786,0.0014632672537118196,-0.03856723755598068,-0.06849925220012665,-0.05813400819897652,0.04372137039899826,-0.016156021505594254,-0.038683224469423294,0.06441649794578552,-0.04413684830069542,0.05412415415048599,-0.03195105865597725,-0.011233878321945667,-0.03986360505223274,-0.032162945717573166,-0.014233672991394997,0.0461103618144989,-0.012576296925544739,-0.010014795698225498,-0.05269976705312729,0.04886894300580025,0.0025466729421168566,-0.042015645653009415,0.018545906990766525,0.04298559948801994,-0.029067082330584526,-0.024678826332092285,0.02045808546245098,0.0842815488576889,-0.0279905516654253,-0.012910271063446999,0.04043392464518547,-0.047777291387319565,-0.004105116240680218,0.07175630331039429,0.06329748034477234,-0.0039985040202736855,-0.031056003645062447,0.04828715696930885,-0.03299852833151817,-0.005956665612757206,-0.06195996701717377,0.022644225507974625,-0.003888801671564579,0.022047076374292374,-0.06406217068433762,-0.06800813972949982,-0.047135528177022934,-0.04105016589164734,-0.022906938567757607,-0.01972787454724312,0.009131265804171562,0.09329982846975327,0.02897934429347515,0.08280389755964279,-0.06944064050912857,0.013743407092988491,-0.0625229999423027,0.01126275584101677,-0.005823809653520584,-0.04592740908265114,-0.04784463346004486,0.01825770176947117,-0.07644577324390411,0.009362309239804745,0.06761632114648819,0.01246578898280859,0.030721740797162056,-0.01777861826121807,-0.004153784364461899,-0.030539335682988167,0.03603394702076912,-0.03059571050107479,0.06655038893222809,-0.07747747749090195,0.030788026750087738,-0.043885622173547745,0.020332088693976402,-0.0757950022816658,0.03885822743177414,-0.021935999393463135,0.04758711904287338,-0.06579762697219849,-0.034752897918224335,-0.052866727113723755,-0.06790896505117416,-0.08227434754371643,-0.025929661467671394,-0.021562671288847923,0.006961649749428034,-0.04943640157580376,0.04096896946430206,0.01714874617755413,0.06614304333925247,0.05657922849059105,0.028399987146258354,-0.01780249923467636,-0.05931627377867699,0.04826921224594116,-0.053186528384685516,-0.0009592591668479145,0.037034690380096436,-0.007574517745524645,0.04940839856863022,-0.07659490406513214,0.03297622501850128,0.0008326001116074622,-0.07420723885297775,0.05639364942908287,-0.07215505093336105,-0.024590980261564255,-0.020654210820794106,0.006166759412735701,0.058014411479234695,0.0345221608877182,-0.057497575879096985,-0.019713524729013443,-0.03465338051319122,0.01644318364560604,0.05145698040723801,-0.02059466391801834,-0.07258372008800507,0.02284908853471279,-0.054915837943553925,0.024073144420981407,-0.017754483968019485,0.062152985483407974,-0.052143000066280365,0.04023487865924835,-0.010193923488259315,-0.013964102603495121,0.009338079951703548,0.06585361808538437,0.05843108147382736,-0.004942125640809536,0.019314659759402275,0.002039025304839015,0.025236167013645172,-0.06602273881435394,-0.007339663803577423,-0.003455221187323332,-0.02201920747756958,0.05218447744846344,-0.03970283642411232,0.0596439391374588,-0.060596417635679245,-0.0346079096198082,-0.012036801315844059,0.04950319230556488,-0.03161029517650604,0.024401787668466568,0.011001000180840492,0.03367534652352333,-0.03827027976512909,-0.014005351811647415,0.058375101536512375,-0.023617327213287354,0.012123075313866138,-0.0029400535859167576,0.04361521825194359,-0.02651691995561123,0.05847436189651489,-0.06574308127164841,0.07661817222833633,0.07541781663894653,0.08246723562479019,-0.034545160830020905,0.09172797948122025,0.0017542521236464381,0.04815203323960304,0.04777156934142113,0.04060075804591179,0.01497205626219511,0.05098114535212517,0.05571538582444191,-0.03635350987315178,-0.022659609094262123,0.05237375944852829,-0.0574195571243763,-0.042701464146375656,0.08793982863426208,-0.0496833398938179,-0.04494110494852066,0.021730102598667145,-0.02832305245101452,0.08319326490163803,-0.00175583572126925,0.04147478565573692,0.043495770543813705,0.04298832640051842,-0.05418688431382179,-0.028979934751987457,0.05625288188457489,0.002318028826266527,0.03568882495164871,0.07409745454788208,0.024475296959280968,-0.019269341602921486,0.012074201367795467,-0.008529039099812508,0.06423941999673843,0.009781531989574432,0.021480495110154152,0.04698718711733818,0.06094079092144966,0.0048076435923576355,0.05127507075667381,-0.04818000644445419,0.047398269176483154,-0.03281960263848305,0.048032548278570175,-0.05501595884561539,-0.028392117470502853,0.02273116447031498,0.02923368103802204,-0.006367415189743042,-0.003188969800248742,0.02255529910326004,0.05730132758617401,-0.007419871632009745,0.009481150656938553,0.06527526676654816,0.041123952716588974,0.05198705941438675,-0.0028373340610414743,-0.06907454878091812,-0.04273112118244171,0.05270422250032425,0.0006384956068359315,-0.010106874629855156,0.001742177759297192,-0.07158149778842926,0.04581241309642792,0.01924903132021427,-0.02112833969295025,0.0033951045479625463,0.035962048918008804,-0.07316236943006516,0.02309489995241165,-0.07439745962619781,0.02507707104086876,-0.04303622990846634,-0.01574733294546604,-0.06234205141663551,-0.030604379251599312,0.09103409200906754,-0.035414669662714005,-0.0128974923864007,-0.018830403685569763,-0.04024387151002884,-0.024906525388360023,0.04190562292933464,0.011292463168501854,-0.026414331048727036,-0.023389164358377457,-0.059012532234191895,0.07929650694131851,-0.07268604636192322,0.017909420654177666,-0.017634762451052666,-0.02982570417225361,0.08739764243364334,-0.03487243130803108,0.06048576161265373,-0.04532472789287567,0.003607225138694048,0.04905122518539429,0.057285454124212265,0.051092978566884995,-0.0070483023300766945,-0.031277887523174286,-0.07503516972064972,-0.059803206473588943,0.04014604911208153,-0.010064655914902687,-0.058917202055454254,-0.024274760857224464,-0.015042408369481564,0.023334374651312828,-0.03280080854892731,-0.07120566070079803,-0.05676383152604103,0.06213273108005524,0.0026390566490590572,-0.0024582389742136,0.05006444826722145,0.0033055811654776335,0.06626681983470917,-0.023110084235668182,0.017749406397342682,-0.0062506599351763725,0.0067705814726650715,0.07111983746290207,0.014683136716485023,-0.02222657948732376,-0.09195557981729507,0.007264607585966587,0.0338728129863739,0.021862756460905075,0.04893898218870163,-0.0793146938085556,-0.06584366410970688,0.03605397790670395,-0.05234862491488457,-0.052458297461271286,-0.06310933828353882,-0.08675526082515717,0.025536036118865013,-0.06344745308160782,-0.05140291899442673,0.07118929922580719,0.021451681852340698,-0.009479743428528309,-0.014656106941401958,0.0032387541141361,-0.03172244876623154,-0.017536809667944908,-0.026526013389229774,-0.0527428574860096,-0.03169819340109825,0.032009340822696686,-0.004120387136936188,0.06741432100534439,0.08628866821527481,-0.008734664879739285,0.005496683064848185,-0.019685208797454834,0.01781131885945797,0.06401460617780685,-0.00814989022910595,0.032476022839546204,-0.0018946075579151511,-0.0330343171954155,0.014895615167915821,0.014218106865882874,0.044512517750263214,-0.09031028300523758,0.07018822431564331,0.011686543934047222,0.0011230530217289925,-0.015066088177263737,0.05459380894899368,-0.0015491668600589037,-0.07591450214385986,0.03727789223194122,-0.008083095774054527,0.030736839398741722,-0.010261672548949718,0.06186820566654205,-0.04284590855240822,0.02173267863690853,0.04152824729681015,-0.031835731118917465,-0.04981197789311409,-0.02224813960492611,-0.038502827286720276,-0.05783103033900261,0.02735421620309353,0.05119403451681137,-0.07717294991016388,-0.08110743761062622,-0.009108206257224083,-0.0014165594475343823,0.0069491988979279995,0.014954897575080395,0.03498772531747818,-0.00022675910440739244,0.024029675871133804,-0.03415398672223091,0.040261320769786835,0.06900406628847122,-0.000775981810875237,0.08121218532323837,-0.03218365088105202,-0.01886039227247238,-0.07544022053480148,-0.07488520443439484,-0.030983224511146545,-0.04394154995679855,-0.01379433088004589,0.06670577824115753,0.043870434165000916,0.05868740752339363,-0.07265742123126984,-0.04368152841925621,-0.05072898045182228,-0.03211771696805954,0.07032931596040726,0.005016596522182226,0.06709516048431396,-0.04049287736415863,-0.05303182080388069,0.05268741026520729,-0.0722464919090271,0.08747196942567825,-0.031001761555671692,0.05396972969174385,0.005680137779563665,0.024362338706851006,-0.013508998788893223,-0.02111508697271347,0.06651515513658524,0.04922156780958176,0.01929338462650776,0.09178506582975388,0.00009233209129888564,-0.04688571020960808,0.00007537263445556164,0.021103953942656517,-0.06441943347454071,-0.034414514899253845,-0.03544522449374199,-0.06196772679686546,-0.0566927045583725,-0.06150561943650246,0.04519204795360565,-0.041160617023706436,0.021332062780857086,-0.01738695055246353,-0.04561781510710716,0.04592026397585869,0.06792718917131424,-0.07191652059555054,0.045412927865982056,-0.055811844766139984,0.04795529320836067,0.010553811676800251,-0.04537150636315346,0.05432957410812378,0.05283733457326889,-0.07350633293390274,0.03262455388903618,0.0904419794678688,-0.06895778328180313,0.06969758123159409,-0.004229582380503416,-0.002725496655330062,-0.042211342602968216,0.04350600019097328,-0.006479492411017418,-0.002488143974915147,-0.07926667481660843,-0.03358928859233856,0.0012491376837715507,0.04022160917520523,-0.0490550696849823,0.0247882679104805,-0.020294470712542534,-0.0031955870799720287,0.012387174181640148,-0.024321340024471283,0.035705406218767166,-0.010153313167393208,0.035168297588825226,-0.061326511204242706,-0.03783851116895676,0.03246791660785675,0.044628992676734924,0.031748026609420776,0.027373159304261208,0.021342063322663307,0.01632753014564514,0.031177924945950508,0.0032035980839282274,0.019145051017403603,0.055476948618888855,-0.018272681161761284,-0.054328832775354385,-0.02695487067103386,0.024515600875020027,-0.01594005711376667,-0.026952801272273064,0.019181597977876663,-0.034069206565618515,-0.07063573598861694,-0.014215884730219841,0.03183024376630783,-0.05389833822846413,-0.06432419270277023,0.000011180753972439561,0.07952191680669785,0.009717468172311783,-0.0001067117482307367,-0.041729822754859924,0.07340140640735626,-0.03516481816768646,0.009413781575858593,0.02234010398387909,-0.026384906843304634,0.011625900864601135,-0.02641686052083969,-0.0020264049526304007,0.010301702655851841,0.018830860033631325,-0.08826587349176407,-0.06536094844341278,0.02075948566198349,0.05266931653022766]},{"id":"sips-of-serum","vector":[0.05085240304470062,-0.03818302974104881,-0.03836702182888985,0.010671884752810001,-0.0391165167093277,-0.009443542920053005,0.015367363579571247,-0.07342463731765747,0.03640197589993477,0.0386144183576107,0.05755123123526573,0.046639636158943176,-0.022193750366568565,0.05285533890128136,-0.053671274334192276,-0.04893879219889641,-0.032066941261291504,-0.05807143822312355,-0.07080435007810593,0.008424699306488037,0.013997725211083889,-0.006462289486080408,0.03513835370540619,-0.026114551350474358,0.03754769638180733,0.02399090677499771,0.0259401835501194,0.006918247323483229,-0.07078215479850769,-0.04611659049987793,0.06153076887130737,-0.06901257485151291,-0.04510165750980377,-0.023830104619264603,0.03795657679438591,0.013675295747816563,-0.048641692847013474,0.06103227660059929,0.041342008858919144,-0.034612156450748444,-0.02975773997604847,-0.014966736547648907,0.05990198999643326,-0.05090610682964325,-0.03558674082159996,0.04379310831427574,-0.013300178572535515,0.031035659834742546,0.03940127044916153,0.019391704350709915,-0.0010390931274741888,-0.030560772866010666,0.027035009115934372,-0.006151280365884304,0.016158858314156532,-0.052646152675151825,0.04538999870419502,0.006149356719106436,0.03445550054311752,-0.06762460619211197,-0.0653231218457222,-0.015770984813570976,-0.046021878719329834,0.02437853440642357,-0.04349859803915024,-0.0034302554558962584,0.08901418745517731,-0.0017775477608665824,0.0868472307920456,-0.0697493776679039,-0.019435495138168335,-0.03575625643134117,0.011242388747632504,0.027148636057972908,-0.05067797005176544,-0.04960606247186661,0.03688332810997963,-0.017151042819023132,-0.02762974612414837,0.0699060708284378,0.01677963323891163,0.05734894052147865,-0.01055542565882206,-0.014871768653392792,-0.0488581657409668,0.048989903181791306,0.0026754874270409346,0.05711078643798828,-0.07877630740404129,0.08061107993125916,-0.050424326211214066,-0.024086972698569298,-0.03647427633404732,0.01351701095700264,-0.033791329711675644,0.024773938581347466,-0.06980429589748383,-0.024136386811733246,-0.03881867602467537,-0.04801969230175018,-0.07995637506246567,0.03616046905517578,0.000637850898783654,0.04816131293773651,-0.023310698568820953,0.026267528533935547,-0.05546654388308525,0.04807879775762558,0.07650982588529587,0.030232928693294525,-0.0527738556265831,-0.07346919924020767,0.02211930975317955,-0.06415720283985138,-0.01698945462703705,0.027127796784043312,-0.007018778007477522,0.054310157895088196,-0.0718221515417099,0.047719232738018036,0.02566392533481121,-0.08022011816501617,0.004257002845406532,-0.07054056972265244,-0.041072700172662735,-0.024748165160417557,-0.06622819602489471,0.046914804726839066,0.0548880361020565,-0.016928067430853844,-0.040363609790802,-0.058609962463378906,-0.035709600895643234,0.06581956893205643,-0.02960898168385029,-0.0697593241930008,-0.029900696128606796,-0.06804163753986359,-0.042984139174222946,0.016594624146819115,0.0003696809581015259,-0.05948827043175697,0.046428658068180084,0.07000581175088882,-0.020920895040035248,0.025518478825688362,0.03459803760051727,0.019291287288069725,0.013368969783186913,0.05915778875350952,-0.0028833430260419846,-0.015527588315308094,-0.03991919010877609,0.0008697765879333019,-0.05706746131181717,-0.03865401819348335,0.04814004525542259,-0.043754950165748596,0.03353114053606987,-0.06217208504676819,-0.04475177079439163,-0.005777718033641577,0.040678974241018295,-0.044043175876140594,0.015359773300588131,0.049413908272981644,-0.03531647101044655,-0.06880660355091095,0.047455064952373505,0.05589195340871811,-0.038218025118112564,-0.02777170203626156,0.0038862142246216536,0.05017983540892601,0.005174079444259405,0.016531961038708687,-0.07666288316249847,0.07762401551008224,0.08198492974042892,0.03292110562324524,-0.01920483633875847,0.08407386392354965,0.009794218465685844,0.013710315339267254,0.06129215285181999,0.05707906186580658,0.00945273507386446,0.04499303922057152,0.06095195561647415,-0.032101333141326904,-0.03104979544878006,0.0010414737043902278,-0.040177084505558014,0.002762258518487215,0.08650263398885727,-0.07502258569002151,-0.06371521204710007,-0.014788731932640076,0.005215555429458618,0.08909640461206436,-0.019873110577464104,0.028781799599528313,0.029452741146087646,-0.007617020979523659,-0.05804755538702011,-0.011809403076767921,0.03904525190591812,-0.022548973560333252,0.0020343416836112738,0.08283458650112152,0.02232843078672886,-0.01246044971048832,0.06605125218629837,0.0031337381806224585,0.07148246467113495,-0.021319352090358734,-0.002161157550290227,-0.009606000036001205,0.07004086673259735,0.01518514659255743,0.022330738604068756,-0.01676984503865242,-0.01349005289375782,-0.050689660012722015,0.06327042728662491,0.0022193242330104113,-0.04755976051092148,0.02511557936668396,0.007278865203261375,0.022148214280605316,-0.030759500339627266,0.025899091735482216,0.062424760311841965,0.017966624349355698,-0.003282494843006134,0.05454998463392258,0.04655143618583679,0.07238271832466125,0.02074524573981762,-0.030617281794548035,-0.05203617736697197,0.019005239009857178,0.009182386100292206,0.0010147663997486234,0.01494001317769289,-0.04586798697710037,-0.004947024863213301,0.009182616136968136,0.009550334885716438,-0.0477498397231102,0.05431341752409935,-0.0685180202126503,0.04664675518870354,-0.07319560647010803,0.0017126956954598427,0.022043371573090553,0.008334578946232796,-0.0530833825469017,-0.01774025522172451,0.08006373792886734,-0.021635444834828377,-0.048855822533369064,0.002814025152474642,-0.016735034063458443,-0.029448453336954117,0.031723760068416595,0.0011714842403307557,-0.03027554601430893,-0.0033218865282833576,-0.05843846872448921,0.045814044773578644,-0.05919654294848442,0.03220308944582939,-0.032524801790714264,0.01687229610979557,0.08793047815561295,-0.05002913251519203,0.010874324478209019,-0.04031803831458092,-0.008318732492625713,0.06118464097380638,0.07246164977550507,0.014564137905836105,-0.0027062436565756798,-0.0005331274587661028,-0.051144327968358994,-0.07659651339054108,0.02427966333925724,-0.05969637632369995,-0.014246023260056973,-0.06637492030858994,-0.024629123508930206,0.05309521034359932,0.02167542651295662,-0.016733765602111816,-0.04441240802407265,0.0693863034248352,0.039989572018384933,0.054705750197172165,0.048670291900634766,0.034179121255874634,0.0788937360048294,-0.026140078902244568,0.03486500680446625,0.013141565956175327,-0.02234734781086445,0.02660983055830002,0.004503059200942516,0.010733175091445446,-0.08798600733280182,-0.00008409993461100385,0.025158744305372238,0.03020104020833969,0.04660632461309433,-0.07794485986232758,-0.0484226793050766,0.06573808193206787,-0.011827215552330017,-0.020263351500034332,-0.05672713741660118,-0.0912540927529335,0.049729496240615845,-0.0656852200627327,-0.05652236193418503,0.05210987478494644,-0.012036985717713833,-0.025381071493029594,0.013398653827607632,0.06528261303901672,-0.061923686414957047,-0.04847174510359764,-0.05462685599923134,-0.05359681323170662,-0.00800005067139864,0.054052166640758514,0.022194186225533485,0.08193545043468475,0.08820165693759918,0.011427080258727074,0.005319190211594105,0.010059589520096779,0.018883150070905685,0.06377562135457993,-0.0565909817814827,0.032707758247852325,-0.020313944667577744,-0.013554717414081097,0.055365271866321564,-0.021152667701244354,0.038830023258924484,-0.08854569494724274,0.06693613529205322,0.047543227672576904,-0.02881024219095707,-0.028211435303092003,0.044487275183200836,-0.033810511231422424,-0.08461831510066986,0.005204084794968367,0.02223348058760166,0.03709104657173157,0.05784930661320686,0.04452264681458473,-0.05279017984867096,0.0037578479386866093,0.037786465138196945,-0.01280540693551302,-0.05066552385687828,-0.0017718472518026829,-0.02872106246650219,-0.044986020773649216,0.004778229631483555,0.026258574798703194,-0.046862486749887466,-0.07513809949159622,-0.031373634934425354,-0.010460281744599342,-0.02156227082014084,-0.000026903857360593975,0.04247560724616051,-0.004165553487837315,0.04800984635949135,-0.05159350112080574,0.04008439555764198,0.05527704209089279,-0.003512136172503233,0.0548144169151783,-0.03998700901865959,-0.05437588319182396,-0.05567840114235878,-0.08294259756803513,-0.0062923249788582325,0.009971954859793186,0.02207140438258648,0.025926679372787476,0.03851909935474396,0.05684496834874153,-0.05800333619117737,-0.059735361486673355,-0.04519159719347954,-0.04146244376897812,0.08357618004083633,0.01126977801322937,0.0389922633767128,-0.034594301134347916,0.002638733945786953,0.05748744681477547,-0.08256112784147263,0.07631922513246536,-0.0626625046133995,0.0804852619767189,0.0011775805614888668,-0.02038356103003025,-0.008384667336940765,-0.012980117462575436,0.028706274926662445,-0.002299416111782193,-0.022352134808897972,0.06891676038503647,0.019182521849870682,-0.05179999768733978,0.024287646636366844,0.032847531139850616,-0.06983505189418793,-0.07810530811548233,-0.027635829523205757,-0.035627204924821854,-0.056595854461193085,-0.04679276421666145,-0.002060327446088195,0.017233697697520256,0.016068268567323685,0.017392784357070923,-0.06715688854455948,0.05059948191046715,0.08350338786840439,-0.06202620267868042,0.014498133212327957,-0.031201506033539772,0.03074183687567711,0.005002476274967194,-0.04463883861899376,0.027749666944146156,0.06653566658496857,-0.01663004793226719,0.031513310968875885,0.0851878672838211,-0.0911133661866188,0.06391873210668564,-0.02711770497262478,0.04306793585419655,-0.00989534892141819,0.030749306082725525,0.01349913701415062,0.02864759974181652,-0.06867986917495728,-0.012471859343349934,0.021118633449077606,0.04802846163511276,-0.059806037694215775,0.04424510523676872,-0.023299237713217735,-0.008420736528933048,0.0032802100758999586,0.023868339136242867,0.02459752932190895,-0.04320497438311577,0.044897254556417465,-0.046813495457172394,-0.04817592352628708,-0.0008123668958432972,0.05409834161400795,-0.001418913365341723,0.033543337136507034,0.01597605086863041,0.025544704869389534,0.06365218013525009,0.014032331295311451,0.024546176195144653,0.05698167905211449,0.011172004044055939,-0.052751995623111725,-0.04028477147221565,0.015347208827733994,-0.013326536864042282,0.017765391618013382,0.05242517217993736,-0.050346776843070984,-0.06992407888174057,0.011805585585534573,0.03428633138537407,-0.06620635092258453,-0.0647192969918251,0.017452532425522804,0.06524739414453506,0.01241784542798996,0.020904457196593285,-0.03890542313456535,0.06988191604614258,0.0034327225293964148,-0.00579605158418417,0.07068764418363571,-0.04227014258503914,-0.022691287100315094,-0.012963732704520226,0.01717485673725605,0.04453083872795105,0.031821463257074356,-0.07758200168609619,-0.08239459991455078,-0.029727471992373466,0.03323102369904518]},{"id":"sleep-paralysis","vector":[0.01711156591773033,-0.05022081360220909,-0.006362710148096085,0.007803976070135832,-0.003990710712969303,0.04439231753349304,0.012938030064105988,-0.07801030576229095,0.04628782346844673,0.048355791717767715,0.037714626640081406,-0.02017850987613201,-0.02279982529580593,0.018696343526244164,-0.06036870554089546,0.019972415640950203,-0.060859646648168564,-0.058963701128959656,-0.05669911578297615,0.006505498196929693,0.01675582304596901,-0.005618763621896505,0.013657324947416782,-0.03913620859384537,0.035671692341566086,0.013160988688468933,-0.04302932694554329,-0.0037143088411539793,-0.06311581283807755,-0.00976535677909851,0.06489942967891693,-0.07673042267560959,-0.027342548593878746,-0.04873830825090408,0.057376060634851456,0.04338645935058594,-0.04603038355708122,0.04172404855489731,0.057787422090768814,-0.04443015903234482,-0.05349820479750633,0.01491102296859026,0.05836787074804306,-0.06863360106945038,-0.0034144348464906216,0.007904802449047565,-0.053154896944761276,-0.029589969664812088,0.05811905488371849,0.06416856497526169,0.004704996477812529,-0.005533516872674227,-0.000956725561991334,-0.02815384790301323,-0.008930415846407413,-0.03832084685564041,0.0749683603644371,0.023048654198646545,0.003738268045708537,-0.07346506416797638,-0.0682511180639267,-0.0417650006711483,-0.0514562726020813,0.01295552123337984,-0.03196973726153374,-0.00018285083933733404,0.08331955224275589,-0.003436196595430374,0.06998556852340698,-0.042621634900569916,-0.015986541286110878,-0.06182411313056946,0.00842838641256094,0.04615912213921547,-0.07648634910583496,-0.06888825446367264,0.024133389815688133,0.007108756341040134,-0.02888137847185135,0.06610850989818573,-0.009503618814051151,0.011136666871607304,0.03177488222718239,-0.03199799731373787,-0.015090903267264366,0.05758947134017944,-0.01932576298713684,0.07299438118934631,-0.04777945578098297,0.042661406099796295,-0.026728441938757896,0.011593257077038288,-0.023403946310281754,0.039456870406866074,-0.042624205350875854,0.055335257202386856,-0.06914488971233368,-0.009986448101699352,-0.0021837283857166767,-0.03462040051817894,-0.0843396931886673,0.00311381951905787,-0.03895753249526024,-0.00837925635278225,-0.03615493327379227,0.03867092356085777,-0.07334530353546143,0.06962426006793976,0.018186280503869057,0.05373426526784897,-0.01710842177271843,-0.06165359914302826,-0.04053853079676628,-0.052462778985500336,-0.06888619065284729,0.012286840938031673,0.03003179281949997,0.0026907941792160273,-0.05051221325993538,0.049313731491565704,-0.02102547511458397,-0.05621306598186493,0.04850412905216217,-0.07493174821138382,-0.02839779667556286,-0.019426951184868813,-0.0018087623175233603,0.013091067783534527,0.054044052958488464,-0.08105608075857162,-0.06486624479293823,-0.05012185871601105,-0.011075564660131931,0.004840762820094824,-0.030155444517731667,-0.07616130262613297,-0.023378388956189156,-0.0627676472067833,-0.04504920542240143,0.027370024472475052,0.03048461675643921,-0.0604076087474823,0.05851321294903755,0.05804311856627464,0.04891777038574219,0.01430219691246748,0.04797903075814247,0.038017187267541885,-0.009428211487829685,0.027975795790553093,-0.0390392430126667,-0.012458478100597858,-0.06515321135520935,-0.05475078895688057,-0.044481679797172546,-0.05101175606250763,0.054388828575611115,0.000382836937205866,0.07450907677412033,-0.031844671815633774,-0.028971372172236443,-0.03603186085820198,0.0552091971039772,0.002200097544118762,0.018157387152314186,0.024792511016130447,-0.017526911571621895,-0.0471283458173275,0.016229679808020592,0.06422244012355804,-0.03610030189156532,0.001712219207547605,-0.009378966875374317,0.0029593734070658684,-0.00880491267889738,0.04653840884566307,-0.06150259077548981,0.07443011552095413,0.07674362510442734,0.07199165225028992,-0.01821017637848854,0.07244881987571716,0.05932219699025154,0.018161751329898834,0.04328034445643425,0.0640072375535965,0.020278625190258026,0.04921013489365578,0.05501095578074455,-0.0425996258854866,-0.055106889456510544,-0.011156142689287663,-0.02237575687468052,-0.019733479246497154,0.08501407504081726,-0.06666088849306107,-0.01978359930217266,0.01009580958634615,0.035816483199596405,0.08284800499677658,-0.004681313876062632,0.01196992862969637,0.017320094630122185,0.009675821289420128,-0.04106206074357033,-0.05110122635960579,0.019934749230742455,0.011387879028916359,0.018650321289896965,0.0695614144206047,0.020558184012770653,-0.0006946354988031089,0.07075590640306473,-0.019014600664377213,0.07950230687856674,0.007421423681080341,-0.0007671713829040527,0.042722661048173904,0.059066105633974075,0.03595312684774399,0.06439084559679031,-0.004816941451281309,0.0025009913370013237,-0.03594133257865906,0.04572012275457382,0.0018614253494888544,-0.024880101904273033,-0.021023526787757874,-0.03250577300786972,0.011975757777690887,-0.023586789146065712,0.03500644490122795,0.05287971347570419,-0.01810186170041561,0.062450386583805084,0.06731634587049484,0.05425633117556572,0.0627315491437912,0.01872241497039795,-0.0029519994277507067,-0.048081859946250916,0.008678013458848,0.001151227974332869,-0.06243329122662544,-0.007705720607191324,-0.038273051381111145,0.02185518480837345,0.020140772685408592,0.03881154581904411,-0.010082525201141834,0.01672803796827793,-0.07531830668449402,0.0035386758390814066,-0.07405415177345276,0.012903951108455658,0.030920300632715225,0.023867812007665634,-0.05053572729229927,-0.01555594988167286,0.08286380767822266,-0.042148809880018234,-0.015124127268791199,-0.0067368061281740665,0.021195704117417336,-0.0023265723139047623,0.03658616170287132,0.010036073625087738,-0.013857165351510048,-0.010092588141560555,-0.07134322077035904,0.05235156789422035,-0.06602582335472107,0.010192071087658405,-0.04626306891441345,-0.028171367943286896,0.06156988814473152,-0.03771853819489479,0.0482555516064167,-0.017341556027531624,0.005878934171050787,0.06013001129031181,0.06392250210046768,-0.0009344680584035814,0.0001973439211724326,-0.03880034759640694,-0.05967169255018234,-0.07145822793245316,0.039437323808670044,-0.053885698318481445,-0.02652347832918167,0.02397075667977333,-0.02160009555518627,0.061455000191926956,-0.011234292760491371,-0.017977094277739525,-0.059561826288700104,0.05563630908727646,-0.01541309617459774,0.012460961006581783,0.039515167474746704,-0.0017016483470797539,0.041747380048036575,0.00432208925485611,0.018076200038194656,0.007197597995400429,0.01049711462110281,-0.021607665345072746,0.01899709552526474,-0.014446175657212734,-0.08623649924993515,-0.009056140668690205,0.07119754701852798,0.00512507651001215,0.06455343961715698,-0.07423120737075806,-0.060070063918828964,0.05942770466208458,-0.0008929020841605961,-0.05276757851243019,-0.06484246253967285,-0.07416284829378128,0.06508900970220566,-0.07787922024726868,0.0006784598226659,0.07839327305555344,0.002769710496068001,-0.023367300629615784,0.01787608303129673,0.00560549134388566,-0.05761644244194031,-0.04072234034538269,-0.013837505131959915,-0.06231958419084549,-0.053485408425331116,0.03147513419389725,-0.010947123169898987,0.08162564784288406,0.08503738045692444,0.015142936259508133,0.0665675699710846,-0.005957758519798517,0.006551404017955065,0.00960535928606987,0.011720257811248302,0.01354969758540392,0.033302243798971176,-0.02382325753569603,0.05229997634887695,-0.050093475729227066,0.05517071112990379,-0.08811380714178085,0.04378160089254379,-0.002309113973751664,0.03089313395321369,0.045527901500463486,0.06520628929138184,-0.032730311155319214,-0.07021593302488327,0.008291148580610752,0.026467517018318176,0.06306721270084381,-0.00000623672394794994,0.003005084116011858,-0.05820293352007866,0.04011561721563339,0.01622442901134491,-0.02809310331940651,-0.04460643604397774,-0.06582189351320267,-0.0026575173251330853,-0.06286203116178513,0.01947886496782303,0.043736495077610016,-0.05446557328104973,-0.08106442540884018,-0.03618312254548073,-0.011861669830977917,0.00885169580578804,0.0045459759421646595,0.02604583464562893,0.002216292079538107,-0.008803896605968475,-0.06244349852204323,0.07240314781665802,0.07820996642112732,0.018329733982682228,0.05946345627307892,-0.06825287640094757,-0.023251254111528397,-0.051884327083826065,-0.06027919799089432,-0.019595520570874214,-0.006786294747143984,0.015648502856492996,0.0545232892036438,0.05545055493712425,0.040685754269361496,-0.04417659714818001,-0.05696532875299454,-0.07759679853916168,-0.033312175422906876,0.04727352410554886,-0.024106131866574287,0.01922810636460781,-0.022315572947263718,-0.007855696603655815,0.06108909472823143,-0.05193253606557846,0.07401105761528015,-0.07052702456712723,0.07263059914112091,0.011255795136094093,0.02189531922340393,-0.009336408227682114,0.019358046352863312,0.01336107961833477,0.07356945425271988,-0.05148632451891899,0.06549752503633499,0.05397700145840645,-0.05264827609062195,0.019564472138881683,0.025495339184999466,-0.06899337470531464,-0.05026242882013321,-0.04500606656074524,-0.02769428677856922,-0.05784326419234276,-0.028453506529331207,0.015071019530296326,-0.051444392651319504,0.039020128548145294,-0.033695999532938004,-0.0486501045525074,0.062042977660894394,0.06809689104557037,-0.07366122305393219,-0.0002870369062293321,-0.07114862650632858,0.004914053250104189,-0.0340212918817997,-0.04478305205702782,0.03274296969175339,0.0200657919049263,-0.0668262392282486,0.034894783049821854,0.08295400440692902,-0.07032174617052078,0.07015083730220795,0.01821943186223507,0.017885083332657814,-0.01562737487256527,0.010510801337659359,-0.0488031804561615,-0.036209411919116974,-0.07470203191041946,-0.03469783067703247,0.03578897938132286,0.05441347882151604,-0.01670895889401436,0.037994641810655594,-0.013621264137327671,-0.01598801277577877,0.030572108924388885,0.003179919673129916,0.047255463898181915,-0.06142416596412659,0.05234582722187042,-0.04284455627202988,-0.03945789486169815,0.025334125384688377,0.0679887905716896,0.005272643640637398,0.021830959245562553,0.05502134934067726,0.03276006132364273,0.08425706624984741,0.016791563481092453,0.03572477027773857,0.06721246242523193,-0.038375623524188995,-0.012679552659392357,0.0008011925965547562,0.031072402372956276,0.02168949693441391,0.0013904821826145053,0.034297019243240356,-0.04573424905538559,-0.05714627355337143,0.00853476207703352,-0.003925767261534929,-0.06246745213866234,-0.05113157257437706,-0.009029263630509377,0.07259072363376617,0.031237825751304626,-0.009697838686406612,-0.07236361503601074,0.07511699944734573,-0.054659150540828705,-0.01686556078493595,0.026070060208439827,-0.016681360080838203,0.04636015370488167,-0.051855117082595825,0.007950947619974613,0.05162714421749115,0.03539583459496498,-0.08179938793182373,-0.07949814945459366,0.04528345912694931,0.051839277148246765]},{"id":"spaghetti","vector":[-0.012303502298891544,0.0037863736506551504,-0.0192305576056242,-0.008492708206176758,-0.04564967751502991,0.06864531338214874,0.05131404101848602,-0.06930039077997208,0.0494389683008194,-0.017790714278817177,0.037474799901247025,-0.04621725529432297,0.01662728749215603,0.08404786884784698,-0.030835971236228943,-0.07384347915649414,-0.04313799738883972,-0.01918095536530018,-0.032803550362586975,-0.07409681379795074,-0.0004451644781511277,0.009693765081465244,0.0007826713845133781,-0.027629369869828224,-0.025126224383711815,0.0031970820855349302,-0.02996538206934929,0.053079452365636826,-0.06473256647586823,-0.06334659457206726,0.049229662865400314,-0.028038019314408302,-0.06767555326223373,0.01521628350019455,0.040405452251434326,0.028990155085921288,-0.05016777664422989,0.05898742005228996,0.07426954060792923,-0.06951052695512772,-0.015638496726751328,0.019286777824163437,0.06820961833000183,-0.03225323557853699,0.01066956389695406,0.008289312943816185,-0.07942534238100052,-0.0013194142375141382,0.028959961608052254,0.034509457647800446,0.048943277448415756,-0.08402252942323685,0.013192259706556797,0.009285182692110538,0.012704908847808838,0.039362482726573944,0.06723175197839737,0.05691494047641754,0.028813404962420464,-0.0696784183382988,-0.0707254633307457,-0.04836683347821236,-0.047452524304389954,0.005126877687871456,-0.009504145011305809,-0.04173082113265991,0.07373399287462234,-0.0055544497445225716,0.08892717212438583,-0.01832643710076809,-0.001774369738996029,-0.02750171534717083,0.041392482817173004,0.0348898209631443,-0.03844388201832771,-0.058660488575696945,0.037973251193761826,-0.021001191809773445,0.05530943721532822,0.05918026715517044,0.01330646499991417,0.0416034534573555,-0.047840382903814316,-0.04834859445691109,-0.029557114467024803,0.05222197622060776,-0.003334355540573597,0.07973622530698776,-0.04654295742511749,0.057075630873441696,-0.04094871133565903,-0.07532146573066711,-0.08503586798906326,0.04074463993310928,-0.04716237261891365,0.042743682861328125,-0.06313104927539825,0.021313482895493507,-0.05511706322431564,-0.04353052005171776,-0.07087156176567078,-0.009856065735220909,0.00973349716514349,0.028687018901109695,-0.015723472461104393,0.023572620004415512,-0.05715303122997284,0.033919017761945724,0.08709657192230225,0.0249006524682045,-0.0520205982029438,-0.05831436812877655,-0.009254145435988903,-0.06985339522361755,-0.056579671800136566,0.030620058998465538,-0.015922125428915024,0.031102286651730537,-0.051806721836328506,0.03703287988901138,-0.020139288157224655,-0.07873449474573135,0.019287053495645523,-0.05799920856952667,-0.010249929502606392,-0.017935140058398247,-0.05843601003289223,0.020333552733063698,0.0457574836909771,-0.06167277321219444,-0.07532491534948349,-0.034208040684461594,-0.001115822116844356,0.022743895649909973,-0.02035381644964218,-0.06966929137706757,0.030856003984808922,-0.04707329720258713,0.002381370635703206,-0.009540194645524025,0.012151629664003849,-0.0151303606107831,0.027430793270468712,0.07630269229412079,0.02761116623878479,-0.047103118151426315,0.030396459624171257,0.02431722730398178,0.024840880185365677,0.017831115052103996,0.005751879885792732,-0.009039354510605335,-0.07129489630460739,0.011566005647182465,-0.04350065067410469,0.016269829124212265,0.047748781740665436,-0.08030980080366135,-0.04197240620851517,-0.06074953079223633,0.052596937865018845,0.05680606886744499,0.038461413234472275,-0.013831040821969509,-0.016623681411147118,0.03862294182181358,-0.028752131387591362,-0.07104283571243286,0.014430081471800804,0.051609694957733154,-0.02997743710875511,-0.03407490998506546,-0.03750114142894745,0.04559257999062538,0.01595984399318695,0.027821455150842667,0.003596859285607934,0.06070874631404877,0.058344267308712006,0.07839801907539368,-0.05406182259321213,0.0833209753036499,0.06071721017360687,-0.03344373777508736,0.04771285876631737,0.021061677485704422,0.04888923093676567,0.04768677055835724,0.08465167880058289,-0.06377977132797241,0.003729875897988677,0.0019366274354979396,0.0208995770663023,0.018602853640913963,0.07203683257102966,-0.07762693613767624,-0.027412647381424904,-0.05629032477736473,-0.04400784894824028,0.0837317407131195,0.002910420298576355,-0.030437491834163666,0.05475828796625137,-0.016303490847349167,-0.0032486498821526766,-0.0663318783044815,0.005931925494223833,-0.0450473390519619,0.044521234929561615,0.07438924908638,0.016809260472655296,0.002744828350841999,0.06778202205896378,0.012214413844048977,0.008236718364059925,0.013495051302015781,-0.057532843202352524,0.017585812136530876,0.031330328434705734,-0.01545866671949625,0.05048256367444992,-0.039187170565128326,0.04654309153556824,-0.03435727581381798,0.06253552436828613,-0.04134296998381615,-0.02999851480126381,0.016104884445667267,0.00747227156534791,0.036869339644908905,-0.048769429326057434,0.029608098790049553,0.01846882700920105,0.011172260157763958,0.026946382597088814,-0.01895262859761715,0.030790837481617928,0.038944095373153687,0.0692867860198021,-0.0076554338447749615,-0.06373954564332962,-0.014149688184261322,0.020900005474686623,-0.002032036194577813,0.046256933361291885,-0.03906843438744545,0.012308021076023579,-0.03295472636818886,0.04896615445613861,-0.0627182200551033,0.07798895984888077,-0.027558768168091774,-0.017897453159093857,-0.07910265773534775,0.005437310319393873,-0.011907528154551983,-0.04808312654495239,-0.04870535060763359,-0.014570271596312523,0.05074054375290871,-0.033144090324640274,-0.025722913444042206,-0.0008628913201391697,0.00610683299601078,-0.03663744777441025,0.043702464550733566,-0.012614752165973186,0.03067760355770588,-0.01479368843138218,-0.054303597658872604,0.07118882983922958,-0.06120710447430611,0.05382091924548149,-0.001227193744853139,0.036485716700553894,0.0797775462269783,-0.03835836797952652,-0.011976638808846474,-0.026668230071663857,0.02932588942348957,0.037830524146556854,0.08271321654319763,-0.005459227599203587,-0.018937597051262856,0.0053892312571406364,-0.06572197377681732,-0.07974598556756973,0.016542142257094383,0.002821687376126647,0.003773547476157546,-0.04564695060253143,0.0018582758493721485,0.0664188489317894,0.040781356394290924,-0.014474721625447273,-0.05139908939599991,0.05542629584670067,-0.02016269974410534,0.05178740248084068,0.04904652759432793,0.00795806385576725,0.03953848406672478,-0.005005464889109135,0.053472813218832016,0.025716297328472137,0.0006843524752184749,0.033958837389945984,0.014944999478757381,0.00067259551724419,-0.0685722827911377,-0.027637531980872154,0.008975179865956306,0.02421409823000431,0.07043386995792389,-0.07823091000318527,-0.05071881040930748,0.03869078680872917,-0.04178576171398163,-0.004671601112931967,-0.03991952911019325,-0.08179014921188354,0.021663350984454155,-0.05986061319708824,0.01814006082713604,0.06265901029109955,0.030013641342520714,-0.021571150049567223,-0.010999759659171104,0.06970033794641495,-0.04158139228820801,-0.055390071123838425,-0.019632888957858086,-0.07885697484016418,-0.05832790210843086,0.042412929236888885,-0.03095230832695961,0.06857742369174957,0.08131143450737,-0.03140249475836754,0.013237432576715946,-0.0016497928882017732,0.04457172006368637,0.08758815377950668,0.004609071183949709,-0.048902057111263275,0.027064211666584015,-0.04571772366762161,0.05036529526114464,-0.011948972940444946,0.036155931651592255,-0.05945705249905586,0.06671540439128876,0.013547697104513645,-0.02588001824915409,0.03881860896945,0.04831787943840027,-0.041604943573474884,-0.07583018392324448,-0.01727874204516411,0.00848400592803955,0.04639362543821335,0.01883530803024769,0.015265288762748241,-0.03259097412228584,0.03115440532565117,0.005400915630161762,-0.04344401881098747,-0.029044602066278458,-0.041405852884054184,-0.025523636490106583,-0.06766032427549362,0.03509221598505974,-0.00492471270263195,-0.03791430592536926,-0.07613857835531235,-0.027305204421281815,-0.006962840911000967,0.05254330486059189,0.05338839069008827,0.07011043280363083,0.06413225084543228,0.03057241439819336,-0.0371762253344059,0.04347645491361618,0.06481528282165527,-0.016017409041523933,0.04083389788866043,-0.04323180764913559,-0.04025442153215408,0.04308197274804115,-0.04479622840881348,-0.033253468573093414,-0.014047432690858841,-0.010772130452096462,0.07379845529794693,0.033021602779626846,0.05506599321961403,-0.05843619257211685,-0.01881607063114643,-0.06876334547996521,-0.03493066504597664,0.06657139211893082,0.020940860733389854,0.027338068932294846,-0.005804533138871193,-0.024229126051068306,0.033044397830963135,-0.026559676975011826,0.07638908922672272,-0.02612399496138096,0.06082792952656746,0.024486789479851723,0.009136875160038471,0.026438260450959206,-0.01333670224994421,0.05173556134104729,-0.017029108479619026,-0.05679057538509369,0.07349236309528351,0.0581519678235054,-0.038424283266067505,0.034760843962430954,-0.051396530121564865,-0.0572563111782074,-0.0532539002597332,-0.0582253560423851,-0.060948725789785385,-0.06030437350273132,-0.0608561635017395,0.009785277768969536,-0.011325816623866558,0.01309750322252512,0.030917996540665627,-0.05904918164014816,0.022856352850794792,0.06693939119577408,-0.06835092604160309,0.02947857789695263,0.05279130861163139,-0.024160198867321014,-0.039825908839702606,-0.040813952684402466,0.016578570008277893,0.03250885009765625,-0.0692250207066536,0.06454505771398544,0.07658927142620087,-0.06501343846321106,0.044031258672475815,-0.05669303983449936,0.048689719289541245,-0.0459672287106514,0.015744298696517944,0.004496908746659756,0.018427807837724686,-0.07405094802379608,0.005159738939255476,0.013651307672262192,0.061425719410181046,-0.058137621730566025,-0.01838100142776966,-0.05642221122980118,-0.046941787004470825,0.03335057944059372,-0.0030073265079408884,0.03568267449736595,-0.023873109370470047,0.05837910249829292,-0.05500895157456398,-0.02466844953596592,0.019218726083636284,0.06789188086986542,0.005384677089750767,0.03762126713991165,0.030136436223983765,0.0012124446220695972,0.04338260740041733,-0.0352797731757164,0.02811690978705883,0.04169421270489693,-0.009777913801372051,0.012268838472664356,0.026372583582997322,0.034919168800115585,-0.024028342217206955,-0.01366455852985382,0.03302726522088051,-0.023849163204431534,-0.06852008402347565,0.01927749440073967,0.006661455612629652,-0.040586262941360474,-0.056461483240127563,-0.00818504299968481,0.07184935361146927,0.00635994179174304,0.07478486746549606,-0.051772065460681915,0.05773630365729332,-0.020384792238473892,-0.003944519441574812,0.07477908581495285,-0.026499057188630104,0.054004646837711334,-0.0009574293508194387,-0.020214227959513664,0.0746547058224678,0.006295397877693176,-0.07586706429719925,-0.06789802014827728,0.024854786694049835,0.007330317981541157]},{"id":"spellchecker","vector":[0.011910772882401943,-0.07167305797338486,-0.05343817546963692,0.007543656975030899,-0.039365384727716446,0.024257497861981392,-0.012135705910623074,-0.061228156089782715,0.016781190410256386,0.04606768861413002,0.05114438757300377,0.02248508296906948,-0.02405250258743763,0.03944436088204384,-0.06429320573806763,-0.03497876599431038,-0.06729049235582352,-0.06702595949172974,-0.03410466015338898,0.04977725073695183,0.0003180122293997556,-0.003824628423899412,0.024356530979275703,-0.04340777173638344,0.04536602646112442,-0.022545428946614265,-0.03714625537395477,-0.030124425888061523,-0.054841235280036926,-0.06455621868371964,0.04698942229151726,-0.04119119793176651,-0.04936549812555313,-0.040137384086847305,0.03013596683740616,0.028106994926929474,-0.04317492991685867,0.04674418270587921,0.07296620309352875,-0.061067186295986176,-0.054297734051942825,-0.011092723347246647,0.05948005989193916,-0.06568769365549088,-0.021140092983841896,0.0004074131138622761,-0.05561884120106697,-0.03150896355509758,0.031513363122940063,0.058669161051511765,-0.014416739344596863,-0.029975270852446556,0.009515778161585331,-0.028983237221837044,-0.017260530963540077,-0.04472557455301285,0.036259084939956665,0.06101279705762863,0.026344748213887215,-0.05964436009526253,-0.07108906656503677,-0.02124635875225067,-0.053015269339084625,0.022266779094934464,-0.05087365582585335,-0.010068465955555439,0.08454727381467819,0.013917146250605583,0.0863722637295723,-0.04958554357290268,-0.02649920992553234,-0.05024106800556183,-0.00019789706857409328,0.0452965572476387,-0.04845704510807991,-0.05747946351766586,0.04267629235982895,-0.04662226140499115,-0.007402048911899328,0.05461430549621582,0.011733070015907288,0.05651227757334709,-0.026488138362765312,0.01004929281771183,-0.0436544306576252,0.04316696152091026,0.02663186751306057,0.07874356955289841,-0.039901137351989746,0.05987241864204407,-0.023828523233532906,0.009004184976220131,-0.050767216831445694,0.06898336857557297,-0.024928223341703415,0.006824407260864973,-0.0710175484418869,-0.030802657827734947,-0.03138451278209686,-0.05893764644861221,-0.07615038752555847,0.051565077155828476,-0.0019587071146816015,0.018032222986221313,0.018483510240912437,0.028940215706825256,-0.07406622171401978,0.05892698094248772,0.03809524327516556,0.027971332892775536,-0.018248889595270157,-0.06395968794822693,-0.006788497790694237,-0.06557396799325943,-0.061970315873622894,0.02326170727610588,0.019436892122030258,0.026900431141257286,-0.05868351459503174,0.055360097438097,-0.011046357452869415,-0.07272139936685562,-0.007799982558935881,-0.06910499930381775,-0.04743601754307747,0.00245931395329535,-0.012923870235681534,0.029808247461915016,0.04321902245283127,-0.08226613700389862,-0.051493991166353226,-0.03391089662909508,-0.012590848840773106,0.03188393637537956,-0.03608407452702522,-0.07327699661254883,0.013635840266942978,-0.06343871355056763,-0.014147339388728142,0.05616128072142601,0.001060786540620029,-0.050762977451086044,0.059170495718717575,0.0768488198518753,0.002390973037108779,0.033840399235486984,0.06141680106520653,0.010443576611578465,0.03133838623762131,0.06223279610276222,-0.0610748752951622,0.03148740902543068,-0.054917555302381516,-0.011375710368156433,-0.048445604741573334,-0.020874999463558197,0.03156184405088425,-0.04543454572558403,0.06828033924102783,-0.06636836379766464,-0.030815133824944496,-0.017933933064341545,0.04491553083062172,-0.002732971915975213,-0.005537346005439758,0.04369112104177475,-0.010648167692124844,-0.047230929136276245,0.04625095799565315,0.059216659516096115,-0.015703817829489708,0.013024253770709038,-0.004902550484985113,0.05156669020652771,-0.02155044488608837,0.022052543237805367,-0.06137897074222565,0.07632223516702652,0.06262943148612976,0.0633765384554863,-0.021735910326242447,0.07734441012144089,0.03397759050130844,0.024393165484070778,0.02859526313841343,0.033498138189315796,0.050601497292518616,0.045187387615442276,0.05859636515378952,-0.05325480177998543,-0.040783368051052094,-0.010999882593750954,-0.03503813594579697,-0.02633160725235939,0.08414911478757858,-0.04772565886378288,-0.010573563165962696,-0.013725195080041885,0.018936842679977417,0.08303942531347275,-0.014384974725544453,-0.008028175681829453,-0.004850319586694241,0.007161648012697697,-0.04497481510043144,-0.025388203561306,-0.0250029768794775,-0.019484534859657288,0.04438961669802666,0.0627545490860939,0.01962258294224739,0.008137262426316738,0.0776379257440567,-0.01804758980870247,0.05952685698866844,0.013418182730674744,-0.023944223299622536,0.030370064079761505,0.06332074850797653,0.014331629499793053,0.06442079693078995,-0.015816189348697662,0.01715061441063881,-0.07351396977901459,0.06151533126831055,-0.06679006665945053,-0.0023678962606936693,-0.0025423914194107056,-0.01148180291056633,-0.008214564062654972,-0.017317522317171097,0.03307219594717026,0.05163809657096863,-0.004520722199231386,0.022606801241636276,0.05706028267741203,0.04774019494652748,0.052642788738012314,0.023111987859010696,0.02323335036635399,-0.05789882689714432,0.004415544681251049,0.002130485838279128,-0.019925691187381744,-0.011345446109771729,-0.06675843894481659,0.03250596672296524,0.04344214126467705,0.047152791172266006,-0.02708168514072895,0.03398497775197029,-0.06876092404127121,0.02937660738825798,-0.06435804814100266,0.0026430943980813026,0.018351132050156593,0.027749614790081978,-0.054021697491407394,-0.030211156234145164,0.08176537603139877,-0.04825770482420921,0.010624989867210388,0.013413149863481522,0.005313283298164606,-0.04009143263101578,0.013853520154953003,0.03695124015212059,0.01867099106311798,-0.04063333570957184,-0.05260899290442467,0.06477205455303192,-0.06790805608034134,0.015004422515630722,-0.016286099329590797,-0.024612627923488617,0.07268518954515457,-0.027485014870762825,0.0206513199955225,-0.008787786588072777,-0.023542804643511772,0.06738653033971786,0.06811589747667313,0.01974351890385151,-0.016193991526961327,-0.02175820991396904,-0.06953150779008865,-0.0724022313952446,0.0183715783059597,-0.042351510375738144,-0.04269397258758545,0.024442145600914955,-0.015692999586462975,0.05379505082964897,0.004147558007389307,-0.04465093836188316,-0.03683048114180565,0.059645600616931915,0.010353495366871357,0.04029691964387894,0.0494300052523613,0.0173858143389225,0.05279029905796051,0.020763060078024864,0.05662519112229347,-0.012726712971925735,0.023573536425828934,-0.013487450778484344,-0.010977838188409805,-0.03860519453883171,-0.08626006543636322,-0.02662275731563568,0.05265140160918236,0.012283586896955967,0.05077171325683594,-0.08039885759353638,-0.048288192600011826,0.061278458684682846,-0.035028550773859024,-0.02459266409277916,-0.060863394290208817,-0.06564513593912125,0.056887540966272354,-0.061790160834789276,-0.019008778035640717,0.05040270462632179,0.03480233997106552,-0.04081213101744652,-0.0327354334294796,0.009994914755225182,-0.05943553149700165,-0.016218557953834534,-0.0035158093087375164,-0.06165451556444168,-0.060573115944862366,0.012206043116748333,-0.0020370827987790108,0.08198501169681549,0.08371102809906006,0.02321794629096985,0.0079680560156703,-0.02785320207476616,0.01673167385160923,0.06425289809703827,0.018229907378554344,0.031512778252363205,-0.0008643037872388959,-0.0544433556497097,0.05135113745927811,-0.04946295544505119,0.02699100412428379,-0.08690834045410156,0.05722654238343239,-0.021702459082007408,0.03195670247077942,0.006397116929292679,0.06006880849599838,-0.047829680144786835,-0.05525452643632889,0.0195937417447567,0.012025786563754082,0.04787426441907883,0.01528292614966631,-0.001585742924362421,-0.02898562327027321,0.05713098868727684,0.020855100825428963,-0.04406556487083435,-0.0415588803589344,-0.05150717496871948,-0.029511770233511925,-0.0658310055732727,-0.011158160865306854,0.024075672030448914,-0.05466291308403015,-0.08398079127073288,-0.0023335302248597145,-0.013140784576535225,0.02027718909084797,-0.02101358026266098,0.03604312241077423,-0.011021114885807037,0.018419679254293442,-0.03145896643400192,0.07256301492452621,0.045249197632074356,0.0018560182070359588,0.0437619648873806,-0.05915601924061775,-0.038232844322919846,-0.042660340666770935,-0.053828246891498566,-0.04155704751610756,-0.0415278784930706,0.05601361393928528,0.056925300508737564,0.029104940593242645,0.020002052187919617,-0.0382361114025116,-0.029987534508109093,-0.07288593053817749,-0.025079861283302307,0.031489137560129166,-0.00672614062204957,0.0671478733420372,-0.033400412648916245,-0.035124681890010834,0.06644916534423828,-0.05068592354655266,0.07603365182876587,-0.06075279414653778,0.08355589210987091,0.03469332680106163,0.02960008755326271,-0.006136217620223761,-0.005584297701716423,0.023990929126739502,0.0385812409222126,-0.04958868771791458,0.06234579533338547,0.06958028674125671,-0.06756729632616043,0.041865039616823196,0.033020611852407455,-0.06356467306613922,-0.05226030573248863,-0.022146442905068398,-0.03573323413729668,-0.07693692296743393,-0.04656725749373436,0.018752651289105415,-0.051434941589832306,0.04897238314151764,-0.014505158178508282,-0.06916788220405579,-0.0017150124767795205,0.07378402352333069,-0.07845907658338547,0.02034667320549488,-0.07685329765081406,0.02361462265253067,-0.06098612770438194,-0.031184174120426178,0.0360681526362896,0.046256888657808304,-0.06717240810394287,0.03249252960085869,0.07833261042833328,-0.07151255011558533,0.063640296459198,-0.021615738049149513,0.05245868116617203,-0.04978744685649872,0.0276055745780468,-0.030626650899648666,0.007988822646439075,-0.07422972470521927,-0.023564202710986137,0.025147762149572372,0.06828881055116653,-0.035344190895557404,-0.02493365667760372,-0.050854504108428955,0.006777101196348667,0.04523723945021629,0.014334991574287415,0.0331549271941185,-0.020198337733745575,0.045332226902246475,-0.050608132034540176,-0.0478067509829998,0.02769053354859352,0.0627681165933609,0.015815123915672302,-0.005859510041773319,0.038469284772872925,-0.00003282409306848422,0.0719195231795311,0.03898084908723831,0.024002723395824432,0.04404039308428764,-0.03700404241681099,0.005311598069965839,-0.07267105579376221,0.009819685481488705,0.0000035778982692136196,0.0457247793674469,0.040612757205963135,-0.048940349370241165,-0.06244044378399849,0.011036188341677189,0.02748807705938816,-0.05221622809767723,-0.07423120737075806,-0.010094985365867615,0.0732722282409668,-0.006896926090121269,0.02689628303050995,-0.06406795978546143,0.07815754413604736,-0.0011808016570284963,0.00970895029604435,0.06467992067337036,-0.013499480672180653,0.011858033016324043,-0.02890835888683796,0.002683372236788273,0.01660194806754589,0.03209232911467552,-0.085085429251194,-0.07655183970928192,0.04045331850647926,0.0330280140042305]},{"id":"take-a-breather","vector":[-0.02246754989027977,-0.03861374408006668,-0.01575351133942604,0.011824388056993484,-0.0489722415804863,0.029677357524633408,0.03551255911588669,-0.07773730903863907,-0.03442179039120674,0.030956080183386803,0.037001531571149826,0.03265887498855591,-0.015173136256635189,0.025579242035746574,-0.06914354860782623,0.035006653517484665,-0.0654059574007988,-0.0637696161866188,-0.013078081421554089,0.05354153737425804,0.0241480004042387,-0.0016960564535111189,0.0489124171435833,-0.011239101178944111,0.05818912014365196,-0.04670724272727966,-0.00035206080065108836,-0.005272489506751299,-0.06127274036407471,-0.031246105208992958,0.029596516862511635,-0.041645828634500504,-0.04576275870203972,-0.04717874526977539,0.017419202253222466,0.021118488162755966,-0.05878880247473717,0.02995935268700123,0.05831403657793999,-0.043505724519491196,-0.02015317790210247,-0.011075406335294247,0.0702570229768753,-0.04410267248749733,-0.020368967205286026,0.008545944467186928,-0.0493488684296608,0.009094029664993286,0.025922872126102448,0.06330281496047974,0.0065822419710457325,-0.024895675480365753,0.03974366933107376,-0.0392511785030365,0.015157102607190609,-0.04457572102546692,0.029913989827036858,0.05463417246937752,0.013352377340197563,-0.07517284899950027,-0.07100485265254974,-0.044350702315568924,-0.0479653999209404,0.04016472399234772,-0.04173384606838226,0.02286323718726635,0.09292852133512497,0.009338374249637127,0.08609990030527115,-0.06975357234477997,-0.03399716690182686,-0.05504871532320976,0.010818635113537312,0.019872400909662247,-0.0641634538769722,-0.05418842285871506,0.0627373605966568,-0.08554999530315399,-0.03135790303349495,0.005160150583833456,0.009236515499651432,0.04514935985207558,0.01000161375850439,-0.030989566817879677,-0.05188603699207306,0.054378312081098557,-0.023601491004228592,0.0294194258749485,-0.0656876340508461,0.06304337829351425,-0.037002816796302795,0.00990904401987791,-0.007316225674003363,0.047793302685022354,-0.018028050661087036,0.07396545261144638,-0.07369737327098846,0.026445657014846802,-0.02566736564040184,-0.03696112707257271,-0.08975714445114136,0.028124209493398666,-0.02027740515768528,0.021170781925320625,-0.012955868616700172,0.02283564582467079,-0.04713001847267151,0.06307370215654373,0.045550063252449036,0.02272370457649231,-0.017878606915473938,-0.0338834710419178,0.0364927239716053,-0.03883657604455948,-0.042892854660749435,0.04295423626899719,0.036645710468292236,0.051654886454343796,-0.05728122591972351,0.025020940229296684,-0.021742189303040504,-0.07207389920949936,0.002803574549034238,-0.04197866469621658,-0.0449955128133297,0.029230305925011635,-0.024812404066324234,0.06178370863199234,0.006026370916515589,-0.07498165965080261,-0.05476721003651619,-0.05538005381822586,-0.014973959885537624,0.03931402042508125,-0.021260881796479225,-0.05872245505452156,-0.012187729589641094,-0.04640079289674759,0.003064389107748866,-0.013260840438306332,-0.017642395570874214,-0.06394518911838531,0.049169450998306274,0.06330934166908264,-0.0109372204169631,0.047558948397636414,0.057184357196092606,0.058242570608854294,0.0238967165350914,0.07197249680757523,-0.00855990033596754,0.021589254960417747,-0.0658600851893425,-0.009872600436210632,-0.03450014814734459,-0.035495560616254807,0.03808991611003876,-0.04238540679216385,0.08177591115236282,-0.08100029081106186,-0.01751786656677723,-0.04916228726506233,0.04535234719514847,-0.011351125314831734,-0.013347893953323364,0.04482352361083031,0.01617760770022869,-0.06871870905160904,-0.01519594993442297,0.06344267725944519,-0.054700519889593124,0.003020094009116292,-0.017322544008493423,0.032533612102270126,-0.017609750851988792,0.04786725714802742,-0.05921421945095062,0.08368375152349472,0.08129540085792542,0.054563917219638824,0.0026278793811798096,0.05286699905991554,0.05038270726799965,-0.002518945839256048,0.03730558604001999,-0.018744664266705513,0.02617005817592144,0.059455450624227524,0.017667807638645172,-0.016258016228675842,0.014014995656907558,-0.03283994644880295,-0.011302265338599682,-0.009073920547962189,0.08668071776628494,-0.05171601474285126,-0.017648326233029366,0.019474893808364868,0.013663623481988907,0.07315510511398315,-0.02530055120587349,0.003225448075681925,0.025201652199029922,-0.002343543106690049,-0.0022080291528254747,-0.055446557700634,0.0020313032437115908,-0.020193109288811684,0.038242489099502563,0.06737218797206879,0.019980669021606445,-0.050290871411561966,0.07458610832691193,-0.022952359169721603,0.07885605841875076,0.0117179024964571,-0.007626700680702925,0.05088021978735924,0.08004624396562576,0.0005897429073229432,0.026423465460538864,-0.01554850023239851,0.0017418015049770474,-0.06587513536214828,0.03745391219854355,-0.047346919775009155,-0.04980412498116493,0.007041545584797859,0.0021047149784862995,0.03095151111483574,0.027492951601743698,0.009255588054656982,0.0562838576734066,0.03102538362145424,0.017115836963057518,0.05736599862575531,0.06326663494110107,0.03598666563630104,0.026705943048000336,-0.08098141849040985,-0.03884950280189514,-0.018087780103087425,-0.05080128833651543,-0.0017046609427779913,-0.010791745968163013,-0.05660485476255417,0.01227105688303709,0.00796111486852169,-0.0059687369503080845,-0.04988459125161171,0.055451326072216034,-0.07945071160793304,0.04969213157892227,-0.06786125898361206,0.0033614712301641703,0.06049616262316704,0.014513750560581684,-0.057732973247766495,0.0075468518771231174,0.077071912586689,-0.03903181850910187,0.03780866041779518,-0.007577733602374792,-0.049872104078531265,-0.012263987213373184,0.04888125881552696,0.023540033027529716,-0.034623634070158005,-0.044167134910821915,-0.03921806439757347,0.06747961044311523,-0.05915508419275284,0.010318649001419544,-0.0015098598087206483,-0.01919219270348549,0.08558894693851471,-0.059342000633478165,0.03443941846489906,-0.024923959746956825,-0.006003293674439192,0.06782738119363785,0.06337764859199524,0.03515468165278435,0.039791930466890335,-0.0248876940459013,-0.03287928178906441,-0.05484313517808914,0.03384470194578171,-0.016330458223819733,-0.040164582431316376,0.0006517524016089737,-0.008749669417738914,0.046394966542720795,0.01727311685681343,-0.012339604087173939,-0.046314649283885956,0.07403826713562012,0.01614384911954403,0.024331243708729744,0.021290967240929604,-0.009696596302092075,0.06251110881567001,-0.02541545033454895,0.05010693520307541,0.03096821904182434,0.0011940064141526818,0.014812201261520386,0.014029956422746181,-0.04055379703640938,-0.08692952990531921,-0.05444524809718132,0.038253653794527054,-0.03428361937403679,0.06435760855674744,-0.08185697346925735,-0.03678729757666588,0.06167663261294365,0.06758301705121994,-0.04723436385393143,-0.07871478796005249,-0.06281197816133499,0.05746912211179733,-0.007310406304895878,-0.020026233047246933,-0.0022678589448332787,0.05163344740867615,-0.027384424582123756,-0.015019089914858341,0.009854035452008247,-0.07144295424222946,0.000990509521216154,-0.05311994627118111,-0.05179659649729729,-0.023080209270119667,0.014179786667227745,-0.028443288058042526,0.07884775847196579,0.07774060219526291,0.04493379965424538,-0.00036199181340634823,-0.035992059856653214,0.006443844176828861,0.06394126266241074,0.020726777613162994,0.018958183005452156,0.05412086099386215,0.0021882622968405485,0.05840902402997017,-0.014862364158034325,0.026982249692082405,-0.08874780684709549,0.04851710796356201,0.025514939799904823,-0.023881463333964348,-0.0010569122387096286,0.07236156612634659,-0.004348293878138065,-0.06913392245769501,0.03975895419716835,0.04073655977845192,0.030162328854203224,0.03044452704489231,0.048494644463062286,-0.06571267545223236,0.007194619160145521,0.05111399292945862,-0.033044036477804184,-0.06517902761697769,-0.025915201753377914,-0.05444232374429703,-0.06509178131818771,-0.05953909829258919,0.04756797105073929,-0.059723302721977234,-0.08403514325618744,-0.000008999553756439127,-0.02270985022187233,0.018959959968924522,-0.003138349624350667,0.04638788476586342,-0.023621318861842155,0.03144516795873642,-0.06193210184574127,0.03296439349651337,0.05262817442417145,-0.009402518160641193,0.049857739359140396,-0.014698399230837822,-0.05216582864522934,-0.04567163437604904,-0.06062125414609909,-0.031819894909858704,-0.012193506583571434,0.010045341216027737,0.0461713932454586,0.04867871105670929,0.06180521100759506,-0.036783378571271896,-0.04309648647904396,-0.06308069080114365,-0.0415966734290123,0.06417801231145859,-0.016156427562236786,0.06893479824066162,-0.011975555680692196,-0.02871873788535595,0.04346979781985283,-0.07818474620580673,0.05829410254955292,-0.034371960908174515,0.05674465745687485,-0.010335697792470455,0.025381702929735184,0.02280188351869583,-0.004044214263558388,0.015755685046315193,0.04547162353992462,-0.010065373033285141,0.07735846936702728,0.05112901329994202,-0.06563498079776764,0.03974571451544762,0.062104057520627975,-0.03802846372127533,-0.04573316499590874,-0.030907290056347847,-0.05666844919323921,-0.07578229904174805,-0.07532324641942978,-0.01611267402768135,-0.01844673790037632,0.0181911401450634,-0.007993815466761589,-0.04323126748204231,0.014877929352223873,0.08458886295557022,-0.07934990525245667,0.011309999041259289,-0.036996256560087204,0.022443046793341637,-0.01673787645995617,-0.0224410779774189,0.041506025940179825,0.05658668652176857,-0.06706958264112473,0.03213059902191162,0.08158314228057861,-0.07759623229503632,0.07364227622747421,-0.02186965011060238,0.022772518917918205,-0.03938816860318184,0.04535675421357155,-0.009329468943178654,0.02202853187918663,-0.08056136965751648,0.002299606567248702,0.03530050069093704,0.07565400749444962,-0.0725913867354393,-0.010706564411520958,-0.03477541357278824,0.0004073456802871078,0.03467822074890137,-0.034373052418231964,0.00319438218139112,0.012789074331521988,0.01214116532355547,-0.05416958034038544,-0.07179003208875656,0.008563234470784664,0.04524555802345276,0.014993780292570591,0.018451027572155,-0.00960167869925499,0.0020565742161124945,0.06678787618875504,-0.001263681217096746,0.029872586950659752,0.05627065896987915,-0.0005792755400761962,-0.024756481871008873,-0.04717855527997017,-0.025260135531425476,-0.04900162294507027,0.05178863927721977,0.054828763008117676,-0.04943537339568138,-0.06920114904642105,-0.026337992399930954,-0.008032895624637604,-0.05159597843885422,-0.06859848648309708,0.034533631056547165,0.0729522705078125,0.04033995419740677,0.012456671334803104,-0.07029367983341217,0.08376040309667587,-0.01274599228054285,0.04374885559082031,0.060900039970874786,-0.04545053467154503,0.016849156469106674,-0.026692891493439674,0.027364514768123627,0.018642721697688103,0.016470368951559067,-0.07669433951377869,-0.05846716836094856,0.03349694609642029,0.007326241582632065]},{"id":"take-time","vector":[-0.022327760234475136,-0.036512281745672226,0.04140064865350723,0.008246419951319695,-0.02750518172979355,0.06699992716312408,0.01570271886885166,-0.07687626034021378,-0.005804782267659903,0.06202109530568123,0.04982053488492966,0.019719678908586502,-0.020290549844503403,0.06263022124767303,-0.02093367651104927,0.0352492518723011,-0.07021728903055191,-0.05892384052276611,-0.06314507126808167,0.040897831320762634,-0.051459185779094696,-0.000644588319119066,-0.05041610449552536,-0.0419624038040638,0.014945422299206257,0.004627534653991461,-0.03600524365901947,0.029650382697582245,-0.05850572884082794,-0.040883131325244904,0.05948009341955185,-0.05626416578888893,-0.011730637401342392,-0.048950254917144775,0.045215241611003876,0.031611502170562744,-0.038103990256786346,0.02779305726289749,-0.016507841646671295,-0.04633553698658943,0.015192318707704544,0.012555550783872604,0.06563664972782135,-0.04530667886137962,-0.0229792557656765,-0.01887715980410576,-0.07006169855594635,0.02648073434829712,0.03768336772918701,0.05472322553396225,-0.008185409009456635,-0.0059511796571314335,0.034731749445199966,-0.04612736776471138,0.011398620903491974,-0.06639883667230606,-0.018461426720023155,0.03631514683365822,0.0030915921088308096,-0.0542338527739048,-0.048270538449287415,-0.05376027897000313,-0.054692815989255905,-0.04847119376063347,-0.005623671691864729,-0.018860435113310814,0.08413734287023544,0.06275242567062378,0.06719224900007248,-0.08118009567260742,-0.036061208695173264,-0.02759728394448757,0.07432230561971664,0.01315089501440525,-0.08439081907272339,-0.022765986621379852,0.0013896944001317024,-0.04395628720521927,-0.0418134480714798,0.04873272404074669,0.007100125774741173,0.03840003162622452,-0.00148267881013453,0.0031887188088148832,-0.045563872903585434,0.03191360831260681,-0.03889082744717598,0.0678633600473404,-0.03931024670600891,0.06742007285356522,-0.024658896028995514,0.035528577864170074,-0.011333678849041462,0.04027583822607994,-0.02704644575715065,0.03421255573630333,-0.05823880434036255,-0.01621110364794731,-0.0516345351934433,-0.028928494080901146,-0.07773178070783615,-0.003693163162097335,-0.011653456836938858,0.01233646273612976,-0.02245660498738289,0.026582621037960052,-0.0697997510433197,0.05856693536043167,0.05969385802745819,0.007281825877726078,-0.010097874328494072,0.016792410984635353,0.010202325880527496,-0.05888545513153076,-0.022273415699601173,0.03412019461393356,-0.02995862253010273,0.04964044317603111,-0.07161536067724228,0.05451436713337898,-0.01955106295645237,-0.06482331454753876,0.06059691682457924,-0.06483849138021469,-0.047147925943136215,-0.013171861879527569,-0.013432534411549568,0.07457893341779709,-0.0017497568624094129,-0.047219786792993546,-0.04796787351369858,-0.04615074023604393,-0.011373855173587799,0.041266147047281265,-0.017870893701910973,-0.06791330873966217,-0.02996361255645752,-0.0745530053973198,-0.02477843128144741,-0.0013856448931619525,0.046096768230199814,-0.05044488608837128,0.06178803741931915,0.0581187978386879,-0.03116367757320404,0.01339612528681755,0.07272976636886597,0.01672864705324173,-0.02286112867295742,0.06006753817200661,0.012708618305623531,-0.04213104769587517,-0.05827322229743004,0.001776326447725296,0.06202743202447891,-0.052346788346767426,0.011617952026426792,-0.027191966772079468,0.05688703805208206,-0.04799618199467659,0.01631573587656021,-0.024953743442893028,0.02409840002655983,0.02142493426799774,-0.012625286355614662,0.026714416220784187,-0.005266173277050257,-0.06031029298901558,0.034955818206071854,0.037971097975969315,-0.04666256532073021,0.01691724732518196,-0.015483919531106949,0.07558751106262207,0.015995938330888748,0.04737004637718201,-0.07346490025520325,0.07629120349884033,0.07665510475635529,0.06682848930358887,-0.048530515283346176,0.04564644396305084,0.041058119386434555,0.027621299028396606,0.058312151581048965,0.06200376898050308,-0.016848867759108543,0.043215561658144,0.02648295648396015,-0.021960947662591934,-0.015349572524428368,-0.014776854775846004,-0.0063934773206710815,-0.021854069083929062,0.07849223166704178,-0.07567746192216873,-0.05631071329116821,0.043389659374952316,0.008857735432684422,0.07682951539754868,-0.004473219625651836,0.04758654534816742,0.02321500889956951,0.04053676500916481,-0.01560662779957056,-0.047762420028448105,0.04871906712651253,-0.02639617584645748,-0.005757207050919533,0.08268130570650101,0.01838856376707554,0.012159759178757668,0.05247277393937111,-0.01362582016736269,0.027906687930226326,0.025306180119514465,-0.015921330079436302,0.021952606737613678,0.0658835843205452,-0.02214662916958332,0.06247002258896828,-0.0630231499671936,0.011195674538612366,-0.05433637276291847,0.05172247812151909,0.0018883664160966873,-0.01737678423523903,-0.04082167521119118,-0.042032189667224884,0.041182562708854675,0.01836710050702095,-0.0006063160835765302,0.03104504942893982,-0.015201644040644169,0.03728160634636879,0.06292439252138138,0.04178781807422638,0.029973909258842468,0.005072843749076128,-0.06258056312799454,-0.03176897391676903,0.03055684268474579,0.03104962408542633,-0.02527124062180519,0.05426035448908806,-0.02011428028345108,-0.009698405861854553,-0.0011126591125503182,0.04985378310084343,-0.03959739953279495,0.038542114198207855,-0.06891881674528122,0.05753135308623314,-0.06816437840461731,0.015853988006711006,0.023801926523447037,-0.02302573435008526,-0.07157662510871887,-0.01789236254990101,0.07220712304115295,-0.03445815667510033,-0.0065176705829799175,0.0075728255324065685,-0.005065374542027712,0.004297541920095682,0.029114460572600365,-0.02443563938140869,0.00815786886960268,-0.015195436775684357,-0.008658932521939278,0.047490913420915604,-0.07176439464092255,0.027769457548856735,-0.02857029065489769,-0.04175089672207832,0.07220377773046494,-0.05908236652612686,0.06553538143634796,-0.003820195095613599,-0.030076656490564346,0.07542887330055237,0.04519286006689072,0.030158288776874542,-0.0011992884101346135,-0.03899313509464264,-0.07360798865556717,-0.04730173572897911,0.05429278686642647,-0.01498423982411623,-0.04574156552553177,-0.039522912353277206,0.02898908033967018,0.050490643829107285,0.03335065767168999,-0.008220691233873367,-0.06405269354581833,0.05255283787846565,0.008835164830088615,0.01674775406718254,0.032043907791376114,0.011716725304722786,0.03875727951526642,-0.03826814517378807,0.013954782858490944,0.027141882106661797,0.0017212454695254564,-0.016863727942109108,-0.021745650097727776,-0.03233446925878525,-0.08341320604085922,0.021986307576298714,-0.005846879445016384,0.032030485570430756,0.06449529528617859,-0.08058936148881912,-0.03860713168978691,0.06653712689876556,-0.02655169926583767,-0.018808480352163315,-0.06806226819753647,-0.08197224885225296,0.06953021138906479,-0.03389885649085045,-0.021372724324464798,0.051234517246484756,0.024547288194298744,-0.04480908066034317,-0.024137990549206734,0.002509315265342593,-0.039362818002700806,-0.07298217713832855,-0.04434550181031227,-0.053893670439720154,-0.03887145593762398,0.03454599156975746,0.009302865713834763,0.0724940374493599,0.08019864559173584,0.01748417317867279,0.037018947303295135,-0.0007547933491878211,0.039374202489852905,-0.0011693662963807583,0.02174673229455948,0.03440564125776291,0.03095262125134468,-0.046090833842754364,0.04228675737977028,-0.007403329946100712,0.04986529052257538,-0.08409257978200912,0.07921341806650162,0.04164113104343414,-0.018190579488873482,0.057130116969347,0.06618162989616394,-0.05006278678774834,-0.07455740123987198,0.0019361634040251374,-0.017321571707725525,0.04948654770851135,-0.055384598672389984,0.008796564303338528,-0.06543156504631042,0.008691816590726376,0.03495027497410774,-0.015295445919036865,-0.02079451084136963,-0.029627297073602676,-0.02736799418926239,-0.06010250747203827,0.004689049907028675,0.04704629257321358,-0.07943911105394363,-0.07231688499450684,-0.01731523871421814,-0.03817201405763626,0.008822625502943993,0.021237097680568695,0.02300969511270523,0.028961973264813423,0.003742778906598687,-0.05739455297589302,0.06602945923805237,0.05666546896100044,-0.04838155210018158,0.05305931344628334,-0.035187289118766785,-0.059704411774873734,-0.08316759020090103,-0.06034331023693085,-0.06579767912626266,0.008091654628515244,0.024389373138546944,0.054773420095443726,0.033717311918735504,0.06588965654373169,-0.05329339951276779,-0.04472324624657631,-0.06904152035713196,-0.05423978343605995,0.06317775696516037,-0.005272023845463991,0.0789884403347969,0.016523024067282677,0.007466861512511969,0.038555603474378586,-0.07321538031101227,0.06619355082511902,-0.048836518079042435,0.049293678253889084,0.023520944640040398,0.009010463953018188,0.03394792601466179,0.023228462785482407,0.043167468160390854,0.03661848604679108,0.009213689714670181,0.061832718551158905,-0.032497502863407135,-0.07394906133413315,0.06196039915084839,0.05415128171443939,-0.05367492884397507,-0.05198865383863449,-0.04003681242465973,-0.021029196679592133,-0.05925537645816803,-0.05409467965364456,0.03275766596198082,-0.06006253510713577,0.03558776155114174,-0.03676602989435196,-0.05697217956185341,0.05010531470179558,0.06178520992398262,-0.0767773687839508,0.019261328503489494,-0.036270055919885635,0.012693301774561405,-0.004254045896232128,-0.03521892428398132,0.048436783254146576,0.02976248227059841,-0.021658657118678093,0.019047563895583153,0.08250264823436737,-0.06267578899860382,0.07408394664525986,-0.05585651844739914,0.043515946716070175,-0.039989717304706573,-0.00020202292944304645,-0.0318915918469429,0.05214013159275055,-0.07226540148258209,0.015600771643221378,0.030240610241889954,0.04750656336545944,-0.05605855584144592,-0.0016264489386230707,-0.03972387686371803,-0.02456595189869404,0.05074097216129303,0.01507791131734848,0.03722479194402695,-0.030387213453650475,0.03812718018889427,-0.06225370988249779,-0.02250438742339611,0.035241395235061646,0.058310698717832565,0.018013598397374153,0.024791551753878593,0.010959217324852943,0.03921914100646973,0.07182398438453674,0.03170540928840637,0.03732629492878914,0.04956836625933647,0.06428790837526321,0.0015702404780313373,-0.034256696701049805,0.011253181844949722,0.0011180113069713116,0.01730823889374733,0.03234189376235008,-0.042212095111608505,-0.05192669481039047,0.0197707861661911,-0.05784662067890167,-0.07226841896772385,-0.06835711002349854,0.0084870345890522,0.07573731243610382,0.0339541919529438,-0.013660131022334099,-0.028485316783189774,0.07141845673322678,-0.02947600744664669,0.07676849514245987,0.0619901642203331,-0.03943343088030815,0.010865913704037666,-0.045608509331941605,0.009333547204732895,-0.01964704878628254,0.02181224338710308,-0.08199773728847504,-0.06977418065071106,0.059911176562309265,0.020452482625842094]},{"id":"thought-experiment","vector":[0.021664205938577652,-0.030693497508764267,0.001557345618493855,0.011344343423843384,-0.01762235537171364,0.052933044731616974,0.015954701229929924,-0.06305330991744995,0.05462892726063728,0.02615245059132576,-0.017497209832072258,-0.0008797060581855476,-0.03285194933414459,-0.004869047086685896,-0.06773538887500763,-0.00108929886482656,-0.059655189514160156,-0.07415052503347397,-0.05558598414063454,0.012096223421394825,0.018154801800847054,0.007257412187755108,0.032617662101984024,-0.03505793586373329,0.03861991688609123,-0.02690891921520233,-0.04530133306980133,0.021347345784306526,-0.03784127160906792,-0.03479296341538429,0.05027075111865997,-0.04116128012537956,0.017212852835655212,0.0016008695820346475,0.057409077882766724,-0.014966917224228382,-0.05268726125359535,0.025525031611323357,0.07380706816911697,-0.03340966999530792,0.0013095797039568424,0.019320037215948105,0.058424461632966995,-0.025732699781656265,-0.01493028737604618,0.00604007113724947,-0.041852302849292755,-0.04510192573070526,0.020791443064808846,0.06751853227615356,-0.05007899925112724,-0.04560263827443123,-0.00017264302005060017,-0.03869433328509331,-0.008560731075704098,-0.015373513102531433,0.030313611030578613,0.04981117323040962,0.03524593636393547,-0.06412205845117569,-0.07145935297012329,-0.0029712372925132513,-0.05665995180606842,0.012032432481646538,0.029853111132979393,-0.001776308286935091,0.06122177839279175,0.02629694528877735,0.05798153951764107,-0.05732329934835434,-0.03324057534337044,-0.03071967139840126,0.034368179738521576,-0.012296533212065697,-0.05413796007633209,-0.06378065794706345,0.00009759773820405826,0.06355594098567963,-0.03336865454912186,0.04140515998005867,0.01985415257513523,0.008679375052452087,0.017401447519659996,-0.028218159452080727,0.011384331621229649,0.04552537575364113,-0.009600095450878143,0.07841461896896362,-0.03871811553835869,0.030017197132110596,-0.030838461592793465,0.003374371910467744,0.029103485867381096,0.008845274336636066,-0.035257063806056976,0.045562729239463806,-0.07681431621313095,-0.05304286256432533,-0.028022540733218193,-0.042357925325632095,-0.06896522641181946,-0.03162346035242081,-0.007521587889641523,0.03166843205690384,-0.05186567083001137,0.04557053744792938,-0.02756405621767044,0.0745566263794899,0.06395498663187027,0.0601641982793808,-0.043234679847955704,-0.07140839844942093,0.013802233152091503,-0.04412465915083885,-0.05601394921541214,-0.007826697081327438,0.001201922306790948,0.07442296296358109,-0.06707697361707687,0.051045071333646774,-0.01112126000225544,-0.0728083923459053,0.0054682353511452675,-0.04717721417546272,-0.026539713144302368,-0.0005226862267591059,-0.04659638926386833,0.05870157852768898,0.051567573100328445,-0.07102370262145996,-0.05504941567778587,-0.04344499111175537,-0.029298724606633186,-0.0018313218606635928,-0.02058170549571514,-0.06792847067117691,0.013669224455952644,-0.014965764246881008,-0.006753804162144661,0.04043686389923096,0.0402572900056839,-0.06516719609498978,0.044864434748888016,0.028949370607733727,0.014879949390888214,-0.02967461384832859,0.0701386034488678,0.032865848392248154,-0.02796027436852455,0.05477943271398544,-0.008260173723101616,0.013753540813922882,-0.0756220892071724,-0.02721257694065571,-0.004974544048309326,-0.014039682224392891,0.06053547188639641,-0.00363594526425004,0.062096524983644485,-0.05498757213354111,0.018427496775984764,-0.0043282052502036095,0.06387349218130112,0.009710858575999737,-0.006127608008682728,0.033229995518922806,0.014626050367951393,-0.05721074715256691,-0.011791574768722057,0.05361218377947807,-0.06426733732223511,0.02909557707607746,0.0019703186117112637,0.05489814281463623,-0.053417280316352844,-0.023072093725204468,-0.06899150460958481,0.07996834814548492,0.08100681006908417,0.03346427530050278,-0.006101428065448999,0.08617953956127167,0.02974233590066433,0.034133393317461014,0.03869655728340149,0.0747053250670433,0.0009783704299479723,0.04409316927194595,0.06151639670133591,-0.05869029089808464,-0.04811315983533859,-0.004756121896207333,-0.02530042827129364,0.03802085667848587,0.0792902335524559,-0.020341509953141212,-0.04228045046329498,-0.03483046591281891,-0.0034400117583572865,0.08980764448642731,-0.04001115262508392,0.060744620859622955,0.04602701589465141,-0.01842036284506321,-0.062348317354917526,-0.0017105386359617114,0.024681629613041878,-0.0015454823151230812,0.006688733585178852,0.07618703693151474,0.03844665735960007,-0.008065872825682163,0.05628455802798271,0.012995935045182705,0.07795394212007523,-0.015156902372837067,-0.023932406678795815,-0.014588219113647938,0.047685377299785614,0.004805014003068209,-0.030255373567342758,-0.008648949675261974,0.01835310459136963,-0.07009966671466827,0.05967447906732559,-0.04478742182254791,-0.03915192186832428,0.014027326367795467,-0.023647397756576538,0.02410365268588066,-0.022263888269662857,0.0012681930093094707,0.05965348333120346,0.012813850305974483,0.02827008068561554,0.05881466716527939,0.03035932593047619,0.07501735538244247,0.02870935946702957,0.07554303109645844,-0.07052198052406311,0.010115977376699448,-0.0413820780813694,-0.039150919765233994,0.008342631161212921,-0.043454959988594055,-0.005775993224233389,0.011914635077118874,-0.004221643786877394,-0.03291664272546768,0.03529077768325806,-0.08295305073261261,0.03655323386192322,-0.0661541298031807,0.02648993954062462,-0.015001826919615269,-0.014784755185246468,-0.03753865137696266,-0.021668029949069023,0.06669030338525772,0.007897828705608845,-0.006474391557276249,-0.010371829383075237,0.022791046649217606,-0.0006193695589900017,-0.0025287449825555086,0.008563184179365635,-0.031432099640369415,-0.028274424374103546,-0.05323773995041847,0.06693894416093826,-0.054185330867767334,-0.0006569558754563332,-0.015393344685435295,-0.046750880777835846,0.06307047605514526,-0.01379061583429575,0.06830274313688278,-0.034836526960134506,-0.05859384685754776,0.07154940813779831,0.05862346291542053,0.034251414239406586,0.014605100266635418,-0.055533792823553085,-0.06317645311355591,-0.08267112076282501,0.015256614424288273,-0.02620328962802887,-0.06118113175034523,0.0465424582362175,-0.018920637667179108,0.06165993586182594,-0.03585861623287201,-0.03954634442925453,-0.03738059848546982,0.045865003019571304,0.04582137241959572,-0.029212074354290962,0.03994804993271828,-0.04257968068122864,0.038165681064128876,0.014868495985865593,0.04240007326006889,0.03441059961915016,0.011449545621871948,0.009390230290591717,-0.004939266014844179,0.008487671613693237,-0.08628880977630615,0.020538730546832085,0.04471283778548241,-0.003933188505470753,0.07412507385015488,-0.07757965475320816,-0.061071209609508514,0.06668420135974884,-0.00574818579480052,-0.054847367107868195,-0.03828159719705582,-0.08500152081251144,0.06873134523630142,-0.03261980786919594,-0.030225487425923347,0.05726117640733719,0.016969339922070503,0.01860545389354229,-0.04385010525584221,-0.009115195833146572,-0.06566326320171356,0.011225112713873386,0.0035831560380756855,-0.06792690604925156,0.019925035536289215,0.03719473257660866,-0.006070369854569435,0.09107571095228195,0.08801550418138504,0.004650232382118702,0.04628004878759384,-0.0295275766402483,0.029817670583724976,0.01846105232834816,0.005137084051966667,0.03260987251996994,-0.02838626317679882,-0.040316518396139145,0.056691765785217285,-0.034862417727708817,0.05500983074307442,-0.08051897585391998,0.06360623240470886,-0.01851332001388073,0.04072178900241852,-0.0018154598074033856,0.049250468611717224,0.008065284229815006,-0.0597507581114769,-0.03062279149889946,0.012541133910417557,0.055384956300258636,0.03152525797486305,0.030416980385780334,-0.002316345926374197,0.03453576937317848,0.005739965476095676,-0.04560175538063049,-0.05973320081830025,-0.012670229189097881,-0.005314468871802092,-0.05717764049768448,0.01970583014190197,0.03534935414791107,-0.07404100149869919,-0.06696177273988724,-0.009556807577610016,0.026305459439754486,0.0505356565117836,-0.03329462185502052,0.009693950414657593,0.02295735478401184,0.040486693382263184,-0.058009568601846695,0.028138136491179466,0.07816493511199951,0.03128662705421448,0.06962665170431137,-0.057203419506549835,-0.06356003135442734,-0.06173040345311165,-0.039727404713630676,-0.00909488182514906,-0.06326611340045929,-0.025903061032295227,0.07221127301454544,0.04038938879966736,0.07265229523181915,-0.07352552562952042,-0.055141184478998184,-0.08595050871372223,-0.01907939277589321,0.07189337909221649,-0.013144075870513916,0.053706154227256775,-0.01805112324655056,0.003645851043984294,0.03898413106799126,-0.07618463039398193,0.07351676374673843,-0.059511538594961166,0.05271042883396149,-0.035130009055137634,0.0027900272980332375,-0.02156713791191578,0.02944447658956051,0.034330472350120544,0.049140773713588715,-0.03777273744344711,0.0730234906077385,0.05206707492470741,-0.06693916022777557,-0.0026381155475974083,0.03578116372227669,-0.06637826561927795,-0.05944999307394028,-0.04110771045088768,-0.04844636097550392,-0.05843539535999298,-0.02626170963048935,-0.0170028954744339,-0.04498223587870598,0.04477335512638092,0.008217444643378258,-0.03328901156783104,0.04301845282316208,0.0737580806016922,-0.06545624136924744,-0.006095753517001867,-0.04786459356546402,0.04577985405921936,-0.043013207614421844,-0.06128746643662453,0.08381873369216919,0.06031481921672821,-0.0766836479306221,0.056512996554374695,0.08571014553308487,-0.07292000204324722,0.056023869663476944,-0.040949929505586624,-0.008404585532844067,-0.021981962025165558,0.028209375217556953,-0.0030183352064341307,-0.012650322169065475,-0.07145616412162781,0.016973137855529785,0.034475699067115784,0.04186942055821419,-0.04001608490943909,0.017199929803609848,-0.015570499002933502,0.007469536270946264,-0.028907230123877525,0.03567556291818619,0.04624286666512489,-0.02602635696530342,0.03321884199976921,-0.06551224738359451,-0.058758512139320374,0.01826368272304535,0.06708482652902603,0.007333435583859682,-0.008631547912955284,0.02971556968986988,0.015291807241737843,0.06597190350294113,0.020894313231110573,-0.015399100258946419,0.08261632174253464,0.012751474976539612,-0.003758680308237672,-0.015708893537521362,0.023881079629063606,-0.0022599033545702696,0.020907185971736908,0.0020752616692334414,-0.03129466623067856,-0.0647938996553421,0.019168997183442116,0.014048437587916851,-0.040777791291475296,-0.025238879024982452,0.023117464035749435,0.06167556345462799,0.018968254327774048,-0.02752572111785412,-0.08678083121776581,0.08012208342552185,-0.07118549197912216,0.030617771670222282,0.060724906623363495,-0.04096239060163498,0.045250069350004196,-0.03411680459976196,0.044750090688467026,0.06498164683580399,0.02971302531659603,-0.06968540698289871,-0.07310004532337189,0.05410615727305412,0.04785124957561493]},{"id":"unintentional-internalization","vector":[0.032156601548194885,-0.02958301454782486,-0.03841324523091316,0.02676292136311531,-0.03138080984354019,0.018446043133735657,-0.0006388355395756662,-0.07352997362613678,0.052821483463048935,0.02008236013352871,0.005037981551140547,0.0142741110175848,-0.018467340618371964,0.04204677790403366,-0.07561531662940979,0.047862518578767776,-0.07309558987617493,-0.061044298112392426,-0.059006914496421814,0.03273985534906387,-0.03350174427032471,0.011144822463393211,0.012943500652909279,-0.03656536713242531,0.047646310180425644,-0.015932731330394745,0.00798722542822361,-0.03650834038853645,-0.0604645274579525,-0.04553698003292084,0.04410107433795929,-0.03422730043530464,-0.06550505757331848,0.012587207369506359,0.05237410217523575,0.03230822831392288,-0.04670010507106781,0.013909988105297089,0.06265851110219955,-0.05417399853467941,-0.015587744303047657,-0.004751930478960276,0.06775351613759995,-0.061616018414497375,-0.02134958654642105,0.0230771005153656,-0.029300041496753693,0.024536214768886566,0.026843177154660225,0.0664002001285553,0.025680774822831154,-0.012127947993576527,0.01502813957631588,-0.046643659472465515,0.032947540283203125,-0.0005179605213925242,0.03419545665383339,0.02838117629289627,0.05240423604846001,-0.0015876272227615118,-0.06764623522758484,-0.024885863065719604,-0.03956929221749306,0.04677624627947807,-0.05729471147060394,-0.04379838705062866,0.08674129098653793,0.016477597877383232,0.06341471523046494,-0.043635714799165726,-0.01632610708475113,-0.03792523592710495,0.04100437089800835,0.027052847668528557,-0.041833024471998215,-0.06285443902015686,0.03066432476043701,-0.021418962627649307,-0.021605486050248146,0.05640823021531105,0.0073037659749388695,0.07486528158187866,0.01342239324003458,-0.012345540337264538,-0.04889092221856117,0.05521390587091446,-0.018564794212579727,0.016749480739235878,-0.014864999800920486,0.06277083605527878,-0.005631116218864918,-0.004372467286884785,-0.03203499689698219,0.07299737632274628,-0.02432822436094284,0.03523332625627518,-0.07713126391172409,-0.01863938383758068,-0.0423150509595871,-0.04277915135025978,-0.08659321814775467,0.026572220027446747,0.0011177393607795238,0.010334302671253681,-0.0057199993170797825,0.0030942840967327356,-0.05543949455022812,0.05749473348259926,0.07510540634393692,0.022926045581698418,-0.007017334923148155,-0.0456833690404892,0.0317256897687912,-0.07780158519744873,-0.0727471187710762,0.044913195073604584,0.05126058682799339,0.07545553147792816,-0.04438183456659317,0.03417965769767761,-0.015031180344522,-0.07798737287521362,0.0214549507945776,-0.07036478072404861,-0.011587239801883698,-0.03818881884217262,-0.029787402600049973,0.02858111448585987,0.0348515510559082,-0.07196526974439621,-0.05751738324761391,-0.05403418466448784,-0.03752840682864189,0.017994027584791183,-0.015549074858427048,-0.06935828924179077,0.0054597328417003155,-0.055941663682460785,-0.03316755220293999,-0.012163596227765083,0.03792116418480873,-0.028236091136932373,0.06324969977140427,0.06731543689966202,0.02727716788649559,0.012871172279119492,0.07838035374879837,-0.014919286593794823,0.011887076310813427,0.04974038898944855,0.014282872900366783,0.0020121957641094923,-0.04847369343042374,-0.03501428663730621,-0.059725672006607056,-0.020269198343157768,0.05360674113035202,-0.06005788594484329,0.06748495250940323,-0.058625418692827225,0.0069150193594396114,-0.03068825975060463,0.048283033072948456,0.03500566631555557,0.010954635217785835,0.019944680854678154,-0.014291579835116863,-0.07204177230596542,0.02295423485338688,0.06614861637353897,-0.03900264576077461,0.008891225792467594,0.004760696552693844,0.03921922668814659,-0.03713002800941467,0.02629402093589306,-0.06317932158708572,0.08588722348213196,0.08212345838546753,0.08368145674467087,-0.02542451024055481,0.08040609955787659,-0.00156612868886441,0.011793478392064571,0.06668473035097122,0.012275349348783493,0.043743621557950974,0.053562231361866,0.038013678044080734,-0.011065245606005192,-0.0396232083439827,-0.017438745126128197,0.0020974522922188044,-0.005671495106071234,0.08067122846841812,-0.07368441671133041,0.0013168136356398463,0.005353410262614489,-0.01842481829226017,0.07141372561454773,-0.03422876074910164,0.03984601050615311,0.009275010786950588,-0.003021349897608161,-0.06602973490953445,-0.03293127566576004,0.05662475526332855,-0.048349685966968536,0.057560380548238754,0.05659736692905426,0.02050747722387314,-0.02702990733087063,0.07200102508068085,0.0036325682885944843,0.048208605498075485,0.046160660684108734,-0.036463670432567596,0.04040757194161415,0.05159240961074829,-0.031535327434539795,0.02674177847802639,0.035787928849458694,0.013357223942875862,-0.05796504393219948,0.07984571903944016,-0.044315699487924576,-0.026395194232463837,0.017543436959385872,0.014270421117544174,0.0010271170176565647,-0.0035447697155177593,0.016811246052384377,0.04157649725675583,0.02040978893637657,0.003978506661951542,0.056286003440618515,0.03929630666971207,0.051662150770425797,0.0071514262817800045,-0.017787914723157883,-0.06252703815698624,0.007184454705566168,-0.06045795977115631,0.016797062009572983,0.0244661383330822,-0.03168574720621109,-0.007904333993792534,0.0012106834910809994,0.025672396644949913,-0.05932966619729996,0.04064645618200302,-0.07957243919372559,0.0513603538274765,-0.07414194941520691,-0.03581506758928299,-0.05587214604020119,0.014447640627622604,-0.06370285898447037,-0.029378356412053108,0.06616167724132538,0.02751580812036991,-0.025188468396663666,-0.05779809504747391,-0.06949234008789062,-0.03943073749542236,0.02057887427508831,0.01607409678399563,-0.032378919422626495,-0.0437607541680336,-0.034372758120298386,0.05023132637143135,-0.06310924142599106,0.0053451815620064735,-0.018345482647418976,-0.010937131009995937,0.08492498099803925,-0.038348276168107986,0.0023646638728678226,-0.038158219307661057,-0.00332398503087461,0.07489805668592453,0.07101403921842575,-0.0025994288735091686,0.06816039979457855,-0.0324656218290329,-0.060728028416633606,-0.06238965317606926,0.02480815351009369,0.0029665736947208643,-0.032883867621421814,-0.015227190218865871,-0.007321601267904043,0.061667550355196,0.027361037209630013,-0.03989310935139656,-0.0584576353430748,0.07644818723201752,0.045930325984954834,0.007814466953277588,0.040471889078617096,-0.010929347947239876,0.06506014615297318,-0.013251157477498055,0.03342689201235771,-0.008841215632855892,0.04029442369937897,0.012530316598713398,0.01958327367901802,-0.03489404171705246,-0.08838418126106262,-0.007952352985739708,0.018125100061297417,-0.009386979974806309,0.058367036283016205,-0.06774652004241943,-0.055774178355932236,0.02883841097354889,-0.03408398479223251,-0.03813423961400986,-0.04671024903655052,-0.06611945480108261,0.05467964708805084,-0.04574563354253769,0.018175743520259857,0.06722165644168854,0.018419504165649414,-0.058196891099214554,-0.0453764870762825,0.007526455447077751,-0.035719629377126694,-0.05088150128722191,-0.05280989408493042,-0.06133706867694855,-0.02934190072119236,0.04491298645734787,-0.012059641070663929,0.08600300550460815,0.087195985019207,-0.010837317444384098,0.008523870259523392,-0.03439248725771904,0.049352943897247314,0.026186272501945496,-0.011907720938324928,0.023380372673273087,0.011026030406355858,-0.06011714041233063,0.04345902428030968,-0.011825951747596264,0.03985731676220894,-0.08656646311283112,0.06254350394010544,0.050138358026742935,-0.007652417756617069,0.01737419329583645,0.04426762834191322,-0.006667808163911104,-0.07290824502706528,0.04218905419111252,-0.00833743717521429,0.04975337162613869,0.017558131366968155,0.04691178724169731,-0.012014619074761868,0.028781617060303688,0.00353073887526989,-0.023165013641119003,-0.07156332582235336,-0.017998920753598213,-0.04211059957742691,-0.05169838294386864,-0.03662089258432388,0.03764251247048378,-0.037543557584285736,-0.07797544449567795,-0.012363259680569172,-0.01770717091858387,0.044476237148046494,0.03352127969264984,0.044080138206481934,-0.01705477572977543,0.005685833748430014,-0.060903336852788925,0.051972705870866776,0.07531461864709854,-0.02037641406059265,-0.004289987031370401,-0.04669129103422165,-0.061504993587732315,-0.057221803814172745,-0.064690500497818,-0.04708060994744301,-0.043700896203517914,-0.008386068046092987,0.057972513139247894,0.03761338070034981,0.04677072912454605,-0.06893398612737656,-0.0257283765822649,-0.06839114427566528,-0.036323320120573044,0.0797751396894455,0.013390611857175827,0.040690623223781586,-0.0035527748987078667,0.008590015582740307,0.051731519401073456,-0.08763173967599869,0.07075664401054382,0.004145842511206865,0.07046501338481903,0.039911579340696335,0.030678732320666313,0.010374568402767181,0.012462531216442585,0.015178375877439976,0.03355419635772705,0.007523514796048403,0.07311186194419861,0.06674209982156754,-0.0410432368516922,0.05840287730097771,0.02551986649632454,-0.04888303577899933,-0.054566383361816406,-0.015476475469768047,0.006133845541626215,-0.07425180822610855,-0.07732990384101868,-0.011144956573843956,0.000015728614016552456,0.005654845852404833,-0.031003091484308243,-0.067137710750103,0.05206016078591347,0.07683370262384415,-0.08949431777000427,0.021981114521622658,-0.014923387207090855,0.04646460339426994,-0.03100951574742794,-0.012713566422462463,0.016716131940484047,0.05101346969604492,-0.0625670775771141,0.0028448631055653095,0.08310182392597198,-0.07812128961086273,0.06850127130746841,-0.027829233556985855,0.03188512474298477,-0.050983622670173645,0.06354577094316483,0.030619876459240913,-0.008646233938634396,-0.0782165676355362,0.0005662120529450476,-0.0027389058377593756,0.04948049411177635,-0.056180957704782486,-0.038268160074949265,-0.04441649094223976,-0.009721188805997372,0.025156904011964798,-0.0207663681358099,0.04329260066151619,-0.012248163111507893,0.05433427542448044,-0.07683578133583069,-0.03473969176411629,0.014422735199332237,0.053305137902498245,0.028396805748343468,0.025755979120731354,-0.002833807375282049,0.01319215539842844,0.05996908247470856,-0.051666658371686935,0.027424361556768417,0.025076543912291527,-0.027793969959020615,-0.030513830482959747,-0.048131950199604034,-0.011018319055438042,-0.0056943283416330814,0.031165888532996178,0.04704884812235832,-0.041680194437503815,-0.06931594759225845,0.0287602748721838,-0.008531669154763222,-0.053941428661346436,-0.05323251336812973,0.0012499185977503657,0.08345520496368408,-0.006665070075541735,0.020092293620109558,-0.020673662424087524,0.07401206344366074,-0.005042421631515026,0.028914134949445724,0.0737461969256401,-0.06367770582437515,0.027381818741559982,-0.01982656680047512,0.0050989799201488495,0.04960595816373825,0.02508631721138954,-0.06537289917469025,-0.06930889934301376,0.04613707959651947,0.04388471320271492]},{"id":"unsettling-beliefs","vector":[0.04427540674805641,-0.029708147048950195,-0.02017730474472046,0.0235789455473423,-0.010733917355537415,-0.0248965322971344,0.04081636667251587,-0.07612670212984085,0.022557592019438744,-0.05274808406829834,0.04028696194291115,-0.02535928785800934,-0.00993766263127327,0.0625554695725441,-0.05886923521757126,-0.05115875229239464,-0.04617191478610039,-0.06928751617670059,0.009961959905922413,0.03839730843901634,0.02478177100419998,-0.05263126268982887,0.0506681464612484,-0.03097040019929409,-0.022300247102975845,-0.002612130483612418,0.015824420377612114,-0.006526436656713486,-0.0449690967798233,-0.017987264320254326,0.011661026626825333,-0.04411245882511139,-0.07343435287475586,-0.01006899680942297,0.030391642823815346,0.03352201730012894,-0.05271514877676964,0.038821183145046234,0.07677274942398071,-0.016554102301597595,0.019059348851442337,0.0038586535956710577,0.06659159064292908,-0.032983046025037766,0.00048180794692598283,0.018629202619194984,-0.054907191544771194,0.049516718834638596,0.0738183930516243,0.02862238697707653,0.028208615258336067,-0.08501677960157394,0.012468491680920124,-0.026032675057649612,-0.02533038519322872,-0.028755322098731995,0.08497191965579987,0.030495574697852135,0.03715718910098076,-0.08012280613183975,-0.054553817957639694,-0.015087460167706013,-0.04821903258562088,-0.01343458704650402,0.026954904198646545,0.05671693757176399,0.08341927081346512,0.007810774724930525,0.09592725336551666,-0.03249920532107353,-0.041640348732471466,-0.03031771071255207,-0.012472521513700485,0.05088642239570618,-0.047878772020339966,-0.06991830468177795,0.016472594812512398,-0.019725868478417397,0.011556782759726048,0.03630688041448593,0.015242057852447033,0.009291856549680233,-0.006773728411644697,-0.05098613724112511,0.002599393017590046,0.048512835055589676,-0.038487277925014496,0.016197506338357925,-0.06006256118416786,0.01636093109846115,-0.05169958621263504,0.011575407348573208,-0.07464195042848587,-0.009491539560258389,-0.024539383128285408,0.06642608344554901,-0.07911797612905502,0.025686725974082947,-0.03578425198793411,-0.020074035972356796,-0.08772291243076324,-0.01362537033855915,-0.029774732887744904,0.040707048028707504,-0.04139517992734909,0.030758611857891083,-0.04530277103185654,0.04383932054042816,0.07711149752140045,0.01887631230056286,-0.04755278304219246,-0.038425199687480927,0.02300165593624115,-0.018227461725473404,-0.038199614733457565,0.0013287507463246584,0.01198429986834526,0.042086247354745865,-0.04241950064897537,0.03422625735402107,-0.03375956416130066,-0.08252710103988647,0.03777304291725159,-0.07434225082397461,-0.008461227640509605,0.041703030467033386,-0.037926144897937775,0.05096049606800079,0.03265396133065224,-0.07922301441431046,-0.020859194919466972,-0.05575411394238472,-0.030109141021966934,0.023526569828391075,-0.020278187468647957,-0.06682255119085312,-0.01854943484067917,-0.05059872567653656,-0.014559188857674599,-0.02303176373243332,0.0037874330300837755,-0.04502559080719948,0.04282739385962486,0.06720113009214401,0.004057785030454397,0.010411174036562443,0.02272374927997589,0.0143448356539011,0.0353560745716095,0.060203589498996735,-0.0562775656580925,-0.006224293261766434,-0.0688127726316452,0.012645763345062733,-0.03132353723049164,-0.051265500485897064,0.05992147698998451,-0.06429049372673035,0.0045339129865169525,-0.023547133430838585,-0.04044121876358986,0.03179372847080231,0.04294867813587189,-0.03062048926949501,0.014521071687340736,0.03578461334109306,0.028238045051693916,-0.07802143692970276,-0.03377338498830795,0.06930739432573318,-0.062116846442222595,-0.047815095633268356,0.0264921672642231,0.011827832087874413,-0.037197086960077286,0.06445083767175674,-0.06662268191576004,0.07705315202474594,0.08692237734794617,0.07853582501411438,-0.02875203639268875,0.07367860525846481,0.07847095280885696,-0.007730374112725258,0.038911543786525726,0.04476848244667053,0.012489032000303268,0.05898868665099144,0.08475390076637268,-0.036112621426582336,-0.026839595288038254,-0.018362537026405334,-0.004951066803187132,0.0053888289257884026,0.07834457606077194,-0.07443032413721085,0.002790509955957532,0.01812579855322838,-0.0005048165330663323,0.08377306908369064,-0.017509080469608307,0.006897605489939451,0.049347832798957825,-0.013976508751511574,-0.02838652767241001,-0.06261973828077316,0.03264852985739708,-0.04611698165535927,0.009459531866014004,0.0797358974814415,-0.014245428144931793,-0.06242747977375984,0.06987277418375015,-0.02146015129983425,0.06602397561073303,-0.03179090842604637,-0.03604983910918236,0.02450091950595379,0.0687481164932251,0.007601073943078518,0.033653054386377335,-0.05763361230492592,0.01063893735408783,-0.05063365399837494,0.048309121280908585,-0.034825846552848816,-0.0336248055100441,0.024794064462184906,0.024236910045146942,0.038880493491888046,-0.0018009764607995749,0.0036216459702700377,0.06416556239128113,0.02663426101207733,0.011472931131720543,0.06622415035963058,0.03669775277376175,0.04094218090176582,0.027643559500575066,-0.02490716427564621,-0.040906354784965515,-0.004429179709404707,0.029959211125969887,-0.010620231740176678,-0.008882719092071056,-0.0323132686316967,-0.027307327836751938,-0.012214895337820053,-0.00961263757199049,-0.001438148901797831,0.04677761346101761,-0.08265973627567291,-0.017305588349699974,-0.08259982615709305,0.0009115267312154174,0.006919594015926123,-0.04388289526104927,-0.050109170377254486,-0.03424686938524246,0.04623769596219063,-0.034771163016557693,-0.015561457723379135,0.007302785757929087,-0.048361122608184814,-0.02585766464471817,-0.003994948696345091,-0.021635601297020912,-0.02357732504606247,-0.03701724484562874,-0.04232083633542061,0.04980332776904106,-0.044947411864995956,0.018877647817134857,-0.013836771249771118,0.031741123646497726,0.07955241203308105,-0.044329412281513214,0.053446296602487564,-0.04786957800388336,-0.004714741371572018,0.06819391995668411,0.08806297183036804,0.044797223061323166,0.033677633851766586,-0.01198034267872572,-0.053276922553777695,-0.0660947784781456,0.05313923582434654,-0.055107854306697845,-0.05338771268725395,-0.04667593911290169,-0.03951352462172508,0.06866621226072311,-0.015532664023339748,0.01095180120319128,-0.06332758069038391,0.06027355417609215,0.011736510321497917,0.0505622923374176,0.04853755235671997,-0.016925416886806488,0.051521122455596924,-0.010463719256222248,0.057855963706970215,0.05402794107794762,-0.018601972609758377,0.021633083000779152,0.06076411157846451,-0.02166704647243023,-0.050652455538511276,0.009504111483693123,0.008806034922599792,0.0016374904662370682,0.05665067955851555,-0.06817823648452759,-0.061371322721242905,0.032879967242479324,-0.03250208869576454,-0.04415886849164963,-0.049477219581604004,-0.07694890350103378,0.026281854137778282,-0.06190693750977516,-0.008154356852173805,0.019485995173454285,-0.0017059857491403818,0.0025418561417609453,0.021836429834365845,0.04414106160402298,-0.05797962471842766,-0.0030452939681708813,-0.07163736969232559,-0.08074764907360077,-0.021543029695749283,0.05593189224600792,-0.019772561267018318,0.07415837794542313,0.07954907417297363,-0.0026139020919799805,0.013816955499351025,-0.03995957225561142,0.015644429251551628,0.08339378982782364,0.00844938587397337,-0.03994077071547508,0.017991339787840843,0.008198431693017483,0.06952111423015594,0.025391491129994392,0.04362195357680321,-0.0421205572783947,0.07100995630025864,0.041656460613012314,-0.036935798823833466,0.0062909661792218685,0.05973352491855621,-0.025491904467344284,-0.07807622104883194,-0.019497781991958618,0.04908018186688423,0.006666779983788729,0.008277813903987408,0.07156296819448471,-0.07001571357250214,0.01354170497506857,0.005421729758381844,-0.041329026222229004,-0.014588494785130024,-0.01788131333887577,-0.03862099349498749,-0.06493417173624039,0.019646117463707924,0.03485076129436493,-0.05793989449739456,-0.05881989374756813,0.013277576304972172,-0.0017617230769246817,-0.0010334555990993977,-0.0317600816488266,0.0596698559820652,0.010641454719007015,0.071950264275074,-0.06575769931077957,0.011355188675224781,0.05354798957705498,-0.021145431324839592,0.06687659025192261,-0.009748972952365875,-0.04592784866690636,-0.014405169524252415,-0.04627906531095505,-0.0013348354259505868,-0.00037444173358380795,0.0087108314037323,0.07518214732408524,0.053263917565345764,0.0732654333114624,-0.06376491487026215,-0.04350518807768822,-0.02035544626414776,-0.04824874922633171,0.08236879110336304,-0.0003353948995936662,0.04383397102355957,-0.014962108805775642,-0.042091093957424164,0.03848262131214142,-0.0349523089826107,0.06253820657730103,-0.05103706568479538,0.0427960567176342,-0.03512905538082123,-0.028030086308717728,-0.0025109602138400078,-0.009456587955355644,0.014623324386775494,0.04281119257211685,-0.0579930916428566,0.08246440440416336,0.02411826141178608,-0.033690668642520905,-0.0002471651532687247,-0.05298665538430214,-0.047673001885414124,-0.03352143615484238,-0.07075384259223938,-0.006468387320637703,-0.029739946126937866,-0.06367041915655136,-0.026799190789461136,-0.026907704770565033,0.04502742737531662,0.013502582907676697,-0.03555632382631302,0.05314042791724205,0.06406159698963165,-0.05768987908959389,0.019543912261724472,0.02590508572757244,0.03174106404185295,-0.017211873084306717,-0.060115739703178406,0.04254481568932533,0.05545734241604805,-0.06785908341407776,0.08429919183254242,0.08687223494052887,-0.07046563178300858,0.06398992240428925,-0.00816515926271677,0.039992574602365494,-0.06208132579922676,0.020962920039892197,-0.005487479735165834,0.010952244512736797,-0.06815743446350098,0.00629060436040163,0.05276865139603615,0.03512049466371536,-0.07323326170444489,0.009823893196880817,-0.006212749518454075,-0.023488502949476242,0.00841244962066412,-0.03909223899245262,0.037778157740831375,-0.009918675757944584,0.048760153353214264,-0.048981089144945145,-0.06632275134325027,0.00725578935816884,0.06777462363243103,0.010712262243032455,-0.010433047078549862,-0.012720558792352676,0.02909242734313011,0.06520427018404007,-0.04657529667019844,0.06628184765577316,0.05524485558271408,0.009588837623596191,-0.016202062368392944,-0.020385704934597015,0.005857905372977257,-0.06758344173431396,-0.024233318865299225,0.009441215544939041,-0.052443571388721466,-0.06897963583469391,-0.016813308000564575,0.04280395805835724,-0.04814014583826065,-0.05991189554333687,0.015147171914577484,0.06144000217318535,-0.01591532491147518,0.0625724345445633,-0.05407920107245445,0.0746062621474266,-0.022648964077234268,-0.005252256989479065,0.06631024181842804,-0.04893023148179054,-0.015948805958032608,-0.054527752101421356,0.023518403992056847,0.07383222132921219,0.002745820675045252,-0.0734499990940094,-0.06355179846286774,-0.011614031158387661,0.015325277112424374]},{"id":"unsolicited","vector":[0.031528640538454056,-0.06798520684242249,-0.03185652941465378,0.012357546016573906,0.01838117465376854,0.0000028124261461925926,-0.01778350956737995,-0.05441892892122269,0.04622242972254753,0.03490257263183594,0.03381673991680145,0.013328528963029385,-0.029972665011882782,-0.018625374883413315,-0.06288546323776245,-0.03070240095257759,-0.03406321629881859,-0.05822353810071945,-0.017145508900284767,0.06036338582634926,0.033367644995450974,-0.003649843391031027,0.01102238055318594,-0.04125276580452919,0.02036118134856224,0.0054272618144750595,-0.018790384754538536,-0.007053410168737173,-0.04526596888899803,-0.06114283949136734,0.05653803050518036,-0.03731408715248108,-0.016464700922369957,0.00041273728129453957,0.04968090355396271,0.01815108396112919,-0.05638397857546806,0.025572853162884712,0.06844750791788101,-0.07806148380041122,-0.02523219771683216,-0.005962805822491646,0.040403835475444794,-0.021577147766947746,-0.02734992653131485,0.005596517585217953,-0.049452200531959534,0.009317507036030293,-0.01131505612283945,0.060536716133356094,0.059599753469228745,-0.05229878053069115,-0.03913429379463196,-0.03972676768898964,0.008208692073822021,-0.050129007548093796,0.028989547863602638,0.0637752115726471,0.03676469624042511,-0.06850696355104446,-0.049533944576978683,0.017110496759414673,-0.03330809250473976,0.01993437670171261,-0.04790305718779564,0.012768907472491264,0.06781502068042755,0.03288475051522255,0.0931454449892044,-0.03562166541814804,-0.024579396471381187,-0.010872111655771732,0.005744690075516701,0.02263076975941658,-0.06229405477643013,-0.051532357931137085,0.027876194566488266,0.06905149668455124,-0.030162205919623375,0.07069345563650131,0.0303525198251009,0.030145104974508286,0.01017804630100727,0.005598649848252535,-0.004660473205149174,0.06410156190395355,0.021732287481427193,0.08139718323945999,-0.07376622408628464,0.05274839326739311,-0.02383251115679741,0.013412155210971832,-0.07280279695987701,0.023440038785338402,-0.020477423444390297,0.03500048816204071,-0.0816478282213211,-0.025217706337571144,-0.05040651559829712,-0.04813216254115105,-0.08344783633947372,0.03689466044306755,0.004289360251277685,0.021396933123469353,-0.029697854071855545,0.02829066291451454,-0.05037670582532883,0.06469709426164627,0.02497483603656292,0.051632992923259735,-0.02803715504705906,-0.06809127330780029,0.0033702112268656492,-0.06736543029546738,-0.06111897900700569,0.02213173359632492,0.025874121114611626,0.031112072989344597,-0.05635899677872658,0.056321386247873306,0.0021796037908643484,-0.0720248743891716,0.03164633363485336,-0.08780189603567123,-0.05291102081537247,0.007985111325979233,-0.05113973468542099,0.050609029829502106,0.04248468950390816,-0.07156521081924438,-0.05678413808345795,-0.060541000217199326,-0.02611885964870453,-0.009872612543404102,-0.04027094691991806,-0.07525156438350677,-0.050644271075725555,-0.05140112340450287,-0.056575704365968704,0.056681714951992035,0.001690382487140596,-0.0656227096915245,0.07883885502815247,0.0502077154815197,-0.028179705142974854,0.0330282524228096,0.051977988332509995,0.01780485175549984,0.035619188100099564,0.07035727053880692,-0.001342546078376472,0.011585869826376438,-0.061814937740564346,-0.027898117899894714,-0.01945188082754612,-0.021975185722112656,0.03119523823261261,-0.026278672739863396,0.03601178526878357,-0.06189864128828049,-0.027178501710295677,-0.01973235234618187,0.04615618661046028,0.007881897501647472,0.04354621469974518,0.021736113354563713,0.001386158517561853,-0.060172077268362045,0.034132879227399826,0.054255157709121704,-0.053966961801052094,-0.011340811848640442,-0.0053551578894257545,0.020216859877109528,-0.023516401648521423,0.014641187153756618,-0.07025489956140518,0.06486543267965317,0.06496025621891022,0.060991302132606506,-0.043666474521160126,0.08715929090976715,0.015685688704252243,0.014627264812588692,0.05440589040517807,0.06886021792888641,0.027899494394659996,0.05471092462539673,0.06453844904899597,-0.04171587526798248,-0.02497933804988861,-0.023833367973566055,-0.040825340896844864,0.0017676502466201782,0.0884578675031662,-0.06917087733745575,-0.0522230789065361,0.02378775365650654,0.012543252669274807,0.09239254891872406,0.007688451558351517,0.03537818044424057,0.017925212159752846,0.033438149839639664,-0.050467003136873245,-0.02276737615466118,0.01216065976768732,-0.0012202014913782477,0.03178258240222931,0.08009614795446396,-0.008465132676064968,-0.04816757142543793,0.07973289489746094,-0.000006703076905978378,0.07337003946304321,-0.0005551697686314583,-0.013596867211163044,0.012076838873326778,0.06655681878328323,-0.03136591240763664,0.005455071106553078,-0.019676819443702698,-0.0011461526155471802,-0.04108646139502525,0.05104146897792816,-0.03131018579006195,0.010467544198036194,0.01583232171833515,0.012961233966052532,0.009965573437511921,-0.002797869499772787,0.0247996523976326,0.0285370834171772,0.01686444692313671,0.031773291528224945,0.07599661499261856,0.03013778105378151,0.0634273961186409,0.016385305672883987,0.09361416846513748,-0.06395619362592697,0.009878513403236866,-0.01992594078183174,-0.004169562831521034,0.04140903800725937,0.0017454434419050813,0.007804381661117077,0.03364806994795799,0.04005810618400574,-0.0445723682641983,0.04210535064339638,-0.050760041922330856,0.02510223165154457,-0.0675625205039978,-0.021860746666789055,-0.0406324602663517,-0.05248603969812393,-0.04623214900493622,-0.0308969859033823,0.0805351510643959,-0.013532404787838459,-0.03640389442443848,-0.006836580578237772,-0.034672439098358154,0.0028597768396139145,-0.011703007854521275,0.03965785354375839,0.013580000028014183,-0.03986649587750435,-0.04433952271938324,0.0619516596198082,-0.067588672041893,0.04138985648751259,0.01406106911599636,-0.006189846433699131,0.05113691836595535,-0.024124810472130775,0.0453813411295414,0.007836391218006611,0.016586918383836746,0.07566366344690323,0.06903047859668732,0.020585501566529274,0.027265731245279312,-0.004599395673722029,-0.055283073335886,-0.08960552513599396,0.04748418554663658,-0.01104237511754036,-0.04091573506593704,-0.01425930019468069,-0.052481118589639664,0.06931794434785843,0.026878586038947105,0.01257404126226902,-0.05232016369700432,0.05641157925128937,0.012729876674711704,0.06041286885738373,0.03226707875728607,0.008752900175750256,0.050849586725234985,-0.0032567025627940893,0.02669847011566162,0.027833960950374603,0.03279820457100868,0.004142637364566326,0.004669393878430128,-0.023294460028409958,-0.08857261389493942,-0.017773453146219254,0.019815176725387573,0.0408518984913826,0.07889901101589203,-0.07150424271821976,-0.042029909789562225,0.046389807015657425,-0.024306612089276314,-0.029220283031463623,-0.040359675884246826,-0.08139412850141525,0.06094494089484215,-0.04512204974889755,-0.03744380548596382,0.03809316083788872,-0.02247452922165394,-0.016218947246670723,0.001349966274574399,0.05021090433001518,-0.05755070224404335,-0.038060251623392105,-0.02480202727019787,-0.07951704412698746,-0.0333469957113266,0.050697240978479385,-0.013459417968988419,0.0878385454416275,0.0873221829533577,0.019083935767412186,0.04701331630349159,-0.01414197962731123,-0.012891334481537342,0.08240130543708801,0.0044104717671871185,0.03274422511458397,0.05465264618396759,-0.016649089753627777,0.055383872240781784,0.01990332640707493,0.048133525997400284,-0.08475860208272934,0.0651838555932045,0.01950709894299507,0.03734603896737099,0.02596951089799404,0.04587357118725777,-0.037958405911922455,-0.0666273683309555,-0.006573394872248173,0.024761954322457314,0.047566160559654236,0.03432071581482887,0.04333149641752243,-0.021270591765642166,0.007674580905586481,0.00002279367981827818,-0.03705974295735359,-0.03602122515439987,-0.059406980872154236,0.029851781204342842,-0.05073592811822891,0.033174581825733185,0.023685233667492867,-0.06900875270366669,-0.07773326337337494,-0.0486847460269928,0.027738694101572037,0.010188307613134384,0.02664809301495552,0.02715994231402874,-0.009060610085725784,0.021103955805301666,-0.043667517602443695,0.07245349138975143,0.016727084293961525,0.021992847323417664,0.07479901611804962,-0.07269056886434555,-0.026995094493031502,-0.02136366255581379,-0.0619526207447052,-0.015593308955430984,-0.010313212871551514,-0.0009177238680422306,0.0722665935754776,0.03827190026640892,0.05005152150988579,-0.055594850331544876,-0.04405444115400314,-0.07420602440834045,-0.022933803498744965,0.05437551811337471,0.006759138312190771,0.06609516590833664,-0.022947238758206367,-0.014100822620093822,0.04539518430829048,-0.07832425832748413,0.07131829857826233,-0.05723293125629425,0.0832124650478363,-0.018641605973243713,0.020306814461946487,-0.011098300106823444,0.008941564708948135,-0.037633661180734634,0.036480993032455444,-0.045130979269742966,0.06754154711961746,0.050642166286706924,-0.026682831346988678,0.04041034355759621,0.007214877288788557,-0.0522005632519722,-0.06697990000247955,-0.03871430084109306,-0.029348909854888916,-0.05817022547125816,-0.001198207843117416,0.05327526107430458,-0.06254739314317703,0.07277102023363113,-0.04324556887149811,-0.06044749170541763,0.026370536535978317,0.0611700639128685,-0.06797153502702713,-0.011760624125599861,-0.059373196214437485,0.013840698637068272,-0.055080510675907135,-0.030104195699095726,0.06786628812551498,0.04164498671889305,-0.03527992591261864,0.05077975615859032,0.08265814185142517,-0.08129603415727615,0.07232849299907684,0.02298125810921192,0.040339395403862,-0.056411292403936386,0.014710983261466026,0.002270086668431759,0.013778948225080967,-0.0699014961719513,-0.02058335393667221,0.018301216885447502,0.06555959582328796,-0.06292479485273361,0.045635346323251724,-0.048245519399642944,0.008999633602797985,0.016083477064967155,0.0023206130135804415,0.04455553740262985,-0.04374594986438751,0.037603117525577545,-0.0636020228266716,-0.04862669110298157,0.0028168910648673773,0.0742967501282692,-0.019082285463809967,0.00447439681738615,0.026822373270988464,0.010263410396873951,0.05334058403968811,0.03433768451213837,0.020451605319976807,0.03249228745698929,-0.019382765516638756,0.004094965290278196,-0.06283830851316452,0.01787627674639225,-0.0321735143661499,0.030280843377113342,0.011107542552053928,-0.042224932461977005,-0.06815523654222488,0.010849693790078163,0.03002041019499302,-0.02004661038517952,-0.05102105438709259,-0.025838391855359077,0.07014565914869308,-0.007125281263142824,0.030213920399546623,-0.06260726600885391,0.07255135476589203,-0.020159509032964706,0.004443281330168247,0.05710405483841896,0.009234690107405186,-0.013863041996955872,-0.0492388941347599,-0.026330314576625824,-0.0008303388603962958,0.025683606043457985,-0.07983264327049255,-0.08455194532871246,-0.006929463241249323,0.03126692399382591]},{"id":"verbal-blunder","vector":[0.04821367934346199,-0.012683883309364319,-0.016019631177186966,-0.015519744716584682,-0.02603459544479847,-0.004103795625269413,0.021740956231951714,-0.057371243834495544,0.03765299916267395,0.013830498792231083,0.011628343723714352,0.0020380173809826374,-0.0028675892390310764,0.0267046932131052,-0.07195853441953659,-0.00921135675162077,-0.06815898418426514,-0.0731312483549118,-0.03534487634897232,0.04600030183792114,0.010834312997758389,-0.007287961430847645,0.03644450008869171,-0.04428769275546074,0.035350266844034195,-0.052829109132289886,-0.03750873729586601,-0.036869294941425323,-0.026497188955545425,-0.04587434604763985,0.04979056864976883,-0.05184696242213249,-0.031003408133983612,-0.018912313506007195,0.03533904254436493,-0.006816634442657232,-0.058962538838386536,0.03675750643014908,0.07418285310268402,-0.04539800435304642,-0.02814372256398201,-0.0006161380442790687,0.06022477149963379,-0.0258764810860157,-0.03579670935869217,0.02088489942252636,-0.05586488917469978,-0.0159160029143095,0.03778444603085518,0.0646173357963562,0.013417971320450306,-0.03305679187178612,0.04833749681711197,-0.058093804866075516,-0.02538153901696205,-0.013025876134634018,0.04725257679820061,0.03253931179642677,0.04827817156910896,-0.05601219832897186,-0.06564833968877792,0.009169661439955235,-0.04931093379855156,0.029702333733439445,-0.017668889835476875,-0.035410694777965546,0.08503040671348572,-0.008487757295370102,0.07919272035360336,-0.06416366994380951,-0.01058606430888176,-0.033824000507593155,0.0011138684349134564,-0.029320448637008667,-0.04952303320169449,-0.05634496733546257,0.048466917127370834,-0.05758228152990341,-0.03995176777243614,0.06671423465013504,0.0015018971171230078,0.06446933001279831,0.0418877974152565,-0.0027787371072918177,-0.0364045724272728,0.04375343769788742,-0.0003800950071308762,0.055107999593019485,-0.07701709866523743,0.06725852936506271,-0.03954446315765381,-0.026527050882577896,-0.03837093710899353,0.045041415840387344,-0.04275348410010338,0.027187561616301537,-0.0702952891588211,-0.037396449595689774,-0.028698282316327095,-0.07295707613229752,-0.07385435700416565,0.00688733858987689,-0.04225081205368042,0.00033691205317154527,-0.014588207937777042,0.04837949946522713,-0.06203601136803627,0.05102511867880821,0.05734873190522194,0.06490442901849747,-0.003981396090239286,-0.05485997349023819,0.05005955323576927,-0.0668417438864708,-0.05071069300174713,0.03399262949824333,0.01947501115500927,0.037936363369226456,-0.07024874538183212,0.03200448304414749,-0.033866796642541885,-0.08252743631601334,0.00566381961107254,-0.032560404390096664,-0.035452842712402344,0.0014105510199442506,-0.03757723048329353,0.046945538371801376,0.019914697855710983,-0.050128478556871414,-0.07174844294786453,-0.03900656849145889,0.004682188853621483,0.04023566097021103,-0.03699836507439613,-0.06675049662590027,0.030422871932387352,-0.07102282345294952,-0.050268739461898804,0.03141980245709419,0.03254086896777153,-0.07127587497234344,0.05116157978773117,0.04492463171482086,-0.0001635002117836848,0.003837197320535779,0.0704352855682373,0.031712744385004044,0.026804668828845024,0.054918210953474045,-0.026534268632531166,0.016921430826187134,-0.06706806272268295,-0.02197677455842495,-0.04496411979198456,0.01677273027598858,0.06743256002664566,-0.01970539428293705,0.034144069999456406,-0.062354110181331635,-0.007868826389312744,-0.028056666254997253,0.051130492240190506,-0.006040381733328104,-0.001015302143059671,0.046366460621356964,-0.010682245716452599,-0.0472867488861084,-0.008955802768468857,0.06641347706317902,-0.043904080986976624,-0.0004946728004142642,-0.007112462073564529,0.06703142076730728,-0.008586273528635502,0.003096755826845765,-0.05307861790060997,0.07407128810882568,0.0717763900756836,0.06880775094032288,-0.051875922828912735,0.0877833142876625,0.004264927003532648,-0.006310596596449614,0.016403278335928917,0.03697923570871353,0.044294167309999466,0.05589887872338295,0.05200866237282753,-0.05163087695837021,-0.0260570477694273,0.029087495058774948,-0.05908988043665886,0.039620205760002136,0.08302885293960571,-0.053661882877349854,-0.04057476669549942,0.011240873485803604,0.0018691773293539882,0.07663040608167648,-0.03906926512718201,0.04080568999052048,0.05889161303639412,0.0306480061262846,-0.055580902844667435,-0.04154721274971962,0.025383619591593742,0.007099675014615059,0.05162212252616882,0.06892232596874237,0.008295130915939808,-0.009297126904129982,0.0647173821926117,0.0064281984232366085,0.07663732767105103,-0.008426489308476448,-0.013556942343711853,0.025453682988882065,0.0730782002210617,-0.023388175293803215,0.032146889716386795,0.003743418725207448,-0.01014502439647913,-0.06008118763566017,0.06540767848491669,-0.05093970522284508,0.01365623064339161,0.008496064692735672,0.002488220576196909,0.0256685558706522,-0.024747511371970177,0.044216569513082504,0.07018440961837769,0.005398923996835947,0.012182379141449928,0.06331918388605118,0.027711056172847748,0.07543857395648956,-0.013958589173853397,-0.050325777381658554,-0.05168915539979935,-0.014804012142121792,0.007896394468843937,-0.021984443068504333,-0.01804051175713539,-0.05917463079094887,0.035467036068439484,0.029592037200927734,0.008672630414366722,0.010600029490888119,0.032099369913339615,-0.05924810841679573,0.0340503454208374,-0.07114290446043015,0.01727532409131527,-0.0334310308098793,0.028969962149858475,-0.07501178979873657,-0.023472871631383896,0.08178748935461044,-0.033079132437705994,-0.009237176738679409,-0.0210392028093338,-0.044899169355630875,-0.009372933767735958,0.01175280287861824,0.025531884282827377,-0.03816730156540871,-0.03371189907193184,-0.047984980046749115,0.05921004340052605,-0.0663730725646019,-0.006420765072107315,-0.037377338856458664,-0.030957166105508804,0.07729475945234299,-0.03567757457494736,0.028550921007990837,-0.06328119337558746,0.009344583377242088,0.061855919659137726,0.07699055224657059,0.018346626311540604,0.007336800917983055,-0.05783696845173836,-0.07154692709445953,-0.08022286742925644,0.030499108135700226,-0.03439144417643547,-0.053900301456451416,-0.023645663633942604,0.005217488389462233,0.0608789436519146,-0.03565262258052826,-0.0043240925297141075,-0.04249800369143486,0.04292232170701027,0.037693578749895096,-0.00859817024320364,0.050796251744031906,-0.0372060127556324,0.04566618800163269,0.011394308879971504,0.013997700996696949,-0.023995215073227882,0.009155328385531902,0.04306050390005112,0.0034629383590072393,-0.011636432260274887,-0.08698137104511261,-0.003042987547814846,0.03453728184103966,-0.010118306614458561,0.06365669518709183,-0.0741814598441124,-0.05686080455780029,0.052647560834884644,-0.01693250611424446,-0.04014837369322777,-0.07735533267259598,-0.08117121458053589,0.0462307408452034,-0.04143630340695381,-0.0015475333202630281,0.057276319712400436,0.006033363752067089,-0.020995665341615677,-0.0026427865959703922,0.012040434405207634,-0.04065345227718353,0.008349820971488953,-0.04224282503128052,-0.05060393735766411,-0.02149195224046707,0.04871029034256935,-0.017944443970918655,0.07513051480054855,0.08591924607753754,0.03294878080487251,0.00407284265384078,-0.018756480887532234,0.028853347525000572,0.05380823090672493,0.006285614334046841,0.03421468287706375,0.0396609865128994,-0.059972815215587616,0.04718498885631561,-0.027130579575896263,0.03419683128595352,-0.08120351284742355,0.05795060098171234,-0.011598224751651287,-0.000227250624448061,-0.007990887388586998,0.042713407427072525,-0.040709394961595535,-0.06708269566297531,0.03318282961845398,0.021029379218816757,0.04253489151597023,0.024338124319911003,0.04595900699496269,-0.005043437238782644,0.039497874677181244,0.02122730202972889,-0.04053564369678497,-0.06281377375125885,-0.0029306113719940186,-0.022205496206879616,-0.061191048473119736,0.011108670383691788,0.047889627516269684,-0.06638432294130325,-0.07942447811365128,0.0012802992714568973,-0.001708944677375257,0.002741847187280655,-0.0029291983228176832,0.029292482882738113,-0.009822615422308445,0.030626293271780014,-0.03252970054745674,0.022781502455472946,0.07686720043420792,0.006959055550396442,0.055945996195077896,-0.06371339410543442,-0.02197478897869587,-0.06121112033724785,-0.05901864171028137,-0.04822801053524017,-0.042814694344997406,-0.0009481825400143862,0.085691899061203,0.03741346299648285,0.040880028158426285,-0.0829804390668869,-0.05510767176747322,-0.06232099235057831,-0.034374773502349854,0.05837476998567581,-0.0007743090391159058,0.05591743811964989,-0.021754665300250053,-0.03244103491306305,0.06153888255357742,-0.08416101336479187,0.07483746856451035,-0.005789597984403372,0.07349593937397003,0.051950979977846146,0.007862101309001446,0.011641734279692173,-0.006816220935434103,0.05390215292572975,0.027785995975136757,0.014221958816051483,0.08635105192661285,0.05691837519407272,-0.04030008241534233,0.03365333750844002,0.05009440332651138,-0.06511727720499039,-0.0548379011452198,-0.00793096236884594,-0.056349512189626694,-0.06827186048030853,-0.06444194167852402,0.06787849217653275,-0.04695504903793335,0.02703069895505905,-0.002002726774662733,-0.05601612105965614,0.02480463869869709,0.07735588401556015,-0.06092482805252075,0.03185029327869415,-0.046639662235975266,0.025695212185382843,-0.045179665088653564,-0.06313570588827133,0.04831264540553093,0.04362429305911064,-0.08618247509002686,-0.0005017557414248586,0.08229994773864746,-0.07138944417238235,0.06109948456287384,-0.022788042202591896,0.009185549803078175,-0.033809956163167953,0.014516189694404602,0.00710833678022027,0.00023925893765408546,-0.07411961257457733,-0.023851437494158745,0.010974780656397343,0.06431762129068375,-0.05424991995096207,0.009344294667243958,-0.00904262438416481,-0.018379559740424156,-0.014209876768290997,-0.027277160435914993,0.0276471059769392,-0.017930468544363976,0.031356826424598694,-0.03750661015510559,-0.05036354809999466,0.01618579402565956,0.05237961560487747,-0.027755554765462875,0.002852347446605563,0.025488683953881264,0.05770634487271309,0.018024267628788948,0.014474540017545223,0.029351918026804924,0.06249631941318512,-0.06279786676168442,-0.01256316527724266,-0.0521850623190403,0.017719322815537453,-0.015853384509682655,0.0076321703381836414,0.03983425348997116,-0.05584756284952164,-0.05679510161280632,-0.01571977324783802,0.0245177261531353,-0.04593387246131897,-0.05259794369339943,-0.008532064966857433,0.07654642313718796,-0.019252264872193336,0.03727945312857628,-0.05556238815188408,0.07597850263118744,-0.04640854522585869,0.012976148165762424,0.03324063867330551,-0.04711957648396492,0.03825642541050911,-0.015280698426067829,0.013070302084088326,0.058209359645843506,0.045888613909482956,-0.07989910244941711,-0.06508215516805649,0.057558633387088776,0.03480464592576027]},{"id":"wanderlust","vector":[-0.003291469067335129,-0.027206867933273315,-0.0038187408354133368,0.0015907366760075092,-0.031343113631010056,0.03468181937932968,0.03877982497215271,-0.062282782047986984,0.03657107055187225,0.0041639721021056175,0.03615785762667656,-0.049861714243888855,-0.004586047027260065,0.06701859086751938,-0.05938708409667015,-0.05697773024439812,-0.047474540770053864,-0.06452461332082748,-0.033656828105449677,0.0582222118973732,0.015760567039251328,-0.012192204594612122,-0.01931682787835598,-0.031020862981677055,0.00813810434192419,-0.018039297312498093,-0.029562339186668396,0.01044175960123539,-0.07248140126466751,-0.0435338094830513,0.020486479625105858,-0.04235638305544853,-0.07609831541776657,-0.012974187731742859,0.043373554944992065,0.025251230224967003,-0.06147792190313339,0.02336711250245571,0.06771521270275116,-0.05075560882687569,-0.0058646551333367825,0.009059607051312923,0.05537685751914978,-0.028491299599409103,-0.03931348770856857,0.007241301704198122,-0.07700417190790176,-0.01496958639472723,0.017988216131925583,0.050518859177827835,-0.011558575555682182,-0.08248650282621384,0.026985669508576393,-0.03215288743376732,-0.009723219089210033,0.012541534379124641,0.07331641018390656,0.05261607468128204,0.05367729067802429,-0.07736995071172714,-0.06867804378271103,-0.005804295651614666,-0.058717597275972366,0.03512535244226456,-0.01757446862757206,0.003030757186934352,0.08852989971637726,-0.004072665702551603,0.09559705853462219,-0.04483254998922348,-0.0021883202716708183,-0.04798100143671036,0.0023602459114044905,0.015432632528245449,-0.04620305448770523,-0.05855463072657585,0.02900507114827633,-0.04018625244498253,-0.005381380673497915,0.059848956763744354,0.03773178532719612,0.04265817999839783,0.010972118005156517,-0.062291763722896576,-0.04260559380054474,0.05247393995523453,-0.013584991917014122,0.04662298038601875,-0.06381243467330933,0.04877851903438568,-0.03338641673326492,-0.03507029637694359,-0.074298195540905,0.04283643513917923,-0.026485798880457878,0.04150332137942314,-0.06138284131884575,-0.004312869161367416,-0.04046017304062843,-0.04697664454579353,-0.08099332451820374,0.005197842605412006,-0.004921942017972469,0.03803498297929764,-0.05005909502506256,0.02922070026397705,-0.07028737664222717,0.061474669724702835,0.08674714714288712,0.01710604690015316,-0.02183905988931656,-0.06290622800588608,0.033275023102760315,-0.07118444889783859,-0.05479392409324646,-0.0028688088059425354,-0.01893628016114235,0.04603183642029762,-0.0518084280192852,0.052674997597932816,-0.03205110877752304,-0.0892956405878067,0.02216009609401226,-0.061377108097076416,-0.03334614634513855,-0.0018192529678344727,-0.051898419857025146,0.06262421607971191,0.013744933530688286,-0.05832792446017265,-0.07815155386924744,-0.03506223484873772,-0.02849920652806759,0.013815690763294697,-0.030187293887138367,-0.06064026802778244,0.01927541010081768,-0.06329607963562012,0.004785752389580011,-0.0037731551565229893,0.0035254305694252253,-0.07347691804170609,0.03585965931415558,0.06466863304376602,0.01985025219619274,0.00929155945777893,0.022036243230104446,-0.009534242562949657,0.034931231290102005,0.05783039331436157,-0.03457570821046829,0.01008063554763794,-0.06977147608995438,0.011958763934671879,-0.02810976654291153,-0.00870679970830679,0.05058397352695465,-0.0837743952870369,-0.012577331624925137,-0.06293375790119171,-0.008460006676614285,0.05868646129965782,0.029490794986486435,0.019292952492833138,0.0008714722935110331,0.03941221535205841,-0.027353988960385323,-0.058586567640304565,0.00451241247355938,0.05741159990429878,-0.05196388438344002,-0.03952673077583313,0.008901361376047134,0.04102778807282448,-0.028028059750795364,0.04607289656996727,-0.05596812441945076,0.0676027163863182,0.08423871546983719,0.07402073591947556,0.0015687634004279971,0.07740188390016556,0.059318192303180695,-0.013065163046121597,0.052406251430511475,0.04614851623773575,0.021753694862127304,0.045809805393218994,0.07767124474048615,-0.055244605988264084,-0.03256884589791298,-0.01561577245593071,-0.05422738939523697,0.0145022664219141,0.07281524688005447,-0.060122307389974594,-0.04437214508652687,0.010774432681500912,-0.024251768365502357,0.08843591064214706,-0.034005846828222275,0.027041515335440636,0.04262096807360649,0.010765370912849903,-0.009447378106415272,-0.034948162734508514,-0.016463540494441986,-0.04694795235991478,0.033330004662275314,0.07206209748983383,0.01936785690486431,-0.03585623949766159,0.058048173785209656,0.02260039560496807,0.059528008103370667,-0.01091795600950718,-0.03434569016098976,0.03155849874019623,0.0724487230181694,-0.007123817689716816,0.01535292249172926,-0.03329392895102501,0.025035414844751358,-0.06688949465751648,0.02813865803182125,-0.047618892043828964,-0.03444649279117584,0.03322325274348259,0.013198772445321083,0.040206748992204666,-0.056598834693431854,0.009244177490472794,0.04765551909804344,0.016578994691371918,-0.016667520627379417,0.04876435175538063,0.037821218371391296,0.06511073559522629,0.04745741933584213,-0.0048904819414019585,-0.05924157798290253,-0.030270559713244438,0.02413020469248295,-0.010747668333351612,0.007382736541330814,-0.04969947785139084,-0.0018317666836082935,-0.0013506097020581365,0.011245660483837128,-0.05648275092244148,0.06801503896713257,-0.07352137565612793,0.04679328203201294,-0.0712677463889122,-0.03608650341629982,0.020291481167078018,-0.03656173124909401,-0.034851014614105225,-0.01836075261235237,0.05689918249845505,-0.009780650958418846,-0.02374161407351494,0.0006534761632792652,0.01248809602111578,-0.000949435809161514,0.0224990826100111,0.002810925245285034,0.022028658539056778,-0.02428380213677883,-0.04099166765809059,0.06752662360668182,-0.05555003508925438,-0.002916008001193404,-0.026308873668313026,0.012345908209681511,0.07698909193277359,-0.029373236000537872,0.03068283386528492,-0.0387084074318409,-0.0022223982959985733,0.06317686289548874,0.08255816251039505,0.019950438290834427,-0.0010567670688033104,-0.022029230371117592,-0.05576005578041077,-0.08602716773748398,0.014362483285367489,-0.031003186479210854,-0.018598051741719246,-0.023351900279521942,0.0019436085131019354,0.0679270401597023,0.004711884539574385,-0.02899855002760887,-0.05820823460817337,0.0659688264131546,0.024663645774126053,0.026040595024824142,0.049802083522081375,-0.0010831303661689162,0.0717269629240036,-0.010302023962140083,0.055575400590896606,0.015220594592392445,0.01926310919225216,0.015653042122721672,0.01863672398030758,0.007607684005051851,-0.07788502424955368,-0.033368732780218124,0.03918163850903511,0.0169491209089756,0.06911734491586685,-0.08672983199357986,-0.04094269871711731,0.04758366569876671,-0.03139801695942879,-0.02500416897237301,-0.0612129382789135,-0.08259640634059906,0.041767191141843796,-0.04292513057589531,-0.01442790124565363,0.0011915857903659344,0.028818827122449875,-0.008443587459623814,-0.021940696984529495,0.06485523283481598,-0.051953110843896866,-0.021642785519361496,-0.04959975183010101,-0.08159765601158142,-0.031895656138658524,0.0385274738073349,-0.027704035863280296,0.08137816935777664,0.09012944251298904,0.029022788628935814,0.029787736013531685,-0.03542923182249069,0.012448965571820736,0.08751247078180313,-0.0018260671058669686,0.008153868839144707,0.02722073905169964,-0.003172248136252165,0.0708482563495636,-0.014444666914641857,0.052432313561439514,-0.07716038078069687,0.051455482840538025,0.02910858951508999,0.021432027220726013,-0.001077842665836215,0.06688626110553741,-0.02692556567490101,-0.07730245590209961,-0.006509263999760151,0.04058061167597771,0.03863675147294998,0.01510257925838232,0.05767916515469551,-0.03999043628573418,-0.01690317876636982,0.02628171630203724,-0.05401885136961937,0.011932809837162495,-0.01799536496400833,-0.026247965171933174,-0.0655587688088417,-0.0041999476961791515,0.05215056240558624,-0.04807809367775917,-0.06632096320390701,0.009886068291962147,0.006556471344083548,0.008084394969046116,-0.022619692608714104,0.06063978746533394,0.07043865323066711,0.040665023028850555,-0.04858548566699028,0.03916573151946068,0.061826881021261215,-0.016234714537858963,0.08110261708498001,-0.05467917397618294,-0.042155422270298004,0.012779178097844124,-0.02553720772266388,-0.005642887204885483,-0.004474752116948366,-0.0008858801447786391,0.06900114566087723,0.035424839705228806,0.04328135401010513,-0.0532330647110939,-0.017075031995773315,-0.06370335817337036,-0.04504216089844704,0.06930306553840637,-0.01222560741007328,0.069891557097435,-0.011679599061608315,-0.05518138408660889,0.0473540835082531,-0.049848444759845734,0.0489698201417923,-0.0602688230574131,0.06311337649822235,-0.038488760590553284,-0.0034400278236716986,0.02039623260498047,-0.011738108471035957,0.03245057538151741,0.01910083368420601,-0.006187085993587971,0.0718524158000946,0.05377977713942528,-0.06024772673845291,0.01088764239102602,-0.05029560998082161,-0.04797755554318428,-0.04601960629224777,-0.07393437623977661,-0.06371474266052246,-0.05750380456447601,-0.042281121015548706,-0.025037946179509163,-0.035499315708875656,0.04602773115038872,0.024073978886008263,-0.04255816712975502,0.049370065331459045,0.0733516663312912,-0.06090463697910309,-0.006086425855755806,0.04327439144253731,-0.0056875962764024734,-0.01605970971286297,-0.05713652819395065,0.027689751237630844,0.058370307087898254,-0.07765356451272964,0.06639067083597183,0.07281407713890076,-0.07778485864400864,0.06536652892827988,-0.042194914072752,0.056381549686193466,-0.040457941591739655,-0.0030236917082220316,-0.03403618186712265,0.03706514462828636,-0.07546461373567581,-0.03570898249745369,0.004063183441758156,0.0432397797703743,-0.05938129872083664,-0.004097317811101675,-0.002032032236456871,-0.04941884055733681,0.005605511832982302,0.0023350007832050323,0.016785070300102234,-0.029667263850569725,0.03300780430436134,-0.05558934062719345,-0.05498091131448746,0.0006914368132129312,0.0630279928445816,-0.004699244629591703,0.007451659068465233,0.028384994715452194,0.004224578384310007,0.04712669923901558,-0.031913287937641144,0.02632816694676876,0.054435890167951584,-0.04287204518914223,0.005656376481056213,-0.05038946866989136,0.008523762226104736,-0.02499094419181347,-0.009975827299058437,0.041989948600530624,-0.03205142915248871,-0.07139526307582855,0.004596104845404625,0.04451191797852516,-0.039174992591142654,-0.062411319464445114,0.013824926689267159,0.06051607057452202,-0.0003571383422240615,0.08075869083404541,-0.0744796097278595,0.07100839912891388,-0.01567929796874523,0.0024338755756616592,0.057175152003765106,-0.017287814989686012,0.0010377252474427223,-0.048536673188209534,0.02450697310268879,0.055627573281526566,-0.000608583795838058,-0.0769205242395401,-0.05658629909157753,0.01864595152437687,-0.0141806835308671]},{"id":"who-am-i-","vector":[0.017006032168865204,-0.06578611582517624,-0.06267938762903214,-0.055828776210546494,-0.04188913479447365,0.022321175783872604,0.024839065968990326,-0.003500505583360791,0.04785790294408798,0.0014312491985037923,0.0266707893460989,-0.0016261197160929441,-0.017661897465586662,0.054456811398267746,-0.047438494861125946,-0.06906533986330032,-0.045528411865234375,-0.07907611131668091,-0.020951498299837112,0.036655403673648834,0.01235999260097742,-0.03643651306629181,0.02769962139427662,-0.00022460054606199265,0.04042237624526024,-0.013542638160288334,-0.01941966637969017,-0.04504669830203056,-0.05404430627822876,-0.036666061729192734,0.06384952366352081,-0.009170640259981155,-0.019491875544190407,-0.051240842789411545,0.027570394799113274,0.06591781228780746,-0.04265802726149559,0.06334538012742996,0.07165735214948654,-0.0456295982003212,-0.007546981796622276,-0.004552201833575964,0.0641893744468689,-0.07625387609004974,-0.012662588618695736,0.01751100644469261,-0.02793504297733307,0.0002677649608813226,0.0686078891158104,0.0661025121808052,-0.02672130987048149,-0.0031119990162551403,0.029499569907784462,-0.03336545079946518,-0.003419280983507633,-0.032554637640714645,0.0452875979244709,0.02890436165034771,0.07085347175598145,-0.06421031802892685,-0.06523939967155457,-0.012133381329476833,-0.046343762427568436,0.013766592368483543,-0.05261074751615524,0.008667327463626862,0.07141030579805374,-0.007974292151629925,0.08047721534967422,-0.025462543591856956,-0.039652127772569656,-0.03367286175489426,-0.02545463852584362,0.010841400362551212,-0.044546421617269516,-0.057785969227552414,0.03315577656030655,-0.0022653648629784584,-0.025853337720036507,0.03877941519021988,0.03377624601125717,0.06426505744457245,-0.0003439666179474443,-0.03477834165096283,-0.003548368578776717,0.06349363923072815,0.033481646329164505,0.07889166474342346,-0.06803330034017563,0.06365887075662613,-0.04198039695620537,0.011947068385779858,-0.07038616389036179,0.023869261145591736,-0.03770283982157707,0.023596281185746193,-0.05142904818058014,-0.02185763046145439,-0.05940769985318184,-0.04657929763197899,-0.04588072746992111,0.05226445943117142,0.011102864518761635,0.03788742795586586,-0.01571538671851158,0.033591128885746,-0.051397860050201416,0.07674779742956161,0.06641758978366852,0.050443943589925766,-0.04345402121543884,-0.07420103251934052,0.046446554362773895,-0.04104752838611603,-0.0600576288998127,0.04033927619457245,0.009151377715170383,0.03576897829771042,-0.06178681179881096,0.04910952225327492,-0.05168415978550911,-0.07520416378974915,-0.018655801191926003,-0.049919597804546356,-0.026981614530086517,0.01975971646606922,-0.056474607437849045,0.0019412433030083776,0.05623839795589447,-0.06447979062795639,-0.027484428137540817,-0.021720843389630318,-0.02202184870839119,0.033258214592933655,-0.045901402831077576,-0.03895045444369316,0.02731444500386715,-0.06078780069947243,-0.06066903844475746,0.01918252930045128,0.01923779398202896,-0.07185974717140198,-0.002934502437710762,0.06569033861160278,0.005303653888404369,0.035264018923044205,0.05419054999947548,0.0056332615204155445,0.006758695933967829,0.0665372759103775,-0.046926189213991165,0.019856449216604233,-0.017310258001089096,-0.02566623128950596,-0.05393383279442787,-0.04342525452375412,0.059068311005830765,-0.05419761687517166,0.05579032748937607,-0.0549103282392025,-0.034002795815467834,-0.013893261551856995,0.018776044249534607,0.0036189460661262274,0.013604003936052322,0.057163890451192856,-0.050518542528152466,-0.04534701630473137,0.010725811123847961,0.05396207794547081,-0.043731845915317535,0.017068229615688324,-0.009491372853517532,0.055839262902736664,-0.030734458938241005,0.02328389137983322,-0.05787162855267525,0.06404579430818558,0.07624790817499161,0.06646175682544708,-0.057545006275177,0.08141889423131943,-0.011420766822993755,0.02524024061858654,-0.007212373428046703,0.02766963467001915,0.02411811612546444,0.03718353807926178,0.0750093013048172,-0.06443817168474197,-0.02503090165555477,0.013322434388101101,-0.019572731107473373,0.008991312235593796,0.07317258417606354,-0.05904407799243927,-0.0424051471054554,-0.05623910576105118,-0.025322318077087402,0.07901405543088913,-0.03225824609398842,-0.02408100664615631,0.023322172462940216,-0.02633681334555149,-0.05742060765624046,-0.015689915046095848,-0.015407649800181389,-0.01849128119647503,0.042702965438365936,0.0736183151602745,0.016902949661016464,0.008339392952620983,0.08036016672849655,0.004978208802640438,0.05427843704819679,0.019392209127545357,-0.002156621078029275,0.014746480621397495,0.0449330173432827,-0.02882516384124756,0.03109602816402912,-0.021089736372232437,-0.035500239580869675,-0.08225250244140625,0.06102421507239342,-0.05786649510264397,-0.025515396147966385,0.006451474502682686,0.04389290511608124,0.026944952085614204,-0.005413445644080639,0.053388770669698715,0.07025528699159622,0.020172618329524994,-0.0406300313770771,0.07101267576217651,0.04540981352329254,0.07316310703754425,-0.01554736029356718,-0.042276397347450256,-0.049880240112543106,0.0027054110541939735,-0.03915010020136833,-0.04613437503576279,-0.020116841420531273,-0.0687107965350151,-0.02873288467526436,-0.0050779650919139385,-0.02111957035958767,-0.03760344535112381,0.029810551553964615,-0.0431850366294384,0.02198171615600586,-0.060546234250068665,-0.03556528314948082,0.008405969478189945,-0.04416700080037117,-0.060367994010448456,-0.03173959627747536,0.07989735156297684,-0.026013653725385666,0.016144298017024994,0.0037741910200566053,0.03931080922484398,-0.0462070070207119,0.029078936204314232,0.02376876212656498,0.012795642949640751,-0.04950692504644394,-0.05115890130400658,0.07023788243532181,-0.07061190158128738,0.050584036856889725,-0.00753413001075387,-0.024546997621655464,0.07249371707439423,-0.029868705198168755,0.013925554230809212,-0.015253404155373573,-0.031414762139320374,0.05731708183884621,0.08101176470518112,0.010465586557984352,0.019032739102840424,-0.021860966458916664,-0.06642244011163712,-0.07410924881696701,0.023773817345499992,0.01835765317082405,-0.06256096065044403,-0.024040667340159416,-0.046270113438367844,0.07483925670385361,-0.0033495211973786354,-0.03206318989396095,-0.03612104803323746,0.06082809343934059,0.06394052505493164,0.05491209402680397,0.05455855280160904,0.0025387927889823914,0.05412809178233147,-0.00048473651986569166,0.04712473973631859,-0.011417051777243614,-0.019196152687072754,0.023857563734054565,-0.0029967098962515593,-0.014552213251590729,-0.07137129455804825,0.002758190967142582,0.04894108325242996,0.028505593538284302,0.05976679176092148,-0.05977560579776764,-0.06170118600130081,0.054354000836610794,-0.04170279577374458,-0.02689463272690773,-0.03916487470269203,-0.07445503026247025,0.04079378396272659,-0.040204014629125595,-0.04617780074477196,0.027370788156986237,0.030996520072221756,-0.006214939057826996,-0.0030991958919912577,0.001810462330467999,-0.062329914420843124,-0.017207209020853043,-0.025394344702363014,-0.06873916834592819,-0.03637975454330444,0.04702463746070862,0.024105677381157875,0.07867463678121567,0.07986542582511902,0.03899526223540306,-0.024904968217015266,-0.05233770236372948,0.033873721957206726,0.07079271227121353,-0.00167456257622689,-0.013257032260298729,-0.017814548686146736,-0.026253774762153625,0.061164312064647675,-0.01904318667948246,0.04275532439351082,-0.06288819015026093,0.06633736193180084,-0.023228289559483528,-0.05839689448475838,-0.010835031978785992,0.030514242127537727,-0.0365629680454731,-0.06643372029066086,-0.01945103332400322,0.037398021668195724,0.0462736077606678,0.03189319372177124,0.011509361676871777,-0.03259129449725151,0.0690879300236702,0.022074950858950615,-0.00035958754597231746,-0.0554170198738575,-0.007729316130280495,-0.0531630702316761,-0.061785679310560226,-0.04485420882701874,0.014958552084863186,-0.03901765123009682,-0.0684308260679245,-0.01856803521513939,0.015485952608287334,0.001873841742053628,-0.059614673256874084,0.04138289391994476,-0.016352731734514236,0.0521819069981575,-0.05105547979474068,0.03465715050697327,0.02542070485651493,-0.011806265451014042,0.06800271570682526,-0.038061946630477905,-0.019810015335679054,-0.05754254758358002,-0.05763814598321915,-0.05792226642370224,-0.04165977984666824,0.06794580817222595,0.0699903815984726,0.04039061814546585,0.004578280728310347,-0.0687134712934494,-0.022172223776578903,-0.052288178354501724,-0.040458615869283676,0.058371949940919876,0.00900705810636282,0.05511259287595749,-0.050380852073431015,-0.03669828549027443,0.070485919713974,-0.07386358827352524,0.06708689033985138,-0.07292547821998596,0.08194874972105026,0.05425797402858734,0.007245048880577087,0.010139777325093746,-0.04211713746190071,0.04681449010968208,0.03571967035531998,-0.024743694812059402,0.07933361083269119,0.06771326065063477,-0.03279871493577957,0.027258791029453278,0.01806499995291233,-0.07021603733301163,-0.05460279434919357,-0.03220061957836151,-0.03374166041612625,-0.06246979907155037,-0.05295209959149361,0.0016734719974920154,-0.05340486764907837,0.011737803928554058,-0.005774779245257378,-0.07514533400535583,0.0365002378821373,0.07075710594654083,-0.05199255421757698,0.01752212829887867,-0.05202123522758484,-0.005126023665070534,-0.03928699716925621,-0.05366867780685425,0.04336254298686981,0.05278975889086723,-0.06515289098024368,0.030045917257666588,0.06506558507680893,-0.07126352936029434,0.04918920248746872,-0.003405493451282382,0.002273484133183956,0.029152365401387215,0.03730807825922966,0.00687541114166379,0.013621371239423752,-0.0637291818857193,-0.013069306500256062,0.04648266360163689,0.06553301215171814,-0.019368978217244148,0.0037582360673695803,-0.05093860998749733,-0.0011218601139262319,0.03664258494973183,0.04403319209814072,0.02600492164492607,0.006293150130659342,0.04228293150663376,-0.03734234720468521,-0.060562700033187866,0.006101504899561405,0.06673742830753326,-0.05972748622298241,0.005424045026302338,-0.02101486176252365,0.02199535258114338,0.06277553737163544,0.04332106187939644,0.0348256379365921,0.024565843865275383,-0.0638066753745079,0.018959522247314453,-0.055893126875162125,0.012186795473098755,0.05307955667376518,0.009158429689705372,0.04380275309085846,-0.03347998112440109,-0.04279777407646179,0.016890037804841995,0.04926872253417969,-0.03102288953959942,-0.06596406549215317,0.018490759655833244,0.06599558889865875,-0.022130882367491722,0.021933311596512794,-0.05015214532613754,0.06598640233278275,0.004491714294999838,-0.0024712341837584972,0.05048545077443123,-0.030641747638583183,-0.007439666893333197,-0.05127878114581108,0.0346011184155941,0.06601264327764511,0.016029294580221176,-0.05542876198887825,-0.07615336030721664,0.024202030152082443,-0.016508469358086586]},{"id":"you-are","vector":[0.010466811247169971,-0.05510833486914635,-0.0027653120923787355,0.01875370368361473,-0.013545390218496323,0.026210304349660873,0.0162692591547966,-0.04929792508482933,0.028285646811127663,0.04839813709259033,0.0459064356982708,0.014295713976025581,-0.0285915769636631,-0.023506909608840942,-0.0622013621032238,-0.006174307782202959,-0.050814189016819,-0.04986327886581421,-0.0432548001408577,0.0012946734204888344,0.02223086729645729,-0.0017163768643513322,0.04472597688436508,-0.06446937471628189,0.03607778251171112,-0.015209757722914219,-0.016920216381549835,-0.017896277830004692,-0.05584745854139328,-0.05936022475361824,0.03668513894081116,-0.04185318574309349,-0.02229972742497921,-0.02490031160414219,0.052375659346580505,0.020397616550326347,-0.0553128719329834,0.019157417118549347,0.05417246371507645,-0.05750025436282158,-0.016217324882745743,-0.0041801463812589645,0.05235999450087547,0.000987474573776126,0.000017932963601197116,-0.024945950135588646,-0.06400011479854584,0.011760269291698933,0.03826475515961647,0.05351235345005989,0.016433192417025566,-0.03618285804986954,0.004962195176631212,-0.022045256569981575,-0.004605161491781473,-0.06021369993686676,0.00432667275890708,0.03799990564584732,0.038606371730566025,-0.07917530834674835,-0.05621674284338951,-0.006312218494713306,-0.05139220878481865,0.024195194244384766,-0.03296913206577301,0.01021752879023552,0.07737069576978683,0.026304543018341064,0.07544942945241928,-0.06046155095100403,-0.019437815994024277,-0.010765734128654003,-0.010574741289019585,0.009466164745390415,-0.056659284979104996,-0.06569760292768478,0.018935319036245346,0.0072976951487362385,0.009982828982174397,0.0579574815928936,0.014987117610871792,0.03610989823937416,-0.005053575616329908,-0.003921543247997761,-0.04328104853630066,0.05768921598792076,0.008884000591933727,0.08363739401102066,-0.05707896873354912,0.06824835389852524,-0.04506121948361397,0.02317488193511963,-0.04197138547897339,0.02097843773663044,-0.01664484106004238,0.06012028083205223,-0.07319874316453934,0.010664643719792366,-0.04895145446062088,-0.048796627670526505,-0.08464302867650986,0.023190846666693687,-0.03670325130224228,-0.00573307927697897,-0.003650385420769453,0.04128152132034302,-0.052891772240400314,0.06425412744283676,0.0696953684091568,0.05650392547249794,-0.015049752779304981,-0.06788014620542526,0.023769404739141464,-0.05938257649540901,-0.03894658759236336,-0.024472545832395554,0.015258817933499813,0.043871961534023285,-0.07935115694999695,0.05280541256070137,-0.029895156621932983,-0.055873334407806396,0.02646339312195778,-0.0483844168484211,-0.028805682435631752,0.01820193976163864,-0.06411176919937134,0.04788099601864815,0.02257053554058075,-0.07157784700393677,-0.05690201371908188,-0.04900767654180527,-0.023427391424775124,0.03884103149175644,-0.03653143346309662,-0.07153632491827011,-0.03126046434044838,-0.05455245450139046,-0.026588059961795807,0.03472846373915672,0.018870169296860695,-0.07257353514432907,0.06081576272845268,0.03155453875660896,-0.043554455041885376,0.021553676575422287,0.06891722232103348,0.0680404007434845,0.010393720120191574,0.04159456491470337,0.022417254745960236,0.008908405900001526,-0.07431256026029587,-0.04347432777285576,0.004580649081617594,-0.02976706437766552,0.024016346782445908,-0.049554597586393356,0.05029404163360596,-0.07407298684120178,0.031081678345799446,-0.018916528671979904,0.043217454105615616,0.01384083740413189,0.0007456808816641569,0.04789991304278374,-0.013507479801774025,-0.06562335044145584,-0.01779813878238201,0.06325837224721909,-0.06750432401895523,0.0033723192755132914,-0.025873951613903046,0.058724094182252884,-0.02823427878320217,0.01358326431363821,-0.06545907258987427,0.07302772998809814,0.07912425696849823,0.07711156457662582,-0.004107107408344746,0.09024886041879654,0.002725440775975585,0.01778482086956501,0.038611311465501785,0.07376378774642944,0.00013850700634066015,0.04863904044032097,0.06174854189157486,-0.059022482484579086,-0.0270256157964468,-0.01606464944779873,-0.04796059429645538,-0.0060152229852974415,0.0783858597278595,-0.06643275171518326,-0.03522801771759987,-0.00962617713958025,0.009976912289857864,0.07693232595920563,0.02003505825996399,0.04508798196911812,0.04812128096818924,0.01826481893658638,-0.056556522846221924,-0.024304155260324478,0.015100736171007156,0.0008521185955032706,-0.0004380008322186768,0.08145862817764282,0.013774613849818707,-0.004911352880299091,0.06962893158197403,-0.012768813408911228,0.053971439599990845,-0.01581347920000553,0.0008919861284084618,-0.015476618893444538,0.057967305183410645,-0.035115476697683334,0.009239302948117256,-0.03771287947893143,-0.015332194045186043,-0.07260876148939133,0.0405130535364151,-0.04898536950349808,-0.009761900641024113,0.03186657652258873,-0.01398523896932602,0.028691129758954048,0.0013012634590268135,0.0204829890280962,0.04866819083690643,0.013415410183370113,0.028768470510840416,0.06274338066577911,0.04020630195736885,0.06074883043766022,0.03223969414830208,0.0409645177423954,-0.06943102926015854,-0.028403835371136665,0.004991625435650349,-0.030698588117957115,-0.02423989214003086,-0.02372065559029579,0.015340729616582394,0.04901569336652756,0.014815046451985836,-0.020627552643418312,0.003751490730792284,-0.0694262906908989,-0.019374635070562363,-0.06850502640008926,-0.013754808343946934,-0.025314664468169212,-0.03148205205798149,-0.06437749415636063,-0.02953394129872322,0.08034846186637878,-0.007483325898647308,-0.04041367396712303,-0.04245762899518013,0.006193920969963074,-0.010661406442523003,0.00901784747838974,0.018051080405712128,-0.04688149690628052,-0.03302903473377228,-0.0349419079720974,0.054937027394771576,-0.05861889198422432,0.029526473954319954,-0.028000149875879288,-0.030623257160186768,0.07776061445474625,-0.02321181260049343,0.04621337354183197,-0.014737770892679691,-0.002817730884999037,0.07461059093475342,0.0772540420293808,0.04239784926176071,0.03969657048583031,-0.03311961889266968,-0.06726107001304626,-0.08103252202272415,0.042172495275735855,-0.04980654641985893,-0.048376962542533875,-0.03154856711626053,0.00036050606286153197,0.07182705402374268,0.024048373103141785,0.006967888679355383,-0.03580445423722267,0.06939947605133057,0.034797247499227524,0.04087419807910919,0.025258466601371765,-0.03911466524004936,0.07390709221363068,0.0010195717914029956,0.05388157069683075,0.022575410082936287,0.02921546809375286,0.013197402469813824,-0.013407948426902294,-0.010588929988443851,-0.07400962710380554,-0.0025847076904028654,-0.027328405529260635,0.01150791347026825,0.06381852179765701,-0.08252108097076416,-0.04958758130669594,0.06619936972856522,-0.035501427948474884,-0.03768837824463844,-0.04242770001292229,-0.07511737942695618,0.048744603991508484,-0.05133133381605148,-0.029848454520106316,0.038886167109012604,0.021612323820590973,-0.0018833632348105311,-0.0406513512134552,0.02239132672548294,-0.06002166494727135,-0.002603646134957671,-0.0515003465116024,-0.076349638402462,0.0002146427141269669,0.0390317365527153,0.0095285689458251,0.07982078194618225,0.0814790427684784,0.041360896080732346,-0.009688123129308224,-0.014313768595457077,0.01816379651427269,0.06686723232269287,-0.02342364192008972,0.01971779577434063,0.038443367928266525,-0.03529505059123039,0.05635187029838562,0.03246549889445305,0.04305219650268555,-0.08401121944189072,0.06690599769353867,0.04566989839076996,0.029466651380062103,0.01334611140191555,0.05409805104136467,-0.035231634974479675,-0.07830836623907089,-0.019621707499027252,-0.008345860987901688,0.046159785240888596,0.0002378265926381573,0.03789592161774635,-0.037400152534246445,-0.01415577344596386,0.013753785751760006,-0.035973452031612396,-0.07222974300384521,-0.0412248894572258,-0.03509470447897911,-0.07473839819431305,-0.00928550772368908,0.03224964439868927,-0.07882356643676758,-0.061489004641771317,-0.019863218069076538,-0.03497297316789627,0.0447644479572773,0.0009119923925027251,0.017647435888648033,-0.014958967454731464,0.04356042668223381,-0.05554531514644623,0.04959908127784729,0.0480775386095047,-0.033098254352808,0.07153454422950745,-0.03799920901656151,-0.025299951434135437,-0.06346743553876877,-0.07247357815504074,-0.043155476450920105,-0.0032043049577623606,0.021219851449131966,0.07543428987264633,0.045993126928806305,0.03708361089229584,-0.0782887190580368,-0.026869654655456543,-0.06960941851139069,-0.028929632157087326,0.07452552020549774,0.04107176512479782,0.05163385346531868,-0.02111392840743065,-0.031117768958210945,0.06638039648532867,-0.06839169561862946,0.0688682347536087,-0.05807262286543846,0.08047023415565491,0.024466870352625847,0.023531479761004448,-0.024306006729602814,0.01220656931400299,-0.0369841530919075,0.03359709307551384,-0.019967468455433846,0.08243423700332642,0.04884834960103035,-0.025277001783251762,0.04495709016919136,0.03428582102060318,-0.05772543326020241,-0.04873025789856911,-0.051778774708509445,-0.04766532778739929,-0.014815929345786572,-0.051709868013858795,0.013745171949267387,-0.04745811969041824,0.0365782268345356,-0.03357915207743645,-0.05003003403544426,0.036357562988996506,0.07348303496837616,-0.07766304910182953,0.01975635066628456,-0.047338832169771194,0.036222729831933975,-0.06832287460565567,-0.035240449011325836,0.07027237862348557,0.04949759691953659,-0.06999219208955765,0.02123991586267948,0.083509661257267,-0.0805545374751091,0.06181062012910843,-0.041217003017663956,-0.009676619432866573,-0.053247757256031036,0.04924869164824486,0.01928975060582161,0.005988089833408594,-0.0734000876545906,-0.0035668425261974335,0.057137370109558105,0.027314787730574608,-0.04328298568725586,-0.002849385840818286,-0.06384453922510147,-0.011397459544241428,0.037180908024311066,-0.029335511848330498,0.039348307996988297,-0.06535770744085312,0.03485732525587082,-0.03867693245410919,-0.05221507325768471,0.01043598260730505,0.0713827833533287,-0.011469321325421333,0.0162308719009161,0.035823751240968704,0.04298211634159088,0.03404068574309349,0.04324891418218613,0.00827791728079319,0.060934461653232574,-0.004868266172707081,0.009581259451806545,-0.03253916651010513,0.022328056395053864,-0.0031929542310535908,0.034787386655807495,0.016639210283756256,-0.04503360390663147,-0.07330413162708282,-0.020184848457574844,-0.014605233445763588,-0.06597312539815903,-0.07016751170158386,-0.008760676719248295,0.07547050714492798,-0.009319519624114037,-0.033968593925237656,-0.050277676433324814,0.06861360371112823,-0.040703363716602325,0.04145919531583786,0.04710845276713371,-0.011693923734128475,0.0391293503344059,-0.036515939980745316,0.016082311049103737,0.026095295324921608,0.011808766052126884,-0.07035955041646957,-0.07076431810855865,0.038581740111112595,0.005875372793525457]}] diff --git a/src/lib/utils/thoughts/h1.svelte b/src/lib/utils/thoughts/h1.svelte new file mode 100644 index 0000000..bcf355d --- /dev/null +++ b/src/lib/utils/thoughts/h1.svelte @@ -0,0 +1,3 @@ +

    + +

    diff --git a/src/lib/utils/thoughts/p.svelte b/src/lib/utils/thoughts/p.svelte new file mode 100644 index 0000000..eda9ff9 --- /dev/null +++ b/src/lib/utils/thoughts/p.svelte @@ -0,0 +1,3 @@ +

    + +

    diff --git a/src/posts/poetry/afternoon.md b/src/posts/poetry/afternoon.md new file mode 100644 index 0000000..f95970c --- /dev/null +++ b/src/posts/poetry/afternoon.md @@ -0,0 +1,14 @@ +--- +categories: + - Poetry +date: 2014-01-10 00:00:00 +0000 +tags: + - Humor +title: Afternoon +layout: poetry +--- + +I spent three quarters +On a whole cookie +To hear its half-baked +Two cents. diff --git a/src/posts/poetry/asphyxiate.md b/src/posts/poetry/asphyxiate.md new file mode 100644 index 0000000..7c5f760 --- /dev/null +++ b/src/posts/poetry/asphyxiate.md @@ -0,0 +1,27 @@ +--- +categories: + - Poetry +date: 2018-03-10 00:00:00 +0000 +tags: + - Friendship + - Toxic +title: Asphyxiate +layout: poetry +--- + +I stopped myself +To take a breather, + +But I took it far too late. + +My reluctant lungs +Could hardly handle + +The second-hand sadness +Yours create. + +Each blessing that falls +Into your hand + +Soon meets its match +And asphyxiates. diff --git a/src/posts/poetry/atmospheres.md b/src/posts/poetry/atmospheres.md new file mode 100644 index 0000000..49b3b33 --- /dev/null +++ b/src/posts/poetry/atmospheres.md @@ -0,0 +1,40 @@ +--- +categories: + - Poetry +date: 2019-12-11 12:00:00 +0000 +tags: + - Instrospective +title: Atmospheres +layout: poetry +--- + +Your soul walks the plank +Once your journey begins. +It first could only sink, +But soon learned to swim. + +You picked up the pace +At the sight of life's fins, +Headlong and headstrong +Until your head spins. + +Your childhood caught up +And took you back under + +To remind you +Of the depths +Your soul sunk +While you were younger. + +The atmosphere was heavy already, +But now the pressure's compounded. + +The soul remembers +Its early cries for help +And cries again +To find its fears unfounded. + +We need others +To lift us +Once our siren +Has sounded. diff --git a/src/posts/poetry/bad-behavior.md b/src/posts/poetry/bad-behavior.md new file mode 100644 index 0000000..2238d05 --- /dev/null +++ b/src/posts/poetry/bad-behavior.md @@ -0,0 +1,48 @@ +--- +categories: + - Poetry +date: 2017-08-10 00:00:00 +0000 +tags: + - Nostalgia + - Doubt + - Habits + - Smoking + - Chattanooga +title: Bad Behavior +layout: poetry +--- + +Do you happen to have +A cigarette I could bum? +Just to hold in my hand +To help reminisce some + +To bring me back to a time +When I had it all together +And the worst of my worries +Was exploring Minecraft's Nether. + +In fact, could I please +Borrow your lighter as well? +I won't actually smoke it; +I promise to not inhale. + +Just the act of smoking +Puts my mind at ease +And places it in Bear Creek +Enjoying the summer's breeze. + +But I've come this far already, +So I think I'll take just a puff +With one good hit of nicotine +I'm sure I'll find to be enough. + +I'll savor its flavor +Of late-night party favors +And quick, justified breaks +Between writing papers. + +And just like back then, +It seems I still need a Savior +And a few more cigarettes +Before I break this bad behavior. diff --git a/src/posts/poetry/booming-voice.md b/src/posts/poetry/booming-voice.md new file mode 100644 index 0000000..d194049 --- /dev/null +++ b/src/posts/poetry/booming-voice.md @@ -0,0 +1,25 @@ +--- +categories: + - Poetry +date: 2012-01-11 00:00:00 +0000 +tags: + - Christianity + - Creation +title: Booming Voice +layout: poetry +--- + +Silent explosions amidst the stars. +Booming voices that created Mars. +Yet Earth only his finger is placed +And filled it with creatures the devil faced. + +All of creation has now withered +Thanks to the one who now slithers. +But a complex plan has been made, +And ages later death is slayed. + +God is never seen yet is all-seeing +Of all the actions of human beings. +His guiding voice amidst speeding cars +Now leads our souls beyond the stars. diff --git a/src/posts/poetry/catch-up.md b/src/posts/poetry/catch-up.md new file mode 100644 index 0000000..09bd1fa --- /dev/null +++ b/src/posts/poetry/catch-up.md @@ -0,0 +1,33 @@ +--- +categories: + - Poetry +date: 2019-01-09 12:00:00 +0000 +tags: + - Metaphor + - Realtalk + - Wisdom +title: Catch Up +layout: poetry +--- + +To your disbelief, +This moment passed. +You chased it down, +But it runs too fast. + +It's one step ahead +In the wrong direction +Until you're lost +In imperfection. + +== + +To your relief, +This moment passed. +But you couldn't run +From its aftermath. + +You sought out shelter +But had to keep moving +After planting the flowers +You'd never see blooming. diff --git a/src/posts/poetry/celestial-stare.md b/src/posts/poetry/celestial-stare.md new file mode 100644 index 0000000..8ee198e --- /dev/null +++ b/src/posts/poetry/celestial-stare.md @@ -0,0 +1,19 @@ +--- +categories: + - Poetry +date: 2015-01-20 00:00:00 +0000 +tags: + - Christianity +title: Celestial Stare +layout: poetry +--- + +God and I locked eyes, +But it's hard to look into the face of whom you fear. +So instead, I gazed at the throne beneath Him; +The ulterior motive for my wicked heart to draw near. + +God himself broke the stare as well, +For it's hard to look into the face of a disappointing son. +So instead, he gazed at Jesus within me +Who's changing my heart 'til we hold staring contests for fun. diff --git a/src/posts/poetry/closets.md b/src/posts/poetry/closets.md new file mode 100644 index 0000000..79b0e0d --- /dev/null +++ b/src/posts/poetry/closets.md @@ -0,0 +1,20 @@ +--- +categories: + - Poetry +date: 2015-02-20 00:00:00 +0000 +tags: + - Night + - Secrets +title: Closets +layout: poetry +--- + +Have you a fear of the dark +As I have of the light? +I'm afraid of what tomorrow +Will reveal of tonight. + +A new skeleton is forged, +Tucked away from your sight. +But I'm running out of doors +That I may keep locked tight. diff --git a/src/posts/poetry/congenealogy.md b/src/posts/poetry/congenealogy.md new file mode 100644 index 0000000..7e2a158 --- /dev/null +++ b/src/posts/poetry/congenealogy.md @@ -0,0 +1,21 @@ +--- +categories: + - Poetry +date: 2016-02-15 00:00:00 +0000 +tags: + - Christianity + - Faith + - Conviction +title: Congenealogy +layout: poetry +--- + +I can tell by your withering leaves +And dwindling fruits, +Your outstretched branch +Has lost touch with its roots. + +You have overextended +To give wind its due chase, +But the rush that you seek +Will destroy you posthaste. diff --git a/src/posts/poetry/contingency.md b/src/posts/poetry/contingency.md new file mode 100644 index 0000000..3b20b00 --- /dev/null +++ b/src/posts/poetry/contingency.md @@ -0,0 +1,37 @@ +--- +categories: + - Poetry +date: 2021-03-16 08:00:00 +0000 +tags: + - Christian +title: Contingency +layout: poetry +--- + +Told at a young age +That you're totally +Depraved, + +Yet still a nominee +To receive +Eternity. + +O, hallelujah, +You hypochondriac. + +O, hippocampus, +Remember what you lack. + +Told at a young age +You'll be called up +On stage. + +If you don't like your task, +Just ask that this cup +Might pass. + +O, Adonai, +Save the spotlight for me. + +On you, we rely +To believe we're worthy. diff --git a/src/posts/poetry/daydreaming-thomas.md b/src/posts/poetry/daydreaming-thomas.md new file mode 100644 index 0000000..f93808d --- /dev/null +++ b/src/posts/poetry/daydreaming-thomas.md @@ -0,0 +1,47 @@ +--- +categories: + - Poetry +date: 2015-04-15 00:00:00 +0000 +tags: + - Relationships + - Love + - Consciousness +title: Daydreaming Thomas +layout: poetry +--- + +I sort of spaced out +Into an ethereal dream + +While she fell back +Into her usual routine + +Of noticing +Amidst the material + +That + +Which my eyes have never seen. + +She ponders for a bit in confusion +The possible reasons for my doubt, +But it's the subject of possibility +The inexplicable mind can't figure out + +As I soar above the tops of buildings +And dive into the Atlantic ocean +With uncanny buoyancy I believed +As just another preconceived notion + +Until I cast that fact +Into the back +Of the recycle bin + +After I break +The REM cycle +And consciousness +clocks back in. + +And still you ask +Why I've yet +To fall in love again? diff --git a/src/posts/poetry/despondent.md b/src/posts/poetry/despondent.md new file mode 100644 index 0000000..49a057f --- /dev/null +++ b/src/posts/poetry/despondent.md @@ -0,0 +1,18 @@ +--- +categories: + - Poetry +date: 2017-05-10 00:00:00 +0000 +tags: + - Doubt + - Atrophy +title: Despondent +layout: poetry +--- + +The holy spirit +Filled your lungs +At one point. + +Now it’s either +American +Or rolled joints. diff --git a/src/posts/poetry/down-like-me.md b/src/posts/poetry/down-like-me.md new file mode 100644 index 0000000..1c7d1bb --- /dev/null +++ b/src/posts/poetry/down-like-me.md @@ -0,0 +1,26 @@ +--- +categories: + - Poetry +date: 2019-07-24 12:00:00 +0000 +tags: + - Religion +title: Down +layout: poetry +--- + +I wish that you were down like me. + +To both clown around +And fall apart at the seams. + +To take life by the horns +As you shout "C'est la vie!" + +To melt in its fire +Then break the mold as you leave. + +To cut through the crap +To see if the world bleeds + +And once we find it doesn't, +Figure out how it still stings. diff --git a/src/posts/poetry/dreams-spill.md b/src/posts/poetry/dreams-spill.md new file mode 100644 index 0000000..7f24c80 --- /dev/null +++ b/src/posts/poetry/dreams-spill.md @@ -0,0 +1,16 @@ +--- +categories: + - Poetry +date: 2011-01-10 00:00:00 +0000 +tags: + - Dreams + - Advice +title: Dreams Spill +layout: poetry +--- + +When you wake up, +Be sure to lay still +Lest your dreams spill +Out like a cup +From a drink offering. diff --git a/src/posts/poetry/elephants.md b/src/posts/poetry/elephants.md new file mode 100644 index 0000000..c547e44 --- /dev/null +++ b/src/posts/poetry/elephants.md @@ -0,0 +1,25 @@ +--- +categories: + - Poetry +date: 2014-09-10 00:00:00 +0000 +tags: + - Realtalk + - Silence +title: Elephants +layout: poetry +--- + +Silence speaks louder than words +At a decibel too loud to be heard +As an abrupt disruption of nothin' +For our conversation consumption. + +Its presence is chilling +And instant buzz-killing +Yet still we act +As if it's not there. + +Our tongues are untied +As the silence subsides +Yet still its message +Hangs heavy in the air. diff --git a/src/posts/poetry/enmity-amnesiac.md b/src/posts/poetry/enmity-amnesiac.md new file mode 100644 index 0000000..c8352a9 --- /dev/null +++ b/src/posts/poetry/enmity-amnesiac.md @@ -0,0 +1,34 @@ +--- +categories: + - Poetry +date: 2019-07-15 12:00:00 +0000 +tags: + - Introspective +title: Enmity Amnesiac +layout: poetry +--- + +Don't worry! +I've got your back. +I'm an enmity +Amnesiac. + +Each stab of yours +Only lowers my standards; +You can't trust a kid +To mind their manners. + +Until I found my standards +Couldn't go any lower. +The thermometer couldn't measure +The sheer coldness of your shoulder. + +Your rain turns into sleet +Each time you protest my parade +By singing along to hate speech +And calling it a serenade. + +You'll still find in me forgiveness; +You'll only lack a lot of trust. +I believe in endless second chances +To break the chains of the unjust. diff --git a/src/posts/poetry/fear-and-trembling.md b/src/posts/poetry/fear-and-trembling.md new file mode 100644 index 0000000..9274f75 --- /dev/null +++ b/src/posts/poetry/fear-and-trembling.md @@ -0,0 +1,46 @@ +--- +categories: + - Poetry +date: 2019-07-01 12:00:00 +0000 +tags: + - Christianity +title: Fear And Trembling +layout: poetry +--- + +Where did you go? + +I was told to follow, and so I followed, +But now it seems that I'm all alone. + +Our footsteps have been washed away. +Leaving me without proof, or a path back home. + +I looked away for just one moment, +Which is all it took for you to disappear. + +Were you just an imaginary friend +Whom I outgrew over the years? + +You had my back. + +But maybe you were only +Fulfilling a maintenance request. + +Because a wall was built. + +It does its job, and you've done yours, +So now the carpenter has left. + +Are you a social psychosis +Which we invent +In our times of need? + +A necessary neurosis +In order to cope with +The imperfect lives we lead? + +Even now, +While I shiver as the air thins and grows colder, +I swear, +I can feel your hand now resting on my shoulder. diff --git a/src/posts/poetry/fool-yourself.md b/src/posts/poetry/fool-yourself.md new file mode 100644 index 0000000..18a8f4b --- /dev/null +++ b/src/posts/poetry/fool-yourself.md @@ -0,0 +1,21 @@ +--- +categories: + - Poetry +date: 2019-01-15 12:00:00 +0000 +tags: + - Lies + - Wisdom + - Introspective +title: Fool Yourself +layout: poetry +--- + +You knew that they were joking, +But over time, the lies took root. +It's a belief you couldn't shake +Without their "fate" becoming Truth. + +You are as they say, +And they've said quite a lot. +The more you fight against it, +The more that must be fought. diff --git a/src/posts/poetry/foolish-heart.md b/src/posts/poetry/foolish-heart.md new file mode 100644 index 0000000..61968a9 --- /dev/null +++ b/src/posts/poetry/foolish-heart.md @@ -0,0 +1,13 @@ +--- +categories: + - Poetry +date: 2015-04-28 00:00:00 +0000 +tags: + - Relationships + - Love + - Humor +title: Foolish Heart +layout: poetry +--- + +How redundant. diff --git a/src/posts/poetry/fraudulent-charges.md b/src/posts/poetry/fraudulent-charges.md new file mode 100644 index 0000000..be8d310 --- /dev/null +++ b/src/posts/poetry/fraudulent-charges.md @@ -0,0 +1,35 @@ +--- +categories: + - Poetry +date: 2019-04-29 12:00:00 +0000 +tags: + - Introspective +title: Fraudulent Charges +layout: poetry +--- + +His fear of the unforeseen arose, +Which he thought t'was vanquished long ago. +Alas, +He found his faith in illusion: +A financial foundation +To cope with confusion. + +Words and the wind +Could now freely hold sway +With the worst of his worries +The most willing to stay: + +"Worthless are you, +Workaholic Anonymous! +Heartless are you +To become autonomous!" + +They raged until +He raised himself +Back up from the ground. + +"I hear you, wind. +I hear you, words." +Until he heard +Only sound. diff --git a/src/posts/poetry/get-a-grip.md b/src/posts/poetry/get-a-grip.md new file mode 100644 index 0000000..2a7f1bf --- /dev/null +++ b/src/posts/poetry/get-a-grip.md @@ -0,0 +1,22 @@ +--- +categories: + - Poetry +date: 2019-01-21 12:00:00 +0000 +tags: + - Introspective + - Realtalk + - Wisdom + - Worry +title: Get A Grip +layout: poetry +--- + +The future doesn't need me yet, +yet, +Yet I wish I was there now, +now, +Now the past will not forget, +get, +Get a grip if you know how, +How, +How? diff --git a/src/posts/poetry/good-lord-good-friday.md b/src/posts/poetry/good-lord-good-friday.md new file mode 100644 index 0000000..124c795 --- /dev/null +++ b/src/posts/poetry/good-lord-good-friday.md @@ -0,0 +1,19 @@ +--- +categories: + - Poetry +date: 2019-04-19 12:00:00 +0000 +tags: + - Christian +title: Good Lord, Good Friday +layout: poetry +--- + +The priests cried, "Prophesy!" +After Jesus confessed his plan. +"Who gave this man the right +To sit at God’s right hand?" + +The crowd cried, "Crucify!" +After Pilate met the King of Jews. +"What has this man done +To deserve such abuse?" diff --git a/src/posts/poetry/haiku--12.md b/src/posts/poetry/haiku--12.md new file mode 100644 index 0000000..7c125b5 --- /dev/null +++ b/src/posts/poetry/haiku--12.md @@ -0,0 +1,14 @@ +--- +categories: + - Poetry +date: 2016-02-25 00:00:00 +0000 +tags: + - Haiku + - Terror +title: Haiku 12 +layout: poetry +--- + +It still trickles down +Long after the winds swept through. +Tears outlive terror. diff --git a/src/posts/poetry/haiku--13.md b/src/posts/poetry/haiku--13.md new file mode 100644 index 0000000..f4b81a4 --- /dev/null +++ b/src/posts/poetry/haiku--13.md @@ -0,0 +1,14 @@ +--- +categories: + - Poetry +date: 2017-06-10 00:00:00 +0000 +tags: + - Wisdom + - Haiku +title: Haiku 13 +layout: poetry +--- + +When you tell a lie, +You tell the truth about you +And your character. diff --git a/src/posts/poetry/haiku--14.md b/src/posts/poetry/haiku--14.md new file mode 100644 index 0000000..26168bd --- /dev/null +++ b/src/posts/poetry/haiku--14.md @@ -0,0 +1,14 @@ +--- +categories: + - Poetry +date: 2018-02-05 00:00:00 +0000 +tags: + - Walking + - Haiku +title: Haiku 14 +layout: poetry +--- + +He walks a long ways. +He would have ran, but running +Is conspicuous. diff --git a/src/posts/poetry/haiku--3.md b/src/posts/poetry/haiku--3.md new file mode 100644 index 0000000..43760a0 --- /dev/null +++ b/src/posts/poetry/haiku--3.md @@ -0,0 +1,14 @@ +--- +categories: + - Poetry +date: 2012-02-22 00:00:00 +0000 +tags: + - Haiku + - Wind +title: Haiku 3 +layout: poetry +--- + +We're in a hurry. +Now by watching us humans, +The cold wind is too. diff --git a/src/posts/poetry/haiku--4.md b/src/posts/poetry/haiku--4.md new file mode 100644 index 0000000..f379d4f --- /dev/null +++ b/src/posts/poetry/haiku--4.md @@ -0,0 +1,14 @@ +--- +categories: + - Poetry +date: 2013-03-25 00:00:00 +0000 +tags: + - Haiku + - Humor +title: Haiku 4 +layout: poetry +--- + +I wish I could draw. +Picture's worth a thousand words; +This has just fourteen. diff --git a/src/posts/poetry/haiku--7.md b/src/posts/poetry/haiku--7.md new file mode 100644 index 0000000..e0ddb5a --- /dev/null +++ b/src/posts/poetry/haiku--7.md @@ -0,0 +1,14 @@ +--- +categories: + - Poetry +date: 2014-09-26 00:00:00 +0000 +tags: + - Haiku + - Silence +title: Haiku 7 +layout: poetry +--- + +You may interchange +My middle name with either +Silence or solace diff --git a/src/posts/poetry/haiku--8.md b/src/posts/poetry/haiku--8.md new file mode 100644 index 0000000..3440307 --- /dev/null +++ b/src/posts/poetry/haiku--8.md @@ -0,0 +1,16 @@ +--- +categories: + - Poetry +date: 2014-09-26 00:00:00 +0000 +tags: + - Haiku + - Humor + - Grounds + - Covenant +title: Haiku 8 +layout: poetry +--- + +It is all folly! +The grass withers, flowers fade, +But the weeds still grow. diff --git a/src/posts/poetry/homie.md b/src/posts/poetry/homie.md new file mode 100644 index 0000000..de12d06 --- /dev/null +++ b/src/posts/poetry/homie.md @@ -0,0 +1,51 @@ +--- +categories: + - Poetry +date: 2015-05-15 00:00:00 +0000 +tags: + - Relationships + - Love + - Friendship + - Covenant + - Nostalgia +title: Homie +layout: poetry +--- + +After we had passed around our time +Like a handout from a middle school teacher +Which left us as curiously disinterested +As the typical middle school kid-creature, + +I had begun to realize we all had fun +While I analyzed the past +That I hold beneath my beanie. + +With the help of Aladdin's nameless genie, +Tupac, and the also-immortal Houdini, +I relived the photos we claim +Frame us as fresh as a French Martini. + +And if you don't believe me, +Well, I'd be quite surprised, + +Considering the retina-rays, +Which flashed such a look +From behind your eyes + +To broadcast the current thought +That's now crossing your mind +Which you'd otherwise only tell +To your roommate, pet, and/or the Lord divine. + +You remember the fun we had, too. + +Well, besides the homework, and exams, +And the whole "Hell freezing over" +Which couldn't stop our professor's plans + +To take down our GPA's +And No-School snow days. + +Comradery through common enemy. +Tomfoolery as tedium's remedy. diff --git a/src/posts/poetry/how-to-learn.md b/src/posts/poetry/how-to-learn.md new file mode 100644 index 0000000..eb8fc84 --- /dev/null +++ b/src/posts/poetry/how-to-learn.md @@ -0,0 +1,30 @@ +--- +categories: + - Poetry +date: 2014-11-10 00:00:00 +0000 +tags: + - Realtalk + - Advice +title: How To Learn +layout: poetry +--- + +Knowledge is a splatter of color +Across the canvas of your brain +To gradually form a masterpiece +With every splatter you gain. + +But these splats are not simply skills and facts, +Else you're left with but reds and blues. +For hidden within every facet of life, +Will you find colors of every shade and hue. + +But an expansive canvas is required +If you're to create a work of art. +For only to those with a humble mind +Will life have knowledge to impart. + +Look at matters from a new perspective, +See the colors others have to show. +Close up not your mind to wisdom; +It's hard to learn if you think you know. diff --git a/src/posts/poetry/how-to-tell-a-good-joke.md b/src/posts/poetry/how-to-tell-a-good-joke.md new file mode 100644 index 0000000..674a348 --- /dev/null +++ b/src/posts/poetry/how-to-tell-a-good-joke.md @@ -0,0 +1,21 @@ +--- +categories: + - Poetry +date: 2015-05-25 00:00:00 +0000 +tags: + - Advice +title: How To Tell A Good Joke +layout: poetry +--- + +If you promise not to tell, I have heard a good rumor: +Wisdom walks hand in hand with good humor. + +If you're sworn to secrecy, then let it be known: +Let not a word spoken compel nature to groan. + +If words of wisdom you believe you can afford, +Then lend me your ear: Your tongue is a sword. + +If your lips are sealed, then read from this scroll: +What comes out of your mouth reveals your soul. diff --git a/src/posts/poetry/ill-with-want.md b/src/posts/poetry/ill-with-want.md new file mode 100644 index 0000000..ab7468d --- /dev/null +++ b/src/posts/poetry/ill-with-want.md @@ -0,0 +1,45 @@ +--- +categories: + - Poetry +date: 2013-04-10 00:00:00 +0000 +tags: + - Christianity + - Realtalk +title: Ill With Want +layout: poetry +--- + +I could travel across the land +Searching far and wide, +But the grass will still seem greener +On the other side. + +I could be surrounded by people who love me +Yet still feel I don't belong. +I could think I'm a terrible person +Despite how often told I'm wrong. + +I could accomplish several amazing feats +Yet still believe I'm inadequate. +I could try my best to be nice +Yet still remain the Devil's Advocate. + +I could conquer all of Earth +Yet still wish for Jupiter and Mars. +I could conquer the milky way +Yet still wish upon other stars. + +Cause there's an endless wave of want in the air +So what I want I can never obtain. +Every attempt leaves a feeling of despair +As I'm reminded of my ball and chain. + +They say that Jesus is the answer +And I know that I am God's child. +Why, then, during my best days +Can I sometimes find no reason to smile? + +This is the impossible riddle of Life +That happens to plague all of our minds. +There is no answer that will suffice +Until we're in heaven, body and mind refined. diff --git a/src/posts/poetry/in-retrospect.md b/src/posts/poetry/in-retrospect.md new file mode 100644 index 0000000..a163f0d --- /dev/null +++ b/src/posts/poetry/in-retrospect.md @@ -0,0 +1,32 @@ +--- +categories: + - Poetry +date: 2016-03-25 00:00:00 +0000 +tags: + - Clever + - Wisdom +title: In Retrospect +layout: poetry +--- + +Countless information's unaccounted for +The second the moment has passed. + +The details you do retain are blurred +And the retention itself won't last. + +The data chosen to be collected +Is picked by your values and beliefs. + +Who's to know +If the changed past guarantees +The desired outcome's +Probability to increase? + +(And what of +The endless repercussions it's released?) + +In essence, +To put it bluntly, +Hindsight +Is not 20/20. diff --git a/src/posts/poetry/inept.md b/src/posts/poetry/inept.md new file mode 100644 index 0000000..e7bddd4 --- /dev/null +++ b/src/posts/poetry/inept.md @@ -0,0 +1,21 @@ +--- +categories: + - Poetry +date: 2018-07-08 16:00:00 +0000 +tags: + - Advice +title: Inept +layout: poetry +--- + +You can call it unfair. +Is that your final decision? + +Inaction is still an act +Oft' deserving derision. + +You can say it's no use. +Is that all you can teach? + +The complacent are useful +To their ongoing siege. diff --git a/src/posts/poetry/inner-peace.md b/src/posts/poetry/inner-peace.md new file mode 100644 index 0000000..28f7de5 --- /dev/null +++ b/src/posts/poetry/inner-peace.md @@ -0,0 +1,19 @@ +--- +categories: + - Poetry +date: 2018-10-29 12:00:00 +0000 +tags: + - Introspective +title: Inner Peace +layout: poetry +--- + +What's the point of looking forward +If the future crumbles upon arrival? +There's no such thing as heartache; +The mind creates it for survival. + +Once you dash your expectations, +You'll be untethered from the lie +That your inner peace depends upon +The fleeting forces from outside. diff --git a/src/posts/poetry/inside-insight.md b/src/posts/poetry/inside-insight.md new file mode 100644 index 0000000..fee7231 --- /dev/null +++ b/src/posts/poetry/inside-insight.md @@ -0,0 +1,39 @@ +--- +categories: + - Poetry +date: 2019-02-23 12:00:00 +0000 +tags: + - Introspective + - Wisdom + - Worry +title: Inside Insight +layout: poetry +--- + +I pine not +For grass or trees. +This pane of glass +Looks fine to me. + +Ever present +Is every present +Presented as the moments pass. + +Where last is first +And first to class. +First to thirst +For half-full glass. + +Fully free +To see worry +As irrational +Impossibility. + +For the soul you hold +Can be sold for gold; +You otherwise can't lose control. + +Might lose a limb. +Might lose a friend. +Might loss matter +When your matters end? diff --git a/src/posts/poetry/judge-judy.md b/src/posts/poetry/judge-judy.md index 1a4df6b..ccdc0e2 100644 --- a/src/posts/poetry/judge-judy.md +++ b/src/posts/poetry/judge-judy.md @@ -6,6 +6,7 @@ tags: - Neuroscience - Wisdom title: Judge Judy +layout: poetry --- With each passing moment, diff --git a/src/posts/poetry/jungle-ghosts.md b/src/posts/poetry/jungle-ghosts.md new file mode 100644 index 0000000..8b6d99f --- /dev/null +++ b/src/posts/poetry/jungle-ghosts.md @@ -0,0 +1,36 @@ +--- +categories: + - Poetry +date: 2021-10-19 15:30:00 +0000 +tags: + - realtalk + - advice + - relationships +title: Jungle Ghosts +layout: poetry +--- + +You claimed to keep us +In your heart. +Are you surprised +To find it scarred? +What better way +To leave our mark? + +For our hearts were shattered, +You natural disaster, +In your endless search +For the greenest pasture. + +Learn to tend the fields +Already in your care. +It takes some time to yield +The produce growing there. + +The city will sustain you +Wherever you may roam, + +But what wonders +Will you build +Without a place +To call your home? diff --git a/src/posts/poetry/kings-pin.md b/src/posts/poetry/kings-pin.md index 2c5372b..2033173 100644 --- a/src/posts/poetry/kings-pin.md +++ b/src/posts/poetry/kings-pin.md @@ -6,6 +6,7 @@ tags: - Chess - Lessons title: King's Pin +layout: poetry --- You placed my king diff --git a/src/posts/poetry/klepto-couches.md b/src/posts/poetry/klepto-couches.md index 293c6a9..be5f58f 100644 --- a/src/posts/poetry/klepto-couches.md +++ b/src/posts/poetry/klepto-couches.md @@ -5,6 +5,7 @@ date: 2014-10-27 00:00:00 +0000 tags: - Humor title: Klepto Couches +layout: poetry --- My home houses countless couches. diff --git a/src/posts/poetry/lawncare.md b/src/posts/poetry/lawncare.md new file mode 100644 index 0000000..e3a7ba1 --- /dev/null +++ b/src/posts/poetry/lawncare.md @@ -0,0 +1,30 @@ +--- +categories: + - Poetry +date: 2018-09-20 16:00:00 +0000 +tags: + - Neighbors + - Shame +title: Lawncare +layout: poetry +--- + +The neighbors watched +Our grass grow +As they gossiped about +Us riffraff. + +We tried our best +To lay low, +But still felt the scorn +In each laugh. + +Even our own +Brought a sense of shame +With no one to blame +On our behalf. + +Parsimony +Parts the lonely +Until one has +The last half. diff --git a/src/posts/poetry/leafblower.md b/src/posts/poetry/leafblower.md index 90238a6..4bcea45 100644 --- a/src/posts/poetry/leafblower.md +++ b/src/posts/poetry/leafblower.md @@ -6,6 +6,7 @@ tags: - Grounds - Covenant title: Leafblower +layout: poetry --- You're the girl sitting on the park bench. diff --git a/src/posts/poetry/looking-good.md b/src/posts/poetry/looking-good.md new file mode 100644 index 0000000..c5d37bd --- /dev/null +++ b/src/posts/poetry/looking-good.md @@ -0,0 +1,20 @@ +--- +categories: + - Poetry +date: 2017-07-10 00:00:00 +0000 +tags: + - Wisdom + - Short +title: Looking Good +layout: poetry +--- + +When things +Are looking good, +You tend +To your mirror. + +But the clarity +You seek, +You'll find +To be inferior. diff --git a/src/posts/poetry/loose-change.md b/src/posts/poetry/loose-change.md new file mode 100644 index 0000000..adc2979 --- /dev/null +++ b/src/posts/poetry/loose-change.md @@ -0,0 +1,49 @@ +--- +categories: + - Poetry +date: 2019-10-16 12:00:00 +0000 +tags: + - Life + - Advice +title: Loose Change +layout: poetry +--- + +You've gotta stay loose + +Like change + +Before you're torn +When the goods exchange + +For the better + +For the worse. + +To be used +To the best +Is a curse. + +This might not make sense +Or cents +Or millions, + +But hindsight's a pretense +At the expense +Of resilience. + +Take the tumble + +For the worst +Is much better +Than whatever +Your temptors +Purport. + +I can change +Thanks to change. + +Otherwise, +Remain + +And sell short. diff --git a/src/posts/poetry/lost-connection.md b/src/posts/poetry/lost-connection.md new file mode 100644 index 0000000..ca33454 --- /dev/null +++ b/src/posts/poetry/lost-connection.md @@ -0,0 +1,49 @@ +--- +categories: + - Poetry +date: 2019-11-02 12:00:00 +0000 +tags: + - Wisdom +title: Lost Connection +layout: poetry +--- + +We live +Well enough alone, +So we left ourselves +Alone. + +Our words +Might suggest otherwise, +But our actions +Are what's shown. + +We share +Electromagnetic waves + +But it might take +A million years + +For massless particles +At the speed-of-light +To connect us to our peers. + +We curse +Our WiFi connection +The moment +We lose reception, + +But it takes some time, +And a few Doing Fine's +Before loneliness +Gets your attention. + +We cognitively +Know this well, +Yet our bodies +Still cannot tell. + +The modern man +In a tribeless land; +Evolution +Is confused as hell. diff --git a/src/posts/poetry/make-your-move.md b/src/posts/poetry/make-your-move.md new file mode 100644 index 0000000..98c697b --- /dev/null +++ b/src/posts/poetry/make-your-move.md @@ -0,0 +1,24 @@ +--- +categories: + - Poetry +date: 2019-06-22 12:00:00 +0000 +tags: + - Advice +title: Make Your Move +layout: poetry +--- + +Men are meant to move +Lest we wither and waste away +As we wade out in the ocean +In need of a crescent wave. + +If you refuse to be moved, +You will sink like a stone. +But if you catch a wave, +You'll see you're not alone. + +For we are all mostly water, +Each cell gasping for fresh air. +So why not splash into a wave? +We are waiting for you there. diff --git a/src/posts/poetry/makeup.md b/src/posts/poetry/makeup.md new file mode 100644 index 0000000..3769661 --- /dev/null +++ b/src/posts/poetry/makeup.md @@ -0,0 +1,19 @@ +--- +categories: + - Poetry +date: 2019-06-20 12:00:00 +0000 +tags: + - Love +title: Makeup +layout: poetry +--- + +I'm not too good with faces, +But I've faced you for so long. +I know when your hair changes +And how much makeup you've put on. + +When we're under too much pressure, +We protect each other from harm. +For our bond will never sever +As we weather each other's storm. diff --git a/src/posts/poetry/mental.md b/src/posts/poetry/mental.md new file mode 100644 index 0000000..280db98 --- /dev/null +++ b/src/posts/poetry/mental.md @@ -0,0 +1,21 @@ +--- +categories: + - Poetry +date: 2019-07-13 12:00:00 +0000 +tags: + - Religion +title: Mental +layout: poetry +--- + +Mistakes are meant to be made +And mended. + +Miracles mistake the mundane +For transcendence. + +Brains were built to buffer +The sadness + +Until it makes up miracles +From madness. diff --git a/src/posts/poetry/molecules-and-men.md b/src/posts/poetry/molecules-and-men.md index 1bd0ced..22f862c 100644 --- a/src/posts/poetry/molecules-and-men.md +++ b/src/posts/poetry/molecules-and-men.md @@ -5,6 +5,7 @@ date: 2019-10-26 12:00:00 +0000 tags: - Wisdom title: Of Molecules And Men +layout: poetry --- May we lose diff --git a/src/posts/poetry/monday-morning-shift.md b/src/posts/poetry/monday-morning-shift.md index ea988d2..ddeb6a8 100644 --- a/src/posts/poetry/monday-morning-shift.md +++ b/src/posts/poetry/monday-morning-shift.md @@ -6,6 +6,7 @@ tags: - Grounds - Covenant title: Monday Morning Shift +layout: poetry --- These plants look beautiful, but not at this location. diff --git a/src/posts/poetry/morning-commute.md b/src/posts/poetry/morning-commute.md index db77670..51558a4 100644 --- a/src/posts/poetry/morning-commute.md +++ b/src/posts/poetry/morning-commute.md @@ -7,6 +7,7 @@ tags: - Worry - Self-conscious title: Morning Commute +layout: poetry --- A few minutes into my morning commute diff --git a/src/posts/poetry/mother-mary.md b/src/posts/poetry/mother-mary.md new file mode 100644 index 0000000..a70877a --- /dev/null +++ b/src/posts/poetry/mother-mary.md @@ -0,0 +1,23 @@ +--- +categories: + - Poetry +date: 2019-06-16 12:00:00 +0000 +tags: + - Christianity +title: Mother Mary (John 2:5) +layout: poetry +--- + +O, mother Mary, +Is your heart full of regret? + +You let him know +The wine's run out, +But his time's not come just yet. + +Or, mother Mary, +Is your heart now full of joy? + +"He let me know +What will be done, +So servants, obey my boy." diff --git a/src/posts/poetry/nervous-city.md b/src/posts/poetry/nervous-city.md new file mode 100644 index 0000000..16f3e1a --- /dev/null +++ b/src/posts/poetry/nervous-city.md @@ -0,0 +1,19 @@ +--- +categories: + - Poetry +date: 2019-04-21 12:00:00 +0000 +tags: + - Self-conscious +title: Nervous City +layout: poetry +--- + +You peered into my presence +Without my permission. +I happened to take notice, +Which gives form to superstition. + +Now my thoughts follow laws +That only I can enforce; +If you continue to trespass, +I'll steer you back on course. diff --git a/src/posts/poetry/new-student.md b/src/posts/poetry/new-student.md new file mode 100644 index 0000000..a7bc125 --- /dev/null +++ b/src/posts/poetry/new-student.md @@ -0,0 +1,29 @@ +--- +categories: + - Poetry +date: 2012-03-15 00:00:00 +0000 +tags: + - School + - Realtalk +title: New Student +layout: poetry +--- + +Please present yourself to the class +By sharing none of your secret past + +Tell us your residence, your aspirations, +Your chosen major's concentration, +And maybe some more background knowledge +As to why you're attending this specific college. + +But anything more is unnecessary +I mean, who cares your birthday's in February? + +We learn not by the things you say +But by the image you portray +From the way you walk, talk, and stare +And the ridiculous length of your untamed hair + +Learning any more is unnecessary +Learning any more is a little too scary diff --git a/src/posts/poetry/new-year-s-retribution.md b/src/posts/poetry/new-year-s-retribution.md new file mode 100644 index 0000000..0f5a17f --- /dev/null +++ b/src/posts/poetry/new-year-s-retribution.md @@ -0,0 +1,29 @@ +--- +categories: + - Poetry +date: 2014-01-10 00:00:00 +0000 +tags: + - Advice +title: New Year's Retribution +layout: poetry +--- + +Our past predicts how prone we are +To repeat our mistakes in the present. +New Year resolutions are made +To prove ourselves convalescent. + +Never again shall we regress +Back to our frail and Fallen state. +Instead, transform into super humans +Gaining skills and losing weight. + +Only then will we be pleased +With who we see in the mirror. +On the contrary, oft' we find +What harms us, we hold dearer. + +And so the cycle repeats itself +As our resolutions are broken. +Still, I vow to write more next year +Despite what has just been spoken! diff --git a/src/posts/poetry/nonsilent-violence.md b/src/posts/poetry/nonsilent-violence.md new file mode 100644 index 0000000..6b11936 --- /dev/null +++ b/src/posts/poetry/nonsilent-violence.md @@ -0,0 +1,29 @@ +--- +categories: + - Poetry +date: 2019-08-10 12:00:00 +0000 +tags: + - Introspective +title: Nonsilent Violence +layout: poetry +--- + +When you speak, +Our ears must listen, +Whether or not +Our mind attends. + +Your vocal cords +Disturb the air +Which strike more drums +Than you might intend. + +So I walked away +In search of Quiet, +But my mind was troubled +By the sounds it made. + +I echoed them +Into the air +And saw each branch +Throwing their shade. diff --git a/src/posts/poetry/note-to-self.md b/src/posts/poetry/note-to-self.md new file mode 100644 index 0000000..3820764 --- /dev/null +++ b/src/posts/poetry/note-to-self.md @@ -0,0 +1,22 @@ +--- +categories: + - Poetry +date: 2014-01-20 00:00:00 +0000 +tags: + - Advice +title: Note To Self +layout: poetry +--- + +Take a few bets +That can't be won. + +Accomplish a task +That can't be done. + +Face the fears +That can't be outrun. + +Be a guiding light +When we've lost sight +Of the sun. diff --git a/src/posts/poetry/nothing-to-lose.md b/src/posts/poetry/nothing-to-lose.md new file mode 100644 index 0000000..69a76c0 --- /dev/null +++ b/src/posts/poetry/nothing-to-lose.md @@ -0,0 +1,22 @@ +--- +categories: + - Poetry +date: 2015-06-28 00:00:00 +0000 +tags: + - Relationships + - Faith + - Christianity + - Friendship +title: Nothing To Lose +layout: poetry +--- + +You can't be let go +Once you've clung to the truth. +With your treasures in heaven, +You've got nothing to lose. + +Now free to live out your life +With nothing to prove +Save for the love in your heart +You long to share with your crew. diff --git a/src/posts/poetry/one-of-six.md b/src/posts/poetry/one-of-six.md new file mode 100644 index 0000000..d226fa8 --- /dev/null +++ b/src/posts/poetry/one-of-six.md @@ -0,0 +1,30 @@ +--- +categories: + - Poetry +date: 2019-07-12 12:00:00 +0000 +tags: + - Introspective +title: One of Six (or Sick of Six) +layout: poetry +--- + +Every now and then, I detach +From the talking and the laughing. + +My skull splits in two +So that my right hemisphere +Can peer into the left: + +It finds my younger self, sobbing, +For he cannot speak up +And air his grievances +Lest he inconveniences +A heavily burdened family. + +The grief drips down his bronchial tubes +And festers. + +We thought we would grow out of it. + +But the grief grew +As we watched its roots wrap around our ribs. diff --git a/src/posts/poetry/original-intent.md b/src/posts/poetry/original-intent.md new file mode 100644 index 0000000..b0807f9 --- /dev/null +++ b/src/posts/poetry/original-intent.md @@ -0,0 +1,21 @@ +--- +categories: + - Poetry +date: 2017-08-20 00:00:00 +0000 +tags: + - Fiction + - Story + - Mystery +title: Original Intent +layout: poetry +--- + +The author read +The words she wrote +And swore each word +Together spoke + +A different message +Than initially penned +In a tone reminiscent +Of a familiar friend. diff --git a/src/posts/poetry/out-of-sync.md b/src/posts/poetry/out-of-sync.md new file mode 100644 index 0000000..0b3a466 --- /dev/null +++ b/src/posts/poetry/out-of-sync.md @@ -0,0 +1,20 @@ +--- +categories: + - Poetry +date: 2016-07-20 00:00:00 +0000 +tags: + - Relationships + - Music +title: Out Of Sync +layout: poetry +--- + +I heard the song +Held within your heart +And gave my best +To play its leading part. + +But I could neither +Determine the key, +Nor predict +Its syncopated beat. diff --git a/src/posts/poetry/pda.md b/src/posts/poetry/pda.md new file mode 100644 index 0000000..f494d2a --- /dev/null +++ b/src/posts/poetry/pda.md @@ -0,0 +1,19 @@ +--- +categories: + - Poetry +date: 2019-07-05 12:00:00 +0000 +tags: + - Introspective +title: PDA +layout: poetry +--- + +If you don't mind, please keep your love away. +For my heart breaks from this public display. +You see, mine believes its love is lacking +So yours reminds mine of its walls cracking. + +But if you do mind, that is just as well; +An out-of-reach heaven prepares you for hell +Where you're better off carving your disdain +Until there's only joy for another soul's gain. diff --git a/src/posts/poetry/perfect-situation.md b/src/posts/poetry/perfect-situation.md index 06469e9..3de7909 100644 --- a/src/posts/poetry/perfect-situation.md +++ b/src/posts/poetry/perfect-situation.md @@ -8,6 +8,7 @@ tags: - Drinking - Humor title: Perfect Situation +layout: poetry --- When I'm hammered, diff --git a/src/posts/poetry/personify.md b/src/posts/poetry/personify.md new file mode 100644 index 0000000..3d1fff7 --- /dev/null +++ b/src/posts/poetry/personify.md @@ -0,0 +1,23 @@ +--- +categories: + - Poetry +date: 2019-08-06 12:00:00 +0000 +tags: + - Religion +title: Personify +layout: poetry +--- + +There was no Word. +Only chaos +That echoed into patterns. + +It is the same now +As it was back then, +Except we patterns +Can now think we matter. + +For quantum tried its best +To coalesce chaos into complexity +And it is still hard at work +To personify even the galaxies. diff --git a/src/posts/poetry/perspective.md b/src/posts/poetry/perspective.md new file mode 100644 index 0000000..fd9d1aa --- /dev/null +++ b/src/posts/poetry/perspective.md @@ -0,0 +1,15 @@ +--- +categories: + - Poetry +date: 2017-09-20 00:00:00 +0000 +tags: + - Wisdom + - Short +title: Perspective +layout: poetry +--- + +I saw a side of myself +That I never expected +By taking a look +From another’s perspective. diff --git a/src/posts/poetry/pixel-pusher.md b/src/posts/poetry/pixel-pusher.md new file mode 100644 index 0000000..3229072 --- /dev/null +++ b/src/posts/poetry/pixel-pusher.md @@ -0,0 +1,26 @@ +--- +categories: + - Poetry +date: 2019-02-21 12:00:00 +0000 +tags: + - Relationships + - Love +title: Pixel Pusher +layout: poetry +--- + +She paints in pixels. + +Permanent. + +They can be changed, +Or erased, + +But won't. + +That's not the point +Of presenting points. + +You present the full picture. + +Or don't. diff --git a/src/posts/poetry/placate.md b/src/posts/poetry/placate.md new file mode 100644 index 0000000..19d96b8 --- /dev/null +++ b/src/posts/poetry/placate.md @@ -0,0 +1,14 @@ +--- +categories: + - Poetry +date: 2017-09-10 00:00:00 +0000 +tags: + - Mediator +title: Placate +layout: poetry +--- + +It's not my place +To placate. +To somewhere safe, +I vacate. diff --git a/src/posts/poetry/pointed-question.md b/src/posts/poetry/pointed-question.md new file mode 100644 index 0000000..4fe464f --- /dev/null +++ b/src/posts/poetry/pointed-question.md @@ -0,0 +1,32 @@ +--- +categories: + - Poetry +date: 2019-03-09 12:00:00 +0000 +tags: + - Christian +title: Pointed Question +layout: poetry +--- + +You declared, +Again, + +"It's either +Us +Or +Them." + +But lines +Blur +And +Bend + +When it's +Us +For +Them + +I Already +Forgot + +The question. diff --git a/src/posts/poetry/post-civil-chattanooga.md b/src/posts/poetry/post-civil-chattanooga.md new file mode 100644 index 0000000..549a3b1 --- /dev/null +++ b/src/posts/poetry/post-civil-chattanooga.md @@ -0,0 +1,37 @@ +--- +categories: + - Poetry +date: 2016-05-25 00:00:00 +0000 +tags: + - Racism + - History + - Chattanooga +title: Post Civil War Chattanooga +layout: poetry +--- + +This post-civil-war-torn-town +Gave refuge +To the shackled and bound. + +This town's river bubbled +With hope from beneath +To attract the outcast +And mask the town's deceit. + +Traffic soon birthed +To industrial sound. + +Its booming business +Broke the backs +Of the beaten down. + +Jim Crow rose +To further ostracize +And whiteout the spots +Missed by redlines. + +This town's river bubbled +With sewage from beneath. +Today's gentrified waters +Taste just as bittersweet. diff --git a/src/posts/poetry/pure.md b/src/posts/poetry/pure.md new file mode 100644 index 0000000..1cae889 --- /dev/null +++ b/src/posts/poetry/pure.md @@ -0,0 +1,15 @@ +--- +categories: + - Poetry +date: 2018-01-11 00:00:00 +0000 +tags: + - Short + - Christianity +title: Pure +layout: poetry +--- + +Give him your chaos, +He'll give it a form. +Take all that you will, +He'll create even more. diff --git a/src/posts/poetry/quarter-life-crisis.md b/src/posts/poetry/quarter-life-crisis.md new file mode 100644 index 0000000..0ac2535 --- /dev/null +++ b/src/posts/poetry/quarter-life-crisis.md @@ -0,0 +1,25 @@ +--- +categories: + - Poetry +date: 2016-04-25 00:00:00 +0000 +tags: + - Vices + - City +title: Quarter-Life Crisis +layout: poetry +--- + +There's nothing better +Than a quarter-life crisis. + +At the peak of your prime, +Catching up on lost time, +Fighting off vicious vices + +By keeping yourself busy +And taking in all of the city +Without a care +For what its price is. + +So long as you're no longer +Left to your own devices. diff --git a/src/posts/poetry/quenchless.md b/src/posts/poetry/quenchless.md new file mode 100644 index 0000000..5510ef9 --- /dev/null +++ b/src/posts/poetry/quenchless.md @@ -0,0 +1,36 @@ +--- +categories: + - Poetry +date: 2021-09-02 09:00:00 +0000 +tags: + - Vices +title: Quenchless +layout: poetry +--- + +The only +Drink that quenches +Dulls the senses +Until +All discretion +Is lost. + +What +Enabled this dependence? +My college attendance? +Is that their +Accreditation's cost? + +Is it +The fault of my genes? +A man who +Couldn't stay clean +Then passed down +The ~~bottles~~ battles he lost? + +Or was it +My lack of socializing +That kept me subsidizing +Charisma +With each drink +I came across? diff --git a/src/posts/poetry/recollect.md b/src/posts/poetry/recollect.md new file mode 100644 index 0000000..0604600 --- /dev/null +++ b/src/posts/poetry/recollect.md @@ -0,0 +1,54 @@ +--- +categories: + - Poetry +date: 2019-09-24 12:00:00 +0000 +tags: + - Life +title: Recollect +layout: poetry +--- + +The television blared at a volume +That I could hardly handle, +But you were sound asleep +As if such sounds could hold no candle +To whatever sublime sounds +Your subconscious wished to hear; +So I watched the rest, and watched you rest, +As I sipped another beer. + +There goes another little memory +That neither of us can share. +If I add mine up, +And add yours up, +Will it be enough to care? + +My smartphone delivered multimedia +Directly into my eyes and ears +Until the audiovisual stimuli +Had me breaking out in tears; +So I wished to share this moment +But could only share with you a link +And received a couple of emoticons +To reveal what you felt and think. + +There goes another little memory +That neither of us can share. +If I add mine up, +And add yours up, +Will it be enough to care? + +You spoke to me at length on a subject +That you enjoy with such a passion, +But I zoned out a few sentences in +And responded with the most minimal interaction +Until I found a moment to break free +And sought out someone who'd share the stage; +We talked at length about cybersecurity +But I didn't realize you were disengaged. + +There goes another little memory +That neither of us can share. +If I add mine up, +And add yours up, +Will it be enough to care? diff --git a/src/posts/poetry/rose.md b/src/posts/poetry/rose.md new file mode 100644 index 0000000..bf2f35c --- /dev/null +++ b/src/posts/poetry/rose.md @@ -0,0 +1,18 @@ +--- +categories: + - Poetry +date: 2018-02-13 00:00:00 +0000 +tags: + - Death + - Lovers +title: Rose +layout: poetry +--- + +I thought my heart was broken, +Or its voice far too soft-spoken +Until I walked past by a grave. + +It was normally unkempt and bare, +But today a rose sings it a prayer: +A somber song their lover gave. diff --git a/src/posts/poetry/search-party.md b/src/posts/poetry/search-party.md new file mode 100644 index 0000000..66a4973 --- /dev/null +++ b/src/posts/poetry/search-party.md @@ -0,0 +1,30 @@ +--- +categories: + - Poetry +date: 2020-06-21 12:00:00 +0000 +tags: + - Realtalk +title: Search Party +layout: poetry +--- + +You left to interrogate brain cells +On the whereabouts of Miss Happiness +And took the shot +The moment they muttered, +"I'm sorry, I haven't the foggiest." + +It gave you quite the rush to see +Each cell meet its own maker +Which quickly borne a killing spree +With the question as its chaser. + +You never did find Miss Happiness, +But you forgot why you even cared +And mistook her for your carelessness +Whilst so cognitively impaired. + +All revelries meet their end, however, +Which took with it your revelation +Eliminating all of your leads +In the Miss Happiness investigation. diff --git a/src/posts/poetry/secularization-theory.md b/src/posts/poetry/secularization-theory.md new file mode 100644 index 0000000..1666697 --- /dev/null +++ b/src/posts/poetry/secularization-theory.md @@ -0,0 +1,27 @@ +--- +categories: + - Poetry +date: 2016-06-20 00:00:00 +0000 +tags: + - Selection Bias + - Secularization + - Religion +title: Secularization Theory +layout: poetry +--- + +The infinite +Is out of range +Of the finite. + +The ethereal +Is overshadowed +By the limelight. + +It's expanding +Just beyond +Our peripheral vision. + +Selection bias +Negates +The tool's precision. diff --git a/src/posts/poetry/signal-lost.md b/src/posts/poetry/signal-lost.md new file mode 100644 index 0000000..aa2e9c7 --- /dev/null +++ b/src/posts/poetry/signal-lost.md @@ -0,0 +1,29 @@ +--- +categories: + - Poetry +date: 2017-07-20 00:00:00 +0000 +tags: + - Falling Out + - Relationships +title: Signal Lost +layout: poetry +--- + +There's no reason for us to talk +As we discuss meteorological matters. +Our communal cup never fills up +For each time we lose touch, it shatters. + +You see in me a man from before. +I see in you but a shallow shore +With a receding tide +Of our friendship folklore. + +Is there nothing more? + +I've tired of this one-sided conversation +So I'll retire and keep myself complacent +With an assuming posture +And twiddling of thumbs +With the occasional interjection +Of terribly clever puns. diff --git a/src/posts/poetry/silent-silas.md b/src/posts/poetry/silent-silas.md index 3467e69..13e2fb8 100644 --- a/src/posts/poetry/silent-silas.md +++ b/src/posts/poetry/silent-silas.md @@ -6,6 +6,7 @@ tags: - Introspective - Silence title: Silent Silas +layout: poetry --- The windows to my soul diff --git a/src/posts/poetry/silent-sound.md b/src/posts/poetry/silent-sound.md new file mode 100644 index 0000000..73fa45a --- /dev/null +++ b/src/posts/poetry/silent-sound.md @@ -0,0 +1,21 @@ +--- +categories: + - Poetry +date: 2011-04-11 00:00:00 +0000 +tags: + - alliteration + - silence +title: Silent Sound +layout: poetry +--- + +Safely set inside this song +Are silent sounds we passed along. +Secret though we seek to know +Signs of its new secret show. + +Silence hides up in the skies +Far from folks, cars, and lies. +It only lives to watch us die, +For that is when our souls arrive +And silent sounds are synthesized. diff --git a/src/posts/poetry/sips-of-serum.md b/src/posts/poetry/sips-of-serum.md new file mode 100644 index 0000000..e28e3cf --- /dev/null +++ b/src/posts/poetry/sips-of-serum.md @@ -0,0 +1,19 @@ +--- +categories: + - Poetry +date: 2014-11-29 00:00:00 +0000 +tags: + - Realtalk +title: Sips of Serum +layout: poetry +--- + +Honesty is the best policy +If you're considered prodigy. +But I'm left a prodigal son +With money and meals my idolatry. + +Spinning webs of lies +To hide the mess inside. +Donning the mask of Jekyll +As I sip the serum of Hyde. diff --git a/src/posts/poetry/sleep-paralysis.md b/src/posts/poetry/sleep-paralysis.md new file mode 100644 index 0000000..75189dd --- /dev/null +++ b/src/posts/poetry/sleep-paralysis.md @@ -0,0 +1,30 @@ +--- +categories: + - Poetry +date: 2019-02-06 12:00:00 +0000 +tags: + - Dreams + - Late-Night +title: Sleep Paralysis +layout: poetry +--- + +The brain +Signaled +SHUTDOWN. +The mind +Couldn't +KEEP QUIET. +The eyes +Were left +ALL ALONE. +The body +Can't run; +CAN'T FIGHT IT. + +Thoughts are now +RACING +Wheels are now +SPINNING +Fears turn to terror +And ask, "Who's winning?" diff --git a/src/posts/poetry/spaghetti.md b/src/posts/poetry/spaghetti.md new file mode 100644 index 0000000..b30824f --- /dev/null +++ b/src/posts/poetry/spaghetti.md @@ -0,0 +1,47 @@ +--- +categories: + - Poetry +date: 2016-03-15 00:00:00 +0000 +tags: + - Christianity + - Conviction + - Prayer + - Humor +title: Spaghetti +layout: poetry +--- + +A woman bowed down +Before her plate of spaghetti +To send God a prayer +He's heard a thousand times already. + +But Jesus was in such +A mischievous mood +That He let the woman hear +What the Father thought of her food. + +"There she goes again +With her cookie-cutter request +Full of empty words meant +To ensure her noodles are blessed." + +But the woman quickly answered, +"There's no need to be so rude! +I will gladly recant the prayer +If I offended with my gratitude." + +God then replied, +Caught by surprise, +"Sorry, it seems +My Son played a prank! + +When words lose their meaning, +Good intentions are deceiving, +So now it's uncertain +Who's receiving your thanks. + +People only speak to me +Before they eat and sleep. +Has it become impolite +To think on your feet?" diff --git a/src/posts/poetry/spellchecker.md b/src/posts/poetry/spellchecker.md new file mode 100644 index 0000000..af1cb86 --- /dev/null +++ b/src/posts/poetry/spellchecker.md @@ -0,0 +1,26 @@ +--- +categories: + - Poetry +date: 2016-07-10 00:00:00 +0000 +tags: + - School + - Late-Night + - Homework +title: Spellchecker +layout: poetry +--- + +No one should be awake +At this time of night. +Nothing good can come +From what I'll try to write. + +My vision's a bit blurred +As I try to type +So I'm not quite sure +If the keys I press are right, +But I've come this far +So I'll press on in spite. + +Thank you, Spellchecker. +The overseer of my oversight. diff --git a/src/posts/poetry/take-a-breather.md b/src/posts/poetry/take-a-breather.md new file mode 100644 index 0000000..7794f65 --- /dev/null +++ b/src/posts/poetry/take-a-breather.md @@ -0,0 +1,36 @@ +--- +categories: + - Poetry +date: 2021-07-30 12:00:00 +0000 +tags: + - Advice +title: Take A Breather +layout: poetry +--- + +Disasters cannot happen +If anything is fine. + +Lines cannot be crossed +If you don't draw a line. + +Wishes do come true +If any change will do. + +Pain loses its bite +If you enjoy the fight. + +This makes sense at the surface, +But we shouldn't dull our senses. +Our suffering serves a purpose +So let's drop these false pretenses. + +Sit with that sinking feeling +Until you reach its depths +To listen to its teachings; +Resurface to catch your breath. + +Then look out to the horizon +To appreciate the view +Of all the potential futures; +You've a say in which comes true. diff --git a/src/posts/poetry/take-time.md b/src/posts/poetry/take-time.md new file mode 100644 index 0000000..d94fdbe --- /dev/null +++ b/src/posts/poetry/take-time.md @@ -0,0 +1,36 @@ +--- +categories: + - Poetry +date: 2018-12-22 16:27:00 +0000 +tags: + - Time + - Cars + - Advice + - Anger +title: Take Time +layout: poetry +--- + +The perma-pedestrian +Watched in awe +Of the passing cars. + +Each driver longs +To extend their life +With Audis & Jaguars. + +Each piston obeys +Thermodynamic law +Exploding every decisecond. + +The law of inertia +Transfers heat to our heads +Upon braking at the intersection. + +The human VROOMS. +Huffs and FUMES. +Shortcircuits- KaBOOMS! + +The cycle repeats +Until there remains +No more lives to lose. diff --git a/src/posts/poetry/thought-experiment.md b/src/posts/poetry/thought-experiment.md index 6f4a381..0292bf7 100644 --- a/src/posts/poetry/thought-experiment.md +++ b/src/posts/poetry/thought-experiment.md @@ -7,6 +7,7 @@ tags: - Relationships - Realtalk title: Thought Experiment +layout: poetry --- Love is a free fall diff --git a/src/posts/poetry/unintentional-internalization.md b/src/posts/poetry/unintentional-internalization.md index 2ef14be..d52cddf 100644 --- a/src/posts/poetry/unintentional-internalization.md +++ b/src/posts/poetry/unintentional-internalization.md @@ -7,6 +7,7 @@ tags: - Speech - Verbal Abuse title: Unintentional Internalization +layout: poetry --- Our skin's as thick diff --git a/src/posts/poetry/unsettling-beliefs.md b/src/posts/poetry/unsettling-beliefs.md new file mode 100644 index 0000000..f0cb7a9 --- /dev/null +++ b/src/posts/poetry/unsettling-beliefs.md @@ -0,0 +1,21 @@ +--- +categories: + - Poetry +date: 2019-07-24 12:00:00 +0000 +tags: + - Religion +title: Unsettling Beliefs +layout: poetry +--- + +Once you believe that someone can right your wrongs, +That leaves room for war and atomic bombs. + +Once you believe that your rewards lie in heaven, +That leaves room for real-life to place second. + +Once you believe that it all happens for a reason, +That leaves room to equate all change with treason. + +Once you believe that you're free to leave the faith, +That leaves room for you to re-open the case. diff --git a/src/posts/poetry/unsolicited.md b/src/posts/poetry/unsolicited.md new file mode 100644 index 0000000..b508a1e --- /dev/null +++ b/src/posts/poetry/unsolicited.md @@ -0,0 +1,27 @@ +--- +categories: + - Poetry +date: 2020-02-01 12:00:00 +0000 +tags: + - Realtalk +title: Unsolicited +layout: poetry +--- + +you shoulda, woulda +— or could ya shuddup? +i didn't, but isn't +that tangent fucked up? +just listen & envision; +decisions are tough. +the rocks in my shoes +are to you only dust. + +i did what i've done +and i did it with love; +if that doesn't do, +don't tell me what does; +for advice without end +advises you to give up. +but i've learned to let live +to let you keep this up. diff --git a/src/posts/poetry/verbal-blunder.md b/src/posts/poetry/verbal-blunder.md new file mode 100644 index 0000000..dae893f --- /dev/null +++ b/src/posts/poetry/verbal-blunder.md @@ -0,0 +1,34 @@ +--- +categories: + - Poetry +date: 2012-11-05 00:00:00 +0000 +tags: + - Humor + - Realtalk + - Silence +title: Verbal Blunder +layout: poetry +--- + +No! +That was simply a slip of the tongue. +Is it too late for me to play along? + +I fear I'm no longer as mysterious, +As wise, and as fearless +As I've implied myself to be. + +I've revealed my true colors. +I'll soon be discovered; +This shall show my sheer stupidity! + +'Tis time to hang up my hat and accept this mistake +Since it seems I don't quite have what it takes +To fool these fools how non-foolish I am. +If only things had gone according to plan, + +For I have heard it said: +He who knows, does not speak. +He who speaks, does not know. +I had taken this to heart +And so my heart I would never show. diff --git a/src/posts/poetry/wanderlust.md b/src/posts/poetry/wanderlust.md new file mode 100644 index 0000000..6215f41 --- /dev/null +++ b/src/posts/poetry/wanderlust.md @@ -0,0 +1,31 @@ +--- +categories: + - Poetry +date: 2015-09-25 00:00:00 +0000 +tags: + - Fate + - Christianity + - Realtalk +title: Wanderlust +layout: poetry +--- + +Do you still claim for there to be +No chance of a random possibility +Because our God planned out eternity? +But what good does that do +For the likes of me? + +If you don't know the hand you're dealt +And faithfulness determines not your wealth, +Then why not loosen up your bible belt? +We can only ascertain +Our ascent +To heaven or hell. + +The rain falls down on the wicked and the just. +We pack our bags and pray to God in whom we trust. +Our plans fall through as we return to dust +And beg our God +To cure +Our wanderlust. diff --git a/src/posts/poetry/who-am-i-.md b/src/posts/poetry/who-am-i-.md index 52348b5..376cc01 100644 --- a/src/posts/poetry/who-am-i-.md +++ b/src/posts/poetry/who-am-i-.md @@ -5,6 +5,7 @@ date: 2013-05-10 00:00:00 +0000 tags: - Realtalk title: Who Am I? +layout: poetry --- Am I the clothes on my back diff --git a/src/posts/poetry/you-are.md b/src/posts/poetry/you-are.md new file mode 100644 index 0000000..45a04d0 --- /dev/null +++ b/src/posts/poetry/you-are.md @@ -0,0 +1,31 @@ +--- +categories: + - Poetry +date: 2015-10-25 00:00:00 +0000 +tags: + - Relationships + - Clever + - New Years +title: You Are +layout: poetry +--- + +You're the rest of a phrase +On the tip of my tongue. +You're the forgotten hook +To a song I'd once sung. + +You're the key to a lock +Hanging just out of reach. +You're the part of the lesson +Our professors couldn't teach. + +You're the tough decision +My mind could never make. +You're the perfect chord +I would find by mistake. + +You're the trivial problems +And their pseudo-solution. +You're the broken promise +Of my New Year's Resolution. diff --git a/src/posts/thoughts/altered-states-of-consciousness.md b/src/posts/thoughts/altered-states-of-consciousness.md new file mode 100644 index 0000000..87f7d72 --- /dev/null +++ b/src/posts/thoughts/altered-states-of-consciousness.md @@ -0,0 +1,43 @@ +--- +categories: + - blog +date: 2019-03-04 23:04:08 +0000 +tags: + - Consciousness +title: Altered States Of Consciousness +year: 2019 +layout: thoughts +--- + +I've been obsessed with neuroscience as of late. What follows are just a few points I found remarkable in my reading of Altered States of Consciousness - Experiences Out of Time and Self by Marc Wittmann. + +In a life or death situation, it's quite blurry whether people truly experience time in slow motion, or if they only remember their emotionally-charged event that way. It's a difficult phenomenon to replicate in a laboratory setting for obvious reasons. Witmann's theory, however, is that precisely this "perception of bodily processes is connected to time consciousness". Their mind is fully-engaged and recording every detail of these precious moments. [p.11] + +"Subjective time can be quantified [...] only by comparison with external factors." [p.19] As Whittmann explores later, this gives credence to the idea that the mind-body keeps track of time through the act of keeping tabs on itself. In Computer Science lingo, it "pings" for a response from the different areas of the body, which is part of the puzzle to produce subjective time. + +With substance withdrawal, "one lives unhappily in the present, and one's relationship to the present is heightened." [p.22] There's a drastic overestimation of the passing of time. + +The mystical is experienced by focusing primarily on the now, foregoing the past and future. On this subject, Wittmann also includes a dope Epicurus quote: "While we exist, death is not present, and when death is present we no longer exist." + +Yet, don't be too obsessed with the present. Instead, the ideal "present" attitude is an "individual who is not predominantly oriented toward the past (unable to let go), toward the present (impulsively reward-oriented), or toward the future (purely deadline-oriented), but rather who can switch freely between time orientations, who can exercise temporal freedom." [p.43] + + + +Protention: What we expect to experience. +Urimpression: What we experience now. +Retention: Memories not quite in the past; still held in the now. +Together, all three influence how the others are perceived. [p.48] + + + + + +The "experienced moment" is best illustrated by the time it takes for the mind to switch perspective of the "necker cube" optical illusion. + +Whittmann also presents a good bit of evidence that mindfulness meditation gives rise to time expansion, along with improved working memory. The theory is that if you are more aware of the moment, you remember more of your experienced moments, and thusly subjective time expands. [p.55] Most notably, experienced meditators can hold a perspective of the Necker Cube for longer, and were found to feel that the past few weeks/months passed more slowly compared to a control group. + +The mystical experience of "Timelessness" might perhaps be the experience of pure _urimpression_, untouched by preconceptions. Neither protention nor retention remains. No guide for the past or future. The self dissipates. [p.72] + +"Boredom actually means that we find ourselves boring. It's the intensive self-reference: we are bored with ourselves. We are tired of ourselves." [p.85] + +"There is no sense organ for time. Subjective time as a sense of self is a physically and emotionally felt wholeness of our entire self through time."[p.85] We can see this most clearly in studies of schizophrenia. The patients are "stuck" in the present. This disruption of perceived temporal flow collapses the self into "fragments of now." [p.99] Their "functional moment" lengthens. Their "experienced moment" is lost. diff --git a/src/posts/thoughts/how-to-not-get-hacked.md b/src/posts/thoughts/how-to-not-get-hacked.md new file mode 100644 index 0000000..aa63325 --- /dev/null +++ b/src/posts/thoughts/how-to-not-get-hacked.md @@ -0,0 +1,25 @@ +--- +categories: + - blog +date: 2019-03-10 23:04:08 +0000 +tags: + - Privacy +title: How To Not Get Hacked +year: 2019 +draft: true +layout: thoughts +--- + +Alright, it's near the end of 2019. We've had plenty of time to figure out how to get rid of passwords. But we haven't. They're still here. So it's about time we admit that they're here to stay, and that we must better acquaint ourselves with them. + +I'm here to make the case for _you_ to change a few of your digital habits. You will no longer release an exasperated sigh when you see the dreaded "Sign Up" button for Yet Another Website. Your friends will no longer need to spend 15 minutes wrestling with your foggy memory to figure out your WiFi password, or perhaps your Netflix credentials, you dirty account-sharing lawbreakers. You will no longer need to hit the "Forgot Password" button for every site you only use once in a blue moon. Your hair will grow back and its color regain vibrancy. Your friends will respect you, and your enemies will fear you. Some of your friends will also fear you, but that's okay. They were always afraid. + +Most importantly: You will no longer get hacked. + +And no, I don't mean the kind where a friend posts a dumb status on your Facebook wall while you went to the bathroom. I mean the kind where you get a scary email that someone in Romania tried to access your Pinterest account at 2am EST. The kind where your computer starts to slow down and opens weird windows at random intervals. The kind where thousands of dollars were charged to your bank account, and you have to replace your credit card after proving the charges weren't made by you. + +## Password Managers + +## Footnotes + +[0] test diff --git a/src/posts/thoughts/not-so-random.md b/src/posts/thoughts/not-so-random.md new file mode 100644 index 0000000..9732513 --- /dev/null +++ b/src/posts/thoughts/not-so-random.md @@ -0,0 +1,119 @@ +--- +categories: + - blog +date: 2019-03-10 23:04:08 +0000 +tags: +title: Lol, Aren't I So Random? +year: 2019 +layout: thoughts +--- + +How random do you think you are?[0] + +On the surface, randomness seems pretty straight-forward. But it gets messy pretty quick once you try to pin down what it actually _is_. But before we dive down that philosophical rabbit hole, let us first take a gander at this little t-shirt: + + + +### A Bit Too Cryptic + +It used to be illegal to wear this shirt outside of the States. The math which we now depend on for logging into our bank accounts and securely processing credit card numbers was thought of as a military weapon. Why is that? Simply because it ensures that no outside parties can eavesdrop on your conversations. All of the information is _encrypted_, which means it looks like random gibberish in transit. The recipient, however, can _decrypt_ it to reveal what was written. + +

    A real-world example of military-grade encryption put to good use.

    + +The usefulness of such technology in a military setting should be obvious. Conversely, it is obviously in our militant government's best interests that only they can use this technology - everyone else, both citizen and enemy, should ideally not have the ability to encrypt their messages. This way their communications can be intercepted, and any espionage may be thwarted. None of this technology is new; mankind has been utilizing encryption for as long as our written record can remember[1]. The only difference with the situation today is that our communications are nearly instantaneous, and the encryption is much tougher to break. + +### A Bit Too Random + +Alright, so maybe all of that is going a bit overboard. Let's say we're just developing a game. For the intro scene, you want the protagonist to feel absolutely helpless as she's surrounded by a torrent of randomly-placed enemies. Which of these distributions seem to pull that off the best? + +

    +Hmm, I think I can probably take em.

    + +

    +Welp, it was a good life while it lasted.

    + +Both have the same amount of red dots. A truly random distribution _could_ potentially look like the second image, but it's actually much more likely for it to have properties in the first image that seem anti-random to our pattern-seeking minds. How could those red dots cluster up like that? Paradoxically, it would seem that the first distribution is a bit _too random_. Instead, our game is in need of _evenly-distributed quasi-randomness_. + +

    +I could watch an evenly-distributed quasi-random number generator all day

    + +This is almost _always_ the type of randomness you want, because it just seems so random to us. You're in a completely different ballgame, however, once you want your number generator to be so random, that no one is able to guess the next number it generates, _even if_ they already know every number its generated thus far. You probably have money or lives at stake here. + +### Bits Byte Back + +And so back to the military we go! One of the oldest and most commonly-known methods of encryption is called the Caesar Cipher, named after Julius Caesar, who apparently used it for military matters. It was likely that his enemies were illiterate or would think his gibberish was a foreign language, so it was secure enough. Otherwise, it takes only 25 tries to guess the message correctly if you knew the methodology. Essentially, you'd choose a number, and then offset every letter in your message by that number. So if you chose 3, then all A's would become D's, all B's would become E's, and so on. Not only was it easy to figure out the number you offset everything by, but just like most other old-school ciphers, it quickly breaks under frequency analysis: some letters are used much more often than others in the English language, and some letters are much more likely to be found before/after certain letters (like 'u' following a 'q'). So once you see that the gibberish has a lot of H's and S's, you could try swapping those with perhaps A's, E's, or T's, and figure out the rest from there. + +

    +After reading this, your mind will notice how many e's are in this article.

    + +We didn't really get too fancy with encryption until we could build machines to automate it all for us. Encryption was simply a lot of scrambling of words/letters, and making sure your recipient knows the trick to undo those operations. This then brings us to the legendary Enigma Machine, whose algorithm was first broken only due to operational errors, and was used with great success by Nazi Germany in WWII. Up until the era of the Enigma, cracking ciphers required mainly only linguistic and literary prowess. These machines and their increasingly complex algorithms took us deep into the mathematical realm as they resisted our older methods of cryptanalysis, like the aforementioned frequency analysis. This developed into a theory called Confusion and Diffusion which details the two properties ciphers must have to be impervious to pure cryptanalysis. It should be noted that we're still using the same techniques of scrambling & substituting letters like in Ye Olden Days - machinery simply allows us to do many more complex patterns without too much work on the recipient's end to undo it. + +### Speak 'Friend', Press Enter + +Which finally brings us back to that t-shirt I showed you earlier! Basically, some smart dudes in the late 70's came up with the RSA algorithm. Its security is based on the fact that it's really difficult to figure out what two numbers constitute a very large composite number. + +

    +Don't worry if this looks confusing. Just know that RSA's got maths.

    + +This algorithm gives you a public key which you can show to everyone, and then a private key which you keep only to yourself. Now if you wanted to talk to your homie Rivest, you'd look for his public key and use it to encrypt your message to him. Rivest then receives this encrypted message, and thanks to some unique mathematical properties of RSA, his private key is able to decrypt your message! + +With sufficiently large RSA keys, it takes literally thousands of years for computers to crack it[2]. It's not just how long it takes to crack an RSA key that makes it so groundbreaking; we've had things like the One-Time Pad, which is truly uncrackable. No, it's the fact that you don't need to give your intended recipient a key beforehand. Imagine that your public key is essentially your house address, and everyone on the planet can now talk to you with complete security by simply looking you up on Yellow Pages. + +## Cracking The Code + +Let's take a quick look at the math that makes RSA so difficult to crack. The first thing you need to know is the concept of _Entropy_. If you search for the term, you'll probably get a lot of physics-related results; but it plays a huge role in the field of cryptography as well. In physics terms, entropy is how chaotic a given system is. i.e., an event is considered to have _0 bits of entropy_ if there's no chaos; we're absolutely certain of what's going to happen next. Conversely, an event is considered to have _1 bit of entropy_ if we're 50% certain of what's going to happen next, like whether a coin will land heads or tails. + +

    +Don't worry 'bout why we use this algorithm. Programmers and computers just like 1's and 0's.

    + +So let's say you're trying to figure out someone's password. You know it has uppercase, lowercase, and decimal characters. This means that one character in their password could be in 1 of 62 possible states (26 uppercase + 26 lowercase + 10 digits). You'd plug that number in our handy-dancy algorithm, and we get ~5.95 bits of entropy. Now let's say that you know this person's password is exactly 10 characters long. We can multiply the entropy of one character (~5.95) by the length of the password (10) to get us ~59.5 bits of entropy. + +The importance of this number is that it allows us to easily figure out how crackable this password is. Let's check that number against this chart: + +

    +We're under the UPPER + lower + 0-9 column. Scroll down to 10 for our password length. Now to the right, you can see how much time it takes to crack, on average, depending on how many guesses the attacker can make per second.

    + +So if you can make 100 billion guesses per second, then on average, you can crack this password in somewhere between 33 days and 4.4 months. That's not too shabby. If you have access to the database (which is much more common than one might think), and they didn't use a good hashing algorithm to slow you down, then your target doesn't have much time to change their password before you can get into their account. Not only that, but people are prone to re-use passwords, so you can likely try your newly obtained username & password on different services your target might be using. Great work, black hat! + +Now let's make more sense of these numbers. This 10 character password of ours could be in 1 of 839,299,365,868,340,200 possible states (i.e., 62 possible states per character, raised to the power of 10 for our password length). This means that, on average, you will need to try about half of those possibilities before you finally stumble across the correct one[3]. If you have a handful of Nvidia GTX 1080 GPU's working on the same password, then it can be cracked pretty much instantaneously (with exceptions for databases using newer hashing algorithms specifically designed to thwart the parallelization of GPUs). + +To put RSA into perspective, data encrypted with 1024-bit RSA can be in 1 of ~3.2317 × 10^309 possible states. It took two years for researchers with many, many computers to crack one of those keys. For the curious, you can try out my password generator to interactively test the cracking speeds of various lengths/types of passwords. If it took a team of researchers two years to crack 1024 bits of entropy, imagine how fast you could crack it if you had the power of Big Brother in your hands! + +### Randomness Is Tricky + +Alright, so all this encryption stuff is cool and all. But let's tie this back in to the concept of randomness. You see, to generate keys for RSA and the like, we need to feed the key-generating algorithms strings of "randomness". It doesn't matter if you have 1024bit RSA keys if your attacker knows you always use the same numbers to generate them. In the real world, using a flawed number generator to produce keys will result in the encrypted data to not be as random as it should be; attackers can predict the output because the number generator has a few patterns that the attackers have picked up on. + +And so to be a cryptographically-secure random number generator, it only needs two properties: + +Uniformity - each number is equally-probably to appear next. It's not more likely for a "7" to appear next compared to a "4", for instance. + +Independence - Each number generated tells you nothing about any previous or future values. If a "7" appears, then that shouldn't mean there was definitely a "4" before it, or a non "7" number after it. + +To determine if your number generator has these two properties, you run it through what is called the Next-Bit Test. You'd have your number generator spit out 1's and 0's (which is what we call bits). If an attacker knows every bit that you've generated, it passes the test if they can't determine the next bit it generates without more than 50% accuracy. They should be wrong about half the time on whether it spits out a 1 or 0. + +

    +My money is on 1; 0 hasn't been doing too well this season.

    + +Ideally, you wouldn't want your source of randomness to come from a number generator at all. If the attacker knows your algorithm, and which values you first inputted into that algorithm, then they can determine _every single number it generates_. Instead, you'd want to rely on getting your random values from chaotic systems outside of the computer. This could be the noise generated by the fan, your exact mouse movements, the times at which you press certain keys, and so on. It's hard to get tons of random values from these sources, since they're limited by time. So in the real world, we use a hybrid method to generate keys. First you get "truly random" numbers from outside the computer, and then use those numbers to initialize your number generator. This way, it's very difficult for an attacker to know which values you started with, and you're free to generate as much randomness as your transistors desire. + + + +### A Completely Random Bit + +I could go on and on about randomness. Hopefully it's apparent that we need separate words for the different types of "random" that we use in life. In fact, all of the randomness I've spoken about thus far are technically "quasi-random." They're simply larger and larger levels of complexity. There's no such thing as truly "random," at least for anything we'll come across in our day-to-day lives. I'm not a physicist, but the following is my current understanding of how quantum mechanics plays into the matter. + +True randomness can be derived from an indeterministic system, but we've yet to prove whether such a system can exist. Heisenburg's Uncertainty Principle is probably our best argument that quantum mechanics is an indeterministic system. It states that, at the subatomic level, "the more precisely the position of some particle is determined, the less precisely its momentum can be known, and vice versa."[4] Therefore it's impossible for us to know the state of every particle in the universe and "predict" the future. We could perhaps figure out a pretty likely future, but chaos theory throws a wrench in that plan. The implications of this Uncertainty Principle freaked Einstein out. He insisted that quantum mechanics is simply missing a local[5] hidden variable, and upon knowing that variable, we can then accurately predict quantum interactions. But it wasn't long before we hit another roadblock with Bell's Theorem, whereby no theory with local hidden variables can reproduce quantum mechanic's predictions. This means there's either something that can travel faster than the speed of light to influence these particles, or the underlying laws of the universe are truly indeterministic. I won't be making any bets on the matter. But in the meantime, we're good to use quantum (radioactive decay in particular) to generate random bits so long as it's undetermined whether quantum mechanics is indeterministic. + +## Footnotes + +

    [0] This interactive site has you repeatedly press left or right, while the computer guesses what moves you make. There's also a button to have a pseudo-random algorithm choose for you, and it will assuredly fare better than you (unless you really know your math and feed it a 6-gram De Bruijn sequence)

    + +

    [1] You can even find encryption tips in an ancient Hindu text on sexuality. It seems that all is `****` in love and war.

    + +

    [2] It should be noted that it's still unproven whether RSA's math is truly difficult to solve. Any day now, someone may come up with a mathemetical technique to quickly factor large numbers. Or we may develop a quantum computer with enough qubits to blow through every possible solution in a moment.

    + +

    [3] If you're doubtful that anyone is out there trying to crack your password in particular, then let this site be a sobering wake-up call; It's an entire community dedicated to cracking passwords from database leaks, including the most recent & legendary Collection #1 leak. It's very, very likely that you have credentials in one of these leaks. You can see for yourself with Troy Hunt's Have I Been Pwned service. It's a safe site; Troy Hunt is a well-known security researcher, and this service of his is built-in to the amazing 1Password app.

    + +

    [4] The Uncertainty Principle - Should also be noted that this differs from the Observer Effect, wherein the act of observation disturbs the state of the particle (since the light we must use to observe the state interacts with it). Heisenburg himself originally thought his Uncertainty Principle was the mathematical explanation of the observer effect, but it's actually a mathematical explanation of how much information can be gleaned from the particle-wave duality, which we can now experientially test.

    + +

    [5] Local, in this context, means it can only be influenced by its immediate surroundings. Nonlocality scares Einstein, because it means that _something_ can travel faster than the speed of light, breaking the theory of relativity. For more info, look up "Spooky Action At A Distance".

    diff --git a/src/posts/thoughts/silence-is-golden.md b/src/posts/thoughts/silence-is-golden.md new file mode 100644 index 0000000..b69f9ca --- /dev/null +++ b/src/posts/thoughts/silence-is-golden.md @@ -0,0 +1,20 @@ +--- +categories: + - blog +date: 2018-07-29 23:04:08 +0000 +tags: + - Introduction +title: Silence Is Golden +year: 2018 +layout: thoughts +--- + +Hey there! Welcome to Silent Silas. I write code during the day, and poetry at night. This is my playground. + +This section in particular is where I'll discuss my terrible opinions on life, the universe, and the objectification of humanity. + +For the web developers out there, this was built with SvelteKit via the Threlte Framework so that my web experiments that rely on ThreeJS can be hosted here. It'll eventually use Service Workers so that the entirety of the site is available offline. + +As with most computer scientists, I stand on the shoulders of giants. + +The code is on Github under the MIT license (while the poetry is under a restrictive Creative Commons license). diff --git a/src/posts/thoughts/the-science-of-teas.md b/src/posts/thoughts/the-science-of-teas.md new file mode 100644 index 0000000..ff19595 --- /dev/null +++ b/src/posts/thoughts/the-science-of-teas.md @@ -0,0 +1,85 @@ +--- +categories: + - blog +date: 2022-03-27 12:04:08 +0000 +tags: + - tea +title: The Science of Tea +year: 2022 +layout: thoughts +--- + +Tea is filled to the brim with a rich history spanning several millenia. We have historical documents which show that tea was produced and appreciated as early as 1,100 BC in southwest China[1]. And according to legends, it's believed that in 2737 BC, the servants of the mythic emperor Shennong were boiling water to remove its impurities for him to drink. A dead leaf from a tea bush fell in, and was presented to the emperor with its brownish color gone unnoticed. The emperor took a liking to the taste, and thus tea was born. + +

    Photo-lithograph of the Huayang Guozhi—Bazhi, the oldest document to mention tea

    + +One might think it's simply a matter of plucking leaves and steeping them in hot water, akin to the legend, but every aspect of its production and preparation is nailed down to a science to chemically and biologically alter the leaves to produce the tastiest and least-bitter cup possible. In 760 CE, Lu Yu, an orphan adopted by a Buddhist monk (and promptly ran away to join the circus), dedicated years of his life to chronicle all of his knowledge on tea believing it to be an expression of the harmony and unity of the universe. + +
    +
    A Thousand mountains will greet my departing friend,
    +When the spring teas blossom again.
    +With such breadth and wisdom,
    +Serenely picking tea—
    +Through morning mists
    +Or crimson evening clouds—
    +His solitary journey is my envy.
    +We rendezvous at a remote mountain temple,
    +Where we enjoy tea by a clear pebble fountain.
    +In that silent night,
    +Lit only by candlelight,
    +I struck a marble bell—
    +Its chime carrying me
    +A hidden man
    +Deep into thoughts of ages past.
    +
    —Huangfu Zeng (~700 CE) , "The Day I Saw Lu Yu off to Pick Tea"
    +
    + +## Types of Tea + +The most crucial aspect of harvesting tea, and what differentiates a green tea from a red tea (which is what the West calls black tea[2], but will be refered to here as red tea from henceforth), is how long the leaves are oxidized. When the tea leaves are plucked and exposed to oxygen, their cell walls break down and gradually blacken in color. Through this process, the bitter polyphenols, catechins, are converted into less bitter polyphenols, tannins, which are richer and astringent, often giving a malty or fruity taste.[3] + +Once the leaves reach the desired level of oxidization, they are heated up to stop the oxidization process, usually by steaming or roasting which has its own impact on how the tea will taste. Japanese green teas are generally steamed, which helps retain its green hue and vegetal taste, while Chinese green teas are roasted imparting a toasty flavor and a more yellow hue. Red teas are gently dried in the sun to reach the highest levels of oxidization without it going stale. A fun outlier is lapsang souchong, a chinese red tea roasted over a fire of pine, resulting in a very smoky aroma and taste. + +

    There are quite a lot of steps before tea makes it to your cup.

    + +

    Red teas are the most oxidized (80% - 95% oxidized). They are rolled upon plucking to damage them, speeding up the oxidization process. They can have the widest range of flavor, as less bitter catechins remain to mask the flavors picked up from their environment.

    + +

    Green teas are the least oxidized (1% - 3% oxidized), and are heated up immediately after they're plucked. They taste vegetal and grassy, and are steeped at a lower water temperature to extract less of the bitter catechins.

    + +

    Oolong teas have the broadest range of oxidization (10% to 80% oxidized). Consequently, their flavor widely varies. A less oxidized oolong will taste more vegetal and floral like a green tea, while one on the higher end of oxidization might be rich and malty like a red tea.

    + +Black tea (again, not what the West calls black tea) brings an entirely new element to the mix. It's not determined by its level of oxidization, but whether the leaves are fermented. Microbes break down compounds in the leaves, altering their flavor profile. There are two different methods to age the tea. Raw black tea refers to the traditional method where you simply stow the tea away to slowly ferment over the years, peaking at roughly 50 years before the leaves begin to degrade. Ripe black tea refers to a new technique discovered in 1973, where the leaves are stored in large piles in a humid environment and splashed with water, turning them every other day for up to a month. They're then stowed away like a raw black tea, but peak in quality in only 20 years. These fermented teas tend to have a musty smell and taste earthier as the years go by. They are the aged wines of tea, and can be just as expensive. + +

    Pu-erh is fermented tea from Yunnan, China

    + +CTC tea, or bagged tea, is what you'll find at your grocery store. They are crushed, teared, and curled by machinery into small pellets. It was invented in 1930 to meet the increasing demand for tea in a global economy. They tend to use low quality leaves, which are then stressed and heavily damaged by the CTC process, and take months before they land on a store's shelf, resulting in unavoidable bitterness that mask the more desirable flavors. + +## Other Factors + +Which season the tea is harvested plays a significant role in their quality. With a spring harvest, the leaves have weathered through winter and pick up a lot more flavors from their environment. With a late-spring/summer harvest, the tea plants grow rapidly, but have less time to capture as much flavor. For autumn harvests, the plants are dying as winter approaches and are the least desirable. + +Sunlight exposure has its own chemical reaction that influences the taste of the tea. Exposure during growth lowers the amount of full/creamy-tasting amino acids. Gyokuro, the highest grade of Japanese green tea, must be harvested in the spring and partially shaded during growth. + +There will also be differences in tea by their location, due to the climate they're grown in and which varietal of tea plant species they are. For example, teas grown in India generally produce a stronger red tea than those grown in the various provinces of China. There's even a relatively new varietal grown in Kenya called Purple Tea, named for their vibrant purple leaves. + +And of course, the tea to water ratio, steeping time, and water temperature[4] are integral to getting the perfect cup of tea. Red teas are tougher due to their high oxidization and thus can be steeped at a boiling temperature for 3-5 minutes, extracting the most out of the leaves. Oolong can generally handle 190 - 200f, with green tea the most sensitive at 170 - 180f. If they're steeped for too long, more of the bitter catechins will be extracted and take over. This is also why it's important to be sure to filter out any small particulates of the leaves to prevent oversteeping. High quality leaves will have less "dust" you need to filter out due to their freshness and tenderness; the leaves turn more brittle as time passes. + +## Gongfu Cha + +To get the most out of your finest red or black tea, you can also try your hand at gongfu cha. It essentially means skillful brewing of tea, and is an artform in itself. Instead of the traditional Western method of brewing a teaspoon of tea in a cup's worth of water for a few minutes, you brew ~1.5 teaspoons of tea in half a cup of water and let it steep for only a few seconds[5]. This first steep opens up the leaves to bring out more flavor, but the liquor will be weak and unimpressive. It's only used to warm up your teaware before finally pouring it out. You then heat up the water again and steep the leaves for ~10 seconds, adding 10 to 15 seconds with each subsequential steep. You will be able to taste the different flavor profiles of the tea with every steep until you tire out the leaves and the strength of the flavors weaken. + +

    A slotted tray for gongfu cha, to capture the first discarded pour and any accidental spills.

    + +There's a lot more to be said on the production and preparation of tea, but hopefully this whets your appetite to dive into the world of loose leaf teas! If you're interested in giving it a try, I use this single-serve cup infuser on a daily basis. + +## Footnotes + +

    [1] Found in the Huayang Guozhi—Bazhi - A local gazetter from ~350AD in southwest China consisting of biographies of various rulers, including King Wu of the Zhou Dynasty and his 1066 BC expedition against eight principalities, whereby tea was used as tribute offerings.

    + +

    [2] The East classified their teas by the color of the liquid after it's brewed. It's thought that a simple mistranslation between western and eastern traders resulted in the West believing the distinction was based on the color of the leaves. To add to the confusion, red teas in the West are now associated with rooibos tea. And finally, there's debate on how oolong got its name (literally "black dragon"), but it's likely referring to the color and shape of the leaves, breaking the usual system of classification.

    + +

    [3] Heavier polyphenols, known as tannins, taste less bitter than lighter ones like catechins. The reason for this is still a mystery to this day!

    + +

    [4] It's also very important to use clean purified/spring water. You will notice a night and day difference in taste using filtered water versus unfiltered tap water. The hardness of tap water will simply make it taste funky.

    + +

    [5] The ratio of tea to water actually varies by the shape of the tea leaves and whether it's compressed (which is common for fermented teas as they are stored this way), but these measurements should get you in the right ballpark. Ideally you should use a scale to measure the tea's weight, as teaspoons are unreliable to determine how much tea is in your cup.

    diff --git a/src/posts/thoughts/whispers-in-the-wind.md b/src/posts/thoughts/whispers-in-the-wind.md new file mode 100644 index 0000000..980b60a --- /dev/null +++ b/src/posts/thoughts/whispers-in-the-wind.md @@ -0,0 +1,35 @@ +--- +categories: + - blog +date: 2018-08-06 23:04:08 +0000 +tags: + - Privacy + - Surveillance State +title: Whispers in the Wind +year: 2018 +layout: thoughts +--- + +
    +
    +The information above is just a small snippet of your browser's fingerprint. It's the data that websites can collect about the device you're using. (They're also able to access your GPS if you're silly enough to let them.) + +At first glance, the data looks pretty innocuous. Who cares if people know what browser you're using, or what plugins you've installed? Is it the end of the world if they know that you're a Mac user? + +Well, individually, the data _is_ indeed innocuous. The original purpose in giving site owners this information is so that they can adapt their application to better suit the device it's run on. My homepage animations, for instance, adapt to the size of the screen and whether it's run on a mobile or desktop device. + +#### United, I am. Divided, Unknown. + +Once you put all of the information together, however, there's a potential for misuse. It's very easy to be the only person on the digital planet running that exact version of browser on that exact OS with those exact plugins/fonts installed, et cetera. + +Using this information, it's possible to derive a Unique User Identification Number[0] and use it to track you across the internet, regardless of where you're connecting from. + +An advertisement network will check if they have this identification number. If they do, then that means that they already have a list of sites the user has previously visited, along with any other data they've determined about the user. This is then used to display ads relevant to your assumed interests. + +This type of invasive tracking, on the other hand, is also used to flag suspicious activity with your online accounts. I'm sure you've encountered sites that require you to click a link in your email to verify that a new device was indeed you. This is a great and highly effective service to thwart malicious login attempts[1]. + +But it's hard to know what goes on behind the curtains. Those sites providing these security services could also be using that same personal information in many other ways. The EU's GDPR is supposed to ensure companies are transparent about what's done with such information, but it's difficult to enforce and easy to evade. + +[0]: You put all the information together and run it through a 'hashing algorithm'. The same information will always result in the same string of numbers and letters. A slight change in this information (like if the user updates their browser) will result in a vastly different string, so additional work has to be done for this tracking to be effective. +
    +A much more effective way to thwart malicious login attempts is to use a password manager so that you don't reuse passwords and/or use easy-to-guess passwords. But that's a post for another day. diff --git a/src/routes/(app)/+layout.svelte b/src/routes/(app)/+layout.svelte index 6d98fb3..f44424b 100644 --- a/src/routes/(app)/+layout.svelte +++ b/src/routes/(app)/+layout.svelte @@ -7,7 +7,8 @@ let searchQuery = ''; async function handleSearch() { - const response = await fetch(`/api/poetry/search?q=${encodeURIComponent(searchQuery)}`); + const section = window.location.pathname.split('/')[1]; + const response = await fetch(`/api/${section}/search?q=${encodeURIComponent(searchQuery)}`); if (response.ok) { const data: SearchResult[] = await response.json(); searchResults.set(data); @@ -45,8 +46,8 @@
  • Thoughts
  • Poetry
  • Projects
  • -
  • Experiments
  • Services
  • +
  • Experiments
  • silentsilas @@ -76,8 +77,8 @@
  • Thoughts
  • Poetry
  • Projects
  • -
  • Experiments
  • Services
  • +
  • Experiments
  • diff --git a/src/routes/(app)/+page.svelte b/src/routes/(app)/+page.svelte index d3a2e4d..ee042be 100644 --- a/src/routes/(app)/+page.svelte +++ b/src/routes/(app)/+page.svelte @@ -45,6 +45,7 @@ onMount(() => { visible = true; + searchResults.set([]); const interval = setInterval(getRandomGreeting, 3000); return () => clearInterval(interval); }); diff --git a/src/routes/(app)/poetry/+page.svelte b/src/routes/(app)/poetry/+page.svelte index fd1f278..4669618 100644 --- a/src/routes/(app)/poetry/+page.svelte +++ b/src/routes/(app)/poetry/+page.svelte @@ -3,6 +3,7 @@ import { page } from '$app/stores'; import { searchResults } from '$lib/store'; import type { SearchResult } from '$lib/utils/search'; + import { onMount } from 'svelte'; import type { PageData } from '../poetry/$types'; export let data: PageData; @@ -37,6 +38,10 @@ totalPages = Math.ceil(total / limit); } + onMount(() => { + searchResults.set([]); + }); + function navigate(page: number) { fetchData(page); goto(`/poetry/?page=${page}`, { replaceState: true }); diff --git a/src/routes/(app)/poetry/[slug]/+page.svelte b/src/routes/(app)/poetry/[slug]/+page.svelte index 409a81a..529a0f8 100644 --- a/src/routes/(app)/poetry/[slug]/+page.svelte +++ b/src/routes/(app)/poetry/[slug]/+page.svelte @@ -1,12 +1,26 @@ -
    -

    {title}

    - - Back to Poetry -
    +{#if results.length <= 0} +
    +

    {title}

    + + Back to Poetry +
    +{/if} diff --git a/src/routes/(app)/poetry/[slug]/+page.ts b/src/routes/(app)/poetry/[slug]/+page.ts index 2249bb7..7dfa03a 100644 --- a/src/routes/(app)/poetry/[slug]/+page.ts +++ b/src/routes/(app)/poetry/[slug]/+page.ts @@ -2,7 +2,7 @@ import type { Metadata } from '$lib/utils/index.js'; export async function load({ params }) { const post = await import(`../../../../posts/poetry/${params.slug}.md`); - const { title, date, categories } = post.metadata as Metadata; + const { title, date, categories, draft } = post.metadata as Metadata; const Content = post.default; const parsedDate = new Date(date.slice(0, date.length - 6)); const validDate = `${ @@ -14,6 +14,7 @@ export async function load({ params }) { title, date: validDate, categories, - post + post, + draft }; } diff --git a/src/routes/(app)/thoughts/+page.server.ts b/src/routes/(app)/thoughts/+page.server.ts new file mode 100644 index 0000000..6937703 --- /dev/null +++ b/src/routes/(app)/thoughts/+page.server.ts @@ -0,0 +1,15 @@ +export const load = async ({ fetch, url }) => { + const limit = 8; + + const page = Number(url.searchParams.get('page')) || 1; + + const response = await fetch(`/api/thoughts?limit=${limit}&page=${page}`); + const { posts, total } = await response.json(); + + return { + posts, + total, + page, + limit + }; +}; diff --git a/src/routes/(app)/thoughts/+page.svelte b/src/routes/(app)/thoughts/+page.svelte new file mode 100644 index 0000000..a751285 --- /dev/null +++ b/src/routes/(app)/thoughts/+page.svelte @@ -0,0 +1,85 @@ + + +{#if results.length <= 0} +
    +
    +

    Thoughts

    +
    + + +
    + {#if total > 1} + + {/if} +{/if} diff --git a/src/routes/(app)/thoughts/[slug]/+page.svelte b/src/routes/(app)/thoughts/[slug]/+page.svelte new file mode 100644 index 0000000..20edc08 --- /dev/null +++ b/src/routes/(app)/thoughts/[slug]/+page.svelte @@ -0,0 +1,26 @@ + + +{#if results.length <= 0} +
    +

    {title}

    + + Back to Thoughts +
    +{/if} diff --git a/src/routes/(app)/thoughts/[slug]/+page.ts b/src/routes/(app)/thoughts/[slug]/+page.ts new file mode 100644 index 0000000..38e39cc --- /dev/null +++ b/src/routes/(app)/thoughts/[slug]/+page.ts @@ -0,0 +1,20 @@ +import type { Metadata } from '$lib/utils/index.js'; + +export async function load({ params }) { + const post = await import(`../../../../posts/thoughts/${params.slug}.md`); + const { title, date, categories, draft } = post.metadata as Metadata; + const Content = post.default; + const parsedDate = new Date(date.slice(0, date.length - 6)); + const validDate = `${ + parsedDate.getMonth() + 1 + }/${parsedDate.getDate()}/${parsedDate.getFullYear()}`; + + return { + Content, + title, + date: validDate, + categories, + post, + draft + }; +} diff --git a/src/routes/api/thoughts/+server.ts b/src/routes/api/thoughts/+server.ts new file mode 100644 index 0000000..c25a985 --- /dev/null +++ b/src/routes/api/thoughts/+server.ts @@ -0,0 +1,15 @@ +import { fetchMarkdownPosts } from '$lib/utils'; +import { json } from '@sveltejs/kit'; + +export const GET = async ({ url }) => { + const page = Number(url.searchParams.get('page')) || 1; + const limit = Number(url.searchParams.get('limit')) || 8; + const offset = (page - 1) * limit; + const { posts: allPosts, total: total } = await fetchMarkdownPosts('thoughts', limit, offset); + + const sortedPosts = allPosts.sort((a, b) => { + return new Date(b.meta.date).getTime() - new Date(a.meta.date).getTime(); + }); + + return json({ posts: sortedPosts, total: total, page: page }); +}; diff --git a/static/imgs/50_distributed_quasirandom.png b/static/imgs/50_distributed_quasirandom.png new file mode 100644 index 0000000..e24a1f9 Binary files /dev/null and b/static/imgs/50_distributed_quasirandom.png differ diff --git a/static/imgs/50_random.png b/static/imgs/50_random.png new file mode 100644 index 0000000..167f157 Binary files /dev/null and b/static/imgs/50_random.png differ diff --git a/static/imgs/aisha.gif b/static/imgs/aisha.gif new file mode 100644 index 0000000..4f00aa3 Binary files /dev/null and b/static/imgs/aisha.gif differ diff --git a/static/imgs/bells_theorem.PNG b/static/imgs/bells_theorem.PNG new file mode 100644 index 0000000..d641ce6 Binary files /dev/null and b/static/imgs/bells_theorem.PNG differ diff --git a/static/imgs/black_tea.png b/static/imgs/black_tea.png new file mode 100644 index 0000000..540cfbe Binary files /dev/null and b/static/imgs/black_tea.png differ diff --git a/static/imgs/cryption_graph.png b/static/imgs/cryption_graph.png new file mode 100644 index 0000000..0a6cc1d Binary files /dev/null and b/static/imgs/cryption_graph.png differ diff --git a/static/imgs/cs_abstraction.jpg b/static/imgs/cs_abstraction.jpg new file mode 100644 index 0000000..46f4dcd Binary files /dev/null and b/static/imgs/cs_abstraction.jpg differ diff --git a/static/imgs/entropy_alg.png b/static/imgs/entropy_alg.png new file mode 100644 index 0000000..c35e202 Binary files /dev/null and b/static/imgs/entropy_alg.png differ diff --git a/static/imgs/epr_paradox.PNG b/static/imgs/epr_paradox.PNG new file mode 100644 index 0000000..bb83a63 Binary files /dev/null and b/static/imgs/epr_paradox.PNG differ diff --git a/static/imgs/frequency_analysis.svg b/static/imgs/frequency_analysis.svg new file mode 100644 index 0000000..09ac587 --- /dev/null +++ b/static/imgs/frequency_analysis.svg @@ -0,0 +1,381 @@ + + + +Produced by GNUPLOT 4.2 patchlevel 5 + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + + 0.02 + + + + 0.04 + + + + 0.06 + + + + 0.08 + + + + 0.1 + + + + 0.12 + + + + 0.14 + + + + a + + + + b + + + + c + + + + d + + + + e + + + + f + + + + g + + + + h + + + + i + + + + j + + + + k + + + + l + + + + m + + + + n + + + + o + + + + p + + + + q + + + + r + + + + s + + + + t + + + + u + + + + v + + + + w + + + + x + + + + y + + + + z + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/imgs/gongfu.png b/static/imgs/gongfu.png new file mode 100644 index 0000000..8e7cd32 Binary files /dev/null and b/static/imgs/gongfu.png differ diff --git a/static/imgs/illegal_rsa_shirt.jpg b/static/imgs/illegal_rsa_shirt.jpg new file mode 100644 index 0000000..146de87 Binary files /dev/null and b/static/imgs/illegal_rsa_shirt.jpg differ diff --git a/static/imgs/lithograph.jpg b/static/imgs/lithograph.jpg new file mode 100644 index 0000000..2ed11c0 Binary files /dev/null and b/static/imgs/lithograph.jpg differ diff --git a/static/imgs/necker_cube.svg b/static/imgs/necker_cube.svg new file mode 100644 index 0000000..f33a20f --- /dev/null +++ b/static/imgs/necker_cube.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/static/imgs/quasi_random.gif b/static/imgs/quasi_random.gif new file mode 100644 index 0000000..fe43486 Binary files /dev/null and b/static/imgs/quasi_random.gif differ diff --git a/static/imgs/rsa_algorithm.jpg b/static/imgs/rsa_algorithm.jpg new file mode 100644 index 0000000..f98b8cd Binary files /dev/null and b/static/imgs/rsa_algorithm.jpg differ diff --git a/static/imgs/syborg/app_store_soon.png b/static/imgs/syborg/app_store_soon.png new file mode 100644 index 0000000..d321e8b Binary files /dev/null and b/static/imgs/syborg/app_store_soon.png differ diff --git a/static/imgs/syborg/google-play-badge.png b/static/imgs/syborg/google-play-badge.png new file mode 100644 index 0000000..c77b746 Binary files /dev/null and b/static/imgs/syborg/google-play-badge.png differ diff --git a/static/imgs/take_your_bets.png b/static/imgs/take_your_bets.png new file mode 100644 index 0000000..45975cf Binary files /dev/null and b/static/imgs/take_your_bets.png differ diff --git a/static/imgs/tea_process.png b/static/imgs/tea_process.png new file mode 100644 index 0000000..3b2a4d3 Binary files /dev/null and b/static/imgs/tea_process.png differ diff --git a/static/imgs/textures/astronaut.png b/static/imgs/textures/astronaut.png new file mode 100644 index 0000000..757755e Binary files /dev/null and b/static/imgs/textures/astronaut.png differ diff --git a/static/imgs/textures/blades.jfif b/static/imgs/textures/blades.jfif new file mode 100644 index 0000000..2d6704a Binary files /dev/null and b/static/imgs/textures/blades.jfif differ diff --git a/static/imgs/textures/circle_of_the_moon.jpg b/static/imgs/textures/circle_of_the_moon.jpg new file mode 100644 index 0000000..f2c9d2f Binary files /dev/null and b/static/imgs/textures/circle_of_the_moon.jpg differ diff --git a/static/imgs/textures/cookies.png b/static/imgs/textures/cookies.png new file mode 100644 index 0000000..efa4c1d Binary files /dev/null and b/static/imgs/textures/cookies.png differ diff --git a/static/imgs/textures/cyberpunk_bartender.png b/static/imgs/textures/cyberpunk_bartender.png new file mode 100644 index 0000000..f705989 Binary files /dev/null and b/static/imgs/textures/cyberpunk_bartender.png differ diff --git a/static/imgs/textures/cyberpunk_car.png b/static/imgs/textures/cyberpunk_car.png new file mode 100644 index 0000000..24946e5 Binary files /dev/null and b/static/imgs/textures/cyberpunk_car.png differ diff --git a/static/imgs/textures/cyberpunk_neon.jpg b/static/imgs/textures/cyberpunk_neon.jpg new file mode 100644 index 0000000..e3700c3 Binary files /dev/null and b/static/imgs/textures/cyberpunk_neon.jpg differ diff --git a/static/imgs/textures/cyberpunk_samurai.jpg b/static/imgs/textures/cyberpunk_samurai.jpg new file mode 100644 index 0000000..56f81fb Binary files /dev/null and b/static/imgs/textures/cyberpunk_samurai.jpg differ diff --git a/static/imgs/textures/dark_cyberpunk.png b/static/imgs/textures/dark_cyberpunk.png new file mode 100644 index 0000000..e63a369 Binary files /dev/null and b/static/imgs/textures/dark_cyberpunk.png differ diff --git a/static/imgs/textures/flcl.jpg b/static/imgs/textures/flcl.jpg new file mode 100644 index 0000000..06ae5a8 Binary files /dev/null and b/static/imgs/textures/flcl.jpg differ diff --git a/static/imgs/textures/gradius_iii.jpg b/static/imgs/textures/gradius_iii.jpg new file mode 100644 index 0000000..0d74574 Binary files /dev/null and b/static/imgs/textures/gradius_iii.jpg differ diff --git a/static/imgs/textures/hack_planet.jpg b/static/imgs/textures/hack_planet.jpg new file mode 100644 index 0000000..c4935f4 Binary files /dev/null and b/static/imgs/textures/hack_planet.jpg differ diff --git a/static/imgs/textures/kanagawa_wave.jpg b/static/imgs/textures/kanagawa_wave.jpg new file mode 100644 index 0000000..a0b63f4 Binary files /dev/null and b/static/imgs/textures/kanagawa_wave.jpg differ diff --git a/static/imgs/textures/kirby_superstar.jpg b/static/imgs/textures/kirby_superstar.jpg new file mode 100644 index 0000000..1e9e0a7 Binary files /dev/null and b/static/imgs/textures/kirby_superstar.jpg differ diff --git a/static/imgs/textures/nba_jam.jpg b/static/imgs/textures/nba_jam.jpg new file mode 100644 index 0000000..6d9e8c5 Binary files /dev/null and b/static/imgs/textures/nba_jam.jpg differ diff --git a/static/imgs/textures/ocean_house.png b/static/imgs/textures/ocean_house.png new file mode 100644 index 0000000..c1df9ae Binary files /dev/null and b/static/imgs/textures/ocean_house.png differ diff --git a/static/imgs/textures/pixel_city.png b/static/imgs/textures/pixel_city.png new file mode 100644 index 0000000..4886bde Binary files /dev/null and b/static/imgs/textures/pixel_city.png differ diff --git a/static/imgs/textures/reincarnated_slime.jfif b/static/imgs/textures/reincarnated_slime.jfif new file mode 100644 index 0000000..feb1462 Binary files /dev/null and b/static/imgs/textures/reincarnated_slime.jfif differ diff --git a/static/imgs/textures/samus.jpg b/static/imgs/textures/samus.jpg new file mode 100644 index 0000000..b6de81e Binary files /dev/null and b/static/imgs/textures/samus.jpg differ diff --git a/static/imgs/textures/shield_hero.jfif b/static/imgs/textures/shield_hero.jfif new file mode 100644 index 0000000..608e860 Binary files /dev/null and b/static/imgs/textures/shield_hero.jfif differ diff --git a/static/imgs/textures/super_metroid.jpg b/static/imgs/textures/super_metroid.jpg new file mode 100644 index 0000000..1b1b032 Binary files /dev/null and b/static/imgs/textures/super_metroid.jpg differ diff --git a/static/imgs/textures/valenburg_city.png b/static/imgs/textures/valenburg_city.png new file mode 100644 index 0000000..e168557 Binary files /dev/null and b/static/imgs/textures/valenburg_city.png differ diff --git a/static/imgs/textures/valenburg_cityscape.gif b/static/imgs/textures/valenburg_cityscape.gif new file mode 100644 index 0000000..86881af Binary files /dev/null and b/static/imgs/textures/valenburg_cityscape.gif differ diff --git a/static/imgs/textures/valenburg_cityscape.png b/static/imgs/textures/valenburg_cityscape.png new file mode 100644 index 0000000..825ca45 Binary files /dev/null and b/static/imgs/textures/valenburg_cityscape.png differ diff --git a/static/imgs/textures/valenburg_dreams.gif b/static/imgs/textures/valenburg_dreams.gif new file mode 100644 index 0000000..36d5835 Binary files /dev/null and b/static/imgs/textures/valenburg_dreams.gif differ diff --git a/static/imgs/textures/valenburg_skeleton.gif b/static/imgs/textures/valenburg_skeleton.gif new file mode 100644 index 0000000..185898c Binary files /dev/null and b/static/imgs/textures/valenburg_skeleton.gif differ diff --git a/static/imgs/textures/valenburg_soupz.png b/static/imgs/textures/valenburg_soupz.png new file mode 100644 index 0000000..31a200e Binary files /dev/null and b/static/imgs/textures/valenburg_soupz.png differ diff --git a/static/imgs/textures/wotakoi.jfif b/static/imgs/textures/wotakoi.jfif new file mode 100644 index 0000000..ae61662 Binary files /dev/null and b/static/imgs/textures/wotakoi.jfif differ diff --git a/static/imgs/time_chart.jpg b/static/imgs/time_chart.jpg new file mode 100644 index 0000000..1d41ef9 Binary files /dev/null and b/static/imgs/time_chart.jpg differ diff --git a/static/imgs/urimpression.png b/static/imgs/urimpression.png new file mode 100644 index 0000000..02f96d2 Binary files /dev/null and b/static/imgs/urimpression.png differ diff --git a/svelte.config.js b/svelte.config.js index d72a93c..dbd1953 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -7,7 +7,8 @@ const config = { // Consult https://kit.svelte.dev/docs/integrations#preprocessors // for more information about preprocessors preprocess: [vitePreprocess(), mdsvex({ extensions: ['.md'], layout: { - poetry: './src/lib/utils/PoetryLayout.svelte' + poetry: './src/lib/utils/PoetryLayout.svelte', + thoughts: './src/lib/utils/ThoughtsLayout.svelte', }})],