Open In Colab

Opensearch Vector Store#

Elasticsearch only supports Lucene indices, so only Opensearch is supported.

Note on setup: We setup a local Opensearch instance through the following doc. https://opensearch.org/docs/1.0/

If you run into SSL issues, try the following docker run command instead:

docker run -p 9200:9200 -p 9600:9600 -e "discovery.type=single-node" -e "plugins.security.disabled=true" opensearchproject/opensearch:1.0.1

Reference: https://github.com/opensearch-project/OpenSearch/issues/1598

Download Data

%pip install llama-index-readers-elasticsearch
%pip install llama-index-vector-stores-opensearch
%pip install llama-index-embeddings-ollama
!mkdir -p 'data/paul_graham/'
!wget 'https://raw.githubusercontent.com/run-llama/llama_index/main/docs/examples/data/paul_graham/paul_graham_essay.txt' -O 'data/paul_graham/paul_graham_essay.txt'
from os import getenv
from llama_index.core import SimpleDirectoryReader
from llama_index.vector_stores.opensearch import (
    OpensearchVectorStore,
    OpensearchVectorClient,
)
from llama_index.core import VectorStoreIndex, StorageContext

# http endpoint for your cluster (opensearch required for vector index usage)
endpoint = getenv("OPENSEARCH_ENDPOINT", "http://localhost:9200")
# index to demonstrate the VectorStore impl
idx = getenv("OPENSEARCH_INDEX", "gpt-index-demo")
# load some sample data
documents = SimpleDirectoryReader("./data/paul_graham/").load_data()
/Users/jerryliu/Programming/gpt_index/.venv/lib/python3.10/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html
  from .autonotebook import tqdm as notebook_tqdm
# OpensearchVectorClient stores text in this field by default
text_field = "content"
# OpensearchVectorClient stores embeddings in this field by default
embedding_field = "embedding"
# OpensearchVectorClient encapsulates logic for a
# single opensearch index with vector search enabled
client = OpensearchVectorClient(
    endpoint, idx, 1536, embedding_field=embedding_field, text_field=text_field
)
# initialize vector store
vector_store = OpensearchVectorStore(client)
storage_context = StorageContext.from_defaults(vector_store=vector_store)
# initialize an index using our sample data and the client we just created
index = VectorStoreIndex.from_documents(
    documents=documents, storage_context=storage_context
)
# run query
query_engine = index.as_query_engine()
res = query_engine.query("What did the author do growing up?")
res.response
INFO:root:> [query] Total LLM token usage: 29628 tokens
INFO:root:> [query] Total embedding token usage: 8 tokens
'\n\nThe author grew up writing short stories, programming on an IBM 1401, and building a computer kit from Heathkit. They also wrote programs for a TRS-80, such as games, a program to predict model rocket flight, and a word processor. After years of nagging, they convinced their father to buy a TRS-80, and they wrote simple games, a program to predict how high their model rockets would fly, and a word processor that their father used to write at least one book. In college, they studied philosophy and AI, and wrote a book about Lisp hacking. They also took art classes and applied to art schools, and experimented with computer graphics and animation, exploring the use of algorithms to create art. Additionally, they experimented with machine learning algorithms, such as using neural networks to generate art, and exploring the use of numerical values to create art. They also took classes in fundamental subjects like drawing, color, and design, and applied to two art schools, RISD in the US, and the Accademia di Belli Arti in Florence. They were accepted to RISD, and while waiting to hear back from the Accademia, they learned Italian and took the entrance exam in Florence. They eventually graduated from RISD'

The OpenSearch vector store supports filter-context queries.

from llama_index.core import Document
from llama_index.core.vector_stores import MetadataFilters, ExactMatchFilter
import regex as re
# Split the text into paragraphs.
text_chunks = documents[0].text.split("\n\n")

# Create a document for each footnote
footnotes = [
    Document(
        text=chunk,
        id=documents[0].doc_id,
        metadata={"is_footnote": bool(re.search(r"^\s*\[\d+\]\s*", chunk))},
    )
    for chunk in text_chunks
    if bool(re.search(r"^\s*\[\d+\]\s*", chunk))
]
# Insert the footnotes into the index
for f in footnotes:
    index.insert(f)
# Create a query engine that only searches certain footnotes.
footnote_query_engine = index.as_query_engine(
    filters=MetadataFilters(
        filters=[
            ExactMatchFilter(
                key="term", value='{"metadata.is_footnote": "true"}'
            ),
            ExactMatchFilter(
                key="query_string",
                value='{"query": "content: space AND content: lisp"}',
            ),
        ]
    )
)

res = footnote_query_engine.query(
    "What did the author about space aliens and lisp?"
)
res.response
"The author believes that any sufficiently advanced alien civilization would know about the Pythagorean theorem and possibly also about Lisp in McCarthy's 1960 paper."

Use reader to check out what VectorStoreIndex just created in our index.#

Reader works with Elasticsearch too as it just uses the basic search features.

# create a reader to check out the index used in previous section.
from llama_index.readers.elasticsearch import ElasticsearchReader

rdr = ElasticsearchReader(endpoint, idx)
# set embedding_field optionally to read embedding data from the elasticsearch index
docs = rdr.load_data(text_field, embedding_field=embedding_field)
# docs have embeddings in them
print("embedding dimension:", len(docs[0].embedding))
# full document is stored in metadata
print("all fields in index:", docs[0].metadata.keys())
embedding dimension: 1536
all fields in index: dict_keys(['content', 'embedding'])
# we can check out how the text was chunked by the `GPTOpensearchIndex`
print("total number of chunks created:", len(docs))
total number of chunks: 10
# search index using standard elasticsearch query DSL
docs = rdr.load_data(text_field, {"query": {"match": {text_field: "Lisp"}}})
print("chunks that mention Lisp:", len(docs))
docs = rdr.load_data(text_field, {"query": {"match": {text_field: "Yahoo"}}})
print("chunks that mention Yahoo:", len(docs))
chunks that mention Lisp: 10
chunks that mention Yahoo: 8

Hybrid query for opensearch vector store#

Hybrid query has been supported since OpenSearch 2.10. It is a combination of vector search and text search. It is useful when you want to search for a specific text and also want to filter the results by vector similarity. You can find more details: https://opensearch.org/docs/latest/query-dsl/compound/hybrid/.

Initialize a OpenSearch client and vector store supporting hybrid query with search pipeline details#

from os import getenv
from llama_index.vector_stores.opensearch import (
    OpensearchVectorStore,
    OpensearchVectorClient,
)

# http endpoint for your cluster (opensearch required for vector index usage)
endpoint = getenv("OPENSEARCH_ENDPOINT", "http://localhost:9200")
# index to demonstrate the VectorStore impl
idx = getenv("OPENSEARCH_INDEX", "auto_retriever_movies")

# OpensearchVectorClient stores text in this field by default
text_field = "content"
# OpensearchVectorClient stores embeddings in this field by default
embedding_field = "embedding"
# OpensearchVectorClient encapsulates logic for a
# single opensearch index with vector search enabled with hybrid search pipeline
client = OpensearchVectorClient(
    endpoint,
    idx,
    4096,
    embedding_field=embedding_field,
    text_field=text_field,
    search_pipeline="hybrid-search-pipeline",
)

from llama_index.embeddings.ollama import OllamaEmbedding

embed_model = OllamaEmbedding(model_name="llama2")

# initialize vector store
vector_store = OpensearchVectorStore(client)

Prepare the index#

from llama_index.core.schema import TextNode
from llama_index.core import VectorStoreIndex, StorageContext


storage_context = StorageContext.from_defaults(vector_store=vector_store)

nodes = [
    TextNode(
        text="The Shawshank Redemption",
        metadata={
            "author": "Stephen King",
            "theme": "Friendship",
        },
    ),
    TextNode(
        text="The Godfather",
        metadata={
            "director": "Francis Ford Coppola",
            "theme": "Mafia",
        },
    ),
    TextNode(
        text="Inception",
        metadata={
            "director": "Christopher Nolan",
        },
    ),
]

index = VectorStoreIndex(
    nodes, storage_context=storage_context, embed_model=embed_model
)
LLM is explicitly disabled. Using MockLLM.

Search the index with hybrid query by specifying the vector store query mode: VectorStoreQueryMode.HYBRID with filters#

from llama_index.core.vector_stores import ExactMatchFilter, MetadataFilters
from llama_index.core.vector_stores.types import VectorStoreQueryMode

filters = MetadataFilters(
    filters=[
        ExactMatchFilter(
            key="term", value='{"metadata.theme.keyword": "Mafia"}'
        )
    ]
)

retriever = index.as_retriever(
    filters=filters, vector_store_query_mode=VectorStoreQueryMode.HYBRID
)

result = retriever.retrieve("What is inception about?")

print(result)
query_strWhat is inception about?
query_modehybrid
{'size': 2, 'query': {'hybrid': {'queries': [{'bool': {'must': {'match': {'content': {'query': 'What is inception about?'}}}, 'filter': [{'term': {'metadata.theme.keyword': 'Mafia'}}]}}, {'script_score': {'query': {'bool': {'filter': [{'term': {'metadata.theme.keyword': 'Mafia'}}]}}, 'script': {'source': "1/(1.0 + l2Squared(params.query_value, doc['embedding']))", 'params': {'field': 'embedding', 'query_value': [0.41321834921836853, 0.18020285665988922, 2.5630273818969727, 1.490068793296814, -2.2188172340393066, 0.3613924980163574, 0.036182258278131485, 1.3815258741378784, -0.4603463411331177, 0.9783738851547241, 0.3667166233062744, -0.30677080154418945, -1.2893489599227905, -1.19036865234375, -1.4050743579864502, -2.200796365737915, 0.05992934852838516, 0.30156904458999634, 0.6115846633911133, -0.028691552579402924, 0.5112416744232178, -2.069373846054077, 0.6121743321418762, -0.05102552846074104, 1.8506423234939575, -1.293755292892456, -0.8149858117103577, 0.37656715512275696, 0.427949458360672, 0.43708929419517517, 3.2720835208892822, -1.9999115467071533, -2.374300241470337, 3.1277284622192383, 3.2631218433380127, -4.0594635009765625, -0.7985063195228577, 1.9719655513763428, -1.0863256454467773, -1.3689632415771484, -1.6202458143234253, -0.970841109752655, 0.4361116886138916, -1.5362870693206787, -1.1693036556243896, -1.026757836341858, 0.5508455634117126, -1.3451452255249023, -0.1262667030096054, -2.551471710205078, -2.0497262477874756, 2.496407985687256, 2.135885000228882, 0.35134005546569824, 5.0327935218811035, 1.8164896965026855, -0.6962565779685974, -0.8567550182342529, -0.7652865052223206, -0.3472128212451935, -4.674342155456543, -0.4849073886871338, 0.264328271150589, -0.13345342874526978, -0.8415009379386902, -0.573940634727478, -1.5133740901947021, -1.1298637390136719, -0.4023132026195526, -0.9682215452194214, -0.6318851709365845, -1.1680705547332764, -0.009688361547887325, 0.4505622684955597, -0.8854013085365295, -0.3571643531322479, 1.4883410930633545, -1.783129334449768, 0.11535698920488358, -0.30390724539756775, -0.25188541412353516, -1.2200418710708618, -0.46980828046798706, 0.010308354161679745, -0.11891602724790573, -2.1998283863067627, -0.8609093427658081, 0.13315293192863464, -0.8290212154388428, -2.8762452602386475, 0.07886768132448196, -1.0726840496063232, 1.9736577272415161, -0.5146512389183044, 0.5342828631401062, -0.11156866699457169, 1.7214893102645874, -2.3838982582092285, -2.6821601390838623, 3.317544460296631, -0.09058598428964615, 1.869874358177185, 0.20941582322120667, -0.32621312141418457, 1.414040207862854, 1.2938545942306519, -0.8429654240608215, 0.5140904784202576, 0.8016107082366943, 0.7636069059371948, -0.4329335391521454, -0.7065062522888184, 4.734518527984619, -0.3860406279563904, 0.925670862197876, 0.9335429668426514, 1.3854609727859497, -0.12670166790485382, -1.3067851066589355, -0.7774076461791992, -0.9004611372947693, 0.10689397901296616, 1.2346686124801636, -0.5597251653671265, 2.0317792892456055, -1.4601149559020996, -1.7142622470855713, 0.29964911937713623, 1.8859195709228516, -0.2781992256641388, -0.5782546997070312, 1.0062665939331055, 0.8075907826423645, -0.12356983870267868, 0.044209253042936325, -0.9768295884132385, -0.7845012545585632, 3.1435296535491943, 0.5873728394508362, 1.7868859767913818, 0.08011605590581894, -0.22836042940616608, 0.7038129568099976, -1.9104092121124268, 1.4030147790908813, -1.2962714433670044, 2.027243137359619, 0.9790756106376648, -2.264589786529541, 7.12422513961792, 2.6044716835021973, 0.1689453423023224, 0.8290825486183167, 2.4138808250427246, 1.5987122058868408, 0.3719463348388672, -1.3208861351013184, -2.665656566619873, 0.011798880994319916, 2.958852767944336, 1.608904480934143, 2.4605748653411865, 2.297091007232666, 0.4549705386161804, 1.1293487548828125, -1.3814384937286377, 0.7619526386260986, -0.5543878078460693, -1.3978607654571533, 1.0291355848312378, -1.0831276178359985, -0.7420253157615662, -0.013568096794188023, 0.26438722014427185, -2.890491008758545, 1.9345614910125732, -2.7232303619384766, 2.1288723945617676, -1.5730639696121216, 0.42103731632232666, -0.5871202945709229, -0.7733861207962036, -0.17877067625522614, -1.259313702583313, 2.633655071258545, -2.6153783798217773, 1.7496006488800049, -1.3132662773132324, 0.30032068490982056, 2.3259973526000977, -0.8340680599212646, -3.8754353523254395, 1.6866732835769653, -0.6322534680366516, -3.1253058910369873, -1.4690831899642944, 0.3984243869781494, -0.6030164361000061, -1.1149078607559204, -0.4780992567539215, 2.6681854724884033, 1.5737766027450562, -1.724433183670044, -1.025917887687683, 0.44603830575942993, 0.14515168964862823, -1.8136513233184814, 0.7997931838035583, -0.9585741758346558, -0.6773001551628113, -0.03136235475540161, 1.519403100013733, -0.181321918964386, -0.5776315927505493, -0.1555202752351761, 0.18355552852153778, 1.78794527053833, -2.432624340057373, -2.234393835067749, 0.4157070219516754, -0.5297521948814392, 0.5506531000137329, -0.4689751863479614, -0.8898658156394958, -0.3534289002418518, 1.8718829154968262, 0.6798714399337769, 2.9149982929229736, -0.9962785243988037, -2.7887353897094727, -0.5387859344482422, 2.679020643234253, -2.448556900024414, 0.651435136795044, 0.966449499130249, 1.6953942775726318, 0.3823235332965851, 0.10229398310184479, -0.9457557797431946, -0.6493328809738159, 0.5688035488128662, -2.922553539276123, -1.548913598060608, 0.4459702968597412, 0.013540555723011494, -0.2704170346260071, 1.006961464881897, -5.754271984100342, -0.5904161930084229, 1.7579066753387451, 1.176064133644104, -0.8002220988273621, 1.309417724609375, -5.752984046936035, -1.6502244472503662, 2.983844757080078, -0.23023942112922668, -0.9855138659477234, 1.3303319215774536, 2.9236953258514404, -3.320286989212036, -0.31151318550109863, 2.217740535736084, 0.7638903260231018, -0.9520173668861389, -1.950067162513733, 0.1302500218153, 1.4167200326919556, 0.29567164182662964, 6.863494873046875, -0.7736454010009766, 2.200040102005005, 0.8791037797927856, 2.6473147869110107, 0.9428380727767944, -1.8561729192733765, 1.2539398670196533, 0.8624231815338135, -2.1333630084991455, 3.7115859985351562, 1.5294171571731567, -2.779855728149414, -4.007022857666016, -0.19421091675758362, 1.4657100439071655, 0.7395465970039368, 1.991339087486267, -0.48850712180137634, 1.2810578346252441, -2.5738956928253174, 0.14520567655563354, -0.9870433211326599, 1.4076640605926514, -1.4828301668167114, -1.5893239974975586, -1.724867582321167, -0.23354482650756836, -1.4163196086883545, 0.5109336376190186, -0.3238542377948761, 1.955265998840332, 0.8233320713043213, 0.732318103313446, -2.2174081802368164, -2.136789083480835, 2.771289587020874, -0.7900831699371338, -0.6042210459709167, -3.237797975540161, 2.219860076904297, 1.3639500141143799, -1.0344531536102295, -3.3109471797943115, -0.2439427226781845, 2.258779287338257, 0.14851944148540497, -0.2913777828216553, 7.262680530548096, 0.5428546071052551, -1.7717254161834717, -0.4633650481700897, 2.8074758052825928, 0.048105500638484955, 1.6452494859695435, 0.04491522163152695, 0.5333496332168579, -0.7809147834777832, 0.2830696105957031, -0.7639930248260498, 0.4482744336128235, -1.4852536916732788, 0.8833461999893188, 0.523638129234314, -0.7595995664596558, -2.6632511615753174, 0.01600099354982376, 1.2090786695480347, 1.558943271636963, -0.332999050617218, -0.004141625016927719, -0.9229335188865662, 2.2113349437713623, -2.042768716812134, 1.812636137008667, -1.677463412284851, -0.3890987038612366, 1.9915165901184082, -0.15162350237369537, 0.6212348937988281, -0.12589970231056213, -1.5613648891448975, -2.242802858352661, -1.0037013292312622, -0.620574951171875, -0.8884297609329224, -3.06825590133667, 2.861025810241699, -0.6538719534873962, 0.8056166172027588, 0.018622085452079773, -0.024002058431506157, -0.9258925914764404, 0.12631414830684662, 0.584757387638092, 0.27688172459602356, 1.6044093370437622, 1.270908236503601, -0.5254065990447998, 1.8217332363128662, -0.6541954278945923, 0.8827502727508545, 0.005546186119318008, 1.258598804473877, -1.0960404872894287, 1.4661812782287598, 1.313948392868042, 1.6511622667312622, 0.7871065735816956, -1.5718154907226562, -1.0518637895584106, 0.9388594031333923, 3.3684990406036377, 0.45377177000045776, 1.271720290184021, -1.1764464378356934, -0.15176154673099518, -1.391137719154358, 3.011141300201416, -1.0445970296859741, 2.899102210998535, -1.758180022239685, 4.193892955780029, -6.368247032165527, -0.5940825939178467, -1.0767533779144287, -1.3527724742889404, 1.8917447328567505, -2.1997251510620117, -0.19185307621955872, 0.25080886483192444, 2.0800955295562744, -0.6289852261543274, -2.2921133041381836, -4.517301082611084, 4.76081657409668, 0.1720455437898636, 0.5073676109313965, 0.6299363374710083, 0.767320990562439, -0.8382765054702759, -1.3843607902526855, -1.3682464361190796, -2.6356472969055176, -0.8984878063201904, 0.22113864123821259, -2.1458795070648193, 0.7607365846633911, 0.2667470872402191, 1.220933437347412, 0.02754109539091587, -0.0877218097448349, 0.41839832067489624, 1.8138320446014404, 1.5390034914016724, -0.6963170766830444, -0.2749406695365906, -0.6144360899925232, -0.010053030215203762, 0.9293986558914185, 0.7217408418655396, 2.536949396133423, -1.1031646728515625, 1.6805330514907837, -0.4614034593105316, -1.8670165538787842, -1.8161876201629639, -0.591956615447998, -4.985913276672363, -0.2568120062351227, 0.48842141032218933, 0.7554554343223572, 0.38172686100006104, 0.9337061643600464, 2.2370591163635254, 1.419506311416626, -0.7996056079864502, -1.2188458442687988, -0.7220484614372253, -2.3885955810546875, -2.3270604610443115, -0.6024976372718811, 0.858237087726593, -0.4162434935569763, -1.4675885438919067, 1.8310022354125977, 1.28183114528656, 0.8004191517829895, -1.2845454216003418, 0.937484860420227, -0.10335024446249008, 3.258983850479126, 1.3268334865570068, 1.2220652103424072, 0.7784561514854431, 3.3600029945373535, 0.6701059937477112, 1.0529390573501587, 0.10208575427532196, 0.5701940059661865, 0.1962825357913971, 0.10828425735235214, -0.2162337452173233, 2.180311679840088, -1.7972211837768555, 1.0405341386795044, 0.7389837503433228, -4.010706424713135, -2.3734586238861084, -1.719375491142273, -1.8657660484313965, 0.1835731565952301, 1.2427527904510498, -0.7261231541633606, -1.1701852083206177, 0.789677619934082, -2.7172350883483887, 1.319502353668213, 1.0955758094787598, 2.324152708053589, -0.0015042572049424052, 0.12953521311283112, -0.647757887840271, 1.4880874156951904, 2.802795886993408, 2.35840106010437, -2.0141172409057617, -3.2490947246551514, 0.4349888861179352, -2.3027102947235107, 1.726550817489624, -2.0354580879211426, 0.3805755376815796, -0.9496164321899414, -0.7888155579566956, -0.43960967659950256, 1.7932041883468628, -1.5066981315612793, 1.4541993141174316, -0.5531985759735107, 0.36705297231674194, 0.014699921943247318, -1.6991020441055298, -0.21752266585826874, 1.7329368591308594, 11.894489288330078, -0.5965126156806946, -0.925564169883728, -0.2954309582710266, -1.5528509616851807, 2.199148654937744, -1.103115200996399, 0.19948604702949524, 1.3276681900024414, -0.39991408586502075, 0.08070758730173111, -4.513566493988037, 0.7369015216827393, -0.06655729562044144, 1.611018180847168, -5.976266384124756, 1.5534995794296265, 0.9247637391090393, 1.9740935564041138, -1.6040284633636475, -1.692891001701355, 2.5750420093536377, -2.327113151550293, 0.1548505425453186, 0.9327078461647034, -0.25829583406448364, 2.666149616241455, -3.593252420425415, -0.15699230134487152, -1.7032642364501953, -0.311889111995697, 0.5351189970970154, 1.087026596069336, -0.6252873539924622, 1.3841193914413452, -0.4950295686721802, 1.5594199895858765, 2.66278338432312, -1.7093839645385742, -0.010296639986336231, -0.28942716121673584, 1.4094592332839966, 0.638701319694519, 1.562028408050537, 2.648719549179077, 0.43120214343070984, 0.2683892548084259, -1.592780351638794, -0.043680235743522644, -2.216395139694214, -0.7123466730117798, -0.8192989230155945, 0.009025665931403637, 0.8953601717948914, -0.812109649181366, -0.8570348024368286, -0.9459167122840881, 0.17694488167762756, -0.2153395116329193, -1.6095856428146362, -1.3068273067474365, 0.07987572252750397, 0.9553368091583252, -0.6526023745536804, 0.36873266100883484, 1.2450517416000366, -2.059387683868408, -1.3680862188339233, -0.012401364743709564, 1.4825446605682373, 0.004227606114000082, -1.4840946197509766, 2.2486157417297363, 0.1467883139848709, -0.6168572902679443, 4.384040355682373, 1.6955211162567139, 1.3673641681671143, 0.02802290767431259, -0.8326700329780579, 0.5160557627677917, 1.5494022369384766, -0.038791801780462265, 1.3310153484344482, 2.623941659927368, -0.44216081500053406, 2.094320297241211, -0.4652816355228424, -2.16534423828125, 1.1661605834960938, 0.5016739964485168, 0.2974618971347809, -1.2477234601974487, 0.45119279623031616, -2.0935275554656982, -2.7642881870269775, -0.3183857798576355, -1.7994561195373535, 0.46001338958740234, 1.13956880569458, 0.7820373773574829, 1.1870800256729126, -0.09882406145334244, -0.012949690222740173, -2.851064682006836, -0.23078449070453644, 0.5443326234817505, -1.5935089588165283, -0.15193487703800201, 0.8875556588172913, 1.8850420713424683, -1.6735634803771973, -0.4044044315814972, 0.13618849217891693, -0.7734470367431641, -1.2560303211212158, -0.6135643720626831, -0.3756520450115204, 0.09861935675144196, 1.7973986864089966, 3.9645559787750244, 1.1840814352035522, 0.23493440449237823, 0.4021183252334595, -0.3134872019290924, 2.8585891723632812, -1.7090718746185303, 1.0857326984405518, -0.5228433609008789, 1.052767276763916, -2.750671148300171, -2.292957067489624, -2.2393078804016113, 0.6484774947166443, -0.8178457617759705, 1.981013536453247, 0.9351786375045776, -1.7835562229156494, 1.197204828262329, -1.580520510673523, 1.3651384115219116, -1.2498836517333984, 2.271068811416626, -0.4805469214916229, -0.8042144775390625, 1.1161340475082397, 0.28766822814941406, -0.9136468768119812, 1.4822930097579956, -1.9415802955627441, 3.3139493465423584, -0.788847804069519, -0.46007534861564636, -0.8408829569816589, 1.552205204963684, 2.770519256591797, -0.024295229464769363, -0.2848755717277527, -1.7725780010223389, 1.800087332725525, 0.07893167436122894, -1.2222589254379272, -0.014700260013341904, 1.6821144819259644, -2.8402585983276367, -1.0875762701034546, 0.920182466506958, 1.5571104288101196, 1.580711007118225, -2.1959006786346436, 0.40867993235588074, -0.4071654975414276, 0.4721708297729492, 2.2015981674194336, 1.7094886302947998, 2.791167974472046, -1.8486231565475464, 0.9494439363479614, -1.6473835706710815, 2.25347900390625, -0.7640524506568909, -1.3047209978103638, 2.0264523029327393, -0.7758778929710388, -3.2164461612701416, -0.431278258562088, 0.48025432229042053, 1.8809497356414795, -1.7093976736068726, 0.47827860713005066, 1.893001675605774, -3.900144100189209, -1.5717852115631104, -1.9519548416137695, -0.5816302299499512, -2.5087790489196777, -2.137329339981079, 0.48499026894569397, -1.041875958442688, 1.495080828666687, 0.7974658012390137, -0.33765724301338196, -0.2551305294036865, -1.225867509841919, 0.40782275795936584, -1.9513366222381592, 2.4652771949768066, -0.4490397274494171, -0.5427073240280151, -0.9319576025009155, -1.2108888626098633, -3.5326883792877197, 0.5978140830993652, -1.5832680463790894, -3.4952869415283203, 0.8160491585731506, 2.4453232288360596, 1.9943169355392456, -1.6371946334838867, -0.7201486229896545, -2.150602102279663, -0.8741227984428406, -1.0412555932998657, 1.1813536882400513, -0.5626242160797119, 0.9812798500061035, 0.9959167838096619, -2.4925386905670166, -1.0300214290618896, -2.5242247581481934, 0.4867877960205078, -0.5604022145271301, 0.7731047868728638, 0.09035436064004898, 2.148285150527954, -0.14102017879486084, -1.0548553466796875, 0.346242219209671, 0.8292868733406067, 0.2173319011926651, 1.6390180587768555, 0.8006800413131714, -2.504382848739624, 0.03211856260895729, 0.25490802526474, -0.1592618227005005, -2.52319073677063, -0.07528931647539139, 1.6852014064788818, 1.2371580600738525, -1.3527917861938477, -0.7488723397254944, -0.7073266506195068, 1.2466566562652588, -0.734491765499115, 2.599490165710449, -1.1392076015472412, -0.26751452684402466, 1.9701131582260132, -3.0358736515045166, 0.6857394576072693, -2.17743182182312, 0.7840812802314758, 0.7634314894676208, 1.6858117580413818, -0.14474305510520935, -0.03722609952092171, -0.7322748303413391, 0.8631106615066528, 2.321913003921509, 2.620532274246216, -1.7463874816894531, -0.8518179059028625, 18.426437377929688, 2.292031764984131, -0.9628440737724304, 0.2770772874355316, 1.823053240776062, 0.007035842165350914, -1.350489854812622, 0.9310376644134521, -1.555370807647705, -1.22098708152771, -0.4069618284702301, -2.5084807872772217, 0.07337111979722977, -0.6376367807388306, 0.3913240432739258, 0.8780924677848816, -1.000422477722168, -0.11413756012916565, -0.41021502017974854, -1.2571842670440674, -0.8197417855262756, 2.0337860584259033, 0.3979244828224182, 1.4167122840881348, 0.3471311926841736, -0.4256099760532379, 1.0012407302856445, -0.4308701753616333, -0.02153640426695347, 0.6896073222160339, -0.41300255060195923, -2.1376280784606934, 0.15132027864456177, 1.122147560119629, -0.26097020506858826, -1.5312714576721191, 1.1588066816329956, 0.5141109824180603, -0.4418908655643463, -1.282315969467163, -2.1520655155181885, -2.381605625152588, -1.0613080263137817, 1.8376272916793823, -0.3373865783214569, -1.7497568130493164, 1.3478856086730957, 0.522821843624115, 2.8063817024230957, -1.5707430839538574, 1.6574434041976929, 1.0973840951919556, 0.033301882445812225, -0.870749831199646, -1.2195767164230347, -0.4587917923927307, -0.32304897904396057, 1.0247005224227905, -0.061056286096572876, 1.0645840167999268, 0.26554223895072937, 0.7214350700378418, -0.49338391423225403, 2.04323410987854, -0.38607147336006165, -1.9434980154037476, -1.4400379657745361, 4.2936177253723145, -0.03506356105208397, -1.607264518737793, -1.4003962278366089, 0.8912801146507263, -0.6198359727859497, 1.4857014417648315, 0.8332427740097046, 1.5414448976516724, 1.0930620431900024, -1.062386393547058, 0.4404706358909607, -2.0785317420959473, 0.9004122018814087, 0.5037896633148193, -0.7400078177452087, 0.7098906636238098, 3.7883002758026123, 0.3869098424911499, 0.7730949521064758, 0.2972405254840851, 0.02568812482059002, 0.774571418762207, -2.0131654739379883, -0.20678681135177612, 1.8377408981323242, -0.06119948998093605, -1.2104179859161377, -0.2865597903728485, -1.013867974281311, 0.0007775087142363191, -1.6674636602401733, 1.061977744102478, 2.9370741844177246, 1.4935888051986694, 2.5850329399108887, 0.016956254839897156, 1.406268835067749, -0.5984053015708923, 0.6108880043029785, -0.04343929886817932, 1.3669254779815674, -1.2286776304244995, -0.10667647421360016, 2.1632094383239746, 0.8779910206794739, -1.3170784711837769, -1.860677719116211, 0.9604260325431824, -2.4838356971740723, -1.691286325454712, 0.22740653157234192, -0.7766919732093811, -0.5894504189491272, -4.942060470581055, -0.26809266209602356, 1.1812422275543213, 2.37599778175354, 1.0258384943008423, -1.118991732597351, 0.5149827003479004, -0.5733175873756409, 1.505476474761963, 3.1367368698120117, 0.7641242146492004, -0.0940699428319931, 1.0783028602600098, 1.3335994482040405, -1.2336270809173584, 0.22182348370552063, -1.110285997390747, 0.862419605255127, -1.0850942134857178, -2.729142904281616, 1.0944768190383911, -0.7928529977798462, -0.6893836259841919, 0.18696878850460052, -2.0538835525512695, -1.0116357803344727, -0.797469437122345, -1.3255575895309448, 1.709050178527832, 3.431581735610962, 2.935115098953247, 1.0282948017120361, 0.5271965861320496, -0.7158775329589844, 1.3512331247329712, -0.7794892191886902, 0.13029088079929352, 0.3733986020088196, -0.17051351070404053, 0.38182443380355835, 0.9633568525314331, -0.15820203721523285, 2.1459097862243652, 0.5132815837860107, 0.08023839443922043, -0.8007093071937561, 0.13462162017822266, 1.9698970317840576, 0.8776851296424866, -1.9589300155639648, 0.5906473994255066, 1.028153419494629, -0.4514116644859314, -2.473788022994995, -0.2742897570133209, 1.0657744407653809, 2.362811326980591, 0.028045516461133957, -0.5195608735084534, -2.3411612510681152, 0.1536271870136261, -0.15816496312618256, -0.09372033178806305, -0.49644598364830017, 0.49094706773757935, 1.1586555242538452, -0.955280065536499, 0.9317602515220642, -1.1424400806427002, 1.6726744174957275, 0.519007682800293, -0.6123946309089661, 2.615694046020508, 2.466355562210083, 3.3426148891448975, 1.0087884664535522, -0.516756534576416, -0.11329516023397446, 0.6762191653251648, -0.05646437406539917, 0.34115341305732727, 1.4121625423431396, 1.80597984790802, -0.6195365786552429, 0.046768467873334885, -0.18133965134620667, 2.0016236305236816, -0.15139950811862946, -0.41256871819496155, -0.1790081411600113, 0.5522864460945129, -1.2738145589828491, -0.21690881252288818, 1.0143086910247803, 0.6111000776290894, -2.4920296669006348, 0.3650006055831909, 0.5012017488479614, 3.312314987182617, -1.2554460763931274, -0.08991418778896332, -5.223748683929443, 0.49595025181770325, -1.0139282941818237, 0.08150297403335571, 0.5423699021339417, 0.6872586011886597, 0.3866420388221741, 0.2387423813343048, 1.6300451755523682, -0.23714679479599, -1.4279755353927612, 4.459320068359375, -0.7372031807899475, 1.5491743087768555, -0.9331847429275513, 1.5157212018966675, 0.33791929483413696, 2.988191843032837, -0.1212812289595604, -1.2225391864776611, -0.8952404260635376, 0.30449047684669495, -0.5278837084770203, 0.47584253549575806, 1.4064100980758667, -1.2114145755767822, -0.10328574478626251, 1.5992718935012817, -2.0458250045776367, -3.102452278137207, -1.4500226974487305, -2.892245292663574, 0.5406331419944763, 1.0614030361175537, 0.9008101224899292, -0.5399534106254578, -0.4225170314311981, -0.5858743190765381, 1.785391926765442, 0.21592077612876892, -3.7099521160125732, 0.7630082964897156, 1.3418095111846924, -2.593329429626465, 0.31877732276916504, 1.6515623331069946, 0.9644103646278381, 1.9154785871505737, -1.0050128698349, 2.866792678833008, -3.363034248352051, -0.010284701362252235, 2.8003530502319336, -4.132946014404297, -1.0492007732391357, -1.803873896598816, -1.6592904329299927, 0.5143199563026428, -1.4949287176132202, 1.6534130573272705, -1.6133151054382324, -0.22070585191249847, 1.3808913230895996, 2.3047897815704346, -1.7598133087158203, -1.6936516761779785, -0.7323946356773376, -4.033495903015137, 0.908507227897644, -0.9024778008460999, 1.3645659685134888, 1.8907235860824585, 1.2878985404968262, 0.8542701601982117, 0.8109430074691772, -2.2866451740264893, -2.5592124462127686, 0.812874436378479, 1.6586065292358398, -1.0911669731140137, -0.1487925946712494, -2.1414759159088135, -1.8146477937698364, -0.363641619682312, -1.3416190147399902, 0.37370967864990234, -2.0443432331085205, 0.7105128169059753, 2.1254630088806152, -2.8021240234375, -1.104745864868164, -2.176929235458374, -3.2365283966064453, -3.0512943267822266, -0.11705376207828522, -0.2737237215042114, 0.3246777653694153, -0.3063682019710541, -0.5377206206321716, -2.49725341796875, 1.262384295463562, 0.14024639129638672, 1.1029243469238281, 0.2849975526332855, 0.818973183631897, -3.680553913116455, -0.7605910897254944, 0.32638072967529297, -0.6741605997085571, 0.8537416458129883, 1.168124794960022, -1.5162039995193481, 0.5819069147109985, 0.023379748687148094, -1.348990559577942, -1.5652809143066406, -0.5094784498214722, 0.27916091680526733, 1.121222734451294, 0.8780670762062073, 1.2094379663467407, 2.1354639530181885, 2.769707441329956, 1.4601696729660034, 0.5871595144271851, -0.9278814196586609, -1.3891559839248657, 1.9506850242614746, 1.7492010593414307, -0.623008131980896, -1.7607749700546265, -1.044310212135315, 1.6887259483337402, -0.8975515961647034, -0.4015905559062958, -3.0241539478302, -1.561933159828186, 1.3948237895965576, -1.3228869438171387, 0.13199321925640106, -2.3275814056396484, 1.9689031839370728, 0.8485745191574097, -0.08251477777957916, 0.2345050424337387, -1.1688499450683594, -0.11912787705659866, -0.21194298565387726, 0.09007112681865692, 1.7608760595321655, -0.7274044156074524, 1.5473390817642212, -0.8514923453330994, -1.8599978685379028, -0.9838665127754211, 1.206497073173523, -0.05950266867876053, -0.11489760130643845, -0.4535527527332306, -2.0776290893554688, 0.17017999291419983, -0.28572288155555725, -0.05139496177434921, 1.7572499513626099, -2.834480047225952, -0.5412831902503967, -1.4063488245010376, 1.6982507705688477, -0.15384571254253387, 0.20969967544078827, -0.6751638054847717, -0.6338038444519043, 0.15595316886901855, -2.1501686573028564, 3.7269763946533203, -0.5278751254081726, 0.5313963294029236, -0.9846722483634949, -0.7395603060722351, 0.2116585671901703, -1.17556893825531, 0.6930138468742371, -1.498841404914856, 0.06944025307893753, 4.103360652923584, 0.8904181122779846, -1.6667888164520264, 2.365586996078491, -0.30954357981681824, 1.4848604202270508, 0.12867887318134308, -0.9684067964553833, 1.8107026815414429, 0.2624013423919678, -0.00013041730562690645, -0.9252362847328186, -1.0514239072799683, -0.4941941797733307, -0.14078719913959503, 0.9959864616394043, 1.9541596174240112, 1.449040412902832, -0.7560957074165344, 0.39170560240745544, 1.1071592569351196, -2.732081651687622, 2.192186117172241, -0.4868117868900299, -0.9378765821456909, -0.21596597135066986, 2.284925937652588, 0.48173102736473083, -1.092008113861084, 4.131366729736328, 0.4500076174736023, 0.551324188709259, 0.9356209635734558, 1.8111575841903687, 0.5323090553283691, -0.1642349511384964, -0.8208290934562683, -1.4830564260482788, -0.06867530941963196, 1.2636538743972778, -0.5348911285400391, 1.6775068044662476, -2.6230735778808594, 0.65394127368927, -1.6660821437835693, -0.1372344046831131, -0.2740567624568939, 0.24980051815509796, 0.2987605035305023, -1.3377487659454346, 1.7165122032165527, -3.766610622406006, 1.0698935985565186, -1.2334039211273193, 0.7106996178627014, 1.914261817932129, 2.254060983657837, 3.0593926906585693, -0.9038339257240295, 2.1295647621154785, 2.323791980743408, -1.0098944902420044, 0.3092609643936157, 0.5903484225273132, -0.1939529925584793, 1.3433213233947754, -2.3781626224517822, 0.011826583184301853, -0.7088412046432495, -0.061338480561971664, 0.2272409349679947, 1.3122551441192627, -0.609024703502655, -1.6595351696014404, 2.0951175689697266, 1.763617753982544, 1.723102331161499, -0.07782021164894104, -2.318408250808716, -0.05159427598118782, -1.0939024686813354, -1.6204721927642822, -0.2976556420326233, 0.7443931698799133, 0.1723729372024536, 2.450744152069092, -0.6820093393325806, -0.748424768447876, 2.5927767753601074, -0.003042939119040966, 0.3108278512954712, -0.8557866811752319, -0.2789894640445709, 0.1240282878279686, 2.2363221645355225, -0.6958662271499634, 1.3821767568588257, 0.6796685457229614, -1.0079951286315918, 0.07227839529514313, 0.16650229692459106, -0.26254791021347046, 2.390132427215576, -1.8655506372451782, -0.9341630935668945, -0.4989074766635895, 0.37631097435951233, 1.142351746559143, 0.9883608222007751, -0.4232832193374634, -1.5377675294876099, 2.386815309524536, 2.2229881286621094, 1.4753307104110718, 0.3690650463104248, 1.755672812461853, 0.1360682249069214, 1.8262691497802734, 1.204149842262268, -1.61245596408844, -1.0976654291152954, 0.5620847344398499, 0.014258773997426033, 1.1145908832550049, -0.048353638499975204, -1.7993223667144775, -1.3680578470230103, 0.6397918462753296, 0.8140274286270142, -1.4138717651367188, 1.7843458652496338, 2.320143222808838, -2.3691468238830566, -1.6290253400802612, 0.4552460014820099, -0.7073084115982056, -0.7053864002227783, -0.18425749242305756, 0.25378942489624023, -0.5154763460159302, -1.0927859544754028, -0.16792698204517365, -7.894286155700684, 2.1493186950683594, 1.498073935508728, 1.1957359313964844, 1.4592503309249878, -1.2221958637237549, -1.4473165273666382, -0.039233092218637466, -1.5387781858444214, 0.2809738218784332, 0.3632938265800476, -0.2190452218055725, 2.9330430030822754, -0.4174436628818512, -2.329633951187134, -1.2179923057556152, -0.9618884325027466, -1.5516972541809082, 0.019556254148483276, -0.4251065254211426, -2.3030922412872314, -2.5415854454040527, -0.11236034333705902, 0.9514794945716858, 0.7616139054298401, -8.174147605895996, -2.5553340911865234, 2.3889544010162354, -2.391383647918701, 0.27428004145622253, 0.06787795573472977, -0.32369983196258545, -0.22679738700389862, -2.1803629398345947, 0.04160657897591591, -1.6604293584823608, -1.2566741704940796, -1.6263835430145264, 2.1215732097625732, 0.7840049862861633, 2.6804425716400146, 1.8644461631774902, 0.6444897651672363, -0.5099689960479736, -2.8954007625579834, -1.2828558683395386, -3.4878811836242676, 3.494006633758545, 0.3797999918460846, -0.647855281829834, -0.13344724476337433, 0.17902664840221405, -0.9919470548629761, 1.616905689239502, -2.27630877494812, 1.643802285194397, -2.5938448905944824, -0.6710792183876038, -1.3830605745315552, 0.2624107003211975, -1.6451555490493774, -3.8474550247192383, 1.7321749925613403, 0.7066786289215088, 0.9384508728981018, -0.4754510819911957, -0.7334026098251343, 1.1032025814056396, -1.1658520698547363, 1.3763278722763062, -0.037774622440338135, -0.8751903176307678, -0.9791316390037537, 0.9107468128204346, -0.3296473026275635, -1.9909007549285889, -2.1473586559295654, -0.006557852495461702, 0.8384615778923035, -0.01962209679186344, 18.872133255004883, 0.36201873421669006, 0.798553466796875, -0.8644145131111145, 2.3191981315612793, 1.9541605710983276, 0.6602945923805237, -0.6179968118667603, -1.5543711185455322, 0.776279628276825, -0.1289747953414917, -0.06260916590690613, 1.7027626037597656, 2.0810482501983643, -1.6213568449020386, -0.39886006712913513, -0.9148863554000854, 2.371779203414917, -0.8255667686462402, 0.5241879224777222, -0.06611108034849167, 0.15851444005966187, -1.7265608310699463, -1.9876701831817627, -0.8574174642562866, -0.5137755870819092, 1.094200611114502, 2.051439046859741, -0.4424201250076294, 2.4114742279052734, 2.8330302238464355, 1.3852721452713013, -1.4038090705871582, -0.8299773335456848, 1.1527894735336304, 0.4274378716945648, 0.1335463523864746, -0.8394038081169128, -0.695540189743042, 2.1860713958740234, 0.02831282652914524, 1.38851797580719, 2.7180070877075195, -0.5800375938415527, 0.38012072443962097, -1.516226887702942, -1.4528743028640747, 2.020332098007202, 0.37799376249313354, -0.006111237220466137, 0.3068114221096039, 0.051762551069259644, -1.9482847452163696, 0.9943925738334656, 1.2114444971084595, -0.498379111289978, -0.9394795894622803, 1.5365674495697021, 0.16462092101573944, 0.6199139356613159, 1.0695781707763672, 2.171590805053711, -1.1515934467315674, 0.5827388167381287, -0.5251217484474182, -1.9005380868911743, 0.06192204728722572, -0.18885327875614166, -1.038601279258728, 0.7463323473930359, 1.9741954803466797, -0.3802947402000427, -1.7263867855072021, 0.5576955080032349, -6.5414228439331055, 2.482769250869751, -2.1220779418945312, -0.09322360157966614, -0.606932520866394, 1.5720510482788086, 1.186712622642517, -0.9327155947685242, -1.636777639389038, -0.4719899892807007, -1.5404103994369507, 1.0624099969863892, -0.8127937912940979, -2.095475673675537, -1.1025049686431885, -0.26622164249420166, 0.16464705765247345, 0.8162824511528015, -0.15933609008789062, -0.7117319107055664, -0.9574808478355408, -0.876996636390686, 2.278644561767578, -0.0024203015491366386, -0.5017860531806946, -1.2637724876403809, -0.5512189865112305, -3.1437408924102783, 1.3709018230438232, 0.026811804622411728, -1.9635486602783203, 0.31492292881011963, -0.20160254836082458, -0.24661631882190704, -1.9361134767532349, 1.3048427104949951, 3.6883456707000732, 0.5891764760017395, -3.1885087490081787, -2.2480430603027344, 0.44650864601135254, -0.2979971468448639, 0.6279115676879883, 1.7861369848251343, 1.31356680393219, 0.2839275002479553, -0.0985964760184288, 3.672964096069336, -0.4695611298084259, 0.9082326292991638, -2.184004306793213, 1.7009413242340088, -0.18669430911540985, 1.566172480583191, -1.174803376197815, -0.19450849294662476, 1.3686773777008057, 3.5500600337982178, 0.7436428666114807, -2.5459940433502197, -0.39744019508361816, 0.14069513976573944, 0.950007975101471, -1.4498867988586426, -0.7189942002296448, -0.2236652672290802, -2.013282537460327, -0.5737518668174744, 0.9382229447364807, 0.138462632894516, 0.9450423717498779, -1.2327749729156494, -0.06684131175279617, -0.21903301775455475, -0.19272048771381378, 1.4798189401626587, -0.28108158707618713, 0.008473487570881844, -1.8993659019470215, 0.6377541422843933, -1.2002936601638794, 1.3228615522384644, -0.7272652387619019, 0.6738811731338501, -12.774709701538086, 0.38885611295700073, 0.09384233504533768, 0.31756454706192017, -0.9169012308120728, 0.3109724819660187, 1.2062820196151733, -0.14381268620491028, 1.3380125761032104, 0.23123255372047424, 5.710921764373779, 2.0951988697052, -0.6727567911148071, 0.5585488677024841, -1.0341438055038452, 4.237761497497559, 2.1377511024475098, -0.49543625116348267, -1.4155120849609375, -1.9498896598815918, 0.5206643342971802, -0.6073912978172302, 1.0878022909164429, 1.1386674642562866, -0.385581910610199, 1.0004098415374756, 0.32254475355148315, -0.26826754212379456, -0.36881956458091736, 1.2502003908157349, 1.8067052364349365, -0.7950462698936462, -0.647400975227356, -0.7572196125984192, 1.8677783012390137, 2.2101082801818848, -0.4016321897506714, -2.1301164627075195, -1.4410021305084229, -0.4440961182117462, 0.9435309767723083, 0.7587440609931946, -0.7718055248260498, 0.6684849858283997, 1.4827388525009155, -0.5951601266860962, -0.04539009556174278, 1.4053939580917358, 1.600264549255371, 1.485518455505371, -0.01698189228773117, -2.1539177894592285, -0.6734874248504639, -0.1466687023639679, -1.8562843799591064, 1.368183970451355, -1.9869157075881958, -1.771111011505127, 1.3747059106826782, -2.1883490085601807, 1.245656132698059, 2.9322621822357178, -4.6943254470825195, 0.050724368542432785, 1.174140453338623, 2.134220600128174, -1.2295567989349365, -9.229207992553711, 1.1267402172088623, -0.657805860042572, -1.7399400472640991, -0.6609499454498291, -0.6485408544540405, 3.0318961143493652, -0.6680227518081665, 0.09523709863424301, -0.9661348462104797, -0.4199778139591217, -2.1234323978424072, 1.8200979232788086, 0.4164965748786926, 2.025296926498413, -3.4414825439453125, 1.9319193363189697, -0.10623864084482193, 0.2561671733856201, -0.6611090302467346, 1.3615325689315796, 2.108733892440796, 0.8126195073127747, -1.1526707410812378, -0.5965040326118469, -0.35427987575531006, -2.063122272491455, -1.2310903072357178, 1.2262243032455444, -1.8083066940307617, 0.42896851897239685, 0.3576699197292328, -0.4071148931980133, -1.2601420879364014, 0.1839064657688141, -1.5797836780548096, -1.2638546228408813, -2.8018031120300293, -0.637273371219635, 3.2183213233947754, 2.1219942569732666, -0.12670977413654327, -0.39420315623283386, 0.40950316190719604, -0.5919733643531799, -0.23056891560554504, 2.051269054412842, -0.7569652199745178, 1.4771054983139038, 1.0973950624465942, -1.8497394323349, 0.7660054564476013, 0.4079739451408386, 0.39509209990501404, -4.03759765625, 0.49509933590888977, -1.0944682359695435, 0.09745340794324875, -3.1690404415130615, 0.8090209364891052, -1.4141499996185303, 3.0473451614379883, 1.6514188051223755, 0.41704440116882324, -1.2381988763809204, -1.1585941314697266, -3.132882595062256, 1.6212838888168335, -0.30608034133911133, -0.8824394345283508, -0.8437250256538391, -0.9403614401817322, -0.8425355553627014, -0.37263181805610657, -0.1551574021577835, -0.5804091691970825, -1.1024240255355835, -1.7907911539077759, -0.0342000387609005, -0.4776504933834076, -1.3575290441513062, -2.328903913497925, 0.4996108412742615, 1.7269865274429321, 0.5199770331382751, -1.9266583919525146, -0.7093672752380371, 1.2503345012664795, 1.8306338787078857, 0.7360469102859497, -1.206422209739685, 0.6247041821479797, 0.7726438045501709, -1.032078742980957, -0.7114255428314209, 0.16287469863891602, 0.831956684589386, -0.7253220677375793, -0.47531649470329285, -1.4246597290039062, 1.755218744277954, -0.5425159335136414, 0.6625281572341919, -0.3054732382297516, -0.6943628191947937, -1.3100087642669678, -1.1087058782577515, -1.0377978086471558, -0.7500689029693604, 1.4751780033111572, 3.00736665725708, -0.6323608756065369, -2.119974136352539, -0.6540080904960632, -1.4383971691131592, -0.84005206823349, 4.245811462402344, 2.278538942337036, 3.1497910022735596, -0.27651938796043396, 0.6448743939399719, 1.4431798458099365, 0.5587866306304932, -3.0461509227752686, -1.2400342226028442, -1.0255615711212158, -1.4238051176071167, 0.5386326909065247, 0.7480037212371826, -3.042428493499756, 0.7404770255088806, 0.12366102635860443, 0.911239743232727, -0.3391643762588501, 0.223716139793396, -0.8176794648170471, 0.26733750104904175, -0.06358910351991653, -1.4497816562652588, 0.8220661878585815, 0.16676229238510132, 1.5089242458343506, 0.6346613764762878, 0.024414829909801483, 0.6593573093414307, 0.393612265586853, 0.019153645262122154, -0.7171251773834229, -0.9643132090568542, -1.9135726690292358, -0.6826731562614441, 0.5984606146812439, -0.10053187608718872, -0.2873309552669525, 2.3750436305999756, -1.2665084600448608, 2.283870220184326, 0.5721796154975891, -1.3008747100830078, 1.0985933542251587, -1.5088225603103638, 1.9784263372421265, 0.9985378980636597, 1.464012622833252, 0.059930458664894104, 1.9638173580169678, 0.8821389675140381, -1.2606337070465088, 0.1445717066526413, 1.4483168125152588, -0.2712717354297638, 0.9861794114112854, 0.16738435626029968, 1.2032196521759033, 0.016787560656666756, -1.5607249736785889, -1.5602887868881226, -2.0594980716705322, 0.8503971695899963, 0.21978792548179626, -0.7478030323982239, -1.548238754272461, -2.0839169025421143, 1.040157675743103, 0.17136456072330475, 1.4454336166381836, -0.3496195375919342, -1.5328574180603027, -0.5981230735778809, 1.348305583000183, -1.1996772289276123, 1.2960461378097534, -2.10420298576355, -1.6639989614486694, 0.6384819746017456, -0.3000016212463379, -1.7084497213363647, 1.006030559539795, -0.6925215125083923, -16.237192153930664, -1.269885540008545, -0.1343255341053009, -0.8638982176780701, 0.5025228261947632, -0.03916531801223755, -0.3935791552066803, -0.7058824896812439, -1.03640878200531, -0.008937481790781021, 1.2709771394729614, -0.10591604560613632, -1.0147794485092163, 1.338919758796692, 0.9484397768974304, 0.9701794981956482, 0.4421986937522888, 1.2322977781295776, -1.889535665512085, 0.5251283645629883, 0.3843725919723511, 1.7612661123275757, -0.6837946772575378, -0.4207232892513275, 2.161186456680298, -1.5622614622116089, -0.3522988557815552, 1.4155505895614624, -2.1782491207122803, -1.1853680610656738, 1.720255970954895, 0.25389912724494934, -0.3503161370754242, -0.4976607859134674, 0.20313221216201782, -1.7481805086135864, -0.051039956510066986, -0.07729162275791168, -1.3311573266983032, 0.3567187488079071, 2.487179756164551, 1.0334692001342773, -0.7893021702766418, -0.8556540012359619, 1.5236862897872925, -0.3487071096897125, -2.2354423999786377, -0.33195385336875916, -2.056328058242798, -3.69155216217041, 1.0659364461898804, 0.14452722668647766, 1.573434591293335, -0.45088863372802734, 0.4945583641529083, -0.5502666234970093, -0.43008995056152344, -1.099909782409668, -3.6009509563446045, 0.3614920973777771, 0.17738942801952362, 0.19482767581939697, 3.047203540802002, 0.6915555000305176, -0.3011980652809143, 0.22368474304676056, -1.2556663751602173, -0.6008588075637817, 2.426342725753784, 1.1014577150344849, -0.05255969986319542, 2.3032820224761963, 0.026818735525012016, -1.8038209676742554, 0.7464965581893921, -1.4359550476074219, -0.9251225590705872, 2.321892738342285, -0.010697663761675358, -0.523650050163269, -0.3477587103843689, -1.3873298168182373, 1.8978071212768555, -0.7265989184379578, -0.13917182385921478, 1.760409951210022, -1.8050470352172852, 1.9202536344528198, 23.424657821655273, 0.7895025610923767, -0.22024549543857574, 0.32768526673316956, 0.22950346767902374, -0.2173154354095459, 1.610393762588501, -2.5466644763946533, 0.6264030337333679, -1.3054112195968628, 2.720999002456665, -1.51677405834198, -2.8534555435180664, 1.6714026927947998, -2.2732057571411133, 2.916111707687378, -1.0937808752059937, 1.7382102012634277, -2.981768846511841, 3.435912609100342, 0.3376966118812561, -1.239315390586853, -0.400877445936203, 1.761841058731079, 3.293083667755127, -1.692542314529419, 1.9880279302597046, 0.514642059803009, -0.0478954091668129, -0.4543483853340149, 0.32787764072418213, -1.5450570583343506, 1.2334553003311157, 1.4770311117172241, -0.7615543603897095, -0.7700747847557068, -0.37422093749046326, -0.1740799993276596, 1.7913669347763062, 2.370370864868164, -1.2795953750610352, -1.1051491498947144, 1.4770939350128174, -0.03646974638104439, 0.9966365694999695, -1.172613263130188, 0.9230011701583862, 0.6721639037132263, 0.3518979251384735, -4.454400539398193, -0.44898751378059387, -2.9884603023529053, 0.3487760126590729, -0.5355443358421326, -1.8051347732543945, 0.8398903608322144, -1.3180123567581177, 1.1721769571304321, -3.272967576980591, 0.01520228385925293, 1.4445781707763672, 1.4469655752182007, 0.5919833183288574, 1.219369888305664, -1.831299066543579, 0.9018062353134155, 0.5006951689720154, 1.9173309803009033, 0.6067509651184082, -1.1368725299835205, 0.8343968391418457, -1.0959806442260742, -0.944695770740509, -0.41647955775260925, -2.262669801712036, 4.669586181640625, 1.0134044885635376, -4.808712005615234, -0.942473292350769, -2.451455593109131, -2.0447309017181396, -1.8993258476257324, 0.7938048243522644, -5.817100524902344, 0.3395240902900696, -0.5180562138557434, 0.7192035913467407, -1.9127206802368164, 0.6843070387840271, 0.17841504514217377, 0.06499477475881577, 0.9957720637321472, -1.5054919719696045, 0.37450188398361206, -2.1598570346832275, -1.8709479570388794, -1.1289294958114624, -0.515167772769928, -2.6569807529449463, -0.5510454177856445, 0.5140765309333801, 1.0727870464324951, -3.140223741531372, -1.4549286365509033, -0.038322318345308304, 2.3005473613739014, 0.41218411922454834, 0.1405603587627411, 2.579385995864868, 1.7039129734039307, 3.0319645404815674, 2.222633123397827, 0.48473167419433594, 0.39313510060310364, 1.5743176937103271, -17.08769416809082, 2.6103098392486572, -0.29352328181266785, 1.4871758222579956, -0.920323371887207, -1.261200189590454, -1.8815630674362183, -0.3742014169692993, 1.928483486175537, 0.8734447956085205, -0.7256561517715454, -0.19480429589748383, 0.4971783757209778, 0.0454951710999012, 1.5309410095214844, -1.8724687099456787, 0.2753872573375702, -0.05526876077055931, 2.019657850265503, -0.542966902256012, 2.5979809761047363, -1.5759060382843018, -2.0966858863830566, -1.2429949045181274, 0.8074167966842651, 1.6995701789855957, 2.364717483520508, -0.006171206012368202, -0.40523213148117065, 0.6031554937362671, -0.9142636656761169, -0.6844136118888855, -0.5789420008659363, -1.1073524951934814, 1.050377607345581, -0.22426076233386993, -4.312420845031738, 0.3582805097103119, 1.566651463508606, -1.0100003480911255, -2.445319652557373, 0.49360424280166626, -6.209681510925293, -3.5924978256225586, -2.6305131912231445, -3.0619750022888184, 3.185960292816162, 1.714870572090149, 1.8870161771774292, -2.1056036949157715, -1.3087836503982544, -0.397480309009552, 1.4927351474761963, -0.7130331993103027, 1.486342191696167, 0.3299499750137329, -2.418793201446533, 1.9932200908660889, 1.4768792390823364, -3.0037782192230225, -0.042862553149461746, 1.1720788478851318, 1.5001466274261475, -2.5495569705963135, -0.622663676738739, 0.7934010028839111, -1.1974726915359497, 0.36095690727233887, 0.19274689257144928, -3.497694730758667, -0.40920042991638184, 0.2558222711086273, -0.17489388585090637, -0.4993809461593628, -0.7705931067466736, -2.4662959575653076, 1.9247642755508423, 1.998637080192566, -1.9849026203155518, -1.5978630781173706, 1.7272976636886597, 2.1162023544311523, 3.836690902709961, -0.5702705979347229, 0.4890395998954773, -5.1495490074157715, -0.40522921085357666, 1.9576873779296875, -1.508880376815796, 1.41094970703125, -0.024070236831903458, -1.3425319194793701, 0.2499399334192276, -1.9436883926391602, -0.20083169639110565, -1.6973903179168701, 1.8585814237594604, 2.0651111602783203, -0.6890871524810791, 1.9258447885513306, 0.14739713072776794, -1.3216526508331299, -0.5668810606002808, -0.1970759779214859, 0.4085139334201813, 0.5241521000862122, -0.5185426473617554, 0.8455533981323242, 0.05106530711054802, -1.0309116840362549, 1.3577605485916138, 0.8617386817932129, -0.9283434748649597, -0.02036425843834877, -0.091877780854702, 0.5626043677330017, 0.9166983366012573, -1.6653329133987427, 0.6513411402702332, -2.0065479278564453, -0.25614944100379944, -1.7404941320419312, -0.14202706515789032, -1.8889561891555786, 0.7946772575378418, -2.131476402282715, 0.28767019510269165, -1.7267996072769165, -1.376927375793457, 0.305580735206604, -2.189678192138672, -0.012310806661844254, 3.2107341289520264, -0.5365090370178223, -2.4642841815948486, 0.8017498254776001, -0.3184514045715332, 0.7495277523994446, -0.4395090341567993, -1.053176760673523, 1.0031729936599731, 0.5520432591438293, 5.518334865570068, -0.260230153799057, 0.4129876494407654, -2.2801108360290527, 3.3234267234802246, -1.100612759590149, -0.1636020541191101, 0.5297877192497253, 1.1526376008987427, -0.6702059507369995, 0.11144405603408813, 1.4567251205444336, 2.211238384246826, 2.1231586933135986, -0.014792595990002155, 0.46270355582237244, -1.7553074359893799, -2.412024736404419, 0.5752195715904236, 1.0785473585128784, 1.4434525966644287, -0.36577677726745605, -0.9827273488044739, 0.22377555072307587, -3.826702833175659, -5.461728572845459, 2.8441531658172607, 0.05543769150972366, 1.0848572254180908, -2.3073110580444336, 1.1464284658432007, 6.840386390686035, 0.29163652658462524, 1.5096409320831299, 2.230553150177002, 0.03037729486823082, -0.03491774573922157, 3.0144357681274414, 2.0182530879974365, 0.1928826868534088, -0.42632055282592773, -1.7087998390197754, 0.8260899186134338, 1.0113804340362549, 2.360093832015991, -1.62473464012146, 1.5085432529449463, 2.578317642211914, 1.6136786937713623, -0.507075309753418, -2.3402822017669678, -0.07098083198070526, -1.3340305089950562, 0.19177654385566711, 1.1059727668762207, -1.3988288640975952, 0.6980583667755127, 0.04762393608689308, 2.205963373184204, 0.6097983121871948, 1.472859501838684, -0.8065006136894226, 0.8260449171066284, 0.6911891102790833, 0.7354405522346497, -1.020797848701477, 4.069032192230225, 1.1546580791473389, -1.3901289701461792, 4.088425159454346, 3.3327560424804688, -0.8147938847541809, -0.38041025400161743, -0.8002570867538452, -0.630027174949646, 0.1984773576259613, -0.5009771585464478, -2.725576400756836, -1.0677473545074463, -2.1194536685943604, 1.0863295793533325, 0.945219099521637, 0.8743425011634827, -1.5595207214355469, -3.2554945945739746, -0.059346023947000504, 1.5163980722427368, -2.4665417671203613, 1.6798737049102783, 0.13040810823440552, -1.8379839658737183, 1.0731821060180664, 3.5579402446746826, 1.2822164297103882, 1.2544536590576172, 0.21311433613300323, 1.0679103136062622, -7.644961833953857, -2.2976572513580322, -0.4696504473686218, -1.1461831331253052, 3.8370931148529053, -2.6373353004455566, -1.022015929222107, 1.944838523864746, -3.4792752265930176, 0.189581036567688, -1.4959508180618286, -0.8203619718551636, -0.8752302527427673, 1.1455988883972168, 1.394754409790039, 1.8890148401260376, 2.469120502471924, 6.615213394165039, -0.35686182975769043, -1.6679184436798096, 1.335914969444275, 0.8345732688903809, 2.998810291290283, 0.8350005149841309, -2.185638904571533, -0.9935243129730225, -0.5063812136650085, -1.023371934890747, -0.4569719731807709, 0.48809340596199036, -0.211369127035141, -1.0023069381713867, 0.6931540369987488, 1.9162567853927612, 2.1354031562805176, -0.9595145583152771, 1.6526645421981812, 1.8041722774505615, 0.6410518288612366, 0.7370561361312866, 0.6615729928016663, -1.5644463300704956, -1.0673896074295044, 6.431417465209961, -0.4807921350002289, 1.4150999784469604, -1.295664668083191, -3.4887518882751465, 1.5428330898284912, -2.5802090167999268, 2.689826488494873, -0.4622426927089691, -0.6111890077590942, 1.1808655261993408, 1.1734328269958496, -2.2830307483673096, -0.5659275054931641, 1.628258466720581, 1.4238611459732056, 0.9177718758583069, 2.57635498046875, -3.0586097240448, -0.1409277319908142, 0.13823434710502625, -0.35203301906585693, 0.9506719708442688, -6.526653289794922, 0.15715323388576508, 0.33741283416748047, 0.5778661966323853, 0.24446435272693634, -0.25828683376312256, -0.26176297664642334, -1.556192398071289, 1.7496039867401123, -2.566568613052368, -3.633755922317505, 5.877347469329834, 0.3881169557571411, 0.9792211651802063, 3.0303914546966553, -0.4234387278556824, -1.7467732429504395, -0.9940581917762756, 0.1604217141866684, 0.20533810555934906, -0.5118659734725952, 0.39175254106521606, -0.026054779067635536, -0.7470361590385437, -0.6664057970046997, 1.940830945968628, -1.7012990713119507, 0.010794420726597309, -1.8053219318389893, -1.4483990669250488, -0.9939783811569214, -2.142918586730957, -0.28726959228515625, -0.30280768871307373, -1.08336341381073, 3.519355535507202, -0.7694765329360962, 0.6794494390487671, 0.02129749022424221, 0.1468917429447174, -0.4394078552722931, 0.8040274381637573, -2.1332905292510986, 0.4357454776763916, -0.5084906816482544, 0.21598032116889954, -1.1935497522354126, 1.5270665884017944, 0.7274636030197144, 0.8407641649246216, 0.17818698287010193, 1.8959418535232544, 0.3077866733074188, 2.65822172164917, 1.8515098094940186, -0.32973712682724, 1.8853545188903809, -1.4277201890945435, -0.45664528012275696, 0.7097566723823547, 0.2476370483636856, 0.24467945098876953, -0.106924869120121, 1.5753772258758545, -0.9077993631362915, -0.2776675224304199, -0.6028621792793274, 0.3361768126487732, -1.9260371923446655, -1.4828319549560547, 2.7104969024658203, -0.32213327288627625, 1.046871542930603, -0.9400041103363037, -0.6073606014251709, 1.6994292736053467, -0.9165927767753601, -2.3352160453796387, -0.3473537862300873, -0.7119798064231873, -0.6926193237304688, 2.8489246368408203, -0.30154967308044434, -2.3563122749328613, -0.3843422830104828, 1.1836661100387573, -1.1338986158370972, -0.24423880875110626, 1.418196678161621, 0.5400394797325134, -0.015927601605653763, 0.7847772836685181, 0.2918948531150818, -2.478797435760498, 0.2756686806678772, 1.1419461965560913, 0.49127107858657837, -0.022380413487553596, -0.5809372663497925, -1.8818861246109009, -0.7043084502220154, -1.4923875331878662, 2.190058708190918, 1.125563144683838, -1.7257450819015503, 0.05809423327445984, -1.231887698173523, 2.4990298748016357, -0.6314716935157776, -0.03669692575931549, -2.2064425945281982, 1.5907856225967407, 0.4585913121700287, -1.45792555809021, -2.0502560138702393, 0.7699311971664429, -2.784538984298706, -0.9140456318855286, -0.3700370490550995, -0.8979235291481018, 0.44210389256477356, 1.0474436283111572, 1.779616355895996, 0.45078784227371216, -0.2973509728908539, -1.472576379776001, 2.0638420581817627, 0.6984675526618958, 0.28762000799179077, 3.2471299171447754, 3.79997181892395, 0.4689188301563263, 0.7657003998756409, -1.3535739183425903, 0.15177389979362488, -1.9707564115524292, -1.5294809341430664, 1.4862594604492188, -0.8001325130462646, -1.247962236404419, -1.176222562789917, -0.3547532260417938, 0.2978862226009369, 1.9624965190887451, 0.9902192950248718, -0.44017648696899414, -1.2257494926452637, -1.7168676853179932, 1.678995966911316, 0.45041409134864807, 0.29381826519966125, 0.24676980078220367, 1.4098718166351318, -0.23116594552993774, 2.851227283477783, -3.352517604827881, -1.870121717453003, 1.268830418586731, -2.901238441467285, 0.22949352860450745, 2.0386269092559814, -0.9146790504455566, -0.050751615315675735, 0.650490403175354, 0.688125729560852, -0.08217889070510864, 0.12222655117511749, -1.7349051237106323, -2.401493787765503, 0.755092978477478, 0.785330593585968, 2.030148506164551, -3.0832223892211914, -2.0020861625671387, 0.1970643252134323, -0.43846940994262695, 3.0661580562591553, -2.440918445587158, 0.255910187959671, -0.20022796094417572, -1.2181930541992188, -0.7898653745651245, -2.447021722793579, -2.7120091915130615, 1.023439884185791, 0.13306495547294617, 11.38375473022461, 0.4095974266529083, -3.126375436782837, 0.15059468150138855, 1.005212664604187, -0.6362734436988831, 1.8042926788330078, -0.544600784778595, 1.324157476425171, -0.1720346063375473, -0.48226967453956604, -0.6386629343032837, 0.7932955026626587, -1.0307537317276, -0.030334221199154854, -1.6885836124420166, 0.02540210448205471, 0.15673278272151947, 1.2310541868209839, 3.1716957092285156, 2.6241445541381836, 0.3046095371246338, 1.2929836511611938, 0.7420481443405151, 0.321260005235672, 0.669034481048584, -0.11876273900270462, 1.3900645971298218, -0.39547765254974365, -0.9423073530197144, -1.440240502357483, -2.7683916091918945, 0.5916474461555481, 0.22705861926078796, 2.289206027984619, -1.529347538948059, 3.0293784141540527, 1.585314154624939, -0.3475581705570221, -0.8158438205718994, -1.2707141637802124, 1.52529776096344, -0.4399953782558441, 0.7977296710014343, 2.15421724319458, 0.2029402256011963, 0.8182349801063538, -0.9828463792800903, -2.102130651473999, -0.7536905407905579, -0.6563103795051575, -0.8859535455703735, -2.16115140914917, 0.68268883228302, -0.8431786894798279, 1.6845060586929321, -3.457179546356201, -1.0305430889129639, 2.1177175045013428, 2.186978816986084, -0.7495031952857971, 0.4233001470565796, 1.7131890058517456, 2.653705358505249, -1.5412851572036743, 2.0931594371795654, -1.8673100471496582, 3.362546443939209, 0.37147626280784607, 2.6393561363220215, 0.5956027507781982, 3.8806629180908203, -0.8557716608047485, -1.8126965761184692, -0.6422334909439087, -0.4170646071434021, 0.07015134394168854, 1.601213812828064, 1.7752736806869507, -1.563095211982727, -1.842039942741394, 0.8949403166770935, 0.8213114738464355, 2.104454517364502, 1.5621185302734375, 1.983998417854309, 0.27188044786453247, -1.123093843460083, -0.42603784799575806, -4.802127838134766, -0.9244204163551331, -2.459841012954712, -2.634511709213257, -2.607050657272339, 0.3619783818721771, -1.8253533840179443, 2.1136412620544434, -1.0142664909362793, -0.35461071133613586, -0.08565346151590347, 1.2730433940887451, 1.4445371627807617, -2.562166213989258, -1.6224087476730347, -0.7401191592216492, -1.8183948993682861, -6.947819709777832, -2.958055257797241, -1.1326404809951782, 2.521576166152954, -0.7198857069015503, -0.19349172711372375, -2.5632424354553223, -1.1360121965408325, 1.7425504922866821, -2.3327488899230957, -0.3639349937438965, -0.7618690133094788, -0.06379194557666779, -2.3073813915252686, 0.694584846496582, 0.344064325094223, -1.2303060293197632, 1.2927721738815308, 0.06000807508826256, 0.40601813793182373, -0.8971396088600159, 0.519196629524231, -1.4103238582611084, -3.390002489089966, -1.5444581508636475, 0.7764025926589966, -1.286615014076233, -0.9456934928894043, -0.6860343217849731, -0.7364029288291931, 1.5457088947296143, 1.6128982305526733, 1.287780523300171, 1.6489148139953613, 1.67617928981781, 0.10088522732257843, -1.2689849138259888, 0.8049256205558777, -0.8268434405326843, 0.8534346222877502, 3.2546145915985107, -0.7334981560707092, -0.42363929748535156, -2.0192339420318604, 0.18278534710407257, -0.30329200625419617, -1.6454986333847046, 0.5611382126808167, 0.9428885579109192, 3.467724323272705, -1.7720670700073242, 3.3134148120880127, 0.8287512063980103, -0.6391113996505737, 0.5302921533584595, 3.3955209255218506, 1.8526530265808105, -5.831977367401123, -0.5608792901039124, -0.52732914686203, 1.1519194841384888, -3.8111307621002197, -1.112129807472229, -2.193333148956299, 3.558131456375122, -0.38883766531944275, -1.2926342487335205, -1.7179244756698608, 3.0252881050109863, -0.30636560916900635, -0.6726535558700562, -2.0738301277160645, 1.0538036823272705, -0.6432257890701294, -0.621713399887085, -1.2236216068267822, 0.47444531321525574, -1.533075213432312, 1.503252625465393, 1.7952961921691895, 2.1736719608306885, -0.3828437328338623, -0.4795142114162445, -0.7193837761878967, 1.4456597566604614, -0.02563435025513172, 0.5546603202819824, -1.2607388496398926, 1.1237564086914062, 2.7446420192718506, -1.68074369430542, -1.4911751747131348, 0.6633965373039246, 0.19930459558963776, 3.66977596282959, -2.2398242950439453, -0.29390445351600647, 0.2560953199863434, 0.26830923557281494, -2.39227032661438, 3.228013038635254, 1.5378494262695312, -0.4504263997077942, -2.826124668121338, 1.7755171060562134, 0.5379474759101868, 0.37574896216392517, 0.9193552136421204, 1.2337709665298462, -0.7457429766654968, 0.3981378376483917, 1.9126510620117188, -1.457673192024231, -1.840986967086792, -1.0645390748977661, -0.1767304390668869, 1.188957691192627, 1.2876298427581787, -0.8412945866584778, -0.25044959783554077, -1.0699965953826904, 0.009314493276178837, 0.47715994715690613, -1.6440861225128174, -0.5907453298568726, -1.049324631690979, 1.0390734672546387, 0.6445403099060059, 0.833937406539917, -0.355325847864151, 0.0994211733341217, -0.0302878487855196, 0.12409967184066772, -0.3736986219882965, 2.322896718978882, -0.07213949412107468, -0.041175637394189835, 0.15898191928863525, -1.2797447443008423, -1.7271647453308105, 1.1250183582305908, 0.053053118288517, 0.21516209840774536, -0.62578946352005, 1.643478512763977, 1.5589592456817627, 0.5566443800926208, -0.18252010643482208, 0.5588923096656799, -2.417508125305176, 1.536683440208435, 2.6799542903900146, 3.126356363296509, -1.7247638702392578, 0.7768693566322327, 0.15074074268341064, -0.7899144291877747, -0.1392408013343811, -1.8526852130889893, 0.03772513195872307, -0.5075445771217346, 0.2553730010986328, -0.8452396988868713, -0.804675817489624, 0.20948508381843567, 0.608883261680603, -0.43253928422927856, 2.2517855167388916, 1.1470715999603271, 0.057494793087244034, -1.487905502319336, -0.018844403326511383, -0.5127835273742676, -0.9914013743400574, 0.30636391043663025, 0.7900062203407288, 0.5838981866836548, -0.16234219074249268, -0.3470565378665924, -0.21970994770526886, 1.412819504737854, -2.344581365585327, 0.09724771976470947, -0.5757020711898804, 1.2181626558303833, -0.944413959980011, -0.6563422083854675, -0.5654497146606445, 2.407801628112793, 0.08510265499353409, 2.0938544273376465, 0.08230669051408768, 2.0056731700897217, -0.9489847421646118, -1.7223788499832153, -1.7133234739303589, -3.278630018234253, 1.6658223867416382, 0.10414383560419083, -0.5931969881057739, 0.6423833966255188, -2.9353301525115967, 3.526261568069458, -1.666553258895874, 0.9492028951644897, 0.667405366897583, -0.8604920506477356, 1.2735933065414429, -0.24551275372505188, 0.6441431045532227, -0.38227733969688416, -0.4630293846130371, 1.4358162879943848, 1.0937228202819824, 1.9490225315093994, 0.0740886926651001, 0.4029659032821655, -1.6319000720977783, 1.2711639404296875, -0.5974065661430359, -2.6834018230438232, 1.8502169847488403, 0.6386227607727051, 2.590479612350464, -0.49917230010032654, -2.5988664627075195, 1.9030545949935913, -0.3349710702896118, -2.7176058292388916, -1.4044554233551025, -2.1542625427246094, 0.39269959926605225, -0.3015066385269165, 0.15509101748466492, -1.8539525270462036, 3.4868879318237305, -1.4078190326690674, -3.222374200820923, -1.1986515522003174, -1.1208950281143188, 0.6884583830833435, -0.7585988640785217, 0.1059669777750969, 0.04318329319357872, -4.913561820983887, -0.05187537521123886, 3.5694751739501953, -1.9946166276931763, 0.014335528947412968, 0.04705454036593437, 1.4365737438201904, -1.2839676141738892, -0.04703819751739502, 0.6318968534469604, -0.4648891091346741, 0.28053349256515503, -2.2494683265686035, 0.8773587346076965, 3.2937123775482178, 0.461525559425354, 4.590155601501465, -0.9878007173538208, -0.08247177302837372, -0.43144866824150085, -1.0715477466583252, 1.6967984437942505, -3.3572113513946533, -0.6096997261047363, 1.3075783252716064, -2.2616846561431885, 4.197009086608887, -0.4991415739059448, 0.6471449732780457, 0.4552414119243622, 1.0929334163665771, -1.582084059715271, -0.5286394357681274, -0.5518680810928345, 0.7354360818862915, -0.2584633231163025, -0.08173595368862152, -0.5867318511009216, -1.8880888223648071, -1.814834713935852, 1.7573798894882202, 3.9596621990203857, 1.5880887508392334, 0.7259516716003418, 1.955574631690979, 0.3088712990283966, -1.7798328399658203, 1.4348945617675781, 0.8652783036231995, -0.11939241737127304, -0.42505839467048645, -0.5959363579750061, 1.7220964431762695, 2.022887706756592, 2.318899631500244, -1.0285959243774414, 0.5574663877487183, 1.8598313331604004, 2.340881824493408, -1.114876627922058, -2.9373958110809326, -0.3807956278324127, 0.9138448238372803, 0.09876017272472382, 0.736687958240509, 0.6977685689926147, -0.6091060638427734, -2.6238436698913574, 1.2243366241455078, 1.5129908323287964, 0.9895787239074707, 0.01610621064901352, -0.7177698612213135, -0.586176872253418, -0.8468607664108276, -2.300959348678589, -0.276903361082077, -0.4521595537662506, -0.39529210329055786, 2.112332344055176, -2.060443162918091, -3.177922248840332, -0.5120137333869934, 0.10933879762887955, 0.11730089783668518, 0.25420263409614563, -0.34655097126960754, -2.9007911682128906, 0.003339624498039484, 0.3639955520629883, -1.388902187347412, 1.4442331790924072, -0.861194372177124, 0.16477303206920624, 2.8582944869995117, -3.2511274814605713, -0.9999625086784363, -1.9750611782073975, 0.20032551884651184, -0.7910523414611816, 1.3464692831039429, 0.4899722933769226, -2.324185609817505, 2.6362833976745605, -2.167820453643799, -1.1179255247116089, 0.26357337832450867, 2.388129949569702, -0.3871464133262634, 2.541254758834839, -1.5910060405731201, -0.1521669179201126, 2.4372799396514893, 0.49059635400772095, 0.143768772482872, -0.2824336290359497, -0.07930364459753036, 0.18067769706249237, -1.5470519065856934, 0.8585227131843567, -1.7051506042480469, 0.2304743379354477, 1.2718594074249268, -2.262291193008423, 0.6345257759094238, 1.7309871912002563, -1.0747532844543457, 0.8628502488136292, -1.0308325290679932, 1.6426581144332886, -0.1179797425866127, 2.114360809326172, 0.4001002311706543, 1.3091498613357544, -0.5761996507644653, 1.7613424062728882, -0.9532261490821838, 1.8100963830947876, -0.551224946975708, 1.0943084955215454, 1.995148777961731, -0.2399289757013321, -2.8592641353607178, 0.8448318839073181, 1.438583254814148, -0.7680769562721252, 0.12946569919586182, 0.7584971189498901, 2.126793622970581, -0.8385722637176514, -1.3371894359588623, -0.8095458149909973, 2.117802619934082, 1.1792303323745728, -3.2345151901245117, -0.5444381237030029, 2.1084394454956055, -2.4026038646698, 0.18834252655506134, -1.2292487621307373, 0.12423299252986908, -2.0310535430908203, 0.3255136013031006, 0.2849785387516022, -2.3633954524993896, -0.6746733784675598, -0.34001630544662476, -0.25642478466033936, -1.6001611948013306, 0.8522850871086121, 1.7623180150985718, -0.1964396983385086, -1.2936173677444458, -1.528385877609253, -1.102852702140808, 0.7027903199195862, -2.311084747314453, 0.06160559877753258, -5.711217403411865, 3.7049355506896973, 0.27026474475860596, -0.921119213104248, 1.6805181503295898, 2.0733914375305176, -4.135998725891113, -0.9561137557029724, -0.6454806327819824, 0.55885910987854, -1.0215628147125244, -0.13304831087589264, -0.3172632157802582, -2.785482168197632, -0.3236042857170105, 2.439117908477783, 0.8945889472961426, -1.3276289701461792, 0.032644569873809814, 1.6577787399291992, 1.7553662061691284, -1.7791880369186401, 2.0067660808563232, -0.878115713596344, -0.22848550975322723, -0.07382026314735413, 0.6028909087181091, 0.9232040643692017, -0.7443209886550903, -1.1945438385009766, -0.5014027953147888, -0.6027995944023132, -0.9855751991271973, 0.7716651558876038, -1.7220836877822876, 0.5988412499427795, 0.6560685038566589, -1.4718652963638306, -0.09454447776079178, 0.39460813999176025, -1.0219866037368774, 0.16089311242103577, 1.2402374744415283, -3.279120922088623, -1.513095736503601, -1.7908998727798462, 1.5655872821807861, -0.9766507148742676, -0.3568771481513977, -0.6989377737045288, -2.275606870651245, -1.1739453077316284, 0.8857262134552002, 0.21379457414150238, 0.3872324228286743, 2.8312325477600098, 3.370190143585205, -1.2276592254638672, 2.5217015743255615, -2.6147425174713135, -1.7975482940673828, 0.2604275345802307, -0.9670408964157104, 1.0740933418273926, 0.0881202444434166, 0.3878750503063202, 3.7241787910461426, 2.5294928550720215, -1.554567813873291, 1.5883101224899292, 0.021601477637887, 0.7833694815635681, 0.7324634194374084, -1.0129834413528442, -1.7750601768493652, -1.6069577932357788, -0.00898703746497631, 0.6159497499465942, -0.21028690040111542, 1.0078929662704468, -1.3044366836547852, 5.082554340362549, 1.0289592742919922, -2.395045757293701, 2.4680073261260986, -0.2351224273443222, -1.6476593017578125, 0.38624653220176697, 0.2908729910850525, -0.40109455585479736, 1.2395310401916504, 1.575451135635376, -2.466839075088501, -1.930911898612976, -0.30898579955101013, 1.0600224733352661, 2.474728584289551, -0.5231278538703918, -1.1781158447265625, 2.0308663845062256, 0.27654165029525757, -1.2232980728149414, 1.4704314470291138, -0.700169563293457, -2.6749267578125, -1.2611212730407715, -1.5050514936447144, -0.9820262789726257, 1.3202519416809082, 1.7085771560668945, 2.4008524417877197, 0.5397467017173767, -2.5096402168273926, 1.4448264837265015, -2.4320006370544434, -0.6138431429862976, -0.7960938811302185, -0.8046653866767883, 0.36194565892219543, 1.4644893407821655, -0.36692118644714355, -0.3842164874076843, 0.9461280703544617, -0.394505113363266, -2.6483609676361084, -1.1774756908416748, 0.20689310133457184, -0.6184566020965576, -0.5069551467895508, 1.5505434274673462, 0.313493013381958, -0.9208681583404541, -0.5244215130805969, -0.07132044434547424, -1.0078376531600952, -0.3041566014289856, -2.9547841548919678, 0.13732536137104034, 1.058887243270874, 0.623813271522522, 1.536534070968628, 0.710353434085846, -2.091754198074341, 0.3863103687763214, -2.146207332611084, -0.2651400566101074, 0.3908107578754425, -2.1654295921325684, -0.4906494915485382, 2.2715344429016113, 0.7958000302314758, -0.3529462516307831, 0.023320848122239113, -0.6318991780281067, 0.7415646910667419, -1.5158635377883911, -1.92628014087677, 0.3778543174266815, -1.0284225940704346, 0.3418554365634918, -0.4106570780277252, 0.29304441809654236, -2.428920269012451, -0.12348226457834244, -0.34103113412857056, 0.02815360762178898, 1.9101290702819824, -1.278517246246338, -0.7780016660690308, 1.8167794942855835, 2.5061824321746826, 1.2782561779022217, -1.0568351745605469, 0.6961120367050171, 0.6501976847648621, -2.756662130355835, -1.0097459554672241, -0.9929289221763611, 0.9298126101493835, 2.3535094261169434, 27.893369674682617, 0.9989926815032959, 1.635241150856018, 0.3050057590007782, -0.11045846343040466, 0.48667430877685547, 1.4059665203094482, 2.3953042030334473, 0.24139665067195892, 1.2205312252044678, 1.4274930953979492, 1.1422854661941528, -1.2699135541915894, 0.38328030705451965, 2.3638064861297607, -0.2291434407234192, 3.1154348850250244, 0.5472202301025391, -0.10703212767839432, -1.256062626838684, -0.8193093538284302, 1.7242975234985352, -2.0377373695373535, 1.5178602933883667, 0.7586110830307007, -1.773211121559143, 0.90008145570755, 1.244199275970459, 1.8370442390441895, -1.6146992444992065, -0.5313140153884888, -0.8352211117744446, -0.28806909918785095, 2.07943058013916, -2.1276118755340576, 4.714601039886475, 0.08501234650611877, -1.0854072570800781, 0.45539429783821106, 0.02574874833226204, -0.7017617225646973, 0.271499365568161, -1.543891429901123, 1.1715095043182373, -4.165060520172119, -3.5382204055786133, -0.959351122379303, 0.586280107498169, -0.664473831653595, 0.24653545022010803, -1.3207391500473022, 1.1021311283111572, 0.8513509631156921, -0.22090765833854675, -1.2186039686203003, 0.6458785533905029, 0.068841353058815, -0.9462994337081909, -0.736159086227417, 2.489241361618042, 1.08546781539917, 0.17249566316604614, 0.00963551551103592, -2.0986745357513428, -0.18537047505378723, -1.241287112236023, 0.9592534899711609, -0.43631333112716675, 1.8670296669006348, -1.1359080076217651, 2.3669395446777344, -1.5876514911651611, -1.8304880857467651, 0.8184749484062195, 0.7685567736625671, 0.8345807194709778, 0.01114408578723669, 0.7298959493637085, -0.7284532785415649, -0.5363021492958069, -0.9247578978538513, -2.17104172706604, -0.6724880933761597, 2.363757848739624, 0.08590041846036911, 2.059079170227051, -2.2278695106506348, 3.668748140335083, 0.8368174433708191, 1.6728285551071167, -1.9286187887191772, -0.7129634618759155, -0.18277931213378906, 1.9877017736434937, -1.999313473701477, 0.6556553244590759, 2.9140737056732178, -0.3444043695926666, -0.4161573648452759, -1.4394901990890503, 1.290708065032959, 0.2468632608652115, -0.8644528388977051, 0.022347690537571907, -0.46164897084236145, 2.0218238830566406, 0.6671098470687866, 1.6139602661132812, 3.657604217529297, 2.271261692047119, 2.3326733112335205, 0.3738059401512146, 0.35563138127326965, -1.510993242263794, -0.29949405789375305, -1.237746238708496, -1.174346923828125, 0.6250507235527039, 0.5889301896095276, 0.03296980261802673, 0.5837801694869995, -1.3075876235961914, 2.2138357162475586, 0.8216298222541809, -0.16598419845104218, -0.3695119023323059, -0.1725255250930786, 0.7056125998497009, 0.5911400318145752, -1.3572112321853638, -1.7939324378967285, -0.346815824508667, 2.936661958694458, -1.8363295793533325, -2.0917155742645264, 1.1098142862319946, -1.650669813156128, 3.2686774730682373, -0.9288081526756287, 0.2646131217479706, 1.261751413345337, -2.543142557144165, 6.293051719665527, -2.597097873687744, -1.2042756080627441, -2.097094774246216, -1.8804082870483398, 0.9535214304924011, 1.670982837677002, 1.003290057182312, 4.251725196838379, 1.2506277561187744, 1.150233507156372, -1.8020832538604736, -0.3403712511062622, -0.8620516061782837, -1.283129334449768, -0.3915810286998749, 2.7018449306488037, -0.10127142071723938, -0.00876553077250719, 7.760560989379883, -2.298708438873291, 1.0014913082122803, -0.7197350263595581, 0.8198022842407227, 0.5770737528800964, -0.6671212315559387, -1.9607622623443604, -3.9859671592712402, 0.8894888162612915, 0.3556593656539917, -1.2468639612197876, -0.42202192544937134, -0.8496314287185669, 2.4973671436309814, 1.2184630632400513, -1.3097401857376099, -1.4257316589355469, -0.8838949799537659, 2.522961378097534, 1.0242716073989868, 1.1449272632598877, 1.494399070739746, 1.3268615007400513, 0.7323814630508423, 0.5462021827697754, -4.27741813659668, -0.5482227206230164, 0.6894055604934692, -1.457056999206543, -1.8107671737670898, 1.7643498182296753, -1.6268867254257202, -1.6463972330093384, 0.7533250451087952, -1.5215373039245605, 0.7346979975700378, -0.3701346814632416, -0.0226410161703825, -0.6458364725112915, -1.3796308040618896, -0.3815940320491791, 6.269187927246094, 2.289961338043213, -0.9773929715156555, -0.249546617269516, -1.6514405012130737, 0.867066502571106, 0.22829703986644745, -0.4617983400821686, 3.3042094707489014, 0.9521559476852417, -0.695234477519989, 2.962653398513794, -0.8236230611801147, 0.20833659172058105, 0.5054753422737122, 0.15649761259555817, 0.3403320610523224, -0.32528480887413025, -1.026519775390625, -0.8924757242202759, -1.8446648120880127, 2.6933515071868896, 1.8860138654708862, 0.46468058228492737, 0.48231080174446106, -0.8378691077232361, -1.9460488557815552, -1.1861300468444824, 0.7595608234405518, -1.095468521118164, 1.4308674335479736, 0.328189879655838, -2.451094388961792, -2.8908376693725586, -0.4236178398132324, -1.6981369256973267, 0.07236644625663757, -0.9503749012947083, 0.8383578658103943, 1.0358505249023438, 0.7380673885345459, 2.28603196144104, -1.8723185062408447, 0.5223669409751892, -0.011290911585092545, -0.7238665223121643, -1.6246486902236938, -2.181584596633911, 1.508367657661438, -0.6955671310424805, -6.630421161651611, 1.5550339221954346, 0.05992800369858742, 0.9386507272720337, -2.148855209350586, -2.04305100440979, 1.38173246383667, -1.2380393743515015, -3.3567206859588623, -1.3756507635116577, -0.2942374348640442, -4.111190319061279, 0.32021233439445496, -2.2395267486572266, -0.8271233439445496, -0.5836808085441589, 1.9801377058029175, -0.9668284058570862, 1.8952913284301758, 1.645387053489685, -0.14554183185100555, 1.147283911705017, -3.311444044113159, -0.201595276594162, -0.5542925596237183, 1.3598580360412598, 0.26370614767074585, 0.023029671981930733, -0.921843409538269, -2.9373505115509033, -0.2886929214000702, 0.4618637263774872, -1.1411409378051758, 2.7564940452575684, -2.9174437522888184, -0.6974139213562012, 2.123971462249756, -1.2719080448150635, -0.05564053729176521, -2.2673184871673584, -0.12627746164798737, -0.7531415820121765, 0.538124680519104, 0.9171910285949707, 0.16229069232940674, -1.6697087287902832, -0.15993909537792206, -1.8202638626098633, -0.1887633353471756, -0.7874069213867188, -1.3994258642196655, -0.3914186656475067, -2.069002389907837, 0.14583337306976318, 0.13571859896183014, 1.0151398181915283, -1.4915581941604614, -0.05901025980710983, -0.1938810497522354, 0.3131210207939148, -0.16058966517448425, -0.9250679016113281, -14.631373405456543, 0.9575139880180359, 3.1770806312561035, 1.2021996974945068, -0.6654183268547058, 3.9404962062835693, -0.7658974528312683, 2.7717905044555664, -1.520410418510437, 0.3642917275428772, -0.7192654609680176, 1.9125748872756958, 0.9570345878601074, -0.09266321361064911, -0.38360461592674255, 1.738484263420105, -3.2710161209106445, -1.7709176540374756, -2.0774242877960205, -0.3601045608520508, 0.5720903277397156, -0.699288010597229, 0.10553744435310364, -0.18496277928352356, 0.7611597180366516, -1.770328402519226, -2.7276382446289062, 1.824327826499939, -2.353358745574951, -0.402118444442749, 1.1608465909957886, 0.7886192798614502, -0.9140638113021851, -1.318404197692871, -0.4397779405117035, 2.865103006362915, -0.0457182377576828, -0.7885135412216187, 0.9373155236244202, -2.107434034347534, -0.38358789682388306, -0.3919948637485504, 2.923556327819824, -4.701347827911377, -0.7249741554260254, -0.9489683508872986, 1.0044702291488647, -0.11666374653577805, -1.3404510021209717, 0.5153619647026062, 0.04754114896059036, -0.19456803798675537, 1.3827818632125854, -2.0031208992004395, -1.289810299873352, 3.416640520095825, -2.449042797088623, 0.9355893135070801, 1.6686389446258545, 0.7991522550582886, -0.563110888004303, 1.418690800666809, -0.8917520642280579, 2.360565185546875, 2.634204626083374, 1.5688698291778564, -0.45071038603782654, -3.2660880088806152, -1.4052941799163818, 1.387974500656128, -0.23124323785305023, -1.476924180984497, 0.5204784870147705, 0.34926602244377136, -2.4898107051849365, -1.7497012615203857, 0.7724961042404175, -0.0890677198767662, 0.13224686682224274, 1.2534589767456055, 0.045317936688661575, 0.06332586705684662, 3.345268726348877, 0.8872537612915039, 0.6012753248214722, -0.6033196449279785, -0.5802770256996155, 0.3494185507297516, -1.682992935180664, -1.1012550592422485, 0.5895649790763855, 2.7002875804901123, 1.0863090753555298, -1.7454692125320435, -1.0909974575042725, 1.7235828638076782, 1.070810079574585, 0.9742421507835388, 0.06108007952570915, 1.931785225868225, -2.0204646587371826, -2.1400067806243896, -1.0201374292373657, 1.1510684490203857, -1.5037842988967896, -0.27043673396110535, 0.22798877954483032, -0.21005190908908844, 1.2690585851669312, 0.7277141213417053, 0.5758188366889954, -0.5459479689598083, -2.0902504920959473, -2.0736305713653564, -0.7945910096168518, -1.9498969316482544, -2.2743165493011475, 0.13061034679412842, -0.47374510765075684, -1.5163371562957764, 2.2691502571105957, 0.6805631518363953, 1.4631695747375488, 1.3238294124603271, -0.6621432304382324, -0.8533355593681335, 3.7632603645324707, 3.0241312980651855, -8.06316089630127, 1.8399620056152344, -0.852032482624054, 1.584251046180725, 0.41511836647987366, 0.22672411799430847, -0.26263105869293213, -3.6368632316589355, 0.926706075668335, 1.6890989542007446, 1.4503737688064575, -0.7642179131507874, -0.8178099989891052, 1.9415658712387085, -2.3238351345062256, 0.21372850239276886, 6.099509239196777, 4.171093463897705, 1.5177711248397827, -1.1565263271331787, 0.9976243376731873, -0.4523465931415558, 0.013580133207142353, 0.12584920227527618, 0.2991982400417328, 0.6719919443130493, -0.3317100703716278, -1.9753837585449219, -0.007987353019416332, 1.5750924348831177, -1.1654324531555176, 0.29240575432777405, -1.4655816555023193, -3.045579195022583, -2.5024802684783936, -0.40280434489250183, -0.7322313189506531, 0.10708696395158768, -2.0583841800689697, -1.045668601989746, -1.9754096269607544, -0.20613901317119598, 1.688043236732483, -0.06682968884706497, -2.257188081741333, -3.6643080711364746, -0.20721864700317383, -0.31327947974205017, -3.6634974479675293, -0.1695028841495514, -0.4593466520309448, 1.0550178289413452, -0.31605079770088196, 0.33697763085365295, 1.8109651803970337, -0.39704281091690063, 1.5428825616836548, 0.0765533298254013, -0.7723068594932556, -0.008361696265637875, -0.027305293828248978, 0.9093282222747803, 1.4793466329574585, -0.09230943024158478, 0.2398260086774826, 1.9512848854064941, 2.1526379585266113, -1.1372538805007935, -0.9880079030990601, 0.05866040289402008, 1.6449939012527466, 1.2967973947525024, -2.3071162700653076, 0.43727558851242065, -1.2817187309265137, -0.026710188016295433, 0.18430902063846588, 1.378725290298462, -0.9239446520805359, 0.27773207426071167, 0.3913203775882721, -0.4901234805583954, -1.6399188041687012, -0.12080557644367218, 0.7691868543624878, 0.1709577590227127, 0.10396196693181992, -2.130411386489868, -2.179257392883301, 0.7922729253768921, 0.27633994817733765, -1.7050774097442627, 0.6258018612861633, -2.0217652320861816, 0.6698062419891357, -0.8379725813865662, -1.3636385202407837, -0.9972206354141235, 0.7543817162513733, 0.05158863589167595, -2.257720470428467, 0.442294716835022, -1.8589301109313965, -0.500280499458313, 0.25550076365470886, -3.839138984680176, 0.4164075553417206, -1.7582212686538696, 1.8491343259811401, 0.320035457611084, 1.887444257736206, 3.1942121982574463, 0.1120339184999466, -0.5607714056968689, -0.1297776848077774, -0.8522632122039795, -3.525956153869629, -1.5982003211975098, 2.4504852294921875, 2.46470046043396, -0.8185501098632812, -0.5449082255363464, 2.8579764366149902, -0.044694188982248306, 1.0574771165847778, 1.4608573913574219, 1.3664439916610718, 0.7093403935432434, -2.4899682998657227, -1.9996600151062012, 0.4483301341533661, 1.8011810779571533, -0.9083479046821594, 0.1403864026069641, 1.2353026866912842, 1.4890071153640747, 0.5965154767036438, -2.2207891941070557, -0.386689692735672, 1.0173559188842773, 0.3317832052707672, 1.242241621017456, 8.096700668334961, -1.3860564231872559, -0.48307186365127563, 2.5056164264678955, -4.412651538848877, 1.4777299165725708, 1.2915771007537842, -0.3042348027229309, 1.3734688758850098, -1.0148760080337524, 0.29798030853271484, 1.5803537368774414, 1.6444553136825562, 0.5807373523712158, 2.011157512664795, 2.430384874343872, -0.001317560556344688, -0.37967628240585327, -2.5261998176574707, 3.2119202613830566, 1.7307785749435425, 2.321204900741577, -3.089421510696411, -1.120242714881897, -2.4553184509277344, 2.1926932334899902, -1.463491678237915, -0.39328238368034363, 4.166314601898193, -0.6354401707649231, 1.4693533182144165, 1.5991348028182983, -0.22541369497776031, 0.7343212962150574, 0.1794258952140808, -2.6583163738250732, 0.0027457335963845253, 1.6476435661315918, 1.0695385932922363, 0.8916047811508179, -2.3013198375701904, -1.501152515411377, 1.6795622110366821, 0.7713955044746399, 0.4782435894012451, 0.23006942868232727, 2.595839500427246, 0.2424996942281723, -0.5558034777641296, -0.04674000293016434, -0.6988910436630249, -0.429269403219223, -0.1290259063243866, 0.3222062587738037, 1.017810344696045, -0.5098836421966553, -3.4084291458129883, 0.3000796139240265, 0.7957308888435364, 0.7062281370162964, 1.6956732273101807, 0.5430508852005005, -0.3600875437259674, -1.298385739326477, 1.9226042032241821, 1.5142651796340942, -3.1519079208374023, -0.7966042160987854, -0.27132460474967957, -0.5806691646575928, 2.560450792312622, 1.5697822570800781, -0.4995734989643097, 0.29847368597984314, 0.07077287137508392, -0.12948045134544373, -3.5200178623199463, 0.6674454212188721, -1.3807265758514404, -0.4995282292366028, 1.9198191165924072, 0.5224218964576721, 2.4898221492767334, 11.09000015258789, 0.9179505705833435, -1.7494560480117798, 1.579803466796875, -2.7534961700439453, -1.3340791463851929, 1.9154255390167236, -0.01608842983841896, 0.821875810623169, -0.2625766098499298, 1.5072975158691406, -0.713702380657196, -1.4145824909210205, -1.5109056234359741, 2.1455888748168945, -1.419687271118164, -0.5414632558822632, 1.4491149187088013, 1.5224276781082153, 0.8204352855682373, -1.070623755455017, 0.46470969915390015, -0.006221574731171131, -0.18256701529026031, 2.493424892425537, -0.49038708209991455, 0.42922085523605347, 0.873096227645874, -0.31695419549942017, 2.991065740585327, -1.3125733137130737, 0.5723339319229126, 0.2613622844219208, -1.9564348459243774, 2.178072452545166, -1.5708738565444946, 0.8963414430618286, 1.5022779703140259, 2.5450186729431152, -0.292618989944458, 0.15747855603694916, 2.1199207305908203, 0.21814104914665222, -0.8757757544517517, 0.07445792108774185, 0.07510267198085785, -0.5053762197494507, 0.7606169581413269, -3.169386625289917, -1.1002830266952515, 1.8861533403396606, 2.0080013275146484, -1.7342684268951416, -1.1598358154296875, -0.7158825993537903, -0.1937912255525589, -2.8064157962799072, 0.755673348903656, 8.499192237854004, -0.7812408804893494, 1.57917058467865, -3.151332139968872, -1.9226319789886475, -1.5604653358459473, 0.5534848570823669, 3.228034496307373, -1.6294361352920532, -0.27278730273246765, -0.867935061454773, 2.1341497898101807, 1.1075159311294556, 0.7477016448974609, 2.5511136054992676, -1.5523147583007812, -0.9242894053459167, 0.8773165941238403, 1.6915799379348755, -1.1594383716583252, 0.23813001811504364, -1.4064743518829346, -1.6849969625473022, -2.9580302238464355, -2.5688488483428955, -1.1904170513153076, -3.782924175262451, 0.7100740671157837, -1.3624398708343506, -0.9443717002868652, -0.5225216746330261, -0.09034554660320282, -2.3202784061431885, -0.23590344190597534, -1.5452443361282349, 1.2575849294662476, 1.4288854598999023, 1.638762354850769, -1.7967208623886108, 1.0915971994400024, 0.9493638873100281, 1.095393419265747, 0.8215399980545044, -0.2051163911819458, 2.168558359146118, -1.6670429706573486, -0.049629729241132736, 2.85097599029541, -0.4837287664413452, 0.6502736210823059, -2.374113082885742, 0.7011888027191162, -1.978821039199829, -0.15510064363479614, 0.4679356813430786, 1.8866007328033447, 2.520395278930664, -1.1996338367462158, 0.7295427322387695, 0.9605655074119568, 0.05692993104457855, 0.7287044525146484, 3.7953286170959473, 2.68047833442688, 0.4475618600845337, 0.5628949999809265, 0.4778791069984436, -0.5932527184486389, 1.836578130722046, 1.5961389541625977, 1.3328230381011963, -0.7625845670700073, 0.964162290096283, 1.548017978668213, 0.9993221759796143, -1.4471023082733154, 1.100744366645813, -1.5122473239898682, -0.6169258952140808, 3.0650243759155273, -1.7722645998001099, -0.18872833251953125, -1.5391753911972046, 0.2957899868488312, -0.3034318685531616, 0.7158978581428528, 11.45010757446289, -0.970210611820221, -0.5953302979469299, 0.5357429385185242, -1.7459461688995361, 0.6572960615158081, 0.5218455195426941, -0.251964807510376, 1.4631516933441162, 4.249364376068115, -1.0942943096160889, -0.9652121067047119, -1.0656694173812866, -1.9772387742996216, -1.6469305753707886, -1.335737705230713, -1.819305658340454, 0.03515125438570976, -0.6280084848403931, 2.1817753314971924, 1.5289617776870728, 2.5101521015167236, -0.6491972208023071, -8.361392974853516, 0.06266439706087112, -2.3298821449279785, 0.3874412477016449, -0.23243151605129242, -3.78399658203125, 0.6930876970291138, 0.44730332493782043, -0.9292389750480652, -1.092700481414795, 1.0822983980178833, 0.38801273703575134, -2.0460126399993896, -0.28162679076194763, 0.9888787269592285, 0.05821562930941582, 3.9159140586853027, 0.17979349195957184, 1.6432956457138062, -0.40627729892730713]}}}}]}}}
[NodeWithScore(node=TextNode(id_='657e40fb-497c-4c1a-8524-6351adbe990f', embedding=None, metadata={'director': 'Francis Ford Coppola', 'theme': 'Mafia'}, excluded_embed_metadata_keys=[], excluded_llm_metadata_keys=[], relationships={}, hash='81cf4b9e847ba42e83fc401e31af8e17d629f0d5cf9c0c320ec7ac69dd0257e1', text='The Godfather', start_char_idx=None, end_char_idx=None, text_template='{metadata_str}\n\n{content}', metadata_template='{key}: {value}', metadata_seperator='\n'), score=0.5), NodeWithScore(node=TextNode(id_='fc548a8e-5a1e-4392-bdce-08f8cb888c3f', embedding=None, metadata={'director': 'Francis Ford Coppola', 'theme': 'Mafia'}, excluded_embed_metadata_keys=[], excluded_llm_metadata_keys=[], relationships={}, hash='81cf4b9e847ba42e83fc401e31af8e17d629f0d5cf9c0c320ec7ac69dd0257e1', text='The Godfather', start_char_idx=None, end_char_idx=None, text_template='{metadata_str}\n\n{content}', metadata_template='{key}: {value}', metadata_seperator='\n'), score=0.0005)]