Introduction to the Transformers Library for NLP: pipelines#

First, let’s install the required libraries to make sure everything works

!pip install datasets evaluate transformers[sentencepiece]

Transformers are everywhere!#

Transformer models are used to solve all kinds of NLP tasks, like the ones mentioned in the previous section. Here are some of the companies and organizations using Hugging Face and Transformer models, who also contribute back to the community by sharing their models:

tr

The 🤗 Transformers library provides the functionality to create and use those shared models. The Model Hub contains thousands of pretrained models that anyone can download and use. You can also upload your own models to the Hub!

⚠️ The Hugging Face Hub is not limited to Transformer models. Anyone can share any kind of models or datasets they want! Create a huggingface.co account to benefit from all available features!

Before diving into how Transformer models work under the hood, let’s look at a few examples of how they can be used to solve some interesting NLP problems.

Working with pipelines#

The most basic object in the 🤗 Transformers library is the pipeline() function. It connects a model with its necessary preprocessing and postprocessing steps, allowing us to directly input any text and get an intelligible answer:

from transformers import pipeline

classifier = pipeline("sentiment-analysis")

text = """Dear Amazon, last week I ordered an Optimus Prime action figure \
from your online store in Germany. Unfortunately, when I opened the package, \
I discovered to my horror that I had been sent an action figure of Megatron \
instead! As a lifelong enemy of the Decepticons, I hope you can understand my \
dilemma. To resolve the issue, I demand an exchange of Megatron for the \
Optimus Prime figure I ordered. Enclosed are copies of my records concerning \
this purchase. I expect to hear from you soon. Sincerely, Bumblebee."""

classifier(text)
No model was supplied, defaulted to distilbert/distilbert-base-uncased-finetuned-sst-2-english and revision af0f99b (https://huggingface.co/distilbert/distilbert-base-uncased-finetuned-sst-2-english).
Using a pipeline without specifying a model name and revision in production is not recommended.
[{'label': 'NEGATIVE', 'score': 0.9015460014343262}]

We can even pass several sentences!

texts = [
    "I hate this so much!",
    "I'm not sure how I feel about this.",
    "I love this!",
]

classifier(texts)
[{'label': 'NEGATIVE', 'score': 0.9994558691978455},
 {'label': 'NEGATIVE', 'score': 0.9992402791976929},
 {'label': 'POSITIVE', 'score': 0.9998764991760254}]

By default, this pipeline selects a particular pretrained model that has been fine-tuned for sentiment analysis in English. The model is downloaded and cached when you create the classifier object. If you rerun the command, the cached model will be used instead and there is no need to download the model again.

There are three main steps involved when you pass some text to a pipeline:

  1. The text is preprocessed into a format the model can understand.

  2. The preprocessed inputs are passed to the model.

  3. The predictions of the model are post-processed, so you can make sense of them.

Some of the currently available pipelines are:

  • feature-extraction (get the vector representation of a text)

  • fill-mask

  • ner (named entity recognition)

  • question-answering

  • sentiment-analysis / text-classification

  • summarization

  • text-generation

  • translation

  • zero-shot-classification

Let’s have a look at a few of these!

Named Entity Recognition (NER)#

Named entity recognition (NER) is a task where the model has to find which parts of the input text correspond to entities such as persons, locations, or organizations. Let’s look at an example:

from transformers import pipeline

ner = pipeline("ner", grouped_entities=True)
prediction = ner("My name is Victor and I am a student at IE University in Madrid.")
No model was supplied, defaulted to dbmdz/bert-large-cased-finetuned-conll03-english and revision f2482bf (https://huggingface.co/dbmdz/bert-large-cased-finetuned-conll03-english).
Using a pipeline without specifying a model name and revision in production is not recommended.
Some weights of the model checkpoint at dbmdz/bert-large-cased-finetuned-conll03-english were not used when initializing BertForTokenClassification: ['bert.pooler.dense.bias', 'bert.pooler.dense.weight']
- This IS expected if you are initializing BertForTokenClassification from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).
- This IS NOT expected if you are initializing BertForTokenClassification from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).
import pandas as pd

df = pd.DataFrame(prediction)
df
entity_group score word start end
0 PER 0.998917 Victor 11 17
1 ORG 0.997800 IE University 40 53
2 LOC 0.995458 Madrid 57 63

Here the model correctly identified that Victor is a person (PER), IE University as an organization (ORG), and Madrid a location (LOC).

Question Answering (QA)#

The question-answering pipeline answers questions using information from a given context:

reader = pipeline("question-answering")

text = """Dear Amazon, last week I ordered an Optimus Prime action figure \
from your online store in Germany. Unfortunately, when I opened the package, \
I discovered to my horror that I had been sent an action figure of Megatron \
instead! As a lifelong enemy of the Decepticons, I hope you can understand my \
dilemma. To resolve the issue, I demand an exchange of Megatron for the \
Optimus Prime figure I ordered. Enclosed are copies of my records concerning \
this purchase. I expect to hear from you soon. Sincerely, Bumblebee."""

question = "What does the customer want?"

outputs = reader(question=question, context=text)
pd.DataFrame([outputs])    
No model was supplied, defaulted to distilbert/distilbert-base-cased-distilled-squad and revision 626af31 (https://huggingface.co/distilbert/distilbert-base-cased-distilled-squad).
Using a pipeline without specifying a model name and revision in production is not recommended.
score start end answer
0 0.631292 335 358 an exchange of Megatron

Note that this pipeline works by extracting information from the provided context; it does not generate the answer.

Summarization#

Summarization is the task of reducing a text into a shorter text while keeping all (or most) of the important aspects referenced in the text. Here’s an example:

summarizer = pipeline("summarization")
summarizer(
    """
    America has changed dramatically during recent years. Not only has the number of 
    graduates in traditional engineering disciplines such as mechanical, civil, 
    electrical, chemical, and aeronautical engineering declined, but in most of 
    the premier American universities engineering curricula now concentrate on 
    and encourage largely the study of engineering science. As a result, there 
    are declining offerings in engineering subjects dealing with infrastructure, 
    the environment, and related issues, and greater concentration on high 
    technology subjects, largely supporting increasingly complex scientific 
    developments. While the latter is important, it should not be at the expense 
    of more traditional engineering.

    Rapidly developing economies such as China and India, as well as other 
    industrial countries in Europe and Asia, continue to encourage and advance 
    the teaching of engineering. Both China and India, respectively, graduate 
    six and eight times as many traditional engineers as does the United States. 
    Other industrial countries at minimum maintain their output, while America 
    suffers an increasingly serious decline in the number of engineering graduates 
    and a lack of well-educated engineers.
"""
)
No model was supplied, defaulted to sshleifer/distilbart-cnn-12-6 and revision a4f8f3e (https://huggingface.co/sshleifer/distilbart-cnn-12-6).
Using a pipeline without specifying a model name and revision in production is not recommended.
[{'summary_text': ' America has changed dramatically during recent years . The number of engineering graduates in the U.S. has declined in traditional engineering disciplines such as mechanical, civil,    electrical, chemical, and aeronautical engineering . Rapidly developing economies such as China and India continue to encourage and advance the teaching of engineering .'}]

you can specify a max_length or a min_length for the result.

summarizer = pipeline("summarization")
outputs = summarizer(text, max_length=45, clean_up_tokenization_spaces=True)
print(outputs[0]['summary_text'])
No model was supplied, defaulted to sshleifer/distilbart-cnn-12-6 and revision a4f8f3e (https://huggingface.co/sshleifer/distilbart-cnn-12-6).
Using a pipeline without specifying a model name and revision in production is not recommended.
Your min_length=56 must be inferior than your max_length=45.
 Bumblebee ordered an Optimus Prime action figure from your online store in Germany. Unfortunately, when I opened the package, I discovered to my horror that I had been sent an action figure of Megatron instead.

Translation#

For translation, the easiest way is to pick the model you want to use on the Model Hub. Here we’ll try translating from English to German:

translator = pipeline("translation_en_to_de", 
                      model="Helsinki-NLP/opus-mt-en-de")
outputs = translator(text, clean_up_tokenization_spaces=True, min_length=100)
Sehr geehrter Amazon, letzte Woche habe ich eine Optimus Prime Action Figur aus Ihrem Online-Shop in Deutschland bestellt. Leider, als ich das Paket öffnete, entdeckte ich zu meinem Entsetzen, dass ich stattdessen eine Action Figur von Megatron geschickt worden war! Als lebenslanger Feind der Decepticons, Ich hoffe, Sie können mein Dilemma verstehen. Um das Problem zu lösen, Ich fordere einen Austausch von Megatron für die Optimus Prime Figur habe ich bestellt. Eingeschlossen sind Kopien meiner Aufzeichnungen über diesen Kauf. Ich erwarte, von Ihnen bald zu hören. Aufrichtig, Bumblebee.
pd.set_option('display.max_colwidth', None)

pd.DataFrame(outputs)
translation_text
0 Sehr geehrter Amazon, letzte Woche habe ich eine Optimus Prime Action Figur aus Ihrem Online-Shop in Deutschland bestellt. Leider, als ich das Paket öffnete, entdeckte ich zu meinem Entsetzen, dass ich stattdessen eine Action Figur von Megatron geschickt worden war! Als lebenslanger Feind der Decepticons, Ich hoffe, Sie können mein Dilemma verstehen. Um das Problem zu lösen, Ich fordere einen Austausch von Megatron für die Optimus Prime Figur habe ich bestellt. Eingeschlossen sind Kopien meiner Aufzeichnungen über diesen Kauf. Ich erwarte, von Ihnen bald zu hören. Aufrichtig, Bumblebee.

Text generation#

Now let’s see how to use a pipeline to generate some text. The main idea here is that you provide a prompt and the model will auto-complete it by generating the remaining text. This is similar to the predictive text feature that is found on many phones. Text generation involves randomness, so it’s normal if you don’t get the same results as shown below.

generator = pipeline("text-generation")
response = "Dear Bumblebee, I am sorry to hear that your order was mixed up."
prompt = text + "\n\nCustomer service response:\n" + response
outputs = generator(prompt, max_length=200)
No model was supplied, defaulted to openai-community/gpt2 and revision 6c0e608 (https://huggingface.co/openai-community/gpt2).
Using a pipeline without specifying a model name and revision in production is not recommended.
Truncation was not explicitly activated but `max_length` is provided a specific value, please use `truncation=True` to explicitly truncate examples to max length. Defaulting to 'longest_first' truncation strategy. If you encode pairs of sequences (GLUE-style) with the tokenizer you can select this strategy more precisely by providing a specific strategy to `truncation`.
Setting `pad_token_id` to `eos_token_id`:50256 for open-end generation.
print(outputs[0]['generated_text'])
Dear Amazon, last week I ordered an Optimus Prime action figure from your online store in Germany. Unfortunately, when I opened the package, I discovered to my horror that I had been sent an action figure of Megatron instead! As a lifelong enemy of the Decepticons, I hope you can understand my dilemma. To resolve the issue, I demand an exchange of Megatron for the Optimus Prime figure I ordered. Enclosed are copies of my records concerning this purchase. I expect to hear from you soon. Sincerely, Bumblebee.

Customer service response:
Dear Bumblebee, I am sorry to hear that your order was mixed up. Please make sure you will send me a replacement action figure in an appropriately labeled package. All Transformers are based on each previous Optimus Prime model, and can not be shipped in a custom order.

In addition, I would like to apologize for any inconvenience that has been caused by a purchase error. Thank you for your understanding. I

Using any model from the Hub in a pipeline#

The previous examples used the default model for the task at hand, but you can also choose a particular model from the Hub to use in a pipeline for a specific task — say, text generation. Go to the Model Hub and click on the corresponding tag on the left to display only the supported models for that task. You should get to a page like this one.

Let’s try the distilgpt2 model! Here’s how to load it in the same pipeline as before:

generator = pipeline("text-generation", model="distilgpt2")
generator(
    "In this course, we will teach you how to",
    max_length=30,
    num_return_sequences=2,
)
Truncation was not explicitly activated but `max_length` is provided a specific value, please use `truncation=True` to explicitly truncate examples to max length. Defaulting to 'longest_first' truncation strategy. If you encode pairs of sequences (GLUE-style) with the tokenizer you can select this strategy more precisely by providing a specific strategy to `truncation`.
Setting `pad_token_id` to `eos_token_id`:50256 for open-end generation.
[{'generated_text': 'In this course, we will teach you how to convert from one-line English to another.'},
 {'generated_text': 'In this course, we will teach you how to properly read a language with some of the most advanced language features the world has to offer. This course'}]

You can refine your search for a model by clicking on the language tags, and pick a model that will generate text in another language. The Model Hub even contains checkpoints for multilingual models that support several languages.

Once you select a model by clicking on it, you’ll see that there is a widget enabling you to try it directly online. This way you can quickly test the model’s capabilities before downloading it.

Exercises#

  1. Search in the Model Hub for a text-classification model that can be used for sentiment analysis in French. Then use it in a pipeline to classify the following text: “Je suis content de voir que tu t’amuses bien avec les transformers.” What do you think of the model’s predictions?

pipe = pipeline('sentiment-analysis', model="lxyuan/distilbert-base-multilingual-cased-sentiments-student")
pipe("Je suis content de voir que tu t'amuses bien avec les transformers.")
[{'label': 'positive', 'score': 0.6099125742912292}]
  1. Search in the Model Hub for a text-classification model that can be used to classify news headlines into different topics.

pipe = pipeline('text-classification', 'M47Labs/english_news_classification_headlines')
  1. Explore the “feature-extraction” pipeline, and use it with a few examples.

What do you think it does? What would be the use cases for this kind of pipeline?

pipe = pipeline('feature-extraction')
No model was supplied, defaulted to distilbert/distilbert-base-cased and revision 935ac13 (https://huggingface.co/distilbert/distilbert-base-cased).
Using a pipeline without specifying a model name and revision in production is not recommended.
pipe("What is your name?")
[[[0.3637109696865082,
   0.09485034644603729,
   -0.04690645635128021,
   -0.3490235209465027,
   -0.23377543687820435,
   -0.0023446432314813137,
   0.2790885865688324,
   -0.0881642997264862,
   0.1622171849012375,
   -1.262887954711914,
   -0.3526270091533661,
   0.08171980828046799,
   -0.09936277568340302,
   -0.06373105198144913,
   -0.4688904285430908,
   0.09439434856176376,
   0.158197820186615,
   0.09851336479187012,
   -0.0530281588435173,
   -0.1686643809080124,
   0.0851181373000145,
   -0.2089528739452362,
   0.5347854495048523,
   -0.17522650957107544,
   0.3746373951435089,
   0.030817538499832153,
   0.24676205217838287,
   0.2392554134130478,
   -0.11405248939990997,
   0.3862153887748718,
   0.12215524166822433,
   0.13822834193706512,
   -0.0961143895983696,
   -0.012459649704396725,
   -0.1363394409418106,
   0.21496166288852692,
   -0.08583203703165054,
   -0.18801140785217285,
   -0.2402055710554123,
   -0.23892007768154144,
   -0.6154190301895142,
   0.1507142186164856,
   0.6898440718650818,
   -0.18210802972316742,
   -0.012669920921325684,
   -0.3777412176132202,
   0.11927430331707001,
   0.05383618175983429,
   -0.1341705471277237,
   0.11492814123630524,
   -0.013505620881915092,
   0.12733334302902222,
   -0.1438920944929123,
   0.05412065237760544,
   0.2879522740840912,
   0.13830076158046722,
   -0.16276070475578308,
   0.25666141510009766,
   -0.5446485280990601,
   0.3333776593208313,
   0.06566337496042252,
   0.1076008677482605,
   0.26598060131073,
   -0.06748659908771515,
   -0.06713369488716125,
   0.17402739822864532,
   0.09654167294502258,
   0.10130897164344788,
   -0.11617475003004074,
   -0.2362828254699707,
   0.1193084642291069,
   0.23027415573596954,
   0.2072102129459381,
   1.0430619716644287,
   0.4210384786128998,
   -0.20387399196624756,
   0.4802309274673462,
   0.02013067901134491,
   0.019638318568468094,
   0.031447574496269226,
   0.23272094130516052,
   0.13400208950042725,
   -0.10017889738082886,
   -0.21534252166748047,
   -0.05229652673006058,
   -0.26955974102020264,
   0.1897517591714859,
   0.10498438030481339,
   -0.22805280983448029,
   0.13115227222442627,
   0.27489233016967773,
   -0.16074544191360474,
   -0.275959849357605,
   -0.19056878983974457,
   -0.05870724096894264,
   0.2628975510597229,
   0.12113629281520844,
   -0.011942514218389988,
   6.513874053955078,
   -0.228350430727005,
   -0.2773868143558502,
   -0.035129252821207047,
   0.2160479724407196,
   -0.11341249942779541,
   0.4409717321395874,
   -0.4475431740283966,
   -0.06291534006595612,
   -0.46879303455352783,
   0.1357608139514923,
   0.5328736305236816,
   0.4524737596511841,
   -0.02424640953540802,
   0.0893990620970726,
   -0.09019868075847626,
   -0.0633978620171547,
   -0.298726886510849,
   0.16148093342781067,
   -0.039122678339481354,
   0.28473997116088867,
   -0.173807293176651,
   0.2492368221282959,
   -0.09757857024669647,
   1.0034222602844238,
   0.21859782934188843,
   -0.12223239988088608,
   -0.181829571723938,
   -0.18718314170837402,
   -0.10784901678562164,
   0.09740497916936874,
   -0.28065651655197144,
   -0.563681423664093,
   -0.1853315234184265,
   -0.10024017095565796,
   -0.08506228774785995,
   -0.06458405405282974,
   -0.0011576712131500244,
   -0.061849743127822876,
   0.13304388523101807,
   -0.9763031601905823,
   0.15940946340560913,
   0.22379881143569946,
   -0.30357059836387634,
   0.1287216693162918,
   -0.09538008272647858,
   -0.4549423158168793,
   2.9928035736083984,
   -0.16601529717445374,
   0.07176411151885986,
   0.05985580012202263,
   0.012814772315323353,
   0.13478487730026245,
   -0.26296719908714294,
   -0.1794760674238205,
   0.10394944250583649,
   -0.3069900870323181,
   -0.25614914298057556,
   0.20805616676807404,
   0.15487712621688843,
   0.031375207006931305,
   -0.06107178330421448,
   -1.0925251245498657,
   0.21057793498039246,
   -0.1901048868894577,
   0.36108821630477905,
   0.04708991199731827,
   -0.2201642394065857,
   0.17637884616851807,
   -0.6982943415641785,
   0.1353907287120819,
   0.26719823479652405,
   -0.013703614473342896,
   0.06802056729793549,
   -2.5966262817382812,
   0.45988190174102783,
   0.2126433551311493,
   0.16688942909240723,
   0.08653194457292557,
   0.17970700562000275,
   -0.27310553193092346,
   -0.2870560586452484,
   -0.24061629176139832,
   0.4034022092819214,
   0.21624399721622467,
   0.20052334666252136,
   -0.4153229594230652,
   0.212367981672287,
   0.05299876630306244,
   -0.04212816059589386,
   -0.012889236211776733,
   0.12028518319129944,
   -0.11640740931034088,
   -0.3912862241268158,
   0.16335032880306244,
   0.16227209568023682,
   0.2779144048690796,
   0.006248362362384796,
   0.023151595145463943,
   -0.18186503648757935,
   -0.07195599377155304,
   0.16761459410190582,
   0.017948344349861145,
   -0.16446846723556519,
   -0.2533651292324066,
   0.1832313984632492,
   0.4079272150993347,
   -0.07588395476341248,
   -0.02624896541237831,
   0.09177503734827042,
   0.11065845191478729,
   0.0023057088255882263,
   -0.21141111850738525,
   0.06652987003326416,
   0.10535331070423126,
   0.42865893244743347,
   0.5499225854873657,
   -0.29455021023750305,
   -0.042225953191518784,
   0.14615899324417114,
   0.09214265644550323,
   0.0899449810385704,
   -0.40803855657577515,
   0.14903908967971802,
   -0.29723888635635376,
   -0.1403728723526001,
   0.06779056787490845,
   -0.00293930247426033,
   0.17659741640090942,
   0.07019049674272537,
   0.06104922667145729,
   -0.39562898874282837,
   0.1856299638748169,
   0.2575647532939911,
   0.048702117055654526,
   -0.25673216581344604,
   -0.11535090953111649,
   0.14540722966194153,
   -0.19053590297698975,
   0.27808406949043274,
   0.125573992729187,
   0.18626464903354645,
   0.0784740149974823,
   -0.27596181631088257,
   0.3452683687210083,
   -0.030465830117464066,
   0.08081740140914917,
   0.21427229046821594,
   0.36155587434768677,
   0.1686485856771469,
   -0.03164107725024223,
   0.15298239886760712,
   0.6693172454833984,
   0.2286253571510315,
   -0.37951621413230896,
   -0.33600255846977234,
   -0.3936460614204407,
   -0.06848276406526566,
   -0.05559185519814491,
   -1.3738821744918823,
   -0.5111069083213806,
   -0.15704137086868286,
   0.1386900544166565,
   -3.0215506553649902,
   0.10012221336364746,
   0.20483025908470154,
   0.14691688120365143,
   -0.016162436455488205,
   0.3227406144142151,
   0.2922705113887787,
   -0.43444719910621643,
   0.15807640552520752,
   -0.3736525774002075,
   -0.09556172043085098,
   -0.6744916439056396,
   0.24774014949798584,
   -0.14905224740505219,
   0.14424559473991394,
   -0.16258257627487183,
   -0.036093950271606445,
   -0.35942479968070984,
   -0.26772046089172363,
   -0.41600245237350464,
   0.17904765903949738,
   -0.27927812933921814,
   0.2527903914451599,
   -0.15842129290103912,
   0.464130699634552,
   0.28354328870773315,
   0.16173097491264343,
   0.04922071099281311,
   4.190730094909668,
   0.4172741770744324,
   -0.22085055708885193,
   0.2981892228126526,
   -0.20273356139659882,
   -0.042470164597034454,
   -0.1429000347852707,
   -0.43596193194389343,
   0.06626594066619873,
   0.05421939864754677,
   0.0894504189491272,
   -0.09441949427127838,
   0.14575645327568054,
   -0.5506159067153931,
   -0.023232778534293175,
   -0.3815038204193115,
   0.0953911617398262,
   0.009638801217079163,
   0.07222411781549454,
   -0.6339164972305298,
   -0.0895390659570694,
   0.13386328518390656,
   0.08167058974504471,
   -0.034030087292194366,
   0.039672866463661194,
   -0.12052609026432037,
   -0.45527467131614685,
   -0.2803660035133362,
   0.6163576245307922,
   -0.05655409023165703,
   -1.036180019378662,
   0.18881645798683167,
   -0.01703990250825882,
   -0.22880852222442627,
   -0.1366598755121231,
   0.13257569074630737,
   -0.009890954941511154,
   -0.16675569117069244,
   -0.19570353627204895,
   -0.19700954854488373,
   -0.032123129814863205,
   -0.07392562180757523,
   0.060472410172224045,
   -0.4289700984954834,
   -0.37875664234161377,
   -0.09629715979099274,
   -0.2718338370323181,
   -0.24494235217571259,
   0.031086141243577003,
   0.04103292524814606,
   -0.10862782597541809,
   -0.3965625762939453,
   -0.06325932592153549,
   -0.20186997950077057,
   0.10940735042095184,
   0.2610730528831482,
   0.03540126979351044,
   0.19057273864746094,
   -0.12402090430259705,
   0.07838037610054016,
   0.07242582738399506,
   0.10433812439441681,
   0.008981283754110336,
   -0.016856908798217773,
   0.3851914703845978,
   -0.08127802610397339,
   0.01275971531867981,
   -0.20409958064556122,
   -0.34650325775146484,
   -0.053192298859357834,
   0.12653802335262299,
   0.024339675903320312,
   -2.226253032684326,
   0.17551977932453156,
   0.11271966993808746,
   -0.07117368280887604,
   0.039545800536870956,
   -0.08948472142219543,
   0.2259504348039627,
   -0.057809747755527496,
   0.47823113203048706,
   0.2532922923564911,
   0.04164160043001175,
   0.4137188196182251,
   0.03319490700960159,
   -0.5126672387123108,
   0.01162866409868002,
   0.11023581027984619,
   0.6822238564491272,
   0.18557095527648926,
   -0.495084285736084,
   -0.44144776463508606,
   0.04784715548157692,
   0.30376124382019043,
   -0.2849969267845154,
   0.004628673195838928,
   0.1703801453113556,
   0.12934303283691406,
   -0.2529636025428772,
   -0.02413923107087612,
   -0.06338433921337128,
   0.1851956993341446,
   -0.2022591233253479,
   -0.1007092297077179,
   -0.2306516319513321,
   -0.2822629511356354,
   -0.07264365255832672,
   -0.26217684149742126,
   0.19173260033130646,
   0.26792025566101074,
   -0.16741915047168732,
   -0.1373921036720276,
   -0.05524267256259918,
   -0.05949965864419937,
   0.11901344358921051,
   -0.48361557722091675,
   -0.05222761631011963,
   -0.03109639883041382,
   -0.21746696531772614,
   -1.5683170557022095,
   -0.07406239956617355,
   -0.05531817674636841,
   -0.36852020025253296,
   -0.10365088284015656,
   0.36052730679512024,
   0.02727661281824112,
   0.10221786797046661,
   0.05271047353744507,
   -0.07557956129312515,
   0.4573316276073456,
   0.41095951199531555,
   0.21625253558158875,
   -0.2007651925086975,
   -0.015625283122062683,
   -0.32106488943099976,
   -0.10366242378950119,
   0.3001028597354889,
   -0.008438993245363235,
   -0.2282564491033554,
   0.1135714054107666,
   0.18023031949996948,
   -0.7999289631843567,
   -0.16521061956882477,
   -0.10614390671253204,
   -0.4230719804763794,
   -0.2114359587430954,
   -0.24835188686847687,
   0.08915193378925323,
   -0.3660258650779724,
   -0.07456758618354797,
   5.407006740570068,
   -0.3276354968547821,
   0.1285003125667572,
   -0.08538071811199188,
   -0.2815825045108795,
   -0.08273322135210037,
   0.3761116862297058,
   0.08980021625757217,
   0.848026692867279,
   -0.013838585466146469,
   -0.20854341983795166,
   -0.29629331827163696,
   -0.0011942535638809204,
   0.05906759202480316,
   -0.44893085956573486,
   0.401256263256073,
   0.010225985199213028,
   -0.03879936411976814,
   0.03348912298679352,
   -0.20240159332752228,
   -0.00357983261346817,
   0.07201714813709259,
   0.09057486057281494,
   -0.17576444149017334,
   0.32110151648521423,
   0.27072635293006897,
   0.009001187980175018,
   -0.2207479178905487,
   -0.06872157007455826,
   -0.18369418382644653,
   -0.335290789604187,
   0.18774181604385376,
   0.16774919629096985,
   0.3117653429508209,
   0.09484922140836716,
   -0.05895521491765976,
   0.10036465525627136,
   0.1426400989294052,
   0.23701244592666626,
   0.013487935066223145,
   0.34264588356018066,
   0.18918095529079437,
   1.1463710069656372,
   -0.04982883483171463,
   0.3523571789264679,
   0.2744482457637787,
   0.0696902722120285,
   -0.13233360648155212,
   0.3896961510181427,
   0.07072065025568008,
   -0.21337959170341492,
   0.23128773272037506,
   0.21660839021205902,
   -0.21121613681316376,
   0.0043493956327438354,
   0.04802472144365311,
   -0.03949293494224548,
   -0.16880035400390625,
   -0.23930810391902924,
   -0.11677302420139313,
   -0.16533245146274567,
   -0.022946352139115334,
   -0.09890425205230713,
   -0.1717587411403656,
   0.14282041788101196,
   -0.3288115859031677,
   0.20356690883636475,
   -0.18671868741512299,
   -0.32315748929977417,
   -0.15379315614700317,
   -0.43114960193634033,
   0.08652124553918839,
   -0.639682948589325,
   0.0849885642528534,
   0.2079625427722931,
   0.0821547880768776,
   -0.3458724021911621,
   -0.08438683301210403,
   -0.10702024400234222,
   -0.13881593942642212,
   -0.18700465559959412,
   -0.2698461711406708,
   -0.2390643060207367,
   -0.2629091441631317,
   -0.1476777046918869,
   0.05119412764906883,
   -0.42150360345840454,
   -0.5405115485191345,
   -0.06933927536010742,
   0.29563289880752563,
   -0.20446738600730896,
   -0.26361745595932007,
   -0.08270113170146942,
   -0.10356925427913666,
   -0.027703896164894104,
   0.16253410279750824,
   -0.1670944094657898,
   -0.06242109090089798,
   -0.2072741687297821,
   0.12845471501350403,
   0.47492706775665283,
   0.16514798998832703,
   0.12421877682209015,
   0.20054906606674194,
   -0.0016494737938046455,
   -0.10696887969970703,
   -0.0387149304151535,
   0.07770754396915436,
   -0.08156108111143112,
   -0.07837709784507751,
   0.13871844112873077,
   0.19866183400154114,
   0.11108125746250153,
   -0.18799817562103271,
   -0.1158820390701294,
   0.1435031145811081,
   -0.05173219367861748,
   -0.31566154956817627,
   -6.656957149505615,
   0.3839069902896881,
   0.1477876752614975,
   0.3294328451156616,
   -0.1143292784690857,
   -0.1795734316110611,
   0.46925902366638184,
   0.19257107377052307,
   0.23574760556221008,
   0.1503331959247589,
   -0.3491147458553314,
   -0.21179969608783722,
   -1.9735281467437744,
   0.09412984549999237,
   -0.1392735242843628,
   0.276863157749176,
   -0.05614908039569855,
   -0.6704007387161255,
   -0.049717098474502563,
   0.5363670587539673,
   -0.14538326859474182,
   0.32046863436698914,
   0.2139098197221756,
   0.29888689517974854,
   0.3139583468437195,
   -0.002621769905090332,
   -0.12390358746051788,
   0.017732970416545868,
   0.14106154441833496,
   -0.09470447897911072,
   0.012288149446249008,
   -0.0945780947804451,
   0.49542170763015747,
   -0.06515724956989288,
   -0.13207681477069855,
   -0.32827648520469666,
   0.012854449450969696,
   -0.09020789712667465,
   0.0146123506128788,
   -0.39259886741638184,
   -0.12743446230888367,
   0.07687528431415558,
   0.2856195569038391,
   0.32957157492637634,
   -0.4387419521808624,
   -0.16531389951705933,
   -0.5292869210243225,
   -2.3921945095062256,
   0.23559150099754333,
   0.09247608482837677,
   0.27821558713912964,
   0.21496917307376862,
   0.1754702627658844,
   -0.20947813987731934,
   -0.2719946503639221,
   0.1209406927227974,
   -0.01842169277369976,
   0.013769677840173244,
   0.37027785181999207,
   -0.12313668429851532,
   -0.25047633051872253,
   -0.052102383226156235,
   0.5149908065795898,
   -0.009029023349285126,
   -0.09136295318603516,
   0.2018703818321228,
   -0.43134820461273193,
   -0.11079474538564682,
   -0.26356828212738037,
   -0.2757735550403595,
   -0.07463077455759048,
   -0.10281753540039062,
   -0.26787564158439636,
   0.08693686872720718,
   0.15785059332847595,
   0.4484679102897644,
   0.005028285086154938,
   0.10663661360740662,
   -0.18267905712127686,
   0.04550481215119362,
   -0.2973453104496002,
   -0.19923357665538788,
   0.6183517575263977,
   0.3987879157066345,
   0.15547139942646027,
   -0.19923852384090424,
   -0.12031488865613937,
   0.3611403703689575,
   -0.09639506042003632,
   -0.07462050020694733,
   -0.025554556399583817,
   0.06800731271505356,
   0.1528647243976593,
   -0.1813669204711914,
   -0.248494952917099,
   0.10749521851539612,
   -0.25094330310821533,
   0.22418779134750366,
   -0.24174541234970093,
   -0.10430150479078293,
   -0.10035078227519989,
   0.017698101699352264,
   0.0674588531255722,
   -0.3784209191799164,
   -0.11455089598894119,
   -0.13847790658473969,
   2.5553863048553467,
   0.003141239285469055,
   -0.11007565259933472,
   -0.0589403435587883,
   -0.14524155855178833,
   0.05879712104797363,
   -0.08932803571224213,
   0.3108009696006775,
   1.5934085845947266,
   0.09307283163070679,
   -0.04431610926985741,
   0.056496087461709976,
   0.01847025938332081,
   -0.01370471715927124,
   0.06733755022287369,
   0.397026002407074,
   -0.13547533750534058,
   0.1647462695837021,
   -0.10955943167209625,
   0.0992777943611145,
   0.33980292081832886,
   -0.24663329124450684,
   0.2053244560956955,
   -0.07202211022377014,
   -0.16949546337127686,
   -0.03285687416791916,
   -0.3733835220336914,
   -0.20609711110591888,
   0.29859277606010437,
   -0.36193540692329407,
   0.08089693635702133,
   0.16251325607299805,
   -0.20183034241199493,
   0.8399867415428162,
   -0.11128003150224686,
   -0.07743601500988007,
   0.3947838544845581,
   0.06603929400444031,
   0.03660992905497551,
   -0.29616454243659973,
   -0.12151257693767548,
   -0.07222166657447815,
   -0.43080827593803406,
   0.5400867462158203,
   -0.10312912613153458,
   0.02292741648852825,
   -0.3545680642127991,
   -0.27574029564857483,
   0.11229006201028824,
   -0.040348224341869354,
   0.026002950966358185,
   -0.30763882398605347,
   -0.20610390603542328,
   0.05577563866972923,
   -0.3257218301296234,
   0.0795373022556305,
   -0.729051411151886,
   -0.1653786450624466,
   0.3287016749382019,
   -0.16334158182144165,
   0.0355016365647316,
   0.20982912182807922,
   -0.010872479528188705,
   0.05737687647342682,
   0.04003416374325752,
   -0.08404254168272018,
   0.21344131231307983,
   -0.13847750425338745,
   -0.12850932776927948,
   -0.2110724151134491,
   -0.0787532851099968,
   0.32060474157333374,
   -2.3289620876312256,
   -0.1307797133922577,
   -0.02187104895710945,
   -0.20128126442432404,
   -0.28790274262428284,
   -0.2140936255455017,
   0.4439919888973236,
   -0.00797245278954506,
   -0.047513317316770554,
   0.17208337783813477,
   -0.13178446888923645,
   1.9622087478637695,
   -0.2481209933757782,
   -0.15902070701122284,
   -0.21714109182357788,
   -0.08167421817779541,
   -0.067794069647789,
   0.29501473903656006,
   -0.05973881483078003,
   -0.2658920884132385,
   -0.1257530152797699,
   1.7516734600067139,
   0.07624693214893341,
   0.3218511939048767,
   0.2408231645822525,
   -0.10570988059043884,
   -0.09405909478664398,
   0.2414899468421936,
   0.15102891623973846,
   -0.08654824644327164,
   -0.12675568461418152,
   0.16837379336357117,
   -0.028457624837756157],
  [0.21708185970783234,
   -0.5733782649040222,
   0.471049040555954,
   -0.16589102149009705,
   -0.01767614670097828,
   0.1800319254398346,
   0.10677409172058105,
   -0.12336848676204681,
   0.4349561333656311,
   -0.19593334197998047,
   -0.32111185789108276,
   0.29876118898391724,
   -0.19148048758506775,
   0.0521392822265625,
   -0.31307607889175415,
   -0.08437763154506683,
   -0.18421168625354767,
   0.43772706389427185,
   0.03620366007089615,
   0.20046517252922058,
   -0.07800513505935669,
   -0.002020232379436493,
   0.17808835208415985,
   -0.13556747138500214,
   -0.18329142034053802,
   -0.08297435194253922,
   0.2125927358865738,
   0.16005219519138336,
   -0.38627004623413086,
   0.16014917194843292,
   -0.4160250425338745,
   -0.202439546585083,
   -0.4880211651325226,
   -1.3541430234909058e-05,
   -0.061171673238277435,
   -0.1859767735004425,
   0.23248404264450073,
   0.3378904461860657,
   -0.38450291752815247,
   -0.012715455144643784,
   0.07458972930908203,
   -0.22980597615242004,
   0.773444414138794,
   -0.012714272364974022,
   0.02998846024274826,
   0.5138735771179199,
   -0.06002131849527359,
   -0.1234329342842102,
   0.06799600273370743,
   -0.1472209244966507,
   -0.46269911527633667,
   -0.20036709308624268,
   0.23233097791671753,
   -0.03568671643733978,
   -0.08209029585123062,
   -0.5925341248512268,
   0.21475733816623688,
   -0.016903186216950417,
   0.16159763932228088,
   0.16338077187538147,
   0.21759304404258728,
   0.16730228066444397,
   -0.2480235993862152,
   -0.10223843157291412,
   -0.3464776873588562,
   0.16425864398479462,
   0.05937947332859039,
   -0.1897808462381363,
   -0.022211814299225807,
   -0.1515643298625946,
   -0.07978886365890503,
   -0.40686625242233276,
   -0.24226850271224976,
   0.36604344844818115,
   -0.1328733265399933,
   -0.678118884563446,
   -0.03813104331493378,
   0.5687659978866577,
   -0.12600326538085938,
   -0.019455060362815857,
   -0.0021061263978481293,
   0.07461564242839813,
   -0.5471729040145874,
   -0.10420476645231247,
   0.03050362318754196,
   -0.08194142580032349,
   0.18005576729774475,
   -0.1878502368927002,
   -0.07790641486644745,
   0.45017778873443604,
   0.29402631521224976,
   -0.017066504806280136,
   0.1339506357908249,
   -0.0054438430815935135,
   0.19691979885101318,
   0.35165685415267944,
   0.18733128905296326,
   0.14248456060886383,
   0.5961845517158508,
   0.19811508059501648,
   0.03326202183961868,
   0.3165076971054077,
   0.3097747564315796,
   -0.014382652938365936,
   -0.04196261614561081,
   -0.14684072136878967,
   0.1976158618927002,
   -0.18455591797828674,
   -0.41830557584762573,
   0.6749275326728821,
   -0.11424417793750763,
   0.3146485686302185,
   0.443825900554657,
   -0.28839102387428284,
   -0.17012393474578857,
   0.4536258578300476,
   0.2047194242477417,
   0.35967138409614563,
   0.12418832629919052,
   -0.3142886161804199,
   0.10152865201234818,
   -0.1881033480167389,
   0.0016398243606090546,
   0.20405615866184235,
   0.15126420557498932,
   -0.1130669116973877,
   -0.03731362149119377,
   0.2407156229019165,
   0.04531875252723694,
   -0.28460007905960083,
   -0.49506258964538574,
   0.03575724735856056,
   0.272329181432724,
   -0.6481266021728516,
   -0.295554518699646,
   -0.15861451625823975,
   -0.5650107860565186,
   0.7675830125808716,
   -0.3698093295097351,
   0.35393673181533813,
   0.24537035822868347,
   -0.17069369554519653,
   0.1480472981929779,
   0.0789778083562851,
   -0.2207263708114624,
   0.2237795889377594,
   -0.7411237955093384,
   0.6959515810012817,
   0.26615193486213684,
   0.31376296281814575,
   -0.4506487250328064,
   0.03210028260946274,
   0.0008355081081390381,
   -0.1373441219329834,
   -0.2709750831127167,
   0.2963179051876068,
   0.42251354455947876,
   -0.004352003335952759,
   0.4679330587387085,
   0.23402005434036255,
   -0.5636430382728577,
   -0.288848340511322,
   -0.2978725731372833,
   0.44459420442581177,
   -0.021601900458335876,
   0.27592170238494873,
   0.14684677124023438,
   0.15131236612796783,
   0.217636838555336,
   0.26732251048088074,
   -0.6115153431892395,
   0.15301096439361572,
   -0.6959944367408752,
   0.7821812033653259,
   -0.10105103999376297,
   -0.021713554859161377,
   0.4060952365398407,
   -0.011645607650279999,
   -0.15432772040367126,
   0.03172514587640762,
   0.20263592898845673,
   -0.029287800192832947,
   -0.18171429634094238,
   0.09998219460248947,
   -0.06308211386203766,
   0.10317868739366531,
   0.3697654902935028,
   -0.27950313687324524,
   0.013610847294330597,
   0.49528762698173523,
   -0.17059189081192017,
   -0.11102459579706192,
   -0.17392922937870026,
   0.1489524245262146,
   -0.07363449782133102,
   -0.29250961542129517,
   -0.3140886127948761,
   -0.23694607615470886,
   0.47550636529922485,
   -0.3581387400627136,
   0.28243595361709595,
   -0.2579275369644165,
   0.12339018285274506,
   -0.08678611367940903,
   0.183981791138649,
   -0.15558387339115143,
   1.0047630071640015,
   -0.6365411877632141,
   -0.1457493007183075,
   -0.09920291602611542,
   0.15714144706726074,
   -0.13514886796474457,
   0.3136438727378845,
   -0.24877996742725372,
   -0.10065370798110962,
   -0.16220036149024963,
   -0.17115391790866852,
   -0.3081545829772949,
   -0.14310741424560547,
   -0.01994696632027626,
   -0.3424193859100342,
   -0.18549244105815887,
   0.2831457853317261,
   -0.15774783492088318,
   0.09167008101940155,
   -0.27186939120292664,
   -0.3038734495639801,
   -0.42713072896003723,
   -0.15143662691116333,
   -0.03673527389764786,
   0.06870493292808533,
   0.6337408423423767,
   0.1417434811592102,
   0.18737278878688812,
   -0.14724062383174896,
   -0.21866381168365479,
   -0.40511003136634827,
   0.18158960342407227,
   -0.0061226412653923035,
   0.06302128732204437,
   -0.10708867013454437,
   -0.1975940465927124,
   0.6310410499572754,
   0.13516344130039215,
   0.17455056309700012,
   -0.22069542109966278,
   -0.07208511978387833,
   -0.299944132566452,
   0.47935473918914795,
   0.8021259307861328,
   0.7794393301010132,
   0.2328333854675293,
   -1.1181604862213135,
   0.13831070065498352,
   0.5275018215179443,
   0.11282506585121155,
   0.23512893915176392,
   -0.1898752599954605,
   -1.0672260522842407,
   -0.135019913315773,
   0.026266008615493774,
   0.059132546186447144,
   0.26274776458740234,
   0.17626440525054932,
   0.09190912544727325,
   -0.3255403935909271,
   0.11617425084114075,
   0.5487921237945557,
   -0.4604616165161133,
   0.2763712406158447,
   -0.3064131438732147,
   0.017108991742134094,
   -0.31652015447616577,
   0.6164581775665283,
   0.10972920060157776,
   0.1015431135892868,
   -0.01914040744304657,
   0.10876597464084625,
   0.14164844155311584,
   -0.3528025150299072,
   -0.20497088134288788,
   0.00025545433163642883,
   -0.3053695857524872,
   0.4619866907596588,
   0.024202093482017517,
   0.1942574679851532,
   0.19933363795280457,
   0.3225279152393341,
   -0.19425471127033234,
   0.45852747559547424,
   0.0538763552904129,
   0.23663288354873657,
   -0.32940956950187683,
   0.04470406472682953,
   0.3503589928150177,
   -0.3815046548843384,
   -0.13203592598438263,
   0.2312677502632141,
   -0.10395389795303345,
   -0.3152809739112854,
   0.2435164898633957,
   0.18143221735954285,
   -0.16936370730400085,
   0.23114903271198273,
   -0.27982836961746216,
   0.12890231609344482,
   -0.6764758825302124,
   0.3946932852268219,
   -0.11808805912733078,
   0.23122936487197876,
   0.11726582050323486,
   0.11620740592479706,
   -0.06881631910800934,
   -0.26656386256217957,
   -0.2195194959640503,
   -1.4098069667816162,
   -0.053529687225818634,
   0.3973640501499176,
   -0.21019814908504486,
   -0.045374754816293716,
   -0.02953946590423584,
   0.4013832211494446,
   -0.163438081741333,
   0.03712489828467369,
   -0.20522227883338928,
   0.028781350702047348,
   -0.5420631766319275,
   -0.350153386592865,
   0.46107664704322815,
   -0.22672884166240692,
   0.7344290018081665,
   -0.12674517929553986,
   -0.3786538541316986,
   -0.29917001724243164,
   -0.489246666431427,
   -0.29988953471183777,
   0.020535308867692947,
   0.07151931524276733,
   -0.729797899723053,
   -0.20273005962371826,
   0.15381288528442383,
   -0.5683160424232483,
   0.2400212585926056,
   -0.10860344767570496,
   0.10238304734230042,
   0.14829279482364655,
   -0.16990405321121216,
   -0.23105496168136597,
   0.3920253813266754,
   0.11137799918651581,
   -0.154707133769989,
   0.018229400739073753,
   -0.10791614651679993,
   0.6648761630058289,
   0.35050681233406067,
   0.16302061080932617,
   -0.3617520332336426,
   0.6293690204620361,
   0.03315893933176994,
   -0.048924751579761505,
   0.23525454103946686,
   -0.41014474630355835,
   0.04720403254032135,
   0.24372658133506775,
   0.10828860104084015,
   0.03718059882521629,
   -0.28610822558403015,
   0.4636707901954651,
   -0.4045027792453766,
   -0.05969633907079697,
   0.3152664601802826,
   -0.2423480898141861,
   0.46280816197395325,
   -0.08213263005018234,
   -0.26107048988342285,
   -0.22781315445899963,
   -0.08607416599988937,
   0.383415162563324,
   0.5615304112434387,
   -0.36845481395721436,
   -0.32924795150756836,
   0.14157937467098236,
   0.3244083523750305,
   0.026443002745509148,
   -0.16097944974899292,
   0.062213823199272156,
   0.2010461688041687,
   -0.38371312618255615,
   0.2975039780139923,
   -0.1857328563928604,
   -0.2153305858373642,
   -0.32364457845687866,
   -0.2044239491224289,
   0.2664249837398529,
   -0.19272813200950623,
   -0.25624579191207886,
   -0.2733624577522278,
   0.4046734571456909,
   0.10058584809303284,
   -0.2739449739456177,
   -0.16884610056877136,
   0.25461456179618835,
   -0.11784628033638,
   0.5454107522964478,
   -0.5116735100746155,
   -0.1519584357738495,
   0.2167838215827942,
   0.2443275898694992,
   -0.38909173011779785,
   -0.05168783664703369,
   -0.25912073254585266,
   -0.5330461859703064,
   -0.2798520028591156,
   0.6656644940376282,
   0.04686085879802704,
   -0.12958849966526031,
   -0.12282475084066391,
   -0.3257751166820526,
   0.030327407643198967,
   0.36119750142097473,
   0.36171844601631165,
   -0.24703380465507507,
   0.013109147548675537,
   -0.20560762286186218,
   -0.14135009050369263,
   0.19994720816612244,
   -0.3833804130554199,
   -0.24811790883541107,
   -0.331475168466568,
   0.25293517112731934,
   -0.26018208265304565,
   0.2274656593799591,
   -0.26832741498947144,
   -0.20670361816883087,
   0.110924631357193,
   0.044955674558877945,
   0.4314177930355072,
   -0.06976182013750076,
   0.2896963953971863,
   0.986324667930603,
   -0.009835600852966309,
   -0.04926057159900665,
   -0.1058386042714119,
   -0.32394570112228394,
   -0.0077797044068574905,
   -0.13775061070919037,
   0.05237056314945221,
   0.28844162821769714,
   -0.0388580784201622,
   0.44583967328071594,
   -0.25659534335136414,
   -0.02319774404168129,
   0.5048413872718811,
   -0.08762654662132263,
   -0.03793984651565552,
   0.08508351445198059,
   -0.13208799064159393,
   -0.21180778741836548,
   -0.18504038453102112,
   0.1277412474155426,
   0.2653552293777466,
   0.37371984124183655,
   -0.010381780564785004,
   0.1437293440103531,
   0.21623903512954712,
   0.1487494707107544,
   -0.03633268177509308,
   0.6249544620513916,
   0.284940242767334,
   0.28551194071769714,
   0.1068902388215065,
   -0.22148185968399048,
   -0.23732741177082062,
   0.604701042175293,
   0.11189080774784088,
   0.5515558123588562,
   0.11485414952039719,
   -0.1134738028049469,
   -0.44570454955101013,
   0.432126522064209,
   0.11875154078006744,
   0.641365647315979,
   -0.13281762599945068,
   0.4900948107242584,
   0.03252585977315903,
   -0.0893702358007431,
   0.025879062712192535,
   0.18738101422786713,
   0.12711670994758606,
   -0.5420188307762146,
   0.27650004625320435,
   -0.05813170596957207,
   -0.11010909080505371,
   0.22435519099235535,
   -0.0029098577797412872,
   -0.3865887224674225,
   -0.013263586908578873,
   0.1762879192829132,
   0.1153719425201416,
   0.02138301357626915,
   -0.07356783747673035,
   -0.26441797614097595,
   -0.0979449599981308,
   0.08824145793914795,
   -0.6305316090583801,
   0.741454541683197,
   0.07121351361274719,
   -0.21945424377918243,
   -0.03398445248603821,
   -0.5699278116226196,
   -0.08770228177309036,
   -0.31443870067596436,
   -0.211801216006279,
   -0.2791490852832794,
   -0.21772703528404236,
   -0.40915340185165405,
   0.4145248532295227,
   0.27242526412010193,
   0.37535619735717773,
   -0.2045435905456543,
   0.0436510406434536,
   -0.20926785469055176,
   -0.17282353341579437,
   -0.2419520914554596,
   -0.023710444569587708,
   -0.3465966284275055,
   0.44727128744125366,
   0.1591709852218628,
   -0.10141552984714508,
   -0.34253373742103577,
   -0.3183899521827698,
   0.26308292150497437,
   -0.020383359864354134,
   -0.33972620964050293,
   0.02776067703962326,
   -0.11542540043592453,
   0.3818908631801605,
   0.3847438097000122,
   -0.21276497840881348,
   0.6573368310928345,
   -0.14343363046646118,
   0.3722095489501953,
   0.5025573372840881,
   0.5163431167602539,
   -0.12899039685726166,
   0.613300621509552,
   -0.38679787516593933,
   0.398978590965271,
   0.1648806929588318,
   0.0976717472076416,
   0.0806933119893074,
   0.6038976311683655,
   -0.39651164412498474,
   0.043824635446071625,
   0.286912202835083,
   0.047444358468055725,
   -0.37111690640449524,
   -8.99201488494873,
   -0.021712396293878555,
   0.17634201049804688,
   0.6872422099113464,
   0.4365728497505188,
   -0.20698535442352295,
   0.32129502296447754,
   -0.18180181086063385,
   0.5519957542419434,
   -0.31499776244163513,
   0.0599808506667614,
   -0.03726118430495262,
   0.05487120896577835,
   -0.42983147501945496,
   -0.024622194468975067,
   0.3059370815753937,
   0.05523940175771713,
   -0.03988327085971832,
   0.26592937111854553,
   0.30324769020080566,
   0.407255083322525,
   0.14822155237197876,
   -0.13404564559459686,
   0.2769119143486023,
   -0.06188025325536728,
   0.3999450206756592,
   -0.8193400502204895,
   -0.054179415106773376,
   0.11650756001472473,
   -0.1931174099445343,
   0.030589591711759567,
   -0.12368568032979965,
   -0.03231063112616539,
   -0.01977238990366459,
   0.21009576320648193,
   -0.005033792927861214,
   -0.2444373071193695,
   0.3109956383705139,
   0.7494997978210449,
   -0.498355895280838,
   -0.2224496752023697,
   0.11297716200351715,
   0.25560298562049866,
   -0.03767368569970131,
   -0.21664205193519592,
   0.38801711797714233,
   -0.11446735262870789,
   -0.08514989912509918,
   -0.24495536088943481,
   -0.1735660880804062,
   -0.12851116061210632,
   -0.0016904715448617935,
   0.10414882749319077,
   -0.03730940446257591,
   -0.4082244634628296,
   0.2758882939815521,
   0.22572040557861328,
   0.5349531173706055,
   -0.25814828276634216,
   -0.4536491930484772,
   0.01127229630947113,
   -0.038747936487197876,
   0.2977991998195648,
   -0.07303476333618164,
   -0.017719145864248276,
   0.14438603818416595,
   -0.19592462480068207,
   -0.026999326422810555,
   0.11428353190422058,
   0.3904218375682831,
   -0.3630916476249695,
   0.32720619440078735,
   -0.19833488762378693,
   0.22360774874687195,
   -0.27855709195137024,
   0.2930462062358856,
   -0.2252967357635498,
   -0.1532486379146576,
   0.25665876269340515,
   0.2707746624946594,
   0.1400071531534195,
   -0.02304205857217312,
   0.45520034432411194,
   0.33712238073349,
   0.23927104473114014,
   0.16733071208000183,
   -0.18233844637870789,
   0.5985138416290283,
   -0.21991148591041565,
   0.21111518144607544,
   -0.1724950224161148,
   0.16548055410385132,
   0.03157193213701248,
   -0.3301409184932709,
   -0.29815030097961426,
   -0.04572649300098419,
   -0.08330830931663513,
   0.22240927815437317,
   -0.17448708415031433,
   0.21385949850082397,
   -0.29970255494117737,
   0.2638512849807739,
   0.1444881111383438,
   -0.6254547238349915,
   -0.25530844926834106,
   -0.08081658184528351,
   0.21171873807907104,
   -0.38087257742881775,
   0.08797581493854523,
   -0.046671658754348755,
   -0.15154288709163666,
   -0.3328603506088257,
   -0.39728257060050964,
   0.1256527304649353,
   0.23135866224765778,
   0.20341750979423523,
   0.5933687090873718,
   0.3590894639492035,
   -0.004547161981463432,
   -0.08425088971853256,
   0.40370574593544006,
   -0.3631484806537628,
   -0.11360149830579758,
   0.35500749945640564,
   -0.2428630292415619,
   0.0015389546751976013,
   -0.47898098826408386,
   0.022360078990459442,
   -0.07405556738376617,
   -0.06374762207269669,
   0.3390418589115143,
   0.13288521766662598,
   -0.27464354038238525,
   0.6399878859519958,
   -0.05934848636388779,
   0.11227352917194366,
   0.32128575444221497,
   0.1422482579946518,
   -0.24045944213867188,
   0.2404889613389969,
   -0.001690506935119629,
   -0.43917348980903625,
   -0.12090098857879639,
   0.27817660570144653,
   0.09541746973991394,
   -0.2839435040950775,
   -0.26514407992362976,
   -0.7771255970001221,
   0.6933473944664001,
   -0.037473879754543304,
   -0.20808380842208862,
   0.2782348394393921,
   -0.17211364209651947,
   -0.2614423930644989,
   -0.1917935162782669,
   0.34247785806655884,
   0.10184493660926819,
   -0.1981385350227356,
   -0.0772479772567749,
   0.1287461519241333,
   -0.36127185821533203,
   -0.3094768822193146,
   -0.3998083770275116,
   -0.22029317915439606,
   0.39483171701431274,
   -0.2813090980052948,
   0.2512623369693756,
   0.6284888982772827,
   0.13929212093353271,
   -0.05203358083963394,
   -0.27542728185653687,
   0.19720473885536194,
   0.18907831609249115,
   -0.27166980504989624,
   -0.48917797207832336,
   0.24722911417484283,
   0.17083823680877686,
   0.17674463987350464,
   0.1673322170972824,
   -0.39425522089004517,
   0.3401319682598114,
   0.402741402387619,
   -0.17030245065689087,
   -0.13566185534000397,
   0.199995219707489,
   0.14149734377861023,
   0.113051638007164,
   0.14131012558937073,
   -0.042357269674539566,
   -0.19957378506660461,
   -0.08280331641435623,
   -0.18350288271903992,
   -0.3567216396331787,
   0.13266845047473907,
   -0.410625159740448,
   0.5518800020217896,
   0.11134837567806244,
   0.037670329213142395,
   0.22344698011875153,
   0.41638869047164917,
   -0.10603892058134079,
   0.19753599166870117,
   -0.28121745586395264,
   0.010901294648647308,
   -0.2083125114440918,
   0.21804767847061157,
   0.14549849927425385,
   -0.4614081084728241,
   0.037258949130773544,
   -0.02969318814575672,
   -0.2939654588699341],
  [0.14935751259326935,
   0.33245745301246643,
   0.3600674271583557,
   0.17534267902374268,
   0.2887655794620514,
   0.1611800193786621,
   0.12170407176017761,
   -0.17720524966716766,
   0.42614924907684326,
   -0.36235255002975464,
   0.010256476700305939,
   0.45044946670532227,
   0.027688130736351013,
   0.7125872373580933,
   -0.04831710085272789,
   -0.18167686462402344,
   -0.4168291389942169,
   0.21575278043746948,
   0.019603483378887177,
   0.27212849259376526,
   0.6125443577766418,
   -0.031064298003911972,
   -0.3178238570690155,
   0.1932292878627777,
   0.1442651003599167,
   -0.7181942462921143,
   -0.2520262598991394,
   1.391096830368042,
   0.2914673686027527,
   0.25270357728004456,
   -0.427770733833313,
   -0.3087206184864044,
   -0.11947184801101685,
   -0.0016738679260015488,
   0.5113652944564819,
   -0.3600514531135559,
   -0.10172212868928909,
   0.5453720688819885,
   -0.4371255338191986,
   -0.34618523716926575,
   0.104474738240242,
   -0.16502031683921814,
   0.4309661090373993,
   0.2611045837402344,
   0.5767911672592163,
   0.26364797353744507,
   0.3401345908641815,
   -0.7612563371658325,
   -0.5983121395111084,
   0.054285649210214615,
   0.08967789262533188,
   -0.06583404541015625,
   -0.10460872203111649,
   0.15010200440883636,
   0.2826032042503357,
   -0.27705034613609314,
   -0.08442471921443939,
   0.5709487199783325,
   -0.23491686582565308,
   0.2676962912082672,
   0.09447991102933884,
   0.04256435111165047,
   -0.09287534654140472,
   0.2858087420463562,
   -0.3174694776535034,
   0.3793814778327942,
   0.3207755982875824,
   -0.7338895201683044,
   0.12004843354225159,
   0.053764551877975464,
   -0.041149333119392395,
   -0.11563383042812347,
   -0.40107473731040955,
   -0.5783843994140625,
   0.11934395879507065,
   -0.48295795917510986,
   -0.021265406161546707,
   0.1885533183813095,
   -0.06614356487989426,
   -0.24373549222946167,
   0.2789660394191742,
   0.46022966504096985,
   -0.5375558137893677,
   0.3926096260547638,
   0.010488711297512054,
   -0.1258115917444229,
   0.005774053744971752,
   0.590973973274231,
   -0.07161130756139755,
   0.5801676511764526,
   0.19629691541194916,
   0.05329260975122452,
   0.5066273808479309,
   -0.1843997836112976,
   0.2084731012582779,
   -0.148118793964386,
   -0.26038792729377747,
   -0.030947966501116753,
   -0.7439316511154175,
   -0.3735010623931885,
   -0.024505147710442543,
   -0.2940358817577362,
   0.19614246487617493,
   -0.11068574339151382,
   0.33370545506477356,
   -0.17464981973171234,
   -0.24065859615802765,
   -0.5076717138290405,
   -0.3757668733596802,
   0.7390384078025818,
   0.12073907256126404,
   -0.33384111523628235,
   -0.09256070852279663,
   0.28539925813674927,
   -0.26883450150489807,
   -0.25095683336257935,
   0.2766360938549042,
   -0.1340724229812622,
   0.08666407316923141,
   0.5477526187896729,
   0.4177953600883484,
   -0.08076442778110504,
   -0.470581978559494,
   -0.30473142862319946,
   0.14104650914669037,
   -0.30794557929039,
   -0.17622947692871094,
   -0.1023276299238205,
   0.2990160882472992,
   -0.14625737071037292,
   -0.4350903630256653,
   -0.14773985743522644,
   -0.19725605845451355,
   0.5720881223678589,
   -0.07146033644676208,
   -0.19246900081634521,
   -0.5726287364959717,
   0.5437690019607544,
   -1.8426791429519653,
   -0.4195987284183502,
   0.028820239007472992,
   0.05694720894098282,
   0.22704154253005981,
   0.21562889218330383,
   0.1842460036277771,
   0.21892741322517395,
   -0.14727705717086792,
   0.47215062379837036,
   0.17340433597564697,
   0.515827476978302,
   -0.1257375329732895,
   -0.1442408561706543,
   0.05339418724179268,
   -0.4828052520751953,
   0.15070559084415436,
   -0.6186750531196594,
   0.3603218197822571,
   -0.077226422727108,
   0.5111498236656189,
   0.29155686497688293,
   -0.28014057874679565,
   0.1133369505405426,
   -0.4446132183074951,
   0.05645763874053955,
   0.2176946997642517,
   -0.11975051462650299,
   0.316808819770813,
   0.7161719799041748,
   -0.10294906795024872,
   0.415288507938385,
   -0.05967213585972786,
   0.19781388342380524,
   -0.11968345940113068,
   -0.2916628420352936,
   -0.5110856294631958,
   -0.12416811287403107,
   0.18241333961486816,
   -0.4014442563056946,
   -0.1384575515985489,
   0.18641623854637146,
   0.09866870939731598,
   -0.27044641971588135,
   -0.5206225514411926,
   0.029917463660240173,
   0.008914463222026825,
   -0.27390336990356445,
   0.1198367029428482,
   0.04460737854242325,
   0.3244487941265106,
   0.344171404838562,
   0.3369735777378082,
   -0.4177307188510895,
   0.04734688997268677,
   0.11021347343921661,
   -0.47199100255966187,
   -0.5224408507347107,
   0.11549456417560577,
   -0.07140173017978668,
   0.0773400068283081,
   -0.15726745128631592,
   -0.26999756693840027,
   -0.3253076672554016,
   -0.2589528262615204,
   -0.06625710427761078,
   -0.3059614300727844,
   -0.4594637453556061,
   0.27071404457092285,
   -0.14646542072296143,
   -0.5787255764007568,
   -0.9527972340583801,
   0.5364053249359131,
   -0.42981305718421936,
   0.11358821392059326,
   -0.39318084716796875,
   -0.32878971099853516,
   -0.2445470094680786,
   0.32365337014198303,
   -0.0963963121175766,
   -0.2658707797527313,
   0.5240787267684937,
   -0.4469777047634125,
   0.015146680176258087,
   -0.08617930114269257,
   0.2192998081445694,
   -0.11880245804786682,
   0.016490966081619263,
   0.08410169184207916,
   -0.12700006365776062,
   -0.17564740777015686,
   -0.3145970404148102,
   -0.06877093762159348,
   0.7964293360710144,
   0.38054075837135315,
   -0.36510688066482544,
   -0.1810273975133896,
   -0.04026066139340401,
   -0.278373658657074,
   0.32991865277290344,
   -0.4408057928085327,
   0.12713366746902466,
   0.0514453649520874,
   -0.12613706290721893,
   0.10933490097522736,
   0.245692640542984,
   -0.17095106840133667,
   0.6513055562973022,
   -0.2313568890094757,
   0.162711501121521,
   -0.35805240273475647,
   0.7765982747077942,
   -0.0030313432216644287,
   0.16000181436538696,
   -0.742009699344635,
   -0.45084142684936523,
   1.1936016082763672,
   0.19014519453048706,
   -0.37888839840888977,
   0.6435585021972656,
   -0.1703442931175232,
   -0.29591429233551025,
   0.514397144317627,
   0.3465158939361572,
   -0.03848447650671005,
   0.005481943488121033,
   0.10690286010503769,
   -0.07572989165782928,
   -0.45798105001449585,
   -0.07213032990694046,
   -0.2987920045852661,
   0.6666001677513123,
   0.5331275463104248,
   -0.0416288748383522,
   0.5690685510635376,
   0.7905076742172241,
   0.11579886078834534,
   0.26065197587013245,
   0.19793099164962769,
   -0.4343257546424866,
   -0.4716864228248596,
   -0.49565762281417847,
   0.5456134676933289,
   0.3369002938270569,
   -0.4388868510723114,
   -0.2872426211833954,
   -0.0356084369122982,
   0.498721182346344,
   0.12450285255908966,
   0.6585296988487244,
   -0.29749399423599243,
   -0.8944284915924072,
   0.06933018565177917,
   0.42516204714775085,
   -0.43901121616363525,
   -0.2582864761352539,
   0.7244520783424377,
   -0.4374259412288666,
   -0.42207467555999756,
   0.3312695026397705,
   0.18261876702308655,
   0.15856513381004333,
   0.27176377177238464,
   0.3997441232204437,
   0.29657596349716187,
   -0.004225348588079214,
   -0.2697989344596863,
   -0.049827318638563156,
   -0.03645767644047737,
   -0.09672766923904419,
   0.5911670327186584,
   -0.6012317538261414,
   0.9327149391174316,
   0.2258092761039734,
   -0.15874701738357544,
   -0.26748552918434143,
   -0.16029679775238037,
   -0.6054157018661499,
   0.07961910963058472,
   -0.0174240842461586,
   -0.784496009349823,
   0.026065632700920105,
   -0.3815051317214966,
   0.05331023409962654,
   -0.2653297185897827,
   0.2620871067047119,
   0.44314783811569214,
   0.3055919110774994,
   0.24784822762012482,
   -0.018655002117156982,
   0.1017107293009758,
   -0.26086705923080444,
   0.4820515215396881,
   -0.33555465936660767,
   0.059084344655275345,
   -0.28700703382492065,
   -0.2597537338733673,
   -0.17672234773635864,
   -0.3437038064002991,
   0.28382131457328796,
   0.023725569248199463,
   0.5009483695030212,
   0.5807580947875977,
   0.404041588306427,
   0.678158700466156,
   -0.4876800775527954,
   0.3335326313972473,
   0.41391509771347046,
   -0.43629223108291626,
   0.16319212317466736,
   0.0960441306233406,
   -0.1271456778049469,
   -0.09119667112827301,
   -0.30332109332084656,
   0.08743619173765182,
   -0.1281159222126007,
   0.7776373624801636,
   0.2037074863910675,
   -0.22905664145946503,
   -0.026905199512839317,
   -0.08527322113513947,
   0.24925927817821503,
   -0.26530811190605164,
   0.11695784330368042,
   -0.584439218044281,
   0.11232011765241623,
   0.35630255937576294,
   -0.37616854906082153,
   -0.4475755989551544,
   0.3181871771812439,
   0.0623011514544487,
   0.06703239679336548,
   0.6325902938842773,
   -0.5235767364501953,
   0.4380311369895935,
   0.1777767837047577,
   -0.5628764033317566,
   -0.38357633352279663,
   -0.2379412204027176,
   0.11372227966785431,
   0.2510249614715576,
   -1.0071403980255127,
   -0.17857927083969116,
   -0.21161596477031708,
   0.6423025131225586,
   -0.5872036814689636,
   0.09422656893730164,
   0.15839244425296783,
   -0.3061433434486389,
   0.3832482099533081,
   0.3896982967853546,
   -0.49096623063087463,
   -0.6325380802154541,
   -0.3566223382949829,
   0.36989787220954895,
   -0.47940966486930847,
   -0.18288761377334595,
   -0.10706157982349396,
   -0.9378597140312195,
   -0.6148878931999207,
   0.5885998606681824,
   0.09723097831010818,
   -0.22770127654075623,
   -0.01102234423160553,
   0.16435843706130981,
   -0.17642247676849365,
   -0.5062728524208069,
   -0.13923928141593933,
   -0.14070162177085876,
   0.13167685270309448,
   0.30621522665023804,
   0.01592065393924713,
   -0.061796706169843674,
   -0.7394721508026123,
   0.3875429928302765,
   0.7141107320785522,
   -0.15669193863868713,
   -0.061027079820632935,
   0.05744197964668274,
   -0.3315553367137909,
   0.8634524941444397,
   0.42537057399749756,
   -0.4880537986755371,
   0.008850902318954468,
   -0.2386499047279358,
   -0.061688683927059174,
   0.26011738181114197,
   0.4484097957611084,
   -0.24755139648914337,
   -0.45140889286994934,
   -0.45118653774261475,
   0.40380725264549255,
   -0.4152081608772278,
   0.13998867571353912,
   -0.06245584785938263,
   0.6407852172851562,
   0.16671399772167206,
   -0.015330161899328232,
   0.6613732576370239,
   -0.31634998321533203,
   0.3737337291240692,
   -0.2229565531015396,
   0.04440923035144806,
   -0.5690449476242065,
   0.2749658226966858,
   -0.8879081606864929,
   0.02325359731912613,
   -0.08583701401948929,
   0.3277907967567444,
   0.1811574399471283,
   -0.5581963062286377,
   0.1629057228565216,
   -0.020494313910603523,
   -0.3667154908180237,
   0.3367272913455963,
   0.2335561364889145,
   -0.4747636020183563,
   -0.7220854163169861,
   -0.4321487545967102,
   -0.13223767280578613,
   -0.4686324894428253,
   0.05795516073703766,
   -0.049193572252988815,
   0.3276452124118805,
   0.04181383550167084,
   0.8225374817848206,
   0.2852420210838318,
   -0.08743732422590256,
   -0.10133835673332214,
   0.6650201082229614,
   -0.3630797863006592,
   0.1650868058204651,
   0.07384681701660156,
   -0.17480303347110748,
   0.6360798478126526,
   0.6475069522857666,
   -0.25905418395996094,
   0.025559615343809128,
   0.4692457318305969,
   0.4691705107688904,
   -0.09371574968099594,
   -0.16163399815559387,
   -0.4283030927181244,
   0.3319290280342102,
   0.08506856858730316,
   0.25238698720932007,
   0.8834759593009949,
   0.11127234995365143,
   -0.03612876683473587,
   0.26522114872932434,
   -0.008201159536838531,
   0.7764135003089905,
   -0.4060787260532379,
   0.22492419183254242,
   0.30544838309288025,
   -0.017345212399959564,
   -0.844160258769989,
   -0.7221384048461914,
   -0.4980936348438263,
   -0.3891133666038513,
   -0.6707861423492432,
   -0.2523617446422577,
   0.21063271164894104,
   -0.08346029371023178,
   -0.3150838017463684,
   0.5303323268890381,
   -0.46642836928367615,
   0.5618040561676025,
   -0.41088932752609253,
   0.20591336488723755,
   0.21753078699111938,
   -0.44058436155319214,
   0.0867268517613411,
   -1.0308912992477417,
   -0.4392249584197998,
   -0.20578217506408691,
   -0.3650337755680084,
   0.0036286264657974243,
   0.15236705541610718,
   0.39473679661750793,
   0.23276597261428833,
   0.09092763066291809,
   0.21123673021793365,
   -0.29951196908950806,
   0.16027916967868805,
   -0.011305693536996841,
   -0.18281202018260956,
   0.42889460921287537,
   0.4781879186630249,
   -0.22788959741592407,
   -0.24872881174087524,
   -0.6741538047790527,
   -0.18444499373435974,
   0.1114964410662651,
   0.15340149402618408,
   -0.07358627021312714,
   0.6208025813102722,
   -0.4168497622013092,
   0.29851797223091125,
   0.1794169545173645,
   -0.09560459852218628,
   -0.13719442486763,
   -0.14298759400844574,
   -0.16981561481952667,
   0.5482849478721619,
   0.134121835231781,
   0.048238612711429596,
   0.8963130116462708,
   -0.33074504137039185,
   0.28255385160446167,
   -0.47966840863227844,
   -0.0955883041024208,
   0.6157002449035645,
   0.19271570444107056,
   -0.4134135842323303,
   0.0638011023402214,
   0.36616215109825134,
   0.16585922241210938,
   0.07307729125022888,
   -8.442004203796387,
   0.8853139281272888,
   0.13412067294120789,
   0.4617479741573334,
   0.2193194031715393,
   0.22725650668144226,
   0.0010483115911483765,
   -0.4295114576816559,
   -0.07718565315008163,
   0.08759911358356476,
   0.24067220091819763,
   -0.43913352489471436,
   0.26161718368530273,
   0.22753265500068665,
   -0.13834108412265778,
   -0.23782940208911896,
   -0.3238394260406494,
   0.1043226569890976,
   0.250175803899765,
   -0.14188921451568604,
   0.4861299693584442,
   0.1288907825946808,
   -0.10767564177513123,
   0.1805848479270935,
   0.382188081741333,
   -0.004500687122344971,
   0.1694457232952118,
   -0.10435231775045395,
   0.3120839297771454,
   0.03421687334775925,
   0.0986962616443634,
   0.03046739287674427,
   -0.4354095458984375,
   0.020702846348285675,
   -0.024796901270747185,
   -0.18829545378684998,
   0.27240991592407227,
   -0.24172206223011017,
   0.6744514107704163,
   -0.8734369874000549,
   -0.13972248136997223,
   -0.21142743527889252,
   0.496534526348114,
   0.164463609457016,
   -0.12374743819236755,
   0.8954131603240967,
   0.09406351298093796,
   0.21291615068912506,
   0.08459776639938354,
   0.09275999665260315,
   0.2256399393081665,
   0.5294749140739441,
   0.8153063654899597,
   0.06964469701051712,
   0.04584728181362152,
   0.41446515917778015,
   0.1453368067741394,
   0.37922433018684387,
   -0.26413747668266296,
   -0.17514298856258392,
   -0.48349350690841675,
   -0.3108757436275482,
   0.7537478804588318,
   -0.0005730092525482178,
   0.12042593955993652,
   0.4379350543022156,
   0.2058371752500534,
   0.04232468456029892,
   0.09383467584848404,
   0.8608821630477905,
   0.2394205778837204,
   -0.5250673294067383,
   0.023021841421723366,
   -0.7165932655334473,
   0.02879132702946663,
   -0.5513725876808167,
   0.02051730453968048,
   -0.2846052944660187,
   -0.2640675902366638,
   0.5634593963623047,
   -0.5511440634727478,
   0.2866261601448059,
   0.7184233665466309,
   0.3794412314891815,
   -0.23181793093681335,
   0.03330327570438385,
   -0.028982989490032196,
   0.6081346869468689,
   -0.3768247663974762,
   -0.036534253507852554,
   -0.327014297246933,
   0.12677916884422302,
   0.21248704195022583,
   -0.4014851152896881,
   -0.4663751721382141,
   -0.04819735884666443,
   0.3163742125034332,
   -0.0834159329533577,
   -0.18766194581985474,
   0.5239719748497009,
   -0.40463733673095703,
   0.13975095748901367,
   0.025056101381778717,
   -0.5365490913391113,
   -0.314627081155777,
   0.12164048850536346,
   -0.47850853204727173,
   -0.3013392984867096,
   0.01357705146074295,
   0.1461000293493271,
   -0.6845598816871643,
   0.1724608838558197,
   0.09885745495557785,
   0.08902667462825775,
   0.1495884358882904,
   0.35821691155433655,
   0.28164294362068176,
   -0.24401947855949402,
   -0.1243118867278099,
   -0.2680639922618866,
   0.42123356461524963,
   -0.5366817712783813,
   -0.3985050618648529,
   -0.32915258407592773,
   -0.1110350489616394,
   0.6920414566993713,
   -0.11322909593582153,
   0.5046595335006714,
   0.6547061800956726,
   -0.03303949534893036,
   0.1707555651664734,
   0.6505306363105774,
   -0.175005704164505,
   0.6197742819786072,
   -0.3544558882713318,
   0.08338853716850281,
   0.10562358796596527,
   0.0657767504453659,
   -0.41347041726112366,
   -0.4074023962020874,
   -0.5880612730979919,
   -0.6843791007995605,
   0.7907348275184631,
   0.035411544144153595,
   0.07983069121837616,
   0.11389527469873428,
   -0.12948369979858398,
   -0.43001994490623474,
   0.6819312572479248,
   -0.2655167579650879,
   -0.5447825789451599,
   0.127373605966568,
   0.4184870421886444,
   0.3128073513507843,
   -0.263796329498291,
   -0.40787845849990845,
   0.5759220123291016,
   0.22265392541885376,
   -0.06125064939260483,
   -0.46269655227661133,
   0.06521719694137573,
   -0.4655613303184509,
   -0.2027915120124817,
   0.21699604392051697,
   0.25210240483283997,
   0.1813419759273529,
   0.09230861067771912,
   0.2492295652627945,
   -0.11473577469587326,
   0.5748447775840759,
   0.27542370557785034,
   -0.13453224301338196,
   0.27870941162109375,
   0.1264151930809021,
   -0.3001530170440674,
   -0.30407384037971497,
   0.49140068888664246,
   0.09563832730054855,
   0.9403027892112732,
   0.14191243052482605,
   0.21040840446949005,
   1.0221586227416992,
   -0.4096466600894928,
   0.0039483606815338135,
   -0.04214757680892944,
   -0.07837288081645966,
   -0.16026782989501953,
   0.1388997882604599,
   0.007884005084633827,
   -0.21229064464569092,
   0.1464051604270935,
   -0.2940249443054199,
   -0.4083024859428406,
   0.891741931438446,
   -0.6337971687316895,
   0.11566747725009918,
   0.04685903713107109,
   0.19237945973873138,
   0.189260795712471,
   -0.3171180784702301,
   -0.27783113718032837,
   -0.16523313522338867,
   0.29961472749710083,
   -0.018058381974697113,
   -0.23328396677970886,
   0.22254157066345215,
   0.002632097341120243,
   -0.15995793044567108,
   0.04477524012327194,
   -0.037783462554216385,
   -0.08096347004175186],
  [0.25785139203071594,
   0.13774824142456055,
   0.329755574464798,
   -0.29937097430229187,
   0.0735500156879425,
   0.1342630237340927,
   0.3313031792640686,
   -0.25258299708366394,
   0.08394451439380646,
   -0.40675973892211914,
   -0.45196595788002014,
   0.11092696338891983,
   0.13182279467582703,
   0.29561087489128113,
   -0.10289618372917175,
   -0.13211676478385925,
   -0.38070186972618103,
   0.1159442812204361,
   -0.05036365985870361,
   -0.20495446026325226,
   0.2995911240577698,
   -0.3371472656726837,
   0.03141460940241814,
   -0.18747806549072266,
   0.6418980360031128,
   -0.844041645526886,
   0.01449735090136528,
   1.0383967161178589,
   0.2701752483844757,
   0.5080395340919495,
   -0.3317452371120453,
   -0.2580748200416565,
   -0.1788789927959442,
   -0.028764991089701653,
   0.28862571716308594,
   0.06275416910648346,
   0.1437419056892395,
   0.8118413686752319,
   -0.18772383034229279,
   -0.5009339451789856,
   0.5287600755691528,
   0.09375125914812088,
   0.348884254693985,
   0.3272913098335266,
   0.03234840929508209,
   0.005183219909667969,
   0.32670944929122925,
   -0.3887249827384949,
   -0.4295850396156311,
   -0.046004410833120346,
   -0.08436985313892365,
   0.18198680877685547,
   -0.24039602279663086,
   0.03470950573682785,
   0.29607298970222473,
   0.056420013308525085,
   -0.13971039652824402,
   0.2790362536907196,
   -0.4054785668849945,
   0.8918127417564392,
   0.07931602746248245,
   0.6452194452285767,
   0.2810956835746765,
   0.2813093066215515,
   0.13721242547035217,
   0.06747180223464966,
   0.04650992155075073,
   -0.2581995725631714,
   0.1553383767604828,
   -0.4755535125732422,
   -0.15074440836906433,
   -0.12181305885314941,
   -0.2732384502887726,
   -0.5068751573562622,
   -0.10086245834827423,
   -0.12642692029476166,
   0.29593002796173096,
   0.09857796132564545,
   -0.2922780513763428,
   -0.3277151882648468,
   0.30625757575035095,
   0.7223716974258423,
   -0.08531185984611511,
   0.3735494911670685,
   0.053494155406951904,
   -0.2540441155433655,
   -0.24258552491664886,
   0.22860173881053925,
   0.10472805798053741,
   0.20865869522094727,
   0.09912770986557007,
   -0.23264604806900024,
   0.22204545140266418,
   -0.5338965654373169,
   -0.09138995409011841,
   0.33393433690071106,
   -0.015798309817910194,
   -0.2793230712413788,
   -0.6575431823730469,
   -0.05121441185474396,
   0.0322217121720314,
   -0.5156427025794983,
   0.3403584957122803,
   -0.24377985298633575,
   0.35953232645988464,
   0.012972753494977951,
   -0.4599888324737549,
   -1.0964325666427612,
   -0.5825241208076477,
   0.6581289768218994,
   -0.09010729193687439,
   -0.10990623384714127,
   -0.04339297115802765,
   0.12377035617828369,
   -0.12098821252584457,
   0.10886146128177643,
   -0.3931388258934021,
   -0.11931215971708298,
   0.2505524158477783,
   0.17627765238285065,
   0.48313429951667786,
   -0.3290066421031952,
   -0.005148608237504959,
   -0.2544983923435211,
   0.3299137353897095,
   -0.4491659104824066,
   -0.22985124588012695,
   -0.34275707602500916,
   0.17569030821323395,
   -0.3322119116783142,
   -0.5439594388008118,
   0.05412432178854942,
   0.15213675796985626,
   -0.09288536757230759,
   -0.18464598059654236,
   -0.027822159230709076,
   -0.11563067138195038,
   0.5416905283927917,
   -1.897886872291565,
   -0.8137555122375488,
   -0.23372146487236023,
   -0.18520474433898926,
   0.6123313903808594,
   0.2690012454986572,
   0.32280296087265015,
   -0.32536840438842773,
   -0.12437693774700165,
   0.3741561770439148,
   0.2003222405910492,
   0.6595989465713501,
   -0.3481941521167755,
   0.19867469370365143,
   0.5935884714126587,
   0.08109913766384125,
   -0.1935056895017624,
   -0.43247121572494507,
   -0.10680994391441345,
   0.025395039469003677,
   0.5604302287101746,
   -0.11669261008501053,
   -0.12592387199401855,
   0.3413670063018799,
   -0.39412230253219604,
   0.14868462085723877,
   0.081827811896801,
   -0.16595938801765442,
   0.23615172505378723,
   0.32299816608428955,
   0.0034972792491316795,
   -0.30447182059288025,
   0.341018944978714,
   0.10477476567029953,
   0.24152667820453644,
   0.1885489523410797,
   -0.24019069969654083,
   -0.2817096412181854,
   0.588164746761322,
   -0.08609909564256668,
   -0.11133471131324768,
   0.43284788727760315,
   -0.040177665650844574,
   0.058158405125141144,
   -0.6858443021774292,
   0.15071213245391846,
   0.4242410659790039,
   0.11733603477478027,
   0.18035097420215607,
   0.4563293755054474,
   0.13218547403812408,
   0.5508286952972412,
   0.16968205571174622,
   -0.1264268457889557,
   0.3314516246318817,
   -0.29100415110588074,
   -0.2313189059495926,
   -0.31935423612594604,
   0.564156174659729,
   0.05883229523897171,
   -0.0797128975391388,
   0.1458856463432312,
   -0.5308994054794312,
   0.11110807955265045,
   -0.42470473051071167,
   0.13618505001068115,
   -0.26797837018966675,
   -0.19921037554740906,
   0.1060381680727005,
   -0.030520819127559662,
   -0.6505787968635559,
   -0.6175714135169983,
   0.16042225062847137,
   -0.18242396414279938,
   0.433167040348053,
   -0.004986855201423168,
   -0.48784154653549194,
   -0.22622646391391754,
   0.10567185282707214,
   -0.1667894423007965,
   0.14742499589920044,
   0.5606784820556641,
   -0.33680248260498047,
   -0.23881745338439941,
   -0.3892207145690918,
   -0.19160111248493195,
   -0.13439735770225525,
   0.025049418210983276,
   0.4401246905326843,
   -0.41084522008895874,
   0.04678530991077423,
   0.008647829294204712,
   0.4718638062477112,
   0.8889649510383606,
   -0.033408358693122864,
   -0.3494710326194763,
   -0.07332590222358704,
   -0.253878116607666,
   -0.40541398525238037,
   0.1996275782585144,
   -0.9165406227111816,
   -0.2099703550338745,
   0.13919362425804138,
   -0.49491265416145325,
   0.5156154632568359,
   -0.09657832980155945,
   -0.19092248380184174,
   0.7169255018234253,
   -0.26490461826324463,
   0.25422203540802,
   -0.09432272613048553,
   0.26517829298973083,
   0.023432418704032898,
   0.1293441504240036,
   -0.599204957485199,
   0.09943468123674393,
   0.6990780234336853,
   -0.1734858751296997,
   -0.09359125792980194,
   0.6267902255058289,
   -0.19528734683990479,
   -0.7817845344543457,
   0.15014049410820007,
   0.8700868487358093,
   -0.017739029601216316,
   -0.2663136124610901,
   -0.43168237805366516,
   -0.37440168857574463,
   -0.6226714849472046,
   0.07031279802322388,
   -0.24145925045013428,
   0.4747408330440521,
   -0.03132770583033562,
   0.012163259088993073,
   -0.022657673805952072,
   0.8015711903572083,
   -0.47720131278038025,
   0.2199287712574005,
   0.08844734728336334,
   -0.48228609561920166,
   -0.43955206871032715,
   -0.5832093954086304,
   0.29556047916412354,
   -0.03560686111450195,
   0.21834859251976013,
   -0.03735336288809776,
   -0.06314653158187866,
   0.38572177290916443,
   0.15942859649658203,
   0.8545389771461487,
   -0.19664424657821655,
   -0.5180554389953613,
   -0.2864724397659302,
   0.09545917063951492,
   -0.3210022747516632,
   -0.12279102206230164,
   0.2962457239627838,
   -0.0026711151003837585,
   -0.3803535997867584,
   0.040995243936777115,
   0.09174089133739471,
   0.2804033160209656,
   0.5185068845748901,
   0.7126805782318115,
   0.30378031730651855,
   0.04113130271434784,
   -0.11449466645717621,
   -0.3120154142379761,
   0.47711995244026184,
   -0.1257835477590561,
   0.2467776983976364,
   -0.4421890377998352,
   0.5353171825408936,
   0.12195383757352829,
   -0.3649298846721649,
   -0.28500741720199585,
   -0.11677880585193634,
   -0.09861437231302261,
   -0.2096845954656601,
   -0.2558976709842682,
   -1.1734600067138672,
   -0.038498520851135254,
   -0.020387012511491776,
   -0.3017955720424652,
   -0.293207049369812,
   0.38360732793807983,
   -0.050226639956235886,
   0.3248007893562317,
   0.09052740037441254,
   0.0646006315946579,
   0.18857553601264954,
   -0.26117071509361267,
   0.09304732084274292,
   -0.41271427273750305,
   0.20474645495414734,
   -0.10232776403427124,
   -0.15146410465240479,
   -0.18071100115776062,
   -0.8411701321601868,
   0.12083330005407333,
   -0.030044585466384888,
   0.5285677313804626,
   0.37838008999824524,
   0.5258394479751587,
   0.653739333152771,
   -0.3448631167411804,
   0.055078040808439255,
   0.08881059288978577,
   0.04747810587286949,
   0.05621521919965744,
   -0.3830907344818115,
   -0.16719278693199158,
   0.10335521399974823,
   -0.6203606128692627,
   -0.5582639575004578,
   0.11188235878944397,
   0.7856903076171875,
   0.011081814765930176,
   -0.02567041665315628,
   0.301848828792572,
   -0.37212517857551575,
   0.35669785737991333,
   -0.2050887793302536,
   -0.023459091782569885,
   -0.3653848171234131,
   0.4069947898387909,
   0.23093333840370178,
   -0.008370354771614075,
   0.167488232254982,
   0.5069015026092529,
   -0.09385216236114502,
   0.6555749177932739,
   0.4368751049041748,
   0.21752429008483887,
   0.6209486722946167,
   0.18850156664848328,
   -0.26038050651550293,
   -0.37884825468063354,
   -0.11395478248596191,
   0.22200864553451538,
   0.052781589329242706,
   -0.7728974223136902,
   0.0782662183046341,
   -0.2004159837961197,
   0.2166358083486557,
   -0.7449480295181274,
   -0.09477652609348297,
   0.2755279541015625,
   -0.45704346895217896,
   0.16095297038555145,
   -0.02726532332599163,
   -0.18166595697402954,
   0.02645266428589821,
   0.07101850211620331,
   0.2883625626564026,
   -0.2936469316482544,
   -0.08498943597078323,
   -0.274652898311615,
   -0.6537119150161743,
   0.009299233555793762,
   0.1197553426027298,
   0.064278744161129,
   -0.18343745172023773,
   -0.10914329439401627,
   -0.10708581656217575,
   -0.10136476159095764,
   -0.8556217551231384,
   -0.022911831736564636,
   -0.1610887199640274,
   -0.08882207423448563,
   0.043761029839515686,
   -0.13782471418380737,
   -0.28319206833839417,
   -0.5645938515663147,
   0.8360618352890015,
   1.0106127262115479,
   0.07931356132030487,
   -0.39411571621894836,
   -0.06720955669879913,
   0.04263608157634735,
   0.3147059679031372,
   0.8216863870620728,
   -0.5866247415542603,
   -0.1867952048778534,
   -0.37598708271980286,
   -0.1713276505470276,
   0.29365062713623047,
   0.7327463626861572,
   -0.04826447367668152,
   -0.20025548338890076,
   -0.39039844274520874,
   0.5466240048408508,
   0.34252798557281494,
   0.33045563101768494,
   0.42676877975463867,
   0.538585364818573,
   0.030981644988059998,
   0.3513054847717285,
   0.20530620217323303,
   -0.31490764021873474,
   0.3774963617324829,
   -0.4818143844604492,
   0.2671580910682678,
   -0.4736633002758026,
   0.2464093565940857,
   -0.632409930229187,
   0.4923469126224518,
   0.3834012746810913,
   0.5343124866485596,
   0.07097184658050537,
   -0.2517876625061035,
   -0.12309562414884567,
   -0.20775508880615234,
   -0.1968497335910797,
   0.2520214021205902,
   0.15110866725444794,
   0.1850457787513733,
   -0.8834867477416992,
   -0.7017946839332581,
   0.08847614377737045,
   -0.16609172523021698,
   0.34247878193855286,
   -0.0103997141122818,
   0.2286679446697235,
   0.3818749487400055,
   0.8033174872398376,
   0.16197699308395386,
   0.06701540946960449,
   -0.1775825023651123,
   0.3753291964530945,
   -0.502276599407196,
   -0.03239703178405762,
   0.2071985900402069,
   0.433618426322937,
   0.6215304732322693,
   0.6006186008453369,
   -0.45325690507888794,
   -0.17709657549858093,
   0.39394548535346985,
   0.34160691499710083,
   -0.33707568049430847,
   -0.05296327918767929,
   -0.5582461357116699,
   0.20176534354686737,
   -0.2202031910419464,
   0.17600150406360626,
   0.7483746409416199,
   0.041521281003952026,
   0.15768292546272278,
   0.2652006149291992,
   0.4877327084541321,
   0.6775739789009094,
   -0.2791239321231842,
   0.10851523280143738,
   -0.09908910095691681,
   0.1801837533712387,
   -0.5871533751487732,
   -0.7484135031700134,
   0.07558998465538025,
   -0.35394224524497986,
   -0.7550520300865173,
   -0.5818492770195007,
   0.06959350407123566,
   -0.25558534264564514,
   0.19504600763320923,
   0.21149004995822906,
   -0.2802129089832306,
   0.7320423722267151,
   -0.06088441610336304,
   0.03282419219613075,
   0.11893509328365326,
   0.049473319202661514,
   0.24465209245681763,
   -1.0174983739852905,
   -0.25264251232147217,
   0.4275662302970886,
   -0.07660196721553802,
   -0.07184204459190369,
   0.12586599588394165,
   0.13559333980083466,
   0.21822640299797058,
   0.28120559453964233,
   0.32477205991744995,
   -0.3568347096443176,
   -0.16762381792068481,
   0.17853577435016632,
   -0.1852111667394638,
   0.7254602909088135,
   0.1672503650188446,
   0.25277626514434814,
   0.21127097308635712,
   -0.1391715705394745,
   -0.2854086756706238,
   0.07830000668764114,
   0.12093308568000793,
   -0.2875407934188843,
   0.6422384977340698,
   -0.6914559602737427,
   0.13400179147720337,
   -0.03462367504835129,
   0.09467966854572296,
   0.022253744304180145,
   0.08420677483081818,
   -0.048898350447416306,
   0.38439032435417175,
   0.10415590554475784,
   -0.0568825900554657,
   0.45461490750312805,
   -0.5059753656387329,
   0.25764894485473633,
   -0.4463038742542267,
   0.02322571724653244,
   0.12562856078147888,
   0.4066809415817261,
   -0.5041743516921997,
   0.4842977523803711,
   0.12848341464996338,
   -0.0697619616985321,
   -0.2011021077632904,
   -8.523558616638184,
   0.9212040901184082,
   0.4394667148590088,
   0.3996898829936981,
   0.21211719512939453,
   0.09459127485752106,
   0.2726322412490845,
   0.04136653244495392,
   -0.48038724064826965,
   -0.11873187869787216,
   0.16051584482192993,
   -0.34771251678466797,
   -0.16568318009376526,
   0.24131974577903748,
   -0.2841203510761261,
   -0.050363074988126755,
   -0.1308005154132843,
   0.17486190795898438,
   0.15431708097457886,
   -0.07839097082614899,
   0.7427101135253906,
   -0.021060077473521233,
   -0.013121075928211212,
   0.36379438638687134,
   0.06902661919593811,
   -0.2085570991039276,
   0.13257646560668945,
   0.03444189950823784,
   0.11715465784072876,
   0.23389579355716705,
   -0.6010448932647705,
   0.22510658204555511,
   -0.07792507112026215,
   -0.3084862530231476,
   0.2387884557247162,
   -0.22160564363002777,
   0.4261525869369507,
   -0.6839722394943237,
   0.007238937541842461,
   -0.6457690596580505,
   -0.306432843208313,
   -0.009156085550785065,
   0.36934906244277954,
   0.5402072072029114,
   0.5167334675788879,
   0.252060204744339,
   -0.5091655850410461,
   -0.40580591559410095,
   -0.20084317028522491,
   0.6438519954681396,
   0.5671775341033936,
   0.6091127395629883,
   0.9462448358535767,
   -0.029235659167170525,
   0.19581405818462372,
   0.29916292428970337,
   0.021509386599063873,
   0.1460137814283371,
   -0.23940826952457428,
   -0.3745587170124054,
   -0.3814636468887329,
   -0.39251038432121277,
   0.9141191244125366,
   -0.2161419689655304,
   -0.29665619134902954,
   0.19221249222755432,
   -0.045142870396375656,
   -0.10398171842098236,
   0.14711053669452667,
   0.4812617897987366,
   0.13467523455619812,
   -0.3670743405818939,
   0.27312618494033813,
   -0.8033043146133423,
   -0.29611101746559143,
   0.13455241918563843,
   -0.24796533584594727,
   -0.05222330614924431,
   -0.020007319748401642,
   0.3421243131160736,
   -0.4282030463218689,
   0.5725248456001282,
   0.7035989165306091,
   -0.2021135836839676,
   -0.009483173489570618,
   -0.2875339686870575,
   -0.5903117656707764,
   0.00511622428894043,
   0.17184099555015564,
   -0.2165786325931549,
   -0.4687465727329254,
   0.36149537563323975,
   0.1647874414920807,
   -0.09639065712690353,
   -0.3482153117656708,
   0.021197449415922165,
   0.11010998487472534,
   -0.14707021415233612,
   -0.13604861497879028,
   0.25926002860069275,
   -0.24096208810806274,
   0.022020692005753517,
   -0.6845766305923462,
   -0.409342885017395,
   -0.03932327404618263,
   -0.04450058564543724,
   -0.24488402903079987,
   -0.24275383353233337,
   -0.09147924184799194,
   0.41082996129989624,
   -0.32272765040397644,
   -0.09682314842939377,
   -0.23588308691978455,
   0.5137679576873779,
   0.3161689043045044,
   0.23597225546836853,
   0.4307040870189667,
   -0.18849019706249237,
   0.09047579020261765,
   -0.009204805828630924,
   -0.07562657445669174,
   -0.5730686783790588,
   -0.047025926411151886,
   -0.36467617750167847,
   0.05241002142429352,
   0.3558504283428192,
   -0.3256526291370392,
   0.15402349829673767,
   0.2840016186237335,
   -0.2780655026435852,
   -0.018489688634872437,
   0.6179341077804565,
   -0.5059902667999268,
   0.34235522150993347,
   -0.49030113220214844,
   -0.008384378626942635,
   -0.03504157438874245,
   0.038882624357938766,
   -0.3892080783843994,
   0.19090569019317627,
   -0.5891355872154236,
   -0.4018676280975342,
   0.6575290560722351,
   0.06552939116954803,
   0.28852856159210205,
   -0.02101980336010456,
   0.2010679394006729,
   -0.24061191082000732,
   0.18832635879516602,
   -0.35904189944267273,
   -0.35904553532600403,
   -0.041939325630664825,
   0.28887301683425903,
   -0.16067466139793396,
   -0.12231988459825516,
   -0.3395150899887085,
   0.3469693064689636,
   0.5478525161743164,
   -0.2683265209197998,
   -0.30952906608581543,
   0.278523713350296,
   -0.0420338436961174,
   0.012352976016700268,
   -0.05833044275641441,
   -0.023350626230239868,
   -0.2911553978919983,
   -0.05436254292726517,
   -0.34976476430892944,
   0.16336162388324738,
   0.46602529287338257,
   0.7803023457527161,
   -0.3189404606819153,
   0.7041144371032715,
   0.511953592300415,
   -0.5309602618217468,
   -0.12766675651073456,
   0.09080881625413895,
   0.04463503509759903,
   1.2425118684768677,
   -0.32923316955566406,
   0.07205570489168167,
   0.2902528643608093,
   -0.17062215507030487,
   0.22700336575508118,
   -0.208623468875885,
   -0.13301049172878265,
   0.3443453907966614,
   0.16644251346588135,
   -0.048316046595573425,
   0.14473259449005127,
   0.2548196613788605,
   -0.33497631549835205,
   -0.4335665702819824,
   0.19273415207862854,
   -0.4075442850589752,
   0.4136224389076233,
   -0.011610463261604309,
   0.45530304312705994,
   0.15438829362392426,
   -0.04865110665559769,
   -0.06509840488433838,
   -0.03374852240085602,
   0.09124350547790527,
   -0.00043952465057373047,
   0.08315975964069366,
   0.39628273248672485,
   -0.1995239108800888,
   0.4068758189678192,
   0.2402709722518921,
   0.07220897823572159,
   0.02202615886926651],
  [0.13548974692821503,
   0.07839250564575195,
   0.30150243639945984,
   -0.11248186230659485,
   0.16252930462360382,
   0.27319982647895813,
   -0.26744917035102844,
   -0.05200429633259773,
   0.092647984623909,
   -0.286211758852005,
   0.004225773736834526,
   -0.2241380363702774,
   -0.19611844420433044,
   0.02027321606874466,
   -0.27422070503234863,
   -0.18173258006572723,
   -0.44148412346839905,
   -0.09767355769872665,
   0.4955196976661682,
   0.3237624764442444,
   0.090314581990242,
   0.09757070988416672,
   0.09706886112689972,
   0.1801990568637848,
   0.07058195769786835,
   -0.156154066324234,
   -0.11515691876411438,
   0.7801926136016846,
   0.06995794177055359,
   0.5002014636993408,
   -0.1007511094212532,
   -0.07084579765796661,
   -0.18000493943691254,
   -0.23849354684352875,
   0.040519095957279205,
   0.21760033071041107,
   0.16839942336082458,
   0.32499822974205017,
   -0.3506859540939331,
   0.1864483803510666,
   0.14880813658237457,
   -0.028052788227796555,
   0.24708625674247742,
   0.05624108761548996,
   0.0010074861347675323,
   0.19043026864528656,
   -0.0638551265001297,
   0.05280299484729767,
   -0.2540290951728821,
   0.10010695457458496,
   0.20058539509773254,
   -0.13754986226558685,
   0.23143169283866882,
   0.2445492148399353,
   0.04252910614013672,
   -0.6293021440505981,
   0.08832384645938873,
   0.1295357495546341,
   -0.17734277248382568,
   0.5757936835289001,
   0.013083644211292267,
   -0.03655822202563286,
   -0.014979992061853409,
   -0.31513381004333496,
   0.1759428083896637,
   -0.07359054684638977,
   -0.10293249785900116,
   -0.21530304849147797,
   0.33199581503868103,
   -0.26927289366722107,
   -0.3219359219074249,
   -0.22040225565433502,
   -0.2241259515285492,
   -0.11833846569061279,
   0.3913675546646118,
   -0.5018989443778992,
   -0.06285631656646729,
   0.03625429794192314,
   -0.19236591458320618,
   0.36608704924583435,
   -0.0009331591427326202,
   0.5204644203186035,
   -0.02303403615951538,
   0.19029216468334198,
   0.46610015630722046,
   -0.39477723836898804,
   -0.12027410417795181,
   0.4678069055080414,
   -0.2769260108470917,
   0.5322290062904358,
   -0.11366991698741913,
   -0.41134318709373474,
   0.3074505627155304,
   -0.3950793445110321,
   0.17290079593658447,
   0.37990331649780273,
   -0.2036861777305603,
   -0.1727781444787979,
   -0.9777097702026367,
   -0.11715321987867355,
   -0.35745346546173096,
   -0.24449430406093597,
   -0.054007552564144135,
   0.10956943780183792,
   0.09379518777132034,
   -0.16495965421199799,
   0.08864930272102356,
   -0.6662313342094421,
   0.5173469185829163,
   0.4780418276786804,
   -0.40828776359558105,
   -0.1724454015493393,
   0.3940613269805908,
   -0.03025444969534874,
   -0.2224576622247696,
   0.582646369934082,
   -0.06955571472644806,
   -0.1312083899974823,
   0.3351571559906006,
   -0.0860576331615448,
   0.2896200716495514,
   0.3061288595199585,
   -0.09477418661117554,
   0.4525449275970459,
   -0.031674329191446304,
   -0.08228623867034912,
   -0.3697665333747864,
   -0.1373099982738495,
   0.04608232155442238,
   -0.13235610723495483,
   -0.7158867716789246,
   -0.3786899745464325,
   -0.08215148746967316,
   -0.21751484274864197,
   0.35700494050979614,
   -0.12015406042337418,
   -0.3713531494140625,
   0.30295175313949585,
   -1.1009631156921387,
   -0.1730114072561264,
   -0.2550584673881531,
   -0.5464811325073242,
   0.22905227541923523,
   0.11903759837150574,
   0.07466760277748108,
   -0.1456107795238495,
   -0.6463775038719177,
   0.21463163197040558,
   0.22012415528297424,
   0.45558860898017883,
   -0.17429830133914948,
   -0.0007855221629142761,
   0.32101964950561523,
   -0.18538148701190948,
   0.13263563811779022,
   -0.09689697623252869,
   -0.09332391619682312,
   -0.2217366099357605,
   0.10866037011146545,
   0.14297309517860413,
   0.2581389546394348,
   -0.49043551087379456,
   -0.3498276472091675,
   0.2554890513420105,
   0.4281473755836487,
   0.08755818009376526,
   0.2219526171684265,
   0.2222883105278015,
   0.27388638257980347,
   -0.10951042175292969,
   -0.02440619468688965,
   -0.04954216256737709,
   -0.26053088903427124,
   0.5177599191665649,
   0.01626901514828205,
   -0.11066530644893646,
   0.6372188925743103,
   -0.3495938181877136,
   0.042856939136981964,
   -0.048599377274513245,
   0.03077280893921852,
   -0.08071022480726242,
   0.22458891570568085,
   -0.041499510407447815,
   -0.6723525524139404,
   -0.38253018260002136,
   0.1724361777305603,
   -0.2359868288040161,
   0.28239312767982483,
   0.5605826377868652,
   -0.3889739513397217,
   -0.2890920341014862,
   -0.23615483939647675,
   -0.3887979984283447,
   -0.3493242859840393,
   0.1856672763824463,
   0.5299292802810669,
   -0.13189753890037537,
   0.011994034051895142,
   -0.24071280658245087,
   0.01970125548541546,
   -0.11265678703784943,
   0.5164588093757629,
   -0.16190366446971893,
   0.23870772123336792,
   -0.03217576444149017,
   0.010394547134637833,
   0.5270327925682068,
   -0.06414198130369186,
   -0.22214868664741516,
   -0.23026765882968903,
   -0.5592169761657715,
   -0.14164552092552185,
   0.2809741795063019,
   -0.14655733108520508,
   0.166742205619812,
   0.02292121760547161,
   -0.07469336688518524,
   -0.348378986120224,
   0.0545550212264061,
   -0.18962612748146057,
   0.09333451837301254,
   -0.4946068525314331,
   -0.10890954732894897,
   -0.2773507535457611,
   0.499983012676239,
   0.09387174248695374,
   0.06351439654827118,
   0.2660899758338928,
   -0.2478654980659485,
   -0.19734825193881989,
   0.33855122327804565,
   -0.028806038200855255,
   -0.4892260730266571,
   0.024878760799765587,
   -0.36071133613586426,
   -0.13189761340618134,
   -0.22650034725666046,
   -0.5675054788589478,
   0.1377382129430771,
   0.018461283296346664,
   -0.5842330455780029,
   0.16768616437911987,
   -0.3572031557559967,
   -0.13186074793338776,
   0.41305503249168396,
   -0.18554455041885376,
   0.04025367274880409,
   0.13832543790340424,
   0.2730144262313843,
   -0.3273882269859314,
   -0.24193941056728363,
   -0.41480064392089844,
   0.28124189376831055,
   0.4820407032966614,
   -0.2186397761106491,
   0.38030683994293213,
   0.1572066694498062,
   -0.3512926399707794,
   -0.4604136645793915,
   0.28070229291915894,
   0.12143263220787048,
   0.36159446835517883,
   0.09554845094680786,
   -0.024635665118694305,
   -0.07236276566982269,
   -0.6624369621276855,
   0.07450700551271439,
   -0.5368508100509644,
   0.052375663071870804,
   0.19341415166854858,
   0.17897537350654602,
   -0.07704779505729675,
   0.519014298915863,
   0.12500028312206268,
   0.33870428800582886,
   0.1658017486333847,
   -0.07259837538003922,
   -0.14238770306110382,
   0.20408526062965393,
   -0.19651733338832855,
   0.6930752992630005,
   -0.23496869206428528,
   -0.15442846715450287,
   -0.3115517199039459,
   0.20231111347675323,
   -0.005646329373121262,
   0.2369322031736374,
   -0.1359286904335022,
   -0.27870017290115356,
   -0.0448698066174984,
   0.2654222846031189,
   -0.05135186016559601,
   0.3572498559951782,
   0.6157830357551575,
   -0.10762174427509308,
   -0.958254337310791,
   0.0272291861474514,
   -0.20045919716358185,
   0.23696395754814148,
   0.41365134716033936,
   0.810888409614563,
   0.17569784820079803,
   0.2170458287000656,
   -0.26822203397750854,
   0.2912139892578125,
   0.19200268387794495,
   0.20869337022304535,
   -0.2560466527938843,
   -0.164879709482193,
   0.2963950037956238,
   0.30595341324806213,
   -0.10636993497610092,
   -0.5668467879295349,
   -0.16223424673080444,
   -0.2682580053806305,
   -0.24272297322750092,
   0.3386397063732147,
   -0.14200472831726074,
   -0.17882631719112396,
   0.06695335358381271,
   -0.0005819797515869141,
   -0.4053848385810852,
   0.5361016988754272,
   0.46797794103622437,
   -0.07221575826406479,
   -0.058950431644916534,
   -0.1271134912967682,
   0.08375021070241928,
   -0.6050950884819031,
   0.5139660835266113,
   0.031531691551208496,
   0.8172679543495178,
   0.0919727236032486,
   -0.09137168526649475,
   0.4318139851093292,
   -0.38590845465660095,
   -0.10301142930984497,
   -0.037187959998846054,
   0.2371780276298523,
   -0.04522509500384331,
   -0.2976137101650238,
   0.4865330457687378,
   0.13132953643798828,
   0.09029433131217957,
   0.802903950214386,
   -0.30537647008895874,
   -0.07549265027046204,
   -0.5661572217941284,
   -0.09433908015489578,
   -0.2270624339580536,
   -0.3764934241771698,
   -0.05392696335911751,
   0.928519070148468,
   0.410033643245697,
   0.13033264875411987,
   -0.2768683433532715,
   -0.012307357043027878,
   -0.05468541756272316,
   0.42072585225105286,
   -0.006210789084434509,
   0.1672874242067337,
   -0.363992840051651,
   -0.1269931197166443,
   0.4155880808830261,
   -0.30607476830482483,
   -0.5175817012786865,
   0.14798803627490997,
   0.21946942806243896,
   0.18675704300403595,
   0.054034896194934845,
   -0.14099624752998352,
   0.48424941301345825,
   0.36652377247810364,
   -0.005041368305683136,
   0.15424540638923645,
   -0.12996260821819305,
   0.0410725437104702,
   -0.21739080548286438,
   -0.7471976280212402,
   -0.14338314533233643,
   0.38944870233535767,
   0.07116110622882843,
   -0.06272277981042862,
   0.067532479763031,
   0.7661083936691284,
   -0.455099880695343,
   0.6727709174156189,
   0.42857587337493896,
   -0.2844354808330536,
   -0.5371475219726562,
   -0.37659361958503723,
   -0.28227928280830383,
   0.09602457284927368,
   -0.22299842536449432,
   0.2914953827857971,
   -0.6478216052055359,
   0.2776052951812744,
   -0.24792030453681946,
   0.5588583946228027,
   0.041013699024915695,
   0.03361993283033371,
   0.08125970512628555,
   -0.155697762966156,
   -0.817159116268158,
   0.07167235016822815,
   -0.24699972569942474,
   0.04253917559981346,
   0.03518805652856827,
   -0.18043673038482666,
   0.2433582842350006,
   -0.5755434632301331,
   0.0912308469414711,
   -0.03469536453485489,
   0.11189962923526764,
   -0.4071319103240967,
   -0.1475418657064438,
   -0.07217338681221008,
   0.8573280572891235,
   0.20348016917705536,
   -0.5329242944717407,
   0.3597111403942108,
   -0.3879360258579254,
   0.11804631352424622,
   0.19385012984275818,
   0.023217525333166122,
   0.03247427940368652,
   -0.2330584079027176,
   -0.6203866004943848,
   -0.2245747447013855,
   0.31556135416030884,
   -0.1294514387845993,
   0.027343332767486572,
   0.2373906373977661,
   0.5060517191886902,
   0.11537428200244904,
   0.3823775053024292,
   -0.5226154327392578,
   0.3812004625797272,
   0.3694797158241272,
   0.425087034702301,
   -0.055191051214933395,
   0.2557089030742645,
   0.043381478637456894,
   -0.040175870060920715,
   0.22037237882614136,
   0.5347425937652588,
   0.04953064024448395,
   0.28310197591781616,
   -0.11983011662960052,
   -0.2656046450138092,
   -0.026133205741643906,
   0.2905234396457672,
   0.4764249920845032,
   0.059890132397413254,
   -0.6903477311134338,
   -0.2145618498325348,
   -0.6802698969841003,
   -0.4599328339099884,
   0.012621598318219185,
   0.01122661679983139,
   0.21828922629356384,
   0.13796217739582062,
   0.032810285687446594,
   0.629265308380127,
   0.5167222619056702,
   -0.20362652838230133,
   0.6245620250701904,
   0.3480560779571533,
   0.5250420570373535,
   0.009627614170312881,
   0.1950571984052658,
   0.21527311205863953,
   0.6228561997413635,
   0.396145224571228,
   -0.3188437223434448,
   -0.08696934580802917,
   0.22716671228408813,
   -0.053998976945877075,
   -0.11681078374385834,
   -0.18556039035320282,
   0.26495885848999023,
   0.17545534670352936,
   0.6532344818115234,
   0.5824151635169983,
   0.10918426513671875,
   0.4218183755874634,
   0.057734664529561996,
   -0.17322641611099243,
   0.2154296189546585,
   -0.49530521035194397,
   0.0704202651977539,
   -0.5591574311256409,
   -0.012900903820991516,
   -0.3091883659362793,
   -0.5824317932128906,
   -0.14157623052597046,
   -0.008817912079393864,
   -0.6420096755027771,
   -0.3973989188671112,
   -0.2457118183374405,
   -0.1542278379201889,
   0.28328391909599304,
   0.27254337072372437,
   -0.050169721245765686,
   0.5381059050559998,
   -0.42166033387184143,
   -0.15133261680603027,
   0.24295121431350708,
   -0.35766518115997314,
   0.4662989675998688,
   -0.5911520719528198,
   -0.27338480949401855,
   0.33165010809898376,
   0.463250994682312,
   -0.026391632854938507,
   -0.04786339029669762,
   0.33651384711265564,
   0.376988023519516,
   -0.3363773226737976,
   0.4133617877960205,
   -0.7346603274345398,
   -0.06617818027734756,
   -0.7378937005996704,
   -0.06426176428794861,
   0.31782349944114685,
   0.36162716150283813,
   -0.06710109114646912,
   -0.3105030059814453,
   0.3539000451564789,
   -0.28517112135887146,
   0.23688530921936035,
   0.015564009547233582,
   -0.19309496879577637,
   0.23645901679992676,
   -0.1440753936767578,
   0.048202671110630035,
   0.4745695888996124,
   -0.27317288517951965,
   0.41412439942359924,
   0.2523921728134155,
   0.8115860223770142,
   0.9484155178070068,
   0.1419638693332672,
   -0.5976724028587341,
   0.11106002330780029,
   -0.5196256637573242,
   0.4769582152366638,
   -0.24117377400398254,
   0.13327069580554962,
   0.5481659770011902,
   -0.23310431838035583,
   -0.6213526725769043,
   0.17363102734088898,
   0.19174881279468536,
   -0.07060566544532776,
   -0.3569149076938629,
   -8.799774169921875,
   0.368133544921875,
   -0.37924301624298096,
   0.06393776088953018,
   -0.2325323224067688,
   0.06082487106323242,
   0.8654484748840332,
   0.023894548416137695,
   0.04111885279417038,
   -0.44851043820381165,
   0.3352911174297333,
   -0.43655359745025635,
   0.2965691089630127,
   -0.2557936906814575,
   0.3858606815338135,
   -0.24596184492111206,
   -0.0550244003534317,
   0.4598200023174286,
   0.03888455405831337,
   -0.06260526925325394,
   0.0962323322892189,
   0.7913659811019897,
   0.2759305238723755,
   0.8888687491416931,
   0.05352354794740677,
   0.05721103399991989,
   -0.030774563550949097,
   -0.23606646060943604,
   -0.13029657304286957,
   -0.14679363369941711,
   -0.17422263324260712,
   -0.3730301558971405,
   0.13211104273796082,
   0.18827693164348602,
   -0.13419264554977417,
   -0.07341544330120087,
   -0.0929078757762909,
   -0.06742800027132034,
   -0.01601918786764145,
   -0.6548611521720886,
   -0.2028835415840149,
   -0.4619918465614319,
   0.3378957509994507,
   0.07077114284038544,
   0.14599406719207764,
   0.5862381458282471,
   0.16550937294960022,
   -0.3259682059288025,
   0.4495726227760315,
   0.08383510261774063,
   0.3636035919189453,
   0.5558865666389465,
   0.5502599477767944,
   -0.3711966872215271,
   -0.417705237865448,
   0.20171308517456055,
   0.010745197534561157,
   0.09354855120182037,
   0.0033162739127874374,
   -0.560145378112793,
   -0.5018946528434753,
   -0.21427614986896515,
   0.42604073882102966,
   -0.21741876006126404,
   0.04120859503746033,
   0.0592668317258358,
   -0.4739490747451782,
   0.10710237175226212,
   0.10894232988357544,
   0.13236084580421448,
   -0.2843676507472992,
   -0.42402204871177673,
   0.04428355395793915,
   -0.4224112927913666,
   0.027958380058407784,
   -0.2324129194021225,
   -0.08831163495779037,
   0.041418273001909256,
   -0.23730462789535522,
   0.28386181592941284,
   -0.49544835090637207,
   0.26831674575805664,
   0.27757981419563293,
   -0.5591349005699158,
   0.13160081207752228,
   -0.20337486267089844,
   0.13504542410373688,
   0.5439532995223999,
   -0.18057861924171448,
   -0.14383205771446228,
   -0.4411931335926056,
   0.4039863646030426,
   0.08876501023769379,
   -0.2018374800682068,
   -0.15341800451278687,
   -0.020020179450511932,
   -0.13677997887134552,
   0.2933178246021271,
   0.1347724199295044,
   0.43638741970062256,
   -0.438197523355484,
   0.17921996116638184,
   -0.5812877416610718,
   -0.038020916283130646,
   -0.5746071338653564,
   -0.11701399832963943,
   -0.06754663586616516,
   -0.18343481421470642,
   0.4189525246620178,
   0.10999497771263123,
   -0.39508160948753357,
   0.1403985619544983,
   0.45806175470352173,
   0.19765833020210266,
   -0.06312373280525208,
   -0.08424656093120575,
   0.5890552401542664,
   0.22055105865001678,
   0.47908055782318115,
   -0.44542834162712097,
   0.1613023728132248,
   -0.3505522906780243,
   0.16363811492919922,
   -0.31925168633461,
   0.01622980833053589,
   0.16250593960285187,
   -0.35379764437675476,
   0.4049881100654602,
   0.23005662858486176,
   0.028339851647615433,
   0.31671541929244995,
   0.017957869917154312,
   -0.1647024005651474,
   0.4386981725692749,
   -0.04820956289768219,
   0.11260081827640533,
   0.14350950717926025,
   0.0908302366733551,
   -0.09383126348257065,
   -0.3572847545146942,
   -0.437327116727829,
   0.1312810778617859,
   0.595087468624115,
   0.47246456146240234,
   0.3075001835823059,
   0.06315848976373672,
   -0.15602147579193115,
   -0.17479801177978516,
   0.0933690220117569,
   0.08380961418151855,
   -0.20702087879180908,
   -0.05886667221784592,
   -0.2579803168773651,
   -0.6108423471450806,
   0.4940698742866516,
   -0.38505110144615173,
   0.5965870022773743,
   -0.33771923184394836,
   0.12491688132286072,
   -0.1808370053768158,
   -0.10326024889945984,
   -0.2588306665420532,
   0.1946488618850708,
   0.058957286179065704,
   -0.13919179141521454,
   -0.1340559422969818,
   0.2169209122657776,
   0.22210446000099182,
   0.3874863386154175,
   0.2538754343986511,
   0.735644519329071,
   0.015165705233812332,
   -0.023596126586198807,
   0.2523796558380127,
   0.15749278664588928,
   -0.12799455225467682,
   0.2903798222541809,
   -0.34336772561073303,
   0.3333151340484619,
   -0.11154520511627197,
   0.45735982060432434,
   0.5310649871826172,
   0.170233353972435,
   -0.7115947008132935,
   -0.050416477024555206,
   -0.08966310322284698,
   0.18765217065811157,
   -0.19252200424671173,
   0.18929523229599,
   0.14343270659446716,
   -0.14056265354156494,
   0.09261614084243774,
   -0.18955519795417786,
   0.3805248439311981,
   -0.6815275549888611,
   0.15935735404491425,
   0.07493013143539429,
   -0.38651981949806213,
   -0.18143802881240845,
   -0.18550100922584534,
   -0.2675178050994873,
   0.12387340515851974,
   0.21550065279006958,
   -0.05525243282318115,
   -0.4643535017967224,
   0.37933290004730225,
   -0.4899391829967499,
   0.5338472723960876,
   0.2919411361217499,
   -0.19964715838432312,
   0.29926222562789917],
  [0.19731754064559937,
   0.027481533586978912,
   0.13262733817100525,
   -0.022717025130987167,
   0.09112223982810974,
   -0.19031351804733276,
   0.1385147124528885,
   0.12924164533615112,
   0.08863027393817902,
   -0.2543224096298218,
   -0.19312316179275513,
   0.4787538945674896,
   0.24143564701080322,
   0.18874016404151917,
   -0.5710858106613159,
   -0.25099486112594604,
   0.012696409597992897,
   0.10697172582149506,
   -0.12747982144355774,
   -0.11872808635234833,
   0.04257240891456604,
   -0.17309537529945374,
   0.14431068301200867,
   0.1394459307193756,
   0.4240027070045471,
   -0.3210364282131195,
   -0.3594608008861542,
   0.5606968998908997,
   0.18952661752700806,
   0.467660516500473,
   0.050954125821590424,
   0.08971893787384033,
   0.3441143333911896,
   0.009469104930758476,
   0.31325840950012207,
   -0.2777251601219177,
   -0.17677727341651917,
   0.4006412625312805,
   -0.37331199645996094,
   -0.14748166501522064,
   -0.33182641863822937,
   0.0021050721406936646,
   0.07851770520210266,
   -0.01998673565685749,
   0.1638747900724411,
   0.12138694524765015,
   0.07253296673297882,
   -0.3811626732349396,
   0.02888212352991104,
   0.19550687074661255,
   0.2845744788646698,
   -0.07372952997684479,
   -0.04576113820075989,
   -0.296027272939682,
   0.30017173290252686,
   0.07170747220516205,
   -0.061753515154123306,
   0.32287099957466125,
   -0.3371310234069824,
   0.5021111965179443,
   0.22093674540519714,
   0.19910593330860138,
   -0.11087511479854584,
   0.09706850349903107,
   -0.558713972568512,
   0.6427011489868164,
   0.2929750084877014,
   0.036301761865615845,
   -0.2704213559627533,
   -0.7148189544677734,
   0.5676220655441284,
   0.5513068437576294,
   -0.2360711693763733,
   -0.4347267150878906,
   0.34060031175613403,
   -0.12311068922281265,
   0.4149150848388672,
   -0.12586840987205505,
   -0.20223751664161682,
   -0.3709203898906708,
   0.2084103375673294,
   0.3393252193927765,
   0.0570753738284111,
   0.45580363273620605,
   0.05015803873538971,
   -0.27546435594558716,
   -0.047634027898311615,
   0.2582980692386627,
   0.08417259901762009,
   0.7418370246887207,
   0.26450982689857483,
   -0.12870705127716064,
   -0.07526391744613647,
   -0.31611475348472595,
   -0.04532056674361229,
   0.4286061227321625,
   -0.05846928805112839,
   0.39898785948753357,
   -0.14604659378528595,
   -0.49289166927337646,
   0.038566477596759796,
   -0.48715177178382874,
   -0.00790964812040329,
   -0.10309068858623505,
   0.09161894768476486,
   -0.20021499693393707,
   -0.5590651631355286,
   -0.12497347593307495,
   -0.2217523157596588,
   0.3745509386062622,
   0.06401749700307846,
   0.29553717374801636,
   -0.07922124862670898,
   -0.11642929166555405,
   -0.4534975588321686,
   0.20744088292121887,
   0.040163468569517136,
   -0.19593220949172974,
   0.35679495334625244,
   -0.15198162198066711,
   0.8428990244865417,
   -0.10730552673339844,
   -0.27539658546447754,
   0.2847197651863098,
   0.15322525799274445,
   0.09414535760879517,
   -0.5845692157745361,
   0.028606988489627838,
   0.36816325783729553,
   -0.1383143812417984,
   -0.9891587495803833,
   -0.2809235751628876,
   0.22025486826896667,
   0.4503597021102905,
   -0.3262544572353363,
   -0.09215667098760605,
   -0.3906592130661011,
   0.18458209931850433,
   -1.5195928812026978,
   -0.31363624334335327,
   -0.37568461894989014,
   0.13354310393333435,
   0.44800668954849243,
   0.3729812800884247,
   -0.18891610205173492,
   0.1457311064004898,
   -0.4741497039794922,
   -0.04791682958602905,
   0.6012811660766602,
   0.7231743931770325,
   0.2852827310562134,
   0.010302238166332245,
   0.08207511901855469,
   -0.558519721031189,
   -0.11263975501060486,
   -0.4738500118255615,
   -0.18699714541435242,
   0.1866377741098404,
   0.7931643724441528,
   0.24845343828201294,
   -0.287840336561203,
   0.10097891092300415,
   -0.745806097984314,
   0.48540186882019043,
   0.247707337141037,
   -0.12343175709247589,
   0.6159266233444214,
   0.4924200475215912,
   -0.10382328927516937,
   0.4600152373313904,
   -0.0327201671898365,
   0.08412107825279236,
   -0.10298282653093338,
   0.24998147785663605,
   -0.10361389070749283,
   -0.050182826817035675,
   0.16011522710323334,
   -0.09452351182699203,
   -0.19634093344211578,
   -0.22458377480506897,
   0.1985785812139511,
   -0.03534308820962906,
   -0.29594263434410095,
   0.04265235364437103,
   -0.21010661125183105,
   0.45619797706604004,
   0.20963484048843384,
   -0.016893751919269562,
   0.3253478407859802,
   0.018610123544931412,
   0.03292687237262726,
   -0.2838220000267029,
   -0.3472358286380768,
   -0.056039199233055115,
   -0.1668948233127594,
   -0.16151940822601318,
   0.198025181889534,
   0.46638622879981995,
   0.15979674458503723,
   0.40094947814941406,
   -0.14747102558612823,
   -0.14328476786613464,
   -0.5025902986526489,
   0.25892502069473267,
   -0.10324251651763916,
   0.27338701486587524,
   -0.054311465471982956,
   0.6211338043212891,
   -0.254642128944397,
   -0.4738081097602844,
   -0.1541200578212738,
   -0.11984826624393463,
   -0.01941417157649994,
   0.8879367709159851,
   0.2724305987358093,
   -0.23334965109825134,
   0.2252611517906189,
   -0.2103990912437439,
   0.03869066387414932,
   0.12140592187643051,
   -0.18225276470184326,
   -0.3140984773635864,
   0.18699893355369568,
   -0.037201762199401855,
   0.3859761953353882,
   0.07034501433372498,
   0.08183380961418152,
   0.020285189151763916,
   0.8439050316810608,
   -0.07834087312221527,
   0.038312435150146484,
   0.5711896419525146,
   -0.23127499222755432,
   -0.22758175432682037,
   -0.7751439213752747,
   -0.14506497979164124,
   -0.6825756430625916,
   0.26834943890571594,
   -0.30858099460601807,
   -0.3540947139263153,
   0.19487011432647705,
   -0.43953484296798706,
   0.5722736120223999,
   -0.06138516962528229,
   0.1424752175807953,
   0.44171249866485596,
   -0.13780909776687622,
   0.5704873204231262,
   0.18643173575401306,
   0.2353043407201767,
   0.2910965383052826,
   -0.030103463679552078,
   -0.6825809478759766,
   -0.07470282912254333,
   0.08824615180492401,
   0.1686820089817047,
   0.61318039894104,
   0.09178504347801208,
   -0.40498173236846924,
   -0.42065486311912537,
   0.24918201565742493,
   0.20542767643928528,
   -0.27271512150764465,
   -0.27838194370269775,
   -0.12778805196285248,
   -0.46872416138648987,
   -0.7137826681137085,
   0.19586801528930664,
   -0.41803067922592163,
   0.3663250505924225,
   0.1294604241847992,
   -0.1756749451160431,
   0.10968197137117386,
   0.14541980624198914,
   -0.6435125470161438,
   0.3751169741153717,
   0.4162469208240509,
   -0.3542759418487549,
   -0.2806834578514099,
   -0.16922079026699066,
   0.1760123074054718,
   0.48130857944488525,
   -0.07600275427103043,
   0.0962895080447197,
   -0.19096718728542328,
   0.0400608628988266,
   -0.012226283550262451,
   0.6074770092964172,
   -0.32401371002197266,
   -0.5665803551673889,
   0.10881242156028748,
   -0.3066064119338989,
   -0.3506704568862915,
   -0.035194482654333115,
   0.4543885588645935,
   -0.23077335953712463,
   -0.6359050869941711,
   0.35457590222358704,
   -0.3038043975830078,
   0.1554078310728073,
   0.45321908593177795,
   0.4365953505039215,
   0.6999276876449585,
   -0.14882084727287292,
   -0.6205962896347046,
   0.10155292600393295,
   0.20394083857536316,
   -0.01895531825721264,
   0.5235133767127991,
   -0.5208323001861572,
   0.5468384027481079,
   0.22162659466266632,
   -0.32035374641418457,
   -0.13929222524166107,
   -0.16243374347686768,
   -0.1808297485113144,
   -0.00869656540453434,
   0.6863685250282288,
   -0.27892690896987915,
   -0.13602057099342346,
   0.18761062622070312,
   -0.006692148745059967,
   -0.27787408232688904,
   0.3581657111644745,
   -0.033062081784009933,
   -0.03484715148806572,
   0.18539661169052124,
   -0.1856670379638672,
   -0.46245723962783813,
   -0.29451602697372437,
   0.380907267332077,
   -0.1943388730287552,
   0.24413767457008362,
   -0.5887827277183533,
   -0.11964121460914612,
   0.4971550703048706,
   -0.14887981116771698,
   0.002804858610033989,
   0.633391797542572,
   0.22402334213256836,
   -0.14193511009216309,
   0.4215107262134552,
   0.3768838047981262,
   0.07769934087991714,
   -0.14110709726810455,
   -0.1346423625946045,
   -0.031959161162376404,
   0.1421629637479782,
   0.3190680146217346,
   -0.19424012303352356,
   0.2884828746318817,
   -0.2714681327342987,
   -0.24270445108413696,
   -0.10307800769805908,
   -0.14252524077892303,
   0.014918986707925797,
   -0.2581407427787781,
   0.14691804349422455,
   -0.21448606252670288,
   0.34731265902519226,
   -0.005941696465015411,
   -0.3077349066734314,
   -0.08579900860786438,
   -0.241631418466568,
   0.24479030072689056,
   -0.06054047495126724,
   -0.32486680150032043,
   0.5397371649742126,
   0.726105272769928,
   0.5181736350059509,
   0.13020852208137512,
   -0.11601383239030838,
   0.7045179009437561,
   0.19114702939987183,
   -0.29257991909980774,
   -0.3722342848777771,
   0.0830484926700592,
   0.02852271869778633,
   0.05850767716765404,
   -0.7784887552261353,
   -0.02408837527036667,
   0.04447360709309578,
   0.011988790705800056,
   -0.23836462199687958,
   0.24728284776210785,
   0.12220034003257751,
   0.12126000970602036,
   -0.0025171414017677307,
   0.2189212441444397,
   -0.07403209805488586,
   -0.009203659370541573,
   -0.24807530641555786,
   0.22770904004573822,
   -0.04854068160057068,
   -0.3625524640083313,
   0.12703602015972137,
   -0.5709595084190369,
   0.35128453373908997,
   0.2243693321943283,
   0.07487807422876358,
   -0.26751381158828735,
   0.0033226273953914642,
   -0.16833169758319855,
   -0.22825634479522705,
   -0.8961607813835144,
   0.3233456611633301,
   -0.05200028046965599,
   -0.46156206727027893,
   -0.20437748730182648,
   -0.0702434778213501,
   0.29337865114212036,
   -0.43149304389953613,
   0.22676032781600952,
   0.9932311177253723,
   -0.14408992230892181,
   -0.4986579716205597,
   0.1063295304775238,
   -0.12449973821640015,
   0.5166740417480469,
   0.3511918783187866,
   -0.40053725242614746,
   -0.25171607732772827,
   0.1120712161064148,
   0.0868048220872879,
   0.2779298424720764,
   0.3031501770019531,
   0.09825202822685242,
   -0.47205257415771484,
   0.3501794636249542,
   -0.23977741599082947,
   0.09061862528324127,
   0.05785134434700012,
   -0.012723425403237343,
   0.3654124438762665,
   0.0634300708770752,
   0.6793332695960999,
   0.5006527304649353,
   -0.5618056058883667,
   -0.18421529233455658,
   -0.037100449204444885,
   0.0321810357272625,
   -0.7566882371902466,
   0.21444886922836304,
   -0.46964266896247864,
   0.07428349554538727,
   0.3520714342594147,
   0.36824697256088257,
   0.022838862612843513,
   -0.3174859881401062,
   -0.1378013640642166,
   -0.4315602481365204,
   -0.12019019573926926,
   0.03112099878489971,
   0.20132268965244293,
   0.12201794981956482,
   -0.39180469512939453,
   -0.19927570223808289,
   -0.024756290018558502,
   -0.5070778131484985,
   0.3266235291957855,
   -0.2833186089992523,
   0.46102574467658997,
   0.12237486243247986,
   0.43500474095344543,
   0.17010855674743652,
   0.29700589179992676,
   -0.3969908356666565,
   0.8124227523803711,
   0.02283783257007599,
   -0.24037912487983704,
   0.4051888883113861,
   -0.029912885278463364,
   0.4627227187156677,
   0.6551581025123596,
   -0.04656133055686951,
   0.13585686683654785,
   0.3972727954387665,
   -0.09097228944301605,
   -0.698870837688446,
   0.3399469554424286,
   -0.09329010546207428,
   0.3178335130214691,
   -0.27039894461631775,
   0.20238614082336426,
   0.17673780024051666,
   0.15802785754203796,
   0.8126992583274841,
   0.13996732234954834,
   -0.02335454523563385,
   0.02642042562365532,
   0.24082110822200775,
   0.36752745509147644,
   0.16543297469615936,
   -0.19942250847816467,
   -0.21325737237930298,
   0.15022215247154236,
   -0.24717743694782257,
   -0.2732824385166168,
   -0.3057642877101898,
   -0.03175647556781769,
   -0.3843812644481659,
   -0.29925426840782166,
   -0.13670611381530762,
   0.3484080135822296,
   -0.5143368244171143,
   0.622714102268219,
   -0.334230899810791,
   0.1352599412202835,
   -0.2133564054965973,
   -0.45517295598983765,
   0.21368229389190674,
   -0.7086272239685059,
   -0.5707082152366638,
   0.00771706085652113,
   0.009459763765335083,
   0.01817217469215393,
   0.17016902565956116,
   0.251376748085022,
   0.12004315853118896,
   0.21483992040157318,
   0.8668162822723389,
   -0.32516974210739136,
   -0.10171705484390259,
   -0.7917659282684326,
   0.1456325501203537,
   0.4206785261631012,
   0.07404141128063202,
   -0.5704054236412048,
   0.3019646406173706,
   -0.08105215430259705,
   -0.5952594876289368,
   0.2509385347366333,
   -0.2068079262971878,
   -0.5943697690963745,
   0.6939552426338196,
   -0.15374690294265747,
   0.09557663649320602,
   -0.4941178262233734,
   0.23185905814170837,
   0.041023753583431244,
   0.2218898981809616,
   0.23237071931362152,
   0.6016908884048462,
   0.4242023825645447,
   -0.2106679528951645,
   0.6731416583061218,
   -0.4493379592895508,
   0.5167014598846436,
   -0.1243165135383606,
   -0.05549665912985802,
   0.17726823687553406,
   -0.34854811429977417,
   -0.45322924852371216,
   0.25909456610679626,
   0.18252094089984894,
   0.22139380872249603,
   -0.3202964663505554,
   -8.740711212158203,
   0.2719723880290985,
   0.04178111255168915,
   0.14304572343826294,
   0.5999535918235779,
   0.03623353689908981,
   -0.3636287450790405,
   0.22390833497047424,
   0.11688905954360962,
   -0.16728615760803223,
   -0.35678407549858093,
   0.10820169746875763,
   0.21887728571891785,
   -0.34988489747047424,
   -0.10585121810436249,
   0.3708427846431732,
   0.1190115362405777,
   -0.02868550829589367,
   -0.04019049555063248,
   0.28337761759757996,
   0.20332598686218262,
   -0.328848659992218,
   0.0466759093105793,
   0.5311480760574341,
   0.30759161710739136,
   -0.3720491826534271,
   0.014270342886447906,
   0.126102477312088,
   0.2800820469856262,
   0.049858368933200836,
   -0.18994569778442383,
   0.06850248575210571,
   -0.24357832968235016,
   -0.20885297656059265,
   0.2838875353336334,
   -0.5867459774017334,
   0.2960493266582489,
   0.18411624431610107,
   -0.4862615466117859,
   -0.42844995856285095,
   -0.44796136021614075,
   0.10289473831653595,
   0.3773959279060364,
   -0.11894770711660385,
   0.1437373012304306,
   0.32981687784194946,
   0.08197988569736481,
   -0.6938230395317078,
   0.261578768491745,
   0.2568749189376831,
   0.44940274953842163,
   0.23082686960697174,
   0.05210976302623749,
   -0.12485622614622116,
   -0.2808240056037903,
   0.5201929807662964,
   0.055446770042181015,
   0.24670276045799255,
   -0.10558749735355377,
   -0.3691568970680237,
   -0.13927266001701355,
   -0.4009261727333069,
   0.4298347532749176,
   -0.4450879991054535,
   -0.1743893176317215,
   -0.20298291742801666,
   -0.455253005027771,
   0.13255102932453156,
   -0.09762345999479294,
   0.5395719408988953,
   -0.21740233898162842,
   -0.7612450122833252,
   -0.23858284950256348,
   -0.13650642335414886,
   0.18011386692523956,
   0.2608385384082794,
   0.06211497634649277,
   -0.17563031613826752,
   -0.09496893733739853,
   0.4644530713558197,
   -0.5727931261062622,
   0.1842227727174759,
   1.009056568145752,
   0.5147616863250732,
   -0.01405637338757515,
   -0.11381833255290985,
   -0.2220390886068344,
   0.3198850750923157,
   -0.0675446093082428,
   -0.17837181687355042,
   -0.4041692018508911,
   -0.09191951900720596,
   0.09127005934715271,
   -0.19559133052825928,
   -0.5143575668334961,
   0.1325172632932663,
   -0.21038712561130524,
   -0.0009240396320819855,
   -0.14129158854484558,
   0.17797282338142395,
   -0.33026933670043945,
   0.0945298969745636,
   -0.3062358498573303,
   0.0886840894818306,
   -0.12724921107292175,
   -0.07313361018896103,
   0.27258941531181335,
   -0.1295846700668335,
   -0.05634673684835434,
   0.28723764419555664,
   -0.10287852585315704,
   0.0926181897521019,
   -0.24474111199378967,
   0.3300698399543762,
   0.2852123975753784,
   0.22283554077148438,
   0.6838338375091553,
   0.4861472249031067,
   0.009452314116060734,
   -0.012966543436050415,
   0.16502919793128967,
   -0.7371217012405396,
   -0.32112613320350647,
   -0.11733695864677429,
   -0.3969784379005432,
   0.45358651876449585,
   -0.5083367228507996,
   0.18941134214401245,
   0.17813628911972046,
   -0.01631968282163143,
   0.2894095182418823,
   -0.020668108016252518,
   -0.14508585631847382,
   0.4657962918281555,
   0.1992097795009613,
   0.5243127942085266,
   -0.10591420531272888,
   -0.018658114597201347,
   -0.2639586627483368,
   -0.027673279866576195,
   -0.5140416026115417,
   -0.6727882623672485,
   0.30699631571769714,
   0.2043789029121399,
   0.4295584261417389,
   0.09420274943113327,
   -0.19587558507919312,
   -0.3530677855014801,
   0.10017848014831543,
   0.07542258501052856,
   -0.6765833497047424,
   -0.18229731917381287,
   0.217250794172287,
   -0.30113592743873596,
   0.32910314202308655,
   -0.5007762908935547,
   0.40499037504196167,
   0.09160327166318893,
   -0.8246031999588013,
   -0.0318760871887207,
   -0.18368709087371826,
   -0.1641748696565628,
   -0.36594805121421814,
   -0.029567580670118332,
   0.2775743007659912,
   -0.05963495373725891,
   -0.2045840620994568,
   -0.06769169121980667,
   0.16445201635360718,
   0.039052531123161316,
   -0.19194115698337555,
   -0.022655101493000984,
   0.1729598194360733,
   0.358009934425354,
   -0.2998533844947815,
   -0.44044429063796997,
   -0.14950059354305267,
   0.09164948016405106,
   0.2552299499511719,
   -0.3839467763900757,
   0.18684396147727966,
   0.08741900324821472,
   -0.3086349070072174,
   0.09938110411167145,
   0.5835509300231934,
   0.1445487141609192,
   -0.22083795070648193,
   -0.01290859654545784,
   0.03814268857240677,
   0.19883441925048828,
   0.2064283788204193,
   -0.3645884394645691,
   -0.3650440573692322,
   0.18271589279174805,
   -0.7669270634651184,
   0.9398573637008667,
   0.307098925113678,
   0.43837881088256836,
   0.32612550258636475,
   0.7824856638908386,
   0.22066164016723633,
   0.16562815010547638,
   -0.17171555757522583,
   0.08819446712732315,
   -0.31562262773513794,
   -0.11391404271125793,
   0.36698415875434875,
   -0.643539309501648,
   0.38262370228767395,
   -0.2430368810892105,
   0.06713206321001053],
  [1.0362582206726074,
   0.20391739904880524,
   -0.5377472639083862,
   0.6700683236122131,
   0.5977147221565247,
   -0.1625474989414215,
   -0.10258622467517853,
   0.2622825503349304,
   0.5302613973617554,
   -0.7231094241142273,
   -0.4383985698223114,
   0.18710307776927948,
   -0.8318440318107605,
   0.2884082794189453,
   -1.1843063831329346,
   -0.057813242077827454,
   -0.03311080485582352,
   0.7657700181007385,
   0.0019675903022289276,
   0.3579324185848236,
   -0.06826963275671005,
   0.3350324332714081,
   -0.530073881149292,
   0.020695261657238007,
   0.7724964022636414,
   -0.6132851243019104,
   0.7148451209068298,
   1.7925645112991333,
   0.0508197546005249,
   1.0990264415740967,
   0.6145167350769043,
   0.33296674489974976,
   -0.0348043330013752,
   0.27129754424095154,
   0.0009155794978141785,
   0.05842531472444534,
   -0.5394752025604248,
   0.3764082193374634,
   -1.187410593032837,
   0.3991639018058777,
   -0.8460109233856201,
   0.4626598656177521,
   1.2113580703735352,
   -0.6511997580528259,
   0.22972314059734344,
   -0.04995701462030411,
   -0.9416377544403076,
   0.6286418437957764,
   -0.6061907410621643,
   0.6911771893501282,
   0.4072093069553375,
   -0.9235739707946777,
   0.5035772919654846,
   0.6084829568862915,
   1.0553317070007324,
   -0.32755428552627563,
   -0.9788080453872681,
   0.8235369920730591,
   -0.4126149117946625,
   1.0294222831726074,
   0.25025829672813416,
   0.5325061678886414,
   0.48951566219329834,
   0.2518504858016968,
   -0.7567282319068909,
   0.4689006507396698,
   0.28644031286239624,
   -0.5728330016136169,
   -0.13830488920211792,
   -0.6021442413330078,
   1.497300148010254,
   0.1159549206495285,
   -0.13765794038772583,
   -0.5032584071159363,
   0.6839839220046997,
   -0.5028457641601562,
   0.7710074186325073,
   0.026168663054704666,
   -0.5184105634689331,
   0.4294292628765106,
   1.0775072574615479,
   0.6563106179237366,
   -0.8252212405204773,
   0.1288701891899109,
   0.9012762308120728,
   0.3219042420387268,
   0.0046669188886880875,
   -0.008501911535859108,
   -0.41415056586265564,
   -0.07262580096721649,
   0.2959919273853302,
   -0.3872942626476288,
   -0.1802702099084854,
   -0.43974387645721436,
   -0.027990108355879784,
   -0.27737799286842346,
   -0.39470648765563965,
   -0.38578417897224426,
   0.514258086681366,
   -0.337673157453537,
   -0.9842813611030579,
   -0.06504911184310913,
   0.4399188160896301,
   1.0299633741378784,
   0.8929100632667542,
   -0.5061799883842468,
   -0.39100801944732666,
   -1.605913519859314,
   -0.03927978128194809,
   0.7840257883071899,
   -0.5924041271209717,
   0.19140926003456116,
   0.15401390194892883,
   -0.379048615694046,
   -0.38149046897888184,
   0.646815299987793,
   0.440153568983078,
   0.14596335589885712,
   0.6452099680900574,
   0.3299175798892975,
   0.23465970158576965,
   0.24310868978500366,
   -0.8423160910606384,
   0.9369558691978455,
   0.16336548328399658,
   -0.05007927864789963,
   -0.7425497770309448,
   -0.08651738613843918,
   0.770439088344574,
   0.5859643816947937,
   -0.6834210753440857,
   -0.3924453854560852,
   0.7415409088134766,
   0.9169139862060547,
   -0.2117006927728653,
   -0.7650362253189087,
   0.5999548435211182,
   0.9675347805023193,
   -5.139118671417236,
   -0.79319167137146,
   -0.9025479555130005,
   -0.7750958204269409,
   1.63520348072052,
   -0.09343963861465454,
   -0.4711543023586273,
   0.6817213296890259,
   -0.16739577054977417,
   0.21241812407970428,
   0.31690508127212524,
   0.7326236367225647,
   -0.5473184585571289,
   0.19640220701694489,
   0.24513556063175201,
   -1.0711865425109863,
   -0.3079027235507965,
   -0.6728019714355469,
   0.03504304587841034,
   -0.14607582986354828,
   0.49266889691352844,
   -0.6420637965202332,
   -0.8793585300445557,
   0.22218918800354004,
   -0.2629077136516571,
   0.1730758249759674,
   -0.08867081999778748,
   0.0560624934732914,
   0.80605548620224,
   -0.09950476884841919,
   -0.41230419278144836,
   1.4027968645095825,
   0.14320309460163116,
   -1.0156916379928589,
   -1.373047113418579,
   -0.36204802989959717,
   0.5156266093254089,
   1.1451365947723389,
   0.14581753313541412,
   0.4314006567001343,
   -0.8056145310401917,
   -0.5361940860748291,
   0.10548646003007889,
   -0.07623489201068878,
   -0.3655911087989807,
   0.22351837158203125,
   -0.16490846872329712,
   0.21732483804225922,
   0.3204028606414795,
   1.1025646924972534,
   1.7627280950546265,
   0.2843015789985657,
   0.46926143765449524,
   -0.45171764492988586,
   -0.35964933037757874,
   1.006685733795166,
   -0.14339418709278107,
   -0.6933214068412781,
   -0.8910815715789795,
   -0.13444408774375916,
   0.41153204441070557,
   0.5961161851882935,
   -0.19943228363990784,
   0.1728750467300415,
   -0.8624792695045471,
   0.11163103580474854,
   -0.24014608561992645,
   -0.7449300289154053,
   0.5349089503288269,
   -0.18073180317878723,
   -0.6763651967048645,
   -1.1443263292312622,
   -1.0541504621505737,
   0.20045307278633118,
   -0.19379590451717377,
   0.4942348301410675,
   -0.03774186596274376,
   -0.012543689459562302,
   -0.17104817926883698,
   0.8626933097839355,
   0.28236088156700134,
   -0.03858375549316406,
   -0.756151556968689,
   0.007457852363586426,
   -0.6487739086151123,
   -0.48427513241767883,
   0.7918869256973267,
   0.08274395763874054,
   0.8382088541984558,
   -0.6716601252555847,
   1.0737659931182861,
   -0.43574467301368713,
   0.16610343754291534,
   -0.22993464767932892,
   -0.2772260010242462,
   -1.6360108852386475,
   -1.1896896362304688,
   0.889461100101471,
   -0.365272581577301,
   0.7180998921394348,
   -0.7268083095550537,
   0.7098663449287415,
   -0.3785687983036041,
   -0.3122249245643616,
   0.8039003610610962,
   -0.7385662198066711,
   0.5445132851600647,
   0.33070108294487,
   0.1895604431629181,
   0.33552247285842896,
   0.2591768801212311,
   0.9676344990730286,
   0.11485189199447632,
   0.7831516265869141,
   -1.1086238622665405,
   -0.0007977709174156189,
   0.6372792720794678,
   0.39717888832092285,
   0.06400676816701889,
   0.07672767341136932,
   -0.6416933536529541,
   -0.3246932327747345,
   -0.7767651677131653,
   0.353020042181015,
   0.31948429346084595,
   -0.3979632556438446,
   0.13039720058441162,
   0.02241743914783001,
   -0.17402540147304535,
   0.5000205039978027,
   -0.5079545974731445,
   0.521249532699585,
   0.5512999296188354,
   -0.2881026566028595,
   -0.13398030400276184,
   0.6055839657783508,
   -0.25941866636276245,
   0.31544962525367737,
   -0.2829274535179138,
   -0.35120466351509094,
   -0.4428093135356903,
   -0.983938455581665,
   -1.0942089557647705,
   0.7514570951461792,
   -0.947399377822876,
   0.7053402662277222,
   -0.3332599699497223,
   0.8239865899085999,
   0.6703565716743469,
   1.1692769527435303,
   -0.08532717078924179,
   0.4787135720252991,
   -0.2374347746372223,
   -0.7144516706466675,
   -0.9615584015846252,
   0.7022817134857178,
   0.46299082040786743,
   -0.862101137638092,
   -0.39875322580337524,
   -0.043664999306201935,
   -0.867351770401001,
   0.30061984062194824,
   0.8503827452659607,
   0.48666757345199585,
   0.1666989028453827,
   -0.23043638467788696,
   -5.374783039093018,
   -0.01654992625117302,
   0.41821080446243286,
   0.7702268958091736,
   -0.5140354037284851,
   0.35084229707717896,
   1.3859895467758179,
   0.8991398215293884,
   -0.8135421276092529,
   0.4998849630355835,
   -0.3480156362056732,
   -1.7364518642425537,
   0.5027367472648621,
   0.4340725243091583,
   -0.8108338713645935,
   0.1943378448486328,
   0.3599066734313965,
   0.5613070130348206,
   -0.6389342546463013,
   -0.009226803667843342,
   -0.6161872744560242,
   0.41582155227661133,
   -1.2678773403167725,
   1.1991249322891235,
   0.5527239441871643,
   -1.1556506156921387,
   0.8137479424476624,
   -0.3586341440677643,
   -0.870204508304596,
   -0.7573180794715881,
   -0.8782481551170349,
   -0.7659774422645569,
   -0.6773403286933899,
   0.19193312525749207,
   0.16587306559085846,
   -0.08246628940105438,
   0.1925497055053711,
   0.3714272975921631,
   -0.4151061177253723,
   -0.32730117440223694,
   -0.02610204741358757,
   0.25812190771102905,
   -0.41458579897880554,
   -0.3510291874408722,
   -0.2940218150615692,
   -0.3129785656929016,
   -0.28505268692970276,
   -0.30544334650039673,
   -0.2722456455230713,
   -0.08898870646953583,
   -0.37204819917678833,
   -0.4512263238430023,
   0.0637805238366127,
   -0.37739086151123047,
   -1.1840314865112305,
   0.9015467762947083,
   0.5216654539108276,
   -0.42799150943756104,
   0.3893709182739258,
   -0.12885287404060364,
   -0.4948658049106598,
   -0.36733773350715637,
   -0.4551859200000763,
   1.23520827293396,
   -0.2228665053844452,
   1.2469873428344727,
   0.6317804455757141,
   -0.08675628155469894,
   0.6492504477500916,
   0.2337045669555664,
   -0.31916865706443787,
   0.2685477137565613,
   -0.006074778735637665,
   0.019054241478443146,
   -0.08253724873065948,
   -1.8998031616210938,
   -0.25232696533203125,
   0.5805871486663818,
   -0.6300752758979797,
   -0.5738076567649841,
   0.11355145275592804,
   -0.0007543060928583145,
   -0.6030271649360657,
   0.9402397274971008,
   1.250319004058838,
   0.738293468952179,
   -0.031065553426742554,
   -0.3789679706096649,
   -0.46125471591949463,
   -1.200140357017517,
   -1.727911353111267,
   -0.22127237915992737,
   -1.6813035011291504,
   0.7567788362503052,
   0.28367316722869873,
   -0.17354249954223633,
   -0.884396493434906,
   -0.1875016689300537,
   -0.7893348932266235,
   0.2684060037136078,
   -1.8709464073181152,
   0.39430880546569824,
   -0.6401225924491882,
   -0.08010245859622955,
   0.43049636483192444,
   0.17554956674575806,
   0.011005222797393799,
   -1.1463637351989746,
   0.21959449350833893,
   1.6294752359390259,
   0.2963956296443939,
   -0.7214000821113586,
   0.09861110150814056,
   0.4128665328025818,
   0.9859101176261902,
   0.8696188926696777,
   0.06277116388082504,
   -0.7210257053375244,
   0.18230116367340088,
   -0.22003023326396942,
   1.4670822620391846,
   0.4715765714645386,
   0.45272743701934814,
   -0.3246389329433441,
   0.9053170084953308,
   0.30601540207862854,
   -0.4313655495643616,
   0.005720824934542179,
   -0.8042027354240417,
   -0.24500009417533875,
   0.2581538259983063,
   -0.34830400347709656,
   0.5510894656181335,
   -0.6492083072662354,
   -1.2039364576339722,
   0.7287567257881165,
   -0.25351080298423767,
   -0.8023574948310852,
   -0.21354037523269653,
   -1.6421393156051636,
   -0.17726071178913116,
   0.1764678657054901,
   -0.1696351319551468,
   0.6343058347702026,
   0.4310618042945862,
   -0.8714259266853333,
   -0.03399437665939331,
   -0.16377532482147217,
   0.09881806373596191,
   -0.10079152882099152,
   0.08863770961761475,
   0.22680240869522095,
   0.7597858905792236,
   0.13385117053985596,
   -0.19122415781021118,
   1.3229812383651733,
   -1.1063019037246704,
   1.1866445541381836,
   -1.0136356353759766,
   1.5026450157165527,
   5.523874759674072,
   0.02463880181312561,
   -0.8811730146408081,
   1.049730896949768,
   -0.3877814710140228,
   0.06756521761417389,
   -0.43862441182136536,
   0.49693527817726135,
   1.7708418369293213,
   1.2027060985565186,
   1.0866671800613403e-05,
   0.7626545429229736,
   -0.6631983518600464,
   0.5968323349952698,
   -0.0865553617477417,
   0.30877405405044556,
   0.9220943450927734,
   0.749235987663269,
   -0.2814860939979553,
   0.26550009846687317,
   1.0254250764846802,
   0.6561900973320007,
   0.16313259303569794,
   0.291602224111557,
   -0.42747005820274353,
   0.5532519221305847,
   0.6579204797744751,
   0.5889472365379333,
   -0.7681453227996826,
   0.10476047545671463,
   0.30988848209381104,
   0.18844090402126312,
   0.44723376631736755,
   -0.3459559977054596,
   -0.2800576388835907,
   0.1940184235572815,
   0.3071480691432953,
   -0.6683031320571899,
   -0.20705413818359375,
   0.7772397994995117,
   -0.1551857590675354,
   0.8585838675498962,
   -0.47772058844566345,
   -0.9555704593658447,
   -0.934445321559906,
   -2.3952205181121826,
   0.14262604713439941,
   -1.6749844551086426,
   -1.1777271032333374,
   -0.328655481338501,
   0.20783236622810364,
   -0.4230917692184448,
   0.23241978883743286,
   -0.37358763813972473,
   0.9372321367263794,
   -0.4310492277145386,
   -0.6495233774185181,
   -0.42445671558380127,
   -1.65472412109375,
   -1.1052006483078003,
   -0.039083924144506454,
   -0.017637230455875397,
   -0.04848796874284744,
   0.32783180475234985,
   0.5495072603225708,
   -0.7520483136177063,
   -1.6030890941619873,
   -0.45599237084388733,
   -0.14583203196525574,
   0.41457709670066833,
   1.1577234268188477,
   -0.46994444727897644,
   0.37218034267425537,
   0.01984061300754547,
   0.24753427505493164,
   0.3276347815990448,
   0.6420872211456299,
   0.814396321773529,
   -0.131057009100914,
   -1.1316953897476196,
   -0.3506270945072174,
   1.2128643989562988,
   -0.4055218994617462,
   0.11304652690887451,
   -0.5655367374420166,
   0.03158171474933624,
   0.6255281567573547,
   0.19136880338191986,
   -2.2267019748687744,
   0.08313640207052231,
   0.9189248085021973,
   -0.026919681578874588,
   -0.6069269180297852,
   0.2737604081630707,
   0.0752640888094902,
   0.8065487146377563,
   0.28312820196151733,
   0.057956285774707794,
   0.0741300880908966,
   0.5663254261016846,
   -0.17992062866687775,
   0.3644392192363739,
   0.1882222592830658,
   -0.8158729076385498,
   -0.07487303763628006,
   -0.012288041412830353,
   -0.34857311844825745,
   0.1145770251750946,
   0.04609891399741173,
   -0.39320141077041626,
   -0.04943523555994034,
   0.32003912329673767,
   1.2644050121307373,
   0.5011053085327148,
   0.6875011920928955,
   0.9054290056228638,
   0.2960444986820221,
   0.8574709892272949,
   0.5513055920600891,
   -0.5761882662773132,
   0.09269407391548157,
   0.39998409152030945,
   -1.0043680667877197,
   -0.4829593002796173,
   0.8073444962501526,
   -0.2933182418346405,
   -0.43129298090934753,
   0.015231750905513763,
   -1.287558674812317,
   0.4277561902999878,
   -0.048394620418548584,
   0.02763804793357849,
   -1.143946647644043,
   -1.1636143922805786,
   0.2932014465332031,
   -0.41361790895462036,
   1.6994946002960205,
   0.5314648151397705,
   0.15712592005729675,
   -1.0606093406677246,
   -0.017137151211500168,
   0.6257070302963257,
   0.3814012408256531,
   5.073487758636475,
   0.22106868028640747,
   0.15561926364898682,
   -1.311708688735962,
   -0.32321423292160034,
   -0.14098869264125824,
   -0.06016305088996887,
   0.7693016529083252,
   0.9049151539802551,
   0.1473095566034317,
   -0.8731818795204163,
   -0.8204019665718079,
   0.31218504905700684,
   -0.4446488916873932,
   0.08190399408340454,
   0.5514818429946899,
   -0.6391751766204834,
   0.49831560254096985,
   -0.2775934040546417,
   -0.04291556775569916,
   0.2953571081161499,
   -0.6812534332275391,
   -0.2828714847564697,
   0.35768750309944153,
   -0.24591854214668274,
   0.8434568047523499,
   -0.48379141092300415,
   0.2906985580921173,
   -0.8470511436462402,
   0.1284542679786682,
   -0.6019150614738464,
   0.5530967116355896,
   0.9973833560943604,
   0.10247980058193207,
   -0.1179530918598175,
   -0.2969215512275696,
   0.38314715027809143,
   0.6606168746948242,
   -0.17124077677726746,
   0.376052588224411,
   0.002790641039609909,
   0.165118008852005,
   -0.473796010017395,
   0.011756151914596558,
   -0.8843938112258911,
   -0.9415203332901001,
   -0.35746681690216064,
   0.19922083616256714,
   0.16305527091026306,
   0.7712544202804565,
   -1.2070761919021606,
   0.09664259105920792,
   -0.2981330454349518,
   -0.6431789994239807,
   -0.09606531262397766,
   -0.29254645109176636,
   0.3931584656238556,
   -0.31376203894615173,
   -0.7146992087364197,
   0.24029088020324707,
   -0.2272578626871109,
   0.2179282009601593,
   -0.10997170209884644,
   -0.029651548713445663,
   0.04348330199718475,
   0.5243112444877625,
   0.7966760396957397,
   -0.21413299441337585,
   -0.088964082300663,
   0.16448116302490234,
   0.5207789540290833,
   -1.3041698932647705,
   0.15375231206417084,
   -0.5952826142311096,
   -0.2940116822719574,
   0.24153761565685272,
   0.3260452449321747,
   -1.2348355054855347,
   0.4160165786743164,
   -0.46590423583984375,
   0.2986714243888855,
   0.2610979676246643,
   -1.3817214965820312,
   -0.07686907052993774,
   0.2377350777387619,
   -0.4095999300479889,
   -0.698625385761261,
   0.2038174420595169,
   -0.4135752022266388,
   -0.3521687984466553,
   0.0897078886628151,
   -0.836560845375061,
   0.4292657673358917,
   0.7135937213897705,
   0.8595017194747925,
   0.2423253208398819,
   -0.6914105415344238,
   -1.2206637859344482,
   -0.22789917886257172,
   0.5911272764205933,
   -0.5221934914588928,
   0.5766527652740479,
   -0.9017964005470276,
   -0.6117600798606873,
   -0.12792955338954926,
   -0.6155738830566406,
   -0.2271997183561325,
   0.16705265641212463,
   -0.37766051292419434,
   -0.8450329303741455,
   -0.8146082162857056,
   -0.21038225293159485,
   -0.47441449761390686,
   -0.5164771676063538,
   0.5903255343437195,
   -0.03522747755050659,
   0.011262817308306694,
   0.028744900599122047,
   0.2003907859325409,
   -0.2806118130683899,
   -0.02720310166478157,
   -0.9673551321029663,
   0.9700833559036255,
   0.7596578001976013,
   -0.5773548483848572,
   -0.3087533712387085,
   0.8400891423225403,
   0.6339148283004761,
   0.5415112972259521,
   0.45670998096466064,
   -0.4913516044616699,
   0.35894572734832764,
   0.14872713387012482,
   -0.45757514238357544,
   1.0975970029830933,
   -0.5930750370025635,
   -0.39304929971694946,
   0.56740403175354,
   -0.49872058629989624,
   0.4497743248939514,
   -0.6660752892494202,
   -0.6902043223381042,
   -0.9349110126495361,
   1.0221046209335327,
   -0.1996685117483139,
   0.4915223717689514,
   -0.2799581289291382,
   -0.1748197376728058,
   -0.5114241242408752,
   0.8381891250610352,
   0.8141994476318359,
   -0.5580250024795532,
   0.41249698400497437,
   0.3807600140571594,
   -0.6847490668296814,
   0.26690322160720825,
   0.10212410986423492,
   0.3082466125488281,
   0.013196362182497978,
   0.7568479776382446,
   -0.18244363367557526]]]
import numpy as np

feature = pipe("What is your name?")

np.array(feature).shape
(1, 7, 768)
feature = pipe("What is your name, again?")

np.array(feature).shape
(1, 9, 768)