Click to see the answer
import os
from dotenv import load_dotenv
load_dotenv()This first part will show you how to build a vector database, i.e., the “augmented” knowledge aimed to guide your LLM’s responses.
The simplified workflow will be as follows:
Raw Data → Clean Documents → Embeddings → Vector DB (Qdrant)
.env file into your environment.openai client. Please name this client client_llmlab.You will need to use your creds os.environ["LLMLAB_URL"] and os.environ["LLMLAB_API_KEY"] (see the previous chapter).
More information here about OpenAI API.
You can notice the llm.lab platform provides both generation and embedding models.
The OpenAI API provides a standard way to interact with language models for text generation and embeddings. Here, instead of OpenAI’s cloud, we connect to a remote Ollama server (the famous llm.lab from the even more famous SSPCloud), which hosts the models. The API interface stays the same, so you can generate text or create embeddings with calls like .completions.create() or .embeddings.create() while all computation happens on the Ollama server.
ID: glm-4.7-flash:latest
ID: gpt-oss:120b
ID: gpt-oss:20b
ID: qwen3-embedding:8b
ID: gemma4-26b-moe
ID: gemma4-31b
ID: qwen3-5-9b
client_qdrant.Find the documentation here to dive deeper 😉.
Time to import our data: the official NACE2.1 definitions!
The data are stored in the s3 storage system of the SSPCloud platform (uploaded from Eurostat)
import duckdb
con = duckdb.connect(database=":memory:")
con.execute("INSTALL httpfs;")
con.execute("LOAD httpfs;")
path_nace = 'https://minio.lab.sspcloud.fr/projet-formation/diffusion/funathon/2026/project2/NACE_Rev2.1_Structure_Explanatory_Notes_EN.tsv'
query_definition = f"SELECT * FROM read_csv('{path_nace}')"
table = con.execute(query_definition).fetch_arrow_table()
nace = table.to_pylist()
nace[22]{'ORDER_KEY': 230,
'ID': '014',
'CODE': '01.4',
'HEADING': 'Animal production',
'PARENT_ID': '01',
'PARENT_CODE': '01',
'LEVEL': 3,
'Implementation_rule': None,
'Includes': 'This group includes:\\n- farming (husbandry, raising) and breeding of all animals, except aquatic animals',
'IncludesAlso': None,
'Excludes': 'This group excludes:\\n- farm animal boarding and care, see 01.62\\n- production of hides and skins from slaughterhouses, see 10.11'}
Build a class NaceDocument that will help you handle your NACE documents :
text, created by a to_embedding_text method,See an example of a cleaned and ready text for embedding:
# Code: 03.11
# Title: Marine fishing
## Includes:
This class includes:
- fishing on a commercial basis in ocean and coastal waters
- taking of marine crustaceans and molluscs
- whaling
- taking of marine aquatic animals (e.g. turtles, sea squirts, tunicates, sea urchins)
## Also includes:
This class also includes:
- gathering of other marine organisms and materials (e.g. natural pearls, sponges, coral, seaweed, algae)
## Excludes
This class excludes:
- frog farming, see 03.22\n
- operation of sport fishing preserves, see 93.19from dataclasses import dataclass, field
from typing import Optional
def _clean(value) -> Optional[str]:
"""Normalize to stripped single-line string, or None if empty/missing."""
if value is None:
return None
# str() handles non-string values (int, float...) from raw dicts
# replace("\n", " ") flattens multiline strings to a single line
# split() tokenizes on any whitespace, join(" ") rebuilds with single spaces
cleaned = " ".join(str(value).replace("\n", " ").split())
# Empty string is falsy in Python — return None instead for consistency
return cleaned or None
@dataclass
class NaceDocument:
code: str
heading: str
level: int
parent_code: Optional[str] = None
includes: Optional[str] = None
includes_also: Optional[str] = None
excludes: Optional[str] = None
text: str = field(init=False)
@classmethod
def from_raw(cls, raw: dict, with_includes_also=True, with_excludes=False,) -> "NaceDocument":
for key in ("CODE", "HEADING", "LEVEL"):
if not raw.get(key):
raise ValueError(f"Missing required field: {key}")
level = int(raw["LEVEL"])
if not (1 <= level <= 4):
raise ValueError(f"Invalid level: {level}")
obj = cls(
code=str(raw["CODE"]).strip(),
heading=_clean(raw["HEADING"]),
level=level,
parent_code=_clean(raw.get("PARENT_CODE")),
includes=_clean(raw.get("Includes")),
includes_also=_clean(raw.get("IncludesAlso")),
excludes=_clean(raw.get("Excludes")),
)
obj.text = obj.to_embedding_text(
with_includes_also=with_includes_also,
with_excludes=with_excludes,
)
return obj
def to_embedding_text(
self,
*,
with_includes_also: bool = False,
with_excludes: bool = False,
) -> str:
parts = []
parts.append(f"# Code: {self.code}")
parts.append(f"# Title: {self.heading}")
if self.includes:
parts.append("")
parts.append("## Includes:")
parts.append(self.includes.strip())
if with_includes_also and self.includes_also:
parts.append("")
parts.append("## Also includes:")
parts.append(self.includes_also.strip())
if with_excludes and self.excludes:
parts.append("")
parts.append("## Excludes:")
parts.append(self.excludes.strip())
output = "\n".join(parts)
output = output.replace("\\n", "\n")
return output.strip()
nace_documents = []
for nace_code in nace:
nace_documents.append(
NaceDocument.from_raw(
raw=nace_code,
with_includes_also=True,
with_excludes=True
)
)Excludes fieldfrom pprint import pprint
i = 50
print(f"Printing index {i}:")
print("=============================================")
print("=============================================")
nace_example = nace[i]
doc_example = NaceDocument.from_raw(nace_example)
print("\nPrinting text to embed (WITH exclusions):")
_ = doc_example.to_embedding_text(
with_includes_also=True,
with_excludes=True,
)
print(doc_example.text)
print("=============================================")
print("=============================================")
print("\nPrinting text to embed (WITHOUT exclusions):")
_ = doc_example.to_embedding_text(
with_includes_also=True,
with_excludes=False,
)
print(doc_example.text)Printing index 50:
=============================================
=============================================
Printing text to embed (WITH exclusions):
# Code: 03.11
# Title: Marine fishing
## Includes:
This class includes:
- fishing on a commercial basis in ocean and coastal waters
- taking of marine crustaceans and molluscs
- whaling
- taking of marine aquatic animals (e.g. turtles, sea squirts, tunicates, sea urchins)
## Also includes:
This class also includes:
- gathering of other marine organisms and materials (e.g. natural pearls, sponges, coral, seaweed, algae)
=============================================
=============================================
Printing text to embed (WITHOUT exclusions):
# Code: 03.11
# Title: Marine fishing
## Includes:
This class includes:
- fishing on a commercial basis in ocean and coastal waters
- taking of marine crustaceans and molluscs
- whaling
- taking of marine aquatic animals (e.g. turtles, sea squirts, tunicates, sea urchins)
## Also includes:
This class also includes:
- gathering of other marine organisms and materials (e.g. natural pearls, sponges, coral, seaweed, algae)
Now let’s choose an embedding model. We will use Qwen3-Embedding-8B, available on HuggingFace (like all other models provided by llm.lab).
For later use, we need to know the dimension of the vectors output by our model: 4096 (see the model card on HuggingFace).
client_qdrant and the method create_collection to create a new Qdrant collection (e.g: a new vector database). For example, call it nace-collection.from qdrant_client.models import Distance, VectorParams
COLLECTION_NAME = "nace-collection-test"
# Delete the collection if necessary
if client_qdrant.collection_exists(collection_name=COLLECTION_NAME):
client_qdrant.delete_collection(collection_name=COLLECTION_NAME)
# Create the collection
client_qdrant.create_collection(
collection_name=COLLECTION_NAME,
vectors_config=VectorParams(
size=emb_dim,
distance=Distance.COSINE
)
)So far, you should see your new empty collection from Qdrant’s UI:
Use your client_llmlab and the method .embeddings.create to embed your NACE descriptions created earlier.
NaceDocument class like previously:get_embeddings method (not called by the constructor) that generates an embedding vector for a NaceDocument instance.vector attribute.from dataclasses import dataclass, field
from typing import Optional, List
@dataclass
class NaceDocument:
code: str
heading: str
level: int
parent_code: Optional[str] = None
includes: Optional[str] = None
includes_also: Optional[str] = None
excludes: Optional[str] = None
text: str = field(init=False)
vector: Optional[List[float]] = field(default=None, init=False)
@classmethod
def from_raw(
cls,
raw: dict,
with_includes_also=True,
with_excludes=False,
) -> "NaceDocument":
for key in ("CODE", "HEADING", "LEVEL"):
if not raw.get(key):
raise ValueError(f"Missing required field: {key}")
level = int(raw["LEVEL"])
if not (1 <= level <= 4):
raise ValueError(f"Invalid level: {level}")
obj = cls(
code=str(raw["CODE"]).strip(),
heading=_clean(raw["HEADING"]),
level=level,
parent_code=_clean(raw.get("PARENT_CODE")),
includes=_clean(raw.get("Includes")),
includes_also=_clean(raw.get("IncludesAlso")),
excludes=_clean(raw.get("Excludes")),
)
obj.text = obj.to_embedding_text(
with_includes_also=with_includes_also,
with_excludes=with_excludes,
)
return obj
def to_embedding_text(
self,
*,
with_includes_also: bool = False,
with_excludes: bool = False,
) -> str:
parts = []
parts.append(f"# Code: {self.code}")
parts.append(f"# Title: {self.heading}")
if self.includes:
parts.append("")
parts.append("## Includes:")
parts.append(self.includes.strip())
if with_includes_also and self.includes_also:
parts.append("")
parts.append("## Also includes:")
parts.append(self.includes_also.strip())
if with_excludes and self.excludes:
parts.append("")
parts.append("## Excludes:")
parts.append(self.excludes.strip())
output = "\n".join(parts)
output = output.replace("\\n", "\n")
return output.strip()
def get_embeddings(
self,
client_llmlab,
emb_model: str,
) -> List[float]:
try:
response = client_llmlab.embeddings.create(
model=emb_model,
input=self.text
)
self.vector = response.data[0].embedding
return self.vector
except Exception as e:
raise RuntimeError(f"Embedding failed for doc {self.code}: {str(e)}")# Recreate your NACE documents (that class has been updated)
sample_size = 10
nace_documents = []
for nace_code in nace[:sample_size]:
nace_documents.append(
NaceDocument.from_raw(
raw=nace_code,
with_includes_also=True,
with_excludes=True
)
)
for nace_doc in nace_documents:
nace_doc.get_embeddings(
client_llmlab,
emb_model,
)
Printing the first document:
NaceDocument(code='A', heading='AGRICULTURE, FORESTRY AND FISHING', level=1, parent_code=None, includes='This section includes the exploitation of vegetal and animal natural resources, comprising the activities of growing of crops, raising and breeding of animals, harvesting of timber and other plants, and the production of animal products from a farm or natural habitats.', includes_also='This section also includes organic agriculture, aquaculture, the growing of genetically modified crops and the raising of genetically modified animals.', excludes='This section excludes undifferentiated subsistence goods-producing activities of households, which are classified in class 98.10.', text='# Code: A\n# Title: AGRICULTURE, FORESTRY AND FISHING\n\n## Includes:\nThis section includes the exploitation of vegetal and animal natural resources, comprising the activities of growing of crops, raising and breeding of animals, harvesting of timber and other plants, and the production of animal products from a farm or natural habitats.\n\n## Also includes:\nThis section also includes organic agriculture, aquaculture, the growing of genetically modified crops and the raising of genetically modified animals.\n\n## Excludes:\nThis section excludes undifferentiated subsistence goods-producing activities of households, which are classified in class 98.10.', vector=[0.013604626, 0.0040469267, -0.013055056, 0.0018571938, 0.019681796, 0.0021292074, -0.015450935, -0.015548654, -0.007361683, -0.009928224, -0.04116786, 0.043227788, 0.022655034, 0.004115308, 0.008463436, 0.011874151, 0.02463015, -0.019429542, 0.007998721, 0.06486532, 0.020154107, 0.019266449, 0.002914384, 0.009437451, 0.026283171, 0.0021734613, 0.027899496, 0.0027052388, 0.0113111595, -0.042250417, -0.025353452, 0.0023314483, 0.005428814, 0.019085042, -0.042523846, -0.005446706, -0.0076410365, 0.008316522, 0.006585934, -0.004694277, -0.016216371, -0.0082428185, -0.027061068, -0.002988109, 0.0033358738, 0.006163187, -0.01844918, 0.025980474, -0.001096586, 0.0003369544, 0.020229273, -0.018327052, 0.017543104, 0.00390692, -0.018135028, 0.0030722255, -0.011713002, -0.002424628, -0.019514453, 0.022339227, -0.0017924856, 0.005736517, -4.6242258e-06, 0.023460107, 0.0004332938, -0.00271401, -0.0038558461, -0.011756422, -0.0033033225, 0.00085411384, -0.007260791, -0.017822588, -0.0008009078, -0.02298287, 0.0060235807, -0.02920654, -0.021855446, -0.019795798, 0.0259029, 0.00085546734, 0.0016102532, -0.0060231765, -0.03522702, -0.012585426, -0.0064021572, 0.0030953183, -0.01718373, -0.00014400175, -0.018250417, -0.022734059, -0.006347902, 0.019929303, -0.003050049, 0.026287934, 0.011950075, 0.019104859, -0.0025929776, -0.043280825, -9.89983e-05, -0.0016200771, -0.0026893415, 0.024195587, -0.0149740605, 0.017169086, 0.0013138424, -0.010262059, -0.0070850467, -0.0034649675, 0.017301183, 0.00057972985, -0.013590912, 0.006376245, 0.00806601, -0.0127948765, -0.018197995, -0.004665206, -0.008717856, -0.004776167, 0.0023904464, -0.0009949211, 0.01018708, -0.0025031366, -0.0006164241, 0.012572009, 0.0010416118, -0.017546253, -0.01756614, -0.0220954, -0.00954496, 0.011993238, 0.003243104, -0.016800974, 0.0013411787, 0.020911142, -0.008330714, -0.013575843, 0.02246524, 0.0035645545, 0.017838974, 0.020888677, -0.014595095, 0.009850748, 0.03362239, 0.018065644, -0.0107895015, -0.006632475, 0.010412162, 0.010107545, 0.0037547841, 0.018244455, 0.0018815197, -0.013162242, 0.012263615, -0.003475388, -0.009796617, -0.008291234, -0.009468603, 0.013887128, -0.0093615465, -0.018465165, -0.013985957, 0.0037506167, 0.0033880305, 0.005078047, -0.014511049, -0.019506637, 0.011590324, 0.004579578, 0.006915524, 0.005815233, 0.009136001, -0.006027578, -0.016472429, 0.010213692, -0.0100369835, -0.011516339, 0.0043478315, 0.008125539, -0.008559291, 0.000100535515, 0.016296493, -0.015126037, 0.0024209588, 0.030163612, -0.0132495565, 0.0044692736, 0.010034308, -0.016706098, 0.0007081233, -0.012808807, 0.028290072, -0.0024691334, 0.005860843, 0.023379501, -0.0030904892, 1.0328246e-05, 0.004022766, 0.013190172, 0.0031711487, 0.009573141, 0.018143611, -0.026548026, 0.019045884, 0.0010501138, -0.011988678, -0.010585814, -0.0053028488, 0.019851917, -0.0028791693, -0.013884469, 0.02497876, -0.015083474, 0.0022430595, -0.006921646, 0.009624773, -0.010140331, 0.0068357014, 0.027130105, -0.013498643, -0.02355474, -0.0039934344, -0.025851179, -0.0111569045, -0.003869868, -0.0010909438, -0.0039333906, -0.0105716875, -0.0253558, -0.00059493113, -0.007573345, 0.014818521, 0.0014903499, -0.006807985, -0.012146211, 0.021682449, -0.018572684, 0.0014383909, -0.0011172137, 0.015893089, -0.0077375444, -0.017271511, -0.012042356, -0.022917636, -0.03079777, 0.011203868, -0.00030387763, -0.0048645176, -0.015542578, -0.016782077, 0.007833631, -0.012783822, 0.018910393, -0.0077180085, 0.0134204365, -0.0035355599, 0.019012425, -0.0015465836, 0.018254125, -0.01707811, -0.007219383, 0.028835023, -0.0026006754, 0.002028897, -0.011614314, -0.0031889796, -0.0057052816, 0.0025863864, -0.032228544, 0.0042260657, -0.021270346, 0.004592603, 0.0019250644, 0.0025901487, 0.0035799656, -0.012629911, -0.012371038, -0.0005518989, 0.0056986865, 0.0054100887, -0.0076286676, -0.034145143, 0.003702398, 0.004934147, -0.049641654, -0.005869325, -0.012089607, 0.017278451, 0.001790185, -0.0030683575, 0.01438635, 0.00898091, 0.04392099, 0.0010786082, 0.02027599, -0.023553297, -0.0013969755, -0.032389626, -0.0122013725, 0.011416886, 0.016019559, -0.022330206, 0.010637864, -0.0033209187, -0.0043184715, -0.012877891, -0.0068517765, -0.0023852817, -0.010092811, 0.012300873, 0.0021816315, -0.0066805915, 0.0073395213, -0.01712776, -0.015284888, -0.0036158958, 0.007627001, -0.0148792295, 0.000840153, -0.0027744635, 0.016207414, 0.007619082, -0.021372428, -0.024224525, 0.014486345, -0.0036172352, -0.0013413307, 0.01811947, 0.004151848, -0.009674357, -0.020295281, 0.019784715, -0.024427544, -0.024025915, -0.00015405663, 0.015967615, -0.020382743, 0.0005174638, 0.016120035, 0.04321281, -0.0032532325, 0.015086516, -0.016112298, -0.020103574, 0.014653373, -0.011687602, -0.0080339555, -0.014764253, 0.009203574, -0.004303956, 0.007967077, 0.004988688, 0.013715063, -0.016926326, 0.008865113, -0.011443868, 0.010806044, -0.0035914783, -0.02600573, 0.036780804, 0.00078878825, -0.0091861915, 0.0035872404, -0.0010706207, -0.008482649, 0.01353261, 0.012631697, -0.023143776, 0.01976705, -0.019613972, 0.02042523, -0.0022677712, 0.0092841545, -0.014291447, 0.0061841467, -0.03333063, -0.001779672, -0.012760109, -0.010043201, 0.0036219375, -0.024292173, -0.0095160175, 0.0041306885, -0.009061278, 0.0027926408, 0.0055956813, 0.017060906, -0.014164281, -0.017461972, -0.011436374, 0.021780554, -0.0042329724, -0.00011462548, -0.0043488946, 0.025536867, 0.0017570951, -0.008681263, -0.0063599567, 0.0016809384, 0.0072432715, -0.0037604938, 0.027005177, 0.0028890376, 0.024584282, -0.012147093, 0.012892893, -0.00617675, -0.0013257705, 0.0075437385, 0.015389205, 0.010601306, -0.017256765, 0.001681791, -0.008051821, 0.016467405, -0.008223575, 0.002415616, 0.026637288, 0.00074018433, -0.03906885, -0.014186541, 0.013787861, 0.034873586, -0.021281315, -0.012480812, -0.015285848, 0.015805487, -0.0026956785, 0.022830397, 0.01106911, 0.01038798, 0.007104322, 0.010263997, -0.0032380288, -0.02519666, -0.00836117, -0.004523708, 0.024573294, 0.009539251, -0.002125642, -0.014871834, 0.011770323, -0.0027647435, -0.0034176735, -0.033354644, 0.023972837, -0.002713334, -0.022842571, -0.0045764497, 0.021816982, -0.009053605, -0.008617509, 0.013248863, -0.02704643, -0.004093495, -0.011242066, 0.0058804126, 0.007577115, -0.00011156287, 0.010732999, -0.018568825, 0.0018537901, -0.013320528, 0.029681833, -0.0012018695, -0.009022543, -0.004897688, 0.03847581, 0.007996872, 0.007613469, 0.016032029, 0.012736708, 0.019655813, -0.010904531, -0.007853936, -0.015133264, 0.003692898, 0.017021898, -0.015264788, 0.0015171937, 0.017107945, 0.0025473498, -0.023547744, 0.010512728, 0.028322713, -0.006498358, 0.026320871, 0.013241339, -0.022330208, -0.004764957, 0.010363494, -0.008022622, -0.0056547485, -0.0064615607, -0.0077398727, -0.0128352735, 0.006056003, 0.0026025714, 0.0119992765, -0.0033931502, 0.010285244, 0.0028355825, 0.0070825783, -0.00573344, -0.0029569627, 0.0073573366, 0.03877396, -0.00696206, -0.0048438907, 0.008143178, -0.03466724, 0.04051741, -0.006172128, -0.009174137, 0.012839247, 0.0043690633, -0.007914408, -0.002159637, -0.01310375, -0.013735388, 0.013228681, -0.0007596454, -0.009192218, 0.0023138353, -0.013465168, 0.013628176, -0.03197785, 0.0052526784, 0.011023368, 0.0072593107, -0.0035341834, -0.0062976037, -0.0017575645, -0.0064867884, -0.059984524, 0.0017020167, -0.0075227707, 0.005905765, -0.010323173, 0.012904252, -0.011327521, -0.014856109, -0.010526094, -0.0007073361, -0.010938598, -0.00040378026, 0.025086127, -0.0023439715, -0.0002982987, 0.013304952, 0.0030172728, 0.009996713, -0.003509846, 0.0523125, -0.013143476, -0.006711961, -0.0021623052, -0.0054043313, 0.00013907082, 0.0077459197, 0.011058175, -0.004617307, -0.016311396, -0.003147356, -0.01825836, -0.02166479, -0.00018842505, 0.007298702, 0.00017169648, -0.006039347, 0.007963499, 0.0016167555, 0.017330498, 0.029261352, -0.008833336, 0.00062619033, 0.0033895497, 0.02570985, 0.0017552692, 0.023513535, -0.016926067, 0.0032939038, -0.025852215, 0.0052122637, 5.681387e-05, 0.0035235481, -0.013630572, -0.016062323, -0.0021615403, 0.0023485003, -0.009373598, 0.0342686, -0.0050169327, 0.0060233334, -0.0062160282, -0.02622404, -0.00043591182, 0.013413605, -0.013209523, 0.008146357, -0.004069273, -0.029825117, 0.010297415, 0.012361127, -0.002936092, -0.02066605, -0.0040021855, -0.001961119, -0.01714846, 0.0010905458, -0.041829843, 0.0036745006, 0.009780159, -0.015144338, -0.0130411, -0.004564953, 0.023339182, 0.01649059, 0.002522344, -0.004913586, 0.008715326, -0.017861798, 0.020219008, 0.0053988984, -0.017232655, 0.022123838, -0.0062380643, 0.006942918, 0.010979488, -0.008568131, -0.0045008003, 0.0028591882, 0.007885334, 0.008703115, -0.01643058, -0.009224133, -0.0029121514, 0.00598777, -0.0051427456, -0.0152287735, 0.0027818005, -0.015228608, -0.01220442, -0.023005793, 0.012468058, -0.00434941, 0.00084172236, 0.016273167, 0.0005888917, -0.014759341, -0.008933281, -0.016227763, -0.017239615, 0.017770937, -0.0075184107, 0.025511056, -0.010127247, 0.013856748, 0.031514708, -0.02857653, 0.011833679, -0.026528455, 0.011312543, 0.006249099, -0.015527132, -0.009179392, -0.016430069, 0.0044590416, -0.009867845, 0.011580472, -0.029722683, 0.0070756082, 0.014344855, 0.008605339, 0.027270399, -0.005168961, -0.01913812, 0.038791444, -0.0023882797, 0.0030063323, -0.015756376, -0.007916949, 0.017964829, -0.012601328, 0.023983788, 0.013029554, -0.009475314, 0.013703091, 0.018386122, -0.0074172276, -0.006195428, -0.04487467, -0.02352172, 0.005932934, -0.002250177, -0.0073570334, 0.003052771, 0.028428897, -0.03218539, -0.00571161, 0.018716993, -0.0028174843, -0.006722399, 0.015160006, -0.023874426, -0.004577794, -0.029176764, 0.002768781, -0.013750484, 0.0021020204, -0.0069909752, -0.003511708, -0.009278741, -0.0075780833, -0.0022134164, 0.0068092416, -0.050892055, 0.06155097, -0.020847164, 0.0016932328, -0.015444054, 0.0074623213, 0.029660251, -0.014259926, 0.014181529, -0.017408002, -0.019206041, 0.0039171367, 0.009608013, 0.015514038, 0.037910827, -0.017403057, -0.003156731, -0.015700497, 0.025917603, -0.013626452, 0.015969435, -0.005575106, -0.0037196423, -0.0031298946, -0.011780561, 0.00038880686, 0.004642615, -0.03092485, 0.02300468, -0.0030631756, 0.018578134, 0.0008420133, 0.032650378, -0.01887376, 0.013126795, 0.034944676, -0.005440768, 0.007480156, 0.010994226, -0.0074857087, 0.0047126953, -0.020050213, -0.008352728, -0.0012653182, 0.009623528, 0.018192545, 0.0044559105, -0.020095456, -0.004410515, 0.008853348, 0.0070363972, 0.011184556, 0.0015502934, -0.002364893, -0.015148661, 0.024666205, 0.0033088196, 0.009257365, 0.038146578, 0.023585122, -0.009138306, 0.004122072, 0.0123377405, -0.005098433, -0.0073738806, -0.0012387363, 0.00574068, -0.008688887, -0.0036694908, -0.00023903469, -0.0037093414, 0.024946002, 0.036669895, 0.02562879, 0.032339726, -0.007637052, -0.030710435, -0.0031545078, -0.0046408814, 0.004245645, -0.008327282, -0.014553185, 0.014877831, 0.020015702, -0.01885651, -0.01439162, 0.0005805718, -0.0063149203, -0.012095708, 0.005959933, 0.013809956, -0.009400504, -0.0041977842, 0.010931504, 0.017459152, 0.00922915, 0.014497123, 0.009947033, 0.01911756, -0.028547015, 0.011841436, -0.006189456, -0.011439394, 0.0004192749, -0.019162003, 0.0010246268, 0.012425387, 0.021872498, 0.00034167743, -0.00523925, -0.022079384, -0.0052072695, 0.018641638, 0.011419132, -0.0137266265, 0.011286935, -0.010206232, -0.014363203, -0.006731096, -0.0016274262, 0.005257101, 0.0028148578, -0.00067579193, 0.0028351604, -0.014966543, 0.035893176, 0.008301424, 0.0049779397, -0.02284689, -0.019518057, 0.017718967, 0.0012721303, 0.020425227, -0.007836871, 0.0060727466, -0.0071334722, -0.008151651, -0.008473855, -0.002726269, -0.012260909, 0.021514393, -0.007844904, -0.007316454, -0.020261843, 0.006952064, -0.011506673, -0.022934206, 0.0007918374, -0.010690109, 0.0105895065, 0.0076129017, -0.0004589459, 0.006602547, -0.026994035, 0.017251274, -0.0048490134, 0.0016701083, 0.009841753, 0.010001174, -0.019831367, 0.0031980497, -0.012443851, 0.00673781, 0.00042969015, -0.02108521, -0.010488955, 0.0047668694, 0.010082636, -0.0027934066, 0.0029163242, -0.008580554, -0.015027681, -0.00083187193, 0.001761211, -0.025037332, 0.0019128339, 0.0028334819, -0.015978977, -0.005917477, 0.001837802, -0.012957055, 0.035383314, 0.008553719, -0.007061781, -0.0125773745, 0.00494137, 0.002157945, -0.010333656, 0.009346151, -0.026195409, 0.023719518, -0.040884025, -0.013064594, -0.006711202, 0.0013526044, 0.01957838, -0.0001365203, -0.027133252, 0.0026126653, 0.008022516, 0.017981315, -0.009040627, -1.3902351e-05, 0.015244569, -0.0025260542, 0.014070209, 0.01128813, 0.01734606, -0.006417626, -4.502591e-05, 0.010916303, -0.0045152465, 0.007237956, 0.015897496, -0.009132626, -0.00843714, 0.033444155, -0.011084683, -0.010405997, -0.021515844, 0.00686956, -0.0074309353, 0.017834673, -0.0021272372, -0.016073793, -0.009401648, -0.013087344, 0.018654138, 0.013828928, 0.0036204872, -0.012956609, -0.0033726613, 0.0030643935, -0.034276165, -0.0007612087, -0.005329574, -0.010794793, -0.004629902, 0.022978716, 0.0071550026, 0.00495271, -0.009740258, 0.013367742, 0.006735936, 0.00077733287, -0.031972483, 0.014533607, 0.0383339, 0.008797084, 0.013278133, 0.0024717236, -0.010109205, -0.004371516, 0.02492421, -0.03409656, -0.00083001686, -0.007977202, -0.0028830718, -0.016146196, 0.008192922, -0.0035804997, 0.023540596, -0.0014686275, -0.0043670153, 0.003490719, -0.008683031, -0.005153743, 0.0010152146, 0.0021152557, 0.005276112, -0.0044889664, 0.0023185671, 0.0006433114, -0.017959438, -0.05910128, -0.010773159, -0.020487156, 0.0157462, 0.0072577926, 0.006251055, -0.036657266, -0.003223833, -0.005802083, 0.00947222, -0.0068036076, 0.050250698, 0.008321985, -0.0040400093, -0.012003594, -0.023153773, -0.020804057, -0.000839879, 0.027655395, -0.0032929808, 0.0012449318, 0.00815535, 0.00991353, 0.005156316, -0.0067442534, -0.013031837, 0.013081331, 0.009459162, 0.019217804, -0.024976127, -0.01593093, -0.018383844, 0.02325999, 0.0016791584, 0.010238043, 0.0066655516, -0.015181407, 0.028381305, -0.017651586, -0.011383312, -0.004315803, 0.015225087, 0.0012651868, 0.016301563, -0.022372706, -0.020771887, 0.030277452, -0.0021470548, -0.048022542, 0.007375286, 0.02062038, 0.000893477, 0.014164937, -0.0071958085, -0.0049911197, -0.01551621, 0.013709245, -0.0016775596, 0.035024874, -0.016620863, 0.010048779, 0.0051313345, 0.027696706, -0.0050465027, 0.0027792482, 0.0044472506, 0.0025146669, -0.0057888515, -0.017315233, 0.00058764254, 0.012606494, -0.0024413636, -0.010842064, 0.034498554, 0.021148931, -0.015632123, -0.012397646, 0.005815846, -0.01405944, 0.020639366, 0.003898551, -0.020454803, 0.015214106, 0.0042568226, -0.008153223, 0.005757312, -0.015921278, -0.021629516, -0.0049069435, 0.007036333, -0.0050537954, -0.04071236, 0.0003559263, 0.00076996256, 0.0004870072, 0.0047672363, 0.014956786, 0.008325479, 0.0064132917, -0.007129548, -0.006699693, -0.012995687, 0.0052034585, -0.014973497, 0.0062067998, -0.0042607547, -0.010623552, 0.02404507, 0.01030184, 0.011263834, 0.00347139, 0.029558912, -0.016738947, 0.0001118507, -0.001907046, -0.0069205305, 0.021746334, 0.006600212, -0.030652527, 0.0025518248, 0.0012739882, -0.0001023772, -0.0052504893, 0.0026164514, -0.011012908, -0.010292141, 0.017708905, 0.00027047985, -0.005246341, 0.0122830905, 0.0010584035, -0.006248299, 0.00213255, 0.005472768, -0.018200738, -0.020411042, 0.017643118, 0.018836835, 0.0016143078, -0.011213282, -0.046287242, 0.020782579, 0.014639051, -0.008736576, -0.013458932, -0.047715493, -0.0059016575, 0.01638026, 0.0034123808, 0.015408952, -0.0058616595, 0.008393524, -0.0068196515, -0.015383989, 0.017093154, -0.00029916197, 0.019521803, -0.00094748323, -0.007509305, 0.0076061254, -0.023467349, -0.00801684, 0.0220244, 0.016131088, -0.020319268, -0.008079162, 0.0020305656, 0.013537944, 0.004862736, -0.009983588, 0.007977797, 0.00441684, 0.011542287, -0.010414766, -0.0030032005, -0.00456709, -0.002522241, -0.005021913, 0.0074134204, -0.01734858, -0.0104310345, -0.0008107602, -0.00480859, 0.0005186687, -0.001733192, 0.0033647995, 0.010510568, 0.0026740106, 0.0039524822, -0.0033869266, 0.008631344, -0.010044389, -0.024407592, 0.029683895, 0.015004495, 0.005543025, -0.010104558, 0.010883795, -0.008987499, 0.0072791493, -0.0140848905, -0.02392853, 0.009225923, -0.0002633868, -0.00852208, 0.0065281573, -0.01864058, -0.030044911, -0.024203504, 0.006880181, -0.0058001527, -0.002859933, -0.012486554, -0.006954179, 0.0017976911, 0.0073320055, 0.007692712, 0.004789472, -0.027571721, 0.020212797, -0.007519375, -0.009663456, 0.010439635, 0.002310277, -0.011581187, -0.042266775, -0.0055573187, -0.0117232315, 0.0058335727, -0.005786295, 0.02319395, -0.016252711, 0.00046538963, 0.0064435196, -0.01624337, -0.021890108, -0.025595885, 0.02135161, 0.015309508, -0.0028927282, -0.0028954232, -0.008186864, -0.065876886, -0.0013892658, -0.008298561, -0.0023419836, -0.012264025, -0.0025695637, -0.0011826765, -0.011460595, -0.04337173, -0.0131699145, 0.018139888, -0.024700772, -0.004696061, -0.0003778428, 0.018684076, 0.023718214, 0.0064464672, -0.019862212, -0.018547803, -0.022613991, 0.018441936, -0.0087438645, -0.008806179, -0.0142679615, 0.02804547, -0.003590437, 0.022949949, 0.020710282, 0.0034847066, 0.0032300053, -0.016875787, -0.016707953, -0.0059865424, 0.0046920977, 0.0018388276, -0.012693063, -0.012048664, 0.0017999675, -0.003200366, -0.017879777, 0.0003610867, 0.0069409073, 0.018558113, 0.001261858, 0.010379026, 0.01499942, 0.0058348607, -0.00070410996, 0.021313742, 0.00023386408, -0.005260389, -0.027305285, 0.019521376, 0.0017152771, 0.0043956474, 0.018722758, -0.0022956312, -0.008901188, -0.009445439, 0.007650408, -0.0075564617, 0.01047265, 0.017581183, 0.0014890956, 0.0039939275, 0.013590537, 0.014220795, 0.03886544, -0.012495457, 0.0009997804, -0.0014370837, 0.0102542285, 0.014201442, -0.0168093, 0.0021641878, -0.01662135, -0.0033050943, -0.006407642, -0.015414805, -0.008719388, 0.007862072, 0.0011463041, -0.022816801, -0.012319835, -0.023773253, -0.008882662, 0.0061224694, 0.007285196, 0.017341299, 0.0055388724, 0.0012930282, 0.0077682273, 0.0042422423, -0.020475669, 0.002221732, 0.014037099, 0.0050441166, 0.008314212, 0.015044069, -0.014833584, -0.02134395, 0.014552201, -0.0015831486, -0.016430547, -0.023814516, -0.02027994, 0.00015650278, -0.010331, 0.02088748, 0.0036649783, 0.024886101, -0.009772941, 0.009789892, -0.0041915625, -0.0001438476, -0.0047301464, 0.013101443, 0.046479747, 0.013938729, -0.03533633, 0.009351977, 0.009420535, -0.0017914029, 0.018158656, 0.0052064606, 0.016085142, 0.014568509, 0.01057281, -0.0026898433, 0.027265547, -0.008202858, 0.017656833, -0.024031738, 0.018489031, 0.0036326156, 0.032055482, 0.005459618, -0.015511035, -0.014409762, -0.0037501617, 0.015137111, -0.00032221313, -0.005836733, 0.00686896, -0.022232613, -0.00932764, -0.0017809107, 0.007040509, 0.006996341, 0.005370141, 0.009973122, -0.0041042026, -0.0077342107, -0.0020892646, 0.021491054, -0.014454352, -0.0045158262, 0.008495359, -0.0029418755, 0.027933033, -0.0117760515, -0.010899911, -0.0019279891, 0.017822424, -0.014656016, 0.0031050274, -0.011424664, 0.015667, -0.01127235, 0.012882521, 0.032223795, 0.013766128, 0.0070138355, 0.006853299, -0.0015106496, 0.004062097, -0.0010219994, -0.08028186, -0.0034778984, 0.002496315, -0.0031644274, 0.003180018, -0.01689404, -0.011139921, 0.009449174, -0.0015619687, -0.007822593, 0.00013854081, -0.017447839, -0.009903356, -0.0015960437, -0.03938633, -0.0028624926, 0.012078626, 0.0028736976, -0.004453578, -0.031749573, 0.009037703, -0.0015030135, 0.0033644415, -0.0038305896, -0.0100964485, 0.004929893, -0.033411656, 0.0024851365, 0.0010212826, -0.023368752, -0.014667637, 0.020354012, -0.002242823, 0.020981882, -0.026938079, 0.008549661, -0.0036581322, -0.014425165, 0.01459038, 0.014841531, 0.020319834, -0.007519446, -0.02129049, -0.0059351516, -0.013911838, -0.02416507, 0.0019629607, 0.0048941826, 0.0014036555, 0.02215441, 0.022559723, 0.021020487, 0.005541426, -0.0019148629, 0.007302876, 0.0037896854, 0.005616841, 0.009404198, 0.00016462867, 0.00062841584, -0.014452972, -0.0011581769, -0.0018120698, 0.001987497, -0.0092238365, 0.0115117235, 0.014762932, 0.00933207, 0.019819051, -0.007479109, -0.023392098, 0.021899259, 0.010986327, -0.0054058405, 0.0046909777, 0.004251144, -0.024310684, 0.018818358, 0.007356032, 0.021504603, 0.0010057127, -0.0017692541, -0.0029557426, -0.0153596215, 0.020595461, 0.015636148, 0.0052482123, -0.010074916, 0.020294487, -0.021423304, -0.022935549, -0.0027335214, 0.007845653, -0.010831632, -0.022693051, 0.0028138924, -0.045660004, -0.007089636, -0.0056406744, -0.0024634802, -0.006301202, -0.027015718, 0.00020397236, -0.0128885545, -0.013417699, -0.014196921, 0.021191286, -0.031445574, 0.020136513, 0.013848752, -0.0054669892, -0.013977566, -0.003287497, 0.008683535, 0.004143252, 0.04633256, 0.016758008, -0.00065962254, 0.01725944, 0.008370232, 0.0049055396, 0.0069756126, -0.011369117, -0.024402672, -0.00033359652, -0.0043470953, 0.020153727, -0.0039096843, -0.005468837, 0.011537527, 0.011398201, -0.008807796, -0.0070863385, 0.007310376, -0.004386021, -0.0020967282, -0.03484077, -0.019913174, 0.009423182, 0.0038316827, -0.0113016805, -0.011647416, 0.0056131748, 0.0075111957, -0.018217105, 0.0026500467, -0.0094102835, -0.0140501, -0.007377417, 0.007699405, -0.025926152, -0.025872953, 0.0031051415, 0.015004575, 0.0062390035, 0.003313784, 0.011787857, -0.0040441006, 0.01169614, 0.007666834, 0.003312987, 0.0010526648, -0.018881705, -0.014957409, -0.017663853, -0.007930389, 0.0029601287, 0.008892608, -0.016172465, -0.016776338, -0.0010118783, -0.0062741125, -0.0017840529, -0.0056894324, -0.012712343, 0.022871727, -0.028138712, 0.012217674, -0.03700991, 0.010907563, 0.009386251, 0.023396235, -0.019036036, 0.00827745, -0.041621752, -0.0057803094, -0.0048563797, 0.019889146, -0.008302532, -0.0037215056, 0.012685247, -0.005479628, -0.0068994644, -0.009554188, -0.009366063, -0.00044993387, 0.014883834, -0.018804528, 0.0010439246, 0.0020813893, -0.00817272, 0.0069720815, -0.043799497, -0.011091921, -0.018636648, 0.008479465, -0.025698796, -0.019668696, 0.01766381, -0.024477689, 0.025460336, -0.016152333, 0.012610953, 0.004362565, -0.0060077403, 0.017402219, -0.015572126, -0.0064939037, -0.005460495, 0.010067681, 0.0098677445, -0.0008989948, 0.013166019, -0.0008327267, 0.052875005, 0.009522368, 0.0013367477, 0.00061883987, -0.016637212, 0.024975812, 0.028008541, -0.0008966585, 0.0072234343, 0.022022767, 0.030794442, 0.0021906132, 0.007909822, -0.008523547, -0.0072055804, -0.013018566, -0.014795381, -0.017200131, -0.028919019, -0.0069518303, -0.0056103445, 0.01960385, -0.008396442, -0.007546081, -0.033702347, 0.011099276, -0.0029303967, 0.00016761616, -0.004485884, 0.0065365196, 0.024282688, 0.00034897056, -0.014787327, -0.0123100225, -0.006462013, -0.012879681, -0.005390037, 0.0063379337, -0.0038942883, -0.020396598, -0.03893817, 0.017614927, 0.007323936, -0.03339493, -0.008048824, 0.02770358, 0.0144966515, -0.0010599464, -0.029607141, -0.007932537, 0.02417746, -0.0032799086, 0.00069443585, 0.0083572725, 0.014389929, 0.017326234, -0.01956205, 0.010678219, 0.00828428, 0.012836312, 0.014095181, -0.015906235, -0.011669889, 0.007805046, 0.006145358, -0.0020020157, 0.0007562439, -0.00948306, -0.026743969, 0.035428032, -0.012985676, 0.030780304, -0.014080179, 0.035713367, -0.016814195, -0.0148821, 0.0004771801, 0.010964189, 0.011038446, -0.004854886, -0.011744911, -0.021438621, -0.016916249, 0.001715466, 0.0069802813, -0.027798874, 0.002362173, -0.0034647416, -0.0019799457, 0.0023135382, 0.0073154867, 0.006478595, 0.0020643047, 0.039877523, -0.021386025, -0.002980501, 0.011051446, -0.0126425745, 0.0014548054, -0.018212518, -0.010343154, 0.019967282, 0.0064029116, 0.0021691737, 0.017809218, -0.0076774796, 0.01620601, -0.0015441838, -0.0015974342, -0.00026642947, 0.0392211, 0.018906983, 0.018769464, 0.011425378, 0.011168676, 0.0125047155, -0.014192637, 0.02361055, -0.0129806055, -0.020873928, 0.0031980523, -0.015523957, -0.0072378065, -0.007587425, 0.003436838, 0.009304775, 0.0038066562, 0.0036048181, -0.03681226, -0.0021505144, 0.003161015, -0.00050507963, -0.004720282, 0.022866024, -0.006057128, 0.056814913, -0.007918905, -0.009920661, 0.0008519759, 0.0034828023, 0.0048990264, -0.021614207, -0.02652867, -0.0013139424, -0.0023658725, -0.013043454, -0.011054081, -0.0070429756, -0.0008689338, 0.008408322, 0.015994929, 0.014620847, -0.018279972, 0.0072111646, 0.01072136, 0.029472986, -0.0020247453, 0.00076557667, 0.013216572, 0.008950633, 0.0017935042, 0.0118635185, -0.029856825, -0.010508818, 0.00073192065, 0.032426357, 0.004565796, 0.011250774, -0.020910414, 0.014719128, 0.005491109, -0.014040522, 0.0017044548, -0.0030247304, 0.014987894, 0.012451681, -0.016988596, -0.016988315, -0.0002967639, -0.014505648, 0.020081142, 0.007167831, -0.0020843227, 0.0014824941, 0.0093637435, -0.022775209, 0.011173669, -0.011994202, -0.016947323, 0.009088239, -0.006781448, 0.009029444, -0.008820731, -0.000747454, 0.0017595732, -0.010266706, -0.031503987, 0.014386011, 0.025380543, -0.015745644, 0.014416419, -0.009424752, -0.005228966, -0.00038633423, -0.0109350355, -0.0057358854, -6.636809e-07, 0.0136238765, 0.009496768, -0.008317743, -0.0058990084, -0.0010853739, 0.011728248, 0.0022288307, -0.015145975, 0.0008573534, -0.0069821463, 0.016294543, 0.00109406, 0.003016403, 0.030176608, 0.0023194365, -0.006149001, 0.018323967, -0.020543223, -0.006208478, 0.010764585, 0.009854993, -0.011594963, -0.022555057, 0.025376333, -0.0020516447, -0.0099474825, -0.026592026, 0.0029298358, 0.00232448, -0.013244332, -0.0136973895, -0.022584869, -0.014601565, -0.0014584785, -0.006740941, -0.03163615, -0.00022575301, 0.011766972, 0.012234182, 0.0055980408, -0.015182736, -0.0001694242, 0.006078334, -0.021499868, -0.016666815, 0.009328017, -0.029111985, 0.0015143073, -0.011815637, 0.009188609, 0.04303783, 0.03064016, -0.0029555946, -0.012237948, 0.0036890353, -0.0064574066, 0.009348341, -0.003123414, 0.013601703, 0.009014278, -0.003058092, 0.017177777, 0.011438521, 0.027193902, -0.013565967, -0.007892143, -0.016469905, 0.038312305, 0.022394354, -0.0061439886, 0.0066801966, 0.012469308, 0.02249864, -0.00085714576, 0.0062861578, 0.03522378, -0.015132739, 0.008425062, 0.010129188, -0.0075104935, 0.016608573, -0.023923246, 0.0006021647, -0.00013383008, 0.009524874, -0.027012946, -0.0025783407, 0.0032298628, 0.002945229, -0.015552016, -0.0071517043, 0.019072695, 0.0003870775, -0.007900319, -0.01870742, 0.02023272, -0.0062010456, -0.013868869, -0.027172534, -0.0042713485, 0.014174794, -0.0050432007, -0.012303036, 0.0058400384, -0.013938139, -0.00022746918, 0.01491514, -0.007478283, 0.002215942, -0.018105075, 0.0063062445, -0.011680215, 0.0093477955, 0.011326682, 0.006917288, 0.0076849004, 0.001814753, 0.0075038695, 0.014652214, -0.0055036666, 0.01240265, 0.0057664705, 0.01017614, -0.00067587843, -0.018836355, -0.009560252, -0.011462646, -0.01446554, -0.009199228, 0.004435986, 0.008972343, 0.020502143, -0.011377406, -0.008452711, 0.002035785, 0.0021776292, 0.020066658, -0.02445969, 0.0047729383, -0.0013605102, -0.026481206, 0.0074655996, -0.00019208401, -0.0035294357, 0.01169827, -0.01704871, 0.010280321, -0.0132515505, 0.0011048603, 0.0018314464, -0.01654152, 0.0173875, -0.011280898, 0.0025542025, -0.021793889, 0.0014730777, -0.022607243, -0.01650177, 0.011298446, -0.021496909, -0.0034185986, 0.03351846, -0.007423327, -0.023284163, -0.008256843, 0.010730729, 0.034297716, 0.01034277, 0.01651531, 0.025416065, 0.025479918, -0.008732765, -0.005733386, -0.000523477, 0.0011063883, -0.014422758, -0.014516041, -0.010465316, 0.0056205676, 0.025604138, 0.029357037, -0.0078085517, 0.026572298, -0.0057832217, -0.016365413, 0.005081067, 0.00030931414, -0.010889595, -0.007210225, 0.010467578, 0.01857745, 0.006413441, 0.016489075, -0.0014295104, -0.013031777, -0.0071343957, -0.023082076, 0.0005695998, -0.01365962, -0.014457476, 0.0038947903, 0.008297582, -0.0035826142, -0.008947062, -0.03315592, -0.004733018, -0.019851593, -0.0025646975, 0.00350369, -0.01323125, 0.015692083, -0.0044261077, -0.024369245, 0.003392976, -0.007691374, -0.026384411, -0.0064466647, 0.0023750428, -0.010690851, 0.020169282, 0.0018846121, 0.0016066943, 0.011534947, -0.0074565727, -0.0070222225, -0.0006092409, 0.004288022, -0.0026178544, 0.010316079, -0.0054642814, -0.009743743, -0.014804689, -0.0069213714, 0.0107731735, -0.0012445359, -0.0017823857, 0.011602927, -0.010114578, 0.003730692, -0.0018963717, 0.0021260134, -0.011907199, -0.010542993, 0.015706057, -0.022277545, -0.019959869, 0.0030667416, 5.1262567e-05, 0.001256639, -0.01571989, 0.020686166, -0.006120155, -0.0077263014, 0.011101375, 0.0013479762, -0.034000445, 0.00898524, -0.05244786, -0.015950507, 0.005365531, 0.0049146307, -0.01250209, 0.0147786215, 0.030254133, -0.012968513, -0.010362634, 0.010710662, 0.0067703426, -0.01135442, -0.022570904, -0.05344952, 0.0030452071, -0.0060653044, 0.012509952, -1.0032417e-05, 0.005735152, -0.011922762, 0.010847219, -0.003956692, -0.018541627, 0.039118756, -0.008348473, 0.010338575, 0.010838156, -0.016473869, 0.004721689, -0.021553844, 0.032039244, -0.020204877, 0.004248808, -0.009490717, 0.025285251, 0.012398461, -0.014464381, -0.0077629467, 0.005431143, 0.0036251151, -0.009733048, -0.0060497764, -0.015200393, -0.013541192, 0.033913318, -0.028263729, -0.0035482722, -0.017532656, -0.020430027, -0.00068125955, -0.012007289, -0.005308352, 0.0042627356, 0.020971125, -0.013034143, 0.011444707, 0.014005405, -0.008810371, -0.020785356, -0.0012221303, 0.010294243, -0.015360509, -0.0052231583, 0.004587342, 0.003764869, -0.0016151534, 0.0034532144, -0.0075362166, -0.0009284461, -0.015056281, -0.012031575, 0.0004083811, 0.029588593, 0.0025431006, -0.024393054, 0.017612047, -0.011319715, -0.0039373864, 0.00014242482, -0.0033172567, 0.012461794, -0.012474786, -0.006365019, -0.01826461, 0.024305921, 0.036697816, 0.0351837, -0.022249008, 0.0046019205, -0.000409714, -0.026532536, 0.012915498, -0.030059064, -0.010406324, 0.00044508823, 0.0170718, -0.020748332, -0.015824381, -0.0037792353, 0.0067542884, 0.017112851, -0.019010467, 0.0039141406, -0.01817407, -0.0006015654, 0.0013853445, -0.03136132, 0.0032064507, -0.0033672783, 0.0077693043, -0.013680259, -0.0077965437, -0.013681287, -0.002493255, 0.0038337603, -0.0074501643, -0.005650592, 0.0036784238, 0.004268223, -0.0059583806, -0.0024265929, -0.018958265, 0.02694638, 0.00043855218, -0.00028026768, 0.0073128366, -0.020897066, -0.017839389, -0.007840647, 0.0071573625, -0.020161241, -0.010331343, 0.0034343235, 0.0072954153, -0.009348389, 0.021214874, -0.00969978, -0.0108593395, -0.009886121, -0.010760449, 0.0021462196, -0.008883087, -0.00242605, -0.016277527, -0.0063385908, -0.0062690964, -0.050214447, 0.017135607, 0.00018842654, -0.011536717, -0.006489042, 0.010836185, 0.009272581, 0.007910159, -0.0040084156, -0.0042917654, 0.010039279, 0.010489525, 0.006308178, -0.008595511, 0.006895165, -0.0039298073, 0.010512558, -0.00095334335, -0.008075609, -0.011082974, 0.0011311276, 0.030044325, 0.016106442, 0.011791343, 0.020829469, 0.0006440637, -0.0012112797, -0.007649658, -0.0011979042, 0.020028936, -0.06341863, 0.036053497, -0.009812889, 0.0063145002, 4.5958914e-06, 0.0111175645, -0.00015856567, -0.044337068, 0.013601779, -0.003960637, 0.02547034, -0.014788236, 0.003739109, -0.012608659, -0.003021784, 0.014844861, -0.022077506, 0.006757355, 0.008877302, 0.019362764, 0.004918989, -0.0041286703, -0.029371878, -0.00034601358, 0.0051664384, 0.005931562, 0.011851917, 0.012228646, 0.004645066, -0.0143492995, 0.005684433, 0.0019411648, -0.013523264, 0.005521199, -0.007098034, 0.010207303, 0.0006284642, 0.019004125, -0.015137202, -0.0014998402, 0.005238802, 0.016682077, 0.0051280214, 0.011369433, -0.017137252, 0.027393404, 0.013472132, -0.0071602906, 0.007929554, 0.01383047, 0.0019271085, 0.01607665, -0.01847279, -0.0035779532, -0.0005876754, 0.007914568, 0.0066277734, -0.015975002, 0.0007772782, 0.0065957685, -0.0025217629, -0.006354631, 0.0017590654, -0.0019756763, 0.020041289, 0.004960025, 0.0031998686, 0.01279411, -0.009131531, -0.005693936, 0.031416833, -0.0014873818, -0.004387534, -0.0066921995, -0.0034900382, -0.0031666458, 0.0023019619, -0.005109877, 0.05516829, -0.010076946, 0.002587833, 0.008897342, -0.016682517, -0.0014400354, 0.00984224, 0.0050313296, -0.011266529, -0.008887297, 0.018859515, -0.0098269945, 0.013667398, 0.019793404, -0.004481252, -0.031889018, -0.027849143, -0.022372218, 0.0073886123, 0.017139103, -0.0048748576, -0.0018295908, 0.024515167, 0.008503074, -0.016139384, 0.00094302616, 0.0068289028, -0.024349684, -0.012242842, 0.0019745273, 0.06988927, -0.015006872, 0.0005074047, -0.0050981455, -0.0010180715, -0.01780697, -0.02342641, 0.054175958, -0.024484066, -0.0045818323, 0.00052597316, -0.0026052524, -0.0066987267, -0.022940088, -0.019011809, -0.009399808, 0.031387288, 0.022873437, -0.011580244, 0.031341005, -0.0030785871, 0.0037047784, 0.007169359, 0.004238755, 0.002200621, 0.006850815, -0.008221026, -0.005257749, -0.002924301, -0.008379719, -0.012406658, 0.00087497174, 0.019535845, 0.0025786464, 0.012360889, 0.0080641275, -0.015979549, -0.022021031, 0.0066631557, -0.007945222, 0.0009745228, 0.010087416, -0.016651468, -0.011262756, 0.0008330973, 0.016795926, 0.0030161482, -0.011560053, -0.0077422657, -0.021488056, 0.010098948, 0.023858244, -0.011843369, 0.0036719698, 0.002754384, -0.021906417, 0.0026789939, -0.00521337, 0.009183463, 0.003215446, -0.010457671, 0.034888778, 0.002735879, -0.0071915486, 0.022535758, 0.026984848, -0.018702837, -0.02368589, 0.017874947, 0.025810389, -0.00013708604, 0.019156137, -0.0044248197, -0.00406509, 0.011057248, 0.008224285, 0.024013096, 0.0018060013, -0.0142262215, 0.018516084, -0.008589628, -0.0113018155, -0.0065853246, 0.000749767, -0.009463426, -0.029979141, -0.02470504, -0.018654231, -0.014331715, 0.008238966, 0.0012260925, 0.007916383, 0.020116953, 0.005804218, -0.006324716, -0.011796391, 0.017474167, -0.01349147, -0.016618218, 0.006700626, -0.024139388, 0.0032690174, -0.011395438, 0.01606841, 0.0011309474, -0.0375913, 0.0144892, -0.02336321, -0.007473993, -0.004967, 0.010347227, 0.0075572757, 0.028342403, 0.00291324, -0.026328737, 0.011315265, 0.030803038, -0.021740472, -0.000742765, 0.010134642, 0.0069916584, -0.010432688, 0.021028643, 0.008196364, -0.002308254, -0.019955939, -0.005672764, 0.017168615, 0.0020066623, -0.017413098, 0.01902136, 0.00882238, -0.003131247, -0.015440647, -0.016598014, 0.0034562638, -0.0019091308, -0.013533901, -0.008762236, 0.0027748677, -0.014184734, 0.0073489165, 0.008365399, -0.011041242, 0.02089308, -0.07281385, 0.0043250686, -0.016314074, -0.008078155, 0.043789227, 0.002352823, 0.016325222, -0.012766361, -0.0050428617, -0.018406382, -0.00047935365, -0.0039157774, 0.0028450536, 0.018491073, -0.0008299338, -0.0011031234, 0.017024588, 0.015206692, -0.011823366, -0.007427603, 0.0029190083, 0.003949138, -0.008553656, 0.009724735, 0.00842957, -0.011641445, -0.0049000634, 0.007356803, 0.019049777, 0.0015315928, 0.0008901933, -0.012466511, 0.009413326, -0.0033442131, -0.03207145, -0.008751825, 0.028449524, -0.020149684, 0.010572574, 0.005660307, -0.0034602587, 0.018422185, 8.601903e-05, 0.0002080746, 0.019873781, 0.01263474, 0.033893604, 0.021584667, 0.012858451, -0.0065402174, -0.010819165, 0.020628223, -0.01133211, 0.020663861, -0.048432965, -0.029211124, 0.007780679, 0.011116726, -0.02970925, -0.009487917, -0.009084787, -0.0030302356, 0.018341372, -3.1679658e-05, -0.003805926, -0.019841278, 0.0051392983, -0.007159091, -0.0041869734, -0.0015403954, 0.0040006796, 0.014720868, -0.0012025281, 0.024940811, 5.9445923e-05, 0.0034793427, 0.010201699, 0.016873496, -0.03894324, 0.0066313636, -0.014323703, -0.0026436246, 0.02612376, -0.018591296, -0.0063293753, -0.015843255, -0.0011123603, 0.007028281, 0.018383496, 0.019553944, 0.0077756047, -0.0020573363, -0.006989247, -0.00080272835, -0.018284597, 0.017273426, 0.0010274459, 0.017711552, 0.006423099, -0.0017705213, 0.0077293287, 0.0019443268, 0.012255274, 0.015944518, -0.002455316, 0.021320507, -0.0036908842, 0.006663593, 0.011255351, 0.029831618, -0.01583448, 0.00423311, 0.084614925, -0.013975908, -0.0042740754, 0.0067477603, 0.004280214, -0.011903197, -0.018071532, 0.034271475, 0.0078079086, -0.0034551949, -0.008535111, 0.015901702, 0.006596474, 0.008411798, -0.014274383, -0.0044372417, -0.007938535, 0.003792572, 0.0058727497, 0.0040556667, -0.005026626, 0.004495725, -0.016724678, -0.012943158, 0.02683913, 0.007674783, -0.007959735, 0.00884347, 0.012396131, -0.002679616, 0.0060068215, 0.0037025728, 0.0059768246, 0.0008922633, 0.0051570763, 0.017502178, -0.0035722377, -0.0063113705, -0.032088906, 0.019348087, -0.0083867, 0.027396884, 0.022991465, 0.0064117364, 0.02658688, 0.0146008, 0.010720317, 0.00764604, -0.030049786, -0.001001843, -0.0063236076, -0.015615567, -0.02157559, 0.018064955, 0.005938787, 0.0034654005, 0.006915879, -0.0034303085, -0.018080965, 0.0046133, 0.023260893, 0.006681079, 0.01385027, 0.0046499874, -0.0006017339, -0.0005321413, -0.0050560557, -0.013704488, -0.01818528, 0.008078939, 0.0039030255, -0.0032440922, -0.024601346, 0.0017971707, -0.0030583842, -0.0076917005, 0.0011847496, 0.00590634, -0.04594768, -0.0022440928, 0.00014727567, 0.01145768, 0.011961526, 0.010650803, -0.01105614, -0.052566316, -0.0013384859, 0.00976793, -0.00679318, -0.02438437, -0.012584451, -0.029779643, 0.019490464, -0.0026133254, -0.013053847, -0.04749946, -0.020639729, -4.6643872e-05, 0.024781706, -0.019207058, 0.029056506, 0.0017775976, 0.0019165012, 0.0024385483, -0.021173272, -0.0056728874, -0.013210253, 0.0009603234, -0.0048912237, 0.0077818027, -0.016348688, 0.009476032, 0.020849874, 0.010236692, -0.006568698, -0.010080874, -0.006260531, 0.003968021, -0.0037265639, 0.01916889, 0.014025512, 0.01802092, -0.0063346676, 0.032082386, -0.014106773, -0.00539974, -0.0107070515, 0.0065794243, 0.0034953298, -0.01979738, -0.036816217, 0.018622564, 0.012201463, -0.0061811027, 0.008258251, 0.008917247, 0.008044469, -0.0020968076, -0.028490478, -0.0030000627, 0.0038098488, 0.02717394, 0.021838889, -0.0051300824, 0.0072412286, -0.011086492, 0.033815067, -0.009741817, -0.007170323, 0.004530249, 0.005619685, -0.011015857, 0.00035170978, 0.0022398992, -0.0049077873, -0.011624766, 0.0015348649, -0.023137722, -0.019431071, 0.0022408143, -0.039169874, -0.0056613875, -0.02050663, 0.015935978, -0.030035399, -0.00951575, 0.008889504, 0.03284474, -0.034494277, -0.0036854716, -0.02716763, -0.023346242, 0.018620115, -0.034902427, 0.040074993, 0.009183469, -0.0008047108, -0.002490686, 0.008110338, -0.008804941, -0.012241865, -0.0014263917, -0.004386791, 0.0006589354, -0.00017988663, 0.011194984, 0.0045653707, -0.0059613585, -0.01926969, -0.0025111644, 0.022857914, 0.007689664, 0.019311503, 0.011003656, -0.011898903, 0.0066684247, -0.0031969312, 0.004591039, 0.0070710164, -0.009974081, 0.0028460138, -0.0007487488, 0.015691187, -0.007930378, 0.035471227, -0.02456906, -0.014531963, 0.007058756, 0.002539329, -0.007168329, 0.004062785, 0.01526247, 0.027492724, 0.027640577, -0.023247601, 0.04008777, -0.009255338, -0.007858654, -0.0051812865, 0.0037985977, -0.0060351193, -0.01563212, 0.007276651, 0.0008870082, 0.00036992255, 0.0074034804, -0.0051207514, 0.016313244, 0.0055372776, 0.026694462, 0.002799244, 0.005204606, 0.0054404372, 0.010269363, 0.00706495, 0.0025205712, 0.007155209, 0.024044465, 0.005607808, 0.006197561, -0.012304323, 0.0064284825, -0.0077247596, -0.031830214, 0.024493806, 0.0039670086, -0.012104734, 0.0022013297, -0.009974551, -0.008051919, 0.0051278654, -0.0047625885, -0.031109473, 0.011687478, 0.013409381, 0.009383682, -0.011775073, -0.011112053, -0.0033885487, -0.030394947, -0.015499161, 0.0054320516, 0.01291755, 0.019445924, -0.012290552, -0.010984124, -0.014745253, 0.025958074, 0.018312804, 0.0010012467, 0.06321707, 0.04092978, -0.011291136, 0.034171477, -0.0062818965, -0.029462112, -0.004349346, 0.013361347, 0.006821427, 0.011045363, 0.0010555164, -0.013260136, -0.027135525, 0.0061571356, 0.004541879, -0.013786838, 0.035502825, 0.018237716, -0.0018924568, -0.0034336455, -0.026272906, 0.0065755798, 0.008410552, 0.009678182, 0.005437588, 0.024685577, -5.7236568e-05, 0.007844506, 0.01012899, 0.0014857571, -0.009079991, -0.011533156, -0.009555471, 0.0072492617, -0.023452913, 0.007463153, -0.0021244094, -0.010945854, -0.016733887, 0.016708557, -0.009645476, -0.0059278947, 0.004835487, -0.0026235245, -0.0031287519, -0.026860991, -0.010584565, 0.006292027, -0.017285822, 0.038814045, 0.02726322, 0.008497995, -0.008981225, -0.005403733, -0.018809363, -0.0015230629, 0.018643742, -0.021420393, -0.010794768, 0.004151762, -0.0037308657, 0.0019499001, 0.009985877, -0.008228751, 0.021557704, 0.010304694, 0.0069177086, 0.011434264, 0.02011342, -0.023169816, 0.0036627466, -0.001583147, -0.019452669, -0.0006094214, -0.019766776, 0.0023024762, -0.01882616, -0.01658618, 0.004845588, 0.007533819, 0.0286483, -0.013264112, -0.018760541, -0.004820232, 0.009586831, -0.0004822413, 0.013870308, -0.02837107, -0.003675853, -0.0050000404, 0.019764313, 0.023114823, -0.0065932567, 0.0064441003, -0.025585655, -0.01686612, 0.008452013, 0.01362913, 0.014150947, -0.01592278, -0.0071203616, -0.018073054, -0.005787805, -0.011399039, 0.0049049263, 0.026211305, -0.0009794353, -0.030041117, -0.042803306, 0.0044335746, -0.005376632, 0.0015427795, 0.003855183, -0.011910525, 0.021321017, 0.013208745, 0.0032185528, 0.01810389, -0.0054945787, -0.0022704764, 0.012824885, 0.0008629129, -0.011513424, 0.051862035, 0.01263858, -0.0059373295, 0.02198381, -0.009090297, 0.008167598, 0.0004344678, -0.0013283236, 0.014760471, 0.011869374, -0.03312406, 0.012401889, 0.023680743, 0.0033802507, 0.010133255, -0.0008185884, -0.008640196, 0.019125257, 0.016786564, -0.01836768, 0.01601654, 0.0006593651, 0.005977791, -0.011406371, -0.00937685, -0.0018230212, -0.014134441, 0.008075976, -0.0039288085, -0.0049786507, -0.030002411, 0.0016837642, 0.002895489, -0.016996905, 0.004626112, 0.0051082326, 0.00045718258, 0.0021063588, 0.0037649656, -0.01764775, 0.0017163737, -0.01637865, -0.004870595, -0.032994736, 0.01715361, -0.010675842, 0.007878028, 0.011912565, 0.028726425, 0.0039343387, 0.033822138, -0.0033286435, 0.006566572, 0.010664299, -0.03721176, -0.0138198715, -0.014143505, -0.030059278, -0.028766986, -0.00787659, -0.0023395377, 0.0130661465, -0.009189583, -0.014891198, -0.008328996, 0.017839506, -0.0017374041, 0.017917175, 0.027670683, -0.0007296854, 0.015114901, 8.69665e-05, -0.01398912, -0.0131065035, -0.012019735, 0.014895445, 0.032554153, -0.011138346, 0.015356142, -0.0013538835, 0.013303157, 0.002161039, -0.021366617, 0.005846724, -0.005557448, 0.006072954, -0.0062442604, 0.0053448984, -0.028891895, -0.016037684, 0.020187916, -0.026167125, 0.025226846, -0.01303363, 0.017949518, 0.0026068261, 0.009674969, -0.010421022, -0.0029790243, 0.004946393, -0.015212886, 0.0063176155, 0.022085797, 0.0057982174, 0.0012561234, -0.01690761, 0.009376733, 0.009975103, -0.010821594, -0.0047889506, -0.0037553268, 0.0029124988, 0.008766644, 0.005246624, 0.009152867, -0.006934486, -0.003974931, -0.03440802, -0.011049217, 0.002138132, -0.017987955, -0.005817961, -0.011857712, 0.0021302646, -0.005388512, -0.0062509077, 0.018901477, 0.019582843, -0.023857966, 0.0071597365, -0.0026387498, -0.051831737, -0.00010272457, 0.009716155, -0.036252134, 0.013211835, 0.0003801093, 0.007523588, 0.008331124, -0.03247505, -0.0024038528, -0.02484975, 0.008320672, -0.0067658373, 0.01475068, -0.0068938364, 0.035355855, -0.009663177, -0.0089838775, 0.036405627, 0.023714315, -0.03199008, 0.015910013, 0.041121695, 0.017401068, -0.009144364, -0.018857002, -0.008217102, 0.010218523, -0.0142175, -0.017714655, 0.017550802, -0.007759618, -0.022730798, 0.008910347, -0.01666479, -0.0032440564, -0.0054245237, 0.025596937, -0.018548321, -0.010988744, -0.02022233, -0.008432175, 0.0047821198, -0.0013838949, -0.009720758, 0.012113827, -0.0029756126, -0.027109487, 0.0049507604, 0.0010774563, -0.009402897, 0.006165157, 0.012130409, -0.013541771, -0.009365313, 0.00048627236, 0.005016325, -0.012110798, 0.002867216, -0.025673278, -0.006664782, -0.008157329, -0.00087021175, 0.009166077, -0.022475123, -0.0013846684, -0.007820751, -0.0063377637, 0.021126555, -5.7331843e-05, -0.0034008597, -0.0045864843, -0.0075318404, -0.0036464958, -0.006443363, 0.02887813, 0.017688401, 0.0122021595, 0.0075864764, -0.01738144, -0.0041372688, 0.0036299594, 0.003034787, 0.001995726, 0.0033031104, -0.0055198814, -0.012991881, 0.0053051994, -0.029632023, 0.009899967, -0.008815445, 0.0052866726, 0.015964204, 0.0023146726, 0.019709777, -0.027886221, -0.001790809, -0.021637319, -0.020215789, 0.005686604, 0.02248797, -0.010668819, 0.004551594, -0.0012044964, -0.008810564, -0.013660375, -0.024495065, 0.020420104, -0.009303812, -0.0109297205, -0.025793854, -0.0017042414, -0.012859884, -0.006582854, -0.0015171829, -0.0030668005, 0.01678315, 0.004521826, -0.02340132, 0.03995084, -0.013162948, 0.0051918696, 0.019004937, -0.0138583435, 0.006679296, -0.027565096, -0.008981584, 0.0012894939, -0.011009301, -0.007473357, -0.017176967, -0.007187362, -0.0231408, 4.376655e-05, -0.005667098, -0.01203926, -0.020580139, -0.04186632, -0.0025438562, -0.008788692, 0.008879719, 0.0117329825, 0.0031172785, 0.0047807386, 0.0026664096, -0.017344538, -0.010400785, 0.005299683, -0.00042597065, 0.007824389, 0.001759813, -0.010118097, 0.029143265, -0.008746467, 0.0041029206, 0.035749562, 0.0007690907, -0.008901643, 0.01096292, -0.012368574, 0.0099103255, -0.0108132055, -0.009207567, -0.005026971, -0.0027682756, -0.0016695135, 0.0055044843, -0.0081815105, 0.007103637, -0.0022698678, 0.015960582, 0.00026373775, -0.010995091, 0.010869807, 0.010363325, -0.009594265, -0.016242037, -0.020748388, 0.014507191, -0.039388042, -0.025626348, 0.024580121, -0.018626286, 0.0017661252, -0.005359855, 0.02110729, 0.0075527206, 0.0010323785, -0.011956768, -0.030021874, 0.028521458, 0.0013132865, -0.0017348041, 0.04468334, 0.019800736, 0.022874791, 0.006032758, 0.022657469, 0.00014791935, 0.02075829, -0.00069929083, -0.009940287, 0.0066937096, 0.0046237153, -0.00472639, -0.00516453, 0.00090704556, 0.015506373, -0.012646176, 0.0026705682, -0.007557365, 0.0010530023, 0.009956765, 0.011853332, 0.023063399, -0.022735916, -0.0016990175, -0.022291686, -0.01734116, 0.0014019741, -0.0015084011, 0.014748643, 0.0018145569, 0.021090448, 0.011764863, 0.0034735359, 0.010094649, -0.0046753725, 0.008707214, -0.003723442, 0.0068505374, 0.005205818, 0.0035974628, -0.011830803, 0.036459386, -0.0006236857, -0.03472799, 0.00755667, 0.013721053, 0.005680358, -0.005862593, -0.0041171154, 0.028929116, 0.017799651, -0.0037029397, -0.011167355, 0.0028756913, 0.004374515, 0.023856722, 0.022133294, -0.0008337982, 0.016699174, -0.0037775566, 0.0034475208, -0.0063732667, 0.021234602, -0.002147923, -0.014813683, 0.0027498568, -0.02473661, 0.0063420786, -0.0020685685, 0.0077041597, 0.025072018, 0.014199592, -0.016978225, -0.022868631, -0.01311288, -0.002642081, -0.023855826, -0.009461877, -0.010512001, 0.026347056, 0.006026379, -0.028682083, 0.03751334, -0.015817726, 0.022161897, -0.02169835, 0.0027818924, 0.006165156, -0.012749321, 0.044328723, -0.020480474, 0.012462637, 0.0034051428, 0.004075271, -0.011426305, 0.0155845, 0.020894159, -0.01217274, 0.024076087, -0.021211924, 0.0009986692, -0.0034037542, 0.0022461636, 0.0055290596, -0.017262777, 0.01205602, -0.020438986, 0.0037360387, -0.024769286, 0.017635511, -0.0030836572, -0.009844599, -0.009327076, -0.011410811, 0.0025694615, 0.0069242455, 0.03785292, -0.0021203393, 0.011449485, -0.0016989779, 0.011860521, 0.016361952, 0.0039689657, 0.017032204, -0.013231283, 0.013230432, -0.02821388, 0.0041606203, -0.010177689, 0.0027359184, -0.005241645, 0.012490263, -0.03328255, 0.0018576197, 0.023587609, 0.011027898, 0.008765686, -0.0054768985, 0.002515381, -0.005744756, 0.0023050576, 0.01548631, 0.00795062, -0.0005751198, -0.026492136, 0.0258213, -0.008789844, -0.0066916146, -0.014595738, 0.035037808, -0.0017327281, -0.0012533941, 0.012159625, -0.006960275, 0.0030039311, -0.0033520695, 0.01749444, 0.013676159, -0.049315207, -0.004297599, -0.0037582247, -0.0037259867, 0.02923465, 0.014703366, 0.009619417, -0.010704003, -0.005971095, -0.016497446, 0.015514045, 0.0034209648, 0.028890394, -0.015743969, 0.008988338, -0.00050428405, 0.02195921, -0.009740341, -0.014069837, 0.0057029068, 0.011731869, -0.0042515923, 0.0011016367, 0.008180626, 0.011364594, 0.0061062523, -0.012197916, -0.010407417, -0.014342386, 2.8364246e-05, 0.0021134568, 0.019008039, -0.005629385, -0.009477712, 0.0122560505, -0.013104637, 0.0061746472, -0.0014283088, -0.0031724384, 0.0024389804, 0.0012282948, -0.022490885, 0.006105999, 0.008567859, -0.012962583, 0.0063745086, 0.025047839, 0.009103835, 0.0035953533, 0.006230309, 0.015605766, 0.012445758, -0.004837115, -0.011388948, -0.009497038, -0.023033, -0.0027980607, 0.031280074, 0.008119512, 0.014924125, -0.0132549545, 0.008495503, 0.008013391, -0.0034384816, -0.009285462, -0.0053230776, -0.0028215104, 0.0049732616, 0.0061844927, -0.020807173, 0.0024232867, 0.02041946, 0.018794585, -0.025143268, -0.021189988, -0.0024852904, -0.006285731, -0.023089284, 0.00066437945, -0.014141036, 0.018874653, 0.0005113976, -0.0028398004, -0.0016409563, 0.02084892, 0.026529647, 0.010123925, -0.035991363, 0.04648388, -0.017871268, 0.00415831, -0.004155091, 0.018316079, -0.015875857, 0.00771953, -0.017938137, -0.010580966, 0.010408762, 0.012030736, -0.012108275, -0.03588857, 0.0021879384, 0.010570588, -0.008228681, -0.0005368218, 0.0029091928, 0.013323923, -0.026753439, 0.0033630563, -0.041942973, 0.01225545, -0.010954462, -0.0038023938, 0.053281587, -0.008707871, 0.010851386, 0.017211359, -0.0041687298, -0.0043000053, -0.029080888, 0.0048501454, -0.009749615, 0.005381077, -0.00029266404, 0.007821066, -0.014994253, -0.0017921536, 0.009125802, 0.01204664, -0.013498628, 0.0017626785, 0.015404494, -0.003668618, -0.009576174, -0.00609339, 0.023769075, -0.007280857, -0.005174756, -0.020717435, 0.0036871838, -0.0044717267, 0.0023432018, 0.008765739, 0.010085545, 0.018773086, -0.015186173, -0.0116445115, 0.009887592, 0.018883009, -0.00046691997, -0.0173672, 0.0018678477, 0.00019956312, -0.0022620617, -0.07118764, -0.016306724, -0.015212956, -0.030576322, -0.0027925405, -0.00016710514, 0.021311387, -0.038755164, 0.023241278, -0.02602609, 0.0019407817, 0.012761926, 0.010178961, 0.01843992, -0.019550143, 0.004494486, 0.017183315, -0.007155639, 0.0179798, -0.019771723, 0.00493137, 0.015380484, 0.0044126483, 0.0058007943, -0.00025326625, 0.023130877, -0.0052505676, -0.0048374273, 0.005740981, -0.009006589, -0.015722036, 0.003233926, -0.018129928, -0.01107457, -0.025383204, 0.022510981, 0.0021202893, 0.0047597336, -0.010402887, -0.00088877784, -0.006818954, 0.016488085, -0.008606541, 0.0011619949, -0.020376734, 0.0016357538, 0.014583069, 0.008753646, 0.012300441, -0.0058986223, 0.004125183, 0.028217983, -0.011011034, 0.006009722, 0.0066224323, -0.0094824685, -0.013965519, -0.0099842185, -0.0031939337, -0.0039829663, -0.015750995, -0.021761416, -0.021495575, 0.0076058535, -0.0047236453, 0.0029488022, 0.0005370205, -0.005945791, -0.011840477, -0.005242987, 0.013967356, -0.011373492, -0.014793725, 0.012671556, -0.014700655, 0.009137087, -0.0162104, 0.009353821, -0.0016670688, 0.01762684, -0.004632258, -0.011580492, 0.004736845, 0.020309238, -0.018020306, -0.043195818, -0.011560754, 0.007673999, 0.00056091684, -0.020390464, 0.019264068, 0.012601741, 0.0033625425, -0.02821163, -0.0027877379, -0.010069111, 0.0033356273, -0.012470657, 0.019337969, 0.010423713, -0.0064379065, -0.009038749, 0.01349659, 0.0006606401, -0.0035848832, -0.0007229728, -0.0018971551, -0.00752693, 0.020850856, 0.002528054, -0.0013439505, 0.004522572, -0.009582203, 0.01181965, -0.014382883, 0.008468641, 0.012867523, -0.03341588, -0.012060537, 0.0013140094, 0.004251124, 0.002674186, -0.033163596, 0.0053328536, -0.002170193, 0.0025524423, -0.022662122, -0.021416293, 0.01944807, -0.0063989107, -0.0143300025, -0.023247069, -0.00018236936, 0.021461448, 0.006173496, -0.020180931, -0.009884683, -0.008124716, 0.002631927, 0.01161302, 0.0019389663, 0.015260273, -0.0029083272, -0.018105391, -0.02062475, -0.032097287, 0.030954177, 0.015797501, -0.0016335301, 0.0025389118, 0.0016947673, 0.0016132774, 0.01632417, -0.004808525, 0.0012888828, -0.0016773752, -0.008742737, 0.0009071121, 0.008511426, -0.021809006, -0.021423796, -0.011711598, -0.0037630918, -0.005633029, 0.026005356, -0.006777803, 0.0070212875, -0.0147716105, 0.028778084, -0.0014338853, 0.0031328173, 0.005076847, 0.013397392, -0.02026937, -0.003620558, -0.010244066, -0.0021318388, -0.0023448695, -0.026492823, -0.012946704, -0.033603124, 0.008991199, 0.0037620333, -0.0031019119, 0.0056325076, -0.004827588, 0.019173557, 0.020227564, -0.0082158055, -0.00865714, -0.001429001, -0.026212268, -0.0036819358, -0.030697765, 0.029846644, 0.006974146, 0.011848653, 0.00044976926, 0.006158269, -0.0030133345, 0.018077465, 0.013938015, -0.011539477, 0.00051227026, -0.0065580253, 0.021414926, -0.012018105, 0.043139182, 0.006451584, -0.0074019283, -0.012155247, 0.010098578, -0.0006479359, -0.003076633, -0.012747952, 0.008269539, 0.0088245785, 0.011069953, -0.0060827103, 0.02233561, -0.017466571, -0.0032798224, -0.015468727, -0.015656687, -0.012022978, 0.02199427, 0.019010972, 0.00071299804, 0.015794052, -0.006154288, -0.0045967293, -0.004738618, -0.012225308, -0.007226218, 6.489728e-05, -0.015927864, -0.010907271, 0.0061430233, 0.0033204053, -0.008283951, 0.0036152895, 0.010738302, -0.021725979, 0.008607059, -0.00020945695, 0.013503159, 0.04816263, 0.0058133453, 0.0035957645, 0.0032123534, 0.0229319, 0.0043117935, 0.00045422214, 0.0036764392, 0.018905243, 0.07029426, -0.0014586361, 0.00463776, -0.008934523, -0.0049464474, 0.0024577177, -0.0051418836, 0.035619114, -0.017606376, -0.01490271, -0.019892728, 0.00653369, 0.0018563801, 0.0025403902, -0.006914378, 0.014346305, 0.017927438, -0.0091947485, 0.014851112, -0.008169318, -0.002187803, -0.026755637, -0.019471638, -0.022726774, -0.06146284, 0.013659351, 0.029928084, 0.0055479715, 0.021554185, -0.0044931057, 0.01718912, -0.013907755, -0.02163369, -0.017358758, -0.0026031714, -0.0034028562, 0.008129215, 0.0027001235, 0.005282881, 0.011492289, -0.012968547, 0.020764722, -0.023042511, -0.009693561, -0.018811004, -0.005894961, -0.008624757, -0.009357054, -0.031721003, 0.051042054, 0.0047107064, 0.051258996, -0.0009542396, 0.01958425, -0.010833469, 0.011231225, 0.00017559374, -0.0127904825, 0.032083068, -0.017231658, -0.0007919365, 0.0067082476, -0.016756384, 0.0045849998, 0.01610821, -0.014863736, -0.0044636377, -0.00032992996, 0.0030860389, 0.0043455465, 0.042706806, -0.0038914226, -0.018533628, 0.0063438173, -0.004868519, 1.0724285e-06, -0.002579757, -0.020425096, -0.005309611, -0.013199601, -0.0008061529, 0.011422303, 0.005824871, 0.004666113, -0.0019482358, -0.004380467, -0.01039833, -0.021117797, -0.0011352946, 0.00027046245, 0.028766058, 0.007673018, -0.0076886066, -0.009097756, 0.0015622607, 0.008225241, -0.011188589, 0.0043511423, 0.0029109812, -0.0038614403, -0.017294176, 0.0076826946, -0.023793472, -0.00682512, -0.013890661, 0.019931495, 0.0083171865, -0.0037841816, 0.0010052252, -0.02188158, -0.018282097, -0.0045158397, -0.017404845, -0.0021253617, 0.013484399, -0.0019141417, -0.08515303, -0.0046512084, -0.004957044, -0.017577058, -0.009246152, 0.00035593705, 0.006786275, 0.006796039, -0.0056989114, -0.00063799747, 0.004426157, 0.009030775, -0.001485532, -0.006873334, -0.017374197, 0.015629444, 0.0058926386, -0.009801753, 0.016684704, -0.014281193, -0.011471161, -0.0003021703, 0.016823366, -0.034512624, 0.00021716933, 7.987956e-05, 0.008160874, 0.02620286, 0.00058667414, -0.02209849, -0.015990213, 0.009002755, 0.020895151, 0.0010384835, 0.008098684, 0.009131998, -0.008918938, 0.021859732, 0.0119019635, 0.00226212, 0.007186814, 0.00023341898, 0.008600211, -0.01666762, -0.009665849, 0.007236184, 0.027660796, -0.002405057, 0.0071920357, 0.024724558, -0.016581934, 0.0010603112, 0.007592961, 0.013675363, 0.012664315, 0.010579194, -0.013097223, -0.012465044, -0.0053821346])
Printing the embedding vector of the first document:
[0.013604626, 0.0040469267, -0.013055056, 0.0018571938, 0.019681796, 0.0021292074, -0.015450935, -0.015548654, -0.007361683, -0.009928224, -0.04116786, 0.043227788, 0.022655034, 0.004115308, 0.008463436, 0.011874151, 0.02463015, -0.019429542, 0.007998721, 0.06486532, 0.020154107, 0.019266449, 0.002914384, 0.009437451, 0.026283171, 0.0021734613, 0.027899496, 0.0027052388, 0.0113111595, -0.042250417, -0.025353452, 0.0023314483, 0.005428814, 0.019085042, -0.042523846, -0.005446706, -0.0076410365, 0.008316522, 0.006585934, -0.004694277, -0.016216371, -0.0082428185, -0.027061068, -0.002988109, 0.0033358738, 0.006163187, -0.01844918, 0.025980474, -0.001096586, 0.0003369544, 0.020229273, -0.018327052, 0.017543104, 0.00390692, -0.018135028, 0.0030722255, -0.011713002, -0.002424628, -0.019514453, 0.022339227, -0.0017924856, 0.005736517, -4.6242258e-06, 0.023460107, 0.0004332938, -0.00271401, -0.0038558461, -0.011756422, -0.0033033225, 0.00085411384, -0.007260791, -0.017822588, -0.0008009078, -0.02298287, 0.0060235807, -0.02920654, -0.021855446, -0.019795798, 0.0259029, 0.00085546734, 0.0016102532, -0.0060231765, -0.03522702, -0.012585426, -0.0064021572, 0.0030953183, -0.01718373, -0.00014400175, -0.018250417, -0.022734059, -0.006347902, 0.019929303, -0.003050049, 0.026287934, 0.011950075, 0.019104859, -0.0025929776, -0.043280825, -9.89983e-05, -0.0016200771, -0.0026893415, 0.024195587, -0.0149740605, 0.017169086, 0.0013138424, -0.010262059, -0.0070850467, -0.0034649675, 0.017301183, 0.00057972985, -0.013590912, 0.006376245, 0.00806601, -0.0127948765, -0.018197995, -0.004665206, -0.008717856, -0.004776167, 0.0023904464, -0.0009949211, 0.01018708, -0.0025031366, -0.0006164241, 0.012572009, 0.0010416118, -0.017546253, -0.01756614, -0.0220954, -0.00954496, 0.011993238, 0.003243104, -0.016800974, 0.0013411787, 0.020911142, -0.008330714, -0.013575843, 0.02246524, 0.0035645545, 0.017838974, 0.020888677, -0.014595095, 0.009850748, 0.03362239, 0.018065644, -0.0107895015, -0.006632475, 0.010412162, 0.010107545, 0.0037547841, 0.018244455, 0.0018815197, -0.013162242, 0.012263615, -0.003475388, -0.009796617, -0.008291234, -0.009468603, 0.013887128, -0.0093615465, -0.018465165, -0.013985957, 0.0037506167, 0.0033880305, 0.005078047, -0.014511049, -0.019506637, 0.011590324, 0.004579578, 0.006915524, 0.005815233, 0.009136001, -0.006027578, -0.016472429, 0.010213692, -0.0100369835, -0.011516339, 0.0043478315, 0.008125539, -0.008559291, 0.000100535515, 0.016296493, -0.015126037, 0.0024209588, 0.030163612, -0.0132495565, 0.0044692736, 0.010034308, -0.016706098, 0.0007081233, -0.012808807, 0.028290072, -0.0024691334, 0.005860843, 0.023379501, -0.0030904892, 1.0328246e-05, 0.004022766, 0.013190172, 0.0031711487, 0.009573141, 0.018143611, -0.026548026, 0.019045884, 0.0010501138, -0.011988678, -0.010585814, -0.0053028488, 0.019851917, -0.0028791693, -0.013884469, 0.02497876, -0.015083474, 0.0022430595, -0.006921646, 0.009624773, -0.010140331, 0.0068357014, 0.027130105, -0.013498643, -0.02355474, -0.0039934344, -0.025851179, -0.0111569045, -0.003869868, -0.0010909438, -0.0039333906, -0.0105716875, -0.0253558, -0.00059493113, -0.007573345, 0.014818521, 0.0014903499, -0.006807985, -0.012146211, 0.021682449, -0.018572684, 0.0014383909, -0.0011172137, 0.015893089, -0.0077375444, -0.017271511, -0.012042356, -0.022917636, -0.03079777, 0.011203868, -0.00030387763, -0.0048645176, -0.015542578, -0.016782077, 0.007833631, -0.012783822, 0.018910393, -0.0077180085, 0.0134204365, -0.0035355599, 0.019012425, -0.0015465836, 0.018254125, -0.01707811, -0.007219383, 0.028835023, -0.0026006754, 0.002028897, -0.011614314, -0.0031889796, -0.0057052816, 0.0025863864, -0.032228544, 0.0042260657, -0.021270346, 0.004592603, 0.0019250644, 0.0025901487, 0.0035799656, -0.012629911, -0.012371038, -0.0005518989, 0.0056986865, 0.0054100887, -0.0076286676, -0.034145143, 0.003702398, 0.004934147, -0.049641654, -0.005869325, -0.012089607, 0.017278451, 0.001790185, -0.0030683575, 0.01438635, 0.00898091, 0.04392099, 0.0010786082, 0.02027599, -0.023553297, -0.0013969755, -0.032389626, -0.0122013725, 0.011416886, 0.016019559, -0.022330206, 0.010637864, -0.0033209187, -0.0043184715, -0.012877891, -0.0068517765, -0.0023852817, -0.010092811, 0.012300873, 0.0021816315, -0.0066805915, 0.0073395213, -0.01712776, -0.015284888, -0.0036158958, 0.007627001, -0.0148792295, 0.000840153, -0.0027744635, 0.016207414, 0.007619082, -0.021372428, -0.024224525, 0.014486345, -0.0036172352, -0.0013413307, 0.01811947, 0.004151848, -0.009674357, -0.020295281, 0.019784715, -0.024427544, -0.024025915, -0.00015405663, 0.015967615, -0.020382743, 0.0005174638, 0.016120035, 0.04321281, -0.0032532325, 0.015086516, -0.016112298, -0.020103574, 0.014653373, -0.011687602, -0.0080339555, -0.014764253, 0.009203574, -0.004303956, 0.007967077, 0.004988688, 0.013715063, -0.016926326, 0.008865113, -0.011443868, 0.010806044, -0.0035914783, -0.02600573, 0.036780804, 0.00078878825, -0.0091861915, 0.0035872404, -0.0010706207, -0.008482649, 0.01353261, 0.012631697, -0.023143776, 0.01976705, -0.019613972, 0.02042523, -0.0022677712, 0.0092841545, -0.014291447, 0.0061841467, -0.03333063, -0.001779672, -0.012760109, -0.010043201, 0.0036219375, -0.024292173, -0.0095160175, 0.0041306885, -0.009061278, 0.0027926408, 0.0055956813, 0.017060906, -0.014164281, -0.017461972, -0.011436374, 0.021780554, -0.0042329724, -0.00011462548, -0.0043488946, 0.025536867, 0.0017570951, -0.008681263, -0.0063599567, 0.0016809384, 0.0072432715, -0.0037604938, 0.027005177, 0.0028890376, 0.024584282, -0.012147093, 0.012892893, -0.00617675, -0.0013257705, 0.0075437385, 0.015389205, 0.010601306, -0.017256765, 0.001681791, -0.008051821, 0.016467405, -0.008223575, 0.002415616, 0.026637288, 0.00074018433, -0.03906885, -0.014186541, 0.013787861, 0.034873586, -0.021281315, -0.012480812, -0.015285848, 0.015805487, -0.0026956785, 0.022830397, 0.01106911, 0.01038798, 0.007104322, 0.010263997, -0.0032380288, -0.02519666, -0.00836117, -0.004523708, 0.024573294, 0.009539251, -0.002125642, -0.014871834, 0.011770323, -0.0027647435, -0.0034176735, -0.033354644, 0.023972837, -0.002713334, -0.022842571, -0.0045764497, 0.021816982, -0.009053605, -0.008617509, 0.013248863, -0.02704643, -0.004093495, -0.011242066, 0.0058804126, 0.007577115, -0.00011156287, 0.010732999, -0.018568825, 0.0018537901, -0.013320528, 0.029681833, -0.0012018695, -0.009022543, -0.004897688, 0.03847581, 0.007996872, 0.007613469, 0.016032029, 0.012736708, 0.019655813, -0.010904531, -0.007853936, -0.015133264, 0.003692898, 0.017021898, -0.015264788, 0.0015171937, 0.017107945, 0.0025473498, -0.023547744, 0.010512728, 0.028322713, -0.006498358, 0.026320871, 0.013241339, -0.022330208, -0.004764957, 0.010363494, -0.008022622, -0.0056547485, -0.0064615607, -0.0077398727, -0.0128352735, 0.006056003, 0.0026025714, 0.0119992765, -0.0033931502, 0.010285244, 0.0028355825, 0.0070825783, -0.00573344, -0.0029569627, 0.0073573366, 0.03877396, -0.00696206, -0.0048438907, 0.008143178, -0.03466724, 0.04051741, -0.006172128, -0.009174137, 0.012839247, 0.0043690633, -0.007914408, -0.002159637, -0.01310375, -0.013735388, 0.013228681, -0.0007596454, -0.009192218, 0.0023138353, -0.013465168, 0.013628176, -0.03197785, 0.0052526784, 0.011023368, 0.0072593107, -0.0035341834, -0.0062976037, -0.0017575645, -0.0064867884, -0.059984524, 0.0017020167, -0.0075227707, 0.005905765, -0.010323173, 0.012904252, -0.011327521, -0.014856109, -0.010526094, -0.0007073361, -0.010938598, -0.00040378026, 0.025086127, -0.0023439715, -0.0002982987, 0.013304952, 0.0030172728, 0.009996713, -0.003509846, 0.0523125, -0.013143476, -0.006711961, -0.0021623052, -0.0054043313, 0.00013907082, 0.0077459197, 0.011058175, -0.004617307, -0.016311396, -0.003147356, -0.01825836, -0.02166479, -0.00018842505, 0.007298702, 0.00017169648, -0.006039347, 0.007963499, 0.0016167555, 0.017330498, 0.029261352, -0.008833336, 0.00062619033, 0.0033895497, 0.02570985, 0.0017552692, 0.023513535, -0.016926067, 0.0032939038, -0.025852215, 0.0052122637, 5.681387e-05, 0.0035235481, -0.013630572, -0.016062323, -0.0021615403, 0.0023485003, -0.009373598, 0.0342686, -0.0050169327, 0.0060233334, -0.0062160282, -0.02622404, -0.00043591182, 0.013413605, -0.013209523, 0.008146357, -0.004069273, -0.029825117, 0.010297415, 0.012361127, -0.002936092, -0.02066605, -0.0040021855, -0.001961119, -0.01714846, 0.0010905458, -0.041829843, 0.0036745006, 0.009780159, -0.015144338, -0.0130411, -0.004564953, 0.023339182, 0.01649059, 0.002522344, -0.004913586, 0.008715326, -0.017861798, 0.020219008, 0.0053988984, -0.017232655, 0.022123838, -0.0062380643, 0.006942918, 0.010979488, -0.008568131, -0.0045008003, 0.0028591882, 0.007885334, 0.008703115, -0.01643058, -0.009224133, -0.0029121514, 0.00598777, -0.0051427456, -0.0152287735, 0.0027818005, -0.015228608, -0.01220442, -0.023005793, 0.012468058, -0.00434941, 0.00084172236, 0.016273167, 0.0005888917, -0.014759341, -0.008933281, -0.016227763, -0.017239615, 0.017770937, -0.0075184107, 0.025511056, -0.010127247, 0.013856748, 0.031514708, -0.02857653, 0.011833679, -0.026528455, 0.011312543, 0.006249099, -0.015527132, -0.009179392, -0.016430069, 0.0044590416, -0.009867845, 0.011580472, -0.029722683, 0.0070756082, 0.014344855, 0.008605339, 0.027270399, -0.005168961, -0.01913812, 0.038791444, -0.0023882797, 0.0030063323, -0.015756376, -0.007916949, 0.017964829, -0.012601328, 0.023983788, 0.013029554, -0.009475314, 0.013703091, 0.018386122, -0.0074172276, -0.006195428, -0.04487467, -0.02352172, 0.005932934, -0.002250177, -0.0073570334, 0.003052771, 0.028428897, -0.03218539, -0.00571161, 0.018716993, -0.0028174843, -0.006722399, 0.015160006, -0.023874426, -0.004577794, -0.029176764, 0.002768781, -0.013750484, 0.0021020204, -0.0069909752, -0.003511708, -0.009278741, -0.0075780833, -0.0022134164, 0.0068092416, -0.050892055, 0.06155097, -0.020847164, 0.0016932328, -0.015444054, 0.0074623213, 0.029660251, -0.014259926, 0.014181529, -0.017408002, -0.019206041, 0.0039171367, 0.009608013, 0.015514038, 0.037910827, -0.017403057, -0.003156731, -0.015700497, 0.025917603, -0.013626452, 0.015969435, -0.005575106, -0.0037196423, -0.0031298946, -0.011780561, 0.00038880686, 0.004642615, -0.03092485, 0.02300468, -0.0030631756, 0.018578134, 0.0008420133, 0.032650378, -0.01887376, 0.013126795, 0.034944676, -0.005440768, 0.007480156, 0.010994226, -0.0074857087, 0.0047126953, -0.020050213, -0.008352728, -0.0012653182, 0.009623528, 0.018192545, 0.0044559105, -0.020095456, -0.004410515, 0.008853348, 0.0070363972, 0.011184556, 0.0015502934, -0.002364893, -0.015148661, 0.024666205, 0.0033088196, 0.009257365, 0.038146578, 0.023585122, -0.009138306, 0.004122072, 0.0123377405, -0.005098433, -0.0073738806, -0.0012387363, 0.00574068, -0.008688887, -0.0036694908, -0.00023903469, -0.0037093414, 0.024946002, 0.036669895, 0.02562879, 0.032339726, -0.007637052, -0.030710435, -0.0031545078, -0.0046408814, 0.004245645, -0.008327282, -0.014553185, 0.014877831, 0.020015702, -0.01885651, -0.01439162, 0.0005805718, -0.0063149203, -0.012095708, 0.005959933, 0.013809956, -0.009400504, -0.0041977842, 0.010931504, 0.017459152, 0.00922915, 0.014497123, 0.009947033, 0.01911756, -0.028547015, 0.011841436, -0.006189456, -0.011439394, 0.0004192749, -0.019162003, 0.0010246268, 0.012425387, 0.021872498, 0.00034167743, -0.00523925, -0.022079384, -0.0052072695, 0.018641638, 0.011419132, -0.0137266265, 0.011286935, -0.010206232, -0.014363203, -0.006731096, -0.0016274262, 0.005257101, 0.0028148578, -0.00067579193, 0.0028351604, -0.014966543, 0.035893176, 0.008301424, 0.0049779397, -0.02284689, -0.019518057, 0.017718967, 0.0012721303, 0.020425227, -0.007836871, 0.0060727466, -0.0071334722, -0.008151651, -0.008473855, -0.002726269, -0.012260909, 0.021514393, -0.007844904, -0.007316454, -0.020261843, 0.006952064, -0.011506673, -0.022934206, 0.0007918374, -0.010690109, 0.0105895065, 0.0076129017, -0.0004589459, 0.006602547, -0.026994035, 0.017251274, -0.0048490134, 0.0016701083, 0.009841753, 0.010001174, -0.019831367, 0.0031980497, -0.012443851, 0.00673781, 0.00042969015, -0.02108521, -0.010488955, 0.0047668694, 0.010082636, -0.0027934066, 0.0029163242, -0.008580554, -0.015027681, -0.00083187193, 0.001761211, -0.025037332, 0.0019128339, 0.0028334819, -0.015978977, -0.005917477, 0.001837802, -0.012957055, 0.035383314, 0.008553719, -0.007061781, -0.0125773745, 0.00494137, 0.002157945, -0.010333656, 0.009346151, -0.026195409, 0.023719518, -0.040884025, -0.013064594, -0.006711202, 0.0013526044, 0.01957838, -0.0001365203, -0.027133252, 0.0026126653, 0.008022516, 0.017981315, -0.009040627, -1.3902351e-05, 0.015244569, -0.0025260542, 0.014070209, 0.01128813, 0.01734606, -0.006417626, -4.502591e-05, 0.010916303, -0.0045152465, 0.007237956, 0.015897496, -0.009132626, -0.00843714, 0.033444155, -0.011084683, -0.010405997, -0.021515844, 0.00686956, -0.0074309353, 0.017834673, -0.0021272372, -0.016073793, -0.009401648, -0.013087344, 0.018654138, 0.013828928, 0.0036204872, -0.012956609, -0.0033726613, 0.0030643935, -0.034276165, -0.0007612087, -0.005329574, -0.010794793, -0.004629902, 0.022978716, 0.0071550026, 0.00495271, -0.009740258, 0.013367742, 0.006735936, 0.00077733287, -0.031972483, 0.014533607, 0.0383339, 0.008797084, 0.013278133, 0.0024717236, -0.010109205, -0.004371516, 0.02492421, -0.03409656, -0.00083001686, -0.007977202, -0.0028830718, -0.016146196, 0.008192922, -0.0035804997, 0.023540596, -0.0014686275, -0.0043670153, 0.003490719, -0.008683031, -0.005153743, 0.0010152146, 0.0021152557, 0.005276112, -0.0044889664, 0.0023185671, 0.0006433114, -0.017959438, -0.05910128, -0.010773159, -0.020487156, 0.0157462, 0.0072577926, 0.006251055, -0.036657266, -0.003223833, -0.005802083, 0.00947222, -0.0068036076, 0.050250698, 0.008321985, -0.0040400093, -0.012003594, -0.023153773, -0.020804057, -0.000839879, 0.027655395, -0.0032929808, 0.0012449318, 0.00815535, 0.00991353, 0.005156316, -0.0067442534, -0.013031837, 0.013081331, 0.009459162, 0.019217804, -0.024976127, -0.01593093, -0.018383844, 0.02325999, 0.0016791584, 0.010238043, 0.0066655516, -0.015181407, 0.028381305, -0.017651586, -0.011383312, -0.004315803, 0.015225087, 0.0012651868, 0.016301563, -0.022372706, -0.020771887, 0.030277452, -0.0021470548, -0.048022542, 0.007375286, 0.02062038, 0.000893477, 0.014164937, -0.0071958085, -0.0049911197, -0.01551621, 0.013709245, -0.0016775596, 0.035024874, -0.016620863, 0.010048779, 0.0051313345, 0.027696706, -0.0050465027, 0.0027792482, 0.0044472506, 0.0025146669, -0.0057888515, -0.017315233, 0.00058764254, 0.012606494, -0.0024413636, -0.010842064, 0.034498554, 0.021148931, -0.015632123, -0.012397646, 0.005815846, -0.01405944, 0.020639366, 0.003898551, -0.020454803, 0.015214106, 0.0042568226, -0.008153223, 0.005757312, -0.015921278, -0.021629516, -0.0049069435, 0.007036333, -0.0050537954, -0.04071236, 0.0003559263, 0.00076996256, 0.0004870072, 0.0047672363, 0.014956786, 0.008325479, 0.0064132917, -0.007129548, -0.006699693, -0.012995687, 0.0052034585, -0.014973497, 0.0062067998, -0.0042607547, -0.010623552, 0.02404507, 0.01030184, 0.011263834, 0.00347139, 0.029558912, -0.016738947, 0.0001118507, -0.001907046, -0.0069205305, 0.021746334, 0.006600212, -0.030652527, 0.0025518248, 0.0012739882, -0.0001023772, -0.0052504893, 0.0026164514, -0.011012908, -0.010292141, 0.017708905, 0.00027047985, -0.005246341, 0.0122830905, 0.0010584035, -0.006248299, 0.00213255, 0.005472768, -0.018200738, -0.020411042, 0.017643118, 0.018836835, 0.0016143078, -0.011213282, -0.046287242, 0.020782579, 0.014639051, -0.008736576, -0.013458932, -0.047715493, -0.0059016575, 0.01638026, 0.0034123808, 0.015408952, -0.0058616595, 0.008393524, -0.0068196515, -0.015383989, 0.017093154, -0.00029916197, 0.019521803, -0.00094748323, -0.007509305, 0.0076061254, -0.023467349, -0.00801684, 0.0220244, 0.016131088, -0.020319268, -0.008079162, 0.0020305656, 0.013537944, 0.004862736, -0.009983588, 0.007977797, 0.00441684, 0.011542287, -0.010414766, -0.0030032005, -0.00456709, -0.002522241, -0.005021913, 0.0074134204, -0.01734858, -0.0104310345, -0.0008107602, -0.00480859, 0.0005186687, -0.001733192, 0.0033647995, 0.010510568, 0.0026740106, 0.0039524822, -0.0033869266, 0.008631344, -0.010044389, -0.024407592, 0.029683895, 0.015004495, 0.005543025, -0.010104558, 0.010883795, -0.008987499, 0.0072791493, -0.0140848905, -0.02392853, 0.009225923, -0.0002633868, -0.00852208, 0.0065281573, -0.01864058, -0.030044911, -0.024203504, 0.006880181, -0.0058001527, -0.002859933, -0.012486554, -0.006954179, 0.0017976911, 0.0073320055, 0.007692712, 0.004789472, -0.027571721, 0.020212797, -0.007519375, -0.009663456, 0.010439635, 0.002310277, -0.011581187, -0.042266775, -0.0055573187, -0.0117232315, 0.0058335727, -0.005786295, 0.02319395, -0.016252711, 0.00046538963, 0.0064435196, -0.01624337, -0.021890108, -0.025595885, 0.02135161, 0.015309508, -0.0028927282, -0.0028954232, -0.008186864, -0.065876886, -0.0013892658, -0.008298561, -0.0023419836, -0.012264025, -0.0025695637, -0.0011826765, -0.011460595, -0.04337173, -0.0131699145, 0.018139888, -0.024700772, -0.004696061, -0.0003778428, 0.018684076, 0.023718214, 0.0064464672, -0.019862212, -0.018547803, -0.022613991, 0.018441936, -0.0087438645, -0.008806179, -0.0142679615, 0.02804547, -0.003590437, 0.022949949, 0.020710282, 0.0034847066, 0.0032300053, -0.016875787, -0.016707953, -0.0059865424, 0.0046920977, 0.0018388276, -0.012693063, -0.012048664, 0.0017999675, -0.003200366, -0.017879777, 0.0003610867, 0.0069409073, 0.018558113, 0.001261858, 0.010379026, 0.01499942, 0.0058348607, -0.00070410996, 0.021313742, 0.00023386408, -0.005260389, -0.027305285, 0.019521376, 0.0017152771, 0.0043956474, 0.018722758, -0.0022956312, -0.008901188, -0.009445439, 0.007650408, -0.0075564617, 0.01047265, 0.017581183, 0.0014890956, 0.0039939275, 0.013590537, 0.014220795, 0.03886544, -0.012495457, 0.0009997804, -0.0014370837, 0.0102542285, 0.014201442, -0.0168093, 0.0021641878, -0.01662135, -0.0033050943, -0.006407642, -0.015414805, -0.008719388, 0.007862072, 0.0011463041, -0.022816801, -0.012319835, -0.023773253, -0.008882662, 0.0061224694, 0.007285196, 0.017341299, 0.0055388724, 0.0012930282, 0.0077682273, 0.0042422423, -0.020475669, 0.002221732, 0.014037099, 0.0050441166, 0.008314212, 0.015044069, -0.014833584, -0.02134395, 0.014552201, -0.0015831486, -0.016430547, -0.023814516, -0.02027994, 0.00015650278, -0.010331, 0.02088748, 0.0036649783, 0.024886101, -0.009772941, 0.009789892, -0.0041915625, -0.0001438476, -0.0047301464, 0.013101443, 0.046479747, 0.013938729, -0.03533633, 0.009351977, 0.009420535, -0.0017914029, 0.018158656, 0.0052064606, 0.016085142, 0.014568509, 0.01057281, -0.0026898433, 0.027265547, -0.008202858, 0.017656833, -0.024031738, 0.018489031, 0.0036326156, 0.032055482, 0.005459618, -0.015511035, -0.014409762, -0.0037501617, 0.015137111, -0.00032221313, -0.005836733, 0.00686896, -0.022232613, -0.00932764, -0.0017809107, 0.007040509, 0.006996341, 0.005370141, 0.009973122, -0.0041042026, -0.0077342107, -0.0020892646, 0.021491054, -0.014454352, -0.0045158262, 0.008495359, -0.0029418755, 0.027933033, -0.0117760515, -0.010899911, -0.0019279891, 0.017822424, -0.014656016, 0.0031050274, -0.011424664, 0.015667, -0.01127235, 0.012882521, 0.032223795, 0.013766128, 0.0070138355, 0.006853299, -0.0015106496, 0.004062097, -0.0010219994, -0.08028186, -0.0034778984, 0.002496315, -0.0031644274, 0.003180018, -0.01689404, -0.011139921, 0.009449174, -0.0015619687, -0.007822593, 0.00013854081, -0.017447839, -0.009903356, -0.0015960437, -0.03938633, -0.0028624926, 0.012078626, 0.0028736976, -0.004453578, -0.031749573, 0.009037703, -0.0015030135, 0.0033644415, -0.0038305896, -0.0100964485, 0.004929893, -0.033411656, 0.0024851365, 0.0010212826, -0.023368752, -0.014667637, 0.020354012, -0.002242823, 0.020981882, -0.026938079, 0.008549661, -0.0036581322, -0.014425165, 0.01459038, 0.014841531, 0.020319834, -0.007519446, -0.02129049, -0.0059351516, -0.013911838, -0.02416507, 0.0019629607, 0.0048941826, 0.0014036555, 0.02215441, 0.022559723, 0.021020487, 0.005541426, -0.0019148629, 0.007302876, 0.0037896854, 0.005616841, 0.009404198, 0.00016462867, 0.00062841584, -0.014452972, -0.0011581769, -0.0018120698, 0.001987497, -0.0092238365, 0.0115117235, 0.014762932, 0.00933207, 0.019819051, -0.007479109, -0.023392098, 0.021899259, 0.010986327, -0.0054058405, 0.0046909777, 0.004251144, -0.024310684, 0.018818358, 0.007356032, 0.021504603, 0.0010057127, -0.0017692541, -0.0029557426, -0.0153596215, 0.020595461, 0.015636148, 0.0052482123, -0.010074916, 0.020294487, -0.021423304, -0.022935549, -0.0027335214, 0.007845653, -0.010831632, -0.022693051, 0.0028138924, -0.045660004, -0.007089636, -0.0056406744, -0.0024634802, -0.006301202, -0.027015718, 0.00020397236, -0.0128885545, -0.013417699, -0.014196921, 0.021191286, -0.031445574, 0.020136513, 0.013848752, -0.0054669892, -0.013977566, -0.003287497, 0.008683535, 0.004143252, 0.04633256, 0.016758008, -0.00065962254, 0.01725944, 0.008370232, 0.0049055396, 0.0069756126, -0.011369117, -0.024402672, -0.00033359652, -0.0043470953, 0.020153727, -0.0039096843, -0.005468837, 0.011537527, 0.011398201, -0.008807796, -0.0070863385, 0.007310376, -0.004386021, -0.0020967282, -0.03484077, -0.019913174, 0.009423182, 0.0038316827, -0.0113016805, -0.011647416, 0.0056131748, 0.0075111957, -0.018217105, 0.0026500467, -0.0094102835, -0.0140501, -0.007377417, 0.007699405, -0.025926152, -0.025872953, 0.0031051415, 0.015004575, 0.0062390035, 0.003313784, 0.011787857, -0.0040441006, 0.01169614, 0.007666834, 0.003312987, 0.0010526648, -0.018881705, -0.014957409, -0.017663853, -0.007930389, 0.0029601287, 0.008892608, -0.016172465, -0.016776338, -0.0010118783, -0.0062741125, -0.0017840529, -0.0056894324, -0.012712343, 0.022871727, -0.028138712, 0.012217674, -0.03700991, 0.010907563, 0.009386251, 0.023396235, -0.019036036, 0.00827745, -0.041621752, -0.0057803094, -0.0048563797, 0.019889146, -0.008302532, -0.0037215056, 0.012685247, -0.005479628, -0.0068994644, -0.009554188, -0.009366063, -0.00044993387, 0.014883834, -0.018804528, 0.0010439246, 0.0020813893, -0.00817272, 0.0069720815, -0.043799497, -0.011091921, -0.018636648, 0.008479465, -0.025698796, -0.019668696, 0.01766381, -0.024477689, 0.025460336, -0.016152333, 0.012610953, 0.004362565, -0.0060077403, 0.017402219, -0.015572126, -0.0064939037, -0.005460495, 0.010067681, 0.0098677445, -0.0008989948, 0.013166019, -0.0008327267, 0.052875005, 0.009522368, 0.0013367477, 0.00061883987, -0.016637212, 0.024975812, 0.028008541, -0.0008966585, 0.0072234343, 0.022022767, 0.030794442, 0.0021906132, 0.007909822, -0.008523547, -0.0072055804, -0.013018566, -0.014795381, -0.017200131, -0.028919019, -0.0069518303, -0.0056103445, 0.01960385, -0.008396442, -0.007546081, -0.033702347, 0.011099276, -0.0029303967, 0.00016761616, -0.004485884, 0.0065365196, 0.024282688, 0.00034897056, -0.014787327, -0.0123100225, -0.006462013, -0.012879681, -0.005390037, 0.0063379337, -0.0038942883, -0.020396598, -0.03893817, 0.017614927, 0.007323936, -0.03339493, -0.008048824, 0.02770358, 0.0144966515, -0.0010599464, -0.029607141, -0.007932537, 0.02417746, -0.0032799086, 0.00069443585, 0.0083572725, 0.014389929, 0.017326234, -0.01956205, 0.010678219, 0.00828428, 0.012836312, 0.014095181, -0.015906235, -0.011669889, 0.007805046, 0.006145358, -0.0020020157, 0.0007562439, -0.00948306, -0.026743969, 0.035428032, -0.012985676, 0.030780304, -0.014080179, 0.035713367, -0.016814195, -0.0148821, 0.0004771801, 0.010964189, 0.011038446, -0.004854886, -0.011744911, -0.021438621, -0.016916249, 0.001715466, 0.0069802813, -0.027798874, 0.002362173, -0.0034647416, -0.0019799457, 0.0023135382, 0.0073154867, 0.006478595, 0.0020643047, 0.039877523, -0.021386025, -0.002980501, 0.011051446, -0.0126425745, 0.0014548054, -0.018212518, -0.010343154, 0.019967282, 0.0064029116, 0.0021691737, 0.017809218, -0.0076774796, 0.01620601, -0.0015441838, -0.0015974342, -0.00026642947, 0.0392211, 0.018906983, 0.018769464, 0.011425378, 0.011168676, 0.0125047155, -0.014192637, 0.02361055, -0.0129806055, -0.020873928, 0.0031980523, -0.015523957, -0.0072378065, -0.007587425, 0.003436838, 0.009304775, 0.0038066562, 0.0036048181, -0.03681226, -0.0021505144, 0.003161015, -0.00050507963, -0.004720282, 0.022866024, -0.006057128, 0.056814913, -0.007918905, -0.009920661, 0.0008519759, 0.0034828023, 0.0048990264, -0.021614207, -0.02652867, -0.0013139424, -0.0023658725, -0.013043454, -0.011054081, -0.0070429756, -0.0008689338, 0.008408322, 0.015994929, 0.014620847, -0.018279972, 0.0072111646, 0.01072136, 0.029472986, -0.0020247453, 0.00076557667, 0.013216572, 0.008950633, 0.0017935042, 0.0118635185, -0.029856825, -0.010508818, 0.00073192065, 0.032426357, 0.004565796, 0.011250774, -0.020910414, 0.014719128, 0.005491109, -0.014040522, 0.0017044548, -0.0030247304, 0.014987894, 0.012451681, -0.016988596, -0.016988315, -0.0002967639, -0.014505648, 0.020081142, 0.007167831, -0.0020843227, 0.0014824941, 0.0093637435, -0.022775209, 0.011173669, -0.011994202, -0.016947323, 0.009088239, -0.006781448, 0.009029444, -0.008820731, -0.000747454, 0.0017595732, -0.010266706, -0.031503987, 0.014386011, 0.025380543, -0.015745644, 0.014416419, -0.009424752, -0.005228966, -0.00038633423, -0.0109350355, -0.0057358854, -6.636809e-07, 0.0136238765, 0.009496768, -0.008317743, -0.0058990084, -0.0010853739, 0.011728248, 0.0022288307, -0.015145975, 0.0008573534, -0.0069821463, 0.016294543, 0.00109406, 0.003016403, 0.030176608, 0.0023194365, -0.006149001, 0.018323967, -0.020543223, -0.006208478, 0.010764585, 0.009854993, -0.011594963, -0.022555057, 0.025376333, -0.0020516447, -0.0099474825, -0.026592026, 0.0029298358, 0.00232448, -0.013244332, -0.0136973895, -0.022584869, -0.014601565, -0.0014584785, -0.006740941, -0.03163615, -0.00022575301, 0.011766972, 0.012234182, 0.0055980408, -0.015182736, -0.0001694242, 0.006078334, -0.021499868, -0.016666815, 0.009328017, -0.029111985, 0.0015143073, -0.011815637, 0.009188609, 0.04303783, 0.03064016, -0.0029555946, -0.012237948, 0.0036890353, -0.0064574066, 0.009348341, -0.003123414, 0.013601703, 0.009014278, -0.003058092, 0.017177777, 0.011438521, 0.027193902, -0.013565967, -0.007892143, -0.016469905, 0.038312305, 0.022394354, -0.0061439886, 0.0066801966, 0.012469308, 0.02249864, -0.00085714576, 0.0062861578, 0.03522378, -0.015132739, 0.008425062, 0.010129188, -0.0075104935, 0.016608573, -0.023923246, 0.0006021647, -0.00013383008, 0.009524874, -0.027012946, -0.0025783407, 0.0032298628, 0.002945229, -0.015552016, -0.0071517043, 0.019072695, 0.0003870775, -0.007900319, -0.01870742, 0.02023272, -0.0062010456, -0.013868869, -0.027172534, -0.0042713485, 0.014174794, -0.0050432007, -0.012303036, 0.0058400384, -0.013938139, -0.00022746918, 0.01491514, -0.007478283, 0.002215942, -0.018105075, 0.0063062445, -0.011680215, 0.0093477955, 0.011326682, 0.006917288, 0.0076849004, 0.001814753, 0.0075038695, 0.014652214, -0.0055036666, 0.01240265, 0.0057664705, 0.01017614, -0.00067587843, -0.018836355, -0.009560252, -0.011462646, -0.01446554, -0.009199228, 0.004435986, 0.008972343, 0.020502143, -0.011377406, -0.008452711, 0.002035785, 0.0021776292, 0.020066658, -0.02445969, 0.0047729383, -0.0013605102, -0.026481206, 0.0074655996, -0.00019208401, -0.0035294357, 0.01169827, -0.01704871, 0.010280321, -0.0132515505, 0.0011048603, 0.0018314464, -0.01654152, 0.0173875, -0.011280898, 0.0025542025, -0.021793889, 0.0014730777, -0.022607243, -0.01650177, 0.011298446, -0.021496909, -0.0034185986, 0.03351846, -0.007423327, -0.023284163, -0.008256843, 0.010730729, 0.034297716, 0.01034277, 0.01651531, 0.025416065, 0.025479918, -0.008732765, -0.005733386, -0.000523477, 0.0011063883, -0.014422758, -0.014516041, -0.010465316, 0.0056205676, 0.025604138, 0.029357037, -0.0078085517, 0.026572298, -0.0057832217, -0.016365413, 0.005081067, 0.00030931414, -0.010889595, -0.007210225, 0.010467578, 0.01857745, 0.006413441, 0.016489075, -0.0014295104, -0.013031777, -0.0071343957, -0.023082076, 0.0005695998, -0.01365962, -0.014457476, 0.0038947903, 0.008297582, -0.0035826142, -0.008947062, -0.03315592, -0.004733018, -0.019851593, -0.0025646975, 0.00350369, -0.01323125, 0.015692083, -0.0044261077, -0.024369245, 0.003392976, -0.007691374, -0.026384411, -0.0064466647, 0.0023750428, -0.010690851, 0.020169282, 0.0018846121, 0.0016066943, 0.011534947, -0.0074565727, -0.0070222225, -0.0006092409, 0.004288022, -0.0026178544, 0.010316079, -0.0054642814, -0.009743743, -0.014804689, -0.0069213714, 0.0107731735, -0.0012445359, -0.0017823857, 0.011602927, -0.010114578, 0.003730692, -0.0018963717, 0.0021260134, -0.011907199, -0.010542993, 0.015706057, -0.022277545, -0.019959869, 0.0030667416, 5.1262567e-05, 0.001256639, -0.01571989, 0.020686166, -0.006120155, -0.0077263014, 0.011101375, 0.0013479762, -0.034000445, 0.00898524, -0.05244786, -0.015950507, 0.005365531, 0.0049146307, -0.01250209, 0.0147786215, 0.030254133, -0.012968513, -0.010362634, 0.010710662, 0.0067703426, -0.01135442, -0.022570904, -0.05344952, 0.0030452071, -0.0060653044, 0.012509952, -1.0032417e-05, 0.005735152, -0.011922762, 0.010847219, -0.003956692, -0.018541627, 0.039118756, -0.008348473, 0.010338575, 0.010838156, -0.016473869, 0.004721689, -0.021553844, 0.032039244, -0.020204877, 0.004248808, -0.009490717, 0.025285251, 0.012398461, -0.014464381, -0.0077629467, 0.005431143, 0.0036251151, -0.009733048, -0.0060497764, -0.015200393, -0.013541192, 0.033913318, -0.028263729, -0.0035482722, -0.017532656, -0.020430027, -0.00068125955, -0.012007289, -0.005308352, 0.0042627356, 0.020971125, -0.013034143, 0.011444707, 0.014005405, -0.008810371, -0.020785356, -0.0012221303, 0.010294243, -0.015360509, -0.0052231583, 0.004587342, 0.003764869, -0.0016151534, 0.0034532144, -0.0075362166, -0.0009284461, -0.015056281, -0.012031575, 0.0004083811, 0.029588593, 0.0025431006, -0.024393054, 0.017612047, -0.011319715, -0.0039373864, 0.00014242482, -0.0033172567, 0.012461794, -0.012474786, -0.006365019, -0.01826461, 0.024305921, 0.036697816, 0.0351837, -0.022249008, 0.0046019205, -0.000409714, -0.026532536, 0.012915498, -0.030059064, -0.010406324, 0.00044508823, 0.0170718, -0.020748332, -0.015824381, -0.0037792353, 0.0067542884, 0.017112851, -0.019010467, 0.0039141406, -0.01817407, -0.0006015654, 0.0013853445, -0.03136132, 0.0032064507, -0.0033672783, 0.0077693043, -0.013680259, -0.0077965437, -0.013681287, -0.002493255, 0.0038337603, -0.0074501643, -0.005650592, 0.0036784238, 0.004268223, -0.0059583806, -0.0024265929, -0.018958265, 0.02694638, 0.00043855218, -0.00028026768, 0.0073128366, -0.020897066, -0.017839389, -0.007840647, 0.0071573625, -0.020161241, -0.010331343, 0.0034343235, 0.0072954153, -0.009348389, 0.021214874, -0.00969978, -0.0108593395, -0.009886121, -0.010760449, 0.0021462196, -0.008883087, -0.00242605, -0.016277527, -0.0063385908, -0.0062690964, -0.050214447, 0.017135607, 0.00018842654, -0.011536717, -0.006489042, 0.010836185, 0.009272581, 0.007910159, -0.0040084156, -0.0042917654, 0.010039279, 0.010489525, 0.006308178, -0.008595511, 0.006895165, -0.0039298073, 0.010512558, -0.00095334335, -0.008075609, -0.011082974, 0.0011311276, 0.030044325, 0.016106442, 0.011791343, 0.020829469, 0.0006440637, -0.0012112797, -0.007649658, -0.0011979042, 0.020028936, -0.06341863, 0.036053497, -0.009812889, 0.0063145002, 4.5958914e-06, 0.0111175645, -0.00015856567, -0.044337068, 0.013601779, -0.003960637, 0.02547034, -0.014788236, 0.003739109, -0.012608659, -0.003021784, 0.014844861, -0.022077506, 0.006757355, 0.008877302, 0.019362764, 0.004918989, -0.0041286703, -0.029371878, -0.00034601358, 0.0051664384, 0.005931562, 0.011851917, 0.012228646, 0.004645066, -0.0143492995, 0.005684433, 0.0019411648, -0.013523264, 0.005521199, -0.007098034, 0.010207303, 0.0006284642, 0.019004125, -0.015137202, -0.0014998402, 0.005238802, 0.016682077, 0.0051280214, 0.011369433, -0.017137252, 0.027393404, 0.013472132, -0.0071602906, 0.007929554, 0.01383047, 0.0019271085, 0.01607665, -0.01847279, -0.0035779532, -0.0005876754, 0.007914568, 0.0066277734, -0.015975002, 0.0007772782, 0.0065957685, -0.0025217629, -0.006354631, 0.0017590654, -0.0019756763, 0.020041289, 0.004960025, 0.0031998686, 0.01279411, -0.009131531, -0.005693936, 0.031416833, -0.0014873818, -0.004387534, -0.0066921995, -0.0034900382, -0.0031666458, 0.0023019619, -0.005109877, 0.05516829, -0.010076946, 0.002587833, 0.008897342, -0.016682517, -0.0014400354, 0.00984224, 0.0050313296, -0.011266529, -0.008887297, 0.018859515, -0.0098269945, 0.013667398, 0.019793404, -0.004481252, -0.031889018, -0.027849143, -0.022372218, 0.0073886123, 0.017139103, -0.0048748576, -0.0018295908, 0.024515167, 0.008503074, -0.016139384, 0.00094302616, 0.0068289028, -0.024349684, -0.012242842, 0.0019745273, 0.06988927, -0.015006872, 0.0005074047, -0.0050981455, -0.0010180715, -0.01780697, -0.02342641, 0.054175958, -0.024484066, -0.0045818323, 0.00052597316, -0.0026052524, -0.0066987267, -0.022940088, -0.019011809, -0.009399808, 0.031387288, 0.022873437, -0.011580244, 0.031341005, -0.0030785871, 0.0037047784, 0.007169359, 0.004238755, 0.002200621, 0.006850815, -0.008221026, -0.005257749, -0.002924301, -0.008379719, -0.012406658, 0.00087497174, 0.019535845, 0.0025786464, 0.012360889, 0.0080641275, -0.015979549, -0.022021031, 0.0066631557, -0.007945222, 0.0009745228, 0.010087416, -0.016651468, -0.011262756, 0.0008330973, 0.016795926, 0.0030161482, -0.011560053, -0.0077422657, -0.021488056, 0.010098948, 0.023858244, -0.011843369, 0.0036719698, 0.002754384, -0.021906417, 0.0026789939, -0.00521337, 0.009183463, 0.003215446, -0.010457671, 0.034888778, 0.002735879, -0.0071915486, 0.022535758, 0.026984848, -0.018702837, -0.02368589, 0.017874947, 0.025810389, -0.00013708604, 0.019156137, -0.0044248197, -0.00406509, 0.011057248, 0.008224285, 0.024013096, 0.0018060013, -0.0142262215, 0.018516084, -0.008589628, -0.0113018155, -0.0065853246, 0.000749767, -0.009463426, -0.029979141, -0.02470504, -0.018654231, -0.014331715, 0.008238966, 0.0012260925, 0.007916383, 0.020116953, 0.005804218, -0.006324716, -0.011796391, 0.017474167, -0.01349147, -0.016618218, 0.006700626, -0.024139388, 0.0032690174, -0.011395438, 0.01606841, 0.0011309474, -0.0375913, 0.0144892, -0.02336321, -0.007473993, -0.004967, 0.010347227, 0.0075572757, 0.028342403, 0.00291324, -0.026328737, 0.011315265, 0.030803038, -0.021740472, -0.000742765, 0.010134642, 0.0069916584, -0.010432688, 0.021028643, 0.008196364, -0.002308254, -0.019955939, -0.005672764, 0.017168615, 0.0020066623, -0.017413098, 0.01902136, 0.00882238, -0.003131247, -0.015440647, -0.016598014, 0.0034562638, -0.0019091308, -0.013533901, -0.008762236, 0.0027748677, -0.014184734, 0.0073489165, 0.008365399, -0.011041242, 0.02089308, -0.07281385, 0.0043250686, -0.016314074, -0.008078155, 0.043789227, 0.002352823, 0.016325222, -0.012766361, -0.0050428617, -0.018406382, -0.00047935365, -0.0039157774, 0.0028450536, 0.018491073, -0.0008299338, -0.0011031234, 0.017024588, 0.015206692, -0.011823366, -0.007427603, 0.0029190083, 0.003949138, -0.008553656, 0.009724735, 0.00842957, -0.011641445, -0.0049000634, 0.007356803, 0.019049777, 0.0015315928, 0.0008901933, -0.012466511, 0.009413326, -0.0033442131, -0.03207145, -0.008751825, 0.028449524, -0.020149684, 0.010572574, 0.005660307, -0.0034602587, 0.018422185, 8.601903e-05, 0.0002080746, 0.019873781, 0.01263474, 0.033893604, 0.021584667, 0.012858451, -0.0065402174, -0.010819165, 0.020628223, -0.01133211, 0.020663861, -0.048432965, -0.029211124, 0.007780679, 0.011116726, -0.02970925, -0.009487917, -0.009084787, -0.0030302356, 0.018341372, -3.1679658e-05, -0.003805926, -0.019841278, 0.0051392983, -0.007159091, -0.0041869734, -0.0015403954, 0.0040006796, 0.014720868, -0.0012025281, 0.024940811, 5.9445923e-05, 0.0034793427, 0.010201699, 0.016873496, -0.03894324, 0.0066313636, -0.014323703, -0.0026436246, 0.02612376, -0.018591296, -0.0063293753, -0.015843255, -0.0011123603, 0.007028281, 0.018383496, 0.019553944, 0.0077756047, -0.0020573363, -0.006989247, -0.00080272835, -0.018284597, 0.017273426, 0.0010274459, 0.017711552, 0.006423099, -0.0017705213, 0.0077293287, 0.0019443268, 0.012255274, 0.015944518, -0.002455316, 0.021320507, -0.0036908842, 0.006663593, 0.011255351, 0.029831618, -0.01583448, 0.00423311, 0.084614925, -0.013975908, -0.0042740754, 0.0067477603, 0.004280214, -0.011903197, -0.018071532, 0.034271475, 0.0078079086, -0.0034551949, -0.008535111, 0.015901702, 0.006596474, 0.008411798, -0.014274383, -0.0044372417, -0.007938535, 0.003792572, 0.0058727497, 0.0040556667, -0.005026626, 0.004495725, -0.016724678, -0.012943158, 0.02683913, 0.007674783, -0.007959735, 0.00884347, 0.012396131, -0.002679616, 0.0060068215, 0.0037025728, 0.0059768246, 0.0008922633, 0.0051570763, 0.017502178, -0.0035722377, -0.0063113705, -0.032088906, 0.019348087, -0.0083867, 0.027396884, 0.022991465, 0.0064117364, 0.02658688, 0.0146008, 0.010720317, 0.00764604, -0.030049786, -0.001001843, -0.0063236076, -0.015615567, -0.02157559, 0.018064955, 0.005938787, 0.0034654005, 0.006915879, -0.0034303085, -0.018080965, 0.0046133, 0.023260893, 0.006681079, 0.01385027, 0.0046499874, -0.0006017339, -0.0005321413, -0.0050560557, -0.013704488, -0.01818528, 0.008078939, 0.0039030255, -0.0032440922, -0.024601346, 0.0017971707, -0.0030583842, -0.0076917005, 0.0011847496, 0.00590634, -0.04594768, -0.0022440928, 0.00014727567, 0.01145768, 0.011961526, 0.010650803, -0.01105614, -0.052566316, -0.0013384859, 0.00976793, -0.00679318, -0.02438437, -0.012584451, -0.029779643, 0.019490464, -0.0026133254, -0.013053847, -0.04749946, -0.020639729, -4.6643872e-05, 0.024781706, -0.019207058, 0.029056506, 0.0017775976, 0.0019165012, 0.0024385483, -0.021173272, -0.0056728874, -0.013210253, 0.0009603234, -0.0048912237, 0.0077818027, -0.016348688, 0.009476032, 0.020849874, 0.010236692, -0.006568698, -0.010080874, -0.006260531, 0.003968021, -0.0037265639, 0.01916889, 0.014025512, 0.01802092, -0.0063346676, 0.032082386, -0.014106773, -0.00539974, -0.0107070515, 0.0065794243, 0.0034953298, -0.01979738, -0.036816217, 0.018622564, 0.012201463, -0.0061811027, 0.008258251, 0.008917247, 0.008044469, -0.0020968076, -0.028490478, -0.0030000627, 0.0038098488, 0.02717394, 0.021838889, -0.0051300824, 0.0072412286, -0.011086492, 0.033815067, -0.009741817, -0.007170323, 0.004530249, 0.005619685, -0.011015857, 0.00035170978, 0.0022398992, -0.0049077873, -0.011624766, 0.0015348649, -0.023137722, -0.019431071, 0.0022408143, -0.039169874, -0.0056613875, -0.02050663, 0.015935978, -0.030035399, -0.00951575, 0.008889504, 0.03284474, -0.034494277, -0.0036854716, -0.02716763, -0.023346242, 0.018620115, -0.034902427, 0.040074993, 0.009183469, -0.0008047108, -0.002490686, 0.008110338, -0.008804941, -0.012241865, -0.0014263917, -0.004386791, 0.0006589354, -0.00017988663, 0.011194984, 0.0045653707, -0.0059613585, -0.01926969, -0.0025111644, 0.022857914, 0.007689664, 0.019311503, 0.011003656, -0.011898903, 0.0066684247, -0.0031969312, 0.004591039, 0.0070710164, -0.009974081, 0.0028460138, -0.0007487488, 0.015691187, -0.007930378, 0.035471227, -0.02456906, -0.014531963, 0.007058756, 0.002539329, -0.007168329, 0.004062785, 0.01526247, 0.027492724, 0.027640577, -0.023247601, 0.04008777, -0.009255338, -0.007858654, -0.0051812865, 0.0037985977, -0.0060351193, -0.01563212, 0.007276651, 0.0008870082, 0.00036992255, 0.0074034804, -0.0051207514, 0.016313244, 0.0055372776, 0.026694462, 0.002799244, 0.005204606, 0.0054404372, 0.010269363, 0.00706495, 0.0025205712, 0.007155209, 0.024044465, 0.005607808, 0.006197561, -0.012304323, 0.0064284825, -0.0077247596, -0.031830214, 0.024493806, 0.0039670086, -0.012104734, 0.0022013297, -0.009974551, -0.008051919, 0.0051278654, -0.0047625885, -0.031109473, 0.011687478, 0.013409381, 0.009383682, -0.011775073, -0.011112053, -0.0033885487, -0.030394947, -0.015499161, 0.0054320516, 0.01291755, 0.019445924, -0.012290552, -0.010984124, -0.014745253, 0.025958074, 0.018312804, 0.0010012467, 0.06321707, 0.04092978, -0.011291136, 0.034171477, -0.0062818965, -0.029462112, -0.004349346, 0.013361347, 0.006821427, 0.011045363, 0.0010555164, -0.013260136, -0.027135525, 0.0061571356, 0.004541879, -0.013786838, 0.035502825, 0.018237716, -0.0018924568, -0.0034336455, -0.026272906, 0.0065755798, 0.008410552, 0.009678182, 0.005437588, 0.024685577, -5.7236568e-05, 0.007844506, 0.01012899, 0.0014857571, -0.009079991, -0.011533156, -0.009555471, 0.0072492617, -0.023452913, 0.007463153, -0.0021244094, -0.010945854, -0.016733887, 0.016708557, -0.009645476, -0.0059278947, 0.004835487, -0.0026235245, -0.0031287519, -0.026860991, -0.010584565, 0.006292027, -0.017285822, 0.038814045, 0.02726322, 0.008497995, -0.008981225, -0.005403733, -0.018809363, -0.0015230629, 0.018643742, -0.021420393, -0.010794768, 0.004151762, -0.0037308657, 0.0019499001, 0.009985877, -0.008228751, 0.021557704, 0.010304694, 0.0069177086, 0.011434264, 0.02011342, -0.023169816, 0.0036627466, -0.001583147, -0.019452669, -0.0006094214, -0.019766776, 0.0023024762, -0.01882616, -0.01658618, 0.004845588, 0.007533819, 0.0286483, -0.013264112, -0.018760541, -0.004820232, 0.009586831, -0.0004822413, 0.013870308, -0.02837107, -0.003675853, -0.0050000404, 0.019764313, 0.023114823, -0.0065932567, 0.0064441003, -0.025585655, -0.01686612, 0.008452013, 0.01362913, 0.014150947, -0.01592278, -0.0071203616, -0.018073054, -0.005787805, -0.011399039, 0.0049049263, 0.026211305, -0.0009794353, -0.030041117, -0.042803306, 0.0044335746, -0.005376632, 0.0015427795, 0.003855183, -0.011910525, 0.021321017, 0.013208745, 0.0032185528, 0.01810389, -0.0054945787, -0.0022704764, 0.012824885, 0.0008629129, -0.011513424, 0.051862035, 0.01263858, -0.0059373295, 0.02198381, -0.009090297, 0.008167598, 0.0004344678, -0.0013283236, 0.014760471, 0.011869374, -0.03312406, 0.012401889, 0.023680743, 0.0033802507, 0.010133255, -0.0008185884, -0.008640196, 0.019125257, 0.016786564, -0.01836768, 0.01601654, 0.0006593651, 0.005977791, -0.011406371, -0.00937685, -0.0018230212, -0.014134441, 0.008075976, -0.0039288085, -0.0049786507, -0.030002411, 0.0016837642, 0.002895489, -0.016996905, 0.004626112, 0.0051082326, 0.00045718258, 0.0021063588, 0.0037649656, -0.01764775, 0.0017163737, -0.01637865, -0.004870595, -0.032994736, 0.01715361, -0.010675842, 0.007878028, 0.011912565, 0.028726425, 0.0039343387, 0.033822138, -0.0033286435, 0.006566572, 0.010664299, -0.03721176, -0.0138198715, -0.014143505, -0.030059278, -0.028766986, -0.00787659, -0.0023395377, 0.0130661465, -0.009189583, -0.014891198, -0.008328996, 0.017839506, -0.0017374041, 0.017917175, 0.027670683, -0.0007296854, 0.015114901, 8.69665e-05, -0.01398912, -0.0131065035, -0.012019735, 0.014895445, 0.032554153, -0.011138346, 0.015356142, -0.0013538835, 0.013303157, 0.002161039, -0.021366617, 0.005846724, -0.005557448, 0.006072954, -0.0062442604, 0.0053448984, -0.028891895, -0.016037684, 0.020187916, -0.026167125, 0.025226846, -0.01303363, 0.017949518, 0.0026068261, 0.009674969, -0.010421022, -0.0029790243, 0.004946393, -0.015212886, 0.0063176155, 0.022085797, 0.0057982174, 0.0012561234, -0.01690761, 0.009376733, 0.009975103, -0.010821594, -0.0047889506, -0.0037553268, 0.0029124988, 0.008766644, 0.005246624, 0.009152867, -0.006934486, -0.003974931, -0.03440802, -0.011049217, 0.002138132, -0.017987955, -0.005817961, -0.011857712, 0.0021302646, -0.005388512, -0.0062509077, 0.018901477, 0.019582843, -0.023857966, 0.0071597365, -0.0026387498, -0.051831737, -0.00010272457, 0.009716155, -0.036252134, 0.013211835, 0.0003801093, 0.007523588, 0.008331124, -0.03247505, -0.0024038528, -0.02484975, 0.008320672, -0.0067658373, 0.01475068, -0.0068938364, 0.035355855, -0.009663177, -0.0089838775, 0.036405627, 0.023714315, -0.03199008, 0.015910013, 0.041121695, 0.017401068, -0.009144364, -0.018857002, -0.008217102, 0.010218523, -0.0142175, -0.017714655, 0.017550802, -0.007759618, -0.022730798, 0.008910347, -0.01666479, -0.0032440564, -0.0054245237, 0.025596937, -0.018548321, -0.010988744, -0.02022233, -0.008432175, 0.0047821198, -0.0013838949, -0.009720758, 0.012113827, -0.0029756126, -0.027109487, 0.0049507604, 0.0010774563, -0.009402897, 0.006165157, 0.012130409, -0.013541771, -0.009365313, 0.00048627236, 0.005016325, -0.012110798, 0.002867216, -0.025673278, -0.006664782, -0.008157329, -0.00087021175, 0.009166077, -0.022475123, -0.0013846684, -0.007820751, -0.0063377637, 0.021126555, -5.7331843e-05, -0.0034008597, -0.0045864843, -0.0075318404, -0.0036464958, -0.006443363, 0.02887813, 0.017688401, 0.0122021595, 0.0075864764, -0.01738144, -0.0041372688, 0.0036299594, 0.003034787, 0.001995726, 0.0033031104, -0.0055198814, -0.012991881, 0.0053051994, -0.029632023, 0.009899967, -0.008815445, 0.0052866726, 0.015964204, 0.0023146726, 0.019709777, -0.027886221, -0.001790809, -0.021637319, -0.020215789, 0.005686604, 0.02248797, -0.010668819, 0.004551594, -0.0012044964, -0.008810564, -0.013660375, -0.024495065, 0.020420104, -0.009303812, -0.0109297205, -0.025793854, -0.0017042414, -0.012859884, -0.006582854, -0.0015171829, -0.0030668005, 0.01678315, 0.004521826, -0.02340132, 0.03995084, -0.013162948, 0.0051918696, 0.019004937, -0.0138583435, 0.006679296, -0.027565096, -0.008981584, 0.0012894939, -0.011009301, -0.007473357, -0.017176967, -0.007187362, -0.0231408, 4.376655e-05, -0.005667098, -0.01203926, -0.020580139, -0.04186632, -0.0025438562, -0.008788692, 0.008879719, 0.0117329825, 0.0031172785, 0.0047807386, 0.0026664096, -0.017344538, -0.010400785, 0.005299683, -0.00042597065, 0.007824389, 0.001759813, -0.010118097, 0.029143265, -0.008746467, 0.0041029206, 0.035749562, 0.0007690907, -0.008901643, 0.01096292, -0.012368574, 0.0099103255, -0.0108132055, -0.009207567, -0.005026971, -0.0027682756, -0.0016695135, 0.0055044843, -0.0081815105, 0.007103637, -0.0022698678, 0.015960582, 0.00026373775, -0.010995091, 0.010869807, 0.010363325, -0.009594265, -0.016242037, -0.020748388, 0.014507191, -0.039388042, -0.025626348, 0.024580121, -0.018626286, 0.0017661252, -0.005359855, 0.02110729, 0.0075527206, 0.0010323785, -0.011956768, -0.030021874, 0.028521458, 0.0013132865, -0.0017348041, 0.04468334, 0.019800736, 0.022874791, 0.006032758, 0.022657469, 0.00014791935, 0.02075829, -0.00069929083, -0.009940287, 0.0066937096, 0.0046237153, -0.00472639, -0.00516453, 0.00090704556, 0.015506373, -0.012646176, 0.0026705682, -0.007557365, 0.0010530023, 0.009956765, 0.011853332, 0.023063399, -0.022735916, -0.0016990175, -0.022291686, -0.01734116, 0.0014019741, -0.0015084011, 0.014748643, 0.0018145569, 0.021090448, 0.011764863, 0.0034735359, 0.010094649, -0.0046753725, 0.008707214, -0.003723442, 0.0068505374, 0.005205818, 0.0035974628, -0.011830803, 0.036459386, -0.0006236857, -0.03472799, 0.00755667, 0.013721053, 0.005680358, -0.005862593, -0.0041171154, 0.028929116, 0.017799651, -0.0037029397, -0.011167355, 0.0028756913, 0.004374515, 0.023856722, 0.022133294, -0.0008337982, 0.016699174, -0.0037775566, 0.0034475208, -0.0063732667, 0.021234602, -0.002147923, -0.014813683, 0.0027498568, -0.02473661, 0.0063420786, -0.0020685685, 0.0077041597, 0.025072018, 0.014199592, -0.016978225, -0.022868631, -0.01311288, -0.002642081, -0.023855826, -0.009461877, -0.010512001, 0.026347056, 0.006026379, -0.028682083, 0.03751334, -0.015817726, 0.022161897, -0.02169835, 0.0027818924, 0.006165156, -0.012749321, 0.044328723, -0.020480474, 0.012462637, 0.0034051428, 0.004075271, -0.011426305, 0.0155845, 0.020894159, -0.01217274, 0.024076087, -0.021211924, 0.0009986692, -0.0034037542, 0.0022461636, 0.0055290596, -0.017262777, 0.01205602, -0.020438986, 0.0037360387, -0.024769286, 0.017635511, -0.0030836572, -0.009844599, -0.009327076, -0.011410811, 0.0025694615, 0.0069242455, 0.03785292, -0.0021203393, 0.011449485, -0.0016989779, 0.011860521, 0.016361952, 0.0039689657, 0.017032204, -0.013231283, 0.013230432, -0.02821388, 0.0041606203, -0.010177689, 0.0027359184, -0.005241645, 0.012490263, -0.03328255, 0.0018576197, 0.023587609, 0.011027898, 0.008765686, -0.0054768985, 0.002515381, -0.005744756, 0.0023050576, 0.01548631, 0.00795062, -0.0005751198, -0.026492136, 0.0258213, -0.008789844, -0.0066916146, -0.014595738, 0.035037808, -0.0017327281, -0.0012533941, 0.012159625, -0.006960275, 0.0030039311, -0.0033520695, 0.01749444, 0.013676159, -0.049315207, -0.004297599, -0.0037582247, -0.0037259867, 0.02923465, 0.014703366, 0.009619417, -0.010704003, -0.005971095, -0.016497446, 0.015514045, 0.0034209648, 0.028890394, -0.015743969, 0.008988338, -0.00050428405, 0.02195921, -0.009740341, -0.014069837, 0.0057029068, 0.011731869, -0.0042515923, 0.0011016367, 0.008180626, 0.011364594, 0.0061062523, -0.012197916, -0.010407417, -0.014342386, 2.8364246e-05, 0.0021134568, 0.019008039, -0.005629385, -0.009477712, 0.0122560505, -0.013104637, 0.0061746472, -0.0014283088, -0.0031724384, 0.0024389804, 0.0012282948, -0.022490885, 0.006105999, 0.008567859, -0.012962583, 0.0063745086, 0.025047839, 0.009103835, 0.0035953533, 0.006230309, 0.015605766, 0.012445758, -0.004837115, -0.011388948, -0.009497038, -0.023033, -0.0027980607, 0.031280074, 0.008119512, 0.014924125, -0.0132549545, 0.008495503, 0.008013391, -0.0034384816, -0.009285462, -0.0053230776, -0.0028215104, 0.0049732616, 0.0061844927, -0.020807173, 0.0024232867, 0.02041946, 0.018794585, -0.025143268, -0.021189988, -0.0024852904, -0.006285731, -0.023089284, 0.00066437945, -0.014141036, 0.018874653, 0.0005113976, -0.0028398004, -0.0016409563, 0.02084892, 0.026529647, 0.010123925, -0.035991363, 0.04648388, -0.017871268, 0.00415831, -0.004155091, 0.018316079, -0.015875857, 0.00771953, -0.017938137, -0.010580966, 0.010408762, 0.012030736, -0.012108275, -0.03588857, 0.0021879384, 0.010570588, -0.008228681, -0.0005368218, 0.0029091928, 0.013323923, -0.026753439, 0.0033630563, -0.041942973, 0.01225545, -0.010954462, -0.0038023938, 0.053281587, -0.008707871, 0.010851386, 0.017211359, -0.0041687298, -0.0043000053, -0.029080888, 0.0048501454, -0.009749615, 0.005381077, -0.00029266404, 0.007821066, -0.014994253, -0.0017921536, 0.009125802, 0.01204664, -0.013498628, 0.0017626785, 0.015404494, -0.003668618, -0.009576174, -0.00609339, 0.023769075, -0.007280857, -0.005174756, -0.020717435, 0.0036871838, -0.0044717267, 0.0023432018, 0.008765739, 0.010085545, 0.018773086, -0.015186173, -0.0116445115, 0.009887592, 0.018883009, -0.00046691997, -0.0173672, 0.0018678477, 0.00019956312, -0.0022620617, -0.07118764, -0.016306724, -0.015212956, -0.030576322, -0.0027925405, -0.00016710514, 0.021311387, -0.038755164, 0.023241278, -0.02602609, 0.0019407817, 0.012761926, 0.010178961, 0.01843992, -0.019550143, 0.004494486, 0.017183315, -0.007155639, 0.0179798, -0.019771723, 0.00493137, 0.015380484, 0.0044126483, 0.0058007943, -0.00025326625, 0.023130877, -0.0052505676, -0.0048374273, 0.005740981, -0.009006589, -0.015722036, 0.003233926, -0.018129928, -0.01107457, -0.025383204, 0.022510981, 0.0021202893, 0.0047597336, -0.010402887, -0.00088877784, -0.006818954, 0.016488085, -0.008606541, 0.0011619949, -0.020376734, 0.0016357538, 0.014583069, 0.008753646, 0.012300441, -0.0058986223, 0.004125183, 0.028217983, -0.011011034, 0.006009722, 0.0066224323, -0.0094824685, -0.013965519, -0.0099842185, -0.0031939337, -0.0039829663, -0.015750995, -0.021761416, -0.021495575, 0.0076058535, -0.0047236453, 0.0029488022, 0.0005370205, -0.005945791, -0.011840477, -0.005242987, 0.013967356, -0.011373492, -0.014793725, 0.012671556, -0.014700655, 0.009137087, -0.0162104, 0.009353821, -0.0016670688, 0.01762684, -0.004632258, -0.011580492, 0.004736845, 0.020309238, -0.018020306, -0.043195818, -0.011560754, 0.007673999, 0.00056091684, -0.020390464, 0.019264068, 0.012601741, 0.0033625425, -0.02821163, -0.0027877379, -0.010069111, 0.0033356273, -0.012470657, 0.019337969, 0.010423713, -0.0064379065, -0.009038749, 0.01349659, 0.0006606401, -0.0035848832, -0.0007229728, -0.0018971551, -0.00752693, 0.020850856, 0.002528054, -0.0013439505, 0.004522572, -0.009582203, 0.01181965, -0.014382883, 0.008468641, 0.012867523, -0.03341588, -0.012060537, 0.0013140094, 0.004251124, 0.002674186, -0.033163596, 0.0053328536, -0.002170193, 0.0025524423, -0.022662122, -0.021416293, 0.01944807, -0.0063989107, -0.0143300025, -0.023247069, -0.00018236936, 0.021461448, 0.006173496, -0.020180931, -0.009884683, -0.008124716, 0.002631927, 0.01161302, 0.0019389663, 0.015260273, -0.0029083272, -0.018105391, -0.02062475, -0.032097287, 0.030954177, 0.015797501, -0.0016335301, 0.0025389118, 0.0016947673, 0.0016132774, 0.01632417, -0.004808525, 0.0012888828, -0.0016773752, -0.008742737, 0.0009071121, 0.008511426, -0.021809006, -0.021423796, -0.011711598, -0.0037630918, -0.005633029, 0.026005356, -0.006777803, 0.0070212875, -0.0147716105, 0.028778084, -0.0014338853, 0.0031328173, 0.005076847, 0.013397392, -0.02026937, -0.003620558, -0.010244066, -0.0021318388, -0.0023448695, -0.026492823, -0.012946704, -0.033603124, 0.008991199, 0.0037620333, -0.0031019119, 0.0056325076, -0.004827588, 0.019173557, 0.020227564, -0.0082158055, -0.00865714, -0.001429001, -0.026212268, -0.0036819358, -0.030697765, 0.029846644, 0.006974146, 0.011848653, 0.00044976926, 0.006158269, -0.0030133345, 0.018077465, 0.013938015, -0.011539477, 0.00051227026, -0.0065580253, 0.021414926, -0.012018105, 0.043139182, 0.006451584, -0.0074019283, -0.012155247, 0.010098578, -0.0006479359, -0.003076633, -0.012747952, 0.008269539, 0.0088245785, 0.011069953, -0.0060827103, 0.02233561, -0.017466571, -0.0032798224, -0.015468727, -0.015656687, -0.012022978, 0.02199427, 0.019010972, 0.00071299804, 0.015794052, -0.006154288, -0.0045967293, -0.004738618, -0.012225308, -0.007226218, 6.489728e-05, -0.015927864, -0.010907271, 0.0061430233, 0.0033204053, -0.008283951, 0.0036152895, 0.010738302, -0.021725979, 0.008607059, -0.00020945695, 0.013503159, 0.04816263, 0.0058133453, 0.0035957645, 0.0032123534, 0.0229319, 0.0043117935, 0.00045422214, 0.0036764392, 0.018905243, 0.07029426, -0.0014586361, 0.00463776, -0.008934523, -0.0049464474, 0.0024577177, -0.0051418836, 0.035619114, -0.017606376, -0.01490271, -0.019892728, 0.00653369, 0.0018563801, 0.0025403902, -0.006914378, 0.014346305, 0.017927438, -0.0091947485, 0.014851112, -0.008169318, -0.002187803, -0.026755637, -0.019471638, -0.022726774, -0.06146284, 0.013659351, 0.029928084, 0.0055479715, 0.021554185, -0.0044931057, 0.01718912, -0.013907755, -0.02163369, -0.017358758, -0.0026031714, -0.0034028562, 0.008129215, 0.0027001235, 0.005282881, 0.011492289, -0.012968547, 0.020764722, -0.023042511, -0.009693561, -0.018811004, -0.005894961, -0.008624757, -0.009357054, -0.031721003, 0.051042054, 0.0047107064, 0.051258996, -0.0009542396, 0.01958425, -0.010833469, 0.011231225, 0.00017559374, -0.0127904825, 0.032083068, -0.017231658, -0.0007919365, 0.0067082476, -0.016756384, 0.0045849998, 0.01610821, -0.014863736, -0.0044636377, -0.00032992996, 0.0030860389, 0.0043455465, 0.042706806, -0.0038914226, -0.018533628, 0.0063438173, -0.004868519, 1.0724285e-06, -0.002579757, -0.020425096, -0.005309611, -0.013199601, -0.0008061529, 0.011422303, 0.005824871, 0.004666113, -0.0019482358, -0.004380467, -0.01039833, -0.021117797, -0.0011352946, 0.00027046245, 0.028766058, 0.007673018, -0.0076886066, -0.009097756, 0.0015622607, 0.008225241, -0.011188589, 0.0043511423, 0.0029109812, -0.0038614403, -0.017294176, 0.0076826946, -0.023793472, -0.00682512, -0.013890661, 0.019931495, 0.0083171865, -0.0037841816, 0.0010052252, -0.02188158, -0.018282097, -0.0045158397, -0.017404845, -0.0021253617, 0.013484399, -0.0019141417, -0.08515303, -0.0046512084, -0.004957044, -0.017577058, -0.009246152, 0.00035593705, 0.006786275, 0.006796039, -0.0056989114, -0.00063799747, 0.004426157, 0.009030775, -0.001485532, -0.006873334, -0.017374197, 0.015629444, 0.0058926386, -0.009801753, 0.016684704, -0.014281193, -0.011471161, -0.0003021703, 0.016823366, -0.034512624, 0.00021716933, 7.987956e-05, 0.008160874, 0.02620286, 0.00058667414, -0.02209849, -0.015990213, 0.009002755, 0.020895151, 0.0010384835, 0.008098684, 0.009131998, -0.008918938, 0.021859732, 0.0119019635, 0.00226212, 0.007186814, 0.00023341898, 0.008600211, -0.01666762, -0.009665849, 0.007236184, 0.027660796, -0.002405057, 0.0071920357, 0.024724558, -0.016581934, 0.0010603112, 0.007592961, 0.013675363, 0.012664315, 0.010579194, -0.013097223, -0.012465044, -0.0053821346]
Length of this vector: 4096
NaceDocument to create a new method to build a Qdrant PointStruct like dictionary (see the PointStruct note). This structure is required by the Qdrant API.from dataclasses import dataclass, field
from typing import Optional, List
from uuid import uuid5, NAMESPACE_DNS
from qdrant_client.models import PointStruct
NACE_NAMESPACE = uuid5(NAMESPACE_DNS, "nace-rev2")
@dataclass
class NaceDocument:
code: str
heading: str
level: int
parent_code: Optional[str] = None
includes: Optional[str] = None
includes_also: Optional[str] = None
excludes: Optional[str] = None
text: str = field(init=False)
vector: Optional[List[float]] = field(default=None, init=False)
@classmethod
def from_raw(
cls,
raw: dict,
with_includes_also=True,
with_excludes=False,
) -> "NaceDocument":
for key in ("CODE", "HEADING", "LEVEL"):
if not raw.get(key):
raise ValueError(f"Missing required field: {key}")
level = int(raw["LEVEL"])
if not (1 <= level <= 4):
raise ValueError(f"Invalid level: {level}")
obj = cls(
code=str(raw["CODE"]).strip(),
heading=_clean(raw["HEADING"]),
level=level,
parent_code=_clean(raw.get("PARENT_CODE")),
includes=_clean(raw.get("Includes")),
includes_also=_clean(raw.get("IncludesAlso")),
excludes=_clean(raw.get("Excludes")),
)
obj.text = obj.to_embedding_text(
with_includes_also=with_includes_also,
with_excludes=with_excludes,
)
return obj
def to_embedding_text(
self,
*,
with_includes_also: bool = False,
with_excludes: bool = False,
) -> str:
parts = []
parts.append(f"# Code: {self.code}")
parts.append(f"# Title: {self.heading}")
if self.includes:
parts.append("")
parts.append("## Includes:")
parts.append(self.includes.strip())
if with_includes_also and self.includes_also:
parts.append("")
parts.append("## Also includes:")
parts.append(self.includes_also.strip())
if with_excludes and self.excludes:
parts.append("")
parts.append("## Excludes:")
parts.append(self.excludes.strip())
output = "\n".join(parts)
output = output.replace("\\n", "\n")
return output.strip()
def get_embeddings(
self,
client_llmlab,
emb_model: str,
) -> List[float]:
try:
response = client_llmlab.embeddings.create(
model=emb_model,
input=self.text
)
self.vector = response.data[0].embedding
return self.vector
except Exception as e:
raise RuntimeError(f"Embedding failed for doc {self.code}: {str(e)}")
def to_qdrant_point(
self,
) -> PointStruct:
if not hasattr(self, "vector") or self.vector is None:
raise ValueError("vector is missing or Null")
return PointStruct(
# uuid5 is deterministic: same namespace + code always yields the same UUID
# stable across runs, valid for Qdrant, no hacky string manipulation needed
id=str(uuid5(NACE_NAMESPACE, self.code)),
vector=self.vector,
payload={
"code": self.code,
"level": self.level,
"parent_code": self.parent_code,
# Storing the text used for embedding enables inspection and debugging
"text": self.text,
}
)sample_size = 10 # /!\ Do not use a sample (it's just to build the notebook)
nace_points = []
for nace_code in nace[:sample_size]:
nace_doc = NaceDocument.from_raw(
raw=nace_code,
with_includes_also=True,
with_excludes=True
)
nace_doc.get_embeddings(
client_llmlab,
emb_model,
)
nace_points.append(
nace_doc.to_qdrant_point()
)
Check the first PointStruct:
id='bf20fdf8-5b6a-5d28-b1f6-7a472c5564ac' vector=[0.013604626, 0.0040469267, -0.013055056, 0.0018571938, 0.019681796, 0.0021292074, -0.015450935, -0.015548654, -0.007361683, -0.009928224, -0.04116786, 0.043227788, 0.022655034, 0.004115308, 0.008463436, 0.011874151, 0.02463015, -0.019429542, 0.007998721, 0.06486532, 0.020154107, 0.019266449, 0.002914384, 0.009437451, 0.026283171, 0.0021734613, 0.027899496, 0.0027052388, 0.0113111595, -0.042250417, -0.025353452, 0.0023314483, 0.005428814, 0.019085042, -0.042523846, -0.005446706, -0.0076410365, 0.008316522, 0.006585934, -0.004694277, -0.016216371, -0.0082428185, -0.027061068, -0.002988109, 0.0033358738, 0.006163187, -0.01844918, 0.025980474, -0.001096586, 0.0003369544, 0.020229273, -0.018327052, 0.017543104, 0.00390692, -0.018135028, 0.0030722255, -0.011713002, -0.002424628, -0.019514453, 0.022339227, -0.0017924856, 0.005736517, -4.6242258e-06, 0.023460107, 0.0004332938, -0.00271401, -0.0038558461, -0.011756422, -0.0033033225, 0.00085411384, -0.007260791, -0.017822588, -0.0008009078, -0.02298287, 0.0060235807, -0.02920654, -0.021855446, -0.019795798, 0.0259029, 0.00085546734, 0.0016102532, -0.0060231765, -0.03522702, -0.012585426, -0.0064021572, 0.0030953183, -0.01718373, -0.00014400175, -0.018250417, -0.022734059, -0.006347902, 0.019929303, -0.003050049, 0.026287934, 0.011950075, 0.019104859, -0.0025929776, -0.043280825, -9.89983e-05, -0.0016200771, -0.0026893415, 0.024195587, -0.0149740605, 0.017169086, 0.0013138424, -0.010262059, -0.0070850467, -0.0034649675, 0.017301183, 0.00057972985, -0.013590912, 0.006376245, 0.00806601, -0.0127948765, -0.018197995, -0.004665206, -0.008717856, -0.004776167, 0.0023904464, -0.0009949211, 0.01018708, -0.0025031366, -0.0006164241, 0.012572009, 0.0010416118, -0.017546253, -0.01756614, -0.0220954, -0.00954496, 0.011993238, 0.003243104, -0.016800974, 0.0013411787, 0.020911142, -0.008330714, -0.013575843, 0.02246524, 0.0035645545, 0.017838974, 0.020888677, -0.014595095, 0.009850748, 0.03362239, 0.018065644, -0.0107895015, -0.006632475, 0.010412162, 0.010107545, 0.0037547841, 0.018244455, 0.0018815197, -0.013162242, 0.012263615, -0.003475388, -0.009796617, -0.008291234, -0.009468603, 0.013887128, -0.0093615465, -0.018465165, -0.013985957, 0.0037506167, 0.0033880305, 0.005078047, -0.014511049, -0.019506637, 0.011590324, 0.004579578, 0.006915524, 0.005815233, 0.009136001, -0.006027578, -0.016472429, 0.010213692, -0.0100369835, -0.011516339, 0.0043478315, 0.008125539, -0.008559291, 0.000100535515, 0.016296493, -0.015126037, 0.0024209588, 0.030163612, -0.0132495565, 0.0044692736, 0.010034308, -0.016706098, 0.0007081233, -0.012808807, 0.028290072, -0.0024691334, 0.005860843, 0.023379501, -0.0030904892, 1.0328246e-05, 0.004022766, 0.013190172, 0.0031711487, 0.009573141, 0.018143611, -0.026548026, 0.019045884, 0.0010501138, -0.011988678, -0.010585814, -0.0053028488, 0.019851917, -0.0028791693, -0.013884469, 0.02497876, -0.015083474, 0.0022430595, -0.006921646, 0.009624773, -0.010140331, 0.0068357014, 0.027130105, -0.013498643, -0.02355474, -0.0039934344, -0.025851179, -0.0111569045, -0.003869868, -0.0010909438, -0.0039333906, -0.0105716875, -0.0253558, -0.00059493113, -0.007573345, 0.014818521, 0.0014903499, -0.006807985, -0.012146211, 0.021682449, -0.018572684, 0.0014383909, -0.0011172137, 0.015893089, -0.0077375444, -0.017271511, -0.012042356, -0.022917636, -0.03079777, 0.011203868, -0.00030387763, -0.0048645176, -0.015542578, -0.016782077, 0.007833631, -0.012783822, 0.018910393, -0.0077180085, 0.0134204365, -0.0035355599, 0.019012425, -0.0015465836, 0.018254125, -0.01707811, -0.007219383, 0.028835023, -0.0026006754, 0.002028897, -0.011614314, -0.0031889796, -0.0057052816, 0.0025863864, -0.032228544, 0.0042260657, -0.021270346, 0.004592603, 0.0019250644, 0.0025901487, 0.0035799656, -0.012629911, -0.012371038, -0.0005518989, 0.0056986865, 0.0054100887, -0.0076286676, -0.034145143, 0.003702398, 0.004934147, -0.049641654, -0.005869325, -0.012089607, 0.017278451, 0.001790185, -0.0030683575, 0.01438635, 0.00898091, 0.04392099, 0.0010786082, 0.02027599, -0.023553297, -0.0013969755, -0.032389626, -0.0122013725, 0.011416886, 0.016019559, -0.022330206, 0.010637864, -0.0033209187, -0.0043184715, -0.012877891, -0.0068517765, -0.0023852817, -0.010092811, 0.012300873, 0.0021816315, -0.0066805915, 0.0073395213, -0.01712776, -0.015284888, -0.0036158958, 0.007627001, -0.0148792295, 0.000840153, -0.0027744635, 0.016207414, 0.007619082, -0.021372428, -0.024224525, 0.014486345, -0.0036172352, -0.0013413307, 0.01811947, 0.004151848, -0.009674357, -0.020295281, 0.019784715, -0.024427544, -0.024025915, -0.00015405663, 0.015967615, -0.020382743, 0.0005174638, 0.016120035, 0.04321281, -0.0032532325, 0.015086516, -0.016112298, -0.020103574, 0.014653373, -0.011687602, -0.0080339555, -0.014764253, 0.009203574, -0.004303956, 0.007967077, 0.004988688, 0.013715063, -0.016926326, 0.008865113, -0.011443868, 0.010806044, -0.0035914783, -0.02600573, 0.036780804, 0.00078878825, -0.0091861915, 0.0035872404, -0.0010706207, -0.008482649, 0.01353261, 0.012631697, -0.023143776, 0.01976705, -0.019613972, 0.02042523, -0.0022677712, 0.0092841545, -0.014291447, 0.0061841467, -0.03333063, -0.001779672, -0.012760109, -0.010043201, 0.0036219375, -0.024292173, -0.0095160175, 0.0041306885, -0.009061278, 0.0027926408, 0.0055956813, 0.017060906, -0.014164281, -0.017461972, -0.011436374, 0.021780554, -0.0042329724, -0.00011462548, -0.0043488946, 0.025536867, 0.0017570951, -0.008681263, -0.0063599567, 0.0016809384, 0.0072432715, -0.0037604938, 0.027005177, 0.0028890376, 0.024584282, -0.012147093, 0.012892893, -0.00617675, -0.0013257705, 0.0075437385, 0.015389205, 0.010601306, -0.017256765, 0.001681791, -0.008051821, 0.016467405, -0.008223575, 0.002415616, 0.026637288, 0.00074018433, -0.03906885, -0.014186541, 0.013787861, 0.034873586, -0.021281315, -0.012480812, -0.015285848, 0.015805487, -0.0026956785, 0.022830397, 0.01106911, 0.01038798, 0.007104322, 0.010263997, -0.0032380288, -0.02519666, -0.00836117, -0.004523708, 0.024573294, 0.009539251, -0.002125642, -0.014871834, 0.011770323, -0.0027647435, -0.0034176735, -0.033354644, 0.023972837, -0.002713334, -0.022842571, -0.0045764497, 0.021816982, -0.009053605, -0.008617509, 0.013248863, -0.02704643, -0.004093495, -0.011242066, 0.0058804126, 0.007577115, -0.00011156287, 0.010732999, -0.018568825, 0.0018537901, -0.013320528, 0.029681833, -0.0012018695, -0.009022543, -0.004897688, 0.03847581, 0.007996872, 0.007613469, 0.016032029, 0.012736708, 0.019655813, -0.010904531, -0.007853936, -0.015133264, 0.003692898, 0.017021898, -0.015264788, 0.0015171937, 0.017107945, 0.0025473498, -0.023547744, 0.010512728, 0.028322713, -0.006498358, 0.026320871, 0.013241339, -0.022330208, -0.004764957, 0.010363494, -0.008022622, -0.0056547485, -0.0064615607, -0.0077398727, -0.0128352735, 0.006056003, 0.0026025714, 0.0119992765, -0.0033931502, 0.010285244, 0.0028355825, 0.0070825783, -0.00573344, -0.0029569627, 0.0073573366, 0.03877396, -0.00696206, -0.0048438907, 0.008143178, -0.03466724, 0.04051741, -0.006172128, -0.009174137, 0.012839247, 0.0043690633, -0.007914408, -0.002159637, -0.01310375, -0.013735388, 0.013228681, -0.0007596454, -0.009192218, 0.0023138353, -0.013465168, 0.013628176, -0.03197785, 0.0052526784, 0.011023368, 0.0072593107, -0.0035341834, -0.0062976037, -0.0017575645, -0.0064867884, -0.059984524, 0.0017020167, -0.0075227707, 0.005905765, -0.010323173, 0.012904252, -0.011327521, -0.014856109, -0.010526094, -0.0007073361, -0.010938598, -0.00040378026, 0.025086127, -0.0023439715, -0.0002982987, 0.013304952, 0.0030172728, 0.009996713, -0.003509846, 0.0523125, -0.013143476, -0.006711961, -0.0021623052, -0.0054043313, 0.00013907082, 0.0077459197, 0.011058175, -0.004617307, -0.016311396, -0.003147356, -0.01825836, -0.02166479, -0.00018842505, 0.007298702, 0.00017169648, -0.006039347, 0.007963499, 0.0016167555, 0.017330498, 0.029261352, -0.008833336, 0.00062619033, 0.0033895497, 0.02570985, 0.0017552692, 0.023513535, -0.016926067, 0.0032939038, -0.025852215, 0.0052122637, 5.681387e-05, 0.0035235481, -0.013630572, -0.016062323, -0.0021615403, 0.0023485003, -0.009373598, 0.0342686, -0.0050169327, 0.0060233334, -0.0062160282, -0.02622404, -0.00043591182, 0.013413605, -0.013209523, 0.008146357, -0.004069273, -0.029825117, 0.010297415, 0.012361127, -0.002936092, -0.02066605, -0.0040021855, -0.001961119, -0.01714846, 0.0010905458, -0.041829843, 0.0036745006, 0.009780159, -0.015144338, -0.0130411, -0.004564953, 0.023339182, 0.01649059, 0.002522344, -0.004913586, 0.008715326, -0.017861798, 0.020219008, 0.0053988984, -0.017232655, 0.022123838, -0.0062380643, 0.006942918, 0.010979488, -0.008568131, -0.0045008003, 0.0028591882, 0.007885334, 0.008703115, -0.01643058, -0.009224133, -0.0029121514, 0.00598777, -0.0051427456, -0.0152287735, 0.0027818005, -0.015228608, -0.01220442, -0.023005793, 0.012468058, -0.00434941, 0.00084172236, 0.016273167, 0.0005888917, -0.014759341, -0.008933281, -0.016227763, -0.017239615, 0.017770937, -0.0075184107, 0.025511056, -0.010127247, 0.013856748, 0.031514708, -0.02857653, 0.011833679, -0.026528455, 0.011312543, 0.006249099, -0.015527132, -0.009179392, -0.016430069, 0.0044590416, -0.009867845, 0.011580472, -0.029722683, 0.0070756082, 0.014344855, 0.008605339, 0.027270399, -0.005168961, -0.01913812, 0.038791444, -0.0023882797, 0.0030063323, -0.015756376, -0.007916949, 0.017964829, -0.012601328, 0.023983788, 0.013029554, -0.009475314, 0.013703091, 0.018386122, -0.0074172276, -0.006195428, -0.04487467, -0.02352172, 0.005932934, -0.002250177, -0.0073570334, 0.003052771, 0.028428897, -0.03218539, -0.00571161, 0.018716993, -0.0028174843, -0.006722399, 0.015160006, -0.023874426, -0.004577794, -0.029176764, 0.002768781, -0.013750484, 0.0021020204, -0.0069909752, -0.003511708, -0.009278741, -0.0075780833, -0.0022134164, 0.0068092416, -0.050892055, 0.06155097, -0.020847164, 0.0016932328, -0.015444054, 0.0074623213, 0.029660251, -0.014259926, 0.014181529, -0.017408002, -0.019206041, 0.0039171367, 0.009608013, 0.015514038, 0.037910827, -0.017403057, -0.003156731, -0.015700497, 0.025917603, -0.013626452, 0.015969435, -0.005575106, -0.0037196423, -0.0031298946, -0.011780561, 0.00038880686, 0.004642615, -0.03092485, 0.02300468, -0.0030631756, 0.018578134, 0.0008420133, 0.032650378, -0.01887376, 0.013126795, 0.034944676, -0.005440768, 0.007480156, 0.010994226, -0.0074857087, 0.0047126953, -0.020050213, -0.008352728, -0.0012653182, 0.009623528, 0.018192545, 0.0044559105, -0.020095456, -0.004410515, 0.008853348, 0.0070363972, 0.011184556, 0.0015502934, -0.002364893, -0.015148661, 0.024666205, 0.0033088196, 0.009257365, 0.038146578, 0.023585122, -0.009138306, 0.004122072, 0.0123377405, -0.005098433, -0.0073738806, -0.0012387363, 0.00574068, -0.008688887, -0.0036694908, -0.00023903469, -0.0037093414, 0.024946002, 0.036669895, 0.02562879, 0.032339726, -0.007637052, -0.030710435, -0.0031545078, -0.0046408814, 0.004245645, -0.008327282, -0.014553185, 0.014877831, 0.020015702, -0.01885651, -0.01439162, 0.0005805718, -0.0063149203, -0.012095708, 0.005959933, 0.013809956, -0.009400504, -0.0041977842, 0.010931504, 0.017459152, 0.00922915, 0.014497123, 0.009947033, 0.01911756, -0.028547015, 0.011841436, -0.006189456, -0.011439394, 0.0004192749, -0.019162003, 0.0010246268, 0.012425387, 0.021872498, 0.00034167743, -0.00523925, -0.022079384, -0.0052072695, 0.018641638, 0.011419132, -0.0137266265, 0.011286935, -0.010206232, -0.014363203, -0.006731096, -0.0016274262, 0.005257101, 0.0028148578, -0.00067579193, 0.0028351604, -0.014966543, 0.035893176, 0.008301424, 0.0049779397, -0.02284689, -0.019518057, 0.017718967, 0.0012721303, 0.020425227, -0.007836871, 0.0060727466, -0.0071334722, -0.008151651, -0.008473855, -0.002726269, -0.012260909, 0.021514393, -0.007844904, -0.007316454, -0.020261843, 0.006952064, -0.011506673, -0.022934206, 0.0007918374, -0.010690109, 0.0105895065, 0.0076129017, -0.0004589459, 0.006602547, -0.026994035, 0.017251274, -0.0048490134, 0.0016701083, 0.009841753, 0.010001174, -0.019831367, 0.0031980497, -0.012443851, 0.00673781, 0.00042969015, -0.02108521, -0.010488955, 0.0047668694, 0.010082636, -0.0027934066, 0.0029163242, -0.008580554, -0.015027681, -0.00083187193, 0.001761211, -0.025037332, 0.0019128339, 0.0028334819, -0.015978977, -0.005917477, 0.001837802, -0.012957055, 0.035383314, 0.008553719, -0.007061781, -0.0125773745, 0.00494137, 0.002157945, -0.010333656, 0.009346151, -0.026195409, 0.023719518, -0.040884025, -0.013064594, -0.006711202, 0.0013526044, 0.01957838, -0.0001365203, -0.027133252, 0.0026126653, 0.008022516, 0.017981315, -0.009040627, -1.3902351e-05, 0.015244569, -0.0025260542, 0.014070209, 0.01128813, 0.01734606, -0.006417626, -4.502591e-05, 0.010916303, -0.0045152465, 0.007237956, 0.015897496, -0.009132626, -0.00843714, 0.033444155, -0.011084683, -0.010405997, -0.021515844, 0.00686956, -0.0074309353, 0.017834673, -0.0021272372, -0.016073793, -0.009401648, -0.013087344, 0.018654138, 0.013828928, 0.0036204872, -0.012956609, -0.0033726613, 0.0030643935, -0.034276165, -0.0007612087, -0.005329574, -0.010794793, -0.004629902, 0.022978716, 0.0071550026, 0.00495271, -0.009740258, 0.013367742, 0.006735936, 0.00077733287, -0.031972483, 0.014533607, 0.0383339, 0.008797084, 0.013278133, 0.0024717236, -0.010109205, -0.004371516, 0.02492421, -0.03409656, -0.00083001686, -0.007977202, -0.0028830718, -0.016146196, 0.008192922, -0.0035804997, 0.023540596, -0.0014686275, -0.0043670153, 0.003490719, -0.008683031, -0.005153743, 0.0010152146, 0.0021152557, 0.005276112, -0.0044889664, 0.0023185671, 0.0006433114, -0.017959438, -0.05910128, -0.010773159, -0.020487156, 0.0157462, 0.0072577926, 0.006251055, -0.036657266, -0.003223833, -0.005802083, 0.00947222, -0.0068036076, 0.050250698, 0.008321985, -0.0040400093, -0.012003594, -0.023153773, -0.020804057, -0.000839879, 0.027655395, -0.0032929808, 0.0012449318, 0.00815535, 0.00991353, 0.005156316, -0.0067442534, -0.013031837, 0.013081331, 0.009459162, 0.019217804, -0.024976127, -0.01593093, -0.018383844, 0.02325999, 0.0016791584, 0.010238043, 0.0066655516, -0.015181407, 0.028381305, -0.017651586, -0.011383312, -0.004315803, 0.015225087, 0.0012651868, 0.016301563, -0.022372706, -0.020771887, 0.030277452, -0.0021470548, -0.048022542, 0.007375286, 0.02062038, 0.000893477, 0.014164937, -0.0071958085, -0.0049911197, -0.01551621, 0.013709245, -0.0016775596, 0.035024874, -0.016620863, 0.010048779, 0.0051313345, 0.027696706, -0.0050465027, 0.0027792482, 0.0044472506, 0.0025146669, -0.0057888515, -0.017315233, 0.00058764254, 0.012606494, -0.0024413636, -0.010842064, 0.034498554, 0.021148931, -0.015632123, -0.012397646, 0.005815846, -0.01405944, 0.020639366, 0.003898551, -0.020454803, 0.015214106, 0.0042568226, -0.008153223, 0.005757312, -0.015921278, -0.021629516, -0.0049069435, 0.007036333, -0.0050537954, -0.04071236, 0.0003559263, 0.00076996256, 0.0004870072, 0.0047672363, 0.014956786, 0.008325479, 0.0064132917, -0.007129548, -0.006699693, -0.012995687, 0.0052034585, -0.014973497, 0.0062067998, -0.0042607547, -0.010623552, 0.02404507, 0.01030184, 0.011263834, 0.00347139, 0.029558912, -0.016738947, 0.0001118507, -0.001907046, -0.0069205305, 0.021746334, 0.006600212, -0.030652527, 0.0025518248, 0.0012739882, -0.0001023772, -0.0052504893, 0.0026164514, -0.011012908, -0.010292141, 0.017708905, 0.00027047985, -0.005246341, 0.0122830905, 0.0010584035, -0.006248299, 0.00213255, 0.005472768, -0.018200738, -0.020411042, 0.017643118, 0.018836835, 0.0016143078, -0.011213282, -0.046287242, 0.020782579, 0.014639051, -0.008736576, -0.013458932, -0.047715493, -0.0059016575, 0.01638026, 0.0034123808, 0.015408952, -0.0058616595, 0.008393524, -0.0068196515, -0.015383989, 0.017093154, -0.00029916197, 0.019521803, -0.00094748323, -0.007509305, 0.0076061254, -0.023467349, -0.00801684, 0.0220244, 0.016131088, -0.020319268, -0.008079162, 0.0020305656, 0.013537944, 0.004862736, -0.009983588, 0.007977797, 0.00441684, 0.011542287, -0.010414766, -0.0030032005, -0.00456709, -0.002522241, -0.005021913, 0.0074134204, -0.01734858, -0.0104310345, -0.0008107602, -0.00480859, 0.0005186687, -0.001733192, 0.0033647995, 0.010510568, 0.0026740106, 0.0039524822, -0.0033869266, 0.008631344, -0.010044389, -0.024407592, 0.029683895, 0.015004495, 0.005543025, -0.010104558, 0.010883795, -0.008987499, 0.0072791493, -0.0140848905, -0.02392853, 0.009225923, -0.0002633868, -0.00852208, 0.0065281573, -0.01864058, -0.030044911, -0.024203504, 0.006880181, -0.0058001527, -0.002859933, -0.012486554, -0.006954179, 0.0017976911, 0.0073320055, 0.007692712, 0.004789472, -0.027571721, 0.020212797, -0.007519375, -0.009663456, 0.010439635, 0.002310277, -0.011581187, -0.042266775, -0.0055573187, -0.0117232315, 0.0058335727, -0.005786295, 0.02319395, -0.016252711, 0.00046538963, 0.0064435196, -0.01624337, -0.021890108, -0.025595885, 0.02135161, 0.015309508, -0.0028927282, -0.0028954232, -0.008186864, -0.065876886, -0.0013892658, -0.008298561, -0.0023419836, -0.012264025, -0.0025695637, -0.0011826765, -0.011460595, -0.04337173, -0.0131699145, 0.018139888, -0.024700772, -0.004696061, -0.0003778428, 0.018684076, 0.023718214, 0.0064464672, -0.019862212, -0.018547803, -0.022613991, 0.018441936, -0.0087438645, -0.008806179, -0.0142679615, 0.02804547, -0.003590437, 0.022949949, 0.020710282, 0.0034847066, 0.0032300053, -0.016875787, -0.016707953, -0.0059865424, 0.0046920977, 0.0018388276, -0.012693063, -0.012048664, 0.0017999675, -0.003200366, -0.017879777, 0.0003610867, 0.0069409073, 0.018558113, 0.001261858, 0.010379026, 0.01499942, 0.0058348607, -0.00070410996, 0.021313742, 0.00023386408, -0.005260389, -0.027305285, 0.019521376, 0.0017152771, 0.0043956474, 0.018722758, -0.0022956312, -0.008901188, -0.009445439, 0.007650408, -0.0075564617, 0.01047265, 0.017581183, 0.0014890956, 0.0039939275, 0.013590537, 0.014220795, 0.03886544, -0.012495457, 0.0009997804, -0.0014370837, 0.0102542285, 0.014201442, -0.0168093, 0.0021641878, -0.01662135, -0.0033050943, -0.006407642, -0.015414805, -0.008719388, 0.007862072, 0.0011463041, -0.022816801, -0.012319835, -0.023773253, -0.008882662, 0.0061224694, 0.007285196, 0.017341299, 0.0055388724, 0.0012930282, 0.0077682273, 0.0042422423, -0.020475669, 0.002221732, 0.014037099, 0.0050441166, 0.008314212, 0.015044069, -0.014833584, -0.02134395, 0.014552201, -0.0015831486, -0.016430547, -0.023814516, -0.02027994, 0.00015650278, -0.010331, 0.02088748, 0.0036649783, 0.024886101, -0.009772941, 0.009789892, -0.0041915625, -0.0001438476, -0.0047301464, 0.013101443, 0.046479747, 0.013938729, -0.03533633, 0.009351977, 0.009420535, -0.0017914029, 0.018158656, 0.0052064606, 0.016085142, 0.014568509, 0.01057281, -0.0026898433, 0.027265547, -0.008202858, 0.017656833, -0.024031738, 0.018489031, 0.0036326156, 0.032055482, 0.005459618, -0.015511035, -0.014409762, -0.0037501617, 0.015137111, -0.00032221313, -0.005836733, 0.00686896, -0.022232613, -0.00932764, -0.0017809107, 0.007040509, 0.006996341, 0.005370141, 0.009973122, -0.0041042026, -0.0077342107, -0.0020892646, 0.021491054, -0.014454352, -0.0045158262, 0.008495359, -0.0029418755, 0.027933033, -0.0117760515, -0.010899911, -0.0019279891, 0.017822424, -0.014656016, 0.0031050274, -0.011424664, 0.015667, -0.01127235, 0.012882521, 0.032223795, 0.013766128, 0.0070138355, 0.006853299, -0.0015106496, 0.004062097, -0.0010219994, -0.08028186, -0.0034778984, 0.002496315, -0.0031644274, 0.003180018, -0.01689404, -0.011139921, 0.009449174, -0.0015619687, -0.007822593, 0.00013854081, -0.017447839, -0.009903356, -0.0015960437, -0.03938633, -0.0028624926, 0.012078626, 0.0028736976, -0.004453578, -0.031749573, 0.009037703, -0.0015030135, 0.0033644415, -0.0038305896, -0.0100964485, 0.004929893, -0.033411656, 0.0024851365, 0.0010212826, -0.023368752, -0.014667637, 0.020354012, -0.002242823, 0.020981882, -0.026938079, 0.008549661, -0.0036581322, -0.014425165, 0.01459038, 0.014841531, 0.020319834, -0.007519446, -0.02129049, -0.0059351516, -0.013911838, -0.02416507, 0.0019629607, 0.0048941826, 0.0014036555, 0.02215441, 0.022559723, 0.021020487, 0.005541426, -0.0019148629, 0.007302876, 0.0037896854, 0.005616841, 0.009404198, 0.00016462867, 0.00062841584, -0.014452972, -0.0011581769, -0.0018120698, 0.001987497, -0.0092238365, 0.0115117235, 0.014762932, 0.00933207, 0.019819051, -0.007479109, -0.023392098, 0.021899259, 0.010986327, -0.0054058405, 0.0046909777, 0.004251144, -0.024310684, 0.018818358, 0.007356032, 0.021504603, 0.0010057127, -0.0017692541, -0.0029557426, -0.0153596215, 0.020595461, 0.015636148, 0.0052482123, -0.010074916, 0.020294487, -0.021423304, -0.022935549, -0.0027335214, 0.007845653, -0.010831632, -0.022693051, 0.0028138924, -0.045660004, -0.007089636, -0.0056406744, -0.0024634802, -0.006301202, -0.027015718, 0.00020397236, -0.0128885545, -0.013417699, -0.014196921, 0.021191286, -0.031445574, 0.020136513, 0.013848752, -0.0054669892, -0.013977566, -0.003287497, 0.008683535, 0.004143252, 0.04633256, 0.016758008, -0.00065962254, 0.01725944, 0.008370232, 0.0049055396, 0.0069756126, -0.011369117, -0.024402672, -0.00033359652, -0.0043470953, 0.020153727, -0.0039096843, -0.005468837, 0.011537527, 0.011398201, -0.008807796, -0.0070863385, 0.007310376, -0.004386021, -0.0020967282, -0.03484077, -0.019913174, 0.009423182, 0.0038316827, -0.0113016805, -0.011647416, 0.0056131748, 0.0075111957, -0.018217105, 0.0026500467, -0.0094102835, -0.0140501, -0.007377417, 0.007699405, -0.025926152, -0.025872953, 0.0031051415, 0.015004575, 0.0062390035, 0.003313784, 0.011787857, -0.0040441006, 0.01169614, 0.007666834, 0.003312987, 0.0010526648, -0.018881705, -0.014957409, -0.017663853, -0.007930389, 0.0029601287, 0.008892608, -0.016172465, -0.016776338, -0.0010118783, -0.0062741125, -0.0017840529, -0.0056894324, -0.012712343, 0.022871727, -0.028138712, 0.012217674, -0.03700991, 0.010907563, 0.009386251, 0.023396235, -0.019036036, 0.00827745, -0.041621752, -0.0057803094, -0.0048563797, 0.019889146, -0.008302532, -0.0037215056, 0.012685247, -0.005479628, -0.0068994644, -0.009554188, -0.009366063, -0.00044993387, 0.014883834, -0.018804528, 0.0010439246, 0.0020813893, -0.00817272, 0.0069720815, -0.043799497, -0.011091921, -0.018636648, 0.008479465, -0.025698796, -0.019668696, 0.01766381, -0.024477689, 0.025460336, -0.016152333, 0.012610953, 0.004362565, -0.0060077403, 0.017402219, -0.015572126, -0.0064939037, -0.005460495, 0.010067681, 0.0098677445, -0.0008989948, 0.013166019, -0.0008327267, 0.052875005, 0.009522368, 0.0013367477, 0.00061883987, -0.016637212, 0.024975812, 0.028008541, -0.0008966585, 0.0072234343, 0.022022767, 0.030794442, 0.0021906132, 0.007909822, -0.008523547, -0.0072055804, -0.013018566, -0.014795381, -0.017200131, -0.028919019, -0.0069518303, -0.0056103445, 0.01960385, -0.008396442, -0.007546081, -0.033702347, 0.011099276, -0.0029303967, 0.00016761616, -0.004485884, 0.0065365196, 0.024282688, 0.00034897056, -0.014787327, -0.0123100225, -0.006462013, -0.012879681, -0.005390037, 0.0063379337, -0.0038942883, -0.020396598, -0.03893817, 0.017614927, 0.007323936, -0.03339493, -0.008048824, 0.02770358, 0.0144966515, -0.0010599464, -0.029607141, -0.007932537, 0.02417746, -0.0032799086, 0.00069443585, 0.0083572725, 0.014389929, 0.017326234, -0.01956205, 0.010678219, 0.00828428, 0.012836312, 0.014095181, -0.015906235, -0.011669889, 0.007805046, 0.006145358, -0.0020020157, 0.0007562439, -0.00948306, -0.026743969, 0.035428032, -0.012985676, 0.030780304, -0.014080179, 0.035713367, -0.016814195, -0.0148821, 0.0004771801, 0.010964189, 0.011038446, -0.004854886, -0.011744911, -0.021438621, -0.016916249, 0.001715466, 0.0069802813, -0.027798874, 0.002362173, -0.0034647416, -0.0019799457, 0.0023135382, 0.0073154867, 0.006478595, 0.0020643047, 0.039877523, -0.021386025, -0.002980501, 0.011051446, -0.0126425745, 0.0014548054, -0.018212518, -0.010343154, 0.019967282, 0.0064029116, 0.0021691737, 0.017809218, -0.0076774796, 0.01620601, -0.0015441838, -0.0015974342, -0.00026642947, 0.0392211, 0.018906983, 0.018769464, 0.011425378, 0.011168676, 0.0125047155, -0.014192637, 0.02361055, -0.0129806055, -0.020873928, 0.0031980523, -0.015523957, -0.0072378065, -0.007587425, 0.003436838, 0.009304775, 0.0038066562, 0.0036048181, -0.03681226, -0.0021505144, 0.003161015, -0.00050507963, -0.004720282, 0.022866024, -0.006057128, 0.056814913, -0.007918905, -0.009920661, 0.0008519759, 0.0034828023, 0.0048990264, -0.021614207, -0.02652867, -0.0013139424, -0.0023658725, -0.013043454, -0.011054081, -0.0070429756, -0.0008689338, 0.008408322, 0.015994929, 0.014620847, -0.018279972, 0.0072111646, 0.01072136, 0.029472986, -0.0020247453, 0.00076557667, 0.013216572, 0.008950633, 0.0017935042, 0.0118635185, -0.029856825, -0.010508818, 0.00073192065, 0.032426357, 0.004565796, 0.011250774, -0.020910414, 0.014719128, 0.005491109, -0.014040522, 0.0017044548, -0.0030247304, 0.014987894, 0.012451681, -0.016988596, -0.016988315, -0.0002967639, -0.014505648, 0.020081142, 0.007167831, -0.0020843227, 0.0014824941, 0.0093637435, -0.022775209, 0.011173669, -0.011994202, -0.016947323, 0.009088239, -0.006781448, 0.009029444, -0.008820731, -0.000747454, 0.0017595732, -0.010266706, -0.031503987, 0.014386011, 0.025380543, -0.015745644, 0.014416419, -0.009424752, -0.005228966, -0.00038633423, -0.0109350355, -0.0057358854, -6.636809e-07, 0.0136238765, 0.009496768, -0.008317743, -0.0058990084, -0.0010853739, 0.011728248, 0.0022288307, -0.015145975, 0.0008573534, -0.0069821463, 0.016294543, 0.00109406, 0.003016403, 0.030176608, 0.0023194365, -0.006149001, 0.018323967, -0.020543223, -0.006208478, 0.010764585, 0.009854993, -0.011594963, -0.022555057, 0.025376333, -0.0020516447, -0.0099474825, -0.026592026, 0.0029298358, 0.00232448, -0.013244332, -0.0136973895, -0.022584869, -0.014601565, -0.0014584785, -0.006740941, -0.03163615, -0.00022575301, 0.011766972, 0.012234182, 0.0055980408, -0.015182736, -0.0001694242, 0.006078334, -0.021499868, -0.016666815, 0.009328017, -0.029111985, 0.0015143073, -0.011815637, 0.009188609, 0.04303783, 0.03064016, -0.0029555946, -0.012237948, 0.0036890353, -0.0064574066, 0.009348341, -0.003123414, 0.013601703, 0.009014278, -0.003058092, 0.017177777, 0.011438521, 0.027193902, -0.013565967, -0.007892143, -0.016469905, 0.038312305, 0.022394354, -0.0061439886, 0.0066801966, 0.012469308, 0.02249864, -0.00085714576, 0.0062861578, 0.03522378, -0.015132739, 0.008425062, 0.010129188, -0.0075104935, 0.016608573, -0.023923246, 0.0006021647, -0.00013383008, 0.009524874, -0.027012946, -0.0025783407, 0.0032298628, 0.002945229, -0.015552016, -0.0071517043, 0.019072695, 0.0003870775, -0.007900319, -0.01870742, 0.02023272, -0.0062010456, -0.013868869, -0.027172534, -0.0042713485, 0.014174794, -0.0050432007, -0.012303036, 0.0058400384, -0.013938139, -0.00022746918, 0.01491514, -0.007478283, 0.002215942, -0.018105075, 0.0063062445, -0.011680215, 0.0093477955, 0.011326682, 0.006917288, 0.0076849004, 0.001814753, 0.0075038695, 0.014652214, -0.0055036666, 0.01240265, 0.0057664705, 0.01017614, -0.00067587843, -0.018836355, -0.009560252, -0.011462646, -0.01446554, -0.009199228, 0.004435986, 0.008972343, 0.020502143, -0.011377406, -0.008452711, 0.002035785, 0.0021776292, 0.020066658, -0.02445969, 0.0047729383, -0.0013605102, -0.026481206, 0.0074655996, -0.00019208401, -0.0035294357, 0.01169827, -0.01704871, 0.010280321, -0.0132515505, 0.0011048603, 0.0018314464, -0.01654152, 0.0173875, -0.011280898, 0.0025542025, -0.021793889, 0.0014730777, -0.022607243, -0.01650177, 0.011298446, -0.021496909, -0.0034185986, 0.03351846, -0.007423327, -0.023284163, -0.008256843, 0.010730729, 0.034297716, 0.01034277, 0.01651531, 0.025416065, 0.025479918, -0.008732765, -0.005733386, -0.000523477, 0.0011063883, -0.014422758, -0.014516041, -0.010465316, 0.0056205676, 0.025604138, 0.029357037, -0.0078085517, 0.026572298, -0.0057832217, -0.016365413, 0.005081067, 0.00030931414, -0.010889595, -0.007210225, 0.010467578, 0.01857745, 0.006413441, 0.016489075, -0.0014295104, -0.013031777, -0.0071343957, -0.023082076, 0.0005695998, -0.01365962, -0.014457476, 0.0038947903, 0.008297582, -0.0035826142, -0.008947062, -0.03315592, -0.004733018, -0.019851593, -0.0025646975, 0.00350369, -0.01323125, 0.015692083, -0.0044261077, -0.024369245, 0.003392976, -0.007691374, -0.026384411, -0.0064466647, 0.0023750428, -0.010690851, 0.020169282, 0.0018846121, 0.0016066943, 0.011534947, -0.0074565727, -0.0070222225, -0.0006092409, 0.004288022, -0.0026178544, 0.010316079, -0.0054642814, -0.009743743, -0.014804689, -0.0069213714, 0.0107731735, -0.0012445359, -0.0017823857, 0.011602927, -0.010114578, 0.003730692, -0.0018963717, 0.0021260134, -0.011907199, -0.010542993, 0.015706057, -0.022277545, -0.019959869, 0.0030667416, 5.1262567e-05, 0.001256639, -0.01571989, 0.020686166, -0.006120155, -0.0077263014, 0.011101375, 0.0013479762, -0.034000445, 0.00898524, -0.05244786, -0.015950507, 0.005365531, 0.0049146307, -0.01250209, 0.0147786215, 0.030254133, -0.012968513, -0.010362634, 0.010710662, 0.0067703426, -0.01135442, -0.022570904, -0.05344952, 0.0030452071, -0.0060653044, 0.012509952, -1.0032417e-05, 0.005735152, -0.011922762, 0.010847219, -0.003956692, -0.018541627, 0.039118756, -0.008348473, 0.010338575, 0.010838156, -0.016473869, 0.004721689, -0.021553844, 0.032039244, -0.020204877, 0.004248808, -0.009490717, 0.025285251, 0.012398461, -0.014464381, -0.0077629467, 0.005431143, 0.0036251151, -0.009733048, -0.0060497764, -0.015200393, -0.013541192, 0.033913318, -0.028263729, -0.0035482722, -0.017532656, -0.020430027, -0.00068125955, -0.012007289, -0.005308352, 0.0042627356, 0.020971125, -0.013034143, 0.011444707, 0.014005405, -0.008810371, -0.020785356, -0.0012221303, 0.010294243, -0.015360509, -0.0052231583, 0.004587342, 0.003764869, -0.0016151534, 0.0034532144, -0.0075362166, -0.0009284461, -0.015056281, -0.012031575, 0.0004083811, 0.029588593, 0.0025431006, -0.024393054, 0.017612047, -0.011319715, -0.0039373864, 0.00014242482, -0.0033172567, 0.012461794, -0.012474786, -0.006365019, -0.01826461, 0.024305921, 0.036697816, 0.0351837, -0.022249008, 0.0046019205, -0.000409714, -0.026532536, 0.012915498, -0.030059064, -0.010406324, 0.00044508823, 0.0170718, -0.020748332, -0.015824381, -0.0037792353, 0.0067542884, 0.017112851, -0.019010467, 0.0039141406, -0.01817407, -0.0006015654, 0.0013853445, -0.03136132, 0.0032064507, -0.0033672783, 0.0077693043, -0.013680259, -0.0077965437, -0.013681287, -0.002493255, 0.0038337603, -0.0074501643, -0.005650592, 0.0036784238, 0.004268223, -0.0059583806, -0.0024265929, -0.018958265, 0.02694638, 0.00043855218, -0.00028026768, 0.0073128366, -0.020897066, -0.017839389, -0.007840647, 0.0071573625, -0.020161241, -0.010331343, 0.0034343235, 0.0072954153, -0.009348389, 0.021214874, -0.00969978, -0.0108593395, -0.009886121, -0.010760449, 0.0021462196, -0.008883087, -0.00242605, -0.016277527, -0.0063385908, -0.0062690964, -0.050214447, 0.017135607, 0.00018842654, -0.011536717, -0.006489042, 0.010836185, 0.009272581, 0.007910159, -0.0040084156, -0.0042917654, 0.010039279, 0.010489525, 0.006308178, -0.008595511, 0.006895165, -0.0039298073, 0.010512558, -0.00095334335, -0.008075609, -0.011082974, 0.0011311276, 0.030044325, 0.016106442, 0.011791343, 0.020829469, 0.0006440637, -0.0012112797, -0.007649658, -0.0011979042, 0.020028936, -0.06341863, 0.036053497, -0.009812889, 0.0063145002, 4.5958914e-06, 0.0111175645, -0.00015856567, -0.044337068, 0.013601779, -0.003960637, 0.02547034, -0.014788236, 0.003739109, -0.012608659, -0.003021784, 0.014844861, -0.022077506, 0.006757355, 0.008877302, 0.019362764, 0.004918989, -0.0041286703, -0.029371878, -0.00034601358, 0.0051664384, 0.005931562, 0.011851917, 0.012228646, 0.004645066, -0.0143492995, 0.005684433, 0.0019411648, -0.013523264, 0.005521199, -0.007098034, 0.010207303, 0.0006284642, 0.019004125, -0.015137202, -0.0014998402, 0.005238802, 0.016682077, 0.0051280214, 0.011369433, -0.017137252, 0.027393404, 0.013472132, -0.0071602906, 0.007929554, 0.01383047, 0.0019271085, 0.01607665, -0.01847279, -0.0035779532, -0.0005876754, 0.007914568, 0.0066277734, -0.015975002, 0.0007772782, 0.0065957685, -0.0025217629, -0.006354631, 0.0017590654, -0.0019756763, 0.020041289, 0.004960025, 0.0031998686, 0.01279411, -0.009131531, -0.005693936, 0.031416833, -0.0014873818, -0.004387534, -0.0066921995, -0.0034900382, -0.0031666458, 0.0023019619, -0.005109877, 0.05516829, -0.010076946, 0.002587833, 0.008897342, -0.016682517, -0.0014400354, 0.00984224, 0.0050313296, -0.011266529, -0.008887297, 0.018859515, -0.0098269945, 0.013667398, 0.019793404, -0.004481252, -0.031889018, -0.027849143, -0.022372218, 0.0073886123, 0.017139103, -0.0048748576, -0.0018295908, 0.024515167, 0.008503074, -0.016139384, 0.00094302616, 0.0068289028, -0.024349684, -0.012242842, 0.0019745273, 0.06988927, -0.015006872, 0.0005074047, -0.0050981455, -0.0010180715, -0.01780697, -0.02342641, 0.054175958, -0.024484066, -0.0045818323, 0.00052597316, -0.0026052524, -0.0066987267, -0.022940088, -0.019011809, -0.009399808, 0.031387288, 0.022873437, -0.011580244, 0.031341005, -0.0030785871, 0.0037047784, 0.007169359, 0.004238755, 0.002200621, 0.006850815, -0.008221026, -0.005257749, -0.002924301, -0.008379719, -0.012406658, 0.00087497174, 0.019535845, 0.0025786464, 0.012360889, 0.0080641275, -0.015979549, -0.022021031, 0.0066631557, -0.007945222, 0.0009745228, 0.010087416, -0.016651468, -0.011262756, 0.0008330973, 0.016795926, 0.0030161482, -0.011560053, -0.0077422657, -0.021488056, 0.010098948, 0.023858244, -0.011843369, 0.0036719698, 0.002754384, -0.021906417, 0.0026789939, -0.00521337, 0.009183463, 0.003215446, -0.010457671, 0.034888778, 0.002735879, -0.0071915486, 0.022535758, 0.026984848, -0.018702837, -0.02368589, 0.017874947, 0.025810389, -0.00013708604, 0.019156137, -0.0044248197, -0.00406509, 0.011057248, 0.008224285, 0.024013096, 0.0018060013, -0.0142262215, 0.018516084, -0.008589628, -0.0113018155, -0.0065853246, 0.000749767, -0.009463426, -0.029979141, -0.02470504, -0.018654231, -0.014331715, 0.008238966, 0.0012260925, 0.007916383, 0.020116953, 0.005804218, -0.006324716, -0.011796391, 0.017474167, -0.01349147, -0.016618218, 0.006700626, -0.024139388, 0.0032690174, -0.011395438, 0.01606841, 0.0011309474, -0.0375913, 0.0144892, -0.02336321, -0.007473993, -0.004967, 0.010347227, 0.0075572757, 0.028342403, 0.00291324, -0.026328737, 0.011315265, 0.030803038, -0.021740472, -0.000742765, 0.010134642, 0.0069916584, -0.010432688, 0.021028643, 0.008196364, -0.002308254, -0.019955939, -0.005672764, 0.017168615, 0.0020066623, -0.017413098, 0.01902136, 0.00882238, -0.003131247, -0.015440647, -0.016598014, 0.0034562638, -0.0019091308, -0.013533901, -0.008762236, 0.0027748677, -0.014184734, 0.0073489165, 0.008365399, -0.011041242, 0.02089308, -0.07281385, 0.0043250686, -0.016314074, -0.008078155, 0.043789227, 0.002352823, 0.016325222, -0.012766361, -0.0050428617, -0.018406382, -0.00047935365, -0.0039157774, 0.0028450536, 0.018491073, -0.0008299338, -0.0011031234, 0.017024588, 0.015206692, -0.011823366, -0.007427603, 0.0029190083, 0.003949138, -0.008553656, 0.009724735, 0.00842957, -0.011641445, -0.0049000634, 0.007356803, 0.019049777, 0.0015315928, 0.0008901933, -0.012466511, 0.009413326, -0.0033442131, -0.03207145, -0.008751825, 0.028449524, -0.020149684, 0.010572574, 0.005660307, -0.0034602587, 0.018422185, 8.601903e-05, 0.0002080746, 0.019873781, 0.01263474, 0.033893604, 0.021584667, 0.012858451, -0.0065402174, -0.010819165, 0.020628223, -0.01133211, 0.020663861, -0.048432965, -0.029211124, 0.007780679, 0.011116726, -0.02970925, -0.009487917, -0.009084787, -0.0030302356, 0.018341372, -3.1679658e-05, -0.003805926, -0.019841278, 0.0051392983, -0.007159091, -0.0041869734, -0.0015403954, 0.0040006796, 0.014720868, -0.0012025281, 0.024940811, 5.9445923e-05, 0.0034793427, 0.010201699, 0.016873496, -0.03894324, 0.0066313636, -0.014323703, -0.0026436246, 0.02612376, -0.018591296, -0.0063293753, -0.015843255, -0.0011123603, 0.007028281, 0.018383496, 0.019553944, 0.0077756047, -0.0020573363, -0.006989247, -0.00080272835, -0.018284597, 0.017273426, 0.0010274459, 0.017711552, 0.006423099, -0.0017705213, 0.0077293287, 0.0019443268, 0.012255274, 0.015944518, -0.002455316, 0.021320507, -0.0036908842, 0.006663593, 0.011255351, 0.029831618, -0.01583448, 0.00423311, 0.084614925, -0.013975908, -0.0042740754, 0.0067477603, 0.004280214, -0.011903197, -0.018071532, 0.034271475, 0.0078079086, -0.0034551949, -0.008535111, 0.015901702, 0.006596474, 0.008411798, -0.014274383, -0.0044372417, -0.007938535, 0.003792572, 0.0058727497, 0.0040556667, -0.005026626, 0.004495725, -0.016724678, -0.012943158, 0.02683913, 0.007674783, -0.007959735, 0.00884347, 0.012396131, -0.002679616, 0.0060068215, 0.0037025728, 0.0059768246, 0.0008922633, 0.0051570763, 0.017502178, -0.0035722377, -0.0063113705, -0.032088906, 0.019348087, -0.0083867, 0.027396884, 0.022991465, 0.0064117364, 0.02658688, 0.0146008, 0.010720317, 0.00764604, -0.030049786, -0.001001843, -0.0063236076, -0.015615567, -0.02157559, 0.018064955, 0.005938787, 0.0034654005, 0.006915879, -0.0034303085, -0.018080965, 0.0046133, 0.023260893, 0.006681079, 0.01385027, 0.0046499874, -0.0006017339, -0.0005321413, -0.0050560557, -0.013704488, -0.01818528, 0.008078939, 0.0039030255, -0.0032440922, -0.024601346, 0.0017971707, -0.0030583842, -0.0076917005, 0.0011847496, 0.00590634, -0.04594768, -0.0022440928, 0.00014727567, 0.01145768, 0.011961526, 0.010650803, -0.01105614, -0.052566316, -0.0013384859, 0.00976793, -0.00679318, -0.02438437, -0.012584451, -0.029779643, 0.019490464, -0.0026133254, -0.013053847, -0.04749946, -0.020639729, -4.6643872e-05, 0.024781706, -0.019207058, 0.029056506, 0.0017775976, 0.0019165012, 0.0024385483, -0.021173272, -0.0056728874, -0.013210253, 0.0009603234, -0.0048912237, 0.0077818027, -0.016348688, 0.009476032, 0.020849874, 0.010236692, -0.006568698, -0.010080874, -0.006260531, 0.003968021, -0.0037265639, 0.01916889, 0.014025512, 0.01802092, -0.0063346676, 0.032082386, -0.014106773, -0.00539974, -0.0107070515, 0.0065794243, 0.0034953298, -0.01979738, -0.036816217, 0.018622564, 0.012201463, -0.0061811027, 0.008258251, 0.008917247, 0.008044469, -0.0020968076, -0.028490478, -0.0030000627, 0.0038098488, 0.02717394, 0.021838889, -0.0051300824, 0.0072412286, -0.011086492, 0.033815067, -0.009741817, -0.007170323, 0.004530249, 0.005619685, -0.011015857, 0.00035170978, 0.0022398992, -0.0049077873, -0.011624766, 0.0015348649, -0.023137722, -0.019431071, 0.0022408143, -0.039169874, -0.0056613875, -0.02050663, 0.015935978, -0.030035399, -0.00951575, 0.008889504, 0.03284474, -0.034494277, -0.0036854716, -0.02716763, -0.023346242, 0.018620115, -0.034902427, 0.040074993, 0.009183469, -0.0008047108, -0.002490686, 0.008110338, -0.008804941, -0.012241865, -0.0014263917, -0.004386791, 0.0006589354, -0.00017988663, 0.011194984, 0.0045653707, -0.0059613585, -0.01926969, -0.0025111644, 0.022857914, 0.007689664, 0.019311503, 0.011003656, -0.011898903, 0.0066684247, -0.0031969312, 0.004591039, 0.0070710164, -0.009974081, 0.0028460138, -0.0007487488, 0.015691187, -0.007930378, 0.035471227, -0.02456906, -0.014531963, 0.007058756, 0.002539329, -0.007168329, 0.004062785, 0.01526247, 0.027492724, 0.027640577, -0.023247601, 0.04008777, -0.009255338, -0.007858654, -0.0051812865, 0.0037985977, -0.0060351193, -0.01563212, 0.007276651, 0.0008870082, 0.00036992255, 0.0074034804, -0.0051207514, 0.016313244, 0.0055372776, 0.026694462, 0.002799244, 0.005204606, 0.0054404372, 0.010269363, 0.00706495, 0.0025205712, 0.007155209, 0.024044465, 0.005607808, 0.006197561, -0.012304323, 0.0064284825, -0.0077247596, -0.031830214, 0.024493806, 0.0039670086, -0.012104734, 0.0022013297, -0.009974551, -0.008051919, 0.0051278654, -0.0047625885, -0.031109473, 0.011687478, 0.013409381, 0.009383682, -0.011775073, -0.011112053, -0.0033885487, -0.030394947, -0.015499161, 0.0054320516, 0.01291755, 0.019445924, -0.012290552, -0.010984124, -0.014745253, 0.025958074, 0.018312804, 0.0010012467, 0.06321707, 0.04092978, -0.011291136, 0.034171477, -0.0062818965, -0.029462112, -0.004349346, 0.013361347, 0.006821427, 0.011045363, 0.0010555164, -0.013260136, -0.027135525, 0.0061571356, 0.004541879, -0.013786838, 0.035502825, 0.018237716, -0.0018924568, -0.0034336455, -0.026272906, 0.0065755798, 0.008410552, 0.009678182, 0.005437588, 0.024685577, -5.7236568e-05, 0.007844506, 0.01012899, 0.0014857571, -0.009079991, -0.011533156, -0.009555471, 0.0072492617, -0.023452913, 0.007463153, -0.0021244094, -0.010945854, -0.016733887, 0.016708557, -0.009645476, -0.0059278947, 0.004835487, -0.0026235245, -0.0031287519, -0.026860991, -0.010584565, 0.006292027, -0.017285822, 0.038814045, 0.02726322, 0.008497995, -0.008981225, -0.005403733, -0.018809363, -0.0015230629, 0.018643742, -0.021420393, -0.010794768, 0.004151762, -0.0037308657, 0.0019499001, 0.009985877, -0.008228751, 0.021557704, 0.010304694, 0.0069177086, 0.011434264, 0.02011342, -0.023169816, 0.0036627466, -0.001583147, -0.019452669, -0.0006094214, -0.019766776, 0.0023024762, -0.01882616, -0.01658618, 0.004845588, 0.007533819, 0.0286483, -0.013264112, -0.018760541, -0.004820232, 0.009586831, -0.0004822413, 0.013870308, -0.02837107, -0.003675853, -0.0050000404, 0.019764313, 0.023114823, -0.0065932567, 0.0064441003, -0.025585655, -0.01686612, 0.008452013, 0.01362913, 0.014150947, -0.01592278, -0.0071203616, -0.018073054, -0.005787805, -0.011399039, 0.0049049263, 0.026211305, -0.0009794353, -0.030041117, -0.042803306, 0.0044335746, -0.005376632, 0.0015427795, 0.003855183, -0.011910525, 0.021321017, 0.013208745, 0.0032185528, 0.01810389, -0.0054945787, -0.0022704764, 0.012824885, 0.0008629129, -0.011513424, 0.051862035, 0.01263858, -0.0059373295, 0.02198381, -0.009090297, 0.008167598, 0.0004344678, -0.0013283236, 0.014760471, 0.011869374, -0.03312406, 0.012401889, 0.023680743, 0.0033802507, 0.010133255, -0.0008185884, -0.008640196, 0.019125257, 0.016786564, -0.01836768, 0.01601654, 0.0006593651, 0.005977791, -0.011406371, -0.00937685, -0.0018230212, -0.014134441, 0.008075976, -0.0039288085, -0.0049786507, -0.030002411, 0.0016837642, 0.002895489, -0.016996905, 0.004626112, 0.0051082326, 0.00045718258, 0.0021063588, 0.0037649656, -0.01764775, 0.0017163737, -0.01637865, -0.004870595, -0.032994736, 0.01715361, -0.010675842, 0.007878028, 0.011912565, 0.028726425, 0.0039343387, 0.033822138, -0.0033286435, 0.006566572, 0.010664299, -0.03721176, -0.0138198715, -0.014143505, -0.030059278, -0.028766986, -0.00787659, -0.0023395377, 0.0130661465, -0.009189583, -0.014891198, -0.008328996, 0.017839506, -0.0017374041, 0.017917175, 0.027670683, -0.0007296854, 0.015114901, 8.69665e-05, -0.01398912, -0.0131065035, -0.012019735, 0.014895445, 0.032554153, -0.011138346, 0.015356142, -0.0013538835, 0.013303157, 0.002161039, -0.021366617, 0.005846724, -0.005557448, 0.006072954, -0.0062442604, 0.0053448984, -0.028891895, -0.016037684, 0.020187916, -0.026167125, 0.025226846, -0.01303363, 0.017949518, 0.0026068261, 0.009674969, -0.010421022, -0.0029790243, 0.004946393, -0.015212886, 0.0063176155, 0.022085797, 0.0057982174, 0.0012561234, -0.01690761, 0.009376733, 0.009975103, -0.010821594, -0.0047889506, -0.0037553268, 0.0029124988, 0.008766644, 0.005246624, 0.009152867, -0.006934486, -0.003974931, -0.03440802, -0.011049217, 0.002138132, -0.017987955, -0.005817961, -0.011857712, 0.0021302646, -0.005388512, -0.0062509077, 0.018901477, 0.019582843, -0.023857966, 0.0071597365, -0.0026387498, -0.051831737, -0.00010272457, 0.009716155, -0.036252134, 0.013211835, 0.0003801093, 0.007523588, 0.008331124, -0.03247505, -0.0024038528, -0.02484975, 0.008320672, -0.0067658373, 0.01475068, -0.0068938364, 0.035355855, -0.009663177, -0.0089838775, 0.036405627, 0.023714315, -0.03199008, 0.015910013, 0.041121695, 0.017401068, -0.009144364, -0.018857002, -0.008217102, 0.010218523, -0.0142175, -0.017714655, 0.017550802, -0.007759618, -0.022730798, 0.008910347, -0.01666479, -0.0032440564, -0.0054245237, 0.025596937, -0.018548321, -0.010988744, -0.02022233, -0.008432175, 0.0047821198, -0.0013838949, -0.009720758, 0.012113827, -0.0029756126, -0.027109487, 0.0049507604, 0.0010774563, -0.009402897, 0.006165157, 0.012130409, -0.013541771, -0.009365313, 0.00048627236, 0.005016325, -0.012110798, 0.002867216, -0.025673278, -0.006664782, -0.008157329, -0.00087021175, 0.009166077, -0.022475123, -0.0013846684, -0.007820751, -0.0063377637, 0.021126555, -5.7331843e-05, -0.0034008597, -0.0045864843, -0.0075318404, -0.0036464958, -0.006443363, 0.02887813, 0.017688401, 0.0122021595, 0.0075864764, -0.01738144, -0.0041372688, 0.0036299594, 0.003034787, 0.001995726, 0.0033031104, -0.0055198814, -0.012991881, 0.0053051994, -0.029632023, 0.009899967, -0.008815445, 0.0052866726, 0.015964204, 0.0023146726, 0.019709777, -0.027886221, -0.001790809, -0.021637319, -0.020215789, 0.005686604, 0.02248797, -0.010668819, 0.004551594, -0.0012044964, -0.008810564, -0.013660375, -0.024495065, 0.020420104, -0.009303812, -0.0109297205, -0.025793854, -0.0017042414, -0.012859884, -0.006582854, -0.0015171829, -0.0030668005, 0.01678315, 0.004521826, -0.02340132, 0.03995084, -0.013162948, 0.0051918696, 0.019004937, -0.0138583435, 0.006679296, -0.027565096, -0.008981584, 0.0012894939, -0.011009301, -0.007473357, -0.017176967, -0.007187362, -0.0231408, 4.376655e-05, -0.005667098, -0.01203926, -0.020580139, -0.04186632, -0.0025438562, -0.008788692, 0.008879719, 0.0117329825, 0.0031172785, 0.0047807386, 0.0026664096, -0.017344538, -0.010400785, 0.005299683, -0.00042597065, 0.007824389, 0.001759813, -0.010118097, 0.029143265, -0.008746467, 0.0041029206, 0.035749562, 0.0007690907, -0.008901643, 0.01096292, -0.012368574, 0.0099103255, -0.0108132055, -0.009207567, -0.005026971, -0.0027682756, -0.0016695135, 0.0055044843, -0.0081815105, 0.007103637, -0.0022698678, 0.015960582, 0.00026373775, -0.010995091, 0.010869807, 0.010363325, -0.009594265, -0.016242037, -0.020748388, 0.014507191, -0.039388042, -0.025626348, 0.024580121, -0.018626286, 0.0017661252, -0.005359855, 0.02110729, 0.0075527206, 0.0010323785, -0.011956768, -0.030021874, 0.028521458, 0.0013132865, -0.0017348041, 0.04468334, 0.019800736, 0.022874791, 0.006032758, 0.022657469, 0.00014791935, 0.02075829, -0.00069929083, -0.009940287, 0.0066937096, 0.0046237153, -0.00472639, -0.00516453, 0.00090704556, 0.015506373, -0.012646176, 0.0026705682, -0.007557365, 0.0010530023, 0.009956765, 0.011853332, 0.023063399, -0.022735916, -0.0016990175, -0.022291686, -0.01734116, 0.0014019741, -0.0015084011, 0.014748643, 0.0018145569, 0.021090448, 0.011764863, 0.0034735359, 0.010094649, -0.0046753725, 0.008707214, -0.003723442, 0.0068505374, 0.005205818, 0.0035974628, -0.011830803, 0.036459386, -0.0006236857, -0.03472799, 0.00755667, 0.013721053, 0.005680358, -0.005862593, -0.0041171154, 0.028929116, 0.017799651, -0.0037029397, -0.011167355, 0.0028756913, 0.004374515, 0.023856722, 0.022133294, -0.0008337982, 0.016699174, -0.0037775566, 0.0034475208, -0.0063732667, 0.021234602, -0.002147923, -0.014813683, 0.0027498568, -0.02473661, 0.0063420786, -0.0020685685, 0.0077041597, 0.025072018, 0.014199592, -0.016978225, -0.022868631, -0.01311288, -0.002642081, -0.023855826, -0.009461877, -0.010512001, 0.026347056, 0.006026379, -0.028682083, 0.03751334, -0.015817726, 0.022161897, -0.02169835, 0.0027818924, 0.006165156, -0.012749321, 0.044328723, -0.020480474, 0.012462637, 0.0034051428, 0.004075271, -0.011426305, 0.0155845, 0.020894159, -0.01217274, 0.024076087, -0.021211924, 0.0009986692, -0.0034037542, 0.0022461636, 0.0055290596, -0.017262777, 0.01205602, -0.020438986, 0.0037360387, -0.024769286, 0.017635511, -0.0030836572, -0.009844599, -0.009327076, -0.011410811, 0.0025694615, 0.0069242455, 0.03785292, -0.0021203393, 0.011449485, -0.0016989779, 0.011860521, 0.016361952, 0.0039689657, 0.017032204, -0.013231283, 0.013230432, -0.02821388, 0.0041606203, -0.010177689, 0.0027359184, -0.005241645, 0.012490263, -0.03328255, 0.0018576197, 0.023587609, 0.011027898, 0.008765686, -0.0054768985, 0.002515381, -0.005744756, 0.0023050576, 0.01548631, 0.00795062, -0.0005751198, -0.026492136, 0.0258213, -0.008789844, -0.0066916146, -0.014595738, 0.035037808, -0.0017327281, -0.0012533941, 0.012159625, -0.006960275, 0.0030039311, -0.0033520695, 0.01749444, 0.013676159, -0.049315207, -0.004297599, -0.0037582247, -0.0037259867, 0.02923465, 0.014703366, 0.009619417, -0.010704003, -0.005971095, -0.016497446, 0.015514045, 0.0034209648, 0.028890394, -0.015743969, 0.008988338, -0.00050428405, 0.02195921, -0.009740341, -0.014069837, 0.0057029068, 0.011731869, -0.0042515923, 0.0011016367, 0.008180626, 0.011364594, 0.0061062523, -0.012197916, -0.010407417, -0.014342386, 2.8364246e-05, 0.0021134568, 0.019008039, -0.005629385, -0.009477712, 0.0122560505, -0.013104637, 0.0061746472, -0.0014283088, -0.0031724384, 0.0024389804, 0.0012282948, -0.022490885, 0.006105999, 0.008567859, -0.012962583, 0.0063745086, 0.025047839, 0.009103835, 0.0035953533, 0.006230309, 0.015605766, 0.012445758, -0.004837115, -0.011388948, -0.009497038, -0.023033, -0.0027980607, 0.031280074, 0.008119512, 0.014924125, -0.0132549545, 0.008495503, 0.008013391, -0.0034384816, -0.009285462, -0.0053230776, -0.0028215104, 0.0049732616, 0.0061844927, -0.020807173, 0.0024232867, 0.02041946, 0.018794585, -0.025143268, -0.021189988, -0.0024852904, -0.006285731, -0.023089284, 0.00066437945, -0.014141036, 0.018874653, 0.0005113976, -0.0028398004, -0.0016409563, 0.02084892, 0.026529647, 0.010123925, -0.035991363, 0.04648388, -0.017871268, 0.00415831, -0.004155091, 0.018316079, -0.015875857, 0.00771953, -0.017938137, -0.010580966, 0.010408762, 0.012030736, -0.012108275, -0.03588857, 0.0021879384, 0.010570588, -0.008228681, -0.0005368218, 0.0029091928, 0.013323923, -0.026753439, 0.0033630563, -0.041942973, 0.01225545, -0.010954462, -0.0038023938, 0.053281587, -0.008707871, 0.010851386, 0.017211359, -0.0041687298, -0.0043000053, -0.029080888, 0.0048501454, -0.009749615, 0.005381077, -0.00029266404, 0.007821066, -0.014994253, -0.0017921536, 0.009125802, 0.01204664, -0.013498628, 0.0017626785, 0.015404494, -0.003668618, -0.009576174, -0.00609339, 0.023769075, -0.007280857, -0.005174756, -0.020717435, 0.0036871838, -0.0044717267, 0.0023432018, 0.008765739, 0.010085545, 0.018773086, -0.015186173, -0.0116445115, 0.009887592, 0.018883009, -0.00046691997, -0.0173672, 0.0018678477, 0.00019956312, -0.0022620617, -0.07118764, -0.016306724, -0.015212956, -0.030576322, -0.0027925405, -0.00016710514, 0.021311387, -0.038755164, 0.023241278, -0.02602609, 0.0019407817, 0.012761926, 0.010178961, 0.01843992, -0.019550143, 0.004494486, 0.017183315, -0.007155639, 0.0179798, -0.019771723, 0.00493137, 0.015380484, 0.0044126483, 0.0058007943, -0.00025326625, 0.023130877, -0.0052505676, -0.0048374273, 0.005740981, -0.009006589, -0.015722036, 0.003233926, -0.018129928, -0.01107457, -0.025383204, 0.022510981, 0.0021202893, 0.0047597336, -0.010402887, -0.00088877784, -0.006818954, 0.016488085, -0.008606541, 0.0011619949, -0.020376734, 0.0016357538, 0.014583069, 0.008753646, 0.012300441, -0.0058986223, 0.004125183, 0.028217983, -0.011011034, 0.006009722, 0.0066224323, -0.0094824685, -0.013965519, -0.0099842185, -0.0031939337, -0.0039829663, -0.015750995, -0.021761416, -0.021495575, 0.0076058535, -0.0047236453, 0.0029488022, 0.0005370205, -0.005945791, -0.011840477, -0.005242987, 0.013967356, -0.011373492, -0.014793725, 0.012671556, -0.014700655, 0.009137087, -0.0162104, 0.009353821, -0.0016670688, 0.01762684, -0.004632258, -0.011580492, 0.004736845, 0.020309238, -0.018020306, -0.043195818, -0.011560754, 0.007673999, 0.00056091684, -0.020390464, 0.019264068, 0.012601741, 0.0033625425, -0.02821163, -0.0027877379, -0.010069111, 0.0033356273, -0.012470657, 0.019337969, 0.010423713, -0.0064379065, -0.009038749, 0.01349659, 0.0006606401, -0.0035848832, -0.0007229728, -0.0018971551, -0.00752693, 0.020850856, 0.002528054, -0.0013439505, 0.004522572, -0.009582203, 0.01181965, -0.014382883, 0.008468641, 0.012867523, -0.03341588, -0.012060537, 0.0013140094, 0.004251124, 0.002674186, -0.033163596, 0.0053328536, -0.002170193, 0.0025524423, -0.022662122, -0.021416293, 0.01944807, -0.0063989107, -0.0143300025, -0.023247069, -0.00018236936, 0.021461448, 0.006173496, -0.020180931, -0.009884683, -0.008124716, 0.002631927, 0.01161302, 0.0019389663, 0.015260273, -0.0029083272, -0.018105391, -0.02062475, -0.032097287, 0.030954177, 0.015797501, -0.0016335301, 0.0025389118, 0.0016947673, 0.0016132774, 0.01632417, -0.004808525, 0.0012888828, -0.0016773752, -0.008742737, 0.0009071121, 0.008511426, -0.021809006, -0.021423796, -0.011711598, -0.0037630918, -0.005633029, 0.026005356, -0.006777803, 0.0070212875, -0.0147716105, 0.028778084, -0.0014338853, 0.0031328173, 0.005076847, 0.013397392, -0.02026937, -0.003620558, -0.010244066, -0.0021318388, -0.0023448695, -0.026492823, -0.012946704, -0.033603124, 0.008991199, 0.0037620333, -0.0031019119, 0.0056325076, -0.004827588, 0.019173557, 0.020227564, -0.0082158055, -0.00865714, -0.001429001, -0.026212268, -0.0036819358, -0.030697765, 0.029846644, 0.006974146, 0.011848653, 0.00044976926, 0.006158269, -0.0030133345, 0.018077465, 0.013938015, -0.011539477, 0.00051227026, -0.0065580253, 0.021414926, -0.012018105, 0.043139182, 0.006451584, -0.0074019283, -0.012155247, 0.010098578, -0.0006479359, -0.003076633, -0.012747952, 0.008269539, 0.0088245785, 0.011069953, -0.0060827103, 0.02233561, -0.017466571, -0.0032798224, -0.015468727, -0.015656687, -0.012022978, 0.02199427, 0.019010972, 0.00071299804, 0.015794052, -0.006154288, -0.0045967293, -0.004738618, -0.012225308, -0.007226218, 6.489728e-05, -0.015927864, -0.010907271, 0.0061430233, 0.0033204053, -0.008283951, 0.0036152895, 0.010738302, -0.021725979, 0.008607059, -0.00020945695, 0.013503159, 0.04816263, 0.0058133453, 0.0035957645, 0.0032123534, 0.0229319, 0.0043117935, 0.00045422214, 0.0036764392, 0.018905243, 0.07029426, -0.0014586361, 0.00463776, -0.008934523, -0.0049464474, 0.0024577177, -0.0051418836, 0.035619114, -0.017606376, -0.01490271, -0.019892728, 0.00653369, 0.0018563801, 0.0025403902, -0.006914378, 0.014346305, 0.017927438, -0.0091947485, 0.014851112, -0.008169318, -0.002187803, -0.026755637, -0.019471638, -0.022726774, -0.06146284, 0.013659351, 0.029928084, 0.0055479715, 0.021554185, -0.0044931057, 0.01718912, -0.013907755, -0.02163369, -0.017358758, -0.0026031714, -0.0034028562, 0.008129215, 0.0027001235, 0.005282881, 0.011492289, -0.012968547, 0.020764722, -0.023042511, -0.009693561, -0.018811004, -0.005894961, -0.008624757, -0.009357054, -0.031721003, 0.051042054, 0.0047107064, 0.051258996, -0.0009542396, 0.01958425, -0.010833469, 0.011231225, 0.00017559374, -0.0127904825, 0.032083068, -0.017231658, -0.0007919365, 0.0067082476, -0.016756384, 0.0045849998, 0.01610821, -0.014863736, -0.0044636377, -0.00032992996, 0.0030860389, 0.0043455465, 0.042706806, -0.0038914226, -0.018533628, 0.0063438173, -0.004868519, 1.0724285e-06, -0.002579757, -0.020425096, -0.005309611, -0.013199601, -0.0008061529, 0.011422303, 0.005824871, 0.004666113, -0.0019482358, -0.004380467, -0.01039833, -0.021117797, -0.0011352946, 0.00027046245, 0.028766058, 0.007673018, -0.0076886066, -0.009097756, 0.0015622607, 0.008225241, -0.011188589, 0.0043511423, 0.0029109812, -0.0038614403, -0.017294176, 0.0076826946, -0.023793472, -0.00682512, -0.013890661, 0.019931495, 0.0083171865, -0.0037841816, 0.0010052252, -0.02188158, -0.018282097, -0.0045158397, -0.017404845, -0.0021253617, 0.013484399, -0.0019141417, -0.08515303, -0.0046512084, -0.004957044, -0.017577058, -0.009246152, 0.00035593705, 0.006786275, 0.006796039, -0.0056989114, -0.00063799747, 0.004426157, 0.009030775, -0.001485532, -0.006873334, -0.017374197, 0.015629444, 0.0058926386, -0.009801753, 0.016684704, -0.014281193, -0.011471161, -0.0003021703, 0.016823366, -0.034512624, 0.00021716933, 7.987956e-05, 0.008160874, 0.02620286, 0.00058667414, -0.02209849, -0.015990213, 0.009002755, 0.020895151, 0.0010384835, 0.008098684, 0.009131998, -0.008918938, 0.021859732, 0.0119019635, 0.00226212, 0.007186814, 0.00023341898, 0.008600211, -0.01666762, -0.009665849, 0.007236184, 0.027660796, -0.002405057, 0.0071920357, 0.024724558, -0.016581934, 0.0010603112, 0.007592961, 0.013675363, 0.012664315, 0.010579194, -0.013097223, -0.012465044, -0.0053821346] payload={'code': 'A', 'level': 1, 'parent_code': None, 'text': '# Code: A\n# Title: AGRICULTURE, FORESTRY AND FISHING\n\n## Includes:\nThis section includes the exploitation of vegetal and animal natural resources, comprising the activities of growing of crops, raising and breeding of animals, harvesting of timber and other plants, and the production of animal products from a farm or natural habitats.\n\n## Also includes:\nThis section also includes organic agriculture, aquaculture, the growing of genetically modified crops and the raising of genetically modified animals.\n\n## Excludes:\nThis section excludes undifferentiated subsistence goods-producing activities of households, which are classified in class 98.10.'}
client_qdrant.upsert method. Try to batch it.upload_batch_size = 10
for i in range(0, len(nace_points), upload_batch_size):
batch = nace_points[i:i + upload_batch_size]
try:
client_qdrant.upsert(
collection_name=COLLECTION_NAME,
points=batch
)
print(f"Uploaded batch {i//upload_batch_size + 1}/{(len(nace_points)-1)//upload_batch_size + 1}")
except Exception as e:
print(f"Failed to upload batch {i//upload_batch_size + 1}: {str(e)}")
continuePointStruct is a Pydantic model provided by the qdrant_client library that represents a single vector database entry. It bundles together the three components Qdrant needs to store and query a point:
Passing raw dicts directly to the Qdrant API would require manual serialization and validation. PointStruct handles that for you and ensures the data is correctly typed before being sent to the server. It’s essentially the contract between your Python code and the Qdrant collection.
Please note that this workflow is not optimized at all.
Here, we intentionally adopt a step-by-step approach to support learning. In a production-ready setup, however, the workflow would be batched and asynchronous, with embeddings fed into the Qdrant store as soon as they are generated.
Advanced users are welcome to give it a try.
Below, please find a non-exhaustive list of good practices for production-grade workflows :